From e5a003517ff578ececb3f45479b647db7144d1c8 Mon Sep 17 00:00:00 2001 From: Dipanjan Sarkar Date: Sat, 5 Oct 2019 16:25:42 +0530 Subject: [PATCH 1/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 64d16d9..c204ce2 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Text Analytics with Python - Second Edition -### Folks, sorry for the delay in putting up the code, it's being tested to make sure everything works and its been a bit difficult doing it by myself with so many things going on. It will be up and available by 12th of August. Appreciate your patience! +### Work underway, code will be up by this weekend sorry for the delay had lost the code when I was switching computers and finally got a backup From c9a507893bbc623e762c184e9bbb1d21d7f39ba6 Mon Sep 17 00:00:00 2001 From: dipanjanS Date: Thu, 10 Sep 2020 13:47:31 +0530 Subject: [PATCH 2/8] updated 1st ed book code --- .../Ch01_Natural_Language_Basics/corpora_demo.py | 0 .../Ch02_Python_Refresher/classes.py | 0 .../Ch02_Python_Refresher/code_flow_control.py | 0 .../Ch02_Python_Refresher/data_types_structures.py | 0 .../Ch02_Python_Refresher/functional_programming.py | 0 .../Ch02_Python_Refresher/working_with_text.py | 0 .../Ch03_Processing_and_Understanding_Text/big.txt | 0 .../constituency_parsing.py | 0 .../contractions.py | 0 .../dependency_parsing.py | 0 .../normalizer.py | 0 .../pos_tagging.py | 0 .../shallow_parsing.py | 0 .../spelling_corrector.py | 0 .../tokenizer.py | 0 .../Ch04_Text_Classification/classification.py | 0 .../classifier_evaluation_demo.py | 0 .../Ch04_Text_Classification/contractions.py | 0 .../feature_extraction_demo.py | 0 .../Ch04_Text_Classification/feature_extractors.py | 0 .../Ch04_Text_Classification/normalization.py | 0 .../amazon_skyrim_reviews.csv | 0 .../Ch05_Text_Summarization/contractions.py | 0 .../document_summarization.py | 0 .../Ch05_Text_Summarization/keyphrase_extraction.py | 0 .../Ch05_Text_Summarization/normalization.py | 0 .../Ch05_Text_Summarization/topic_modeling.py | 0 .../Ch05_Text_Summarization/utils.py | 0 .../clustering plots/affinity_prop_clustering.png | Bin .../clustering plots/kmeans_clustering.png | Bin .../clustering plots/ward_hierachical_clusters.png | Bin .../contractions.py | 0 .../document_clustering.py | 0 .../document_similarity.py | 0 .../movie_data.csv | 0 .../normalization.py | 0 .../term_similarity.py | 0 .../Ch06_Text_Similarity_and_Clustering/utils.py | 0 .../Untitled.ipynb | 0 .../Untitled1.ipynb | 0 .../Untitled2.ipynb | 0 .../contractions.py | 0 .../movie_reviews.csv | 0 .../named_entity_recognition.py | 0 .../normalization.py | 0 .../review_data_extractor.py | 0 .../semantic_representations.py | 0 .../sentiment_analysis_supervised_ml.py | 0 .../sentiment_analysis_unsupervised_lexical.py | 0 .../Ch07_Semantic_and_Sentiment_Analysis/utils.py | 0 .../wordnet_demo.py | 0 51 files changed, 0 insertions(+), 0 deletions(-) rename Old-First-Edition/{source_code => }/Ch01_Natural_Language_Basics/corpora_demo.py (100%) rename Old-First-Edition/{source_code => }/Ch02_Python_Refresher/classes.py (100%) rename Old-First-Edition/{source_code => }/Ch02_Python_Refresher/code_flow_control.py (100%) rename Old-First-Edition/{source_code => }/Ch02_Python_Refresher/data_types_structures.py (100%) rename Old-First-Edition/{source_code => }/Ch02_Python_Refresher/functional_programming.py (100%) rename Old-First-Edition/{source_code => }/Ch02_Python_Refresher/working_with_text.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/big.txt (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/constituency_parsing.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/contractions.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/dependency_parsing.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/normalizer.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/pos_tagging.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/shallow_parsing.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/spelling_corrector.py (100%) rename Old-First-Edition/{source_code => }/Ch03_Processing_and_Understanding_Text/tokenizer.py (100%) rename Old-First-Edition/{source_code => }/Ch04_Text_Classification/classification.py (100%) rename Old-First-Edition/{source_code => }/Ch04_Text_Classification/classifier_evaluation_demo.py (100%) rename Old-First-Edition/{source_code => }/Ch04_Text_Classification/contractions.py (100%) rename Old-First-Edition/{source_code => }/Ch04_Text_Classification/feature_extraction_demo.py (100%) rename Old-First-Edition/{source_code => }/Ch04_Text_Classification/feature_extractors.py (100%) rename Old-First-Edition/{source_code => }/Ch04_Text_Classification/normalization.py (100%) rename Old-First-Edition/{source_code => }/Ch05_Text_Summarization/amazon_skyrim_reviews.csv (100%) rename Old-First-Edition/{source_code => }/Ch05_Text_Summarization/contractions.py (100%) rename Old-First-Edition/{source_code => }/Ch05_Text_Summarization/document_summarization.py (100%) rename Old-First-Edition/{source_code => }/Ch05_Text_Summarization/keyphrase_extraction.py (100%) rename Old-First-Edition/{source_code => }/Ch05_Text_Summarization/normalization.py (100%) rename Old-First-Edition/{source_code => }/Ch05_Text_Summarization/topic_modeling.py (100%) rename Old-First-Edition/{source_code => }/Ch05_Text_Summarization/utils.py (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/clustering plots/affinity_prop_clustering.png (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/clustering plots/kmeans_clustering.png (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/clustering plots/ward_hierachical_clusters.png (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/contractions.py (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/document_clustering.py (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/document_similarity.py (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/movie_data.csv (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/normalization.py (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/term_similarity.py (100%) rename Old-First-Edition/{source_code => }/Ch06_Text_Similarity_and_Clustering/utils.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/Untitled.ipynb (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/Untitled1.ipynb (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/Untitled2.ipynb (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/contractions.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/movie_reviews.csv (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/named_entity_recognition.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/normalization.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/review_data_extractor.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/semantic_representations.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_supervised_ml.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_unsupervised_lexical.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/utils.py (100%) rename Old-First-Edition/{source_code => }/Ch07_Semantic_and_Sentiment_Analysis/wordnet_demo.py (100%) diff --git a/Old-First-Edition/source_code/Ch01_Natural_Language_Basics/corpora_demo.py b/Old-First-Edition/Ch01_Natural_Language_Basics/corpora_demo.py similarity index 100% rename from Old-First-Edition/source_code/Ch01_Natural_Language_Basics/corpora_demo.py rename to Old-First-Edition/Ch01_Natural_Language_Basics/corpora_demo.py diff --git a/Old-First-Edition/source_code/Ch02_Python_Refresher/classes.py b/Old-First-Edition/Ch02_Python_Refresher/classes.py similarity index 100% rename from Old-First-Edition/source_code/Ch02_Python_Refresher/classes.py rename to Old-First-Edition/Ch02_Python_Refresher/classes.py diff --git a/Old-First-Edition/source_code/Ch02_Python_Refresher/code_flow_control.py b/Old-First-Edition/Ch02_Python_Refresher/code_flow_control.py similarity index 100% rename from Old-First-Edition/source_code/Ch02_Python_Refresher/code_flow_control.py rename to Old-First-Edition/Ch02_Python_Refresher/code_flow_control.py diff --git a/Old-First-Edition/source_code/Ch02_Python_Refresher/data_types_structures.py b/Old-First-Edition/Ch02_Python_Refresher/data_types_structures.py similarity index 100% rename from Old-First-Edition/source_code/Ch02_Python_Refresher/data_types_structures.py rename to Old-First-Edition/Ch02_Python_Refresher/data_types_structures.py diff --git a/Old-First-Edition/source_code/Ch02_Python_Refresher/functional_programming.py b/Old-First-Edition/Ch02_Python_Refresher/functional_programming.py similarity index 100% rename from Old-First-Edition/source_code/Ch02_Python_Refresher/functional_programming.py rename to Old-First-Edition/Ch02_Python_Refresher/functional_programming.py diff --git a/Old-First-Edition/source_code/Ch02_Python_Refresher/working_with_text.py b/Old-First-Edition/Ch02_Python_Refresher/working_with_text.py similarity index 100% rename from Old-First-Edition/source_code/Ch02_Python_Refresher/working_with_text.py rename to Old-First-Edition/Ch02_Python_Refresher/working_with_text.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/big.txt b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/big.txt similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/big.txt rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/big.txt diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/constituency_parsing.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/constituency_parsing.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/constituency_parsing.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/constituency_parsing.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/contractions.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/contractions.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/contractions.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/contractions.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/dependency_parsing.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/dependency_parsing.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/dependency_parsing.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/dependency_parsing.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/normalizer.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/normalizer.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/normalizer.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/normalizer.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/pos_tagging.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/pos_tagging.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/pos_tagging.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/pos_tagging.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/shallow_parsing.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/shallow_parsing.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/shallow_parsing.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/shallow_parsing.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/spelling_corrector.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/spelling_corrector.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/spelling_corrector.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/spelling_corrector.py diff --git a/Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/tokenizer.py b/Old-First-Edition/Ch03_Processing_and_Understanding_Text/tokenizer.py similarity index 100% rename from Old-First-Edition/source_code/Ch03_Processing_and_Understanding_Text/tokenizer.py rename to Old-First-Edition/Ch03_Processing_and_Understanding_Text/tokenizer.py diff --git a/Old-First-Edition/source_code/Ch04_Text_Classification/classification.py b/Old-First-Edition/Ch04_Text_Classification/classification.py similarity index 100% rename from Old-First-Edition/source_code/Ch04_Text_Classification/classification.py rename to Old-First-Edition/Ch04_Text_Classification/classification.py diff --git a/Old-First-Edition/source_code/Ch04_Text_Classification/classifier_evaluation_demo.py b/Old-First-Edition/Ch04_Text_Classification/classifier_evaluation_demo.py similarity index 100% rename from Old-First-Edition/source_code/Ch04_Text_Classification/classifier_evaluation_demo.py rename to Old-First-Edition/Ch04_Text_Classification/classifier_evaluation_demo.py diff --git a/Old-First-Edition/source_code/Ch04_Text_Classification/contractions.py b/Old-First-Edition/Ch04_Text_Classification/contractions.py similarity index 100% rename from Old-First-Edition/source_code/Ch04_Text_Classification/contractions.py rename to Old-First-Edition/Ch04_Text_Classification/contractions.py diff --git a/Old-First-Edition/source_code/Ch04_Text_Classification/feature_extraction_demo.py b/Old-First-Edition/Ch04_Text_Classification/feature_extraction_demo.py similarity index 100% rename from Old-First-Edition/source_code/Ch04_Text_Classification/feature_extraction_demo.py rename to Old-First-Edition/Ch04_Text_Classification/feature_extraction_demo.py diff --git a/Old-First-Edition/source_code/Ch04_Text_Classification/feature_extractors.py b/Old-First-Edition/Ch04_Text_Classification/feature_extractors.py similarity index 100% rename from Old-First-Edition/source_code/Ch04_Text_Classification/feature_extractors.py rename to Old-First-Edition/Ch04_Text_Classification/feature_extractors.py diff --git a/Old-First-Edition/source_code/Ch04_Text_Classification/normalization.py b/Old-First-Edition/Ch04_Text_Classification/normalization.py similarity index 100% rename from Old-First-Edition/source_code/Ch04_Text_Classification/normalization.py rename to Old-First-Edition/Ch04_Text_Classification/normalization.py diff --git a/Old-First-Edition/source_code/Ch05_Text_Summarization/amazon_skyrim_reviews.csv b/Old-First-Edition/Ch05_Text_Summarization/amazon_skyrim_reviews.csv similarity index 100% rename from Old-First-Edition/source_code/Ch05_Text_Summarization/amazon_skyrim_reviews.csv rename to Old-First-Edition/Ch05_Text_Summarization/amazon_skyrim_reviews.csv diff --git a/Old-First-Edition/source_code/Ch05_Text_Summarization/contractions.py b/Old-First-Edition/Ch05_Text_Summarization/contractions.py similarity index 100% rename from Old-First-Edition/source_code/Ch05_Text_Summarization/contractions.py rename to Old-First-Edition/Ch05_Text_Summarization/contractions.py diff --git a/Old-First-Edition/source_code/Ch05_Text_Summarization/document_summarization.py b/Old-First-Edition/Ch05_Text_Summarization/document_summarization.py similarity index 100% rename from Old-First-Edition/source_code/Ch05_Text_Summarization/document_summarization.py rename to Old-First-Edition/Ch05_Text_Summarization/document_summarization.py diff --git a/Old-First-Edition/source_code/Ch05_Text_Summarization/keyphrase_extraction.py b/Old-First-Edition/Ch05_Text_Summarization/keyphrase_extraction.py similarity index 100% rename from Old-First-Edition/source_code/Ch05_Text_Summarization/keyphrase_extraction.py rename to Old-First-Edition/Ch05_Text_Summarization/keyphrase_extraction.py diff --git a/Old-First-Edition/source_code/Ch05_Text_Summarization/normalization.py b/Old-First-Edition/Ch05_Text_Summarization/normalization.py similarity index 100% rename from Old-First-Edition/source_code/Ch05_Text_Summarization/normalization.py rename to Old-First-Edition/Ch05_Text_Summarization/normalization.py diff --git a/Old-First-Edition/source_code/Ch05_Text_Summarization/topic_modeling.py b/Old-First-Edition/Ch05_Text_Summarization/topic_modeling.py similarity index 100% rename from Old-First-Edition/source_code/Ch05_Text_Summarization/topic_modeling.py rename to Old-First-Edition/Ch05_Text_Summarization/topic_modeling.py diff --git a/Old-First-Edition/source_code/Ch05_Text_Summarization/utils.py b/Old-First-Edition/Ch05_Text_Summarization/utils.py similarity index 100% rename from Old-First-Edition/source_code/Ch05_Text_Summarization/utils.py rename to Old-First-Edition/Ch05_Text_Summarization/utils.py diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/clustering plots/affinity_prop_clustering.png b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/clustering plots/affinity_prop_clustering.png similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/clustering plots/affinity_prop_clustering.png rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/clustering plots/affinity_prop_clustering.png diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/clustering plots/kmeans_clustering.png b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/clustering plots/kmeans_clustering.png similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/clustering plots/kmeans_clustering.png rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/clustering plots/kmeans_clustering.png diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/clustering plots/ward_hierachical_clusters.png b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/clustering plots/ward_hierachical_clusters.png similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/clustering plots/ward_hierachical_clusters.png rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/clustering plots/ward_hierachical_clusters.png diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/contractions.py b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/contractions.py similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/contractions.py rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/contractions.py diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/document_clustering.py b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/document_clustering.py similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/document_clustering.py rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/document_clustering.py diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/document_similarity.py b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/document_similarity.py similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/document_similarity.py rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/document_similarity.py diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/movie_data.csv b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/movie_data.csv similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/movie_data.csv rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/movie_data.csv diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/normalization.py b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/normalization.py similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/normalization.py rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/normalization.py diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/term_similarity.py b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/term_similarity.py similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/term_similarity.py rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/term_similarity.py diff --git a/Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/utils.py b/Old-First-Edition/Ch06_Text_Similarity_and_Clustering/utils.py similarity index 100% rename from Old-First-Edition/source_code/Ch06_Text_Similarity_and_Clustering/utils.py rename to Old-First-Edition/Ch06_Text_Similarity_and_Clustering/utils.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/Untitled.ipynb b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/Untitled.ipynb similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/Untitled.ipynb rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/Untitled.ipynb diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/Untitled1.ipynb b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/Untitled1.ipynb similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/Untitled1.ipynb rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/Untitled1.ipynb diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/Untitled2.ipynb b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/Untitled2.ipynb similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/Untitled2.ipynb rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/Untitled2.ipynb diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/contractions.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/contractions.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/contractions.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/contractions.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/movie_reviews.csv b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/movie_reviews.csv similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/movie_reviews.csv rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/movie_reviews.csv diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/named_entity_recognition.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/named_entity_recognition.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/named_entity_recognition.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/named_entity_recognition.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/normalization.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/normalization.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/normalization.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/normalization.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/review_data_extractor.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/review_data_extractor.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/review_data_extractor.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/review_data_extractor.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/semantic_representations.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/semantic_representations.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/semantic_representations.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/semantic_representations.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_supervised_ml.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_supervised_ml.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_supervised_ml.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_supervised_ml.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_unsupervised_lexical.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_unsupervised_lexical.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_unsupervised_lexical.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/sentiment_analysis_unsupervised_lexical.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/utils.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/utils.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/utils.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/utils.py diff --git a/Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/wordnet_demo.py b/Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/wordnet_demo.py similarity index 100% rename from Old-First-Edition/source_code/Ch07_Semantic_and_Sentiment_Analysis/wordnet_demo.py rename to Old-First-Edition/Ch07_Semantic_and_Sentiment_Analysis/wordnet_demo.py From d5ca501c5c0a0ed0779197809920477f64dfaa3b Mon Sep 17 00:00:00 2001 From: dipanjanS Date: Thu, 10 Sep 2020 13:47:50 +0530 Subject: [PATCH 3/8] updated 2nd ed book code --- ...- Natural Language Processing Basics.ipynb | 953 + .../Ch02a - Python Environment Setup.ipynb | 304 + .../Ch02b - Working with Text Data.ipynb | 2095 + .../Ch03a - Text Wrangling.ipynb | 4585 + ...h03b - Text Syntax and Understanding.ipynb | 1776 + ...- Text Parsing with Stanford CoreNLP.ipynb | 1394 + .../big.txt | 128457 +++++++++++++++ .../contractions.py | 132 + ...g Text Data - Traditional Strategies.ipynb | 3973 + ... - Advanced Deep Learning Strategies.ipynb | 3189 + ...ation Performance Evaluation Metrics.ipynb | 310 + .../Ch05b - Text Classification - I.ipynb | 4307 + .../Ch05c - Text Classification - II.ipynb | 354 + .../contractions.py | 132 + .../model_evaluation_utils.py | 229 + .../text_normalizer.py | 156 + .../Ch06a - Text Keyphrase Extraction.ipynb | 736 + .../Ch06b - Topic Modeling with gensim.ipynb | 4072 + ...c - Topic Modeling with scikit-learn.ipynb | 3280 + ...sualizing Topic Models with pyLDAvis.ipynb | 851 + .../Ch06e - Document Summarization.ipynb | 854 + .../elephants.txt | 1 + .../test_data/nips16_01.txt | 768 + .../test_data/nips16_02.txt | 513 + .../test_data/nips16_03.txt | 502 + .../test_data/nips16_04.txt | 398 + .../Ch07a - Analyzing Term Similarity.ipynb | 544 + ...Recommender with Document Similarity.ipynb | 1804 + .../Ch07c - Document Clustering.ipynb | 1033 + .../movie_hierachical_clusters.png | Bin 0 -> 589390 bytes .../netflix_rec.png | Bin 0 -> 294040 bytes .../tmdb_5000_movies.csv.gz | Bin 0 -> 1568806 bytes .../Ch08a - Exploring WordNet.ipynb | 934 + .../Ch08b - Named Entity Recognition.ipynb | 650 + .../Ch08c - Building NER Taggers.ipynb | 1816 + ...- Analyzing Semantic Representations.ipynb | 547 + .../Ch08 - Semantic Analysis/corenlp_ner.png | Bin 0 -> 85518 bytes .../ner_dataset.csv.gz | Bin 0 -> 3010299 bytes .../Ch08 - Semantic Analysis/spacy_ner.png | Bin 0 -> 24395 bytes ...ment Analysis - Unsupervised Lexical.ipynb | 671 + ...9b - Sentiment Analysis - Supervised.ipynb | 1115 + ...nt Analysis - Advanced Deep Learning.ipynb | 492 + ...usal Analysis - Model Interpretation.ipynb | 107862 ++++++++++++ ...iment Causal Analysis - Topic Models.ipynb | 694 + .../Ch09 - Sentiment Analysis/contractions.py | 132 + .../model_evaluation_utils.py | 229 + .../text_normalizer.py | 156 + ...sification with Universal Embeddings.ipynb | 1266 + .../sample_classification.png | Bin 0 -> 140570 bytes .../sentiment_cover.png | Bin 0 -> 190598 bytes New-Second-Edition/README.md | 84 +- 51 files changed, 284348 insertions(+), 2 deletions(-) create mode 100644 New-Second-Edition/Ch01 - Natural Language Processing Basics/Ch01 - Natural Language Processing Basics.ipynb create mode 100644 New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02a - Python Environment Setup.ipynb create mode 100644 New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02b - Working with Text Data.ipynb create mode 100644 New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03a - Text Wrangling.ipynb create mode 100644 New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03b - Text Syntax and Understanding.ipynb create mode 100644 New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03c - BONUS - Text Parsing with Stanford CoreNLP.ipynb create mode 100644 New-Second-Edition/Ch03 - Processing and Understanding Text/big.txt create mode 100644 New-Second-Edition/Ch03 - Processing and Understanding Text/contractions.py create mode 100644 New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04a - Feature Engineering Text Data - Traditional Strategies.ipynb create mode 100644 New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04b - Feature Engineering Text Data - Advanced Deep Learning Strategies.ipynb create mode 100644 New-Second-Edition/Ch05 - Text Classification/Ch05a - Classification Performance Evaluation Metrics.ipynb create mode 100644 New-Second-Edition/Ch05 - Text Classification/Ch05b - Text Classification - I.ipynb create mode 100644 New-Second-Edition/Ch05 - Text Classification/Ch05c - Text Classification - II.ipynb create mode 100644 New-Second-Edition/Ch05 - Text Classification/contractions.py create mode 100644 New-Second-Edition/Ch05 - Text Classification/model_evaluation_utils.py create mode 100644 New-Second-Edition/Ch05 - Text Classification/text_normalizer.py create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06a - Text Keyphrase Extraction.ipynb create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06b - Topic Modeling with gensim.ipynb create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06c - Topic Modeling with scikit-learn.ipynb create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06d - Visualizing Topic Models with pyLDAvis.ipynb create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06e - Document Summarization.ipynb create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/elephants.txt create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_01.txt create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_02.txt create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_03.txt create mode 100644 New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_04.txt create mode 100644 New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07a - Analyzing Term Similarity.ipynb create mode 100644 New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07b - Movie Recommender with Document Similarity.ipynb create mode 100644 New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07c - Document Clustering.ipynb create mode 100644 New-Second-Edition/Ch07 - Text Similarity and Clustering/movie_hierachical_clusters.png create mode 100644 New-Second-Edition/Ch07 - Text Similarity and Clustering/netflix_rec.png create mode 100644 New-Second-Edition/Ch07 - Text Similarity and Clustering/tmdb_5000_movies.csv.gz create mode 100644 New-Second-Edition/Ch08 - Semantic Analysis/Ch08a - Exploring WordNet.ipynb create mode 100644 New-Second-Edition/Ch08 - Semantic Analysis/Ch08b - Named Entity Recognition.ipynb create mode 100644 New-Second-Edition/Ch08 - Semantic Analysis/Ch08c - Building NER Taggers.ipynb create mode 100644 New-Second-Edition/Ch08 - Semantic Analysis/Ch08d - Analyzing Semantic Representations.ipynb create mode 100644 New-Second-Edition/Ch08 - Semantic Analysis/corenlp_ner.png create mode 100644 New-Second-Edition/Ch08 - Semantic Analysis/ner_dataset.csv.gz create mode 100644 New-Second-Edition/Ch08 - Semantic Analysis/spacy_ner.png create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/Ch09a - Sentiment Analysis - Unsupervised Lexical.ipynb create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/Ch09b - Sentiment Analysis - Supervised.ipynb create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/Ch09c - Sentiment Analysis - Advanced Deep Learning.ipynb create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/Ch09d - Sentiment Causal Analysis - Model Interpretation.ipynb create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/Ch09e - Sentiment Causal Analysis - Topic Models.ipynb create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/contractions.py create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/model_evaluation_utils.py create mode 100644 New-Second-Edition/Ch09 - Sentiment Analysis/text_normalizer.py create mode 100644 New-Second-Edition/Ch10 - The Promise of Deep Learning/Ch10a - Deep Transfer Learning for NLP - Text Classification with Universal Embeddings.ipynb create mode 100644 New-Second-Edition/Ch10 - The Promise of Deep Learning/sample_classification.png create mode 100644 New-Second-Edition/Ch10 - The Promise of Deep Learning/sentiment_cover.png diff --git a/New-Second-Edition/Ch01 - Natural Language Processing Basics/Ch01 - Natural Language Processing Basics.ipynb b/New-Second-Edition/Ch01 - Natural Language Processing Basics/Ch01 - Natural Language Processing Basics.ipynb new file mode 100644 index 0000000..f3b069b --- /dev/null +++ b/New-Second-Edition/Ch01 - Natural Language Processing Basics/Ch01 - Natural Language Processing Basics.ipynb @@ -0,0 +1,953 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "import nltk\n", + "import spacy\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "# following line is optional for custom vocabulary installation\n", + "# you can use nlp = spacy.load('en')\n", + "nlp = spacy.load('en_core', parse=True, tag=True, entity=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'The brown fox is quick and he is jumping over the lazy dog'" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentence = \"The brown fox is quick and he is jumping over the lazy dog\"\n", + "sentence" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['quick', 'is', 'fox', 'brown', 'The', 'and', 'the', 'is', 'he', 'dog', 'lazy', 'jumping', 'over']\n" + ] + } + ], + "source": [ + "words = sentence.split()\n", + "np.random.shuffle(words)\n", + "print(words)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789101112
0Thebrownfoxisquickandheisjumpingoverthelazydog
1DTJJNNVBZJJCCPRPVBZVBGINDTJJNN
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 9 10 11 12\n", + "0 The brown fox is quick and he is jumping over the lazy dog\n", + "1 DT JJ NN VBZ JJ CC PRP VBZ VBG IN DT JJ NN" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pos_tags = nltk.pos_tag(sentence.split())\n", + "pd.DataFrame(pos_tags).T" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789101112
0Thebrownfoxisquickandheisjumpingoverthelazydog
1DTJJNNVBZJJCCPRPVBZVBGINDTJJNN
2DETADJNOUNVERBADJCCONJPRONVERBVERBADPDETADJNOUN
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 9 10 11 \\\n", + "0 The brown fox is quick and he is jumping over the lazy \n", + "1 DT JJ NN VBZ JJ CC PRP VBZ VBG IN DT JJ \n", + "2 DET ADJ NOUN VERB ADJ CCONJ PRON VERB VERB ADP DET ADJ \n", + "\n", + " 12 \n", + "0 dog \n", + "1 NN \n", + "2 NOUN " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "spacy_pos_tagged = [(word, word.tag_, word.pos_) for word in nlp(sentence)]\n", + "pd.DataFrame(spacy_pos_tagged).T" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP The/DT brown/JJ fox/NN)\n", + " (VP is/VBZ)\n", + " (ADJP quick/JJ)\n", + " and/CC\n", + " he/PRP\n", + " (VP is/VBZ jumping/VBG)\n", + " (PP over/IN)\n", + " (NP the/DT lazy/JJ dog/NN))\n" + ] + } + ], + "source": [ + "grammar = '''\n", + " NP: {
??} \n", + " ADJP: {}\n", + " ADVP: {}\n", + " PP: {} \n", + " VP: {?+}\n", + " '''\n", + "\n", + "pos_tagged_sent = nltk.pos_tag(sentence.split())\n", + "rp = nltk.RegexpParser(grammar)\n", + "shallow_parsed_sent = rp.parse(pos_tagged_sent)\n", + "print(shallow_parsed_sent)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('S', [Tree('NP', [('The', 'DT'), ('brown', 'JJ'), ('fox', 'NN')]), Tree('VP', [('is', 'VBZ')]), Tree('ADJP', [('quick', 'JJ')]), ('and', 'CC'), ('he', 'PRP'), Tree('VP', [('is', 'VBZ'), ('jumping', 'VBG')]), Tree('PP', [('over', 'IN')]), Tree('NP', [('the', 'DT'), ('lazy', 'JJ'), ('dog', 'NN')])])" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# visualize shallow parse tree\n", + "shallow_parsed_sent" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + " The\n", + " DET\n", + "\n", + "\n", + "\n", + " brown\n", + " ADJ\n", + "\n", + "\n", + "\n", + " fox\n", + " NOUN\n", + "\n", + "\n", + "\n", + " is\n", + " VERB\n", + "\n", + "\n", + "\n", + " quick\n", + " ADJ\n", + "\n", + "\n", + "\n", + " and\n", + " CCONJ\n", + "\n", + "\n", + "\n", + " he\n", + " PRON\n", + "\n", + "\n", + "\n", + " is\n", + " VERB\n", + "\n", + "\n", + "\n", + " jumping\n", + " VERB\n", + "\n", + "\n", + "\n", + " over\n", + " ADP\n", + "\n", + "\n", + "\n", + " the\n", + " DET\n", + "\n", + "\n", + "\n", + " lazy\n", + " ADJ\n", + "\n", + "\n", + "\n", + " dog\n", + " NOUN\n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " amod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " acomp\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " cc\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " aux\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " conj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " amod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from spacy import displacy\n", + "\n", + "displacy.render(nlp(sentence), jupyter=True, \n", + " options={'distance': 100,\n", + " 'arrow_stroke': 1.5,\n", + " 'arrow_width': 8})" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(ROOT\n", + " (NP\n", + " (S\n", + " (S\n", + " (NP (DT The) (JJ brown) (NN fox))\n", + " (VP (VBZ is) (ADJP (JJ quick))))\n", + " (CC and)\n", + " (S\n", + " (NP (PRP he))\n", + " (VP\n", + " (VBZ is)\n", + " (VP\n", + " (VBG jumping)\n", + " (PP (IN over) (NP (DT the) (JJ lazy) (NN dog)))))))))\n" + ] + } + ], + "source": [ + "from nltk.parse.stanford import StanfordParser\n", + "\n", + "scp = StanfordParser(path_to_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser.jar',\n", + " path_to_models_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser-3.5.2-models.jar')\n", + " \n", + "result = list(scp.raw_parse(sentence))\n", + "print(result[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('ROOT', [Tree('NP', [Tree('S', [Tree('S', [Tree('NP', [Tree('DT', ['The']), Tree('JJ', ['brown']), Tree('NN', ['fox'])]), Tree('VP', [Tree('VBZ', ['is']), Tree('ADJP', [Tree('JJ', ['quick'])])])]), Tree('CC', ['and']), Tree('S', [Tree('NP', [Tree('PRP', ['he'])]), Tree('VP', [Tree('VBZ', ['is']), Tree('VP', [Tree('VBG', ['jumping']), Tree('PP', [Tree('IN', ['over']), Tree('NP', [Tree('DT', ['the']), Tree('JJ', ['lazy']), Tree('NN', ['dog'])])])])])])])])])" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# visualize constituency tree\n", + "result[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Categories: 15\n" + ] + } + ], + "source": [ + "# load the Brown Corpus\n", + "from nltk.corpus import brown\n", + "\n", + "# total categories\n", + "print('Total Categories:', len(brown.categories()))" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['adventure', 'belles_lettres', 'editorial', 'fiction', 'government', 'hobbies', 'humor', 'learned', 'lore', 'mystery', 'news', 'religion', 'reviews', 'romance', 'science_fiction']\n" + ] + } + ], + "source": [ + "# print the categories\n", + "print(brown.categories())" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['There', 'were', 'thirty-eight', 'patients', 'on', 'the', 'bus', 'the', 'morning', 'I', 'left', 'for', 'Hanover', ',', 'most', 'of', 'them', 'disturbed', 'and', 'hallucinating', '.'], ['An', 'interne', ',', 'a', 'nurse', 'and', 'two', 'attendants', 'were', 'in', 'charge', 'of', 'us', '.'], ...]" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# tokenized sentences\n", + "brown.sents(categories='mystery')" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[[('There', 'EX'), ('were', 'BED'), ('thirty-eight', 'CD'), ('patients', 'NNS'), ('on', 'IN'), ('the', 'AT'), ('bus', 'NN'), ('the', 'AT'), ('morning', 'NN'), ('I', 'PPSS'), ('left', 'VBD'), ('for', 'IN'), ('Hanover', 'NP'), (',', ','), ('most', 'AP'), ('of', 'IN'), ('them', 'PPO'), ('disturbed', 'VBN'), ('and', 'CC'), ('hallucinating', 'VBG'), ('.', '.')], [('An', 'AT'), ('interne', 'NN'), (',', ','), ('a', 'AT'), ('nurse', 'NN'), ('and', 'CC'), ('two', 'CD'), ('attendants', 'NNS'), ('were', 'BED'), ('in', 'IN'), ('charge', 'NN'), ('of', 'IN'), ('us', 'PPO'), ('.', '.')], ...]" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# POS tagged sentences\n", + "brown.tagged_sents(categories='mystery')" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['There were thirty-eight patients on the bus the morning I left for Hanover , most of them disturbed and hallucinating .',\n", + " 'An interne , a nurse and two attendants were in charge of us .',\n", + " \"I felt lonely and depressed as I stared out the bus window at Chicago's grim , dirty West Side .\",\n", + " 'It seemed incredible , as I listened to the monotonous drone of voices and smelled the fetid odors coming from the patients , that technically I was a ward of the state of Illinois , going to a hospital for the mentally ill .',\n", + " 'I suddenly thought of Mary Jane Brennan , the way her pretty eyes could flash with anger , her quiet competence , the gentleness and sweetness that lay just beneath the surface of her defenses .']" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get sentences in natural form\n", + "sentences = brown.sents(categories='mystery')\n", + "sentences = [' '.join(sentence_token) for sentence_token in sentences]\n", + "sentences[0:5] # viewing the first 5 sentences" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('patients', 'NNS'),\n", + " ('bus', 'NN'),\n", + " ('morning', 'NN'),\n", + " ('Hanover', 'NP'),\n", + " ('interne', 'NN'),\n", + " ('nurse', 'NN'),\n", + " ('attendants', 'NNS'),\n", + " ('charge', 'NN'),\n", + " ('bus', 'NN'),\n", + " ('window', 'NN')]" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get tagged words\n", + "tagged_words = brown.tagged_words(categories='mystery')\n", + "\n", + "# get nouns from tagged words\n", + "nouns = [(word, tag) for word, tag in tagged_words if any(noun_tag in tag for noun_tag in ['NP', 'NN'])]\n", + "\n", + "nouns[0:10] # view the first 10 nouns" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('man', 106),\n", + " ('time', 82),\n", + " ('door', 80),\n", + " ('car', 69),\n", + " ('room', 65),\n", + " ('Mr.', 63),\n", + " ('way', 61),\n", + " ('office', 50),\n", + " ('eyes', 48),\n", + " ('Mrs.', 46)]" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# build frequency distribution for nouns\n", + "nouns_freq = nltk.FreqDist([word for word, tag in nouns])\n", + "\n", + "# view top 10 occuring nouns\n", + "nouns_freq.most_common(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Categories: 90\n" + ] + } + ], + "source": [ + "# load the Reuters Corpus\n", + "from nltk.corpus import reuters\n", + "\n", + "# total categories\n", + "print('Total Categories:', len(reuters.categories()))" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['acq', 'alum', 'barley', 'bop', 'carcass', 'castor-oil', 'cocoa', 'coconut', 'coconut-oil', 'coffee', 'copper', 'copra-cake', 'corn', 'cotton', 'cotton-oil', 'cpi', 'cpu', 'crude', 'dfl', 'dlr', 'dmk', 'earn', 'fuel', 'gas', 'gnp', 'gold', 'grain', 'groundnut', 'groundnut-oil', 'heat', 'hog', 'housing', 'income', 'instal-debt', 'interest', 'ipi', 'iron-steel', 'jet', 'jobs', 'l-cattle', 'lead', 'lei', 'lin-oil', 'livestock', 'lumber', 'meal-feed', 'money-fx', 'money-supply', 'naphtha', 'nat-gas', 'nickel', 'nkr', 'nzdlr', 'oat', 'oilseed', 'orange', 'palladium', 'palm-oil', 'palmkernel', 'pet-chem', 'platinum', 'potato', 'propane', 'rand', 'rape-oil', 'rapeseed', 'reserves', 'retail', 'rice', 'rubber', 'rye', 'ship', 'silver', 'sorghum', 'soy-meal', 'soy-oil', 'soybean', 'strategic-metal', 'sugar', 'sun-meal', 'sun-oil', 'sunseed', 'tea', 'tin', 'trade', 'veg-oil', 'wheat', 'wpi', 'yen', 'zinc']\n" + ] + } + ], + "source": [ + "# print the categories\n", + "print(reuters.categories())" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[\"YUGOSLAV ECONOMY WORSENED IN 1986 , BANK DATA SHOWS National Bank economic data for 1986 shows that Yugoslavia ' s trade deficit grew , the inflation rate rose , wages were sharply higher , the money supply expanded and the value of the dinar fell .\",\n", + " 'The trade deficit for 1986 was 2 . 012 billion dlrs , 25 . 7 pct higher than in 1985 .',\n", + " 'The trend continued in the first three months of this year as exports dropped by 17 . 8 pct , in hard currency terms , to 2 . 124 billion dlrs .',\n", + " 'Yugoslavia this year started quoting trade figures in dinars based on current exchange rates , instead of dollars based on a fixed exchange rate of 264 . 53 dinars per dollar .',\n", + " \"Yugoslavia ' s balance of payments surplus with the convertible currency area fell to 245 mln dlrs in 1986 from 344 mln in 1985 .\"]" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get sentences in housing and income categories\n", + "sentences = reuters.sents(categories=['housing', 'income'])\n", + "sentences = [' '.join(sentence_tokens) for sentence_tokens in sentences]\n", + "sentences[0:5] # view the first 5 sentences" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['test/16118', 'test/18534', 'test/18540', 'test/18664', 'test/18665', 'test/18672', 'test/18911', 'test/19875', 'test/20106', 'test/20116', 'training/1035', 'training/1036', 'training/10602', 'training/10604', 'training/11170', 'training/11665', 'training/2618', 'training/29', 'training/3105', 'training/3708', 'training/3720', 'training/3723', 'training/3898', 'training/5883', 'training/5886', 'training/6000', 'training/6067', 'training/6197', 'training/7005', 'training/7006', 'training/7015', 'training/7036', 'training/7098', 'training/7099', 'training/9615']\n" + ] + } + ], + "source": [ + "# fileid based access\n", + "print(reuters.fileids(categories=['housing', 'income']))" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[['YUGOSLAV', 'ECONOMY', 'WORSENED', 'IN', '1986', ',', 'BANK', 'DATA', 'SHOWS', 'National', 'Bank', 'economic', 'data', 'for', '1986', 'shows', 'that', 'Yugoslavia', \"'\", 's', 'trade', 'deficit', 'grew', ',', 'the', 'inflation', 'rate', 'rose', ',', 'wages', 'were', 'sharply', 'higher', ',', 'the', 'money', 'supply', 'expanded', 'and', 'the', 'value', 'of', 'the', 'dinar', 'fell', '.'], ['The', 'trade', 'deficit', 'for', '1986', 'was', '2', '.', '012', 'billion', 'dlrs', ',', '25', '.', '7', 'pct', 'higher', 'than', 'in', '1985', '.'], ...]\n" + ] + } + ], + "source": [ + "print(reuters.sents(fileids=[u'test/16118', u'test/18534']))" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[Synset('hike.n.01'),\n", + " Synset('rise.n.09'),\n", + " Synset('raise.n.01'),\n", + " Synset('hike.v.01'),\n", + " Synset('hike.v.02')]" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# load the Wordnet Corpus\n", + "from nltk.corpus import wordnet as wn\n", + "\n", + "word = 'hike' # taking hike as our word of interest\n", + "# get word synsets\n", + "word_synsets = wn.synsets(word)\n", + "word_synsets" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Synset Name: hike.n.01\n", + "POS Tag: n\n", + "Definition: a long walk usually for exercise or pleasure\n", + "Examples: ['she enjoys a hike in her spare time']\n", + "\n", + "Synset Name: rise.n.09\n", + "POS Tag: n\n", + "Definition: an increase in cost\n", + "Examples: ['they asked for a 10% rise in rates']\n", + "\n", + "Synset Name: raise.n.01\n", + "POS Tag: n\n", + "Definition: the amount a salary is increased\n", + "Examples: ['he got a 3% raise', 'he got a wage hike']\n", + "\n", + "Synset Name: hike.v.01\n", + "POS Tag: v\n", + "Definition: increase\n", + "Examples: ['The landlord hiked up the rents']\n", + "\n", + "Synset Name: hike.v.02\n", + "POS Tag: v\n", + "Definition: walk a long way, as for pleasure or physical exercise\n", + "Examples: ['We were hiking in Colorado', 'hike the Rockies']\n", + "\n" + ] + } + ], + "source": [ + "# get details for each synonym in synset\n", + "for synset in word_synsets:\n", + " print(('Synset Name: {name}\\n'\n", + " 'POS Tag: {tag}\\n'\n", + " 'Definition: {defn}\\n'\n", + " 'Examples: {ex}\\n').format(name=synset.name(),\n", + " tag=synset.pos(),\n", + " defn=synset.definition(),\n", + " ex=synset.examples()))\n", + " " + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02a - Python Environment Setup.ipynb b/New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02a - Python Environment Setup.ipynb new file mode 100644 index 0000000..5d18729 --- /dev/null +++ b/New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02a - Python Environment Setup.ipynb @@ -0,0 +1,304 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Python 3.5.2 :: Anaconda custom (64-bit)\n" + ] + } + ], + "source": [ + "!python --version" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Welcome to Python\n" + ] + } + ], + "source": [ + "print('Welcome to Python')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pandas==0.20.3\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "You are using pip version 9.0.1, however version 10.0.1 is available.\n", + "You should consider upgrading via the 'python -m pip install --upgrade pip' command.\n" + ] + } + ], + "source": [ + "!pip freeze | grep pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: pandas in c:\\program files\\anaconda3\\lib\\site-packages\n", + "Requirement already satisfied: python-dateutil>=2 in c:\\program files\\anaconda3\\lib\\site-packages (from pandas)\n", + "Requirement already satisfied: pytz>=2011k in c:\\program files\\anaconda3\\lib\\site-packages (from pandas)\n", + "Requirement already satisfied: numpy>=1.7.0 in c:\\program files\\anaconda3\\lib\\site-packages (from pandas)\n", + "Requirement already satisfied: six>=1.5 in c:\\program files\\anaconda3\\lib\\site-packages (from python-dateutil>=2->pandas)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "You are using pip version 9.0.1, however version 10.0.1 is available.\n", + "You should consider upgrading via the 'python -m pip install --upgrade pip' command.\n" + ] + } + ], + "source": [ + "!pip install pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting pandas\n", + " Downloading https://files.pythonhosted.org/packages/24/f1/bbe61db3ab675ae612d5261e69cff05f1ff0a7638469a9faa1c9cdc1dcd5/pandas-0.23.3-cp35-cp35m-win_amd64.whl (7.6MB)\n", + "Collecting python-dateutil>=2.5.0 (from pandas)\n", + " Downloading https://files.pythonhosted.org/packages/cf/f5/af2b09c957ace60dcfac112b669c45c8c97e32f94aa8b56da4c6d1682825/python_dateutil-2.7.3-py2.py3-none-any.whl (211kB)\n", + "Collecting numpy>=1.9.0 (from pandas)\n", + " Downloading https://files.pythonhosted.org/packages/f3/71/94628784c3f07d4bc0dd38f8753e3f751d66cfd5a6823591179608c27f09/numpy-1.14.5-cp35-none-win_amd64.whl (13.4MB)\n", + "Collecting pytz>=2011k (from pandas)\n", + " Downloading https://files.pythonhosted.org/packages/30/4e/27c34b62430286c6d59177a0842ed90dc789ce5d1ed740887653b898779a/pytz-2018.5-py2.py3-none-any.whl (510kB)\n", + "Collecting six>=1.5 (from python-dateutil>=2.5.0->pandas)\n", + " Downloading https://files.pythonhosted.org/packages/67/4b/141a581104b1f6397bfa78ac9d43d8ad29a7ca43ea90a2d863fe3056e86a/six-1.11.0-py2.py3-none-any.whl\n", + "Installing collected packages: six, python-dateutil, numpy, pytz, pandas\n", + " Found existing installation: six 1.10.0\n", + " Uninstalling six-1.10.0:\n", + " Successfully uninstalled six-1.10.0\n", + " Found existing installation: python-dateutil 2.5.3\n", + " Uninstalling python-dateutil-2.5.3:\n", + " Successfully uninstalled python-dateutil-2.5.3\n", + " Found existing installation: numpy 1.14.0\n", + " Uninstalling numpy-1.14.0:\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + " DEPRECATION: Uninstalling a distutils installed project (six) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.\n", + "Exception:\n", + "Traceback (most recent call last):\n", + " File \"c:\\program files\\anaconda3\\lib\\shutil.py\", line 538, in move\n", + " os.rename(src, real_dst)\n", + "PermissionError: [WinError 5] Access is denied: 'c:\\\\program files\\\\anaconda3\\\\lib\\\\site-packages\\\\numpy-1.14.0.dist-info\\\\description.rst' -> 'C:\\\\Users\\\\DIP~1.DIP\\\\AppData\\\\Local\\\\Temp\\\\pip-bz4bun3s-uninstall\\\\program files\\\\anaconda3\\\\lib\\\\site-packages\\\\numpy-1.14.0.dist-info\\\\description.rst'\n", + "\n", + "During handling of the above exception, another exception occurred:\n", + "\n", + "Traceback (most recent call last):\n", + " File \"c:\\program files\\anaconda3\\lib\\site-packages\\pip\\basecommand.py\", line 215, in main\n", + " status = self.run(options, args)\n", + " File \"c:\\program files\\anaconda3\\lib\\site-packages\\pip\\commands\\install.py\", line 342, in run\n", + " prefix=options.prefix_path,\n", + " File \"c:\\program files\\anaconda3\\lib\\site-packages\\pip\\req\\req_set.py\", line 778, in install\n", + " requirement.uninstall(auto_confirm=True)\n", + " File \"c:\\program files\\anaconda3\\lib\\site-packages\\pip\\req\\req_install.py\", line 754, in uninstall\n", + " paths_to_remove.remove(auto_confirm)\n", + " File \"c:\\program files\\anaconda3\\lib\\site-packages\\pip\\req\\req_uninstall.py\", line 115, in remove\n", + " renames(path, new_path)\n", + " File \"c:\\program files\\anaconda3\\lib\\site-packages\\pip\\utils\\__init__.py\", line 267, in renames\n", + " shutil.move(old, new)\n", + " File \"c:\\program files\\anaconda3\\lib\\shutil.py\", line 553, in move\n", + " os.unlink(src)\n", + "PermissionError: [WinError 5] Access is denied: 'c:\\\\program files\\\\anaconda3\\\\lib\\\\site-packages\\\\numpy-1.14.0.dist-info\\\\description.rst'\n", + "You are using pip version 9.0.1, however version 10.0.1 is available.\n", + "You should consider upgrading via the 'python -m pip install --upgrade pip' command.\n" + ] + } + ], + "source": [ + "!pip install pandas --upgrade" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "```\n", + "\n", + "C:\\> conda install pandas\n", + "Solving environment: done\n", + "\n", + "## Package Plan ##\n", + "\n", + " environment location: C:\\Program Files\\Anaconda3\n", + "\n", + " added / updated specs:\n", + " - pandas\n", + "\n", + "\n", + "The following packages will be downloaded:\n", + "\n", + " package | build\n", + " ---------------------------|-----------------\n", + " pandas-0.23.3 | py35_0 8.6 MB conda-forge\n", + "\n", + "The following packages will be UPDATED:\n", + "\n", + " pandas: 0.20.3-py35_1 conda-forge --> 0.23.3-py35_0 conda-forge\n", + "\n", + "Proceed ([y]/n)? y\n", + "\n", + "\n", + "Downloading and Extracting Packages\n", + "pandas-0.23.3 | 8.6 MB | ########################################################### | 100%\n", + "Preparing transaction: done\n", + "Verifying transaction: done\n", + "Executing transaction: done\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "pandas==0.23.3\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "You are using pip version 9.0.1, however version 10.0.1 is available.\n", + "You should consider upgrading via the 'python -m pip install --upgrade pip' command.\n" + ] + } + ], + "source": [ + "!pip freeze | grep pandas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "```\n", + "E:\\>mkdir Apress\n", + "E:\\>cd Apress\n", + "E:\\Apress>pip install virtualenv\n", + "Collecting virtualenv\n", + "Installing collected packages: virtualenv\n", + "Successfully installed virtualenv-16.0.0\n", + "\n", + "E:\\Apress>mkdir test_proj && chdir test_proj\n", + "\n", + "E:\\Apress\\test_proj>virtualenv venv\n", + "Using base prefix 'c:\\\\program files\\\\anaconda3'\n", + "New python executable in E:\\Apress\\test_proj\\venv\\Scripts\\python.exe\n", + "Installing setuptools, pip, wheel...done.\n", + "\n", + "E:\\Apress\\test_proj>echo 'This is Global System Python'\n", + "'This is Global System Python'\n", + "\n", + "E:\\Apress\\test_proj>pip freeze | grep pandas\n", + "pandas==0.23.3\n", + "\n", + "\n", + "\n", + "E:\\Apress\\test_proj>venv\\Scripts\\activate\n", + "\n", + "(venv) E:\\Apress\\test_proj>echo 'This is VirtualEnv Python'\n", + "'This is VirtualEnv Python'\n", + "\n", + "(venv) E:\\Apress\\test_proj>pip install pandas==0.21.0\n", + "Collecting pandas==0.21.0\n", + " 100% |################################| 9.0MB 310kB/s\n", + "Collecting pytz>=2011k (from pandas==0.21.0)\n", + "Collecting python-dateutil>=2 (from pandas==0.21.0)\n", + "Collecting numpy>=1.9.0 (from pandas==0.21.0)\n", + "Collecting six>=1.5 (from python-dateutil>=2->pandas==0.21.0)\n", + "\n", + "Installing collected packages: pytz, six, python-dateutil, numpy, pandas\n", + "Successfully installed numpy-1.14.5 pandas-0.21.0 python-dateutil-2.7.3 pytz-2018.5 six-1.11.0\n", + "\n", + "(venv) E:\\Apress\\test_proj>pip freeze | grep pandas\n", + "pandas==0.21.0\n", + "\n", + "(venv) E:\\Apress\\test_proj>venv\\Scripts\\deactivate\n", + "E:\\Apress\\test_proj>pip freeze | grep pandas\n", + "pandas==0.23.3\n", + "```\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "http://docs.python-guide.org/en/latest/dev/virtualenvs/" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02b - Working with Text Data.ipynb b/New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02b - Working with Text Data.ipynb new file mode 100644 index 0000000..67e169c --- /dev/null +++ b/New-Second-Edition/Ch02 - Python for Natural Language Processing/Ch02b - Working with Text Data.ipynb @@ -0,0 +1,2095 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Zen of Python, by Tim Peters\n", + "\n", + "Beautiful is better than ugly.\n", + "Explicit is better than implicit.\n", + "Simple is better than complex.\n", + "Complex is better than complicated.\n", + "Flat is better than nested.\n", + "Sparse is better than dense.\n", + "Readability counts.\n", + "Special cases aren't special enough to break the rules.\n", + "Although practicality beats purity.\n", + "Errors should never pass silently.\n", + "Unless explicitly silenced.\n", + "In the face of ambiguity, refuse the temptation to guess.\n", + "There should be one-- and preferably only one --obvious way to do it.\n", + "Although that way may not be obvious at first unless you're Dutch.\n", + "Now is better than never.\n", + "Although never is often better than *right* now.\n", + "If the implementation is hard to explain, it's a bad idea.\n", + "If the implementation is easy to explain, it may be a good idea.\n", + "Namespaces are one honking great idea -- let's do more of those!\n" + ] + } + ], + "source": [ + "# zen of python\n", + "import this" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "```\n", + "stringliteral ::= [stringprefix](shortstring | longstring)\n", + "stringprefix ::= \"r\" | \"u\" | \"ur\" | \"R\" | \"U\" | \"UR\" | \"Ur\" | \"uR\"\n", + " | \"b\" | \"B\" | \"br\" | \"Br\" | \"bR\" | \"BR\"\n", + "shortstring ::= \"'\" shortstringitem* \"'\" | '\"' shortstringitem* '\"'\n", + "longstring ::= \"'''\" longstringitem* \"'''\" | '\"\"\"' longstringitem* '\"\"\"'\n", + "shortstringitem ::= shortstringchar | escapeseq\n", + "longstringitem ::= longstringchar | escapeseq\n", + "shortstringchar ::= \n", + "longstringchar ::= \n", + "escapeseq ::= \"\\\" \n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# String types" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ID: 1907471142032\n", + "Type: \n", + "Value: This is a String\n" + ] + } + ], + "source": [ + "new_string = \"This is a String\" # storing a string\n", + "\n", + "print('ID:', id(new_string)) # shows the object identifier (address)\n", + "print('Type:', type(new_string)) # shows the object type\n", + "print('Value:', new_string) # shows the object value" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello! I'm a simple string\n" + ] + } + ], + "source": [ + "# simple string\n", + "simple_string = 'Hello!' + \" I'm a simple string\"\n", + "print(simple_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"Hello I'm\\na multi-line\\nstring!\"" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# multi-line string, note the \\n (newline) escape character automatically created\n", + "multi_line_string = \"\"\"Hello I'm\n", + "a multi-line\n", + "string!\"\"\"\n", + "\n", + "multi_line_string" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hello I'm\n", + "a multi-line\n", + "string!\n" + ] + } + ], + "source": [ + "print(multi_line_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "C:\the_folder\n", + "ew_dir\f", + "ile.txt\n" + ] + } + ], + "source": [ + "# Normal string with escape sequences leading to a wrong file path!\n", + "escaped_string = \"C:\\the_folder\\new_dir\\file.txt\"\n", + "print(escaped_string) # will cause errors if we try to open a file here" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "C:\\the_folder\\new_dir\\file.txt\n" + ] + } + ], + "source": [ + "# raw string keeping the backslashes in its normal form\n", + "raw_string = r'C:\\the_folder\\new_dir\\file.txt'\n", + "print(raw_string)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hèllo!\n" + ] + } + ], + "source": [ + "# unicode string literals\n", + "string_with_unicode = 'H\\u00e8llo!'\n", + "print(string_with_unicode)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "I love Pizza 🍕! Shall we book a cab 🚕 to get pizza?\n" + ] + } + ], + "source": [ + "more_unicode = 'I love Pizza 🍕! Shall we book a cab 🚕 to get pizza?'\n", + "print(more_unicode)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hèllo!\n", + "I love Pizza 🍕! Shall we book a cab 🚕 to get pizza?\n" + ] + } + ], + "source": [ + "print(string_with_unicode + '\\n' + more_unicode)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hèllo! I love Pizza 🍕! Shall we book a cab 🚕 to get pizza?'" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "' '.join([string_with_unicode, more_unicode])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'?azzip teg ot 🚕 bac a koob ew llahS !🍕 azziP evol I'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "more_unicode[::-1] # reverses the string" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# String operations\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Different ways of String concatenation\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hello 😊 and welcome to Python 🐍!'" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'Hello 😊' + ' and welcome ' + 'to Python 🐍!'" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hello 😊 and welcome to Python 🐍!'" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'Hello 😊' ' and welcome ' 'to Python 🐍!'" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# concatenation of variables and literals" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hello 😊 Python 💻!'" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s1 = 'Python 💻!'\n", + "'Hello 😊 ' + s1" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "invalid syntax (, line 1)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m1\u001b[0m\n\u001b[0;31m 'Hello 😊 ' s1\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n" + ] + } + ], + "source": [ + "'Hello 😊 ' s1" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "# some more ways of concatenating strings" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'--🐍Python🐍----🐍Python🐍----🐍Python🐍----🐍Python🐍----🐍Python🐍--'" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s2 = '--🐍Python🐍--'\n", + "s2 * 5" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Python 💻!--🐍Python🐍--'" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s1 + s2" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Python 💻!--🐍Python🐍--Python 💻!--🐍Python🐍--Python 💻!--🐍Python🐍--'" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(s1 + s2)*3" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "# concatenating several strings together in parentheses" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'This is another way to concatenate several strings!'" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s3 = ('This '\n", + " 'is another way '\n", + " 'to concatenate '\n", + " 'several strings!')\n", + "s3" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "# checking for substrings in a string" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'way' in s3" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'python' in s3" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "# computing total length of the string" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "51" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(s3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# String indexing and slicing" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('PYTHON', str)" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# creating a string\n", + "s = 'PYTHON'\n", + "s, type(s)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## String indexing" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Character -> P has index-> 0\n", + "Character -> Y has index-> 1\n", + "Character -> T has index-> 2\n", + "Character -> H has index-> 3\n", + "Character -> O has index-> 4\n", + "Character -> N has index-> 5\n" + ] + } + ], + "source": [ + "# depicting string indexes\n", + "for index, character in enumerate(s):\n", + " print('Character ->', character, 'has index->', index)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('P', 'Y', 'T', 'H', 'O', 'N')" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[0], s[1], s[2], s[3], s[4], s[5]" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('N', 'O', 'H', 'T', 'Y', 'P')" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[-1], s[-2], s[-3], s[-4], s[-5], s[-6]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## String slicing" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'PYTHON'" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[:] " + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'YTH'" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[1:4]" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('PYT', 'HON')" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[:3], s[3:]" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'HON'" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[-3:]" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'PYTHON'" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[:3] + s[3:]" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'PYTHON'" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[:3] + s[-3:]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## String slicing with offsets" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'PYTHON'" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[::1] # no offset" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'PTO'" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s[::2] # print every 2nd character in string" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# String Immutability" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "ename": "TypeError", + "evalue": "'str' object does not support item assignment", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[1;31m# strings are immutable hence assignment throws error\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0ms\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m]\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;34m'X'\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m: 'str' object does not support item assignment" + ] + } + ], + "source": [ + "# strings are immutable hence assignment throws error\n", + "s[0] = 'X'" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original String id: 1907471353144\n", + "XYTHON\n", + "New String id: 1907471390736\n" + ] + } + ], + "source": [ + "print('Original String id:', id(s))\n", + "# creates a new string\n", + "s = 'X' + s[1:]\n", + "print(s)\n", + "print('New String id:', id(s))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Useful String methods" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Case conversions" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [], + "source": [ + "s = 'python is great'" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Python is great'" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s.capitalize()" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'PYTHON IS GREAT'" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s.upper()" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Python Is Great'" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s.title()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## String replace" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'NLP is great'" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s.replace('python', 'NLP')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Numeric checks" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'12345'.isdecimal()" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'apollo11'.isdecimal()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Alphabet checks" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'python'.isalpha()" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'number1'.isalpha()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Alphanumeric checks" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'total'.isalnum()" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'abc123'.isalnum()" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'1+1'.isalnum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## String splitting and joining" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['I', 'am', 'a', 'comma', 'separated', 'string']" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s = 'I,am,a,comma,separated,string'\n", + "s.split(',')" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'I am a comma separated string'" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "' '.join(s.split(','))" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "' I am surrounded by spaces '" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# stripping whitespace characters\n", + "s = ' I am surrounded by spaces '\n", + "s" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'I am surrounded by spaces'" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "s.strip()" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Python is great', ' NLP is also good', '']" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentences = 'Python is great. NLP is also good.'\n", + "sentences.split('.')" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Python is great\n", + " NLP is also good\n", + "\n" + ] + } + ], + "source": [ + "print('\\n'.join(sentences.split('.')))" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Python is great\n", + "NLP is also good\n" + ] + } + ], + "source": [ + "print('\\n'.join([sentence.strip() \n", + " for sentence in sentences.split('.') \n", + " if sentence]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# String formatting" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Simple string formatting expressions - old style" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hello Python!'" + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'Hello %s' %('Python!')" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hello World! How are you?'" + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'Hello %s %s' %('World!', 'How are you?')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Formatting expressions with different data types - old style" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'We have 2 bottles containing 2.50 gallons of milk'" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'We have %d %s containing %.2f gallons of %s' %(2, 'bottles', 2.5, 'milk')" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'We have 5 jugs containing 10.87 gallons of juice'" + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'We have %d %s containing %.2f gallons of %s' %(5.21, 'jugs', 10.86763, 'juice')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Formatting strings using the format method - new style" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hello Mr. Jones, it is a great pleasure to meet you at 5'" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'Hello {} {}, it is a great {} to meet you at {}'.format('Mr.', 'Jones', 'pleasure', 5)" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"Hello Sir Arthur, it is a great honor to meet you at 9 o' clock\"" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'Hello {} {}, it is a great {} to meet you at {} o\\' clock'.format('Sir', 'Arthur', 'honor', 9)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Alternative ways of using string format" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'I have a sandwich and a soda with me'" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'I have a {food_item} and a {drink_item} with me'.format(drink_item='soda', food_item='sandwich')" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"The dog has the following attributes: ['lazy', 'loyal']\"" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "'The {animal} has the following attributes: {attributes}'.format(animal='dog', attributes=['lazy', 'loyal'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Regular Expressions" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [], + "source": [ + "s1 = 'Python is an excellent language'\n", + "s2 = 'I love the Python language. I also use Python to build applications at work!'" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "\n", + "pattern = 'python'\n", + "# match only returns a match if regex match is found at the beginning of the string\n", + "re.match(pattern, s1)" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "<_sre.SRE_Match object; span=(0, 6), match='Python'>" + ] + }, + "execution_count": 100, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# pattern is in lower case hence ignore case flag helps\n", + "# in matching same pattern with different cases\n", + "re.match(pattern, s1, flags=re.IGNORECASE)" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Found match Python ranging from index 0 - 6 in the string \"Python is an excellent language\"\n" + ] + } + ], + "source": [ + "# printing matched string and its indices in the original string\n", + "m = re.match(pattern, s1, flags=re.IGNORECASE)\n", + "print('Found match {} ranging from index {} - {} in the string \"{}\"'.format(m.group(0), \n", + " m.start(), \n", + " m.end(), s1))" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [], + "source": [ + "# match does not work when pattern is not there in the beginning of string s2\n", + "re.match(pattern, s2, re.IGNORECASE)" + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "<_sre.SRE_Match object; span=(11, 17), match='Python'>" + ] + }, + "execution_count": 103, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# illustrating find and search methods using the re module\n", + "re.search(pattern, s2, re.IGNORECASE)" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Python', 'Python']" + ] + }, + "execution_count": 104, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "re.findall(pattern, s2, re.IGNORECASE)" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 106, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "match_objs = re.finditer(pattern, s2, re.IGNORECASE)\n", + "match_objs" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "String: I love the Python language. I also use Python to build applications at work!\n", + "Found match \"Python\" ranging from index 11 - 17\n", + "Found match \"Python\" ranging from index 39 - 45\n" + ] + } + ], + "source": [ + "print(\"String:\", s2)\n", + "for m in match_objs:\n", + " print('Found match \"{}\" ranging from index {} - {}'.format(m.group(0), \n", + " m.start(), m.end()))" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'I love the Java language. I also use Java to build applications at work!'" + ] + }, + "execution_count": 108, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# illustrating pattern substitution using sub and subn methods\n", + "re.sub(pattern, 'Java', s2, flags=re.IGNORECASE)" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('I love the Java language. I also use Java to build applications at work!', 2)" + ] + }, + "execution_count": 109, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "re.subn(pattern, 'Java', s2, flags=re.IGNORECASE)" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Hèllo! this is Python 🐍'" + ] + }, + "execution_count": 119, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# dealing with unicode matching using regexes\n", + "s = u'H\\u00e8llo! this is Python 🐍'\n", + "s" + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Hèllo', 'this', 'is', 'Python']" + ] + }, + "execution_count": 120, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "re.findall(r'\\w+', s)" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Hèllo', 'Python']" + ] + }, + "execution_count": 122, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "re.findall(r\"[A-Z]\\w+\", s, re.UNICODE)" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['🐍']" + ] + }, + "execution_count": 123, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "emoji_pattern = r\"['\\U0001F300-\\U0001F5FF'|'\\U0001F600-\\U0001F64F'|'\\U0001F680-\\U0001F6FF'|'\\u2600-\\u26FF\\u2700-\\u27BF']\"\n", + "re.findall(emoji_pattern, s, re.UNICODE)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Putting it all together - Basic Text Processing and Analysis" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['[The King James Bible]\\n',\n", + " '\\n',\n", + " 'The Old Testament of the King James Bible\\n',\n", + " '\\n',\n", + " 'The First Book of Moses: Called Genesis\\n']" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.corpus import gutenberg\n", + "import matplotlib.pyplot as plt\n", + "\n", + "%matplotlib inline\n", + "\n", + "bible = gutenberg.open('bible-kjv.txt')\n", + "bible = bible.readlines()\n", + "\n", + "bible[:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "99805" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(bible)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['[The King James Bible]',\n", + " 'The Old Testament of the King James Bible',\n", + " 'The First Book of Moses: Called Genesis',\n", + " '1:1 In the beginning God created the heaven and the earth.',\n", + " '1:2 And the earth was without form, and void; and darkness was upon']" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bible = list(filter(None, [item.strip('\\n') for item in bible]))\n", + "bible[:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "74645" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(bible)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "line_lengths = [len(sentence) for sentence in bible]\n", + "h = plt.hist(line_lengths)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[['[The', 'King', 'James', 'Bible]'], ['The', 'Old', 'Testament', 'of', 'the', 'King', 'James', 'Bible'], ['The', 'First', 'Book', 'of', 'Moses:', 'Called', 'Genesis'], ['1:1', 'In', 'the', 'beginning', 'God', 'created', 'the', 'heaven', 'and', 'the', 'earth.'], ['1:2', 'And', 'the', 'earth', 'was', 'without', 'form,', 'and', 'void;', 'and', 'darkness', 'was', 'upon']]\n" + ] + } + ], + "source": [ + "tokens = [item.split() for item in bible]\n", + "print(tokens[:5])" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "total_tokens_per_line = [len(sentence.split()) for sentence in bible]\n", + "h = plt.hist(total_tokens_per_line, color='orange')" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['[The', 'King', 'James', 'Bible]', 'The', 'Old', 'Testament', 'of', 'the', 'King', 'James', 'Bible', 'The', 'First', 'Book', 'of', 'Moses:', 'Called', 'Genesis', '1:1']\n" + ] + } + ], + "source": [ + "words = [word for sentence in tokens for word in sentence]\n", + "print(words[:20])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['The', 'King', 'James', 'Bible', 'The', 'Old', 'Testament', 'of', 'the', 'King', 'James', 'Bible', 'The', 'First', 'Book', 'of', 'Moses', 'Called', 'Genesis', 'In']\n" + ] + } + ], + "source": [ + "words = list(filter(None, [re.sub(r'[^A-Za-z]', '', word) for word in words]))\n", + "print(words[:20])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('the', 64023),\n", + " ('and', 51696),\n", + " ('of', 34670),\n", + " ('to', 13580),\n", + " ('that', 12912),\n", + " ('in', 12667),\n", + " ('he', 10419),\n", + " ('shall', 9838),\n", + " ('unto', 8997),\n", + " ('for', 8970)]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from collections import Counter\n", + "\n", + "words = [word.lower() for word in words]\n", + "c = Counter(words)\n", + "c.most_common(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('shall', 9838),\n", + " ('unto', 8997),\n", + " ('lord', 7830),\n", + " ('thou', 5474),\n", + " ('thy', 4600),\n", + " ('god', 4442),\n", + " ('said', 3999),\n", + " ('ye', 3983),\n", + " ('thee', 3826),\n", + " ('upon', 2748)]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import nltk \n", + "\n", + "stopwords = nltk.corpus.stopwords.words('english')\n", + "words = [word.lower() for word in words if word.lower() not in stopwords]\n", + "c = Counter(words)\n", + "c.most_common(10)" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03a - Text Wrangling.ipynb b/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03a - Text Wrangling.ipynb new file mode 100644 index 0000000..42879d7 --- /dev/null +++ b/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03a - Text Wrangling.ipynb @@ -0,0 +1,4585 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "b'content=\"Ebookmaker 0.4.0a5 by Marcello Perathoner <webmaster@gutenberg.org>\" name=\"generator\"/>\\r\\n\\r\\n

Project Gutenberg EBook The Bible, King James, Book 1: Genesis

\\r\\n\\r\\n

Copyright laws are changing all over the world. Be sure to check the\\r\\ncopyright laws for your country before downloading or redistributing\\r\\nthis or any other Project Gutenberg eBook.

\\r\\n\\r\\n

This header should be the first thing seen when viewing this Project\\r\\nGutenberg file. Please do not remove it. Do not change or edit the\\r\\nheader without written permission.

\\r\\n\\r\\n

Please read the \"legal small print,\" and other information about the\\r\\neBook and Project Gutenberg at the bottom of this file. Included is\\r\\nimportant information about your specific rights and restrictions in\\r\\nhow the file may be used. You can also find out about how to make a\\r\\ndonation to Project Gutenberg, and how to get involved.

\\r\\n\\r\\n

**Welcome To The World of F'\n" + ] + } + ], + "source": [ + "import requests\n", + "\n", + "data = requests.get('http://www.gutenberg.org/cache/epub/8001/pg8001.html')\n", + "content = data.content\n", + "print(content[1163:2200])" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "*** START OF THE PROJECT GUTENBERG EBOOK, THE BIBLE, KING JAMES, BOOK 1***\n", + "This eBook was produced by David Widger\n", + "with the help of Derek Andrew's text from January 1992\n", + "and the work of Bryan Taylor in November 2002.\n", + "Book 01 Genesis\n", + "01:001:001 In the beginning God created the heaven and the earth.\n", + "01:001:002 And the earth was without form, and void; and darkness was\n", + " upon the face of the deep. And the Spirit of God moved upon\n", + " the face of the waters.\n", + "01:001:003 And God said, Let there be light: and there was light.\n", + "01:001:004 And God saw the light, that it was good: and God divided the\n", + "           light from the darkness.\n", + "01:001:005 And God called the light Day, and the darkness he called\n", + "           Night. And the evening and the morning were the first day.\n", + "01:001:006 And God said, Let there be a firmament in the midst of the\n", + "           waters,\n" + ] + } + ], + "source": [ + "import re\n", + "from bs4 import BeautifulSoup\n", + "\n", + "def strip_html_tags(text):\n", + " soup = BeautifulSoup(text, \"html.parser\")\n", + " [s.extract() for s in soup(['iframe', 'script'])]\n", + " stripped_text = soup.get_text()\n", + " stripped_text = re.sub(r'[\\r|\\n|\\r\\n]+', '\\n', stripped_text)\n", + " return stripped_text\n", + "\n", + "clean_content = strip_html_tags(content)\n", + "print(clean_content[1163:2045])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tokenization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Sentence Tokenization" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"US unveils world's most powerful supercomputer, beats China. The US has unveiled the world's most powerful supercomputer called 'Summit', beating the previous record-holder China's Sunway TaihuLight. With a peak performance of 200,000 trillion calculations per second, it is over twice as fast as Sunway TaihuLight, which is capable of 93,000 trillion calculations per second. Summit has 4,608 servers, which reportedly take up the size of two tennis courts.\"" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import nltk\n", + "from nltk.corpus import gutenberg\n", + "from pprint import pprint\n", + "import numpy as np\n", + "\n", + "# loading text corpora\n", + "alice = gutenberg.raw(fileids='carroll-alice.txt')\n", + "sample_text = (\"US unveils world's most powerful supercomputer, beats China. \" \n", + " \"The US has unveiled the world's most powerful supercomputer called 'Summit', \" \n", + " \"beating the previous record-holder China's Sunway TaihuLight. With a peak performance \"\n", + " \"of 200,000 trillion calculations per second, it is over twice as fast as Sunway TaihuLight, \"\n", + " \"which is capable of 93,000 trillion calculations per second. Summit has 4,608 servers, \"\n", + " \"which reportedly take up the size of two tennis courts.\")\n", + "sample_text" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "144395" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Total characters in Alice in Wonderland\n", + "len(alice)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"[Alice's Adventures in Wonderland by Lewis Carroll 1865]\\n\\nCHAPTER I. Down the Rabbit-Hole\\n\\nAlice was\"" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# First 100 characters in the corpus\n", + "alice[0:100]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Default sentence tokenizer" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total sentences in sample_text: 4\n", + "Sample text sentences :-\n", + "[\"US unveils world's most powerful supercomputer, beats China.\"\n", + " \"The US has unveiled the world's most powerful supercomputer called 'Summit', beating the previous record-holder China's Sunway TaihuLight.\"\n", + " 'With a peak performance of 200,000 trillion calculations per second, it is over twice as fast as Sunway TaihuLight, which is capable of 93,000 trillion calculations per second.'\n", + " 'Summit has 4,608 servers, which reportedly take up the size of two tennis courts.']\n", + "\n", + "Total sentences in alice: 1625\n", + "First 5 sentences in alice:-\n", + "[\"[Alice's Adventures in Wonderland by Lewis Carroll 1865]\\n\\nCHAPTER I.\"\n", + " \"Down the Rabbit-Hole\\n\\nAlice was beginning to get very tired of sitting by her sister on the\\nbank, and of having nothing to do: once or twice she had peeped into the\\nbook her sister was reading, but it had no pictures or conversations in\\nit, 'and what is the use of a book,' thought Alice 'without pictures or\\nconversation?'\"\n", + " 'So she was considering in her own mind (as well as she could, for the\\nhot day made her feel very sleepy and stupid), whether the pleasure\\nof making a daisy-chain would be worth the trouble of getting up and\\npicking the daisies, when suddenly a White Rabbit with pink eyes ran\\nclose by her.'\n", + " \"There was nothing so VERY remarkable in that; nor did Alice think it so\\nVERY much out of the way to hear the Rabbit say to itself, 'Oh dear!\"\n", + " 'Oh dear!']\n" + ] + } + ], + "source": [ + "default_st = nltk.sent_tokenize\n", + "alice_sentences = default_st(text=alice)\n", + "sample_sentences = default_st(text=sample_text)\n", + "\n", + "print('Total sentences in sample_text:', len(sample_sentences))\n", + "print('Sample text sentences :-')\n", + "print(np.array(sample_sentences))\n", + "\n", + "print('\\nTotal sentences in alice:', len(alice_sentences))\n", + "print('First 5 sentences in alice:-')\n", + "print(np.array(alice_sentences[0:5]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Other languages sentence tokenization" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "157171\n", + " \n", + "Wiederaufnahme der Sitzungsperiode Ich erkläre die am Freitag , dem 17. Dezember unterbrochene Sit\n" + ] + } + ], + "source": [ + "from nltk.corpus import europarl_raw\n", + "\n", + "german_text = europarl_raw.german.raw(fileids='ep-00-01-17.de')\n", + "# Total characters in the corpus\n", + "print(len(german_text))\n", + "# First 100 characters in the corpus\n", + "print(german_text[0:100])" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "# default sentence tokenizer \n", + "german_sentences_def = default_st(text=german_text, language='german')\n", + "\n", + "# loading german text tokenizer into a PunktSentenceTokenizer instance \n", + "german_tokenizer = nltk.data.load(resource_url='tokenizers/punkt/german.pickle')\n", + "german_sentences = german_tokenizer.tokenize(german_text)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + } + ], + "source": [ + "# verify the type of german_tokenizer\n", + "# should be PunktSentenceTokenizer\n", + "print(type(german_tokenizer))" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n" + ] + } + ], + "source": [ + "# check if results of both tokenizers match \n", + "# should be True\n", + "print(german_sentences_def == german_sentences)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[' \\nWiederaufnahme der Sitzungsperiode Ich erkläre die am Freitag , dem 17. Dezember unterbrochene Sitzungsperiode des Europäischen Parlaments für wiederaufgenommen , wünsche Ihnen nochmals alles Gute zum Jahreswechsel und hoffe , daß Sie schöne Ferien hatten .'\n", + " 'Wie Sie feststellen konnten , ist der gefürchtete \" Millenium-Bug \" nicht eingetreten .'\n", + " 'Doch sind Bürger einiger unserer Mitgliedstaaten Opfer von schrecklichen Naturkatastrophen geworden .'\n", + " 'Im Parlament besteht der Wunsch nach einer Aussprache im Verlauf dieser Sitzungsperiode in den nächsten Tagen .'\n", + " 'Heute möchte ich Sie bitten - das ist auch der Wunsch einiger Kolleginnen und Kollegen - , allen Opfern der Stürme , insbesondere in den verschiedenen Ländern der Europäischen Union , in einer Schweigeminute zu gedenken .']\n" + ] + } + ], + "source": [ + "# print first 5 sentences of the corpus\n", + "print(np.array(german_sentences[:5]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using PunktSentenceTokenizer for sentence tokenization" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[\"US unveils world's most powerful supercomputer, beats China.\"\n", + " \"The US has unveiled the world's most powerful supercomputer called 'Summit', beating the previous record-holder China's Sunway TaihuLight.\"\n", + " 'With a peak performance of 200,000 trillion calculations per second, it is over twice as fast as Sunway TaihuLight, which is capable of 93,000 trillion calculations per second.'\n", + " 'Summit has 4,608 servers, which reportedly take up the size of two tennis courts.']\n" + ] + } + ], + "source": [ + "punkt_st = nltk.tokenize.PunktSentenceTokenizer()\n", + "sample_sentences = punkt_st.tokenize(sample_text)\n", + "print(np.array(sample_sentences))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using RegexpTokenizer for sentence tokenization" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[\"US unveils world's most powerful supercomputer, beats China.\"\n", + " \"The US has unveiled the world's most powerful supercomputer called 'Summit', beating the previous record-holder China's Sunway TaihuLight.\"\n", + " 'With a peak performance of 200,000 trillion calculations per second, it is over twice as fast as Sunway TaihuLight, which is capable of 93,000 trillion calculations per second.'\n", + " 'Summit has 4,608 servers, which reportedly take up the size of two tennis courts.']\n" + ] + } + ], + "source": [ + "SENTENCE_TOKENS_PATTERN = r'(? 1]\n", + " replaces = [a+c+b[1:] for (a, b) in pairs for c in alphabet if b]\n", + " inserts = [a+c+b for (a, b) in pairs for c in alphabet]\n", + " return set(deletes + transposes + replaces + inserts)\n", + "\n", + "\n", + "def edits2(word):\n", + " \"\"\"Return all strings that are two edits away \n", + " from the input word.\n", + " \"\"\"\n", + " return {e2 for e1 in edits1(word) for e2 in edits1(e1)}" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "def known(words):\n", + " \"\"\"\n", + " Return the subset of words that are actually \n", + " in our WORD_COUNTS dictionary.\n", + " \"\"\"\n", + " return {w for w in words if w in WORD_COUNTS}" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'fianlly'}" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# input word\n", + "In [409]: word = 'fianlly'\n", + "\n", + "# zero edit distance from input word\n", + "edits0(word)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "set()" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# returns null set since it is not a valid word\n", + "known(edits0(word))" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'afianlly',\n", + " 'aianlly',\n", + " 'bfianlly',\n", + " 'bianlly',\n", + " 'cfianlly',\n", + " 'cianlly',\n", + " 'dfianlly',\n", + " 'dianlly',\n", + " 'efianlly',\n", + " 'eianlly',\n", + " 'faanlly',\n", + " 'faianlly',\n", + " 'fainlly',\n", + " 'fanlly',\n", + " 'fbanlly',\n", + " 'fbianlly',\n", + " 'fcanlly',\n", + " 'fcianlly',\n", + " 'fdanlly',\n", + " 'fdianlly',\n", + " 'feanlly',\n", + " 'feianlly',\n", + " 'ffanlly',\n", + " 'ffianlly',\n", + " 'fganlly',\n", + " 'fgianlly',\n", + " 'fhanlly',\n", + " 'fhianlly',\n", + " 'fiaally',\n", + " 'fiaanlly',\n", + " 'fiablly',\n", + " 'fiabnlly',\n", + " 'fiaclly',\n", + " 'fiacnlly',\n", + " 'fiadlly',\n", + " 'fiadnlly',\n", + " 'fiaelly',\n", + " 'fiaenlly',\n", + " 'fiaflly',\n", + " 'fiafnlly',\n", + " 'fiaglly',\n", + " 'fiagnlly',\n", + " 'fiahlly',\n", + " 'fiahnlly',\n", + " 'fiailly',\n", + " 'fiainlly',\n", + " 'fiajlly',\n", + " 'fiajnlly',\n", + " 'fiaklly',\n", + " 'fiaknlly',\n", + " 'fiallly',\n", + " 'fially',\n", + " 'fialnlly',\n", + " 'fialnly',\n", + " 'fiamlly',\n", + " 'fiamnlly',\n", + " 'fianally',\n", + " 'fianaly',\n", + " 'fianblly',\n", + " 'fianbly',\n", + " 'fianclly',\n", + " 'fiancly',\n", + " 'fiandlly',\n", + " 'fiandly',\n", + " 'fianelly',\n", + " 'fianely',\n", + " 'fianflly',\n", + " 'fianfly',\n", + " 'fianglly',\n", + " 'fiangly',\n", + " 'fianhlly',\n", + " 'fianhly',\n", + " 'fianilly',\n", + " 'fianily',\n", + " 'fianjlly',\n", + " 'fianjly',\n", + " 'fianklly',\n", + " 'fiankly',\n", + " 'fianlaly',\n", + " 'fianlay',\n", + " 'fianlbly',\n", + " 'fianlby',\n", + " 'fianlcly',\n", + " 'fianlcy',\n", + " 'fianldly',\n", + " 'fianldy',\n", + " 'fianlely',\n", + " 'fianley',\n", + " 'fianlfly',\n", + " 'fianlfy',\n", + " 'fianlgly',\n", + " 'fianlgy',\n", + " 'fianlhly',\n", + " 'fianlhy',\n", + " 'fianlily',\n", + " 'fianliy',\n", + " 'fianljly',\n", + " 'fianljy',\n", + " 'fianlkly',\n", + " 'fianlky',\n", + " 'fianll',\n", + " 'fianlla',\n", + " 'fianllay',\n", + " 'fianllb',\n", + " 'fianllby',\n", + " 'fianllc',\n", + " 'fianllcy',\n", + " 'fianlld',\n", + " 'fianlldy',\n", + " 'fianlle',\n", + " 'fianlley',\n", + " 'fianllf',\n", + " 'fianllfy',\n", + " 'fianllg',\n", + " 'fianllgy',\n", + " 'fianllh',\n", + " 'fianllhy',\n", + " 'fianlli',\n", + " 'fianlliy',\n", + " 'fianllj',\n", + " 'fianlljy',\n", + " 'fianllk',\n", + " 'fianllky',\n", + " 'fianlll',\n", + " 'fianllly',\n", + " 'fianllm',\n", + " 'fianllmy',\n", + " 'fianlln',\n", + " 'fianllny',\n", + " 'fianllo',\n", + " 'fianlloy',\n", + " 'fianllp',\n", + " 'fianllpy',\n", + " 'fianllq',\n", + " 'fianllqy',\n", + " 'fianllr',\n", + " 'fianllry',\n", + " 'fianlls',\n", + " 'fianllsy',\n", + " 'fianllt',\n", + " 'fianllty',\n", + " 'fianllu',\n", + " 'fianlluy',\n", + " 'fianllv',\n", + " 'fianllvy',\n", + " 'fianllw',\n", + " 'fianllwy',\n", + " 'fianllx',\n", + " 'fianllxy',\n", + " 'fianlly',\n", + " 'fianllya',\n", + " 'fianllyb',\n", + " 'fianllyc',\n", + " 'fianllyd',\n", + " 'fianllye',\n", + " 'fianllyf',\n", + " 'fianllyg',\n", + " 'fianllyh',\n", + " 'fianllyi',\n", + " 'fianllyj',\n", + " 'fianllyk',\n", + " 'fianllyl',\n", + " 'fianllym',\n", + " 'fianllyn',\n", + " 'fianllyo',\n", + " 'fianllyp',\n", + " 'fianllyq',\n", + " 'fianllyr',\n", + " 'fianllys',\n", + " 'fianllyt',\n", + " 'fianllyu',\n", + " 'fianllyv',\n", + " 'fianllyw',\n", + " 'fianllyx',\n", + " 'fianllyy',\n", + " 'fianllyz',\n", + " 'fianllz',\n", + " 'fianllzy',\n", + " 'fianlmly',\n", + " 'fianlmy',\n", + " 'fianlnly',\n", + " 'fianlny',\n", + " 'fianloly',\n", + " 'fianloy',\n", + " 'fianlply',\n", + " 'fianlpy',\n", + " 'fianlqly',\n", + " 'fianlqy',\n", + " 'fianlrly',\n", + " 'fianlry',\n", + " 'fianlsly',\n", + " 'fianlsy',\n", + " 'fianltly',\n", + " 'fianlty',\n", + " 'fianluly',\n", + " 'fianluy',\n", + " 'fianlvly',\n", + " 'fianlvy',\n", + " 'fianlwly',\n", + " 'fianlwy',\n", + " 'fianlxly',\n", + " 'fianlxy',\n", + " 'fianly',\n", + " 'fianlyl',\n", + " 'fianlyly',\n", + " 'fianlyy',\n", + " 'fianlzly',\n", + " 'fianlzy',\n", + " 'fianmlly',\n", + " 'fianmly',\n", + " 'fiannlly',\n", + " 'fiannly',\n", + " 'fianolly',\n", + " 'fianoly',\n", + " 'fianplly',\n", + " 'fianply',\n", + " 'fianqlly',\n", + " 'fianqly',\n", + " 'fianrlly',\n", + " 'fianrly',\n", + " 'fianslly',\n", + " 'fiansly',\n", + " 'fiantlly',\n", + " 'fiantly',\n", + " 'fianully',\n", + " 'fianuly',\n", + " 'fianvlly',\n", + " 'fianvly',\n", + " 'fianwlly',\n", + " 'fianwly',\n", + " 'fianxlly',\n", + " 'fianxly',\n", + " 'fianylly',\n", + " 'fianyly',\n", + " 'fianzlly',\n", + " 'fianzly',\n", + " 'fiaolly',\n", + " 'fiaonlly',\n", + " 'fiaplly',\n", + " 'fiapnlly',\n", + " 'fiaqlly',\n", + " 'fiaqnlly',\n", + " 'fiarlly',\n", + " 'fiarnlly',\n", + " 'fiaslly',\n", + " 'fiasnlly',\n", + " 'fiatlly',\n", + " 'fiatnlly',\n", + " 'fiaully',\n", + " 'fiaunlly',\n", + " 'fiavlly',\n", + " 'fiavnlly',\n", + " 'fiawlly',\n", + " 'fiawnlly',\n", + " 'fiaxlly',\n", + " 'fiaxnlly',\n", + " 'fiaylly',\n", + " 'fiaynlly',\n", + " 'fiazlly',\n", + " 'fiaznlly',\n", + " 'fibanlly',\n", + " 'fibnlly',\n", + " 'ficanlly',\n", + " 'ficnlly',\n", + " 'fidanlly',\n", + " 'fidnlly',\n", + " 'fieanlly',\n", + " 'fienlly',\n", + " 'fifanlly',\n", + " 'fifnlly',\n", + " 'figanlly',\n", + " 'fignlly',\n", + " 'fihanlly',\n", + " 'fihnlly',\n", + " 'fiianlly',\n", + " 'fiinlly',\n", + " 'fijanlly',\n", + " 'fijnlly',\n", + " 'fikanlly',\n", + " 'fiknlly',\n", + " 'filanlly',\n", + " 'filnlly',\n", + " 'fimanlly',\n", + " 'fimnlly',\n", + " 'finally',\n", + " 'finanlly',\n", + " 'finlly',\n", + " 'finnlly',\n", + " 'fioanlly',\n", + " 'fionlly',\n", + " 'fipanlly',\n", + " 'fipnlly',\n", + " 'fiqanlly',\n", + " 'fiqnlly',\n", + " 'firanlly',\n", + " 'firnlly',\n", + " 'fisanlly',\n", + " 'fisnlly',\n", + " 'fitanlly',\n", + " 'fitnlly',\n", + " 'fiuanlly',\n", + " 'fiunlly',\n", + " 'fivanlly',\n", + " 'fivnlly',\n", + " 'fiwanlly',\n", + " 'fiwnlly',\n", + " 'fixanlly',\n", + " 'fixnlly',\n", + " 'fiyanlly',\n", + " 'fiynlly',\n", + " 'fizanlly',\n", + " 'fiznlly',\n", + " 'fjanlly',\n", + " 'fjianlly',\n", + " 'fkanlly',\n", + " 'fkianlly',\n", + " 'flanlly',\n", + " 'flianlly',\n", + " 'fmanlly',\n", + " 'fmianlly',\n", + " 'fnanlly',\n", + " 'fnianlly',\n", + " 'foanlly',\n", + " 'foianlly',\n", + " 'fpanlly',\n", + " 'fpianlly',\n", + " 'fqanlly',\n", + " 'fqianlly',\n", + " 'franlly',\n", + " 'frianlly',\n", + " 'fsanlly',\n", + " 'fsianlly',\n", + " 'ftanlly',\n", + " 'ftianlly',\n", + " 'fuanlly',\n", + " 'fuianlly',\n", + " 'fvanlly',\n", + " 'fvianlly',\n", + " 'fwanlly',\n", + " 'fwianlly',\n", + " 'fxanlly',\n", + " 'fxianlly',\n", + " 'fyanlly',\n", + " 'fyianlly',\n", + " 'fzanlly',\n", + " 'fzianlly',\n", + " 'gfianlly',\n", + " 'gianlly',\n", + " 'hfianlly',\n", + " 'hianlly',\n", + " 'ianlly',\n", + " 'ifanlly',\n", + " 'ifianlly',\n", + " 'iianlly',\n", + " 'jfianlly',\n", + " 'jianlly',\n", + " 'kfianlly',\n", + " 'kianlly',\n", + " 'lfianlly',\n", + " 'lianlly',\n", + " 'mfianlly',\n", + " 'mianlly',\n", + " 'nfianlly',\n", + " 'nianlly',\n", + " 'ofianlly',\n", + " 'oianlly',\n", + " 'pfianlly',\n", + " 'pianlly',\n", + " 'qfianlly',\n", + " 'qianlly',\n", + " 'rfianlly',\n", + " 'rianlly',\n", + " 'sfianlly',\n", + " 'sianlly',\n", + " 'tfianlly',\n", + " 'tianlly',\n", + " 'ufianlly',\n", + " 'uianlly',\n", + " 'vfianlly',\n", + " 'vianlly',\n", + " 'wfianlly',\n", + " 'wianlly',\n", + " 'xfianlly',\n", + " 'xianlly',\n", + " 'yfianlly',\n", + " 'yianlly',\n", + " 'zfianlly',\n", + " 'zianlly'}" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# one edit distance from input word\n", + "edits1(word)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'finally'}" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get correct words from above set\n", + "known(edits1(word))" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'fvikanlly',\n", + " 'fiaqnlcly',\n", + " 'fiaflle',\n", + " 'afianlely',\n", + " 'yfiynlly',\n", + " 'fizanwly',\n", + " 'gijanlly',\n", + " 'fisanlluy',\n", + " 'fcangly',\n", + " 'fianlgyu',\n", + " 'fyanllfy',\n", + " 'bfiansly',\n", + " 'vfijnlly',\n", + " 'rifanlly',\n", + " 'fianlqlny',\n", + " 'fiatllyt',\n", + " 'xfianllyj',\n", + " 'gfianllyb',\n", + " 'fianllyct',\n", + " 'fiazlnly',\n", + " 'fwanllye',\n", + " 'fiankldly',\n", + " 'fianlnlf',\n", + " 'kfianlqly',\n", + " 'fiznlxly',\n", + " 'fbanzly',\n", + " 'fhiaklly',\n", + " 'yianllyr',\n", + " 'fidarnlly',\n", + " 'fiagly',\n", + " 'fiunwly',\n", + " 'fianalx',\n", + " 'fijnfly',\n", + " 'fhihanlly',\n", + " 'fisanllk',\n", + " 'wfsianlly',\n", + " 'xiawnlly',\n", + " 'fianllgyz',\n", + " 'fianlaky',\n", + " 'fianlelyq',\n", + " 'fianrlpy',\n", + " 'dianlely',\n", + " 'fianlgply',\n", + " 'ftiianlly',\n", + " 'fimanlay',\n", + " 'fianzply',\n", + " 'kfijnlly',\n", + " 'fiaknllh',\n", + " 'fiandtly',\n", + " 'fianltfly',\n", + " 'dfcanlly',\n", + " 'mimnlly',\n", + " 'fiapnlzly',\n", + " 'fianlpl',\n", + " 'oianrly',\n", + " 'fitnljly',\n", + " 'fiaxnlbly',\n", + " 'fqandlly',\n", + " 'fiawyly',\n", + " 'liancly',\n", + " 'fiaewly',\n", + " 'fvianll',\n", + " 'fjiabnlly',\n", + " 'fhxanlly',\n", + " 'firanllyn',\n", + " 'fiaunltly',\n", + " 'ftanllly',\n", + " 'fialnllky',\n", + " 'flaylly',\n", + " 'fnajlly',\n", + " 'fiaenloy',\n", + " 'mifanlly',\n", + " 'zianllzy',\n", + " 'fgaxlly',\n", + " 'gianlwy',\n", + " 'ofianjlly',\n", + " 'fbianvlly',\n", + " 'fpianplly',\n", + " 'fbanlll',\n", + " 'cqfianlly',\n", + " 'ifianlloy',\n", + " 'pfkianlly',\n", + " 'fianllybm',\n", + " 'fianeyly',\n", + " 'foanljly',\n", + " 'xfilnlly',\n", + " 'cianllyx',\n", + " 'ftanlloy',\n", + " 'fianxolly',\n", + " 'vfianllk',\n", + " 'faanllpy',\n", + " 'fhmanlly',\n", + " 'fiapllyt',\n", + " 'fioanlny',\n", + " 'fiaynlhy',\n", + " 'fianlylye',\n", + " 'fwanmly',\n", + " 'fqacnlly',\n", + " 'fsanely',\n", + " 'fixanllz',\n", + " 'rfianqlly',\n", + " 'fianllfc',\n", + " 'fitolly',\n", + " 'fianlilk',\n", + " 'fianljlgy',\n", + " 'fiazllx',\n", + " 'dfianwlly',\n", + " 'gianlhy',\n", + " 'gfianlby',\n", + " 'fianxlry',\n", + " 'firanllw',\n", + " 'fianllmyh',\n", + " 'fiqanwlly',\n", + " 'fianvgy',\n", + " 'fianlltpy',\n", + " 'fmianlln',\n", + " 'diatnlly',\n", + " 'fiakhlly',\n", + " 'qienlly',\n", + " 'fiabllny',\n", + " 'ftanllu',\n", + " 'fibaslly',\n", + " 'ufiaanlly',\n", + " 'liandlly',\n", + " 'fiancsly',\n", + " 'fianrlyp',\n", + " 'fianlglxy',\n", + " 'qiarlly',\n", + " 'tfianllyl',\n", + " 'fianlzg',\n", + " 'ufianllny',\n", + " 'qfianlmy',\n", + " 'fianjlyj',\n", + " 'fiansllyr',\n", + " 'fiaanllmy',\n", + " 'fgaglly',\n", + " 'fianllvyk',\n", + " 'fhanllyb',\n", + " 'fdaenlly',\n", + " 'fdanlbly',\n", + " 'fiadnllvy',\n", + " 'fiynllyo',\n", + " 'dfianllmy',\n", + " 'siaylly',\n", + " 'fvaanlly',\n", + " 'fianplny',\n", + " 'sqfianlly',\n", + " 'uianlxy',\n", + " 'fllnlly',\n", + " 'fyanllay',\n", + " 'fisnllyr',\n", + " 'fianwzly',\n", + " 'fianllynm',\n", + " 'fianlelf',\n", + " 'fxahnlly',\n", + " 'fiancvlly',\n", + " 'fvanluly',\n", + " 'ffianllb',\n", + " 'fiuanlxly',\n", + " 'pfianhlly',\n", + " 'fwianloy',\n", + " 'fpanlny',\n", + " 'fiaklely',\n", + " 'hfianlkly',\n", + " 'siaynlly',\n", + " 'firanwly',\n", + " 'fiknlle',\n", + " 'fiasnlvy',\n", + " 'fiaqlyy',\n", + " 'fiafgnlly',\n", + " 'hfiaslly',\n", + " 'fianlluyc',\n", + " 'zfinanlly',\n", + " 'fiuqlly',\n", + " 'oianlsly',\n", + " 'fianljye',\n", + " 'fimnluly',\n", + " 'fienllb',\n", + " 'fibanlely',\n", + " 'fiaglgy',\n", + " 'finnlly',\n", + " 'fiianllyt',\n", + " 'fwqianlly',\n", + " 'fiiazlly',\n", + " 'fnianllay',\n", + " 'fcianbly',\n", + " 'fianpllb',\n", + " 'ficanlply',\n", + " 'fiaalhy',\n", + " 'pfsianlly',\n", + " 'vfinally',\n", + " 'fqiazlly',\n", + " 'fsianllv',\n", + " 'fibnlloy',\n", + " 'fieqanlly',\n", + " 'ifanllk',\n", + " 'sfianlxly',\n", + " 'fmiankly',\n", + " 'fianvllt',\n", + " 'fimnklly',\n", + " 'fiaonly',\n", + " 'fxlnlly',\n", + " 'frianllyo',\n", + " 'fianllhf',\n", + " 'fvallly',\n", + " 'fiaqnmly',\n", + " 'tianllyu',\n", + " 'fiatynlly',\n", + " 'fidnclly',\n", + " 'aoianlly',\n", + " 'fiapslly',\n", + " 'fianfluy',\n", + " 'fianllnh',\n", + " 'ffianltly',\n", + " 'fianjlyx',\n", + " 'fiancllhy',\n", + " 'fianloyv',\n", + " 'fiayllly',\n", + " 'fsanllwy',\n", + " 'fianultly',\n", + " 'fiaxcnlly',\n", + " 'fiavlkly',\n", + " 'fianltdly',\n", + " 'fiacllyk',\n", + " 'fianslzy',\n", + " 'frianllyw',\n", + " 'fiamlhy',\n", + " 'pftianlly',\n", + " 'fkanelly',\n", + " 'fiauloy',\n", + " 'fihnhlly',\n", + " 'qfgianlly',\n", + " 'tfiwanlly',\n", + " 'efitanlly',\n", + " 'fibnilly',\n", + " 'fdanlmy',\n", + " 'fianlcp',\n", + " 'fsianlty',\n", + " 'flanll',\n", + " 'ifanllm',\n", + " 'fiaqnllyv',\n", + " 'fnanlxy',\n", + " 'qfianllv',\n", + " 'fcaxnlly',\n", + " 'fvianllyp',\n", + " 'feinlly',\n", + " 'hfianclly',\n", + " 'fiajnllys',\n", + " 'fisanlfly',\n", + " 'efiarnlly',\n", + " 'yiandlly',\n", + " 'fiqanfly',\n", + " 'aianzlly',\n", + " 'wfianllp',\n", + " 'fianllupy',\n", + " 'feahlly',\n", + " 'fianlilzy',\n", + " 'fsfianlly',\n", + " 'zfiwnlly',\n", + " 'fainly',\n", + " 'tqianlly',\n", + " 'bfjianlly',\n", + " 'fianlils',\n", + " 'kianklly',\n", + " 'fiapqly',\n", + " 'fianpoly',\n", + " 'wianllyu',\n", + " 'fienvly',\n", + " 'fiyanlzly',\n", + " 'bfiwanlly',\n", + " 'fmanlloy',\n", + " 'bianlvy',\n", + " 'fiajylly',\n", + " 'fianleply',\n", + " 'fkifanlly',\n", + " 'fiawllyz',\n", + " 'kfianllr',\n", + " 'fwancly',\n", + " 'fianlay',\n", + " 'ofiacnlly',\n", + " 'kiacnlly',\n", + " 'fyiaully',\n", + " 'filnilly',\n", + " 'fianllyul',\n", + " 'fiapnlyl',\n", + " 'fiwanlmy',\n", + " 'fianwlll',\n", + " 'fcianvlly',\n", + " 'fipmanlly',\n", + " 'fisanlcly',\n", + " 'wiavnlly',\n", + " 'fivnlny',\n", + " 'finalxly',\n", + " 'firnxlly',\n", + " 'fnianllp',\n", + " 'fihnmly',\n", + " 'fisancly',\n", + " 'flianply',\n", + " 'finanflly',\n", + " 'fiazllg',\n", + " 'vibnlly',\n", + " 'fiaznllh',\n", + " 'fianblloy',\n", + " 'fiancmlly',\n", + " 'fgamlly',\n", + " 'feanlld',\n", + " 'fianpllr',\n", + " 'fzanldy',\n", + " 'fijanllp',\n", + " 'gianldy',\n", + " 'fianflqly',\n", + " 'fivanllb',\n", + " 'rfainlly',\n", + " 'fikancly',\n", + " 'oianllyc',\n", + " 'fnamnlly',\n", + " 'aianqly',\n", + " 'uianllwy',\n", + " 'iwnlly',\n", + " 'fianllykk',\n", + " 'fiandlzy',\n", + " 'ifiangly',\n", + " 'fqcnlly',\n", + " 'yiarlly',\n", + " 'fignaly',\n", + " 'fiexlly',\n", + " 'nianlqy',\n", + " 'fiaelzy',\n", + " 'fiatoly',\n", + " 'fiianllky',\n", + " 'fianzty',\n", + " 'fianuly',\n", + " 'fianlwyp',\n", + " 'fianlday',\n", + " 'nanlly',\n", + " 'ofinanlly',\n", + " 'dianlny',\n", + " 'fiajlmy',\n", + " 'oienlly',\n", + " 'fianyllhy',\n", + " 'bianlky',\n", + " 'fjiaqnlly',\n", + " 'fpianllny',\n", + " 'fiamnllr',\n", + " 'fisaflly',\n", + " 'fiancy',\n", + " 'fiaqnlluy',\n", + " 'fiawlloy',\n", + " 'fianyzly',\n", + " 'fiknllyp',\n", + " 'fqicnlly',\n", + " 'ficnrlly',\n", + " 'fviailly',\n", + " 'fiaunlsly',\n", + " 'fianllwly',\n", + " 'fuhianlly',\n", + " 'rianlmly',\n", + " 'fianliyn',\n", + " 'ofbanlly',\n", + " 'fganllyb',\n", + " 'pfvianlly',\n", + " 'firnllg',\n", + " 'fianlola',\n", + " 'fiagldly',\n", + " 'fianllsny',\n", + " 'fiapllm',\n", + " 'feanwlly',\n", + " 'fkanlli',\n", + " 'tfiablly',\n", + " 'faanllys',\n", + " 'fwiantlly',\n", + " 'fianllrhy',\n", + " 'fianlemly',\n", + " 'fqxnlly',\n", + " 'sfianllgy',\n", + " 'fiaallry',\n", + " 'fioaynlly',\n", + " 'fiahnllq',\n", + " 'fiannllym',\n", + " 'fiqnlyly',\n", + " 'fiadllcy',\n", + " 'ftapnlly',\n", + " 'zfianllys',\n", + " 'fnanilly',\n", + " 'fiaonllf',\n", + " 'kianwlly',\n", + " 'fianlslxy',\n", + " 'fiaallw',\n", + " 'fiaenlle',\n", + " 'fiajnilly',\n", + " 'fiavnllj',\n", + " 'ftianllyl',\n", + " 'dianllr',\n", + " 'fbavnlly',\n", + " 'qfuanlly',\n", + " 'ifyanlly',\n", + " 'rfiajnlly',\n", + " 'fianllykl',\n", + " 'fiaenlmy',\n", + " 'fiacllyt',\n", + " 'fianllyng',\n", + " 'fsanlrly',\n", + " 'fsiqanlly',\n", + " 'fiaynxlly',\n", + " 'fiananlly',\n", + " 'mfianllt',\n", + " 'ifiahnlly',\n", + " 'fianlphy',\n", + " 'fiankllvy',\n", + " 'fhanlljy',\n", + " 'fiaallyo',\n", + " 'yianrly',\n", + " 'gjfianlly',\n", + " 'tianlkly',\n", + " 'fianliyj',\n", + " 'fianlnk',\n", + " 'fxanllb',\n", + " 'figanllyz',\n", + " 'fieelly',\n", + " 'fianilyy',\n", + " 'fiaynhly',\n", + " 'gainlly',\n", + " 'fimnlldy',\n", + " 'fiycnlly',\n", + " 'fbianzly',\n", + " 'fivjnlly',\n", + " 'fiazlty',\n", + " 'nfidnlly',\n", + " 'cafianlly',\n", + " 'ftanlcy',\n", + " 'fuanluly',\n", + " 'fianlilyt',\n", + " 'fitandly',\n", + " 'fianllytp',\n", + " 'fixanlli',\n", + " 'aianglly',\n", + " 'fsanmly',\n", + " 'fiandply',\n", + " 'fiianjlly',\n", + " 'fcianvly',\n", + " 'fianillyu',\n", + " 'pianlzly',\n", + " 'fiallxy',\n", + " 'fianhlyj',\n", + " 'vfqanlly',\n", + " 'zianluly',\n", + " 'aianllby',\n", + " 'fkanklly',\n", + " 'fxianlbly',\n", + " 'fianllpyr',\n", + " 'fisnllyj',\n", + " 'eianllh',\n", + " 'fwiadlly',\n", + " 'vfiaynlly',\n", + " 'fiandlla',\n", + " 'fiahnlvy',\n", + " 'qiandlly',\n", + " 'ifiahlly',\n", + " 'fiandally',\n", + " 'fijnllc',\n", + " 'dfianllay',\n", + " 'fianlala',\n", + " 'fianluya',\n", + " 'fiuunlly',\n", + " 'fianlbldy',\n", + " 'fiatnllyf',\n", + " 'fiqlly',\n", + " 'fianlyv',\n", + " 'lianllyv',\n", + " 'fiaenjlly',\n", + " 'mfiantlly',\n", + " 'tipanlly',\n", + " 'fiagnllf',\n", + " 'kfifnlly',\n", + " 'fiabll',\n", + " 'fiavxnlly',\n", + " 'fidnyly',\n", + " 'fiaqnllyz',\n", + " 'franltly',\n", + " 'fiandjlly',\n", + " 'biganlly',\n", + " 'feanllm',\n", + " 'fianilvly',\n", + " 'fialnlyb',\n", + " 'fiacnnly',\n", + " 'fianlki',\n", + " 'flihnlly',\n", + " 'lianlcly',\n", + " 'fqianllp',\n", + " 'fiwanllyf',\n", + " 'finlvy',\n", + " 'lianlply',\n", + " 'fipnllyq',\n", + " 'fsanlyl',\n", + " 'pianlrly',\n", + " 'fipnoly',\n", + " 'fianlelzy',\n", + " 'qjfianlly',\n", + " 'fiablwy',\n", + " 'fwianluly',\n", + " 'kganlly',\n", + " 'ftiaclly',\n", + " 'fiynlfy',\n", + " 'efianwlly',\n", + " 'fiarlkly',\n", + " 'fivanlzly',\n", + " 'hfikanlly',\n", + " 'fianflny',\n", + " 'fianrllo',\n", + " 'lianlle',\n", + " 'kiaonlly',\n", + " 'fianlblg',\n", + " 'fibahlly',\n", + " 'fxalnly',\n", + " 'fqiafnlly',\n", + " 'fxiabnlly',\n", + " 'bianlwy',\n", + " 'fuaknlly',\n", + " 'bfzanlly',\n", + " 'fgiaflly',\n", + " 'jfaanlly',\n", + " 'finntlly',\n", + " 'fianvlmy',\n", + " 'fimanlby',\n", + " 'fobanlly',\n", + " 'fianillfy',\n", + " 'ofiailly',\n", + " 'zeianlly',\n", + " 'fianlljyl',\n", + " 'mfizanlly',\n", + " 'tianllj',\n", + " 'fiznllyi',\n", + " 'franlply',\n", + " 'fianlwty',\n", + " 'ftianzly',\n", + " 'nianlrly',\n", + " 'fiancllp',\n", + " 'fianvllo',\n", + " 'fikanlxly',\n", + " 'fiazllhy',\n", + " 'yfianllfy',\n", + " 'fiianlcly',\n", + " 'foanvlly',\n", + " 'fimaenlly',\n", + " 'fivanflly',\n", + " 'fifanhly',\n", + " 'finallly',\n", + " 'ifdanlly',\n", + " 'ffizanlly',\n", + " 'fianlklwy',\n", + " 'fzianllym',\n", + " 'faianllz',\n", + " 'afqanlly',\n", + " 'fianqwy',\n", + " 'kfianrly',\n", + " 'fianlliyj',\n", + " 'fcianll',\n", + " 'fiatlldy',\n", + " 'fixanllt',\n", + " 'feaynlly',\n", + " 'fianllnjy',\n", + " 'fjanluy',\n", + " 'fianqlloy',\n", + " 'fiasnllj',\n", + " 'fianvlpy',\n", + " 'fmiacnlly',\n", + " 'xoanlly',\n", + " 'fiaslxy',\n", + " 'fianllcg',\n", + " 'fiazwnlly',\n", + " 'fiafllhy',\n", + " 'yfiailly',\n", + " 'foanglly',\n", + " 'fiancally',\n", + " 'fiadqlly',\n", + " 'fjianqlly',\n", + " 'bianlld',\n", + " 'fianlnlyi',\n", + " 'vianllyw',\n", + " 'fiahllo',\n", + " 'fianrfly',\n", + " 'fiuajlly',\n", + " 'fhianllw',\n", + " 'vvanlly',\n", + " 'fiabnllyh',\n", + " 'fiatnlls',\n", + " 'esanlly',\n", + " 'fianlqlq',\n", + " 'fianlqlyq',\n", + " 'mianlxy',\n", + " 'fqianllym',\n", + " 'fianldlyq',\n", + " 'fsxnlly',\n", + " 'fifnlwy',\n", + " 'uyanlly',\n", + " 'fcagnlly',\n", + " 'fiagtlly',\n", + " 'nfiranlly',\n", + " 'fiarlnlly',\n", + " 'fbantlly',\n", + " 'flanxly',\n", + " 'fikanlnly',\n", + " 'fiandlliy',\n", + " 'fiailty',\n", + " 'fioznlly',\n", + " 'fwdianlly',\n", + " 'srianlly',\n", + " 'fignlnly',\n", + " 'fiaslvly',\n", + " 'fganlli',\n", + " 'fivanely',\n", + " 'fiaonklly',\n", + " 'fbialnlly',\n", + " 'fianlldyq',\n", + " 'fianllxw',\n", + " 'fjxnlly',\n", + " 'iacnlly',\n", + " 'fiwanlloy',\n", + " 'fiapflly',\n", + " 'ffiwnlly',\n", + " 'ftzianlly',\n", + " 'efianlply',\n", + " 'ofianlkly',\n", + " 'aimanlly',\n", + " 'fihanllyi',\n", + " 'fiakllyi',\n", + " 'qfianlqly',\n", + " 'failly',\n", + " 'fianllcr',\n", + " 'fuianllz',\n", + " 'gsanlly',\n", + " 'ftanllgy',\n", + " 'dianley',\n", + " 'sfianluy',\n", + " 'feianhly',\n", + " 'fianlvuy',\n", + " 'fkianlley',\n", + " 'fianlmyl',\n", + " 'qiamlly',\n", + " 'fpianlhly',\n", + " 'faanllyo',\n", + " 'fbianlqy',\n", + " 'aafianlly',\n", + " 'fianhklly',\n", + " 'fianwllyl',\n", + " 'fianllyv',\n", + " 'fianluyr',\n", + " 'afiantly',\n", + " 'fianlfyx',\n", + " 'fianlrys',\n", + " 'fimnllay',\n", + " 'mfianllgy',\n", + " 'fdnnlly',\n", + " 'nipnlly',\n", + " 'fiannla',\n", + " 'fainllty',\n", + " 'fiavnlll',\n", + " 'jfianldly',\n", + " 'fzianllry',\n", + " 'qinanlly',\n", + " 'fyaolly',\n", + " 'fiiianlly',\n", + " 'vianhlly',\n", + " 'fioanzlly',\n", + " 'fdianllyn',\n", + " 'fimanklly',\n", + " 'fiajnhlly',\n", + " 'rfianlldy',\n", + " 'uianllyv',\n", + " 'pianvlly',\n", + " 'dyianlly',\n", + " 'fiiailly',\n", + " 'finnlhly',\n", + " 'fiajhlly',\n", + " 'fkianllyl',\n", + " 'finallwy',\n", + " 'fiknsly',\n", + " 'tignlly',\n", + " 'francly',\n", + " 'finlply',\n", + " 'fqianljy',\n", + " 'fianwlcy',\n", + " 'fipanllay',\n", + " 'fiacnllu',\n", + " 'fianrxlly',\n", + " 'pianllyr',\n", + " 'fianlmlo',\n", + " 'ofoianlly',\n", + " 'fijanklly',\n", + " 'fiaintlly',\n", + " 'fiavljly',\n", + " 'ftianlley',\n", + " 'lfianjlly',\n", + " 'fiacnqlly',\n", + " 'cianlty',\n", + " 'feiuanlly',\n", + " 'kfianllyg',\n", + " 'fjianllyh',\n", + " 'fpaklly',\n", + " 'fkanllyk',\n", + " 'hianily',\n", + " 'fihanlluy',\n", + " 'fxianllv',\n", + " 'fiansllyf',\n", + " 'fianlklym',\n", + " 'ifanlzy',\n", + " 'ofiajlly',\n", + " 'fikdanlly',\n", + " 'xiaflly',\n", + " 'xfianlwly',\n", + " 'fianlut',\n", + " 'fiznmlly',\n", + " 'fivndly',\n", + " 'fuianldly',\n", + " 'zfianlyy',\n", + " 'fhiajlly',\n", + " 'xiallly',\n", + " 'fjianllyd',\n", + " 'ofiangly',\n", + " 'sianllyl',\n", + " 'pfianlfly',\n", + " 'hiasnlly',\n", + " 'fianflld',\n", + " 'fianllkhy',\n", + " 'fiantlk',\n", + " 'fpianllx',\n", + " 'fiawlhy',\n", + " 'fianfslly',\n", + " 'fxianlvly',\n", + " 'fiadnylly',\n", + " 'fiannllyy',\n", + " 'ibnlly',\n", + " 'fjianllgy',\n", + " 'uianllj',\n", + " 'mianplly',\n", + " 'fianjllb',\n", + " 'fwikanlly',\n", + " 'kianlkly',\n", + " 'fiansvy',\n", + " 'dixnlly',\n", + " 'fdanltly',\n", + " 'fiknllyt',\n", + " 'vfianllyi',\n", + " 'fiamnlyy',\n", + " 'viafnlly',\n", + " 'fionllyg',\n", + " 'fciwnlly',\n", + " 'ziatlly',\n", + " 'fvisanlly',\n", + " 'ftaflly',\n", + " 'sfianllys',\n", + " 'fhuianlly',\n", + " 'fvidnlly',\n", + " 'ufiannlly',\n", + " 'fkianllh',\n", + " 'fifnllw',\n", + " 'lihanlly',\n", + " 'fianflyl',\n", + " 'wfianlmly',\n", + " 'fmcanlly',\n", + " 'fipnllxy',\n", + " 'fiadnllyz',\n", + " 'rianley',\n", + " 'figngly',\n", + " 'fiamllfy',\n", + " 'fkanlhly',\n", + " 'fiilly',\n", + " 'fianllkn',\n", + " 'fiafaly',\n", + " 'fnanlsly',\n", + " 'fiatnllc',\n", + " 'vuanlly',\n", + " 'ffiantlly',\n", + " 'wfiaunlly',\n", + " 'fianhlldy',\n", + " 'fihanlfy',\n", + " 'fiaonloly',\n", + " 'fhnanlly',\n", + " 'fiangjly',\n", + " 'fpamnlly',\n", + " 'finrally',\n", + " 'fsanllyn',\n", + " 'fxianlsy',\n", + " 'ftanlldy',\n", + " 'fianllyu',\n", + " 'ficblly',\n", + " 'fiwaynlly',\n", + " 'fiaiflly',\n", + " 'fianrllyz',\n", + " 'fiathlly',\n", + " 'fianljlyq',\n", + " 'figanlbly',\n", + " 'fniailly',\n", + " 'fianlzlyx',\n", + " 'ficnllyg',\n", + " 'gfiajnlly',\n", + " 'cienlly',\n", + " 'fianflyk',\n", + " 'faanlyly',\n", + " 'cfiaully',\n", + " 'fimamnlly',\n", + " 'fihanlxy',\n", + " 'fliahnlly',\n", + " 'ofianwly',\n", + " 'fyiallly',\n", + " 'pianlll',\n", + " 'fnaflly',\n", + " 'cianlnly',\n", + " 'fihqanlly',\n", + " 'fianzlhy',\n", + " 'foiainlly',\n", + " 'iarlly',\n", + " 'lfiaally',\n", + " 'fjianly',\n", + " 'mflianlly',\n", + " 'cianlluy',\n", + " 'frianyly',\n", + " 'fiankklly',\n", + " 'fiasnlljy',\n", + " 'fianlapy',\n", + " 'hainlly',\n", + " 'oiaclly',\n", + " 'ufiavlly',\n", + " 'fiawnllyj',\n", + " 'franxlly',\n", + " 'edianlly',\n", + " 'fiagply',\n", + " 'fcanllr',\n", + " 'fimnllyu',\n", + " 'fidanllyu',\n", + " 'zfjianlly',\n", + " 'ufqianlly',\n", + " 'fianllcoy',\n", + " 'fkaflly',\n", + " 'tfiavnlly',\n", + " 'fzanqly',\n", + " 'fioablly',\n", + " 'fiuyanlly',\n", + " 'firnllw',\n", + " 'fianlill',\n", + " 'firanllry',\n", + " 'fianrljy',\n", + " 'fianlhyj',\n", + " 'pfialnlly',\n", + " 'fianollyy',\n", + " 'fmankly',\n", + " 'fikanrly',\n", + " 'fiwnklly',\n", + " 'pianrly',\n", + " 'filanolly',\n", + " 'tfianlhly',\n", + " 'fianmlzy',\n", + " 'fhanllmy',\n", + " 'gfhianlly',\n", + " 'fiahnllv',\n", + " 'fqianlcy',\n", + " 'kianllgy',\n", + " 'fitnllm',\n", + " 'fqianllyp',\n", + " 'fiaelzly',\n", + " 'fianlmbly',\n", + " 'fiabllhy',\n", + " 'fiainlloy',\n", + " 'fikaelly',\n", + " 'qfwianlly',\n", + " 'fiaqnllhy',\n", + " 'efiagnlly',\n", + " 'fiamnllyw',\n", + " 'zianlqy',\n", + " 'fmianllyc',\n", + " 'fiaunllmy',\n", + " 'fiasnllya',\n", + " 'fiwfnlly',\n", + " 'omianlly',\n", + " 'fizanllyw',\n", + " 'fiadhnlly',\n", + " 'iianlvly',\n", + " 'fianllqsy',\n", + " 'fiynllyd',\n", + " 'bfiahnlly',\n", + " 'fianlolf',\n", + " 'fiavllw',\n", + " 'ozianlly',\n", + " 'vianely',\n", + " 'fianpllye',\n", + " 'bfianljy',\n", + " 'fpiandly',\n", + " 'fivanllyl',\n", + " 'fianllob',\n", + " 'fiansllv',\n", + " 'filnllyt',\n", + " 'fzanllsy',\n", + " 'fiyangly',\n", + " 'fitnllyg',\n", + " 'hisnlly',\n", + " 'fianldyk',\n", + " 'fipanllgy',\n", + " 'frranlly',\n", + " 'qlianlly',\n", + " 'fiaaclly',\n", + " 'jianily',\n", + " 'fianaay',\n", + " 'mfianhly',\n", + " 'frianrly',\n", + " 'fuianlcly',\n", + " 'fviamlly',\n", + " 'feianllmy',\n", + " 'fiajnally',\n", + " 'fianlcply',\n", + " 'fikanllj',\n", + " 'qnanlly',\n", + " 'emanlly',\n", + " 'fzmianlly',\n", + " 'efianlzy',\n", + " 'finlpy',\n", + " 'fiahuly',\n", + " 'fianlnyg',\n", + " 'fjajnlly',\n", + " 'fianxl',\n", + " 'ifiasnlly',\n", + " 'fiadtlly',\n", + " 'fsanlloy',\n", + " 'fijanmly',\n", + " 'pianllf',\n", + " 'fganlqy',\n", + " 'figjlly',\n", + " 'fdifnlly',\n", + " 'fijnilly',\n", + " 'fiaotnlly',\n", + " 'fiinloy',\n", + " 'mbfianlly',\n", + " 'faanlvy',\n", + " 'fiaxllj',\n", + " 'fsimanlly',\n", + " 'fiannllg',\n", + " 'fiaejly',\n", + " 'fqianllya',\n", + " 'fianllxys',\n", + " 'fiaznllyo',\n", + " 'fihlanlly',\n", + " 'fianldb',\n", + " 'fifmnlly',\n", + " 'tfianlbly',\n", + " 'fianmvlly',\n", + " 'fianllxg',\n", + " 'fianlsoy',\n", + " 'fianlzlj',\n", + " 'wianlfly',\n", + " 'fiantfly',\n", + " 'fimnhly',\n", + " 'dfeianlly',\n", + " 'fianlpd',\n", + " 'mfisanlly',\n", + " 'nbanlly',\n", + " 'fcanlle',\n", + " 'filanlli',\n", + " 'fnanluy',\n", + " 'fixnully',\n", + " 'fiinllfy',\n", + " 'fliazlly',\n", + " 'fianllyrs',\n", + " 'fianeyy',\n", + " 'fiadmnlly',\n", + " 'ftanully',\n", + " 'fiankllzy',\n", + " 'fvanlxy',\n", + " 'fitanlld',\n", + " 'gfianlhly',\n", + " 'dfianlfy',\n", + " 'diamlly',\n", + " 'leanlly',\n", + " 'aianaly',\n", + " 'fianlcqly',\n", + " 'fialplly',\n", + " 'fihanolly',\n", + " 'fixnllym',\n", + " 'efiancly',\n", + " 'clanlly',\n", + " 'cfiqanlly',\n", + " 'fiafnlsy',\n", + " 'fiabllyr',\n", + " 'mianqlly',\n", + " 'fjanlliy',\n", + " 'kifnlly',\n", + " 'fuianlldy',\n", + " 'eiajlly',\n", + " 'fanluly',\n", + " 'fiagvnlly',\n", + " 'filnloy',\n", + " 'lianqly',\n", + " 'fiayplly',\n", + " 'foilanlly',\n", + " 'lfianllyb',\n", + " 'fiafxly',\n", + " 'finallyd',\n", + " 'bibnlly',\n", + " 'biuanlly',\n", + " 'gfianlnly',\n", + " 'fiaolle',\n", + " 'fhianily',\n", + " ...}" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# two edit distances from input word\n", + "edits2(word)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'finally'}" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get correct words from above set\n", + "known(edits1(word))" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'fvikanlly',\n", + " 'fiaqnlcly',\n", + " 'fiaflle',\n", + " 'afianlely',\n", + " 'yfiynlly',\n", + " 'fizanwly',\n", + " 'gijanlly',\n", + " 'fisanlluy',\n", + " 'fcangly',\n", + " 'fianlgyu',\n", + " 'fyanllfy',\n", + " 'bfiansly',\n", + " 'vfijnlly',\n", + " 'rifanlly',\n", + " 'fianlqlny',\n", + " 'fiatllyt',\n", + " 'xfianllyj',\n", + " 'gfianllyb',\n", + " 'fianllyct',\n", + " 'fiazlnly',\n", + " 'fwanllye',\n", + " 'fiankldly',\n", + " 'fianlnlf',\n", + " 'kfianlqly',\n", + " 'fiznlxly',\n", + " 'fbanzly',\n", + " 'fhiaklly',\n", + " 'yianllyr',\n", + " 'fidarnlly',\n", + " 'fiagly',\n", + " 'fiunwly',\n", + " 'fianalx',\n", + " 'fijnfly',\n", + " 'fhihanlly',\n", + " 'fisanllk',\n", + " 'wfsianlly',\n", + " 'xiawnlly',\n", + " 'fianllgyz',\n", + " 'fianlaky',\n", + " 'fianlelyq',\n", + " 'fianrlpy',\n", + " 'dianlely',\n", + " 'fianlgply',\n", + " 'ftiianlly',\n", + " 'fimanlay',\n", + " 'fianzply',\n", + " 'kfijnlly',\n", + " 'fiaknllh',\n", + " 'fiandtly',\n", + " 'fianltfly',\n", + " 'dfcanlly',\n", + " 'mimnlly',\n", + " 'fiapnlzly',\n", + " 'fianlpl',\n", + " 'oianrly',\n", + " 'fitnljly',\n", + " 'fiaxnlbly',\n", + " 'fqandlly',\n", + " 'fiawyly',\n", + " 'liancly',\n", + " 'fiaewly',\n", + " 'fvianll',\n", + " 'fjiabnlly',\n", + " 'fhxanlly',\n", + " 'firanllyn',\n", + " 'fiaunltly',\n", + " 'ftanllly',\n", + " 'fialnllky',\n", + " 'flaylly',\n", + " 'fnajlly',\n", + " 'fiaenloy',\n", + " 'mifanlly',\n", + " 'zianllzy',\n", + " 'fgaxlly',\n", + " 'gianlwy',\n", + " 'ofianjlly',\n", + " 'fbianvlly',\n", + " 'fpianplly',\n", + " 'fbanlll',\n", + " 'cqfianlly',\n", + " 'ifianlloy',\n", + " 'pfkianlly',\n", + " 'fianllybm',\n", + " 'fianeyly',\n", + " 'foanljly',\n", + " 'xfilnlly',\n", + " 'cianllyx',\n", + " 'ftanlloy',\n", + " 'fianxolly',\n", + " 'vfianllk',\n", + " 'faanllpy',\n", + " 'fhmanlly',\n", + " 'fiapllyt',\n", + " 'fioanlny',\n", + " 'fiaynlhy',\n", + " 'fianlylye',\n", + " 'fwanmly',\n", + " 'fqacnlly',\n", + " 'fsanely',\n", + " 'fixanllz',\n", + " 'rfianqlly',\n", + " 'fianllfc',\n", + " 'fitolly',\n", + " 'fianlilk',\n", + " 'fianljlgy',\n", + " 'fiazllx',\n", + " 'dfianwlly',\n", + " 'gianlhy',\n", + " 'gfianlby',\n", + " 'fianxlry',\n", + " 'firanllw',\n", + " 'fianllmyh',\n", + " 'fiqanwlly',\n", + " 'fianvgy',\n", + " 'fianlltpy',\n", + " 'fmianlln',\n", + " 'diatnlly',\n", + " 'fiakhlly',\n", + " 'qienlly',\n", + " 'fiabllny',\n", + " 'ftanllu',\n", + " 'fibaslly',\n", + " 'ufiaanlly',\n", + " 'liandlly',\n", + " 'fiancsly',\n", + " 'fianrlyp',\n", + " 'fianlglxy',\n", + " 'qiarlly',\n", + " 'tfianllyl',\n", + " 'fianlzg',\n", + " 'ufianllny',\n", + " 'qfianlmy',\n", + " 'fianjlyj',\n", + " 'fiansllyr',\n", + " 'fiaanllmy',\n", + " 'fgaglly',\n", + " 'fianllvyk',\n", + " 'fhanllyb',\n", + " 'fdaenlly',\n", + " 'fdanlbly',\n", + " 'fiadnllvy',\n", + " 'fiynllyo',\n", + " 'dfianllmy',\n", + " 'siaylly',\n", + " 'fvaanlly',\n", + " 'fianplny',\n", + " 'sqfianlly',\n", + " 'uianlxy',\n", + " 'fllnlly',\n", + " 'fyanllay',\n", + " 'fisnllyr',\n", + " 'fianwzly',\n", + " 'fianllynm',\n", + " 'fianlelf',\n", + " 'fxahnlly',\n", + " 'fiancvlly',\n", + " 'fvanluly',\n", + " 'ffianllb',\n", + " 'fiuanlxly',\n", + " 'pfianhlly',\n", + " 'fwianloy',\n", + " 'fpanlny',\n", + " 'fiaklely',\n", + " 'hfianlkly',\n", + " 'siaynlly',\n", + " 'firanwly',\n", + " 'fiknlle',\n", + " 'fiasnlvy',\n", + " 'fiaqlyy',\n", + " 'fiafgnlly',\n", + " 'hfiaslly',\n", + " 'fianlluyc',\n", + " 'zfinanlly',\n", + " 'fiuqlly',\n", + " 'oianlsly',\n", + " 'fianljye',\n", + " 'fimnluly',\n", + " 'fienllb',\n", + " 'fibanlely',\n", + " 'fiaglgy',\n", + " 'finnlly',\n", + " 'fiianllyt',\n", + " 'fwqianlly',\n", + " 'fiiazlly',\n", + " 'fnianllay',\n", + " 'fcianbly',\n", + " 'fianpllb',\n", + " 'ficanlply',\n", + " 'fiaalhy',\n", + " 'pfsianlly',\n", + " 'vfinally',\n", + " 'fqiazlly',\n", + " 'fsianllv',\n", + " 'fibnlloy',\n", + " 'fieqanlly',\n", + " 'ifanllk',\n", + " 'sfianlxly',\n", + " 'fmiankly',\n", + " 'fianvllt',\n", + " 'fimnklly',\n", + " 'fiaonly',\n", + " 'fxlnlly',\n", + " 'frianllyo',\n", + " 'fianllhf',\n", + " 'fvallly',\n", + " 'fiaqnmly',\n", + " 'tianllyu',\n", + " 'fiatynlly',\n", + " 'fidnclly',\n", + " 'aoianlly',\n", + " 'fiapslly',\n", + " 'fianfluy',\n", + " 'fianllnh',\n", + " 'ffianltly',\n", + " 'fianjlyx',\n", + " 'fiancllhy',\n", + " 'fianloyv',\n", + " 'fiayllly',\n", + " 'fsanllwy',\n", + " 'fianultly',\n", + " 'fiaxcnlly',\n", + " 'fiavlkly',\n", + " 'fianltdly',\n", + " 'fiacllyk',\n", + " 'fianslzy',\n", + " 'frianllyw',\n", + " 'fiamlhy',\n", + " 'pftianlly',\n", + " 'fkanelly',\n", + " 'fiauloy',\n", + " 'fihnhlly',\n", + " 'qfgianlly',\n", + " 'tfiwanlly',\n", + " 'efitanlly',\n", + " 'fibnilly',\n", + " 'fdanlmy',\n", + " 'fianlcp',\n", + " 'fsianlty',\n", + " 'flanll',\n", + " 'ifanllm',\n", + " 'fiaqnllyv',\n", + " 'fnanlxy',\n", + " 'qfianllv',\n", + " 'fcaxnlly',\n", + " 'fvianllyp',\n", + " 'feinlly',\n", + " 'hfianclly',\n", + " 'fiajnllys',\n", + " 'fisanlfly',\n", + " 'efiarnlly',\n", + " 'yiandlly',\n", + " 'fiqanfly',\n", + " 'aianzlly',\n", + " 'wfianllp',\n", + " 'fianllupy',\n", + " 'feahlly',\n", + " 'fianlilzy',\n", + " 'fsfianlly',\n", + " 'zfiwnlly',\n", + " 'fainly',\n", + " 'tqianlly',\n", + " 'bfjianlly',\n", + " 'fianlils',\n", + " 'kianklly',\n", + " 'fiapqly',\n", + " 'fianpoly',\n", + " 'wianllyu',\n", + " 'fienvly',\n", + " 'fiyanlzly',\n", + " 'bfiwanlly',\n", + " 'fmanlloy',\n", + " 'bianlvy',\n", + " 'fiajylly',\n", + " 'fianleply',\n", + " 'fkifanlly',\n", + " 'fiawllyz',\n", + " 'kfianllr',\n", + " 'fwancly',\n", + " 'fianlay',\n", + " 'ofiacnlly',\n", + " 'kiacnlly',\n", + " 'fyiaully',\n", + " 'filnilly',\n", + " 'fianllyul',\n", + " 'fiapnlyl',\n", + " 'fiwanlmy',\n", + " 'fianwlll',\n", + " 'fcianvlly',\n", + " 'fipmanlly',\n", + " 'fisanlcly',\n", + " 'wiavnlly',\n", + " 'fivnlny',\n", + " 'finalxly',\n", + " 'firnxlly',\n", + " 'fnianllp',\n", + " 'fihnmly',\n", + " 'fisancly',\n", + " 'flianply',\n", + " 'finanflly',\n", + " 'fiazllg',\n", + " 'vibnlly',\n", + " 'fiaznllh',\n", + " 'fianblloy',\n", + " 'fiancmlly',\n", + " 'fgamlly',\n", + " 'feanlld',\n", + " 'fianpllr',\n", + " 'fzanldy',\n", + " 'fijanllp',\n", + " 'gianldy',\n", + " 'fianflqly',\n", + " 'fivanllb',\n", + " 'rfainlly',\n", + " 'fikancly',\n", + " 'oianllyc',\n", + " 'fnamnlly',\n", + " 'aianqly',\n", + " 'uianllwy',\n", + " 'iwnlly',\n", + " 'fianllykk',\n", + " 'fiandlzy',\n", + " 'ifiangly',\n", + " 'fqcnlly',\n", + " 'yiarlly',\n", + " 'fignaly',\n", + " 'fiexlly',\n", + " 'nianlqy',\n", + " 'fiaelzy',\n", + " 'fiatoly',\n", + " 'fiianllky',\n", + " 'fianzty',\n", + " 'fianuly',\n", + " 'fianlwyp',\n", + " 'fianlday',\n", + " 'nanlly',\n", + " 'ofinanlly',\n", + " 'dianlny',\n", + " 'fiajlmy',\n", + " 'oienlly',\n", + " 'fianyllhy',\n", + " 'bianlky',\n", + " 'fjiaqnlly',\n", + " 'fpianllny',\n", + " 'fiamnllr',\n", + " 'fisaflly',\n", + " 'fiancy',\n", + " 'fiaqnlluy',\n", + " 'fiawlloy',\n", + " 'fianyzly',\n", + " 'fiknllyp',\n", + " 'fqicnlly',\n", + " 'ficnrlly',\n", + " 'fviailly',\n", + " 'fiaunlsly',\n", + " 'fianllwly',\n", + " 'fuhianlly',\n", + " 'rianlmly',\n", + " 'fianliyn',\n", + " 'ofbanlly',\n", + " 'fganllyb',\n", + " 'pfvianlly',\n", + " 'firnllg',\n", + " 'fianlola',\n", + " 'fiagldly',\n", + " 'fianllsny',\n", + " 'fiapllm',\n", + " 'feanwlly',\n", + " 'fkanlli',\n", + " 'tfiablly',\n", + " 'faanllys',\n", + " 'fwiantlly',\n", + " 'fianllrhy',\n", + " 'fianlemly',\n", + " 'fqxnlly',\n", + " 'sfianllgy',\n", + " 'fiaallry',\n", + " 'fioaynlly',\n", + " 'fiahnllq',\n", + " 'fiannllym',\n", + " 'fiqnlyly',\n", + " 'fiadllcy',\n", + " 'ftapnlly',\n", + " 'zfianllys',\n", + " 'fnanilly',\n", + " 'fiaonllf',\n", + " 'kianwlly',\n", + " 'fianlslxy',\n", + " 'fiaallw',\n", + " 'fiaenlle',\n", + " 'fiajnilly',\n", + " 'fiavnllj',\n", + " 'ftianllyl',\n", + " 'dianllr',\n", + " 'fbavnlly',\n", + " 'qfuanlly',\n", + " 'ifyanlly',\n", + " 'rfiajnlly',\n", + " 'fianllykl',\n", + " 'fiaenlmy',\n", + " 'fiacllyt',\n", + " 'fianllyng',\n", + " 'fsanlrly',\n", + " 'fsiqanlly',\n", + " 'fiaynxlly',\n", + " 'fiananlly',\n", + " 'mfianllt',\n", + " 'ifiahnlly',\n", + " 'fianlphy',\n", + " 'fiankllvy',\n", + " 'fhanlljy',\n", + " 'fiaallyo',\n", + " 'yianrly',\n", + " 'gjfianlly',\n", + " 'tianlkly',\n", + " 'fianliyj',\n", + " 'fianlnk',\n", + " 'fxanllb',\n", + " 'figanllyz',\n", + " 'fieelly',\n", + " 'fianilyy',\n", + " 'fiaynhly',\n", + " 'gainlly',\n", + " 'fimnlldy',\n", + " 'fiycnlly',\n", + " 'fbianzly',\n", + " 'fivjnlly',\n", + " 'fiazlty',\n", + " 'nfidnlly',\n", + " 'cafianlly',\n", + " 'ftanlcy',\n", + " 'fuanluly',\n", + " 'fianlilyt',\n", + " 'fitandly',\n", + " 'fianllytp',\n", + " 'fixanlli',\n", + " 'aianglly',\n", + " 'fsanmly',\n", + " 'fiandply',\n", + " 'fiianjlly',\n", + " 'fcianvly',\n", + " 'fianillyu',\n", + " 'pianlzly',\n", + " 'fiallxy',\n", + " 'fianhlyj',\n", + " 'vfqanlly',\n", + " 'zianluly',\n", + " 'aianllby',\n", + " 'fkanklly',\n", + " 'fxianlbly',\n", + " 'fianllpyr',\n", + " 'fisnllyj',\n", + " 'eianllh',\n", + " 'fwiadlly',\n", + " 'vfiaynlly',\n", + " 'fiandlla',\n", + " 'fiahnlvy',\n", + " 'qiandlly',\n", + " 'ifiahlly',\n", + " 'fiandally',\n", + " 'fijnllc',\n", + " 'dfianllay',\n", + " 'fianlala',\n", + " 'fianluya',\n", + " 'fiuunlly',\n", + " 'fianlbldy',\n", + " 'fiatnllyf',\n", + " 'fiqlly',\n", + " 'fianlyv',\n", + " 'lianllyv',\n", + " 'fiaenjlly',\n", + " 'mfiantlly',\n", + " 'tipanlly',\n", + " 'fiagnllf',\n", + " 'kfifnlly',\n", + " 'fiabll',\n", + " 'fiavxnlly',\n", + " 'fidnyly',\n", + " 'fiaqnllyz',\n", + " 'franltly',\n", + " 'fiandjlly',\n", + " 'biganlly',\n", + " 'feanllm',\n", + " 'fianilvly',\n", + " 'fialnlyb',\n", + " 'fiacnnly',\n", + " 'fianlki',\n", + " 'flihnlly',\n", + " 'lianlcly',\n", + " 'fqianllp',\n", + " 'fiwanllyf',\n", + " 'finlvy',\n", + " 'lianlply',\n", + " 'fipnllyq',\n", + " 'fsanlyl',\n", + " 'pianlrly',\n", + " 'fipnoly',\n", + " 'fianlelzy',\n", + " 'qjfianlly',\n", + " 'fiablwy',\n", + " 'fwianluly',\n", + " 'kganlly',\n", + " 'ftiaclly',\n", + " 'fiynlfy',\n", + " 'efianwlly',\n", + " 'fiarlkly',\n", + " 'fivanlzly',\n", + " 'hfikanlly',\n", + " 'fianflny',\n", + " 'fianrllo',\n", + " 'lianlle',\n", + " 'kiaonlly',\n", + " 'fianlblg',\n", + " 'fibahlly',\n", + " 'fxalnly',\n", + " 'fqiafnlly',\n", + " 'fxiabnlly',\n", + " 'bianlwy',\n", + " 'fuaknlly',\n", + " 'bfzanlly',\n", + " 'fgiaflly',\n", + " 'jfaanlly',\n", + " 'finntlly',\n", + " 'fianvlmy',\n", + " 'fimanlby',\n", + " 'fobanlly',\n", + " 'fianillfy',\n", + " 'ofiailly',\n", + " 'zeianlly',\n", + " 'fianlljyl',\n", + " 'mfizanlly',\n", + " 'tianllj',\n", + " 'fiznllyi',\n", + " 'franlply',\n", + " 'fianlwty',\n", + " 'ftianzly',\n", + " 'nianlrly',\n", + " 'fiancllp',\n", + " 'fianvllo',\n", + " 'fikanlxly',\n", + " 'fiazllhy',\n", + " 'yfianllfy',\n", + " 'fiianlcly',\n", + " 'foanvlly',\n", + " 'fimaenlly',\n", + " 'fivanflly',\n", + " 'fifanhly',\n", + " 'finallly',\n", + " 'ifdanlly',\n", + " 'ffizanlly',\n", + " 'fianlklwy',\n", + " 'fzianllym',\n", + " 'faianllz',\n", + " 'afqanlly',\n", + " 'fianqwy',\n", + " 'kfianrly',\n", + " 'fianlliyj',\n", + " 'fcianll',\n", + " 'fiatlldy',\n", + " 'fixanllt',\n", + " 'feaynlly',\n", + " 'fianllnjy',\n", + " 'fjanluy',\n", + " 'fianqlloy',\n", + " 'fiasnllj',\n", + " 'fianvlpy',\n", + " 'fmiacnlly',\n", + " 'xoanlly',\n", + " 'fiaslxy',\n", + " 'fianllcg',\n", + " 'fiazwnlly',\n", + " 'fiafllhy',\n", + " 'yfiailly',\n", + " 'foanglly',\n", + " 'fiancally',\n", + " 'fiadqlly',\n", + " 'fjianqlly',\n", + " 'bianlld',\n", + " 'fianlnlyi',\n", + " 'vianllyw',\n", + " 'fiahllo',\n", + " 'fianrfly',\n", + " 'fiuajlly',\n", + " 'fhianllw',\n", + " 'vvanlly',\n", + " 'fiabnllyh',\n", + " 'fiatnlls',\n", + " 'esanlly',\n", + " 'fianlqlq',\n", + " 'fianlqlyq',\n", + " 'mianlxy',\n", + " 'fqianllym',\n", + " 'fianldlyq',\n", + " 'fsxnlly',\n", + " 'fifnlwy',\n", + " 'uyanlly',\n", + " 'fcagnlly',\n", + " 'fiagtlly',\n", + " 'nfiranlly',\n", + " 'fiarlnlly',\n", + " 'fbantlly',\n", + " 'flanxly',\n", + " 'fikanlnly',\n", + " 'fiandlliy',\n", + " 'fiailty',\n", + " 'fioznlly',\n", + " 'fwdianlly',\n", + " 'srianlly',\n", + " 'fignlnly',\n", + " 'fiaslvly',\n", + " 'fganlli',\n", + " 'fivanely',\n", + " 'fiaonklly',\n", + " 'fbialnlly',\n", + " 'fianlldyq',\n", + " 'fianllxw',\n", + " 'fjxnlly',\n", + " 'iacnlly',\n", + " 'fiwanlloy',\n", + " 'fiapflly',\n", + " 'ffiwnlly',\n", + " 'ftzianlly',\n", + " 'efianlply',\n", + " 'ofianlkly',\n", + " 'aimanlly',\n", + " 'fihanllyi',\n", + " 'fiakllyi',\n", + " 'qfianlqly',\n", + " 'failly',\n", + " 'fianllcr',\n", + " 'fuianllz',\n", + " 'gsanlly',\n", + " 'ftanllgy',\n", + " 'dianley',\n", + " 'sfianluy',\n", + " 'feianhly',\n", + " 'fianlvuy',\n", + " 'fkianlley',\n", + " 'fianlmyl',\n", + " 'qiamlly',\n", + " 'fpianlhly',\n", + " 'faanllyo',\n", + " 'fbianlqy',\n", + " 'aafianlly',\n", + " 'fianhklly',\n", + " 'fianwllyl',\n", + " 'fianllyv',\n", + " 'fianluyr',\n", + " 'afiantly',\n", + " 'fianlfyx',\n", + " 'fianlrys',\n", + " 'fimnllay',\n", + " 'mfianllgy',\n", + " 'fdnnlly',\n", + " 'nipnlly',\n", + " 'fiannla',\n", + " 'fainllty',\n", + " 'fiavnlll',\n", + " 'jfianldly',\n", + " 'fzianllry',\n", + " 'qinanlly',\n", + " 'fyaolly',\n", + " 'fiiianlly',\n", + " 'vianhlly',\n", + " 'fioanzlly',\n", + " 'fdianllyn',\n", + " 'fimanklly',\n", + " 'fiajnhlly',\n", + " 'rfianlldy',\n", + " 'uianllyv',\n", + " 'pianvlly',\n", + " 'dyianlly',\n", + " 'fiiailly',\n", + " 'finnlhly',\n", + " 'fiajhlly',\n", + " 'fkianllyl',\n", + " 'finallwy',\n", + " 'fiknsly',\n", + " 'tignlly',\n", + " 'francly',\n", + " 'finlply',\n", + " 'fqianljy',\n", + " 'fianwlcy',\n", + " 'fipanllay',\n", + " 'fiacnllu',\n", + " 'fianrxlly',\n", + " 'pianllyr',\n", + " 'fianlmlo',\n", + " 'ofoianlly',\n", + " 'fijanklly',\n", + " 'fiaintlly',\n", + " 'fiavljly',\n", + " 'ftianlley',\n", + " 'lfianjlly',\n", + " 'fiacnqlly',\n", + " 'cianlty',\n", + " 'feiuanlly',\n", + " 'kfianllyg',\n", + " 'fjianllyh',\n", + " 'fpaklly',\n", + " 'fkanllyk',\n", + " 'hianily',\n", + " 'fihanlluy',\n", + " 'fxianllv',\n", + " 'fiansllyf',\n", + " 'fianlklym',\n", + " 'ifanlzy',\n", + " 'ofiajlly',\n", + " 'fikdanlly',\n", + " 'xiaflly',\n", + " 'xfianlwly',\n", + " 'fianlut',\n", + " 'fiznmlly',\n", + " 'fivndly',\n", + " 'fuianldly',\n", + " 'zfianlyy',\n", + " 'fhiajlly',\n", + " 'xiallly',\n", + " 'fjianllyd',\n", + " 'ofiangly',\n", + " 'sianllyl',\n", + " 'pfianlfly',\n", + " 'hiasnlly',\n", + " 'fianflld',\n", + " 'fianllkhy',\n", + " 'fiantlk',\n", + " 'fpianllx',\n", + " 'fiawlhy',\n", + " 'fianfslly',\n", + " 'fxianlvly',\n", + " 'fiadnylly',\n", + " 'fiannllyy',\n", + " 'ibnlly',\n", + " 'fjianllgy',\n", + " 'uianllj',\n", + " 'mianplly',\n", + " 'fianjllb',\n", + " 'fwikanlly',\n", + " 'kianlkly',\n", + " 'fiansvy',\n", + " 'dixnlly',\n", + " 'fdanltly',\n", + " 'fiknllyt',\n", + " 'vfianllyi',\n", + " 'fiamnlyy',\n", + " 'viafnlly',\n", + " 'fionllyg',\n", + " 'fciwnlly',\n", + " 'ziatlly',\n", + " 'fvisanlly',\n", + " 'ftaflly',\n", + " 'sfianllys',\n", + " 'fhuianlly',\n", + " 'fvidnlly',\n", + " 'ufiannlly',\n", + " 'fkianllh',\n", + " 'fifnllw',\n", + " 'lihanlly',\n", + " 'fianflyl',\n", + " 'wfianlmly',\n", + " 'fmcanlly',\n", + " 'fipnllxy',\n", + " 'fiadnllyz',\n", + " 'rianley',\n", + " 'figngly',\n", + " 'fiamllfy',\n", + " 'fkanlhly',\n", + " 'fiilly',\n", + " 'fianllkn',\n", + " 'fiafaly',\n", + " 'fnanlsly',\n", + " 'fiatnllc',\n", + " 'vuanlly',\n", + " 'ffiantlly',\n", + " 'wfiaunlly',\n", + " 'fianhlldy',\n", + " 'fihanlfy',\n", + " 'fiaonloly',\n", + " 'fhnanlly',\n", + " 'fiangjly',\n", + " 'fpamnlly',\n", + " 'finrally',\n", + " 'fsanllyn',\n", + " 'fxianlsy',\n", + " 'ftanlldy',\n", + " 'fianllyu',\n", + " 'ficblly',\n", + " 'fiwaynlly',\n", + " 'fiaiflly',\n", + " 'fianrllyz',\n", + " 'fiathlly',\n", + " 'fianljlyq',\n", + " 'figanlbly',\n", + " 'fniailly',\n", + " 'fianlzlyx',\n", + " 'ficnllyg',\n", + " 'gfiajnlly',\n", + " 'cienlly',\n", + " 'fianflyk',\n", + " 'faanlyly',\n", + " 'cfiaully',\n", + " 'fimamnlly',\n", + " 'fihanlxy',\n", + " 'fliahnlly',\n", + " 'ofianwly',\n", + " 'fyiallly',\n", + " 'pianlll',\n", + " 'fnaflly',\n", + " 'cianlnly',\n", + " 'fihqanlly',\n", + " 'fianzlhy',\n", + " 'foiainlly',\n", + " 'iarlly',\n", + " 'lfiaally',\n", + " 'fjianly',\n", + " 'mflianlly',\n", + " 'cianlluy',\n", + " 'frianyly',\n", + " 'fiankklly',\n", + " 'fiasnlljy',\n", + " 'fianlapy',\n", + " 'hainlly',\n", + " 'oiaclly',\n", + " 'ufiavlly',\n", + " 'fiawnllyj',\n", + " 'franxlly',\n", + " 'edianlly',\n", + " 'fiagply',\n", + " 'fcanllr',\n", + " 'fimnllyu',\n", + " 'fidanllyu',\n", + " 'zfjianlly',\n", + " 'ufqianlly',\n", + " 'fianllcoy',\n", + " 'fkaflly',\n", + " 'tfiavnlly',\n", + " 'fzanqly',\n", + " 'fioablly',\n", + " 'fiuyanlly',\n", + " 'firnllw',\n", + " 'fianlill',\n", + " 'firanllry',\n", + " 'fianrljy',\n", + " 'fianlhyj',\n", + " 'pfialnlly',\n", + " 'fianollyy',\n", + " 'fmankly',\n", + " 'fikanrly',\n", + " 'fiwnklly',\n", + " 'pianrly',\n", + " 'filanolly',\n", + " 'tfianlhly',\n", + " 'fianmlzy',\n", + " 'fhanllmy',\n", + " 'gfhianlly',\n", + " 'fiahnllv',\n", + " 'fqianlcy',\n", + " 'kianllgy',\n", + " 'fitnllm',\n", + " 'fqianllyp',\n", + " 'fiaelzly',\n", + " 'fianlmbly',\n", + " 'fiabllhy',\n", + " 'fiainlloy',\n", + " 'fikaelly',\n", + " 'qfwianlly',\n", + " 'fiaqnllhy',\n", + " 'efiagnlly',\n", + " 'fiamnllyw',\n", + " 'zianlqy',\n", + " 'fmianllyc',\n", + " 'fiaunllmy',\n", + " 'fiasnllya',\n", + " 'fiwfnlly',\n", + " 'omianlly',\n", + " 'fizanllyw',\n", + " 'fiadhnlly',\n", + " 'iianlvly',\n", + " 'fianllqsy',\n", + " 'fiynllyd',\n", + " 'bfiahnlly',\n", + " 'fianlolf',\n", + " 'fiavllw',\n", + " 'ozianlly',\n", + " 'vianely',\n", + " 'fianpllye',\n", + " 'bfianljy',\n", + " 'fpiandly',\n", + " 'fivanllyl',\n", + " 'fianllob',\n", + " 'fiansllv',\n", + " 'filnllyt',\n", + " 'fzanllsy',\n", + " 'fiyangly',\n", + " 'fitnllyg',\n", + " 'hisnlly',\n", + " 'fianldyk',\n", + " 'fipanllgy',\n", + " 'frranlly',\n", + " 'qlianlly',\n", + " 'fiaaclly',\n", + " 'jianily',\n", + " 'fianaay',\n", + " 'mfianhly',\n", + " 'frianrly',\n", + " 'fuianlcly',\n", + " 'fviamlly',\n", + " 'feianllmy',\n", + " 'fiajnally',\n", + " 'fianlcply',\n", + " 'fikanllj',\n", + " 'qnanlly',\n", + " 'emanlly',\n", + " 'fzmianlly',\n", + " 'efianlzy',\n", + " 'finlpy',\n", + " 'fiahuly',\n", + " 'fianlnyg',\n", + " 'fjajnlly',\n", + " 'fianxl',\n", + " 'ifiasnlly',\n", + " 'fiadtlly',\n", + " 'fsanlloy',\n", + " 'fijanmly',\n", + " 'pianllf',\n", + " 'fganlqy',\n", + " 'figjlly',\n", + " 'fdifnlly',\n", + " 'fijnilly',\n", + " 'fiaotnlly',\n", + " 'fiinloy',\n", + " 'mbfianlly',\n", + " 'faanlvy',\n", + " 'fiaxllj',\n", + " 'fsimanlly',\n", + " 'fiannllg',\n", + " 'fiaejly',\n", + " 'fqianllya',\n", + " 'fianllxys',\n", + " 'fiaznllyo',\n", + " 'fihlanlly',\n", + " 'fianldb',\n", + " 'fifmnlly',\n", + " 'tfianlbly',\n", + " 'fianmvlly',\n", + " 'fianllxg',\n", + " 'fianlsoy',\n", + " 'fianlzlj',\n", + " 'wianlfly',\n", + " 'fiantfly',\n", + " 'fimnhly',\n", + " 'dfeianlly',\n", + " 'fianlpd',\n", + " 'mfisanlly',\n", + " 'nbanlly',\n", + " 'fcanlle',\n", + " 'filanlli',\n", + " 'fnanluy',\n", + " 'fixnully',\n", + " 'fiinllfy',\n", + " 'fliazlly',\n", + " 'fianllyrs',\n", + " 'fianeyy',\n", + " 'fiadmnlly',\n", + " 'ftanully',\n", + " 'fiankllzy',\n", + " 'fvanlxy',\n", + " 'fitanlld',\n", + " 'gfianlhly',\n", + " 'dfianlfy',\n", + " 'diamlly',\n", + " 'leanlly',\n", + " 'aianaly',\n", + " 'fianlcqly',\n", + " 'fialplly',\n", + " 'fihanolly',\n", + " 'fixnllym',\n", + " 'efiancly',\n", + " 'clanlly',\n", + " 'cfiqanlly',\n", + " 'fiafnlsy',\n", + " 'fiabllyr',\n", + " 'mianqlly',\n", + " 'fjanlliy',\n", + " 'kifnlly',\n", + " 'fuianlldy',\n", + " 'eiajlly',\n", + " 'fanluly',\n", + " 'fiagvnlly',\n", + " 'filnloy',\n", + " 'lianqly',\n", + " 'fiayplly',\n", + " 'foilanlly',\n", + " 'lfianllyb',\n", + " 'fiafxly',\n", + " 'finallyd',\n", + " 'bibnlly',\n", + " 'biuanlly',\n", + " 'gfianlnly',\n", + " 'fiaolle',\n", + " 'fhianily',\n", + " ...}" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# two edit distances from input word\n", + "edits2(word)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'faintly', 'finally', 'finely', 'frankly'}" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get correct words from above set\n", + "known(edits2(word))" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'finally'}" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "candidates = (known(edits0(word)) or \n", + " known(edits1(word)) or \n", + " known(edits2(word)) or \n", + " [word])\n", + "candidates" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "def correct(word):\n", + " \"\"\"\n", + " Get the best correct spelling for the input word\n", + " \"\"\"\n", + " # Priority is for edit distance 0, then 1, then 2\n", + " # else defaults to the input word itself.\n", + " candidates = (known(edits0(word)) or \n", + " known(edits1(word)) or \n", + " known(edits2(word)) or \n", + " [word])\n", + " return max(candidates, key=WORD_COUNTS.get)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'finally'" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "correct('fianlly')" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'FIANLLY'" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "correct('FIANLLY')" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "def correct_match(match):\n", + " \"\"\"\n", + " Spell-correct word in match, \n", + " and preserve proper upper/lower/title case.\n", + " \"\"\"\n", + " \n", + " word = match.group()\n", + " def case_of(text):\n", + " \"\"\"\n", + " Return the case-function appropriate \n", + " for text: upper, lower, title, or just str.:\n", + " \"\"\"\n", + " return (str.upper if text.isupper() else\n", + " str.lower if text.islower() else\n", + " str.title if text.istitle() else\n", + " str)\n", + " return case_of(word)(correct(word.lower()))\n", + "\n", + " \n", + "def correct_text_generic(text):\n", + " \"\"\"\n", + " Correct all the words within a text, \n", + " returning the corrected text.\n", + " \"\"\"\n", + " return re.sub('[a-zA-Z]+', correct_match, text)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'finally'" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "correct_text_generic('fianlly')" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'FINALLY'" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "correct_text_generic('FIANLLY')" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'finally'" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from textblob import Word\n", + "\n", + "w = Word('fianlly')\n", + "w.correct()" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('finally', 1.0)]" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "w.spellcheck()" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('flat', 0.85), ('float', 0.15)]" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "w = Word('flaot')\n", + "w.spellcheck()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Stemming" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('jump', 'jump', 'jump')" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Porter Stemmer\n", + "from nltk.stem import PorterStemmer\n", + "ps = PorterStemmer()\n", + "\n", + "ps.stem('jumping'), ps.stem('jumps'), ps.stem('jumped')" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'lie'" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ps.stem('lying')" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'strang'" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ps.stem('strange')" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('jump', 'jump', 'jump')" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Lancaster Stemmer\n", + "from nltk.stem import LancasterStemmer\n", + "ls = LancasterStemmer()\n", + "\n", + "ls.stem('jumping'), ls.stem('jumps'), ls.stem('jumped')" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'lying'" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ls.stem('lying')" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'strange'" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ls.stem('strange')" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "('jump', 'jump', 'jump')" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Regex based stemmer\n", + "from nltk.stem import RegexpStemmer\n", + "rs = RegexpStemmer('ing$|s$|ed$', min=4)\n", + "rs.stem('jumping'), rs.stem('jumps'), rs.stem('jumped')" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'ly'" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rs.stem('lying')" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'strange'" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rs.stem('strange')" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Supported Languages: ('danish', 'dutch', 'english', 'finnish', 'french', 'german', 'hungarian', 'italian', 'norwegian', 'porter', 'portuguese', 'romanian', 'russian', 'spanish', 'swedish')\n" + ] + } + ], + "source": [ + "# Snowball Stemmer\n", + "from nltk.stem import SnowballStemmer\n", + "ss = SnowballStemmer(\"german\")\n", + "print('Supported Languages:', SnowballStemmer.languages)" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'autobahn'" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# stemming on German words\n", + "# autobahnen -> cars\n", + "# autobahn -> car\n", + "ss.stem('autobahnen')" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'spring'" + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# springen -> jumping\n", + "# spring -> jump\n", + "ss.stem('springen')" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'My system keep crash hi crash yesterday, our crash daili'" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def simple_stemmer(text):\n", + " ps = nltk.porter.PorterStemmer()\n", + " text = ' '.join([ps.stem(word) for word in text.split()])\n", + " return text\n", + "\n", + "simple_stemmer(\"My system keeps crashing his crashed yesterday, ours crashes daily\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Lemmatization" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.stem import WordNetLemmatizer\n", + "wnl = WordNetLemmatizer()" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "car\n", + "men\n" + ] + } + ], + "source": [ + "# lemmatize nouns\n", + "print(wnl.lemmatize('cars', 'n'))\n", + "print(wnl.lemmatize('men', 'n'))" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "run\n", + "eat\n" + ] + } + ], + "source": [ + "# lemmatize verbs\n", + "print(wnl.lemmatize('running', 'v'))\n", + "print(wnl.lemmatize('ate', 'v'))" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "sad\n", + "fancy\n" + ] + } + ], + "source": [ + "# lemmatize adjectives\n", + "print(wnl.lemmatize('saddest', 'a'))\n", + "print(wnl.lemmatize('fancier', 'a'))" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ate\n", + "fancier\n" + ] + } + ], + "source": [ + "# ineffective lemmatization\n", + "print(wnl.lemmatize('ate', 'n'))\n", + "print(wnl.lemmatize('fancier', 'v'))" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'My system keep crash ! his crash yesterday , ours crash daily'" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import spacy\n", + "# use spacy.load('en') if you have downloaded the language model en directly after install spacy\n", + "nlp = spacy.load('en_core', parse=True, tag=True, entity=True)\n", + "text = 'My system keeps crashing his crashed yesterday, ours crashes daily'\n", + "\n", + "def lemmatize_text(text):\n", + " text = nlp(text)\n", + " text = ' '.join([word.lemma_ if word.lemma_ != '-PRON-' else word.text for word in text])\n", + " return text\n", + "\n", + "lemmatize_text(\"My system keeps crashing! his crashed yesterday, ours crashes daily\")" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "', , stopwords , computer'" + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.tokenize.toktok import ToktokTokenizer\n", + "tokenizer = ToktokTokenizer()\n", + "stopword_list = nltk.corpus.stopwords.words('english')\n", + "def remove_stopwords(text, is_lower_case=False, stopwords=stopword_list):\n", + " tokens = tokenizer.tokenize(text)\n", + " tokens = [token.strip() for token in tokens]\n", + " if is_lower_case:\n", + " filtered_tokens = [token for token in tokens if token not in stopwords]\n", + " else:\n", + " filtered_tokens = [token for token in tokens if token.lower() not in stopwords]\n", + " filtered_text = ' '.join(filtered_tokens) \n", + " return filtered_text\n", + "\n", + "remove_stopwords(\"The, and, if are stopwords, computer is not\")" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [], + "source": [ + "def normalize_corpus(corpus, html_stripping=True, contraction_expansion=True,\n", + " accented_char_removal=True, text_lower_case=True, \n", + " text_lemmatization=True, special_char_removal=True, \n", + " stopword_removal=True, remove_digits=True):\n", + " \n", + " normalized_corpus = []\n", + " # normalize each document in the corpus\n", + " for doc in corpus:\n", + " # strip HTML\n", + " if html_stripping:\n", + " doc = strip_html_tags(doc)\n", + " # remove accented characters\n", + " if accented_char_removal:\n", + " doc = remove_accented_chars(doc)\n", + " # expand contractions \n", + " if contraction_expansion:\n", + " doc = expand_contractions(doc)\n", + " # lowercase the text \n", + " if text_lower_case:\n", + " doc = doc.lower()\n", + " # remove extra newlines\n", + " doc = re.sub(r'[\\r|\\n|\\r\\n]+', ' ',doc)\n", + " # lemmatize text\n", + " if text_lemmatization:\n", + " doc = lemmatize_text(doc)\n", + " # remove special characters and\\or digits \n", + " if special_char_removal:\n", + " # insert spaces between special characters to isolate them \n", + " special_char_pattern = re.compile(r'([{.(-)!}])')\n", + " doc = special_char_pattern.sub(\" \\\\1 \", doc)\n", + " doc = remove_special_characters(doc, remove_digits=remove_digits) \n", + " # remove extra whitespace\n", + " doc = re.sub(' +', ' ', doc)\n", + " # remove stopwords\n", + " if stopword_removal:\n", + " doc = remove_stopwords(doc, is_lower_case=text_lower_case)\n", + " \n", + " normalized_corpus.append(doc)\n", + " \n", + " return normalized_corpus" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Original': \"US unveils world's most powerful supercomputer, beats China. The US has unveiled the world's most powerful supercomputer called 'Summit', beating the previous record-holder China's Sunway TaihuLight. With a peak performance of 200,000 trillion calculations per second, it is over twice as fast as Sunway TaihuLight, which is capable of 93,000 trillion calculations per second. Summit has 4,608 servers, which reportedly take up the size of two tennis courts.\",\n", + " 'Processed': 'us unveil world powerful supercomputer beat china us unveil world powerful supercomputer call summit beat previous record holder chinas sunway taihulight peak performance trillion calculation per second twice fast sunway taihulight capable trillion calculation per second summit server reportedly take size two tennis court'}" + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "{'Original': sample_text,\n", + " 'Processed': normalize_corpus([sample_text])[0]}" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03b - Text Syntax and Understanding.ipynb b/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03b - Text Syntax and Understanding.ipynb new file mode 100644 index 0000000..1c7294b --- /dev/null +++ b/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03b - Text Syntax and Understanding.ipynb @@ -0,0 +1,1776 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [], + "source": [ + "import warnings\n", + "warnings.simplefilter(\"ignore\", category=DeprecationWarning)\n", + "warnings.filterwarnings('ignore')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Parts of Speech (POS) Tagging" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "

\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012345678910
WordUSunveilsworld'smostpowerfulsupercomputer,beatsChina.
POS tagNNPVBZNNPOSRBSJJNN,VBZNNP.
Tag typePROPNVERBNOUNPARTADVADJNOUNPUNCTVERBPROPNPUNCT
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 \\\n", + "Word US unveils world 's most powerful supercomputer , \n", + "POS tag NNP VBZ NN POS RBS JJ NN , \n", + "Tag type PROPN VERB NOUN PART ADV ADJ NOUN PUNCT \n", + "\n", + " 8 9 10 \n", + "Word beats China . \n", + "POS tag VBZ NNP . \n", + "Tag type VERB PROPN PUNCT " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentence = \"US unveils world's most powerful supercomputer, beats China.\"\n", + "\n", + "import pandas as pd\n", + "import spacy\n", + "nlp = spacy.load('en_core', parse=True, tag=True, entity=True)\n", + "sentence_nlp = nlp(sentence)\n", + "# POS tagging with Spacy \n", + "spacy_pos_tagged = [(word, word.tag_, word.pos_) for word in sentence_nlp]\n", + "pd.DataFrame(spacy_pos_tagged, columns=['Word', 'POS tag', 'Tag type']).T" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012345678910
WordUSunveilsworld'smostpowerfulsupercomputer,beatsChina.
POS tagNNPJJNNPOSRBSJJNN,VBZNNP.
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 \\\n", + "Word US unveils world 's most powerful supercomputer , beats \n", + "POS tag NNP JJ NN POS RBS JJ NN , VBZ \n", + "\n", + " 9 10 \n", + "Word China . \n", + "POS tag NNP . " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# POS tagging with nltk\n", + "import nltk\n", + "nltk_pos_tagged = nltk.pos_tag(nltk.word_tokenize(sentence))\n", + "pd.DataFrame(nltk_pos_tagged, columns=['Word', 'POS tag']).T" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Pierre', 'NNP'), ('Vinken', 'NNP'), (',', ','), ('61', 'CD'), ('years', 'NNS'), ('old', 'JJ'), (',', ','), ('will', 'MD'), ('join', 'VB'), ('the', 'DT'), ('board', 'NN'), ('as', 'IN'), ('a', 'DT'), ('nonexecutive', 'JJ'), ('director', 'NN'), ('Nov.', 'NNP'), ('29', 'CD'), ('.', '.')]\n" + ] + } + ], + "source": [ + "from nltk.corpus import treebank\n", + "data = treebank.tagged_sents()\n", + "train_data = data[:3500]\n", + "test_data = data[3500:]\n", + "print(train_data[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# default tagger\n", + "from nltk.tag import DefaultTagger\n", + "dt = DefaultTagger('NN')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.1454158195372253" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# accuracy on test data\n", + "dt.evaluate(test_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('US', 'NN'),\n", + " ('unveils', 'NN'),\n", + " ('world', 'NN'),\n", + " (\"'s\", 'NN'),\n", + " ('most', 'NN'),\n", + " ('powerful', 'NN'),\n", + " ('supercomputer', 'NN'),\n", + " (',', 'NN'),\n", + " ('beats', 'NN'),\n", + " ('China', 'NN'),\n", + " ('.', 'NN')]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# tagging our sample headline\n", + "dt.tag(nltk.word_tokenize(sentence))" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# regex tagger\n", + "from nltk.tag import RegexpTagger\n", + "# define regex tag patterns\n", + "patterns = [\n", + " (r'.*ing$', 'VBG'), # gerunds\n", + " (r'.*ed$', 'VBD'), # simple past\n", + " (r'.*es$', 'VBZ'), # 3rd singular present\n", + " (r'.*ould$', 'MD'), # modals\n", + " (r'.*\\'s$', 'NN$'), # possessive nouns\n", + " (r'.*s$', 'NNS'), # plural nouns\n", + " (r'^-?[0-9]+(.[0-9]+)?$', 'CD'), # cardinal numbers\n", + " (r'.*', 'NN') # nouns (default) ... \n", + "]\n", + "rt = RegexpTagger(patterns)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.24039113176493368" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# accuracy on test data\n", + "rt.evaluate(test_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('US', 'NN'),\n", + " ('unveils', 'NNS'),\n", + " ('world', 'NN'),\n", + " (\"'s\", 'NN$'),\n", + " ('most', 'NN'),\n", + " ('powerful', 'NN'),\n", + " ('supercomputer', 'NN'),\n", + " (',', 'NN'),\n", + " ('beats', 'NNS'),\n", + " ('China', 'NN'),\n", + " ('.', 'NN')]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# tagging our sample headline\n", + "rt.tag(nltk.word_tokenize(sentence))" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "## N gram taggers\n", + "from nltk.tag import UnigramTagger\n", + "from nltk.tag import BigramTagger\n", + "from nltk.tag import TrigramTagger\n", + "\n", + "ut = UnigramTagger(train_data)\n", + "bt = BigramTagger(train_data)\n", + "tt = TrigramTagger(train_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.8609739568206022\n", + "[('US', 'NNP'), ('unveils', None), ('world', 'NN'), (\"'s\", 'POS'), ('most', 'JJS'), ('powerful', 'JJ'), ('supercomputer', 'NN'), (',', ','), ('beats', None), ('China', 'NNP'), ('.', '.')]\n" + ] + } + ], + "source": [ + "# testing performance of unigram tagger\n", + "print(ut.evaluate(test_data))\n", + "print(ut.tag(nltk.word_tokenize(sentence)))" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.13563752541388324\n", + "[('US', None), ('unveils', None), ('world', None), (\"'s\", None), ('most', None), ('powerful', None), ('supercomputer', None), (',', None), ('beats', None), ('China', None), ('.', None)]\n" + ] + } + ], + "source": [ + "# testing performance of bigram tagger\n", + "print(bt.evaluate(test_data))\n", + "print(bt.tag(nltk.word_tokenize(sentence)))" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.0813244263723497\n", + "[('US', None), ('unveils', None), ('world', None), (\"'s\", None), ('most', None), ('powerful', None), ('supercomputer', None), (',', None), ('beats', None), ('China', None), ('.', None)]\n" + ] + } + ], + "source": [ + "# testing performance of trigram tagger\n", + "print(tt.evaluate(test_data))\n", + "print(tt.tag(nltk.word_tokenize(sentence)))" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "def combined_tagger(train_data, taggers, backoff=None):\n", + " for tagger in taggers:\n", + " backoff = tagger(train_data, backoff=backoff)\n", + " return backoff\n", + "\n", + "ct = combined_tagger(train_data=train_data, \n", + " taggers=[UnigramTagger, BigramTagger, TrigramTagger],\n", + " backoff=rt)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.9104463161971149\n", + "[('US', 'NNP'), ('unveils', 'NNS'), ('world', 'NN'), (\"'s\", 'POS'), ('most', 'JJS'), ('powerful', 'JJ'), ('supercomputer', 'NN'), (',', ','), ('beats', 'NNS'), ('China', 'NNP'), ('.', '.')]\n" + ] + } + ], + "source": [ + "# evaluating the new combined tagger with backoff taggers\n", + "print(ct.evaluate(test_data)) \n", + "print(ct.tag(nltk.word_tokenize(sentence)))" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.classify import NaiveBayesClassifier, MaxentClassifier\n", + "from nltk.tag.sequential import ClassifierBasedPOSTagger\n", + "\n", + "nbt = ClassifierBasedPOSTagger(train=train_data,\n", + " classifier_builder=NaiveBayesClassifier.train)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.9306806079969019\n", + "[('US', 'PRP'), ('unveils', 'VBZ'), ('world', 'VBN'), (\"'s\", 'POS'), ('most', 'JJS'), ('powerful', 'JJ'), ('supercomputer', 'NN'), (',', ','), ('beats', 'VBZ'), ('China', 'NNP'), ('.', '.')]\n" + ] + } + ], + "source": [ + "# evaluate tagger on test data and sample sentence\n", + "print(nbt.evaluate(test_data))\n", + "print(nbt.tag(nltk.word_tokenize(sentence)))" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "# try this out for fun!\n", + "#met = ClassifierBasedPOSTagger(train=train_data,\n", + "# classifier_builder=MaxentClassifier.train)\n", + "#print(met.evaluate(test_data)) \n", + "#print(met.tag(nltk.word_tokenize(sentence)))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Shallow Parsing or Chunking" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP A/DT Lorillard/NNP spokewoman/NN)\n", + " said/VBD\n", + " ,/,\n", + " ``/``\n", + " (NP This/DT)\n", + " is/VBZ\n", + " (NP an/DT old/JJ story/NN)\n", + " ./.)\n" + ] + } + ], + "source": [ + "from nltk.corpus import treebank_chunk\n", + "data = treebank_chunk.chunked_sents()\n", + "\n", + "train_data = data[:3500]\n", + "test_data = data[3500:]\n", + "# view sample data\n", + "print(train_data[7])" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "POS Tags: [('US', 'NNP'), ('unveils', 'JJ'), ('world', 'NN'), (\"'s\", 'POS'), ('most', 'RBS'), ('powerful', 'JJ'), ('supercomputer', 'NN'), (',', ','), ('beats', 'VBZ'), ('China', 'NNP'), ('.', '.')]\n" + ] + } + ], + "source": [ + "from nltk.chunk import RegexpParser\n", + "\n", + "# get POS tagged sentence\n", + "tagged_simple_sent = nltk.pos_tag(nltk.word_tokenize(sentence))\n", + "print('POS Tags:', tagged_simple_sent)\n", + "\n", + "# illustrate NP chunking based on explicit chunk patterns\n", + "chunk_grammar = \"\"\"\n", + "NP: {
?*}\n", + "\"\"\"\n", + "rc = RegexpParser(chunk_grammar)\n", + "c = rc.parse(tagged_simple_sent)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP US/NNP)\n", + " (NP unveils/JJ world/NN)\n", + " 's/POS\n", + " most/RBS\n", + " (NP powerful/JJ supercomputer/NN)\n", + " ,/,\n", + " beats/VBZ\n", + " (NP China/NNP)\n", + " ./.)\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('S', [Tree('NP', [('US', 'NNP')]), Tree('NP', [('unveils', 'JJ'), ('world', 'NN')]), (\"'s\", 'POS'), ('most', 'RBS'), Tree('NP', [('powerful', 'JJ'), ('supercomputer', 'NN')]), (',', ','), ('beats', 'VBZ'), Tree('NP', [('China', 'NNP')]), ('.', '.')])" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print and view chunked sentence using chunking\n", + "print(c)\n", + "c" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "# illustrate NP chunking based on explicit chink patterns\n", + "chink_grammar = \"\"\"\n", + "NP:\n", + " {<.*>+} # Chunk everything as NP\n", + " }+{ # Chink sequences of VBD\\VBZ\\JJ\\IN\n", + "\"\"\"\n", + "rc = RegexpParser(chink_grammar)\n", + "c = rc.parse(tagged_simple_sent)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP US/NNP)\n", + " unveils/JJ\n", + " (NP world/NN 's/POS most/RBS)\n", + " powerful/JJ\n", + " (NP supercomputer/NN ,/,)\n", + " beats/VBZ\n", + " (NP China/NNP ./.))\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('S', [Tree('NP', [('US', 'NNP')]), ('unveils', 'JJ'), Tree('NP', [('world', 'NN'), (\"'s\", 'POS'), ('most', 'RBS')]), ('powerful', 'JJ'), Tree('NP', [('supercomputer', 'NN'), (',', ',')]), ('beats', 'VBZ'), Tree('NP', [('China', 'NNP'), ('.', '.')])])" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print and view chunked sentence using chinking\n", + "print(c)\n", + "c" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "# create a more generic shallow parser\n", + "grammar = \"\"\"\n", + "NP: {
??} \n", + "ADJP: {}\n", + "ADVP: {}\n", + "PP: {} \n", + "VP: {?+}\n", + "\"\"\"\n", + "rc = RegexpParser(grammar)\n", + "c = rc.parse(tagged_simple_sent)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP US/NNP)\n", + " (NP unveils/JJ world/NN)\n", + " 's/POS\n", + " (ADVP most/RBS)\n", + " (NP powerful/JJ supercomputer/NN)\n", + " ,/,\n", + " (VP beats/VBZ)\n", + " (NP China/NNP)\n", + " ./.)\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('S', [Tree('NP', [('US', 'NNP')]), Tree('NP', [('unveils', 'JJ'), ('world', 'NN')]), (\"'s\", 'POS'), Tree('ADVP', [('most', 'RBS')]), Tree('NP', [('powerful', 'JJ'), ('supercomputer', 'NN')]), (',', ','), Tree('VP', [('beats', 'VBZ')]), Tree('NP', [('China', 'NNP')]), ('.', '.')])" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print and view shallow parsed sample sentence\n", + "print(c)\n", + "c" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ChunkParse score:\n", + " IOB Accuracy: 46.1%%\n", + " Precision: 19.9%%\n", + " Recall: 43.3%%\n", + " F-Measure: 27.3%%\n" + ] + } + ], + "source": [ + "# Evaluate parser performance on test data\n", + "print(rc.evaluate(test_data))" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP A/DT Lorillard/NNP spokewoman/NN)\n", + " said/VBD\n", + " ,/,\n", + " ``/``\n", + " (NP This/DT)\n", + " is/VBZ\n", + " (NP an/DT old/JJ story/NN)\n", + " ./.)\n" + ] + } + ], + "source": [ + "from nltk.chunk.util import tree2conlltags, conlltags2tree\n", + "# look at a sample training tagged sentence\n", + "train_sent = train_data[7]\n", + "print(train_sent)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('A', 'DT', 'B-NP'),\n", + " ('Lorillard', 'NNP', 'I-NP'),\n", + " ('spokewoman', 'NN', 'I-NP'),\n", + " ('said', 'VBD', 'O'),\n", + " (',', ',', 'O'),\n", + " ('``', '``', 'O'),\n", + " ('This', 'DT', 'B-NP'),\n", + " ('is', 'VBZ', 'O'),\n", + " ('an', 'DT', 'B-NP'),\n", + " ('old', 'JJ', 'I-NP'),\n", + " ('story', 'NN', 'I-NP'),\n", + " ('.', '.', 'O')]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get the (word, POS tag, Chunk tag) triples for each token\n", + "wtc = tree2conlltags(train_sent)\n", + "wtc" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP A/DT Lorillard/NNP spokewoman/NN)\n", + " said/VBD\n", + " ,/,\n", + " ``/``\n", + " (NP This/DT)\n", + " is/VBZ\n", + " (NP an/DT old/JJ story/NN)\n", + " ./.)\n" + ] + } + ], + "source": [ + "# get shallow parsed tree back from the WTC triples\n", + "tree = conlltags2tree(wtc)\n", + "print(tree)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "def conll_tag_chunks(chunk_sents):\n", + " tagged_sents = [tree2conlltags(tree) for tree in chunk_sents]\n", + " return [[(t, c) for (w, t, c) in sent] for sent in tagged_sents]\n", + " \n", + "def combined_tagger(train_data, taggers, backoff=None):\n", + " for tagger in taggers:\n", + " backoff = tagger(train_data, backoff=backoff)\n", + " return backoff" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.tag import UnigramTagger, BigramTagger\n", + "from nltk.chunk import ChunkParserI\n", + "\n", + "class NGramTagChunker(ChunkParserI):\n", + " \n", + " def __init__(self, train_sentences, \n", + " tagger_classes=[UnigramTagger, BigramTagger]):\n", + " train_sent_tags = conll_tag_chunks(train_sentences)\n", + " self.chunk_tagger = combined_tagger(train_sent_tags, tagger_classes)\n", + "\n", + " def parse(self, tagged_sentence):\n", + " if not tagged_sentence: \n", + " return None\n", + " pos_tags = [tag for word, tag in tagged_sentence]\n", + " chunk_pos_tags = self.chunk_tagger.tag(pos_tags)\n", + " chunk_tags = [chunk_tag for (pos_tag, chunk_tag) in chunk_pos_tags]\n", + " wpc_tags = [(word, pos_tag, chunk_tag) for ((word, pos_tag), chunk_tag)\n", + " in zip(tagged_sentence, chunk_tags)]\n", + " return conlltags2tree(wpc_tags)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ChunkParse score:\n", + " IOB Accuracy: 97.2%%\n", + " Precision: 91.4%%\n", + " Recall: 94.3%%\n", + " F-Measure: 92.8%%\n" + ] + } + ], + "source": [ + "# train the shallow parser\n", + "ntc = NGramTagChunker(train_data)\n", + "\n", + "# test parser performance on test data\n", + "print(ntc.evaluate(test_data))" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP US/NNP)\n", + " unveils/VBZ\n", + " (NP world/NN 's/POS most/RBS powerful/JJ supercomputer/NN)\n", + " ,/,\n", + " beats/VBZ\n", + " (NP China/NNP)\n", + " ./.)\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAy4AAABiCAIAAAA5oxB2AAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAHXRFWHRTb2Z0d2FyZQBHUEwgR2hvc3RzY3JpcHQgOS4wOfoZEaQAABv0SURBVHic7Z1NbNtmmsdffyWWnCZmG9uxd2atYSedXevSGa4XewjQHthLivQU9pi2Fw3Qy8wlQx3TmzQtsEAOBcxLO8hNzGngDDAwD83BmAVi7gywG2HRqTnyoK0ayzWTJlY0aRLt4YnfMiRFURItUtL/B8OgKH68fD//7/M8fDXWbDYZAAAAAACIg/G4EwAAAAAAMLpAigEAAAAAxAakGAAAAABAbECKAQAAAADEBqQYAAAAAEBsQIoBAAAAAMTGZNwJAACAEUXXddM0FUURBEEUxbiTAwCIB1jFAAAgBorFoiiKhULBNE1N0+JODgAgNiDFAAAgBmzbliSJMZbL5WRZjjs5AIDYGMNq+wAA0H9M0zQMw7ZtWZYhxQAYZSDFAAAgTgzDME1TVdW4EwIAiAc4KAEAIAaKxSJtyLJs23a8iQEAxAjeoAQAgBgwDIMxJkmSYRiKosSdHABAbMBBCQAA8WDbtmmaCBQDYMSBFAMAAAAAiA3EigEAAAAAxAakGAAAAABAbECKAQAAAADEBt6gBACAGPj9X/7ypy++2Pn229+cP//qj38cd3IAALGBsH0AAOgAq1azajX+8c87O9V796p379LHyt4eY+xuvd54/Jgxdv/hQ9r/3cOH3z950vbiY2NjUxMTY4yljx8/Pjn54szMyVTqzKlT01NTJ6anf7G8fHZhgY6UMhkhnY720QAAsQApBgAYFYxy2fnRPjgwd3YYY//4/vtv7t2jnZ/fufPw0aOH339PHxuPHvGvOuLE9PSTp0+fPn06Pj7+8NEjvn96auqlEydeOXOGMbZ46tTegwd79+9X793bPzh48vTp4xByzctsOj2bTjPGpiYmXkilXllYoJ2n0mlxbk6cm+NHyisrXVwfAHCkQIoBAJKOubNjHxw8t6dSset15x5rd/fre/ecoue/K5Ue7zs9NXXm1Cn+8acLC6dPnOAfzy4s/CKT+es339xvNP5658701NSXtm3cvs0PEGZmpExGnJsTZmbklRVhZkZaXm57U7teNysVq1b70xdf1O7fr967V/7664bjubxMjI+Pj42Fsbo5WT59+qXDx/nnF1/82eIi/0paXhZmZn54ihDJBgB0DaQYAOCoIFXx3J5DQ5Rzj9Pfxxi7/fXX1Uh/COhHgjDvUFSvLCxMT00tHO5xGoqCZQcpQqNcpjSblYpTIMrZLKku0jGR25/IpEf/zUrl8zt3/r63x7+dnZmZGBtLHTu2d/9+49Ckx1kSBBJqE2Njj588ud9o/OPx4+6S8a9LS/8kCLRNz8u/cj6yyxoHAAgAUgwA4IPXEOXy7jHGfGRWJ4aok6nU1MQECx1H9YtMhjH24swMY0xIp8X5ef6Va+DvXQdQQBjXPVatZu3u8m/lbJYSQDeKMWyL0kk2Qsp8p1mOMXZ2YWFifHw2nf72wYMXUqm9+/f//u23rou8cubMienpMcaoOM6cOmUfHDQeP/7+yZMHjcbn33zT6u7pY8dSx46FKT45m+XbUibDt4V02vkRAXBgNIEUA2CocAWV++/Z3XV591wGnmCmjx0jtx2PSZ+cmBhjLExMFckX/tE5DLPn/WKsX4FNLjXjEpRSJkN+RhINA2Hs+eFBdnZ8DXhSJtNk7JWFhbv1+mw6Ta5VRlnhUJwEL7Kfzs/frdcXZ2cXT536/M4d7tzk2eV7OmfuhReeNpuMscmJidTUVMVh0vOFst2Z5h+ShAA4MFxAigGQFFoFlTvp0RD1ypkz01NT3zUafM9sKnXXIcvu1ut3n1dpvpBAcX7k2y47R6IijXgYFokGu1532pBIc1Di5ZWVgVBdHcEdrOxQfDsrjzOybXJ8/FQqNXfy5P9Vq+xQu/tWNi7UKN946U9OTNArCM5q7HRGB6h/rvUZY+NjY0+fPn22PT4eIPVc6SGeE3MIgANJBVIMgF4JGVTu2uNyJAUjzs8vzs46Y9JPHD/+yBHuc7dePzY5OTkxQR/DRKy7rA7BLr9B9BxRUBe3DPUeUD+UPBOmLeQpO/QtOu2CJMvY4eSBCyxvleZ1jNc0smA5a5czoNBpweVNJni+sSgIi6dOPX7y5LtG48zJk7STvLG07euTdeGcWrgaAgLgQB+AFAOjS3dB5cFeGC/OKBnC+RZeZW/P+Zre53fuMFqSYHo6pMUr2OXn8t0Mqysn3oD6ocQlZF3V3mVBZI6qxeUUt/JSNfY1g1Hr4OH/dJEAZezUas4JT0gnKXlmGWMvHD++ODtLNmC+FMjnd+6cnJ6m+UwYl72zaTvfYEAAHOgUSDEwkPQhqNzlg2MOlcOXoTq7sPDC9DStZUBfLZ8+7VJvIcOwXIotwOU34lPzQQmoH0rCuDiD85/Pf7iQoo++EoraIDdTkZIOb8LkvUQXTlKnzfhHgsBfSj27sFC9d+9Bo0Ev4boae1tTNwLggC+QYqCv9CGo3NXZMY/HgR32et84FklfnJ39yrad93UlI4w/0XVr16v+Q+Dy6zPDF1A/lHgj8LxvCThLKlhLkc7j3UKAUHOFqfEK0IWI6dFJ6rRM8x6g2Wxy+/fi7Oz/fvXVD7dzCLgwU8QAy7ez2o+yn33QgRQDYelDUHmAIYrj6meFmZlg85gzASF9iwEx6ayTZahAeEY8oH4o4S5O5me/5JazjhzHZOjil+3ifYLep0C9O0kFz4IsvEr/9c6dxdnZE8ePM08f65wchunKAgLgnG8woDUlAUix4ac/QeWuxuwyCDHPOgXs+T7RFbblMpX17vJz9URw+cULAupHFir0gIXQXC7mjtom7+sieZ8gEqJykjp7VN6X8tbhnH+6Ok9nv9pLABx7fhYKo360QIoll1iCyr2+PJdqYYGmIJfsc2k+5+N0F5Pu6hpiWYYKdAQC6kFbnDbRVguhcV3StUA/0vcJeuconKTO3tulMl3jS0Bf3VbABQTA4Q2GkECKHQnxBpX/sMdjiAo51DlT69V/cPkBXxBQD6LF9VtPAQuhUV/XS6Xq5/sEvXOkTlLWWjO5TG6ukaKjNxhCBsCx0ZhjQ4o9R6KCyoP3tMWVcvfH558izCN0tAwVXH7DDQLqQVw4616rhdCod4q2+sXyPkEk9MdJGiYBLDAALow9ImQA3MBN6YdHiiU2qLzHCuEysAXEpEeyDBVcfsAFAupB8gnzW09OFyeLunNLwvsEvdNnJ2kwIQPgwnhmQgbAxdh9xS/FBiKovHcCXH4uu27vLr8k//IMSDgIqAfDRPjfejpSv3kC3yfonbicpAEMbgBc9FLMKJe57EhaUHnkWLWadvPms20sQwUGEO3mTTJ6IaAejAjhf+sp99prfRBAXb9PoKyuDsp0KHInaeHixajS5hJwvQTAtRJwbStS9FIsf/168caNIw0qTw5GufzGhx/il2fA4JK/ft2sVBBQD4D3t55K778fu9YJeJ9g7Z13hm9ACekkbX7ySVwpfJYeR9raBsBtXL4cXFLxOygBAAAAAEaW8bgTAAAAAAAwukCKAQAAAADEBqQYAAAAAEBsTPZysmmatm3LsswYMwyDMSZJkm3blmXRAaIoiqLYeyqTQD6fLxQKtG2apq7rkiQpitLpdSijKGcoA+v1evowSloQBEmS+F1s26ZtSZIEQYjgMcAIM1INFoAkoOu6aZp87OgC27a76/y9Y40gCIIg8PbOh5uEjzXejuv06dN7e3v07XD0Wj1ZxSRJ0jSNskaWZcMwBEGgTJFlWRRFXdd1XY8mpXGTy+X4tiRJhUKhu/oqiqJlWZRLkiQZhvHWW28xxmRZliTJsiyeY7quy7Isy7KznQDQNSPVYAFIAl1M112Yptndid6xRpIk3t6dw03Cxxpvx/Xqq6+y4eq1erKKMcZEUTQMg+Sq9ytVVYvFYo+36AjDMEzTVFXVsixN00RRlGW5WCyKokizAVVVBUHQdZ2SrSiKpmmWZfGKqOu6KIq2bedyORJbhmE4K3EruKmMrsaNWy6oedC2bdvOawqCoCgKzzG6Ah08BKofJIGkNVgARgFqVjSsUGceMNbQGEGGNMMwaLRijImiSBaB3sca9vxwk/yxplXHNTy9VrM3VFXd3t4uFAq0TTs3Njaazeb+/n6hUCiVSj3eolPo7jx5PJE8Sc6vms3m9vb22tqa61vntveyvntUVd3f36cLbm1tBaRwbW2N0rO2tkanrK2tqaqqqqqiKPSV6xEAiIQENlgAhhtFUaifbx42uuCxptlslkolPoh4h55exppm6+EmyWONt+Masl6rV6sYY4wbnPgey7Ly+bwoioqiJERiUzIEQeDW11wup2ka/af5h2malPLubqGqqqZp5I93ejO95HI5ijzjQQB8umPbdrFY5IEFxWKR70+a/x4MKAPRYAEYGqjF0TZttBpruHUnuMPvZaxhLYab5I81ro5ryHqtCKQYOyxv/pGXdCxwsRXs8ybjrauCSpLUdcrJ+8k8cqoVpml6DcsUVknbZKnm1mxfpxIAXZCoBgtAvFBbaNtjhzwsGBqVfMca0zS5tAoOfopkrGGO4WZQxhpnx5XAXsu27TC553vYxJUrV7q+MbmxG40GFbNhGIqi0M7NzU3Lslr5sI+Ucrm8ublpmubm5ubm5mY2m7127RolkkL/Ll26xA/+9a9/XSgUUqkUY4wU9/r6eqPR0HW9XC5T+vP5PIWg8Yfy7mGMXb16lbTdtWvXJEnKPv/rmS4EQcjn85T5PMcoUCCVSp07d47u22g0aCc7dOcD0DXJbLAAxMvbb7+tqmpby0rIw1xommaaJoXe67q+tLREryh6x5pUKrW+vs4YMwyjXC6bpnnhwgW6CFnLdF2vVqvZbLbrsYa1GG4SPtZ4Oy4K+E5ar3X16tV33nnnwoULS0tLnR42nD981Ev4YUhhG/m5AAAA+oxhGJqmlUqlSA4LvoJrnQjf8cJ7mO+RGGuSSSsDZNvDhlOKAQAAAG2hVxHbzttDHgZAd0CKAQAAAADEBn74CAAAAAAgNiDFAAAAAABiA1IMAAAAACA2ollXDAAwKJg7O/bBwe///Of/+fLL21999dKJE/+yuPizxUV5ZYUxJs7NiXNzcacRAABGiIjD9t/46CMpkylcvBjhNQEAXWCUy/y/tbtbe/Bg629/e9BouA6bnJh4/OSJ93Q5m2WMSZkMY0xIp2lDymSEdPpo0w0AAK0xyuU3Pvyw+ckncSckSmAVA2CwcUous1JhjBm3bzsPOJlKMca+e/iQMTZz/PjPFhf//Sc/SR079p9//KP65puFixfNnR391i3j9m06/aUTJ84uLJw4fvxuvW5WKmalYh8cOC8ozs+T5Yz0GRnShJkZaXm5D88LAABWrTZM9ntIMQAGg7aSixTS8cnJ/3j55XsPH365v3+/0WCMnV1YkDKZZ3/Ly+xwWpl7/XUyYEvLy9LyMrt40a7Xjdu3jXLZKJf/a3ubMSZns+r583I2K6TTVq3GE2AfHFi1GldvTqRMRpiZEdJpcX6eMQa/JwAgciDFAABHSEjJJc7NqW++Kc7NpY8d+/u3337XaBi3b/Mj5Wz2rZ//XFpeJhXlPN3c2Xn744+lTKagKK5bC+m0srqqrK7SYSTL8rrOdF2cn5dXVuSVFfX8ea+PkuLP7IMDc2eHkm3X6/qtW9bubvHGDeeR8HsCAIALSDEA4qFTycX/6CxyHWqffUbeQ5JKyuqqnM0GOArtev2NDz8U5+Y2Ll8OVj9kKlPPn3eayrTPPmOMydmsvLLivBHfIBnn+6Skz2gDfk8AAOBAigFwtPQiuThWrWZWKlq5bFYqTtNX7vXXpeVlKZMJY6snHcYYW3v33fBWqLamMimTUVZXAy5IPkr678Kq1eD3BACMOHiDEoBoCC+5hJmZVpLLCekes1Ixd3as3V3GmDAzQ9JHymR8lU0wb3/8sX7r1taVK5HYmfRbtyjen9ImZTJyNqusrkZoxPL6PRmpt91d15HwewIwOoy9997G5ctd9IGJBVIMgM5oK7nIfvNMDSwv03YYTUCuQHNnx2n6Iokjzs3JKyu9WIB++bvfaZ99tvbuu7nXXuv6Ir5YtZp+65ZZqei3bjHGhJkZZXW1ramsd7x+z2cf4fcEYKiBFGsDpBgYDux6nQb1H+LQDw5cXrOuJZcTEl5mpWKUy9z0xe1eUfU1xT/8Ia/rBUVRz5+P5IKt6IOpLAy+fk9vCTL4PQEYQCDF2gApBgaLvkku1x153D2ZcH5YbOJwvYkI0W7e/OWnn+Zef33tnXeivXIA3FRmlMv2wQG5VineP3aVA78nAAPN2Hvv0ZqIcSckMhC2D0aC8JJLzmbp3cAeJZcTq1YzymVXQDoF3VPs19EN7ebOTl7X5Wy2nzqMMSbOzXELHL19ady+/ctPP2WHprIIbX6dgvc9AQCJAlYxMFT038rVCtIf1u4umYXY4XoT4txc8HoTEWLu7IRcuqI/kCSldzCTZioLA/yeACSB4bOKQYqBgSQ5kotD6024gu7lbJZ8jt6lVo8aWrrCqtW2f/vbJOgwF9xURqUWu6msd+D3BKA/QIq1AVIMREsCJZcTHvLF15sQ5+dpoa/u1puIkH/74AOrVtu4fDnhLjMyldELmGQ+5C9gDpMNCe97AhAVL6uqsro6TEoDUgwkgjCSy2lL6LPkcqbz6NabiBBauqL0/vu+4VCJxfXD5OL8PL19OVhP0SnwewLQEcOnNCDFQF+hUYePPW0lV8BC7X2Dllp9FnrvWGqV/yxjjGnzJX/9evHGjaNYQqxv0E9YDr2pLAzwewLgYviUBqQYOBKckotm+d7BI2mSi9P/9SYihJauGKZAilamsv6H3yUQ+D3BCPLGRx+Jc3N9fiv8SMFiFqAnwksu8jElSnI54RFL9McOl1rtw3oTEWKUy7SE2NDoMHb4w+Ts4kX+w+T6rVvFGzeY3w+Tjxr4fU8wmlDdHhoitorlr18X5+YG1y0COuJlVXWqrsRaudpCliQWx3oT0fLGRx/ZBwcJWbriSOE/TE4Re0O29HYfCOn3RMaCBJK/fp0xNkwTzoilGBgptJs3ad486J01rUMxHA4vu14fgqcID5nKhjuuv/9wv+cIBucB0H8gxQAAAAAAYmM87gQAAAAAAIwukGIAAAAAALEBKQYAAAAAEBv+i1lYlmVZliAIkiQZhsEYkyRJEARd103TVBRFEARRFH3PNU3Ttm1Zlhlj/FzLslw7T58+vbe3R6eIotjqaiA5mKap67okSYqieL+lulEoFFqd66oAk5OTjx8/dtUTQRB6T2Q+n9/Y2Oj0RKrztO2skLzOS5LEDw7TEPqDbdthMs336Zw7qbHTdnKeLiS2bReLRdpuVQNZuwrspG12ocvyJWRtDEnIoSSSfgMcEdSZyLJMxWQYhmmaqqr6HpzP5wPab3gGUoQ0W7CxscG3VVVtNpuFQmFra6vZbK6trdGeViiKwk/nR3p30sft7e1CoVAqlQIuCJKDs2K46LRW+NaTHtna2gqo1cF4K6SqqrSzVCqtra3RYeEbQh8IKA7fI13NjXbu7++XSiXamainC0mhUNjf3w95cEc55j3YdycgIs+ZkEMJSCa8/9zY2MjlcrQzoJJsb29HdeuBEyEdLPFq2zbNm3O5HInKVoiiaBgGyc/gnbRfVVU+qQVHB01QcrmcKIqmaWqapiiKLMtkLRAEwbZtVVVpiqlpmmVZiqLous5aGxv4uW2nFN4K0KpK9IIkSa4LcluIZVk0OWubTqqQpmmKokhXUxQln8/TAeEbQhiKxSLZEgRBIKMLZbVvobiexbZtXdcpDaIo5nK5trfzbW6CICiKQjsjfDqqQpRy27bJsuh9ruBqKYqibdu5XK5VtdQ0zTAM27YZY7Isy7LMZ96WZWmaFjJnYsRbrN70+2YmP7dtLpHhUBRFugiZJbxl4Vsbvbf2TaFhGL61MWQKfXOmo6EEJArLsnj/Kcuyc4DQNI0O4D2bYRiGYUiSxA+zLItqLFVFOpIOo2ocbD8bPBHSSqN5rWJbW1uFQoHr3ABUVSWZ2XQIUu9OPiOPXZCODpTzZOBxFg1t7O/vO2eZuVzOWy7O0qeyo+2trS1FUYJv7aoAvvWkd1z1U1VVMplsb2+TvSf4RF4h+aPxb+mA8A0hZGqpOGjWGFwo3mcJn4ZSqbSxsVEqlVRV5flApi9VVRVFoSlptE+Xy+W4vYoXuu9zNZ+vls6q5dxu+lVLb+Xxdl++XwXTN6tYcLHy9HszM3wuOTMhoI61qo3eW/um0JszHZWjb86EGUpAAmnVUrgNe3t7m7sa+CnOj1TQTU/NaTabpVIpuDMfOBHSgVVMkiSahxmGUSwWW7l7CS5mA3ZalpXP50VRVBQFgRf9gRsheFSHc5bgCrkgY0nA1UzT5EYm54SmFd5a4VtPesQ16VFVVdM0et5g64irQtLEnT+Ubdu03VFDCANd1pn5rQol/LMEw0uNWy/IalIoFKJ9OrKv8O1Wz+WtlqZpUnH4XrNtsFcvaJrmzVvfnVERslhdmcm6zSUyJ7QqC29t9L11SHovxzBDCRggeGwfGbeCD+a1kcze3HAVJipxsERISynmbai8XyYXQNtL53I5bwt07ky+42AoIc9CsVikEVeSpGKx2J21n+y9tG3bdpie0VsrfOtJhJBxmznURqsjXRVSURRN07gWMQxjbW2Ndd4QuqBVoYR/Fi+CINAFSWW6mh4fa6N9Otu2eadJrs9Wlc1VLUVRlCSp6/6BOm7nRnh4Nebiu9XOqPAWq2/6XZnJus0lukhHDd9765A53GM5Em2HEpBAJEnSNI1XMOe8vTtM0+RzFfJrt2WARMjElStXfL8QBOHatWuNRkPTtF/96lepVOqDDz6oVqu0R1GUpaUl3xMpYqDRaPC5taIo3p00D97c3LQsq8cSAuGpVqvVapVEBhVrKpWyLMswDFfJ5vN50zTL5TIX5fl8nqJweKkJgmCaJk18qW2kUinfgapVBXDVk6N45KtXr9K7M9euXZMkKZvN+h5GKXRWyFQqRY9POXPp0iXKmZANISSappmmeeHCBV3Xs9ksZea5c+d8C8X3WWimqOt6tVpt+3SyLC8tLem6btt2tVqlnRSBkUqlzp07F+3TbW5ulsvl9fV1Kl+aB3ufy1staea6vr7eaDR0XS+Xy1Qo3mpJsWK0h6a8jLFyuby5uUl1dXNz89KlS8yvAvumma5P/+nEVjujwlusvul3ZebS0lL4XOLZTuFcsiz7Nnzf2ihJkvfWvilkntoYPoVeQg4lR2oiBV1Dg8vVq1cZY5qmpVKpbDZLxVetVkmoGYZx7tw5QRC8bdM0TVIg/MhcLre+vs4Yo/ZOFdX31gMpQgKcl/v7+y7frXcPGA56Kdm2MVix08vT+Z7bn4YQ8taRJybCC/qG8oS/fo/VsusXsnzP7eWCbfE+qfd2reKiwufSxsaG61XTkOf63to3Q2JsLyCZeGtdcq6WHPAblACAI8H5OmTcaRl4YsxMlCMARw2kGAAAAABAbOCHjwAAAAAAYgNSDAAAAAAgNiDFAAAAAABiA1IMAAAAACA2IMUAAAAAAGIDUgwAAAAAIDb+Hx6CQrgj4nI9AAAAAElFTkSuQmCC", + "text/plain": [ + "Tree('S', [Tree('NP', [('US', 'NNP')]), ('unveils', 'VBZ'), Tree('NP', [('world', 'NN'), (\"'s\", 'POS'), ('most', 'RBS'), ('powerful', 'JJ'), ('supercomputer', 'NN')]), (',', ','), ('beats', 'VBZ'), Tree('NP', [('China', 'NNP')]), ('.', '.')])" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# parse our sample sentence\n", + "sentence_nlp = nlp(sentence)\n", + "tagged_sentence = [(word.text, word.tag_) for word in sentence_nlp]\n", + "tree = ntc.parse(tagged_sentence)\n", + "print(tree)\n", + "tree" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP He/PRP)\n", + " (VP reckons/VBZ)\n", + " (NP the/DT current/JJ account/NN deficit/NN)\n", + " (VP will/MD narrow/VB)\n", + " (PP to/TO)\n", + " (NP only/RB #/# 1.8/CD billion/CD)\n", + " (PP in/IN)\n", + " (NP September/NNP)\n", + " ./.)\n" + ] + } + ], + "source": [ + "from nltk.corpus import conll2000\n", + "wsj_data = conll2000.chunked_sents()\n", + "train_wsj_data = wsj_data[:10000]\n", + "test_wsj_data = wsj_data[10000:]\n", + "# look at a sample sentence in the corpus\n", + "print(train_wsj_data[10])" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ChunkParse score:\n", + " IOB Accuracy: 89.1%%\n", + " Precision: 80.3%%\n", + " Recall: 86.1%%\n", + " F-Measure: 83.1%%\n" + ] + } + ], + "source": [ + "# train the shallow parser\n", + "tc = NGramTagChunker(train_wsj_data)\n", + "\n", + "# test performance on the test data\n", + "print(tc.evaluate(test_wsj_data))" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP US/NNP)\n", + " (VP unveils/VBZ)\n", + " (NP world/NN)\n", + " (NP 's/POS most/RBS powerful/JJ supercomputer/NN)\n", + " ,/,\n", + " (VP beats/VBZ)\n", + " (NP China/NNP)\n", + " ./.)\n" + ] + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('S', [Tree('NP', [('US', 'NNP')]), Tree('VP', [('unveils', 'VBZ')]), Tree('NP', [('world', 'NN')]), Tree('NP', [(\"'s\", 'POS'), ('most', 'RBS'), ('powerful', 'JJ'), ('supercomputer', 'NN')]), (',', ','), Tree('VP', [('beats', 'VBZ')]), Tree('NP', [('China', 'NNP')]), ('.', '.')])" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# parse our sample sentence\n", + "tree = tc.parse(tagged_sentence)\n", + "print(tree)\n", + "tree" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Dependency Parsing" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[]<---US[nsubj]--->[]\n", + "--------\n", + "['US']<---unveils[ROOT]--->['supercomputer', ',', 'beats', '.']\n", + "--------\n", + "[]<---world[poss]--->[\"'s\"]\n", + "--------\n", + "[]<---'s[case]--->[]\n", + "--------\n", + "[]<---most[advmod]--->[]\n", + "--------\n", + "['most']<---powerful[amod]--->[]\n", + "--------\n", + "['world', 'powerful']<---supercomputer[dobj]--->[]\n", + "--------\n", + "[]<---,[punct]--->[]\n", + "--------\n", + "[]<---beats[conj]--->['China']\n", + "--------\n", + "[]<---China[dobj]--->[]\n", + "--------\n", + "[]<---.[punct]--->[]\n", + "--------\n" + ] + } + ], + "source": [ + "dependency_pattern = '{left}<---{word}[{w_type}]--->{right}\\n--------'\n", + "for token in sentence_nlp:\n", + " print(dependency_pattern.format(word=token.orth_, \n", + " w_type=token.dep_,\n", + " left=[t.orth_ \n", + " for t \n", + " in token.lefts],\n", + " right=[t.orth_ \n", + " for t \n", + " in token.rights]))" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Program Files\\Anaconda3\\lib\\runpy.py:184: DeprecationWarning: Positional arguments to Doc.merge are deprecated. Instead, use the keyword arguments, for example tag=, lemma= or ent_type=.\n", + " \"__main__\", mod_spec)\n", + "C:\\Program Files\\Anaconda3\\lib\\runpy.py:184: DeprecationWarning: Positional arguments to Doc.merge are deprecated. Instead, use the keyword arguments, for example tag=, lemma= or ent_type=.\n", + " \"__main__\", mod_spec)\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "\n", + " US\n", + " PROPN\n", + "\n", + "\n", + "\n", + " unveils\n", + " VERB\n", + "\n", + "\n", + "\n", + " world\n", + " NOUN\n", + "\n", + "\n", + "\n", + " 's\n", + " PART\n", + "\n", + "\n", + "\n", + " most\n", + " ADV\n", + "\n", + "\n", + "\n", + " powerful\n", + " ADJ\n", + "\n", + "\n", + "\n", + " supercomputer,\n", + " NOUN\n", + "\n", + "\n", + "\n", + " beats\n", + " VERB\n", + "\n", + "\n", + "\n", + " China.\n", + " PROPN\n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " poss\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " case\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " advmod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " amod\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " dobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " conj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " dobj\n", + " \n", + " \n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from spacy import displacy\n", + "\n", + "displacy.render(sentence_nlp, jupyter=True, \n", + " options={'distance': 110,\n", + " 'arrow_stroke': 2,\n", + " 'arrow_width': 8})" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "G\n", + "\n", + "\n", + "0\n", + "0 (None)\n", + "\n", + "\n", + "9\n", + "9 (beats)\n", + "\n", + "\n", + "0->9\n", + "\n", + "\n", + "root\n", + "\n", + "\n", + "2\n", + "2 (unveils)\n", + "\n", + "\n", + "9->2\n", + "\n", + "\n", + "ccomp\n", + "\n", + "\n", + "10\n", + "10 (China)\n", + "\n", + "\n", + "9->10\n", + "\n", + "\n", + "nsubj\n", + "\n", + "\n", + "1\n", + "1 (US)\n", + "\n", + "\n", + "2->1\n", + "\n", + "\n", + "nsubj\n", + "\n", + "\n", + "7\n", + "7 (supercomputer)\n", + "\n", + "\n", + "2->7\n", + "\n", + "\n", + "dobj\n", + "\n", + "\n", + "3\n", + "3 (world)\n", + "\n", + "\n", + "7->3\n", + "\n", + "\n", + "nmod:poss\n", + "\n", + "\n", + "6\n", + "6 (powerful)\n", + "\n", + "\n", + "7->6\n", + "\n", + "\n", + "amod\n", + "\n", + "\n", + "4\n", + "4 ('s)\n", + "\n", + "\n", + "3->4\n", + "\n", + "\n", + "case\n", + "\n", + "\n", + "5\n", + "5 (most)\n", + "\n", + "\n", + "6->5\n", + "\n", + "\n", + "advmod\n", + "\n", + "\n", + "\n" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.parse.stanford import StanfordDependencyParser\n", + "sdp = StanfordDependencyParser(path_to_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser.jar',\n", + " path_to_models_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser-3.5.2-models.jar') \n", + "\n", + "# perform dependency parsing\n", + "result = list(sdp.raw_parse(sentence))[0] \n", + "\n", + "# generate annotated dependency parse tree\n", + "result" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(('beats', 'VBZ'), 'ccomp', ('unveils', 'VBZ')),\n", + " (('unveils', 'VBZ'), 'nsubj', ('US', 'NNP')),\n", + " (('unveils', 'VBZ'), 'dobj', ('supercomputer', 'NN')),\n", + " (('supercomputer', 'NN'), 'nmod:poss', ('world', 'NN')),\n", + " (('world', 'NN'), 'case', (\"'s\", 'POS')),\n", + " (('supercomputer', 'NN'), 'amod', ('powerful', 'JJ')),\n", + " (('powerful', 'JJ'), 'advmod', ('most', 'RBS')),\n", + " (('beats', 'VBZ'), 'nsubj', ('China', 'NNP'))]" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# generate dependency triples\n", + "[item for item in result.triples()]" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(beats (unveils US (supercomputer (world 's) (powerful most))) China)\n" + ] + } + ], + "source": [ + "# print simple dependency parse tree\n", + "dep_tree = result.tree()\n", + "print(dep_tree)" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('beats', [Tree('unveils', ['US', Tree('supercomputer', [Tree('world', [\"'s\"]), Tree('powerful', ['most'])])]), 'China'])" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# visualize simple dependency parse tree\n", + "dep_tree" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Constituency Parsing" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(ROOT\n", + " (SINV\n", + " (S\n", + " (NP (NNP US))\n", + " (VP\n", + " (VBZ unveils)\n", + " (NP\n", + " (NP (NN world) (POS 's))\n", + " (ADJP (RBS most) (JJ powerful))\n", + " (NN supercomputer))))\n", + " (, ,)\n", + " (VP (VBZ beats))\n", + " (NP (NNP China))\n", + " (. .)))\n" + ] + } + ], + "source": [ + "# set java path\n", + "import os\n", + "java_path = r'C:\\Program Files\\Java\\jdk1.8.0_102\\bin\\java.exe'\n", + "os.environ['JAVAHOME'] = java_path\n", + "\n", + "# create parser object\n", + "from nltk.parse.stanford import StanfordParser\n", + "scp = StanfordParser(path_to_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser.jar',\n", + " path_to_models_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser-3.5.2-models.jar')\n", + "\n", + "# get parse tree \n", + "result = list(scp.raw_parse(sentence))[0]\n", + "# print the constituency parse tree\n", + "print(result)" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('ROOT', [Tree('SINV', [Tree('S', [Tree('NP', [Tree('NNP', ['US'])]), Tree('VP', [Tree('VBZ', ['unveils']), Tree('NP', [Tree('NP', [Tree('NN', ['world']), Tree('POS', [\"'s\"])]), Tree('ADJP', [Tree('RBS', ['most']), Tree('JJ', ['powerful'])]), Tree('NN', ['supercomputer'])])])]), Tree(',', [',']), Tree('VP', [Tree('VBZ', ['beats'])]), Tree('NP', [Tree('NNP', ['China'])]), Tree('.', ['.'])])])" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# visualize the parse tree\n", + "from IPython.display import display\n", + "display(result)" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP-SBJ (NNP Mr.) (NNP Vinken))\n", + " (VP\n", + " (VBZ is)\n", + " (NP-PRD\n", + " (NP (NN chairman))\n", + " (PP\n", + " (IN of)\n", + " (NP\n", + " (NP (NNP Elsevier) (NNP N.V.))\n", + " (, ,)\n", + " (NP (DT the) (NNP Dutch) (VBG publishing) (NN group))))))\n", + " (. .))\n" + ] + } + ], + "source": [ + "import nltk\n", + "from nltk.grammar import Nonterminal\n", + "from nltk.corpus import treebank\n", + "# load and view training data\n", + "training_set = treebank.parsed_sents()\n", + "print(training_set[1]) " + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[VP -> VB NP-2 PP-CLR ADVP-MNR,\n", + " NNS -> 'foods',\n", + " NNP -> 'Joanne',\n", + " JJ -> 'state-owned',\n", + " VP -> VBN PP-LOC,\n", + " NN -> 'turmoil',\n", + " SBAR -> WHNP-240 S,\n", + " QP -> DT VBN CD TO CD,\n", + " NN -> 'cultivation',\n", + " NNP -> 'Graham']" + ] + }, + "execution_count": 86, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# extract the productions for all annotated training sentences\n", + "treebank_productions = list(\n", + " set(production \n", + " for sent in training_set \n", + " for production in sent.productions()\n", + " )\n", + " )\n", + "# view some production rules\n", + "treebank_productions[0:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [], + "source": [ + "# add productions for each word, POS tag\n", + "for word, tag in treebank.tagged_words():\n", + " t = nltk.Tree.fromstring(\"(\"+ tag + \" \" + word +\")\")\n", + " for production in t.productions():\n", + " treebank_productions.append(production)\n", + "\n", + "# build the PCFG based grammar \n", + "treebank_grammar = nltk.grammar.induce_pcfg(Nonterminal('S'), \n", + " treebank_productions)" + ] + }, + { + "cell_type": "code", + "execution_count": 87, + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "Grammar does not cover some of the input words: \"'unveils', 'beats'\".", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 16\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m 17\u001b[0m \u001b[1;31m# get parse tree for sample sentence\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m---> 18\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mviterbi_parser\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mparse\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mtokens\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;32mC:\\Program Files\\Anaconda3\\lib\\site-packages\\nltk\\parse\\viterbi.py\u001b[0m in \u001b[0;36mparse\u001b[0;34m(self, tokens)\u001b[0m\n\u001b[1;32m 110\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m 111\u001b[0m \u001b[0mtokens\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mlist\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mtokens\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m--> 112\u001b[0;31m \u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0m_grammar\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mcheck_coverage\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mtokens\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 113\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m 114\u001b[0m \u001b[1;31m# The most likely constituent table. This table specifies the\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[0;32mC:\\Program Files\\Anaconda3\\lib\\site-packages\\nltk\\grammar.py\u001b[0m in \u001b[0;36mcheck_coverage\u001b[0;34m(self, tokens)\u001b[0m\n\u001b[1;32m 646\u001b[0m \u001b[0mmissing\u001b[0m \u001b[1;33m=\u001b[0m \u001b[1;34m', '\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mjoin\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'%r'\u001b[0m \u001b[1;33m%\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mw\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0mw\u001b[0m \u001b[1;32min\u001b[0m \u001b[0mmissing\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m 647\u001b[0m raise ValueError(\"Grammar does not cover some of the \"\n\u001b[0;32m--> 648\u001b[0;31m \"input words: %r.\" % missing)\n\u001b[0m\u001b[1;32m 649\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m 650\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0m_calculate_grammar_forms\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[0;31mValueError\u001b[0m: Grammar does not cover some of the input words: \"'unveils', 'beats'\"." + ] + } + ], + "source": [ + "# build the parser\n", + "viterbi_parser = nltk.ViterbiParser(treebank_grammar)\n", + "\n", + "# get sample sentence tokens\n", + "tokens = nltk.word_tokenize(sentence)\n", + "\n", + "# get parse tree for sample sentence\n", + "result = list(viterbi_parser.parse(tokens))" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('US', 'NNP'), ('unveils', 'JJ'), ('world', 'NN'), (\"'s\", 'POS'), ('most', 'RBS'), ('powerful', 'JJ'), ('supercomputer', 'NN'), (',', ','), ('beats', 'VBZ'), ('China', 'NNP'), ('.', '.')]\n" + ] + } + ], + "source": [ + "# get tokens and their POS tags and check it\n", + "tagged_sent = nltk.pos_tag(nltk.word_tokenize(sentence))\n", + "print(tagged_sent)" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " (NP-SBJ-2\n", + " (NP (NNP US))\n", + " (NP\n", + " (NP (JJ unveils) (NN world) (POS 's))\n", + " (JJS most)\n", + " (JJ powerful)\n", + " (NN supercomputer)))\n", + " (, ,)\n", + " (VP (VBZ beats) (NP-TTL (NNP China)))\n", + " (. .)) (p=5.08954e-43)\n" + ] + } + ], + "source": [ + "# extend productions for sample sentence tokens\n", + "for word, tag in tagged_sent:\n", + " t = nltk.Tree.fromstring(\"(\"+ tag + \" \" + word +\")\")\n", + " for production in t.productions():\n", + " treebank_productions.append(production)\n", + "\n", + "# rebuild grammar\n", + "treebank_grammar = nltk.grammar.induce_pcfg(Nonterminal('S'), \n", + " treebank_productions) \n", + "# rebuild parser\n", + "viterbi_parser = nltk.ViterbiParser(treebank_grammar)\n", + "# get parse tree for sample sentence\n", + "result = list(viterbi_parser.parse(tokens))[0]\n", + "\n", + "# print parse tree\n", + "print(result)" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "ProbabilisticTree('S', [ProbabilisticTree('NP-SBJ-2', [ProbabilisticTree('NP', [ProbabilisticTree('NNP', ['US']) (p=0.00025201612903225806)]) (p=1.6913834163238795e-07), ProbabilisticTree('NP', [ProbabilisticTree('NP', [ProbabilisticTree('JJ', ['unveils']) (p=0.00013171759747102212), ProbabilisticTree('NN', ['world']) (p=0.0015174506828528073), ProbabilisticTree('POS', [\"'s\"]) (p=0.9226118500604595)]) (p=1.2376309059716129e-10), ProbabilisticTree('JJS', ['most']) (p=0.2037914691943128), ProbabilisticTree('JJ', ['powerful']) (p=0.0005268703898840885), ProbabilisticTree('NN', ['supercomputer']) (p=0.00044258978249873547)]) (p=3.947262906727572e-21)]) (p=1.0944811508703948e-29), ProbabilisticTree(',', [',']) (p=0.9995909183882185), ProbabilisticTree('VP', [ProbabilisticTree('VBZ', ['beats']) (p=0.0004088307440719542), ProbabilisticTree('NP-TTL', [ProbabilisticTree('NNP', ['China']) (p=0.0022681451612903227)]) (p=0.00018901209677419354)]) (p=3.6364214664844124e-11), ProbabilisticTree('.', ['.']) (p=0.9876224858174316)]) (p=5.089539274473015e-43)" + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# visualize parse tree\n", + "result " + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03c - BONUS - Text Parsing with Stanford CoreNLP.ipynb b/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03c - BONUS - Text Parsing with Stanford CoreNLP.ipynb new file mode 100644 index 0000000..4c12e88 --- /dev/null +++ b/New-Second-Edition/Ch03 - Processing and Understanding Text/Ch03c - BONUS - Text Parsing with Stanford CoreNLP.ipynb @@ -0,0 +1,1394 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Constituency Parsing with Stanford NLP\n", + "\n", + "Source: https://towardsdatascience.com/a-practitioners-guide-to-natural-language-processing-part-i-processing-understanding-text-9f4abfd13e72\n", + "\n", + "Constituent-based grammars are used to analyze and determine the constituents of a sentence. These grammars can be used to model or represent the internal structure of sentences in terms of a hierarchically ordered structure of their constituents. Each and every word usually belongs to a specific lexical category in the case and forms the head word of different phrases. These phrases are formed based on rules called phrase structure rules.\n", + "\n", + "___Phrase structure rules___ form the core of constituency grammars, because they talk about syntax and rules that govern the hierarchy and ordering of the various constituents in the sentences. These rules cater to two things primarily.\n", + "\n", + "- They determine what words are used to construct the phrases or constituents.\n", + "- They determine how we need to order these constituents together.\n", + "\n", + "The generic representation of a phrase structure rule is ___S → AB___ , which depicts that the structure ___S___ consists of constituents ___A___ and ___B___ , and the ordering is ___A___ followed by ___B___. While there are several rules (refer to Chapter 1, Page 19: Text Analytics with Python, if you want to dive deeper), the most important rule describes how to divide a sentence or a clause. \n", + "\n", + "The phrase structure rule denotes a binary division for a sentence or a clause as ___S → NP VP___ where ___S___ is the sentence or clause, and it is divided into the subject, denoted by the noun phrase ___(NP)___ and the predicate, denoted by the verb phrase ___(VP)___.\n", + "\n", + "A constituency parser can be built based on such grammars/rules, which are usually collectively available as context-free grammar (CFG) or phrase-structured grammar. The parser will process input sentences according to these rules, and help in building a parse tree.\n", + "\n", + "![](constituency_example.png)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We will be using nltk and the StanfordParser here to generate parse trees.\n", + "\n", + "__Prerequisites:__ Download the official Stanford Parser from [here](http://nlp.stanford.edu/software/stanford-parser-full-2015-04-20.zip), which seems to work quite well. You can try out a later version by going to [this website](http://nlp.stanford.edu/software/lex-parser.shtml#Download) and checking the Release History section. After downloading, unzip it to a known location in your filesystem. Once done, you are now ready to use the parser from nltk , which we will be exploring soon.\n", + "\n", + "The Stanford parser generally uses a PCFG (probabilistic context-free grammar) parser. A PCFG is a context-free grammar that associates a probability with each of its production rules. The probability of a parse tree generated from a PCFG is simply the production of the individual probabilities of the productions used to generate it.\n", + "\n", + "You might need to [download](https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) and install Java in case you don't have it already." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# set java path\n", + "import os\n", + "java_path = r'C:\\Program Files\\Java\\jre1.8.0_192\\bin\\java.exe'\n", + "os.environ['JAVAHOME'] = java_path" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:4: DeprecationWarning: The StanfordParser will be deprecated\n", + "Please use \u001b[91mnltk.parse.corenlp.CoreNLPParser\u001b[0m instead.\n", + " after removing the cwd from sys.path.\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.parse.stanford import StanfordParser\n", + "\n", + "scp = StanfordParser(path_to_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser.jar',\n", + " path_to_models_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser-3.5.2-models.jar')\n", + "scp" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'This NLP Workshop is being organized by Analytics Vidhya as part of the DataHack Summit 2018'" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentence = 'This NLP Workshop is being organized by Analytics Vidhya as part of the DataHack Summit 2018'\n", + "sentence" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(ROOT\n", + " (S\n", + " (NP (DT This) (NNP NLP) (NNP Workshop))\n", + " (VP\n", + " (VBZ is)\n", + " (VP\n", + " (VBG being)\n", + " (VP\n", + " (VBN organized)\n", + " (PP\n", + " (IN by)\n", + " (NP\n", + " (NP (NNP Analytics) (NNP Vidhya))\n", + " (PP\n", + " (IN as)\n", + " (NP\n", + " (NP (NN part))\n", + " (PP\n", + " (IN of)\n", + " (NP\n", + " (DT the)\n", + " (NNP DataHack)\n", + " (NNP Summit)\n", + " (NNP 2018))))))))))))\n" + ] + } + ], + "source": [ + "result = list(scp.raw_parse(sentence))[0]\n", + "print(result)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('ROOT', [Tree('S', [Tree('NP', [Tree('DT', ['This']), Tree('NNP', ['NLP']), Tree('NNP', ['Workshop'])]), Tree('VP', [Tree('VBZ', ['is']), Tree('VP', [Tree('VBG', ['being']), Tree('VP', [Tree('VBN', ['organized']), Tree('PP', [Tree('IN', ['by']), Tree('NP', [Tree('NP', [Tree('NNP', ['Analytics']), Tree('NNP', ['Vidhya'])]), Tree('PP', [Tree('IN', ['as']), Tree('NP', [Tree('NP', [Tree('NN', ['part'])]), Tree('PP', [Tree('IN', ['of']), Tree('NP', [Tree('DT', ['the']), Tree('NNP', ['DataHack']), Tree('NNP', ['Summit']), Tree('NNP', ['2018'])])])])])])])])])])])])" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "os.environ['PATH'] = os.environ['PATH']+r';C:\\Program Files\\gs\\gs9.25\\bin'\n", + "result" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ROOT \n", + " | \n", + " S \n", + " _____|___________ \n", + " | VP \n", + " | ____|_______ \n", + " | | VP \n", + " | | _______|______ \n", + " | | | VP \n", + " | | | ______|______ \n", + " | | | | PP \n", + " | | | | ______|___________ \n", + " | | | | | NP \n", + " | | | | | ____|_________ \n", + " | | | | | | PP \n", + " | | | | | | ___|____ \n", + " | | | | | | | NP \n", + " | | | | | | | ____|___ \n", + " | | | | | | | | PP \n", + " | | | | | | | | ___|_____ \n", + " NP | | | | NP | NP | NP \n", + " ____|_____ | | | | ______|____ | | | _____|_____________ \n", + " DT NNP NNP VBZ VBG VBN IN NNP NNP IN NN IN DT NNP NNP NNP \n", + " | | | | | | | | | | | | | | | | \n", + "This NLP Workshop is being organized by Analytics Vidhya as part of the DataHack Summit 2018\n", + "\n" + ] + } + ], + "source": [ + "result.pretty_print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can see the nested hierarchical structure of the constituents in the preceding output as compared to the flat structure in shallow parsing. Refer to the [Penn Treebank reference](https://web.archive.org/web/20130517134339/http://bulba.sdsu.edu/jeanette/thesis/PennTags.html) as needed to lookup other tags." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Constituency Parsing with Stanford CoreNLP" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You may have seen in the above messages that they are deprecating the old Stanford Parsers in favor of the more active Stanford Core NLP Project. It might even get removed after `nltk` version `3.4` so best to stay updated.\n", + "\n", + "Details: https://github.com/nltk/nltk/issues/1839\n", + "\n", + "Step by Step Tutorial here: https://github.com/nltk/nltk/wiki/Stanford-CoreNLP-API-in-NLTK\n", + "\n", + "Sadly a lot of things have changed in the process so we need to do some extra effort to make it work!\n", + "\n", + "Get CoreNLP from [here](https://stanfordnlp.github.io/CoreNLP/)\n", + "\n", + "After you download, go to the folder and spin up a terminal and start the Core NLP Server locally\n", + "\n", + "```\n", + "E:\\> java -mx4g -cp \"*\" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -preload tokenize,ssplit,pos,lemma,ner,parse,depparse -status_port 9000 -port 9000 -timeout 15000\n", + "```\n", + "\n", + "If it runs successfully you should see the following messages on the terminal\n", + "\n", + "```\n", + "E:\\stanford\\stanford-corenlp-full-2018-02-27>java -mx4g -cp \"*\" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -preload tokenize,ssplit,pos,lemma,ner,parse,depparse -status_port 9000 -port 9000 -timeout 15000\n", + "[main] INFO CoreNLP - --- StanfordCoreNLPServer#main() called ---\n", + "[main] INFO CoreNLP - setting default constituency parser\n", + "[main] INFO CoreNLP - warning: cannot find edu/stanford/nlp/models/srparser/englishSR.ser.gz\n", + "[main] INFO CoreNLP - using: edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz instead\n", + "[main] INFO CoreNLP - to use shift reduce parser download English models jar from:\n", + "[main] INFO CoreNLP - http://stanfordnlp.github.io/CoreNLP/download.html\n", + "[main] INFO CoreNLP - Threads: 4\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator tokenize\n", + "[main] INFO edu.stanford.nlp.pipeline.TokenizerAnnotator - No tokenizer type provided. Defaulting to PTBTokenizer.\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator ssplit\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator pos\n", + "[main] INFO edu.stanford.nlp.tagger.maxent.MaxentTagger - Loading POS tagger from edu/stanford/nlp/models/pos-tagger/english-left3words/english-left3words-distsim.tagger ... done [1.4 sec].\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator lemma\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator ner\n", + "[main] INFO edu.stanford.nlp.ie.AbstractSequenceClassifier - Loading classifier from edu/stanford/nlp/models/ner/english.all.3class.distsim.crf.ser.gz ... done [1.9 sec].\n", + "[main] INFO edu.stanford.nlp.ie.AbstractSequenceClassifier - Loading classifier from edu/stanford/nlp/models/ner/english.muc.7class.distsim.crf.ser.gz ... done [2.0 sec].\n", + "[main] INFO edu.stanford.nlp.ie.AbstractSequenceClassifier - Loading classifier from edu/stanford/nlp/models/ner/english.conll.4class.distsim.crf.ser.gz ... done [0.8 sec].\n", + "[main] INFO edu.stanford.nlp.time.JollyDayHolidays - Initializing JollyDayHoliday for SUTime from classpath edu/stanford/nlp/models/sutime/jollyday/Holidays_sutime.xml as sutime.binder.1.\n", + "[main] INFO edu.stanford.nlp.time.TimeExpressionExtractorImpl - Using following SUTime rules: edu/stanford/nlp/models/sutime/defs.sutime.txt,edu/stanford/nlp/models/sutime/english.sutime.txt,edu/stanford/nlp/models/sutime/english.holidays.sutime.txt\n", + "[main] INFO edu.stanford.nlp.pipeline.TokensRegexNERAnnotator - TokensRegexNERAnnotator ner.fine.regexner: Read 580641 unique entries out of 581790 from edu/stanford/nlp/models/kbp/regexner_caseless.tab, 0 TokensRegex patterns.\n", + "[main] INFO edu.stanford.nlp.pipeline.TokensRegexNERAnnotator - TokensRegexNERAnnotator ner.fine.regexner: Read 4857 unique entries out of 4868 from edu/stanford/nlp/models/kbp/regexner_cased.tab, 0 TokensRegex patterns.\n", + "[main] INFO edu.stanford.nlp.pipeline.TokensRegexNERAnnotator - TokensRegexNERAnnotator ner.fine.regexner: Read 585498 unique entries from 2 files\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator parse\n", + "[main] INFO edu.stanford.nlp.parser.common.ParserGrammar - Loading parser from serialized file edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz ... done [4.6 sec].\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator depparse\n", + "[main] INFO edu.stanford.nlp.parser.nndep.DependencyParser - Loading depparse model: edu/stanford/nlp/models/parser/nndep/english_UD.gz ...\n", + "[main] INFO edu.stanford.nlp.parser.nndep.Classifier - PreComputed 99996, Elapsed Time: 22.43 (s)\n", + "[main] INFO edu.stanford.nlp.parser.nndep.DependencyParser - Initializing dependency parser ... done [24.4 sec].\n", + "[main] INFO CoreNLP - Starting server...\n", + "[main] INFO CoreNLP - StanfordCoreNLPServer listening at /0:0:0:0:0:0:0:0:9000\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.parse import CoreNLPParser\n", + "\n", + "cnp = CoreNLPParser()\n", + "cnp" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(ROOT\n", + " (S\n", + " (NP (DT This) (NNP NLP) (NNP Workshop))\n", + " (VP\n", + " (VBZ is)\n", + " (VP\n", + " (VBG being)\n", + " (VP\n", + " (VBN organized)\n", + " (PP\n", + " (IN by)\n", + " (NP\n", + " (NP (NNP Analytics) (NNP Vidhya))\n", + " (PP\n", + " (IN as)\n", + " (NP\n", + " (NP (NN part))\n", + " (PP\n", + " (IN of)\n", + " (NP\n", + " (DT the)\n", + " (NNP DataHack)\n", + " (NNP Summit)\n", + " (CD 2018))))))))))))\n" + ] + } + ], + "source": [ + "result = list(cnp.raw_parse(sentence))[0]\n", + "print(result)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('ROOT', [Tree('S', [Tree('NP', [Tree('DT', ['This']), Tree('NNP', ['NLP']), Tree('NNP', ['Workshop'])]), Tree('VP', [Tree('VBZ', ['is']), Tree('VP', [Tree('VBG', ['being']), Tree('VP', [Tree('VBN', ['organized']), Tree('PP', [Tree('IN', ['by']), Tree('NP', [Tree('NP', [Tree('NNP', ['Analytics']), Tree('NNP', ['Vidhya'])]), Tree('PP', [Tree('IN', ['as']), Tree('NP', [Tree('NP', [Tree('NN', ['part'])]), Tree('PP', [Tree('IN', ['of']), Tree('NP', [Tree('DT', ['the']), Tree('NNP', ['DataHack']), Tree('NNP', ['Summit']), Tree('CD', ['2018'])])])])])])])])])])])])" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "result" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " ROOT \n", + " | \n", + " S \n", + " _____|___________ \n", + " | VP \n", + " | ____|_______ \n", + " | | VP \n", + " | | _______|______ \n", + " | | | VP \n", + " | | | ______|______ \n", + " | | | | PP \n", + " | | | | ______|___________ \n", + " | | | | | NP \n", + " | | | | | ____|_________ \n", + " | | | | | | PP \n", + " | | | | | | ___|____ \n", + " | | | | | | | NP \n", + " | | | | | | | ____|___ \n", + " | | | | | | | | PP \n", + " | | | | | | | | ___|_____ \n", + " NP | | | | NP | NP | NP \n", + " ____|_____ | | | | ______|____ | | | _____|_____________ \n", + " DT NNP NNP VBZ VBG VBN IN NNP NNP IN NN IN DT NNP NNP CD \n", + " | | | | | | | | | | | | | | | | \n", + "This NLP Workshop is being organized by Analytics Vidhya as part of the DataHack Summit 2018\n", + "\n" + ] + } + ], + "source": [ + "result.pretty_print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Dependency Parsing with Spacy\n", + "\n", + "In dependency parsing, we try to use dependency-based grammars to analyze and infer both structure and semantic dependencies and relationships between tokens in a sentence. The basic principle behind a dependency grammar is that in any sentence in the language, all words except one, have some relationship or dependency on other words in the sentence. The word that has no dependency is called the root of the sentence. The verb is taken as the root of the sentence in most cases. All the other words are directly or indirectly linked to the root verb using links , which are the dependencies.\n", + "\n", + "Considering our sentence ___“The brown fox is quick and he is jumping over the lazy dog”___ , if we wanted to draw the dependency syntax tree for this, we would have the following structure.\n", + "\n", + "![](dependency_example.png)\n", + "\n", + "These dependency relationships each have their own meaning and are a part of a list of universal dependency types. This is discussed in an original paper, [_Universal Stanford Dependencies: A Cross-Linguistic Typology by de Marneffe et al, 2014_](https://nlp.stanford.edu/pubs/USD_LREC14_paper_camera_ready.pdf). You can check out the exhaustive list of dependency types and their meanings [here](http://universaldependencies.org/u/dep/index.html).\n", + "\n", + "If we observe some of these dependencies, it is not too hard to understand them.\n", + "\n", + "- The dependency tag det is pretty intuitive — it denotes the determiner relationship between a nominal head and the determiner. Usually, the word with POS tag DET will also have the det dependency tag relation. Examples include fox → the and dog → the.\n", + "- The dependency tag amod stands for adjectival modifier and stands for any adjective that modifies the meaning of a noun. Examples include fox → brown and dog → lazy.\n", + "- The dependency tag nsubj stands for an entity that acts as a subject or agent in a clause. Examples include is → fox and jumping → he.\n", + "- The dependencies cc and conj have more to do with linkages related to words connected by coordinating conjunctions . Examples include is → and and is → jumping.\n", + "- The dependency tag aux indicates the auxiliary or secondary verb in the clause. Example: jumping → is.\n", + "- The dependency tag acomp stands for adjective complement and acts as the complement or object to a verb in the sentence. Example: is → quick\n", + "- The dependency tag prep denotes a prepositional modifier, which usually modifies the meaning of a noun, verb, adjective, or preposition. Usually, this representation is used for prepositions having a noun or noun phrase complement. Example: jumping → over.\n", + "- The dependency tag pobj is used to denote the object of a preposition . This is usually the head of a noun phrase following a preposition in the sentence. Example: over → dog.\n", + "\n", + "Spacy had two types of English dependency parsers based on what language models you use, you can find more details [here](https://spacy.io/api/annotation#section-dependency-parsing). Based on language models, you can use the Universal Dependencies Scheme or the CLEAR Style Dependency Scheme also available in NLP4J now." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[]<---This[det]--->[]\n", + "--------\n", + "[]<---NLP[compound]--->[]\n", + "--------\n", + "['This', 'NLP']<---Workshop[nsubjpass]--->[]\n", + "--------\n", + "[]<---is[aux]--->[]\n", + "--------\n", + "[]<---being[auxpass]--->[]\n", + "--------\n", + "['Workshop', 'is', 'being']<---organized[ROOT]--->['by', 'as']\n", + "--------\n", + "[]<---by[agent]--->['Vidhya']\n", + "--------\n", + "[]<---Analytics[compound]--->[]\n", + "--------\n", + "['Analytics']<---Vidhya[pobj]--->[]\n", + "--------\n", + "[]<---as[prep]--->['part']\n", + "--------\n", + "[]<---part[pobj]--->['of']\n", + "--------\n", + "[]<---of[prep]--->['Summit']\n", + "--------\n", + "[]<---the[det]--->[]\n", + "--------\n", + "[]<---DataHack[compound]--->[]\n", + "--------\n", + "['the', 'DataHack']<---Summit[pobj]--->['2018']\n", + "--------\n", + "[]<---2018[appos]--->[]\n", + "--------\n" + ] + } + ], + "source": [ + "import spacy\n", + "\n", + "nlp = spacy.load('en', parse=False, tag=False, entity=False)\n", + "dependency_pattern = '{left}<---{word}[{w_type}]--->{right}\\n--------'\n", + "sentence_nlp = nlp(sentence)\n", + "\n", + "for token in sentence_nlp:\n", + " print(dependency_pattern.format(word=token.orth_, \n", + " w_type=token.dep_,\n", + " left=[t.orth_ \n", + " for t \n", + " in token.lefts],\n", + " right=[t.orth_ \n", + " for t \n", + " in token.rights]))" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + " This\n", + " DET\n", + "\n", + "\n", + "\n", + " NLP\n", + " PROPN\n", + "\n", + "\n", + "\n", + " Workshop\n", + " PROPN\n", + "\n", + "\n", + "\n", + " is\n", + " VERB\n", + "\n", + "\n", + "\n", + " being\n", + " VERB\n", + "\n", + "\n", + "\n", + " organized\n", + " VERB\n", + "\n", + "\n", + "\n", + " by\n", + " ADP\n", + "\n", + "\n", + "\n", + " Analytics\n", + " PROPN\n", + "\n", + "\n", + "\n", + " Vidhya\n", + " PROPN\n", + "\n", + "\n", + "\n", + " as\n", + " ADP\n", + "\n", + "\n", + "\n", + " part\n", + " NOUN\n", + "\n", + "\n", + "\n", + " of\n", + " ADP\n", + "\n", + "\n", + "\n", + " the\n", + " DET\n", + "\n", + "\n", + "\n", + " DataHack\n", + " PROPN\n", + "\n", + "\n", + "\n", + " Summit\n", + " PROPN\n", + "\n", + "\n", + "\n", + " 2018\n", + " NUM\n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " compound\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " nsubjpass\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " aux\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " auxpass\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " agent\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " compound\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " prep\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " det\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " compound\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " pobj\n", + " \n", + " \n", + "\n", + "\n", + "\n", + " \n", + " \n", + " appos\n", + " \n", + " \n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from spacy import displacy\n", + "\n", + "displacy.render(sentence_nlp, jupyter=True, \n", + " options={'distance': 110,\n", + " 'arrow_stroke': 2,\n", + " 'arrow_width': 8})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Dependency Parsing with Stanford NLP" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Anaconda3\\lib\\site-packages\\ipykernel_launcher.py:5: DeprecationWarning: The StanfordDependencyParser will be deprecated\n", + "Please use nltk.parse.corenlp.CoreNLPDependencyParser instead.\n", + " \"\"\"\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.parse.stanford import StanfordDependencyParser\n", + "sdp = StanfordDependencyParser(path_to_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser.jar',\n", + " path_to_models_jar='E:/stanford/stanford-parser-full-2015-04-20/stanford-parser-3.5.2-models.jar')\n", + "\n", + "sdp" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "result = list(sdp.raw_parse(sentence))[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(organized\n", + " (Workshop This NLP)\n", + " is\n", + " being\n", + " (Vidhya by Analytics (part as (2018 of the DataHack Summit))))\n" + ] + } + ], + "source": [ + "# print the dependency tree\n", + "print(result.tree())" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('organized', [Tree('Workshop', ['This', 'NLP']), 'is', 'being', Tree('Vidhya', ['by', 'Analytics', Tree('part', ['as', Tree('2018', ['of', 'the', 'DataHack', 'Summit'])])])])" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "result.tree()" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "G\n", + "\n", + "\n", + "0\n", + "0 (None)\n", + "\n", + "\n", + "6\n", + "6 (organized)\n", + "\n", + "\n", + "0->6\n", + "\n", + "\n", + "root\n", + "\n", + "\n", + "3\n", + "3 (Workshop)\n", + "\n", + "\n", + "6->3\n", + "\n", + "\n", + "nsubjpass\n", + "\n", + "\n", + "4\n", + "4 (is)\n", + "\n", + "\n", + "6->4\n", + "\n", + "\n", + "aux\n", + "\n", + "\n", + "5\n", + "5 (being)\n", + "\n", + "\n", + "6->5\n", + "\n", + "\n", + "auxpass\n", + "\n", + "\n", + "9\n", + "9 (Vidhya)\n", + "\n", + "\n", + "6->9\n", + "\n", + "\n", + "nmod\n", + "\n", + "\n", + "1\n", + "1 (This)\n", + "\n", + "\n", + "2\n", + "2 (NLP)\n", + "\n", + "\n", + "3->1\n", + "\n", + "\n", + "det\n", + "\n", + "\n", + "3->2\n", + "\n", + "\n", + "compound\n", + "\n", + "\n", + "7\n", + "7 (by)\n", + "\n", + "\n", + "9->7\n", + "\n", + "\n", + "case\n", + "\n", + "\n", + "8\n", + "8 (Analytics)\n", + "\n", + "\n", + "9->8\n", + "\n", + "\n", + "compound\n", + "\n", + "\n", + "11\n", + "11 (part)\n", + "\n", + "\n", + "9->11\n", + "\n", + "\n", + "nmod\n", + "\n", + "\n", + "10\n", + "10 (as)\n", + "\n", + "\n", + "11->10\n", + "\n", + "\n", + "case\n", + "\n", + "\n", + "16\n", + "16 (2018)\n", + "\n", + "\n", + "11->16\n", + "\n", + "\n", + "nmod\n", + "\n", + "\n", + "12\n", + "12 (of)\n", + "\n", + "\n", + "16->12\n", + "\n", + "\n", + "case\n", + "\n", + "\n", + "13\n", + "13 (the)\n", + "\n", + "\n", + "16->13\n", + "\n", + "\n", + "det\n", + "\n", + "\n", + "14\n", + "14 (DataHack)\n", + "\n", + "\n", + "16->14\n", + "\n", + "\n", + "compound\n", + "\n", + "\n", + "15\n", + "15 (Summit)\n", + "\n", + "\n", + "16->15\n", + "\n", + "\n", + "compound\n", + "\n", + "\n", + "\n" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "result" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Dependency Parsing with Stanford Core NLP" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.parse.corenlp import CoreNLPDependencyParser\n", + "\n", + "dep_parser = CoreNLPDependencyParser()\n", + "dep_parser" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "result = list(dep_parser.raw_parse(sentence))[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(organized\n", + " (Workshop This NLP)\n", + " is\n", + " being\n", + " (Vidhya by Analytics)\n", + " (part as (Summit of the DataHack 2018)))\n" + ] + } + ], + "source": [ + "print(result.tree())" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "Tree('organized', [Tree('Workshop', ['This', 'NLP']), 'is', 'being', Tree('Vidhya', ['by', 'Analytics']), Tree('part', ['as', Tree('Summit', ['of', 'the', 'DataHack', '2018'])])])" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "result.tree()" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "G\n", + "\n", + "\n", + "0\n", + "0 (None)\n", + "\n", + "\n", + "6\n", + "6 (organized)\n", + "\n", + "\n", + "0->6\n", + "\n", + "\n", + "ROOT\n", + "\n", + "\n", + "3\n", + "3 (Workshop)\n", + "\n", + "\n", + "6->3\n", + "\n", + "\n", + "nsubjpass\n", + "\n", + "\n", + "4\n", + "4 (is)\n", + "\n", + "\n", + "6->4\n", + "\n", + "\n", + "aux\n", + "\n", + "\n", + "5\n", + "5 (being)\n", + "\n", + "\n", + "6->5\n", + "\n", + "\n", + "auxpass\n", + "\n", + "\n", + "9\n", + "9 (Vidhya)\n", + "\n", + "\n", + "6->9\n", + "\n", + "\n", + "nmod\n", + "\n", + "\n", + "11\n", + "11 (part)\n", + "\n", + "\n", + "6->11\n", + "\n", + "\n", + "nmod\n", + "\n", + "\n", + "1\n", + "1 (This)\n", + "\n", + "\n", + "2\n", + "2 (NLP)\n", + "\n", + "\n", + "3->1\n", + "\n", + "\n", + "det\n", + "\n", + "\n", + "3->2\n", + "\n", + "\n", + "compound\n", + "\n", + "\n", + "7\n", + "7 (by)\n", + "\n", + "\n", + "9->7\n", + "\n", + "\n", + "case\n", + "\n", + "\n", + "8\n", + "8 (Analytics)\n", + "\n", + "\n", + "9->8\n", + "\n", + "\n", + "compound\n", + "\n", + "\n", + "10\n", + "10 (as)\n", + "\n", + "\n", + "11->10\n", + "\n", + "\n", + "case\n", + "\n", + "\n", + "15\n", + "15 (Summit)\n", + "\n", + "\n", + "11->15\n", + "\n", + "\n", + "nmod\n", + "\n", + "\n", + "12\n", + "12 (of)\n", + "\n", + "\n", + "15->12\n", + "\n", + "\n", + "case\n", + "\n", + "\n", + "13\n", + "13 (the)\n", + "\n", + "\n", + "15->13\n", + "\n", + "\n", + "det\n", + "\n", + "\n", + "14\n", + "14 (DataHack)\n", + "\n", + "\n", + "15->14\n", + "\n", + "\n", + "compound\n", + "\n", + "\n", + "16\n", + "16 (2018)\n", + "\n", + "\n", + "15->16\n", + "\n", + "\n", + "nummod\n", + "\n", + "\n", + "\n" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "result" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(('organized', 'VBN'), 'nsubjpass', ('Workshop', 'NNP')),\n", + " (('Workshop', 'NNP'), 'det', ('This', 'DT')),\n", + " (('Workshop', 'NNP'), 'compound', ('NLP', 'NNP')),\n", + " (('organized', 'VBN'), 'aux', ('is', 'VBZ')),\n", + " (('organized', 'VBN'), 'auxpass', ('being', 'VBG')),\n", + " (('organized', 'VBN'), 'nmod', ('Vidhya', 'NNP')),\n", + " (('Vidhya', 'NNP'), 'case', ('by', 'IN')),\n", + " (('Vidhya', 'NNP'), 'compound', ('Analytics', 'NNP')),\n", + " (('organized', 'VBN'), 'nmod', ('part', 'NN')),\n", + " (('part', 'NN'), 'case', ('as', 'IN')),\n", + " (('part', 'NN'), 'nmod', ('Summit', 'NNP')),\n", + " (('Summit', 'NNP'), 'case', ('of', 'IN')),\n", + " (('Summit', 'NNP'), 'det', ('the', 'DT')),\n", + " (('Summit', 'NNP'), 'compound', ('DataHack', 'NNP')),\n", + " (('Summit', 'NNP'), 'nummod', ('2018', 'CD'))]" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(result.triples())" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "This\tDT\t3\tdet\n", + "NLP\tNNP\t3\tcompound\n", + "Workshop\tNNP\t6\tnsubjpass\n", + "is\tVBZ\t6\taux\n", + "being\tVBG\t6\tauxpass\n", + "organized\tVBN\t0\tROOT\n", + "by\tIN\t9\tcase\n", + "Analytics\tNNP\t9\tcompound\n", + "Vidhya\tNNP\t6\tnmod\n", + "as\tIN\t11\tcase\n", + "part\tNN\t6\tnmod\n", + "of\tIN\t15\tcase\n", + "the\tDT\t15\tdet\n", + "DataHack\tNNP\t15\tcompound\n", + "Summit\tNNP\t11\tnmod\n", + "2018\tCD\t15\tnummod\n", + "\n" + ] + } + ], + "source": [ + "print(result.to_conll(4))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You can notice the similarities with the tree we had obtained earlier. The annotations help with understanding the type of dependency among the different tokens." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch03 - Processing and Understanding Text/big.txt b/New-Second-Edition/Ch03 - Processing and Understanding Text/big.txt new file mode 100644 index 0000000..dcc6bd2 --- /dev/null +++ b/New-Second-Edition/Ch03 - Processing and Understanding Text/big.txt @@ -0,0 +1,128457 @@ +The Project Gutenberg EBook of The Adventures of Sherlock Holmes +by Sir Arthur Conan Doyle +(#15 in our series by Sir Arthur Conan Doyle) + +Copyright laws are changing all over the world. Be sure to check the +copyright laws for your country before downloading or redistributing +this or any other Project Gutenberg eBook. + +This header should be the first thing seen when viewing this Project +Gutenberg file. Please do not remove it. Do not change or edit the +header without written permission. + +Please read the "legal small print," and other information about the +eBook and Project Gutenberg at the bottom of this file. Included is +important information about your specific rights and restrictions in +how the file may be used. You can also find out about how to make a +donation to Project Gutenberg, and how to get involved. + + +**Welcome To The World of Free Plain Vanilla Electronic Texts** + +**eBooks Readable By Both Humans and By Computers, Since 1971** + +*****These eBooks Were Prepared By Thousands of Volunteers!***** + + +Title: The Adventures of Sherlock Holmes + +Author: Sir Arthur Conan Doyle + +Release Date: March, 1999 [EBook #1661] +[Most recently updated: November 29, 2002] + +Edition: 12 + +Language: English + +Character set encoding: ASCII + +*** START OF THE PROJECT GUTENBERG EBOOK, THE ADVENTURES OF SHERLOCK HOLMES *** + + + + +(Additional editing by Jose Menendez) + + + +THE ADVENTURES OF +SHERLOCK HOLMES + +BY + +SIR ARTHUR CONAN DOYLE + +CONTENTS + +I. A Scandal in Bohemia +II. The Red-Headed League +III. A Case of Identity +IV. The Boscombe Valley Mystery +V. The Five Orange Pips +VI. The Man with the Twisted Lip +VII. The Adventure of the Blue Carbuncle +VIII. The Adventure of the Speckled Band +IX. The Adventure of the Engineer's Thumb +X. The Adventure of the Noble Bachelor +XI. The Adventure of the Beryl Coronet +XII. The Adventure of the Copper Beeches + + +ADVENTURE I. A SCANDAL IN BOHEMIA + +I. + + +To Sherlock Holmes she is always the woman. I have seldom heard him mention her under any other name. In his eyes she eclipses and predominates the whole of her sex. It was not that he felt any emotion akin to love for Irene Adler. All emotions, and that one particularly, were abhorrent to his cold, precise but admirably balanced mind. He was, I take it, the most perfect reasoning and observing machine that the world has seen, but as a lover he would have placed himself in a false position. He never spoke of the softer passions, save with a gibe and a sneer. They were admirable things for the observer--excellent for drawing the veil from men's motives and actions. But for the trained reasoner to admit such intrusions into his own delicate and finely adjusted temperament was to introduce a distracting factor which might throw a doubt upon all his mental results. Grit in a sensitive instrument, or a crack in one of his own high-power lenses, would not be more disturbing than a strong emotion in a nature such as his. And yet there was but one woman to him, and that woman was the late Irene Adler, of dubious and questionable memory. + +I had seen little of Holmes lately. My marriage had drifted us away from each other. My own complete happiness, and the home-centred interests which rise up around the man who first finds himself master of his own establishment, were sufficient to absorb all my attention, while Holmes, who loathed every form of society with his whole Bohemian soul, remained in our lodgings in Baker Street, buried among his old books, and alternating from week to week between cocaine and ambition, the drowsiness of the drug, and the fierce energy of his own keen nature. He was still, as ever, deeply attracted by the study of crime, and occupied his immense faculties and extraordinary powers of observation in following out those clues, and clearing up those mysteries which had been abandoned as hopeless by the official police. From time to time I heard some vague account of his doings: of his summons to Odessa in the case of the Trepoff murder, of his clearing up of the singular tragedy of the Atkinson brothers at Trincomalee, and finally of the mission which he had accomplished so delicately and successfully for the reigning family of Holland. Beyond these signs of his activity, however, which I merely shared with all the readers of the daily press, I knew little of my former friend and companion. + +One night--it was on the twentieth of March, 1888--I was returning from a journey to a patient (for I had now returned to civil practice), when my way led me through Baker Street. As I passed the well-remembered door, which must always be associated in my mind with my wooing, and with the dark incidents of the Study in Scarlet, I was seized with a keen desire to see Holmes again, and to know how he was employing his extraordinary powers. His rooms were brilliantly lit, and, even as I looked up, I saw his tall, spare figure pass twice in a dark silhouette against the blind. He was pacing the room swiftly, eagerly, with his head sunk upon his chest and his hands clasped behind him. To me, who knew his every mood and habit, his attitude and manner told their own story. He was at work again. He had risen out of his drug-created dreams and was hot upon the scent of some new problem. I rang the bell and was shown up to the chamber which had formerly been in part my own. + +His manner was not effusive. It seldom was; but he was glad, I think, to see me. With hardly a word spoken, but with a kindly eye, he waved me to an armchair, threw across his case of cigars, and indicated a spirit case and a gasogene in the corner. Then he stood before the fire and looked me over in his singular introspective fashion. + +"Wedlock suits you," he remarked. "I think, Watson, that you have put on seven and a half pounds since I saw you." + +"Seven!" I answered. + +"Indeed, I should have thought a little more. Just a trifle more, I fancy, Watson. And in practice again, I observe. You did not tell me that you intended to go into harness." + +"Then, how do you know?" + +"I see it, I deduce it. How do I know that you have been getting yourself very wet lately, and that you have a most clumsy and careless servant girl?" + +"My dear Holmes," said I, "this is too much. You would certainly have been burned, had you lived a few centuries ago. It is true that I had a country walk on Thursday and came home in a dreadful mess, but as I have changed my clothes I can't imagine how you deduce it. As to Mary Jane, she is incorrigible, and my wife has given her notice, but there, again, I fail to see how you work it out." + +He chuckled to himself and rubbed his long, nervous hands together. + +"It is simplicity itself," said he; "my eyes tell me that on the inside of your left shoe, just where the firelight strikes it, the leather is scored by six almost parallel cuts. Obviously they have been caused by someone who has very carelessly scraped round the edges of the sole in order to remove crusted mud from it. Hence, you see, my double deduction that you had been out in vile weather, and that you had a particularly malignant boot-slitting specimen of the London slavey. As to your practice, if a gentleman walks into my rooms smelling of iodoform, with a black mark of nitrate of silver upon his right forefinger, and a bulge on the right side of his top-hat to show where he has secreted his stethoscope, I must be dull, indeed, if I do not pronounce him to be an active member of the medical profession." + +I could not help laughing at the ease with which he explained his process of deduction. "When I hear you give your reasons," I remarked, "the thing always appears to me to be so ridiculously simple that I could easily do it myself, though at each successive instance of your reasoning I am baffled until you explain your process. And yet I believe that my eyes are as good as yours." + +"Quite so," he answered, lighting a cigarette, and throwing himself down into an armchair. "You see, but you do not observe. The distinction is clear. For example, you have frequently seen the steps which lead up from the hall to this room." + +"Frequently." + +"How often?" + +"Well, some hundreds of times." + +"Then how many are there?" + +"How many? I don't know." + +"Quite so! You have not observed. And yet you have seen. That is just my point. Now, I know that there are seventeen steps, because I have both seen and observed. By the way, since you are interested in these little problems, and since you are good enough to chronicle one or two of my trifling experiences, you may be interested in this." He threw over a sheet of thick, pink-tinted notepaper which had been lying open upon the table. "It came by the last post," said he. "Read it aloud." + +The note was undated, and without either signature or address. + +"There will call upon you to-night, at a quarter to eight o'clock," it said, "a gentleman who desires to consult you upon a matter of the very deepest moment. Your recent services to one of the royal houses of Europe have shown that you are one who may safely be trusted with matters which are of an importance which can hardly be exaggerated. This account of you we have from all quarters received. Be in your chamber then at that hour, and do not take it amiss if your visitor wear a mask." + +"This is indeed a mystery," I remarked. "What do you imagine that it means?" + +"I have no data yet. It is a capital mistake to theorise before one has data. Insensibly one begins to twist facts to suit theories, instead of theories to suit facts. But the note itself. What do you deduce from it?" + +I carefully examined the writing, and the paper upon which it was written. + +"The man who wrote it was presumably well to do," I remarked, endeavouring to imitate my companion's processes. "Such paper could not be bought under half a crown a packet. It is peculiarly strong and stiff." + +"Peculiar--that is the very word," said Holmes. "It is not an English paper at all. Hold it up to the light." + +I did so, and saw a large "E" with a small "g," a "P," and a large "G" with a small "t" woven into the texture of the paper. + +"What do you make of that?" asked Holmes. + +"The name of the maker, no doubt; or his monogram, rather." + +"Not at all. The 'G' with the small 't' stands for 'Gesellschaft,' which is the German for 'Company.' It is a customary contraction like our 'Co.' 'P,' of course, stands for 'Papier.' Now for the 'Eg.' Let us glance at our Continental Gazetteer." He took down a heavy brown volume from his shelves. "Eglow, Eglonitz--here we are, Egria. It is in a German-speaking country--in Bohemia, not far from Carlsbad. 'Remarkable as being the scene of the death of Wallenstein, and for its numerous glass-factories and paper-mills.' Ha, ha, my boy, what do you make of that?" His eyes sparkled, and he sent up a great blue triumphant cloud from his cigarette. + +"The paper was made in Bohemia," I said. + +"Precisely. And the man who wrote the note is a German. Do you note the peculiar construction of the sentence--'This account of you we have from all quarters received.' A Frenchman or Russian could not have written that. It is the German who is so uncourteous to his verbs. It only remains, therefore, to discover what is wanted by this German who writes upon Bohemian paper and prefers wearing a mask to showing his face. And here he comes, if I am not mistaken, to resolve all our doubts." + +As he spoke there was the sharp sound of horses' hoofs and grating wheels against the curb, followed by a sharp pull at the bell. Holmes whistled. + +"A pair, by the sound," said he. "Yes," he continued, glancing out of the window. "A nice little brougham and a pair of beauties. A hundred and fifty guineas apiece. There's money in this case, Watson, if there is nothing else." + +"I think that I had better go, Holmes." + +"Not a bit, Doctor. Stay where you are. I am lost without my Boswell. And this promises to be interesting. It would be a pity to miss it." + +"But your client--" + +"Never mind him. I may want your help, and so may he. Here he comes. Sit down in that armchair, Doctor, and give us your best attention." + +A slow and heavy step, which had been heard upon the stairs and in the passage, paused immediately outside the door. Then there was a loud and authoritative tap. + +"Come in!" said Holmes. + +A man entered who could hardly have been less than six feet six inches in height, with the chest and limbs of a Hercules. His dress was rich with a richness which would, in England, be looked upon as akin to bad taste. Heavy bands of astrakhan were slashed across the sleeves and fronts of his double-breasted coat, while the deep blue cloak which was thrown over his shoulders was lined with flame-coloured silk and secured at the neck with a brooch which consisted of a single flaming beryl. Boots which extended halfway up his calves, and which were trimmed at the tops with rich brown fur, completed the impression of barbaric opulence which was suggested by his whole appearance. He carried a broad-brimmed hat in his hand, while he wore across the upper part of his face, extending down past the cheekbones, a black vizard mask, which he had apparently adjusted that very moment, for his hand was still raised to it as he entered. From the lower part of the face he appeared to be a man of strong character, with a thick, hanging lip, and a long, straight chin suggestive of resolution pushed to the length of obstinacy. + +"You had my note?" he asked with a deep harsh voice and a strongly marked German accent. "I told you that I would call." He looked from one to the other of us, as if uncertain which to address. + +"Pray take a seat," said Holmes. "This is my friend and colleague, Dr. Watson, who is occasionally good enough to help me in my cases. Whom have I the honour to address?" + +"You may address me as the Count Von Kramm, a Bohemian nobleman. I understand that this gentleman, your friend, is a man of honour and discretion, whom I may trust with a matter of the most extreme importance. If not, I should much prefer to communicate with you alone." + +I rose to go, but Holmes caught me by the wrist and pushed me back into my chair. "It is both, or none," said he. "You may say before this gentleman anything which you may say to me." + +The Count shrugged his broad shoulders. "Then I must begin," said he, "by binding you both to absolute secrecy for two years; at the end of that time the matter will be of no importance. At present it is not too much to say that it is of such weight it may have an influence upon European history." + +"I promise," said Holmes. + +"And I." + +"You will excuse this mask," continued our strange visitor. "The august person who employs me wishes his agent to be unknown to you, and I may confess at once that the title by which I have just called myself is not exactly my own." + +"I was aware of it," said Holmes dryly. + +"The circumstances are of great delicacy, and every precaution has to be taken to quench what might grow to be an immense scandal and seriously compromise one of the reigning families of Europe. To speak plainly, the matter implicates the great House of Ormstein, hereditary kings of Bohemia." + +"I was also aware of that," murmured Holmes, settling himself down in his armchair and closing his eyes. + +Our visitor glanced with some apparent surprise at the languid, lounging figure of the man who had been no doubt depicted to him as the most incisive reasoner and most energetic agent in Europe. Holmes slowly reopened his eyes and looked impatiently at his gigantic client. + +"If your Majesty would condescend to state your case," he remarked, "I should be better able to advise you." + +The man sprang from his chair and paced up and down the room in uncontrollable agitation. Then, with a gesture of desperation, he tore the mask from his face and hurled it upon the ground. "You are right," he cried; "I am the King. Why should I attempt to conceal it?" + +"Why, indeed?" murmured Holmes. "Your Majesty had not spoken before I was aware that I was addressing Wilhelm Gottsreich Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and hereditary King of Bohemia." + +"But you can understand," said our strange visitor, sitting down once more and passing his hand over his high white forehead, "you can understand that I am not accustomed to doing such business in my own person. Yet the matter was so delicate that I could not confide it to an agent without putting myself in his power. I have come incognito from Prague for the purpose of consulting you." + +"Then, pray consult," said Holmes, shutting his eyes once more. + +"The facts are briefly these: Some five years ago, during a lengthy visit to Warsaw, I made the acquaintance of the well-known adventuress, Irene Adler. The name is no doubt familiar to you." + +"Kindly look her up in my index, Doctor," murmured Holmes without opening his eyes. For many years he had adopted a system of docketing all paragraphs concerning men and things, so that it was difficult to name a subject or a person on which he could not at once furnish information. In this case I found her biography sandwiched in between that of a Hebrew rabbi and that of a staff-commander who had written a monograph upon the deep-sea fishes. + +"Let me see!" said Holmes. "Hum! Born in New Jersey in the year 1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera of Warsaw--yes! Retired from operatic stage--ha! Living in London--quite so! Your Majesty, as I understand, became entangled with this young person, wrote her some compromising letters, and is now desirous of getting those letters back." + +"Precisely so. But how--" + +"Was there a secret marriage?" + +"None." + +"No legal papers or certificates?" + +"None." + +"Then I fail to follow your Majesty. If this young person should produce her letters for blackmailing or other purposes, how is she to prove their authenticity?" + +"There is the writing." + +"Pooh, pooh! Forgery." + +"My private note-paper." + +"Stolen." + +"My own seal." + +"Imitated." + +"My photograph." + +"Bought." + +"We were both in the photograph." + +"Oh, dear! That is very bad! Your Majesty has indeed committed an indiscretion." + +"I was mad--insane." + +"You have compromised yourself seriously." + +"I was only Crown Prince then. I was young. I am but thirty now." + +"It must be recovered." + +"We have tried and failed." + +"Your Majesty must pay. It must be bought." + +"She will not sell." + +"Stolen, then." + +"Five attempts have been made. Twice burglars in my pay ransacked her house. Once we diverted her luggage when she travelled. Twice she has been waylaid. There has been no result." + +"No sign of it?" + +"Absolutely none." + +Holmes laughed. "It is quite a pretty little problem," said he. + +"But a very serious one to me," returned the King reproachfully. + +"Very, indeed. And what does she propose to do with the photograph?" + +"To ruin me." + +"But how?" + +"I am about to be married." + +"So I have heard." + +"To Clotilde Lothman von Saxe-Meningen, second daughter of the King of Scandinavia. You may know the strict principles of her family. She is herself the very soul of delicacy. A shadow of a doubt as to my conduct would bring the matter to an end." + +"And Irene Adler?" + +"Threatens to send them the photograph. And she will do it. I know that she will do it. You do not know her, but she has a soul of steel. She has the face of the most beautiful of women, and the mind of the most resolute of men. Rather than I should marry another woman, there are no lengths to which she would not go--none." + +"You are sure that she has not sent it yet?" + +"I am sure." + +"And why?" + +"Because she has said that she would send it on the day when the betrothal was publicly proclaimed. That will be next Monday." + +"Oh, then we have three days yet," said Holmes with a yawn. "That is very fortunate, as I have one or two matters of importance to look into just at present. Your Majesty will, of course, stay in London for the present?" + +"Certainly. You will find me at the Langham under the name of the Count Von Kramm." + +"Then I shall drop you a line to let you know how we progress." + +"Pray do so. I shall be all anxiety." + +"Then, as to money?" + +"You have carte blanche." + +"Absolutely?" + +"I tell you that I would give one of the provinces of my kingdom to have that photograph." + +"And for present expenses?" + +The King took a heavy chamois leather bag from under his cloak and laid it on the table. + +"There are three hundred pounds in gold and seven hundred in notes," he said. + +Holmes scribbled a receipt upon a sheet of his note-book and handed it to him. + +"And Mademoiselle's address?" he asked. + +"Is Briony Lodge, Serpentine Avenue, St. John's Wood." + +Holmes took a note of it. "One other question," said he. "Was the photograph a cabinet?" + +"It was." + +"Then, good-night, your Majesty, and I trust that we shall soon have some good news for you. And good-night, Watson," he added, as the wheels of the royal brougham rolled down the street. "If you will be good enough to call to-morrow afternoon at three o'clock I should like to chat this little matter over with you." + +II. + + +At three o'clock precisely I was at Baker Street, but Holmes had not yet returned. The landlady informed me that he had left the house shortly after eight o'clock in the morning. I sat down beside the fire, however, with the intention of awaiting him, however long he might be. I was already deeply interested in his inquiry, for, though it was surrounded by none of the grim and strange features which were associated with the two crimes which I have already recorded, still, the nature of the case and the exalted station of his client gave it a character of its own. Indeed, apart from the nature of the investigation which my friend had on hand, there was something in his masterly grasp of a situation, and his keen, incisive reasoning, which made it a pleasure to me to study his system of work, and to follow the quick, subtle methods by which he disentangled the most inextricable mysteries. So accustomed was I to his invariable success that the very possibility of his failing had ceased to enter into my head. + +It was close upon four before the door opened, and a drunken-looking groom, ill-kempt and side-whiskered, with an inflamed face and disreputable clothes, walked into the room. Accustomed as I was to my friend's amazing powers in the use of disguises, I had to look three times before I was certain that it was indeed he. With a nod he vanished into the bedroom, whence he emerged in five minutes tweed-suited and respectable, as of old. Putting his hands into his pockets, he stretched out his legs in front of the fire and laughed heartily for some minutes. + +"Well, really!" he cried, and then he choked and laughed again until he was obliged to lie back, limp and helpless, in the chair. + +"What is it?" + +"It's quite too funny. I am sure you could never guess how I employed my morning, or what I ended by doing." + +"I can't imagine. I suppose that you have been watching the habits, and perhaps the house, of Miss Irene Adler." + +"Quite so; but the sequel was rather unusual. I will tell you, however. I left the house a little after eight o'clock this morning in the character of a groom out of work. There is a wonderful sympathy and freemasonry among horsey men. Be one of them, and you will know all that there is to know. I soon found Briony Lodge. It is a bijou villa, with a garden at the back, but built out in front right up to the road, two stories. Chubb lock to the door. Large sitting-room on the right side, well furnished, with long windows almost to the floor, and those preposterous English window fasteners which a child could open. Behind there was nothing remarkable, save that the passage window could be reached from the top of the coach-house. I walked round it and examined it closely from every point of view, but without noting anything else of interest. + +"I then lounged down the street and found, as I expected, that there was a mews in a lane which runs down by one wall of the garden. I lent the ostlers a hand in rubbing down their horses, and received in exchange twopence, a glass of half-and-half, two fills of shag tobacco, and as much information as I could desire about Miss Adler, to say nothing of half a dozen other people in the neighbourhood in whom I was not in the least interested, but whose biographies I was compelled to listen to." + +"And what of Irene Adler?" I asked. + +"Oh, she has turned all the men's heads down in that part. She is the daintiest thing under a bonnet on this planet. So say the Serpentine-mews, to a man. She lives quietly, sings at concerts, drives out at five every day, and returns at seven sharp for dinner. Seldom goes out at other times, except when she sings. Has only one male visitor, but a good deal of him. He is dark, handsome, and dashing, never calls less than once a day, and often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See the advantages of a cabman as a confidant. They had driven him home a dozen times from Serpentine-mews, and knew all about him. When I had listened to all they had to tell, I began to walk up and down near Briony Lodge once more, and to think over my plan of campaign. + +"This Godfrey Norton was evidently an important factor in the matter. He was a lawyer. That sounded ominous. What was the relation between them, and what the object of his repeated visits? Was she his client, his friend, or his mistress? If the former, she had probably transferred the photograph to his keeping. If the latter, it was less likely. On the issue of this question depended whether I should continue my work at Briony Lodge, or turn my attention to the gentleman's chambers in the Temple. It was a delicate point, and it widened the field of my inquiry. I fear that I bore you with these details, but I have to let you see my little difficulties, if you are to understand the situation." + +"I am following you closely," I answered. + +"I was still balancing the matter in my mind when a hansom cab drove up to Briony Lodge, and a gentleman sprang out. He was a remarkably handsome man, dark, aquiline, and moustached--evidently the man of whom I had heard. He appeared to be in a great hurry, shouted to the cabman to wait, and brushed past the maid who opened the door with the air of a man who was thoroughly at home. + +"He was in the house about half an hour, and I could catch glimpses of him in the windows of the sitting-room, pacing up and down, talking excitedly, and waving his arms. Of her I could see nothing. Presently he emerged, looking even more flurried than before. As he stepped up to the cab, he pulled a gold watch from his pocket and looked at it earnestly, 'Drive like the devil,' he shouted, 'first to Gross & Hankey's in Regent Street, and then to the Church of St. Monica in the Edgeware Road. Half a guinea if you do it in twenty minutes!' + +"Away they went, and I was just wondering whether I should not do well to follow them when up the lane came a neat little landau, the coachman with his coat only half-buttoned, and his tie under his ear, while all the tags of his harness were sticking out of the buckles. It hadn't pulled up before she shot out of the hall door and into it. I only caught a glimpse of her at the moment, but she was a lovely woman, with a face that a man might die for. + +" 'The Church of St. Monica, John,' she cried, 'and half a sovereign if you reach it in twenty minutes.' + +"This was quite too good to lose, Watson. I was just balancing whether I should run for it, or whether I should perch behind her landau when a cab came through the street. The driver looked twice at such a shabby fare, but I jumped in before he could object. 'The Church of St. Monica,' said I, 'and half a sovereign if you reach it in twenty minutes.' It was twenty-five minutes to twelve, and of course it was clear enough what was in the wind. + +"My cabby drove fast. I don't think I ever drove faster, but the others were there before us. The cab and the landau with their steaming horses were in front of the door when I arrived. I paid the man and hurried into the church. There was not a soul there save the two whom I had followed and a surpliced clergyman, who seemed to be expostulating with them. They were all three standing in a knot in front of the altar. I lounged up the side aisle like any other idler who has dropped into a church. Suddenly, to my surprise, the three at the altar faced round to me, and Godfrey Norton came running as hard as he could towards me. + +" 'Thank God,' he cried. 'You'll do. Come! Come!' + +" 'What then?' I asked. + +" 'Come, man, come, only three minutes, or it won't be legal.' + +"I was half-dragged up to the altar, and before I knew where I was I found myself mumbling responses which were whispered in my ear, and vouching for things of which I knew nothing, and generally assisting in the secure tying up of Irene Adler, spinster, to Godfrey Norton, bachelor. It was all done in an instant, and there was the gentleman thanking me on the one side and the lady on the other, while the clergyman beamed on me in front. It was the most preposterous position in which I ever found myself in my life, and it was the thought of it that started me laughing just now. It seems that there had been some informality about their license, that the clergyman absolutely refused to marry them without a witness of some sort, and that my lucky appearance saved the bridegroom from having to sally out into the streets in search of a best man. The bride gave me a sovereign, and I mean to wear it on my watch chain in memory of the occasion." + +"This is a very unexpected turn of affairs," said I; "and what then?" + +"Well, I found my plans very seriously menaced. It looked as if the pair might take an immediate departure, and so necessitate very prompt and energetic measures on my part. At the church door, however, they separated, he driving back to the Temple, and she to her own house. 'I shall drive out in the park at five as usual,' she said as she left him. I heard no more. They drove away in different directions, and I went off to make my own arrangements." + +"Which are?" + +"Some cold beef and a glass of beer," he answered, ringing the bell. "I have been too busy to think of food, and I am likely to be busier still this evening. By the way, Doctor, I shall want your co-operation." + +"I shall be delighted." + +"You don't mind breaking the law?" + +"Not in the least." + +"Nor running a chance of arrest?" + +"Not in a good cause." + +"Oh, the cause is excellent!" + +"Then I am your man." + +"I was sure that I might rely on you." + +"But what is it you wish?" + +"When Mrs. Turner has brought in the tray I will make it clear to you. Now," he said as he turned hungrily on the simple fare that our landlady had provided, "I must discuss it while I eat, for I have not much time. It is nearly five now. In two hours we must be on the scene of action. Miss Irene, or Madame, rather, returns from her drive at seven. We must be at Briony Lodge to meet her." + +"And what then?" + +"You must leave that to me. I have already arranged what is to occur. There is only one point on which I must insist. You must not interfere, come what may. You understand?" + +"I am to be neutral?" + +"To do nothing whatever. There will probably be some small unpleasantness. Do not join in it. It will end in my being conveyed into the house. Four or five minutes afterwards the sitting-room window will open. You are to station yourself close to that open window." + +"Yes." + +"You are to watch me, for I will be visible to you." + +"Yes." + +"And when I raise my hand--so--you will throw into the room what I give you to throw, and will, at the same time, raise the cry of fire. You quite follow me?" + +"Entirely." + +"It is nothing very formidable," he said, taking a long cigar-shaped roll from his pocket. "It is an ordinary plumber's smoke-rocket, fitted with a cap at either end to make it self-lighting. Your task is confined to that. When you raise your cry of fire, it will be taken up by quite a number of people. You may then walk to the end of the street, and I will rejoin you in ten minutes. I hope that I have made myself clear?" + +"I am to remain neutral, to get near the window, to watch you, and at the signal to throw in this object, then to raise the cry of fire, and to wait you at the corner of the street." + +"Precisely." + +"Then you may entirely rely on me." + +"That is excellent. I think, perhaps, it is almost time that I prepare for the new role I have to play." + +He disappeared into his bedroom and returned in a few minutes in the character of an amiable and simple-minded Nonconformist clergyman. His broad black hat, his baggy trousers, his white tie, his sympathetic smile, and general look of peering and benevolent curiosity were such as Mr. John Hare alone could have equalled. It was not merely that Holmes changed his costume. His expression, his manner, his very soul seemed to vary with every fresh part that he assumed. The stage lost a fine actor, even as science lost an acute reasoner, when he became a specialist in crime. + +It was a quarter past six when we left Baker Street, and it still wanted ten minutes to the hour when we found ourselves in Serpentine Avenue. It was already dusk, and the lamps were just being lighted as we paced up and down in front of Briony Lodge, waiting for the coming of its occupant. The house was just such as I had pictured it from Sherlock Holmes' succinct description, but the locality appeared to be less private than I expected. On the contrary, for a small street in a quiet neighbourhood, it was remarkably animated. There was a group of shabbily dressed men smoking and laughing in a corner, a scissors-grinder with his wheel, two guardsmen who were flirting with a nurse-girl, and several well-dressed young men who were lounging up and down with cigars in their mouths. + +"You see," remarked Holmes, as we paced to and fro in front of the house, "this marriage rather simplifies matters. The photograph becomes a double-edged weapon now. The chances are that she would be as averse to its being seen by Mr. Godfrey Norton, as our client is to its coming to the eyes of his princess. Now the question is, Where are we to find the photograph?" + +"Where, indeed?" + +"It is most unlikely that she carries it about with her. It is cabinet size. Too large for easy concealment about a woman's dress. She knows that the King is capable of having her waylaid and searched. Two attempts of the sort have already been made. We may take it, then, that she does not carry it about with her." + +"Where, then?" + +"Her banker or her lawyer. There is that double possibility. But I am inclined to think neither. Women are naturally secretive, and they like to do their own secreting. Why should she hand it over to anyone else? She could trust her own guardianship, but she could not tell what indirect or political influence might be brought to bear upon a business man. Besides, remember that she had resolved to use it within a few days. It must be where she can lay her hands upon it. It must be in her own house." + +"But it has twice been burgled." + +"Pshaw! They did not know how to look." + +"But how will you look?" + +"I will not look." + +"What then?" + +"I will get her to show me." + +"But she will refuse." + +"She will not be able to. But I hear the rumble of wheels. It is her carriage. Now carry out my orders to the letter." + +As he spoke the gleam of the sidelights of a carriage came round the curve of the avenue. It was a smart little landau which rattled up to the door of Briony Lodge. As it pulled up, one of the loafing men at the corner dashed forward to open the door in the hope of earning a copper, but was elbowed away by another loafer, who had rushed up with the same intention. A fierce quarrel broke out, which was increased by the two guardsmen, who took sides with one of the loungers, and by the scissors-grinder, who was equally hot upon the other side. A blow was struck, and in an instant the lady, who had stepped from her carriage, was the centre of a little knot of flushed and struggling men, who struck savagely at each other with their fists and sticks. Holmes dashed into the crowd to protect the lady; but, just as he reached her, he gave a cry and dropped to the ground, with the blood running freely down his face. At his fall the guardsmen took to their heels in one direction and the loungers in the other, while a number of better dressed people, who had watched the scuffle without taking part in it, crowded in to help the lady and to attend to the injured man. Irene Adler, as I will still call her, had hurried up the steps; but she stood at the top with her superb figure outlined against the lights of the hall, looking back into the street. + +"Is the poor gentleman much hurt?" she asked. + +"He is dead," cried several voices. + +"No, no, there's life in him!" shouted another. "But he'll be gone before you can get him to hospital." + +"He's a brave fellow," said a woman. "They would have had the lady's purse and watch if it hadn't been for him. They were a gang, and a rough one, too. Ah, he's breathing now." + +"He can't lie in the street. May we bring him in, marm?" + +"Surely. Bring him into the sitting-room. There is a comfortable sofa. This way, please!" + +Slowly and solemnly he was borne into Briony Lodge and laid out in the principal room, while I still observed the proceedings from my post by the window. The lamps had been lit, but the blinds had not been drawn, so that I could see Holmes as he lay upon the couch. I do not know whether he was seized with compunction at that moment for the part he was playing, but I know that I never felt more heartily ashamed of myself in my life than when I saw the beautiful creature against whom I was conspiring, or the grace and kindliness with which she waited upon the injured man. And yet it would be the blackest treachery to Holmes to draw back now from the part which he had intrusted to me. I hardened my heart, and took the smoke-rocket from under my ulster. After all, I thought, we are not injuring her. We are but preventing her from injuring another. + +Holmes had sat up upon the couch, and I saw him motion like a man who is in need of air. A maid rushed across and threw open the window. At the same instant I saw him raise his hand and at the signal I tossed my rocket into the room with a cry of "Fire!" The word was no sooner out of my mouth than the whole crowd of spectators, well dressed and ill--gentlemen, ostlers, and servant maids--joined in a general shriek of "Fire!" Thick clouds of smoke curled through the room and out at the open window. I caught a glimpse of rushing figures, and a moment later the voice of Holmes from within assuring them that it was a false alarm. Slipping through the shouting crowd I made my way to the corner of the street, and in ten minutes was rejoiced to find my friend's arm in mine, and to get away from the scene of uproar. He walked swiftly and in silence for some few minutes until we had turned down one of the quiet streets which lead towards the Edgeware Road. + +"You did it very nicely, Doctor," he remarked. "Nothing could have been better. It is all right." + +"You have the photograph?" + +"I know where it is." + +"And how did you find out?" + +"She showed me, as I told you she would." + +"I am still in the dark." + +"I do not wish to make a mystery," said he, laughing. "The matter was perfectly simple. You, of course, saw that everyone in the street was an accomplice. They were all engaged for the evening." + +"I guessed as much." + +"Then, when the row broke out, I had a little moist red paint in the palm of my hand. I rushed forward, fell down, clapped my hand to my face, and became a piteous spectacle. It is an old trick." + +"That also I could fathom." + +"Then they carried me in. She was bound to have me in. What else could she do? And into her sitting-room, which was the very room which I suspected. It lay between that and her bedroom, and I was determined to see which. They laid me on a couch, I motioned for air, they were compelled to open the window, and you had your chance." + +"How did that help you?" + +"It was all-important. When a woman thinks that her house is on fire, her instinct is at once to rush to the thing which she values most. It is a perfectly overpowering impulse, and I have more than once taken advantage of it. In the case of the Darlington Substitution Scandal it was of use to me, and also in the Arnsworth Castle business. A married woman grabs at her baby; an unmarried one reaches for her jewel-box. Now it was clear to me that our lady of to-day had nothing in the house more precious to her than what we are in quest of. She would rush to secure it. The alarm of fire was admirably done. The smoke and shouting were enough to shake nerves of steel. She responded beautifully. The photograph is in a recess behind a sliding panel just above the right bell-pull. She was there in an instant, and I caught a glimpse of it as she half drew it out. When I cried out that it was a false alarm, she replaced it, glanced at the rocket, rushed from the room, and I have not seen her since. I rose, and, making my excuses, escaped from the house. I hesitated whether to attempt to secure the photograph at once; but the coachman had come in, and as he was watching me narrowly, it seemed safer to wait. A little over-precipitance may ruin all." + +"And now?" I asked. + +"Our quest is practically finished. I shall call with the King to-morrow, and with you, if you care to come with us. We will be shown into the sitting-room to wait for the lady, but it is probable that when she comes she may find neither us nor the photograph. It might be a satisfaction to his Majesty to regain it with his own hands." + +"And when will you call?" + +"At eight in the morning. She will not be up, so that we shall have a clear field. Besides, we must be prompt, for this marriage may mean a complete change in her life and habits. I must wire to the King without delay." + +We had reached Baker Street and had stopped at the door. He was searching his pockets for the key when someone passing said: + +"Good-night, Mister Sherlock Holmes." + +There were several people on the pavement at the time, but the greeting appeared to come from a slim youth in an ulster who had hurried by. + +"I've heard that voice before," said Holmes, staring down the dimly lit street. "Now, I wonder who the deuce that could have been." + +III. + + +I slept at Baker Street that night, and we were engaged upon our toast and coffee in the morning when the King of Bohemia rushed into the room. + +"You have really got it!" he cried, grasping Sherlock Holmes by either shoulder and looking eagerly into his face. + +"Not yet." + +"But you have hopes?" + +"I have hopes." + +"Then, come. I am all impatience to be gone." + +"We must have a cab." + +"No, my brougham is waiting." + +"Then that will simplify matters." We descended and started off once more for Briony Lodge. + +"Irene Adler is married," remarked Holmes. + +"Married! When?" + +"Yesterday." + +"But to whom?" + +"To an English lawyer named Norton." + +"But she could not love him." + +"I am in hopes that she does." + +"And why in hopes?" + +"Because it would spare your Majesty all fear of future annoyance. If the lady loves her husband, she does not love your Majesty. If she does not love your Majesty, there is no reason why she should interfere with your Majesty's plan." + +"It is true. And yet--! Well! I wish she had been of my own station! What a queen she would have made!" He relapsed into a moody silence, which was not broken until we drew up in Serpentine Avenue. + +The door of Briony Lodge was open, and an elderly woman stood upon the steps. She watched us with a sardonic eye as we stepped from the brougham. + +"Mr. Sherlock Holmes, I believe?" said she. + +"I am Mr. Holmes," answered my companion, looking at her with a questioning and rather startled gaze. + +"Indeed! My mistress told me that you were likely to call. She left this morning with her husband by the 5:15 train from Charing Cross for the Continent." + +"What!" Sherlock Holmes staggered back, white with chagrin and surprise. "Do you mean that she has left England?" + +"Never to return." + +"And the papers?" asked the King hoarsely. "All is lost." + +"We shall see." He pushed past the servant and rushed into the drawing-room, followed by the King and myself. The furniture was scattered about in every direction, with dismantled shelves and open drawers, as if the lady had hurriedly ransacked them before her flight. Holmes rushed at the bell-pull, tore back a small sliding shutter, and, plunging in his hand, pulled out a photograph and a letter. The photograph was of Irene Adler herself in evening dress, the letter was superscribed to "Sherlock Holmes, Esq. To be left till called for." My friend tore it open, and we all three read it together. It was dated at midnight of the preceding night and ran in this way: + +"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You took me in completely. Until after the alarm of fire, I had not a suspicion. But then, when I found how I had betrayed myself, I began to think. I had been warned against you months ago. I had been told that, if the King employed an agent, it would certainly be you. And your address had been given me. Yet, with all this, you made me reveal what you wanted to know. Even after I became suspicious, I found it hard to think evil of such a dear, kind old clergyman. But, you know, I have been trained as an actress myself. Male costume is nothing new to me. I often take advantage of the freedom which it gives. I sent John, the coachman, to watch you, ran upstairs, got into my walking clothes, as I call them, and came down just as you departed. + +"Well, I followed you to your door, and so made sure that I was really an object of interest to the celebrated Mr. Sherlock Holmes. Then I, rather imprudently, wished you good-night, and started for the Temple to see my husband. + +"We both thought the best resource was flight, when pursued by so formidable an antagonist; so you will find the nest empty when you call to-morrow. As to the photograph, your client may rest in peace. I love and am loved by a better man than he. The King may do what he will without hindrance from one whom he has cruelly wronged. I keep it only to safeguard myself, and to preserve a weapon which will always secure me from any steps which he might take in the future. I leave a photograph which he might care to possess; and I remain, dear Mr. Sherlock Holmes, + + +"Very truly yours, +"IRENE NORTON, nee ADLER." + +"What a woman--oh, what a woman!" cried the King of Bohemia, when we had all three read this epistle. "Did I not tell you how quick and resolute she was? Would she not have made an admirable queen? Is it not a pity that she was not on my level?" + +"From what I have seen of the lady, she seems, indeed, to be on a very different level to your Majesty," said Holmes coldly. "I am sorry that I have not been able to bring your Majesty's business to a more successful conclusion." + +"On the contrary, my dear sir," cried the King; "nothing could be more successful. I know that her word is inviolate. The photograph is now as safe as if it were in the fire." + +"I am glad to hear your Majesty say so." + +"I am immensely indebted to you. Pray tell me in what way I can reward you. This ring--" He slipped an emerald snake ring from his finger and held it out upon the palm of his hand. + +"Your Majesty has something which I should value even more highly," said Holmes. + +"You have but to name it." + +"This photograph!" + +The King stared at him in amazement. + +"Irene's photograph!" he cried. "Certainly, if you wish it." + +"I thank your Majesty. Then there is no more to be done in the matter. I have the honour to wish you a very good morning." He bowed, and, turning away without observing the hand which the King had stretched out to him, he set off in my company for his chambers. + +And that was how a great scandal threatened to affect the kingdom of Bohemia, and how the best plans of Mr. Sherlock Holmes were beaten by a woman's wit. He used to make merry over the cleverness of women, but I have not heard him do it of late. And when he speaks of Irene Adler, or when he refers to her photograph, it is always under the honourable title of the woman. + +ADVENTURE II. THE RED-HEADED LEAGUE + + +I had called upon my friend, Mr. Sherlock Holmes, one day in the autumn of last year and found him in deep conversation with a very stout, florid-faced, elderly gentleman with fiery red hair. With an apology for my intrusion, I was about to withdraw when Holmes pulled me abruptly into the room and closed the door behind me. + +"You could not possibly have come at a better time, my dear Watson," he said cordially. + +"I was afraid that you were engaged." + +"So I am. Very much so." + +"Then I can wait in the next room." + +"Not at all. This gentleman, Mr. Wilson, has been my partner and helper in many of my most successful cases, and I have no doubt that he will be of the utmost use to me in yours also." + +The stout gentleman half rose from his chair and gave a bob of greeting, with a quick little questioning glance from his small fat-encircled eyes. + +"Try the settee," said Holmes, relapsing into his armchair and putting his fingertips together, as was his custom when in judicial moods. "I know, my dear Watson, that you share my love of all that is bizarre and outside the conventions and humdrum routine of everyday life. You have shown your relish for it by the enthusiasm which has prompted you to chronicle, and, if you will excuse my saying so, somewhat to embellish so many of my own little adventures." + +"Your cases have indeed been of the greatest interest to me," I observed. + +"You will remember that I remarked the other day, just before we went into the very simple problem presented by Miss Mary Sutherland, that for strange effects and extraordinary combinations we must go to life itself, which is always far more daring than any effort of the imagination." + +"A proposition which I took the liberty of doubting." + +"You did, Doctor, but none the less you must come round to my view, for otherwise I shall keep on piling fact upon fact on you until your reason breaks down under them and acknowledges me to be right. Now, Mr. Jabez Wilson here has been good enough to call upon me this morning, and to begin a narrative which promises to be one of the most singular which I have listened to for some time. You have heard me remark that the strangest and most unique things are very often connected not with the larger but with the smaller crimes, and occasionally, indeed, where there is room for doubt whether any positive crime has been committed. As far as I have heard, it is impossible for me to say whether the present case is an instance of crime or not, but the course of events is certainly among the most singular that I have ever listened to. Perhaps, Mr. Wilson, you would have the great kindness to recommence your narrative. I ask you not merely because my friend Dr. Watson has not heard the opening part but also because the peculiar nature of the story makes me anxious to have every possible detail from your lips. As a rule, when I have heard some slight indication of the course of events, I am able to guide myself by the thousands of other similar cases which occur to my memory. In the present instance I am forced to admit that the facts are, to the best of my belief, unique." + +The portly client puffed out his chest with an appearance of some little pride and pulled a dirty and wrinkled newspaper from the inside pocket of his greatcoat. As he glanced down the advertisement column, with his head thrust forward and the paper flattened out upon his knee, I took a good look at the man and endeavoured, after the fashion of my companion, to read the indications which might be presented by his dress or appearance. + +I did not gain very much, however, by my inspection. Our visitor bore every mark of being an average commonplace British tradesman, obese, pompous, and slow. He wore rather baggy grey shepherd's check trousers, a not over-clean black frock-coat, unbuttoned in the front, and a drab waistcoat with a heavy brassy Albert chain, and a square pierced bit of metal dangling down as an ornament. A frayed top-hat and a faded brown overcoat with a wrinkled velvet collar lay upon a chair beside him. Altogether, look as I would, there was nothing remarkable about the man save his blazing red head, and the expression of extreme chagrin and discontent upon his features. + +Sherlock Holmes' quick eye took in my occupation, and he shook his head with a smile as he noticed my questioning glances. "Beyond the obvious facts that he has at some time done manual labour, that he takes snuff, that he is a Freemason, that he has been in China, and that he has done a considerable amount of writing lately, I can deduce nothing else." + +Mr. Jabez Wilson started up in his chair, with his forefinger upon the paper, but his eyes upon my companion. + +"How, in the name of good-fortune, did you know all that, Mr. Holmes?" he asked. "How did you know, for example, that I did manual labour. It's as true as gospel, for I began as a ship's carpenter." + +"Your hands, my dear sir. Your right hand is quite a size larger than your left. You have worked with it, and the muscles are more developed." + +"Well, the snuff, then, and the Freemasonry?" + +"I won't insult your intelligence by telling you how I read that, especially as, rather against the strict rules of your order, you use an arc-and-compass breastpin." + +"Ah, of course, I forgot that. But the writing?" + +"What else can be indicated by that right cuff so very shiny for five inches, and the left one with the smooth patch near the elbow where you rest it upon the desk?" + +"Well, but China?" + +"The fish that you have tattooed immediately above your right wrist could only have been done in China. I have made a small study of tattoo marks and have even contributed to the literature of the subject. That trick of staining the fishes' scales of a delicate pink is quite peculiar to China. When, in addition, I see a Chinese coin hanging from your watch-chain, the matter becomes even more simple." + +Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I thought at first that you had done something clever, but I see that there was nothing in it after all." + +"I begin to think, Watson," said Holmes, "that I make a mistake in explaining. 'Omne ignotum pro magnifico,' you know, and my poor little reputation, such as it is, will suffer shipwreck if I am so candid. Can you not find the advertisement, Mr. Wilson?" + +"Yes, I have got it now," he answered with his thick red finger planted halfway down the column. "Here it is. This is what began it all. You just read it for yourself, sir." + +I took the paper from him and read as follows: + +"TO THE RED-HEADED LEAGUE: On account of the bequest of the late Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now another vacancy open which entitles a member of the League to a salary of $4 a week for purely nominal services. All red-headed men who are sound in body and mind and above the age of twenty-one years, are eligible. Apply in person on Monday, at eleven o'clock, to Duncan Ross, at the offices of the League, 7 Pope's Court, Fleet Street." + +"What on earth does this mean?" I ejaculated after I had twice read over the extraordinary announcement. + +Holmes chuckled and wriggled in his chair, as was his habit when in high spirits. "It is a little off the beaten track, isn't it?" said he. "And now, Mr. Wilson, off you go at scratch and tell us all about yourself, your household, and the effect which this advertisement had upon your fortunes. You will first make a note, Doctor, of the paper and the date." + +"It is The Morning Chronicle of April 27, 1890. Just two months ago." + +"Very good. Now, Mr. Wilson?" + +"Well, it is just as I have been telling you, Mr. Sherlock Holmes," said Jabez Wilson, mopping his forehead; "I have a small pawnbroker's business at Coburg Square, near the City. It's not a very large affair, and of late years it has not done more than just give me a living. I used to be able to keep two assistants, but now I only keep one; and I would have a job to pay him but that he is willing to come for half wages so as to learn the business." + +"What is the name of this obliging youth?" asked Sherlock Holmes. + +"His name is Vincent Spaulding, and he's not such a youth, either. It's hard to say his age. I should not wish a smarter assistant, Mr. Holmes; and I know very well that he could better himself and earn twice what I am able to give him. But, after all, if he is satisfied, why should I put ideas in his head?" + +"Why, indeed? You seem most fortunate in having an employe who comes under the full market price. It is not a common experience among employers in this age. I don't know that your assistant is not as remarkable as your advertisement." + +"Oh, he has his faults, too," said Mr. Wilson. "Never was such a fellow for photography. Snapping away with a camera when he ought to be improving his mind, and then diving down into the cellar like a rabbit into its hole to develop his pictures. That is his main fault, but on the whole he's a good worker. There's no vice in him." + +"He is still with you, I presume?" + +"Yes, sir. He and a girl of fourteen, who does a bit of simple cooking and keeps the place clean--that's all I have in the house, for I am a widower and never had any family. We live very quietly, sir, the three of us; and we keep a roof over our heads and pay our debts, if we do nothing more. + +"The first thing that put us out was that advertisement. Spaulding, he came down into the office just this day eight weeks, with this very paper in his hand, and he says: + +" 'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' + +" 'Why that?' I asks. + +" 'Why,' says he, 'here's another vacancy on the League of the Red-headed Men. It's worth quite a little fortune to any man who gets it, and I understand that there are more vacancies than there are men, so that the trustees are at their wits' end what to do with the money. If my hair would only change colour, here's a nice little crib all ready for me to step into.' + +" 'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a very stay-at-home man, and as my business came to me instead of my having to go to it, I was often weeks on end without putting my foot over the door-mat. In that way I didn't know much of what was going on outside, and I was always glad of a bit of news. + +" 'Have you never heard of the League of the Red-headed Men?' he asked with his eyes open. + +" 'Never.' + +" 'Why, I wonder at that, for you are eligible yourself for one of the vacancies.' + +" 'And what are they worth?' I asked. + +" 'Oh, merely a couple of hundred a year, but the work is slight, and it need not interfere very much with one's other occupations.' + +"Well, you can easily think that that made me prick up my ears, for the business has not been over good for some years, and an extra couple of hundred would have been very handy. + +" 'Tell me all about it,' said I. + +" 'Well,' said he, showing me the advertisement, 'you can see for yourself that the League has a vacancy, and there is the address where you should apply for particulars. As far as I can make out, the League was founded by an American millionaire, Ezekiah Hopkins, who was very peculiar in his ways. He was himself red-headed, and he had a great sympathy for all red-headed men; so, when he died, it was found that he had left his enormous fortune in the hands of trustees, with instructions to apply the interest to the providing of easy berths to men whose hair is of that colour. From all I hear it is splendid pay and very little to do.' + +" 'But,' said I, 'there would be millions of red-headed men who would apply.' + +" 'Not so many as you might think,' he answered. 'You see it is really confined to Londoners, and to grown men. This American had started from London when he was young, and he wanted to do the old town a good turn. Then, again, I have heard it is no use your applying if your hair is light red, or dark red, or anything but real bright, blazing, fiery red. Now, if you cared to apply, Mr. Wilson, you would just walk in; but perhaps it would hardly be worth your while to put yourself out of the way for the sake of a few hundred pounds.' + +"Now, it is a fact, gentlemen, as you may see for yourselves, that my hair is of a very full and rich tint, so that it seemed to me that if there was to be any competition in the matter I stood as good a chance as any man that I had ever met. Vincent Spaulding seemed to know so much about it that I thought he might prove useful, so I just ordered him to put up the shutters for the day and to come right away with me. He was very willing to have a holiday, so we shut the business up and started off for the address that was given us in the advertisement. + +"I never hope to see such a sight as that again, Mr. Holmes. From north, south, east, and west every man who had a shade of red in his hair had tramped into the city to answer the advertisement. Fleet Street was choked with red-headed folk, and Pope's Court looked like a coster's orange barrow. I should not have thought there were so many in the whole country as were brought together by that single advertisement. Every shade of colour they were--straw, lemon, orange, brick, Irish-setter, liver, clay; but, as Spaulding said, there were not many who had the real vivid flame-coloured tint. When I saw how many were waiting, I would have given it up in despair; but Spaulding would not hear of it. How he did it I could not imagine, but he pushed and pulled and butted until he got me through the crowd, and right up to the steps which led to the office. There was a double stream upon the stair, some going up in hope, and some coming back dejected; but we wedged in as well as we could and soon found ourselves in the office." + +"Your experience has been a most entertaining one," remarked Holmes as his client paused and refreshed his memory with a huge pinch of snuff. "Pray continue your very interesting statement." + +"There was nothing in the office but a couple of wooden chairs and a deal table, behind which sat a small man with a head that was even redder than mine. He said a few words to each candidate as he came up, and then he always managed to find some fault in them which would disqualify them. Getting a vacancy did not seem to be such a very easy matter, after all. However, when our turn came the little man was much more favourable to me than to any of the others, and he closed the door as we entered, so that he might have a private word with us. + +" 'This is Mr. Jabez Wilson,' said my assistant, 'and he is willing to fill a vacancy in the League.' + +" 'And he is admirably suited for it,' the other answered. 'He has every requirement. I cannot recall when I have seen anything so fine.' He took a step backward, cocked his head on one side, and gazed at my hair until I felt quite bashful. Then suddenly he plunged forward, wrung my hand, and congratulated me warmly on my success. + +" 'It would be injustice to hesitate,' said he. 'You will, however, I am sure, excuse me for taking an obvious precaution.' With that he seized my hair in both his hands, and tugged until I yelled with the pain. 'There is water in your eyes,' said he as he released me. 'I perceive that all is as it should be. But we have to be careful, for we have twice been deceived by wigs and once by paint. I could tell you tales of cobbler's wax which would disgust you with human nature.' He stepped over to the window and shouted through it at the top of his voice that the vacancy was filled. A groan of disappointment came up from below, and the folk all trooped away in different directions until there was not a red-head to be seen except my own and that of the manager. + +" 'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of the pensioners upon the fund left by our noble benefactor. Are you a married man, Mr. Wilson? Have you a family?' + +"I answered that I had not. + +"His face fell immediately. + +" 'Dear me!' he said gravely, 'that is very serious indeed! I am sorry to hear you say that. The fund was, of course, for the propagation and spread of the red-heads as well as for their maintenance. It is exceedingly unfortunate that you should be a bachelor.' + +"My face lengthened at this, Mr. Holmes, for I thought that I was not to have the vacancy after all; but after thinking it over for a few minutes he said that it would be all right. + +" 'In the case of another,' said he, 'the objection might be fatal, but we must stretch a point in favour of a man with such a head of hair as yours. When shall you be able to enter upon your new duties?' + +" 'Well, it is a little awkward, for I have a business already,' said I. + +" 'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. 'I should be able to look after that for you.' + +" 'What would be the hours?' I asked. + +" 'Ten to two.' + +"Now a pawnbroker's business is mostly done of an evening, Mr. Holmes, especially Thursday and Friday evening, which is just before pay-day; so it would suit me very well to earn a little in the mornings. Besides, I knew that my assistant was a good man, and that he would see to anything that turned up. + +" 'That would suit me very well,' said I. 'And the pay?' + +" 'Is $4 a week.' + +" 'And the work?' + +" 'Is purely nominal.' + +" 'What do you call purely nominal?' + +" 'Well, you have to be in the office, or at least in the building, the whole time. If you leave, you forfeit your whole position forever. The will is very clear upon that point. You don't comply with the conditions if you budge from the office during that time.' + +" 'It's only four hours a day, and I should not think of leaving,' said I. + +" 'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness nor business nor anything else. There you must stay, or you lose your billet.' + +" 'And the work?' + +" 'Is to copy out the Encyclopaedia Britannica. There is the first volume of it in that press. You must find your own ink, pens, and blotting-paper, but we provide this table and chair. Will you be ready to-morrow?' + +" 'Certainly,' I answered. + +" 'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you once more on the important position which you have been fortunate enough to gain.' He bowed me out of the room and I went home with my assistant, hardly knowing what to say or do, I was so pleased at my own good fortune. + +"Well, I thought over the matter all day, and by evening I was in low spirits again; for I had quite persuaded myself that the whole affair must be some great hoax or fraud, though what its object might be I could not imagine. It seemed altogether past belief that anyone could make such a will, or that they would pay such a sum for doing anything so simple as copying out the Encyclopaedia Britannica. Vincent Spaulding did what he could to cheer me up, but by bedtime I had reasoned myself out of the whole thing. However, in the morning I determined to have a look at it anyhow, so I bought a penny bottle of ink, and with a quill-pen, and seven sheets of foolscap paper, I started off for Pope's Court. + +"Well, to my surprise and delight, everything was as right as possible. The table was set out ready for me, and Mr. Duncan Ross was there to see that I got fairly to work. He started me off upon the letter A, and then he left me; but he would drop in from time to time to see that all was right with me. At two o'clock he bade me good-day, complimented me upon the amount that I had written, and locked the door of the office after me. + +"This went on day after day, Mr. Holmes, and on Saturday the manager came in and planked down four golden sovereigns for my week's work. It was the same next week, and the same the week after. Every morning I was there at ten, and every afternoon I left at two. By degrees Mr. Duncan Ross took to coming in only once of a morning, and then, after a time, he did not come in at all. Still, of course, I never dared to leave the room for an instant, for I was not sure when he might come, and the billet was such a good one, and suited me so well, that I would not risk the loss of it. + +"Eight weeks passed away like this, and I had written about Abbots and Archery and Armour and Architecture and Attica, and hoped with diligence that I might get on to the B's before very long. It cost me something in foolscap, and I had pretty nearly filled a shelf with my writings. And then suddenly the whole business came to an end." + +"To an end?" + +"Yes, sir. And no later than this morning. I went to my work as usual at ten o'clock, but the door was shut and locked, with a little square of cardboard hammered on to the middle of the panel with a tack. Here it is, and you can read for yourself." + +He held up a piece of white cardboard about the size of a sheet of note-paper. It read in this fashion: + + +THE RED-HEADED LEAGUE + +IS + +DISSOLVED. + +October 9, 1890. + + +Sherlock Holmes and I surveyed this curt announcement and the rueful face behind it, until the comical side of the affair so completely overtopped every other consideration that we both burst out into a roar of laughter. + +"I cannot see that there is anything very funny," cried our client, flushing up to the roots of his flaming head. "If you can do nothing better than laugh at me, I can go elsewhere." + +"No, no," cried Holmes, shoving him back into the chair from which he had half risen. "I really wouldn't miss your case for the world. It is most refreshingly unusual. But there is, if you will excuse my saying so, something just a little funny about it. Pray what steps did you take when you found the card upon the door?" + +"I was staggered, sir. I did not know what to do. Then I called at the offices round, but none of them seemed to know anything about it. Finally, I went to the landlord, who is an accountant living on the ground floor, and I asked him if he could tell me what had become of the Red-headed League. He said that he had never heard of any such body. Then I asked him who Mr. Duncan Ross was. He answered that the name was new to him. + +" 'Well,' said I, 'the gentleman at No. 4.' + +" 'What, the red-headed man?' + +" 'Yes.' + +" 'Oh,' said he, 'his name was William Morris. He was a solicitor and was using my room as a temporary convenience until his new premises were ready. He moved out yesterday.' + +" 'Where could I find him?' + +" 'Oh, at his new offices. He did tell me the address. Yes, 17 King Edward Street, near St. Paul's.' + +"I started off, Mr. Holmes, but when I got to that address it was a manufactory of artificial knee-caps, and no one in it had ever heard of either Mr. William Morris or Mr. Duncan Ross." + +"And what did you do then?" asked Holmes. + +"I went home to Saxe-Coburg Square, and I took the advice of my assistant. But he could not help me in any way. He could only say that if I waited I should hear by post. But that was not quite good enough, Mr. Holmes. I did not wish to lose such a place without a struggle, so, as I had heard that you were good enough to give advice to poor folk who were in need of it, I came right away to you." + +"And you did very wisely," said Holmes. "Your case is an exceedingly remarkable one, and I shall be happy to look into it. From what you have told me I think that it is possible that graver issues hang from it than might at first sight appear." + +"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four pound a week." + +"As far as you are personally concerned," remarked Holmes, "I do not see that you have any grievance against this extraordinary league. On the contrary, you are, as I understand, richer by some $30, to say nothing of the minute knowledge which you have gained on every subject which comes under the letter A. You have lost nothing by them." + +"No, sir. But I want to find out about them, and who they are, and what their object was in playing this prank--if it was a prank--upon me. It was a pretty expensive joke for them, for it cost them two and thirty pounds." + +"We shall endeavour to clear up these points for you. And, first, one or two questions, Mr. Wilson. This assistant of yours who first called your attention to the advertisement--how long had he been with you?" + +"About a month then." + +"How did he come?" + +"In answer to an advertisement." + +"Was he the only applicant?" + +"No, I had a dozen." + +"Why did you pick him?" + +"Because he was handy and would come cheap." + +"At half wages, in fact." + +"Yes." + +"What is he like, this Vincent Spaulding?" + +"Small, stout-built, very quick in his ways, no hair on his face, though he's not short of thirty. Has a white splash of acid upon his forehead." + +Holmes sat up in his chair in considerable excitement. "I thought as much," said he. "Have you ever observed that his ears are pierced for earrings?" + +"Yes, sir. He told me that a gipsy had done it for him when he was a lad." + +"Hum!" said Holmes, sinking back in deep thought. "He is still with you?" + +"Oh, yes, sir; I have only just left him." + +"And has your business been attended to in your absence?" + +"Nothing to complain of, sir. There's never very much to do of a morning." + +"That will do, Mr. Wilson. I shall be happy to give you an opinion upon the subject in the course of a day or two. To-day is Saturday, and I hope that by Monday we may come to a conclusion." + +"Well, Watson," said Holmes when our visitor had left us, "what do you make of it all?" + +"I make nothing of it," I answered frankly. "It is a most mysterious business." + +"As a rule," said Holmes, "the more bizarre a thing is the less mysterious it proves to be. It is your commonplace, featureless crimes which are really puzzling, just as a commonplace face is the most difficult to identify. But I must be prompt over this matter." + +"What are you going to do, then?" I asked. + +"To smoke," he answered. "It is quite a three pipe problem, and I beg that you won't speak to me for fifty minutes." He curled himself up in his chair, with his thin knees drawn up to his hawk-like nose, and there he sat with his eyes closed and his black clay pipe thrusting out like the bill of some strange bird. I had come to the conclusion that he had dropped asleep, and indeed was nodding myself, when he suddenly sprang out of his chair with the gesture of a man who has made up his mind and put his pipe down upon the mantelpiece. + +"Sarasate plays at the St. James's Hall this afternoon," he remarked. "What do you think, Watson? Could your patients spare you for a few hours?" + +"I have nothing to do to-day. My practice is never very absorbing." + +"Then put on your hat and come. I am going through the City first, and we can have some lunch on the way. I observe that there is a good deal of German music on the programme, which is rather more to my taste than Italian or French. It is introspective, and I want to introspect. Come along!" + +We travelled by the Underground as far as Aldersgate; and a short walk took us to Saxe-Coburg Square, the scene of the singular story which we had listened to in the morning. It was a poky, little, shabby-genteel place, where four lines of dingy two-storied brick houses looked out into a small railed-in enclosure, where a lawn of weedy grass and a few clumps of faded laurel bushes made a hard fight against a smoke-laden and uncongenial atmosphere. Three gilt balls and a brown board with "JABEZ WILSON" in white letters, upon a corner house, announced the place where our red-headed client carried on his business. Sherlock Holmes stopped in front of it with his head on one side and looked it all over, with his eyes shining brightly between puckered lids. Then he walked slowly up the street, and then down again to the corner, still looking keenly at the houses. Finally he returned to the pawnbroker's, and, having thumped vigorously upon the pavement with his stick two or three times, he went up to the door and knocked. It was instantly opened by a bright-looking, clean-shaven young fellow, who asked him to step in. + +"Thank you," said Holmes, "I only wished to ask you how you would go from here to the Strand." + +"Third right, fourth left," answered the assistant promptly, closing the door. + +"Smart fellow, that," observed Holmes as we walked away. "He is, in my judgment, the fourth smartest man in London, and for daring I am not sure that he has not a claim to be third. I have known something of him before." + +"Evidently," said I, "Mr. Wilson's assistant counts for a good deal in this mystery of the Red-headed League. I am sure that you inquired your way merely in order that you might see him." + +"Not him." + +"What then?" + +"The knees of his trousers." + +"And what did you see?" + +"What I expected to see." + +"Why did you beat the pavement?" + +"My dear doctor, this is a time for observation, not for talk. We are spies in an enemy's country. We know something of Saxe-Coburg Square. Let us now explore the parts which lie behind it." + +The road in which we found ourselves as we turned round the corner from the retired Saxe-Coburg Square presented as great a contrast to it as the front of a picture does to the back. It was one of the main arteries which conveyed the traffic of the City to the north and west. The roadway was blocked with the immense stream of commerce flowing in a double tide inward and outward, while the footpaths were black with the hurrying swarm of pedestrians. It was difficult to realise as we looked at the line of fine shops and stately business premises that they really abutted on the other side upon the faded and stagnant square which we had just quitted. + +"Let me see," said Holmes, standing at the corner and glancing along the line, "I should like just to remember the order of the houses here. It is a hobby of mine to have an exact knowledge of London. There is Mortimer's, the tobacconist, the little newspaper shop, the Coburg branch of the City and Suburban Bank, the Vegetarian Restaurant, and McFarlane's carriage-building depot. That carries us right on to the other block. And now, Doctor, we've done our work, so it's time we had some play. A sandwich and a cup of coffee, and then off to violin-land, where all is sweetness and delicacy and harmony, and there are no red-headed clients to vex us with their conundrums." + +My friend was an enthusiastic musician, being himself not only a very capable performer but a composer of no ordinary merit. All the afternoon he sat in the stalls wrapped in the most perfect happiness, gently waving his long, thin fingers in time to the music, while his gently smiling face and his languid, dreamy eyes were as unlike those of Holmes the sleuth-hound, Holmes the relentless, keen-witted, ready-handed criminal agent, as it was possible to conceive. In his singular character the dual nature alternately asserted itself, and his extreme exactness and astuteness represented, as I have often thought, the reaction against the poetic and contemplative mood which occasionally predominated in him. The swing of his nature took him from extreme languor to devouring energy; and, as I knew well, he was never so truly formidable as when, for days on end, he had been lounging in his armchair amid his improvisations and his black-letter editions. Then it was that the lust of the chase would suddenly come upon him, and that his brilliant reasoning power would rise to the level of intuition, until those who were unacquainted with his methods would look askance at him as on a man whose knowledge was not that of other mortals. When I saw him that afternoon so enwrapped in the music at St. James's Hall I felt that an evil time might be coming upon those whom he had set himself to hunt down. + +"You want to go home, no doubt, Doctor," he remarked as we emerged. + +"Yes, it would be as well." + +"And I have some business to do which will take some hours. This business at Coburg Square is serious." + +"Why serious?" + +"A considerable crime is in contemplation. I have every reason to believe that we shall be in time to stop it. But to-day being Saturday rather complicates matters. I shall want your help to-night." + +"At what time?" + +"Ten will be early enough." + +"I shall be at Baker Street at ten." + +"Very well. And, I say, Doctor, there may be some little danger, so kindly put your army revolver in your pocket." He waved his hand, turned on his heel, and disappeared in an instant among the crowd. + +I trust that I am not more dense than my neighbours, but I was always oppressed with a sense of my own stupidity in my dealings with Sherlock Holmes. Here I had heard what he had heard, I had seen what he had seen, and yet from his words it was evident that he saw clearly not only what had happened but what was about to happen, while to me the whole business was still confused and grotesque. As I drove home to my house in Kensington I thought over it all, from the extraordinary story of the red-headed copier of the Encyclopaedia down to the visit to Saxe-Coburg Square, and the ominous words with which he had parted from me. What was this nocturnal expedition, and why should I go armed? Where were we going, and what were we to do? I had the hint from Holmes that this smooth-faced pawnbroker's assistant was a formidable man--a man who might play a deep game. I tried to puzzle it out, but gave it up in despair and set the matter aside until night should bring an explanation. + +It was a quarter-past nine when I started from home and made my way across the Park, and so through Oxford Street to Baker Street. Two hansoms were standing at the door, and as I entered the passage I heard the sound of voices from above. On entering his room, I found Holmes in animated conversation with two men, one of whom I recognised as Peter Jones, the official police agent, while the other was a long, thin, sad-faced man, with a very shiny hat and oppressively respectable frock-coat. + +"Ha! Our party is complete," said Holmes, buttoning up his pea-jacket and taking his heavy hunting crop from the rack. "Watson, I think you know Mr. Jones, of Scotland Yard? Let me introduce you to Mr. Merryweather, who is to be our companion in to-night's adventure." + +"We're hunting in couples again, Doctor, you see," said Jones in his consequential way. "Our friend here is a wonderful man for starting a chase. All he wants is an old dog to help him to do the running down." + +"I hope a wild goose may not prove to be the end of our chase," observed Mr. Merryweather gloomily. + +"You may place considerable confidence in Mr. Holmes, sir," said the police agent loftily. "He has his own little methods, which are, if he won't mind my saying so, just a little too theoretical and fantastic, but he has the makings of a detective in him. It is not too much to say that once or twice, as in that business of the Sholto murder and the Agra treasure, he has been more nearly correct than the official force." + +"Oh, if you say so, Mr. Jones, it is all right," said the stranger with deference. "Still, I confess that I miss my rubber. It is the first Saturday night for seven-and-twenty years that I have not had my rubber." + +"I think you will find," said Sherlock Holmes, "that you will play for a higher stake to-night than you have ever done yet, and that the play will be more exciting. For you, Mr. Merryweather, the stake will be some $30,000; and for you, Jones, it will be the man upon whom you wish to lay your hands." + +"John Clay, the murderer, thief, smasher, and forger. He's a young man, Mr. Merryweather, but he is at the head of his profession, and I would rather have my bracelets on him than on any criminal in London. He's a remarkable man, is young John Clay. His grandfather was a royal duke, and he himself has been to Eton and Oxford. His brain is as cunning as his fingers, and though we meet signs of him at every turn, we never know where to find the man himself. He'll crack a crib in Scotland one week, and be raising money to build an orphanage in Cornwall the next. I've been on his track for years and have never set eyes on him yet." + +"I hope that I may have the pleasure of introducing you to-night. I've had one or two little turns also with Mr. John Clay, and I agree with you that he is at the head of his profession. It is past ten, however, and quite time that we started. If you two will take the first hansom, Watson and I will follow in the second." + +Sherlock Holmes was not very communicative during the long drive and lay back in the cab humming the tunes which he had heard in the afternoon. We rattled through an endless labyrinth of gas-lit streets until we emerged into Farrington Street. + +"We are close there now," my friend remarked. "This fellow Merryweather is a bank director, and personally interested in the matter. I thought it as well to have Jones with us also. He is not a bad fellow, though an absolute imbecile in his profession. He has one positive virtue. He is as brave as a bulldog and as tenacious as a lobster if he gets his claws upon anyone. Here we are, and they are waiting for us." + +We had reached the same crowded thoroughfare in which we had found ourselves in the morning. Our cabs were dismissed, and, following the guidance of Mr. Merryweather, we passed down a narrow passage and through a side door, which he opened for us. Within there was a small corridor, which ended in a very massive iron gate. This also was opened, and led down a flight of winding stone steps, which terminated at another formidable gate. Mr. Merryweather stopped to light a lantern, and then conducted us down a dark, earth-smelling passage, and so, after opening a third door, into a huge vault or cellar, which was piled all round with crates and massive boxes. + +"You are not very vulnerable from above," Holmes remarked as he held up the lantern and gazed about him. + +"Nor from below," said Mr. Merryweather, striking his stick upon the flags which lined the floor. "Why, dear me, it sounds quite hollow!" he remarked, looking up in surprise. + +"I must really ask you to be a little more quiet!" said Holmes severely. "You have already imperilled the whole success of our expedition. Might I beg that you would have the goodness to sit down upon one of those boxes, and not to interfere?" + +The solemn Mr. Merryweather perched himself upon a crate, with a very injured expression upon his face, while Holmes fell upon his knees upon the floor and, with the lantern and a magnifying lens, began to examine minutely the cracks between the stones. A few seconds sufficed to satisfy him, for he sprang to his feet again and put his glass in his pocket. + +"We have at least an hour before us," he remarked, "for they can hardly take any steps until the good pawnbroker is safely in bed. Then they will not lose a minute, for the sooner they do their work the longer time they will have for their escape. We are at present, Doctor--as no doubt you have divined--in the cellar of the City branch of one of the principal London banks. Mr. Merryweather is the chairman of directors, and he will explain to you that there are reasons why the more daring criminals of London should take a considerable interest in this cellar at present." + +"It is our French gold," whispered the director. "We have had several warnings that an attempt might be made upon it." + +"Your French gold?" + +"Yes. We had occasion some months ago to strengthen our resources and borrowed for that purpose 30,000 napoleons from the Bank of France. It has become known that we have never had occasion to unpack the money, and that it is still lying in our cellar. The crate upon which I sit contains 2,000 napoleons packed between layers of lead foil. Our reserve of bullion is much larger at present than is usually kept in a single branch office, and the directors have had misgivings upon the subject." + +"Which were very well justified," observed Holmes. "And now it is time that we arranged our little plans. I expect that within an hour matters will come to a head. In the meantime Mr. Merryweather, we must put the screen over that dark lantern." + +"And sit in the dark?" + +"I am afraid so. I had brought a pack of cards in my pocket, and I thought that, as we were a partie carree, you might have your rubber after all. But I see that the enemy's preparations have gone so far that we cannot risk the presence of a light. And, first of all, we must choose our positions. These are daring men, and though we shall take them at a disadvantage, they may do us some harm unless we are careful. I shall stand behind this crate, and do you conceal yourselves behind those. Then, when I flash a light upon them, close in swiftly. If they fire, Watson, have no compunction about shooting them down." + +I placed my revolver, cocked, upon the top of the wooden case behind which I crouched. Holmes shot the slide across the front of his lantern and left us in pitch darkness--such an absolute darkness as I have never before experienced. The smell of hot metal remained to assure us that the light was still there, ready to flash out at a moment's notice. To me, with my nerves worked up to a pitch of expectancy, there was something depressing and subduing in the sudden gloom, and in the cold dank air of the vault. + +"They have but one retreat," whispered Holmes. "That is back through the house into Saxe-Coburg Square. I hope that you have done what I asked you, Jones?" + +"I have an inspector and two officers waiting at the front door." + +"Then we have stopped all the holes. And now we must be silent and wait." + +What a time it seemed! From comparing notes afterwards it was but an hour and a quarter, yet it appeared to me that the night must have almost gone, and the dawn be breaking above us. My limbs were weary and stiff, for I feared to change my position; yet my nerves were worked up to the highest pitch of tension, and my hearing was so acute that I could not only hear the gentle breathing of my companions, but I could distinguish the deeper, heavier in-breath of the bulky Jones from the thin, sighing note of the bank director. From my position I could look over the case in the direction of the floor. Suddenly my eyes caught the glint of a light. + +At first it was but a lurid spark upon the stone pavement. Then it lengthened out until it became a yellow line, and then, without any warning or sound, a gash seemed to open and a hand appeared, a white, almost womanly hand, which felt about in the centre of the little area of light. For a minute or more the hand, with its writhing fingers, protruded out of the floor. Then it was withdrawn as suddenly as it appeared, and all was dark again save the single lurid spark which marked a chink between the stones. + +Its disappearance, however, was but momentary. With a rending, tearing sound, one of the broad, white stones turned over upon its side and left a square, gaping hole, through which streamed the light of a lantern. Over the edge there peeped a clean-cut, boyish face, which looked keenly about it, and then, with a hand on either side of the aperture, drew itself shoulder-high and waist-high, until one knee rested upon the edge. In another instant he stood at the side of the hole and was hauling after him a companion, lithe and small like himself, with a pale face and a shock of very red hair. + +"It's all clear," he whispered. "Have you the chisel and the bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" + +Sherlock Holmes had sprung out and seized the intruder by the collar. The other dived down the hole, and I heard the sound of rending cloth as Jones clutched at his skirts. The light flashed upon the barrel of a revolver, but Holmes' hunting crop came down on the man's wrist, and the pistol clinked upon the stone floor. + +"It's no use, John Clay," said Holmes blandly. "You have no chance at all." + +"So I see," the other answered with the utmost coolness. "I fancy that my pal is all right, though I see you have got his coat-tails." + +"There are three men waiting for him at the door," said Holmes. + +"Oh, indeed! You seem to have done the thing very completely. I must compliment you." + +"And I you," Holmes answered. "Your red-headed idea was very new and effective." + +"You'll see your pal again presently," said Jones. "He's quicker at climbing down holes than I am. Just hold out while I fix the derbies." + +"I beg that you will not touch me with your filthy hands," remarked our prisoner as the handcuffs clattered upon his wrists. "You may not be aware that I have royal blood in my veins. Have the goodness, also, when you address me always to say 'sir' and 'please.' " + +"All right," said Jones with a stare and a snigger. "Well, would you please, sir, march upstairs, where we can get a cab to carry your Highness to the police-station?" + +"That is better," said John Clay serenely. He made a sweeping bow to the three of us and walked quietly off in the custody of the detective. + +"Really, Mr. Holmes," said Mr. Merryweather as we followed them from the cellar, "I do not know how the bank can thank you or repay you. There is no doubt that you have detected and defeated in the most complete manner one of the most determined attempts at bank robbery that have ever come within my experience." + +"I have had one or two little scores of my own to settle with Mr. John Clay," said Holmes. "I have been at some small expense over this matter, which I shall expect the bank to refund, but beyond that I am amply repaid by having had an experience which is in many ways unique, and by hearing the very remarkable narrative of the Red-headed League." + +"You see, Watson," he explained in the early hours of the morning as we sat over a glass of whisky and soda in Baker Street, "it was perfectly obvious from the first that the only possible object of this rather fantastic business of the advertisement of the League, and the copying of the Encyclopaedia, must be to get this not over-bright pawnbroker out of the way for a number of hours every day. It was a curious way of managing it, but, really, it would be difficult to suggest a better. The method was no doubt suggested to Clay's ingenious mind by the colour of his accomplice's hair. The $4 a week was a lure which must draw him, and what was it to them, who were playing for thousands? They put in the advertisement, one rogue has the temporary office, the other rogue incites the man to apply for it, and together they manage to secure his absence every morning in the week. From the time that I heard of the assistant having come for half wages, it was obvious to me that he had some strong motive for securing the situation." + +"But how could you guess what the motive was?" + +"Had there been women in the house, I should have suspected a mere vulgar intrigue. That, however, was out of the question. The man's business was a small one, and there was nothing in his house which could account for such elaborate preparations, and such an expenditure as they were at. It must, then, be something out of the house. What could it be? I thought of the assistant's fondness for photography, and his trick of vanishing into the cellar. The cellar! There was the end of this tangled clue. Then I made inquiries as to this mysterious assistant and found that I had to deal with one of the coolest and most daring criminals in London. He was doing something in the cellar--something which took many hours a day for months on end. What could it be, once more? I could think of nothing save that he was running a tunnel to some other building. + +"So far I had got when we went to visit the scene of action. I surprised you by beating upon the pavement with my stick. I was ascertaining whether the cellar stretched out in front or behind. It was not in front. Then I rang the bell, and, as I hoped, the assistant answered it. We have had some skirmishes, but we had never set eyes upon each other before. I hardly looked at his face. His knees were what I wished to see. You must yourself have remarked how worn, wrinkled, and stained they were. They spoke of those hours of burrowing. The only remaining point was what they were burrowing for. I walked round the corner, saw the City and Suburban Bank abutted on our friend's premises, and felt that I had solved my problem. When you drove home after the concert I called upon Scotland Yard and upon the chairman of the bank directors, with the result that you have seen." + +"And how could you tell that they would make their attempt to-night?" I asked. + +"Well, when they closed their League offices that was a sign that they cared no longer about Mr. Jabez Wilson's presence--in other words, that they had completed their tunnel. But it was essential that they should use it soon, as it might be discovered, or the bullion might be removed. Saturday would suit them better than any other day, as it would give them two days for their escape. For all these reasons I expected them to come to-night." + +"You reasoned it out beautifully," I exclaimed in unfeigned admiration. "It is so long a chain, and yet every link rings true." + +"It saved me from ennui," he answered, yawning. "Alas! I already feel it closing in upon me. My life is spent in one long effort to escape from the commonplaces of existence. These little problems help me to do so." + +"And you are a benefactor of the race," said I. + +He shrugged his shoulders. "Well, perhaps, after all, it is of some little use," he remarked. " 'L'homme c'est rien--l'oeuvre c'est tout,' as Gustave Flaubert wrote to George Sand." + +ADVENTURE III. A CASE OF IDENTITY + + +"My dear fellow," said Sherlock Holmes as we sat on either side of the fire in his lodgings at Baker Street, "life is infinitely stranger than anything which the mind of man could invent. We would not dare to conceive the things which are really mere commonplaces of existence. If we could fly out of that window hand in hand, hover over this great city, gently remove the roofs, and peep in at the queer things which are going on, the strange coincidences, the plannings, the cross-purposes, the wonderful chains of events, working through generations, and leading to the most outre results, it would make all fiction with its conventionalities and foreseen conclusions most stale and unprofitable." + +"And yet I am not convinced of it," I answered. "The cases which come to light in the papers are, as a rule, bald enough, and vulgar enough. We have in our police reports realism pushed to its extreme limits, and yet the result is, it must be confessed, neither fascinating nor artistic." + +"A certain selection and discretion must be used in producing a realistic effect," remarked Holmes. "This is wanting in the police report, where more stress is laid, perhaps, upon the platitudes of the magistrate than upon the details, which to an observer contain the vital essence of the whole matter. Depend upon it, there is nothing so unnatural as the commonplace." + +I smiled and shook my head. "I can quite understand your thinking so." I said. "Of course, in your position of unofficial adviser and helper to everybody who is absolutely puzzled, throughout three continents, you are brought in contact with all that is strange and bizarre. But here"--I picked up the morning paper from the ground--"let us put it to a practical test. Here is the first heading upon which I come. 'A husband's cruelty to his wife.' There is half a column of print, but I know without reading it that it is all perfectly familiar to me. There is, of course, the other woman, the drink, the push, the blow, the bruise, the sympathetic sister or landlady. The crudest of writers could invent nothing more crude." + +"Indeed, your example is an unfortunate one for your argument," said Holmes, taking the paper and glancing his eye down it. "This is the Dundas separation case, and, as it happens, I was engaged in clearing up some small points in connection with it. The husband was a teetotaler, there was no other woman, and the conduct complained of was that he had drifted into the habit of winding up every meal by taking out his false teeth and hurling them at his wife, which, you will allow, is not an action likely to occur to the imagination of the average story-teller. Take a pinch of snuff, Doctor, and acknowledge that I have scored over you in your example." + +He held out his snuffbox of old gold, with a great amethyst in the centre of the lid. Its splendour was in such contrast to his homely ways and simple life that I could not help commenting upon it. + +"Ah," said he, "I forgot that I had not seen you for some weeks. It is a little souvenir from the King of Bohemia in return for my assistance in the case of the Irene Adler papers." + +"And the ring?" I asked, glancing at a remarkable brilliant which sparkled upon his finger. + +"It was from the reigning family of Holland, though the matter in which I served them was of such delicacy that I cannot confide it even to you, who have been good enough to chronicle one or two of my little problems." + +"And have you any on hand just now?" I asked with interest. + +"Some ten or twelve, but none which present any feature of interest. They are important, you understand, without being interesting. Indeed, I have found that it is usually in unimportant matters that there is a field for the observation, and for the quick analysis of cause and effect which gives the charm to an investigation. The larger crimes are apt to be the simpler, for the bigger the crime the more obvious, as a rule, is the motive. In these cases, save for one rather intricate matter which has been referred to me from Marseilles, there is nothing which presents any features of interest. It is possible, however, that I may have something better before very many minutes are over, for this is one of my clients, or I am much mistaken." + +He had risen from his chair and was standing between the parted blinds gazing down into the dull neutral-tinted London street. Looking over his shoulder, I saw that on the pavement opposite there stood a large woman with a heavy fur boa round her neck, and a large curling red feather in a broad-brimmed hat which was tilted in a coquettish Duchess of Devonshire fashion over her ear. From under this great panoply she peeped up in a nervous, hesitating fashion at our windows, while her body oscillated backward and forward, and her fingers fidgeted with her glove buttons. Suddenly, with a plunge, as of the swimmer who leaves the bank, she hurried across the road, and we heard the sharp clang of the bell. + +"I have seen those symptoms before," said Holmes, throwing his cigarette into the fire. "Oscillation upon the pavement always means an affaire de coeur. She would like advice, but is not sure that the matter is not too delicate for communication. And yet even here we may discriminate. When a woman has been seriously wronged by a man she no longer oscillates, and the usual symptom is a broken bell wire. Here we may take it that there is a love matter, but that the maiden is not so much angry as perplexed, or grieved. But here she comes in person to resolve our doubts." + +As he spoke there was a tap at the door, and the boy in buttons entered to announce Miss Mary Sutherland, while the lady herself loomed behind his small black figure like a full-sailed merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed her with the easy courtesy for which he was remarkable, and, having closed the door and bowed her into an armchair, he looked her over in the minute and yet abstracted fashion which was peculiar to him. + +"Do you not find," he said, "that with your short sight it is a little trying to do so much typewriting?" + +"I did at first," she answered, "but now I know where the letters are without looking." Then, suddenly realising the full purport of his words, she gave a violent start and looked up, with fear and astonishment upon her broad, good-humoured face. "You've heard about me, Mr. Holmes," she cried, "else how could you know all that?" + +"Never mind," said Holmes, laughing; "it is my business to know things. Perhaps I have trained myself to see what others overlook. If not, why should you come to consult me?" + +"I came to you, sir, because I heard of you from Mrs. Etherege, whose husband you found so easy when the police and everyone had given him up for dead. Oh, Mr. Holmes, I wish you would do as much for me. I'm not rich, but still I have a hundred a year in my own right, besides the little that I make by the machine, and I would give it all to know what has become of Mr. Hosmer Angel." + +"Why did you come away to consult me in such a hurry?" asked Sherlock Holmes, with his finger-tips together and his eyes to the ceiling. + +Again a startled look came over the somewhat vacuous face of Miss Mary Sutherland. "Yes, I did bang out of the house," she said, "for it made me angry to see the easy way in which Mr. Windibank--that is, my father--took it all. He would not go to the police, and he would not go to you, and so at last, as he would do nothing and kept on saying that there was no harm done, it made me mad, and I just on with my things and came right away to you." + +"Your father," said Holmes, "your stepfather, surely, since the name is different." + +"Yes, my stepfather. I call him father, though it sounds funny, too, for he is only five years and two months older than myself." + +"And your mother is alive?" + +"Oh, yes, mother is alive and well. I wasn't best pleased, Mr. Holmes, when she married again so soon after father's death, and a man who was nearly fifteen years younger than herself. Father was a plumber in the Tottenham Court Road, and he left a tidy business behind him, which mother carried on with Mr. Hardy, the foreman; but when Mr. Windibank came he made her sell the business, for he was very superior, being a traveller in wines. They got $4700 for the goodwill and interest, which wasn't near as much as father could have got if he had been alive." + +I had expected to see Sherlock Holmes impatient under this rambling and inconsequential narrative, but, on the contrary, he had listened with the greatest concentration of attention. + +"Your own little income," he asked, "does it come out of the business?" + +"Oh, no, sir. It is quite separate and was left me by my uncle Ned in Auckland. It is in New Zealand stock, paying 4 1/4 per cent. Two thousand five hundred pounds was the amount, but I can only touch the interest." + +"You interest me extremely," said Holmes. "And since you draw so large a sum as a hundred a year, with what you earn into the bargain, you no doubt travel a little and indulge yourself in every way. I believe that a single lady can get on very nicely upon an income of about $60." + +"I could do with much less than that, Mr. Holmes, but you understand that as long as I live at home I don't wish to be a burden to them, and so they have the use of the money just while I am staying with them. Of course, that is only just for the time. Mr. Windibank draws my interest every quarter and pays it over to mother, and I find that I can do pretty well with what I earn at typewriting. It brings me twopence a sheet, and I can often do from fifteen to twenty sheets in a day." + +"You have made your position very clear to me," said Holmes. "This is my friend, Dr. Watson, before whom you can speak as freely as before myself. Kindly tell us now all about your connection with Mr. Hosmer Angel." + +A flush stole over Miss Sutherland's face, and she picked nervously at the fringe of her jacket. "I met him first at the gasfitters' ball," she said. "They used to send father tickets when he was alive, and then afterwards they remembered us, and sent them to mother. Mr. Windibank did not wish us to go. He never did wish us to go anywhere. He would get quite mad if I wanted so much as to join a Sunday-school treat. But this time I was set on going, and I would go; for what right had he to prevent? He said the folk were not fit for us to know, when all father's friends were to be there. And he said that I had nothing fit to wear, when I had my purple plush that I had never so much as taken out of the drawer. At last, when nothing else would do, he went off to France upon the business of the firm, but we went, mother and I, with Mr. Hardy, who used to be our foreman, and it was there I met Mr. Hosmer Angel." + +"I suppose," said Holmes, "that when Mr. Windibank came back from France he was very annoyed at your having gone to the ball." + +"Oh, well, he was very good about it. He laughed, I remember, and shrugged his shoulders, and said there was no use denying anything to a woman, for she would have her way." + +"I see. Then at the gasfitters' ball you met, as I understand, a gentleman called Mr. Hosmer Angel." + +"Yes, sir. I met him that night, and he called next day to ask if we had got home all safe, and after that we met him--that is to say, Mr. Holmes, I met him twice for walks, but after that father came back again, and Mr. Hosmer Angel could not come to the house any more." + +"No?" + +"Well, you know father didn't like anything of the sort. He wouldn't have any visitors if he could help it, and he used to say that a woman should be happy in her own family circle. But then, as I used to say to mother, a woman wants her own circle to begin with, and I had not got mine yet." + +"But how about Mr. Hosmer Angel? Did he make no attempt to see you?" + +"Well, father was going off to France again in a week, and Hosmer wrote and said that it would be safer and better not to see each other until he had gone. We could write in the meantime, and he used to write every day. I took the letters in in the morning, so there was no need for father to know." + +"Were you engaged to the gentleman at this time?" + +"Oh, yes, Mr. Holmes. We were engaged after the first walk that we took. Hosmer--Mr. Angel--was a cashier in an office in Leadenhall Street--and--" + +"What office?" + +"That's the worst of it, Mr. Holmes, I don't know." + +"Where did he live, then?" + +"He slept on the premises." + +"And you don't know his address?" + +"No--except that it was Leadenhall Street." + +"Where did you address your letters, then?" + +"To the Leadenhall Street Post Office, to be left till called for. He said that if they were sent to the office he would be chaffed by all the other clerks about having letters from a lady, so I offered to typewrite them, like he did his, but he wouldn't have that, for he said that when I wrote them they seemed to come from me, but when they were typewritten he always felt that the machine had come between us. That will just show you how fond he was of me, Mr. Holmes, and the little things that he would think of." + +"It was most suggestive," said Holmes. "It has long been an axiom of mine that the little things are infinitely the most important. Can you remember any other little things about Mr. Hosmer Angel?" + +"He was a very shy man, Mr. Holmes. He would rather walk with me in the evening than in the daylight, for he said that he hated to be conspicuous. Very retiring and gentlemanly he was. Even his voice was gentle. He'd had the quinsy and swollen glands when he was young, he told me, and it had left him with a weak throat, and a hesitating, whispering fashion of speech. He was always well dressed, very neat and plain, but his eyes were weak, just as mine are, and he wore tinted glasses against the glare." + +"Well, and what happened when Mr. Windibank, your stepfather, returned to France?" + +"Mr. Hosmer Angel came to the house again and proposed that we should marry before father came back. He was in dreadful earnest and made me swear, with my hands on the Testament, that whatever happened I would always be true to him. Mother said he was quite right to make me swear, and that it was a sign of his passion. Mother was all in his favour from the first and was even fonder of him than I was. Then, when they talked of marrying within the week, I began to ask about father; but they both said never to mind about father, but just to tell him afterwards, and mother said she would make it all right with him. I didn't quite like that, Mr. Holmes. It seemed funny that I should ask his leave, as he was only a few years older than me; but I didn't want to do anything on the sly, so I wrote to father at Bordeaux, where the company has its French offices, but the letter came back to me on the very morning of the wedding." + +"It missed him, then?" + +"Yes, sir; for he had started to England just before it arrived." + +"Ha! that was unfortunate. Your wedding was arranged, then, for the Friday. Was it to be in church?" + +"Yes, sir, but very quietly. It was to be at St. Saviour's, near King's Cross, and we were to have breakfast afterwards at the St. Pancras Hotel. Hosmer came for us in a hansom, but as there were two of us he put us both into it and stepped himself into a four-wheeler, which happened to be the only other cab in the street. We got to the church first, and when the four-wheeler drove up we waited for him to step out, but he never did, and when the cabman got down from the box and looked there was no one there! The cabman said that he could not imagine what had become of him, for he had seen him get in with his own eyes. That was last Friday, Mr. Holmes, and I have never seen or heard anything since then to throw any light upon what became of him." + +"It seems to me that you have been very shamefully treated," said Holmes. + +"Oh, no, sir! He was too good and kind to leave me so. Why, all the morning he was saying to me that, whatever happened, I was to be true; and that even if something quite unforeseen occurred to separate us, I was always to remember that I was pledged to him, and that he would claim his pledge sooner or later. It seemed strange talk for a wedding-morning, but what has happened since gives a meaning to it." + +"Most certainly it does. Your own opinion is, then, that some unforeseen catastrophe has occurred to him?" + +"Yes, sir. I believe that he foresaw some danger, or else he would not have talked so. And then I think that what he foresaw happened." + +"But you have no notion as to what it could have been?" + +"None." + +"One more question. How did your mother take the matter?" + +"She was angry, and said that I was never to speak of the matter again." + +"And your father? Did you tell him?" + +"Yes; and he seemed to think, with me, that something had happened, and that I should hear of Hosmer again. As he said, what interest could anyone have in bringing me to the doors of the church, and then leaving me? Now, if he had borrowed my money, or if he had married me and got my money settled on him, there might be some reason, but Hosmer was very independent about money and never would look at a shilling of mine. And yet, what could have happened? And why could he not write? Oh, it drives me half-mad to think of it, and I can't sleep a wink at night." She pulled a little handkerchief out of her muff and began to sob heavily into it. + +"I shall glance into the case for you," said Holmes, rising, "and I have no doubt that we shall reach some definite result. Let the weight of the matter rest upon me now, and do not let your mind dwell upon it further. Above all, try to let Mr. Hosmer Angel vanish from your memory, as he has done from your life." + +"Then you don't think I'll see him again?" + +"I fear not." + +"Then what has happened to him?" + +"You will leave that question in my hands. I should like an accurate description of him and any letters of his which you can spare." + +"I advertised for him in last Saturday's Chronicle," said she. "Here is the slip and here are four letters from him." + +"Thank you. And your address?" + +"No. 31 Lyon Place, Camberwell." + +"Mr. Angel's address you never had, I understand. Where is your father's place of business?" + +"He travels for Westhouse & Marbank, the great claret importers of Fenchurch Street." + +"Thank you. You have made your statement very clearly. You will leave the papers here, and remember the advice which I have given you. Let the whole incident be a sealed book, and do not allow it to affect your life." + +"You are very kind, Mr. Holmes, but I cannot do that. I shall be true to Hosmer. He shall find me ready when he comes back." + +For all the preposterous hat and the vacuous face, there was something noble in the simple faith of our visitor which compelled our respect. She laid her little bundle of papers upon the table and went her way, with a promise to come again whenever she might be summoned. + +Sherlock Holmes sat silent for a few minutes with his fingertips still pressed together, his legs stretched out in front of him, and his gaze directed upward to the ceiling. Then he took down from the rack the old and oily clay pipe, which was to him as a counsellor, and, having lit it, he leaned back in his chair, with the thick blue cloud-wreaths spinning up from him, and a look of infinite languor in his face. + +"Quite an interesting study, that maiden," he observed. "I found her more interesting than her little problem, which, by the way, is rather a trite one. You will find parallel cases, if you consult my index, in Andover in '77, and there was something of the sort at The Hague last year. Old as is the idea, however, there were one or two details which were new to me. But the maiden herself was most instructive." + +"You appeared to read a good deal upon her which was quite invisible to me," I remarked. + +"Not invisible but unnoticed, Watson. You did not know where to look, and so you missed all that was important. I can never bring you to realise the importance of sleeves, the suggestiveness of thumb-nails, or the great issues that may hang from a boot-lace. Now, what did you gather from that woman's appearance? Describe it." + +"Well, she had a slate-coloured, broad-brimmed straw hat, with a feather of a brickish red. Her jacket was black, with black beads sewn upon it, and a fringe of little black jet ornaments. Her dress was brown, rather darker than coffee colour, with a little purple plush at the neck and sleeves. Her gloves were greyish and were worn through at the right forefinger. Her boots I didn't observe. She had small round, hanging gold earrings, and a general air of being fairly well-to-do in a vulgar, comfortable, easy-going way." + +Sherlock Holmes clapped his hands softly together and chuckled. + +" 'Pon my word, Watson, you are coming along wonderfully. You have really done very well indeed. It is true that you have missed everything of importance, but you have hit upon the method, and you have a quick eye for colour. Never trust to general impressions, my boy, but concentrate yourself upon details. My first glance is always at a woman's sleeve. In a man it is perhaps better first to take the knee of the trouser. As you observe, this woman had plush upon her sleeves, which is a most useful material for showing traces. The double line a little above the wrist, where the typewritist presses against the table, was beautifully defined. The sewing-machine, of the hand type, leaves a similar mark, but only on the left arm, and on the side of it farthest from the thumb, instead of being right across the broadest part, as this was. I then glanced at her face, and, observing the dint of a pince-nez at either side of her nose, I ventured a remark upon short sight and typewriting, which seemed to surprise her." + +"It surprised me." + +"But, surely, it was obvious. I was then much surprised and interested on glancing down to observe that, though the boots which she was wearing were not unlike each other, they were really odd ones; the one having a slightly decorated toe-cap, and the other a plain one. One was buttoned only in the two lower buttons out of five, and the other at the first, third, and fifth. Now, when you see that a young lady, otherwise neatly dressed, has come away from home with odd boots, half-buttoned, it is no great deduction to say that she came away in a hurry." + +"And what else?" I asked, keenly interested, as I always was, by my friend's incisive reasoning. + +"I noted, in passing, that she had written a note before leaving home but after being fully dressed. You observed that her right glove was torn at the forefinger, but you did not apparently see that both glove and finger were stained with violet ink. She had written in a hurry and dipped her pen too deep. It must have been this morning, or the mark would not remain clear upon the finger. All this is amusing, though rather elementary, but I must go back to business, Watson. Would you mind reading me the advertised description of Mr. Hosmer Angel?" + +I held the little printed slip to the light. + +"Missing," it said, "on the morning of the fourteenth, a gentleman named Hosmer Angel. About five ft. seven in. in height; strongly built, sallow complexion, black hair, a little bald in the centre, bushy, black side-whiskers and moustache; tinted glasses, slight infirmity of speech. Was dressed, when last seen, in black frock-coat faced with silk, black waistcoat, gold Albert chain, and grey Harris tweed trousers, with brown gaiters over elastic-sided boots. Known to have been employed in an office in Leadenhall Street. Anybody bringing--" + +"That will do," said Holmes. "As to the letters," he continued, glancing over them, "they are very commonplace. Absolutely no clue in them to Mr. Angel, save that he quotes Balzac once. There is one remarkable point, however, which will no doubt strike you." + +"They are typewritten," I remarked. + +"Not only that, but the signature is typewritten. Look at the neat little 'Hosmer Angel' at the bottom. There is a date, you see, but no superscription except Leadenhall Street, which is rather vague. The point about the signature is very suggestive--in fact, we may call it conclusive." + +"Of what?" + +"My dear fellow, is it possible you do not see how strongly it bears upon the case?" + +"I cannot say that I do unless it were that he wished to be able to deny his signature if an action for breach of promise were instituted." + +"No, that was not the point. However, I shall write two letters, which should settle the matter. One is to a firm in the City, the other is to the young lady's stepfather, Mr. Windibank, asking him whether he could meet us here at six o'clock to-morrow evening. It is just as well that we should do business with the male relatives. And now, Doctor, we can do nothing until the answers to those letters come, so we may put our little problem upon the shelf for the interim." + +I had had so many reasons to believe in my friend's subtle powers of reasoning and extraordinary energy in action that I felt that he must have some solid grounds for the assured and easy demeanour with which he treated the singular mystery which he had been called upon to fathom. Once only had I known him to fail, in the case of the King of Bohemia and of the Irene Adler photograph; but when I looked back to the weird business of the Sign of Four, and the extraordinary circumstances connected with the Study in Scarlet, I felt that it would be a strange tangle indeed which he could not unravel. + +I left him then, still puffing at his black clay pipe, with the conviction that when I came again on the next evening I would find that he held in his hands all the clues which would lead up to the identity of the disappearing bridegroom of Miss Mary Sutherland. + +A professional case of great gravity was engaging my own attention at the time, and the whole of next day I was busy at the bedside of the sufferer. It was not until close upon six o'clock that I found myself free and was able to spring into a hansom and drive to Baker Street, half afraid that I might be too late to assist at the denouement of the little mystery. I found Sherlock Holmes alone, however, half asleep, with his long, thin form curled up in the recesses of his armchair. A formidable array of bottles and test-tubes, with the pungent cleanly smell of hydrochloric acid, told me that he had spent his day in the chemical work which was so dear to him. + +"Well, have you solved it?" I asked as I entered. + +"Yes. It was the bisulphate of baryta." + +"No, no, the mystery!" I cried. + +"Oh, that! I thought of the salt that I have been working upon. There was never any mystery in the matter, though, as I said yesterday, some of the details are of interest. The only drawback is that there is no law, I fear, that can touch the scoundrel." + +"Who was he, then, and what was his object in deserting Miss Sutherland?" + +The question was hardly out of my mouth, and Holmes had not yet opened his lips to reply, when we heard a heavy footfall in the passage and a tap at the door. + +"This is the girl's stepfather, Mr. James Windibank," said Holmes. "He has written to me to say that he would be here at six. Come in!" + +The man who entered was a sturdy, middle-sized fellow, some thirty years of age, clean-shaven, and sallow-skinned, with a bland, insinuating manner, and a pair of wonderfully sharp and penetrating grey eyes. He shot a questioning glance at each of us, placed his shiny top-hat upon the sideboard, and with a slight bow sidled down into the nearest chair. + +"Good-evening, Mr. James Windibank," said Holmes. "I think that this typewritten letter is from you, in which you made an appointment with me for six o'clock?" + +"Yes, sir. I am afraid that I am a little late, but I am not quite my own master, you know. I am sorry that Miss Sutherland has troubled you about this little matter, for I think it is far better not to wash linen of the sort in public. It was quite against my wishes that she came, but she is a very excitable, impulsive girl, as you may have noticed, and she is not easily controlled when she has made up her mind on a point. Of course, I did not mind you so much, as you are not connected with the official police, but it is not pleasant to have a family misfortune like this noised abroad. Besides, it is a useless expense, for how could you possibly find this Hosmer Angel?" + +"On the contrary," said Holmes quietly; "I have every reason to believe that I will succeed in discovering Mr. Hosmer Angel." + +Mr. Windibank gave a violent start and dropped his gloves. "I am delighted to hear it," he said. + +"It is a curious thing," remarked Holmes, "that a typewriter has really quite as much individuality as a man's handwriting. Unless they are quite new, no two of them write exactly alike. Some letters get more worn than others, and some wear only on one side. Now, you remark in this note of yours, Mr. Windibank, that in every case there is some little slurring over of the 'e,' and a slight defect in the tail of the 'r.' There are fourteen other characteristics, but those are the more obvious." + +"We do all our correspondence with this machine at the office, and no doubt it is a little worn," our visitor answered, glancing keenly at Holmes with his bright little eyes. + +"And now I will show you what is really a very interesting study, Mr. Windibank," Holmes continued. "I think of writing another little monograph some of these days on the typewriter and its relation to crime. It is a subject to which I have devoted some little attention. I have here four letters which purport to come from the missing man. They are all typewritten. In each case, not only are the 'e's' slurred and the 'r's' tailless, but you will observe, if you care to use my magnifying lens, that the fourteen other characteristics to which I have alluded are there as well." + +Mr. Windibank sprang out of his chair and picked up his hat. "I cannot waste time over this sort of fantastic talk, Mr. Holmes," he said. "If you can catch the man, catch him, and let me know when you have done it." + +"Certainly," said Holmes, stepping over and turning the key in the door. "I let you know, then, that I have caught him!" + +"What! where?" shouted Mr. Windibank, turning white to his lips and glancing about him like a rat in a trap. + +"Oh, it won't do--really it won't," said Holmes suavely. "There is no possible getting out of it, Mr. Windibank. It is quite too transparent, and it was a very bad compliment when you said that it was impossible for me to solve so simple a question. That's right! Sit down and let us talk it over." + +Our visitor collapsed into a chair, with a ghastly face and a glitter of moisture on his brow. "It--it's not actionable," he stammered. + +"I am very much afraid that it is not. But between ourselves, Windibank, it was as cruel and selfish and heartless a trick in a petty way as ever came before me. Now, let me just run over the course of events, and you will contradict me if I go wrong." + +The man sat huddled up in his chair, with his head sunk upon his breast, like one who is utterly crushed. Holmes stuck his feet up on the corner of the mantelpiece and, leaning back with his hands in his pockets, began talking, rather to himself, as it seemed, than to us. + +"The man married a woman very much older than himself for her money," said he, "and he enjoyed the use of the money of the daughter as long as she lived with them. It was a considerable sum, for people in their position, and the loss of it would have made a serious difference. It was worth an effort to preserve it. The daughter was of a good, amiable disposition, but affectionate and warm-hearted in her ways, so that it was evident that with her fair personal advantages, and her little income, she would not be allowed to remain single long. Now her marriage would mean, of course, the loss of a hundred a year, so what does her stepfather do to prevent it? He takes the obvious course of keeping her at home and forbidding her to seek the company of people of her own age. But soon he found that that would not answer forever. She became restive, insisted upon her rights, and finally announced her positive intention of going to a certain ball. What does her clever stepfather do then? He conceives an idea more creditable to his head than to his heart. With the connivance and assistance of his wife he disguised himself, covered those keen eyes with tinted glasses, masked the face with a moustache and a pair of bushy whiskers, sunk that clear voice into an insinuating whisper, and doubly secure on account of the girl's short sight, he appears as Mr. Hosmer Angel, and keeps off other lovers by making love himself." + +"It was only a joke at first," groaned our visitor. "We never thought that she would have been so carried away." + +"Very likely not. However that may be, the young lady was very decidedly carried away, and, having quite made up her mind that her stepfather was in France, the suspicion of treachery never for an instant entered her mind. She was flattered by the gentleman's attentions, and the effect was increased by the loudly expressed admiration of her mother. Then Mr. Angel began to call, for it was obvious that the matter should be pushed as far as it would go if a real effect were to be produced. There were meetings, and an engagement, which would finally secure the girl's affections from turning towards anyone else. But the deception could not be kept up forever. These pretended journeys to France were rather cumbrous. The thing to do was clearly to bring the business to an end in such a dramatic manner that it would leave a permanent impression upon the young lady's mind and prevent her from looking upon any other suitor for some time to come. Hence those vows of fidelity exacted upon a Testament, and hence also the allusions to a possibility of something happening on the very morning of the wedding. James Windibank wished Miss Sutherland to be so bound to Hosmer Angel, and so uncertain as to his fate, that for ten years to come, at any rate, she would not listen to another man. As far as the church door he brought her, and then, as he could go no farther, he conveniently vanished away by the old trick of stepping in at one door of a four-wheeler and out at the other. I think that was the chain of events, Mr. Windibank!" + +Our visitor had recovered something of his assurance while Holmes had been talking, and he rose from his chair now with a cold sneer upon his pale face. + +"It may be so, or it may not, Mr. Holmes," said he, "but if you are so very sharp you ought to be sharp enough to know that it is you who are breaking the law now, and not me. I have done nothing actionable from the first, but as long as you keep that door locked you lay yourself open to an action for assault and illegal constraint." + +"The law cannot, as you say, touch you," said Holmes, unlocking and throwing open the door, "yet there never was a man who deserved punishment more. If the young lady has a brother or a friend, he ought to lay a whip across your shoulders. By Jove!" he continued, flushing up at the sight of the bitter sneer upon the man's face, "it is not part of my duties to my client, but here's a hunting crop handy, and I think I shall just treat myself to--" He took two swift steps to the whip, but before he could grasp it there was a wild clatter of steps upon the stairs, the heavy hall door banged, and from the window we could see Mr. James Windibank running at the top of his speed down the road. + +"There's a cold-blooded scoundrel!" said Holmes, laughing, as he threw himself down into his chair once more. "That fellow will rise from crime to crime until he does something very bad, and ends on a gallows. The case has, in some respects, been not entirely devoid of interest." + +"I cannot now entirely see all the steps of your reasoning," I remarked. + +"Well, of course it was obvious from the first that this Mr. Hosmer Angel must have some strong object for his curious conduct, and it was equally clear that the only man who really profited by the incident, as far as we could see, was the stepfather. Then the fact that the two men were never together, but that the one always appeared when the other was away, was suggestive. So were the tinted spectacles and the curious voice, which both hinted at a disguise, as did the bushy whiskers. My suspicions were all confirmed by his peculiar action in typewriting his signature, which, of course, inferred that his handwriting was so familiar to her that she would recognise even the smallest sample of it. You see all these isolated facts, together with many minor ones, all pointed in the same direction." + +"And how did you verify them?" + +"Having once spotted my man, it was easy to get corroboration. I knew the firm for which this man worked. Having taken the printed description. I eliminated everything from it which could be the result of a disguise--the whiskers, the glasses, the voice, and I sent it to the firm, with a request that they would inform me whether it answered to the description of any of their travellers. I had already noticed the peculiarities of the typewriter, and I wrote to the man himself at his business address asking him if he would come here. As I expected, his reply was typewritten and revealed the same trivial but characteristic defects. The same post brought me a letter from Westhouse & Marbank, of Fenchurch Street, to say that the description tallied in every respect with that of their employe, James Windibank. Voila tout!" + +"And Miss Sutherland?" + +"If I tell her she will not believe me. You may remember the old Persian saying, 'There is danger for him who taketh the tiger cub, and danger also for whoso snatches a delusion from a woman.' There is as much sense in Hafiz as in Horace, and as much knowledge of the world." + +ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY + + +We were seated at breakfast one morning, my wife and I, when the maid brought in a telegram. It was from Sherlock Holmes and ran in this way: + +"Have you a couple of days to spare? Have just been wired for from the west of England in connection with Boscombe Valley tragedy. Shall be glad if you will come with me. Air and scenery perfect. Leave Paddington by the 11:15." + +"What do you say, dear?" said my wife, looking across at me. "Will you go?" + +"I really don't know what to say. I have a fairly long list at present." + +"Oh, Anstruther would do your work for you. You have been looking a little pale lately. I think that the change would do you good, and you are always so interested in Mr. Sherlock Holmes' cases." + +"I should be ungrateful if I were not, seeing what I gained through one of them," I answered. "But if I am to go, I must pack at once, for I have only half an hour." + +My experience of camp life in Afghanistan had at least had the effect of making me a prompt and ready traveller. My wants were few and simple, so that in less than the time stated I was in a cab with my valise, rattling away to Paddington Station. Sherlock Holmes was pacing up and down the platform, his tall, gaunt figure made even gaunter and taller by his long grey travelling-cloak and close-fitting cloth cap. + +"It is really very good of you to come, Watson," said he. "It makes a considerable difference to me, having someone with me on whom I can thoroughly rely. Local aid is always either worthless or else biassed. If you will keep the two corner seats I shall get the tickets." + +We had the carriage to ourselves save for an immense litter of papers which Holmes had brought with him. Among these he rummaged and read, with intervals of note-taking and of meditation, until we were past Reading. Then he suddenly rolled them all into a gigantic ball and tossed them up onto the rack. + +"Have you heard anything of the case?" he asked. + +"Not a word. I have not seen a paper for some days." + +"The London press has not had very full accounts. I have just been looking through all the recent papers in order to master the particulars. It seems, from what I gather, to be one of those simple cases which are so extremely difficult." + +"That sounds a little paradoxical." + +"But it is profoundly true. Singularity is almost invariably a clue. The more featureless and commonplace a crime is, the more difficult it is to bring it home. In this case, however, they have established a very serious case against the son of the murdered man." + +"It is a murder, then?" + +"Well, it is conjectured to be so. I shall take nothing for granted until I have the opportunity of looking personally into it. I will explain the state of things to you, as far as I have been able to understand it, in a very few words. + +"Boscombe Valley is a country district not very far from Ross, in Herefordshire. The largest landed proprietor in that part is a Mr. John Turner, who made his money in Australia and returned some years ago to the old country. One of the farms which he held, that of Hatherley, was let to Mr. Charles McCarthy, who was also an ex-Australian. The men had known each other in the colonies, so that it was not unnatural that when they came to settle down they should do so as near each other as possible. Turner was apparently the richer man, so McCarthy became his tenant but still remained, it seems, upon terms of perfect equality, as they were frequently together. McCarthy had one son, a lad of eighteen, and Turner had an only daughter of the same age, but neither of them had wives living. They appear to have avoided the society of the neighbouring English families and to have led retired lives, though both the McCarthys were fond of sport and were frequently seen at the race-meetings of the neighbourhood. McCarthy kept two servants--a man and a girl. Turner had a considerable household, some half-dozen at the least. That is as much as I have been able to gather about the families. Now for the facts. + +"On June 3rd, that is, on Monday last, McCarthy left his house at Hatherley about three in the afternoon and walked down to the Boscombe Pool, which is a small lake formed by the spreading out of the stream which runs down the Boscombe Valley. He had been out with his serving-man in the morning at Ross, and he had told the man that he must hurry, as he had an appointment of importance to keep at three. From that appointment he never came back alive. + +"From Hatherley Farmhouse to the Boscombe Pool is a quarter of a mile, and two people saw him as he passed over this ground. One was an old woman, whose name is not mentioned, and the other was William Crowder, a game-keeper in the employ of Mr. Turner. Both these witnesses depose that Mr. McCarthy was walking alone. The game-keeper adds that within a few minutes of his seeing Mr. McCarthy pass he had seen his son, Mr. James McCarthy, going the same way with a gun under his arm. To the best of his belief, the father was actually in sight at the time, and the son was following him. He thought no more of the matter until he heard in the evening of the tragedy that had occurred. + +"The two McCarthys were seen after the time when William Crowder, the game-keeper, lost sight of them. The Boscombe Pool is thickly wooded round, with just a fringe of grass and of reeds round the edge. A girl of fourteen, Patience Moran, who is the daughter of the lodge-keeper of the Boscombe Valley estate, was in one of the woods picking flowers. She states that while she was there she saw, at the border of the wood and close by the lake, Mr. McCarthy and his son, and that they appeared to be having a violent quarrel. She heard Mr. McCarthy the elder using very strong language to his son, and she saw the latter raise up his hand as if to strike his father. She was so frightened by their violence that she ran away and told her mother when she reached home that she had left the two McCarthys quarrelling near Boscombe Pool, and that she was afraid that they were going to fight. She had hardly said the words when young Mr. McCarthy came running up to the lodge to say that he had found his father dead in the wood, and to ask for the help of the lodge-keeper. He was much excited, without either his gun or his hat, and his right hand and sleeve were observed to be stained with fresh blood. On following him they found the dead body stretched out upon the grass beside the pool. The head had been beaten in by repeated blows of some heavy and blunt weapon. The injuries were such as might very well have been inflicted by the butt-end of his son's gun, which was found lying on the grass within a few paces of the body. Under these circumstances the young man was instantly arrested, and a verdict of 'wilful murder' having been returned at the inquest on Tuesday, he was on Wednesday brought before the magistrates at Ross, who have referred the case to the next Assizes. Those are the main facts of the case as they came out before the coroner and the police-court." + +"I could hardly imagine a more damning case," I remarked. "If ever circumstantial evidence pointed to a criminal it does so here." + +"Circumstantial evidence is a very tricky thing," answered Holmes thoughtfully. "It may seem to point very straight to one thing, but if you shift your own point of view a little, you may find it pointing in an equally uncompromising manner to something entirely different. It must be confessed, however, that the case looks exceedingly grave against the young man, and it is very possible that he is indeed the culprit. There are several people in the neighbourhood, however, and among them Miss Turner, the daughter of the neighbouring landowner, who believe in his innocence, and who have retained Lestrade, whom you may recollect in connection with the Study in Scarlet, to work out the case in his interest. Lestrade, being rather puzzled, has referred the case to me, and hence it is that two middle-aged gentlemen are flying westward at fifty miles an hour instead of quietly digesting their breakfasts at home." + +"I am afraid," said I, "that the facts are so obvious that you will find little credit to be gained out of this case." + +"There is nothing more deceptive than an obvious fact," he answered, laughing. "Besides, we may chance to hit upon some other obvious facts which may have been by no means obvious to Mr. Lestrade. You know me too well to think that I am boasting when I say that I shall either confirm or destroy his theory by means which he is quite incapable of employing, or even of understanding. To take the first example to hand, I very clearly perceive that in your bedroom the window is upon the right-hand side, and yet I question whether Mr. Lestrade would have noted even so self-evident a thing as that." + +"How on earth--" + +"My dear fellow, I know you well. I know the military neatness which characterises you. You shave every morning, and in this season you shave by the sunlight; but since your shaving is less and less complete as we get farther back on the left side, until it becomes positively slovenly as we get round the angle of the jaw, it is surely very clear that that side is less illuminated than the other. I could not imagine a man of your habits looking at himself in an equal light and being satisfied with such a result. I only quote this as a trivial example of observation and inference. Therein lies my metier, and it is just possible that it may be of some service in the investigation which lies before us. There are one or two minor points which were brought out in the inquest, and which are worth considering." + +"What are they?" + +"It appears that his arrest did not take place at once, but after the return to Hatherley Farm. On the inspector of constabulary informing him that he was a prisoner, he remarked that he was not surprised to hear it, and that it was no more than his deserts. This observation of his had the natural effect of removing any traces of doubt which might have remained in the minds of the coroner's jury." + +"It was a confession," I ejaculated. + +"No, for it was followed by a protestation of innocence." + +"Coming on the top of such a damning series of events, it was at least a most suspicious remark." + +"On the contrary," said Holmes, "it is the brightest rift which I can at present see in the clouds. However innocent he might be, he could not be such an absolute imbecile as not to see that the circumstances were very black against him. Had he appeared surprised at his own arrest, or feigned indignation at it, I should have looked upon it as highly suspicious, because such surprise or anger would not be natural under the circumstances, and yet might appear to be the best policy to a scheming man. His frank acceptance of the situation marks him as either an innocent man, or else as a man of considerable self-restraint and firmness. As to his remark about his deserts, it was also not unnatural if you consider that he stood beside the dead body of his father, and that there is no doubt that he had that very day so far forgotten his filial duty as to bandy words with him, and even, according to the little girl whose evidence is so important, to raise his hand as if to strike him. The self-reproach and contrition which are displayed in his remark appear to me to be the signs of a healthy mind rather than of a guilty one." + +I shook my head. "Many men have been hanged on far slighter evidence," I remarked. + +"So they have. And many men have been wrongfully hanged." + +"What is the young man's own account of the matter?" + +"It is, I am afraid, not very encouraging to his supporters, though there are one or two points in it which are suggestive. You will find it here, and may read it for yourself." + +He picked out from his bundle a copy of the local Herefordshire paper, and having turned down the sheet he pointed out the paragraph in which the unfortunate young man had given his own statement of what had occurred. I settled myself down in the corner of the carriage and read it very carefully. It ran in this way: + +"Mr. James McCarthy, the only son of the deceased, was then called and gave evidence as follows: 'I had been away from home for three days at Bristol, and had only just returned upon the morning of last Monday, the 3rd. My father was absent from home at the time of my arrival, and I was informed by the maid that he had driven over to Ross with John Cobb, the groom. Shortly after my return I heard the wheels of his trap in the yard, and, looking out of my window, I saw him get out and walk rapidly out of the yard, though I was not aware in which direction he was going. I then took my gun and strolled out in the direction of the Boscombe Pool, with the intention of visiting the rabbit warren which is upon the other side. On my way I saw William Crowder, the game-keeper, as he had stated in his evidence; but he is mistaken in thinking that I was following my father. I had no idea that he was in front of me. When about a hundred yards from the pool I heard a cry of "Cooee!" which was a usual signal between my father and myself. I then hurried forward, and found him standing by the pool. He appeared to be much surprised at seeing me and asked me rather roughly what I was doing there. A conversation ensued which led to high words and almost to blows, for my father was a man of a very violent temper. Seeing that his passion was becoming ungovernable, I left him and returned towards Hatherley Farm. I had not gone more than 150 yards, however, when I heard a hideous outcry behind me, which caused me to run back again. I found my father expiring upon the ground, with his head terribly injured. I dropped my gun and held him in my arms, but he almost instantly expired. I knelt beside him for some minutes, and then made my way to Mr. Turner's lodge-keeper, his house being the nearest, to ask for assistance. I saw no one near my father when I returned, and I have no idea how he came by his injuries. He was not a popular man, being somewhat cold and forbidding in his manners, but he had, as far as I know, no active enemies. I know nothing further of the matter.' + +"The Coroner: Did your father make any statement to you before he died? + +"Witness: He mumbled a few words, but I could only catch some allusion to a rat. + +"The Coroner: What did you understand by that? + +"Witness: It conveyed no meaning to me. I thought that he was delirious. + +"The Coroner: What was the point upon which you and your father had this final quarrel? + +"Witness: I should prefer not to answer. + +"The Coroner: I am afraid that I must press it. + +"Witness: It is really impossible for me to tell you. I can assure you that it has nothing to do with the sad tragedy which followed. + +"The Coroner: That is for the court to decide. I need not point out to you that your refusal to answer will prejudice your case considerably in any future proceedings which may arise. + +"Witness: I must still refuse. + +"The Coroner: I understand that the cry of 'Cooee' was a common signal between you and your father? + +"Witness: It was. + +"The Coroner: How was it, then, that he uttered it before he saw you, and before he even knew that you had returned from Bristol? + +"Witness (with considerable confusion): I do not know. + +"A Juryman: Did you see nothing which aroused your suspicions when you returned on hearing the cry and found your father fatally injured? + +"Witness: Nothing definite. + +"The Coroner: What do you mean? + +"Witness: I was so disturbed and excited as I rushed out into the open, that I could think of nothing except of my father. Yet I have a vague impression that as I ran forward something lay upon the ground to the left of me. It seemed to me to be something grey in colour, a coat of some sort, or a plaid perhaps. When I rose from my father I looked round for it, but it was gone. + +" 'Do you mean that it disappeared before you went for help?' + +" 'Yes, it was gone.' + +" 'You cannot say what it was?' + +" 'No, I had a feeling something was there.' + +" 'How far from the body?' + +" 'A dozen yards or so.' + +" 'And how far from the edge of the wood?' + +" 'About the same.' + +" 'Then if it was removed it was while you were within a dozen yards of it?' + +" 'Yes, but with my back towards it.' + +"This concluded the examination of the witness." + +"I see," said I as I glanced down the column, "that the coroner in his concluding remarks was rather severe upon young McCarthy. He calls attention, and with reason, to the discrepancy about his father having signalled to him before seeing him, also to his refusal to give details of his conversation with his father, and his singular account of his father's dying words. They are all, as he remarks, very much against the son." + +Holmes laughed softly to himself and stretched himself out upon the cushioned seat. "Both you and the coroner have been at some pains," said he, "to single out the very strongest points in the young man's favour. Don't you see that you alternately give him credit for having too much imagination and too little? Too little, if he could not invent a cause of quarrel which would give him the sympathy of the jury; too much, if he evolved from his own inner consciousness anything so outre as a dying reference to a rat, and the incident of the vanishing cloth. No, sir, I shall approach this case from the point of view that what this young man says is true, and we shall see whither that hypothesis will lead us. And now here is my pocket Petrarch, and not another word shall I say of this case until we are on the scene of action. We lunch at Swindon, and I see that we shall be there in twenty minutes." + +It was nearly four o'clock when we at last, after passing through the beautiful Stroud Valley, and over the broad gleaming Severn, found ourselves at the pretty little country-town of Ross. A lean, ferret-like man, furtive and sly-looking, was waiting for us upon the platform. In spite of the light brown dustcoat and leather-leggings which he wore in deference to his rustic surroundings, I had no difficulty in recognising Lestrade, of Scotland Yard. With him we drove to the Hereford Arms where a room had already been engaged for us. + +"I have ordered a carriage," said Lestrade as we sat over a cup of tea. "I knew your energetic nature, and that you would not be happy until you had been on the scene of the crime." + +"It was very nice and complimentary of you," Holmes answered. "It is entirely a question of barometric pressure." + +Lestrade looked startled. "I do not quite follow," he said. + +"How is the glass? Twenty-nine, I see. No wind, and not a cloud in the sky. I have a caseful of cigarettes here which need smoking, and the sofa is very much superior to the usual country hotel abomination. I do not think that it is probable that I shall use the carriage to-night." + +Lestrade laughed indulgently. "You have, no doubt, already formed your conclusions from the newspapers," he said. "The case is as plain as a pikestaff, and the more one goes into it the plainer it becomes. Still, of course, one can't refuse a lady, and such a very positive one, too. She has heard of you, and would have your opinion, though I repeatedly told her that there was nothing which you could do which I had not already done. Why, bless my soul! here is her carriage at the door." + +He had hardly spoken before there rushed into the room one of the most lovely young women that I have ever seen in my life. Her violet eyes shining, her lips parted, a pink flush upon her cheeks, all thought of her natural reserve lost in her overpowering excitement and concern. + +"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the other of us, and finally, with a woman's quick intuition, fastening upon my companion, "I am so glad that you have come. I have driven down to tell you so. I know that James didn't do it. I know it, and I want you to start upon your work knowing it, too. Never let yourself doubt upon that point. We have known each other since we were little children, and I know his faults as no one else does; but he is too tender-hearted to hurt a fly. Such a charge is absurd to anyone who really knows him." + +"I hope we may clear him, Miss Turner," said Sherlock Holmes. "You may rely upon my doing all that I can." + +"But you have read the evidence. You have formed some conclusion? Do you not see some loophole, some flaw? Do you not yourself think that he is innocent?" + +"I think that it is very probable." + +"There, now!" she cried, throwing back her head and looking defiantly at Lestrade. "You hear! He gives me hopes." + +Lestrade shrugged his shoulders. "I am afraid that my colleague has been a little quick in forming his conclusions," he said. + +"But he is right. Oh! I know that he is right. James never did it. And about his quarrel with his father, I am sure that the reason why he would not speak about it to the coroner was because I was concerned in it." + +"In what way?" asked Holmes. + +"It is no time for me to hide anything. James and his father had many disagreements about me. Mr. McCarthy was very anxious that there should be a marriage between us. James and I have always loved each other as brother and sister; but of course he is young and has seen very little of life yet, and--and--well, he naturally did not wish to do anything like that yet. So there were quarrels, and this, I am sure, was one of them." + +"And your father?" asked Holmes. "Was he in favour of such a union?" + +"No, he was averse to it also. No one but Mr. McCarthy was in favour of it." A quick blush passed over her fresh young face as Holmes shot one of his keen, questioning glances at her. + +"Thank you for this information," said he. "May I see your father if I call to-morrow?" + +"I am afraid the doctor won't allow it." + +"The doctor?" + +"Yes, have you not heard? Poor father has never been strong for years back, but this has broken him down completely. He has taken to his bed, and Dr. Willows says that he is a wreck and that his nervous system is shattered. Mr. McCarthy was the only man alive who had known dad in the old days in Victoria." + +"Ha! In Victoria! That is important." + +"Yes, at the mines." + +"Quite so; at the gold-mines, where, as I understand, Mr. Turner made his money." + +"Yes, certainly." + +"Thank you, Miss Turner. You have been of material assistance to me." + +"You will tell me if you have any news to-morrow. No doubt you will go to the prison to see James. Oh, if you do, Mr. Holmes, do tell him that I know him to be innocent." + +"I will, Miss Turner." + +"I must go home now, for dad is very ill, and he misses me so if I leave him. Good-bye, and God help you in your undertaking." She hurried from the room as impulsively as she had entered, and we heard the wheels of her carriage rattle off down the street. + +"I am ashamed of you, Holmes," said Lestrade with dignity after a few minutes' silence. "Why should you raise up hopes which you are bound to disappoint? I am not over-tender of heart, but I call it cruel." + +"I think that I see my way to clearing James McCarthy," said Holmes. "Have you an order to see him in prison?" + +"Yes, but only for you and me." + +"Then I shall reconsider my resolution about going out. We have still time to take a train to Hereford and see him to-night?" + +"Ample." + +"Then let us do so. Watson, I fear that you will find it very slow, but I shall only be away a couple of hours." + +I walked down to the station with them, and then wandered through the streets of the little town, finally returning to the hotel, where I lay upon the sofa and tried to interest myself in a yellow-backed novel. The puny plot of the story was so thin, however, when compared to the deep mystery through which we were groping, and I found my attention wander so continually from the action to the fact, that I at last flung it across the room and gave myself up entirely to a consideration of the events of the day. Supposing that this unhappy young man's story were absolutely true, then what hellish thing, what absolutely unforeseen and extraordinary calamity could have occurred between the time when he parted from his father, and the moment when, drawn back by his screams, he rushed into the glade? It was something terrible and deadly. What could it be? Might not the nature of the injuries reveal something to my medical instincts? I rang the bell and called for the weekly county paper, which contained a verbatim account of the inquest. In the surgeon's deposition it was stated that the posterior third of the left parietal bone and the left half of the occipital bone had been shattered by a heavy blow from a blunt weapon. I marked the spot upon my own head. Clearly such a blow must have been struck from behind. That was to some extent in favour of the accused, as when seen quarrelling he was face to face with his father. Still, it did not go for very much, for the older man might have turned his back before the blow fell. Still, it might be worth while to call Holmes' attention to it. Then there was the peculiar dying reference to a rat. What could that mean? It could not be delirium. A man dying from a sudden blow does not commonly become delirious. No, it was more likely to be an attempt to explain how he met his fate. But what could it indicate? I cudgelled my brains to find some possible explanation. And then the incident of the grey cloth seen by young McCarthy. If that were true the murderer must have dropped some part of his dress, presumably his overcoat, in his flight, and must have had the hardihood to return and to carry it away at the instant when the son was kneeling with his back turned not a dozen paces off. What a tissue of mysteries and improbabilities the whole thing was! I did not wonder at Lestrade's opinion, and yet I had so much faith in Sherlock Holmes' insight that I could not lose hope as long as every fresh fact seemed to strengthen his conviction of young McCarthy's innocence. + +It was late before Sherlock Holmes returned. He came back alone, for Lestrade was staying in lodgings in the town. + +"The glass still keeps very high," he remarked as he sat down. "It is of importance that it should not rain before we are able to go over the ground. On the other hand, a man should be at his very best and keenest for such nice work as that, and I did not wish to do it when fagged by a long journey. I have seen young McCarthy." + +"And what did you learn from him?" + +"Nothing." + +"Could he throw no light?" + +"None at all. I was inclined to think at one time that he knew who had done it and was screening him or her, but I am convinced now that he is as puzzled as everyone else. He is not a very quick-witted youth, though comely to look at and, I should think, sound at heart." + +"I cannot admire his taste," I remarked, "if it is indeed a fact that he was averse to a marriage with so charming a young lady as this Miss Turner." + +"Ah, thereby hangs a rather painful tale. This fellow is madly, insanely, in love with her, but some two years ago, when he was only a lad, and before he really knew her, for she had been away five years at a boarding-school, what does the idiot do but get into the clutches of a barmaid in Bristol and marry her at a registry office? No one knows a word of the matter, but you can imagine how maddening it must be to him to be upbraided for not doing what he would give his very eyes to do, but what he knows to be absolutely impossible. It was sheer frenzy of this sort which made him throw his hands up into the air when his father, at their last interview, was goading him on to propose to Miss Turner. On the other hand, he had no means of supporting himself, and his father, who was by all accounts a very hard man, would have thrown him over utterly had he known the truth. It was with his barmaid wife that he had spent the last three days in Bristol, and his father did not know where he was. Mark that point. It is of importance. Good has come out of evil, however, for the barmaid, finding from the papers that he is in serious trouble and likely to be hanged, has thrown him over utterly and has written to him to say that she has a husband already in the Bermuda Dockyard, so that there is really no tie between them. I think that that bit of news has consoled young McCarthy for all that he has suffered." + +"But if he is innocent, who has done it?" + +"Ah! who? I would call your attention very particularly to two points. One is that the murdered man had an appointment with someone at the pool, and that the someone could not have been his son, for his son was away, and he did not know when he would return. The second is that the murdered man was heard to cry 'Cooee!' before he knew that his son had returned. Those are the crucial points upon which the case depends. And now let us talk about George Meredith, if you please, and we shall leave all minor matters until to-morrow." + +There was no rain, as Holmes had foretold, and the morning broke bright and cloudless. At nine o'clock Lestrade called for us with the carriage, and we set off for Hatherley Farm and the Boscombe Pool. + +"There is serious news this morning," Lestrade observed. "It is said that Mr. Turner, of the Hall, is so ill that his life is despaired of." + +"An elderly man, I presume?" said Holmes. + +"About sixty; but his constitution has been shattered by his life abroad, and he has been in failing health for some time. This business has had a very bad effect upon him. He was an old friend of McCarthy's, and, I may add, a great benefactor to him, for I have learned that he gave him Hatherley Farm rent free." + +"Indeed! That is interesting," said Holmes. + +"Oh, yes! In a hundred other ways he has helped him. Everybody about here speaks of his kindness to him." + +"Really! Does it not strike you as a little singular that this McCarthy, who appears to have had little of his own, and to have been under such obligations to Turner, should still talk of marrying his son to Turner's daughter, who is, presumably, heiress to the estate, and that in such a very cocksure manner, as if it were merely a case of a proposal and all else would follow? It is the more strange, since we know that Turner himself was averse to the idea. The daughter told us as much. Do you not deduce something from that?" + +"We have got to the deductions and the inferences," said Lestrade, winking at me. "I find it hard enough to tackle facts, Holmes, without flying away after theories and fancies." + +"You are right," said Holmes demurely; "you do find it very hard to tackle the facts." + +"Anyhow, I have grasped one fact which you seem to find it difficult to get hold of," replied Lestrade with some warmth. + +"And that is--" + +"That McCarthy senior met his death from McCarthy junior and that all theories to the contrary are the merest moonshine." + +"Well, moonshine is a brighter thing than fog," said Holmes, laughing. "But I am very much mistaken if this is not Hatherley Farm upon the left." + +"Yes, that is it." It was a widespread, comfortable-looking building, two-storied, slate-roofed, with great yellow blotches of lichen upon the grey walls. The drawn blinds and the smokeless chimneys, however, gave it a stricken look, as though the weight of this horror still lay heavy upon it. We called at the door, when the maid, at Holmes' request, showed us the boots which her master wore at the time of his death, and also a pair of the son's, though not the pair which he had then had. Having measured these very carefully from seven or eight different points, Holmes desired to be led to the court-yard, from which we all followed the winding track which led to Boscombe Pool. + +Sherlock Holmes was transformed when he was hot upon such a scent as this. Men who had only known the quiet thinker and logician of Baker Street would have failed to recognise him. His face flushed and darkened. His brows were drawn into two hard black lines, while his eyes shone out from beneath them with a steely glitter. His face was bent downward, his shoulders bowed, his lips compressed, and the veins stood out like whipcord in his long, sinewy neck. His nostrils seemed to dilate with a purely animal lust for the chase, and his mind was so absolutely concentrated upon the matter before him that a question or remark fell unheeded upon his ears, or, at the most, only provoked a quick, impatient snarl in reply. Swiftly and silently he made his way along the track which ran through the meadows, and so by way of the woods to the Boscombe Pool. It was damp, marshy ground, as is all that district, and there were marks of many feet, both upon the path and amid the short grass which bounded it on either side. Sometimes Holmes would hurry on, sometimes stop dead, and once he made quite a little detour into the meadow. Lestrade and I walked behind him, the detective indifferent and contemptuous, while I watched my friend with the interest which sprang from the conviction that every one of his actions was directed towards a definite end. + +The Boscombe Pool, which is a little reed-girt sheet of water some fifty yards across, is situated at the boundary between the Hatherley Farm and the private park of the wealthy Mr. Turner. Above the woods which lined it upon the farther side we could see the red, jutting pinnacles which marked the site of the rich landowner's dwelling. On the Hatherley side of the pool the woods grew very thick, and there was a narrow belt of sodden grass twenty paces across between the edge of the trees and the reeds which lined the lake. Lestrade showed us the exact spot at which the body had been found, and, indeed, so moist was the ground, that I could plainly see the traces which had been left by the fall of the stricken man. To Holmes, as I could see by his eager face and peering eyes, very many other things were to be read upon the trampled grass. He ran round, like a dog who is picking up a scent, and then turned upon my companion. + +"What did you go into the pool for?" he asked. + +"I fished about with a rake. I thought there might be some weapon or other trace. But how on earth--" + +"Oh, tut, tut! I have no time! That left foot of yours with its inward twist is all over the place. A mole could trace it, and there it vanishes among the reeds. Oh, how simple it would all have been had I been here before they came like a herd of buffalo and wallowed all over it. Here is where the party with the lodge-keeper came, and they have covered all tracks for six or eight feet round the body. But here are three separate tracks of the same feet." He drew out a lens and lay down upon his waterproof to have a better view, talking all the time rather to himself than to us. "These are young McCarthy's feet. Twice he was walking, and once he ran swiftly, so that the soles are deeply marked and the heels hardly visible. That bears out his story. He ran when he saw his father on the ground. Then here are the father's feet as he paced up and down. What is this, then? It is the butt-end of the gun as the son stood listening. And this? Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite unusual boots! They come, they go, they come again--of course that was for the cloak. Now where did they come from?" He ran up and down, sometimes losing, sometimes finding the track until we were well within the edge of the wood and under the shadow of a great beech, the largest tree in the neighbourhood. Holmes traced his way to the farther side of this and lay down once more upon his face with a little cry of satisfaction. For a long time he remained there, turning over the leaves and dried sticks, gathering up what seemed to me to be dust into an envelope and examining with his lens not only the ground but even the bark of the tree as far as he could reach. A jagged stone was lying among the moss, and this also he carefully examined and retained. Then he followed a pathway through the wood until he came to the highroad, where all traces were lost. + +"It has been a case of considerable interest," he remarked, returning to his natural manner. "I fancy that this grey house on the right must be the lodge. I think that I will go in and have a word with Moran, and perhaps write a little note. Having done that, we may drive back to our luncheon. You may walk to the cab, and I shall be with you presently." + +It was about ten minutes before we regained our cab and drove back into Ross, Holmes still carrying with him the stone which he had picked up in the wood. + +"This may interest you, Lestrade," he remarked, holding it out. "The murder was done with it." + +"I see no marks." + +"There are none." + +"How do you know, then?" + +"The grass was growing under it. It had only lain there a few days. There was no sign of a place whence it had been taken. It corresponds with the injuries. There is no sign of any other weapon." + +"And the murderer?" + +"Is a tall man, left-handed, limps with the right leg, wears thick-soled shooting-boots and a grey cloak, smokes Indian cigars, uses a cigar-holder, and carries a blunt pen-knife in his pocket. There are several other indications, but these may be enough to aid us in our search." + +Lestrade laughed. "I am afraid that I am still a sceptic," he said. "Theories are all very well, but we have to deal with a hard-headed British jury." + +"Nous verrons," answered Holmes calmly. "You work your own method, and I shall work mine. I shall be busy this afternoon, and shall probably return to London by the evening train." + +"And leave your case unfinished?" + +"No, finished." + +"But the mystery?" + +"It is solved." + +"Who was the criminal, then?" + +"The gentleman I describe." + +"But who is he?" + +"Surely it would not be difficult to find out. This is not such a populous neighbourhood." + +Lestrade shrugged his shoulders. "I am a practical man," he said, "and I really cannot undertake to go about the country looking for a left-handed gentleman with a game leg. I should become the laughing-stock of Scotland Yard." + +"All right," said Holmes quietly. "I have given you the chance. Here are your lodgings. Good-bye. I shall drop you a line before I leave." + +Having left Lestrade at his rooms, we drove to our hotel, where we found lunch upon the table. Holmes was silent and buried in thought with a pained expression upon his face, as one who finds himself in a perplexing position. + +"Look here, Watson," he said when the cloth was cleared "just sit down in this chair and let me preach to you for a little. I don't know quite what to do, and I should value your advice. Light a cigar and let me expound." + +"Pray do so." + +"Well, now, in considering this case there are two points about young McCarthy's narrative which struck us both instantly, although they impressed me in his favour and you against him. One was the fact that his father should, according to his account, cry 'Cooee!' before seeing him. The other was his singular dying reference to a rat. He mumbled several words, you understand, but that was all that caught the son's ear. Now from this double point our research must commence, and we will begin it by presuming that what the lad says is absolutely true." + +"What of this 'Cooee!' then?" + +"Well, obviously it could not have been meant for the son. The son, as far as he knew, was in Bristol. It was mere chance that he was within earshot. The 'Cooee!' was meant to attract the attention of whoever it was that he had the appointment with. But 'Cooee' is a distinctly Australian cry, and one which is used between Australians. There is a strong presumption that the person whom McCarthy expected to meet him at Boscombe Pool was someone who had been in Australia." + +"What of the rat, then?" + +Sherlock Holmes took a folded paper from his pocket and flattened it out on the table. "This is a map of the Colony of Victoria," he said. "I wired to Bristol for it last night." He put his hand over part of the map. "What do you read?" + +"ARAT," I read. + +"And now?" He raised his hand. + +"BALLARAT." + +"Quite so. That was the word the man uttered, and of which his son only caught the last two syllables. He was trying to utter the name of his murderer. So and so, of Ballarat." + +"It is wonderful!" I exclaimed. + +"It is obvious. And now, you see, I had narrowed the field down considerably. The possession of a grey garment was a third point which, granting the son's statement to be correct, was a certainty. We have come now out of mere vagueness to the definite conception of an Australian from Ballarat with a grey cloak." + +"Certainly." + +"And one who was at home in the district, for the pool can only be approached by the farm or by the estate, where strangers could hardly wander." + +"Quite so." + +"Then comes our expedition of to-day. By an examination of the ground I gained the trifling details which I gave to that imbecile Lestrade, as to the personality of the criminal." + +"But how did you gain them?" + +"You know my method. It is founded upon the observation of trifles." + +"His height I know that you might roughly judge from the length of his stride. His boots, too, might be told from their traces." + +"Yes, they were peculiar boots." + +"But his lameness?" + +"The impression of his right foot was always less distinct than his left. He put less weight upon it. Why? Because he limped--he was lame." + +"But his left-handedness." + +"You were yourself struck by the nature of the injury as recorded by the surgeon at the inquest. The blow was struck from immediately behind, and yet was upon the left side. Now, how can that be unless it were by a left-handed man? He had stood behind that tree during the interview between the father and son. He had even smoked there. I found the ash of a cigar, which my special knowledge of tobacco ashes enables me to pronounce as an Indian cigar. I have, as you know, devoted some attention to this, and written a little monograph on the ashes of 140 different varieties of pipe, cigar, and cigarette tobacco. Having found the ash, I then looked round and discovered the stump among the moss where he had tossed it. It was an Indian cigar, of the variety which are rolled in Rotterdam." + +"And the cigar-holder?" + +"I could see that the end had not been in his mouth. Therefore he used a holder. The tip had been cut off, not bitten off, but the cut was not a clean one, so I deduced a blunt pen-knife." + +"Holmes," I said, "you have drawn a net round this man from which he cannot escape, and you have saved an innocent human life as truly as if you had cut the cord which was hanging him. I see the direction in which all this points. The culprit is--" + +"Mr. John Turner," cried the hotel waiter, opening the door of our sitting-room, and ushering in a visitor. + +The man who entered was a strange and impressive figure. His slow, limping step and bowed shoulders gave the appearance of decrepitude, and yet his hard, deep-lined, craggy features, and his enormous limbs showed that he was possessed of unusual strength of body and of character. His tangled beard, grizzled hair, and outstanding, drooping eyebrows combined to give an air of dignity and power to his appearance, but his face was of an ashen white, while his lips and the corners of his nostrils were tinged with a shade of blue. It was clear to me at a glance that he was in the grip of some deadly and chronic disease. + +"Pray sit down on the sofa," said Holmes gently. "You had my note?" + +"Yes, the lodge-keeper brought it up. You said that you wished to see me here to avoid scandal." + +"I thought people would talk if I went to the Hall." + +"And why did you wish to see me?" He looked across at my companion with despair in his weary eyes, as though his question was already answered. + +"Yes," said Holmes, answering the look rather than the words. "It is so. I know all about McCarthy." + +The old man sank his face in his hands. "God help me!" he cried. "But I would not have let the young man come to harm. I give you my word that I would have spoken out if it went against him at the Assizes." + +"I am glad to hear you say so," said Holmes gravely. + +"I would have spoken now had it not been for my dear girl. It would break her heart--it will break her heart when she hears that I am arrested." + +"It may not come to that," said Holmes. + +"What?" + +"I am no official agent. I understand that it was your daughter who required my presence here, and I am acting in her interests. Young McCarthy must be got off, however." + +"I am a dying man," said old Turner. "I have had diabetes for years. My doctor says it is a question whether I shall live a month. Yet I would rather die under my own roof than in a gaol." + +Holmes rose and sat down at the table with his pen in his hand and a bundle of paper before him. "Just tell us the truth," he said. "I shall jot down the facts. You will sign it, and Watson here can witness it. Then I could produce your confession at the last extremity to save young McCarthy. I promise you that I shall not use it unless it is absolutely needed." + +"It's as well," said the old man; "it's a question whether I shall live to the Assizes, so it matters little to me, but I should wish to spare Alice the shock. And now I will make the thing clear to you; it has been a long time in the acting, but will not take me long to tell. + +"You didn't know this dead man, McCarthy. He was a devil incarnate. I tell you that. God keep you out of the clutches of such a man as he. His grip has been upon me these twenty years, and he has blasted my life. I'll tell you first how I came to be in his power. + +"It was in the early '60's at the diggings. I was a young chap then, hot-blooded and reckless, ready to turn my hand at anything; I got among bad companions, took to drink, had no luck with my claim, took to the bush, and in a word became what you would call over here a highway robber. There were six of us, and we had a wild, free life of it, sticking up a station from time to time, or stopping the wagons on the road to the diggings. Black Jack of Ballarat was the name I went under, and our party is still remembered in the colony as the Ballarat Gang. + +"One day a gold convoy came down from Ballarat to Melbourne, and we lay in wait for it and attacked it. There were six troopers and six of us, so it was a close thing, but we emptied four of their saddles at the first volley. Three of our boys were killed, however, before we got the swag. I put my pistol to the head of the wagon-driver, who was this very man McCarthy. I wish to the Lord that I had shot him then, but I spared him, though I saw his wicked little eyes fixed on my face, as though to remember every feature. We got away with the gold, became wealthy men, and made our way over to England without being suspected. There I parted from my old pals and determined to settle down to a quiet and respectable life. I bought this estate, which chanced to be in the market, and I set myself to do a little good with my money, to make up for the way in which I had earned it. I married, too, and though my wife died young she left me my dear little Alice. Even when she was just a baby her wee hand seemed to lead me down the right path as nothing else had ever done. In a word, I turned over a new leaf and did my best to make up for the past. All was going well when McCarthy laid his grip upon me. + +"I had gone up to town about an investment, and I met him in Regent Street with hardly a coat to his back or a boot to his foot. + +" 'Here we are, Jack,' says he, touching me on the arm; 'we'll be as good as a family to you. There's two of us, me and my son, and you can have the keeping of us. If you don't--it's a fine, law-abiding country is England, and there's always a policeman within hail.' + +"Well, down they came to the west country, there was no shaking them off, and there they have lived rent free on my best land ever since. There was no rest for me, no peace, no forgetfulness; turn where I would, there was his cunning, grinning face at my elbow. It grew worse as Alice grew up, for he soon saw I was more afraid of her knowing my past than of the police. Whatever he wanted he must have, and whatever it was I gave him without question, land, money, houses, until at last he asked a thing which I could not give. He asked for Alice. + +"His son, you see, had grown up, and so had my girl, and as I was known to be in weak health, it seemed a fine stroke to him that his lad should step into the whole property. But there I was firm. I would not have his cursed stock mixed with mine; not that I had any dislike to the lad, but his blood was in him, and that was enough. I stood firm. McCarthy threatened. I braved him to do his worst. We were to meet at the pool midway between our houses to talk it over. + +"When I went down there I found him talking with his son, so I smoked a cigar and waited behind a tree until he should be alone. But as I listened to his talk all that was black and bitter in me seemed to come uppermost. He was urging his son to marry my daughter with as little regard for what she might think as if she were a slut from off the streets. It drove me mad to think that I and all that I held most dear should be in the power of such a man as this. Could I not snap the bond? I was already a dying and a desperate man. Though clear of mind and fairly strong of limb, I knew that my own fate was sealed. But my memory and my girl! Both could be saved if I could but silence that foul tongue. I did it, Mr. Holmes. I would do it again. Deeply as I have sinned, I have led a life of martyrdom to atone for it. But that my girl should be entangled in the same meshes which held me was more than I could suffer. I struck him down with no more compunction than if he had been some foul and venomous beast. His cry brought back his son; but I had gained the cover of the wood, though I was forced to go back to fetch the cloak which I had dropped in my flight. That is the true story, gentlemen, of all that occurred." + +"Well, it is not for me to judge you," said Holmes as the old man signed the statement which had been drawn out. "I pray that we may never be exposed to such a temptation." + +"I pray not, sir. And what do you intend to do?" + +"In view of your health, nothing. You are yourself aware that you will soon have to answer for your deed at a higher court than the Assizes. I will keep your confession, and if McCarthy is condemned I shall be forced to use it. If not, it shall never be seen by mortal eye; and your secret, whether you be alive or dead, shall be safe with us." + +"Farewell, then," said the old man solemnly. "Your own deathbeds, when they come, will be the easier for the thought of the peace which you have given to mine." Tottering and shaking in all his giant frame, he stumbled slowly from the room. + +"God help us!" said Holmes after a long silence. "Why does fate play such tricks with poor, helpless worms? I never hear of such a case as this that I do not think of Baxter's words, and say, 'There, but for the grace of God, goes Sherlock Holmes.' " + +James McCarthy was acquitted at the Assizes on the strength of a number of objections which had been drawn out by Holmes and submitted to the defending counsel. Old Turner lived for seven months after our interview, but he is now dead; and there is every prospect that the son and daughter may come to live happily together in ignorance of the black cloud which rests upon their past. + +ADVENTURE V. THE FIVE ORANGE PIPS + + +When I glance over my notes and records of the Sherlock Holmes cases between the years '82 and '90, I am faced by so many which present strange and interesting features that it is no easy matter to know which to choose and which to leave. Some, however, have already gained publicity through the papers, and others have not offered a field for those peculiar qualities which my friend possessed in so high a degree, and which it is the object of these papers to illustrate. Some, too, have baffled his analytical skill, and would be, as narratives, beginnings without an ending, while others have been but partially cleared up, and have their explanations founded rather upon conjecture and surmise than on that absolute logical proof which was so dear to him. There is, however, one of these last which was so remarkable in its details and so startling in its results that I am tempted to give some account of it in spite of the fact that there are points in connection with it which never have been, and probably never will be, entirely cleared up. + +The year '87 furnished us with a long series of cases of greater or less interest, of which I retain the records. Among my headings under this one twelve months I find an account of the adventure of the Paradol Chamber, of the Amateur Mendicant Society, who held a luxurious club in the lower vault of a furniture warehouse, of the facts connected with the loss of the British barque Sophy Anderson, of the singular adventures of the Grice Patersons in the island of Uffa, and finally of the Camberwell poisoning case. In the latter, as may be remembered, Sherlock Holmes was able, by winding up the dead man's watch, to prove that it had been wound up two hours before, and that therefore the deceased had gone to bed within that time--a deduction which was of the greatest importance in clearing up the case. All these I may sketch out at some future date, but none of them present such singular features as the strange train of circumstances which I have now taken up my pen to describe. + +It was in the latter days of September, and the equinoctial gales had set in with exceptional violence. All day the wind had screamed and the rain had beaten against the windows, so that even here in the heart of great, hand-made London we were forced to raise our minds for the instant from the routine of life and to recognise the presence of those great elemental forces which shriek at mankind through the bars of his civilisation, like untamed beasts in a cage. As evening drew in, the storm grew higher and louder, and the wind cried and sobbed like a child in the chimney. Sherlock Holmes sat moodily at one side of the fireplace cross-indexing his records of crime, while I at the other was deep in one of Clark Russell's fine sea-stories until the howl of the gale from without seemed to blend with the text, and the splash of the rain to lengthen out into the long swash of the sea waves. My wife was on a visit to her mother's, and for a few days I was a dweller once more in my old quarters at Baker Street. + +"Why," said I, glancing up at my companion, "that was surely the bell. Who could come to-night? Some friend of yours, perhaps?" + +"Except yourself I have none," he answered. "I do not encourage visitors." + +"A client, then?" + +"If so, it is a serious case. Nothing less would bring a man out on such a day and at such an hour. But I take it that it is more likely to be some crony of the landlady's." + +Sherlock Holmes was wrong in his conjecture, however, for there came a step in the passage and a tapping at the door. He stretched out his long arm to turn the lamp away from himself and towards the vacant chair upon which a newcomer must sit. + +"Come in!" said he. + +The man who entered was young, some two-and-twenty at the outside, well-groomed and trimly clad, with something of refinement and delicacy in his bearing. The streaming umbrella which he held in his hand, and his long shining waterproof told of the fierce weather through which he had come. He looked about him anxiously in the glare of the lamp, and I could see that his face was pale and his eyes heavy, like those of a man who is weighed down with some great anxiety. + +"I owe you an apology," he said, raising his golden pince-nez to his eyes. "I trust that I am not intruding. I fear that I have brought some traces of the storm and rain into your snug chamber." + +"Give me your coat and umbrella," said Holmes. "They may rest here on the hook and will be dry presently. You have come up from the south-west, I see." + +"Yes, from Horsham." + +"That clay and chalk mixture which I see upon your toe caps is quite distinctive." + +"I have come for advice." + +"That is easily got." + +"And help." + +"That is not always so easy." + +"I have heard of you, Mr. Holmes. I heard from Major Prendergast how you saved him in the Tankerville Club scandal." + +"Ah, of course. He was wrongfully accused of cheating at cards." + +"He said that you could solve anything." + +"He said too much." + +"That you are never beaten." + +"I have been beaten four times--three times by men, and once by a woman." + +"But what is that compared with the number of your successes?" + +"It is true that I have been generally successful." + +"Then you may be so with me." + +"I beg that you will draw your chair up to the fire and favour me with some details as to your case." + +"It is no ordinary one." + +"None of those which come to me are. I am the last court of appeal." + +"And yet I question, sir, whether, in all your experience, you have ever listened to a more mysterious and inexplicable chain of events than those which have happened in my own family." + +"You fill me with interest," said Holmes. "Pray give us the essential facts from the commencement, and I can afterwards question you as to those details which seem to me to be most important." + +The young man pulled his chair up and pushed his wet feet out towards the blaze. + +"My name," said he, "is John Openshaw, but my own affairs have, as far as I can understand, little to do with this awful business. It is a hereditary matter; so in order to give you an idea of the facts, I must go back to the commencement of the affair. + +"You must know that my grandfather had two sons--my uncle Elias and my father Joseph. My father had a small factory at Coventry, which he enlarged at the time of the invention of bicycling. He was a patentee of the Openshaw unbreakable tire, and his business met with such success that he was able to sell it and to retire upon a handsome competence. + +"My uncle Elias emigrated to America when he was a young man and became a planter in Florida, where he was reported to have done very well. At the time of the war he fought in Jackson's army, and afterwards under Hood, where he rose to be a colonel. When Lee laid down his arms my uncle returned to his plantation, where he remained for three or four years. About 1869 or 1870 he came back to Europe and took a small estate in Sussex, near Horsham. He had made a very considerable fortune in the States, and his reason for leaving them was his aversion to the negroes, and his dislike of the Republican policy in extending the franchise to them. He was a singular man, fierce and quick-tempered, very foul-mouthed when he was angry, and of a most retiring disposition. During all the years that he lived at Horsham, I doubt if ever he set foot in the town. He had a garden and two or three fields round his house, and there he would take his exercise, though very often for weeks on end he would never leave his room. He drank a great deal of brandy and smoked very heavily, but he would see no society and did not want any friends, not even his own brother. + +"He didn't mind me; in fact, he took a fancy to me, for at the time when he saw me first I was a youngster of twelve or so. This would be in the year 1878, after he had been eight or nine years in England. He begged my father to let me live with him and he was very kind to me in his way. When he was sober he used to be fond of playing backgammon and draughts with me, and he would make me his representative both with the servants and with the tradespeople, so that by the time that I was sixteen I was quite master of the house. I kept all the keys and could go where I liked and do what I liked, so long as I did not disturb him in his privacy. There was one singular exception, however, for he had a single room, a lumber-room up among the attics, which was invariably locked, and which he would never permit either me or anyone else to enter. With a boy's curiosity I have peeped through the keyhole, but I was never able to see more than such a collection of old trunks and bundles as would be expected in such a room. + +"One day--it was in March, 1883--a letter with a foreign stamp lay upon the table in front of the colonel's plate. It was not a common thing for him to receive letters, for his bills were all paid in ready money, and he had no friends of any sort. 'From India!' said he as he took it up, 'Pondicherry postmark! What can this be?' Opening it hurriedly, out there jumped five little dried orange pips, which pattered down upon his plate. I began to laugh at this, but the laugh was struck from my lips at the sight of his face. His lip had fallen, his eyes were protruding, his skin the colour of putty, and he glared at the envelope which he still held in his trembling hand, 'K. K. K.!' he shrieked, and then, 'My God, my God, my sins have overtaken me!' + +" 'What is it, uncle?' I cried. + +" 'Death,' said he, and rising from the table he retired to his room, leaving me palpitating with horror. I took up the envelope and saw scrawled in red ink upon the inner flap, just above the gum, the letter K three times repeated. There was nothing else save the five dried pips. What could be the reason of his overpowering terror? I left the breakfast-table, and as I ascended the stair I met him coming down with an old rusty key, which must have belonged to the attic, in one hand, and a small brass box, like a cashbox, in the other. + +" 'They may do what they like, but I'll checkmate them still,' said he with an oath. 'Tell Mary that I shall want a fire in my room to-day, and send down to Fordham, the Horsham lawyer.' + +"I did as he ordered, and when the lawyer arrived I was asked to step up to the room. The fire was burning brightly, and in the grate there was a mass of black, fluffy ashes, as of burned paper, while the brass box stood open and empty beside it. As I glanced at the box I noticed, with a start, that upon the lid was printed the treble K which I had read in the morning upon the envelope. + +" 'I wish you, John,' said my uncle, 'to witness my will. I leave my estate, with all its advantages and all its disadvantages, to my brother, your father, whence it will, no doubt, descend to you. If you can enjoy it in peace, well and good! If you find you cannot, take my advice, my boy, and leave it to your deadliest enemy. I am sorry to give you such a two-edged thing, but I can't say what turn things are going to take. Kindly sign the paper where Mr. Fordham shows you.' + +"I signed the paper as directed, and the lawyer took it away with him. The singular incident made, as you may think, the deepest impression upon me, and I pondered over it and turned it every way in my mind without being able to make anything of it. Yet I could not shake off the vague feeling of dread which it left behind, though the sensation grew less keen as the weeks passed and nothing happened to disturb the usual routine of our lives. I could see a change in my uncle, however. He drank more than ever, and he was less inclined for any sort of society. Most of his time he would spend in his room, with the door locked upon the inside, but sometimes he would emerge in a sort of drunken frenzy and would burst out of the house and tear about the garden with a revolver in his hand, screaming out that he was afraid of no man, and that he was not to be cooped up, like a sheep in a pen, by man or devil. When these hot fits were over, however, he would rush tumultuously in at the door and lock and bar it behind him, like a man who can brazen it out no longer against the terror which lies at the roots of his soul. At such times I have seen his face, even on a cold day, glisten with moisture, as though it were new raised from a basin. + +"Well, to come to an end of the matter, Mr. Holmes, and not to abuse your patience, there came a night when he made one of those drunken sallies from which he never came back. We found him, when we went to search for him, face downward in a little green-scummed pool, which lay at the foot of the garden. There was no sign of any violence, and the water was but two feet deep, so that the jury, having regard to his known eccentricity, brought in a verdict of 'suicide.' But I, who knew how he winced from the very thought of death, had much ado to persuade myself that he had gone out of his way to meet it. The matter passed, however, and my father entered into possession of the estate, and of some $14,000, which lay to his credit at the bank." + +"One moment," Holmes interposed, "your statement is, I foresee, one of the most remarkable to which I have ever listened. Let me have the date of the reception by your uncle of the letter, and the date of his supposed suicide." + +"The letter arrived on March 10, 1883. His death was seven weeks later, upon the night of May 2nd." + +"Thank you. Pray proceed." + +"When my father took over the Horsham property, he, at my request, made a careful examination of the attic, which had been always locked up. We found the brass box there, although its contents had been destroyed. On the inside of the cover was a paper label, with the initials of K. K. K. repeated upon it, and 'Letters, memoranda, receipts, and a register' written beneath. These, we presume, indicated the nature of the papers which had been destroyed by Colonel Openshaw. For the rest, there was nothing of much importance in the attic save a great many scattered papers and note-books bearing upon my uncle's life in America. Some of them were of the war time and showed that he had done his duty well and had borne the repute of a brave soldier. Others were of a date during the reconstruction of the Southern states, and were mostly concerned with politics, for he had evidently taken a strong part in opposing the carpet-bag politicians who had been sent down from the North. + +"Well, it was the beginning of '84 when my father came to live at Horsham, and all went as well as possible with us until the January of '85. On the fourth day after the new year I heard my father give a sharp cry of surprise as we sat together at the breakfast-table. There he was, sitting with a newly opened envelope in one hand and five dried orange pips in the outstretched palm of the other one. He had always laughed at what he called my cock-and-bull story about the colonel, but he looked very scared and puzzled now that the same thing had come upon himself. + +" 'Why, what on earth does this mean, John?' he stammered. + +"My heart had turned to lead. 'It is K. K. K.,' said I. + +"He looked inside the envelope. 'So it is,' he cried. 'Here are the very letters. But what is this written above them?' + +" 'Put the papers on the sundial,' I read, peeping over his shoulder. + +" 'What papers? What sundial?' he asked. + +" 'The sundial in the garden. There is no other,' said I; 'but the papers must be those that are destroyed.' + +" 'Pooh!' said he, gripping hard at his courage. 'We are in a civilised land here, and we can't have tomfoolery of this kind. Where does the thing come from?' + +" 'From Dundee,' I answered, glancing at the postmark. + +" 'Some preposterous practical joke,' said he. 'What have I to do with sundials and papers? I shall take no notice of such nonsense.' + +" 'I should certainly speak to the police,' I said. + +" 'And be laughed at for my pains. Nothing of the sort.' + +" 'Then let me do so?' + +" 'No, I forbid you. I won't have a fuss made about such nonsense.' + +"It was in vain to argue with him, for he was a very obstinate man. I went about, however, with a heart which was full of forebodings. + +"On the third day after the coming of the letter my father went from home to visit an old friend of his, Major Freebody, who is in command of one of the forts upon Portsdown Hill. I was glad that he should go, for it seemed to me that he was farther from danger when he was away from home. In that, however, I was in error. Upon the second day of his absence I received a telegram from the major, imploring me to come at once. My father had fallen over one of the deep chalk-pits which abound in the neighbourhood, and was lying senseless, with a shattered skull. I hurried to him, but he passed away without having ever recovered his consciousness. He had, as it appears, been returning from Fareham in the twilight, and as the country was unknown to him, and the chalk-pit unfenced, the jury had no hesitation in bringing in a verdict of 'death from accidental causes.' Carefully as I examined every fact connected with his death, I was unable to find anything which could suggest the idea of murder. There were no signs of violence, no footmarks, no robbery, no record of strangers having been seen upon the roads. And yet I need not tell you that my mind was far from at ease, and that I was well-nigh certain that some foul plot had been woven round him. + +"In this sinister way I came into my inheritance. You will ask me why I did not dispose of it? I answer, because I was well convinced that our troubles were in some way dependent upon an incident in my uncle's life, and that the danger would be as pressing in one house as in another. + +"It was in January, '85, that my poor father met his end, and two years and eight months have elapsed since then. During that time I have lived happily at Horsham, and I had begun to hope that this curse had passed away from the family, and that it had ended with the last generation. I had begun to take comfort too soon, however; yesterday morning the blow fell in the very shape in which it had come upon my father." + +The young man took from his waistcoat a crumpled envelope, and turning to the table he shook out upon it five little dried orange pips. + +"This is the envelope," he continued. "The postmark is London--eastern division. Within are the very words which were upon my father's last message: 'K. K. K.'; and then 'Put the papers on the sundial.' " + +"What have you done?" asked Holmes. + +"Nothing." + +"Nothing?" + +"To tell the truth"--he sank his face into his thin, white hands--"I have felt helpless. I have felt like one of those poor rabbits when the snake is writhing towards it. I seem to be in the grasp of some resistless, inexorable evil, which no foresight and no precautions can guard against." + +"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are lost. Nothing but energy can save you. This is no time for despair." + +"I have seen the police." + +"Ah!" + +"But they listened to my story with a smile. I am convinced that the inspector has formed the opinion that the letters are all practical jokes, and that the deaths of my relations were really accidents, as the jury stated, and were not to be connected with the warnings." + +Holmes shook his clenched hands in the air. "Incredible imbecility!" he cried. + +"They have, however, allowed me a policeman, who may remain in the house with me." + +"Has he come with you to-night?" + +"No. His orders were to stay in the house." + +Again Holmes raved in the air. + +"Why did you come to me," he cried, "and, above all, why did you not come at once?" + +"I did not know. It was only to-day that I spoke to Major Prendergast about my troubles and was advised by him to come to you." + +"It is really two days since you had the letter. We should have acted before this. You have no further evidence, I suppose, than that which you have placed before us--no suggestive detail which might help us?" + +"There is one thing," said John Openshaw. He rummaged in his coat pocket, and, drawing out a piece of discoloured, blue-tinted paper, he laid it out upon the table. "I have some remembrance," said he, "that on the day when my uncle burned the papers I observed that the small, unburned margins which lay amid the ashes were of this particular colour. I found this single sheet upon the floor of his room, and I am inclined to think that it may be one of the papers which has, perhaps, fluttered out from among the others, and in that way has escaped destruction. Beyond the mention of pips, I do not see that it helps us much. I think myself that it is a page from some private diary. The writing is undoubtedly my uncle's." + +Holmes moved the lamp, and we both bent over the sheet of paper, which showed by its ragged edge that it had indeed been torn from a book. It was headed, "March, 1869," and beneath were the following enigmatical notices: + +"4th. Hudson came. Same old platform. + +"7th. Set the pips on McCauley, Paramore, and + + John Swain, of St. Augustine. + +"9th. McCauley cleared. + +"10th. John Swain cleared. + +"12th. Visited Paramore. All well." + +"Thank you!" said Holmes, folding up the paper and returning it to our visitor. "And now you must on no account lose another instant. We cannot spare time even to discuss what you have told me. You must get home instantly and act." + +"What shall I do?" + +"There is but one thing to do. It must be done at once. You must put this piece of paper which you have shown us into the brass box which you have described. You must also put in a note to say that all the other papers were burned by your uncle, and that this is the only one which remains. You must assert that in such words as will carry conviction with them. Having done this, you must at once put the box out upon the sundial, as directed. Do you understand?" + +"Entirely." + +"Do not think of revenge, or anything of the sort, at present. I think that we may gain that by means of the law; but we have our web to weave, while theirs is already woven. The first consideration is to remove the pressing danger which threatens you. The second is to clear up the mystery and to punish the guilty parties." + +"I thank you," said the young man, rising and pulling on his overcoat. "You have given me fresh life and hope. I shall certainly do as you advise." + +"Do not lose an instant. And, above all, take care of yourself in the meanwhile, for I do not think that there can be a doubt that you are threatened by a very real and imminent danger. How do you go back?" + +"By train from Waterloo." + +"It is not yet nine. The streets will be crowded, so I trust that you may be in safety. And yet you cannot guard yourself too closely." + +"I am armed." + +"That is well. To-morrow I shall set to work upon your case." + +"I shall see you at Horsham, then?" + +"No, your secret lies in London. It is there that I shall seek it." + +"Then I shall call upon you in a day, or in two days, with news as to the box and the papers. I shall take your advice in every particular." He shook hands with us and took his leave. Outside the wind still screamed and the rain splashed and pattered against the windows. This strange, wild story seemed to have come to us from amid the mad elements--blown in upon us like a sheet of sea-weed in a gale--and now to have been reabsorbed by them once more. + +Sherlock Holmes sat for some time in silence, with his head sunk forward and his eyes bent upon the red glow of the fire. Then he lit his pipe, and leaning back in his chair he watched the blue smoke-rings as they chased each other up to the ceiling. + +"I think, Watson," he remarked at last, "that of all our cases we have had none more fantastic than this." + +"Save, perhaps, the Sign of Four." + +"Well, yes. Save, perhaps, that. And yet this John Openshaw seems to me to be walking amid even greater perils than did the Sholtos." + +"But have you," I asked, "formed any definite conception as to what these perils are?" + +"There can be no question as to their nature," he answered. + +"Then what are they? Who is this K. K. K., and why does he pursue this unhappy family?" + +Sherlock Holmes closed his eyes and placed his elbows upon the arms of his chair, with his finger-tips together. "The ideal reasoner," he remarked, "would, when he had once been shown a single fact in all its bearings, deduce from it not only all the chain of events which led up to it but also all the results which would follow from it. As Cuvier could correctly describe a whole animal by the contemplation of a single bone, so the observer who has thoroughly understood one link in a series of incidents should be able to accurately state all the other ones, both before and after. We have not yet grasped the results which the reason alone can attain to. Problems may be solved in the study which have baffled all those who have sought a solution by the aid of their senses. To carry the art, however, to its highest pitch, it is necessary that the reasoner should be able to utilise all the facts which have come to his knowledge; and this in itself implies, as you will readily see, a possession of all knowledge, which, even in these days of free education and encyclopaedias, is a somewhat rare accomplishment. It is not so impossible, however, that a man should possess all knowledge which is likely to be useful to him in his work, and this I have endeavoured in my case to do. If I remember rightly, you on one occasion, in the early days of our friendship, defined my limits in a very precise fashion." + +"Yes," I answered, laughing. "It was a singular document. Philosophy, astronomy, and politics were marked at zero, I remember. Botany variable, geology profound as regards the mud-stains from any region within fifty miles of town, chemistry eccentric, anatomy unsystematic, sensational literature and crime records unique, violin-player, boxer, swordsman, lawyer, and self-poisoner by cocaine and tobacco. Those, I think, were the main points of my analysis." + +Holmes grinned at the last item. "Well," he said, "I say now, as I said then, that a man should keep his little brain-attic stocked with all the furniture that he is likely to use, and the rest he can put away in the lumber-room of his library, where he can get it if he wants it. Now, for such a case as the one which has been submitted to us to-night, we need certainly to muster all our resources. Kindly hand me down the letter K of the American Encyclopaedia which stands upon the shelf beside you. Thank you. Now let us consider the situation and see what may be deduced from it. In the first place, we may start with a strong presumption that Colonel Openshaw had some very strong reason for leaving America. Men at his time of life do not change all their habits and exchange willingly the charming climate of Florida for the lonely life of an English provincial town. His extreme love of solitude in England suggests the idea that he was in fear of someone or something, so we may assume as a working hypothesis that it was fear of someone or something which drove him from America. As to what it was he feared, we can only deduce that by considering the formidable letters which were received by himself and his successors. Did you remark the postmarks of those letters?" + +"The first was from Pondicherry, the second from Dundee, and the third from London." + +"From East London. What do you deduce from that?" + +"They are all seaports. That the writer was on board of a ship." + +"Excellent. We have already a clue. There can be no doubt that the probability--the strong probability--is that the writer was on board of a ship. And now let us consider another point. In the case of Pondicherry, seven weeks elapsed between the threat and its fulfilment, in Dundee it was only some three or four days. Does that suggest anything?" + +"A greater distance to travel." + +"But the letter had also a greater distance to come." + +"Then I do not see the point." + +"There is at least a presumption that the vessel in which the man or men are is a sailing-ship. It looks as if they always send their singular warning or token before them when starting upon their mission. You see how quickly the deed followed the sign when it came from Dundee. If they had come from Pondicherry in a steamer they would have arrived almost as soon as their letter. But, as a matter of fact, seven weeks elapsed. I think that those seven weeks represented the difference between the mail-boat which brought the letter and the sailing vessel which brought the writer." + +"It is possible." + +"More than that. It is probable. And now you see the deadly urgency of this new case, and why I urged young Openshaw to caution. The blow has always fallen at the end of the time which it would take the senders to travel the distance. But this one comes from London, and therefore we cannot count upon delay." + +"Good God!" I cried. "What can it mean, this relentless persecution?" + +"The papers which Openshaw carried are obviously of vital importance to the person or persons in the sailing-ship. I think that it is quite clear that there must be more than one of them. A single man could not have carried out two deaths in such a way as to deceive a coroner's jury. There must have been several in it, and they must have been men of resource and determination. Their papers they mean to have, be the holder of them who it may. In this way you see K. K. K. ceases to be the initials of an individual and becomes the badge of a society." + +"But of what society?" + +"Have you never--" said Sherlock Holmes, bending forward and sinking his voice--"have you never heard of the Ku Klux Klan?" + +"I never have." + +Holmes turned over the leaves of the book upon his knee. "Here it is," said he presently: + +" 'Ku Klux Klan. A name derived from the fanciful resemblance to the sound produced by cocking a rifle. This terrible secret society was formed by some ex-Confederate soldiers in the Southern states after the Civil War, and it rapidly formed local branches in different parts of the country, notably in Tennessee, Louisiana, the Carolinas, Georgia, and Florida. Its power was used for political purposes, principally for the terrorising of the negro voters and the murdering and driving from the country of those who were opposed to its views. Its outrages were usually preceded by a warning sent to the marked man in some fantastic but generally recognised shape--a sprig of oak-leaves in some parts, melon seeds or orange pips in others. On receiving this the victim might either openly abjure his former ways, or might fly from the country. If he braved the matter out, death would unfailingly come upon him, and usually in some strange and unforeseen manner. So perfect was the organisation of the society, and so systematic its methods, that there is hardly a case upon record where any man succeeded in braving it with impunity, or in which any of its outrages were traced home to the perpetrators. For some years the organisation flourished in spite of the efforts of the United States government and of the better classes of the community in the South. Eventually, in the year 1869, the movement rather suddenly collapsed, although there have been sporadic outbreaks of the same sort since that date.' + +"You will observe," said Holmes, laying down the volume, "that the sudden breaking up of the society was coincident with the disappearance of Openshaw from America with their papers. It may well have been cause and effect. It is no wonder that he and his family have some of the more implacable spirits upon their track. You can understand that this register and diary may implicate some of the first men in the South, and that there may be many who will not sleep easy at night until it is recovered." + +"Then the page we have seen--" + +"Is such as we might expect. It ran, if I remember right, 'sent the pips to A, B, and C'--that is, sent the society's warning to them. Then there are successive entries that A and B cleared, or left the country, and finally that C was visited, with, I fear, a sinister result for C. Well, I think, Doctor, that we may let some light into this dark place, and I believe that the only chance young Openshaw has in the meantime is to do what I have told him. There is nothing more to be said or to be done to-night, so hand me over my violin and let us try to forget for half an hour the miserable weather and the still more miserable ways of our fellow men." + +It had cleared in the morning, and the sun was shining with a subdued brightness through the dim veil which hangs over the great city. Sherlock Holmes was already at breakfast when I came down. + +"You will excuse me for not waiting for you," said he; "I have, I foresee, a very busy day before me in looking into this case of young Openshaw's." + +"What steps will you take?" I asked. + +"It will very much depend upon the results of my first inquiries. I may have to go down to Horsham, after all." + +"You will not go there first?" + +"No, I shall commence with the City. Just ring the bell and the maid will bring up your coffee." + +As I waited, I lifted the unopened newspaper from the table and glanced my eye over it. It rested upon a heading which sent a chill to my heart. + +"Holmes," I cried, "you are too late." + +"Ah!" said he, laying down his cup, "I feared as much. How was it done?" He spoke calmly, but I could see that he was deeply moved. + +"My eye caught the name of Openshaw, and the heading 'Tragedy Near Waterloo Bridge.' Here is the account: + +" 'Between nine and ten last night Police-Constable Cook, of the H Division, on duty near Waterloo Bridge, heard a cry for help and a splash in the water. The night, however, was extremely dark and stormy, so that, in spite of the help of several passers-by, it was quite impossible to effect a rescue. The alarm, however, was given, and, by the aid of the water-police, the body was eventually recovered. It proved to be that of a young gentleman whose name, as it appears from an envelope which was found in his pocket, was John Openshaw, and whose residence is near Horsham. It is conjectured that he may have been hurrying down to catch the last train from Waterloo Station, and that in his haste and the extreme darkness he missed his path and walked over the edge of one of the small landing-places for river steamboats. The body exhibited no traces of violence, and there can be no doubt that the deceased had been the victim of an unfortunate accident, which should have the effect of calling the attention of the authorities to the condition of the riverside landing-stages.' " + +We sat in silence for some minutes, Holmes more depressed and shaken than I had ever seen him. + +"That hurts my pride, Watson," he said at last. "It is a petty feeling, no doubt, but it hurts my pride. It becomes a personal matter with me now, and, if God sends me health, I shall set my hand upon this gang. That he should come to me for help, and that I should send him away to his death--!" He sprang from his chair and paced about the room in uncontrollable agitation, with a flush upon his sallow cheeks and a nervous clasping and unclasping of his long thin hands. + +"They must be cunning devils," he exclaimed at last. "How could they have decoyed him down there? The Embankment is not on the direct line to the station. The bridge, no doubt, was too crowded, even on such a night, for their purpose. Well, Watson, we shall see who will win in the long run. I am going out now!" + +"To the police?" + +"No; I shall be my own police. When I have spun the web they may take the flies, but not before." + +All day I was engaged in my professional work, and it was late in the evening before I returned to Baker Street. Sherlock Holmes had not come back yet. It was nearly ten o'clock before he entered, looking pale and worn. He walked up to the sideboard, and tearing a piece from the loaf he devoured it voraciously, washing it down with a long draught of water. + +"You are hungry," I remarked. + +"Starving. It had escaped my memory. I have had nothing since breakfast." + +"Nothing?" + +"Not a bite. I had no time to think of it." + +"And how have you succeeded?" + +"Well." + +"You have a clue?" + +"I have them in the hollow of my hand. Young Openshaw shall not long remain unavenged. Why, Watson, let us put their own devilish trade-mark upon them. It is well thought of!" + +"What do you mean?" + +He took an orange from the cupboard, and tearing it to pieces he squeezed out the pips upon the table. Of these he took five and thrust them into an envelope. On the inside of the flap he wrote "S. H. for J. O." Then he sealed it and addressed it to "Captain James Calhoun, Barque Lone Star, Savannah, Georgia." + +"That will await him when he enters port," said he, chuckling. "It may give him a sleepless night. He will find it as sure a precursor of his fate as Openshaw did before him." + +"And who is this Captain Calhoun?" + +"The leader of the gang. I shall have the others, but he first." + +"How did you trace it, then?" + +He took a large sheet of paper from his pocket, all covered with dates and names. + +"I have spent the whole day," said he, "over Lloyd's registers and files of the old papers, following the future career of every vessel which touched at Pondicherry in January and February in '83. There were thirty-six ships of fair tonnage which were reported there during those months. Of these, one, the Lone Star, instantly attracted my attention, since, although it was reported as having cleared from London, the name is that which is given to one of the states of the Union." + +"Texas, I think." + +"I was not and am not sure which; but I knew that the ship must have an American origin." + +"What then?" + +"I searched the Dundee records, and when I found that the barque Lone Star was there in January, '85, my suspicion became a certainty. I then inquired as to the vessels which lay at present in the port of London." + +"Yes?" + +"The Lone Star had arrived here last week. I went down to the Albert Dock and found that she had been taken down the river by the early tide this morning, homeward bound to Savannah. I wired to Gravesend and learned that she had passed some time ago, and as the wind is easterly I have no doubt that she is now past the Goodwins and not very far from the Isle of Wight." + +"What will you do, then?" + +"Oh, I have my hand upon him. He and the two mates, are as I learn, the only native-born Americans in the ship. The others are Finns and Germans. I know, also, that they were all three away from the ship last night. I had it from the stevedore who has been loading their cargo. By the time that their sailing-ship reaches Savannah the mail-boat will have carried this letter, and the cable will have informed the police of Savannah that these three gentlemen are badly wanted here upon a charge of murder." + +There is ever a flaw, however, in the best laid of human plans, and the murderers of John Openshaw were never to receive the orange pips which would show them that another, as cunning and as resolute as themselves, was upon their track. Very long and very severe were the equinoctial gales that year. We waited long for news of the Lone Star of Savannah, but none ever reached us. We did at last hear that somewhere far out in the Atlantic a shattered stern-post of a boat was seen swinging in the trough of a wave, with the letters "L. S." carved upon it, and that is all which we shall ever know of the fate of the Lone Star. + +ADVENTURE VI. THE MAN WITH THE TWISTED LIP + + +Isa Whitney, brother of the late Elias Whitney, D.D., Principal of the Theological College of St. George's, was much addicted to opium. The habit grew upon him, as I understand, from some foolish freak when he was at college; for having read De Quincey's description of his dreams and sensations, he had drenched his tobacco with laudanum in an attempt to produce the same effects. He found, as so many more have done, that the practice is easier to attain than to get rid of, and for many years he continued to be a slave to the drug, an object of mingled horror and pity to his friends and relatives. I can see him now, with yellow, pasty face, drooping lids, and pin-point pupils, all huddled in a chair, the wreck and ruin of a noble man. + +One night--it was in June, '89--there came a ring to my bell, about the hour when a man gives his first yawn and glances at the clock. I sat up in my chair, and my wife laid her needle-work down in her lap and made a little face of disappointment. + +"A patient!" said she. "You'll have to go out." + +I groaned, for I was newly come back from a weary day. + +We heard the door open, a few hurried words, and then quick steps upon the linoleum. Our own door flew open, and a lady, clad in some dark-coloured stuff, with a black veil, entered the room. + +"You will excuse my calling so late," she began, and then, suddenly losing her self-control, she ran forward, threw her arms about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in such trouble!" she cried; "I do so want a little help." + +"Why," said my wife, pulling up her veil, "it is Kate Whitney. How you startled me, Kate! I had not an idea who you were when you came in." + +"I didn't know what to do, so I came straight to you." That was always the way. Folk who were in grief came to my wife like birds to a light-house. + +"It was very sweet of you to come. Now, you must have some wine and water, and sit here comfortably and tell us all about it. Or should you rather that I sent James off to bed?" + +"Oh, no, no! I want the doctor's advice and help, too. It's about Isa. He has not been home for two days. I am so frightened about him!" + +It was not the first time that she had spoken to us of her husband's trouble, to me as a doctor, to my wife as an old friend and school companion. We soothed and comforted her by such words as we could find. Did she know where her husband was? Was it possible that we could bring him back to her? + +It seems that it was. She had the surest information that of late he had, when the fit was on him, made use of an opium den in the farthest east of the City. Hitherto his orgies had always been confined to one day, and he had come back, twitching and shattered, in the evening. But now the spell had been upon him eight-and-forty hours, and he lay there, doubtless among the dregs of the docks, breathing in the poison or sleeping off the effects. There he was to be found, she was sure of it, at the Bar of Gold, in Upper Swandam Lane. But what was she to do? How could she, a young and timid woman, make her way into such a place and pluck her husband out from among the ruffians who surrounded him? + +There was the case, and of course there was but one way out of it. Might I not escort her to this place? And then, as a second thought, why should she come at all? I was Isa Whitney's medical adviser, and as such I had influence over him. I could manage it better if I were alone. I promised her on my word that I would send him home in a cab within two hours if he were indeed at the address which she had given me. And so in ten minutes I had left my armchair and cheery sitting-room behind me, and was speeding eastward in a hansom on a strange errand, as it seemed to me at the time, though the future only could show how strange it was to be. + +But there was no great difficulty in the first stage of my adventure. Upper Swandam Lane is a vile alley lurking behind the high wharves which line the north side of the river to the east of London Bridge. Between a slop-shop and a gin-shop, approached by a steep flight of steps leading down to a black gap like the mouth of a cave, I found the den of which I was in search. Ordering my cab to wait, I passed down the steps, worn hollow in the centre by the ceaseless tread of drunken feet; and by the light of a flickering oil-lamp above the door I found the latch and made my way into a long, low room, thick and heavy with the brown opium smoke, and terraced with wooden berths, like the forecastle of an emigrant ship. + +Through the gloom one could dimly catch a glimpse of bodies lying in strange fantastic poses, bowed shoulders, bent knees, heads thrown back, and chins pointing upward, with here and there a dark, lack-lustre eye turned upon the newcomer. Out of the black shadows there glimmered little red circles of light, now bright, now faint, as the burning poison waxed or waned in the bowls of the metal pipes. The most lay silent, but some muttered to themselves, and others talked together in a strange, low, monotonous voice, their conversation coming in gushes, and then suddenly tailing off into silence, each mumbling out his own thoughts and paying little heed to the words of his neighbour. At the farther end was a small brazier of burning charcoal, beside which on a three-legged wooden stool there sat a tall, thin old man, with his jaw resting upon his two fists, and his elbows upon his knees, staring into the fire. + +As I entered, a sallow Malay attendant had hurried up with a pipe for me and a supply of the drug, beckoning me to an empty berth. + +"Thank you. I have not come to stay," said I. "There is a friend of mine here, Mr. Isa Whitney, and I wish to speak with him." + +There was a movement and an exclamation from my right, and peering through the gloom, I saw Whitney, pale, haggard, and unkempt, staring out at me. + +"My God! It's Watson," said he. He was in a pitiable state of reaction, with every nerve in a twitter. "I say, Watson, what o'clock is it?" + +"Nearly eleven." + +"Of what day?" + +"Of Friday, June 19th." + +"Good heavens! I thought it was Wednesday. It is Wednesday. What d'you want to frighten a chap for?" He sank his face onto his arms and began to sob in a high treble key. + +"I tell you that it is Friday, man. Your wife has been waiting this two days for you. You should be ashamed of yourself!" + +"So I am. But you've got mixed, Watson, for I have only been here a few hours, three pipes, four pipes--I forget how many. But I'll go home with you. I wouldn't frighten Kate--poor little Kate. Give me your hand! Have you a cab?" + +"Yes, I have one waiting." + +"Then I shall go in it. But I must owe something. Find what I owe, Watson. I am all off colour. I can do nothing for myself." + +I walked down the narrow passage between the double row of sleepers, holding my breath to keep out the vile, stupefying fumes of the drug, and looking about for the manager. As I passed the tall man who sat by the brazier I felt a sudden pluck at my skirt, and a low voice whispered, "Walk past me, and then look back at me." The words fell quite distinctly upon my ear. I glanced down. They could only have come from the old man at my side, and yet he sat now as absorbed as ever, very thin, very wrinkled, bent with age, an opium pipe dangling down from between his knees, as though it had dropped in sheer lassitude from his fingers. I took two steps forward and looked back. It took all my self-control to prevent me from breaking out into a cry of astonishment. He had turned his back so that none could see him but I. His form had filled out, his wrinkles were gone, the dull eyes had regained their fire, and there, sitting by the fire and grinning at my surprise, was none other than Sherlock Holmes. He made a slight motion to me to approach him, and instantly, as he turned his face half round to the company once more, subsided into a doddering, loose-lipped senility. + +"Holmes!" I whispered, "what on earth are you doing in this den?" + +"As low as you can," he answered; "I have excellent ears. If you would have the great kindness to get rid of that sottish friend of yours I should be exceedingly glad to have a little talk with you." + +"I have a cab outside." + +"Then pray send him home in it. You may safely trust him, for he appears to be too limp to get into any mischief. I should recommend you also to send a note by the cabman to your wife to say that you have thrown in your lot with me. If you will wait outside, I shall be with you in five minutes." + +It was difficult to refuse any of Sherlock Holmes' requests, for they were always so exceedingly definite, and put forward with such a quiet air of mastery. I felt, however, that when Whitney was once confined in the cab my mission was practically accomplished; and for the rest, I could not wish anything better than to be associated with my friend in one of those singular adventures which were the normal condition of his existence. In a few minutes I had written my note, paid Whitney's bill, led him out to the cab, and seen him driven through the darkness. In a very short time a decrepit figure had emerged from the opium den, and I was walking down the street with Sherlock Holmes. For two streets he shuffled along with a bent back and an uncertain foot. Then, glancing quickly round, he straightened himself out and burst into a hearty fit of laughter. + +"I suppose, Watson," said he, "that you imagine that I have added opium-smoking to cocaine injections, and all the other little weaknesses on which you have favoured me with your medical views." + +"I was certainly surprised to find you there." + +"But not more so than I to find you." + +"I came to find a friend." + +"And I to find an enemy." + +"An enemy?" + +"Yes; one of my natural enemies, or, shall I say, my natural prey. Briefly, Watson, I am in the midst of a very remarkable inquiry, and I have hoped to find a clue in the incoherent ramblings of these sots, as I have done before now. Had I been recognised in that den my life would not have been worth an hour's purchase; for I have used it before now for my own purposes, and the rascally Lascar who runs it has sworn to have vengeance upon me. There is a trap-door at the back of that building, near the corner of Paul's Wharf, which could tell some strange tales of what has passed through it upon the moonless nights." + +"What! You do not mean bodies?" + +"Ay, bodies, Watson. We should be rich men if we had $1000 for every poor devil who has been done to death in that den. It is the vilest murder-trap on the whole riverside, and I fear that Neville St. Clair has entered it never to leave it more. But our trap should be here." He put his two forefingers between his teeth and whistled shrilly--a signal which was answered by a similar whistle from the distance, followed shortly by the rattle of wheels and the clink of horses' hoofs. + +"Now, Watson," said Holmes, as a tall dog-cart dashed up through the gloom, throwing out two golden tunnels of yellow light from its side lanterns. "You'll come with me, won't you?" + +"If I can be of use." + +"Oh, a trusty comrade is always of use; and a chronicler still more so. My room at The Cedars is a double-bedded one." + +"The Cedars?" + +"Yes; that is Mr. St. Clair's house. I am staying there while I conduct the inquiry." + +"Where is it, then?" + +"Near Lee, in Kent. We have a seven-mile drive before us." + +"But I am all in the dark." + +"Of course you are. You'll know all about it presently. Jump up here. All right, John; we shall not need you. Here's half a crown. Look out for me to-morrow, about eleven. Give her her head. So long, then!" + +He flicked the horse with his whip, and we dashed away through the endless succession of sombre and deserted streets, which widened gradually, until we were flying across a broad balustraded bridge, with the murky river flowing sluggishly beneath us. Beyond lay another dull wilderness of bricks and mortar, its silence broken only by the heavy, regular footfall of the policeman, or the songs and shouts of some belated party of revellers. A dull wrack was drifting slowly across the sky, and a star or two twinkled dimly here and there through the rifts of the clouds. Holmes drove in silence, with his head sunk upon his breast, and the air of a man who is lost in thought, while I sat beside him, curious to learn what this new quest might be which seemed to tax his powers so sorely, and yet afraid to break in upon the current of his thoughts. We had driven several miles, and were beginning to get to the fringe of the belt of suburban villas, when he shook himself, shrugged his shoulders, and lit up his pipe with the air of a man who has satisfied himself that he is acting for the best. + +"You have a grand gift of silence, Watson," said he. "It makes you quite invaluable as a companion. 'Pon my word, it is a great thing for me to have someone to talk to, for my own thoughts are not over-pleasant. I was wondering what I should say to this dear little woman to-night when she meets me at the door." + +"You forget that I know nothing about it." + +"I shall just have time to tell you the facts of the case before we get to Lee. It seems absurdly simple, and yet, somehow I can get nothing to go upon. There's plenty of thread, no doubt, but I can't get the end of it into my hand. Now, I'll state the case clearly and concisely to you, Watson, and maybe you can see a spark where all is dark to me." + +"Proceed, then." + +"Some years ago--to be definite, in May, 1884--there came to Lee a gentleman, Neville St. Clair by name, who appeared to have plenty of money. He took a large villa, laid out the grounds very nicely, and lived generally in good style. By degrees he made friends in the neighbourhood, and in 1887 he married the daughter of a local brewer, by whom he now has two children. He had no occupation, but was interested in several companies and went into town as a rule in the morning, returning by the 5:14 from Cannon Street every night. Mr. St. Clair is now thirty-seven years of age, is a man of temperate habits, a good husband, a very affectionate father, and a man who is popular with all who know him. I may add that his whole debts at the present moment, as far as we have been able to ascertain, amount to $88 10s., while he has $220 standing to his credit in the Capital and Counties Bank. There is no reason, therefore, to think that money troubles have been weighing upon his mind. + +"Last Monday Mr. Neville St. Clair went into town rather earlier than usual, remarking before he started that he had two important commissions to perform, and that he would bring his little boy home a box of bricks. Now, by the merest chance, his wife received a telegram upon this same Monday, very shortly after his departure, to the effect that a small parcel of considerable value which she had been expecting was waiting for her at the offices of the Aberdeen Shipping Company. Now, if you are well up in your London, you will know that the office of the company is in Fresno Street, which branches out of Upper Swandam Lane, where you found me to-night. Mrs. St. Clair had her lunch, started for the City, did some shopping, proceeded to the company's office, got her packet, and found herself at exactly 4:35 walking through Swandam Lane on her way back to the station. Have you followed me so far?" + +"It is very clear." + +"If you remember, Monday was an exceedingly hot day, and Mrs. St. Clair walked slowly, glancing about in the hope of seeing a cab, as she did not like the neighbourhood in which she found herself. While she was walking in this way down Swandam Lane, she suddenly heard an ejaculation or cry, and was struck cold to see her husband looking down at her and, as it seemed to her, beckoning to her from a second-floor window. The window was open, and she distinctly saw his face, which she describes as being terribly agitated. He waved his hands frantically to her, and then vanished from the window so suddenly that it seemed to her that he had been plucked back by some irresistible force from behind. One singular point which struck her quick feminine eye was that although he wore some dark coat, such as he had started to town in, he had on neither collar nor necktie. + +"Convinced that something was amiss with him, she rushed down the steps--for the house was none other than the opium den in which you found me to-night--and running through the front room she attempted to ascend the stairs which led to the first floor. At the foot of the stairs, however, she met this Lascar scoundrel of whom I have spoken, who thrust her back and, aided by a Dane, who acts as assistant there, pushed her out into the street. Filled with the most maddening doubts and fears, she rushed down the lane and, by rare good-fortune, met in Fresno Street a number of constables with an inspector, all on their way to their beat. The inspector and two men accompanied her back, and in spite of the continued resistance of the proprietor, they made their way to the room in which Mr. St. Clair had last been seen. There was no sign of him there. In fact, in the whole of that floor there was no one to be found save a crippled wretch of hideous aspect, who, it seems, made his home there. Both he and the Lascar stoutly swore that no one else had been in the front room during the afternoon. So determined was their denial that the inspector was staggered, and had almost come to believe that Mrs. St. Clair had been deluded when, with a cry, she sprang at a small deal box which lay upon the table and tore the lid from it. Out there fell a cascade of children's bricks. It was the toy which he had promised to bring home. + +"This discovery, and the evident confusion which the cripple showed, made the inspector realise that the matter was serious. The rooms were carefully examined, and results all pointed to an abominable crime. The front room was plainly furnished as a sitting-room and led into a small bedroom, which looked out upon the back of one of the wharves. Between the wharf and the bedroom window is a narrow strip, which is dry at low tide but is covered at high tide with at least four and a half feet of water. The bedroom window was a broad one and opened from below. On examination traces of blood were to be seen upon the windowsill, and several scattered drops were visible upon the wooden floor of the bedroom. Thrust away behind a curtain in the front room were all the clothes of Mr. Neville St. Clair, with the exception of his coat. His boots, his socks, his hat, and his watch--all were there. There were no signs of violence upon any of these garments, and there were no other traces of Mr. Neville St. Clair. Out of the window he must apparently have gone for no other exit could be discovered, and the ominous bloodstains upon the sill gave little promise that he could save himself by swimming, for the tide was at its very highest at the moment of the tragedy. + +"And now as to the villains who seemed to be immediately implicated in the matter. The Lascar was known to be a man of the vilest antecedents, but as, by Mrs. St. Clair's story, he was known to have been at the foot of the stair within a very few seconds of her husband's appearance at the window, he could hardly have been more than an accessory to the crime. His defence was one of absolute ignorance, and he protested that he had no knowledge as to the doings of Hugh Boone, his lodger, and that he could not account in any way for the presence of the missing gentleman's clothes. + +"So much for the Lascar manager. Now for the sinister cripple who lives upon the second floor of the opium den, and who was certainly the last human being whose eyes rested upon Neville St. Clair. His name is Hugh Boone, and his hideous face is one which is familiar to every man who goes much to the City. He is a professional beggar, though in order to avoid the police regulations he pretends to a small trade in wax vestas. Some little distance down Threadneedle Street, upon the left-hand side, there is, as you may have remarked, a small angle in the wall. Here it is that this creature takes his daily seat, cross-legged with his tiny stock of matches on his lap, and as he is a piteous spectacle a small rain of charity descends into the greasy leather cap which lies upon the pavement beside him. I have watched the fellow more than once before ever I thought of making his professional acquaintance, and I have been surprised at the harvest which he has reaped in a short time. His appearance, you see, is so remarkable that no one can pass him without observing him. A shock of orange hair, a pale face disfigured by a horrible scar, which, by its contraction, has turned up the outer edge of his upper lip, a bulldog chin, and a pair of very penetrating dark eyes, which present a singular contrast to the colour of his hair, all mark him out from amid the common crowd of mendicants and so, too, does his wit, for he is ever ready with a reply to any piece of chaff which may be thrown at him by the passers-by. This is the man whom we now learn to have been the lodger at the opium den, and to have been the last man to see the gentleman of whom we are in quest." + +"But a cripple!" said I. "What could he have done single-handed against a man in the prime of life?" + +"He is a cripple in the sense that he walks with a limp; but in other respects he appears to be a powerful and well-nurtured man. Surely your medical experience would tell you, Watson, that weakness in one limb is often compensated for by exceptional strength in the others." + +"Pray continue your narrative." + +"Mrs. St. Clair had fainted at the sight of the blood upon the window, and she was escorted home in a cab by the police, as her presence could be of no help to them in their investigations. Inspector Barton, who had charge of the case, made a very careful examination of the premises, but without finding anything which threw any light upon the matter. One mistake had been made in not arresting Boone instantly, as he was allowed some few minutes during which he might have communicated with his friend the Lascar, but this fault was soon remedied, and he was seized and searched, without anything being found which could incriminate him. There were, it is true, some blood-stains upon his right shirt-sleeve, but he pointed to his ring-finger, which had been cut near the nail, and explained that the bleeding came from there, adding that he had been to the window not long before, and that the stains which had been observed there came doubtless from the same source. He denied strenuously having ever seen Mr. Neville St. Clair and swore that the presence of the clothes in his room was as much a mystery to him as to the police. As to Mrs. St. Clair's assertion that she had actually seen her husband at the window, he declared that she must have been either mad or dreaming. He was removed, loudly protesting, to the police-station, while the inspector remained upon the premises in the hope that the ebbing tide might afford some fresh clue. + +"And it did, though they hardly found upon the mud-bank what they had feared to find. It was Neville St. Clair's coat, and not Neville St. Clair, which lay uncovered as the tide receded. And what do you think they found in the pockets?" + +"I cannot imagine." + +"No, I don't think you would guess. Every pocket stuffed with pennies and half-pennies--421 pennies and 270 half-pennies. It was no wonder that it had not been swept away by the tide. But a human body is a different matter. There is a fierce eddy between the wharf and the house. It seemed likely enough that the weighted coat had remained when the stripped body had been sucked away into the river." + +"But I understand that all the other clothes were found in the room. Would the body be dressed in a coat alone?" + +"No, sir, but the facts might be met speciously enough. Suppose that this man Boone had thrust Neville St. Clair through the window, there is no human eye which could have seen the deed. What would he do then? It would of course instantly strike him that he must get rid of the tell-tale garments. He would seize the coat, then, and be in the act of throwing it out, when it would occur to him that it would swim and not sink. He has little time, for he has heard the scuffle downstairs when the wife tried to force her way up, and perhaps he has already heard from his Lascar confederate that the police are hurrying up the street. There is not an instant to be lost. He rushes to some secret hoard, where he has accumulated the fruits of his beggary, and he stuffs all the coins upon which he can lay his hands into the pockets to make sure of the coat's sinking. He throws it out, and would have done the same with the other garments had not he heard the rush of steps below, and only just had time to close the window when the police appeared." + +"It certainly sounds feasible." + +"Well, we will take it as a working hypothesis for want of a better. Boone, as I have told you, was arrested and taken to the station, but it could not be shown that there had ever before been anything against him. He had for years been known as a professional beggar, but his life appeared to have been a very quiet and innocent one. There the matter stands at present, and the questions which have to be solved--what Neville St. Clair was doing in the opium den, what happened to him when there, where is he now, and what Hugh Boone had to do with his disappearance--are all as far from a solution as ever. I confess that I cannot recall any case within my experience which looked at the first glance so simple and yet which presented such difficulties." + +While Sherlock Holmes had been detailing this singular series of events, we had been whirling through the outskirts of the great town until the last straggling houses had been left behind, and we rattled along with a country hedge upon either side of us. Just as he finished, however, we drove through two scattered villages, where a few lights still glimmered in the windows. + +"We are on the outskirts of Lee," said my companion. "We have touched on three English counties in our short drive, starting in Middlesex, passing over an angle of Surrey, and ending in Kent. See that light among the trees? That is The Cedars, and beside that lamp sits a woman whose anxious ears have already, I have little doubt, caught the clink of our horse's feet." + +"But why are you not conducting the case from Baker Street?" I asked. + +"Because there are many inquiries which must be made out here. Mrs. St. Clair has most kindly put two rooms at my disposal, and you may rest assured that she will have nothing but a welcome for my friend and colleague. I hate to meet her, Watson, when I have no news of her husband. Here we are. Whoa, there, whoa!" + +We had pulled up in front of a large villa which stood within its own grounds. A stable-boy had run out to the horse's head, and springing down, I followed Holmes up the small, winding gravel-drive which led to the house. As we approached, the door flew open, and a little blonde woman stood in the opening, clad in some sort of light mousseline de soie, with a touch of fluffy pink chiffon at her neck and wrists. She stood with her figure outlined against the flood of light, one hand upon the door, one half-raised in her eagerness, her body slightly bent, her head and face protruded, with eager eyes and parted lips, a standing question. + +"Well?" she cried, "well?" And then, seeing that there were two of us, she gave a cry of hope which sank into a groan as she saw that my companion shook his head and shrugged his shoulders. + +"No good news?" + +"None." + +"No bad?" + +"No." + +"Thank God for that. But come in. You must be weary, for you have had a long day." + +"This is my friend, Dr. Watson. He has been of most vital use to me in several of my cases, and a lucky chance has made it possible for me to bring him out and associate him with this investigation." + +"I am delighted to see you," said she, pressing my hand warmly. "You will, I am sure, forgive anything that may be wanting in our arrangements, when you consider the blow which has come so suddenly upon us." + +"My dear madam," said I, "I am an old campaigner, and if I were not I can very well see that no apology is needed. If I can be of any assistance, either to you or to my friend here, I shall be indeed happy." + +"Now, Mr. Sherlock Holmes," said the lady as we entered a well-lit dining-room, upon the table of which a cold supper had been laid out, "I should very much like to ask you one or two plain questions, to which I beg that you will give a plain answer." + +"Certainly, madam." + +"Do not trouble about my feelings. I am not hysterical, nor given to fainting. I simply wish to hear your real, real opinion." + +"Upon what point?" + +"In your heart of hearts, do you think that Neville is alive?" + +Sherlock Holmes seemed to be embarrassed by the question. "Frankly, now!" she repeated, standing upon the rug and looking keenly down at him as he leaned back in a basket-chair. + +"Frankly, then, madam, I do not." + +"You think that he is dead?" + +"I do." + +"Murdered?" + +"I don't say that. Perhaps." + +"And on what day did he meet his death?" + +"On Monday." + +"Then perhaps, Mr. Holmes, you will be good enough to explain how it is that I have received a letter from him to-day." + +Sherlock Holmes sprang out of his chair as if he had been galvanised. + +"What!" he roared. + +"Yes, to-day." She stood smiling, holding up a little slip of paper in the air. + +"May I see it?" + +"Certainly." + +He snatched it from her in his eagerness, and smoothing it out upon the table he drew over the lamp and examined it intently. I had left my chair and was gazing at it over his shoulder. The envelope was a very coarse one and was stamped with the Gravesend postmark and with the date of that very day, or rather of the day before, for it was considerably after midnight. + +"Coarse writing," murmured Holmes. "Surely this is not your husband's writing, madam." + +"No, but the enclosure is." + +"I perceive also that whoever addressed the envelope had to go and inquire as to the address." + +"How can you tell that?" + +"The name, you see, is in perfectly black ink, which has dried itself. The rest is of the greyish colour, which shows that blotting-paper has been used. If it had been written straight off, and then blotted, none would be of a deep black shade. This man has written the name, and there has then been a pause before he wrote the address, which can only mean that he was not familiar with it. It is, of course, a trifle, but there is nothing so important as trifles. Let us now see the letter. Ha! there has been an enclosure here!" + +"Yes, there was a ring. His signet-ring." + +"And you are sure that this is your husband's hand?" + +"One of his hands." + +"One?" + +"His hand when he wrote hurriedly. It is very unlike his usual writing, and yet I know it well." + +" 'Dearest do not be frightened. All will come well. There is a huge error which it may take some little time to rectify. Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf of a book, octavo size, no water-mark. Hum! Posted to-day in Gravesend by a man with a dirty thumb. Ha! And the flap has been gummed, if I am not very much in error, by a person who had been chewing tobacco. And you have no doubt that it is your husband's hand, madam?" + +"None. Neville wrote those words." + +"And they were posted to-day at Gravesend. Well, Mrs. St. Clair, the clouds lighten, though I should not venture to say that the danger is over." + +"But he must be alive, Mr. Holmes." + +"Unless this is a clever forgery to put us on the wrong scent. The ring, after all, proves nothing. It may have been taken from him." + +"No, no; it is, it is his very own writing!" + +"Very well. It may, however, have been written on Monday and only posted to-day." + +"That is possible." + +"If so, much may have happened between." + +"Oh, you must not discourage me, Mr. Holmes. I know that all is well with him. There is so keen a sympathy between us that I should know if evil came upon him. On the very day that I saw him last he cut himself in the bedroom, and yet I in the dining-room rushed upstairs instantly with the utmost certainty that something had happened. Do you think that I would respond to such a trifle and yet be ignorant of his death?" + +"I have seen too much not to know that the impression of a woman may be more valuable than the conclusion of an analytical reasoner. And in this letter you certainly have a very strong piece of evidence to corroborate your view. But if your husband is alive and able to write letters, why should he remain away from you?" + +"I cannot imagine. It is unthinkable." + +"And on Monday he made no remarks before leaving you?" + +"No." + +"And you were surprised to see him in Swandam Lane?" + +"Very much so." + +"Was the window open?" + +"Yes." + +"Then he might have called to you?" + +"He might." + +"He only, as I understand, gave an inarticulate cry?" + +"Yes." + +"A call for help, you thought?" + +"Yes. He waved his hands." + +"But it might have been a cry of surprise. Astonishment at the unexpected sight of you might cause him to throw up his hands?" + +"It is possible." + +"And you thought he was pulled back?" + +"He disappeared so suddenly." + +"He might have leaped back. You did not see anyone else in the room?" + +"No, but this horrible man confessed to having been there, and the Lascar was at the foot of the stairs." + +"Quite so. Your husband, as far as you could see, had his ordinary clothes on?" + +"But without his collar or tie. I distinctly saw his bare throat." + +"Had he ever spoken of Swandam Lane?" + +"Never." + +"Had he ever showed any signs of having taken opium?" + +"Never." + +"Thank you, Mrs. St. Clair. Those are the principal points about which I wished to be absolutely clear. We shall now have a little supper and then retire, for we may have a very busy day to-morrow." + +A large and comfortable double-bedded room had been placed at our disposal, and I was quickly between the sheets, for I was weary after my night of adventure. Sherlock Holmes was a man, however, who, when he had an unsolved problem upon his mind, would go for days, and even for a week, without rest, turning it over, rearranging his facts, looking at it from every point of view until he had either fathomed it or convinced himself that his data were insufficient. It was soon evident to me that he was now preparing for an all-night sitting. He took off his coat and waistcoat, put on a large blue dressing-gown, and then wandered about the room collecting pillows from his bed and cushions from the sofa and armchairs. With these he constructed a sort of Eastern divan, upon which he perched himself cross-legged, with an ounce of shag tobacco and a box of matches laid out in front of him. In the dim light of the lamp I saw him sitting there, an old briar pipe between his lips, his eyes fixed vacantly upon the corner of the ceiling, the blue smoke curling up from him, silent, motionless, with the light shining upon his strong-set aquiline features. So he sat as I dropped off to sleep, and so he sat when a sudden ejaculation caused me to wake up, and I found the summer sun shining into the apartment. The pipe was still between his lips, the smoke still curled upward, and the room was full of a dense tobacco haze, but nothing remained of the heap of shag which I had seen upon the previous night. + +"Awake, Watson?" he asked. + +"Yes." + +"Game for a morning drive?" + +"Certainly." + +"Then dress. No one is stirring yet, but I know where the stable-boy sleeps, and we shall soon have the trap out." He chuckled to himself as he spoke, his eyes twinkled, and he seemed a different man to the sombre thinker of the previous night. + +As I dressed I glanced at my watch. It was no wonder that no one was stirring. It was twenty-five minutes past four. I had hardly finished when Holmes returned with the news that the boy was putting in the horse. + +"I want to test a little theory of mine," said he, pulling on his boots. "I think, Watson, that you are now standing in the presence of one of the most absolute fools in Europe. I deserve to be kicked from here to Charing Cross. But I think I have the key of the affair now." + +"And where is it?" I asked, smiling. + +"In the bathroom," he answered. "Oh, yes, I am not joking," he continued, seeing my look of incredulity. "I have just been there, and I have taken it out, and I have got it in this Gladstone bag. Come on, my boy, and we shall see whether it will not fit the lock." + +We made our way downstairs as quietly as possible, and out into the bright morning sunshine. In the road stood our horse and trap, with the half-clad stable-boy waiting at the head. We both sprang in, and away we dashed down the London Road. A few country carts were stirring, bearing in vegetables to the metropolis, but the lines of villas on either side were as silent and lifeless as some city in a dream. + +"It has been in some points a singular case," said Holmes, flicking the horse on into a gallop. "I confess that I have been as blind as a mole, but it is better to learn wisdom late than never to learn it at all." + +In town the earliest risers were just beginning to look sleepily from their windows as we drove through the streets of the Surrey side. Passing down the Waterloo Bridge Road we crossed over the river, and dashing up Wellington Street wheeled sharply to the right and found ourselves in Bow Street. Sherlock Holmes was well known to the force, and the two constables at the door saluted him. One of them held the horse's head while the other led us in. + +"Who is on duty?" asked Holmes. + +"Inspector Bradstreet, sir." + +"Ah, Bradstreet, how are you?" A tall, stout official had come down the stone-flagged passage, in a peaked cap and frogged jacket. "I wish to have a quiet word with you, Bradstreet." "Certainly, Mr. Holmes. Step into my room here." It was a small, office-like room, with a huge ledger upon the table, and a telephone projecting from the wall. The inspector sat down at his desk. + +"What can I do for you, Mr. Holmes?" + +"I called about that beggarman, Boone--the one who was charged with being concerned in the disappearance of Mr. Neville St. Clair, of Lee." + +"Yes. He was brought up and remanded for further inquiries." + +"So I heard. You have him here?" + +"In the cells." + +"Is he quiet?" + +"Oh, he gives no trouble. But he is a dirty scoundrel." + +"Dirty?" + +"Yes, it is all we can do to make him wash his hands, and his face is as black as a tinker's. Well, when once his case has been settled, he will have a regular prison bath; and I think, if you saw him, you would agree with me that he needed it." + +"I should like to see him very much." + +"Would you? That is easily done. Come this way. You can leave your bag." + +"No, I think that I'll take it." + +"Very good. Come this way, if you please." He led us down a passage, opened a barred door, passed down a winding stair, and brought us to a whitewashed corridor with a line of doors on each side. + +"The third on the right is his," said the inspector. "Here it is!" He quietly shot back a panel in the upper part of the door and glanced through. + +"He is asleep," said he. "You can see him very well." + +We both put our eyes to the grating. The prisoner lay with his face towards us, in a very deep sleep, breathing slowly and heavily. He was a middle-sized man, coarsely clad as became his calling, with a coloured shirt protruding through the rent in his tattered coat. He was, as the inspector had said, extremely dirty, but the grime which covered his face could not conceal its repulsive ugliness. A broad wheal from an old scar ran right across it from eye to chin, and by its contraction had turned up one side of the upper lip, so that three teeth were exposed in a perpetual snarl. A shock of very bright red hair grew low over his eyes and forehead. + +"He's a beauty, isn't he?" said the inspector. + +"He certainly needs a wash," remarked Holmes. "I had an idea that he might, and I took the liberty of bringing the tools with me." He opened the Gladstone bag as he spoke, and took out, to my astonishment, a very large bath-sponge. + +"He! he! You are a funny one," chuckled the inspector. + +"Now, if you will have the great goodness to open that door very quietly, we will soon make him cut a much more respectable figure." + +"Well, I don't know why not," said the inspector. "He doesn't look a credit to the Bow Street cells, does he?" He slipped his key into the lock, and we all very quietly entered the cell. The sleeper half turned, and then settled down once more into a deep slumber. Holmes stooped to the water-jug, moistened his sponge, and then rubbed it twice vigorously across and down the prisoner's face. + +"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of Lee, in the county of Kent." + +Never in my life have I seen such a sight. The man's face peeled off under the sponge like the bark from a tree. Gone was the coarse brown tint! Gone, too, was the horrid scar which had seamed it across, and the twisted lip which had given the repulsive sneer to the face! A twitch brought away the tangled red hair, and there, sitting up in his bed, was a pale, sad-faced, refined-looking man, black-haired and smooth-skinned, rubbing his eyes and staring about him with sleepy bewilderment. Then suddenly realising the exposure, he broke into a scream and threw himself down with his face to the pillow. + +"Great heavens!" cried the inspector, "it is, indeed, the missing man. I know him from the photograph." + +The prisoner turned with the reckless air of a man who abandons himself to his destiny. "Be it so," said he. "And pray what am I charged with?" + +"With making away with Mr. Neville St.-- Oh, come, you can't be charged with that unless they make a case of attempted suicide of it," said the inspector with a grin. "Well, I have been twenty-seven years in the force, but this really takes the cake." + +"If I am Mr. Neville St. Clair, then it is obvious that no crime has been committed, and that, therefore, I am illegally detained." + +"No crime, but a very great error has been committed," said Holmes. "You would have done better to have trusted you wife." + +"It was not the wife; it was the children," groaned the prisoner. "God help me, I would not have them ashamed of their father. My God! What an exposure! What can I do?" + +Sherlock Holmes sat down beside him on the couch and patted him kindly on the shoulder. + +"If you leave it to a court of law to clear the matter up," said he, "of course you can hardly avoid publicity. On the other hand, if you convince the police authorities that there is no possible case against you, I do not know that there is any reason that the details should find their way into the papers. Inspector Bradstreet would, I am sure, make notes upon anything which you might tell us and submit it to the proper authorities. The case would then never go into court at all." + +"God bless you!" cried the prisoner passionately. "I would have endured imprisonment, ay, even execution, rather than have left my miserable secret as a family blot to my children. + +"You are the first who have ever heard my story. My father was a schoolmaster in Chesterfield, where I received an excellent education. I travelled in my youth, took to the stage, and finally became a reporter on an evening paper in London. One day my editor wished to have a series of articles upon begging in the metropolis, and I volunteered to supply them. There was the point from which all my adventures started. It was only by trying begging as an amateur that I could get the facts upon which to base my articles. When an actor I had, of course, learned all the secrets of making up, and had been famous in the green-room for my skill. I took advantage now of my attainments. I painted my face, and to make myself as pitiable as possible I made a good scar and fixed one side of my lip in a twist by the aid of a small slip of flesh-coloured plaster. Then with a red head of hair, and an appropriate dress, I took my station in the business part of the city, ostensibly as a match-seller but really as a beggar. For seven hours I plied my trade, and when I returned home in the evening I found to my surprise that I had received no less than 26s. 4d. + +"I wrote my articles and thought little more of the matter until, some time later, I backed a bill for a friend and had a writ served upon me for $25. I was at my wit's end where to get the money, but a sudden idea came to me. I begged a fortnight's grace from the creditor, asked for a holiday from my employers, and spent the time in begging in the City under my disguise. In ten days I had the money and had paid the debt. + +"Well, you can imagine how hard it was to settle down to arduous work at $2 a week when I knew that I could earn as much in a day by smearing my face with a little paint, laying my cap on the ground, and sitting still. It was a long fight between my pride and the money, but the dollars won at last, and I threw up reporting and sat day after day in the corner which I had first chosen, inspiring pity by my ghastly face and filling my pockets with coppers. Only one man knew my secret. He was the keeper of a low den in which I used to lodge in Swandam Lane, where I could every morning emerge as a squalid beggar and in the evenings transform myself into a well-dressed man about town. This fellow, a Lascar, was well paid by me for his rooms, so that I knew that my secret was safe in his possession. + +"Well, very soon I found that I was saving considerable sums of money. I do not mean that any beggar in the streets of London could earn $700 a year--which is less than my average takings--but I had exceptional advantages in my power of making up, and also in a facility of repartee, which improved by practice and made me quite a recognised character in the City. All day a stream of pennies, varied by silver, poured in upon me, and it was a very bad day in which I failed to take $2. + +"As I grew richer I grew more ambitious, took a house in the country, and eventually married, without anyone having a suspicion as to my real occupation. My dear wife knew that I had business in the City. She little knew what. + +"Last Monday I had finished for the day and was dressing in my room above the opium den when I looked out of my window and saw, to my horror and astonishment, that my wife was standing in the street, with her eyes fixed full upon me. I gave a cry of surprise, threw up my arms to cover my face, and, rushing to my confidant, the Lascar, entreated him to prevent anyone from coming up to me. I heard her voice downstairs, but I knew that she could not ascend. Swiftly I threw off my clothes, pulled on those of a beggar, and put on my pigments and wig. Even a wife's eyes could not pierce so complete a disguise. But then it occurred to me that there might be a search in the room, and that the clothes might betray me. I threw open the window, reopening by my violence a small cut which I had inflicted upon myself in the bedroom that morning. Then I seized my coat, which was weighted by the coppers which I had just transferred to it from the leather bag in which I carried my takings. I hurled it out of the window, and it disappeared into the Thames. The other clothes would have followed, but at that moment there was a rush of constables up the stair, and a few minutes after I found, rather, I confess, to my relief, that instead of being identified as Mr. Neville St. Clair, I was arrested as his murderer. + +"I do not know that there is anything else for me to explain. I was determined to preserve my disguise as long as possible, and hence my preference for a dirty face. Knowing that my wife would be terribly anxious, I slipped off my ring and confided it to the Lascar at a moment when no constable was watching me, together with a hurried scrawl, telling her that she had no cause to fear." + +"That note only reached her yesterday," said Holmes. + +"Good God! What a week she must have spent!" + +"The police have watched this Lascar," said Inspector Bradstreet, "and I can quite understand that he might find it difficult to post a letter unobserved. Probably he handed it to some sailor customer of his, who forgot all about it for some days." + +"That was it," said Holmes, nodding approvingly; "I have no doubt of it. But have you never been prosecuted for begging?" + +"Many times; but what was a fine to me?" + +"It must stop here, however," said Bradstreet. "If the police are to hush this thing up, there must be no more of Hugh Boone." + +"I have sworn it by the most solemn oaths which a man can take." + +"In that case I think that it is probable that no further steps may be taken. But if you are found again, then all must come out. I am sure, Mr. Holmes, that we are very much indebted to you for having cleared the matter up. I wish I knew how you reach your results." + +"I reached this one," said my friend, "by sitting upon five pillows and consuming an ounce of shag. I think, Watson, that if we drive to Baker Street we shall just be in time for breakfast." + +VII. THE ADVENTURE OF THE BLUE CARBUNCLE + + +I had called upon my friend Sherlock Holmes upon the second morning after Christmas, with the intention of wishing him the compliments of the season. He was lounging upon the sofa in a purple dressing-gown, a pipe-rack within his reach upon the right, and a pile of crumpled morning papers, evidently newly studied, near at hand. Beside the couch was a wooden chair, and on the angle of the back hung a very seedy and disreputable hard-felt hat, much the worse for wear, and cracked in several places. A lens and a forceps lying upon the seat of the chair suggested that the hat had been suspended in this manner for the purpose of examination. + +"You are engaged," said I; "perhaps I interrupt you." + +"Not at all. I am glad to have a friend with whom I can discuss my results. The matter is a perfectly trivial one"--he jerked his thumb in the direction of the old hat--"but there are points in connection with it which are not entirely devoid of interest and even of instruction." + +I seated myself in his armchair and warmed my hands before his crackling fire, for a sharp frost had set in, and the windows were thick with the ice crystals. "I suppose," I remarked, "that, homely as it looks, this thing has some deadly story linked on to it--that it is the clue which will guide you in the solution of some mystery and the punishment of some crime." + +"No, no. No crime," said Sherlock Holmes, laughing. "Only one of those whimsical little incidents which will happen when you have four million human beings all jostling each other within the space of a few square miles. Amid the action and reaction of so dense a swarm of humanity, every possible combination of events may be expected to take place, and many a little problem will be presented which may be striking and bizarre without being criminal. We have already had experience of such." + +"So much so," I remarked, "that of the last six cases which I have added to my notes, three have been entirely free of any legal crime." + +"Precisely. You allude to my attempt to recover the Irene Adler papers, to the singular case of Miss Mary Sutherland, and to the adventure of the man with the twisted lip. Well, I have no doubt that this small matter will fall into the same innocent category. You know Peterson, the commissionaire?" + +"Yes." + +"It is to him that this trophy belongs." + +"It is his hat." + +"No, no, he found it. Its owner is unknown. I beg that you will look upon it not as a battered billycock but as an intellectual problem. And, first, as to how it came here. It arrived upon Christmas morning, in company with a good fat goose, which is, I have no doubt, roasting at this moment in front of Peterson's fire. The facts are these: about four o'clock on Christmas morning, Peterson, who, as you know, is a very honest fellow, was returning from some small jollification and was making his way homeward down Tottenham Court Road. In front of him he saw, in the gaslight, a tallish man, walking with a slight stagger, and carrying a white goose slung over his shoulder. As he reached the corner of Goodge Street, a row broke out between this stranger and a little knot of roughs. One of the latter knocked off the man's hat, on which he raised his stick to defend himself and, swinging it over his head, smashed the shop window behind him. Peterson had rushed forward to protect the stranger from his assailants; but the man, shocked at having broken the window, and seeing an official-looking person in uniform rushing towards him, dropped his goose, took to his heels, and vanished amid the labyrinth of small streets which lie at the back of Tottenham Court Road. The roughs had also fled at the appearance of Peterson, so that he was left in possession of the field of battle, and also of the spoils of victory in the shape of this battered hat and a most unimpeachable Christmas goose." + +"Which surely he restored to their owner?" + +"My dear fellow, there lies the problem. It is true that 'For Mrs. Henry Baker' was printed upon a small card which was tied to the bird's left leg, and it is also true that the initials 'H. B.' are legible upon the lining of this hat, but as there are some thousands of Bakers, and some hundreds of Henry Bakers in this city of ours, it is not easy to restore lost property to any one of them." + +"What, then, did Peterson do?" + +"He brought round both hat and goose to me on Christmas morning, knowing that even the smallest problems are of interest to me. The goose we retained until this morning, when there were signs that, in spite of the slight frost, it would be well that it should be eaten without unnecessary delay. Its finder has carried it off, therefore, to fulfil the ultimate destiny of a goose, while I continue to retain the hat of the unknown gentleman who lost his Christmas dinner." + +"Did he not advertise?" + +"No." + +"Then, what clue could you have as to his identity?" + +"Only as much as we can deduce." + +"From his hat?" + +"Precisely." + +"But you are joking. What can you gather from this old battered felt?" + +"Here is my lens. You know my methods. What can you gather yourself as to the individuality of the man who has worn this article?" + +I took the tattered object in my hands and turned it over rather ruefully. It was a very ordinary black hat of the usual round shape, hard and much the worse for wear. The lining had been of red silk, but was a good deal discoloured. There was no maker's name; but, as Holmes had remarked, the initials "H. B." were scrawled upon one side. It was pierced in the brim for a hat-securer, but the elastic was missing. For the rest, it was cracked, exceedingly dusty, and spotted in several places, although there seemed to have been some attempt to hide the discoloured patches by smearing them with ink. + +"I can see nothing," said I, handing it back to my friend. + +"On the contrary, Watson, you can see everything. You fail, however, to reason from what you see. You are too timid in drawing your inferences." + +"Then, pray tell me what it is that you can infer from this hat?" + +He picked it up and gazed at it in the peculiar introspective fashion which was characteristic of him. "It is perhaps less suggestive than it might have been," he remarked, "and yet there are a few inferences which are very distinct, and a few others which represent at least a strong balance of probability. That the man was highly intellectual is of course obvious upon the face of it, and also that he was fairly well-to-do within the last three years, although he has now fallen upon evil days. He had foresight, but has less now than formerly, pointing to a moral retrogression, which, when taken with the decline of his fortunes, seems to indicate some evil influence, probably drink, at work upon him. This may account also for the obvious fact that his wife has ceased to love him." + +"My dear Holmes!" + +"He has, however, retained some degree of self-respect," he continued, disregarding my remonstrance. "He is a man who leads a sedentary life, goes out little, is out of training entirely, is middle-aged, has grizzled hair which he has had cut within the last few days, and which he anoints with lime-cream. These are the more patent facts which are to be deduced from his hat. Also, by the way, that it is extremely improbable that he has gas laid on in his house." + +"You are certainly joking, Holmes." + +"Not in the least. Is it possible that even now, when I give you these results, you are unable to see how they are attained?" + +"I have no doubt that I am very stupid, but I must confess that I am unable to follow you. For example, how did you deduce that this man was intellectual?" + +For answer Holmes clapped the hat upon his head. It came right over the forehead and settled upon the bridge of his nose. "It is a question of cubic capacity," said he; "a man with so large a brain must have something in it." + +"The decline of his fortunes, then?" + +"This hat is three years old. These flat brims curled at the edge came in then. It is a hat of the very best quality. Look at the band of ribbed silk and the excellent lining. If this man could afford to buy so expensive a hat three years ago, and has had no hat since, then he has assuredly gone down in the world." + +"Well, that is clear enough, certainly. But how about the foresight and the moral retrogression?" + +Sherlock Holmes laughed. "Here is the foresight," said he putting his finger upon the little disc and loop of the hat-securer. "They are never sold upon hats. If this man ordered one, it is a sign of a certain amount of foresight, since he went out of his way to take this precaution against the wind. But since we see that he has broken the elastic and has not troubled to replace it, it is obvious that he has less foresight now than formerly, which is a distinct proof of a weakening nature. On the other hand, he has endeavoured to conceal some of these stains upon the felt by daubing them with ink, which is a sign that he has not entirely lost his self-respect." + +"Your reasoning is certainly plausible." + +"The further points, that he is middle-aged, that his hair is grizzled, that it has been recently cut, and that he uses lime-cream, are all to be gathered from a close examination of the lower part of the lining. The lens discloses a large number of hair-ends, clean cut by the scissors of the barber. They all appear to be adhesive, and there is a distinct odour of lime-cream. This dust, you will observe, is not the gritty, grey dust of the street but the fluffy brown dust of the house, showing that it has been hung up indoors most of the time, while the marks of moisture upon the inside are proof positive that the wearer perspired very freely, and could therefore, hardly be in the best of training." + +"But his wife--you said that she had ceased to love him." + +"This hat has not been brushed for weeks. When I see you, my dear Watson, with a week's accumulation of dust upon your hat, and when your wife allows you to go out in such a state, I shall fear that you also have been unfortunate enough to lose your wife's affection." + +"But he might be a bachelor." + +"Nay, he was bringing home the goose as a peace-offering to his wife. Remember the card upon the bird's leg." + +"You have an answer to everything. But how on earth do you deduce that the gas is not laid on in his house?" + +"One tallow stain, or even two, might come by chance; but when I see no less than five, I think that there can be little doubt that the individual must be brought into frequent contact with burning tallow--walks upstairs at night probably with his hat in one hand and a guttering candle in the other. Anyhow, he never got tallow-stains from a gas-jet. Are you satisfied?" + +"Well, it is very ingenious," said I, laughing; "but since, as you said just now, there has been no crime committed, and no harm done save the loss of a goose, all this seems to be rather a waste of energy." + +Sherlock Holmes had opened his mouth to reply, when the door flew open, and Peterson, the commissionaire, rushed into the apartment with flushed cheeks and the face of a man who is dazed with astonishment. + +"The goose, Mr. Holmes! The goose, sir!" he gasped. + +"Eh? What of it, then? Has it returned to life and flapped off through the kitchen window?" Holmes twisted himself round upon the sofa to get a fairer view of the man's excited face. + +"See here, sir! See what my wife found in its crop!" He held out his hand and displayed upon the centre of the palm a brilliantly scintillating blue stone, rather smaller than a bean in size, but of such purity and radiance that it twinkled like an electric point in the dark hollow of his hand. + +Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said he, "this is treasure trove indeed. I suppose you know what you have got?" + +"A diamond, sir? A precious stone. It cuts into glass as though it were putty." + +"It's more than a precious stone. It is the precious stone." + +"Not the Countess of Morcar's blue carbuncle!" I ejaculated. + +"Precisely so. I ought to know its size and shape, seeing that I have read the advertisement about it in The Times every day lately. It is absolutely unique, and its value can only be conjectured, but the reward offered of $1000 is certainly not within a twentieth part of the market price." + +"A thousand pounds! Great Lord of mercy!" The commissionaire plumped down into a chair and stared from one to the other of us. + +"That is the reward, and I have reason to know that there are sentimental considerations in the background which would induce the Countess to part with half her fortune if she could but recover the gem." + +"It was lost, if I remember aright, at the Hotel Cosmopolitan," I remarked. + +"Precisely so, on December 22nd, just five days ago. John Horner, a plumber, was accused of having abstracted it from the lady's jewel-case. The evidence against him was so strong that the case has been referred to the Assizes. I have some account of the matter here, I believe." He rummaged amid his newspapers, glancing over the dates, until at last he smoothed one out, doubled it over, and read the following paragraph: + +"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was brought up upon the charge of having upon the 22nd inst., abstracted from the jewel-case of the Countess of Morcar the valuable gem known as the blue carbuncle. James Ryder, upper-attendant at the hotel, gave his evidence to the effect that he had shown Horner up to the dressing-room of the Countess of Morcar upon the day of the robbery in order that he might solder the second bar of the grate, which was loose. He had remained with Horner some little time, but had finally been called away. On returning, he found that Horner had disappeared, that the bureau had been forced open, and that the small morocco casket in which, as it afterwards transpired, the Countess was accustomed to keep her jewel, was lying empty upon the dressing-table. Ryder instantly gave the alarm, and Horner was arrested the same evening; but the stone could not be found either upon his person or in his rooms. Catherine Cusack, maid to the Countess, deposed to having heard Ryder's cry of dismay on discovering the robbery, and to having rushed into the room, where she found matters as described by the last witness. Inspector Bradstreet, B division, gave evidence as to the arrest of Horner, who struggled frantically, and protested his innocence in the strongest terms. Evidence of a previous conviction for robbery having been given against the prisoner, the magistrate refused to deal summarily with the offence, but referred it to the Assizes. Horner, who had shown signs of intense emotion during the proceedings, fainted away at the conclusion and was carried out of court." + +"Hum! So much for the police-court," said Holmes thoughtfully, tossing aside the paper. "The question for us now to solve is the sequence of events leading from a rifled jewel-case at one end to the crop of a goose in Tottenham Court Road at the other. You see, Watson, our little deductions have suddenly assumed a much more important and less innocent aspect. Here is the stone; the stone came from the goose, and the goose came from Mr. Henry Baker, the gentleman with the bad hat and all the other characteristics with which I have bored you. So now we must set ourselves very seriously to finding this gentleman and ascertaining what part he has played in this little mystery. To do this, we must try the simplest means first, and these lie undoubtedly in an advertisement in all the evening papers. If this fail, I shall have recourse to other methods." + +"What will you say?" + +"Give me a pencil and that slip of paper. Now, then: 'Found at the corner of Goodge Street, a goose and a black felt hat. Mr. Henry Baker can have the same by applying at 6:30 this evening at 221B, Baker Street.' That is clear and concise." + +"Very. But will he see it?" + +"Well, he is sure to keep an eye on the papers, since, to a poor man, the loss was a heavy one. He was clearly so scared by his mischance in breaking the window and by the approach of Peterson that he thought of nothing but flight, but since then he must have bitterly regretted the impulse which caused him to drop his bird. Then, again, the introduction of his name will cause him to see it, for everyone who knows him will direct his attention to it. Here you are, Peterson, run down to the advertising agency and have this put in the evening papers." + +"In which, sir?" + +"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, Standard, Echo, and any others that occur to you." + +"Very well, sir. And this stone?" + +"Ah, yes, I shall keep the stone. Thank you. And, I say, Peterson, just buy a goose on your way back and leave it here with me, for we must have one to give to this gentleman in place of the one which your family is now devouring." + +When the commissionaire had gone, Holmes took up the stone and held it against the light. "It's a bonny thing," said he. "Just see how it glints and sparkles. Of course it is a nucleus and focus of crime. Every good stone is. They are the devil's pet baits. In the larger and older jewels every facet may stand for a bloody deed. This stone is not yet twenty years old. It was found in the banks of the Amoy River in southern China and is remarkable in having every characteristic of the carbuncle, save that it is blue in shade instead of ruby red. In spite of its youth, it has already a sinister history. There have been two murders, a vitriol-throwing, a suicide, and several robberies brought about for the sake of this forty-grain weight of crystallised charcoal. Who would think that so pretty a toy would be a purveyor to the gallows and the prison? I'll lock it up in my strong box now and drop a line to the Countess to say that we have it." + +"Do you think that this man Horner is innocent?" + +"I cannot tell." + +"Well, then, do you imagine that this other one, Henry Baker, had anything to do with the matter?" + +"It is, I think, much more likely that Henry Baker is an absolutely innocent man, who had no idea that the bird which he was carrying was of considerably more value than if it were made of solid gold. That, however, I shall determine by a very simple test if we have an answer to our advertisement." + +"And you can do nothing until then?" + +"Nothing." + +"In that case I shall continue my professional round. But I shall come back in the evening at the hour you have mentioned, for I should like to see the solution of so tangled a business." + +"Very glad to see you. I dine at seven. There is a woodcock, I believe. By the way, in view of recent occurrences, perhaps I ought to ask Mrs. Hudson to examine its crop." + +I had been delayed at a case, and it was a little after half-past six when I found myself in Baker Street once more. As I approached the house I saw a tall man in a Scotch bonnet with a coat which was buttoned up to his chin waiting outside in the bright semicircle which was thrown from the fanlight. Just as I arrived the door was opened, and we were shown up together to Holmes' room. + +"Mr. Henry Baker, I believe," said he, rising from his armchair and greeting his visitor with the easy air of geniality which he could so readily assume. "Pray take this chair by the fire, Mr. Baker. It is a cold night, and I observe that your circulation is more adapted for summer than for winter. Ah, Watson, you have just come at the right time. Is that your hat, Mr. Baker?" + +"Yes, sir, that is undoubtedly my hat." + +He was a large man with rounded shoulders, a massive head, and a broad, intelligent face, sloping down to a pointed beard of grizzled brown. A touch of red in nose and cheeks, with a slight tremor of his extended hand, recalled Holmes' surmise as to his habits. His rusty black frock-coat was buttoned right up in front, with the collar turned up, and his lank wrists protruded from his sleeves without a sign of cuff or shirt. He spoke in a slow staccato fashion, choosing his words with care, and gave the impression generally of a man of learning and letters who had had ill-usage at the hands of fortune. + +"We have retained these things for some days," said Holmes, "because we expected to see an advertisement from you giving your address. I am at a loss to know now why you did not advertise." + +Our visitor gave a rather shamefaced laugh. "Shillings have not been so plentiful with me as they once were," he remarked. "I had no doubt that the gang of roughs who assaulted me had carried off both my hat and the bird. I did not care to spend more money in a hopeless attempt at recovering them." + +"Very naturally. By the way, about the bird, we were compelled to eat it." + +"To eat it!" Our visitor half rose from his chair in his excitement. + +"Yes, it would have been of no use to anyone had we not done so. But I presume that this other goose upon the sideboard, which is about the same weight and perfectly fresh, will answer your purpose equally well?" + +"Oh, certainly, certainly," answered Mr. Baker with a sigh of relief. + +"Of course, we still have the feathers, legs, crop, and so on of your own bird, so if you wish--" + +The man burst into a hearty laugh. "They might be useful to me as relics of my adventure," said he, "but beyond that I can hardly see what use the disjecta membra of my late acquaintance are going to be to me. No, sir, I think that, with your permission, I will confine my attentions to the excellent bird which I perceive upon the sideboard." + +Sherlock Holmes glanced sharply across at me with a slight shrug of his shoulders. + +"There is your hat, then, and there your bird," said he. "By the way, would it bore you to tell me where you got the other one from? I am somewhat of a fowl fancier, and I have seldom seen a better grown goose." + +"Certainly, sir," said Baker, who had risen and tucked his newly gained property under his arm. "There are a few of us who frequent the Alpha Inn, near the Museum--we are to be found in the Museum itself during the day, you understand. This year our good host, Windigate by name, instituted a goose club, by which, on consideration of some few pence every week, we were each to receive a bird at Christmas. My pence were duly paid, and the rest is familiar to you. I am much indebted to you, sir, for a Scotch bonnet is fitted neither to my years nor my gravity." With a comical pomposity of manner he bowed solemnly to both of us and strode off upon his way. + +"So much for Mr. Henry Baker," said Holmes when he had closed the door behind him. "It is quite certain that he knows nothing whatever about the matter. Are you hungry, Watson?" + +"Not particularly." + +"Then I suggest that we turn our dinner into a supper and follow up this clue while it is still hot." + +"By all means." + +It was a bitter night, so we drew on our ulsters and wrapped cravats about our throats. Outside, the stars were shining coldly in a cloudless sky, and the breath of the passers-by blew out into smoke like so many pistol shots. Our footfalls rang out crisply and loudly as we swung through the doctors' quarter, Wimpole Street, Harley Street, and so through Wigmore Street into Oxford Street. In a quarter of an hour we were in Bloomsbury at the Alpha Inn, which is a small public-house at the corner of one of the streets which runs down into Holborn. Holmes pushed open the door of the private bar and ordered two glasses of beer from the ruddy-faced, white-aproned landlord. + +"Your beer should be excellent if it is as good as your geese," said he. + +"My geese!" The man seemed surprised. + +"Yes. I was speaking only half an hour ago to Mr. Henry Baker, who was a member of your goose club." + +"Ah! yes, I see. But you see, sir, them's not our geese." + +"Indeed! Whose, then?" + +"Well, I got the two dozen from a salesman in Covent Garden." + +"Indeed? I know some of them. Which was it?" + +"Breckinridge is his name." + +"Ah! I don't know him. Well, here's your good health landlord, and prosperity to your house. Good-night." + +"Now for Mr. Breckinridge," he continued, buttoning up his coat as we came out into the frosty air. "Remember, Watson that though we have so homely a thing as a goose at one end of this chain, we have at the other a man who will certainly get seven years' penal servitude unless we can establish his innocence. It is possible that our inquiry may but confirm his guilt; but, in any case, we have a line of investigation which has been missed by the police, and which a singular chance has placed in our hands. Let us follow it out to the bitter end. Faces to the south, then, and quick march!" + +We passed across Holborn, down Endell Street, and so through a zigzag of slums to Covent Garden Market. One of the largest stalls bore the name of Breckinridge upon it, and the proprietor a horsey-looking man, with a sharp face and trim side-whiskers was helping a boy to put up the shutters. + +"Good-evening. It's a cold night," said Holmes. + +The salesman nodded and shot a questioning glance at my companion. + +"Sold out of geese, I see," continued Holmes, pointing at the bare slabs of marble. + +"Let you have five hundred to-morrow morning." + +"That's no good." + +"Well, there are some on the stall with the gas-flare." + +"Ah, but I was recommended to you." + +"Who by?" + +"The landlord of the Alpha." + +"Oh, yes; I sent him a couple of dozen." + +"Fine birds they were, too. Now where did you get them from?" + +To my surprise the question provoked a burst of anger from the salesman. + +"Now, then, mister," said he, with his head cocked and his arms akimbo, "what are you driving at? Let's have it straight, now." + +"It is straight enough. I should like to know who sold you the geese which you supplied to the Alpha." + +"Well then, I shan't tell you. So now!" + +"Oh, it is a matter of no importance; but I don't know why you should be so warm over such a trifle." + +"Warm! You'd be as warm, maybe, if you were as pestered as I am. When I pay good money for a good article there should be an end of the business; but it's 'Where are the geese?' and 'Who did you sell the geese to?' and 'What will you take for the geese?' One would think they were the only geese in the world, to hear the fuss that is made over them." + +"Well, I have no connection with any other people who have been making inquiries," said Holmes carelessly. "If you won't tell us the bet is off, that is all. But I'm always ready to back my opinion on a matter of fowls, and I have a fiver on it that the bird I ate is country bred." + +"Well, then, you've lost your fiver, for it's town bred," snapped the salesman. + +"It's nothing of the kind." + +"I say it is." + +"I don't believe it." + +"D'you think you know more about fowls than I, who have handled them ever since I was a nipper? I tell you, all those birds that went to the Alpha were town bred." + +"You'll never persuade me to believe that." + +"Will you bet, then?" + +"It's merely taking your money, for I know that I am right. But I'll have a sovereign on with you, just to teach you not to be obstinate." + +The salesman chuckled grimly. "Bring me the books, Bill," said he. + +The small boy brought round a small thin volume and a great greasy-backed one, laying them out together beneath the hanging lamp. + +"Now then, Mr. Cocksure," said the salesman, "I thought that I was out of geese, but before I finish you'll find that there is still one left in my shop. You see this little book?" + +"Well?" + +"That's the list of the folk from whom I buy. D'you see? Well, then, here on this page are the country folk, and the numbers after their names are where their accounts are in the big ledger. Now, then! You see this other page in red ink? Well, that is a list of my town suppliers. Now, look at that third name. Just read it out to me." + +"Mrs. Oakshott, 117, Brixton Road--249," read Holmes. + +"Quite so. Now turn that up in the ledger." + +Holmes turned to the page indicated. "Here you are, 'Mrs. Oakshott, 117, Brixton Road, egg and poultry supplier.' " + +"Now, then, what's the last entry?" + +" 'December 22nd. Twenty-four geese at 7s. 6d.' " + +"Quite so. There you are. And underneath?" + +" 'Sold to Mr. Windigate of the Alpha, at 12s.' " + +"What have you to say now?" + +Sherlock Holmes looked deeply chagrined. He drew a sovereign from his pocket and threw it down upon the slab, turning away with the air of a man whose disgust is too deep for words. A few yards off he stopped under a lamp-post and laughed in the hearty, noiseless fashion which was peculiar to him. + +"When you see a man with whiskers of that cut and the 'Pink 'un' protruding out of his pocket, you can always draw him by a bet," said he. "I daresay that if I had put $100 down in front of him, that man would not have given me such complete information as was drawn from him by the idea that he was doing me on a wager. Well, Watson, we are, I fancy, nearing the end of our quest, and the only point which remains to be determined is whether we should go on to this Mrs. Oakshott to-night, or whether we should reserve it for to-morrow. It is clear from what that surly fellow said that there are others besides ourselves who are anxious about the matter, and I should--" + +His remarks were suddenly cut short by a loud hubbub which broke out from the stall which we had just left. Turning round we saw a little rat-faced fellow standing in the centre of the circle of yellow light which was thrown by the swinging lamp, while Breckinridge, the salesman, framed in the door of his stall, was shaking his fists fiercely at the cringing figure. + +"I've had enough of you and your geese," he shouted. "I wish you were all at the devil together. If you come pestering me any more with your silly talk I'll set the dog at you. You bring Mrs. Oakshott here and I'll answer her, but what have you to do with it? Did I buy the geese off you?" + +"No; but one of them was mine all the same," whined the little man. + +"Well, then, ask Mrs. Oakshott for it." + +"She told me to ask you." + +"Well, you can ask the King of Proosia, for all I care. I've had enough of it. Get out of this!" He rushed fiercely forward, and the inquirer flitted away into the darkness. + +"Ha! this may save us a visit to Brixton Road," whispered Holmes. "Come with me, and we will see what is to be made of this fellow." Striding through the scattered knots of people who lounged round the flaring stalls, my companion speedily overtook the little man and touched him upon the shoulder. He sprang round, and I could see in the gas-light that every vestige of colour had been driven from his face. + +"Who are you, then? What do you want?" he asked in a quavering voice. + +"You will excuse me," said Holmes blandly, "but I could not help overhearing the questions which you put to the salesman just now. I think that I could be of assistance to you." + +"You? Who are you? How could you know anything of the matter?" + +"My name is Sherlock Holmes. It is my business to know what other people don't know." + +"But you can know nothing of this?" + +"Excuse me, I know everything of it. You are endeavouring to trace some geese which were sold by Mrs. Oakshott, of Brixton Road, to a salesman named Breckinridge, by him in turn to Mr. Windigate, of the Alpha, and by him to his club, of which Mr. Henry Baker is a member." + +"Oh, sir, you are the very man whom I have longed to meet," cried the little fellow with outstretched hands and quivering fingers. "I can hardly explain to you how interested I am in this matter." + +Sherlock Holmes hailed a four-wheeler which was passing. "In that case we had better discuss it in a cosy room rather than in this wind-swept market-place," said he. "But pray tell me, before we go farther, who it is that I have the pleasure of assisting." + +The man hesitated for an instant. "My name is John Robinson," he answered with a sidelong glance. + +"No, no; the real name," said Holmes sweetly. "It is always awkward doing business with an alias." + +A flush sprang to the white cheeks of the stranger. "Well then," said he, "my real name is James Ryder." + +"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray step into the cab, and I shall soon be able to tell you everything which you would wish to know." + +The little man stood glancing from one to the other of us with half-frightened, half-hopeful eyes, as one who is not sure whether he is on the verge of a windfall or of a catastrophe. Then he stepped into the cab, and in half an hour we were back in the sitting-room at Baker Street. Nothing had been said during our drive, but the high, thin breathing of our new companion, and the claspings and unclaspings of his hands, spoke of the nervous tension within him. + +"Here we are!" said Holmes cheerily as we filed into the room. "The fire looks very seasonable in this weather. You look cold, Mr. Ryder. Pray take the basket-chair. I will just put on my slippers before we settle this little matter of yours. Now, then! You want to know what became of those geese?" + +"Yes, sir." + +"Or rather, I fancy, of that goose. It was one bird, I imagine in which you were interested--white, with a black bar across the tail." + +Ryder quivered with emotion. "Oh, sir," he cried, "can you tell me where it went to?" + +"It came here." + +"Here?" + +"Yes, and a most remarkable bird it proved. I don't wonder that you should take an interest in it. It laid an egg after it was dead--the bonniest, brightest little blue egg that ever was seen. I have it here in my museum." + +Our visitor staggered to his feet and clutched the mantelpiece with his right hand. Holmes unlocked his strong-box and held up the blue carbuncle, which shone out like a star, with a cold, brilliant, many-pointed radiance. Ryder stood glaring with a drawn face, uncertain whether to claim or to disown it. + +"The game's up, Ryder," said Holmes quietly. "Hold up, man, or you'll be into the fire! Give him an arm back into his chair, Watson. He's not got blood enough to go in for felony with impunity. Give him a dash of brandy. So! Now he looks a little more human. What a shrimp it is, to be sure!" + +For a moment he had staggered and nearly fallen, but the brandy brought a tinge of colour into his cheeks, and he sat staring with frightened eyes at his accuser. + +"I have almost every link in my hands, and all the proofs which I could possibly need, so there is little which you need tell me. Still, that little may as well be cleared up to make the case complete. You had heard, Ryder, of this blue stone of the Countess of Morcar's?" + +"It was Catherine Cusack who told me of it," said he in a crackling voice. + +"I see--her ladyship's waiting-maid. Well, the temptation of sudden wealth so easily acquired was too much for you, as it has been for better men before you; but you were not very scrupulous in the means you used. It seems to me, Ryder, that there is the making of a very pretty villain in you. You knew that this man Horner, the plumber, had been concerned in some such matter before, and that suspicion would rest the more readily upon him. What did you do, then? You made some small job in my lady's room--you and your confederate Cusack--and you managed that he should be the man sent for. Then, when he had left, you rifled the jewel-case, raised the alarm, and had this unfortunate man arrested. You then--" + +Ryder threw himself down suddenly upon the rug and clutched at my companion's knees. "For God's sake, have mercy!" he shrieked. "Think of my father! Of my mother! It would break their hearts. I never went wrong before! I never will again. I swear it. I'll swear it on a Bible. Oh, don't bring it into court! For Christ's sake, don't!" + +"Get back into your chair!" said Holmes sternly. "It is very well to cringe and crawl now, but you thought little enough of this poor Horner in the dock for a crime of which he knew nothing." + +"I will fly, Mr. Holmes. I will leave the country, sir. Then the charge against him will break down." + +"Hum! We will talk about that. And now let us hear a true account of the next act. How came the stone into the goose, and how came the goose into the open market? Tell us the truth, for there lies your only hope of safety." + +Ryder passed his tongue over his parched lips. "I will tell you it just as it happened, sir," said he. "When Horner had been arrested, it seemed to me that it would be best for me to get away with the stone at once, for I did not know at what moment the police might not take it into their heads to search me and my room. There was no place about the hotel where it would be safe. I went out, as if on some commission, and I made for my sister's house. She had married a man named Oakshott, and lived in Brixton Road, where she fattened fowls for the market. All the way there every man I met seemed to me to be a policeman or a detective; and, for all that it was a cold night, the sweat was pouring down my face before I came to the Brixton Road. My sister asked me what was the matter, and why I was so pale; but I told her that I had been upset by the jewel robbery at the hotel. Then I went into the back yard and smoked a pipe and wondered what it would be best to do. + +"I had a friend once called Maudsley, who went to the bad, and has just been serving his time in Pentonville. One day he had met me, and fell into talk about the ways of thieves, and how they could get rid of what they stole. I knew that he would be true to me, for I knew one or two things about him; so I made up my mind to go right on to Kilburn, where he lived, and take him into my confidence. He would show me how to turn the stone into money. But how to get to him in safety? I thought of the agonies I had gone through in coming from the hotel. I might at any moment be seized and searched, and there would be the stone in my waistcoat pocket. I was leaning against the wall at the time and looking at the geese which were waddling about round my feet, and suddenly an idea came into my head which showed me how I could beat the best detective that ever lived. + +"My sister had told me some weeks before that I might have the pick of her geese for a Christmas present, and I knew that she was always as good as her word. I would take my goose now, and in it I would carry my stone to Kilburn. There was a little shed in the yard, and behind this I drove one of the birds--a fine big one, white, with a barred tail. I caught it, and prying its bill open, I thrust the stone down its throat as far as my finger could reach. The bird gave a gulp, and I felt the stone pass along its gullet and down into its crop. But the creature flapped and struggled, and out came my sister to know what was the matter. As I turned to speak to her the brute broke loose and fluttered off among the others. + +" 'Whatever were you doing with that bird, Jem?' says she. + +" 'Well,' said I, 'you said you'd give me one for Christmas, and I was feeling which was the fattest.' + +" 'Oh,' says she, 'we've set yours aside for you--Jem's bird, we call it. It's the big white one over yonder. There's twenty-six of them, which makes one for you, and one for us, and two dozen for the market.' + +" 'Thank you, Maggie,' says I; 'but if it is all the same to you, I'd rather have that one I was handling just now.' + +" 'The other is a good three pound heavier,' said she, 'and we fattened it expressly for you.' + +" 'Never mind. I'll have the other, and I'll take it now,' said I. + +" 'Oh, just as you like,' said she, a little huffed. 'Which is it you want, then?' + +" 'That white one with the barred tail, right in the middle of the flock.' + +" 'Oh, very well. Kill it and take it with you.' + +"Well, I did what she said, Mr. Holmes, and I carried the bird all the way to Kilburn. I told my pal what I had done, for he was a man that it was easy to tell a thing like that to. He laughed until he choked, and we got a knife and opened the goose. My heart turned to water, for there was no sign of the stone, and I knew that some terrible mistake had occurred. I left the bird, rushed back to my sister's, and hurried into the back yard. There was not a bird to be seen there. + +" 'Where are they all, Maggie?' I cried. + +" 'Gone to the dealer's, Jem.' + +" 'Which dealer's?' + +" 'Breckinridge, of Covent Garden.' + +" 'But was there another with a barred tail?' I asked, 'the same as the one I chose?' + +" 'Yes, Jem; there were two barred-tailed ones, and I could never tell them apart.' + +"Well, then, of course I saw it all, and I ran off as hard as my feet would carry me to this man Breckinridge; but he had sold the lot at once, and not one word would he tell me as to where they had gone. You heard him yourselves to-night. Well, he has always answered me like that. My sister thinks that I am going mad. Sometimes I think that I am myself. And now--and now I am myself a branded thief, without ever having touched the wealth for which I sold my character. God help me! God help me!" He burst into convulsive sobbing, with his face buried in his hands. + +There was a long silence, broken only by his heavy breathing and by the measured tapping of Sherlock Holmes' finger-tips upon the edge of the table. Then my friend rose and threw open the door. + +"Get out!" said he. + +"What, sir! Oh, Heaven bless you!" + +"No more words. Get out!" + +And no more words were needed. There was a rush, a clatter upon the stairs, the bang of a door, and the crisp rattle of running footfalls from the street. + +"After all, Watson," said Holmes, reaching up his hand for his clay pipe, "I am not retained by the police to supply their deficiencies. If Horner were in danger it would be another thing; but this fellow will not appear against him, and the case must collapse. I suppose that I am commuting a felony, but it is just possible that I am saving a soul. This fellow will not go wrong again; he is too terribly frightened. Send him to gaol now, and you make him a gaol-bird for life. Besides, it is the season of forgiveness. Chance has put in our way a most singular and whimsical problem, and its solution is its own reward. If you will have the goodness to touch the bell, Doctor, we will begin another investigation, in which, also a bird will be the chief feature." + +VIII. THE ADVENTURE OF THE SPECKLED BAND + + +On glancing over my notes of the seventy odd cases in which I have during the last eight years studied the methods of my friend Sherlock Holmes, I find many tragic, some comic, a large number merely strange, but none commonplace; for, working as he did rather for the love of his art than for the acquirement of wealth, he refused to associate himself with any investigation which did not tend towards the unusual, and even the fantastic. Of all these varied cases, however, I cannot recall any which presented more singular features than that which was associated with the well-known Surrey family of the Roylotts of Stoke Moran. The events in question occurred in the early days of my association with Holmes, when we were sharing rooms as bachelors in Baker Street. It is possible that I might have placed them upon record before, but a promise of secrecy was made at the time, from which I have only been freed during the last month by the untimely death of the lady to whom the pledge was given. It is perhaps as well that the facts should now come to light, for I have reasons to know that there are widespread rumours as to the death of Dr. Grimesby Roylott which tend to make the matter even more terrible than the truth. + +It was early in April in the year '83 that I woke one morning to find Sherlock Holmes standing, fully dressed, by the side of my bed. He was a late riser, as a rule, and as the clock on the mantelpiece showed me that it was only a quarter-past seven, I blinked up at him in some surprise, and perhaps just a little resentment, for I was myself regular in my habits. + +"Very sorry to knock you up, Watson," said he, "but it's the common lot this morning. Mrs. Hudson has been knocked up, she retorted upon me, and I on you." + +"What is it, then--a fire?" + +"No; a client. It seems that a young lady has arrived in a considerable state of excitement, who insists upon seeing me. She is waiting now in the sitting-room. Now, when young ladies wander about the metropolis at this hour of the morning, and knock sleepy people up out of their beds, I presume that it is something very pressing which they have to communicate. Should it prove to be an interesting case, you would, I am sure, wish to follow it from the outset. I thought, at any rate, that I should call you and give you the chance." + +"My dear fellow, I would not miss it for anything." + +I had no keener pleasure than in following Holmes in his professional investigations, and in admiring the rapid deductions, as swift as intuitions, and yet always founded on a logical basis with which he unravelled the problems which were submitted to him. I rapidly threw on my clothes and was ready in a few minutes to accompany my friend down to the sitting-room. A lady dressed in black and heavily veiled, who had been sitting in the window, rose as we entered. + +"Good-morning, madam," said Holmes cheerily. "My name is Sherlock Holmes. This is my intimate friend and associate, Dr. Watson, before whom you can speak as freely as before myself. Ha! I am glad to see that Mrs. Hudson has had the good sense to light the fire. Pray draw up to it, and I shall order you a cup of hot coffee, for I observe that you are shivering." + +"It is not cold which makes me shiver," said the woman in a low voice, changing her seat as requested. + +"What, then?" + +"It is fear, Mr. Holmes. It is terror." She raised her veil as she spoke, and we could see that she was indeed in a pitiable state of agitation, her face all drawn and grey, with restless frightened eyes, like those of some hunted animal. Her features and figure were those of a woman of thirty, but her hair was shot with premature grey, and her expression was weary and haggard. Sherlock Holmes ran her over with one of his quick, all-comprehensive glances. + +"You must not fear," said he soothingly, bending forward and patting her forearm. "We shall soon set matters right, I have no doubt. You have come in by train this morning, I see." + +"You know me, then?" + +"No, but I observe the second half of a return ticket in the palm of your left glove. You must have started early, and yet you had a good drive in a dog-cart, along heavy roads, before you reached the station." + +The lady gave a violent start and stared in bewilderment at my companion. + +"There is no mystery, my dear madam," said he, smiling. "The left arm of your jacket is spattered with mud in no less than seven places. The marks are perfectly fresh. There is no vehicle save a dog-cart which throws up mud in that way, and then only when you sit on the left-hand side of the driver." + +"Whatever your reasons may be, you are perfectly correct," said she. "I started from home before six, reached Leatherhead at twenty past, and came in by the first train to Waterloo. Sir, I can stand this strain no longer; I shall go mad if it continues. I have no one to turn to--none, save only one, who cares for me, and he, poor fellow, can be of little aid. I have heard of you, Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you helped in the hour of her sore need. It was from her that I had your address. Oh, sir, do you not think that you could help me, too, and at least throw a little light through the dense darkness which surrounds me? At present it is out of my power to reward you for your services, but in a month or six weeks I shall be married, with the control of my own income, and then at least you shall not find me ungrateful." + +Holmes turned to his desk and, unlocking it, drew out a small case-book, which he consulted. + +"Farintosh," said he. "Ah yes, I recall the case; it was concerned with an opal tiara. I think it was before your time, Watson. I can only say, madam, that I shall be happy to devote the same care to your case as I did to that of your friend. As to reward, my profession is its own reward; but you are at liberty to defray whatever expenses I may be put to, at the time which suits you best. And now I beg that you will lay before us everything that may help us in forming an opinion upon the matter." + +"Alas!" replied our visitor, "the very horror of my situation lies in the fact that my fears are so vague, and my suspicions depend so entirely upon small points, which might seem trivial to another, that even he to whom of all others I have a right to look for help and advice looks upon all that I tell him about it as the fancies of a nervous woman. He does not say so, but I can read it from his soothing answers and averted eyes. But I have heard, Mr. Holmes, that you can see deeply into the manifold wickedness of the human heart. You may advise me how to walk amid the dangers which encompass me." + +"I am all attention, madam." + +"My name is Helen Stoner, and I am living with my stepfather, who is the last survivor of one of the oldest Saxon families in England, the Roylotts of Stoke Moran, on the western border of Surrey." + +Holmes nodded his head. "The name is familiar to me," said he. + +"The family was at one time among the richest in England, and the estates extended over the borders into Berkshire in the north, and Hampshire in the west. In the last century, however, four successive heirs were of a dissolute and wasteful disposition, and the family ruin was eventually completed by a gambler in the days of the Regency. Nothing was left save a few acres of ground, and the two-hundred-year-old house, which is itself crushed under a heavy mortgage. The last squire dragged out his existence there, living the horrible life of an aristocratic pauper; but his only son, my stepfather, seeing that he must adapt himself to the new conditions, obtained an advance from a relative, which enabled him to take a medical degree and went out to Calcutta, where, by his professional skill and his force of character, he established a large practice. In a fit of anger, however, caused by some robberies which had been perpetrated in the house, he beat his native butler to death and narrowly escaped a capital sentence. As it was, he suffered a long term of imprisonment and afterwards returned to England a morose and disappointed man. + +"When Dr. Roylott was in India he married my mother, Mrs. Stoner, the young widow of Major-General Stoner, of the Bengal Artillery. My sister Julia and I were twins, and we were only two years old at the time of my mother's re-marriage. She had a considerable sum of money--not less than $1000 a year--and this she bequeathed to Dr. Roylott entirely while we resided with him, with a provision that a certain annual sum should be allowed to each of us in the event of our marriage. Shortly after our return to England my mother died--she was killed eight years ago in a railway accident near Crewe. Dr. Roylott then abandoned his attempts to establish himself in practice in London and took us to live with him in the old ancestral house at Stoke Moran. The money which my mother had left was enough for all our wants, and there seemed to be no obstacle to our happiness. + +"But a terrible change came over our stepfather about this time. Instead of making friends and exchanging visits with our neighbours, who had at first been overjoyed to see a Roylott of Stoke Moran back in the old family seat, he shut himself up in his house and seldom came out save to indulge in ferocious quarrels with whoever might cross his path. Violence of temper approaching to mania has been hereditary in the men of the family, and in my stepfather's case it had, I believe, been intensified by his long residence in the tropics. A series of disgraceful brawls took place, two of which ended in the police-court, until at last he became the terror of the village, and the folks would fly at his approach, for he is a man of immense strength, and absolutely uncontrollable in his anger. + +"Last week he hurled the local blacksmith over a parapet into a stream, and it was only by paying over all the money which I could gather together that I was able to avert another public exposure. He had no friends at all save the wandering gipsies, and he would give these vagabonds leave to encamp upon the few acres of bramble-covered land which represent the family estate, and would accept in return the hospitality of their tents, wandering away with them sometimes for weeks on end. He has a passion also for Indian animals, which are sent over to him by a correspondent, and he has at this moment a cheetah and a baboon, which wander freely over his grounds and are feared by the villagers almost as much as their master. + +"You can imagine from what I say that my poor sister Julia and I had no great pleasure in our lives. No servant would stay with us, and for a long time we did all the work of the house. She was but thirty at the time of her death, and yet her hair had already begun to whiten, even as mine has." + +"Your sister is dead, then?" + +"She died just two years ago, and it is of her death that I wish to speak to you. You can understand that, living the life which I have described, we were little likely to see anyone of our own age and position. We had, however, an aunt, my mother's maiden sister, Miss Honoria Westphail, who lives near Harrow, and we were occasionally allowed to pay short visits at this lady's house. Julia went there at Christmas two years ago, and met there a half-pay major of marines, to whom she became engaged. My stepfather learned of the engagement when my sister returned and offered no objection to the marriage; but within a fortnight of the day which had been fixed for the wedding, the terrible event occurred which has deprived me of my only companion." + +Sherlock Holmes had been leaning back in his chair with his eyes closed and his head sunk in a cushion, but he half opened his lids now and glanced across at his visitor. + +"Pray be precise as to details," said he. + +"It is easy for me to be so, for every event of that dreadful time is seared into my memory. The manor-house is, as I have already said, very old, and only one wing is now inhabited. The bedrooms in this wing are on the ground floor, the sitting-rooms being in the central block of the buildings. Of these bedrooms the first is Dr. Roylott's, the second my sister's, and the third my own. There is no communication between them, but they all open out into the same corridor. Do I make myself plain?" + +"Perfectly so." + +"The windows of the three rooms open out upon the lawn. That fatal night Dr. Roylott had gone to his room early, though we knew that he had not retired to rest, for my sister was troubled by the smell of the strong Indian cigars which it was his custom to smoke. She left her room, therefore, and came into mine, where she sat for some time, chatting about her approaching wedding. At eleven o'clock she rose to leave me, but she paused at the door and looked back. + +" 'Tell me, Helen,' said she, 'have you ever heard anyone whistle in the dead of the night?' + +" 'Never,' said I. + +" 'I suppose that you could not possibly whistle, yourself, in your sleep?' + +" 'Certainly not. But why?' + +" 'Because during the last few nights I have always, about three in the morning, heard a low, clear whistle. I am a light sleeper, and it has awakened me. I cannot tell where it came from--perhaps from the next room, perhaps from the lawn. I thought that I would just ask you whether you had heard it.' + +" 'No, I have not. It must be those wretched gipsies in the plantation.' + +" 'Very likely. And yet if it were on the lawn, I wonder that you did not hear it also.' + +" 'Ah, but I sleep more heavily than you.' + +" 'Well, it is of no great consequence, at any rate.' She smiled back at me, closed my door, and a few moments later I heard her key turn in the lock." + +"Indeed," said Holmes. "Was it your custom always to lock yourselves in at night?" + +"Always." + +"And why?" + +"I think that I mentioned to you that the doctor kept a cheetah and a baboon. We had no feeling of security unless our doors were locked." + +"Quite so. Pray proceed with your statement." + +"I could not sleep that night. A vague feeling of impending misfortune impressed me. My sister and I, you will recollect, were twins, and you know how subtle are the links which bind two souls which are so closely allied. It was a wild night. The wind was howling outside, and the rain was beating and splashing against the windows. Suddenly, amid all the hubbub of the gale, there burst forth the wild scream of a terrified woman. I knew that it was my sister's voice. I sprang from my bed, wrapped a shawl round me, and rushed into the corridor. As I opened my door I seemed to hear a low whistle, such as my sister described, and a few moments later a clanging sound, as if a mass of metal had fallen. As I ran down the passage, my sister's door was unlocked, and revolved slowly upon its hinges. I stared at it horror-stricken, not knowing what was about to issue from it. By the light of the corridor-lamp I saw my sister appear at the opening, her face blanched with terror, her hands groping for help, her whole figure swaying to and fro like that of a drunkard. I ran to her and threw my arms round her, but at that moment her knees seemed to give way and she fell to the ground. She writhed as one who is in terrible pain, and her limbs were dreadfully convulsed. At first I thought that she had not recognised me, but as I bent over her she suddenly shrieked out in a voice which I shall never forget, 'Oh, my God! Helen! It was the band! The speckled band!' There was something else which she would fain have said, and she stabbed with her finger into the air in the direction of the doctor's room, but a fresh convulsion seized her and choked her words. I rushed out, calling loudly for my stepfather, and I met him hastening from his room in his dressing-gown. When he reached my sister's side she was unconscious, and though he poured brandy down her throat and sent for medical aid from the village, all efforts were in vain, for she slowly sank and died without having recovered her consciousness. Such was the dreadful end of my beloved sister." + +"One moment," said Holmes, "are you sure about this whistle and metallic sound? Could you swear to it?" + +"That was what the county coroner asked me at the inquiry. It is my strong impression that I heard it, and yet, among the crash of the gale and the creaking of an old house, I may possibly have been deceived." + +"Was your sister dressed?" + +"No, she was in her night-dress. In her right hand was found the charred stump of a match, and in her left a match-box." + +"Showing that she had struck a light and looked about her when the alarm took place. That is important. And what conclusions did the coroner come to?" + +"He investigated the case with great care, for Dr. Roylott's conduct had long been notorious in the county, but he was unable to find any satisfactory cause of death. My evidence showed that the door had been fastened upon the inner side, and the windows were blocked by old-fashioned shutters with broad iron bars, which were secured every night. The walls were carefully sounded, and were shown to be quite solid all round, and the flooring was also thoroughly examined, with the same result. The chimney is wide, but is barred up by four large staples. It is certain, therefore, that my sister was quite alone when she met her end. Besides, there were no marks of any violence upon her." + +"How about poison?" + +"The doctors examined her for it, but without success." + +"What do you think that this unfortunate lady died of, then?" + +"It is my belief that she died of pure fear and nervous shock, though what it was that frightened her I cannot imagine." + +"Were there gipsies in the plantation at the time?" + +"Yes, there are nearly always some there." + +"Ah, and what did you gather from this allusion to a band--a speckled band?" + +"Sometimes I have thought that it was merely the wild talk of delirium, sometimes that it may have referred to some band of people, perhaps to these very gipsies in the plantation. I do not know whether the spotted handkerchiefs which so many of them wear over their heads might have suggested the strange adjective which she used." + +Holmes shook his head like a man who is far from being satisfied. + +"These are very deep waters," said he; "pray go on with your narrative." + +"Two years have passed since then, and my life has been until lately lonelier than ever. A month ago, however, a dear friend, whom I have known for many years, has done me the honour to ask my hand in marriage. His name is Armitage--Percy Armitage--the second son of Mr. Armitage, of Crane Water, near Reading. My stepfather has offered no opposition to the match, and we are to be married in the course of the spring. Two days ago some repairs were started in the west wing of the building, and my bedroom wall has been pierced, so that I have had to move into the chamber in which my sister died, and to sleep in the very bed in which she slept. Imagine, then, my thrill of terror when last night, as I lay awake, thinking over her terrible fate, I suddenly heard in the silence of the night the low whistle which had been the herald of her own death. I sprang up and lit the lamp, but nothing was to be seen in the room. I was too shaken to go to bed again, however, so I dressed, and as soon as it was daylight I slipped down, got a dog-cart at the Crown Inn, which is opposite, and drove to Leatherhead, from whence I have come on this morning with the one object of seeing you and asking your advice." + +"You have done wisely," said my friend. "But have you told me all?" + +"Yes, all." + +"Miss Roylott, you have not. You are screening your stepfather." + +"Why, what do you mean?" + +For answer Holmes pushed back the frill of black lace which fringed the hand that lay upon our visitor's knee. Five little livid spots, the marks of four fingers and a thumb, were printed upon the white wrist. + +"You have been cruelly used," said Holmes. + +The lady coloured deeply and covered over her injured wrist. "He is a hard man," she said, "and perhaps he hardly knows his own strength." + +There was a long silence, during which Holmes leaned his chin upon his hands and stared into the crackling fire. + +"This is a very deep business," he said at last. "There are a thousand details which I should desire to know before I decide upon our course of action. Yet we have not a moment to lose. If we were to come to Stoke Moran to-day, would it be possible for us to see over these rooms without the knowledge of your stepfather?" + +"As it happens, he spoke of coming into town to-day upon some most important business. It is probable that he will be away all day, and that there would be nothing to disturb you. We have a housekeeper now, but she is old and foolish, and I could easily get her out of the way." + +"Excellent. You are not averse to this trip, Watson?" + +"By no means." + +"Then we shall both come. What are you going to do yourself?" + +"I have one or two things which I would wish to do now that I am in town. But I shall return by the twelve o'clock train, so as to be there in time for your coming." + +"And you may expect us early in the afternoon. I have myself some small business matters to attend to. Will you not wait and breakfast?" + +"No, I must go. My heart is lightened already since I have confided my trouble to you. I shall look forward to seeing you again this afternoon." She dropped her thick black veil over her face and glided from the room. + +"And what do you think of it all, Watson?" asked Sherlock Holmes, leaning back in his chair. + +"It seems to me to be a most dark and sinister business." + +"Dark enough and sinister enough." + +"Yet if the lady is correct in saying that the flooring and walls are sound, and that the door, window, and chimney are impassable, then her sister must have been undoubtedly alone when she met her mysterious end." + +"What becomes, then, of these nocturnal whistles, and what of the very peculiar words of the dying woman?" + +"I cannot think." + +"When you combine the ideas of whistles at night, the presence of a band of gipsies who are on intimate terms with this old doctor, the fact that we have every reason to believe that the doctor has an interest in preventing his stepdaughter's marriage, the dying allusion to a band, and, finally, the fact that Miss Helen Stoner heard a metallic clang, which might have been caused by one of those metal bars that secured the shutters falling back into its place, I think that there is good ground to think that the mystery may be cleared along those lines." + +"But what, then, did the gipsies do?" + +"I cannot imagine." + +"I see many objections to any such theory." + +"And so do I. It is precisely for that reason that we are going to Stoke Moran this day. I want to see whether the objections are fatal, or if they may be explained away. But what in the name of the devil!" + +The ejaculation had been drawn from my companion by the fact that our door had been suddenly dashed open, and that a huge man had framed himself in the aperture. His costume was a peculiar mixture of the professional and of the agricultural, having a black top-hat, a long frock-coat, and a pair of high gaiters, with a hunting-crop swinging in his hand. So tall was he that his hat actually brushed the cross bar of the doorway, and his breadth seemed to span it across from side to side. A large face, seared with a thousand wrinkles, burned yellow with the sun, and marked with every evil passion, was turned from one to the other of us, while his deep-set, bile-shot eyes, and his high, thin, fleshless nose, gave him somewhat the resemblance to a fierce old bird of prey. + +"Which of you is Holmes?" asked this apparition. + +"My name, sir; but you have the advantage of me," said my companion quietly. + +"I am Dr. Grimesby Roylott, of Stoke Moran." + +"Indeed, Doctor," said Holmes blandly. "Pray take a seat." + +"I will do nothing of the kind. My stepdaughter has been here. I have traced her. What has she been saying to you?" + +"It is a little cold for the time of the year," said Holmes. + +"What has she been saying to you?" screamed the old man furiously. + +"But I have heard that the crocuses promise well," continued my companion imperturbably. + +"Ha! You put me off, do you?" said our new visitor, taking a step forward and shaking his hunting-crop. "I know you, you scoundrel! I have heard of you before. You are Holmes, the meddler." + +My friend smiled. + +"Holmes, the busybody!" + +His smile broadened. + +"Holmes, the Scotland Yard Jack-in-office!" + +Holmes chuckled heartily. "Your conversation is most entertaining," said he. "When you go out close the door, for there is a decided draught." + +"I will go when I have said my say. Don't you dare to meddle with my affairs. I know that Miss Stoner has been here. I traced her! I am a dangerous man to fall foul of! See here." He stepped swiftly forward, seized the poker, and bent it into a curve with his huge brown hands. + +"See that you keep yourself out of my grip," he snarled, and hurling the twisted poker into the fireplace he strode out of the room. + +"He seems a very amiable person," said Holmes, laughing. "I am not quite so bulky, but if he had remained I might have shown him that my grip was not much more feeble than his own." As he spoke he picked up the steel poker and, with a sudden effort, straightened it out again. + +"Fancy his having the insolence to confound me with the official detective force! This incident gives zest to our investigation, however, and I only trust that our little friend will not suffer from her imprudence in allowing this brute to trace her. And now, Watson, we shall order breakfast, and afterwards I shall walk down to Doctors' Commons, where I hope to get some data which may help us in this matter." + +It was nearly one o'clock when Sherlock Holmes returned from his excursion. He held in his hand a sheet of blue paper, scrawled over with notes and figures. + +"I have seen the will of the deceased wife," said he. "To determine its exact meaning I have been obliged to work out the present prices of the investments with which it is concerned. The total income, which at the time of the wife's death was little short of $1100, is now, through the fall in agricultural prices, not more than $750. Each daughter can claim an income of $250, in case of marriage. It is evident, therefore, that if both girls had married, this beauty would have had a mere pittance, while even one of them would cripple him to a very serious extent. My morning's work has not been wasted, since it has proved that he has the very strongest motives for standing in the way of anything of the sort. And now, Watson, this is too serious for dawdling, especially as the old man is aware that we are interesting ourselves in his affairs; so if you are ready, we shall call a cab and drive to Waterloo. I should be very much obliged if you would slip your revolver into your pocket. An Eley's No. 2 is an excellent argument with gentlemen who can twist steel pokers into knots. That and a tooth-brush are, I think, all that we need." + +At Waterloo we were fortunate in catching a train for Leatherhead, where we hired a trap at the station inn and drove for four or five miles through the lovely Surrey lanes. It was a perfect day, with a bright sun and a few fleecy clouds in the heavens. The trees and wayside hedges were just throwing out their first green shoots, and the air was full of the pleasant smell of the moist earth. To me at least there was a strange contrast between the sweet promise of the spring and this sinister quest upon which we were engaged. My companion sat in the front of the trap, his arms folded, his hat pulled down over his eyes, and his chin sunk upon his breast, buried in the deepest thought. Suddenly, however, he started, tapped me on the shoulder, and pointed over the meadows. + +"Look there!" said he. + +A heavily timbered park stretched up in a gentle slope, thickening into a grove at the highest point. From amid the branches there jutted out the grey gables and high roof-tree of a very old mansion. + +"Stoke Moran?" said he. + +"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked the driver. + +"There is some building going on there," said Holmes; "that is where we are going." + +"There's the village," said the driver, pointing to a cluster of roofs some distance to the left; "but if you want to get to the house, you'll find it shorter to get over this stile, and so by the foot-path over the fields. There it is, where the lady is walking." + +"And the lady, I fancy, is Miss Stoner," observed Holmes, shading his eyes. "Yes, I think we had better do as you suggest." + +We got off, paid our fare, and the trap rattled back on its way to Leatherhead. + +"I thought it as well," said Holmes as we climbed the stile, "that this fellow should think we had come here as architects, or on some definite business. It may stop his gossip. Good-afternoon, Miss Stoner. You see that we have been as good as our word." + +Our client of the morning had hurried forward to meet us with a face which spoke her joy. "I have been waiting so eagerly for you," she cried, shaking hands with us warmly. "All has turned out splendidly. Dr. Roylott has gone to town, and it is unlikely that he will be back before evening." + +"We have had the pleasure of making the doctor's acquaintance," said Holmes, and in a few words he sketched out what had occurred. Miss Stoner turned white to the lips as she listened. + +"Good heavens!" she cried, "he has followed me, then." + +"So it appears." + +"He is so cunning that I never know when I am safe from him. What will he say when he returns?" + +"He must guard himself, for he may find that there is someone more cunning than himself upon his track. You must lock yourself up from him to-night. If he is violent, we shall take you away to your aunt's at Harrow. Now, we must make the best use of our time, so kindly take us at once to the rooms which we are to examine." + +The building was of grey, lichen-blotched stone, with a high central portion and two curving wings, like the claws of a crab, thrown out on each side. In one of these wings the windows were broken and blocked with wooden boards, while the roof was partly caved in, a picture of ruin. The central portion was in little better repair, but the right-hand block was comparatively modern, and the blinds in the windows, with the blue smoke curling up from the chimneys, showed that this was where the family resided. Some scaffolding had been erected against the end wall, and the stone-work had been broken into, but there were no signs of any workmen at the moment of our visit. Holmes walked slowly up and down the ill-trimmed lawn and examined with deep attention the outsides of the windows. + +"This, I take it, belongs to the room in which you used to sleep, the centre one to your sister's, and the one next to the main building to Dr. Roylott's chamber?" + +"Exactly so. But I am now sleeping in the middle one." + +"Pending the alterations, as I understand. By the way, there does not seem to be any very pressing need for repairs at that end wall." + +"There were none. I believe that it was an excuse to move me from my room." + +"Ah! that is suggestive. Now, on the other side of this narrow wing runs the corridor from which these three rooms open. There are windows in it, of course?" + +"Yes, but very small ones. Too narrow for anyone to pass through." + +"As you both locked your doors at night, your rooms were unapproachable from that side. Now, would you have the kindness to go into your room and bar your shutters?" + +Miss Stoner did so, and Holmes, after a careful examination through the open window, endeavoured in every way to force the shutter open, but without success. There was no slit through which a knife could be passed to raise the bar. Then with his lens he tested the hinges, but they were of solid iron, built firmly into the massive masonry. "Hum!" said he, scratching his chin in some perplexity, "my theory certainly presents some difficulties. No one could pass these shutters if they were bolted. Well, we shall see if the inside throws any light upon the matter." + +A small side door led into the whitewashed corridor from which the three bedrooms opened. Holmes refused to examine the third chamber, so we passed at once to the second, that in which Miss Stoner was now sleeping, and in which her sister had met with her fate. It was a homely little room, with a low ceiling and a gaping fireplace, after the fashion of old country-houses. A brown chest of drawers stood in one corner, a narrow white-counterpaned bed in another, and a dressing-table on the left-hand side of the window. These articles, with two small wicker-work chairs, made up all the furniture in the room save for a square of Wilton carpet in the centre. The boards round and the panelling of the walls were of brown, worm-eaten oak, so old and discoloured that it may have dated from the original building of the house. Holmes drew one of the chairs into a corner and sat silent, while his eyes travelled round and round and up and down, taking in every detail of the apartment. + +"Where does that bell communicate with?" he asked at last pointing to a thick bell-rope which hung down beside the bed, the tassel actually lying upon the pillow. + +"It goes to the housekeeper's room." + +"It looks newer than the other things?" + +"Yes, it was only put there a couple of years ago." + +"Your sister asked for it, I suppose?" + +"No, I never heard of her using it. We used always to get what we wanted for ourselves." + +"Indeed, it seemed unnecessary to put so nice a bell-pull there. You will excuse me for a few minutes while I satisfy myself as to this floor." He threw himself down upon his face with his lens in his hand and crawled swiftly backward and forward, examining minutely the cracks between the boards. Then he did the same with the wood-work with which the chamber was panelled. Finally he walked over to the bed and spent some time in staring at it and in running his eye up and down the wall. Finally he took the bell-rope in his hand and gave it a brisk tug. + +"Why, it's a dummy," said he. + +"Won't it ring?" + +"No, it is not even attached to a wire. This is very interesting. You can see now that it is fastened to a hook just above where the little opening for the ventilator is." + +"How very absurd! I never noticed that before." + +"Very strange!" muttered Holmes, pulling at the rope. "There are one or two very singular points about this room. For example, what a fool a builder must be to open a ventilator into another room, when, with the same trouble, he might have communicated with the outside air!" + +"That is also quite modern," said the lady. + +"Done about the same time as the bell-rope?" remarked Holmes. + +"Yes, there were several little changes carried out about that time." + +"They seem to have been of a most interesting character--dummy bell-ropes, and ventilators which do not ventilate. With your permission, Miss Stoner, we shall now carry our researches into the inner apartment." + +Dr. Grimesby Roylott's chamber was larger than that of his step-daughter, but was as plainly furnished. A camp-bed, a small wooden shelf full of books, mostly of a technical character, an armchair beside the bed, a plain wooden chair against the wall, a round table, and a large iron safe were the principal things which met the eye. Holmes walked slowly round and examined each and all of them with the keenest interest. + +"What's in here?" he asked, tapping the safe. + +"My stepfather's business papers." + +"Oh! you have seen inside, then?" + +"Only once, some years ago. I remember that it was full of papers." + +"There isn't a cat in it, for example?" + +"No. What a strange idea!" + +"Well, look at this!" He took up a small saucer of milk which stood on the top of it. + +"No; we don't keep a cat. But there is a cheetah and a baboon." + +"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a saucer of milk does not go very far in satisfying its wants, I daresay. There is one point which I should wish to determine." He squatted down in front of the wooden chair and examined the seat of it with the greatest attention. + +"Thank you. That is quite settled," said he, rising and putting his lens in his pocket. "Hullo! Here is something interesting!" + +The object which had caught his eye was a small dog lash hung on one corner of the bed. The lash, however, was curled upon itself and tied so as to make a loop of whipcord. + +"What do you make of that, Watson?" + +"It's a common enough lash. But I don't know why it should be tied." + +"That is not quite so common, is it? Ah, me! it's a wicked world, and when a clever man turns his brains to crime it is the worst of all. I think that I have seen enough now, Miss Stoner, and with your permission we shall walk out upon the lawn." + +I had never seen my friend's face so grim or his brow so dark as it was when we turned from the scene of this investigation. We had walked several times up and down the lawn, neither Miss Stoner nor myself liking to break in upon his thoughts before he roused himself from his reverie. + +"It is very essential, Miss Stoner," said he, "that you should absolutely follow my advice in every respect." + +"I shall most certainly do so." + +"The matter is too serious for any hesitation. Your life may depend upon your compliance." + +"I assure you that I am in your hands." + +"In the first place, both my friend and I must spend the night in your room." + +Both Miss Stoner and I gazed at him in astonishment. + +"Yes, it must be so. Let me explain. I believe that that is the village inn over there?" + +"Yes, that is the Crown." + +"Very good. Your windows would be visible from there?" + +"Certainly." + +"You must confine yourself to your room, on pretence of a headache, when your stepfather comes back. Then when you hear him retire for the night, you must open the shutters of your window, undo the hasp, put your lamp there as a signal to us, and then withdraw quietly with everything which you are likely to want into the room which you used to occupy. I have no doubt that, in spite of the repairs, you could manage there for one night." + +"Oh, yes, easily." + +"The rest you will leave in our hands." + +"But what will you do?" + +"We shall spend the night in your room, and we shall investigate the cause of this noise which has disturbed you." + +"I believe, Mr. Holmes, that you have already made up your mind," said Miss Stoner, laying her hand upon my companion's sleeve. + +"Perhaps I have." + +"Then, for pity's sake, tell me what was the cause of my sister's death." + +"I should prefer to have clearer proofs before I speak." + +"You can at least tell me whether my own thought is correct, and if she died from some sudden fright." + +"No, I do not think so. I think that there was probably some more tangible cause. And now, Miss Stoner, we must leave you for if Dr. Roylott returned and saw us our journey would be in vain. Good-bye, and be brave, for if you will do what I have told you, you may rest assured that we shall soon drive away the dangers that threaten you." + +Sherlock Holmes and I had no difficulty in engaging a bedroom and sitting-room at the Crown Inn. They were on the upper floor, and from our window we could command a view of the avenue gate, and of the inhabited wing of Stoke Moran Manor House. At dusk we saw Dr. Grimesby Roylott drive past, his huge form looming up beside the little figure of the lad who drove him. The boy had some slight difficulty in undoing the heavy iron gates, and we heard the hoarse roar of the doctor's voice and saw the fury with which he shook his clinched fists at him. The trap drove on, and a few minutes later we saw a sudden light spring up among the trees as the lamp was lit in one of the sitting-rooms. + +"Do you know, Watson," said Holmes as we sat together in the gathering darkness, "I have really some scruples as to taking you to-night. There is a distinct element of danger." + +"Can I be of assistance?" + +"Your presence might be invaluable." + +"Then I shall certainly come." + +"It is very kind of you." + +"You speak of danger. You have evidently seen more in these rooms than was visible to me." + +"No, but I fancy that I may have deduced a little more. I imagine that you saw all that I did." + +"I saw nothing remarkable save the bell-rope, and what purpose that could answer I confess is more than I can imagine." + +"You saw the ventilator, too?" + +"Yes, but I do not think that it is such a very unusual thing to have a small opening between two rooms. It was so small that a rat could hardly pass through." + +"I knew that we should find a ventilator before ever we came to Stoke Moran." + +"My dear Holmes!" + +"Oh, yes, I did. You remember in her statement she said that her sister could smell Dr. Roylott's cigar. Now, of course that suggested at once that there must be a communication between the two rooms. It could only be a small one, or it would have been remarked upon at the coroner's inquiry. I deduced a ventilator." + +"But what harm can there be in that?" + +"Well, there is at least a curious coincidence of dates. A ventilator is made, a cord is hung, and a lady who sleeps in the bed dies. Does not that strike you?" + +"I cannot as yet see any connection." + +"Did you observe anything very peculiar about that bed?" + +"No." + +"It was clamped to the floor. Did you ever see a bed fastened like that before?" + +"I cannot say that I have." + +"The lady could not move her bed. It must always be in the same relative position to the ventilator and to the rope--or so we may call it, since it was clearly never meant for a bell-pull." + +"Holmes," I cried, "I seem to see dimly what you are hinting at. We are only just in time to prevent some subtle and horrible crime." + +"Subtle enough and horrible enough. When a doctor does go wrong he is the first of criminals. He has nerve and he has knowledge. Palmer and Pritchard were among the heads of their profession. This man strikes even deeper, but I think, Watson, that we shall be able to strike deeper still. But we shall have horrors enough before the night is over; for goodness' sake let us have a quiet pipe and turn our minds for a few hours to something more cheerful." + +About nine o'clock the light among the trees was extinguished, and all was dark in the direction of the Manor House. Two hours passed slowly away, and then, suddenly, just at the stroke of eleven, a single bright light shone out right in front of us. + +"That is our signal," said Holmes, springing to his feet; "it comes from the middle window." + +As we passed out he exchanged a few words with the landlord, explaining that we were going on a late visit to an acquaintance, and that it was possible that we might spend the night there. A moment later we were out on the dark road, a chill wind blowing in our faces, and one yellow light twinkling in front of us through the gloom to guide us on our sombre errand. + +There was little difficulty in entering the grounds, for unrepaired breaches gaped in the old park wall. Making our way among the trees, we reached the lawn, crossed it, and were about to enter through the window when out from a clump of laurel bushes there darted what seemed to be a hideous and distorted child, who threw itself upon the grass with writhing limbs and then ran swiftly across the lawn into the darkness. + +"My God!" I whispered; "did you see it?" + +Holmes was for the moment as startled as I. His hand closed like a vice upon my wrist in his agitation. Then he broke into a low laugh and put his lips to my ear. + +"It is a nice household," he murmured. "That is the baboon." + +I had forgotten the strange pets which the doctor affected. There was a cheetah, too; perhaps we might find it upon our shoulders at any moment. I confess that I felt easier in my mind when, after following Holmes' example and slipping off my shoes, I found myself inside the bedroom. My companion noiselessly closed the shutters, moved the lamp onto the table, and cast his eyes round the room. All was as we had seen it in the daytime. Then creeping up to me and making a trumpet of his hand, he whispered into my ear again so gently that it was all that I could do to distinguish the words: + +"The least sound would be fatal to our plans." + +I nodded to show that I had heard. + +"We must sit without light. He would see it through the ventilator." + +I nodded again. + +"Do not go asleep; your very life may depend upon it. Have your pistol ready in case we should need it. I will sit on the side of the bed, and you in that chair." + +I took out my revolver and laid it on the corner of the table. + +Holmes had brought up a long thin cane, and this he placed upon the bed beside him. By it he laid the box of matches and the stump of a candle. Then he turned down the lamp, and we were left in darkness. + +How shall I ever forget that dreadful vigil? I could not hear a sound, not even the drawing of a breath, and yet I knew that my companion sat open-eyed, within a few feet of me, in the same state of nervous tension in which I was myself. The shutters cut off the least ray of light, and we waited in absolute darkness. + +From outside came the occasional cry of a night-bird, and once at our very window a long drawn catlike whine, which told us that the cheetah was indeed at liberty. Far away we could hear the deep tones of the parish clock, which boomed out every quarter of an hour. How long they seemed, those quarters! Twelve struck, and one and two and three, and still we sat waiting silently for whatever might befall. + +Suddenly there was the momentary gleam of a light up in the direction of the ventilator, which vanished immediately, but was succeeded by a strong smell of burning oil and heated metal. Someone in the next room had lit a dark-lantern. I heard a gentle sound of movement, and then all was silent once more, though the smell grew stronger. For half an hour I sat with straining ears. Then suddenly another sound became audible--a very gentle, soothing sound, like that of a small jet of steam escaping continually from a kettle. The instant that we heard it, Holmes sprang from the bed, struck a match, and lashed furiously with his cane at the bell-pull. + +"You see it, Watson?" he yelled. "You see it?" + +But I saw nothing. At the moment when Holmes struck the light I heard a low, clear whistle, but the sudden glare flashing into my weary eyes made it impossible for me to tell what it was at which my friend lashed so savagely. I could, however, see that his face was deadly pale and filled with horror and loathing. He had ceased to strike and was gazing up at the ventilator when suddenly there broke from the silence of the night the most horrible cry to which I have ever listened. It swelled up louder and louder, a hoarse yell of pain and fear and anger all mingled in the one dreadful shriek. They say that away down in the village, and even in the distant parsonage, that cry raised the sleepers from their beds. It struck cold to our hearts, and I stood gazing at Holmes, and he at me, until the last echoes of it had died away into the silence from which it rose. + +"What can it mean?" I gasped. + +"It means that it is all over," Holmes answered. "And perhaps, after all, it is for the best. Take your pistol, and we will enter Dr. Roylott's room." + +With a grave face he lit the lamp and led the way down the corridor. Twice he struck at the chamber door without any reply from within. Then he turned the handle and entered, I at his heels, with the cocked pistol in my hand. + +It was a singular sight which met our eyes. On the table stood a dark-lantern with the shutter half open, throwing a brilliant beam of light upon the iron safe, the door of which was ajar. Beside this table, on the wooden chair, sat Dr. Grimesby Roylott clad in a long grey dressing-gown, his bare ankles protruding beneath, and his feet thrust into red heelless Turkish slippers. Across his lap lay the short stock with the long lash which we had noticed during the day. His chin was cocked upward and his eyes were fixed in a dreadful, rigid stare at the corner of the ceiling. Round his brow he had a peculiar yellow band, with brownish speckles, which seemed to be bound tightly round his head. As we entered he made neither sound nor motion. + +"The band! the speckled band!" whispered Holmes. + +I took a step forward. In an instant his strange headgear began to move, and there reared itself from among his hair the squat diamond-shaped head and puffed neck of a loathsome serpent. + +"It is a swamp adder!" cried Holmes; "the deadliest snake in India. He has died within ten seconds of being bitten. Violence does, in truth, recoil upon the violent, and the schemer falls into the pit which he digs for another. Let us thrust this creature back into its den, and we can then remove Miss Stoner to some place of shelter and let the county police know what has happened." + +As he spoke he drew the dog-whip swiftly from the dead man's lap, and throwing the noose round the reptile's neck he drew it from its horrid perch and, carrying it at arm's length, threw it into the iron safe, which he closed upon it. + +Such are the true facts of the death of Dr. Grimesby Roylott, of Stoke Moran. It is not necessary that I should prolong a narrative which has already run to too great a length by telling how we broke the sad news to the terrified girl, how we conveyed her by the morning train to the care of her good aunt at Harrow, of how the slow process of official inquiry came to the conclusion that the doctor met his fate while indiscreetly playing with a dangerous pet. The little which I had yet to learn of the case was told me by Sherlock Holmes as we travelled back next day. + +"I had," said he, "come to an entirely erroneous conclusion which shows, my dear Watson, how dangerous it always is to reason from insufficient data. The presence of the gipsies, and the use of the word 'band,' which was used by the poor girl, no doubt, to explain the appearance which she had caught a hurried glimpse of by the light of her match, were sufficient to put me upon an entirely wrong scent. I can only claim the merit that I instantly reconsidered my position when, however, it became clear to me that whatever danger threatened an occupant of the room could not come either from the window or the door. My attention was speedily drawn, as I have already remarked to you, to this ventilator, and to the bell-rope which hung down to the bed. The discovery that this was a dummy, and that the bed was clamped to the floor, instantly gave rise to the suspicion that the rope was there as a bridge for something passing through the hole and coming to the bed. The idea of a snake instantly occurred to me, and when I coupled it with my knowledge that the doctor was furnished with a supply of creatures from India, I felt that I was probably on the right track. The idea of using a form of poison which could not possibly be discovered by any chemical test was just such a one as would occur to a clever and ruthless man who had had an Eastern training. The rapidity with which such a poison would take effect would also, from his point of view, be an advantage. It would be a sharp-eyed coroner, indeed, who could distinguish the two little dark punctures which would show where the poison fangs had done their work. Then I thought of the whistle. Of course he must recall the snake before the morning light revealed it to the victim. He had trained it, probably by the use of the milk which we saw, to return to him when summoned. He would put it through this ventilator at the hour that he thought best, with the certainty that it would crawl down the rope and land on the bed. It might or might not bite the occupant, perhaps she might escape every night for a week, but sooner or later she must fall a victim. + +"I had come to these conclusions before ever I had entered his room. An inspection of his chair showed me that he had been in the habit of standing on it, which of course would be necessary in order that he should reach the ventilator. The sight of the safe, the saucer of milk, and the loop of whipcord were enough to finally dispel any doubts which may have remained. The metallic clang heard by Miss Stoner was obviously caused by her stepfather hastily closing the door of his safe upon its terrible occupant. Having once made up my mind, you know the steps which I took in order to put the matter to the proof. I heard the creature hiss as I have no doubt that you did also, and I instantly lit the light and attacked it." + +"With the result of driving it through the ventilator." + +"And also with the result of causing it to turn upon its master at the other side. Some of the blows of my cane came home and roused its snakish temper, so that it flew upon the first person it saw. In this way I am no doubt indirectly responsible for Dr. Grimesby Roylott's death, and I cannot say that it is likely to weigh very heavily upon my conscience." + +IX. THE ADVENTURE OF THE ENGINEER'S THUMB + + +Of all the problems which have been submitted to my friend, Mr. Sherlock Holmes, for solution during the years of our intimacy, there were only two which I was the means of introducing to his notice--that of Mr. Hatherley's thumb, and that of Colonel Warburton's madness. Of these the latter may have afforded a finer field for an acute and original observer, but the other was so strange in its inception and so dramatic in its details that it may be the more worthy of being placed upon record, even if it gave my friend fewer openings for those deductive methods of reasoning by which he achieved such remarkable results. The story has, I believe, been told more than once in the newspapers, but, like all such narratives, its effect is much less striking when set forth en bloc in a single half-column of print than when the facts slowly evolve before your own eyes, and the mystery clears gradually away as each new discovery furnishes a step which leads on to the complete truth. At the time the circumstances made a deep impression upon me, and the lapse of two years has hardly served to weaken the effect. + +It was in the summer of '89, not long after my marriage, that the events occurred which I am now about to summarise. I had returned to civil practice and had finally abandoned Holmes in his Baker Street rooms, although I continually visited him and occasionally even persuaded him to forgo his Bohemian habits so far as to come and visit us. My practice had steadily increased, and as I happened to live at no very great distance from Paddington Station, I got a few patients from among the officials. One of these, whom I had cured of a painful and lingering disease, was never weary of advertising my virtues and of endeavouring to send me on every sufferer over whom he might have any influence. + +One morning, at a little before seven o'clock, I was awakened by the maid tapping at the door to announce that two men had come from Paddington and were waiting in the consulting-room. I dressed hurriedly, for I knew by experience that railway cases were seldom trivial, and hastened downstairs. As I descended, my old ally, the guard, came out of the room and closed the door tightly behind him. + +"I've got him here," he whispered, jerking his thumb over his shoulder; "he's all right." + +"What is it, then?" I asked, for his manner suggested that it was some strange creature which he had caged up in my room. + +"It's a new patient," he whispered. "I thought I'd bring him round myself; then he couldn't slip away. There he is, all safe and sound. I must go now, Doctor; I have my dooties, just the same as you." And off he went, this trusty tout, without even giving me time to thank him. + +I entered my consulting-room and found a gentleman seated by the table. He was quietly dressed in a suit of heather tweed with a soft cloth cap which he had laid down upon my books. Round one of his hands he had a handkerchief wrapped, which was mottled all over with bloodstains. He was young, not more than five-and-twenty, I should say, with a strong, masculine face; but he was exceedingly pale and gave me the impression of a man who was suffering from some strong agitation, which it took all his strength of mind to control. + +"I am sorry to knock you up so early, Doctor," said he, "but I have had a very serious accident during the night. I came in by train this morning, and on inquiring at Paddington as to where I might find a doctor, a worthy fellow very kindly escorted me here. I gave the maid a card, but I see that she has left it upon the side-table." + +I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic engineer, 16A, Victoria Street (3rd floor)." That was the name, style, and abode of my morning visitor. "I regret that I have kept you waiting," said I, sitting down in my library-chair. "You are fresh from a night journey, I understand, which is in itself a monotonous occupation." + +"Oh, my night could not be called monotonous," said he, and laughed. He laughed very heartily, with a high, ringing note, leaning back in his chair and shaking his sides. All my medical instincts rose up against that laugh. + +"Stop it!" I cried; "pull yourself together!" and I poured out some water from a caraffe. + +It was useless, however. He was off in one of those hysterical outbursts which come upon a strong nature when some great crisis is over and gone. Presently he came to himself once more, very weary and pale-looking. + +"I have been making a fool of myself," he gasped. + +"Not at all. Drink this." I dashed some brandy into the water, and the colour began to come back to his bloodless cheeks. + +"That's better!" said he. "And now, Doctor, perhaps you would kindly attend to my thumb, or rather to the place where my thumb used to be." + +He unwound the handkerchief and held out his hand. It gave even my hardened nerves a shudder to look at it. There were four protruding fingers and a horrid red, spongy surface where the thumb should have been. It had been hacked or torn right out from the roots. + +"Good heavens!" I cried, "this is a terrible injury. It must have bled considerably." + +"Yes, it did. I fainted when it was done, and I think that I must have been senseless for a long time. When I came to I found that it was still bleeding, so I tied one end of my handkerchief very tightly round the wrist and braced it up with a twig." + +"Excellent! You should have been a surgeon." + +"It is a question of hydraulics, you see, and came within my own province." + +"This has been done," said I, examining the wound, "by a very heavy and sharp instrument." + +"A thing like a cleaver," said he. + +"An accident, I presume?" + +"By no means." + +"What! a murderous attack?" + +"Very murderous indeed." + +"You horrify me." + +I sponged the wound, cleaned it, dressed it, and finally covered it over with cotton wadding and carbolised bandages. He lay back without wincing, though he bit his lip from time to time. + +"How is that?" I asked when I had finished. + +"Capital! Between your brandy and your bandage, I feel a new man. I was very weak, but I have had a good deal to go through." + +"Perhaps you had better not speak of the matter. It is evidently trying to your nerves." + +"Oh, no, not now. I shall have to tell my tale to the police; but, between ourselves, if it were not for the convincing evidence of this wound of mine, I should be surprised if they believed my statement, for it is a very extraordinary one, and I have not much in the way of proof with which to back it up; and, even if they believe me, the clues which I can give them are so vague that it is a question whether justice will be done." + +"Ha!" cried I, "if it is anything in the nature of a problem which you desire to see solved, I should strongly recommend you to come to my friend, Mr. Sherlock Holmes, before you go to the official police." + +"Oh, I have heard of that fellow," answered my visitor, "and I should be very glad if he would take the matter up, though of course I must use the official police as well. Would you give me an introduction to him?" + +"I'll do better. I'll take you round to him myself." + +"I should be immensely obliged to you." + +"We'll call a cab and go together. We shall just be in time to have a little breakfast with him. Do you feel equal to it?" + +"Yes; I shall not feel easy until I have told my story." + +"Then my servant will call a cab, and I shall be with you in an instant." I rushed upstairs, explained the matter shortly to my wife, and in five minutes was inside a hansom, driving with my new acquaintance to Baker Street. + +Sherlock Holmes was, as I expected, lounging about his sitting-room in his dressing-gown, reading the agony column of The Times and smoking his before-breakfast pipe, which was composed of all the plugs and dottles left from his smokes of the day before, all carefully dried and collected on the corner of the mantelpiece. He received us in his quietly genial fashion, ordered fresh rashers and eggs, and joined us in a hearty meal. When it was concluded he settled our new acquaintance upon the sofa, placed a pillow beneath his head, and laid a glass of brandy and water within his reach. + +"It is easy to see that your experience has been no common one, Mr. Hatherley," said he. "Pray, lie down there and make yourself absolutely at home. Tell us what you can, but stop when you are tired and keep up your strength with a little stimulant." + +"Thank you," said my patient. "but I have felt another man since the doctor bandaged me, and I think that your breakfast has completed the cure. I shall take up as little of your valuable time as possible, so I shall start at once upon my peculiar experiences." + +Holmes sat in his big armchair with the weary, heavy-lidded expression which veiled his keen and eager nature, while I sat opposite to him, and we listened in silence to the strange story which our visitor detailed to us. + +"You must know," said he, "that I am an orphan and a bachelor, residing alone in lodgings in London. By profession I am a hydraulic engineer, and I have had considerable experience of my work during the seven years that I was apprenticed to Venner & Matheson, the well-known firm, of Greenwich. Two years ago, having served my time, and having also come into a fair sum of money through my poor father's death, I determined to start in business for myself and took professional chambers in Victoria Street. + +"I suppose that everyone finds his first independent start in business a dreary experience. To me it has been exceptionally so. During two years I have had three consultations and one small job, and that is absolutely all that my profession has brought me. My gross takings amount to $27 10s. Every day, from nine in the morning until four in the afternoon, I waited in my little den, until at last my heart began to sink, and I came to believe that I should never have any practice at all. + +"Yesterday, however, just as I was thinking of leaving the office, my clerk entered to say there was a gentleman waiting who wished to see me upon business. He brought up a card, too, with the name of 'Colonel Lysander Stark' engraved upon it. Close at his heels came the colonel himself, a man rather over the middle size, but of an exceeding thinness. I do not think that I have ever seen so thin a man. His whole face sharpened away into nose and chin, and the skin of his cheeks was drawn quite tense over his outstanding bones. Yet this emaciation seemed to be his natural habit, and due to no disease, for his eye was bright, his step brisk, and his bearing assured. He was plainly but neatly dressed, and his age, I should judge, would be nearer forty than thirty. + +" 'Mr. Hatherley?' said he, with something of a German accent. 'You have been recommended to me, Mr. Hatherley, as being a man who is not only proficient in his profession but is also discreet and capable of preserving a secret.' + +"I bowed, feeling as flattered as any young man would at such an address. 'May I ask who it was who gave me so good a character?' + +" 'Well, perhaps it is better that I should not tell you that just at this moment. I have it from the same source that you are both an orphan and a bachelor and are residing alone in London.' + +" 'That is quite correct,' I answered; 'but you will excuse me if I say that I cannot see how all this bears upon my professional qualifications. I understand that it was on a professional matter that you wished to speak to me?' + +" 'Undoubtedly so. But you will find that all I say is really to the point. I have a professional commission for you, but absolute secrecy is quite essential--absolute secrecy, you understand, and of course we may expect that more from a man who is alone than from one who lives in the bosom of his family.' + +" 'If I promise to keep a secret,' said I, 'you may absolutely depend upon my doing so.' + +"He looked very hard at me as I spoke, and it seemed to me that I had never seen so suspicious and questioning an eye. + +" 'Do you promise, then?' said he at last. + +" 'Yes, I promise.' + +" 'Absolute and complete silence before, during, and after? No reference to the matter at all, either in word or writing?' + +" 'I have already given you my word.' + +" 'Very good.' He suddenly sprang up, and darting like lightning across the room he flung open the door. The passage outside was empty. + +" 'That's all right,' said he, coming back. 'I know that clerks are sometimes curious as to their master's affairs. Now we can talk in safety.' He drew up his chair very close to mine and began to stare at me again with the same questioning and thoughtful look. + +"A feeling of repulsion, and of something akin to fear had begun to rise within me at the strange antics of this fleshless man. Even my dread of losing a client could not restrain me from showing my impatience. + +" 'I beg that you will state your business, sir,' said I; 'my time is of value.' Heaven forgive me for that last sentence, but the words came to my lips. + +" 'How would fifty guineas for a night's work suit you?' he asked. + +" 'Most admirably.' + +" 'I say a night's work, but an hour's would be nearer the mark. I simply want your opinion about a hydraulic stamping machine which has got out of gear. If you show us what is wrong we shall soon set it right ourselves. What do you think of such a commission as that?' + +" 'The work appears to be light and the pay munificent.' + +" 'Precisely so. We shall want you to come to-night by the last train.' + +" 'Where to?' + +" 'To Eyford, in Berkshire. It is a little place near the borders of Oxfordshire, and within seven miles of Reading. There is a train from Paddington which would bring you there at about 11:15.' + +" 'Very good.' + +" 'I shall come down in a carriage to meet you.' + +" 'There is a drive, then?' + +" 'Yes, our little place is quite out in the country. It is a good seven miles from Eyford Station.' + +" 'Then we can hardly get there before midnight. I suppose there would be no chance of a train back. I should be compelled to stop the night.' + +" 'Yes, we could easily give you a shake-down.' + +" 'That is very awkward. Could I not come at some more convenient hour?' + +" 'We have judged it best that you should come late. It is to recompense you for any inconvenience that we are paying to you, a young and unknown man, a fee which would buy an opinion from the very heads of your profession. Still, of course, if you would like to draw out of the business, there is plenty of time to do so.' + +"I thought of the fifty guineas, and of how very useful they would be to me. 'Not at all,' said I, 'I shall be very happy to accommodate myself to your wishes. I should like, however, to understand a little more clearly what it is that you wish me to do.' + +" 'Quite so. It is very natural that the pledge of secrecy which we have exacted from you should have aroused your curiosity. I have no wish to commit you to anything without your having it all laid before you. I suppose that we are absolutely safe from eavesdroppers?' + +" 'Entirely.' + +" 'Then the matter stands thus. You are probably aware that fuller's-earth is a valuable product, and that it is only found in one or two places in England?' + +" 'I have heard so.' + +" 'Some little time ago I bought a small place--a very small place--within ten miles of Reading. I was fortunate enough to discover that there was a deposit of fuller's-earth in one of my fields. On examining it, however, I found that this deposit was a comparatively small one, and that it formed a link between two very much larger ones upon the right and left--both of them, however, in the grounds of my neighbours. These good people were absolutely ignorant that their land contained that which was quite as valuable as a gold-mine. Naturally, it was to my interest to buy their land before they discovered its true value, but unfortunately I had no capital by which I could do this. I took a few of my friends into the secret, however, and they suggested that we should quietly and secretly work our own little deposit and that in this way we should earn the money which would enable us to buy the neighbouring fields. This we have now been doing for some time, and in order to help us in our operations we erected a hydraulic press. This press, as I have already explained, has got out of order, and we wish your advice upon the subject. We guard our secret very jealously, however, and if it once became known that we had hydraulic engineers coming to our little house, it would soon rouse inquiry, and then, if the facts came out, it would be good-bye to any chance of getting these fields and carrying out our plans. That is why I have made you promise me that you will not tell a human being that you are going to Eyford to-night. I hope that I make it all plain?' + +" 'I quite follow you,' said I. 'The only point which I could not quite understand was what use you could make of a hydraulic press in excavating fuller's-earth, which, as I understand, is dug out like gravel from a pit.' + +" 'Ah!' said he carelessly, 'we have our own process. We compress the earth into bricks, so as to remove them without revealing what they are. But that is a mere detail. I have taken you fully into my confidence now, Mr. Hatherley, and I have shown you how I trust you.' He rose as he spoke. 'I shall expect you, then, at Eyford at 11:15.' + +" 'I shall certainly be there.' + +" 'And not a word to a soul.' He looked at me with a last long, questioning gaze, and then, pressing my hand in a cold, dank grasp, he hurried from the room. + +"Well, when I came to think it all over in cool blood I was very much astonished, as you may both think, at this sudden commission which had been intrusted to me. On the one hand, of course, I was glad, for the fee was at least tenfold what I should have asked had I set a price upon my own services, and it was possible that this order might lead to other ones. On the other hand, the face and manner of my patron had made an unpleasant impression upon me, and I could not think that his explanation of the fuller's-earth was sufficient to explain the necessity for my coming at midnight, and his extreme anxiety lest I should tell anyone of my errand. However, I threw all fears to the winds, ate a hearty supper, drove to Paddington, and started off, having obeyed to the letter the injunction as to holding my tongue. + +"At Reading I had to change not only my carriage but my station. However, I was in time for the last train to Eyford, and I reached the little dim-lit station after eleven o'clock. I was the only passenger who got out there, and there was no one upon the platform save a single sleepy porter with a lantern. As I passed out through the wicket gate, however, I found my acquaintance of the morning waiting in the shadow upon the other side. Without a word he grasped my arm and hurried me into a carriage, the door of which was standing open. He drew up the windows on either side, tapped on the wood-work, and away we went as fast as the horse could go." + +"One horse?" interjected Holmes. + +"Yes, only one." + +"Did you observe the colour?" + +"Yes, I saw it by the side-lights when I was stepping into the carriage. It was a chestnut." + +"Tired-looking or fresh?" + +"Oh, fresh and glossy." + +"Thank you. I am sorry to have interrupted you. Pray continue your most interesting statement." + +"Away we went then, and we drove for at least an hour. Colonel Lysander Stark had said that it was only seven miles, but I should think, from the rate that we seemed to go, and from the time that we took, that it must have been nearer twelve. He sat at my side in silence all the time, and I was aware, more than once when I glanced in his direction, that he was looking at me with great intensity. The country roads seem to be not very good in that part of the world, for we lurched and jolted terribly. I tried to look out of the windows to see something of where we were, but they were made of frosted glass, and I could make out nothing save the occasional bright blur of a passing light. Now and then I hazarded some remark to break the monotony of the journey, but the colonel answered only in monosyllables, and the conversation soon flagged. At last, however, the bumping of the road was exchanged for the crisp smoothness of a gravel-drive, and the carriage came to a stand. Colonel Lysander Stark sprang out, and, as I followed after him, pulled me swiftly into a porch which gaped in front of us. We stepped, as it were, right out of the carriage and into the hall, so that I failed to catch the most fleeting glance of the front of the house. The instant that I had crossed the threshold the door slammed heavily behind us, and I heard faintly the rattle of the wheels as the carriage drove away. + +"It was pitch dark inside the house, and the colonel fumbled about looking for matches and muttering under his breath. Suddenly a door opened at the other end of the passage, and a long, golden bar of light shot out in our direction. It grew broader, and a woman appeared with a lamp in her hand, which she held above her head, pushing her face forward and peering at us. I could see that she was pretty, and from the gloss with which the light shone upon her dark dress I knew that it was a rich material. She spoke a few words in a foreign tongue in a tone as though asking a question, and when my companion answered in a gruff monosyllable she gave such a start that the lamp nearly fell from her hand. Colonel Stark went up to her, whispered something in her ear, and then, pushing her back into the room from whence she had come, he walked towards me again with the lamp in his hand. + +" 'Perhaps you will have the kindness to wait in this room for a few minutes,' said he, throwing open another door. It was a quiet, little, plainly furnished room, with a round table in the centre, on which several German books were scattered. Colonel Stark laid down the lamp on the top of a harmonium beside the door. 'I shall not keep you waiting an instant,' said he, and vanished into the darkness. + +"I glanced at the books upon the table, and in spite of my ignorance of German I could see that two of them were treatises on science, the others being volumes of poetry. Then I walked across to the window, hoping that I might catch some glimpse of the country-side, but an oak shutter, heavily barred, was folded across it. It was a wonderfully silent house. There was an old clock ticking loudly somewhere in the passage, but otherwise everything was deadly still. A vague feeling of uneasiness began to steal over me. Who were these German people, and what were they doing living in this strange, out-of-the-way place? And where was the place? I was ten miles or so from Eyford, that was all I knew, but whether north, south, east, or west I had no idea. For that matter, Reading, and possibly other large towns, were within that radius, so the place might not be so secluded, after all. Yet it was quite certain, from the absolute stillness, that we were in the country. I paced up and down the room, humming a tune under my breath to keep up my spirits and feeling that I was thoroughly earning my fifty-guinea fee. + +"Suddenly, without any preliminary sound in the midst of the utter stillness, the door of my room swung slowly open. The woman was standing in the aperture, the darkness of the hall behind her, the yellow light from my lamp beating upon her eager and beautiful face. I could see at a glance that she was sick with fear, and the sight sent a chill to my own heart. She held up one shaking finger to warn me to be silent, and she shot a few whispered words of broken English at me, her eyes glancing back, like those of a frightened horse, into the gloom behind her. + +" 'I would go,' said she, trying hard, as it seemed to me, to speak calmly; 'I would go. I should not stay here. There is no good for you to do.' + +" 'But, madam,' said I, 'I have not yet done what I came for. I cannot possibly leave until I have seen the machine.' + +" 'It is not worth your while to wait,' she went on. 'You can pass through the door; no one hinders.' And then, seeing that I smiled and shook my head, she suddenly threw aside her constraint and made a step forward, with her hands wrung together. 'For the love of Heaven!' she whispered, 'get away from here before it is too late!' + +"But I am somewhat headstrong by nature, and the more ready to engage in an affair when there is some obstacle in the way. I thought of my fifty-guinea fee, of my wearisome journey, and of the unpleasant night which seemed to be before me. Was it all to go for nothing? Why should I slink away without having carried out my commission, and without the payment which was my due? This woman might, for all I knew, be a monomaniac. With a stout bearing, therefore, though her manner had shaken me more than I cared to confess, I still shook my head and declared my intention of remaining where I was. She was about to renew her entreaties when a door slammed overhead, and the sound of several footsteps was heard upon the stairs. She listened for an instant, threw up her hands with a despairing gesture, and vanished as suddenly and as noiselessly as she had come. + +"The newcomers were Colonel Lysander Stark and a short thick man with a chinchilla beard growing out of the creases of his double chin, who was introduced to me as Mr. Ferguson. + +" 'This is my secretary and manager,' said the colonel. 'By the way, I was under the impression that I left this door shut just now. I fear that you have felt the draught.' + +" 'On the contrary,' said I, 'I opened the door myself because I felt the room to be a little close.' + +"He shot one of his suspicious looks at me. 'Perhaps we had better proceed to business, then,' said he. 'Mr. Ferguson and I will take you up to see the machine.' + +" 'I had better put my hat on, I suppose.' + +" 'Oh, no, it is in the house.' + +" 'What, you dig fuller's-earth in the house?' + +" 'No, no. This is only where we compress it. But never mind that. All we wish you to do is to examine the machine and to let us know what is wrong with it.' + +"We went upstairs together, the colonel first with the lamp, the fat manager and I behind him. It was a labyrinth of an old house, with corridors, passages, narrow winding staircases, and little low doors, the thresholds of which were hollowed out by the generations who had crossed them. There were no carpets and no signs of any furniture above the ground floor, while the plaster was peeling off the walls, and the damp was breaking through in green, unhealthy blotches. I tried to put on as unconcerned an air as possible, but I had not forgotten the warnings of the lady, even though I disregarded them, and I kept a keen eye upon my two companions. Ferguson appeared to be a morose and silent man, but I could see from the little that he said that he was at least a fellow-countryman. + +"Colonel Lysander Stark stopped at last before a low door, which he unlocked. Within was a small, square room, in which the three of us could hardly get at one time. Ferguson remained outside, and the colonel ushered me in. + +" 'We are now,' said he, 'actually within the hydraulic press, and it would be a particularly unpleasant thing for us if anyone were to turn it on. The ceiling of this small chamber is really the end of the descending piston, and it comes down with the force of many tons upon this metal floor. There are small lateral columns of water outside which receive the force, and which transmit and multiply it in the manner which is familiar to you. The machine goes readily enough, but there is some stiffness in the working of it, and it has lost a little of its force. Perhaps you will have the goodness to look it over and to show us how we can set it right.' + +"I took the lamp from him, and I examined the machine very thoroughly. It was indeed a gigantic one, and capable of exercising enormous pressure. When I passed outside, however, and pressed down the levers which controlled it, I knew at once by the whishing sound that there was a slight leakage, which allowed a regurgitation of water through one of the side cylinders. An examination showed that one of the india-rubber bands which was round the head of a driving-rod had shrunk so as not quite to fill the socket along which it worked. This was clearly the cause of the loss of power, and I pointed it out to my companions, who followed my remarks very carefully and asked several practical questions as to how they should proceed to set it right. When I had made it clear to them, I returned to the main chamber of the machine and took a good look at it to satisfy my own curiosity. It was obvious at a glance that the story of the fuller's-earth was the merest fabrication, for it would be absurd to suppose that so powerful an engine could be designed for so inadequate a purpose. The walls were of wood, but the floor consisted of a large iron trough, and when I came to examine it I could see a crust of metallic deposit all over it. I had stooped and was scraping at this to see exactly what it was when I heard a muttered exclamation in German and saw the cadaverous face of the colonel looking down at me. + +" 'What are you doing there?' he asked. + +"I felt angry at having been tricked by so elaborate a story as that which he had told me. 'I was admiring your fuller's-earth,' said I; 'I think that I should be better able to advise you as to your machine if I knew what the exact purpose was for which it was used.' + +"The instant that I uttered the words I regretted the rashness of my speech. His face set hard, and a baleful light sprang up in his grey eyes. + +" 'Very well,' said he, 'you shall know all about the machine.' He took a step backward, slammed the little door, and turned the key in the lock. I rushed towards it and pulled at the handle, but it was quite secure, and did not give in the least to my kicks and shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' + +"And then suddenly in the silence I heard a sound which sent my heart into my mouth. It was the clank of the levers and the swish of the leaking cylinder. He had set the engine at work. The lamp still stood upon the floor where I had placed it when examining the trough. By its light I saw that the black ceiling was coming down upon me, slowly, jerkily, but, as none knew better than myself, with a force which must within a minute grind me to a shapeless pulp. I threw myself, screaming, against the door, and dragged with my nails at the lock. I implored the colonel to let me out, but the remorseless clanking of the levers drowned my cries. The ceiling was only a foot or two above my head, and with my hand upraised I could feel its hard, rough surface. Then it flashed through my mind that the pain of my death would depend very much upon the position in which I met it. If I lay on my face the weight would come upon my spine, and I shuddered to think of that dreadful snap. Easier the other way, perhaps; and yet, had I the nerve to lie and look up at that deadly black shadow wavering down upon me? Already I was unable to stand erect, when my eye caught something which brought a gush of hope back to my heart. + +"I have said that though the floor and ceiling were of iron, the walls were of wood. As I gave a last hurried glance around, I saw a thin line of yellow light between two of the boards, which broadened and broadened as a small panel was pushed backward. For an instant I could hardly believe that here was indeed a door which led away from death. The next instant I threw myself through, and lay half-fainting upon the other side. The panel had closed again behind me, but the crash of the lamp, and a few moments afterwards the clang of the two slabs of metal, told me how narrow had been my escape. + +"I was recalled to myself by a frantic plucking at my wrist, and I found myself lying upon the stone floor of a narrow corridor, while a woman bent over me and tugged at me with her left hand, while she held a candle in her right. It was the same good friend whose warning I had so foolishly rejected. + +" 'Come! come!' she cried breathlessly. 'They will be here in a moment. They will see that you are not there. Oh, do not waste the so-precious time, but come!' + +"This time, at least, I did not scorn her advice. I staggered to my feet and ran with her along the corridor and down a winding stair. The latter led to another broad passage, and just as we reached it we heard the sound of running feet and the shouting of two voices, one answering the other from the floor on which we were and from the one beneath. My guide stopped and looked about her like one who is at her wit's end. Then she threw open a door which led into a bedroom, through the window of which the moon was shining brightly. + +" 'It is your only chance,' said she. 'It is high, but it may be that you can jump it.' + +"As she spoke a light sprang into view at the further end of the passage, and I saw the lean figure of Colonel Lysander Stark rushing forward with a lantern in one hand and a weapon like a butcher's cleaver in the other. I rushed across the bedroom, flung open the window, and looked out. How quiet and sweet and wholesome the garden looked in the moonlight, and it could not be more than thirty feet down. I clambered out upon the sill, but I hesitated to jump until I should have heard what passed between my saviour and the ruffian who pursued me. If she were ill-used, then at any risks I was determined to go back to her assistance. The thought had hardly flashed through my mind before he was at the door, pushing his way past her; but she threw her arms round him and tried to hold him back. + +" 'Fritz! Fritz!' she cried in English, 'remember your promise after the last time. You said it should not be again. He will be silent! Oh, he will be silent!' + +" 'You are mad, Elise!' he shouted, struggling to break away from her. 'You will be the ruin of us. He has seen too much. Let me pass, I say!' He dashed her to one side, and, rushing to the window, cut at me with his heavy weapon. I had let myself go, and was hanging by the hands to the sill, when his blow fell. I was conscious of a dull pain, my grip loosened, and I fell into the garden below. + +"I was shaken but not hurt by the fall; so I picked myself up and rushed off among the bushes as hard as I could run, for I understood that I was far from being out of danger yet. Suddenly, however, as I ran, a deadly dizziness and sickness came over me. I glanced down at my hand, which was throbbing painfully, and then, for the first time, saw that my thumb had been cut off and that the blood was pouring from my wound. I endeavoured to tie my handkerchief round it, but there came a sudden buzzing in my ears, and next moment I fell in a dead faint among the rose-bushes. + +"How long I remained unconscious I cannot tell. It must have been a very long time, for the moon had sunk, and a bright morning was breaking when I came to myself. My clothes were all sodden with dew, and my coat-sleeve was drenched with blood from my wounded thumb. The smarting of it recalled in an instant all the particulars of my night's adventure, and I sprang to my feet with the feeling that I might hardly yet be safe from my pursuers. But to my astonishment, when I came to look round me, neither house nor garden were to be seen. I had been lying in an angle of the hedge close by the highroad, and just a little lower down was a long building, which proved, upon my approaching it, to be the very station at which I had arrived upon the previous night. Were it not for the ugly wound upon my hand, all that had passed during those dreadful hours might have been an evil dream. + +"Half dazed, I went into the station and asked about the morning train. There would be one to Reading in less than an hour. The same porter was on duty, I found, as had been there when I arrived. I inquired of him whether he had ever heard of Colonel Lysander Stark. The name was strange to him. Had he observed a carriage the night before waiting for me? No, he had not. Was there a police-station anywhere near? There was one about three miles off. + +"It was too far for me to go, weak and ill as I was. I determined to wait until I got back to town before telling my story to the police. It was a little past six when I arrived, so I went first to have my wound dressed, and then the doctor was kind enough to bring me along here. I put the case into your hands and shall do exactly what you advise." + +We both sat in silence for some little time after listening to this extraordinary narrative. Then Sherlock Holmes pulled down from the shelf one of the ponderous commonplace books in which he placed his cuttings. + +"Here is an advertisement which will interest you," said he. "It appeared in all the papers about a year ago. Listen to this: 'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged twenty-six, a hydraulic engineer. Left his lodgings at ten o'clock at night, and has not been heard of since. Was dressed in,' etc., etc. Ha! That represents the last time that the colonel needed to have his machine overhauled, I fancy." + +"Good heavens!" cried my patient. "Then that explains what the girl said." + +"Undoubtedly. It is quite clear that the colonel was a cool and desperate man, who was absolutely determined that nothing should stand in the way of his little game, like those out-and-out pirates who will leave no survivor from a captured ship. Well, every moment now is precious, so if you feel equal to it we shall go down to Scotland Yard at once as a preliminary to starting for Eyford." + +Some three hours or so afterwards we were all in the train together, bound from Reading to the little Berkshire village. There were Sherlock Holmes, the hydraulic engineer, Inspector Bradstreet, of Scotland Yard, a plain-clothes man, and myself. Bradstreet had spread an ordnance map of the county out upon the seat and was busy with his compasses drawing a circle with Eyford for its centre. + +"There you are," said he. "That circle is drawn at a radius of ten miles from the village. The place we want must be somewhere near that line. You said ten miles, I think, sir." + +"It was an hour's good drive." + +"And you think that they brought you back all that way when you were unconscious?" + +"They must have done so. I have a confused memory, too, of having been lifted and conveyed somewhere." + +"What I cannot understand," said I, "is why they should have spared you when they found you lying fainting in the garden. Perhaps the villain was softened by the woman's entreaties." + +"I hardly think that likely. I never saw a more inexorable face in my life." + +"Oh, we shall soon clear up all that," said Bradstreet. "Well, I have drawn my circle, and I only wish I knew at what point upon it the folk that we are in search of are to be found." + +"I think I could lay my finger on it," said Holmes quietly. + +"Really, now!" cried the inspector, "you have formed your opinion! Come, now, we shall see who agrees with you. I say it is south, for the country is more deserted there." + +"And I say east," said my patient. + +"I am for west," remarked the plain-clothes man. "There are several quiet little villages up there." + +"And I am for north," said I, "because there are no hills there, and our friend says that he did not notice the carriage go up any." + +"Come," cried the inspector, laughing; "it's a very pretty diversity of opinion. We have boxed the compass among us. Who do you give your casting vote to?" + +"You are all wrong." + +"But we can't all be." + +"Oh, yes, you can. This is my point." He placed his finger in the centre of the circle. "This is where we shall find them." + +"But the twelve-mile drive?" gasped Hatherley. + +"Six out and six back. Nothing simpler. You say yourself that the horse was fresh and glossy when you got in. How could it be that if it had gone twelve miles over heavy roads?" + +"Indeed, it is a likely ruse enough," observed Bradstreet thoughtfully. "Of course there can be no doubt as to the nature of this gang." + +"None at all," said Holmes. "They are coiners on a large scale, and have used the machine to form the amalgam which has taken the place of silver." + +"We have known for some time that a clever gang was at work," said the inspector. "They have been turning out half-crowns by the thousand. We even traced them as far as Reading, but could get no farther, for they had covered their traces in a way that showed that they were very old hands. But now, thanks to this lucky chance, I think that we have got them right enough." + +But the inspector was mistaken, for those criminals were not destined to fall into the hands of justice. As we rolled into Eyford Station we saw a gigantic column of smoke which streamed up from behind a small clump of trees in the neighbourhood and hung like an immense ostrich feather over the landscape. + +"A house on fire?" asked Bradstreet as the train steamed off again on its way. + +"Yes, sir!" said the station-master. + +"When did it break out?" + +"I hear that it was during the night, sir, but it has got worse, and the whole place is in a blaze." + +"Whose house is it?" + +"Dr. Becher's." + +"Tell me," broke in the engineer, "is Dr. Becher a German, very thin, with a long, sharp nose?" + +The station-master laughed heartily. "No, sir, Dr. Becher is an Englishman, and there isn't a man in the parish who has a better-lined waistcoat. But he has a gentleman staying with him, a patient, as I understand, who is a foreigner, and he looks as if a little good Berkshire beef would do him no harm." + +The station-master had not finished his speech before we were all hastening in the direction of the fire. The road topped a low hill, and there was a great widespread whitewashed building in front of us, spouting fire at every chink and window, while in the garden in front three fire-engines were vainly striving to keep the flames under. + +"That's it!" cried Hatherley, in intense excitement. "There is the gravel-drive, and there are the rose-bushes where I lay. That second window is the one that I jumped from." + +"Well, at least," said Holmes, "you have had your revenge upon them. There can be no question that it was your oil-lamp which, when it was crushed in the press, set fire to the wooden walls, though no doubt they were too excited in the chase after you to observe it at the time. Now keep your eyes open in this crowd for your friends of last night, though I very much fear that they are a good hundred miles off by now." + +And Holmes' fears came to be realised, for from that day to this no word has ever been heard either of the beautiful woman, the sinister German, or the morose Englishman. Early that morning a peasant had met a cart containing several people and some very bulky boxes driving rapidly in the direction of Reading, but there all traces of the fugitives disappeared, and even Holmes' ingenuity failed ever to discover the least clue as to their whereabouts. + +The firemen had been much perturbed at the strange arrangements which they had found within, and still more so by discovering a newly severed human thumb upon a window-sill of the second floor. About sunset, however, their efforts were at last successful, and they subdued the flames, but not before the roof had fallen in, and the whole place been reduced to such absolute ruin that, save some twisted cylinders and iron piping, not a trace remained of the machinery which had cost our unfortunate acquaintance so dearly. Large masses of nickel and of tin were discovered stored in an out-house, but no coins were to be found, which may have explained the presence of those bulky boxes which have been already referred to. + +How our hydraulic engineer had been conveyed from the garden to the spot where he recovered his senses might have remained forever a mystery were it not for the soft mould, which told us a very plain tale. He had evidently been carried down by two persons, one of whom had remarkably small feet and the other unusually large ones. On the whole, it was most probable that the silent Englishman, being less bold or less murderous than his companion, had assisted the woman to bear the unconscious man out of the way of danger. + +"Well," said our engineer ruefully as we took our seats to return once more to London, "it has been a pretty business for me! I have lost my thumb and I have lost a fifty-guinea fee, and what have I gained?" + +"Experience," said Holmes, laughing. "Indirectly it may be of value, you know; you have only to put it into words to gain the reputation of being excellent company for the remainder of your existence." + +X. THE ADVENTURE OF THE NOBLE BACHELOR + + +The Lord St. Simon marriage, and its curious termination, have long ceased to be a subject of interest in those exalted circles in which the unfortunate bridegroom moves. Fresh scandals have eclipsed it, and their more piquant details have drawn the gossips away from this four-year-old drama. As I have reason to believe, however, that the full facts have never been revealed to the general public, and as my friend Sherlock Holmes had a considerable share in clearing the matter up, I feel that no memoir of him would be complete without some little sketch of this remarkable episode. + +It was a few weeks before my own marriage, during the days when I was still sharing rooms with Holmes in Baker Street, that he came home from an afternoon stroll to find a letter on the table waiting for him. I had remained indoors all day, for the weather had taken a sudden turn to rain, with high autumnal winds, and the Jezail bullet which I had brought back in one of my limbs as a relic of my Afghan campaign throbbed with dull persistence. With my body in one easy-chair and my legs upon another, I had surrounded myself with a cloud of newspapers until at last, saturated with the news of the day, I tossed them all aside and lay listless, watching the huge crest and monogram upon the envelope upon the table and wondering lazily who my friend's noble correspondent could be. + +"Here is a very fashionable epistle," I remarked as he entered. "Your morning letters, if I remember right, were from a fish-monger and a tide-waiter." + +"Yes, my correspondence has certainly the charm of variety," he answered, smiling, "and the humbler are usually the more interesting. This looks like one of those unwelcome social summonses which call upon a man either to be bored or to lie." + +He broke the seal and glanced over the contents. + +"Oh, come, it may prove to be something of interest, after all." + +"Not social, then?" + +"No, distinctly professional." + +"And from a noble client?" + +"One of the highest in England." + +"My dear fellow, I congratulate you." + +"I assure you, Watson, without affectation, that the status of my client is a matter of less moment to me than the interest of his case. It is just possible, however, that that also may not be wanting in this new investigation. You have been reading the papers diligently of late, have you not?" + +"It looks like it," said I ruefully, pointing to a huge bundle in the corner. "I have had nothing else to do." + +"It is fortunate, for you will perhaps be able to post me up. I read nothing except the criminal news and the agony column. The latter is always instructive. But if you have followed recent events so closely you must have read about Lord St. Simon and his wedding?" + +"Oh, yes, with the deepest interest." + +"That is well. The letter which I hold in my hand is from Lord St. Simon. I will read it to you, and in return you must turn over these papers and let me have whatever bears upon the matter. This is what he says: + +" 'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I may place implicit reliance upon your judgment and discretion. I have determined, therefore, to call upon you and to consult you in reference to the very painful event which has occurred in connection with my wedding. Mr. Lestrade, of Scotland Yard, is acting already in the matter, but he assures me that he sees no objection to your co-operation, and that he even thinks that it might be of some assistance. I will call at four o'clock in the afternoon, and, should you have any other engagement at that time, I hope that you will postpone it, as this matter is of paramount importance. Yours faithfully, + + +" 'ST. SIMON.' + +"It is dated from Grosvenor Mansions, written with a quill pen, and the noble lord has had the misfortune to get a smear of ink upon the outer side of his right little finger," remarked Holmes as he folded up the epistle. + +"He says four o'clock. It is three now. He will be here in an hour." + +"Then I have just time, with your assistance, to get clear upon the subject. Turn over those papers and arrange the extracts in their order of time, while I take a glance as to who our client is." He picked a red-covered volume from a line of books of reference beside the mantelpiece. "Here he is," said he, sitting down and flattening it out upon his knee. " 'Lord Robert Walsingham de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: Azure, three caltrops in chief over a fess sable. Born in 1846.' He's forty-one years of age, which is mature for marriage. Was Under-Secretary for the colonies in a late administration. The Duke, his father, was at one time Secretary for Foreign Affairs. They inherit Plantagenet blood by direct descent, and Tudor on the distaff side. Ha! Well, there is nothing very instructive in all this. I think that I must turn to you Watson, for something more solid." + +"I have very little difficulty in finding what I want," said I, "for the facts are quite recent, and the matter struck me as remarkable. I feared to refer them to you, however, as I knew that you had an inquiry on hand and that you disliked the intrusion of other matters." + +"Oh, you mean the little problem of the Grosvenor Square furniture van. That is quite cleared up now--though, indeed, it was obvious from the first. Pray give me the results of your newspaper selections." + +"Here is the first notice which I can find. It is in the personal column of the Morning Post, and dates, as you see, some weeks back: 'A marriage has been arranged,' it says, 'and will, if rumour is correct, very shortly take place, between Lord Robert St. Simon, second son of the Duke of Balmoral, and Miss Hatty Doran, the only daughter of Aloysius Doran. Esq., of San Francisco, Cal., U.S.A.' That is all." + +"Terse and to the point," remarked Holmes, stretching his long, thin legs towards the fire. + +"There was a paragraph amplifying this in one of the society papers of the same week. Ah, here it is: 'There will soon be a call for protection in the marriage market, for the present free-trade principle appears to tell heavily against our home product. One by one the management of the noble houses of Great Britain is passing into the hands of our fair cousins from across the Atlantic. An important addition has been made during the last week to the list of the prizes which have been borne away by these charming invaders. Lord St. Simon, who has shown himself for over twenty years proof against the little god's arrows, has now definitely announced his approaching marriage with Miss Hatty Doran, the fascinating daughter of a California millionaire. Miss Doran, whose graceful figure and striking face attracted much attention at the Westbury House festivities, is an only child, and it is currently reported that her dowry will run to considerably over the six figures, with expectancies for the future. As it is an open secret that the Duke of Balmoral has been compelled to sell his pictures within the last few years, and as Lord St. Simon has no property of his own save the small estate of Birchmoor, it is obvious that the Californian heiress is not the only gainer by an alliance which will enable her to make the easy and common transition from a Republican lady to a British peeress.' " + +"Anything else?" asked Holmes, yawning. + +"Oh, yes; plenty. Then there is another note in the Morning Post to say that the marriage would be an absolutely quiet one, that it would be at St. George's, Hanover Square, that only half a dozen intimate friends would be invited, and that the party would return to the furnished house at Lancaster Gate which has been taken by Mr. Aloysius Doran. Two days later--that is, on Wednesday last--there is a curt announcement that the wedding had taken place, and that the honeymoon would be passed at Lord Backwater's place, near Petersfield. Those are all the notices which appeared before the disappearance of the bride." + +"Before the what?" asked Holmes with a start. + +"The vanishing of the lady." + +"When did she vanish, then?" + +"At the wedding breakfast." + +"Indeed. This is more interesting than it promised to be; quite dramatic, in fact." + +"Yes; it struck me as being a little out of the common." + +"They often vanish before the ceremony, and occasionally during the honeymoon; but I cannot call to mind anything quite so prompt as this. Pray let me have the details." + +"I warn you that they are very incomplete." + +"Perhaps we may make them less so." + +"Such as they are, they are set forth in a single article of a morning paper of yesterday, which I will read to you. It is headed, 'Singular Occurrence at a Fashionable Wedding': + +" 'The family of Lord Robert St. Simon has been thrown into the greatest consternation by the strange and painful episodes which have taken place in connection with his wedding. The ceremony, as shortly announced in the papers of yesterday, occurred on the previous morning; but it is only now that it has been possible to confirm the strange rumours which have been so persistently floating about. In spite of the attempts of the friends to hush the matter up, so much public attention has now been drawn to it that no good purpose can be served by affecting to disregard what is a common subject for conversation. + +" 'The ceremony, which was performed at St. George's, Hanover Square, was a very quiet one, no one being present save the father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, Lord Backwater, Lord Eustace and Lady Clara St. Simon (the younger brother and sister of the bridegroom), and Lady Alicia Whittington. The whole party proceeded afterwards to the house of Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been prepared. It appears that some little trouble was caused by a woman, whose name has not been ascertained, who endeavoured to force her way into the house after the bridal party, alleging that she had some claim upon Lord St. Simon. It was only after a painful and prolonged scene that she was ejected by the butler and the footman. The bride, who had fortunately entered the house before this unpleasant interruption, had sat down to breakfast with the rest, when she complained of a sudden indisposition and retired to her room. Her prolonged absence having caused some comment, her father followed her, but learned from her maid that she had only come up to her chamber for an instant, caught up an ulster and bonnet, and hurried down to the passage. One of the footmen declared that he had seen a lady leave the house thus apparelled, but had refused to credit that it was his mistress, believing her to be with the company. On ascertaining that his daughter had disappeared, Mr. Aloysius Doran, in conjunction with the bridegroom, instantly put themselves in communication with the police, and very energetic inquiries are being made, which will probably result in a speedy clearing up of this very singular business. Up to a late hour last night, however, nothing had transpired as to the whereabouts of the missing lady. There are rumours of foul play in the matter, and it is said that the police have caused the arrest of the woman who had caused the original disturbance, in the belief that, from jealousy or some other motive, she may have been concerned in the strange disappearance of the bride.' " + +"And is that all?" + +"Only one little item in another of the morning papers, but it is a suggestive one." + +"And it is--" + +"That Miss Flora Millar, the lady who had caused the disturbance, has actually been arrested. It appears that she was formerly a danseuse at the Allegro, and that she has known the bridegroom for some years. There are no further particulars, and the whole case is in your hands now--so far as it has been set forth in the public press." + +"And an exceedingly interesting case it appears to be. I would not have missed it for worlds. But there is a ring at the bell, Watson, and as the clock makes it a few minutes after four, I have no doubt that this will prove to be our noble client. Do not dream of going, Watson, for I very much prefer having a witness, if only as a check to my own memory." + +"Lord Robert St. Simon," announced our page-boy, throwing open the door. A gentleman entered, with a pleasant, cultured face, high-nosed and pale, with something perhaps of petulance about the mouth, and with the steady, well-opened eye of a man whose pleasant lot it had ever been to command and to be obeyed. His manner was brisk, and yet his general appearance gave an undue impression of age, for he had a slight forward stoop and a little bend of the knees as he walked. His hair, too, as he swept off his very curly-brimmed hat, was grizzled round the edges and thin upon the top. As to his dress, it was careful to the verge of foppishness, with high collar, black frock-coat, white waistcoat, yellow gloves, patent-leather shoes, and light-coloured gaiters. He advanced slowly into the room, turning his head from left to right, and swinging in his right hand the cord which held his golden eyeglasses. + +"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray take the basket-chair. This is my friend and colleague, Dr. Watson. Draw up a little to the fire, and we will talk this matter over." + +"A most painful matter to me, as you can most readily imagine, Mr. Holmes. I have been cut to the quick. I understand that you have already managed several delicate cases of this sort, sir, though I presume that they were hardly from the same class of society." + +"No, I am descending." + +"I beg pardon." + +"My last client of the sort was a king." + +"Oh, really! I had no idea. And which king?" + +"The King of Scandinavia." + +"What! Had he lost his wife?" + +"You can understand," said Holmes suavely, "that I extend to the affairs of my other clients the same secrecy which I promise to you in yours." + +"Of course! Very right! very right! I'm sure I beg pardon. As to my own case, I am ready to give you any information which may assist you in forming an opinion." + +"Thank you. I have already learned all that is in the public prints, nothing more. I presume that I may take it as correct--this article, for example, as to the disappearance of the bride." + +Lord St. Simon glanced over it. "Yes, it is correct, as far as it goes." + +"But it needs a great deal of supplementing before anyone could offer an opinion. I think that I may arrive at my facts most directly by questioning you." + +"Pray do so." + +"When did you first meet Miss Hatty Doran?" + +"In San Francisco, a year ago." + +"You were travelling in the States?" + +"Yes." + +"Did you become engaged then?" + +"No." + +"But you were on a friendly footing?" + +"I was amused by her society, and she could see that I was amused." + +"Her father is very rich?" + +"He is said to be the richest man on the Pacific slope." + +"And how did he make his money?" + +"In mining. He had nothing a few years ago. Then he struck gold, invested it, and came up by leaps and bounds." + +"Now, what is your own impression as to the young lady's--your wife's character?" + +The nobleman swung his glasses a little faster and stared down into the fire. "You see, Mr. Holmes," said he, "my wife was twenty before her father became a rich man. During that time she ran free in a mining camp and wandered through woods or mountains, so that her education has come from Nature rather than from the schoolmaster. She is what we call in England a tomboy, with a strong nature, wild and free, unfettered by any sort of traditions. She is impetuous--volcanic, I was about to say. She is swift in making up her mind and fearless in carrying out her resolutions. On the other hand, I would not have given her the name which I have the honour to bear"--he gave a little stately cough--"had I not thought her to be at bottom a noble woman. I believe that she is capable of heroic self-sacrifice and that anything dishonourable would be repugnant to her." + +"Have you her photograph?" + +"I brought this with me." He opened a locket and showed us the full face of a very lovely woman. It was not a photograph but an ivory miniature, and the artist had brought out the full effect of the lustrous black hair, the large dark eyes, and the exquisite mouth. Holmes gazed long and earnestly at it. Then he closed the locket and handed it back to Lord St. Simon. + +"The young lady came to London, then, and you renewed your acquaintance?" + +"Yes, her father brought her over for this last London season. I met her several times, became engaged to her, and have now married her." + +"She brought, I understand, a considerable dowry?" + +"A fair dowry. Not more than is usual in my family." + +"And this, of course, remains to you, since the marriage is a fait accompli?" + +"I really have made no inquiries on the subject." + +"Very naturally not. Did you see Miss Doran on the day before the wedding?" + +"Yes." + +"Was she in good spirits?" + +"Never better. She kept talking of what we should do in our future lives." + +"Indeed! That is very interesting. And on the morning of the wedding?" + +"She was as bright as possible--at least until after the ceremony." + +"And did you observe any change in her then?" + +"Well, to tell the truth, I saw then the first signs that I had ever seen that her temper was just a little sharp. The incident however, was too trivial to relate and can have no possible bearing upon the case." + +"Pray let us have it, for all that." + +"Oh, it is childish. She dropped her bouquet as we went towards the vestry. She was passing the front pew at the time, and it fell over into the pew. There was a moment's delay, but the gentleman in the pew handed it up to her again, and it did not appear to be the worse for the fall. Yet when I spoke to her of the matter, she answered me abruptly; and in the carriage, on our way home, she seemed absurdly agitated over this trifling cause." + +"Indeed! You say that there was a gentleman in the pew. Some of the general public were present, then?" + +"Oh, yes. It is impossible to exclude them when the church is open." + +"This gentleman was not one of your wife's friends?" + +"No, no; I call him a gentleman by courtesy, but he was quite a common-looking person. I hardly noticed his appearance. But really I think that we are wandering rather far from the point." + +"Lady St. Simon, then, returned from the wedding in a less cheerful frame of mind than she had gone to it. What did she do on re-entering her father's house?" + +"I saw her in conversation with her maid." + +"And who is her maid?" + +"Alice is her name. She is an American and came from California with her." + +"A confidential servant?" + +"A little too much so. It seemed to me that her mistress allowed her to take great liberties. Still, of course, in America they look upon these things in a different way." + +"How long did she speak to this Alice?" + +"Oh, a few minutes. I had something else to think of." + +"You did not overhear what they said?" + +"Lady St. Simon said something about 'jumping a claim.' She was accustomed to use slang of the kind. I have no idea what she meant." + +"American slang is very expressive sometimes. And what did your wife do when she finished speaking to her maid?" + +"She walked into the breakfast-room." + +"On your arm?" + +"No, alone. She was very independent in little matters like that. Then, after we had sat down for ten minutes or so, she rose hurriedly, muttered some words of apology, and left the room. She never came back." + +"But this maid, Alice, as I understand, deposes that she went to her room, covered her bride's dress with a long ulster, put on a bonnet, and went out." + +"Quite so. And she was afterwards seen walking into Hyde Park in company with Flora Millar, a woman who is now in custody, and who had already made a disturbance at Mr. Doran's house that morning." + +"Ah, yes. I should like a few particulars as to this young lady, and your relations to her." + +Lord St. Simon shrugged his shoulders and raised his eyebrows. "We have been on a friendly footing for some years--I may say on a very friendly footing. She used to be at the Allegro. I have not treated her ungenerously, and she had no just cause of complaint against me, but you know what women are, Mr. Holmes. Flora was a dear little thing, but exceedingly hot-headed and devotedly attached to me. She wrote me dreadful letters when she heard that I was about to be married, and, to tell the truth, the reason why I had the marriage celebrated so quietly was that I feared lest there might be a scandal in the church. She came to Mr. Doran's door just after we returned, and she endeavoured to push her way in, uttering very abusive expressions towards my wife, and even threatening her, but I had foreseen the possibility of something of the sort, and I had two police fellows there in private clothes, who soon pushed her out again. She was quiet when she saw that there was no good in making a row." + +"Did your wife hear all this?" + +"No, thank goodness, she did not." + +"And she was seen walking with this very woman afterwards?" + +"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as so serious. It is thought that Flora decoyed my wife out and laid some terrible trap for her." + +"Well, it is a possible supposition." + +"You think so, too?" + +"I did not say a probable one. But you do not yourself look upon this as likely?" + +"I do not think Flora would hurt a fly." + +"Still, jealousy is a strange transformer of characters. Pray what is your own theory as to what took place?" + +"Well, really, I came to seek a theory, not to propound one. I have given you all the facts. Since you ask me, however, I may say that it has occurred to me as possible that the excitement of this affair, the consciousness that she had made so immense a social stride, had the effect of causing some little nervous disturbance in my wife." + +"In short, that she had become suddenly deranged?" + +"Well, really, when I consider that she has turned her back--I will not say upon me, but upon so much that many have aspired to without success--I can hardly explain it in any other fashion." + +"Well, certainly that is also a conceivable hypothesis," said Holmes, smiling. "And now, Lord St. Simon, I think that I have nearly all my data. May I ask whether you were seated at the breakfast-table so that you could see out of the window?" + +"We could see the other side of the road and the Park." + +"Quite so. Then I do not think that I need to detain you longer. I shall communicate with you." + +"Should you be fortunate enough to solve this problem," said our client, rising. + +"I have solved it." + +"Eh? What was that?" + +"I say that I have solved it." + +"Where, then, is my wife?" + +"That is a detail which I shall speedily supply." + +Lord St. Simon shook his head. "I am afraid that it will take wiser heads than yours or mine," he remarked, and bowing in a stately, old-fashioned manner he departed. + +"It is very good of Lord St. Simon to honour my head by putting it on a level with his own," said Sherlock Holmes, laughing. "I think that I shall have a whisky and soda and a cigar after all this cross-questioning. I had formed my conclusions as to the case before our client came into the room." + +"My dear Holmes!" + +"I have notes of several similar cases, though none, as I remarked before, which were quite as prompt. My whole examination served to turn my conjecture into a certainty. Circumstantial evidence is occasionally very convincing, as when you find a trout in the milk, to quote Thoreau's example." + +"But I have heard all that you have heard." + +"Without, however, the knowledge of pre-existing cases which serves me so well. There was a parallel instance in Aberdeen some years back, and something on very much the same lines at Munich the year after the Franco-Prussian War. It is one of these cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! You will find an extra tumbler upon the sideboard, and there are cigars in the box." + +The official detective was attired in a pea-jacket and cravat, which gave him a decidedly nautical appearance, and he carried a black canvas bag in his hand. With a short greeting he seated himself and lit the cigar which had been offered to him. + +"What's up, then?" asked Holmes with a twinkle in his eye. "You look dissatisfied." + +"And I feel dissatisfied. It is this infernal St. Simon marriage case. I can make neither head nor tail of the business." + +"Really! You surprise me." + +"Who ever heard of such a mixed affair? Every clue seems to slip through my fingers. I have been at work upon it all day." + +"And very wet it seems to have made you," said Holmes laying his hand upon the arm of the pea-jacket. + +"Yes, I have been dragging the Serpentine." + +"In heaven's name, what for?" + +"In search of the body of Lady St. Simon." + +Sherlock Holmes leaned back in his chair and laughed heartily. + +"Have you dragged the basin of Trafalgar Square fountain?" he asked. + +"Why? What do you mean?" + +"Because you have just as good a chance of finding this lady in the one as in the other." + +Lestrade shot an angry glance at my companion. "I suppose you know all about it," he snarled. + +"Well, I have only just heard the facts, but my mind is made up." + +"Oh, indeed! Then you think that the Serpentine plays no part in the matter?" + +"I think it very unlikely." + +"Then perhaps you will kindly explain how it is that we found this in it?" He opened his bag as he spoke, and tumbled onto the floor a wedding-dress of watered silk, a pair of white satin shoes and a bride's wreath and veil, all discoloured and soaked in water. "There," said he, putting a new wedding-ring upon the top of the pile. "There is a little nut for you to crack, Master Holmes." + +"Oh, indeed!" said my friend, blowing blue rings into the air. "You dragged them from the Serpentine?" + +"No. They were found floating near the margin by a park-keeper. They have been identified as her clothes, and it seemed to me that if the clothes were there the body would not be far off." + +"By the same brilliant reasoning, every man's body is to be found in the neighbourhood of his wardrobe. And pray what did you hope to arrive at through this?" + +"At some evidence implicating Flora Millar in the disappearance." + +"I am afraid that you will find it difficult." + +"Are you, indeed, now?" cried Lestrade with some bitterness. "I am afraid, Holmes, that you are not very practical with your deductions and your inferences. You have made two blunders in as many minutes. This dress does implicate Miss Flora Millar." + +"And how?" + +"In the dress is a pocket. In the pocket is a card-case. In the card-case is a note. And here is the very note." He slapped it down upon the table in front of him. "Listen to this: 'You will see me when all is ready. Come at once. F. H. M.' Now my theory all along has been that Lady St. Simon was decoyed away by Flora Millar, and that she, with confederates, no doubt, was responsible for her disappearance. Here, signed with her initials, is the very note which was no doubt quietly slipped into her hand at the door and which lured her within their reach." + +"Very good, Lestrade," said Holmes, laughing. "You really are very fine indeed. Let me see it." He took up the paper in a listless way, but his attention instantly became riveted, and he gave a little cry of satisfaction. "This is indeed important," said he. + +"Ha! you find it so?" + +"Extremely so. I congratulate you warmly." + +Lestrade rose in his triumph and bent his head to look. "Why," he shrieked, "you're looking at the wrong side!" + +"On the contrary, this is the right side." + +"The right side? You're mad! Here is the note written in pencil over here." + +"And over here is what appears to be the fragment of a hotel bill, which interests me deeply." + +"There's nothing in it. I looked at it before," said Lestrade. " 'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. 6d., glass sherry, 8d.' I see nothing in that." + +"Very likely not. It is most important, all the same. As to the note, it is important also, or at least the initials are, so I congratulate you again." + +"I've wasted time enough," said Lestrade, rising. "I believe in hard work and not in sitting by the fire spinning fine theories. Good-day, Mr. Holmes, and we shall see which gets to the bottom of the matter first." He gathered up the garments, thrust them into the bag, and made for the door. + +"Just one hint to you, Lestrade," drawled Holmes before his rival vanished; "I will tell you the true solution of the matter. Lady St. Simon is a myth. There is not, and there never has been, any such person." + +Lestrade looked sadly at my companion. Then he turned to me, tapped his forehead three times, shook his head solemnly, and hurried away. + +He had hardly shut the door behind him when Holmes rose to put on his overcoat. "There is something in what the fellow says about outdoor work," he remarked, "so I think, Watson, that I must leave you to your papers for a little." + +It was after five o'clock when Sherlock Holmes left me, but I had no time to be lonely, for within an hour there arrived a confectioner's man with a very large flat box. This he unpacked with the help of a youth whom he had brought with him, and presently, to my very great astonishment, a quite epicurean little cold supper began to be laid out upon our humble lodging-house mahogany. There were a couple of brace of cold woodcock, a pheasant, a pate de foie gras pie with a group of ancient and cobwebby bottles. Having laid out all these luxuries, my two visitors vanished away, like the genii of the Arabian Nights, with no explanation save that the things had been paid for and were ordered to this address. + +Just before nine o'clock Sherlock Holmes stepped briskly into the room. His features were gravely set, but there was a light in his eye which made me think that he had not been disappointed in his conclusions. + +"They have laid the supper, then," he said, rubbing his hands. + +"You seem to expect company. They have laid for five." + +"Yes, I fancy we may have some company dropping in," said he. "I am surprised that Lord St. Simon has not already arrived. Ha! I fancy that I hear his step now upon the stairs." + +It was indeed our visitor of the afternoon who came bustling in, dangling his glasses more vigorously than ever, and with a very perturbed expression upon his aristocratic features. + +"My messenger reached you, then?" asked Holmes. + +"Yes, and I confess that the contents startled me beyond measure. Have you good authority for what you say?" + +"The best possible." + +Lord St. Simon sank into a chair and passed his hand over his forehead. + +"What will the Duke say," he murmured, "when he hears that one of the family has been subjected to such humiliation?" + +"It is the purest accident. I cannot allow that there is any humiliation." + +"Ah, you look on these things from another standpoint." + +"I fail to see that anyone is to blame. I can hardly see how the lady could have acted otherwise, though her abrupt method of doing it was undoubtedly to be regretted. Having no mother, she had no one to advise her at such a crisis." + +"It was a slight, sir, a public slight," said Lord St. Simon, tapping his fingers upon the table. + +"You must make allowance for this poor girl, placed in so unprecedented a position." + +"I will make no allowance. I am very angry indeed, and I have been shamefully used." + +"I think that I heard a ring," said Holmes. "Yes, there are steps on the landing. If I cannot persuade you to take a lenient view of the matter, Lord St. Simon, I have brought an advocate here who may be more successful." He opened the door and ushered in a lady and gentleman. "Lord St. Simon," said he "allow me to introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I think, you have already met." + +At the sight of these newcomers our client had sprung from his seat and stood very erect, with his eyes cast down and his hand thrust into the breast of his frock-coat, a picture of offended dignity. The lady had taken a quick step forward and had held out her hand to him, but he still refused to raise his eyes. It was as well for his resolution, perhaps, for her pleading face was one which it was hard to resist. + +"You're angry, Robert," said she. "Well, I guess you have every cause to be." + +"Pray make no apology to me," said Lord St. Simon bitterly. + +"Oh, yes, I know that I have treated you real bad and that I should have spoken to you before I went; but I was kind of rattled, and from the time when I saw Frank here again I just didn't know what I was doing or saying. I only wonder I didn't fall down and do a faint right there before the altar." + +"Perhaps, Mrs. Moulton, you would like my friend and me to leave the room while you explain this matter?" + +"If I may give an opinion," remarked the strange gentleman, "we've had just a little too much secrecy over this business already. For my part, I should like all Europe and America to hear the rights of it." He was a small, wiry, sunburnt man, clean-shaven, with a sharp face and alert manner. + +"Then I'll tell our story right away," said the lady. "Frank here and I met in '84, in McQuire's camp, near the Rockies, where Pa was working a claim. We were engaged to each other, Frank and I; but then one day father struck a rich pocket and made a pile, while poor Frank here had a claim that petered out and came to nothing. The richer Pa grew the poorer was Frank; so at last Pa wouldn't hear of our engagement lasting any longer, and he took me away to 'Frisco. Frank wouldn't throw up his hand, though; so he followed me there, and he saw me without Pa knowing anything about it. It would only have made him mad to know, so we just fixed it all up for ourselves. Frank said that he would go and make his pile, too, and never come back to claim me until he had as much as Pa. So then I promised to wait for him to the end of time and pledged myself not to marry anyone else while he lived. 'Why shouldn't we be married right away, then,' said he, 'and then I will feel sure of you; and I won't claim to be your husband until I come back?' Well, we talked it over, and he had fixed it all up so nicely, with a clergyman all ready in waiting, that we just did it right there; and then Frank went off to seek his fortune, and I went back to Pa. + +"The next I heard of Frank was that he was in Montana, and then he went prospecting in Arizona, and then I heard of him from New Mexico. After that came a long newspaper story about how a miners' camp had been attacked by Apache Indians, and there was my Frank's name among the killed. I fainted dead away, and I was very sick for months after. Pa thought I had a decline and took me to half the doctors in 'Frisco. Not a word of news came for a year and more, so that I never doubted that Frank was really dead. Then Lord St. Simon came to 'Frisco, and we came to London, and a marriage was arranged, and Pa was very pleased, but I felt all the time that no man on this earth would ever take the place in my heart that had been given to my poor Frank. + +"Still, if I had married Lord St. Simon, of course I'd have done my duty by him. We can't command our love, but we can our actions. I went to the altar with him with the intention to make him just as good a wife as it was in me to be. But you may imagine what I felt when, just as I came to the altar rails, I glanced back and saw Frank standing and looking at me out of the first pew. I thought it was his ghost at first; but when I looked again there he was still, with a kind of question in his eyes, as if to ask me whether I were glad or sorry to see him. I wonder I didn't drop. I know that everything was turning round, and the words of the clergyman were just like the buzz of a bee in my ear. I didn't know what to do. Should I stop the service and make a scene in the church? I glanced at him again, and he seemed to know what I was thinking, for he raised his finger to his lips to tell me to be still. Then I saw him scribble on a piece of paper, and I knew that he was writing me a note. As I passed his pew on the way out I dropped my bouquet over to him, and he slipped the note into my hand when he returned me the flowers. It was only a line asking me to join him when he made the sign to me to do so. Of course I never doubted for a moment that my first duty was now to him, and I determined to do just whatever he might direct. + +"When I got back I told my maid, who had known him in California, and had always been his friend. I ordered her to say nothing, but to get a few things packed and my ulster ready. I know I ought to have spoken to Lord St. Simon, but it was dreadful hard before his mother and all those great people. I just made up my mind to run away and explain afterwards. I hadn't been at the table ten minutes before I saw Frank out of the window at the other side of the road. He beckoned to me and then began walking into the Park. I slipped out, put on my things, and followed him. Some woman came talking something or other about Lord St. Simon to me--seemed to me from the little I heard as if he had a little secret of his own before marriage also--but I managed to get away from her and soon overtook Frank. We got into a cab together, and away we drove to some lodgings he had taken in Gordon Square, and that was my true wedding after all those years of waiting. Frank had been a prisoner among the Apaches, had escaped, came on to 'Frisco, found that I had given him up for dead and had gone to England, followed me there, and had come upon me at last on the very morning of my second wedding." + +"I saw it in a paper," explained the American. "It gave the name and the church but not where the lady lived." + +"Then we had a talk as to what we should do, and Frank was all for openness, but I was so ashamed of it all that I felt as if I should like to vanish away and never see any of them again--just sending a line to Pa, perhaps, to show him that I was alive. It was awful to me to think of all those lords and ladies sitting round that breakfast-table and waiting for me to come back. So Frank took my wedding-clothes and things and made a bundle of them, so that I should not be traced, and dropped them away somewhere where no one could find them. It is likely that we should have gone on to Paris to-morrow, only that this good gentleman, Mr. Holmes, came round to us this evening, though how he found us is more than I can think, and he showed us very clearly and kindly that I was wrong and that Frank was right, and that we should be putting ourselves in the wrong if we were so secret. Then he offered to give us a chance of talking to Lord St. Simon alone, and so we came right away round to his rooms at once. Now, Robert, you have heard it all, and I am very sorry if I have given you pain, and I hope that you do not think very meanly of me." + +Lord St. Simon had by no means relaxed his rigid attitude, but had listened with a frowning brow and a compressed lip to this long narrative. + +"Excuse me," he said, "but it is not my custom to discuss my most intimate personal affairs in this public manner." + +"Then you won't forgive me? You won't shake hands before I go?" + +"Oh, certainly, if it would give you any pleasure." He put out his hand and coldly grasped that which she extended to him. + +"I had hoped," suggested Holmes, "that you would have joined us in a friendly supper." + +"I think that there you ask a little too much," responded his Lordship. "I may be forced to acquiesce in these recent developments, but I can hardly be expected to make merry over them. I think that with your permission I will now wish you all a very good-night." He included us all in a sweeping bow and stalked out of the room. + +"Then I trust that you at least will honour me with your company," said Sherlock Holmes. "It is always a joy to meet an American, Mr. Moulton, for I am one of those who believe that the folly of a monarch and the blundering of a minister in far-gone years will not prevent our children from being some day citizens of the same world-wide country under a flag which shall be a quartering of the Union Jack with the Stars and Stripes." + +"The case has been an interesting one," remarked Holmes when our visitors had left us, "because it serves to show very clearly how simple the explanation may be of an affair which at first sight seems to be almost inexplicable. Nothing could be more natural than the sequence of events as narrated by this lady, and nothing stranger than the result when viewed, for instance, by Mr. Lestrade of Scotland Yard." + +"You were not yourself at fault at all, then?" + +"From the first, two facts were very obvious to me, the one that the lady had been quite willing to undergo the wedding ceremony, the other that she had repented of it within a few minutes of returning home. Obviously something had occurred during the morning, then, to cause her to change her mind. What could that something be? She could not have spoken to anyone when she was out, for she had been in the company of the bridegroom. Had she seen someone, then? If she had, it must be someone from America because she had spent so short a time in this country that she could hardly have allowed anyone to acquire so deep an influence over her that the mere sight of him would induce her to change her plans so completely. You see we have already arrived, by a process of exclusion, at the idea that she might have seen an American. Then who could this American be, and why should he possess so much influence over her? It might be a lover; it might be a husband. Her young womanhood had, I knew, been spent in rough scenes and under strange conditions. So far I had got before I ever heard Lord St. Simon's narrative. When he told us of a man in a pew, of the change in the bride's manner, of so transparent a device for obtaining a note as the dropping of a bouquet, of her resort to her confidential maid, and of her very significant allusion to claim-jumping--which in miners' parlance means taking possession of that which another person has a prior claim to--the whole situation became absolutely clear. She had gone off with a man, and the man was either a lover or was a previous husband--the chances being in favour of the latter." + +"And how in the world did you find them?" + +"It might have been difficult, but friend Lestrade held information in his hands the value of which he did not himself know. The initials were, of course, of the highest importance, but more valuable still was it to know that within a week he had settled his bill at one of the most select London hotels." + +"How did you deduce the select?" + +"By the select prices. Eight shillings for a bed and eightpence for a glass of sherry pointed to one of the most expensive hotels. There are not many in London which charge at that rate. In the second one which I visited in Northumberland Avenue, I learned by an inspection of the book that Francis H. Moulton, an American gentleman, had left only the day before, and on looking over the entries against him, I came upon the very items which I had seen in the duplicate bill. His letters were to be forwarded to 226 Gordon Square; so thither I travelled, and being fortunate enough to find the loving couple at home, I ventured to give them some paternal advice and to point out to them that it would be better in every way that they should make their position a little clearer both to the general public and to Lord St. Simon in particular. I invited them to meet him here, and, as you see, I made him keep the appointment." + +"But with no very good result," I remarked. "His conduct was certainly not very gracious." + +"Ah, Watson," said Holmes, smiling, "perhaps you would not be very gracious either, if, after all the trouble of wooing and wedding, you found yourself deprived in an instant of wife and of fortune. I think that we may judge Lord St. Simon very mercifully and thank our stars that we are never likely to find ourselves in the same position. Draw your chair up and hand me my violin, for the only problem we have still to solve is how to while away these bleak autumnal evenings." + +XI. THE ADVENTURE OF THE BERYL CORONET + + +"Holmes," said I as I stood one morning in our bow-window looking down the street, "here is a madman coming along. It seems rather sad that his relatives should allow him to come out alone." + +My friend rose lazily from his armchair and stood with his hands in the pockets of his dressing-gown, looking over my shoulder. It was a bright, crisp February morning, and the snow of the day before still lay deep upon the ground, shimmering brightly in the wintry sun. Down the centre of Baker Street it had been ploughed into a brown crumbly band by the traffic, but at either side and on the heaped-up edges of the foot-paths it still lay as white as when it fell. The grey pavement had been cleaned and scraped, but was still dangerously slippery, so that there were fewer passengers than usual. Indeed, from the direction of the Metropolitan Station no one was coming save the single gentleman whose eccentric conduct had drawn my attention. + +He was a man of about fifty, tall, portly, and imposing, with a massive, strongly marked face and a commanding figure. He was dressed in a sombre yet rich style, in black frock-coat, shining hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet his actions were in absurd contrast to the dignity of his dress and features, for he was running hard, with occasional little springs, such as a weary man gives who is little accustomed to set any tax upon his legs. As he ran he jerked his hands up and down, waggled his head, and writhed his face into the most extraordinary contortions. + +"What on earth can be the matter with him?" I asked. "He is looking up at the numbers of the houses." + +"I believe that he is coming here," said Holmes, rubbing his hands. + +"Here?" + +"Yes; I rather think he is coming to consult me professionally. I think that I recognise the symptoms. Ha! did I not tell you?" As he spoke, the man, puffing and blowing, rushed at our door and pulled at our bell until the whole house resounded with the clanging. + +A few moments later he was in our room, still puffing, still gesticulating, but with so fixed a look of grief and despair in his eyes that our smiles were turned in an instant to horror and pity. For a while he could not get his words out, but swayed his body and plucked at his hair like one who has been driven to the extreme limits of his reason. Then, suddenly springing to his feet, he beat his head against the wall with such force that we both rushed upon him and tore him away to the centre of the room. Sherlock Holmes pushed him down into the easy-chair and, sitting beside him, patted his hand and chatted with him in the easy, soothing tones which he knew so well how to employ. + +"You have come to me to tell your story, have you not?" said he. "You are fatigued with your haste. Pray wait until you have recovered yourself, and then I shall be most happy to look into any little problem which you may submit to me." + +The man sat for a minute or more with a heaving chest, fighting against his emotion. Then he passed his handkerchief over his brow, set his lips tight, and turned his face towards us. + +"No doubt you think me mad?" said he. + +"I see that you have had some great trouble," responded Holmes. + +"God knows I have!--a trouble which is enough to unseat my reason, so sudden and so terrible is it. Public disgrace I might have faced, although I am a man whose character has never yet borne a stain. Private affliction also is the lot of every man; but the two coming together, and in so frightful a form, have been enough to shake my very soul. Besides, it is not I alone. The very noblest in the land may suffer unless some way be found out of this horrible affair." + +"Pray compose yourself, sir," said Holmes, "and let me have a clear account of who you are and what it is that has befallen you." + +"My name," answered our visitor, "is probably familiar to your ears. I am Alexander Holder, of the banking firm of Holder & Stevenson, of Threadneedle Street." + +The name was indeed well known to us as belonging to the senior partner in the second largest private banking concern in the City of London. What could have happened, then, to bring one of the foremost citizens of London to this most pitiable pass? We waited, all curiosity, until with another effort he braced himself to tell his story. + +"I feel that time is of value," said he; "that is why I hastened here when the police inspector suggested that I should secure your co-operation. I came to Baker Street by the Underground and hurried from there on foot, for the cabs go slowly through this snow. That is why I was so out of breath, for I am a man who takes very little exercise. I feel better now, and I will put the facts before you as shortly and yet as clearly as I can. + +"It is, of course, well known to you that in a successful banking business as much depends upon our being able to find remunerative investments for our funds as upon our increasing our connection and the number of our depositors. One of our most lucrative means of laying out money is in the shape of loans, where the security is unimpeachable. We have done a good deal in this direction during the last few years, and there are many noble families to whom we have advanced large sums upon the security of their pictures, libraries, or plate. + +"Yesterday morning I was seated in my office at the bank when a card was brought in to me by one of the clerks. I started when I saw the name, for it was that of none other than--well, perhaps even to you I had better say no more than that it was a name which is a household word all over the earth--one of the highest, noblest, most exalted names in England. I was overwhelmed by the honour and attempted, when he entered, to say so, but he plunged at once into business with the air of a man who wishes to hurry quickly through a disagreeable task. + +" 'Mr. Holder,' said he, 'I have been informed that you are in the habit of advancing money.' + +" 'The firm does so when the security is good.' I answered. + +" 'It is absolutely essential to me,' said he, 'that I should have $50,000 at once. I could, of course, borrow so trifling a sum ten times over from my friends, but I much prefer to make it a matter of business and to carry out that business myself. In my position you can readily understand that it is unwise to place one's self under obligations.' + +" 'For how long, may I ask, do you want this sum?' I asked. + +" 'Next Monday I have a large sum due to me, and I shall then most certainly repay what you advance, with whatever interest you think it right to charge. But it is very essential to me that the money should be paid at once.' + +" 'I should be happy to advance it without further parley from my own private purse,' said I, 'were it not that the strain would be rather more than it could bear. If, on the other hand, I am to do it in the name of the firm, then in justice to my partner I must insist that, even in your case, every businesslike precaution should be taken.' + +" 'I should much prefer to have it so,' said he, raising up a square, black morocco case which he had laid beside his chair. 'You have doubtless heard of the Beryl Coronet?' + +" 'One of the most precious public possessions of the empire,' said I. + +" 'Precisely.' He opened the case, and there, imbedded in soft, flesh-coloured velvet, lay the magnificent piece of jewellery which he had named. 'There are thirty-nine enormous beryls,' said he, 'and the price of the gold chasing is incalculable. The lowest estimate would put the worth of the coronet at double the sum which I have asked. I am prepared to leave it with you as my security.' + +"I took the precious case into my hands and looked in some perplexity from it to my illustrious client. + +" 'You doubt its value?' he asked. + +" 'Not at all. I only doubt--' + +" 'The propriety of my leaving it. You may set your mind at rest about that. I should not dream of doing so were it not absolutely certain that I should be able in four days to reclaim it. It is a pure matter of form. Is the security sufficient?' + +" 'Ample.' + +" 'You understand, Mr. Holder, that I am giving you a strong proof of the confidence which I have in you, founded upon all that I have heard of you. I rely upon you not only to be discreet and to refrain from all gossip upon the matter but, above all, to preserve this coronet with every possible precaution because I need not say that a great public scandal would be caused if any harm were to befall it. Any injury to it would be almost as serious as its complete loss, for there are no beryls in the world to match these, and it would be impossible to replace them. I leave it with you, however, with every confidence, and I shall call for it in person on Monday morning.' + +"Seeing that my client was anxious to leave, I said no more but, calling for my cashier, I ordered him to pay over fifty $1000 notes. When I was alone once more, however, with the precious case lying upon the table in front of me, I could not but think with some misgivings of the immense responsibility which it entailed upon me. There could be no doubt that, as it was a national possession, a horrible scandal would ensue if any misfortune should occur to it. I already regretted having ever consented to take charge of it. However, it was too late to alter the matter now, so I locked it up in my private safe and turned once more to my work. + +"When evening came I felt that it would be an imprudence to leave so precious a thing in the office behind me. Bankers' safes had been forced before now, and why should not mine be? If so, how terrible would be the position in which I should find myself! I determined, therefore, that for the next few days I would always carry the case backward and forward with me, so that it might never be really out of my reach. With this intention, I called a cab and drove out to my house at Streatham, carrying the jewel with me. I did not breathe freely until I had taken it upstairs and locked it in the bureau of my dressing-room. + +"And now a word as to my household, Mr. Holmes, for I wish you to thoroughly understand the situation. My groom and my page sleep out of the house, and may be set aside altogether. I have three maid-servants who have been with me a number of years and whose absolute reliability is quite above suspicion. Another, Lucy Parr, the second waiting-maid, has only been in my service a few months. She came with an excellent character, however, and has always given me satisfaction. She is a very pretty girl and has attracted admirers who have occasionally hung about the place. That is the only drawback which we have found to her, but we believe her to be a thoroughly good girl in every way. + +"So much for the servants. My family itself is so small that it will not take me long to describe it. I am a widower and have an only son, Arthur. He has been a disappointment to me, Mr. Holmes--a grievous disappointment. I have no doubt that I am myself to blame. People tell me that I have spoiled him. Very likely I have. When my dear wife died I felt that he was all I had to love. I could not bear to see the smile fade even for a moment from his face. I have never denied him a wish. Perhaps it would have been better for both of us had I been sterner, but I meant it for the best. + +"It was naturally my intention that he should succeed me in my business, but he was not of a business turn. He was wild, wayward, and, to speak the truth, I could not trust him in the handling of large sums of money. When he was young he became a member of an aristocratic club, and there, having charming manners, he was soon the intimate of a number of men with long purses and expensive habits. He learned to play heavily at cards and to squander money on the turf, until he had again and again to come to me and implore me to give him an advance upon his allowance, that he might settle his debts of honour. He tried more than once to break away from the dangerous company which he was keeping, but each time the influence of his friend, Sir George Burnwell, was enough to draw him back again. + +"And, indeed, I could not wonder that such a man as Sir George Burnwell should gain an influence over him, for he has frequently brought him to my house, and I have found myself that I could hardly resist the fascination of his manner. He is older than Arthur, a man of the world to his finger-tips, one who had been everywhere, seen everything, a brilliant talker, and a man of great personal beauty. Yet when I think of him in cold blood, far away from the glamour of his presence, I am convinced from his cynical speech and the look which I have caught in his eyes that he is one who should be deeply distrusted. So I think, and so, too, thinks my little Mary, who has a woman's quick insight into character. + +"And now there is only she to be described. She is my niece; but when my brother died five years ago and left her alone in the world I adopted her, and have looked upon her ever since as my daughter. She is a sunbeam in my house--sweet, loving, beautiful, a wonderful manager and housekeeper, yet as tender and quiet and gentle as a woman could be. She is my right hand. I do not know what I could do without her. In only one matter has she ever gone against my wishes. Twice my boy has asked her to marry him, for he loves her devotedly, but each time she has refused him. I think that if anyone could have drawn him into the right path it would have been she, and that his marriage might have changed his whole life; but now, alas! it is too late--forever too late! + +"Now, Mr. Holmes, you know the people who live under my roof, and I shall continue with my miserable story. + +"When we were taking coffee in the drawing-room that night after dinner, I told Arthur and Mary my experience, and of the precious treasure which we had under our roof, suppressing only the name of my client. Lucy Parr, who had brought in the coffee, had, I am sure, left the room; but I cannot swear that the door was closed. Mary and Arthur were much interested and wished to see the famous coronet, but I thought it better not to disturb it. + +" 'Where have you put it?' asked Arthur. + +" 'In my own bureau.' + +" 'Well, I hope to goodness the house won't be burgled during the night.' said he. + +" 'It is locked up,' I answered. + +" 'Oh, any old key will fit that bureau. When I was a youngster I have opened it myself with the key of the box-room cupboard.' + +"He often had a wild way of talking, so that I thought little of what he said. He followed me to my room, however, that night with a very grave face. + +" 'Look here, dad,' said he with his eyes cast down, 'can you let me have $200?' + +" 'No, I cannot!' I answered sharply. 'I have been far too generous with you in money matters.' + +" 'You have been very kind,' said he, 'but I must have this money, or else I can never show my face inside the club again.' + +" 'And a very good thing, too!' I cried. + +" 'Yes, but you would not have me leave it a dishonoured man,' said he. 'I could not bear the disgrace. I must raise the money in some way, and if you will not let me have it, then I must try other means.' + +"I was very angry, for this was the third demand during the month. 'You shall not have a farthing from me,' I cried, on which he bowed and left the room without another word. + +"When he was gone I unlocked my bureau, made sure that my treasure was safe, and locked it again. Then I started to go round the house to see that all was secure--a duty which I usually leave to Mary but which I thought it well to perform myself that night. As I came down the stairs I saw Mary herself at the side window of the hall, which she closed and fastened as I approached. + +" 'Tell me, dad,' said she, looking, I thought, a little disturbed, 'did you give Lucy, the maid, leave to go out to-night?' + +" 'Certainly not.' + +" 'She came in just now by the back door. I have no doubt that she has only been to the side gate to see someone, but I think that it is hardly safe and should be stopped.' + +" 'You must speak to her in the morning, or I will if you prefer it. Are you sure that everything is fastened?' + +" 'Quite sure, dad.' + +" 'Then, good-night.' I kissed her and went up to my bedroom again, where I was soon asleep. + +"I am endeavouring to tell you everything, Mr. Holmes, which may have any bearing upon the case, but I beg that you will question me upon any point which I do not make clear." + +"On the contrary, your statement is singularly lucid." + +"I come to a part of my story now in which I should wish to be particularly so. I am not a very heavy sleeper, and the anxiety in my mind tended, no doubt, to make me even less so than usual. About two in the morning, then, I was awakened by some sound in the house. It had ceased ere I was wide awake, but it had left an impression behind it as though a window had gently closed somewhere. I lay listening with all my ears. Suddenly, to my horror, there was a distinct sound of footsteps moving softly in the next room. I slipped out of bed, all palpitating with fear, and peeped round the corner of my dressing-room door. + +" 'Arthur!' I screamed, 'you villain! you thief! How dare you touch that coronet?' + +"The gas was half up, as I had left it, and my unhappy boy, dressed only in his shirt and trousers, was standing beside the light, holding the coronet in his hands. He appeared to be wrenching at it, or bending it with all his strength. At my cry he dropped it from his grasp and turned as pale as death. I snatched it up and examined it. One of the gold corners, with three of the beryls in it, was missing. + +" 'You blackguard!' I shouted, beside myself with rage. 'You have destroyed it! You have dishonoured me forever! Where are the jewels which you have stolen?' + +" 'Stolen!' he cried. + +" 'Yes, thief!' I roared, shaking him by the shoulder. + +" 'There are none missing. There cannot be any missing,' said he. + +" 'There are three missing. And you know where they are. Must I call you a liar as well as a thief? Did I not see you trying to tear off another piece?' + +" 'You have called me names enough,' said he, 'I will not stand it any longer. I shall not say another word about this business, since you have chosen to insult me. I will leave your house in the morning and make my own way in the world.' + +" 'You shall leave it in the hands of the police!' I cried half-mad with grief and rage. 'I shall have this matter probed to the bottom.' + +" 'You shall learn nothing from me,' said he with a passion such as I should not have thought was in his nature. 'If you choose to call the police, let the police find what they can.' + +"By this time the whole house was astir, for I had raised my voice in my anger. Mary was the first to rush into my room, and, at the sight of the coronet and of Arthur's face, she read the whole story and, with a scream, fell down senseless on the ground. I sent the house-maid for the police and put the investigation into their hands at once. When the inspector and a constable entered the house, Arthur, who had stood sullenly with his arms folded, asked me whether it was my intention to charge him with theft. I answered that it had ceased to be a private matter, but had become a public one, since the ruined coronet was national property. I was determined that the law should have its way in everything. + +" 'At least,' said he, 'you will not have me arrested at once. It would be to your advantage as well as mine if I might leave the house for five minutes.' + +" 'That you may get away, or perhaps that you may conceal what you have stolen,' said I. And then, realising the dreadful position in which I was placed, I implored him to remember that not only my honour but that of one who was far greater than I was at stake; and that he threatened to raise a scandal which would convulse the nation. He might avert it all if he would but tell me what he had done with the three missing stones. + +" 'You may as well face the matter,' said I; 'you have been caught in the act, and no confession could make your guilt more heinous. If you but make such reparation as is in your power, by telling us where the beryls are, all shall be forgiven and forgotten.' + +" 'Keep your forgiveness for those who ask for it,' he answered, turning away from me with a sneer. I saw that he was too hardened for any words of mine to influence him. There was but one way for it. I called in the inspector and gave him into custody. A search was made at once not only of his person but of his room and of every portion of the house where he could possibly have concealed the gems; but no trace of them could be found, nor would the wretched boy open his mouth for all our persuasions and our threats. This morning he was removed to a cell, and I, after going through all the police formalities, have hurried round to you to implore you to use your skill in unravelling the matter. The police have openly confessed that they can at present make nothing of it. You may go to any expense which you think necessary. I have already offered a reward of $1000. My God, what shall I do! I have lost my honour, my gems, and my son in one night. Oh, what shall I do!" + +He put a hand on either side of his head and rocked himself to and fro, droning to himself like a child whose grief has got beyond words. + +Sherlock Holmes sat silent for some few minutes, with his brows knitted and his eyes fixed upon the fire. + +"Do you receive much company?" he asked. + +"None save my partner with his family and an occasional friend of Arthur's. Sir George Burnwell has been several times lately. No one else, I think." + +"Do you go out much in society?" + +"Arthur does. Mary and I stay at home. We neither of us care for it." + +"That is unusual in a young girl." + +"She is of a quiet nature. Besides, she is not so very young. She is four-and-twenty." + +"This matter, from what you say, seems to have been a shock to her also." + +"Terrible! She is even more affected than I." + +"You have neither of you any doubt as to your son's guilt?" + +"How can we have when I saw him with my own eyes with the coronet in his hands." + +"I hardly consider that a conclusive proof. Was the remainder of the coronet at all injured?" + +"Yes, it was twisted." + +"Do you not think, then, that he might have been trying to straighten it?" + +"God bless you! You are doing what you can for him and for me. But it is too heavy a task. What was he doing there at all? If his purpose were innocent, why did he not say so?" + +"Precisely. And if it were guilty, why did he not invent a lie? His silence appears to me to cut both ways. There are several singular points about the case. What did the police think of the noise which awoke you from your sleep?" + +"They considered that it might be caused by Arthur's closing his bedroom door." + +"A likely story! As if a man bent on felony would slam his door so as to wake a household. What did they say, then, of the disappearance of these gems?" + +"They are still sounding the planking and probing the furniture in the hope of finding them." + +"Have they thought of looking outside the house?" + +"Yes, they have shown extraordinary energy. The whole garden has already been minutely examined." + +"Now, my dear sir," said Holmes. "is it not obvious to you now that this matter really strikes very much deeper than either you or the police were at first inclined to think? It appeared to you to be a simple case; to me it seems exceedingly complex. Consider what is involved by your theory. You suppose that your son came down from his bed, went, at great risk, to your dressing-room, opened your bureau, took out your coronet, broke off by main force a small portion of it, went off to some other place, concealed three gems out of the thirty-nine, with such skill that nobody can find them, and then returned with the other thirty-six into the room in which he exposed himself to the greatest danger of being discovered. I ask you now, is such a theory tenable?" + +"But what other is there?" cried the banker with a gesture of despair. "If his motives were innocent, why does he not explain them?" + +"It is our task to find that out," replied Holmes; "so now, if you please, Mr. Holder, we will set off for Streatham together, and devote an hour to glancing a little more closely into details." + +My friend insisted upon my accompanying them in their expedition, which I was eager enough to do, for my curiosity and sympathy were deeply stirred by the story to which we had listened. I confess that the guilt of the banker's son appeared to me to be as obvious as it did to his unhappy father, but still I had such faith in Holmes' judgment that I felt that there must be some grounds for hope as long as he was dissatisfied with the accepted explanation. He hardly spoke a word the whole way out to the southern suburb, but sat with his chin upon his breast and his hat drawn over his eyes, sunk in the deepest thought. Our client appeared to have taken fresh heart at the little glimpse of hope which had been presented to him, and he even broke into a desultory chat with me over his business affairs. A short railway journey and a shorter walk brought us to Fairbank, the modest residence of the great financier. + +Fairbank was a good-sized square house of white stone, standing back a little from the road. A double carriage-sweep, with a snow-clad lawn, stretched down in front to two large iron gates which closed the entrance. On the right side was a small wooden thicket, which led into a narrow path between two neat hedges stretching from the road to the kitchen door, and forming the tradesmen's entrance. On the left ran a lane which led to the stables, and was not itself within the grounds at all, being a public, though little used, thoroughfare. Holmes left us standing at the door and walked slowly all round the house, across the front, down the tradesmen's path, and so round by the garden behind into the stable lane. So long was he that Mr. Holder and I went into the dining-room and waited by the fire until he should return. We were sitting there in silence when the door opened and a young lady came in. She was rather above the middle height, slim, with dark hair and eyes, which seemed the darker against the absolute pallor of her skin. I do not think that I have ever seen such deadly paleness in a woman's face. Her lips, too, were bloodless, but her eyes were flushed with crying. As she swept silently into the room she impressed me with a greater sense of grief than the banker had done in the morning, and it was the more striking in her as she was evidently a woman of strong character, with immense capacity for self-restraint. Disregarding my presence, she went straight to her uncle and passed her hand over his head with a sweet womanly caress. + +"You have given orders that Arthur should be liberated, have you not, dad?" she asked. + +"No, no, my girl, the matter must be probed to the bottom." + +"But I am so sure that he is innocent. You know what woman's instincts are. I know that he has done no harm and that you will be sorry for having acted so harshly." + +"Why is he silent, then, if he is innocent?" + +"Who knows? Perhaps because he was so angry that you should suspect him." + +"How could I help suspecting him, when I actually saw him with the coronet in his hand?" + +"Oh, but he had only picked it up to look at it. Oh, do, do take my word for it that he is innocent. Let the matter drop and say no more. It is so dreadful to think of our dear Arthur in prison!" + +"I shall never let it drop until the gems are found--never, Mary! Your affection for Arthur blinds you as to the awful consequences to me. Far from hushing the thing up, I have brought a gentleman down from London to inquire more deeply into it." + +"This gentleman?" she asked, facing round to me. + +"No, his friend. He wished us to leave him alone. He is round in the stable lane now." + +"The stable lane?" She raised her dark eyebrows. "What can he hope to find there? Ah! this, I suppose, is he. I trust, sir, that you will succeed in proving, what I feel sure is the truth, that my cousin Arthur is innocent of this crime." + +"I fully share your opinion, and I trust, with you, that we may prove it," returned Holmes, going back to the mat to knock the snow from his shoes. "I believe I have the honour of addressing Miss Mary Holder. Might I ask you a question or two?" + +"Pray do, sir, if it may help to clear this horrible affair up." + +"You heard nothing yourself last night?" + +"Nothing, until my uncle here began to speak loudly. I heard that, and I came down." + +"You shut up the windows and doors the night before. Did you fasten all the windows?" + +"Yes." + +"Were they all fastened this morning?" + +"Yes." + +"You have a maid who has a sweetheart? I think that you remarked to your uncle last night that she had been out to see him?" + +"Yes, and she was the girl who waited in the drawing-room, and who may have heard uncle's remarks about the coronet." + +"I see. You infer that she may have gone out to tell her sweetheart, and that the two may have planned the robbery." + +"But what is the good of all these vague theories," cried the banker impatiently, "when I have told you that I saw Arthur with the coronet in his hands?" + +"Wait a little, Mr. Holder. We must come back to that. About this girl, Miss Holder. You saw her return by the kitchen door, I presume?" + +"Yes; when I went to see if the door was fastened for the night I met her slipping in. I saw the man, too, in the gloom." + +"Do you know him?" + +"Oh, yes! he is the green-grocer who brings our vegetables round. His name is Francis Prosper." + +"He stood," said Holmes, "to the left of the door--that is to say, farther up the path than is necessary to reach the door?" + +"Yes, he did." + +"And he is a man with a wooden leg?" + +Something like fear sprang up in the young lady's expressive black eyes. "Why, you are like a magician," said she. "How do you know that?" She smiled, but there was no answering smile in Holmes' thin, eager face. + +"I should be very glad now to go upstairs," said he. "I shall probably wish to go over the outside of the house again. Perhaps I had better take a look at the lower windows before I go up." + +He walked swiftly round from one to the other, pausing only at the large one which looked from the hall onto the stable lane. This he opened and made a very careful examination of the sill with his powerful magnifying lens. "Now we shall go upstairs," said he at last. + +The banker's dressing-room was a plainly furnished little chamber, with a grey carpet, a large bureau, and a long mirror. Holmes went to the bureau first and looked hard at the lock. + +"Which key was used to open it?" he asked. + +"That which my son himself indicated--that of the cupboard of the lumber-room." + +"Have you it here?" + +"That is it on the dressing-table." + +Sherlock Holmes took it up and opened the bureau. + +"It is a noiseless lock," said he. "It is no wonder that it did not wake you. This case, I presume, contains the coronet. We must have a look at it." He opened the case, and taking out the diadem he laid it upon the table. It was a magnificent specimen of the jeweller's art, and the thirty-six stones were the finest that I have ever seen. At one side of the coronet was a cracked edge, where a corner holding three gems had been torn away. + +"Now, Mr. Holder," said Holmes, "here is the corner which corresponds to that which has been so unfortunately lost. Might I beg that you will break it off." + +The banker recoiled in horror. "I should not dream of trying," said he. + +"Then I will." Holmes suddenly bent his strength upon it, but without result. "I feel it give a little," said he; "but, though I am exceptionally strong in the fingers, it would take me all my time to break it. An ordinary man could not do it. Now, what do you think would happen if I did break it, Mr. Holder? There would be a noise like a pistol shot. Do you tell me that all this happened within a few yards of your bed and that you heard nothing of it?" + +"I do not know what to think. It is all dark to me." + +"But perhaps it may grow lighter as we go. What do you think, Miss Holder?" + +"I confess that I still share my uncle's perplexity." + +"Your son had no shoes or slippers on when you saw him?" + +"He had nothing on save only his trousers and shirt." + +"Thank you. We have certainly been favoured with extraordinary luck during this inquiry, and it will be entirely our own fault if we do not succeed in clearing the matter up. With your permission, Mr. Holder, I shall now continue my investigations outside." + +He went alone, at his own request, for he explained that any unnecessary footmarks might make his task more difficult. For an hour or more he was at work, returning at last with his feet heavy with snow and his features as inscrutable as ever. + +"I think that I have seen now all that there is to see, Mr. Holder," said he; "I can serve you best by returning to my rooms." + +"But the gems, Mr. Holmes. Where are they?" + +"I cannot tell." + +The banker wrung his hands. "I shall never see them again!" he cried. "And my son? You give me hopes?" + +"My opinion is in no way altered." + +"Then, for God's sake, what was this dark business which was acted in my house last night?" + +"If you can call upon me at my Baker Street rooms to-morrow morning between nine and ten I shall be happy to do what I can to make it clearer. I understand that you give me carte blanche to act for you, provided only that I get back the gems, and that you place no limit on the sum I may draw." + +"I would give my fortune to have them back." + +"Very good. I shall look into the matter between this and then. Good-bye; it is just possible that I may have to come over here again before evening." + +It was obvious to me that my companion's mind was now made up about the case, although what his conclusions were was more than I could even dimly imagine. Several times during our homeward journey I endeavoured to sound him upon the point, but he always glided away to some other topic, until at last I gave it over in despair. It was not yet three when we found ourselves in our rooms once more. He hurried to his chamber and was down again in a few minutes dressed as a common loafer. With his collar turned up, his shiny, seedy coat, his red cravat, and his worn boots, he was a perfect sample of the class. + +"I think that this should do," said he, glancing into the glass above the fireplace. "I only wish that you could come with me, Watson, but I fear that it won't do. I may be on the trail in this matter, or I may be following a will-o'-the-wisp, but I shall soon know which it is. I hope that I may be back in a few hours." He cut a slice of beef from the joint upon the sideboard, sandwiched it between two rounds of bread, and thrusting this rude meal into his pocket he started off upon his expedition. + +I had just finished my tea when he returned, evidently in excellent spirits, swinging an old elastic-sided boot in his hand. He chucked it down into a corner and helped himself to a cup of tea. + +"I only looked in as I passed," said he. "I am going right on." + +"Where to?" + +"Oh, to the other side of the West End. It may be some time before I get back. Don't wait up for me in case I should be late." + +"How are you getting on?" + +"Oh, so so. Nothing to complain of. I have been out to Streatham since I saw you last, but I did not call at the house. It is a very sweet little problem, and I would not have missed it for a good deal. However, I must not sit gossiping here, but must get these disreputable clothes off and return to my highly respectable self." + +I could see by his manner that he had stronger reasons for satisfaction than his words alone would imply. His eyes twinkled, and there was even a touch of colour upon his sallow cheeks. He hastened upstairs, and a few minutes later I heard the slam of the hall door, which told me that he was off once more upon his congenial hunt. + +I waited until midnight, but there was no sign of his return, so I retired to my room. It was no uncommon thing for him to be away for days and nights on end when he was hot upon a scent, so that his lateness caused me no surprise. I do not know at what hour he came in, but when I came down to breakfast in the morning there he was with a cup of coffee in one hand and the paper in the other, as fresh and trim as possible. + +"You will excuse my beginning without you, Watson," said he, "but you remember that our client has rather an early appointment this morning." + +"Why, it is after nine now," I answered. "I should not be surprised if that were he. I thought I heard a ring." + +It was, indeed, our friend the financier. I was shocked by the change which had come over him, for his face which was naturally of a broad and massive mould, was now pinched and fallen in, while his hair seemed to me at least a shade whiter. He entered with a weariness and lethargy which was even more painful than his violence of the morning before, and he dropped heavily into the armchair which I pushed forward for him. + +"I do not know what I have done to be so severely tried," said he. "Only two days ago I was a happy and prosperous man, without a care in the world. Now I am left to a lonely and dishonoured age. One sorrow comes close upon the heels of another. My niece, Mary, has deserted me." + +"Deserted you?" + +"Yes. Her bed this morning had not been slept in, her room was empty, and a note for me lay upon the hall table. I had said to her last night, in sorrow and not in anger, that if she had married my boy all might have been well with him. Perhaps it was thoughtless of me to say so. It is to that remark that she refers in this note: + +" 'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, and that if I had acted differently this terrible misfortune might never have occurred. I cannot, with this thought in my mind, ever again be happy under your roof, and I feel that I must leave you forever. Do not worry about my future, for that is provided for; and, above all, do not search for me, for it will be fruitless labour and an ill-service to me. In life or in death, I am ever your loving + + +" 'MARY.' + +"What could she mean by that note, Mr. Holmes? Do you think it points to suicide?" + +"No, no, nothing of the kind. It is perhaps the best possible solution. I trust, Mr. Holder, that you are nearing the end of your troubles." + +"Ha! You say so! You have heard something, Mr. Holmes; you have learned something! Where are the gems?" + +"You would not think $1000 apiece an excessive sum for them?" + +"I would pay ten." + +"That would be unnecessary. Three thousand will cover the matter. And there is a little reward, I fancy. Have you your check-book? Here is a pen. Better make it out for $4000." + +With a dazed face the banker made out the required check. Holmes walked over to his desk, took out a little triangular piece of gold with three gems in it, and threw it down upon the table. + +With a shriek of joy our client clutched it up. + +"You have it!" he gasped. "I am saved! I am saved!" + +The reaction of joy was as passionate as his grief had been, and he hugged his recovered gems to his bosom. + +"There is one other thing you owe, Mr. Holder," said Sherlock Holmes rather sternly. + +"Owe!" He caught up a pen. "Name the sum, and I will pay it." + +"No, the debt is not to me. You owe a very humble apology to that noble lad, your son, who has carried himself in this matter as I should be proud to see my own son do, should I ever chance to have one." + +"Then it was not Arthur who took them?" + +"I told you yesterday, and I repeat to-day, that it was not." + +"You are sure of it! Then let us hurry to him at once to let him know that the truth is known." + +"He knows it already. When I had cleared it all up I had an interview with him, and finding that he would not tell me the story, I told it to him, on which he had to confess that I was right and to add the very few details which were not yet quite clear to me. Your news of this morning, however, may open his lips." + +"For heaven's sake, tell me, then, what is this extraordinary mystery!" + +"I will do so, and I will show you the steps by which I reached it. And let me say to you, first, that which it is hardest for me to say and for you to hear: there has been an understanding between Sir George Burnwell and your niece Mary. They have now fled together." + +"My Mary? Impossible!" + +"It is unfortunately more than possible; it is certain. Neither you nor your son knew the true character of this man when you admitted him into your family circle. He is one of the most dangerous men in England--a ruined gambler, an absolutely desperate villain, a man without heart or conscience. Your niece knew nothing of such men. When he breathed his vows to her, as he had done to a hundred before her, she flattered herself that she alone had touched his heart. The devil knows best what he said, but at least she became his tool and was in the habit of seeing him nearly every evening." + +"I cannot, and I will not, believe it!" cried the banker with an ashen face. + +"I will tell you, then, what occurred in your house last night. Your niece, when you had, as she thought, gone to your room, slipped down and talked to her lover through the window which leads into the stable lane. His footmarks had pressed right through the snow, so long had he stood there. She told him of the coronet. His wicked lust for gold kindled at the news, and he bent her to his will. I have no doubt that she loved you, but there are women in whom the love of a lover extinguishes all other loves, and I think that she must have been one. She had hardly listened to his instructions when she saw you coming downstairs, on which she closed the window rapidly and told you about one of the servants' escapade with her wooden-legged lover, which was all perfectly true. + +"Your boy, Arthur, went to bed after his interview with you but he slept badly on account of his uneasiness about his club debts. In the middle of the night he heard a soft tread pass his door, so he rose and, looking out, was surprised to see his cousin walking very stealthily along the passage until she disappeared into your dressing-room. Petrified with astonishment, the lad slipped on some clothes and waited there in the dark to see what would come of this strange affair. Presently she emerged from the room again, and in the light of the passage-lamp your son saw that she carried the precious coronet in her hands. She passed down the stairs, and he, thrilling with horror, ran along and slipped behind the curtain near your door, whence he could see what passed in the hall beneath. He saw her stealthily open the window, hand out the coronet to someone in the gloom, and then closing it once more hurry back to her room, passing quite close to where he stood hid behind the curtain. + +"As long as she was on the scene he could not take any action without a horrible exposure of the woman whom he loved. But the instant that she was gone he realised how crushing a misfortune this would be for you, and how all-important it was to set it right. He rushed down, just as he was, in his bare feet, opened the window, sprang out into the snow, and ran down the lane, where he could see a dark figure in the moonlight. Sir George Burnwell tried to get away, but Arthur caught him, and there was a struggle between them, your lad tugging at one side of the coronet, and his opponent at the other. In the scuffle, your son struck Sir George and cut him over the eye. Then something suddenly snapped, and your son, finding that he had the coronet in his hands, rushed back, closed the window, ascended to your room, and had just observed that the coronet had been twisted in the struggle and was endeavouring to straighten it when you appeared upon the scene." + +"Is it possible?" gasped the banker. + +"You then roused his anger by calling him names at a moment when he felt that he had deserved your warmest thanks. He could not explain the true state of affairs without betraying one who certainly deserved little enough consideration at his hands. He took the more chivalrous view, however, and preserved her secret." + +"And that was why she shrieked and fainted when she saw the coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have been! And his asking to be allowed to go out for five minutes! The dear fellow wanted to see if the missing piece were at the scene of the struggle. How cruelly I have misjudged him!" + +"When I arrived at the house," continued Holmes, "I at once went very carefully round it to observe if there were any traces in the snow which might help me. I knew that none had fallen since the evening before, and also that there had been a strong frost to preserve impressions. I passed along the tradesmen's path, but found it all trampled down and indistinguishable. Just beyond it, however, at the far side of the kitchen door, a woman had stood and talked with a man, whose round impressions on one side showed that he had a wooden leg. I could even tell that they had been disturbed, for the woman had run back swiftly to the door, as was shown by the deep toe and light heel marks, while Wooden-leg had waited a little, and then had gone away. I thought at the time that this might be the maid and her sweetheart, of whom you had already spoken to me, and inquiry showed it was so. I passed round the garden without seeing anything more than random tracks, which I took to be the police; but when I got into the stable lane a very long and complex story was written in the snow in front of me. + +"There was a double line of tracks of a booted man, and a second double line which I saw with delight belonged to a man with naked feet. I was at once convinced from what you had told me that the latter was your son. The first had walked both ways, but the other had run swiftly, and as his tread was marked in places over the depression of the boot, it was obvious that he had passed after the other. I followed them up and found they led to the hall window, where Boots had worn all the snow away while waiting. Then I walked to the other end, which was a hundred yards or more down the lane. I saw where Boots had faced round, where the snow was cut up as though there had been a struggle, and, finally, where a few drops of blood had fallen, to show me that I was not mistaken. Boots had then run down the lane, and another little smudge of blood showed that it was he who had been hurt. When he came to the highroad at the other end, I found that the pavement had been cleared, so there was an end to that clue. + +"On entering the house, however, I examined, as you remember, the sill and framework of the hall window with my lens, and I could at once see that someone had passed out. I could distinguish the outline of an instep where the wet foot had been placed in coming in. I was then beginning to be able to form an opinion as to what had occurred. A man had waited outside the window; someone had brought the gems; the deed had been overseen by your son; he had pursued the thief; had struggled with him; they had each tugged at the coronet, their united strength causing injuries which neither alone could have effected. He had returned with the prize, but had left a fragment in the grasp of his opponent. So far I was clear. The question now was, who was the man and who was it brought him the coronet? + +"It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. Now, I knew that it was not you who had brought it down, so there only remained your niece and the maids. But if it were the maids, why should your son allow himself to be accused in their place? There could be no possible reason. As he loved his cousin, however, there was an excellent explanation why he should retain her secret--the more so as the secret was a disgraceful one. When I remembered that you had seen her at that window, and how she had fainted on seeing the coronet again, my conjecture became a certainty. + +"And who could it be who was her confederate? A lover evidently, for who else could outweigh the love and gratitude which she must feel to you? I knew that you went out little, and that your circle of friends was a very limited one. But among them was Sir George Burnwell. I had heard of him before as being a man of evil reputation among women. It must have been he who wore those boots and retained the missing gems. Even though he knew that Arthur had discovered him, he might still flatter himself that he was safe, for the lad could not say a word without compromising his own family. + +"Well, your own good sense will suggest what measures I took next. I went in the shape of a loafer to Sir George's house, managed to pick up an acquaintance with his valet, learned that his master had cut his head the night before, and, finally, at the expense of six shillings, made all sure by buying a pair of his cast-off shoes. With these I journeyed down to Streatham and saw that they exactly fitted the tracks." + +"I saw an ill-dressed vagabond in the lane yesterday evening," said Mr. Holder. + +"Precisely. It was I. I found that I had my man, so I came home and changed my clothes. It was a delicate part which I had to play then, for I saw that a prosecution must be avoided to avert scandal, and I knew that so astute a villain would see that our hands were tied in the matter. I went and saw him. At first, of course, he denied everything. But when I gave him every particular that had occurred, he tried to bluster and took down a life-preserver from the wall. I knew my man, however, and I clapped a pistol to his head before he could strike. Then he became a little more reasonable. I told him that we would give him a price for the stones he held--$1000 apiece. That brought out the first signs of grief that he had shown. 'Why, dash it all!' said he, 'I've let them go at six hundred for the three!' I soon managed to get the address of the receiver who had them, on promising him that there would be no prosecution. Off I set to him, and after much chaffering I got our stones at $1000 apiece. Then I looked in upon your son, told him that all was right, and eventually got to my bed about two o'clock, after what I may call a really hard day's work." + +"A day which has saved England from a great public scandal," said the banker, rising. "Sir, I cannot find words to thank you, but you shall not find me ungrateful for what you have done. Your skill has indeed exceeded all that I have heard of it. And now I must fly to my dear boy to apologise to him for the wrong which I have done him. As to what you tell me of poor Mary, it goes to my very heart. Not even your skill can inform me where she is now." + +"I think that we may safely say," returned Holmes, "that she is wherever Sir George Burnwell is. It is equally certain, too, that whatever her sins are, they will soon receive a more than sufficient punishment." + +XII. THE ADVENTURE OF THE COPPER BEECHES + + +"To the man who loves art for its own sake," remarked Sherlock Holmes, tossing aside the advertisement sheet of the Daily Telegraph, "it is frequently in its least important and lowliest manifestations that the keenest pleasure is to be derived. It is pleasant to me to observe, Watson, that you have so far grasped this truth that in these little records of our cases which you have been good enough to draw up, and, I am bound to say, occasionally to embellish, you have given prominence not so much to the many causes celebres and sensational trials in which I have figured but rather to those incidents which may have been trivial in themselves, but which have given room for those faculties of deduction and of logical synthesis which I have made my special province." + +"And yet," said I, smiling, "I cannot quite hold myself absolved from the charge of sensationalism which has been urged against my records." + +"You have erred, perhaps," he observed, taking up a glowing cinder with the tongs and lighting with it the long cherry-wood pipe which was wont to replace his clay when he was in a disputatious rather than a meditative mood--"you have erred perhaps in attempting to put colour and life into each of your statements instead of confining yourself to the task of placing upon record that severe reasoning from cause to effect which is really the only notable feature about the thing." + +"It seems to me that I have done you full justice in the matter," I remarked with some coldness, for I was repelled by the egotism which I had more than once observed to be a strong factor in my friend's singular character. + +"No, it is not selfishness or conceit," said he, answering, as was his wont, my thoughts rather than my words. "If I claim full justice for my art, it is because it is an impersonal thing--a thing beyond myself. Crime is common. Logic is rare. Therefore it is upon the logic rather than upon the crime that you should dwell. You have degraded what should have been a course of lectures into a series of tales." + +It was a cold morning of the early spring, and we sat after breakfast on either side of a cheery fire in the old room at Baker Street. A thick fog rolled down between the lines of dun-coloured houses, and the opposing windows loomed like dark, shapeless blurs through the heavy yellow wreaths. Our gas was lit and shone on the white cloth and glimmer of china and metal, for the table had not been cleared yet. Sherlock Holmes had been silent all the morning, dipping continuously into the advertisement columns of a succession of papers until at last, having apparently given up his search, he had emerged in no very sweet temper to lecture me upon my literary shortcomings. + +"At the same time," he remarked after a pause, during which he had sat puffing at his long pipe and gazing down into the fire, "you can hardly be open to a charge of sensationalism, for out of these cases which you have been so kind as to interest yourself in, a fair proportion do not treat of crime, in its legal sense, at all. The small matter in which I endeavoured to help the King of Bohemia, the singular experience of Miss Mary Sutherland, the problem connected with the man with the twisted lip, and the incident of the noble bachelor, were all matters which are outside the pale of the law. But in avoiding the sensational, I fear that you may have bordered on the trivial." + +"The end may have been so," I answered, "but the methods I hold to have been novel and of interest." + +"Pshaw, my dear fellow, what do the public, the great unobservant public, who could hardly tell a weaver by his tooth or a compositor by his left thumb, care about the finer shades of analysis and deduction! But, indeed, if you are trivial. I cannot blame you, for the days of the great cases are past. Man, or at least criminal man, has lost all enterprise and originality. As to my own little practice, it seems to be degenerating into an agency for recovering lost lead pencils and giving advice to young ladies from boarding-schools. I think that I have touched bottom at last, however. This note I had this morning marks my zero-point, I fancy. Read it!" He tossed a crumpled letter across to me. + +It was dated from Montague Place upon the preceding evening, and ran thus: + +"DEAR MR. HOLMES:--I am very anxious to consult you as to whether I should or should not accept a situation which has been offered to me as governess. I shall call at half-past ten to-morrow if I do not inconvenience you. Yours faithfully, + + +"VIOLET HUNTER." + +"Do you know the young lady?" I asked. + +"Not I." + +"It is half-past ten now." + +"Yes, and I have no doubt that is her ring." + +"It may turn out to be of more interest than you think. You remember that the affair of the blue carbuncle, which appeared to be a mere whim at first, developed into a serious investigation. It may be so in this case, also." + +"Well, let us hope so. But our doubts will very soon be solved, for here, unless I am much mistaken, is the person in question." + +As he spoke the door opened and a young lady entered the room. She was plainly but neatly dressed, with a bright, quick face, freckled like a plover's egg, and with the brisk manner of a woman who has had her own way to make in the world. + +"You will excuse my troubling you, I am sure," said she, as my companion rose to greet her, "but I have had a very strange experience, and as I have no parents or relations of any sort from whom I could ask advice, I thought that perhaps you would be kind enough to tell me what I should do." + +"Pray take a seat, Miss Hunter. I shall be happy to do anything that I can to serve you." + +I could see that Holmes was favourably impressed by the manner and speech of his new client. He looked her over in his searching fashion, and then composed himself, with his lids drooping and his finger-tips together, to listen to her story. + +"I have been a governess for five years," said she, "in the family of Colonel Spence Munro, but two months ago the colonel received an appointment at Halifax, in Nova Scotia, and took his children over to America with him, so that I found myself without a situation. I advertised, and I answered advertisements, but without success. At last the little money which I had saved began to run short, and I was at my wit's end as to what I should do. + +"There is a well-known agency for governesses in the West End called Westaway's, and there I used to call about once a week in order to see whether anything had turned up which might suit me. Westaway was the name of the founder of the business, but it is really managed by Miss Stoper. She sits in her own little office, and the ladies who are seeking employment wait in an anteroom, and are then shown in one by one, when she consults her ledgers and sees whether she has anything which would suit them. + +"Well, when I called last week I was shown into the little office as usual, but I found that Miss Stoper was not alone. A prodigiously stout man with a very smiling face and a great heavy chin which rolled down in fold upon fold over his throat sat at her elbow with a pair of glasses on his nose, looking very earnestly at the ladies who entered. As I came in he gave quite a jump in his chair and turned quickly to Miss Stoper. + +" 'That will do,' said he; 'I could not ask for anything better. Capital! capital!' He seemed quite enthusiastic and rubbed his hands together in the most genial fashion. He was such a comfortable-looking man that it was quite a pleasure to look at him. + +" 'You are looking for a situation, miss?' he asked. + +" 'Yes, sir.' + +" 'As governess?' + +" 'Yes, sir.' + +" 'And what salary do you ask?' + +" 'I had $4 a month in my last place with Colonel Spence Munro.' + +" 'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his fat hands out into the air like a man who is in a boiling passion. 'How could anyone offer so pitiful a sum to a lady with such attractions and accomplishments?' + +" 'My accomplishments, sir, may be less than you imagine,' said I. 'A little French, a little German, music, and drawing--' + +" 'Tut, tut!' he cried. 'This is all quite beside the question. The point is, have you or have you not the bearing and deportment of a lady? There it is in a nutshell. If you have not, you are not fitted for the rearing of a child who may some day play a considerable part in the history of the country. But if you have why, then, how could any gentleman ask you to condescend to accept anything under the three figures? Your salary with me, madam, would commence at $100 a year.' + +"You may imagine, Mr. Holmes, that to me, destitute as I was, such an offer seemed almost too good to be true. The gentleman, however, seeing perhaps the look of incredulity upon my face, opened a pocket-book and took out a note. + +" 'It is also my custom,' said he, smiling in the most pleasant fashion until his eyes were just two little shining slits amid the white creases of his face, 'to advance to my young ladies half their salary beforehand, so that they may meet any little expenses of their journey and their wardrobe.' + +"It seemed to me that I had never met so fascinating and so thoughtful a man. As I was already in debt to my tradesmen, the advance was a great convenience, and yet there was something unnatural about the whole transaction which made me wish to know a little more before I quite committed myself. + +" 'May I ask where you live, sir?' said I. + +" 'Hampshire. Charming rural place. The Copper Beeches, five miles on the far side of Winchester. It is the most lovely country, my dear young lady, and the dearest old country-house.' + +" 'And my duties, sir? I should be glad to know what they would be.' + +" 'One child--one dear little romper just six years old. Oh, if you could see him killing cockroaches with a slipper! Smack! smack! smack! Three gone before you could wink!' He leaned back in his chair and laughed his eyes into his head again. + +"I was a little startled at the nature of the child's amusement, but the father's laughter made me think that perhaps he was joking. + +" 'My sole duties, then,' I asked, 'are to take charge of a single child?' + +" 'No, no, not the sole, not the sole, my dear young lady,' he cried. 'Your duty would be, as I am sure your good sense would suggest, to obey any little commands my wife might give, provided always that they were such commands as a lady might with propriety obey. You see no difficulty, heh?' + +" 'I should be happy to make myself useful.' + +" 'Quite so. In dress now, for example. We are faddy people, you know--faddy but kind-hearted. If you were asked to wear any dress which we might give you, you would not object to our little whim. Heh?' + +" 'No,' said I, considerably astonished at his words. + +" 'Or to sit here, or sit there, that would not be offensive to you?' + +" 'Oh, no.' + +" 'Or to cut your hair quite short before you come to us?' + +"I could hardly believe my ears. As you may observe, Mr. Holmes, my hair is somewhat luxuriant, and of a rather peculiar tint of chestnut. It has been considered artistic. I could not dream of sacrificing it in this offhand fashion. + +" 'I am afraid that that is quite impossible,' said I. He had been watching me eagerly out of his small eyes, and I could see a shadow pass over his face as I spoke. + +" 'I am afraid that it is quite essential,' said he. 'It is a little fancy of my wife's, and ladies' fancies, you know, madam, ladies' fancies must be consulted. And so you won't cut your hair?' + +" 'No, sir, I really could not,' I answered firmly. + +" 'Ah, very well; then that quite settles the matter. It is a pity, because in other respects you would really have done very nicely. In that case, Miss Stoper, I had best inspect a few more of your young ladies.' + +"The manageress had sat all this while busy with her papers without a word to either of us, but she glanced at me now with so much annoyance upon her face that I could not help suspecting that she had lost a handsome commission through my refusal. + +" 'Do you desire your name to be kept upon the books?' she asked. + +" 'If you please, Miss Stoper.' + +" 'Well, really, it seems rather useless, since you refuse the most excellent offers in this fashion,' said she sharply. 'You can hardly expect us to exert ourselves to find another such opening for you. Good-day to you, Miss Hunter.' She struck a gong upon the table, and I was shown out by the page. + +"Well, Mr. Holmes, when I got back to my lodgings and found little enough in the cupboard, and two or three bills upon the table. I began to ask myself whether I had not done a very foolish thing. After all, if these people had strange fads and expected obedience on the most extraordinary matters, they were at least ready to pay for their eccentricity. Very few governesses in England are getting $100 a year. Besides, what use was my hair to me? Many people are improved by wearing it short and perhaps I should be among the number. Next day I was inclined to think that I had made a mistake, and by the day after I was sure of it. I had almost overcome my pride so far as to go back to the agency and inquire whether the place was still open when I received this letter from the gentleman himself. I have it here and I will read it to you: + + +" 'The Copper Beeches, near Winchester. + +" 'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your address, and I write from here to ask you whether you have reconsidered your decision. My wife is very anxious that you should come, for she has been much attracted by my description of you. We are willing to give $30 a quarter, or $120 a year, so as to recompense you for any little inconvenience which our fads may cause you. They are not very exacting, after all. My wife is fond of a particular shade of electric blue and would like you to wear such a dress indoors in the morning. You need not, however, go to the expense of purchasing one, as we have one belonging to my dear daughter Alice (now in Philadelphia), which would, I should think, fit you very well. Then, as to sitting here or there, or amusing yourself in any manner indicated, that need cause you no inconvenience. As regards your hair, it is no doubt a pity, especially as I could not help remarking its beauty during our short interview, but I am afraid that I must remain firm upon this point, and I only hope that the increased salary may recompense you for the loss. Your duties, as far as the child is concerned, are very light. Now do try to come, and I shall meet you with the dog-cart at Winchester. Let me know your train. Yours faithfully, + + +" 'JEPHRO RUCASTLE.' + +"That is the letter which I have just received, Mr. Holmes, and my mind is made up that I will accept it. I thought, however, that before taking the final step I should like to submit the whole matter to your consideration." + +"Well, Miss Hunter, if your mind is made up, that settles the question," said Holmes, smiling. + +"But you would not advise me to refuse?" + +"I confess that it is not the situation which I should like to see a sister of mine apply for." + +"What is the meaning of it all, Mr. Holmes?" + +"Ah, I have no data. I cannot tell. Perhaps you have yourself formed some opinion?" + +"Well, there seems to me to be only one possible solution. Mr. Rucastle seemed to be a very kind, good-natured man. Is it not possible that his wife is a lunatic, that he desires to keep the matter quiet for fear she should be taken to an asylum, and that he humours her fancies in every way in order to prevent an outbreak?" + +"That is a possible solution--in fact, as matters stand, it is the most probable one. But in any case it does not seem to be a nice household for a young lady." + +"But the money, Mr. Holmes, the money!" + +"Well, yes, of course the pay is good--too good. That is what makes me uneasy. Why should they give you $120 a year, when they could have their pick for $40? There must be some strong reason behind." + +"I thought that if I told you the circumstances you would understand afterwards if I wanted your help. I should feel so much stronger if I felt that you were at the back of me." + +"Oh, you may carry that feeling away with you. I assure you that your little problem promises to be the most interesting which has come my way for some months. There is something distinctly novel about some of the features. If you should find yourself in doubt or in danger--" + +"Danger! What danger do you foresee?" + +Holmes shook his head gravely. "It would cease to be a danger if we could define it," said he. "But at any time, day or night, a telegram would bring me down to your help." + +"That is enough." She rose briskly from her chair with the anxiety all swept from her face. "I shall go down to Hampshire quite easy in my mind now. I shall write to Mr. Rucastle at once, sacrifice my poor hair to-night, and start for Winchester to-morrow." With a few grateful words to Holmes she bade us both good-night and bustled off upon her way. + +"At least," said I as we heard her quick, firm steps descending the stairs, "she seems to be a young lady who is very well able to take care of herself." + +"And she would need to be," said Holmes gravely. "I am much mistaken if we do not hear from her before many days are past." + +It was not very long before my friend's prediction was fulfilled. A fortnight went by, during which I frequently found my thoughts turning in her direction and wondering what strange side-alley of human experience this lonely woman had strayed into. The unusual salary, the curious conditions, the light duties, all pointed to something abnormal, though whether a fad or a plot, or whether the man were a philanthropist or a villain, it was quite beyond my powers to determine. As to Holmes, I observed that he sat frequently for half an hour on end, with knitted brows and an abstracted air, but he swept the matter away with a wave of his hand when I mentioned it. "Data! data! data!" he cried impatiently. "I can't make bricks without clay." And yet he would always wind up by muttering that no sister of his should ever have accepted such a situation. + +The telegram which we eventually received came late one night just as I was thinking of turning in and Holmes was settling down to one of those all-night chemical researches which he frequently indulged in, when I would leave him stooping over a retort and a test-tube at night and find him in the same position when I came down to breakfast in the morning. He opened the yellow envelope, and then, glancing at the message, threw it across to me. + +"Just look up the trains in Bradshaw," said he, and turned back to his chemical studies. + +The summons was a brief and urgent one. + +"Please be at the Black Swan Hotel at Winchester at midday to-morrow," it said. "Do come! I am at my wit's end. + + +"HUNTER." + +"Will you come with me?" asked Holmes, glancing up. + +"I should wish to." + +"Just look it up, then." + +"There is a train at half-past nine," said I, glancing over my Bradshaw. "It is due at Winchester at 11:30." + +"That will do very nicely. Then perhaps I had better postpone my analysis of the acetones, as we may need to be at our best in the morning." + +By eleven o'clock the next day we were well upon our way to the old English capital. Holmes had been buried in the morning papers all the way down, but after we had passed the Hampshire border he threw them down and began to admire the scenery. It was an ideal spring day, a light blue sky, flecked with little fleecy white clouds drifting across from west to east. The sun was shining very brightly, and yet there was an exhilarating nip in the air, which set an edge to a man's energy. All over the countryside, away to the rolling hills around Aldershot, the little red and grey roofs of the farm-steadings peeped out from amid the light green of the new foliage. + +"Are they not fresh and beautiful?" I cried with all the enthusiasm of a man fresh from the fogs of Baker Street. + +But Holmes shook his head gravely. + +"Do you know, Watson," said he, "that it is one of the curses of a mind with a turn like mine that I must look at everything with reference to my own special subject. You look at these scattered houses, and you are impressed by their beauty. I look at them, and the only thought which comes to me is a feeling of their isolation and of the impunity with which crime may be committed there." + +"Good heavens!" I cried. "Who would associate crime with these dear old homesteads?" + +"They always fill me with a certain horror. It is my belief, Watson, founded upon my experience, that the lowest and vilest alleys in London do not present a more dreadful record of sin than does the smiling and beautiful countryside." + +"You horrify me!" + +"But the reason is very obvious. The pressure of public opinion can do in the town what the law cannot accomplish. There is no lane so vile that the scream of a tortured child, or the thud of a drunkard's blow, does not beget sympathy and indignation among the neighbours, and then the whole machinery of justice is ever so close that a word of complaint can set it going, and there is but a step between the crime and the dock. But look at these lonely houses, each in its own fields, filled for the most part with poor ignorant folk who know little of the law. Think of the deeds of hellish cruelty, the hidden wickedness which may go on, year in, year out, in such places, and none the wiser. Had this lady who appeals to us for help gone to live in Winchester, I should never have had a fear for her. It is the five miles of country which makes the danger. Still, it is clear that she is not personally threatened." + +"No. If she can come to Winchester to meet us she can get away." + +"Quite so. She has her freedom." + +"What can be the matter, then? Can you suggest no explanation?" + +"I have devised seven separate explanations, each of which would cover the facts as far as we know them. But which of these is correct can only be determined by the fresh information which we shall no doubt find waiting for us. Well, there is the tower of the cathedral, and we shall soon learn all that Miss Hunter has to tell." + +The Black Swan is an inn of repute in the High Street, at no distance from the station, and there we found the young lady waiting for us. She had engaged a sitting-room, and our lunch awaited us upon the table. + +"I am so delighted that you have come," she said earnestly. "It is so very kind of you both; but indeed I do not know what I should do. Your advice will be altogether invaluable to me." + +"Pray tell us what has happened to you." + +"I will do so, and I must be quick, for I have promised Mr. Rucastle to be back before three. I got his leave to come into town this morning, though he little knew for what purpose." + +"Let us have everything in its due order." Holmes thrust his long thin legs out towards the fire and composed himself to listen. + +"In the first place, I may say that I have met, on the whole, with no actual ill-treatment from Mr. and Mrs. Rucastle. It is only fair to them to say that. But I cannot understand them, and I am not easy in my mind about them." + +"What can you not understand?" + +"Their reasons for their conduct. But you shall have it all just as it occurred. When I came down, Mr. Rucastle met me here and drove me in his dog-cart to the Copper Beeches. It is, as he said, beautifully situated, but it is not beautiful in itself, for it is a large square block of a house, whitewashed, but all stained and streaked with damp and bad weather. There are grounds round it, woods on three sides, and on the fourth a field which slopes down to the Southampton highroad, which curves past about a hundred yards from the front door. This ground in front belongs to the house, but the woods all round are part of Lord Southerton's preserves. A clump of copper beeches immediately in front of the hall door has given its name to the place. + +"I was driven over by my employer, who was as amiable as ever, and was introduced by him that evening to his wife and the child. There was no truth, Mr. Holmes, in the conjecture which seemed to us to be probable in your rooms at Baker Street. Mrs. Rucastle is not mad. I found her to be a silent, pale-faced woman, much younger than her husband, not more than thirty, I should think, while he can hardly be less than forty-five. From their conversation I have gathered that they have been married about seven years, that he was a widower, and that his only child by the first wife was the daughter who has gone to Philadelphia. Mr. Rucastle told me in private that the reason why she had left them was that she had an unreasoning aversion to her stepmother. As the daughter could not have been less than twenty, I can quite imagine that her position must have been uncomfortable with her father's young wife. + +"Mrs. Rucastle seemed to me to be colourless in mind as well as in feature. She impressed me neither favourably nor the reverse. She was a nonentity. It was easy to see that she was passionately devoted both to her husband and to her little son. Her light grey eyes wandered continually from one to the other, noting every little want and forestalling it if possible. He was kind to her also in his bluff, boisterous fashion, and on the whole they seemed to be a happy couple. And yet she had some secret sorrow, this woman. She would often be lost in deep thought, with the saddest look upon her face. More than once I have surprised her in tears. I have thought sometimes that it was the disposition of her child which weighed upon her mind, for I have never met so utterly spoiled and so ill-natured a little creature. He is small for his age, with a head which is quite disproportionately large. His whole life appears to be spent in an alternation between savage fits of passion and gloomy intervals of sulking. Giving pain to any creature weaker than himself seems to be his one idea of amusement, and he shows quite remarkable talent in planning the capture of mice, little birds, and insects. But I would rather not talk about the creature, Mr. Holmes, and, indeed, he has little to do with my story." + +"I am glad of all details," remarked my friend, "whether they seem to you to be relevant or not." + +"I shall try not to miss anything of importance. The one unpleasant thing about the house, which struck me at once, was the appearance and conduct of the servants. There are only two, a man and his wife. Toller, for that is his name, is a rough, uncouth man, with grizzled hair and whiskers, and a perpetual smell of drink. Twice since I have been with them he has been quite drunk, and yet Mr. Rucastle seemed to take no notice of it. His wife is a very tall and strong woman with a sour face, as silent as Mrs. Rucastle and much less amiable. They are a most unpleasant couple, but fortunately I spend most of my time in the nursery and my own room, which are next to each other in one corner of the building. + +"For two days after my arrival at the Copper Beeches my life was very quiet; on the third, Mrs. Rucastle came down just after breakfast and whispered something to her husband. + +" 'Oh, yes,' said he, turning to me, 'we are very much obliged to you, Miss Hunter, for falling in with our whims so far as to cut your hair. I assure you that it has not detracted in the tiniest iota from your appearance. We shall now see how the electric-blue dress will become you. You will find it laid out upon the bed in your room, and if you would be so good as to put it on we should both be extremely obliged.' + +"The dress which I found waiting for me was of a peculiar shade of blue. It was of excellent material, a sort of beige, but it bore unmistakable signs of having been worn before. It could not have been a better fit if I had been measured for it. Both Mr. and Mrs. Rucastle expressed a delight at the look of it, which seemed quite exaggerated in its vehemence. They were waiting for me in the drawing-room, which is a very large room, stretching along the entire front of the house, with three long windows reaching down to the floor. A chair had been placed close to the central window, with its back turned towards it. In this I was asked to sit, and then Mr. Rucastle, walking up and down on the other side of the room, began to tell me a series of the funniest stories that I have ever listened to. You cannot imagine how comical he was, and I laughed until I was quite weary. Mrs. Rucastle, however, who has evidently no sense of humour, never so much as smiled, but sat with her hands in her lap, and a sad, anxious look upon her face. After an hour or so, Mr. Rucastle suddenly remarked that it was time to commence the duties of the day, and that I might change my dress and go to little Edward in the nursery. + +"Two days later this same performance was gone through under exactly similar circumstances. Again I changed my dress, again I sat in the window, and again I laughed very heartily at the funny stories of which my employer had an immense repertoire, and which he told inimitably. Then he handed me a yellow-backed novel, and moving my chair a little sideways, that my own shadow might not fall upon the page, he begged me to read aloud to him. I read for about ten minutes, beginning in the heart of a chapter, and then suddenly, in the middle of a sentence, he ordered me to cease and to change my dress. + +"You can easily imagine, Mr. Holmes, how curious I became as to what the meaning of this extraordinary performance could possibly be. They were always very careful, I observed, to turn my face away from the window, so that I became consumed with the desire to see what was going on behind my back. At first it seemed to be impossible, but I soon devised a means. My hand-mirror had been broken, so a happy thought seized me, and I concealed a piece of the glass in my handkerchief. On the next occasion, in the midst of my laughter, I put my handkerchief up to my eyes, and was able with a little management to see all that there was behind me. I confess that I was disappointed. There was nothing. At least that was my first impression. At the second glance, however, I perceived that there was a man standing in the Southampton Road, a small bearded man in a grey suit, who seemed to be looking in my direction. The road is an important highway, and there are usually people there. This man, however, was leaning against the railings which bordered our field and was looking earnestly up. I lowered my handkerchief and glanced at Mrs. Rucastle to find her eyes fixed upon me with a most searching gaze. She said nothing, but I am convinced that she had divined that I had a mirror in my hand and had seen what was behind me. She rose at once. + +" 'Jephro,' said she, 'there is an impertinent fellow upon the road there who stares up at Miss Hunter.' + +" 'No friend of yours, Miss Hunter?' he asked. + +" 'No, I know no one in these parts.' + +" 'Dear me! How very impertinent! Kindly turn round and motion to him to go away.' + +" 'Surely it would be better to take no notice.' + +" 'No, no, we should have him loitering here always. Kindly turn round and wave him away like that.' + +"I did as I was told, and at the same instant Mrs. Rucastle drew down the blind. That was a week ago, and from that time I have not sat again in the window, nor have I worn the blue dress, nor seen the man in the road." + +"Pray continue," said Holmes. "Your narrative promises to be a most interesting one." + +"You will find it rather disconnected, I fear, and there may prove to be little relation between the different incidents of which I speak. On the very first day that I was at the Copper Beeches, Mr. Rucastle took me to a small outhouse which stands near the kitchen door. As we approached it I heard the sharp rattling of a chain, and the sound as of a large animal moving about. + +" 'Look in here!' said Mr. Rucastle, showing me a slit between two planks. 'Is he not a beauty?' + +"I looked through and was conscious of two glowing eyes, and of a vague figure huddled up in the darkness. + +" 'Don't be frightened,' said my employer, laughing at the start which I had given. 'It's only Carlo, my mastiff. I call him mine, but really old Toller, my groom, is the only man who can do anything with him. We feed him once a day, and not too much then, so that he is always as keen as mustard. Toller lets him loose every night, and God help the trespasser whom he lays his fangs upon. For goodness' sake don't you ever on any pretext set your foot over the threshold at night, for it's as much as your life is worth.' + +"The warning was no idle one, for two nights later I happened to look out of my bedroom window about two o'clock in the morning. It was a beautiful moonlight night, and the lawn in front of the house was silvered over and almost as bright as day. I was standing, rapt in the peaceful beauty of the scene, when I was aware that something was moving under the shadow of the copper beeches. As it emerged into the moonshine I saw what it was. It was a giant dog, as large as a calf, tawny tinted, with hanging jowl, black muzzle, and huge projecting bones. It walked slowly across the lawn and vanished into the shadow upon the other side. That dreadful sentinel sent a chill to my heart which I do not think that any burglar could have done. + +"And now I have a very strange experience to tell you. I had, as you know, cut off my hair in London, and I had placed it in a great coil at the bottom of my trunk. One evening, after the child was in bed, I began to amuse myself by examining the furniture of my room and by rearranging my own little things. There was an old chest of drawers in the room, the two upper ones empty and open, the lower one locked. I had filled the first two with my linen, and as I had still much to pack away I was naturally annoyed at not having the use of the third drawer. It struck me that it might have been fastened by a mere oversight, so I took out my bunch of keys and tried to open it. The very first key fitted to perfection, and I drew the drawer open. There was only one thing in it, but I am sure that you would never guess what it was. It was my coil of hair. + +"I took it up and examined it. It was of the same peculiar tint, and the same thickness. But then the impossibility of the thing obtruded itself upon me. How could my hair have been locked in the drawer? With trembling hands I undid my trunk, turned out the contents, and drew from the bottom my own hair. I laid the two tresses together, and I assure you that they were identical. Was it not extraordinary? Puzzle as I would, I could make nothing at all of what it meant. I returned the strange hair to the drawer, and I said nothing of the matter to the Rucastles as I felt that I had put myself in the wrong by opening a drawer which they had locked. + +"I am naturally observant, as you may have remarked, Mr. Holmes, and I soon had a pretty good plan of the whole house in my head. There was one wing, however, which appeared not to be inhabited at all. A door which faced that which led into the quarters of the Tollers opened into this suite, but it was invariably locked. One day, however, as I ascended the stair, I met Mr. Rucastle coming out through this door, his keys in his hand, and a look on his face which made him a very different person to the round, jovial man to whom I was accustomed. His cheeks were red, his brow was all crinkled with anger, and the veins stood out at his temples with passion. He locked the door and hurried past me without a word or a look. + +"This aroused my curiosity, so when I went out for a walk in the grounds with my charge, I strolled round to the side from which I could see the windows of this part of the house. There were four of them in a row, three of which were simply dirty, while the fourth was shuttered up. They were evidently all deserted. As I strolled up and down, glancing at them occasionally, Mr. Rucastle came out to me, looking as merry and jovial as ever. + +" 'Ah!' said he, 'you must not think me rude if I passed you without a word, my dear young lady. I was preoccupied with business matters.' + +"I assured him that I was not offended. 'By the way,' said I, 'you seem to have quite a suite of spare rooms up there, and one of them has the shutters up.' + +"He looked surprised and, as it seemed to me, a little startled at my remark. + +" 'Photography is one of my hobbies,' said he. 'I have made my dark room up there. But, dear me! what an observant young lady we have come upon. Who would have believed it? Who would have ever believed it?' He spoke in a jesting tone, but there was no jest in his eyes as he looked at me. I read suspicion there and annoyance, but no jest. + +"Well, Mr. Holmes, from the moment that I understood that there was something about that suite of rooms which I was not to know, I was all on fire to go over them. It was not mere curiosity, though I have my share of that. It was more a feeling of duty--a feeling that some good might come from my penetrating to this place. They talk of woman's instinct; perhaps it was woman's instinct which gave me that feeling. At any rate, it was there, and I was keenly on the lookout for any chance to pass the forbidden door. + +"It was only yesterday that the chance came. I may tell you that, besides Mr. Rucastle, both Toller and his wife find something to do in these deserted rooms, and I once saw him carrying a large black linen bag with him through the door. Recently he has been drinking hard, and yesterday evening he was very drunk; and when I came upstairs there was the key in the door. I have no doubt at all that he had left it there. Mr. and Mrs. Rucastle were both downstairs, and the child was with them, so that I had an admirable opportunity. I turned the key gently in the lock, opened the door, and slipped through. + +"There was a little passage in front of me, unpapered and uncarpeted, which turned at a right angle at the farther end. Round this corner were three doors in a line, the first and third of which were open. They each led into an empty room, dusty and cheerless, with two windows in the one and one in the other, so thick with dirt that the evening light glimmered dimly through them. The centre door was closed, and across the outside of it had been fastened one of the broad bars of an iron bed, padlocked at one end to a ring in the wall, and fastened at the other with stout cord. The door itself was locked as well, and the key was not there. This barricaded door corresponded clearly with the shuttered window outside, and yet I could see by the glimmer from beneath it that the room was not in darkness. Evidently there was a skylight which let in light from above. As I stood in the passage gazing at the sinister door and wondering what secret it might veil, I suddenly heard the sound of steps within the room and saw a shadow pass backward and forward against the little slit of dim light which shone out from under the door. A mad, unreasoning terror rose up in me at the sight, Mr. Holmes. My overstrung nerves failed me suddenly, and I turned and ran--ran as though some dreadful hand were behind me clutching at the skirt of my dress. I rushed down the passage, through the door, and straight into the arms of Mr. Rucastle, who was waiting outside. + +" 'So,' said he, smiling, 'it was you, then. I thought that it must be when I saw the door open.' + +" 'Oh, I am so frightened!' I panted. + +" 'My dear young lady! my dear young lady!'--you cannot think how caressing and soothing his manner was--'and what has frightened you, my dear young lady?' + +"But his voice was just a little too coaxing. He overdid it. I was keenly on my guard against him. + +" 'I was foolish enough to go into the empty wing,' I answered. 'But it is so lonely and eerie in this dim light that I was frightened and ran out again. Oh, it is so dreadfully still in there!' + +" 'Only that?' said he, looking at me keenly. + +" 'Why, what did you think?' I asked. + +" 'Why do you think that I lock this door?' + +" 'I am sure that I do not know.' + +" 'It is to keep people out who have no business there. Do you see?' He was still smiling in the most amiable manner. + +" 'I am sure if I had known--' + +" 'Well, then, you know now. And if you ever put your foot over that threshold again'--here in an instant the smile hardened into a grin of rage, and he glared down at me with the face of a demon--'I'll throw you to the mastiff.' + +"I was so terrified that I do not know what I did. I suppose that I must have rushed past him into my room. I remember nothing until I found myself lying on my bed trembling all over. Then I thought of you, Mr. Holmes. I could not live there longer without some advice. I was frightened of the house, of the man, of the woman, of the servants, even of the child. They were all horrible to me. If I could only bring you down all would be well. Of course I might have fled from the house, but my curiosity was almost as strong as my fears. My mind was soon made up. I would send you a wire. I put on my hat and cloak, went down to the office, which is about half a mile from the house, and then returned, feeling very much easier. A horrible doubt came into my mind as I approached the door lest the dog might be loose, but I remembered that Toller had drunk himself into a state of insensibility that evening, and I knew that he was the only one in the household who had any influence with the savage creature, or who would venture to set him free. I slipped in in safety and lay awake half the night in my joy at the thought of seeing you. I had no difficulty in getting leave to come into Winchester this morning, but I must be back before three o'clock, for Mr. and Mrs. Rucastle are going on a visit, and will be away all the evening, so that I must look after the child. Now I have told you all my adventures, Mr. Holmes, and I should be very glad if you could tell me what it all means, and, above all, what I should do." + +Holmes and I had listened spellbound to this extraordinary story. My friend rose now and paced up and down the room, his hands in his pockets, and an expression of the most profound gravity upon his face. + +"Is Toller still drunk?" he asked. + +"Yes. I heard his wife tell Mrs. Rucastle that she could do nothing with him." + +"That is well. And the Rucastles go out to-night?" + +"Yes." + +"Is there a cellar with a good strong lock?" + +"Yes, the wine-cellar." + +"You seem to me to have acted all through this matter like a very brave and sensible girl, Miss Hunter. Do you think that you could perform one more feat? I should not ask it of you if I did not think you a quite exceptional woman." + +"I will try. What is it?" + +"We shall be at the Copper Beeches by seven o'clock, my friend and I. The Rucastles will be gone by that time, and Toller will, we hope, be incapable. There only remains Mrs. Toller, who might give the alarm. If you could send her into the cellar on some errand, and then turn the key upon her, you would facilitate matters immensely." + +"I will do it." + +"Excellent! We shall then look thoroughly into the affair. Of course there is only one feasible explanation. You have been brought there to personate someone, and the real person is imprisoned in this chamber. That is obvious. As to who this prisoner is, I have no doubt that it is the daughter, Miss Alice Rucastle, if I remember right, who was said to have gone to America. You were chosen, doubtless, as resembling her in height, figure, and the colour of your hair. Hers had been cut off, very possibly in some illness through which she has passed, and so, of course, yours had to be sacrificed also. By a curious chance you came upon her tresses. The man in the road was undoubtedly some friend of hers--possibly her fiance--and no doubt, as you wore the girl's dress and were so like her, he was convinced from your laughter, whenever he saw you, and afterwards from your gesture, that Miss Rucastle was perfectly happy, and that she no longer desired his attentions. The dog is let loose at night to prevent him from endeavouring to communicate with her. So much is fairly clear. The most serious point in the case is the disposition of the child." + +"What on earth has that to do with it?" I ejaculated. + +"My dear Watson, you as a medical man are continually gaining light as to the tendencies of a child by the study of the parents. Don't you see that the converse is equally valid. I have frequently gained my first real insight into the character of parents by studying their children. This child's disposition is abnormally cruel, merely for cruelty's sake, and whether he derives this from his smiling father, as I should suspect, or from his mother, it bodes evil for the poor girl who is in their power." + +"I am sure that you are right, Mr. Holmes," cried our client. "A thousand things come back to me which make me certain that you have hit it. Oh, let us lose not an instant in bringing help to this poor creature." + +"We must be circumspect, for we are dealing with a very cunning man. We can do nothing until seven o'clock. At that hour we shall be with you, and it will not be long before we solve the mystery." + +We were as good as our word, for it was just seven when we reached the Copper Beeches, having put up our trap at a wayside public-house. The group of trees, with their dark leaves shining like burnished metal in the light of the setting sun, were sufficient to mark the house even had Miss Hunter not been standing smiling on the door-step. + +"Have you managed it?" asked Holmes. + +A loud thudding noise came from somewhere downstairs. "That is Mrs. Toller in the cellar," said she. "Her husband lies snoring on the kitchen rug. Here are his keys, which are the duplicates of Mr. Rucastle's." + +"You have done well indeed!" cried Holmes with enthusiasm. "Now lead the way, and we shall soon see the end of this black business." + +We passed up the stair, unlocked the door, followed on down a passage, and found ourselves in front of the barricade which Miss Hunter had described. Holmes cut the cord and removed the transverse bar. Then he tried the various keys in the lock, but without success. No sound came from within, and at the silence Holmes' face clouded over. + +"I trust that we are not too late," said he. "I think, Miss Hunter, that we had better go in without you. Now, Watson, put your shoulder to it, and we shall see whether we cannot make our way in." + +It was an old rickety door and gave at once before our united strength. Together we rushed into the room. It was empty. There was no furniture save a little pallet bed, a small table, and a basketful of linen. The skylight above was open, and the prisoner gone. + +"There has been some villainy here," said Holmes; "this beauty has guessed Miss Hunter's intentions and has carried his victim off." + +"But how?" + +"Through the skylight. We shall soon see how he managed it." He swung himself up onto the roof. "Ah, yes," he cried, "here's the end of a long light ladder against the eaves. That is how he did it." + +"But it is impossible," said Miss Hunter; "the ladder was not there when the Rucastles went away." + +"He has come back and done it. I tell you that he is a clever and dangerous man. I should not be very much surprised if this were he whose step I hear now upon the stair. I think, Watson, that it would be as well for you to have your pistol ready." + +The words were hardly out of his mouth before a man appeared at the door of the room, a very fat and burly man, with a heavy stick in his hand. Miss Hunter screamed and shrunk against the wall at the sight of him, but Sherlock Holmes sprang forward and confronted him. + +"You villain!" said he, "where's your daughter?" + +The fat man cast his eyes round, and then up at the open skylight. + +"It is for me to ask you that," he shrieked, "you thieves! Spies and thieves! I have caught you, have I? You are in my power. I'll serve you!" He turned and clattered down the stairs as hard as he could go. + +"He's gone for the dog!" cried Miss Hunter. + +"I have my revolver," said I. + +"Better close the front door," cried Holmes, and we all rushed down the stairs together. We had hardly reached the hall when we heard the baying of a hound, and then a scream of agony, with a horrible worrying sound which it was dreadful to listen to. An elderly man with a red face and shaking limbs came staggering out at a side door. + +"My God!" he cried. "Someone has loosed the dog. It's not been fed for two days. Quick, quick, or it'll be too late!" + +Holmes and I rushed out and round the angle of the house, with Toller hurrying behind us. There was the huge famished brute, its black muzzle buried in Rucastle's throat, while he writhed and screamed upon the ground. Running up, I blew its brains out, and it fell over with its keen white teeth still meeting in the great creases of his neck. With much labour we separated them and carried him, living but horribly mangled, into the house. We laid him upon the drawing-room sofa, and having dispatched the sobered Toller to bear the news to his wife, I did what I could to relieve his pain. We were all assembled round him when the door opened, and a tall, gaunt woman entered the room. + +"Mrs. Toller!" cried Miss Hunter. + +"Yes, miss. Mr. Rucastle let me out when he came back before he went up to you. Ah, miss, it is a pity you didn't let me know what you were planning, for I would have told you that your pains were wasted." + +"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. Toller knows more about this matter than anyone else." + +"Yes, sir, I do, and I am ready enough to tell what I know." + +"Then, pray, sit down, and let us hear it for there are several points on which I must confess that I am still in the dark." + +"I will soon make it clear to you," said she; "and I'd have done so before now if I could ha' got out from the cellar. If there's police-court business over this, you'll remember that I was the one that stood your friend, and that I was Miss Alice's friend too. + +"She was never happy at home, Miss Alice wasn't, from the time that her father married again. She was slighted like and had no say in anything, but it never really became bad for her until after she met Mr. Fowler at a friend's house. As well as I could learn, Miss Alice had rights of her own by will, but she was so quiet and patient, she was, that she never said a word about them but just left everything in Mr. Rucastle's hands. He knew he was safe with her; but when there was a chance of a husband coming forward, who would ask for all that the law would give him, then her father thought it time to put a stop on it. He wanted her to sign a paper, so that whether she married or not, he could use her money. When she wouldn't do it, he kept on worrying her until she got brain-fever, and for six weeks was at death's door. Then she got better at last, all worn to a shadow, and with her beautiful hair cut off; but that didn't make no change in her young man, and he stuck to her as true as man could be." + +"Ah," said Holmes, "I think that what you have been good enough to tell us makes the matter fairly clear, and that I can deduce all that remains. Mr. Rucastle then, I presume, took to this system of imprisonment?" + +"Yes, sir." + +"And brought Miss Hunter down from London in order to get rid of the disagreeable persistence of Mr. Fowler." + +"That was it, sir." + +"But Mr. Fowler being a persevering man, as a good seaman should be, blockaded the house, and having met you succeeded by certain arguments, metallic or otherwise, in convincing you that your interests were the same as his." + +"Mr. Fowler was a very kind-spoken, free-handed gentleman," said Mrs. Toller serenely. + +"And in this way he managed that your good man should have no want of drink, and that a ladder should be ready at the moment when your master had gone out." + +"You have it, sir, just as it happened." + +"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for you have certainly cleared up everything which puzzled us. And here comes the country surgeon and Mrs. Rucastle, so I think, Watson, that we had best escort Miss Hunter back to Winchester, as it seems to me that our locus standi now is rather a questionable one." + +And thus was solved the mystery of the sinister house with the copper beeches in front of the door. Mr. Rucastle survived, but was always a broken man, kept alive solely through the care of his devoted wife. They still live with their old servants, who probably know so much of Rucastle's past life that he finds it difficult to part from them. Mr. Fowler and Miss Rucastle were married, by special license, in Southampton the day after their flight, and he is now the holder of a government appointment in the island of Mauritius. As to Miss Violet Hunter, my friend Holmes, rather to my disappointment, manifested no further interest in her when once she had ceased to be the centre of one of his problems, and she is now the head of a private school at Walsall, where I believe that she has met with considerable success. + +*** END OF THE PROJECT GUTENBERG EBOOK, THE ADVENTURES OF SHERLOCK HOLMES *** + +This file should be named advsh12h.htm or advsh12h.zip +Corrected EDITIONS of our eBooks get a new NUMBER, advsh13h.txt +VERSIONS based on separate sources get new LETTER, advsh12ah.txt + +Project Gutenberg eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the US +unless a copyright notice is included. Thus, we usually do not +keep eBooks in compliance with any particular paper edition. + +We are now trying to release all our eBooks one year in advance +of the official release dates, leaving time for better editing. +Please be encouraged to tell us about any error or corrections, +even years after the official publication date. + +Please note neither this listing nor its contents are final til +midnight of the last day of the month of any such announcement. +The official release date of all Project Gutenberg eBooks is at +Midnight, Central Time, of the last day of the stated month. A +preliminary version may often be posted for suggestion, comment +and editing by those who wish to do so. + +Most people start at our Web sites at: +http://gutenberg.net or +http://promo.net/pg + +These Web sites include award-winning information about Project +Gutenberg, including how to donate, how to help produce our new +eBooks, and how to subscribe to our email newsletter (free!). + + +Those of you who want to download any eBook before announcement +can get to them as follows, and just download by date. This is +also a good way to get them instantly upon announcement, as the +indexes our cataloguers produce obviously take a while after an +announcement goes out in the Project Gutenberg Newsletter. + +http://www.ibiblio.org/gutenberg/etext04 or +ftp://ftp.ibiblio.org/pub/docs/books/gutenberg/etext03 + +Or /etext03, 02, 01, 00, 99, 98, 97, 96, 95, 94, 93, 92, 92, 91 or 90 + +Just search by the first five letters of the filename you want, +as it appears in our Newsletters. + + +Information about Project Gutenberg (one page) + +We produce about two million dollars for each hour we work. The +time it takes us, a rather conservative estimate, is fifty hours +to get any eBook selected, entered, proofread, edited, copyright +searched and analyzed, the copyright letters written, etc. Our +projected audience is one hundred million readers. If the value +per text is nominally estimated at one dollar then we produce $2 +million dollars per hour in 2002 as we release over 100 new text +files per month: 1240 more eBooks in 2001 for a total of 4000+ +We are already on our way to trying for 2000 more eBooks in 2002 +If they reach just 1-2% of the world's population then the total +will reach over half a trillion eBooks given away by year's end. + +The Goal of Project Gutenberg is to Give Away 1 Trillion eBooks! +This is ten thousand titles each to one hundred million readers, +which is only about 4% of the present number of computer users. + +Here is the briefest record of our progress (* means estimated): + +eBooks Year Month + + 1 1971 July + 10 1991 January + 100 1994 January + 1000 1997 August + 1500 1998 October + 2000 1999 December + 2500 2000 December + 3000 2001 November + 4000 2001 October/November + 6000 2002 December* + 9000 2003 November* +10000 2004 January* + + +The Project Gutenberg Literary Archive Foundation has been created +to secure a future for Project Gutenberg into the next millennium. + +We need your donations more than ever! + +As of February, 2002, contributions are being solicited from people +and organizations in: Alabama, Alaska, Arkansas, Connecticut, +Delaware, District of Columbia, Florida, Georgia, Hawaii, Illinois, +Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Massachusetts, +Michigan, Mississippi, Missouri, Montana, Nebraska, Nevada, New +Hampshire, New Jersey, New Mexico, New York, North Carolina, Ohio, +Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South +Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West +Virginia, Wisconsin, and Wyoming. + +We have filed in all 50 states now, but these are the only ones +that have responded. + +As the requirements for other states are met, additions to this list +will be made and fund raising will begin in the additional states. +Please feel free to ask to check the status of your state. + +In answer to various questions we have received on this: + +We are constantly working on finishing the paperwork to legally +request donations in all 50 states. If your state is not listed and +you would like to know if we have added it since the list you have, +just ask. + +While we cannot solicit donations from people in states where we are +not yet registered, we know of no prohibition against accepting +donations from donors in these states who approach us with an offer to +donate. + +International donations are accepted, but we don't know ANYTHING about +how to make them tax-deductible, or even if they CAN be made +deductible, and don't have the staff to handle it even if there are +ways. + +Donations by check or money order may be sent to: + +Project Gutenberg Literary Archive Foundation +PMB 113 +1739 University Ave. +Oxford, MS 38655-4109 + +Contact us if you want to arrange for a wire transfer or payment +method other than by check or money order. + +The Project Gutenberg Literary Archive Foundation has been approved by +the US Internal Revenue Service as a 501(c)(3) organization with EIN +[Employee Identification Number] 64-622154. Donations are +tax-deductible to the maximum extent permitted by law. As fund-raising +requirements for other states are met, additions to this list will be +made and fund-raising will begin in the additional states. + +We need your donations more than ever! + +You can get up to date donation information online at: + +http://www.gutenberg.net/donation.html + + +*** + +If you can't reach Project Gutenberg, +you can always email directly to: + +Michael S. Hart + +Prof. Hart will answer or forward your message. + +We would prefer to send you information by email. + + +**The Legal Small Print** + + +(Three Pages) + +***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN EBOOKS**START*** +Why is this "Small Print!" statement here? You know: lawyers. +They tell us you might sue us if there is something wrong with +your copy of this eBook, even if you got it for free from +someone other than us, and even if what's wrong is not our +fault. So, among other things, this "Small Print!" statement +disclaims most of our liability to you. It also tells you how +you may distribute copies of this eBook if you want to. + +*BEFORE!* YOU USE OR READ THIS EBOOK +By using or reading any part of this PROJECT GUTENBERG-tm +eBook, you indicate that you understand, agree to and accept +this "Small Print!" statement. If you do not, you can receive +a refund of the money (if any) you paid for this eBook by +sending a request within 30 days of receiving it to the person +you got it from. If you received this eBook on a physical +medium (such as a disk), you must return it with your request. + +ABOUT PROJECT GUTENBERG-TM EBOOKS +This PROJECT GUTENBERG-tm eBook, like most PROJECT GUTENBERG-tm eBooks, +is a "public domain" work distributed by Professor Michael S. Hart +through the Project Gutenberg Association (the "Project"). +Among other things, this means that no one owns a United States copyright +on or for this work, so the Project (and you!) can copy and +distribute it in the United States without permission and +without paying copyright royalties. Special rules, set forth +below, apply if you wish to copy and distribute this eBook +under the "PROJECT GUTENBERG" trademark. + +Please do not use the "PROJECT GUTENBERG" trademark to market +any commercial products without permission. + +To create these eBooks, the Project expends considerable +efforts to identify, transcribe and proofread public domain +works. Despite these efforts, the Project's eBooks and any +medium they may be on may contain "Defects". Among other +things, Defects may take the form of incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged +disk or other eBook medium, a computer virus, or computer +codes that damage or cannot be read by your equipment. + +LIMITED WARRANTY; DISCLAIMER OF DAMAGES +But for the "Right of Replacement or Refund" described below, +[1] Michael Hart and the Foundation (and any other party you may +receive this eBook from as a PROJECT GUTENBERG-tm eBook) disclaims +all liability to you for damages, costs and expenses, including +legal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR +UNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT, +INCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE +OR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE +POSSIBILITY OF SUCH DAMAGES. + +If you discover a Defect in this eBook within 90 days of +receiving it, you can receive a refund of the money (if any) +you paid for it by sending an explanatory note within that +time to the person you received it from. If you received it +on a physical medium, you must return it with your note, and +such person may choose to alternatively give you a replacement +copy. If you received it electronically, such person may +choose to alternatively give you a second opportunity to +receive it electronically. + +THIS EBOOK IS OTHERWISE PROVIDED TO YOU "AS-IS". NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS +TO THE EBOOK OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A +PARTICULAR PURPOSE. + +Some states do not allow disclaimers of implied warranties or +the exclusion or limitation of consequential damages, so the +above disclaimers and exclusions may not apply to you, and you +may have other legal rights. + +INDEMNITY +You will indemnify and hold Michael Hart, the Foundation, +and its trustees and agents, and any volunteers associated +with the production and distribution of Project Gutenberg-tm +texts harmless, from all liability, cost and expense, including +legal fees, that arise directly or indirectly from any of the +following that you do or cause: [1] distribution of this eBook, +[2] alteration, modification, or addition to the eBook, +or [3] any Defect. + +DISTRIBUTION UNDER "PROJECT GUTENBERG-tm" +You may distribute copies of this eBook electronically, or by +disk, book or any other medium if you either delete this +"Small Print!" and all other references to Project Gutenberg, +or: + +[1] Only give exact copies of it. Among other things, this + requires that you do not remove, alter or modify the + eBook or this "small print!" statement. You may however, + if you wish, distribute this eBook in machine readable + binary, compressed, mark-up, or proprietary form, + including any form resulting from conversion by word + processing or hypertext software, but only so long as + *EITHER*: + + [*] The eBook, when displayed, is clearly readable, and + does *not* contain characters other than those + intended by the author of the work, although tilde + (~), asterisk (*) and underline (_) characters may + be used to convey punctuation intended by the + author, and additional characters may be used to + indicate hypertext links; OR + + [*] The eBook may be readily converted by the reader at + no expense into plain ASCII, EBCDIC or equivalent + form by the program that displays the eBook (as is + the case, for instance, with most word processors); + OR + + [*] You provide, or agree to also provide on request at + no additional cost, fee or expense, a copy of the + eBook in its original plain ASCII form (or in EBCDIC + or other equivalent proprietary form). + +[2] Honor the eBook refund and replacement provisions of this + "Small Print!" statement. + +[3] Pay a trademark license fee to the Foundation of 20% of the + gross profits you derive calculated using the method you + already use to calculate your applicable taxes. If you + don't derive profits, no royalty is due. Royalties are + payable to "Project Gutenberg Literary Archive Foundation" + the 60 days following each date you prepare (or were + legally required to prepare) your annual (or equivalent + periodic) tax return. Please contact us beforehand to + let us know your plans and to work out the details. + +WHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO? +Project Gutenberg is dedicated to increasing the number of +public domain and licensed works that can be freely distributed +in machine readable form. + +The Project gratefully accepts contributions of money, time, +public domain materials, or royalty free copyright licenses. +Money should be paid to the: +"Project Gutenberg Literary Archive Foundation." + +If you are interested in contributing scanning equipment or +software or other items, please contact Michael Hart at: +hart@pobox.com + +[Portions of this eBook's header and trailer may be reprinted only +when distributed free of all fees. Copyright (C) 2001, 2002 by +Michael S. Hart. Project Gutenberg is a TradeMark and may not be +used in any sales of Project Gutenberg eBooks or other materials be +they hardware or software or any other related product without +express permission.] + +*END THE SMALL PRINT! FOR PUBLIC DOMAIN EBOOKS*Ver.02/11/02*END* + + + +The Project Gutenberg EBook of History of the United States +by Charles A. Beard and Mary R. Beard + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.net + + +Title: History of the United States + +Author: Charles A. Beard and Mary R. Beard + +Release Date: October 28, 2005 [EBook #16960] + +Language: English + +Character set encoding: ISO-8859-1 + +*** START OF THIS PROJECT GUTENBERG EBOOK HISTORY OF THE UNITED STATES *** + + + + +Produced by Curtis Weyant, M and the Online Distributed +Proofreading Team at http://www.pgdp.net + + + + + + + +HISTORY + +OF THE + +UNITED STATES + + +BY + + +CHARLES A. BEARD + +AND + +MARY R. BEARD + + + +New York + +THE MACMILLAN COMPANY + +1921 + +_All rights reserved_ + +COPYRIGHT, 1921, + +BY THE MACMILLAN COMPANY. + + +Set up and electrotyped. Published March, 1921. + + + + +Norwood Press + +J.S. Cushing Co.--Berwick & Smith Co. + +NORWOOD, MASS., U.S.A. + + + + +PREFACE + + +As things now stand, the course of instruction in American history in +our public schools embraces three distinct treatments of the subject. +Three separate books are used. First, there is the primary book, which +is usually a very condensed narrative with emphasis on biographies and +anecdotes. Second, there is the advanced text for the seventh or eighth +grade, generally speaking, an expansion of the elementary book by the +addition of forty or fifty thousand words. Finally, there is the high +school manual. This, too, ordinarily follows the beaten path, giving +fuller accounts of the same events and characters. To put it bluntly, we +do not assume that our children obtain permanent possessions from their +study of history in the lower grades. If mathematicians followed the +same method, high school texts on algebra and geometry would include the +multiplication table and fractions. + +There is, of course, a ready answer to the criticism advanced above. It +is that teachers have learned from bitter experience how little history +their pupils retain as they pass along the regular route. No teacher of +history will deny this. Still it is a standing challenge to existing +methods of historical instruction. If the study of history cannot be +made truly progressive like the study of mathematics, science, and +languages, then the historians assume a grave responsibility in adding +their subject to the already overloaded curriculum. If the successive +historical texts are only enlarged editions of the first text--more +facts, more dates, more words--then history deserves most of the sharp +criticism which it is receiving from teachers of science, civics, and +economics. + +In this condition of affairs we find our justification for offering a +new high school text in American history. Our first contribution is one +of omission. The time-honored stories of exploration and the +biographies of heroes are left out. We frankly hold that, if pupils know +little or nothing about Columbus, Cortes, Magellan, or Captain John +Smith by the time they reach the high school, it is useless to tell the +same stories for perhaps the fourth time. It is worse than useless. It +is an offense against the teachers of those subjects that are +demonstrated to be progressive in character. + +In the next place we have omitted all descriptions of battles. Our +reasons for this are simple. The strategy of a campaign or of a single +battle is a highly technical, and usually a highly controversial, matter +about which experts differ widely. In the field of military and naval +operations most writers and teachers of history are mere novices. To +dispose of Gettysburg or the Wilderness in ten lines or ten pages is +equally absurd to the serious student of military affairs. Any one who +compares the ordinary textbook account of a single Civil War campaign +with the account given by Ropes, for instance, will ask for no further +comment. No youth called upon to serve our country in arms would think +of turning to a high school manual for information about the art of +warfare. The dramatic scene or episode, so useful in arousing the +interest of the immature pupil, seems out of place in a book that +deliberately appeals to boys and girls on the very threshold of life's +serious responsibilities. + +It is not upon negative features, however, that we rest our case. It is +rather upon constructive features. + +_First._ We have written a topical, not a narrative, history. We have +tried to set forth the important aspects, problems, and movements of +each period, bringing in the narrative rather by way of illustration. + +_Second._ We have emphasized those historical topics which help to +explain how our nation has come to be what it is to-day. + +_Third._ We have dwelt fully upon the social and economic aspects of our +history, especially in relation to the politics of each period. + +_Fourth._ We have treated the causes and results of wars, the problems +of financing and sustaining armed forces, rather than military strategy. +These are the subjects which belong to a history for civilians. These +are matters which civilians can understand--matters which they must +understand, if they are to play well their part in war and peace. + +_Fifth._ By omitting the period of exploration, we have been able to +enlarge the treatment of our own time. We have given special attention +to the history of those current questions which must form the subject +matter of sound instruction in citizenship. + +_Sixth._ We have borne in mind that America, with all her unique +characteristics, is a part of a general civilization. Accordingly we +have given diplomacy, foreign affairs, world relations, and the +reciprocal influences of nations their appropriate place. + +_Seventh._ We have deliberately aimed at standards of maturity. The +study of a mere narrative calls mainly for the use of the memory. We +have aimed to stimulate habits of analysis, comparison, association, +reflection, and generalization--habits calculated to enlarge as well as +inform the mind. We have been at great pains to make our text clear, +simple, and direct; but we have earnestly sought to stretch the +intellects of our readers--to put them upon their mettle. Most of them +will receive the last of their formal instruction in the high school. +The world will soon expect maturity from them. Their achievements will +depend upon the possession of other powers than memory alone. The +effectiveness of their citizenship in our republic will be measured by +the excellence of their judgment as well as the fullness of their +information. + + C.A.B. + M.R.B. + + NEW YORK CITY, + February 8, 1921. + + + + +=A SMALL LIBRARY IN AMERICAN HISTORY= + + +_=SINGLE VOLUMES:=_ + +BASSETT, J.S. _A Short History of the United States_ +ELSON, H.W. _History of the United States of America_ + + +_=SERIES:=_ + +"EPOCHS OF AMERICAN HISTORY," EDITED BY A.B. HART + +HART, A.B. _Formation of the Union_ +THWAITES, R.G. _The Colonies_ +WILSON, WOODROW. _Division and Reunion_ + +"RIVERSIDE SERIES," EDITED BY W.E. DODD + +BECKER, C.L. _Beginnings of the American People_ +DODD, W.E. _Expansion and Conflict_ +JOHNSON, A. _Union and Democracy_ +PAXSON, F.L. _The New Nation_ + + + + +CONTENTS + + +PART I. THE COLONIAL PERIOD + +CHAPTER PAGE + I. THE GREAT MIGRATION TO AMERICA 1 + The Agencies of American Colonization 2 + The Colonial Peoples 6 + The Process of Colonization 12 + + II. COLONIAL AGRICULTURE, INDUSTRY, AND COMMERCE 20 + The Land and the Westward Movement 20 + Industrial and Commercial Development 28 + + III. SOCIAL AND POLITICAL PROGRESS 38 + The Leadership of the Churches 39 + Schools and Colleges 43 + The Colonial Press 46 + The Evolution in Political Institutions 48 + + IV. THE DEVELOPMENT OF COLONIAL NATIONALISM 56 + Relations with the Indians and the French 57 + The Effects of Warfare on the Colonies 61 + Colonial Relations with the British Government 64 + Summary of Colonial Period 73 + + +PART II. CONFLICT AND INDEPENDENCE + + V. THE NEW COURSE IN BRITISH IMPERIAL POLICY 77 + George III and His System 77 + George III's Ministers and Their Colonial Policies 79 + Colonial Resistance Forces Repeal 83 + Resumption of British Revenue and Commercial Policies 87 + Renewed Resistance in America 90 + Retaliation by the British Government 93 + From Reform to Revolution in America 95 + + VI. THE AMERICAN REVOLUTION 99 + Resistance and Retaliation 99 + American Independence 101 + The Establishment of Government and the New Allegiance 108 + Military Affairs 116 + The Finances of the Revolution 125 + The Diplomacy of the Revolution 127 + Peace at Last 132 + Summary of the Revolutionary Period 135 + + +PART III. FOUNDATIONS OF THE UNION AND NATIONAL POLITICS + + VII. THE FORMATION OF THE CONSTITUTION 139 + The Promise and the Difficulties of America 139 + The Calling of a Constitutional Convention 143 + The Framing of the Constitution 146 + The Struggle over Ratification 157 + + VIII. THE CLASH OF POLITICAL PARTIES 162 + The Men and Measures of the New Government 162 + The Rise of Political Parties 168 + Foreign Influences and Domestic Politics 171 + + IX. THE JEFFERSONIAN REPUBLICANS IN POWER 186 + Republican Principles and Policies 186 + The Republicans and the Great West 188 + The Republican War for Commercial Independence 193 + The Republicans Nationalized 201 + The National Decisions of Chief Justice Marshall 208 + Summary of Union and National Politics 212 + + +PART IV. THE WEST AND JACKSONIAN DEMOCRACY + + X. THE FARMERS BEYOND THE APPALACHIANS 217 + Preparation for Western Settlement 217 + The Western Migration and New States 221 + The Spirit of the Frontier 228 + The West and the East Meet 230 + + XI. JACKSONIAN DEMOCRACY 238 + The Democratic Movement in the East 238 + The New Democracy Enters the Arena 244 + The New Democracy at Washington 250 + The Rise of the Whigs 260 + The Interaction of American and European Opinion 265 + + XII. THE MIDDLE BORDER AND THE GREAT WEST 271 + The Advance of the Middle Border 271 + On to the Pacific--Texas and the Mexican War 276 + The Pacific Coast and Utah 284 + Summary of Western Development and National Politics 292 + + +PART V. SECTIONAL CONFLICT AND RECONSTRUCTION + + XIII. THE RISE OF THE INDUSTRIAL SYSTEM 295 + The Industrial Revolution 296 + The Industrial Revolution and National Politics 307 + + XIV. THE PLANTING SYSTEM AND NATIONAL POLITICS 316 + Slavery--North and South 316 + Slavery in National Politics 324 + The Drift of Events toward the Irrepressible Conflict 332 + + XV. THE CIVIL WAR AND RECONSTRUCTION 344 + The Southern Confederacy 344 + The War Measures of the Federal Government 350 + The Results of the Civil War 365 + Reconstruction in the South 370 + Summary of the Sectional Conflict 375 + + +PART VI. NATIONAL GROWTH AND WORLD POLITICS + + XVI. THE POLITICAL AND ECONOMIC EVOLUTION OF THE SOUTH 379 + The South at the Close of the War 379 + The Restoration of White Supremacy 382 + The Economic Advance of the South 389 + + XVII. BUSINESS ENTERPRISE AND THE REPUBLICAN PARTY 401 + Railways and Industry 401 + The Supremacy of the Republican Party (1861-1885) 412 + The Growth of Opposition to Republican Rule 417 + +XVIII. THE DEVELOPMENT OF THE GREAT WEST 425 + The Railways as Trail Blazers 425 + The Evolution of Grazing and Agriculture 431 + Mining and Manufacturing in the West 436 + The Admission of New States 440 + The Influence of the Far West on National Life 443 + + XIX. DOMESTIC ISSUES BEFORE THE COUNTRY (1865-1897) 451 + The Currency Question 452 + The Protective Tariff and Taxation 459 + The Railways and Trusts 460 + The Minor Parties and Unrest 462 + The Sound Money Battle of 1896 466 + Republican Measures and Results 472 + + XX. AMERICA A WORLD POWER (1865-1900) 477 + American Foreign Relations (1865-1898) 478 + Cuba and the Spanish War 485 + American Policies in the Philippines and the Orient 497 + Summary of National Growth and World Politics 504 + + +PART VII. PROGRESSIVE DEMOCRACY AND THE WORLD WAR + + XXI. THE EVOLUTION OF REPUBLICAN POLICIES (1901-1913) 507 + Foreign Affairs 508 + Colonial Administration 515 + The Roosevelt Domestic Policies 519 + Legislative and Executive Activities 523 + The Administration of President Taft 527 + Progressive Insurgency and the Election of 1912 530 + + XXII. THE SPIRIT OF REFORM IN AMERICA 536 + An Age of Criticism 536 + Political Reforms 538 + Measures of Economic Reform 546 + +XXIII. THE NEW POLITICAL DEMOCRACY 554 + The Rise of the Woman Movement 555 + The National Struggle for Woman Suffrage 562 + + XXIV. INDUSTRIAL DEMOCRACY 570 + Cooperation between Employers and Employees 571 + The Rise and Growth of Organized Labor 575 + The Wider Relations of Organized Labor 577 + Immigration and Americanization 582 + + XXV. PRESIDENT WILSON AND THE WORLD WAR 588 + Domestic Legislation 588 + Colonial and Foreign Policies 592 + The United States and the European War 596 + The United States at War 604 + The Settlement at Paris 612 + Summary of Democracy and the World War 620 + +APPENDIX 627 + +A TOPICAL SYLLABUS 645 + +INDEX 655 + + + + +MAPS + + + PAGE +The Original Grants (color map) _Facing_ 4 + +German and Scotch-Irish Settlements 8 + +Distribution of Population in 1790 27 + +English, French, and Spanish Possessions in America, 1750 + (color map) _Facing_ 59 + +The Colonies at the Time of the Declaration of Independence + (color map) _Facing_ 108 + +North America according to the Treaty of 1783 + (color map) _Facing_ 134 + +The United States in 1805 (color map) _Facing_ 193 + +Roads and Trails into Western Territory (color map) _Facing_ 224 + +The Cumberland Road 233 + +Distribution of Population in 1830 235 + +Texas and the Territory in Dispute 282 + +The Oregon Country and the Disputed Boundary 285 + +The Overland Trails 287 + +Distribution of Slaves in Southern States 323 + +The Missouri Compromise 326 + +Slave and Free Soil on the Eve of the Civil War 335 + +The United States in 1861 (color map) _Facing_ 345 + +Railroads of the United States in 1918 405 + +The United States in 1870 (color map) _Facing_ 427 + +The United States in 1912 (color map) _Facing_ 443 + +American Dominions in the Pacific (color map) _Facing_ 500 + +The Caribbean Region (color map) _Facing_ 592 + +Battle Lines of the Various Years of the World War 613 + +Europe in 1919 (color map) _Between_ 618-619 + + "THE NATIONS OF THE WEST" (popularly called "The + Pioneers"), designed by A. Stirling Calder and modeled by + Mr. Calder, F.G.R. Roth, and Leo Lentelli, topped the Arch + of the Setting Sun at the Panama-Pacific Exposition held at + San Francisco in 1915. Facing the Court of the Universe + moves a group of men and women typical of those who have + made our civilization. From left to right appear the + French-Canadian, the Alaskan, the Latin-American, the + German, the Italian, the Anglo-American, and the American + Indian, squaw and warrior. In the place of honor in the + center of the group, standing between the oxen on the tongue + of the prairie schooner, is a figure, beautiful and almost + girlish, but strong, dignified, and womanly, the Mother of + To-morrow. Above the group rides the Spirit of Enterprise, + flanked right and left by the Hopes of the Future in the + person of two boys. The group as a whole is beautifully + symbolic of the westward march of American civilization. + +[Illustration: _Photograph by Cardinell-Vincent Co., San Francisco_ + +"THE NATIONS OF THE WEST"] + + + + +HISTORY OF THE UNITED STATES + + + + +PART I. THE COLONIAL PERIOD + + + + +CHAPTER I + +THE GREAT MIGRATION TO AMERICA + + +The tide of migration that set in toward the shores of North America +during the early years of the seventeenth century was but one phase in +the restless and eternal movement of mankind upon the surface of the +earth. The ancient Greeks flung out their colonies in every direction, +westward as far as Gaul, across the Mediterranean, and eastward into +Asia Minor, perhaps to the very confines of India. The Romans, supported +by their armies and their government, spread their dominion beyond the +narrow lands of Italy until it stretched from the heather of Scotland to +the sands of Arabia. The Teutonic tribes, from their home beyond the +Danube and the Rhine, poured into the empire of the Caesars and made the +beginnings of modern Europe. Of this great sweep of races and empires +the settlement of America was merely a part. And it was, moreover, only +one aspect of the expansion which finally carried the peoples, the +institutions, and the trade of Europe to the very ends of the earth. + +In one vital point, it must be noted, American colonization differed +from that of the ancients. The Greeks usually carried with them +affection for the government they left behind and sacred fire from the +altar of the parent city; but thousands of the immigrants who came to +America disliked the state and disowned the church of the mother +country. They established compacts of government for themselves and set +up altars of their own. They sought not only new soil to till but also +political and religious liberty for themselves and their children. + + +THE AGENCIES OF AMERICAN COLONIZATION + +It was no light matter for the English to cross three thousand miles of +water and found homes in the American wilderness at the opening of the +seventeenth century. Ships, tools, and supplies called for huge outlays +of money. Stores had to be furnished in quantities sufficient to sustain +the life of the settlers until they could gather harvests of their own. +Artisans and laborers of skill and industry had to be induced to risk +the hazards of the new world. Soldiers were required for defense and +mariners for the exploration of inland waters. Leaders of good judgment, +adept in managing men, had to be discovered. Altogether such an +enterprise demanded capital larger than the ordinary merchant or +gentleman could amass and involved risks more imminent than he dared to +assume. Though in later days, after initial tests had been made, wealthy +proprietors were able to establish colonies on their own account, it was +the corporation that furnished the capital and leadership in the +beginning. + +=The Trading Company.=--English pioneers in exploration found an +instrument for colonization in companies of merchant adventurers, which +had long been employed in carrying on commerce with foreign countries. +Such a corporation was composed of many persons of different ranks of +society--noblemen, merchants, and gentlemen--who banded together for a +particular undertaking, each contributing a sum of money and sharing in +the profits of the venture. It was organized under royal authority; it +received its charter, its grant of land, and its trading privileges from +the king and carried on its operations under his supervision and +control. The charter named all the persons originally included in the +corporation and gave them certain powers in the management of its +affairs, including the right to admit new members. The company was in +fact a little government set up by the king. When the members of the +corporation remained in England, as in the case of the Virginia Company, +they operated through agents sent to the colony. When they came over the +seas themselves and settled in America, as in the case of Massachusetts, +they became the direct government of the country they possessed. The +stockholders in that instance became the voters and the governor, the +chief magistrate. + +[Illustration: JOHN WINTHROP, GOVERNOR OF THE MASSACHUSETTS BAY +COMPANY] + +Four of the thirteen colonies in America owed their origins to the +trading corporation. It was the London Company, created by King James I, +in 1606, that laid during the following year the foundations of Virginia +at Jamestown. It was under the auspices of their West India Company, +chartered in 1621, that the Dutch planted the settlements of the New +Netherland in the valley of the Hudson. The founders of Massachusetts +were Puritan leaders and men of affairs whom King Charles I incorporated +in 1629 under the title: "The governor and company of the Massachusetts +Bay in New England." In this case the law did but incorporate a group +drawn together by religious ties. "We must be knit together as one man," +wrote John Winthrop, the first Puritan governor in America. Far to the +south, on the banks of the Delaware River, a Swedish commercial company +in 1638 made the beginnings of a settlement, christened New Sweden; it +was destined to pass under the rule of the Dutch, and finally under the +rule of William Penn as the proprietary colony of Delaware. + +In a certain sense, Georgia may be included among the "company +colonies." It was, however, originally conceived by the moving spirit, +James Oglethorpe, as an asylum for poor men, especially those imprisoned +for debt. To realize this humane purpose, he secured from King George +II, in 1732, a royal charter uniting several gentlemen, including +himself, into "one body politic and corporate," known as the "Trustees +for establishing the colony of Georgia in America." In the structure of +their organization and their methods of government, the trustees did not +differ materially from the regular companies created for trade and +colonization. Though their purposes were benevolent, their transactions +had to be under the forms of law and according to the rules of business. + +=The Religious Congregation.=--A second agency which figured largely in +the settlement of America was the religious brotherhood, or +congregation, of men and women brought together in the bonds of a common +religious faith. By one of the strange fortunes of history, this +institution, founded in the early days of Christianity, proved to be a +potent force in the origin and growth of self-government in a land far +away from Galilee. "And the multitude of them that believed were of one +heart and of one soul," we are told in the Acts describing the Church at +Jerusalem. "We are knit together as a body in a most sacred covenant of +the Lord ... by virtue of which we hold ourselves strictly tied to all +care of each other's good and of the whole," wrote John Robinson, a +leader among the Pilgrims who founded their tiny colony of Plymouth in +1620. The Mayflower Compact, so famous in American history, was but a +written and signed agreement, incorporating the spirit of obedience to +the common good, which served as a guide to self-government until +Plymouth was annexed to Massachusetts in 1691. + +[Illustration: THE ORIGINAL GRANTS] + +Three other colonies, all of which retained their identity until the eve +of the American Revolution, likewise sprang directly from the +congregations of the faithful: Rhode Island, Connecticut, and New +Hampshire, mainly offshoots from Massachusetts. They were founded by +small bodies of men and women, "united in solemn covenants with the +Lord," who planted their settlements in the wilderness. Not until many a +year after Roger Williams and Anne Hutchinson conducted their followers +to the Narragansett country was Rhode Island granted a charter of +incorporation (1663) by the crown. Not until long after the congregation +of Thomas Hooker from Newtown blazed the way into the Connecticut River +Valley did the king of England give Connecticut a charter of its own +(1662) and a place among the colonies. Half a century elapsed before the +towns laid out beyond the Merrimac River by emigrants from Massachusetts +were formed into the royal province of New Hampshire in 1679. + +Even when Connecticut was chartered, the parchment and sealing wax of +the royal lawyers did but confirm rights and habits of self-government +and obedience to law previously established by the congregations. The +towns of Hartford, Windsor, and Wethersfield had long lived happily +under their "Fundamental Orders" drawn up by themselves in 1639; so had +the settlers dwelt peacefully at New Haven under their "Fundamental +Articles" drafted in the same year. The pioneers on the Connecticut +shore had no difficulty in agreeing that "the Scriptures do hold forth a +perfect rule for the direction and government of all men." + +=The Proprietor.=--A third and very important colonial agency was the +proprietor, or proprietary. As the name, associated with the word +"property," implies, the proprietor was a person to whom the king +granted property in lands in North America to have, hold, use, and enjoy +for his own benefit and profit, with the right to hand the estate down +to his heirs in perpetual succession. The proprietor was a rich and +powerful person, prepared to furnish or secure the capital, collect the +ships, supply the stores, and assemble the settlers necessary to found +and sustain a plantation beyond the seas. Sometimes the proprietor +worked alone. Sometimes two or more were associated like partners in the +common undertaking. + +Five colonies, Maryland, Pennsylvania, New Jersey, and the Carolinas, +owe their formal origins, though not always their first settlements, nor +in most cases their prosperity, to the proprietary system. Maryland, +established in 1634 under a Catholic nobleman, Lord Baltimore, and +blessed with religious toleration by the act of 1649, flourished under +the mild rule of proprietors until it became a state in the American +union. New Jersey, beginning its career under two proprietors, Berkeley +and Carteret, in 1664, passed under the direct government of the crown +in 1702. Pennsylvania was, in a very large measure, the product of the +generous spirit and tireless labors of its first proprietor, the leader +of the Friends, William Penn, to whom it was granted in 1681 and in +whose family it remained until 1776. The two Carolinas were first +organized as one colony in 1663 under the government and patronage of +eight proprietors, including Lord Clarendon; but after more than half a +century both became royal provinces governed by the king. + +[Illustration: WILLIAM PENN, PROPRIETOR OF PENNSYLVANIA] + + +THE COLONIAL PEOPLES + +=The English.=--In leadership and origin the thirteen colonies, except +New York and Delaware, were English. During the early days of all, save +these two, the main, if not the sole, current of immigration was from +England. The colonists came from every walk of life. They were men, +women, and children of "all sorts and conditions." The major portion +were yeomen, or small land owners, farm laborers, and artisans. With +them were merchants and gentlemen who brought their stocks of goods or +their fortunes to the New World. Scholars came from Oxford and +Cambridge to preach the gospel or to teach. Now and then the son of an +English nobleman left his baronial hall behind and cast his lot with +America. The people represented every religious faith--members of the +Established Church of England; Puritans who had labored to reform that +church; Separatists, Baptists, and Friends, who had left it altogether; +and Catholics, who clung to the religion of their fathers. + +New England was almost purely English. During the years between 1629 and +1640, the period of arbitrary Stuart government, about twenty thousand +Puritans emigrated to America, settling in the colonies of the far +North. Although minor additions were made from time to time, the greater +portion of the New England people sprang from this original stock. +Virginia, too, for a long time drew nearly all her immigrants from +England alone. Not until the eve of the Revolution did other +nationalities, mainly the Scotch-Irish and Germans, rival the English in +numbers. + +The populations of later English colonies--the Carolinas, New York, +Pennsylvania, and Georgia--while receiving a steady stream of +immigration from England, were constantly augmented by wanderers from +the older settlements. New York was invaded by Puritans from New England +in such numbers as to cause the Anglican clergymen there to lament that +"free thinking spreads almost as fast as the Church." North Carolina was +first settled toward the northern border by immigrants from Virginia. +Some of the North Carolinians, particularly the Quakers, came all the +way from New England, tarrying in Virginia only long enough to learn how +little they were wanted in that Anglican colony. + +=The Scotch-Irish.=--Next to the English in numbers and influence were +the Scotch-Irish, Presbyterians in belief, English in tongue. Both +religious and economic reasons sent them across the sea. Their Scotch +ancestors, in the days of Cromwell, had settled in the north of Ireland +whence the native Irish had been driven by the conqueror's sword. There +the Scotch nourished for many years enjoying in peace their own form of +religion and growing prosperous in the manufacture of fine linen and +woolen cloth. Then the blow fell. Toward the end of the seventeenth +century their religious worship was put under the ban and the export of +their cloth was forbidden by the English Parliament. Within two decades +twenty thousand Scotch-Irish left Ulster alone, for America; and all +during the eighteenth century the migration continued to be heavy. +Although no exact record was kept, it is reckoned that the Scotch-Irish +and the Scotch who came directly from Scotland, composed one-sixth of +the entire American population on the eve of the Revolution. + +[Illustration: SETTLEMENTS OF GERMAN AND SCOTCH-IRISH +IMMIGRANTS] + +These newcomers in America made their homes chiefly in New Jersey, +Pennsylvania, Maryland, Virginia, and the Carolinas. Coming late upon +the scene, they found much of the land immediately upon the seaboard +already taken up. For this reason most of them became frontier people +settling the interior and upland regions. There they cleared the land, +laid out their small farms, and worked as "sturdy yeomen on the soil," +hardy, industrious, and independent in spirit, sharing neither the +luxuries of the rich planters nor the easy life of the leisurely +merchants. To their agriculture they added woolen and linen +manufactures, which, flourishing in the supple fingers of their tireless +women, made heavy inroads upon the trade of the English merchants in +the colonies. Of their labors a poet has sung: + + "O, willing hands to toil; + Strong natures tuned to the harvest-song and bound to the kindly soil; + Bold pioneers for the wilderness, defenders in the field." + +=The Germans.=--Third among the colonists in order of numerical +importance were the Germans. From the very beginning, they appeared in +colonial records. A number of the artisans and carpenters in the first +Jamestown colony were of German descent. Peter Minuit, the famous +governor of New Motherland, was a German from Wesel on the Rhine, and +Jacob Leisler, leader of a popular uprising against the provincial +administration of New York, was a German from Frankfort-on-Main. The +wholesale migration of Germans began with the founding of Pennsylvania. +Penn was diligent in searching for thrifty farmers to cultivate his +lands and he made a special effort to attract peasants from the Rhine +country. A great association, known as the Frankfort Company, bought +more than twenty thousand acres from him and in 1684 established a +center at Germantown for the distribution of German immigrants. In old +New York, Rhinebeck-on-the-Hudson became a similar center for +distribution. All the way from Maine to Georgia inducements were offered +to the German farmers and in nearly every colony were to be found, in +time, German settlements. In fact the migration became so large that +German princes were frightened at the loss of so many subjects and +England was alarmed by the influx of foreigners into her overseas +dominions. Yet nothing could stop the movement. By the end of the +colonial period, the number of Germans had risen to more than two +hundred thousand. + +The majority of them were Protestants from the Rhine region, and South +Germany. Wars, religious controversies, oppression, and poverty drove +them forth to America. Though most of them were farmers, there were also +among them skilled artisans who contributed to the rapid growth of +industries in Pennsylvania. Their iron, glass, paper, and woolen mills, +dotted here and there among the thickly settled regions, added to the +wealth and independence of the province. + +[Illustration: _From an old print_ + +A GLIMPSE OF OLD GERMANTOWN] + +Unlike the Scotch-Irish, the Germans did not speak the language of the +original colonists or mingle freely with them. They kept to themselves, +built their own schools, founded their own newspapers, and published +their own books. Their clannish habits often irritated their neighbors +and led to occasional agitations against "foreigners." However, no +serious collisions seem to have occurred; and in the days of the +Revolution, German soldiers from Pennsylvania fought in the patriot +armies side by side with soldiers from the English and Scotch-Irish +sections. + +=Other Nationalities.=--Though the English, the Scotch-Irish, and the +Germans made up the bulk of the colonial population, there were other +racial strains as well, varying in numerical importance but contributing +their share to colonial life. + +From France came the Huguenots fleeing from the decree of the king which +inflicted terrible penalties upon Protestants. + +From "Old Ireland" came thousands of native Irish, Celtic in race and +Catholic in religion. Like their Scotch-Irish neighbors to the north, +they revered neither the government nor the church of England imposed +upon them by the sword. How many came we do not know, but shipping +records of the colonial period show that boatload after boatload left +the southern and eastern shores of Ireland for the New World. +Undoubtedly thousands of their passengers were Irish of the native +stock. This surmise is well sustained by the constant appearance of +Celtic names in the records of various colonies. + +[Illustration:_From an old print_ + +OLD DUTCH FORT AND ENGLISH CHURCH NEAR ALBANY] + +The Jews, then as ever engaged in their age-long battle for religious +and economic toleration, found in the American colonies, not complete +liberty, but certainly more freedom than they enjoyed in England, +France, Spain, or Portugal. The English law did not actually recognize +their right to live in any of the dominions, but owing to the easy-going +habits of the Americans they were allowed to filter into the seaboard +towns. The treatment they received there varied. On one occasion the +mayor and council of New York forbade them to sell by retail and on +another prohibited the exercise of their religious worship. Newport, +Philadelphia, and Charleston were more hospitable, and there large +Jewish colonies, consisting principally of merchants and their families, +flourished in spite of nominal prohibitions of the law. + +Though the small Swedish colony in Delaware was quickly submerged +beneath the tide of English migration, the Dutch in New York continued +to hold their own for more than a hundred years after the English +conquest in 1664. At the end of the colonial period over one-half of the +170,000 inhabitants of the province were descendants of the original +Dutch--still distinct enough to give a decided cast to the life and +manners of New York. Many of them clung as tenaciously to their mother +tongue as they did to their capacious farmhouses or their Dutch ovens; +but they were slowly losing their identity as the English pressed in +beside them to farm and trade. + +The melting pot had begun its historic mission. + + +THE PROCESS OF COLONIZATION + +Considered from one side, colonization, whatever the motives of the +emigrants, was an economic matter. It involved the use of capital to pay +for their passage, to sustain them on the voyage, and to start them on +the way of production. Under this stern economic necessity, Puritans, +Scotch-Irish, Germans, and all were alike laid. + +=Immigrants Who Paid Their Own Way.=--Many of the immigrants to America +in colonial days were capitalists themselves, in a small or a large way, +and paid their own passage. What proportion of the colonists were able +to finance their voyage across the sea is a matter of pure conjecture. +Undoubtedly a very considerable number could do so, for we can trace the +family fortunes of many early settlers. Henry Cabot Lodge is authority +for the statement that "the settlers of New England were drawn from the +country gentlemen, small farmers, and yeomanry of the mother +country.... Many of the emigrants were men of wealth, as the old lists +show, and all of them, with few exceptions, were men of property and +good standing. They did not belong to the classes from which emigration +is usually supplied, for they all had a stake in the country they left +behind." Though it would be interesting to know how accurate this +statement is or how applicable to the other colonies, no study has as +yet been made to gratify that interest. For the present it is an +unsolved problem just how many of the colonists were able to bear the +cost of their own transfer to the New World. + +=Indentured Servants.=--That at least tens of thousands of immigrants +were unable to pay for their passage is established beyond the shadow of +a doubt by the shipping records that have come down to us. The great +barrier in the way of the poor who wanted to go to America was the cost +of the sea voyage. To overcome this difficulty a plan was worked out +whereby shipowners and other persons of means furnished the passage +money to immigrants in return for their promise, or bond, to work for a +term of years to repay the sum advanced. This system was called +indentured servitude. + +It is probable that the number of bond servants exceeded the original +twenty thousand Puritans, the yeomen, the Virginia gentlemen, and the +Huguenots combined. All the way down the coast from Massachusetts to +Georgia were to be found in the fields, kitchens, and workshops, men, +women, and children serving out terms of bondage generally ranging from +five to seven years. In the proprietary colonies the proportion of bond +servants was very high. The Baltimores, Penns, Carterets, and other +promoters anxiously sought for workers of every nationality to till +their fields, for land without labor was worth no more than land in the +moon. Hence the gates of the proprietary colonies were flung wide open. +Every inducement was offered to immigrants in the form of cheap land, +and special efforts were made to increase the population by importing +servants. In Pennsylvania, it was not uncommon to find a master with +fifty bond servants on his estate. It has been estimated that two-thirds +of all the immigrants into Pennsylvania between the opening of the +eighteenth century and the outbreak of the Revolution were in bondage. +In the other Middle colonies the number was doubtless not so large; but +it formed a considerable part of the population. + +The story of this traffic in white servants is one of the most striking +things in the history of labor. Bondmen differed from the serfs of the +feudal age in that they were not bound to the soil but to the master. +They likewise differed from the negro slaves in that their servitude had +a time limit. Still they were subject to many special disabilities. It +was, for instance, a common practice to impose on them penalties far +heavier than were imposed upon freemen for the same offense. A free +citizen of Pennsylvania who indulged in horse racing and gambling was +let off with a fine; a white servant guilty of the same unlawful conduct +was whipped at the post and fined as well. + +The ordinary life of the white servant was also severely restricted. A +bondman could not marry without his master's consent; nor engage in +trade; nor refuse work assigned to him. For an attempt to escape or +indeed for any infraction of the law, the term of service was extended. +The condition of white bondmen in Virginia, according to Lodge, "was +little better than that of slaves. Loose indentures and harsh laws put +them at the mercy of their masters." It would not be unfair to add that +such was their lot in all other colonies. Their fate depended upon the +temper of their masters. + +Cruel as was the system in many ways, it gave thousands of people in the +Old World a chance to reach the New--an opportunity to wrestle with fate +for freedom and a home of their own. When their weary years of servitude +were over, if they survived, they might obtain land of their own or +settle as free mechanics in the towns. For many a bondman the gamble +proved to be a losing venture because he found himself unable to rise +out of the state of poverty and dependence into which his servitude +carried him. For thousands, on the contrary, bondage proved to be a real +avenue to freedom and prosperity. Some of the best citizens of America +have the blood of indentured servants in their veins. + +=The Transported--Involuntary Servitude.=--In their anxiety to secure +settlers, the companies and proprietors having colonies in America +either resorted to or connived at the practice of kidnapping men, women, +and children from the streets of English cities. In 1680 it was +officially estimated that "ten thousand persons were spirited away" to +America. Many of the victims of the practice were young children, for +the traffic in them was highly profitable. Orphans and dependents were +sometimes disposed of in America by relatives unwilling to support them. +In a single year, 1627, about fifteen hundred children were shipped to +Virginia. + +In this gruesome business there lurked many tragedies, and very few +romances. Parents were separated from their children and husbands from +their wives. Hundreds of skilled artisans--carpenters, smiths, and +weavers--utterly disappeared as if swallowed up by death. A few thus +dragged off to the New World to be sold into servitude for a term of +five or seven years later became prosperous and returned home with +fortunes. In one case a young man who was forcibly carried over the sea +lived to make his way back to England and establish his claim to a +peerage. + +Akin to the kidnapped, at least in economic position, were convicts +deported to the colonies for life in lieu of fines and imprisonment. The +Americans protested vigorously but ineffectually against this practice. +Indeed, they exaggerated its evils, for many of the "criminals" were +only mild offenders against unduly harsh and cruel laws. A peasant +caught shooting a rabbit on a lord's estate or a luckless servant girl +who purloined a pocket handkerchief was branded as a criminal along with +sturdy thieves and incorrigible rascals. Other transported offenders +were "political criminals"; that is, persons who criticized or opposed +the government. This class included now Irish who revolted against +British rule in Ireland; now Cavaliers who championed the king against +the Puritan revolutionists; Puritans, in turn, dispatched after the +monarchy was restored; and Scotch and English subjects in general who +joined in political uprisings against the king. + +=The African Slaves.=--Rivaling in numbers, in the course of time, the +indentured servants and whites carried to America against their will +were the African negroes brought to America and sold into slavery. When +this form of bondage was first introduced into Virginia in 1619, it was +looked upon as a temporary necessity to be discarded with the increase +of the white population. Moreover it does not appear that those planters +who first bought negroes at the auction block intended to establish a +system of permanent bondage. Only by a slow process did chattel slavery +take firm root and become recognized as the leading source of the labor +supply. In 1650, thirty years after the introduction of slavery, there +were only three hundred Africans in Virginia. + +The great increase in later years was due in no small measure to the +inordinate zeal for profits that seized slave traders both in Old and in +New England. Finding it relatively easy to secure negroes in Africa, +they crowded the Southern ports with their vessels. The English Royal +African Company sent to America annually between 1713 and 1743 from five +to ten thousand slaves. The ship owners of New England were not far +behind their English brethren in pushing this extraordinary traffic. + +As the proportion of the negroes to the free white population steadily +rose, and as whole sections were overrun with slaves and slave traders, +the Southern colonies grew alarmed. In 1710, Virginia sought to curtail +the importation by placing a duty of $5 on each slave. This effort was +futile, for the royal governor promptly vetoed it. From time to time +similar bills were passed, only to meet with royal disapproval. South +Carolina, in 1760, absolutely prohibited importation; but the measure +was killed by the British crown. As late as 1772, Virginia, not daunted +by a century of rebuffs, sent to George III a petition in this vein: +"The importation of slaves into the colonies from the coast of Africa +hath long been considered as a trade of great inhumanity and under its +present encouragement, we have too much reason to fear, will endanger +the very existence of Your Majesty's American dominions.... Deeply +impressed with these sentiments, we most humbly beseech Your Majesty to +remove all those restraints on Your Majesty's governors of this colony +which inhibit their assenting to such laws as might check so very +pernicious a commerce." + +All such protests were without avail. The negro population grew by leaps +and bounds, until on the eve of the Revolution it amounted to more than +half a million. In five states--Maryland, Virginia, the two Carolinas, +and Georgia--the slaves nearly equalled or actually exceeded the whites +in number. In South Carolina they formed almost two-thirds of the +population. Even in the Middle colonies of Delaware and Pennsylvania +about one-fifth of the inhabitants were from Africa. To the North, the +proportion of slaves steadily diminished although chattel servitude was +on the same legal footing as in the South. In New York approximately one +in six and in New England one in fifty were negroes, including a few +freedmen. + +The climate, the soil, the commerce, and the industry of the North were +all unfavorable to the growth of a servile population. Still, slavery, +though sectional, was a part of the national system of economy. Northern +ships carried slaves to the Southern colonies and the produce of the +plantations to Europe. "If the Northern states will consult their +interest, they will not oppose the increase in slaves which will +increase the commodities of which they will become the carriers," said +John Rutledge, of South Carolina, in the convention which framed the +Constitution of the United States. "What enriches a part enriches the +whole and the states are the best judges of their particular interest," +responded Oliver Ellsworth, the distinguished spokesman of Connecticut. + +=References= + +E. Charming, _History of the United States_, Vols. I and II. + +J.A. Doyle, _The English Colonies in America_ (5 vols.). + +J. Fiske, _Old Virginia and Her Neighbors_ (2 vols.). + +A.B. Faust, _The German Element in the United States_ (2 vols.). + +H.J. Ford, _The Scotch-Irish in America_. + +L. Tyler, _England in America_ (American Nation Series). + +R. Usher, _The Pilgrims and Their History_. + + +=Questions= + +1. America has been called a nation of immigrants. Explain why. + +2. Why were individuals unable to go alone to America in the beginning? +What agencies made colonization possible? Discuss each of them. + +3. Make a table of the colonies, showing the methods employed in their +settlement. + +4. Why were capital and leadership so very important in early +colonization? + +5. What is meant by the "melting pot"? What nationalities were +represented among the early colonists? + +6. Compare the way immigrants come to-day with the way they came in +colonial times. + +7. Contrast indentured servitude with slavery and serfdom. + +8. Account for the anxiety of companies and proprietors to secure +colonists. + +9. What forces favored the heavy importation of slaves? + +10. In what way did the North derive advantages from slavery? + + +=Research Topics= + +=The Chartered Company.=--Compare the first and third charters of +Virginia in Macdonald, _Documentary Source Book of American History_, +1606-1898, pp. 1-14. Analyze the first and second Massachusetts charters +in Macdonald, pp. 22-84. Special reference: W.A.S. Hewins, _English +Trading Companies_. + +=Congregations and Compacts for Self-government.=--A study of the +Mayflower Compact, the Fundamental Orders of Connecticut and the +Fundamental Articles of New Haven in Macdonald, pp. 19, 36, 39. +Reference: Charles Borgeaud, _Rise of Modern Democracy_, and C.S. +Lobingier, _The People's Law_, Chaps. I-VII. + +=The Proprietary System.=--Analysis of Penn's charter of 1681, in +Macdonald, p. 80. Reference: Lodge, _Short History of the English +Colonies in America_, p. 211. + +=Studies of Individual Colonies.=--Review of outstanding events in +history of each colony, using Elson, _History of the United States_, pp. +55-159, as the basis. + +=Biographical Studies.=--John Smith, John Winthrop, William Penn, Lord +Baltimore, William Bradford, Roger Williams, Anne Hutchinson, Thomas +Hooker, and Peter Stuyvesant, using any good encyclopedia. + +=Indentured Servitude.=--In Virginia, Lodge, _Short History_, pp. 69-72; +in Pennsylvania, pp. 242-244. Contemporary account in Callender, +_Economic History of the United States_, pp. 44-51. Special reference: +Karl Geiser, _Redemptioners and Indentured Servants_ (Yale Review, X, +No. 2 Supplement). + +=Slavery.=--In Virginia, Lodge, _Short History_, pp. 67-69; in the +Northern colonies, pp. 241, 275, 322, 408, 442. + +=The People of the Colonies.=--Virginia, Lodge, _Short History_, pp. +67-73; New England, pp. 406-409, 441-450; Pennsylvania, pp. 227-229, +240-250; New York, pp. 312-313, 322-335. + + + + +CHAPTER II + +COLONIAL AGRICULTURE, INDUSTRY, AND COMMERCE + +THE LAND AND THE WESTWARD MOVEMENT + + +=The Significance of Land Tenure.=--The way in which land may be +acquired, held, divided among heirs, and bought and sold exercises a +deep influence on the life and culture of a people. The feudal and +aristocratic societies of Europe were founded on a system of landlordism +which was characterized by two distinct features. In the first place, +the land was nearly all held in great estates, each owned by a single +proprietor. In the second place, every estate was kept intact under the +law of primogeniture, which at the death of a lord transferred all his +landed property to his eldest son. This prevented the subdivision of +estates and the growth of a large body of small farmers or freeholders +owning their own land. It made a form of tenantry or servitude +inevitable for the mass of those who labored on the land. It also +enabled the landlords to maintain themselves in power as a governing +class and kept the tenants and laborers subject to their economic and +political control. If land tenure was so significant in Europe, it was +equally important in the development of America, where practically all +the first immigrants were forced by circumstances to derive their +livelihood from the soil. + +=Experiments in Common Tillage.=--In the New World, with its broad +extent of land awaiting the white man's plow, it was impossible to +introduce in its entirety and over the whole area the system of lords +and tenants that existed across the sea. So it happened that almost +every kind of experiment in land tenure, from communism to feudalism, +was tried. In the early days of the Jamestown colony, the land, though +owned by the London Company, was tilled in common by the settlers. No +man had a separate plot of his own. The motto of the community was: +"Labor and share alike." All were supposed to work in the fields and +receive an equal share of the produce. At Plymouth, the Pilgrims +attempted a similar experiment, laying out the fields in common and +distributing the joint produce of their labor with rough equality among +the workers. + +In both colonies the communistic experiments were failures. Angry at the +lazy men in Jamestown who idled their time away and yet expected regular +meals, Captain John Smith issued a manifesto: "Everyone that gathereth +not every day as much as I do, the next day shall be set beyond the +river and forever banished from the fort and live there or starve." Even +this terrible threat did not bring a change in production. Not until +each man was given a plot of his own to till, not until each gathered +the fruits of his own labor, did the colony prosper. In Plymouth, where +the communal experiment lasted for five years, the results were similar +to those in Virginia, and the system was given up for one of separate +fields in which every person could "set corn for his own particular." +Some other New England towns, refusing to profit by the experience of +their Plymouth neighbor, also made excursions into common ownership and +labor, only to abandon the idea and go in for individual ownership of +the land. "By degrees it was seen that even the Lord's people could not +carry the complicated communist legislation into perfect and wholesome +practice." + +=Feudal Elements in the Colonies--Quit Rents, Manors, and +Plantations.=--At the other end of the scale were the feudal elements of +land tenure found in the proprietary colonies, in the seaboard regions +of the South, and to some extent in New York. The proprietor was in fact +a powerful feudal lord, owning land granted to him by royal charter. He +could retain any part of it for his personal use or dispose of it all in +large or small lots. While he generally kept for himself an estate of +baronial proportions, it was impossible for him to manage directly any +considerable part of the land in his dominion. Consequently he either +sold it in parcels for lump sums or granted it to individuals on +condition that they make to him an annual payment in money, known as +"quit rent." In Maryland, the proprietor sometimes collected as high as +$9000 (equal to about $500,000 to-day) in a single year from this +source. In Pennsylvania, the quit rents brought a handsome annual +tribute into the exchequer of the Penn family. In the royal provinces, +the king of England claimed all revenues collected in this form from the +land, a sum amounting to $19,000 at the time of the Revolution. The quit +rent,--"really a feudal payment from freeholders,"--was thus a material +source of income for the crown as well as for the proprietors. Wherever +it was laid, however, it proved to be a burden, a source of constant +irritation; and it became a formidable item in the long list of +grievances which led to the American Revolution. + +Something still more like the feudal system of the Old World appeared in +the numerous manors or the huge landed estates granted by the crown, the +companies, or the proprietors. In the colony of Maryland alone there +were sixty manors of three thousand acres each, owned by wealthy men and +tilled by tenants holding small plots under certain restrictions of +tenure. In New York also there were many manors of wide extent, most of +which originated in the days of the Dutch West India Company, when +extensive concessions were made to patroons to induce them to bring over +settlers. The Van Rensselaer, the Van Cortlandt, and the Livingston +manors were so large and populous that each was entitled to send a +representative to the provincial legislature. The tenants on the New +York manors were in somewhat the same position as serfs on old European +estates. They were bound to pay the owner a rent in money and kind; they +ground their grain at his mill; and they were subject to his judicial +power because he held court and meted out justice, in some instances +extending to capital punishment. + +The manors of New York or Maryland were, however, of slight consequence +as compared with the vast plantations of the Southern seaboard--huge +estates, far wider in expanse than many a European barony and tilled by +slaves more servile than any feudal tenants. It must not be forgotten +that this system of land tenure became the dominant feature of a large +section and gave a decided bent to the economic and political life of +America. + +[Illustration: SOUTHERN PLANTATION MANSION] + +=The Small Freehold.=--In the upland regions of the South, however, and +throughout most of the North, the drift was against all forms of +servitude and tenantry and in the direction of the freehold; that is, +the small farm owned outright and tilled by the possessor and his +family. This was favored by natural circumstances and the spirit of the +immigrants. For one thing, the abundance of land and the scarcity of +labor made it impossible for the companies, the proprietors, or the +crown to develop over the whole continent a network of vast estates. In +many sections, particularly in New England, the climate, the stony soil, +the hills, and the narrow valleys conspired to keep the farms within a +moderate compass. For another thing, the English, Scotch-Irish, and +German peasants, even if they had been tenants in the Old World, did not +propose to accept permanent dependency of any kind in the New. If they +could not get freeholds, they would not settle at all; thus they forced +proprietors and companies to bid for their enterprise by selling land in +small lots. So it happened that the freehold of modest proportions +became the cherished unit of American farmers. The people who tilled the +farms were drawn from every quarter of western Europe; but the freehold +system gave a uniform cast to their economic and social life in America. + +[Illustration: _From an old print_ + +A NEW ENGLAND FARMHOUSE] + +=Social Effects of Land Tenure.=--Land tenure and the process of western +settlement thus developed two distinct types of people engaged in the +same pursuit--agriculture. They had a common tie in that they both +cultivated the soil and possessed the local interest and independence +which arise from that occupation. Their methods and their culture, +however, differed widely. + +The Southern planter, on his broad acres tilled by slaves, resembled the +English landlord on his estates more than he did the colonial farmer who +labored with his own hands in the fields and forests. He sold his rice +and tobacco in large amounts directly to English factors, who took his +entire crop in exchange for goods and cash. His fine clothes, +silverware, china, and cutlery he bought in English markets. Loving the +ripe old culture of the mother country, he often sent his sons to Oxford +or Cambridge for their education. In short, he depended very largely for +his prosperity and his enjoyment of life upon close relations with the +Old World. He did not even need market towns in which to buy native +goods, for they were made on his own plantation by his own artisans who +were usually gifted slaves. + +The economic condition of the small farmer was totally different. His +crops were not big enough to warrant direct connection with English +factors or the personal maintenance of a corps of artisans. He needed +local markets, and they sprang up to meet the need. Smiths, hatters, +weavers, wagon-makers, and potters at neighboring towns supplied him +with the rough products of their native skill. The finer goods, bought +by the rich planter in England, the small farmer ordinarily could not +buy. His wants were restricted to staples like tea and sugar, and +between him and the European market stood the merchant. His community +was therefore more self-sufficient than the seaboard line of great +plantations. It was more isolated, more provincial, more independent, +more American. The planter faced the Old East. The farmer faced the New +West. + +=The Westward Movement.=--Yeoman and planter nevertheless were alike in +one respect. Their land hunger was never appeased. Each had the eye of +an expert for new and fertile soil; and so, north and south, as soon as +a foothold was secured on the Atlantic coast, the current of migration +set in westward, creeping through forests, across rivers, and over +mountains. Many of the later immigrants, in their search for cheap +lands, were compelled to go to the border; but in a large part the path +breakers to the West were native Americans of the second and third +generations. Explorers, fired by curiosity and the lure of the +mysterious unknown, and hunters, fur traders, and squatters, following +their own sweet wills, blazed the trail, opening paths and sending back +stories of the new regions they traversed. Then came the regular +settlers with lawful titles to the lands they had purchased, sometimes +singly and sometimes in companies. + +In Massachusetts, the westward movement is recorded in the founding of +Springfield in 1636 and Great Barrington in 1725. By the opening of the +eighteenth century the pioneers of Connecticut had pushed north and west +until their outpost towns adjoined the Hudson Valley settlements. In New +York, the inland movement was directed by the Hudson River to Albany, +and from that old Dutch center it radiated in every direction, +particularly westward through the Mohawk Valley. New Jersey was early +filled to its borders, the beginnings of the present city of New +Brunswick being made in 1681 and those of Trenton in 1685. In +Pennsylvania, as in New York, the waterways determined the main lines of +advance. Pioneers, pushing up through the valley of the Schuylkill, +spread over the fertile lands of Berks and Lancaster counties, laying +out Reading in 1748. Another current of migration was directed by the +Susquehanna, and, in 1726, the first farmhouse was built on the bank +where Harrisburg was later founded. Along the southern tier of counties +a thin line of settlements stretched westward to Pittsburgh, reaching +the upper waters of the Ohio while the colony was still under the Penn +family. + +In the South the westward march was equally swift. The seaboard was +quickly occupied by large planters and their slaves engaged in the +cultivation of tobacco and rice. The Piedmont Plateau, lying back from +the coast all the way from Maryland to Georgia, was fed by two streams +of migration, one westward from the sea and the other southward from the +other colonies--Germans from Pennsylvania and Scotch-Irish furnishing +the main supply. "By 1770, tide-water Virginia was full to overflowing +and the 'back country' of the Blue Ridge and the Shenandoah was fully +occupied. Even the mountain valleys ... were claimed by sturdy pioneers. +Before the Declaration of Independence, the oncoming tide of +home-seekers had reached the crest of the Alleghanies." + +[Illustration: DISTRIBUTION OF POPULATION, 1790] + +Beyond the mountains pioneers had already ventured, harbingers of an +invasion that was about to break in upon Kentucky and Tennessee. As +early as 1769 that mighty Nimrod, Daniel Boone, curious to hunt +buffaloes, of which he had heard weird reports, passed through the +Cumberland Gap and brought back news of a wonderful country awaiting the +plow. A hint was sufficient. Singly, in pairs, and in groups, settlers +followed the trail he had blazed. A great land corporation, the +Transylvania Company, emulating the merchant adventurers of earlier +times, secured a huge grant of territory and sought profits in quit +rents from lands sold to farmers. By the outbreak of the Revolution +there were several hundred people in the Kentucky region. Like the older +colonists, they did not relish quit rents, and their opposition wrecked +the Transylvania Company. They even carried their protests into the +Continental Congress in 1776, for by that time they were our "embryo +fourteenth colony." + + +INDUSTRIAL AND COMMERCIAL DEVELOPMENT + +Though the labor of the colonists was mainly spent in farming, there was +a steady growth in industrial and commercial pursuits. Most of the +staple industries of to-day, not omitting iron and textiles, have their +beginnings in colonial times. Manufacturing and trade soon gave rise to +towns which enjoyed an importance all out of proportion to their +numbers. The great centers of commerce and finance on the seaboard +originated in the days when the king of England was "lord of these +dominions." + +[Illustration: DOMESTIC INDUSTRY: DIPPING TALLOW CANDLES] + +=Textile Manufacture as a Domestic Industry.=--Colonial women, in +addition to sharing every hardship of pioneering, often the heavy labor +of the open field, developed in the course of time a national industry +which was almost exclusively their own. Wool and flax were raised in +abundance in the North and South. "Every farm house," says Coman, the +economic historian, "was a workshop where the women spun and wove the +serges, kerseys, and linsey-woolseys which served for the common wear." +By the close of the seventeenth century, New England manufactured cloth +in sufficient quantities to export it to the Southern colonies and to +the West Indies. As the industry developed, mills were erected for the +more difficult process of dyeing, weaving, and fulling, but carding and +spinning continued to be done in the home. The Dutch of New Netherland, +the Swedes of Delaware, and the Scotch-Irish of the interior "were not +one whit behind their Yankee neighbors." + +The importance of this enterprise to British economic life can hardly be +overestimated. For many a century the English had employed their fine +woolen cloth as the chief staple in a lucrative foreign trade, and the +government had come to look upon it as an object of special interest and +protection. When the colonies were established, both merchants and +statesmen naturally expected to maintain a monopoly of increasing value; +but before long the Americans, instead of buying cloth, especially of +the coarser varieties, were making it to sell. In the place of +customers, here were rivals. In the place of helpless reliance upon +English markets, here was the germ of economic independence. + +If British merchants had not discovered it in the ordinary course of +trade, observant officers in the provinces would have conveyed the news +to them. Even in the early years of the eighteenth century the royal +governor of New York wrote of the industrious Americans to his home +government: "The consequence will be that if they can clothe themselves +once, not only comfortably, but handsomely too, without the help of +England, they who already are not very fond of submitting to government +will soon think of putting in execution designs they have long harboured +in their breasts. This will not seem strange when you consider what sort +of people this country is inhabited by." + +=The Iron Industry.=--Almost equally widespread was the art of iron +working--one of the earliest and most picturesque of colonial +industries. Lynn, Massachusetts, had a forge and skilled artisans within +fifteen years after the founding of Boston. The smelting of iron began +at New London and New Haven about 1658; in Litchfield county, +Connecticut, a few years later; at Great Barrington, Massachusetts, in +1731; and near by at Lenox some thirty years after that. New Jersey had +iron works at Shrewsbury within ten years after the founding of the +colony in 1665. Iron forges appeared in the valleys of the Delaware and +the Susquehanna early in the following century, and iron masters then +laid the foundations of fortunes in a region destined to become one of +the great iron centers of the world. Virginia began iron working in the +year that saw the introduction of slavery. Although the industry soon +lapsed, it was renewed and flourished in the eighteenth century. +Governor Spotswood was called the "Tubal Cain" of the Old Dominion +because he placed the industry on a firm foundation. Indeed it seems +that every colony, except Georgia, had its iron foundry. Nails, wire, +metallic ware, chains, anchors, bar and pig iron were made in large +quantities; and Great Britain, by an act in 1750, encouraged the +colonists to export rough iron to the British Islands. + +=Shipbuilding.=--Of all the specialized industries in the colonies, +shipbuilding was the most important. The abundance of fir for masts, oak +for timbers and boards, pitch for tar and turpentine, and hemp for rope +made the way of the shipbuilder easy. Early in the seventeenth century a +ship was built at New Amsterdam, and by the middle of that century +shipyards were scattered along the New England coast at Newburyport, +Salem, New Bedford, Newport, Providence, New London, and New Haven. +Yards at Albany and Poughkeepsie in New York built ships for the trade +of that colony with England and the Indies. Wilmington and Philadelphia +soon entered the race and outdistanced New York, though unable to equal +the pace set by New England. While Maryland, Virginia, and South +Carolina also built ships, Southern interest was mainly confined to the +lucrative business of producing ship materials: fir, cedar, hemp, and +tar. + +=Fishing.=--The greatest single economic resource of New England outside +of agriculture was the fisheries. This industry, started by hardy +sailors from Europe, long before the landing of the Pilgrims, flourished +under the indomitable seamanship of the Puritans, who labored with the +net and the harpoon in almost every quarter of the Atlantic. "Look," +exclaimed Edmund Burke, in the House of Commons, "at the manner in +which the people of New England have of late carried on the whale +fishery. Whilst we follow them among the tumbling mountains of ice and +behold them penetrating into the deepest frozen recesses of Hudson's Bay +and Davis's Straits, while we are looking for them beneath the arctic +circle, we hear that they have pierced into the opposite region of polar +cold, that they are at the antipodes and engaged under the frozen +serpent of the south.... Nor is the equinoctial heat more discouraging +to them than the accumulated winter of both poles. We know that, whilst +some of them draw the line and strike the harpoon on the coast of +Africa, others run the longitude and pursue their gigantic game along +the coast of Brazil. No sea but what is vexed by their fisheries. No +climate that is not witness to their toils. Neither the perseverance of +Holland nor the activity of France nor the dexterous and firm sagacity +of English enterprise ever carried this most perilous mode of hard +industry to the extent to which it has been pushed by this recent +people." + +The influence of the business was widespread. A large and lucrative +European trade was built upon it. The better quality of the fish caught +for food was sold in the markets of Spain, Portugal, and Italy, or +exchanged for salt, lemons, and raisins for the American market. The +lower grades of fish were carried to the West Indies for slave +consumption, and in part traded for sugar and molasses, which furnished +the raw materials for the thriving rum industry of New England. These +activities, in turn, stimulated shipbuilding, steadily enlarging the +demand for fishing and merchant craft of every kind and thus keeping the +shipwrights, calkers, rope makers, and other artisans of the seaport +towns rushed with work. They also increased trade with the mother +country for, out of the cash collected in the fish markets of Europe and +the West Indies, the colonists paid for English manufactures. So an +ever-widening circle of American enterprise centered around this single +industry, the nursery of seamanship and the maritime spirit. + +=Oceanic Commerce and American Merchants.=--All through the eighteenth +century, the commerce of the American colonies spread in every direction +until it rivaled in the number of people employed, the capital engaged, +and the profits gleaned, the commerce of European nations. A modern +historian has said: "The enterprising merchants of New England developed +a network of trade routes that covered well-nigh half the world." This +commerce, destined to be of such significance in the conflict with the +mother country, presented, broadly speaking, two aspects. + +On the one side, it involved the export of raw materials and +agricultural produce. The Southern colonies produced for shipping, +tobacco, rice, tar, pitch, and pine; the Middle colonies, grain, flour, +furs, lumber, and salt pork; New England, fish, flour, rum, furs, shoes, +and small articles of manufacture. The variety of products was in fact +astounding. A sarcastic writer, while sneering at the idea of an +American union, once remarked of colonial trade: "What sort of dish will +you make? New England will throw in fish and onions. The middle states, +flax-seed and flour. Maryland and Virginia will add tobacco. North +Carolina, pitch, tar, and turpentine. South Carolina, rice and indigo, +and Georgia will sprinkle the whole composition with sawdust. Such an +absurd jumble will you make if you attempt to form a union among such +discordant materials as the thirteen British provinces." + +On the other side, American commerce involved the import trade, +consisting principally of English and continental manufactures, tea, and +"India goods." Sugar and molasses, brought from the West Indies, +supplied the flourishing distilleries of Massachusetts, Rhode Island, +and Connecticut. The carriage of slaves from Africa to the Southern +colonies engaged hundreds of New England's sailors and thousands of +pounds of her capital. + +The disposition of imported goods in the colonies, though in part +controlled by English factors located in America, employed also a large +and important body of American merchants like the Willings and Morrises +of Philadelphia; the Amorys, Hancocks, and Faneuils of Boston; and the +Livingstons and Lows of New York. In their zeal and enterprise, they +were worthy rivals of their English competitors, so celebrated for +world-wide commercial operations. Though fully aware of the advantages +they enjoyed in British markets and under the protection of the British +navy, the American merchants were high-spirited and mettlesome, ready to +contend with royal officers in order to shield American interests +against outside interference. + +[Illustration: THE DUTCH WEST INDIA WAREHOUSE IN NEW AMSTERDAM +(NEW YORK CITY)] + +Measured against the immense business of modern times, colonial commerce +seems perhaps trivial. That, however, is not the test of its +significance. It must be considered in relation to the growth of English +colonial trade in its entirety--a relation which can be shown by a few +startling figures. The whole export trade of England, including that to +the colonies, was, in 1704, $6,509,000. On the eve of the American +Revolution, namely, in 1772, English exports to the American colonies +alone amounted to $6,024,000; in other words, almost as much as the +whole foreign business of England two generations before. At the first +date, colonial trade was but one-twelfth of the English export business; +at the second date, it was considerably more than one-third. In 1704, +Pennsylvania bought in English markets goods to the value of $11,459; in +1772 the purchases of the same colony amounted to $507,909. In short, +Pennsylvania imports increased fifty times within sixty-eight years, +amounting in 1772 to almost the entire export trade of England to the +colonies at the opening of the century. The American colonies were +indeed a great source of wealth to English merchants. + +=Intercolonial Commerce.=--Although the bad roads of colonial times made +overland transportation difficult and costly, the many rivers and +harbors along the coast favored a lively water-borne trade among the +colonies. The Connecticut, Hudson, Delaware, and Susquehanna rivers in +the North and the many smaller rivers in the South made it possible for +goods to be brought from, and carried to, the interior regions in little +sailing vessels with comparative ease. Sloops laden with manufactures, +domestic and foreign, collected at some city like Providence, New York, +or Philadelphia, skirted the coasts, visited small ports, and sailed up +the navigable rivers to trade with local merchants who had for exchange +the raw materials which they had gathered in from neighboring farms. +Larger ships carried the grain, live stock, cloth, and hardware of New +England to the Southern colonies, where they were traded for tobacco, +leather, tar, and ship timber. From the harbors along the Connecticut +shores there were frequent sailings down through Long Island Sound to +Maryland, Virginia, and the distant Carolinas. + +=Growth of Towns.=--In connection with this thriving trade and industry +there grew up along the coast a number of prosperous commercial centers +which were soon reckoned among the first commercial towns of the whole +British empire, comparing favorably in numbers and wealth with such +ports as Liverpool and Bristol. The statistical records of that time are +mainly guesses; but we know that Philadelphia stood first in size among +these towns. Serving as the port of entry for Pennsylvania, Delaware, +and western Jersey, it had drawn within its borders, just before the +Revolution, about 25,000 inhabitants. Boston was second in rank, with +somewhat more than 20,000 people. New York, the "commercial capital of +Connecticut and old East Jersey," was slightly smaller than Boston, but +growing at a steady rate. The fourth town in size was Charleston, South +Carolina, with about 10,000 inhabitants. Newport in Rhode Island, a +center of rum manufacture and shipping, stood fifth, with a population +of about 7000. Baltimore and Norfolk were counted as "considerable +towns." In the interior, Hartford in Connecticut, Lancaster and York in +Pennsylvania, and Albany in New York, with growing populations and +increasing trade, gave prophecy of an urban America away from the +seaboard. The other towns were straggling villages. Williamsburg, +Virginia, for example, had about two hundred houses, in which dwelt a +dozen families of the gentry and a few score of tradesmen. Inland county +seats often consisted of nothing more than a log courthouse, a prison, +and one wretched inn to house judges, lawyers, and litigants during the +sessions of the court. + +The leading towns exercised an influence on colonial opinion all out of +proportion to their population. They were the centers of wealth, for one +thing; of the press and political activity, for another. Merchants and +artisans could readily take concerted action on public questions arising +from their commercial operations. The towns were also centers for news, +gossip, religious controversy, and political discussion. In the market +places the farmers from the countryside learned of British policies and +laws, and so, mingling with the townsmen, were drawn into the main +currents of opinion which set in toward colonial nationalism and +independence. + + +=References= + +J. Bishop, _History of American Manufactures_ (2 vols.). + +E.L. Bogart, _Economic History of the United States_. + +P.A. Bruce, _Economic History of Virginia_ (2 vols.). + +E. Semple, _American History and Its Geographical Conditions_. + +W. Weeden, _Economic and Social History of New England_. (2 vols.). + + +=Questions= + +1. Is land in your community parceled out into small farms? Contrast the +system in your community with the feudal system of land tenure. + +2. Are any things owned and used in common in your community? Why did +common tillage fail in colonial times? + +3. Describe the elements akin to feudalism which were introduced in the +colonies. + +4. Explain the success of freehold tillage. + +5. Compare the life of the planter with that of the farmer. + +6. How far had the western frontier advanced by 1776? + +7. What colonial industry was mainly developed by women? Why was it very +important both to the Americans and to the English? + +8. What were the centers for iron working? Ship building? + +9. Explain how the fisheries affected many branches of trade and +industry. + +10. Show how American trade formed a vital part of English business. + +11. How was interstate commerce mainly carried on? + +12. What were the leading towns? Did they compare in importance with +British towns of the same period? + + +=Research Topics= + +=Land Tenure.=--Coman, _Industrial History_ (rev. ed.), pp. 32-38. +Special reference: Bruce, _Economic History of Virginia_, Vol. I, Chap. +VIII. + +=Tobacco Planting in Virginia.=--Callender, _Economic History of the +United States_, pp. 22-28. + +=Colonial Agriculture.=--Coman, pp. 48-63. Callender, pp. 69-74. +Reference: J.R.H. Moore, _Industrial History of the American People_, +pp. 131-162. + +=Colonial Manufactures.=--Coman, pp. 63-73. Callender, pp. 29-44. +Special reference: Weeden, _Economic and Social History of New England_. + +=Colonial Commerce.=--Coman, pp. 73-85. Callender, pp. 51-63, 78-84. +Moore, pp. 163-208. Lodge, _Short History of the English Colonies_, pp. +409-412, 229-231, 312-314. + + + + +Chapter III + +SOCIAL AND POLITICAL PROGRESS + + +Colonial life, crowded as it was with hard and unremitting toil, left +scant leisure for the cultivation of the arts and sciences. There was +little money in private purses or public treasuries to be dedicated to +schools, libraries, and museums. Few there were with time to read long +and widely, and fewer still who could devote their lives to things that +delight the eye and the mind. And yet, poor and meager as the +intellectual life of the colonists may seem by way of comparison, heroic +efforts were made in every community to lift the people above the plane +of mere existence. After the first clearings were opened in the forests +those efforts were redoubled, and with lengthening years told upon the +thought and spirit of the land. The appearance, during the struggle with +England, of an extraordinary group of leaders familiar with history, +political philosophy, and the arts of war, government, and diplomacy +itself bore eloquent testimony to the high quality of the American +intellect. No one, not even the most critical, can run through the +writings of distinguished Americans scattered from Massachusetts to +Georgia--the Adamses, Ellsworth, the Morrises, the Livingstons, +Hamilton, Franklin, Washington, Madison, Marshall, Henry, the Randolphs, +and the Pinckneys--without coming to the conclusion that there was +something in American colonial life which fostered minds of depth and +power. Women surmounted even greater difficulties than the men in the +process of self-education, and their keen interest in public issues is +evident in many a record like the _Letters_ of Mrs. John Adams to her +husband during the Revolution; the writings of Mrs. Mercy Otis Warren, +the sister of James Otis, who measured her pen with the British +propagandists; and the patriot newspapers founded and managed by women. + + +THE LEADERSHIP OF THE CHURCHES + +In the intellectual life of America, the churches assumed a role of high +importance. There were abundant reasons for this. In many of the +colonies--Maryland, Pennsylvania, and New England--the religious impulse +had been one of the impelling motives in stimulating immigration. In all +the colonies, the clergy, at least in the beginning, formed the only +class with any leisure to devote to matters of the spirit. They preached +on Sundays and taught school on week days. They led in the discussion of +local problems and in the formation of political opinion, so much of +which was concerned with the relation between church and state. They +wrote books and pamphlets. They filled most of the chairs in the +colleges; under clerical guidance, intellectual and spiritual, the +Americans received their formal education. In several of the provinces +the Anglican Church was established by law. In New England the Puritans +were supreme, notwithstanding the efforts of the crown to overbear their +authority. In the Middle colonies, particularly, the multiplication of +sects made the dominance of any single denomination impossible; and in +all of them there was a growing diversity of faith, which promised in +time a separation of church and state and freedom of opinion. + +=The Church of England.=--Virginia was the stronghold of the English +system of church and state. The Anglican faith and worship were +prescribed by law, sustained by taxes imposed on all, and favored by the +governor, the provincial councilors, and the richest planters. "The +Established Church," says Lodge, "was one of the appendages of the +Virginia aristocracy. They controlled the vestries and the ministers, +and the parish church stood not infrequently on the estate of the +planter who built and managed it." As in England, Catholics and +Protestant Dissenters were at first laid under heavy disabilities. Only +slowly and on sufferance were they admitted to the province; but when +once they were even covertly tolerated, they pressed steadily in, until, +by the Revolution, they outnumbered the adherents of the established +order. + +The Church was also sanctioned by law and supported by taxes in the +Carolinas after 1704, and in Georgia after that colony passed directly +under the crown in 1754--this in spite of the fact that the majority of +the inhabitants were Dissenters. Against the protests of the Catholics +it was likewise established in Maryland. In New York, too, +notwithstanding the resistance of the Dutch, the Established Church was +fostered by the provincial officials, and the Anglicans, embracing about +one-fifteenth of the population, exerted an influence all out of +proportion to their numbers. + +Many factors helped to enhance the power of the English Church in the +colonies. It was supported by the British government and the official +class sent out to the provinces. Its bishops and archbishops in England +were appointed by the king, and its faith and service were set forth by +acts of Parliament. Having its seat of power in the English monarchy, it +could hold its clergy and missionaries loyal to the crown and so +counteract to some extent the independent spirit that was growing up in +America. The Church, always a strong bulwark of the state, therefore had +a political role to play here as in England. Able bishops and far-seeing +leaders firmly grasped this fact about the middle of the eighteenth +century and redoubled their efforts to augment the influence of the +Church in provincial affairs. Unhappily for their plans they failed to +calculate in advance the effect of their methods upon dissenting +Protestants, who still cherished memories of bitter religious conflicts +in the mother country. + +=Puritanism in New England.=--If the established faith made for imperial +unity, the same could not be said of Puritanism. The Plymouth Pilgrims +had cast off all allegiance to the Anglican Church and established a +separate and independent congregation before they came to America. The +Puritans, essaying at first the task of reformers within the Church, +soon after their arrival in Massachusetts, likewise flung off their yoke +of union with the Anglicans. In each town a separate congregation was +organized, the male members choosing the pastor, the teachers, and the +other officers. They also composed the voters in the town meeting, where +secular matters were determined. The union of church and government was +thus complete, and uniformity of faith and life prescribed by law and +enforced by civil authorities; but this worked for local autonomy +instead of imperial unity. + +The clergy became a powerful class, dominant through their learning and +their fearful denunciations of the faithless. They wrote the books for +the people to read--the famous Cotton Mather having three hundred and +eighty-three books and pamphlets to his credit. In cooperation with the +civil officers they enforced a strict observance of the Puritan +Sabbath--a day of rest that began at six o'clock on Saturday evening and +lasted until sunset on Sunday. All work, all trading, all amusement, and +all worldly conversation were absolutely prohibited during those hours. +A thoughtless maid servant who for some earthly reason smiled in church +was in danger of being banished as a vagabond. Robert Pike, a devout +Puritan, thinking the sun had gone to rest, ventured forth on horseback +one Sunday evening and was luckless enough to have a ray of light strike +him through a rift in the clouds. The next day he was brought into court +and fined for "his ungodly conduct." With persons accused of witchcraft +the Puritans were still more ruthless. When a mania of persecution swept +over Massachusetts in 1692, eighteen people were hanged, one was pressed +to death, many suffered imprisonment, and two died in jail. + +Just about this time, however, there came a break in the uniformity of +Puritan rule. The crown and church in England had long looked upon it +with disfavor, and in 1684 King Charles II annulled the old charter of +the Massachusetts Bay Company. A new document issued seven years later +wrested from the Puritans of the colony the right to elect their own +governor and reserved the power of appointment to the king. It also +abolished the rule limiting the suffrage to church members, substituting +for it a simple property qualification. Thus a royal governor and an +official family, certain to be Episcopalian in faith and monarchist in +sympathies, were forced upon Massachusetts; and members of all religious +denominations, if they had the required amount of property, were +permitted to take part in elections. By this act in the name of the +crown, the Puritan monopoly was broken down in Massachusetts, and that +province was brought into line with Connecticut, Rhode Island, and New +Hampshire, where property, not religious faith, was the test for the +suffrage. + +=Growth of Religious Toleration.=--Though neither the Anglicans of +Virginia nor the Puritans of Massachusetts believed in toleration for +other denominations, that principle was strictly applied in Rhode +Island. There, under the leadership of Roger Williams, liberty in +matters of conscience was established in the beginning. Maryland, by +granting in 1649 freedom to those who professed to believe in Jesus +Christ, opened its gates to all Christians; and Pennsylvania, true to +the tenets of the Friends, gave freedom of conscience to those "who +confess and acknowledge the one Almighty and Eternal God to be the +creator, upholder, and ruler of the World." By one circumstance or +another, the Middle colonies were thus early characterized by diversity +rather than uniformity of opinion. Dutch Protestants, Huguenots, +Quakers, Baptists, Presbyterians, New Lights, Moravians, Lutherans, +Catholics, and other denominations became too strongly intrenched and +too widely scattered to permit any one of them to rule, if it had +desired to do so. There were communities and indeed whole sections where +one or another church prevailed, but in no colony was a legislature +steadily controlled by a single group. Toleration encouraged diversity, +and diversity, in turn, worked for greater toleration. + +The government and faith of the dissenting denominations conspired with +economic and political tendencies to draw America away from the English +state. Presbyterians, Quakers, Baptists, and Puritans had no hierarchy +of bishops and archbishops to bind them to the seat of power in London. +Neither did they look to that metropolis for guidance in interpreting +articles of faith. Local self-government in matters ecclesiastical +helped to train them for local self-government in matters political. The +spirit of independence which led Dissenters to revolt in the Old World, +nourished as it was amid favorable circumstances in the New World, made +them all the more zealous in the defense of every right against +authority imposed from without. + + +SCHOOLS AND COLLEGES + +=Religion and Local Schools.=--One of the first cares of each Protestant +denomination was the education of the children in the faith. In this +work the Bible became the center of interest. The English version was +indeed the one book of the people. Farmers, shopkeepers, and artisans, +whose life had once been bounded by the daily routine of labor, found in +the Scriptures not only an inspiration to religious conduct, but also a +book of romance, travel, and history. "Legend and annal," says John +Richard Green, "war-song and psalm, state-roll and biography, the mighty +voices of prophets, the parables of Evangelists, stories of mission +journeys, of perils by sea and among the heathen, philosophic arguments, +apocalyptic visions, all were flung broadcast over minds unoccupied for +the most part by any rival learning.... As a mere literary monument, the +English version of the Bible remains the noblest example of the English +tongue." It was the King James version just from the press that the +Pilgrims brought across the sea with them. + +For the authority of the Established Church was substituted the +authority of the Scriptures. The Puritans devised a catechism based upon +their interpretation of the Bible, and, very soon after their arrival in +America, they ordered all parents and masters of servants to be diligent +in seeing that their children and wards were taught to read religious +works and give answers to the religious questions. Massachusetts was +scarcely twenty years old before education of this character was +declared to be compulsory, and provision was made for public schools +where those not taught at home could receive instruction in reading and +writing. + +[Illustration: A PAGE FROM A FAMOUS SCHOOLBOOK + + + A In ADAM'S Fall + We sinned all. + + B Heaven to find, + The Bible Mind. + + C Christ crucify'd + For sinners dy'd. + + D The Deluge drown'd + The Earth around. + + E ELIJAH hid + by Ravens fed. + + F The judgment made + FELIX afraid.] + + + +Outside of New England the idea of compulsory education was not regarded +with the same favor; but the whole land was nevertheless dotted with +little schools kept by "dames, itinerant teachers, or local parsons." +Whether we turn to the life of Franklin in the North or Washington in +the South, we read of tiny schoolhouses, where boys, and sometimes +girls, were taught to read and write. Where there were no schools, +fathers and mothers of the better kind gave their children the rudiments +of learning. Though illiteracy was widespread, there is evidence to show +that the diffusion of knowledge among the masses was making steady +progress all through the eighteenth century. + +=Religion and Higher Learning.=--Religious motives entered into the +establishment of colleges as well as local schools. Harvard, founded in +1636, and Yale, opened in 1718, were intended primarily to train +"learned and godly ministers" for the Puritan churches of New England. +To the far North, Dartmouth, chartered in 1769, was designed first as a +mission to the Indians and then as a college for the sons of New England +farmers preparing to preach, teach, or practice law. The College of New +Jersey, organized in 1746 and removed to Princeton eleven years later, +was sustained by the Presbyterians. Two colleges looked to the +Established Church as their source of inspiration and support: William +and Mary, founded in Virginia in 1693, and King's College, now Columbia +University, chartered by King George II in 1754, on an appeal from the +New York Anglicans, alarmed at the growth of religious dissent and the +"republican tendencies" of the age. Two colleges revealed a drift away +from sectarianism. Brown, established in Rhode Island in 1764, and the +Philadelphia Academy, forerunner of the University of Pennsylvania, +organized by Benjamin Franklin, reflected the spirit of toleration by +giving representation on the board of trustees to several religious +sects. It was Franklin's idea that his college should prepare young men +to serve in public office as leaders of the people and ornaments to +their country. + +=Self-education in America.=--Important as were these institutions of +learning, higher education was by no means confined within their walls. +Many well-to-do families sent their sons to Oxford or Cambridge in +England. Private tutoring in the home was common. In still more families +there were intelligent children who grew up in the great colonial school +of adversity and who trained themselves until, in every contest of mind +and wit, they could vie with the sons of Harvard or William and Mary or +any other college. Such, for example, was Benjamin Franklin, whose +charming autobiography, in addition to being an American classic, is a +fine record of self-education. His formal training in the classroom was +limited to a few years at a local school in Boston; but his +self-education continued throughout his life. He early manifested a zeal +for reading, and devoured, he tells us, his father's dry library on +theology, Bunyan's works, Defoe's writings, Plutarch's _Lives_, Locke's +_On the Human Understanding_, and innumerable volumes dealing with +secular subjects. His literary style, perhaps the best of his time, +Franklin acquired by the diligent and repeated analysis of the +_Spectator_. In a life crowded with labors, he found time to read widely +in natural science and to win single-handed recognition at the hands of +European savants for his discoveries in electricity. By his own efforts +he "attained an acquaintance" with Latin, Italian, French, and Spanish, +thus unconsciously preparing himself for the day when he was to speak +for all America at the court of the king of France. + +Lesser lights than Franklin, educated by the same process, were found +all over colonial America. From this fruitful source of native ability, +self-educated, the American cause drew great strength in the trials of +the Revolution. + + +THE COLONIAL PRESS + +=The Rise of the Newspaper.=--The evolution of American democracy into a +government by public opinion, enlightened by the open discussion of +political questions, was in no small measure aided by a free press. That +too, like education, was a matter of slow growth. A printing press was +brought to Massachusetts in 1639, but it was put in charge of an +official censor and limited to the publication of religious works. Forty +years elapsed before the first newspaper appeared, bearing the curious +title, _Public Occurrences Both Foreign and Domestic_, and it had not +been running very long before the government of Massachusetts suppressed +it for discussing a political question. + +Publishing, indeed, seemed to be a precarious business; but in 1704 +there came a second venture in journalism, _The Boston News-Letter_, +which proved to be a more lasting enterprise because it refrained from +criticizing the authorities. Still the public interest languished. When +Franklin's brother, James, began to issue his _New England Courant_ +about 1720, his friends sought to dissuade him, saying that one +newspaper was enough for America. Nevertheless he continued it; and his +confidence in the future was rewarded. In nearly every colony a gazette +or chronicle appeared within the next thirty years or more. Benjamin +Franklin was able to record in 1771 that America had twenty-five +newspapers. Boston led with five. Philadelphia had three: two in English +and one in German. + +=Censorship and Restraints on the Press.=--The idea of printing, +unlicensed by the government and uncontrolled by the church, was, +however, slow in taking form. The founders of the American colonies had +never known what it was to have the free and open publication of books, +pamphlets, broadsides, and newspapers. When the art of printing was +first discovered, the control of publishing was vested in clerical +authorities. After the establishment of the State Church in England in +the reign of Elizabeth, censorship of the press became a part of royal +prerogative. Printing was restricted to Oxford, Cambridge, and London; +and no one could publish anything without previous approval of the +official censor. When the Puritans were in power, the popular party, +with a zeal which rivaled that of the crown, sought, in turn, to silence +royalist and clerical writers by a vigorous censorship. After the +restoration of the monarchy, control of the press was once more placed +in royal hands, where it remained until 1695, when Parliament, by +failing to renew the licensing act, did away entirely with the official + +censorship. By that time political parties were so powerful and so +active and printing presses were so numerous that official review of all +published matter became a sheer impossibility. + +In America, likewise, some troublesome questions arose in connection +with freedom of the press. The Puritans of Massachusetts were no less +anxious than King Charles or the Archbishop of London to shut out from +the prying eyes of the people all literature "not mete for them to +read"; and so they established a system of official licensing for +presses, which lasted until 1755. In the other colonies where there was +more diversity of opinion and publishers could set up in business with +impunity, they were nevertheless constantly liable to arrest for +printing anything displeasing to the colonial governments. In 1721 the +editor of the _Mercury_ in Philadelphia was called before the +proprietary council and ordered to apologize for a political article, +and for a later offense of a similar character he was thrown into jail. +A still more famous case was that of Peter Zenger, a New York publisher, +who was arrested in 1735 for criticising the administration. Lawyers who +ventured to defend the unlucky editor were deprived of their licenses to +practice, and it became necessary to bring an attorney all the way from +Philadelphia. By this time the tension of feeling was high, and the +approbation of the public was forthcoming when the lawyer for the +defense exclaimed to the jury that the very cause of liberty itself, not +that of the poor printer, was on trial! The verdict for Zenger, when it +finally came, was the signal for an outburst of popular rejoicing. +Already the people of King George's province knew how precious a thing +is the freedom of the press. + +Thanks to the schools, few and scattered as they were, and to the +vigilance of parents, a very large portion, perhaps nearly one-half, of +the colonists could read. Through the newspapers, pamphlets, and +almanacs that streamed from the types, the people could follow the +course of public events and grasp the significance of political +arguments. An American opinion was in the process of making--an +independent opinion nourished by the press and enriched by discussions +around the fireside and at the taverns. When the day of resistance to +British rule came, government by opinion was at hand. For every person +who could hear the voice of Patrick Henry and Samuel Adams, there were a +thousand who could see their appeals on the printed page. Men who had +spelled out their letters while poring over Franklin's _Poor Richard's +Almanac_ lived to read Thomas Paine's thrilling call to arms. + + +THE EVOLUTION IN POLITICAL INSTITUTIONS + +Two very distinct lines of development appeared in colonial politics. +The one, exalting royal rights and aristocratic privileges, was the +drift toward provincial government through royal officers appointed in +England. The other, leading toward democracy and self-government, was +the growth in the power of the popular legislative assembly. Each +movement gave impetus to the other, with increasing force during the +passing years, until at last the final collision between the two ideals +of government came in the war of independence. + +=The Royal Provinces.=--Of the thirteen English colonies eight were +royal provinces in 1776, with governors appointed by the king. Virginia +passed under the direct rule of the crown in 1624, when the charter of +the London Company was annulled. The Massachusetts Bay corporation lost +its charter in 1684, and the new instrument granted seven years later +stripped the colonists of the right to choose their chief executive. In +the early decades of the eighteenth century both the Carolinas were +given the provincial instead of the proprietary form. New Hampshire, +severed from Massachusetts in 1679, and Georgia, surrendered by the +trustees in 1752, went into the hands of the crown. New York, +transferred to the Duke of York on its capture from the Dutch in 1664, +became a province when he took the title of James II in 1685. New +Jersey, after remaining for nearly forty years under proprietors, was +brought directly under the king in 1702. Maryland, Pennsylvania, and +Delaware, although they retained their proprietary character until the +Revolution, were in some respects like the royal colonies, for their +governors were as independent of popular choice as were the appointees +of King George. Only two colonies, Rhode Island and Connecticut, +retained full self-government on the eve of the Revolution. They alone +had governors and legislatures entirely of their own choosing. + +The chief officer of the royal province was the governor, who enjoyed +high and important powers which he naturally sought to augment at every +turn. He enforced the laws and, usually with the consent of a council, +appointed the civil and military officers. He granted pardons and +reprieves; he was head of the highest court; he was commander-in-chief +of the militia; he levied troops for defense and enforced martial law in +time of invasion, war, and rebellion. In all the provinces, except +Massachusetts, he named the councilors who composed the upper house of +the legislature and was likely to choose those who favored his claims. +He summoned, adjourned, and dissolved the popular assembly, or the lower +house; he laid before it the projects of law desired by the crown; and +he vetoed measures which he thought objectionable. Here were in America +all the elements of royal prerogative against which Hampden had +protested and Cromwell had battled in England. + +[Illustration: THE ROYAL GOVERNOR'S PALACE AT NEW BERNE] + +The colonial governors were generally surrounded by a body of +office-seekers and hunters for land grants. Some of them were noblemen +of broken estates who had come to America to improve their fortunes. The +pretensions of this circle grated on colonial nerves, and privileges +granted to them, often at the expense of colonists, did much to deepen +popular antipathy to the British government. Favors extended to +adherents of the Established Church displeased Dissenters. The +reappearance of this formidable union of church and state, from which +they had fled, stirred anew the ancient wrath against that combination. + +=The Colonial Assembly.=--Coincident with the drift toward +administration through royal governors was the second and opposite +tendency, namely, a steady growth in the practice of self-government. +The voters of England had long been accustomed to share in taxation and +law-making through representatives in Parliament, and the idea was early +introduced in America. Virginia was only twelve years old (1619) when +its first representative assembly appeared. As the towns of +Massachusetts multiplied and it became impossible for all the members of +the corporation to meet at one place, the representative idea was +adopted, in 1633. The river towns of Connecticut formed a representative +system under their "Fundamental Orders" of 1639, and the entire colony +was given a royal charter in 1662. Generosity, as well as practical +considerations, induced such proprietors as Lord Baltimore and William +Penn to invite their colonists to share in the government as soon as any +considerable settlements were made. Thus by one process or another every +one of the colonies secured a popular assembly. + +It is true that in the provision for popular elections, the suffrage was +finally restricted to property owners or taxpayers, with a leaning +toward the freehold qualification. In Virginia, the rural voter had to +be a freeholder owning at least fifty acres of land, if there was no +house on it, or twenty-five acres with a house twenty-five feet square. +In Massachusetts, the voter for member of the assembly under the charter +of 1691 had to be a freeholder of an estate worth forty shillings a year +at least or of other property to the value of forty pounds sterling. In +Pennsylvania, the suffrage was granted to freeholders owning fifty acres +or more of land well seated, twelve acres cleared, and to other persons +worth at least fifty pounds in lawful money. + +Restrictions like these undoubtedly excluded from the suffrage a very +considerable number of men, particularly the mechanics and artisans of +the towns, who were by no means content with their position. +Nevertheless, it was relatively easy for any man to acquire a small +freehold, so cheap and abundant was land; and in fact a large proportion +of the colonists were land owners. Thus the assemblies, in spite of the +limited suffrage, acquired a democratic tone. + +The popular character of the assemblies increased as they became engaged +in battles with the royal and proprietary governors. When called upon by +the executive to make provision for the support of the administration, +the legislature took advantage of the opportunity to make terms in the +interest of the taxpayers. It made annual, not permanent, grants of +money to pay official salaries and then insisted upon electing a +treasurer to dole it out. Thus the colonists learned some of the +mysteries of public finance, as well as the management of rapacious +officials. The legislature also used its power over money grants to +force the governor to sign bills which he would otherwise have vetoed. + +=Contests between Legislatures and Governors.=--As may be imagined, many +and bitter were the contests between the royal and proprietary governors +and the colonial assemblies. Franklin relates an amusing story of how +the Pennsylvania assembly held in one hand a bill for the executive to +sign and, in the other hand, the money to pay his salary. Then, with sly +humor, Franklin adds: "Do not, my courteous reader, take pet at our +proprietary constitution for these our bargain and sale proceedings in +legislation. It is a happy country where justice and what was your own +before can be had for ready money. It is another addition to the value +of money and of course another spur to industry. Every land is not so +blessed." + +It must not be thought, however, that every governor got off as easily +as Franklin's tale implies. On the contrary, the legislatures, like +Caesar, fed upon meat that made them great and steadily encroached upon +executive prerogatives as they tried out and found their strength. If +we may believe contemporary laments, the power of the crown in America +was diminishing when it was struck down altogether. In New York, the +friends of the governor complained in 1747 that "the inhabitants of +plantations are generally educated in republican principles; upon +republican principles all is conducted. Little more than a shadow of +royal authority remains in the Northern colonies." "Here," echoed the +governor of South Carolina, the following year, "levelling principles +prevail; the frame of the civil government is unhinged; a governor, if +he would be idolized, must betray his trust; the people have got their +whole administration in their hands; the election of the members of the +assembly is by ballot; not civil posts only, but all ecclesiastical +preferments, are in the disposal or election of the people." + +Though baffled by the "levelling principles" of the colonial assemblies, +the governors did not give up the case as hopeless. Instead they evolved +a system of policy and action which they thought could bring the +obstinate provincials to terms. That system, traceable in their letters +to the government in London, consisted of three parts: (1) the royal +officers in the colonies were to be made independent of the legislatures +by taxes imposed by acts of Parliament; (2) a British standing army was +to be maintained in America; (3) the remaining colonial charters were to +be revoked and government by direct royal authority was to be enlarged. + +Such a system seemed plausible enough to King George III and to many +ministers of the crown in London. With governors, courts, and an army +independent of the colonists, they imagined it would be easy to carry +out both royal orders and acts of Parliament. This reasoning seemed both +practical and logical. Nor was it founded on theory, for it came fresh +from the governors themselves. It was wanting in one respect only. It +failed to take account of the fact that the American people were growing +strong in the practice of self-government and could dispense with the +tutelage of the British ministry, no matter how excellent it might be or +how benevolent its intentions. + + +=References= + +A.M. Earle, _Home Life in Colonial Days_. + +A.L. Cross, _The Anglican Episcopate and the American Colonies_ (Harvard +Studies). + +E.G. Dexter, _History of Education in the United States_. + +C.A. Duniway, _Freedom of the Press in Massachusetts_. + +Benjamin Franklin, _Autobiography_. + +E.B. Greene, _The Provincial Governor_ (Harvard Studies). + +A.E. McKinley, _The Suffrage Franchise in the Thirteen English Colonies_ +(Pennsylvania University Studies). + +M.C. Tyler, _History of American Literature during the Colonial Times_ +(2 vols.). + + +=Questions= + +1. Why is leisure necessary for the production of art and literature? +How may leisure be secured? + +2. Explain the position of the church in colonial life. + +3. Contrast the political roles of Puritanism and the Established +Church. + +4. How did diversity of opinion work for toleration? + +5. Show the connection between religion and learning in colonial times. + +6. Why is a "free press" such an important thing to American democracy? + +7. Relate some of the troubles of early American publishers. + +8. Give the undemocratic features of provincial government. + +9. How did the colonial assemblies help to create an independent +American spirit, in spite of a restricted suffrage? + +10. Explain the nature of the contests between the governors and the +legislatures. + + +=Research Topics= + +=Religious and Intellectual Life.=--Lodge, _Short History of the English +Colonies_: (1) in New England, pp. 418-438, 465-475; (2) in Virginia, +pp. 54-61, 87-89; (3) in Pennsylvania, pp. 232-237, 253-257; (4) in New +York, pp. 316-321. Interesting source materials in Hart, _American +History Told by Contemporaries_, Vol. II, pp. 255-275, 276-290. + +=The Government of a Royal Province, Virginia.=--Lodge, pp. 43-50. +Special Reference: E.B. Greene, _The Provincial Governor_ (Harvard +Studies). + +=The Government of a Proprietary Colony, Pennsylvania.=--Lodge, pp. +230-232. + +=Government in New England.=--Lodge, pp. 412-417. + +=The Colonial Press.=--Special Reference: G.H. Payne, _History of +Journalism in the United States_ (1920). + +=Colonial Life in General.=--John Fiske, _Old Virginia and Her +Neighbors_, Vol. II, pp. 174-269; Elson, _History of the United States_, +pp. 197-210. + +=Colonial Government in General.=--Elson, pp. 210-216. + + + + +CHAPTER IV + +THE DEVELOPMENT OF COLONIAL NATIONALISM + + +It is one of the well-known facts of history that a people loosely +united by domestic ties of a political and economic nature, even a +people torn by domestic strife, may be welded into a solid and compact +body by an attack from a foreign power. The imperative call to common +defense, the habit of sharing common burdens, the fusing force of common +service--these things, induced by the necessity of resisting outside +interference, act as an amalgam drawing together all elements, except, +perhaps, the most discordant. The presence of the enemy allays the most +virulent of quarrels, temporarily at least. "Politics," runs an old +saying, "stops at the water's edge." + +This ancient political principle, so well understood in diplomatic +circles, applied nearly as well to the original thirteen American +colonies as to the countries of Europe. The necessity for common +defense, if not equally great, was certainly always pressing. Though it +has long been the practice to speak of the early settlements as founded +in "a wilderness," this was not actually the case. From the earliest +days of Jamestown on through the years, the American people were +confronted by dangers from without. All about their tiny settlements +were Indians, growing more and more hostile as the frontier advanced and +as sharp conflicts over land aroused angry passions. To the south and +west was the power of Spain, humiliated, it is true, by the disaster to +the Armada, but still presenting an imposing front to the British +empire. To the north and west were the French, ambitious, energetic, +imperial in temper, and prepared to contest on land and water the +advance of British dominion in America. + + +RELATIONS WITH THE INDIANS AND THE FRENCH + +=Indian Affairs.=--It is difficult to make general statements about the +relations of the colonists to the Indians. The problem was presented in +different shape in different sections of America. It was not handled +according to any coherent or uniform plan by the British government, +which alone could speak for all the provinces at the same time. Neither +did the proprietors and the governors who succeeded one another, in an +irregular train, have the consistent policy or the matured experience +necessary for dealing wisely with Indian matters. As the difficulties +arose mainly on the frontiers, where the restless and pushing pioneers +were making their way with gun and ax, nearly everything that happened +was the result of chance rather than of calculation. A personal quarrel +between traders and an Indian, a jug of whisky, a keg of gunpowder, the +exchange of guns for furs, personal treachery, or a flash of bad temper +often set in motion destructive forces of the most terrible character. + +On one side of the ledger may be set innumerable generous records--of +Squanto and Samoset teaching the Pilgrims the ways of the wilds; of +Roger Williams buying his lands from the friendly natives; or of William +Penn treating with them on his arrival in America. On the other side of +the ledger must be recorded many a cruel and bloody conflict as the +frontier rolled westward with deadly precision. The Pequots on the +Connecticut border, sensing their doom, fell upon the tiny settlements +with awful fury in 1637 only to meet with equally terrible punishment. A +generation later, King Philip, son of Massasoit, the friend of the +Pilgrims, called his tribesmen to a war of extermination which brought +the strength of all New England to the field and ended in his own +destruction. In New York, the relations with the Indians, especially +with the Algonquins and the Mohawks, were marked by periodic and +desperate wars. Virginia and her Southern neighbors suffered as did New +England. In 1622 Opecacano, a brother of Powhatan, the friend of the +Jamestown settlers, launched a general massacre; and in 1644 he +attempted a war of extermination. In 1675 the whole frontier was ablaze. +Nathaniel Bacon vainly attempted to stir the colonial governor to put up +an adequate defense and, failing in that plea, himself headed a revolt +and a successful expedition against the Indians. As the Virginia +outposts advanced into the Kentucky country, the strife with the natives +was transferred to that "dark and bloody ground"; while to the +southeast, a desperate struggle with the Tuscaroras called forth the +combined forces of the two Carolinas and Virginia. + +[Illustration: _From an old print._ + +VIRGINIANS DEFENDING THEMSELVES AGAINST THE INDIANS] + +From such horrors New Jersey and Delaware were saved on account of their +geographical location. Pennsylvania, consistently following a policy of +conciliation, was likewise spared until her western vanguard came into +full conflict with the allied French and Indians. Georgia, by clever +negotiations and treaties of alliance, managed to keep on fair terms +with her belligerent Cherokees and Creeks. But neither diplomacy nor +generosity could stay the inevitable conflict as the frontier advanced, +especially after the French soldiers enlisted the Indians in their +imperial enterprises. It was then that desultory fighting became general +warfare. + +[Illustration: ENGLISH, FRENCH, AND SPANISH POSSESSIONS IN AMERICA, +1750] + +=Early Relations with the French.=--During the first decades of French +exploration and settlement in the St. Lawrence country, the English +colonies, engrossed with their own problems, gave little or no thought +to their distant neighbors. Quebec, founded in 1608, and Montreal, in +1642, were too far away, too small in population, and too slight in +strength to be much of a menace to Boston, Hartford, or New York. It was +the statesmen in France and England, rather than the colonists in +America, who first grasped the significance of the slowly converging +empires in North America. It was the ambition of Louis XIV of France, +rather than the labors of Jesuit missionaries and French rangers, that +sounded the first note of colonial alarm. + +Evidence of this lies in the fact that three conflicts between the +English and the French occurred before their advancing frontiers met on +the Pennsylvania border. King William's War (1689-1697), Queen Anne's +War (1701-1713), and King George's War (1744-1748) owed their origins +and their endings mainly to the intrigues and rivalries of European +powers, although they all involved the American colonies in struggles +with the French and their savage allies. + +=The Clash in the Ohio Valley.=--The second of these wars had hardly +closed, however, before the English colonists themselves began to be +seriously alarmed about the rapidly expanding French dominion in the +West. Marquette and Joliet, who opened the Lake region, and La Salle, +who in 1682 had gone down the Mississippi to the Gulf, had been followed +by the builders of forts. In 1718, the French founded New Orleans, thus +taking possession of the gateway to the Mississippi as well as the St. +Lawrence. A few years later they built Fort Niagara; in 1731 they +occupied Crown Point; in 1749 they formally announced their dominion +over all the territory drained by the Ohio River. Having asserted this +lofty claim, they set out to make it good by constructing in the years +1752-1754 Fort Le Boeuf near Lake Erie, Fort Venango on the upper +waters of the Allegheny, and Fort Duquesne at the junction of the +streams forming the Ohio. Though they were warned by George Washington, +in the name of the governor of Virginia, to keep out of territory "so +notoriously known to be property of the crown of Great Britain," the +French showed no signs of relinquishing their pretensions. + +[Illustration: _From an old print_ + +BRADDOCK'S RETREAT] + +=The Final Phase--the French and Indian War.=--Thus it happened that the +shot which opened the Seven Years' War, known in America as the French +and Indian War, was fired in the wilds of Pennsylvania. There began the +conflict that spread to Europe and even Asia and finally involved +England and Prussia, on the one side, and France, Austria, Spain, and +minor powers on the other. On American soil, the defeat of Braddock in +1755 and Wolfe's exploit in capturing Quebec four years later were the +dramatic features. On the continent of Europe, England subsidized +Prussian arms to hold France at bay. In India, on the banks of the +Ganges, as on the banks of the St. Lawrence, British arms were +triumphant. Well could the historian write: "Conquests equaling in +rapidity and far surpassing in magnitude those of Cortes and Pizarro had +been achieved in the East." Well could the merchants of London declare +that under the administration of William Pitt, the imperial genius of +this world-wide conflict, commerce had been "united with and made to +flourish by war." + +From the point of view of the British empire, the results of the war +were momentous. By the peace of 1763, Canada and the territory east of +the Mississippi, except New Orleans, passed under the British flag. The +remainder of the Louisiana territory was transferred to Spain and French +imperial ambitions on the American continent were laid to rest. In +exchange for Havana, which the British had seized during the war, Spain +ceded to King George the colony of Florida. Not without warrant did +Macaulay write in after years that Pitt "was the first Englishman of his +time; and he had made England the first country in the world." + + +THE EFFECTS OF WARFARE ON THE COLONIES + +The various wars with the French and the Indians, trivial in detail as +they seem to-day, had a profound influence on colonial life and on the +destiny of America. Circumstances beyond the control of popular +assemblies, jealous of their individual powers, compelled cooperation +among them, grudging and stingy no doubt, but still cooperation. The +American people, more eager to be busy in their fields or at their +trades, were simply forced to raise and support armies, to learn the +arts of warfare, and to practice, if in a small theater, the science of +statecraft. These forces, all cumulative, drove the colonists, so +tenaciously provincial in their habits, in the direction of nationalism. + +=The New England Confederation.=--It was in their efforts to deal with +the problems presented by the Indian and French menace that the +Americans took the first steps toward union. Though there were many +common ties among the settlers of New England, it required a deadly +fear of the Indians to produce in 1643 the New England Confederation, +composed of Massachusetts, Plymouth, Connecticut, and New Haven. The +colonies so united were bound together in "a firm and perpetual league +of friendship and amity for offense and defense, mutual service and +succor, upon all just occasions." They made provision for distributing +the burdens of wars among the members and provided for a congress of +commissioners from each colony to determine upon common policies. For +some twenty years the Confederation was active and it continued to hold +meetings until after the extinction of the Indian peril on the immediate +border. + +Virginia, no less than Massachusetts, was aware of the importance of +intercolonial cooperation. In the middle of the seventeenth century, the +Old Dominion began treaties of commerce and amity with New York and the +colonies of New England. In 1684 delegates from Virginia met at Albany +with the agents of New York and Massachusetts to discuss problems of +mutual defense. A few years later the Old Dominion cooperated loyally +with the Carolinas in defending their borders against Indian forays. + +=The Albany Plan of Union.=--An attempt at a general colonial union was +made in 1754. On the suggestion of the Lords of Trade in England, a +conference was held at Albany to consider Indian relations, to devise +measures of defense against the French, and to enter into "articles of +union and confederation for the general defense of his Majesty's +subjects and interests in North America as well in time of peace as of +war." New Hampshire, Massachusetts, Connecticut, Rhode Island, New York, +Pennsylvania, and Maryland were represented. After a long discussion, a +plan of union, drafted mainly, it seems, by Benjamin Franklin, was +adopted and sent to the colonies and the crown for approval. The +colonies, jealous of their individual rights, refused to accept the +scheme and the king disapproved it for the reason, Franklin said, that +it had "too much weight in the democratic part of the constitution." +Though the Albany union failed, the document is still worthy of study +because it forecast many of the perplexing problems that were not solved +until thirty-three years afterward, when another convention of which +also Franklin was a member drafted the Constitution of the United +States. + +[Illustration: BENJAMIN FRANKLIN] + +=The Military Education of the Colonists.=--The same wars that showed +the provincials the meaning of union likewise instructed them in the art +of defending their institutions. Particularly was this true of the last +French and Indian conflict, which stretched all the way from Maine to +the Carolinas and made heavy calls upon them all for troops. The answer, +it is admitted, was far from satisfactory to the British government and +the conduct of the militiamen was far from professional; but thousands +of Americans got a taste, a strong taste, of actual fighting in the +field. Men like George Washington and Daniel Morgan learned lessons that +were not forgotten in after years. They saw what American militiamen +could do under favorable circumstances and they watched British regulars +operating on American soil. "This whole transaction," shrewdly remarked +Franklin of Braddock's campaign, "gave us Americans the first suspicion +that our exalted ideas of the prowess of British regular troops had not +been well founded." It was no mere accident that the Virginia colonel +who drew his sword under the elm at Cambridge and took command of the +army of the Revolution was the brave officer who had "spurned the +whistle of bullets" at the memorable battle in western Pennsylvania. + +=Financial Burdens and Commercial Disorder.=--While the provincials were +learning lessons in warfare they were also paying the bills. All the +conflicts were costly in treasure as in blood. King Philip's war left +New England weak and almost bankrupt. The French and Indian struggle was +especially expensive. The twenty-five thousand men put in the field by +the colonies were sustained only by huge outlays of money. Paper +currency streamed from the press and debts were accumulated. Commerce +was driven from its usual channels and prices were enhanced. When the +end came, both England and America were staggering under heavy +liabilities, and to make matters worse there was a fall of prices +accompanied by a commercial depression which extended over a period of +ten years. It was in the midst of this crisis that measures of taxation +had to be devised to pay the cost of the war, precipitating the quarrel +which led to American independence. + +=The Expulsion of French Power from North America.=--The effects of the +defeat administered to France, as time proved, were difficult to +estimate. Some British statesmen regarded it as a happy circumstance +that the colonists, already restive under their administration, had no +foreign power at hand to aid them in case they struck for independence. +American leaders, on the other hand, now that the soldiers of King Louis +were driven from the continent, thought that they had no other country +to fear if they cast off British sovereignty. At all events, France, +though defeated, was not out of the sphere of American influence; for, +as events proved, it was the fortunate French alliance negotiated by +Franklin that assured the triumph of American arms in the War of the +Revolution. + + +COLONIAL RELATIONS WITH THE BRITISH GOVERNMENT + +It was neither the Indian wars nor the French wars that finally brought +forth American nationality. That was the product of the long strife +with the mother country which culminated in union for the war of +independence. The forces that created this nation did not operate in the +colonies alone. The character of the English sovereigns, the course of +events in English domestic politics, and English measures of control +over the colonies--executive, legislative, and judicial--must all be +taken into account. + +=The Last of the Stuarts.=--The struggles between Charles I (1625-49) +and the parliamentary party and the turmoil of the Puritan regime +(1649-60) so engrossed the attention of Englishmen at home that they had +little time to think of colonial policies or to interfere with colonial +affairs. The restoration of the monarchy in 1660, accompanied by +internal peace and the increasing power of the mercantile classes in the +House of Commons, changed all that. In the reign of Charles II +(1660-85), himself an easy-going person, the policy of regulating trade +by act of Parliament was developed into a closely knit system and +powerful agencies to supervise the colonies were created. At the same +time a system of stricter control over the dominions was ushered in by +the annulment of the old charter of Massachusetts which conferred so +much self-government on the Puritans. + +Charles' successor, James II, a man of sterner stuff and jealous of his +authority in the colonies as well as at home, continued the policy thus +inaugurated and enlarged upon it. If he could have kept his throne, he +would have bent the Americans under a harsh rule or brought on in his +dominions a revolution like that which he precipitated at home in 1688. +He determined to unite the Northern colonies and introduce a more +efficient administration based on the pattern of the royal provinces. He +made a martinet, Sir Edmund Andros, governor of all New England, New +York, and New Jersey. The charter of Massachusetts, annulled in the last +days of his brother's reign, he continued to ignore, and that of +Connecticut would have been seized if it had not been spirited away and +hidden, according to tradition, in a hollow oak. + +For several months, Andros gave the Northern colonies a taste of +ill-tempered despotism. He wrung quit rents from land owners not +accustomed to feudal dues; he abrogated titles to land where, in his +opinion, they were unlawful; he forced the Episcopal service upon the +Old South Church in Boston; and he denied the writ of _habeas corpus_ to +a preacher who denounced taxation without representation. In the middle +of his arbitrary course, however, his hand was stayed. The news came +that King James had been dethroned by his angry subjects, and the people +of Boston, kindling a fire on Beacon Hill, summoned the countryside to +dispose of Andros. The response was prompt and hearty. The hated +governor was arrested, imprisoned, and sent back across the sea under +guard. + +The overthrow of James, followed by the accession of William and Mary +and by assured parliamentary supremacy, had an immediate effect in the +colonies. The new order was greeted with thanksgiving. Massachusetts was +given another charter which, though not so liberal as the first, +restored the spirit if not the entire letter of self-government. In the +other colonies where Andros had been operating, the old course of +affairs was resumed. + +=The Indifference of the First Two Georges.=--On the death in 1714 of +Queen Anne, the successor of King William, the throne passed to a +Hanoverian prince who, though grateful for English honors and revenues, +was more interested in Hanover than in England. George I and George II, +whose combined reigns extended from 1714 to 1760, never even learned to +speak the English language, at least without an accent. The necessity of +taking thought about colonial affairs bored both of them so that the +stoutest defender of popular privileges in Boston or Charleston had no +ground to complain of the exercise of personal prerogatives by the king. +Moreover, during a large part of this period, the direction of affairs +was in the hands of an astute leader, Sir Robert Walpole, who betrayed +his somewhat cynical view of politics by adopting as his motto: "Let +sleeping dogs lie." He revealed his appreciation of popular sentiment +by exclaiming: "I will not be the minister to enforce taxes at the +expense of blood." Such kings and such ministers were not likely to +arouse the slumbering resistance of the thirteen colonies across the +sea. + +=Control of the Crown over the Colonies.=--While no English ruler from +James II to George III ventured to interfere with colonial matters +personally, constant control over the colonies was exercised by royal +officers acting under the authority of the crown. Systematic supervision +began in 1660, when there was created by royal order a committee of the +king's council to meet on Mondays and Thursdays of each week to consider +petitions, memorials, and addresses respecting the plantations. In 1696 +a regular board was established, known as the "Lords of Trade and +Plantations," which continued, until the American Revolution, to +scrutinize closely colonial business. The chief duties of the board were +to examine acts of colonial legislatures, to recommend measures to those +assemblies for adoption, and to hear memorials and petitions from the +colonies relative to their affairs. + +The methods employed by this board were varied. All laws passed by +American legislatures came before it for review as a matter of routine. +If it found an act unsatisfactory, it recommended to the king the +exercise of his veto power, known as the royal disallowance. Any person +who believed his personal or property rights injured by a colonial law +could be heard by the board in person or by attorney; in such cases it +was the practice to hear at the same time the agent of the colony so +involved. The royal veto power over colonial legislation was not, +therefore, a formal affair, but was constantly employed on the +suggestion of a highly efficient agency of the crown. All this was in +addition to the powers exercised by the governors in the royal +provinces. + +=Judicial Control.=--Supplementing this administrative control over the +colonies was a constant supervision by the English courts of law. The +king, by virtue of his inherent authority, claimed and exercised high +appellate powers over all judicial tribunals in the empire. The right +of appeal from local courts, expressly set forth in some charters, was, +on the eve of the Revolution, maintained in every colony. Any subject in +England or America, who, in the regular legal course, was aggrieved by +any act of a colonial legislature or any decision of a colonial court, +had the right, subject to certain regulations, to carry his case to the +king in council, forcing his opponent to follow him across the sea. In +the exercise of appellate power, the king in council acting as a court +could, and frequently did, declare acts of colonial legislatures duly +enacted and approved, null and void, on the ground that they were +contrary to English law. + +=Imperial Control in Operation.=--Day after day, week after week, year +after year, the machinery for political and judicial control over +colonial affairs was in operation. At one time the British governors in +the colonies were ordered not to approve any colonial law imposing a +duty on European goods imported in English vessels. Again, when North +Carolina laid a tax on peddlers, the council objected to it as +"restrictive upon the trade and dispersion of English manufactures +throughout the continent." At other times, Indian trade was regulated in +the interests of the whole empire or grants of lands by a colonial +legislature were set aside. Virginia was forbidden to close her ports to +North Carolina lest there should be retaliation. + +In short, foreign and intercolonial trade were subjected to a control +higher than that of the colony, foreshadowing a day when the +Constitution of the United States was to commit to Congress the power to +regulate interstate and foreign commerce and commerce with the Indians. +A superior judicial power, towering above that of the colonies, as the +Supreme Court at Washington now towers above the states, kept the +colonial legislatures within the metes and bounds of established law. In +the thousands of appeals, memorials, petitions, and complaints, and the +rulings and decisions upon them, were written the real history of +British imperial control over the American colonies. + +So great was the business before the Lords of Trade that the colonies +had to keep skilled agents in London to protect their interests. As +common grievances against the operation of this machinery of control +arose, there appeared in each colony a considerable body of men, with +the merchants in the lead, who chafed at the restraints imposed on their +enterprise. Only a powerful blow was needed to weld these bodies into a +common mass nourishing the spirit of colonial nationalism. When to the +repeated minor irritations were added general and sweeping measures of +Parliament applying to every colony, the rebound came in the Revolution. + +=Parliamentary Control over Colonial Affairs.=--As soon as Parliament +gained in power at the expense of the king, it reached out to bring the +American colonies under its sway as well. Between the execution of +Charles I and the accession of George III, there was enacted an immense +body of legislation regulating the shipping, trade, and manufactures of +America. All of it, based on the "mercantile" theory then prevalent in +all countries of Europe, was designed to control the overseas +plantations in such a way as to foster the commercial and business +interests of the mother country, where merchants and men of finance had +got the upper hand. According to this theory, the colonies of the +British empire should be confined to agriculture and the production of +raw materials, and forced to buy their manufactured goods of England. + +_The Navigation Acts._--In the first rank among these measures of +British colonial policy must be placed the navigation laws framed for +the purpose of building up the British merchant marine and navy--arms so +essential in defending the colonies against the Spanish, Dutch, and +French. The beginning of this type of legislation was made in 1651 and +it was worked out into a system early in the reign of Charles II +(1660-85). + +The Navigation Acts, in effect, gave a monopoly of colonial commerce to +British ships. No trade could be carried on between Great Britain and +her dominions save in vessels built and manned by British subjects. No +European goods could be brought to America save in the ships of the +country that produced them or in English ships. These laws, which were +almost fatal to Dutch shipping in America, fell with severity upon the +colonists, compelling them to pay higher freight rates. The adverse +effect, however, was short-lived, for the measures stimulated +shipbuilding in the colonies, where the abundance of raw materials gave +the master builders of America an advantage over those of the mother +country. Thus the colonists in the end profited from the restrictive +policy written into the Navigation Acts. + +_The Acts against Manufactures._--The second group of laws was +deliberately aimed to prevent colonial industries from competing too +sharply with those of England. Among the earliest of these measures may +be counted the Woolen Act of 1699, forbidding the exportation of woolen +goods from the colonies and even the woolen trade between towns and +colonies. When Parliament learned, as the result of an inquiry, that New +England and New York were making thousands of hats a year and sending +large numbers annually to the Southern colonies and to Ireland, Spain, +and Portugal, it enacted in 1732 a law declaring that "no hats or felts, +dyed or undyed, finished or unfinished" should be "put upon any vessel +or laden upon any horse or cart with intent to export to any place +whatever." The effect of this measure upon the hat industry was almost +ruinous. A few years later a similar blow was given to the iron +industry. By an act of 1750, pig and bar iron from the colonies were +given free entry to England to encourage the production of the raw +material; but at the same time the law provided that "no mill or other +engine for slitting or rolling of iron, no plating forge to work with a +tilt hammer, and no furnace for making steel" should be built in the +colonies. As for those already built, they were declared public +nuisances and ordered closed. Thus three important economic interests of +the colonists, the woolen, hat, and iron industries, were laid under the +ban. + +_The Trade Laws._--The third group of restrictive measures passed by the +British Parliament related to the sale of colonial produce. An act of +1663 required the colonies to export certain articles to Great Britain +or to her dominions alone; while sugar, tobacco, and ginger consigned to +the continent of Europe had to pass through a British port paying custom +duties and through a British merchant's hands paying the usual +commission. At first tobacco was the only one of the "enumerated +articles" which seriously concerned the American colonies, the rest +coming mainly from the British West Indies. In the course of time, +however, other commodities were added to the list of enumerated +articles, until by 1764 it embraced rice, naval stores, copper, furs, +hides, iron, lumber, and pearl ashes. This was not all. The colonies +were compelled to bring their European purchases back through English +ports, paying duties to the government and commissions to merchants +again. + +_The Molasses Act._--Not content with laws enacted in the interest of +English merchants and manufacturers, Parliament sought to protect the +British West Indies against competition from their French and Dutch +neighbors. New England merchants had long carried on a lucrative trade +with the French islands in the West Indies and Dutch Guiana, where sugar +and molasses could be obtained in large quantities at low prices. Acting +on the protests of English planters in the Barbadoes and Jamaica, +Parliament, in 1733, passed the famous Molasses Act imposing duties on +sugar and molasses imported into the colonies from foreign +countries--rates which would have destroyed the American trade with the +French and Dutch if the law had been enforced. The duties, however, were +not collected. The molasses and sugar trade with the foreigners went on +merrily, smuggling taking the place of lawful traffic. + +=Effect of the Laws in America.=--As compared with the strict monopoly +of her colonial trade which Spain consistently sought to maintain, the +policy of England was both moderate and liberal. Furthermore, the +restrictive laws were supplemented by many measures intended to be +favorable to colonial prosperity. The Navigation Acts, for example, +redounded to the advantage of American shipbuilders and the producers +of hemp, tar, lumber, and ship stores in general. Favors in British +ports were granted to colonial producers as against foreign competitors +and in some instances bounties were paid by England to encourage +colonial enterprise. Taken all in all, there is much justification in +the argument advanced by some modern scholars to the effect that the +colonists gained more than they lost by British trade and industrial +legislation. Certainly after the establishment of independence, when +free from these old restrictions, the Americans found themselves +handicapped by being treated as foreigners rather than favored traders +and the recipients of bounties in English markets. + +Be that as it may, it appears that the colonists felt little irritation +against the mother country on account of the trade and navigation laws +enacted previous to the close of the French and Indian war. Relatively +few were engaged in the hat and iron industries as compared with those +in farming and planting, so that England's policy of restricting America +to agriculture did not conflict with the interests of the majority of +the inhabitants. The woolen industry was largely in the hands of women +and carried on in connection with their domestic duties, so that it was +not the sole support of any considerable number of people. + +As a matter of fact, moreover, the restrictive laws, especially those +relating to trade, were not rigidly enforced. Cargoes of tobacco were +boldly sent to continental ports without even so much as a bow to the +English government, to which duties should have been paid. Sugar and +molasses from the French and Dutch colonies were shipped into New +England in spite of the law. Royal officers sometimes protested against +smuggling and sometimes connived at it; but at no time did they succeed +in stopping it. Taken all in all, very little was heard of "the galling +restraints of trade" until after the French war, when the British +government suddenly entered upon a new course. + + +SUMMARY OF THE COLONIAL PERIOD + +In the period between the landing of the English at Jamestown, Virginia, +in 1607, and the close of the French and Indian war in 1763--a period of +a century and a half--a new nation was being prepared on this continent +to take its place among the powers of the earth. It was an epoch of +migration. Western Europe contributed emigrants of many races and +nationalities. The English led the way. Next to them in numerical +importance were the Scotch-Irish and the Germans. Into the melting pot +were also cast Dutch, Swedes, French, Jews, Welsh, and Irish. Thousands +of negroes were brought from Africa to till Southern fields or labor as +domestic servants in the North. + +Why did they come? The reasons are various. Some of them, the Pilgrims +and Puritans of New England, the French Huguenots, Scotch-Irish and +Irish, and the Catholics of Maryland, fled from intolerant governments +that denied them the right to worship God according to the dictates of +their consciences. Thousands came to escape the bondage of poverty in +the Old World and to find free homes in America. Thousands, like the +negroes from Africa, were dragged here against their will. The lure of +adventure appealed to the restless and the lure of profits to the +enterprising merchants. + +How did they come? In some cases religious brotherhoods banded together +and borrowed or furnished the funds necessary to pay the way. In other +cases great trading companies were organized to found colonies. Again it +was the wealthy proprietor, like Lord Baltimore or William Penn, who +undertook to plant settlements. Many immigrants were able to pay their +own way across the sea. Others bound themselves out for a term of years +in exchange for the cost of the passage. Negroes were brought on account +of the profits derived from their sale as slaves. + +Whatever the motive for their coming, however, they managed to get +across the sea. The immigrants set to work with a will. They cut down +forests, built houses, and laid out fields. They founded churches, +schools, and colleges. They set up forges and workshops. They spun and +wove. They fashioned ships and sailed the seas. They bartered and +traded. Here and there on favorable harbors they established centers of +commerce--Boston, Providence, New York, Philadelphia, Baltimore, and +Charleston. As soon as a firm foothold was secured on the shore line +they pressed westward until, by the close of the colonial period, they +were already on the crest of the Alleghanies. + +Though they were widely scattered along a thousand miles of seacoast, +the colonists were united in spirit by many common ties. The major +portion of them were Protestants. The language, the law, and the +literature of England furnished the basis of national unity. Most of the +colonists were engaged in the same hard task; that of conquering a +wilderness. To ties of kinship and language were added ties created by +necessity. They had to unite in defense; first, against the Indians and +later against the French. They were all subjects of the same +sovereign--the king of England. The English Parliament made laws for +them and the English government supervised their local affairs, their +trade, and their manufactures. Common forces assailed them. Common +grievances vexed them. Common hopes inspired them. + +Many of the things which tended to unite them likewise tended to throw +them into opposition to the British Crown and Parliament. Most of them +were freeholders; that is, farmers who owned their own land and tilled +it with their own hands. A free soil nourished the spirit of freedom. +The majority of them were Dissenters, critics, not friends, of the +Church of England, that stanch defender of the British monarchy. Each +colony in time developed its own legislature elected by the voters; it +grew accustomed to making laws and laying taxes for itself. Here was a +people learning self-reliance and self-government. The attempts to +strengthen the Church of England in America and the transformation of +colonies into royal provinces only fanned the spirit of independence +which they were designed to quench. + +Nevertheless, the Americans owed much of their prosperity to the +assistance of the government that irritated them. It was the protection +of the British navy that prevented Holland, Spain, and France from +wiping out their settlements. Though their manufacture and trade were +controlled in the interests of the mother country, they also enjoyed +great advantages in her markets. Free trade existed nowhere upon the +earth; but the broad empire of Britain was open to American ships and +merchandise. It could be said, with good reason, that the disadvantages +which the colonists suffered through British regulation of their +industry and trade were more than offset by the privileges they enjoyed. +Still that is somewhat beside the point, for mere economic advantage is +not necessarily the determining factor in the fate of peoples. A +thousand circumstances had helped to develop on this continent a nation, +to inspire it with a passion for independence, and to prepare it for a +destiny greater than that of a prosperous dominion of the British +empire. The economists, who tried to prove by logic unassailable that +America would be richer under the British flag, could not change the +spirit of Patrick Henry, Samuel Adams, Benjamin Franklin, or George +Washington. + + +=References= + +G.L. Beer, _Origin of the British Colonial System_ and _The Old Colonial +System_. + +A. Bradley, _The Fight for Canada in North America_. + +C.M. Andrews, _Colonial Self-Government_ (American Nation Series). + +H. Egerton, _Short History of British Colonial Policy_. + +F. Parkman, _France and England in North America_ (12 vols.). + +R. Thwaites, _France in America_ (American Nation Series). + +J. Winsor, _The Mississippi Valley_ and _Cartier to Frontenac_. + + +=Questions= + +1. How would you define "nationalism"? + +2. Can you give any illustrations of the way that war promotes +nationalism? + +3. Why was it impossible to establish and maintain a uniform policy in +dealing with the Indians? + +4. What was the outcome of the final clash with the French? + +5. Enumerate the five chief results of the wars with the French and the +Indians. Discuss each in detail. + +6. Explain why it was that the character of the English king mattered to +the colonists. + +7. Contrast England under the Stuarts with England under the +Hanoverians. + +8. Explain how the English Crown, Courts, and Parliament controlled the +colonies. + +9. Name the three important classes of English legislation affecting the +colonies. Explain each. + +10. Do you think the English legislation was beneficial or injurious to +the colonies? Why? + + +=Research Topics= + +=Rise of French Power in North America.=--Special reference: Francis +Parkman, _Struggle for a Continent_. + +=The French and Indian Wars.=--Special reference: W.M. Sloane, _French +War and the Revolution_, Chaps. VI-IX. Parkman, _Montcalm and Wolfe_, +Vol. II, pp. 195-299. Elson, _History of the United States_, pp. +171-196. + +=English Navigation Acts.=--Macdonald, _Documentary Source Book_, pp. +55, 72, 78, 90, 103. Coman, _Industrial History_, pp. 79-85. + +=British Colonial Policy.=--Callender, _Economic History of the United +States_, pp. 102-108. + +=The New England Confederation.=--Analyze the document in Macdonald, +_Source Book_, p. 45. Special reference: Fiske, _Beginnings of New +England_, pp. 140-198. + +=The Administration of Andros.=--Fiske, _Beginnings_, pp. 242-278. + +=Biographical Studies.=--William Pitt and Sir Robert Walpole. Consult +Green, _Short History of England_, on their policies, using the index. + + + + +PART II. CONFLICT AND INDEPENDENCE + + + + +CHAPTER V + +THE NEW COURSE IN BRITISH IMPERIAL POLICY + + +On October 25, 1760, King George II died and the British crown passed to +his young grandson. The first George, the son of the Elector of Hanover +and Sophia the granddaughter of James I, was a thorough German who never +even learned to speak the language of the land over which he reigned. +The second George never saw England until he was a man. He spoke English +with an accent and until his death preferred his German home. During +their reign, the principle had become well established that the king did +not govern but acted only through ministers representing the majority in +Parliament. + + +GEORGE III AND HIS SYSTEM + +=The Character of the New King.=--The third George rudely broke the +German tradition of his family. He resented the imputation that he was a +foreigner and on all occasions made a display of his British sympathies. +To the draft of his first speech to Parliament, he added the popular +phrase: "Born and educated in this country, I glory in the name of +Briton." Macaulay, the English historian, certainly of no liking for +high royal prerogative, said of George: "The young king was a born +Englishman. All his tastes and habits, good and bad, were English. No +portion of his subjects had anything to reproach him with.... His age, +his appearance, and all that was known of his character conciliated +public favor. He was in the bloom of youth; his person and address were +pleasing; scandal imputed to him no vice; and flattery might without +glaring absurdity ascribe to him many princely virtues." + +Nevertheless George III had been spoiled by his mother, his tutors, and +his courtiers. Under their influence he developed high and mighty +notions about the sacredness of royal authority and his duty to check +the pretensions of Parliament and the ministers dependent upon it. His +mother had dinned into his ears the slogan: "George, be king!" Lord +Bute, his teacher and adviser, had told him that his honor required him +to take an active part in the shaping of public policy and the making of +laws. Thus educated, he surrounded himself with courtiers who encouraged +him in the determination to rule as well as reign, to subdue all +parties, and to place himself at the head of the nation and empire. + +[Illustration: _From an old print._ + +GEORGE III] + +=Political Parties and George III.=--The state of the political parties +favored the plans of the king to restore some of the ancient luster of +the crown. The Whigs, who were composed mainly of the smaller +freeholders, merchants, inhabitants of towns, and Protestant +non-conformists, had grown haughty and overbearing through long +continuance in power and had as a consequence raised up many enemies in +their own ranks. Their opponents, the Tories, had by this time given up +all hope of restoring to the throne the direct Stuart line; but they +still cherished their old notions about divine right. With the +accession of George III the coveted opportunity came to them to rally +around the throne again. George received his Tory friends with open +arms, gave them offices, and bought them seats in the House of Commons. + +=The British Parliamentary System.=--The peculiarities of the British +Parliament at the time made smooth the way for the king and his allies +with their designs for controlling the entire government. In the first +place, the House of Lords was composed mainly of hereditary nobles whose +number the king could increase by the appointment of his favorites, as +of old. Though the members of the House of Commons were elected by +popular vote, they did not speak for the mass of English people. Great +towns like Leeds, Manchester, and Birmingham, for example, had no +representatives at all. While there were about eight million inhabitants +in Great Britain, there were in 1768 only about 160,000 voters; that is +to say, only about one in every ten adult males had a voice in the +government. Many boroughs returned one or more members to the Commons +although they had merely a handful of voters or in some instances no +voters at all. Furthermore, these tiny boroughs were often controlled by +lords who openly sold the right of representation to the highest bidder. +The "rotten-boroughs," as they were called by reformers, were a public +scandal, but George III readily made use of them to get his friends into +the House of Commons. + + +GEORGE III'S MINISTERS AND THEIR COLONIAL POLICIES + +=Grenville and the War Debt.=--Within a year after the accession of +George III, William Pitt was turned out of office, the king treating him +with "gross incivility" and the crowds shouting "Pitt forever!" The +direction of affairs was entrusted to men enjoying the king's +confidence. Leadership in the House of Commons fell to George Grenville, +a grave and laborious man who for years had groaned over the increasing +cost of government. + +The first task after the conclusion of peace in 1763 was the adjustment +of the disordered finances of the kingdom. The debt stood at the highest +point in the history of the country. More revenue was absolutely +necessary and Grenville began to search for it, turning his attention +finally to the American colonies. In this quest he had the aid of a +zealous colleague, Charles Townshend, who had long been in public +service and was familiar with the difficulties encountered by royal +governors in America. These two men, with the support of the entire +ministry, inaugurated in February, 1763, "a new system of colonial +government. It was announced by authority that there were to be no more +requisitions from the king to the colonial assemblies for supplies, but +that the colonies were to be taxed instead by act of Parliament. +Colonial governors and judges were to be paid by the Crown; they were to +be supported by a standing army of twenty regiments; and all the +expenses of this force were to be met by parliamentary taxation." + +=Restriction of Paper Money (1763).=--Among the many complaints filed +before the board of trade were vigorous protests against the issuance of +paper money by the colonial legislatures. The new ministry provided a +remedy in the act of 1763, which declared void all colonial laws +authorizing paper money or extending the life of outstanding bills. This +law was aimed at the "cheap money" which the Americans were fond of +making when specie was scarce--money which they tried to force on their +English creditors in return for goods and in payment of the interest and +principal of debts. Thus the first chapter was written in the long +battle over sound money on this continent. + +=Limitation on Western Land Sales.=--Later in the same year (1763) +George III issued a royal proclamation providing, among other things, +for the government of the territory recently acquired by the treaty of +Paris from the French. One of the provisions in this royal decree +touched frontiersmen to the quick. The contests between the king's +officers and the colonists over the disposition of western lands had +been long and sharp. The Americans chafed at restrictions on +settlement. The more adventurous were continually moving west and +"squatting" on land purchased from the Indians or simply seized without +authority. To put an end to this, the king forbade all further purchases +from the Indians, reserving to the crown the right to acquire such lands +and dispose of them for settlement. A second provision in the same +proclamation vested the power of licensing trade with the Indians, +including the lucrative fur business, in the hands of royal officers in +the colonies. These two limitations on American freedom and enterprise +were declared to be in the interest of the crown and for the +preservation of the rights of the Indians against fraud and abuses. + +=The Sugar Act of 1764.=--King George's ministers next turned their +attention to measures of taxation and trade. Since the heavy debt under +which England was laboring had been largely incurred in the defense of +America, nothing seemed more reasonable to them than the proposition +that the colonies should help to bear the burden which fell so heavily +upon the English taxpayer. The Sugar Act of 1764 was the result of this +reasoning. There was no doubt about the purpose of this law, for it was +set forth clearly in the title: "An act for granting certain duties in +the British colonies and plantations in America ... for applying the +produce of such duties ... towards defraying the expenses of defending, +protecting and securing the said colonies and plantations ... and for +more effectually preventing the clandestine conveyance of goods to and +from the said colonies and plantations and improving and securing the +trade between the same and Great Britain." The old Molasses Act had been +prohibitive; the Sugar Act of 1764 was clearly intended as a revenue +measure. Specified duties were laid upon sugar, indigo, calico, silks, +and many other commodities imported into the colonies. The enforcement +of the Molasses Act had been utterly neglected; but this Sugar Act had +"teeth in it." Special precautions as to bonds, security, and +registration of ship masters, accompanied by heavy penalties, promised +a vigorous execution of the new revenue law. + +The strict terms of the Sugar Act were strengthened by administrative +measures. Under a law of the previous year the commanders of armed +vessels stationed along the American coast were authorized to stop, +search, and, on suspicion, seize merchant ships approaching colonial +ports. By supplementary orders, the entire British official force in +America was instructed to be diligent in the execution of all trade and +navigation laws. Revenue collectors, officers of the army and navy, and +royal governors were curtly ordered to the front to do their full duty +in the matter of law enforcement. The ordinary motives for the discharge +of official obligations were sharpened by an appeal to avarice, for +naval officers who seized offenders against the law were rewarded by +large prizes out of the forfeitures and penalties. + +=The Stamp Act (1765).=--The Grenville-Townshend combination moved +steadily towards its goal. While the Sugar Act was under consideration +in Parliament, Grenville announced a plan for a stamp bill. The next +year it went through both Houses with a speed that must have astounded +its authors. The vote in the Commons stood 205 in favor to 49 against; +while in the Lords it was not even necessary to go through the formality +of a count. As George III was temporarily insane, the measure received +royal assent by a commission acting as a board of regency. Protests of +colonial agents in London were futile. "We might as well have hindered +the sun's progress!" exclaimed Franklin. Protests of a few opponents in +the Commons were equally vain. The ministry was firm in its course and +from all appearances the Stamp Act hardly roused as much as a languid +interest in the city of London. In fact, it is recorded that the fateful +measure attracted less notice than a bill providing for a commission to +act for the king when he was incapacitated. + +The Stamp Act, like the Sugar Act, declared the purpose of the British +government to raise revenue in America "towards defraying the expenses +of defending, protecting, and securing the British colonies and +plantations in America." It was a long measure of more than fifty +sections, carefully planned and skillfully drawn. By its provisions +duties were imposed on practically all papers used in legal +transactions,--deeds, mortgages, inventories, writs, bail bonds,--on +licenses to practice law and sell liquor, on college diplomas, playing +cards, dice, pamphlets, newspapers, almanacs, calendars, and +advertisements. The drag net was closely knit, for scarcely anything +escaped. + +=The Quartering Act (1765).=--The ministers were aware that the Stamp +Act would rouse opposition in America--how great they could not +conjecture. While the measure was being debated, a friend of General +Wolfe, Colonel Barre, who knew America well, gave them an ominous +warning in the Commons. "Believe me--remember I this day told you so--" +he exclaimed, "the same spirit of freedom which actuated that people at +first will accompany them still ... a people jealous of their liberties +and who will vindicate them, if ever they should be violated." The +answer of the ministry to a prophecy of force was a threat of force. +Preparations were accordingly made to dispatch a larger number of +soldiers than usual to the colonies, and the ink was hardly dry on the +Stamp Act when Parliament passed the Quartering Act ordering the +colonists to provide accommodations for the soldiers who were to enforce +the new laws. "We have the power to tax them," said one of the ministry, +"and we will tax them." + + +COLONIAL RESISTANCE FORCES REPEAL + +=Popular Opposition.=--The Stamp Act was greeted in America by an +outburst of denunciation. The merchants of the seaboard cities took the +lead in making a dignified but unmistakable protest, agreeing not to +import British goods while the hated law stood upon the books. Lawyers, +some of them incensed at the heavy taxes on their operations and others +intimidated by patriots who refused to permit them to use stamped +papers, joined with the merchants. Aristocratic colonial Whigs, who had +long grumbled at the administration of royal governors, protested +against taxation without their consent, as the Whigs had done in old +England. There were Tories, however, in the colonies as in England--many +of them of the official class--who denounced the merchants, lawyers, and +Whig aristocrats as "seditious, factious and republican." Yet the +opposition to the Stamp Act and its accompanying measure, the Quartering +Act, grew steadily all through the summer of 1765. + +In a little while it was taken up in the streets and along the +countryside. All through the North and in some of the Southern colonies, +there sprang up, as if by magic, committees and societies pledged to +resist the Stamp Act to the bitter end. These popular societies were +known as Sons of Liberty and Daughters of Liberty: the former including +artisans, mechanics, and laborers; and the latter, patriotic women. Both +groups were alike in that they had as yet taken little part in public +affairs. Many artisans, as well as all the women, were excluded from the +right to vote for colonial assemblymen. + +While the merchants and Whig gentlemen confined their efforts chiefly to +drafting well-phrased protests against British measures, the Sons of +Liberty operated in the streets and chose rougher measures. They stirred +up riots in Boston, New York, Philadelphia, and Charleston when attempts +were made to sell the stamps. They sacked and burned the residences of +high royal officers. They organized committees of inquisition who by +threats and intimidation curtailed the sale of British goods and the use +of stamped papers. In fact, the Sons of Liberty carried their operations +to such excesses that many mild opponents of the stamp tax were +frightened and drew back in astonishment at the forces they had +unloosed. The Daughters of Liberty in a quieter way were making a very +effective resistance to the sale of the hated goods by spurring on +domestic industries, their own particular province being the manufacture +of clothing, and devising substitutes for taxed foods. They helped to +feed and clothe their families without buying British goods. + +=Legislative Action against the Stamp Act.=--Leaders in the colonial +assemblies, accustomed to battle against British policies, supported the +popular protest. The Stamp Act was signed on March 22, 1765. On May 30, +the Virginia House of Burgesses passed a set of resolutions declaring +that the General Assembly of the colony alone had the right to lay taxes +upon the inhabitants and that attempts to impose them otherwise were +"illegal, unconstitutional, and unjust." It was in support of these +resolutions that Patrick Henry uttered the immortal challenge: "Caesar +had his Brutus, Charles I his Cromwell, and George III...." Cries of +"Treason" were calmly met by the orator who finished: "George III may +profit by their example. If that be treason, make the most of it." + +[Illustration: PATRICK HENRY] + +=The Stamp Act Congress.=--The Massachusetts Assembly answered the call +of Virginia by inviting the colonies to elect delegates to a Congress to +be held in New York to discuss the situation. Nine colonies responded +and sent representatives. The delegates, while professing the warmest +affection for the king's person and government, firmly spread on record +a series of resolutions that admitted of no double meaning. They +declared that taxes could not be imposed without their consent, given +through their respective colonial assemblies; that the Stamp Act showed +a tendency to subvert their rights and liberties; that the recent trade +acts were burdensome and grievous; and that the right to petition the +king and Parliament was their heritage. They thereupon made "humble +supplication" for the repeal of the Stamp Act. + +The Stamp Act Congress was more than an assembly of protest. It marked +the rise of a new agency of government to express the will of America. +It was the germ of a government which in time was to supersede the +government of George III in the colonies. It foreshadowed the Congress +of the United States under the Constitution. It was a successful attempt +at union. "There ought to be no New England men," declared Christopher +Gadsden, in the Stamp Act Congress, "no New Yorkers known on the +Continent, but all of us Americans." + +=The Repeal of the Stamp Act and the Sugar Act.=--The effect of American +resistance on opinion in England was telling. Commerce with the colonies +had been effectively boycotted by the Americans; ships lay idly swinging +at the wharves; bankruptcy threatened hundreds of merchants in London, +Bristol, and Liverpool. Workingmen in the manufacturing towns of England +were thrown out of employment. The government had sown folly and was +reaping, in place of the coveted revenue, rebellion. + +Perplexed by the storm they had raised, the ministers summoned to the +bar of the House of Commons, Benjamin Franklin, the agent for +Pennsylvania, who was in London. "Do you think it right," asked +Grenville, "that America should be protected by this country and pay no +part of the expenses?" The answer was brief: "That is not the case; the +colonies raised, clothed, and paid during the last war twenty-five +thousand men and spent many millions." Then came an inquiry whether the +colonists would accept a modified stamp act. "No, never," replied +Franklin, "never! They will never submit to it!" It was next suggested +that military force might compel obedience to law. Franklin had a ready +answer. "They cannot force a man to take stamps.... They may not find a +rebellion; they may, indeed, make one." + +The repeal of the Stamp Act was moved in the House of Commons a few days +later. The sponsor for the repeal spoke of commerce interrupted, debts +due British merchants placed in jeopardy, Manchester industries closed, +workingmen unemployed, oppression instituted, and the loss of the +colonies threatened. Pitt and Edmund Burke, the former near the close +of his career, the latter just beginning his, argued cogently in favor +of retracing the steps taken the year before. Grenville refused. +"America must learn," he wailed, "that prayers are not to be brought to +Caesar through riot and sedition." His protests were idle. The Commons +agreed to the repeal on February 22, 1766, amid the cheers of the +victorious majority. It was carried through the Lords in the face of +strong opposition and, on March 18, reluctantly signed by the king, now +restored to his right mind. + +In rescinding the Stamp Act, Parliament did not admit the contention of +the Americans that it was without power to tax them. On the contrary, it +accompanied the repeal with a Declaratory Act. It announced that the +colonies were subordinate to the crown and Parliament of Great Britain; +that the king and Parliament therefore had undoubted authority to make +laws binding the colonies in all cases whatsoever; and that the +resolutions and proceedings of the colonists denying such authority were +null and void. + +The repeal was greeted by the colonists with great popular +demonstrations. Bells were rung; toasts to the king were drunk; and +trade resumed its normal course. The Declaratory Act, as a mere paper +resolution, did not disturb the good humor of those who again cheered +the name of King George. Their confidence was soon strengthened by the +news that even the Sugar Act had been repealed, thus practically +restoring the condition of affairs before Grenville and Townshend +inaugurated their policy of "thoroughness." + + +RESUMPTION OF BRITISH REVENUE AND COMMERCIAL POLICIES + +=The Townshend Acts (1767).=--The triumph of the colonists was brief. +Though Pitt, the friend of America, was once more prime minister, and +seated in the House of Lords as the Earl of Chatham, his severe illness +gave to Townshend and the Tory party practical control over Parliament. +Unconvinced by the experience with the Stamp Act, Townshend brought +forward and pushed through both Houses of Parliament three measures, +which to this day are associated with his name. First among his +restrictive laws was that of June 29, 1767, which placed the enforcement +of the collection of duties and customs on colonial imports and exports +in the hands of British commissioners appointed by the king, resident in +the colonies, paid from the British treasury, and independent of all +control by the colonists. The second measure of the same date imposed a +tax on lead, glass, paint, tea, and a few other articles imported into +the colonies, the revenue derived from the duties to be applied toward +the payment of the salaries and other expenses of royal colonial +officials. A third measure was the Tea Act of July 2, 1767, aimed at the +tea trade which the Americans carried on illegally with foreigners. This +law abolished the duty which the East India Company had to pay in +England on tea exported to America, for it was thought that English tea +merchants might thus find it possible to undersell American tea +smugglers. + +=Writs of Assistance Legalized by Parliament.=--Had Parliament been +content with laying duties, just as a manifestation of power and right, +and neglected their collection, perhaps little would have been heard of +the Townshend Acts. It provided, however, for the strict, even the +harsh, enforcement of the law. It ordered customs officers to remain at +their posts and put an end to smuggling. In the revenue act of June 29, +1767, it expressly authorized the superior courts of the colonies to +issue "writs of assistance," empowering customs officers to enter "any +house, warehouse, shop, cellar, or other place in the British colonies +or plantations in America to search for and seize" prohibited or +smuggled goods. + +The writ of assistance, which was a general search warrant issued to +revenue officers, was an ancient device hateful to a people who +cherished the spirit of personal independence and who had made actual +gains in the practice of civil liberty. To allow a "minion of the law" +to enter a man's house and search his papers and premises, was too much +for the emotions of people who had fled to America in a quest for +self-government and free homes, who had braved such hardships to +establish them, and who wanted to trade without official interference. + +The writ of assistance had been used in Massachusetts in 1755 to prevent +illicit trade with Canada and had aroused a violent hostility at that +time. In 1761 it was again the subject of a bitter controversy which +arose in connection with the application of a customs officer to a +Massachusetts court for writs of assistance "as usual." This application +was vainly opposed by James Otis in a speech of five hours' duration--a +speech of such fire and eloquence that it sent every man who heard it +away "ready to take up arms against writs of assistance." Otis denounced +the practice as an exercise of arbitrary power which had cost one king +his head and another his throne, a tyrant's device which placed the +liberty of every man in jeopardy, enabling any petty officer to work +possible malice on any innocent citizen on the merest suspicion, and to +spread terror and desolation through the land. "What a scene," he +exclaimed, "does this open! Every man, prompted by revenge, ill-humor, +or wantonness to inspect the inside of his neighbor's house, may get a +writ of assistance. Others will ask it from self-defense; one arbitrary +exertion will provoke another until society is involved in tumult and +blood." He did more than attack the writ itself. He said that Parliament +could not establish it because it was against the British constitution. +This was an assertion resting on slender foundation, but it was quickly +echoed by the people. Then and there James Otis sounded the call to +America to resist the exercise of arbitrary power by royal officers. +"Then and there," wrote John Adams, "the child Independence was born." +Such was the hated writ that Townshend proposed to put into the hands of +customs officers in his grim determination to enforce the law. + +=The New York Assembly Suspended.=--In the very month that Townshend's +Acts were signed by the king, Parliament took a still more drastic step. +The assembly of New York, protesting against the "ruinous and +insupportable" expense involved, had failed to make provision for the +care of British troops in accordance with the terms of the Quartering +Act. Parliament therefore suspended the assembly until it promised to +obey the law. It was not until a third election was held that compliance +with the Quartering Act was wrung from the reluctant province. In the +meantime, all the colonies had learned on how frail a foundation their +representative bodies rested. + + +RENEWED RESISTANCE IN AMERICA + +=The Massachusetts Circular (1768).=--Massachusetts, under the +leadership of Samuel Adams, resolved to resist the policy of renewed +intervention in America. At his suggestion the assembly adopted a +Circular Letter addressed to the assemblies of the other colonies +informing them of the state of affairs in Massachusetts and roundly +condemning the whole British program. The Circular Letter declared that +Parliament had no right to lay taxes on Americans without their consent +and that the colonists could not, from the nature of the case, be +represented in Parliament. It went on shrewdly to submit to +consideration the question as to whether any people could be called free +who were subjected to governors and judges appointed by the crown and +paid out of funds raised independently. It invited the other colonies, +in the most temperate tones, to take thought about the common +predicament in which they were all placed. + +[Illustration: _From an old print._ + +SAMUEL ADAMS] + +=The Dissolution of Assemblies.=--The governor of Massachusetts, hearing +of the Circular Letter, ordered the assembly to rescind its appeal. On +meeting refusal, he promptly dissolved it. The Maryland, Georgia, and +South Carolina assemblies indorsed the Circular Letter and were also +dissolved at once. The Virginia House of Burgesses, thoroughly aroused, +passed resolutions on May 16, 1769, declaring that the sole right of +imposing taxes in Virginia was vested in its legislature, asserting anew +the right of petition to the crown, condemning the transportation of +persons accused of crimes or trial beyond the seas, and beseeching the +king for a redress of the general grievances. The immediate dissolution +of the Virginia assembly, in its turn, was the answer of the royal +governor. + +=The Boston Massacre.=--American opposition to the British authorities +kept steadily rising as assemblies were dissolved, the houses of +citizens searched, and troops distributed in increasing numbers among +the centers of discontent. Merchants again agreed not to import British +goods, the Sons of Liberty renewed their agitation, and women set about +the patronage of home products still more loyally. + +On the night of March 5, 1770, a crowd on the streets of Boston began to +jostle and tease some British regulars stationed in the town. Things +went from bad to worse until some "boys and young fellows" began to +throw snowballs and stones. Then the exasperated soldiers fired into the +crowd, killing five and wounding half a dozen more. The day after the +"massacre," a mass meeting was held in the town and Samuel Adams was +sent to demand the withdrawal of the soldiers. The governor hesitated +and tried to compromise. Finding Adams relentless, the governor yielded +and ordered the regulars away. + +The Boston Massacre stirred the country from New Hampshire to Georgia. +Popular passions ran high. The guilty soldiers were charged with murder. +Their defense was undertaken, in spite of the wrath of the populace, by +John Adams and Josiah Quincy, who as lawyers thought even the worst + +offenders entitled to their full rights in law. In his speech to the +jury, however, Adams warned the British government against its course, +saying, that "from the nature of things soldiers quartered in a populous +town will always occasion two mobs where they will prevent one." Two of +the soldiers were convicted and lightly punished. + +=Resistance in the South.=--The year following the Boston Massacre some +citizens of North Carolina, goaded by the conduct of the royal governor, +openly resisted his authority. Many were killed as a result and seven +who were taken prisoners were hanged as traitors. A little later royal +troops and local militia met in a pitched battle near Alamance River, +called the "Lexington of the South." + +=The _Gaspee_ Affair and the Virginia Resolutions of 1773.=--On sea as +well as on land, friction between the royal officers and the colonists +broke out into overt acts. While patrolling Narragansett Bay looking for +smugglers one day in 1772, the armed ship, _Gaspee_, ran ashore and was +caught fast. During the night several men from Providence boarded the +vessel and, after seizing the crew, set it on fire. A royal commission, +sent to Rhode Island to discover the offenders and bring them to +account, failed because it could not find a single informer. The very +appointment of such a commission aroused the patriots of Virginia to +action; and in March, 1773, the House of Burgesses passed a resolution +creating a standing committee of correspondence to develop cooperation +among the colonies in resistance to British measures. + +=The Boston Tea Party.=--Although the British government, finding the +Townshend revenue act a failure, repealed in 1770 all the duties except +that on tea, it in no way relaxed its resolve to enforce the other +commercial regulations it had imposed on the colonies. Moreover, +Parliament decided to relieve the British East India Company of the +financial difficulties into which it had fallen partly by reason of the +Tea Act and the colonial boycott that followed. In 1773 it agreed to +return to the Company the regular import duties, levied in England, on +all tea transshipped to America. A small impost of three pence, to be +collected in America, was left as a reminder of the principle laid down +in the Declaratory Act that Parliament had the right to tax the +colonists. + +This arrangement with the East India Company was obnoxious to the +colonists for several reasons. It was an act of favoritism for one +thing, in the interest of a great monopoly. For another thing, it +promised to dump on the American market, suddenly, an immense amount of +cheap tea and so cause heavy losses to American merchants who had large +stocks on hand. It threatened with ruin the business of all those who +were engaged in clandestine trade with the Dutch. It carried with it an +irritating tax of three pence on imports. In Charleston, Annapolis, New +York, and Boston, captains of ships who brought tea under this act were +roughly handled. One night in December, 1773, a band of Boston citizens, +disguised as Indians, boarded the hated tea ships and dumped the cargo +into the harbor. This was serious business, for it was open, flagrant, +determined violation of the law. As such the British government viewed +it. + + +RETALIATION BY THE BRITISH GOVERNMENT + +=Reception of the News of the Tea Riot.=--The news of the tea riot in +Boston confirmed King George in his conviction that there should be no +soft policy in dealing with his American subjects. "The die is cast," he +stated with evident satisfaction. "The colonies must either triumph or +submit.... If we take the resolute part, they will undoubtedly be very +meek." Lord George Germain characterized the tea party as "the +proceedings of a tumultuous and riotous rabble who ought, if they had +the least prudence, to follow their mercantile employments and not +trouble themselves with politics and government, which they do not +understand." This expressed, in concise form, exactly the sentiments of +Lord North, who had then for three years been the king's chief minister. +Even Pitt, Lord Chatham, was prepared to support the government in +upholding its authority. + +=The Five Intolerable Acts.=--Parliament, beginning on March 31, 1774, +passed five stringent measures, known in American history as the five +"intolerable acts." They were aimed at curing the unrest in America. The +_first_ of them was a bill absolutely shutting the port of Boston to +commerce with the outside world. The _second_, following closely, +revoked the Massachusetts charter of 1691 and provided furthermore that +the councilors should be appointed by the king, that all judges should +be named by the royal governor, and that town meetings (except to elect +certain officers) could not be held without the governor's consent. A +_third_ measure, after denouncing the "utter subversion of all lawful +government" in the provinces, authorized royal agents to transfer to +Great Britain or to other colonies the trials of officers or other +persons accused of murder in connection with the enforcement of the law. +The _fourth_ act legalized the quartering of troops in Massachusetts +towns. The _fifth_ of the measures was the Quebec Act, which granted +religious toleration to the Catholics in Canada, extended the boundaries +of Quebec southward to the Ohio River, and established, in this western +region, government by a viceroy. + +The intolerable acts went through Parliament with extraordinary +celerity. There was an opposition, alert and informed; but it was +ineffective. Burke spoke eloquently against the Boston port bill, +condemning it roundly for punishing the innocent with the guilty, and +showing how likely it was to bring grave consequences in its train. He +was heard with respect and his pleas were rejected. The bill passed both +houses without a division, the entry "unanimous" being made upon their +journals although it did not accurately represent the state of opinion. +The law destroying the charter of Massachusetts passed the Commons by a +vote of three to one; and the third intolerable act by a vote of four to +one. The triumph of the ministry was complete. "What passed in Boston," +exclaimed the great jurist, Lord Mansfield, "is the overt act of High +Treason proceeding from our over lenity and want of foresight." The +crown and Parliament were united in resorting to punitive measures. + +In the colonies the laws were received with consternation. To the +American Protestants, the Quebec Act was the most offensive. That +project they viewed not as an act of grace or of mercy but as a direct +attempt to enlist French Canadians on the side of Great Britain. The +British government did not grant religious toleration to Catholics +either at home or in Ireland and the Americans could see no good motive +in granting it in North America. The act was also offensive because +Massachusetts, Connecticut, and Virginia had, under their charters, +large claims in the territory thus annexed to Quebec. + +To enforce these intolerable acts the military arm of the British +government was brought into play. The commander-in-chief of the armed +forces in America, General Gage, was appointed governor of +Massachusetts. Reinforcements were brought to the colonies, for now King +George was to give "the rebels," as he called them, a taste of strong +medicine. The majesty of his law was to be vindicated by force. + + +FROM REFORM TO REVOLUTION IN AMERICA + +=The Doctrine of Natural Rights.=--The dissolution of assemblies, the +destruction of charters, and the use of troops produced in the colonies +a new phase in the struggle. In the early days of the contest with the +British ministry, the Americans spoke of their "rights as Englishmen" +and condemned the acts of Parliament as unlawful, as violating the +principles of the English constitution under which they all lived. When +they saw that such arguments had no effect on Parliament, they turned +for support to their "natural rights." The latter doctrine, in the form +in which it was employed by the colonists, was as English as the +constitutional argument. John Locke had used it with good effect in +defense of the English revolution in the seventeenth century. American +leaders, familiar with the writings of Locke, also took up his thesis in +the hour of their distress. They openly declared that their rights did +not rest after all upon the English constitution or a charter from the +crown. "Old Magna Carta was not the beginning of all things," retorted +Otis when the constitutional argument failed. "A time may come when +Parliament shall declare every American charter void, but the natural, +inherent, and inseparable rights of the colonists as men and as citizens +would remain and whatever became of charters can never be abolished +until the general conflagration." Of the same opinion was the young and +impetuous Alexander Hamilton. "The sacred rights of mankind," he +exclaimed, "are not to be rummaged for among old parchments or musty +records. They are written as with a sunbeam in the whole volume of human +destiny by the hand of divinity itself, and can never be erased or +obscured by mortal power." + +Firm as the American leaders were in the statement and defense of their +rights, there is every reason for believing that in the beginning they +hoped to confine the conflict to the realm of opinion. They constantly +avowed that they were loyal to the king when protesting in the strongest +language against his policies. Even Otis, regarded by the loyalists as a +firebrand, was in fact attempting to avert revolution by winning +concessions from England. "I argue this cause with the greater +pleasure," he solemnly urged in his speech against the writs of +assistance, "as it is in favor of British liberty ... and as it is in +opposition to a kind of power, the exercise of which in former periods +cost one king of England his head and another his throne." + +=Burke Offers the Doctrine of Conciliation.=--The flooding tide of +American sentiment was correctly measured by one Englishman at least, +Edmund Burke, who quickly saw that attempts to restrain the rise of +American democracy were efforts to reverse the processes of nature. He +saw how fixed and rooted in the nature of things was the American +spirit--how inevitable, how irresistible. He warned his countrymen that +there were three ways of handling the delicate situation--and only +three. One was to remove the cause of friction by changing the spirit of +the colonists--an utter impossibility because that spirit was grounded +in the essential circumstances of American life. The second was to +prosecute American leaders as criminals; of this he begged his +countrymen to beware lest the colonists declare that "a government +against which a claim of liberty is tantamount to high treason is a +government to which submission is equivalent to slavery." The third and +right way to meet the problem, Burke concluded, was to accept the +American spirit, repeal the obnoxious measures, and receive the colonies +into equal partnership. + +=Events Produce the Great Decision.=--The right way, indicated by Burke, +was equally impossible to George III and the majority in Parliament. To +their narrow minds, American opinion was contemptible and American +resistance unlawful, riotous, and treasonable. The correct way, in their +view, was to dispatch more troops to crush the "rebels"; and that very +act took the contest from the realm of opinion. As John Adams said: +"Facts are stubborn things." Opinions were unseen, but marching soldiers +were visible to the veriest street urchin. "Now," said Gouverneur +Morris, "the sheep, simple as they are, cannot be gulled as heretofore." +It was too late to talk about the excellence of the British +constitution. If any one is bewildered by the controversies of modern +historians as to why the crisis came at last, he can clarify his +understanding by reading again Edmund Burke's stately oration, _On +Conciliation with America_. + + +=References= + +G.L. Beer, _British Colonial Policy_ (1754-63). + +E. Channing, _History of the United States_, Vol. III. + +R. Frothingham, _Rise of the Republic_. + +G.E. Howard, _Preliminaries of the Revolution_ (American Nation Series). + +J.K. Hosmer, _Samuel Adams_. + +J.T. Morse, _Benjamin Franklin_. + +M.C. Tyler, _Patrick Henry_. + +J.A. Woodburn (editor), _The American Revolution_ (Selections from the +English work by Lecky). + + +=Questions= + +1. Show how the character of George III made for trouble with the +colonies. + +2. Explain why the party and parliamentary systems of England favored +the plans of George III. + +3. How did the state of English finances affect English policy? + +4. Enumerate five important measures of the English government affecting +the colonies between 1763 and 1765. Explain each in detail. + +5. Describe American resistance to the Stamp Act. What was the outcome? + +6. Show how England renewed her policy of regulation in 1767. + +7. Summarize the events connected with American resistance. + +8. With what measures did Great Britain retaliate? + +9. Contrast "constitutional" with "natural" rights. + +10. What solution did Burke offer? Why was it rejected? + + +=Research Topics= + +=Powers Conferred on Revenue Officers by Writs of Assistance.=--See a +writ in Macdonald, _Source Book_, p. 109. + +=The Acts of Parliament Respecting America.=--Macdonald, pp. 117-146. +Assign one to each student for report and comment. + +=Source Studies on the Stamp Act.=--Hart, _American History Told by +Contemporaries_, Vol. II, pp. 394-412. + +=Source Studies of the Townshend Acts.=--Hart, Vol. II, pp. 413-433. + +=American Principles.=--Prepare a table of them from the Resolutions of +the Stamp Act Congress and the Massachusetts Circular. Macdonald, pp. +136-146. + +=An English Historian's View of the Period.=--Green, _Short History of +England_, Chap. X. + +=English Policy Not Injurious to America.=--Callender, _Economic +History_, pp. 85-121. + +=A Review of English Policy.=--Woodrow Wilson, _History of the American +People_, Vol. II, pp. 129-170. + +=The Opening of the Revolution.=--Elson, _History of the United States_, +pp. 220-235. + + + + +CHAPTER VI + +THE AMERICAN REVOLUTION + + +RESISTANCE AND RETALIATION + +=The Continental Congress.=--When the news of the "intolerable acts" +reached America, every one knew what strong medicine Parliament was +prepared to administer to all those who resisted its authority. The +cause of Massachusetts became the cause of all the colonies. Opposition +to British policy, hitherto local and spasmodic, now took on a national +character. To local committees and provincial conventions was added a +Continental Congress, appropriately called by Massachusetts on June 17, +1774, at the instigation of Samuel Adams. The response to the summons +was electric. By hurried and irregular methods delegates were elected +during the summer, and on September 5 the Congress duly assembled in +Carpenter's Hall in Philadelphia. Many of the greatest men in America +were there--George Washington and Patrick Henry from Virginia and John +and Samuel Adams from Massachusetts. Every shade of opinion was +represented. Some were impatient with mild devices; the majority favored +moderation. + +The Congress drew up a declaration of American rights and stated in +clear and dignified language the grievances of the colonists. It +approved the resistance to British measures offered by Massachusetts and +promised the united support of all sections. It prepared an address to +King George and another to the people of England, disavowing the idea of +independence but firmly attacking the policies pursued by the British +government. + +=The Non-Importation Agreement.=--The Congress was not content, however, +with professions of faith and with petitions. It took one revolutionary +step. It agreed to stop the importation of British goods into America, +and the enforcement of this agreement it placed in the hands of local +"committees of safety and inspection," to be elected by the qualified +voters. The significance of this action is obvious. Congress threw +itself athwart British law. It made a rule to bind American citizens and +to be carried into effect by American officers. It set up a state within +the British state and laid down a test of allegiance to the new order. +The colonists, who up to this moment had been wavering, had to choose +one authority or the other. They were for the enforcement of the +non-importation agreement or they were against it. They either bought +English goods or they did not. In the spirit of the toast--"May Britain +be wise and America be free"--the first Continental Congress adjourned +in October, having appointed the tenth of May following for the meeting +of a second Congress, should necessity require. + +=Lord North's "Olive Branch."=--When the news of the action of the +American Congress reached England, Pitt and Burke warmly urged a repeal +of the obnoxious laws, but in vain. All they could wring from the prime +minister, Lord North, was a set of "conciliatory resolutions" proposing +to relieve from taxation any colony that would assume its share of +imperial defense and make provision for supporting the local officers of +the crown. This "olive branch" was accompanied by a resolution assuring +the king of support at all hazards in suppressing the rebellion and by +the restraining act of March 30, 1775, which in effect destroyed the +commerce of New England. + +=Bloodshed at Lexington and Concord (April 19, 1775).=--Meanwhile the +British authorities in Massachusetts relaxed none of their efforts in +upholding British sovereignty. General Gage, hearing that military +stores had been collected at Concord, dispatched a small force to seize +them. By this act he precipitated the conflict he had sought to avoid. +At Lexington, on the road to Concord, occurred "the little thing" that +produced "the great event." An unexpected collision beyond the thought +or purpose of any man had transferred the contest from the forum to the +battle field. + +=The Second Continental Congress.=--Though blood had been shed and war +was actually at hand, the second Continental Congress, which met at +Philadelphia in May, 1775, was not yet convinced that conciliation was +beyond human power. It petitioned the king to interpose on behalf of the +colonists in order that the empire might avoid the calamities of civil +war. On the last day of July, it made a temperate but firm answer to +Lord North's offer of conciliation, stating that the proposal was +unsatisfactory because it did not renounce the right to tax or repeal +the offensive acts of Parliament. + +=Force, the British Answer.=--Just as the representatives of America +were about to present the last petition of Congress to the king on +August 23, 1775, George III issued a proclamation of rebellion. This +announcement declared that the colonists, "misled by dangerous and +ill-designing men," were in a state of insurrection; it called on the +civil and military powers to bring "the traitors to justice"; and it +threatened with "condign punishment the authors, perpetrators, and +abettors of such traitorous designs." It closed with the usual prayer: +"God, save the king." Later in the year, Parliament passed a sweeping +act destroying all trade and intercourse with America. Congress was +silent at last. Force was also America's answer. + + +AMERICAN INDEPENDENCE + +=Drifting into War.=--Although the Congress had not given up all hope of +reconciliation in the spring and summer of 1775, it had firmly resolved +to defend American rights by arms if necessary. It transformed the +militiamen who had assembled near Boston, after the battle of Lexington, +into a Continental army and selected Washington as commander-in-chief. +It assumed the powers of a government and prepared to raise money, wage +war, and carry on diplomatic relations with foreign countries. + +[Illustration: _From an old print_ + +SPIRIT OF 1776] + +Events followed thick and fast. On June 17, the American militia, by +the stubborn defense of Bunker Hill, showed that it could make British +regulars pay dearly for all they got. On July 3, Washington took command +of the army at Cambridge. In January, 1776, after bitter disappointments +in drumming up recruits for its army in England, Scotland, and Ireland, +the British government concluded a treaty with the Landgrave of +Hesse-Cassel in Germany contracting, at a handsome figure, for thousands +of soldiers and many pieces of cannon. This was the crowning insult to +America. Such was the view of all friends of the colonies on both sides +of the water. Such was, long afterward, the judgment of the conservative +historian Lecky: "The conduct of England in hiring German mercenaries to +subdue the essentially English population beyond the Atlantic made +reconciliation hopeless and independence inevitable." The news of this +wretched transaction in German soldiers had hardly reached America +before there ran all down the coast the thrilling story that Washington +had taken Boston, on March 17, 1776, compelling Lord Howe to sail with +his entire army for Halifax. + +=The Growth of Public Sentiment in Favor of Independence.=--Events were +bearing the Americans away from their old position under the British +constitution toward a final separation. Slowly and against their +desires, prudent and honorable men, who cherished the ties that united +them to the old order and dreaded with genuine horror all thought of +revolution, were drawn into the path that led to the great decision. In +all parts of the country and among all classes, the question of the hour +was being debated. "American independence," as the historian Bancroft +says, "was not an act of sudden passion nor the work of one man or one +assembly. It had been discussed in every part of the country by farmers +and merchants, by mechanics and planters, by the fishermen along the +coast and the backwoodsmen of the West; in town meetings and from the +pulpit; at social gatherings and around the camp fires; in county +conventions and conferences or committees; in colonial congresses and +assemblies." + +[Illustration: _From an old print_ + +THOMAS PAINE] + +=Paine's "Commonsense."=--In the midst of this ferment of American +opinion, a bold and eloquent pamphleteer broke in upon the hesitating +public with a program for absolute independence, without fears and +without apologies. In the early days of 1776, Thomas Paine issued the +first of his famous tracts, "Commonsense," a passionate attack upon the +British monarchy and an equally passionate plea for American liberty. +Casting aside the language of petition with which Americans had hitherto +addressed George III, Paine went to the other extreme and assailed him +with many a violent epithet. He condemned monarchy itself as a system +which had laid the world "in blood and ashes." Instead of praising the +British constitution under which colonists had been claiming their +rights, he brushed it aside as ridiculous, protesting that it was "owing +to the constitution of the people, not to the constitution of the +government, that the Crown is not as oppressive in England as in +Turkey." + +Having thus summarily swept away the grounds of allegiance to the old +order, Paine proceeded relentlessly to an argument for immediate +separation from Great Britain. There was nothing in the sphere of +practical interest, he insisted, which should bind the colonies to the +mother country. Allegiance to her had been responsible for the many wars +in which they had been involved. Reasons of trade were not less weighty +in behalf of independence. "Our corn will fetch its price in any market +in Europe and our imported goods must be paid for, buy them where we +will." As to matters of government, "it is not in the power of Britain +to do this continent justice; the business of it will soon be too +weighty and intricate to be managed with any tolerable degree of +convenience by a power so distant from us and so very ignorant of us." + +There is accordingly no alternative to independence for America. +"Everything that is right or natural pleads for separation. The blood of +the slain, the weeping voice of nature cries ''tis time to part.' ... +Arms, the last resort, must decide the contest; the appeal was the +choice of the king and the continent hath accepted the challenge.... The +sun never shone on a cause of greater worth. 'Tis not the affair of a +city, a county, a province or a kingdom, but of a continent.... 'Tis not +the concern of a day, a year or an age; posterity is involved in the +contest and will be more or less affected to the end of time by the +proceedings now. Now is the seed-time of Continental union, faith, and +honor.... O! ye that love mankind! Ye that dare oppose not only the +tyranny, but the tyrant, stand forth.... Let names of Whig and Tory be +extinct. Let none other be heard among us than those of a good citizen, +an open and resolute friend, and a virtuous supporter of the rights of +mankind and of the free and independent states of America." As more than +100,000 copies were scattered broadcast over the country, patriots +exclaimed with Washington: "Sound doctrine and unanswerable reason!" + +=The Drift of Events toward Independence.=--Official support for the +idea of independence began to come from many quarters. On the tenth of +February, 1776, Gadsden, in the provincial convention of South Carolina, +advocated a new constitution for the colony and absolute independence +for all America. The convention balked at the latter but went half way +by abolishing the system of royal administration and establishing a +complete plan of self-government. A month later, on April 12, the +neighboring state of North Carolina uttered the daring phrase from which +others shrank. It empowered its representatives in the Congress to +concur with the delegates of the other colonies in declaring +independence. Rhode Island, Massachusetts, and Virginia quickly +responded to the challenge. The convention of the Old Dominion, on May +15, instructed its delegates at Philadelphia to propose the independence +of the United Colonies and to give the assent of Virginia to the act of +separation. When the resolution was carried the British flag on the +state house was lowered for all time. + +Meanwhile the Continental Congress was alive to the course of events +outside. The subject of independence was constantly being raised. "Are +we rebels?" exclaimed Wyeth of Virginia during a debate in February. +"No: we must declare ourselves a free people." Others hesitated and +spoke of waiting for the arrival of commissioners of conciliation. "Is +not America already independent?" asked Samuel Adams a few weeks later. +"Why not then declare it?" Still there was uncertainty and delegates +avoided the direct word. A few more weeks elapsed. At last, on May 10, +Congress declared that the authority of the British crown in America +must be suppressed and advised the colonies to set up governments of +their own. + +[Illustration: _From an old print_ + +THOMAS JEFFERSON READING HIS DRAFT OF THE DECLARATION OF +INDEPENDENCE TO THE COMMITTEE OF CONGRESS] + +=Independence Declared.=--The way was fully prepared, therefore, when, +on June 7, the Virginia delegation in the Congress moved that "these +united colonies are and of right ought to be free and independent +states." A committee was immediately appointed to draft a formal +document setting forth the reasons for the act, and on July 2 all the +states save New York went on record in favor of severing their political +connection with Great Britain. Two days later, July 4, Jefferson's draft +of the Declaration of Independence, changed in some slight particulars, +was adopted. The old bell in Independence Hall, as it is now known, rang +out the glad tidings; couriers swiftly carried the news to the uttermost +hamlet and farm. A new nation announced its will to have a place among +the powers of the world. + +To some documents is given immortality. The Declaration of Independence +is one of them. American patriotism is forever associated with it; but +patriotism alone does not make it immortal. Neither does the vigor of +its language or the severity of its indictment give it a secure place in +the records of time. The secret of its greatness lies in the simple fact +that it is one of the memorable landmarks in the history of a political +ideal which for three centuries has been taking form and spreading +throughout the earth, challenging kings and potentates, shaking down +thrones and aristocracies, breaking the armies of irresponsible power on +battle fields as far apart as Marston Moor and Chateau-Thierry. That +ideal, now so familiar, then so novel, is summed up in the simple +sentence: "Governments derive their just powers from the consent of the +governed." + +Written in a "decent respect for the opinions of mankind," to set forth +the causes which impelled the American colonists to separate from +Britain, the Declaration contained a long list of "abuses and +usurpations" which had induced them to throw off the government of King +George. That section of the Declaration has passed into "ancient" +history and is seldom read. It is the part laying down a new basis for +government and giving a new dignity to the common man that has become a +household phrase in the Old World as in the New. + +In the more enduring passages there are four fundamental ideas which, +from the standpoint of the old system of government, were the essence of +revolution: (1) all men are created equal and are endowed by their +Creator with certain unalienable rights including life, liberty, and the +pursuit of happiness; (2) the purpose of government is to secure these +rights; (3) governments derive their just powers from the consent of the +governed; (4) whenever any form of government becomes destructive of +these ends it is the right of the people to alter or abolish it and +institute new government, laying its foundations on such principles and +organizing its powers in such form as to them shall seem most likely to +effect their safety and happiness. Here was the prelude to the historic +drama of democracy--a challenge to every form of government and every +privilege not founded on popular assent. + + +THE ESTABLISHMENT OF GOVERNMENT AND THE NEW ALLEGIANCE + +=The Committees of Correspondence.=--As soon as debate had passed into +armed resistance, the patriots found it necessary to consolidate their +forces by organizing civil government. This was readily effected, for +the means were at hand in town meetings, provincial legislatures, and +committees of correspondence. The working tools of the Revolution were +in fact the committees of correspondence--small, local, unofficial +groups of patriots formed to exchange views and create public sentiment. +As early as November, 1772, such a committee had been created in Boston +under the leadership of Samuel Adams. It held regular meetings, sent +emissaries to neighboring towns, and carried on a campaign of education +in the doctrines of liberty. + +[Illustration: THE COLONIES OF NORTH AMERICA AT THE TIME OF THE +DECLARATION OF INDEPENDENCE] + +Upon local organizations similar in character to the Boston committee +were built county committees and then the larger colonial committees, +congresses, and conventions, all unofficial and representing the +revolutionary elements. Ordinarily the provincial convention was merely +the old legislative assembly freed from all royalist sympathizers and +controlled by patriots. Finally, upon these colonial assemblies was +built the Continental Congress, the precursor of union under the +Articles of Confederation and ultimately under the Constitution of the +United States. This was the revolutionary government set up within the +British empire in America. + +=State Constitutions Framed.=--With the rise of these new assemblies of +the people, the old colonial governments broke down. From the royal +provinces the governor, the judges, and the high officers fled in haste, +and it became necessary to substitute patriot authorities. The appeal to +the colonies advising them to adopt a new form of government for +themselves, issued by the Congress in May, 1776, was quickly acted upon. +Before the expiration of a year, Virginia, New Jersey, Pennsylvania, +Delaware, Maryland, Georgia, and New York had drafted new constitutions +as states, not as colonies uncertain of their destinies. Connecticut and +Rhode Island, holding that their ancient charters were equal to their +needs, merely renounced their allegiance to the king and went on as +before so far as the form of government was concerned. South Carolina, +which had drafted a temporary plan early in 1776, drew up a new and more +complete constitution in 1778. Two years later Massachusetts with much +deliberation put into force its fundamental law, which in most of its +essential features remains unchanged to-day. + +The new state constitutions in their broad outlines followed colonial +models. For the royal governor was substituted a governor or president +chosen usually by the legislature; but in two instances, New York and +Massachusetts, by popular vote. For the provincial council there was +substituted, except in Georgia, a senate; while the lower house, or +assembly, was continued virtually without change. The old property +restriction on the suffrage, though lowered slightly in some states, was +continued in full force to the great discontent of the mechanics thus +deprived of the ballot. The special qualifications, laid down in several +constitutions, for governors, senators, and representatives, indicated +that the revolutionary leaders were not prepared for any radical +experiments in democracy. The protests of a few women, like Mrs. John +Adams of Massachusetts and Mrs. Henry Corbin of Virginia, against a +government which excluded them from political rights were treated as +mild curiosities of no significance, although in New Jersey women were +allowed to vote for many years on the same terms as men. + +By the new state constitutions the signs and symbols of royal power, of +authority derived from any source save "the people," were swept aside +and republican governments on an imposing scale presented for the first +time to the modern world. Copies of these remarkable documents prepared +by plain citizens were translated into French and widely circulated in +Europe. There they were destined to serve as a guide and inspiration to +a generation of constitution-makers whose mission it was to begin the +democratic revolution in the Old World. + +=The Articles of Confederation.=--The formation of state constitutions +was an easy task for the revolutionary leaders. They had only to build +on foundations already laid. The establishment of a national system of +government was another matter. There had always been, it must be +remembered, a system of central control over the colonies, but Americans +had had little experience in its operation. When the supervision of the +crown of Great Britain was suddenly broken, the patriot leaders, +accustomed merely to provincial statesmanship, were poorly trained for +action on a national stage. + +Many forces worked against those who, like Franklin, had a vision of +national destiny. There were differences in economic interest--commerce +and industry in the North and the planting system of the South. There +were contests over the apportionment of taxes and the quotas of troops +for common defense. To these practical difficulties were added local +pride, the vested rights of state and village politicians in their +provincial dignity, and the scarcity of men with a large outlook upon +the common enterprise. + +Nevertheless, necessity compelled them to consider some sort of +federation. The second Continental Congress had hardly opened its work +before the most sagacious leaders began to urge the desirability of a +permanent connection. As early as July, 1775, Congress resolved to go +into a committee of the whole on the state of the union, and Franklin, +undaunted by the fate of his Albany plan of twenty years before, again +presented a draft of a constitution. Long and desultory debates followed +and it was not until late in 1777 that Congress presented to the states +the Articles of Confederation. Provincial jealousies delayed +ratification, and it was the spring of 1781, a few months before the +surrender of Cornwallis at Yorktown, when Maryland, the last of the +states, approved the Articles. This plan of union, though it was all +that could be wrung from the reluctant states, provided for neither a +chief executive nor a system of federal courts. It created simply a +Congress of delegates in which each state had an equal voice and gave it +the right to call upon the state legislatures for the sinews of +government--money and soldiers. + +=The Application of Tests of Allegiance.=--As the successive steps were +taken in the direction of independent government, the patriots devised +and applied tests designed to discover who were for and who were against +the new nation in the process of making. When the first Continental +Congress agreed not to allow the importation of British goods, it +provided for the creation of local committees to enforce the rules. Such +agencies were duly formed by the choice of men favoring the scheme, all +opponents being excluded from the elections. Before these bodies those +who persisted in buying British goods were summoned and warned or +punished according to circumstances. As soon as the new state +constitutions were put into effect, local committees set to work in the +same way to ferret out all who were not outspoken in their support of +the new order of things. + +[Illustration: MOBBING THE TORIES] + +These patriot agencies, bearing different names in different sections, +were sometimes ruthless in their methods. They called upon all men to +sign the test of loyalty, frequently known as the "association test." +Those who refused were promptly branded as outlaws, while some of the +more dangerous were thrown into jail. The prison camp in Connecticut at +one time held the former governor of New Jersey and the mayor of New +York. Thousands were black-listed and subjected to espionage. The +black-list of Pennsylvania contained the names of nearly five hundred +persons of prominence who were under suspicion. Loyalists or Tories who +were bold enough to speak and write against the Revolution were +suppressed and their pamphlets burned. In many places, particularly in +the North, the property of the loyalists was confiscated and the +proceeds applied to the cause of the Revolution. + +The work of the official agencies for suppression of opposition was +sometimes supplemented by mob violence. A few Tories were hanged without +trial, and others were tarred and feathered. One was placed upon a cake +of ice and held there "until his loyalty to King George might cool." +Whole families were driven out of their homes to find their way as best +they could within the British lines or into Canada, where the British +government gave them lands. Such excesses were deplored by Washington, +but they were defended on the ground that in effect a civil war, as well +as a war for independence, was being waged. + +=The Patriots and Tories.=--Thus, by one process or another, those who +were to be citizens of the new republic were separated from those who +preferred to be subjects of King George. Just what proportion of the +Americans favored independence and what share remained loyal to the +British monarchy there is no way of knowing. The question of revolution +was not submitted to popular vote, and on the point of numbers we have +conflicting evidence. On the patriot side, there is the testimony of a +careful and informed observer, John Adams, who asserted that two-thirds +of the people were for the American cause and not more than one-third +opposed the Revolution at all stages. + +On behalf of the loyalists, or Tories as they were popularly known, +extravagant claims were made. Joseph Galloway, who had been a member of +the first Continental Congress and had fled to England when he saw its +temper, testified before a committee of Parliament in 1779 that not +one-fifth of the American people supported the insurrection and that +"many more than four-fifths of the people prefer a union with Great +Britain upon constitutional principles to independence." At the same +time General Robertson, who had lived in America twenty-four years, +declared that "more than two-thirds of the people would prefer the +king's government to the Congress' tyranny." In an address to the king +in that year a committee of American loyalists asserted that "the number +of Americans in his Majesty's army exceeded the number of troops +enlisted by Congress to oppose them." + +=The Character of the Loyalists.=--When General Howe evacuated Boston, +more than a thousand people fled with him. This great company, according +to a careful historian, "formed the aristocracy of the province by +virtue of their official rank; of their dignified callings and +professions; of their hereditary wealth and of their culture." The act +of banishment passed by Massachusetts in 1778, listing over 300 Tories, +"reads like the social register of the oldest and noblest families of +New England," more than one out of five being graduates of Harvard +College. The same was true of New York and Philadelphia; namely, that +the leading loyalists were prominent officials of the old order, +clergymen and wealthy merchants. With passion the loyalists fought +against the inevitable or with anguish of heart they left as refugees +for a life of uncertainty in Canada or the mother country. + +=Tories Assail the Patriots.=--The Tories who remained in America joined +the British army by the thousands or in other ways aided the royal +cause. Those who were skillful with the pen assailed the patriots in +editorials, rhymes, satires, and political catechisms. They declared +that the members of Congress were "obscure, pettifogging attorneys, +bankrupt shopkeepers, outlawed smugglers, etc." The people and their +leaders they characterized as "wretched banditti ... the refuse and +dregs of mankind." The generals in the army they sneered at as "men of +rank and honor nearly on a par with those of the Congress." + +=Patriot Writers Arouse the National Spirit.=--Stung by Tory taunts, +patriot writers devoted themselves to creating and sustaining a public +opinion favorable to the American cause. Moreover, they had to combat +the depression that grew out of the misfortunes in the early days of the +war. A terrible disaster befell Generals Arnold and Montgomery in the +winter of 1775 as they attempted to bring Canada into the revolution--a +disaster that cost 5000 men; repeated calamities harassed Washington in +1776 as he was defeated on Long Island, driven out of New York City, and +beaten at Harlem Heights and White Plains. These reverses were almost +too great for the stoutest patriots. + +Pamphleteers, preachers, and publicists rose, however, to meet the needs +of the hour. John Witherspoon, provost of the College of New Jersey, +forsook the classroom for the field of political controversy. The poet, +Philip Freneau, flung taunts of cowardice at the Tories and celebrated +the spirit of liberty in many a stirring poem. Songs, ballads, plays, +and satires flowed from the press in an unending stream. Fast days, +battle anniversaries, celebrations of important steps taken by Congress +afforded to patriotic clergymen abundant opportunities for sermons. +"Does Mr. Wiberd preach against oppression?" anxiously inquired John +Adams in a letter to his wife. The answer was decisive. "The clergy of +every denomination, not excepting the Episcopalian, thunder and lighten +every Sabbath. They pray for Boston and Massachusetts. They thank God +most explicitly and fervently for our remarkable successes. They pray +for the American army." + +Thomas Paine never let his pen rest. He had been with the forces of +Washington when they retreated from Fort Lee and were harried from New +Jersey into Pennsylvania. He knew the effect of such reverses on the +army as well as on the public. In December, 1776, he made a second great +appeal to his countrymen in his pamphlet, "The Crisis," the first part +of which he had written while defeat and gloom were all about him. This +tract was a cry for continued support of the Revolution. "These are the +times that try men's souls," he opened. "The summer soldier and the +sunshine patriot will, in this crisis, shrink from the service of his +country; but he that stands it now deserves the love and thanks of men +and women." Paine laid his lash fiercely on the Tories, branding every +one as a coward grounded in "servile, slavish, self-interested fear." He +deplored the inadequacy of the militia and called for a real army. He +refuted the charge that the retreat through New Jersey was a disaster +and he promised victory soon. "By perseverance and fortitude," he +concluded, "we have the prospect of a glorious issue; by cowardice and +submission the sad choice of a variety of evils--a ravaged country, a +depopulated city, habitations without safety and slavery without +hope.... Look on this picture and weep over it." His ringing call to +arms was followed by another and another until the long contest was +over. + + +MILITARY AFFAIRS + +=The Two Phases of the War.=--The war which opened with the battle of +Lexington, on April 19, 1775, and closed with the surrender of +Cornwallis at Yorktown on October 19, 1781, passed through two distinct +phases--the first lasting until the treaty of alliance with France, in +1778, and the second until the end of the struggle. During the first +phase, the war was confined mainly to the North. The outstanding +features of the contest were the evacuation of Boston by the British, +the expulsion of American forces from New York and their retreat through +New Jersey, the battle of Trenton, the seizure of Philadelphia by the +British (September, 1777), the invasion of New York by Burgoyne and his +capture at Saratoga in October, 1777, and the encampment of American +forces at Valley Forge for the terrible winter of 1777-78. + +The final phase of the war, opening with the treaty of alliance with +France on February 6, 1778, was confined mainly to the Middle states, +the West, and the South. In the first sphere of action the chief events +were the withdrawal of the British from Philadelphia, the battle of +Monmouth, and the inclosure of the British in New York by deploying +American forces from Morristown, New Jersey, up to West Point. In the +West, George Rogers Clark, by his famous march into the Illinois +country, secured Kaskaskia and Vincennes and laid a firm grip on the +country between the Ohio and the Great Lakes. In the South, the second +period opened with successes for the British. They captured Savannah, +conquered Georgia, and restored the royal governor. In 1780 they seized +Charleston, administered a crushing defeat to the American forces under +Gates at Camden, and overran South Carolina, though meeting reverses at +Cowpens and King's Mountain. Then came the closing scenes. Cornwallis +began the last of his operations. He pursued General Greene far into +North Carolina, clashed with him at Guilford Court House, retired to the +coast, took charge of British forces engaged in plundering Virginia, and +fortified Yorktown, where he was penned up by the French fleet from the +sea and the combined French and American forces on land. + +=The Geographical Aspects of the War.=--For the British the theater of +the war offered many problems. From first to last it extended from +Massachusetts to Georgia, a distance of almost a thousand miles. It was +nearly three thousand miles from the main base of supplies and, though +the British navy kept the channel open, transports were constantly +falling prey to daring privateers and fleet American war vessels. The +sea, on the other hand, offered an easy means of transportation between +points along the coast and gave ready access to the American centers of +wealth and population. Of this the British made good use. Though early +forced to give up Boston, they seized New York and kept it until the end +of the war; they took Philadelphia and retained it until threatened by +the approach of the French fleet; and they captured and held both +Savannah and Charleston. Wars, however, are seldom won by the conquest +of cities. + +Particularly was this true in the case of the Revolution. Only a small +portion of the American people lived in towns. Countrymen back from the +coast were in no way dependent upon them for a livelihood. They lived on +the produce of the soil, not upon the profits of trade. This very fact +gave strength to them in the contest. Whenever the British ventured far +from the ports of entry, they encountered reverses. Burgoyne was forced +to surrender at Saratoga because he was surrounded and cut off from his +base of supplies. As soon as the British got away from Charleston, they +were harassed and worried by the guerrilla warriors of Marion, Sumter, +and Pickens. Cornwallis could technically defeat Greene at Guilford far +in the interior; but he could not hold the inland region he had invaded. +Sustained by their own labor, possessing the interior to which their +armies could readily retreat, supplied mainly from native resources, the +Americans could not be hemmed in, penned up, and destroyed at one fell +blow. + +=The Sea Power.=--The British made good use of their fleet in cutting +off American trade, but control of the sea did not seriously affect the +United States. As an agricultural country, the ruin of its commerce was +not such a vital matter. All the materials for a comfortable though +somewhat rude life were right at hand. It made little difference to a +nation fighting for existence, if silks, fine linens, and chinaware were +cut off. This was an evil to which submission was necessary. + +Nor did the brilliant exploits of John Paul Jones and Captain John Barry +materially change the situation. They demonstrated the skill of American +seamen and their courage as fighting men. They raised the rates of +British marine insurance, but they did not dethrone the mistress of the +seas. Less spectacular, and more distinctive, were the deeds of the +hundreds of privateers and minor captains who overhauled British supply +ships and kept British merchantmen in constant anxiety. Not until the +French fleet was thrown into the scale, were the British compelled to +reckon seriously with the enemy on the sea and make plans based upon the +possibilities of a maritime disaster. + +=Commanding Officers.=--On the score of military leadership it is +difficult to compare the contending forces in the revolutionary contest. +There is no doubt that all the British commanders were men of experience +in the art of warfare. Sir William Howe had served in America during the +French War and was accounted an excellent officer, a strict +disciplinarian, and a gallant gentleman. Nevertheless he loved ease, +society, and good living, and his expulsion from Boston, his failure to +overwhelm Washington by sallies from his comfortable bases at New York +and Philadelphia, destroyed every shred of his military reputation. John +Burgoyne, to whom was given the task of penetrating New York from +Canada, had likewise seen service in the French War both in America and +Europe. He had, however, a touch of the theatrical in his nature and +after the collapse of his plans and the surrender of his army in 1777, +he devoted his time mainly to light literature. Sir Henry Clinton, who +directed the movement which ended in the capture of Charleston in 1780, +had "learned his trade on the continent," and was regarded as a man of +discretion and understanding in military matters. Lord Cornwallis, whose +achievements at Camden and Guilford were blotted out by his surrender at +Yorktown, had seen service in the Seven Years' War and had undoubted +talents which he afterward displayed with great credit to himself in +India. Though none of them, perhaps, were men of first-rate ability, +they all had training and experience to guide them. + +[Illustration: GEORGE WASHINGTON] + +The Americans had a host in Washington himself. He had long been +interested in military strategy and had tested his coolness under fire +during the first clashes with the French nearly twenty years before. He +had no doubts about the justice of his cause, such as plagued some of +the British generals. He was a stern but reasonable disciplinarian. He +was reserved and patient, little given to exaltation at success or +depression at reverses. In the dark hour of the Revolution, "what held +the patriot forces together?" asks Beveridge in his _Life of John +Marshall_. Then he answers: "George Washington and he alone. Had he +died or been seriously disabled, the Revolution would have ended.... +Washington was the soul of the American cause. Washington was the +government. Washington was the Revolution." The weakness of Congress in +furnishing men and supplies, the indolence of civilians, who lived at +ease while the army starved, the intrigues of army officers against him +such as the "Conway cabal," the cowardice of Lee at Monmouth, even the +treason of Benedict Arnold, while they stirred deep emotions in his +breast and aroused him to make passionate pleas to his countrymen, did +not shake his iron will or his firm determination to see the war through +to the bitter end. The weight of Washington's moral force was +immeasurable. + +Of the generals who served under him, none can really be said to have +been experienced military men when the war opened. Benedict Arnold, the +unhappy traitor but brave and daring soldier, was a druggist, book +seller, and ship owner at New Haven when the news of Lexington called +him to battle. Horatio Gates was looked upon as a "seasoned soldier" +because he had entered the British army as a youth, had been wounded at +Braddock's memorable defeat, and had served with credit during the Seven +Years' War; but he was the most conspicuous failure of the Revolution. +The triumph over Burgoyne was the work of other men; and his crushing +defeat at Camden put an end to his military pretensions. Nathanael +Greene was a Rhode Island farmer and smith without military experience +who, when convinced that war was coming, read Caesar's _Commentaries_ and +took up the sword. Francis Marion was a shy and modest planter of South +Carolina whose sole passage at arms had been a brief but desperate brush +with the Indians ten or twelve years earlier. Daniel Morgan, one of the +heroes of Cowpens, had been a teamster with Braddock's army and had seen +some fighting during the French and Indian War, but his military +knowledge, from the point of view of a trained British officer, was +negligible. John Sullivan was a successful lawyer at Durham, New +Hampshire, and a major in the local militia when duty summoned him to +lay down his briefs and take up the sword. Anthony Wayne was a +Pennsylvania farmer and land surveyor who, on hearing the clash of arms, +read a few books on war, raised a regiment, and offered himself for +service. Such is the story of the chief American military leaders, and +it is typical of them all. Some had seen fighting with the French and +Indians, but none of them had seen warfare on a large scale with regular +troops commanded according to the strategy evolved in European +experience. Courage, native ability, quickness of mind, and knowledge of +the country they had in abundance, and in battles such as were fought +during the Revolution all those qualities counted heavily in the +balance. + +=Foreign Officers in American Service.=--To native genius was added +military talent from beyond the seas. Baron Steuben, well schooled in +the iron regime of Frederick the Great, came over from Prussia, joined +Washington at Valley Forge, and day after day drilled and manoeuvered the +men, laughing and cursing as he turned raw countrymen into regular +soldiers. From France came young Lafayette and the stern De Kalb, from +Poland came Pulaski and Kosciusko;--all acquainted with the arts of war +as waged in Europe and fitted for leadership as well as teaching. +Lafayette came early, in 1776, in a ship of his own, accompanied by +several officers of wide experience, and remained loyally throughout the +war sharing the hardships of American army life. Pulaski fell at the +siege of Savannah and De Kalb at Camden. Kosciusko survived the American +war to defend in vain the independence of his native land. To these +distinguished foreigners, who freely threw in their lot with American +revolutionary fortunes, was due much of that spirit and discipline which +fitted raw recruits and temperamental militiamen to cope with a military +power of the first rank. + +=The Soldiers.=--As far as the British soldiers were concerned their +annals are short and simple. The regulars from the standing army who +were sent over at the opening of the contest, the recruits drummed up +by special efforts at home, and the thousands of Hessians bought +outright by King George presented few problems of management to the +British officers. These common soldiers were far away from home and +enlisted for the war. Nearly all of them were well disciplined and many +of them experienced in actual campaigns. The armies of King George +fought bravely, as the records of Bunker Hill, Brandywine, and Monmouth +demonstrate. Many a man and subordinate officer and, for that matter, +some of the high officers expressed a reluctance at fighting against +their own kin; but they obeyed orders. + +The Americans, on the other hand, while they fought with grim +determination, as men fighting for their homes, were lacking in +discipline and in the experience of regular troops. When the war broke +in upon them, there were no common preparations for it. There was no +continental army; there were only local bands of militiamen, many of +them experienced in fighting but few of them "regulars" in the military +sense. Moreover they were volunteers serving for a short time, +unaccustomed to severe discipline, and impatient at the restraints +imposed on them by long and arduous campaigns. They were continually +leaving the service just at the most critical moments. "The militia," +lamented Washington, "come in, you cannot tell how; go, you cannot tell +where; consume your provisions; exhaust your stores; and leave you at +last at a critical moment." + +Again and again Washington begged Congress to provide for an army of +regulars enlisted for the war, thoroughly trained and paid according to +some definite plan. At last he was able to overcome, in part at least, +the chronic fear of civilians in Congress and to wring from that +reluctant body an agreement to grant half pay to all officers and a +bonus to all privates who served until the end of the war. Even this +scheme, which Washington regarded as far short of justice to the +soldiers, did not produce quick results. It was near the close of the +conflict before he had an army of well-disciplined veterans capable of +meeting British regulars on equal terms. + +Though there were times when militiamen and frontiersmen did valiant and +effective work, it is due to historical accuracy to deny the +time-honored tradition that a few minutemen overwhelmed more numerous +forces of regulars in a seven years' war for independence. They did +nothing of the sort. For the victories of Bennington, Trenton, Saratoga, +and Yorktown there were the defeats of Bunker Hill, Long Island, White +Plains, Germantown, and Camden. Not once did an army of militiamen +overcome an equal number of British regulars in an open trial by battle. +"To bring men to be well acquainted with the duties of a soldier," wrote +Washington, "requires time.... To expect the same service from raw and +undisciplined recruits as from veteran soldiers is to expect what never +did and perhaps never will happen." + +=How the War Was Won.=--Then how did the American army win the war? For +one thing there were delays and blunders on the part of the British +generals who, in 1775 and 1776, dallied in Boston and New York with +large bodies of regular troops when they might have been dealing +paralyzing blows at the scattered bands that constituted the American +army. "Nothing but the supineness or folly of the enemy could have saved +us," solemnly averred Washington in 1780. Still it is fair to say that +this apparent supineness was not all due to the British generals. The +ministers behind them believed that a large part of the colonists were +loyal and that compromise would be promoted by inaction rather than by a +war vigorously prosecuted. Victory by masterly inactivity was obviously +better than conquest, and the slighter the wounds the quicker the +healing. Later in the conflict when the seasoned forces of France were +thrown into the scale, the Americans themselves had learned many things +about the practical conduct of campaigns. All along, the British were +embarrassed by the problem of supplies. Their troops could not forage +with the skill of militiamen, as they were in unfamiliar territory. The +long oversea voyages were uncertain at best and doubly so when the +warships of France joined the American privateers in preying on supply +boats. + +The British were in fact battered and worn down by a guerrilla war and +outdone on two important occasions by superior forces--at Saratoga and +Yorktown. Stern facts convinced them finally that an immense army, which +could be raised only by a supreme effort, would be necessary to subdue +the colonies if that hazardous enterprise could be accomplished at all. +They learned also that America would then be alienated, fretful, and the +scene of endless uprisings calling for an army of occupation. That was a +price which staggered even Lord North and George III. Moreover, there +were forces of opposition at home with which they had to reckon. + +=Women and the War.=--At no time were the women of America indifferent +to the struggle for independence. When it was confined to the realm of +opinion they did their part in creating public sentiment. Mrs. Elizabeth +Timothee, for example, founded in Charleston, in 1773, a newspaper to +espouse the cause of the province. Far to the north the sister of James +Otis, Mrs. Mercy Warren, early begged her countrymen to rest their case +upon their natural rights, and in influential circles she urged the +leaders to stand fast by their principles. While John Adams was tossing +about with uncertainty at the Continental Congress, his wife was writing +letters to him declaring her faith in "independency." + +When the war came down upon the country, women helped in every field. In +sustaining public sentiment they were active. Mrs. Warren with a +tireless pen combatted loyalist propaganda in many a drama and satire. +Almost every revolutionary leader had a wife or daughter who rendered +service in the "second line of defense." Mrs. Washington managed the +plantation while the General was at the front and went north to face the +rigors of the awful winter at Valley Forge--an inspiration to her +husband and his men. The daughter of Benjamin Franklin, Mrs. Sarah +Bache, while her father was pleading the American cause in France, set +the women of Pennsylvania to work sewing and collecting supplies. Even +near the firing line women were to be found, aiding the wounded, hauling +powder to the front, and carrying dispatches at the peril of their +lives. + +In the economic sphere, the work of women was invaluable. They harvested +crops without enjoying the picturesque title of "farmerettes" and they +canned and preserved for the wounded and the prisoners of war. Of their +labor in spinning and weaving it is recorded: "Immediately on being cut +off from the use of English manufactures, the women engaged within their +own families in manufacturing various kinds of cloth for domestic use. +They thus kept their households decently clad and the surplus of their +labors they sold to such as chose to buy rather than make for +themselves. In this way the female part of families by their industry +and strict economy frequently supported the whole domestic circle, +evincing the strength of their attachment and the value of their +service." + +For their war work, women were commended by high authorities on more +than one occasion. They were given medals and public testimonials even +as in our own day. Washington thanked them for their labors and paid +tribute to them for the inspiration and material aid which they had +given to the cause of independence. + + +THE FINANCES OF THE REVOLUTION + +When the Revolution opened, there were thirteen little treasuries in +America but no common treasury, and from first to last the Congress was +in the position of a beggar rather than a sovereign. Having no authority +to lay and collect taxes directly and knowing the hatred of the +provincials for taxation, it resorted mainly to loans and paper money to +finance the war. "Do you think," boldly inquired one of the delegates, +"that I will consent to load my constituents with taxes when we can send +to the printer and get a wagon load of money, one quire of which will +pay for the whole?" + +=Paper Money and Loans.=--Acting on this curious but appealing political +economy, Congress issued in June, 1776, two million dollars in bills of +credit to be redeemed by the states on the basis of their respective +populations. Other issues followed in quick succession. In all about +$241,000,000 of continental paper was printed, to which the several +states added nearly $210,000,000 of their own notes. Then came +interest-bearing bonds in ever increasing quantities. Several millions +were also borrowed from France and small sums from Holland and Spain. In +desperation a national lottery was held, producing meager results. The +property of Tories was confiscated and sold, bringing in about +$16,000,000. Begging letters were sent to the states asking them to +raise revenues for the continental treasury, but the states, burdened +with their own affairs, gave little heed. + +=Inflation and Depreciation.=--As paper money flowed from the press, it +rapidly declined in purchasing power until in 1779 a dollar was worth +only two or three cents in gold or silver. Attempts were made by +Congress and the states to compel people to accept the notes at face +value; but these were like attempts to make water flow uphill. +Speculators collected at once to fatten on the calamities of the +republic. Fortunes were made and lost gambling on the prices of public +securities while the patriot army, half clothed, was freezing at Valley +Forge. "Speculation, peculation, engrossing, forestalling," exclaimed +Washington, "afford too many melancholy proofs of the decay of public +virtue. Nothing, I am convinced, but the depreciation of our currency +... aided by stock jobbing and party dissensions has fed the hopes of +the enemy." + +=The Patriot Financiers.=--To the efforts of Congress in financing the +war were added the labors of private citizens. Hayn Solomon, a merchant +of Philadelphia, supplied members of Congress, including Madison, +Jefferson, and Monroe, and army officers, like Lee and Steuben, with +money for their daily needs. All together he contributed the huge sum of +half a million dollars to the American cause and died broken in purse, +if not in spirit, a British prisoner of war. Another Philadelphia +merchant, Robert Morris, won for himself the name of the "patriot +financier" because he labored night and day to find the money to meet +the bills which poured in upon the bankrupt government. When his own +funds were exhausted, he borrowed from his friends. Experienced in the +handling of merchandise, he created agencies at important points to +distribute supplies to the troops, thus displaying administrative as +well as financial talents. + +[Illustration: ROBERT MORRIS] + +Women organized "drives" for money, contributed their plate and their +jewels, and collected from door to door. Farmers took worthless paper in +return for their produce, and soldiers saw many a pay day pass without +yielding them a penny. Thus by the labors and sacrifices of citizens, +the issuance of paper money, lotteries, the floating of loans, +borrowings in Europe, and the impressment of supplies, the Congress +staggered through the Revolution like a pauper who knows not how his +next meal is to be secured but is continuously relieved at a crisis by a +kindly fate. + + +THE DIPLOMACY OF THE REVOLUTION + +When the full measure of honor is given to the soldiers and sailors and +their commanding officers, the civilians who managed finances and +supplies, the writers who sustained the American spirit, and the women +who did well their part, there yet remains the duty of recognizing the +achievements of diplomacy. The importance of this field of activity was +keenly appreciated by the leaders in the Continental Congress. They were +fairly well versed in European history. They knew of the balance of +power and the sympathies, interests, and prejudices of nations and their +rulers. All this information they turned to good account, in opening +relations with continental countries and seeking money, supplies, and +even military assistance. For the transaction of this delicate business, +they created a secret committee on foreign correspondence as early as +1775 and prepared to send agents abroad. + +=American Agents Sent Abroad.=--Having heard that France was inclining a +friendly ear to the American cause, the Congress, in March, 1776, sent a +commissioner to Paris, Silas Deane of Connecticut, often styled the +"first American diplomat." Later in the year a form of treaty to be +presented to foreign powers was drawn up, and Franklin, Arthur Lee, and +Deane were selected as American representatives at the court of "His +Most Christian Majesty the King of France." John Jay of New York was +chosen minister to Spain in 1779; John Adams was sent to Holland the +same year; and other agents were dispatched to Florence, Vienna, and +Berlin. The representative selected for St. Petersburg spent two +fruitless years there, "ignored by the court, living in obscurity and +experiencing nothing but humiliation and failure." Frederick the Great, +king of Prussia, expressed a desire to find in America a market for +Silesian linens and woolens, but, fearing England's command of the sea, +he refused to give direct aid to the Revolutionary cause. + +=Early French Interest.=--The great diplomatic triumph of the Revolution +was won at Paris, and Benjamin Franklin was the hero of the occasion, +although many circumstances prepared the way for his success. Louis +XVI's foreign minister, Count de Vergennes, before the arrival of any +American representative, had brought to the attention of the king the +opportunity offered by the outbreak of the war between England and her +colonies. He showed him how France could redress her grievances and +"reduce the power and greatness of England"--the empire that in 1763 had +forced upon her a humiliating peace "at the price of our possessions, +of our commerce, and our credit in the Indies, at the price of Canada, +Louisiana, Isle Royale, Acadia, and Senegal." Equally successful in +gaining the king's interest was a curious French adventurer, +Beaumarchais, a man of wealth, a lover of music, and the author of two +popular plays, "Figaro" and "The Barber of Seville." These two men had +already urged upon the king secret aid for America before Deane appeared +on the scene. Shortly after his arrival they made confidential +arrangements to furnish money, clothing, powder, and other supplies to +the struggling colonies, although official requests for them were +officially refused by the French government. + +=Franklin at Paris.=--When Franklin reached Paris, he was received only +in private by the king's minister, Vergennes. The French people, +however, made manifest their affection for the "plain republican" in +"his full dress suit of spotted Manchester velvet." He was known among +men of letters as an author, a scientist, and a philosopher of +extraordinary ability. His "Poor Richard" had thrice been translated +into French and was scattered in numerous editions throughout the +kingdom. People of all ranks--ministers, ladies at court, philosophers, +peasants, and stable boys--knew of Franklin and wished him success in +his mission. The queen, Marie Antoinette, fated to lose her head in a +revolution soon to follow, played with fire by encouraging "our dear +republican." + +For the king of France, however, this was more serious business. England +resented the presence of this "traitor" in Paris, and Louis had to be +cautious about plunging into another war that might also end +disastrously. Moreover, the early period of Franklin's sojourn in Paris +was a dark hour for the American Revolution. Washington's brilliant +exploit at Trenton on Christmas night, 1776, and the battle with +Cornwallis at Princeton had been followed by the disaster at Brandywine, +the loss of Philadelphia, the defeat at Germantown, and the retirement +to Valley Forge for the winter of 1777-78. New York City and +Philadelphia--two strategic ports--were in British hands; the Hudson +and Delaware rivers were blocked; and General Burgoyne with his British +troops was on his way down through the heart of northern New York, +cutting New England off from the rest of the colonies. No wonder the +king was cautious. Then the unexpected happened. Burgoyne, hemmed in +from all sides by the American forces, his flanks harried, his foraging +parties beaten back, his supplies cut off, surrendered on October 17, +1777, to General Gates, who had superseded General Schuyler in time to +receive the honor. + +=Treaties of Alliance and Commerce (1778).=--News of this victory, +placed by historians among the fifteen decisive battles of the world, +reached Franklin one night early in December while he and some friends +sat gloomily at dinner. Beaumarchais, who was with him, grasped at once +the meaning of the situation and set off to the court at Versailles with +such haste that he upset his coach and dislocated his arm. The king and +his ministers were at last convinced that the hour had come to aid the +Revolution. Treaties of commerce and alliance were drawn up and signed +in February, 1778. The independence of the United States was recognized +by France and an alliance was formed to guarantee that independence. +Combined military action was agreed upon and Louis then formally +declared war on England. Men who had, a few short years before, fought +one another in the wilderness of Pennsylvania or on the Plains of +Abraham, were now ranged side by side in a war on the Empire that Pitt +had erected and that George III was pulling down. + +=Spain and Holland Involved.=--Within a few months, Spain, remembering +the steady decline of her sea power since the days of the Armada and +hoping to drive the British out of Gibraltar, once more joined the +concert of nations against England. Holland, a member of a league of +armed neutrals formed in protest against British searches on the high +seas, sent her fleet to unite with the forces of Spain, France, and +America to prey upon British commerce. To all this trouble for England +was added the danger of a possible revolt in Ireland, where the spirit +of independence was flaming up. + +=The British Offer Terms to America.=--Seeing the colonists about to be +joined by France in a common war on the English empire, Lord North +proposed, in February, 1778, a renewal of negotiations. By solemn +enactment, Parliament declared its intention not to exercise the right +of imposing taxes within the colonies; at the same time it authorized +the opening of negotiations through commissioners to be sent to America. +A truce was to be established, pardons granted, objectionable laws +suspended, and the old imperial constitution, as it stood before the +opening of hostilities, restored to full vigor. It was too late. Events +had taken the affairs of America out of the hands of British +commissioners and diplomats. + +=Effects of French Aid.=--The French alliance brought ships of war, +large sums of gold and silver, loads of supplies, and a considerable +body of trained soldiers to the aid of the Americans. Timely as was this +help, it meant no sudden change in the fortunes of war. The British +evacuated Philadelphia in the summer following the alliance, and +Washington's troops were encouraged to come out of Valley Forge. They +inflicted a heavy blow on the British at Monmouth, but the treasonable +conduct of General Charles Lee prevented a triumph. The recovery of +Philadelphia was offset by the treason of Benedict Arnold, the loss of +Savannah and Charleston (1780), and the defeat of Gates at Camden. + +The full effect of the French alliance was not felt until 1781, when +Cornwallis went into Virginia and settled at Yorktown. Accompanied by +French troops Washington swept rapidly southward and penned the British +to the shore while a powerful French fleet shut off their escape by sea. +It was this movement, which certainly could not have been executed +without French aid, that put an end to all chance of restoring British +dominion in America. It was the surrender of Cornwallis at Yorktown that +caused Lord North to pace the floor and cry out: "It is all over! It is +all over!" What might have been done without the French alliance lies +hidden from mankind. What was accomplished with the help of French +soldiers, sailors, officers, money, and supplies, is known to all the +earth. "All the world agree," exultantly wrote Franklin from Paris to +General Washington, "that no expedition was ever better planned or +better executed. It brightens the glory that must accompany your name to +the latest posterity." Diplomacy as well as martial valor had its +reward. + + +PEACE AT LAST + +=British Opposition to the War.=--In measuring the forces that led to +the final discomfiture of King George and Lord North, it is necessary to +remember that from the beginning to the end the British ministry at home +faced a powerful, informed, and relentless opposition. There were +vigorous protests, first against the obnoxious acts which precipitated +the unhappy quarrel, then against the way in which the war was waged, +and finally against the futile struggle to retain a hold upon the +American dominions. Among the members of Parliament who thundered +against the government were the first statesmen and orators of the land. +William Pitt, Earl of Chatham, though he deplored the idea of American +independence, denounced the government as the aggressor and rejoiced in +American resistance. Edmund Burke leveled his heavy batteries against +every measure of coercion and at last strove for a peace which, while +giving independence to America, would work for reconciliation rather +than estrangement. Charles James Fox gave the colonies his generous +sympathy and warmly championed their rights. Outside of the circle of +statesmen there were stout friends of the American cause like David +Hume, the philosopher and historian, and Catherine Macaulay, an author +of wide fame and a republican bold enough to encourage Washington in +seeing it through. + +Against this powerful opposition, the government enlisted a whole army +of scribes and journalists to pour out criticism on the Americans and +their friends. Dr. Samuel Johnson, whom it employed in this business, +was so savage that even the ministers had to tone down his pamphlets +before printing them. Far more weighty was Edward Gibbon, who was in +time to win fame as the historian of the _Decline and Fall of the Roman +Empire_. He had at first opposed the government; but, on being given a +lucrative post, he used his sharp pen in its support, causing his +friends to ridicule him in these lines: + + "King George, in a fright + Lest Gibbon should write + The story of England's disgrace, + Thought no way so sure + His pen to secure + As to give the historian a place." + +=Lord North Yields.=--As time wore on, events bore heavily on the side +of the opponents of the government's measures. They had predicted that +conquest was impossible, and they had urged the advantages of a peace +which would in some measure restore the affections of the Americans. +Every day's news confirmed their predictions and lent support to their +arguments. Moreover, the war, which sprang out of an effort to relieve +English burdens, made those burdens heavier than ever. Military expenses +were daily increasing. Trade with the colonies, the greatest single +outlet for British goods and capital, was paralyzed. The heavy debts due +British merchants in America were not only unpaid but postponed into an +indefinite future. Ireland was on the verge of revolution. The French +had a dangerous fleet on the high seas. In vain did the king assert in +December, 1781, that no difficulties would ever make him consent to a +peace that meant American independence. Parliament knew better, and on +February 27, 1782, in the House of Commons was carried an address to the +throne against continuing the war. Burke, Fox, the younger Pitt, Barre, +and other friends of the colonies voted in the affirmative. Lord North +gave notice then that his ministry was at an end. The king moaned: +"Necessity made me yield." + +In April, 1782, Franklin received word from the English government that +it was prepared to enter into negotiations leading to a settlement. This +was embarrassing. In the treaty of alliance with France, the United +States had promised that peace should be a joint affair agreed to by +both nations in open conference. Finding France, however, opposed to +some of their claims respecting boundaries and fisheries, the American +commissioners conferred with the British agents at Paris without +consulting the French minister. They actually signed a preliminary peace +draft before they informed him of their operations. When Vergennes +reproached him, Franklin replied that they "had been guilty of +neglecting _bienseance_ [good manners] but hoped that the great work +would not be ruined by a single indiscretion." + +=The Terms of Peace (1783).=--The general settlement at Paris in 1783 +was a triumph for America. England recognized the independence of the +United States, naming each state specifically, and agreed to boundaries +extending from the Atlantic to the Mississippi and from the Great Lakes +to the Floridas. England held Canada, Newfoundland, and the West Indies +intact, made gains in India, and maintained her supremacy on the seas. +Spain won Florida and Minorca but not the coveted Gibraltar. France +gained nothing important save the satisfaction of seeing England humbled +and the colonies independent. + +The generous terms secured by the American commission at Paris called +forth surprise and gratitude in the United States and smoothed the way +for a renewal of commercial relations with the mother country. At the +same time they gave genuine anxiety to European diplomats. "This federal +republic is born a pigmy," wrote the Spanish ambassador to his royal +master. "A day will come when it will be a giant; even a colossus +formidable to these countries. Liberty of conscience and the facility +for establishing a new population on immense lands, as well as the +advantages of the new government, will draw thither farmers and artisans +from all the nations. In a few years we shall watch with grief the +tyrannical existence of the same colossus." + +[Illustration: NORTH AMERICA ACCORDING TO THE TREATY OF 1783] + + +SUMMARY OF THE REVOLUTIONARY PERIOD + +The independence of the American colonies was foreseen by many European +statesmen as they watched the growth of their population, wealth, and +power; but no one could fix the hour of the great event. Until 1763 the +American colonists lived fairly happily under British dominion. There +were collisions from time to time, of course. Royal governors clashed +with stiff-necked colonial legislatures. There were protests against the +exercise of the king's veto power in specific cases. Nevertheless, on +the whole, the relations between America and the mother country were +more amicable in 1763 than at any period under the Stuart regime which +closed in 1688. + +The crash, when it came, was not deliberately willed by any one. It was +the product of a number of forces that happened to converge about 1763. +Three years before, there had come to the throne George III, a young, +proud, inexperienced, and stubborn king. For nearly fifty years his +predecessors, Germans as they were in language and interest, had allowed +things to drift in England and America. George III decided that he would +be king in fact as well as in name. About the same time England brought +to a close the long and costly French and Indian War and was staggering +under a heavy burden of debt and taxes. The war had been fought partly +in defense of the American colonies and nothing seemed more reasonable +to English statesmen than the idea that the colonies should bear part of +the cost of their own defense. At this juncture there came into +prominence, in royal councils, two men bent on taxing America and +controlling her trade, Grenville and Townshend. The king was willing, +the English taxpayers were thankful for any promise of relief, and +statesmen were found to undertake the experiment. England therefore set +out upon a new course. She imposed taxes upon the colonists, regulated +their trade and set royal officers upon them to enforce the law. This +action evoked protests from the colonists. They held a Stamp Act +Congress to declare their rights and petition for a redress of +grievances. Some of the more restless spirits rioted in the streets, +sacked the houses of the king's officers, and tore up the stamped paper. + +Frightened by uprising, the English government drew back and repealed +the Stamp Act. Then it veered again and renewed its policy of +interference. Interference again called forth American protests. +Protests aroused sharper retaliation. More British regulars were sent +over to keep order. More irritating laws were passed by Parliament. +Rioting again appeared: tea was dumped in the harbor of Boston and +seized in the harbor of Charleston. The British answer was more force. +The response of the colonists was a Continental Congress for defense. An +unexpected and unintended clash of arms at Lexington and Concord in the +spring of 1775 brought forth from the king of England a proclamation: +"The Americans are rebels!" + +The die was cast. The American Revolution had begun. Washington was made +commander-in-chief. Armies were raised, money was borrowed, a huge +volume of paper currency was issued, and foreign aid was summoned. +Franklin plied his diplomatic arts at Paris until in 1778 he induced +France to throw her sword into the balance. Three years later, +Cornwallis surrendered at Yorktown. In 1783, by the formal treaty of +peace, George III acknowledged the independence of the United States. +The new nation, endowed with an imperial domain stretching from the +Atlantic Ocean to the Mississippi River, began its career among the +sovereign powers of the earth. + +In the sphere of civil government, the results of the Revolution were +equally remarkable. Royal officers and royal authorities were driven +from the former dominions. All power was declared to be in the people. +All the colonies became states, each with its own constitution or plan +of government. The thirteen states were united in common bonds under the +Articles of Confederation. A republic on a large scale was instituted. +Thus there was begun an adventure in popular government such as the +world had never seen. Could it succeed or was it destined to break down +and be supplanted by a monarchy? The fate of whole continents hung upon +the answer. + + +=References= + +J. Fiske, _The American Revolution_ (2 vols.). + +H. Lodge, _Life of Washington_ (2 vols.). + +W. Sumner, _The Financier and the Finances of the American Revolution_. + +O. Trevelyan, _The American Revolution_ (4 vols.). A sympathetic account +by an English historian. + +M.C. Tyler, _Literary History of the American Revolution_ (2 vols.). + +C.H. Van Tyne, _The American Revolution_ (American Nation Series) and +_The Loyalists in the American Revolution_. + + +=Questions= + +1. What was the non-importation agreement? By what body was it adopted? +Why was it revolutionary in character? + +2. Contrast the work of the first and second Continental Congresses. + +3. Why did efforts at conciliation fail? + +4. Trace the growth of American independence from opinion to the sphere +of action. + +5. Why is the Declaration of Independence an "immortal" document? + +6. What was the effect of the Revolution on colonial governments? On +national union? + +7. Describe the contest between "Patriots" and "Tories." + +8. What topics are considered under "military affairs"? Discuss each in +detail. + +9. Contrast the American forces with the British forces and show how the +war was won. + +10. Compare the work of women in the Revolutionary War with their labors +in the World War (1917-18). + +11. How was the Revolution financed? + +12. Why is diplomacy important in war? Describe the diplomatic triumph +of the Revolution. + +13. What was the nature of the opposition in England to the war? + +14. Give the events connected with the peace settlement; the terms of +peace. + + +=Research Topics= + +=The Spirit of America.=--Woodrow Wilson, _History of the American +People_, Vol. II, pp. 98-126. + +=American Rights.=--Draw up a table showing all the principles laid down +by American leaders in (1) the Resolves of the First Continental +Congress, Macdonald, _Documentary Source Book_, pp. 162-166; (2) the +Declaration of the Causes and the Necessity of Taking Up Arms, +Macdonald, pp. 176-183; and (3) the Declaration of Independence. + +=The Declaration of Independence.=--Fiske, _The American Revolution_, +Vol. I, pp. 147-197. Elson, _History of the United States_, pp. 250-254. + +=Diplomacy and the French Alliance.=--Hart, _American History Told by +Contemporaries_, Vol. II, pp. 574-590. Fiske, Vol. II, pp. 1-24. +Callender, _Economic History of the United States_, pp. 159-168; Elson, +pp. 275-280. + +=Biographical Studies.=--Washington, Franklin, Samuel Adams, Patrick +Henry, Thomas Jefferson--emphasizing the peculiar services of each. + +=The Tories.=--Hart, _Contemporaries_, Vol. II, pp. 470-480. + +=Valley Forge.=--Fiske, Vol. II, pp. 25-49. + +=The Battles of the Revolution.=--Elson, pp. 235-317. + +=An English View of the Revolution.=--Green, _Short History of England_, +Chap. X, Sect. 2. + +=English Opinion and the Revolution.=--Trevelyan, _The American +Revolution_, Vol. III (or Part 2, Vol. II), Chaps. XXIV-XXVII. + + + + +PART III. THE UNION AND NATIONAL POLITICS + + + + +CHAPTER VII + +THE FORMATION OF THE CONSTITUTION + + +THE PROMISE AND THE DIFFICULTIES OF AMERICA + +The rise of a young republic composed of thirteen states, each governed +by officials popularly elected under constitutions drafted by "the plain +people," was the most significant feature of the eighteenth century. The +majority of the patriots whose labors and sacrifices had made this +possible naturally looked upon their work and pronounced it good. Those +Americans, however, who peered beneath the surface of things, saw that +the Declaration of Independence, even if splendidly phrased, and paper +constitutions, drawn by finest enthusiasm "uninstructed by experience," +could not alone make the republic great and prosperous or even free. All +around them they saw chaos in finance and in industry and perils for the +immediate future. + +=The Weakness of the Articles of Confederation.=--The government under +the Articles of Confederation had neither the strength nor the resources +necessary to cope with the problems of reconstruction left by the war. +The sole organ of government was a Congress composed of from two to +seven members from each state chosen as the legislature might direct and +paid by the state. In determining all questions, each state had one +vote--Delaware thus enjoying the same weight as Virginia. There was no +president to enforce the laws. Congress was given power to select a +committee of thirteen--one from each state--to act as an executive body +when it was not in session; but this device, on being tried out, proved +a failure. There was no system of national courts to which citizens and +states could appeal for the protection of their rights or through which +they could compel obedience to law. The two great powers of government, +military and financial, were withheld. Congress, it is true, could +authorize expenditures but had to rely upon the states for the payment +of contributions to meet its bills. It could also order the +establishment of an army, but it could only request the states to supply +their respective quotas of soldiers. It could not lay taxes nor bring +any pressure to bear upon a single citizen in the whole country. It +could act only through the medium of the state governments. + +=Financial and Commercial Disorders.=--In the field of public finance, +the disorders were pronounced. The huge debt incurred during the war was +still outstanding. Congress was unable to pay either the interest or the +principal. Public creditors were in despair, as the market value of +their bonds sank to twenty-five or even ten cents on the dollar. The +current bills of Congress were unpaid. As some one complained, there was +not enough money in the treasury to buy pen and ink with which to record +the transactions of the shadow legislature. The currency was in utter +chaos. Millions of dollars in notes issued by Congress had become mere +trash worth a cent or two on the dollar. There was no other expression +of contempt so forceful as the popular saying: "not worth a +Continental." To make matters worse, several of the states were pouring +new streams of paper money from the press. Almost the only good money in +circulation consisted of English, French, and Spanish coins, and the +public was even defrauded by them because money changers were busy +clipping and filing away the metal. Foreign commerce was unsettled. The +entire British system of trade discrimination was turned against the +Americans, and Congress, having no power to regulate foreign commerce, +was unable to retaliate or to negotiate treaties which it could enforce. +Domestic commerce was impeded by the jealousies of the states, which +erected tariff barriers against their neighbors. The condition of the +currency made the exchange of money and goods extremely difficult, and, +as if to increase the confusion, backward states enacted laws hindering +the prompt collection of debts within their borders--an evil which +nothing but a national system of courts could cure. + +=Congress in Disrepute.=--With treaties set at naught by the states, the +laws unenforced, the treasury empty, and the public credit gone, the +Congress of the United States fell into utter disrepute. It called upon +the states to pay their quotas of money into the treasury, only to be +treated with contempt. Even its own members looked upon it as a solemn +futility. Some of the ablest men refused to accept election to it, and +many who did take the doubtful honor failed to attend the sessions. +Again and again it was impossible to secure a quorum for the transaction +of business. + +=Troubles of the State Governments.=--The state governments, free to +pursue their own course with no interference from without, had almost as +many difficulties as the Congress. They too were loaded with +revolutionary debts calling for heavy taxes upon an already restive +population. Oppressed by their financial burdens and discouraged by the +fall in prices which followed the return of peace, the farmers of +several states joined in a concerted effort and compelled their +legislatures to issue large sums of paper money. The currency fell in +value, but nevertheless it was forced on unwilling creditors to square +old accounts. + +In every part of the country legislative action fluctuated violently. +Laws were made one year only to be repealed the next and reenacted the +third year. Lands were sold by one legislature and the sales were +canceled by its successor. Uncertainty and distrust were the natural +consequences. Men of substance longed for some power that would forbid +states to issue bills of credit, to make paper money legal tender in +payment of debts, or to impair the obligation of contracts. Men heavily +in debt, on the other hand, urged even more drastic action against +creditors. + +So great did the discontent of the farmers in New Hampshire become in +1786 that a mob surrounded the legislature, demanding a repeal of the +taxes and the issuance of paper money. It was with difficulty that an +armed rebellion was avoided. In Massachusetts the malcontents, under the +leadership of Daniel Shays, a captain in the Revolutionary army, +organized that same year open resistance to the government of the state. +Shays and his followers protested against the conduct of creditors in +foreclosing mortgages upon the debt-burdened farmers, against the +lawyers for increasing the costs of legal proceedings, against the +senate of the state the members of which were apportioned among the +towns on the basis of the amount of taxes paid, against heavy taxes, and +against the refusal of the legislature to issue paper money. They seized +the towns of Worcester and Springfield and broke up the courts of +justice. All through the western part of the state the revolt spread, +sending a shock of alarm to every center and section of the young +republic. Only by the most vigorous action was Governor Bowdoin able to +quell the uprising; and when that task was accomplished, the state +government did not dare to execute any of the prisoners because they had +so many sympathizers. Moreover, Bowdoin and several members of the +legislature who had been most zealous in their attacks on the insurgents +were defeated at the ensuing election. The need of national assistance +for state governments in times of domestic violence was everywhere +emphasized by men who were opposed to revolutionary acts. + +=Alarm over Dangers to the Republic.=--Leading American citizens, +watching the drift of affairs, were slowly driven to the conclusion that +the new ship of state so proudly launched a few years before was +careening into anarchy. "The facts of our peace and independence," wrote +a friend of Washington, "do not at present wear so promising an +appearance as I had fondly painted in my mind. The prejudices, +jealousies, and turbulence of the people at times almost stagger my +confidence in our political establishments; and almost occasion me to +think that they will show themselves unworthy of the noble prize for +which we have contended." + +Washington himself was profoundly discouraged. On hearing of Shays's +rebellion, he exclaimed: "What, gracious God, is man that there should +be such inconsistency and perfidiousness in his conduct! It is but the +other day that we were shedding our blood to obtain the constitutions +under which we now live--constitutions of our own choice and making--and +now we are unsheathing our sword to overturn them." The same year he +burst out in a lament over rumors of restoring royal government. "I am +told that even respectable characters speak of a monarchical government +without horror. From thinking proceeds speaking. Hence to acting is +often but a single step. But how irresistible and tremendous! What a +triumph for our enemies to verify their predictions! What a triumph for +the advocates of despotism to find that we are incapable of governing +ourselves!" + +=Congress Attempts Some Reforms.=--The Congress was not indifferent to +the events that disturbed Washington. On the contrary it put forth many +efforts to check tendencies so dangerous to finance, commerce, +industries, and the Confederation itself. In 1781, even before the +treaty of peace was signed, the Congress, having found out how futile +were its taxing powers, carried a resolution of amendment to the +Articles of Confederation, authorizing the levy of a moderate duty on +imports. Yet this mild measure was rejected by the states. Two years +later the Congress prepared another amendment sanctioning the levy of +duties on imports, to be collected this time by state officers and +applied to the payment of the public debt. This more limited proposal, +designed to save public credit, likewise failed. In 1786, the Congress +made a third appeal to the states for help, declaring that they had been +so irregular and so negligent in paying their quotas that further +reliance upon that mode of raising revenues was dishonorable and +dangerous. + + +THE CALLING OF A CONSTITUTIONAL CONVENTION + +=Hamilton and Washington Urge Reform.=--The attempts at reform by the +Congress were accompanied by demand for, both within and without that +body, a convention to frame a new plan of government. In 1780, the +youthful Alexander Hamilton, realizing the weakness of the Articles, so +widely discussed, proposed a general convention for the purpose of +drafting a new constitution on entirely different principles. With +tireless energy he strove to bring his countrymen to his view. +Washington, agreeing with him on every point, declared, in a circular +letter to the governors, that the duration of the union would be short +unless there was lodged somewhere a supreme power "to regulate and +govern the general concerns of the confederated republic." The governor +of Massachusetts, disturbed by the growth of discontent all about him, +suggested to the state legislature in 1785 the advisability of a +national convention to enlarge the powers of the Congress. The +legislature approved the plan, but did not press it to a conclusion. + +[Illustration: ALEXANDER HAMILTON] + +=The Annapolis Convention.=--Action finally came from the South. The +Virginia legislature, taking things into its own hands, called a +conference of delegates at Annapolis to consider matters of taxation and +commerce. When the convention assembled in 1786, it was found that only +five states had taken the trouble to send representatives. The leaders +were deeply discouraged, but the resourceful Hamilton, a delegate from +New York, turned the affair to good account. He secured the adoption of +a resolution, calling upon the Congress itself to summon another +convention, to meet at Philadelphia. + +=A National Convention Called (1787).=--The Congress, as tardy as ever, +at last decided in February, 1787, to issue the call. Fearing drastic +changes, however, it restricted the convention to "the sole and express +purpose of revising the Articles of Confederation." Jealous of its own +powers, it added that any alterations proposed should be referred to the +Congress and the states for their approval. + +Every state in the union, except Rhode Island, responded to this call. +Indeed some of the states, having the Annapolis resolution before them, +had already anticipated the Congress by selecting delegates before the +formal summons came. Thus, by the persistence of governors, +legislatures, and private citizens, there was brought about the +long-desired national convention. In May, 1787, it assembled in +Philadelphia. + +=The Eminent Men of the Convention.=--On the roll of that memorable +convention were fifty-five men, at least half of whom were acknowledged +to be among the foremost statesmen and thinkers in America. Every field +of statecraft was represented by them: war and practical management in +Washington, who was chosen president of the convention; diplomacy in +Franklin, now old and full of honor in his own land as well as abroad; +finance in Alexander Hamilton and Robert Morris; law in James Wilson of +Pennsylvania; the philosophy of government in James Madison, called the +"father of the Constitution." They were not theorists but practical men, +rich in political experience and endowed with deep insight into the +springs of human action. Three of them had served in the Stamp Act +Congress: Dickinson of Delaware, William Samuel Johnson of Connecticut, +and John Rutledge of South Carolina. Eight had been signers of the +Declaration of Independence: Read of Delaware, Sherman of Connecticut, +Wythe of Virginia, Gerry of Massachusetts, Franklin, Robert Morris, +George Clymer, and James Wilson of Pennsylvania. All but twelve had at +some time served in the Continental Congress and eighteen were members +of that body in the spring of 1787. Washington, Hamilton, Mifflin, and +Charles Pinckney had been officers in the Revolutionary army. Seven of +the delegates had gained political experience as governors of states. +"The convention as a whole," according to the historian Hildreth, +"represented in a marked manner the talent, intelligence, and +especially the conservative sentiment of the country." + + +THE FRAMING OF THE CONSTITUTION + +=Problems Involved.=--The great problems before the convention were nine +in number: (1) Shall the Articles of Confederation be revised or a new +system of government constructed? (2) Shall the government be founded on +states equal in power as under the Articles or on the broader and deeper +foundation of population? (3) What direct share shall the people have in +the election of national officers? (4) What shall be the qualifications +for the suffrage? (5) How shall the conflicting interests of the +commercial and the planting states be balanced so as to safeguard the +essential rights of each? (6) What shall be the form of the new +government? (7) What powers shall be conferred on it? (8) How shall the +state legislatures be restrained from their attacks on property rights +such as the issuance of paper money? (9) Shall the approval of all the +states be necessary, as under the Articles, for the adoption and +amendment of the Constitution? + +=Revision of the Articles or a New Government?=--The moment the first +problem was raised, representatives of the small states, led by William +Paterson of New Jersey, were on their feet. They feared that, if the +Articles were overthrown, the equality and rights of the states would be +put in jeopardy. Their protest was therefore vigorous. They cited the +call issued by the Congress in summoning the convention which +specifically stated that they were assembled for "the sole and express +purpose of revising the Articles of Confederation." They cited also +their instructions from their state legislatures, which authorized them +to "revise and amend" the existing scheme of government, not to make a +revolution in it. To depart from the authorization laid down by the +Congress and the legislatures would be to exceed their powers, they +argued, and to betray the trust reposed in them by their countrymen. + +To their contentions, Randolph of Virginia replied: "When the salvation +of the republic is at stake, it would be treason to our trust not to +propose what we find necessary." Hamilton, reminding the delegates that +their work was still subject to the approval of the states, frankly said +that on the point of their powers he had no scruples. With the issue +clear, the convention cast aside the Articles as if they did not exist +and proceeded to the work of drawing up a new constitution, "laying its +foundations on such principles and organizing its powers in such form" +as to the delegates seemed "most likely to affect their safety and +happiness." + +=A Government Founded on States or on People?--The +Compromise.=--Defeated in their attempt to limit the convention to a +mere revision of the Articles, the spokesmen of the smaller states +redoubled their efforts to preserve the equality of the states. The +signal for a radical departure from the Articles on this point was given +early in the sessions when Randolph presented "the Virginia plan." He +proposed that the new national legislature consist of two houses, the +members of which were to be apportioned among the states according to +their wealth or free white population, as the convention might decide. +This plan was vehemently challenged. Paterson of New Jersey flatly +avowed that neither he nor his state would ever bow to such tyranny. As +an alternative, he presented "the New Jersey plan" calling for a +national legislature of one house representing states as such, not +wealth or people--a legislature in which all states, large or small, +would have equal voice. Wilson of Pennsylvania, on behalf of the more +populous states, took up the gauntlet which Paterson had thrown down. It +was absurd, he urged, for 180,000 men in one state to have the same +weight in national counsels as 750,000 men in another state. "The +gentleman from New Jersey," he said, "is candid. He declares his opinion +boldly.... I will be equally candid.... I will never confederate on his +principles." So the bitter controversy ran on through many exciting +sessions. + +Greek had met Greek. The convention was hopelessly deadlocked and on the +verge of dissolution, "scarce held together by the strength of a hair," +as one of the delegates remarked. A crash was averted only by a +compromise. Instead of a Congress of one house as provided by the +Articles, the convention agreed upon a legislature of two houses. In the +Senate, the aspirations of the small states were to be satisfied, for +each state was given two members in that body. In the formation of the +House of Representatives, the larger states were placated, for it was +agreed that the members of that chamber were to be apportioned among the +states on the basis of population, counting three-fifths of the slaves. + +=The Question of Popular Election.=--The method of selecting federal +officers and members of Congress also produced an acrimonious debate +which revealed how deep-seated was the distrust of the capacity of the +people to govern themselves. Few there were who believed that no branch +of the government should be elected directly by the voters; still fewer +were there, however, who desired to see all branches so chosen. One or +two even expressed a desire for a monarchy. The dangers of democracy +were stressed by Gerry of Massachusetts: "All the evils we experience +flow from an excess of democracy. The people do not want virtue but are +the dupes of pretended patriots.... I have been too republican +heretofore but have been taught by experience the danger of a leveling +spirit." To the "democratic licentiousness of the state legislatures," +Randolph sought to oppose a "firm senate." To check the excesses of +popular government Charles Pinckney of South Carolina declared that no +one should be elected President who was not worth $100,000 and that high +property qualifications should be placed on members of Congress and +judges. Other members of the convention were stoutly opposed to such +"high-toned notions of government." Franklin and Wilson, both from +Pennsylvania, vigorously championed popular election; while men like +Madison insisted that at least one part of the government should rest on +the broad foundation of the people. + +Out of this clash of opinion also came compromise. One branch, the House +of Representatives, it was agreed, was to be elected directly by the +voters, while the Senators were to be elected indirectly by the state +legislatures. The President was to be chosen by electors selected as the +legislatures of the states might determine, and the judges of the +federal courts, supreme and inferior, by the President and the Senate. + +=The Question of the Suffrage.=--The battle over the suffrage was sharp +but brief. Gouverneur Morris proposed that only land owners should be +permitted to vote. Madison replied that the state legislatures, which +had made so much trouble with radical laws, were elected by freeholders. +After the debate, the delegates, unable to agree on any property +limitations on the suffrage, decided that the House of Representatives +should be elected by voters having the "qualifications requisite for +electors of the most numerous branch of the state legislature." Thus +they accepted the suffrage provisions of the states. + +=The Balance between the Planting and the Commercial States.=--After the +debates had gone on for a few weeks, Madison came to the conclusion that +the real division in the convention was not between the large and the +small states but between the planting section founded on slave labor and +the commercial North. Thus he anticipated by nearly three-quarters of a +century "the irrepressible conflict." The planting states had neither +the free white population nor the wealth of the North. There were, +counting Delaware, six of them as against seven commercial states. +Dependent for their prosperity mainly upon the sale of tobacco, rice, +and other staples abroad, they feared that Congress might impose +restraints upon their enterprise. Being weaker in numbers, they were +afraid that the majority might lay an unfair burden of taxes upon them. + +_Representation and Taxation._--The Southern members of the convention +were therefore very anxious to secure for their section the largest +possible representation in Congress, and at the same time to restrain +the taxing power of that body. Two devices were thought adapted to these +ends. One was to count the slaves as people when apportioning +representatives among the states according to their respective +populations; the other was to provide that direct taxes should be +apportioned among the states, in proportion not to their wealth but to +the number of their free white inhabitants. For obvious reasons the +Northern delegates objected to these proposals. Once more a compromise +proved to be the solution. It was agreed that not all the slaves but +three-fifths of them should be counted for both purposes--representation +and direct taxation. + +_Commerce and the Slave Trade._--Southern interests were also involved +in the project to confer upon Congress the power to regulate interstate +and foreign commerce. To the manufacturing and trading states this was +essential. It would prevent interstate tariffs and trade jealousies; it +would enable Congress to protect American manufactures and to break +down, by appropriate retaliations, foreign discriminations against +American commerce. To the South the proposal was menacing because +tariffs might interfere with the free exchange of the produce of +plantations in European markets, and navigation acts might confine the +carrying trade to American, that is Northern, ships. The importation of +slaves, moreover, it was feared might be heavily taxed or immediately +prohibited altogether. + +The result of this and related controversies was a debate on the merits +of slavery. Gouverneur Morris delivered his mind and heart on that +subject, denouncing slavery as a nefarious institution and the curse of +heaven on the states in which it prevailed. Mason of Virginia, a +slaveholder himself, was hardly less outspoken, saying: "Slavery +discourages arts and manufactures. The poor despise labor when performed +by slaves. They prevent the migration of whites who really strengthen +and enrich a country." + +The system, however, had its defenders. Representatives from South +Carolina argued that their entire economic life rested on slave labor +and that the high death rate in the rice swamps made continuous +importation necessary. Ellsworth of Connecticut took the ground that +the convention should not meddle with slavery. "The morality or wisdom +of slavery," he said, "are considerations belonging to the states. What +enriches a part enriches the whole." To the future he turned an +untroubled face: "As population increases, poor laborers will be so +plenty as to render slaves useless. Slavery in time will not be a speck +in our country." Virginia and North Carolina, already overstocked with +slaves, favored prohibiting the traffic in them; but South Carolina was +adamant. She must have fresh supplies of slaves or she would not +federate. + +So it was agreed that, while Congress might regulate foreign trade by +majority vote, the importation of slaves should not be forbidden before +the lapse of twenty years, and that any import tax should not exceed $10 +a head. At the same time, in connection with the regulation of foreign +trade, it was stipulated that a two-thirds vote in the Senate should be +necessary in the ratification of treaties. A further concession to the +South was made in the provision for the return of runaway slaves--a +provision also useful in the North, where indentured servants were about +as troublesome as slaves in escaping from their masters. + +=The Form of the Government.=--As to the details of the frame of +government and the grand principles involved, the opinion of the +convention ebbed and flowed, decisions being taken in the heat of +debate, only to be revoked and taken again. + +_The Executive._--There was general agreement that there should be an +executive branch; for reliance upon Congress to enforce its own laws and +treaties had been a broken reed. On the character and functions of the +executive, however, there were many views. The New Jersey plan called +for a council selected by the Congress; the Virginia plan provided that +the executive branch should be chosen by the Congress but did not state +whether it should be composed of one or several persons. On this matter +the convention voted first one way and then another; finally it agreed +on a single executive chosen indirectly by electors selected as the +state legislatures might decide, serving for four years, subject to +impeachment, and endowed with regal powers in the command of the army +and the navy and in the enforcement of the laws. + +_The Legislative Branch--Congress._--After the convention had made the +great compromise between the large and small commonwealths by giving +representation to states in the Senate and to population in the House, +the question of methods of election had to be decided. As to the House +of Representatives it was readily agreed that the members should be +elected by direct popular vote. There was also easy agreement on the +proposition that a strong Senate was needed to check the "turbulence" of +the lower house. Four devices were finally selected to accomplish this +purpose. In the first place, the Senators were not to be chosen directly +by the voters but by the legislatures of the states, thus removing their +election one degree from the populace. In the second place, their term +was fixed at six years instead of two, as in the case of the House. In +the third place, provision was made for continuity by having only +one-third of the members go out at a time while two-thirds remained in +service. Finally, it was provided that Senators must be at least thirty +years old while Representatives need be only twenty-five. + +_The Judiciary._--The need for federal courts to carry out the law was +hardly open to debate. The feebleness of the Articles of Confederation +was, in a large measure, attributed to the want of a judiciary to hold +states and individuals in obedience to the laws and treaties of the +union. Nevertheless on this point the advocates of states' rights were +extremely sensitive. They looked with distrust upon judges appointed at +the national capital and emancipated from local interests and +traditions; they remembered with what insistence they had claimed +against Britain the right of local trial by jury and with what +consternation they had viewed the proposal to make colonial judges +independent of the assemblies in the matter of their salaries. +Reluctantly they yielded to the demand for federal courts, consenting at +first only to a supreme court to review cases heard in lower state +courts and finally to such additional inferior courts as Congress might +deem necessary. + +_The System of Checks and Balances._--It is thus apparent that the +framers of the Constitution, in shaping the form of government, arranged +for a distribution of power among three branches, executive, +legislative, and judicial. Strictly speaking we might say four branches, +for the legislature, or Congress, was composed of two houses, elected in +different ways, and one of them, the Senate, was made a check on the +President through its power of ratifying treaties and appointments. "The +accumulation of all powers, legislative, executive, and judicial, in the +same hands," wrote Madison, "whether of one, a few, or many, and whether +hereditary, self-appointed, or elective, may justly be pronounced the +very definition of tyranny." The devices which the convention adopted to +prevent such a centralization of authority were exceedingly ingenious +and well calculated to accomplish the purposes of the authors. + +The legislature consisted of two houses, the members of which were to be +apportioned on a different basis, elected in different ways, and to +serve for different terms. A veto on all its acts was vested in a +President elected in a manner not employed in the choice of either +branch of the legislature, serving for four years, and subject to +removal only by the difficult process of impeachment. After a law had +run the gantlet of both houses and the executive, it was subject to +interpretation and annulment by the judiciary, appointed by the +President with the consent of the Senate and serving for life. Thus it +was made almost impossible for any political party to get possession of +all branches of the government at a single popular election. As Hamilton +remarked, the friends of good government considered "every institution +calculated to restrain the excess of law making and to keep things in +the same state in which they happen to be at any given period as more +likely to do good than harm." + +=The Powers of the Federal Government.=--On the question of the powers +to be conferred upon the new government there was less occasion for a +serious dispute. Even the delegates from the small states agreed with +those from Massachusetts, Pennsylvania, and Virginia that new powers +should be added to those intrusted to Congress by the Articles of +Confederation. The New Jersey plan as well as the Virginia plan +recognized this fact. Some of the delegates, like Hamilton and Madison, +even proposed to give Congress a general legislative authority covering +all national matters; but others, frightened by the specter of +nationalism, insisted on specifying each power to be conferred and +finally carried the day. + +_Taxation and Commerce._--There were none bold enough to dissent from +the proposition that revenue must be provided to pay current expenses +and discharge the public debt. When once the dispute over the +apportionment of direct taxes among the slave states was settled, it was +an easy matter to decide that Congress should have power to lay and +collect taxes, duties, imposts, and excises. In this way the national +government was freed from dependence upon stubborn and tardy +legislatures and enabled to collect funds directly from citizens. There +were likewise none bold enough to contend that the anarchy of state +tariffs and trade discriminations should be longer endured. When the +fears of the planting states were allayed and the "bargain" over the +importation of slaves was reached, the convention vested in Congress the +power to regulate foreign and interstate commerce. + +_National Defense._--The necessity for national defense was realized, +though the fear of huge military establishments was equally present. The +old practice of relying on quotas furnished by the state legislatures +was completely discredited. As in the case of taxes a direct authority +over citizens was demanded. Congress was therefore given full power to +raise and support armies and a navy. It could employ the state militia +when desirable; but it could at the same time maintain a regular army +and call directly upon all able-bodied males if the nature of a crisis +was thought to require it. + +_The "Necessary and Proper" Clause._--To the specified power vested in +Congress by the Constitution, the advocates of a strong national +government added a general clause authorizing it to make all laws +"necessary and proper" for carrying into effect any and all of the +enumerated powers. This clause, interpreted by that master mind, Chief +Justice Marshall, was later construed to confer powers as wide as the +requirements of a vast country spanning a continent and taking its place +among the mighty nations of the earth. + +=Restraints on the States.=--Framing a government and endowing it with +large powers were by no means the sole concern of the convention. Its +very existence had been due quite as much to the conduct of the state +legislatures as to the futilities of a paralyzed Continental Congress. +In every state, explains Marshall in his _Life of Washington_, there was +a party of men who had "marked out for themselves a more indulgent +course. Viewing with extreme tenderness the case of the debtor, their +efforts were unceasingly directed to his relief. To exact a faithful +compliance with contracts was, in their opinion, a harsh measure which +the people could not bear. They were uniformly in favor of relaxing the +administration of justice, of affording facilities for the payment of +debts, or of suspending their collection, and remitting taxes." + +The legislatures under the dominance of these men had enacted paper +money laws enabling debtors to discharge their obligations more easily. +The convention put an end to such practices by providing that no state +should emit bills of credit or make anything but gold or silver legal +tender in the payment of debts. The state legislatures had enacted laws +allowing men to pay their debts by turning over to creditors land or +personal property; they had repealed the charter of an endowed college +and taken the management from the hands of the lawful trustees; and they +had otherwise interfered with the enforcement of private agreements. The +convention, taking notice of such matters, inserted a clause forbidding +states "to impair the obligation of contracts." The more venturous of +the radicals had in Massachusetts raised the standard of revolt against +the authorities of the state. The convention answered by a brief +sentence to the effect that the President of the United States, to be +equipped with a regular army, would send troops to suppress domestic +insurrections whenever called upon by the legislature or, if it was not +in session, by the governor of the state. To make sure that the +restrictions on the states would not be dead letters, the federal +Constitution, laws, and treaties were made the supreme law of the land, +to be enforced whenever necessary by a national judiciary and executive +against violations on the part of any state authorities. + +=Provisions for Ratification and Amendment.=--When the frame of +government had been determined, the powers to be vested in it had been +enumerated, and the restrictions upon the states had been written into +the bond, there remained three final questions. How shall the +Constitution be ratified? What number of states shall be necessary to +put it into effect? How shall it be amended in the future? + +On the first point, the mandate under which the convention was sitting +seemed positive. The Articles of Confederation were still in effect. +They provided that amendments could be made only by unanimous adoption +in Congress and the approval of all the states. As if to give force to +this provision of law, the call for the convention had expressly stated +that all alterations and revisions should be reported to Congress for +adoption or rejection, Congress itself to transmit the document +thereafter to the states for their review. + +To have observed the strict letter of the law would have defeated the +purposes of the delegates, because Congress and the state legislatures +were openly hostile to such drastic changes as had been made. Unanimous +ratification, as events proved, would have been impossible. Therefore +the delegates decided that the Constitution should be sent to Congress +with the recommendation that it, in turn, transmit the document, not to +the state legislatures, but to conventions held in the states for the +special object of deciding upon ratification. This process was followed. +It was their belief that special conventions would be more friendly than +the state legislatures. + +The convention was equally positive in dealing with the problem of the +number of states necessary to establish the new Constitution. Attempts +to change the Articles had failed because amendment required the +approval of every state and there was always at least one recalcitrant +member of the union. The opposition to a new Constitution was +undoubtedly formidable. Rhode Island had even refused to take part in +framing it, and her hostility was deep and open. So the convention cast +aside the provision of the Articles of Confederation which required +unanimous approval for any change in the plan of government; it decreed +that the new Constitution should go into effect when ratified by nine +states. + +In providing for future changes in the Constitution itself the +convention also thrust aside the old rule of unanimous approval, and +decided that an amendment could be made on a two-thirds vote in both +houses of Congress and ratification by three-fourths of the states. This +change was of profound significance. Every state agreed to be bound in +the future by amendments duly adopted even in case it did not approve +them itself. America in this way set out upon the high road that led +from a league of states to a nation. + + +THE STRUGGLE OVER RATIFICATION + +On September 17, 1787, the Constitution, having been finally drafted in +clear and simple language, a model to all makers of fundamental law, was +adopted. The convention, after nearly four months of debate in secret +session, flung open the doors and presented to the Americans the +finished plan for the new government. Then the great debate passed to +the people. + +=The Opposition.=--Storms of criticism at once descended upon the +Constitution. "Fraudulent usurpation!" exclaimed Gerry, who had refused +to sign it. "A monster" out of the "thick veil of secrecy," declaimed a +Pennsylvania newspaper. "An iron-handed despotism will be the result," +protested a third. "We, 'the low-born,'" sarcastically wrote a fourth, +"will now admit the 'six hundred well-born' immediately to establish +this most noble, most excellent, and truly divine constitution." The +President will become a king; Congress will be as tyrannical as +Parliament in the old days; the states will be swallowed up; the rights +of the people will be trampled upon; the poor man's justice will be lost +in the endless delays of the federal courts--such was the strain of the +protests against ratification. + +[Illustration: AN ADVERTISEMENT OF _The Federalist_] + +=Defense of the Constitution.=--Moved by the tempest of opposition, +Hamilton, Madison, and Jay took up their pens in defense of the +Constitution. In a series of newspaper articles they discussed and +expounded with eloquence, learning, and dignity every important clause +and provision of the proposed plan. These papers, afterwards collected +and published in a volume known as _The Federalist_, form the finest +textbook on the Constitution that has ever been printed. It takes its +place, moreover, among the wisest and weightiest treatises on government +ever written in any language in any time. Other men, not so gifted, were +no less earnest in their support of ratification. In private +correspondence, editorials, pamphlets, and letters to the newspapers, +they urged their countrymen to forget their partisanship and accept a +Constitution which, in spite of any defects great or small, was the +only guarantee against dissolution and warfare at home and dishonor and +weakness abroad. + +[Illustration: CELEBRATING THE RATIFICATION] + +=The Action of the State Conventions.=--Before the end of the year, +1787, three states had ratified the Constitution: Delaware and New +Jersey unanimously and Pennsylvania after a short, though savage, +contest. Connecticut and Georgia followed early the next year. Then came +the battle royal in Massachusetts, ending in ratification in February by +the narrow margin of 187 votes to 168. In the spring came the news that +Maryland and South Carolina were "under the new roof." On June 21, New +Hampshire, where the sentiment was at first strong enough to defeat the +Constitution, joined the new republic, influenced by the favorable +decision in Massachusetts. Swift couriers were sent to carry the news to +New York and Virginia, where the question of ratification was still +undecided. Nine states had accepted it and were united, whether more saw +fit to join or not. + +Meanwhile, however, Virginia, after a long and searching debate, had +given her approval by a narrow margin, leaving New York as the next seat +of anxiety. In that state the popular vote for the delegates to the +convention had been clearly and heavily against ratification. Events +finally demonstrated the futility of resistance, and Hamilton by good +judgment and masterly arguments was at last able to marshal a majority +of thirty to twenty-seven votes in favor of ratification. + +The great contest was over. All the states, except North Carolina and +Rhode Island, had ratified. "The sloop Anarchy," wrote an ebullient +journalist, "when last heard from was ashore on Union rocks." + +=The First Election.=--In the autumn of 1788, elections were held to +fill the places in the new government. Public opinion was overwhelmingly +in favor of Washington as the first President. Yielding to the +importunities of friends, he accepted the post in the spirit of public +service. On April 30, 1789, he took the oath of office at Federal Hall +in New York City. "Long live George Washington, President of the United +States!" cried Chancellor Livingston as soon as the General had kissed +the Bible. The cry was caught by the assembled multitude and given back. +A new experiment in popular government was launched. + + +=References= + +M. Farrand, _The Framing of the Constitution of the United States_. + +P.L. Ford, _Essays on the Constitution of the United States_. + +_The Federalist_ (in many editions). + +G. Hunt, _Life of James Madison_. + +A.C. McLaughlin, _The Confederation and the Constitution_ (American +Nation Series). + + +=Questions= + +1. Account for the failure of the Articles of Confederation. + +2. Explain the domestic difficulties of the individual states. + +3. Why did efforts at reform by the Congress come to naught? + +4. Narrate the events leading up to the constitutional convention. + +5. Who were some of the leading men in the convention? What had been +their previous training? + +6. State the great problems before the convention. + +7. In what respects were the planting and commercial states opposed? +What compromises were reached? + +8. Show how the "check and balance" system is embodied in our form of +government. + +9. How did the powers conferred upon the federal government help cure +the defects of the Articles of Confederation? + +10. In what way did the provisions for ratifying and amending the +Constitution depart from the old system? + +11. What was the nature of the conflict over ratification? + + +=Research Topics= + +=English Treatment of American Commerce.=--Callender, _Economic History +of the United States_, pp. 210-220. + +=Financial Condition of the United States.=--Fiske, _Critical Period of +American History_, pp. 163-186. + +=Disordered Commerce.=--Fiske, pp. 134-162. + +=Selfish Conduct of the States.=--Callender, pp. 185-191. + +=The Failure of the Confederation.=--Elson, _History of the United +States_, pp. 318-326. + +=Formation of the Constitution.=--(1) The plans before the convention, +Fiske, pp. 236-249; (2) the great compromise, Fiske, pp. 250-255; (3) +slavery and the convention, Fiske, pp. 256-266; and (4) the frame of +government, Fiske, pp. 275-301; Elson, pp. 328-334. + +=Biographical Studies.=--Look up the history and services of the leaders +in the convention in any good encyclopedia. + +=Ratification of the Constitution.=--Hart, _History Told by +Contemporaries_, Vol. III, pp. 233-254; Elson, pp. 334-340. + +=Source Study.=--Compare the Constitution and Articles of Confederation +under the following heads: (1) frame of government; (2) powers of +Congress; (3) limits on states; and (4) methods of amendment. Every line +of the Constitution should be read and re-read in the light of the +historical circumstances set forth in this chapter. + + + + +CHAPTER VIII + +THE CLASH OF POLITICAL PARTIES + + +THE MEN AND MEASURES OF THE NEW GOVERNMENT + +=Friends of the Constitution in Power.=--In the first Congress that +assembled after the adoption of the Constitution, there were eleven +Senators, led by Robert Morris, the financier, who had been delegates to +the national convention. Several members of the House of +Representatives, headed by James Madison, had also been at Philadelphia +in 1787. In making his appointments, Washington strengthened the new +system of government still further by a judicious selection of +officials. He chose as Secretary of the Treasury, Alexander Hamilton, +who had been the most zealous for its success; General Knox, head of the +War Department, and Edmund Randolph, the Attorney-General, were likewise +conspicuous friends of the experiment. Every member of the federal +judiciary whom Washington appointed, from the Chief Justice, John Jay, +down to the justices of the district courts, had favored the +ratification of the Constitution; and a majority of them had served as +members of the national convention that framed the document or of the +state ratifying conventions. Only one man of influence in the new +government, Thomas Jefferson, the Secretary of State, was reckoned as a +doubter in the house of the faithful. He had expressed opinions both for +and against the Constitution; but he had been out of the country acting +as the minister at Paris when the Constitution was drafted and ratified. + +=An Opposition to Conciliate.=--The inauguration of Washington amid the +plaudits of his countrymen did not set at rest all the political turmoil +which had been aroused by the angry contest over ratification. "The +interesting nature of the question," wrote John Marshall, "the equality +of the parties, the animation produced inevitably by ardent debate had a +necessary tendency to embitter the dispositions of the vanquished and to +fix more deeply in many bosoms their prejudices against a plan of +government in opposition to which all their passions were enlisted." The +leaders gathered around Washington were well aware of the excited state +of the country. They saw Rhode Island and North Carolina still outside +of the union.[1] They knew by what small margins the Constitution had +been approved in the great states of Massachusetts, Virginia, and New +York. They were equally aware that a majority of the state conventions, +in yielding reluctant approval to the Constitution, had drawn a number +of amendments for immediate submission to the states. + +=The First Amendments--a Bill of Rights.=--To meet the opposition, +Madison proposed, and the first Congress adopted, a series of amendments +to the Constitution. Ten of them were soon ratified and became in 1791 a +part of the law of the land. These amendments provided, among other +things, that Congress could make no law respecting the establishment of +religion, abridging the freedom of speech or of the press or the right +of the people peaceably to assemble and petition the government for a +redress of grievances. They also guaranteed indictment by grand jury and +trial by jury for all persons charged by federal officers with serious +crimes. To reassure those who still feared that local rights might be +invaded by the federal government, the tenth amendment expressly +provided that the powers not delegated to the United States by the +Constitution, nor prohibited by it to the states, are reserved to the +states respectively or to the people. Seven years later, the eleventh +amendment was written in the same spirit as the first ten, after a +heated debate over the action of the Supreme Court in permitting a +citizen to bring a suit against "the sovereign state" of Georgia. The +new amendment was designed to protect states against the federal +judiciary by forbidding it to hear any case in which a state was sued by +a citizen. + +=Funding the National Debt.=--Paper declarations of rights, however, +paid no bills. To this task Hamilton turned all his splendid genius. At +the very outset he addressed himself to the problem of the huge public +debt, daily mounting as the unpaid interest accumulated. In a _Report on +Public Credit_ under date of January 9, 1790, one of the first and +greatest of American state papers, he laid before Congress the outlines +of his plan. He proposed that the federal government should call in all +the old bonds, certificates of indebtedness, and other promises to pay +which had been issued by the Congress since the beginning of the +Revolution. These national obligations, he urged, should be put into one +consolidated debt resting on the credit of the United States; to the +holders of the old paper should be issued new bonds drawing interest at +fixed rates. This process was called "funding the debt." Such a +provision for the support of public credit, Hamilton insisted, would +satisfy creditors, restore landed property to its former value, and +furnish new resources to agriculture and commerce in the form of credit +and capital. + +=Assumption and Funding of State Debts.=--Hamilton then turned to the +obligations incurred by the several states in support of the Revolution. +These debts he proposed to add to the national debt. They were to be +"assumed" by the United States government and placed on the same secure +foundation as the continental debt. This measure he defended not merely +on grounds of national honor. It would, as he foresaw, give strength to +the new national government by making all public creditors, men of +substance in their several communities, look to the federal, rather than +the state government, for the satisfaction of their claims. + +=Funding at Face Value.=--On the question of the terms of consolidation, +assumption, and funding, Hamilton had a firm conviction. That millions +of dollars' worth of the continental and state bonds had passed out of +the hands of those who had originally subscribed their funds to the +support of the government or had sold supplies for the Revolutionary +army was well known. It was also a matter of common knowledge that a +very large part of these bonds had been bought by speculators at ruinous +figures--ten, twenty, and thirty cents on the dollar. Accordingly, it +had been suggested, even in very respectable quarters, that a +discrimination should be made between original holders and speculative +purchasers. Some who held this opinion urged that the speculators who +had paid nominal sums for their bonds should be reimbursed for their +outlays and the original holders paid the difference; others said that +the government should "scale the debt" by redeeming, not at full value +but at a figure reasonably above the market price. Against the +proposition Hamilton set his face like flint. He maintained that the +government was honestly bound to redeem every bond at its face value, +although the difficulty of securing revenue made necessary a lower rate +of interest on a part of the bonds and the deferring of interest on +another part. + +=Funding and Assumption Carried.=--There was little difficulty in +securing the approval of both houses of Congress for the funding of the +national debt at full value. The bill for the assumption of state debts, +however, brought the sharpest division of opinions. To the Southern +members of Congress assumption was a gross violation of states' rights, +without any warrant in the Constitution and devised in the interest of +Northern speculators who, anticipating assumption and funding, had +bought up at low prices the Southern bonds and other promises to pay. +New England, on the other hand, was strongly in favor of assumption; +several representatives from that section were rash enough to threaten a +dissolution of the union if the bill was defeated. To this dispute was +added an equally bitter quarrel over the location of the national +capital, then temporarily at New York City. + +[Illustration: FIRST UNITED STATES BANK AT PHILADELPHIA] + +A deadlock, accompanied by the most surly feelings on both sides, +threatened the very existence of the young government. Washington and +Hamilton were thoroughly alarmed. Hearing of the extremity to which the +contest had been carried and acting on the appeal from the Secretary of +the Treasury, Jefferson intervened at this point. By skillful management +at a good dinner he brought the opposing leaders together; and thus once +more, as on many other occasions, peace was purchased and the union +saved by compromise. The bargain this time consisted of an exchange of +votes for assumption in return for votes for the capital. Enough +Southern members voted for assumption to pass the bill, and a majority +was mustered in favor of building the capital on the banks of the +Potomac, after locating it for a ten-year period at Philadelphia to +satisfy Pennsylvania members. + +=The United States Bank.=--Encouraged by the success of his funding and +assumption measures, Hamilton laid before Congress a project for a great +United States Bank. He proposed that a private corporation be chartered +by Congress, authorized to raise a capital stock of $10,000,000 +(three-fourths in new six per cent federal bonds and one-fourth in +specie) and empowered to issue paper currency under proper safeguards. +Many advantages, Hamilton contended, would accrue to the government from +this institution. The price of the government bonds would be increased, +thus enhancing public credit. A national currency would be created of +uniform value from one end of the land to the other. The branches of the +bank in various cities would make easy the exchange of funds so vital to +commercial transactions on a national scale. Finally, through the issue +of bank notes, the money capital available for agriculture and industry +would be increased, thus stimulating business enterprise. Jefferson +hotly attacked the bank on the ground that Congress had no power +whatever under the Constitution to charter such a private corporation. +Hamilton defended it with great cogency. Washington, after weighing all +opinions, decided in favor of the proposal. In 1791 the bill +establishing the first United States Bank for a period of twenty years +became a law. + +=The Protective Tariff.=--A third part of Hamilton's program was the +protection of American industries. The first revenue act of 1789, though +designed primarily to bring money into the empty treasury, declared in +favor of the principle. The following year Washington referred to the +subject in his address to Congress. Thereupon Hamilton was instructed to +prepare recommendations for legislative action. The result, after a +delay of more than a year, was his _Report on Manufactures_, another +state paper worthy, in closeness of reasoning and keenness of +understanding, of a place beside his report on public credit. Hamilton +based his argument on the broadest national grounds: the protective +tariff would, by encouraging the building of factories, create a home +market for the produce of farms and plantations; by making the United +States independent of other countries in times of peace, it would double +its security in time of war; by making use of the labor of women and +children, it would turn to the production of goods persons otherwise +idle or only partly employed; by increasing the trade between the North +and South it would strengthen the links of union and add to political +ties those of commerce and intercourse. The revenue measure of 1792 bore +the impress of these arguments. + + +THE RISE OF POLITICAL PARTIES + +=Dissensions over Hamilton's Measures.=--Hamilton's plans, touching +deeply as they did the resources of individuals and the interests of the +states, awakened alarm and opposition. Funding at face value, said his +critics, was a government favor to speculators; the assumption of state +debts was a deep design to undermine the state governments; Congress had +no constitutional power to create a bank; the law creating the bank +merely allowed a private corporation to make paper money and lend it at +a high rate of interest; and the tariff was a tax on land and labor for +the benefit of manufacturers. + +Hamilton's reply to this bill of indictment was simple and +straightforward. Some rascally speculators had profited from the funding +of the debt at face value, but that was only an incident in the +restoration of public credit. In view of the jealousies of the states it +was a good thing to reduce their powers and pretensions. The +Constitution was not to be interpreted narrowly but in the full light of +national needs. The bank would enlarge the amount of capital so sorely +needed to start up American industries, giving markets to farmers and +planters. The tariff by creating a home market and increasing +opportunities for employment would benefit both land and labor. Out of +such wise policies firmly pursued by the government, he concluded, were +bound to come strength and prosperity for the new government at home, +credit and power abroad. This view Washington fully indorsed, adding +the weight of his great name to the inherent merits of the measures +adopted under his administration. + +=The Sharpness of the Partisan Conflict.=--As a result of the clash of +opinion, the people of the country gradually divided into two parties: +Federalists and Anti-Federalists, the former led by Hamilton, the latter +by Jefferson. The strength of the Federalists lay in the cities--Boston, +Providence, Hartford, New York, Philadelphia, Charleston--among the +manufacturing, financial, and commercial groups of the population who +were eager to extend their business operations. The strength of the +Anti-Federalists lay mainly among the debt-burdened farmers who feared +the growth of what they called "a money power" and planters in all +sections who feared the dominance of commercial and manufacturing +interests. The farming and planting South, outside of the few towns, +finally presented an almost solid front against assumption, the bank, +and the tariff. The conflict between the parties grew steadily in +bitterness, despite the conciliatory and engaging manner in which +Hamilton presented his cause in his state papers and despite the +constant efforts of Washington to soften the asperity of the +contestants. + +=The Leadership and Doctrines of Jefferson.=--The party dispute had not +gone far before the opponents of the administration began to look to +Jefferson as their leader. Some of Hamilton's measures he had approved, +declaring afterward that he did not at the time understand their +significance. Others, particularly the bank, he fiercely assailed. More +than once, he and Hamilton, shaking violently with anger, attacked each +other at cabinet meetings, and nothing short of the grave and dignified +pleas of Washington prevented an early and open break between them. In +1794 it finally came. Jefferson resigned as Secretary of State and +retired to his home in Virginia to assume, through correspondence and +negotiation, the leadership of the steadily growing party of opposition. + +Shy and modest in manner, halting in speech, disliking the turmoil of +public debate, and deeply interested in science and philosophy, +Jefferson was not very well fitted for the strenuous life of political +contest. Nevertheless, he was an ambitious and shrewd negotiator. He was +also by honest opinion and matured conviction the exact opposite of +Hamilton. The latter believed in a strong, active, "high-toned" +government, vigorously compelling in all its branches. Jefferson looked +upon such government as dangerous to the liberties of citizens and +openly avowed his faith in the desirability of occasional popular +uprisings. Hamilton distrusted the people. "Your people is a great +beast," he is reported to have said. Jefferson professed his faith in +the people with an abandon that was considered reckless in his time. + +On economic matters, the opinions of the two leaders were also +hopelessly at variance. Hamilton, while cherishing agriculture, desired +to see America a great commercial and industrial nation. Jefferson was +equally set against this course for his country. He feared the +accumulation of riches and the growth of a large urban working class. +The mobs of great cities, he said, are sores on the body politic; +artisans are usually the dangerous element that make revolutions; +workshops should be kept in Europe and with them the artisans with their +insidious morals and manners. The only substantial foundation for a +republic, Jefferson believed to be agriculture. The spirit of +independence could be kept alive only by free farmers, owning the land +they tilled and looking to the sun in heaven and the labor of their +hands for their sustenance. Trusting as he did in the innate goodness of +human nature when nourished on a free soil, Jefferson advocated those +measures calculated to favor agriculture and to enlarge the rights of +persons rather than the powers of government. Thus he became the +champion of the individual against the interference of the government, +and an ardent advocate of freedom of the press, freedom of speech, and +freedom of scientific inquiry. It was, accordingly, no mere factious +spirit that drove him into opposition to Hamilton. + +=The Whisky Rebellion.=--The political agitation of the Anti-Federalists +was accompanied by an armed revolt against the government in 1794. The +occasion for this uprising was another of Hamilton's measures, a law +laying an excise tax on distilled spirits, for the purpose of increasing +the revenue needed to pay the interest on the funded debt. It so +happened that a very considerable part of the whisky manufactured in the +country was made by the farmers, especially on the frontier, in their +own stills. The new revenue law meant that federal officers would now +come into the homes of the people, measure their liquor, and take the +tax out of their pockets. All the bitterness which farmers felt against +the fiscal measures of the government was redoubled. In the western +districts of Pennsylvania, Virginia, and North Carolina, they refused to +pay the tax. In Pennsylvania, some of them sacked and burned the houses +of the tax collectors, as the Revolutionists thirty years before had +mobbed the agents of King George sent over to sell stamps. They were in +a fair way to nullify the law in whole districts when Washington called +out the troops to suppress "the Whisky Rebellion." Then the movement +collapsed; but it left behind a deep-seated resentment which flared up +in the election of several obdurate Anti-Federalist Congressmen from the +disaffected regions. + + +FOREIGN INFLUENCES AND DOMESTIC POLITICS + +=The French Revolution.=--In this exciting period, when all America was +distracted by partisan disputes, a storm broke in Europe--the +epoch-making French Revolution--which not only shook the thrones of the +Old World but stirred to its depths the young republic of the New World. +The first scene in this dramatic affair occurred in the spring of 1789, +a few days after Washington was inaugurated. The king of France, Louis +XVI, driven into bankruptcy by extravagance and costly wars, was forced +to resort to his people for financial help. Accordingly he called, for +the first time in more than one hundred fifty years, a meeting of the +national parliament, the "Estates General," composed of representatives +of the "three estates"--the clergy, nobility, and commoners. Acting +under powerful leaders, the commoners, or "third estate," swept aside +the clergy and nobility and resolved themselves into a national +assembly. This stirred the country to its depths. + +[Illustration: _From an old print_ + +LOUIS XVI IN THE HANDS OF THE MOB] + +Great events followed in swift succession. On July 14, 1789, the +Bastille, an old royal prison, symbol of the king's absolutism, was +stormed by a Paris crowd and destroyed. On the night of August 4, the +feudal privileges of the nobility were abolished by the national +assembly amid great excitement. A few days later came the famous +Declaration of the Rights of Man, proclaiming the sovereignty of the +people and the privileges of citizens. In the autumn of 1791, Louis XVI +was forced to accept a new constitution for France vesting the +legislative power in a popular assembly. Little disorder accompanied +these startling changes. To all appearances a peaceful revolution had +stripped the French king of his royal prerogatives and based the +government of his country on the consent of the governed. + +=American Influence in France.=--In undertaking their great political +revolt the French had been encouraged by the outcome of the American +Revolution. Officers and soldiers, who had served in the American war, +reported to their French countrymen marvelous tales. At the frugal table +of General Washington, in council with the unpretentious Franklin, or at +conferences over the strategy of war, French noblemen of ancient lineage +learned to respect both the talents and the simple character of the +leaders in the great republican commonwealth beyond the seas. Travelers, +who had gone to see the experiment in republicanism with their own eyes, +carried home to the king and ruling class stories of an astounding +system of popular government. + +On the other hand the dalliance with American democracy was regarded by +French conservatives as playing with fire. "When we think of the false +ideas of government and philanthropy," wrote one of Lafayette's aides, +"which these youths acquired in America and propagated in France with so +much enthusiasm and such deplorable success--for this mania of imitation +powerfully aided the Revolution, though it was not the sole cause of +it--we are bound to confess that it would have been better, both for +themselves and for us, if these young philosophers in red-heeled shoes +had stayed at home in attendance on the court." + +=Early American Opinion of the French Revolution.=--So close were the +ties between the two nations that it is not surprising to find every +step in the first stages of the French Revolution greeted with applause +in the United States. "Liberty will have another feather in her cap," +exultantly wrote a Boston editor. "In no part of the globe," soberly +wrote John Marshall, "was this revolution hailed with more joy than in +America.... But one sentiment existed." The main key to the Bastille, +sent to Washington as a memento, was accepted as "a token of the +victory gained by liberty." Thomas Paine saw in the great event "the +first ripe fruits of American principles transplanted into Europe." +Federalists and Anti-Federalists regarded the new constitution of France +as another vindication of American ideals. + +=The Reign of Terror.=--While profuse congratulations were being +exchanged, rumors began to come that all was not well in France. Many +noblemen, enraged at the loss of their special privileges, fled into +Germany and plotted an invasion of France to overthrow the new system of +government. Louis XVI entered into negotiations with his brother +monarchs on the continent to secure their help in the same enterprise, +and he finally betrayed to the French people his true sentiments by +attempting to escape from his kingdom, only to be captured and taken +back to Paris in disgrace. + +A new phase of the revolution now opened. The working people, excluded +from all share in the government by the first French constitution, +became restless, especially in Paris. Assembling on the Champs de Mars, +a great open field, they signed a petition calling for another +constitution giving them the suffrage. When told to disperse, they +refused and were fired upon by the national guard. This "massacre," as +it was called, enraged the populace. A radical party, known as +"Jacobins," then sprang up, taking its name from a Jacobin monastery in +which it held its sessions. In a little while it became the master of +the popular convention convoked in September, 1792. The monarchy was +immediately abolished and a republic established. On January 21, 1793, +Louis was sent to the scaffold. To the war on Austria, already raging, +was added a war on England. Then came the Reign of Terror, during which +radicals in possession of the convention executed in large numbers +counter-revolutionists and those suspected of sympathy with the +monarchy. They shot down peasants who rose in insurrection against their +rule and established a relentless dictatorship. Civil war followed. +Terrible atrocities were committed on both sides in the name of liberty, +and in the name of monarchy. To Americans of conservative temper it now +seemed that the Revolution, so auspiciously begun, had degenerated into +anarchy and mere bloodthirsty strife. + +=Burke Summons the World to War on France.=--In England, Edmund Burke +led the fight against the new French principles which he feared might +spread to all Europe. In his _Reflections on the French Revolution_, +written in 1790, he attacked with terrible wrath the whole program of +popular government; he called for war, relentless war, upon the French +as monsters and outlaws; he demanded that they be reduced to order by +the restoration of the king to full power under the protection of the +arms of European nations. + +=Paine's Defense of the French Revolution.=--To counteract the campaign +of hate against the French, Thomas Paine replied to Burke in another of +his famous tracts, _The Rights of Man_, which was given to the American +public in an edition containing a letter of approval from Jefferson. +Burke, said Paine, had been mourning about the glories of the French +monarchy and aristocracy but had forgotten the starving peasants and the +oppressed people; had wept over the plumage and neglected the dying +bird. Burke had denied the right of the French people to choose their +own governors, blandly forgetting that the English government in which +he saw final perfection itself rested on two revolutions. He had boasted +that the king of England held his crown in contempt of the democratic +societies. Paine answered: "If I ask a man in America if he wants a +king, he retorts and asks me if I take him for an idiot." To the charge +that the doctrines of the rights of man were "new fangled," Paine +replied that the question was not whether they were new or old but +whether they were right or wrong. As to the French disorders and +difficulties, he bade the world wait to see what would be brought forth +in due time. + +=The Effect of the French Revolution on American Politics.=--The course +of the French Revolution and the controversies accompanying it, +exercised a profound influence on the formation of the first political +parties in America. The followers of Hamilton, now proud of the name +"Federalists," drew back in fright as they heard of the cruel deeds +committed during the Reign of Terror. They turned savagely upon the +revolutionists and their friends in America, denouncing as "Jacobin" +everybody who did not condemn loudly enough the proceedings of the +French Republic. A Massachusetts preacher roundly assailed "the +atheistical, anarchical, and in other respects immoral principles of the +French Republicans"; he then proceeded with equal passion to attack +Jefferson and the Anti-Federalists, whom he charged with spreading false +French propaganda and betraying America. "The editors, patrons, and +abettors of these vehicles of slander," he exclaimed, "ought to be +considered and treated as enemies to their country.... Of all traitors +they are the most aggravatedly criminal; of all villains, they are the +most infamous and detestable." + +The Anti-Federalists, as a matter of fact, were generally favorable to +the Revolution although they deplored many of the events associated with +it. Paine's pamphlet, indorsed by Jefferson, was widely read. Democratic +societies, after the fashion of French political clubs, arose in the +cities; the coalition of European monarchs against France was denounced +as a coalition against the very principles of republicanism; and the +execution of Louis XVI was openly celebrated at a banquet in +Philadelphia. Harmless titles, such as "Sir," "the Honorable," and "His +Excellency," were decried as aristocratic and some of the more excited +insisted on adopting the French title, "Citizen," speaking, for example, +of "Citizen Judge" and "Citizen Toastmaster." Pamphlets in defense of +the French streamed from the press, while subsidized newspapers kept the +propaganda in full swing. + +=The European War Disturbs American Commerce.=--This battle of wits, or +rather contest in calumny, might have gone on indefinitely in America +without producing any serious results, had it not been for the war +between England and France, then raging. The English, having command of +the seas, claimed the right to seize American produce bound for French +ports and to confiscate American ships engaged in carrying French goods. +Adding fuel to a fire already hot enough, they began to search American +ships and to carry off British-born sailors found on board American +vessels. + +=The French Appeal for Help.=--At the same time the French Republic +turned to the United States for aid in its war on England and sent over +as its diplomatic representative "Citizen" Genet, an ardent supporter of +the new order. On his arrival at Charleston, he was greeted with fervor +by the Anti-Federalists. As he made his way North, he was wined and +dined and given popular ovations that turned his head. He thought the +whole country was ready to join the French Republic in its contest with +England. Genet therefore attempted to use the American ports as the base +of operations for French privateers preying on British merchant ships; +and he insisted that the United States was in honor bound to help France +under the treaty of 1778. + +=The Proclamation of Neutrality and the Jay Treaty.=--Unmoved by the + +rising tide of popular sympathy for France, Washington took a firm +course. He received Genet coldly. The demand that the United States aid +France under the old treaty of alliance he answered by proclaiming the +neutrality of America and warning American citizens against hostile acts +toward either France or England. When Genet continued to hold meetings, +issue manifestoes, and stir up the people against England, Washington +asked the French government to recall him. This act he followed up by +sending the Chief Justice, John Jay, on a pacific mission to England. + +The result was the celebrated Jay treaty of 1794. By its terms Great +Britain agreed to withdraw her troops from the western forts where they +had been since the war for independence and to grant certain slight +trade concessions. The chief sources of bitterness--the failure of the +British to return slaves carried off during the Revolution, the seizure +of American ships, and the impressment of sailors--were not touched, +much to the distress of everybody in America, including loyal +Federalists. Nevertheless, Washington, dreading an armed conflict with +England, urged the Senate to ratify the treaty. The weight of his +influence carried the day. + +At this, the hostility of the Anti-Federalists knew no bounds. Jefferson +declared the Jay treaty "an infamous act which is really nothing more +than an alliance between England and the Anglo-men of this country, +against the legislature and the people of the United States." Hamilton, +defending it with his usual courage, was stoned by a mob in New York and +driven from the platform with blood streaming from his face. Jay was +burned in effigy. Even Washington was not spared. The House of +Representatives was openly hostile. To display its feelings, it called +upon the President for the papers relative to the treaty negotiations, +only to be more highly incensed by his flat refusal to present them, on +the ground that the House did not share in the treaty-making power. + +=Washington Retires from Politics.=--Such angry contests confirmed the +President in his slowly maturing determination to retire at the end of +his second term in office. He did not believe that a third term was +unconstitutional or improper; but, worn out by his long and arduous +labors in war and in peace and wounded by harsh attacks from former +friends, he longed for the quiet of his beautiful estate at Mount +Vernon. + +In September, 1796, on the eve of the presidential election, Washington +issued his Farewell Address, another state paper to be treasured and +read by generations of Americans to come. In this address he directed +the attention of the people to three subjects of lasting interest. He +warned them against sectional jealousies. He remonstrated against the +spirit of partisanship, saying that in government "of the popular +character, in government purely elective, it is a spirit not to be +encouraged." He likewise cautioned the people against "the insidious +wiles of foreign influence," saying: "Europe has a set of primary +interests which to us have none or a very remote relation. Hence she +must be engaged in frequent controversies, the causes of which are +essentially foreign to our concerns. Hence, therefore, it would be +unwise in us to implicate ourselves, by artificial ties, in the ordinary +vicissitudes of her politics or the ordinary combinations and collisions +of her friendships or enmities.... Why forego the advantages of so +peculiar a situation?... It is our true policy to steer clear of +permanent alliances with any portion of the foreign world.... Taking +care always to keep ourselves, by suitable establishments, on a +respectable defensive posture, we may safely trust to temporary +alliances for extraordinary emergencies." + +=The Campaign of 1796--Adams Elected.=--On hearing of the retirement of +Washington, the Anti-Federalists cast off all restraints. In honor of +France and in opposition to what they were pleased to call the +monarchical tendencies of the Federalists, they boldly assumed the name +"Republican"; the term "Democrat," then applied only to obscure and +despised radicals, had not come into general use. They selected +Jefferson as their candidate for President against John Adams, the +Federalist nominee, and carried on such a spirited campaign that they +came within four votes of electing him. + +The successful candidate, Adams, was not fitted by training or opinion +for conciliating a determined opposition. He was a reserved and studious +man. He was neither a good speaker nor a skillful negotiator. In one of +his books he had declared himself in favor of "government by an +aristocracy of talents and wealth"--an offense which the Republicans +never forgave. While John Marshall found him "a sensible, plain, candid, +good-tempered man," Jefferson could see in him nothing but a "monocrat" +and "Anglo-man." Had it not been for the conduct of the French +government, Adams would hardly have enjoyed a moment's genuine +popularity during his administration. + +=The Quarrel with France.=--The French Directory, the executive +department established under the constitution of 1795, managed, however, +to stir the anger of Republicans and Federalists alike. It regarded the +Jay treaty as a rebuke to France and a flagrant violation of obligations +solemnly registered in the treaty of 1778. Accordingly it refused to +receive the American minister, treated him in a humiliating way, and +finally told him to leave the country. Overlooking this affront in his +anxiety to maintain peace, Adams dispatched to France a commission of +eminent men with instructions to reach an understanding with the French +Republic. On their arrival, they were chagrined to find, instead of a +decent reception, an indirect demand for an apology respecting the past +conduct of the American government, a payment in cash, and an annual +tribute as the price of continued friendship. When the news of this +affair reached President Adams, he promptly laid it before Congress, +referring to the Frenchmen who had made the demands as "Mr. X, Mr. Y, +and Mr. Z." + +This insult, coupled with the fact that French privateers, like the +British, were preying upon American commerce, enraged even the +Republicans who had been loudest in the profession of their French +sympathies. They forgot their wrath over the Jay treaty and joined with +the Federalists in shouting: "Millions for defense, not a cent for +tribute!" Preparations for war were made on every hand. Washington was +once more called from Mount Vernon to take his old position at the head +of the army. Indeed, fighting actually began upon the high seas and went +on without a formal declaration of war until the year 1800. By that time +the Directory had been overthrown. A treaty was readily made with +Napoleon, the First Consul, who was beginning his remarkable career as +chief of the French Republic, soon to be turned into an empire. + +=Alien and Sedition Laws.=--Flushed with success, the Federalists +determined, if possible, to put an end to radical French influence in +America and to silence Republican opposition. They therefore passed two +drastic laws in the summer of 1798: the Alien and Sedition Acts. + +The first of these measures empowered the President to expel from the +country or to imprison any alien whom he regarded as "dangerous" or "had +reasonable grounds to suspect" of "any treasonable or secret +machinations against the government." + +The second of the measures, the Sedition Act, penalized not only those +who attempted to stir up unlawful combinations against the government +but also every one who wrote, uttered, or published "any false, +scandalous, and malicious writing ... against the government of the +United States or either House of Congress, or the President of the +United States, with intent to defame said government ... or to bring +them or either of them into contempt or disrepute." This measure was +hurried through Congress in spite of the opposition and the clear +provision in the Constitution that Congress shall make no law abridging +the freedom of speech or of the press. Even many Federalists feared the +consequences of the action. Hamilton was alarmed when he read the bill, +exclaiming: "Let us not establish a tyranny. Energy is a very different +thing from violence." John Marshall told his friends in Virginia that, +had he been in Congress, he would have opposed the two bills because he +thought them "useless" and "calculated to create unnecessary discontents +and jealousies." + +The Alien law was not enforced; but it gave great offense to the Irish +and French whose activities against the American government's policy +respecting Great Britain put them in danger of prison. The Sedition law, +on the other hand, was vigorously applied. Several editors of Republican +newspapers soon found themselves in jail or broken by ruinous fines for +their caustic criticisms of the Federalist President and his policies. +Bystanders at political meetings, who uttered sentiments which, though +ungenerous and severe, seem harmless enough now, were hurried before +Federalist judges and promptly fined and imprisoned. Although the +prosecutions were not numerous, they aroused a keen resentment. The +Republicans were convinced that their political opponents, having +saddled upon the country Hamilton's fiscal system and the British +treaty, were bent on silencing all censure. The measures therefore had +exactly the opposite effect from that which their authors intended. +Instead of helping the Federalist party, they made criticism of it more +bitter than ever. + +=The Kentucky and Virginia Resolutions.=--Jefferson was quick to take +advantage of the discontent. He drafted a set of resolutions declaring +the Sedition law null and void, as violating the federal Constitution. +His resolutions were passed by the Kentucky legislature late in 1798, +signed by the governor, and transmitted to the other states for their +consideration. Though receiving unfavorable replies from a number of +Northern states, Kentucky the following year reaffirmed its position and +declared that the nullification of all unconstitutional acts of Congress +was the rightful remedy to be used by the states in the redress of +grievances. It thus defied the federal government and announced a +doctrine hostile to nationality and fraught with terrible meaning for +the future. In the neighboring state of Virginia, Madison led a movement +against the Alien and Sedition laws. He induced the legislature to pass +resolutions condemning the acts as unconstitutional and calling upon the +other states to take proper means to preserve their rights and the +rights of the people. + +=The Republican Triumph in 1800.=--Thus the way was prepared for the +election of 1800. The Republicans left no stone unturned in their +efforts to place on the Federalist candidate, President Adams, all the +odium of the Alien and Sedition laws, in addition to responsibility for +approving Hamilton's measures and policies. The Federalists, divided in +councils and cold in their affection for Adams, made a poor campaign. +They tried to discredit their opponents with epithets of "Jacobins" and +"Anarchists"--terms which had been weakened by excessive use. When the +vote was counted, it was found that Adams had been defeated; while the +Republicans had carried the entire South and New York also and secured +eight of the fifteen electoral votes cast by Pennsylvania. "Our beloved +Adams will now close his bright career," lamented a Federalist +newspaper. "Sons of faction, demagogues and high priests of anarchy, now +you have cause to triumph!" + +[Illustration: _An old cartoon_ + +A QUARREL BETWEEN A FEDERALIST AND A REPUBLICAN IN THE HOUSE OF +REPRESENTATIVES] + +Jefferson's election, however, was still uncertain. By a curious +provision in the Constitution, presidential electors were required to +vote for two persons without indicating which office each was to fill, +the one receiving the highest number of votes to be President and the +candidate standing next to be Vice President. It so happened that Aaron +Burr, the Republican candidate for Vice President, had received the same +number of votes as Jefferson; as neither had a majority the election was +thrown into the House of Representatives, where the Federalists held the +balance of power. Although it was well known that Burr was not even a +candidate for President, his friends and many Federalists began +intriguing for his election to that high office. Had it not been for the +vigorous action of Hamilton the prize might have been snatched out of +Jefferson's hands. Not until the thirty-sixth ballot on February 17, +1801, was the great issue decided in his favor.[2] + + +=References= + +J.S. Bassett, _The Federalist System_ (American Nation Series). + +C.A. Beard, _Economic Origins of Jeffersonian Democracy_. + +H. Lodge, _Alexander Hamilton_. + +J.T. Morse, _Thomas Jefferson_. + + +=Questions= + +1. Who were the leaders in the first administration under the +Constitution? + +2. What step was taken to appease the opposition? + +3. Enumerate Hamilton's great measures and explain each in detail. + +4. Show the connection between the parts of Hamilton's system. + +5. Contrast the general political views of Hamilton and Jefferson. + +6. What were the important results of the "peaceful" French Revolution +(1789-92)? + +7. Explain the interaction of opinion between France and the United +States. + +8. How did the "Reign of Terror" change American opinion? + +9. What was the Burke-Paine controversy? + +10. Show how the war in Europe affected American commerce and involved +America with England and France. + +11. What were American policies with regard to each of those countries? + +12. What was the outcome of the Alien and Sedition Acts? + + +=Research Topics= + +=Early Federal Legislation.=--Coman, _Industrial History of the United +States_, pp. 133-156; Elson, _History of the United States_, pp. +341-348. + +=Hamilton's Report on Public Credit.=--Macdonald, _Documentary Source +Book_, pp. 233-243. + +=The French Revolution.=--Robinson and Beard, _Development of Modern +Europe_, Vol. I, pp. 224-282; Elson, pp. 351-354. + +=The Burke-Paine Controversy.=--Make an analysis of Burke's _Reflections +on the French Revolution_ and Paine's _Rights of Man_. + +=The Alien and Sedition Acts.=--Macdonald, _Documentary Source Book_, +pp. 259-267; Elson, pp. 367-375. + +=Kentucky and Virginia Resolutions.=--Macdonald, pp. 267-278. + +=Source Studies.=--Materials in Hart, _American History Told by +Contemporaries_, Vol. III, pp. 255-343. + +=Biographical Studies.=--Alexander Hamilton, John Adams, Thomas +Jefferson, and Albert Gallatin. + +=The Twelfth Amendment.=--Contrast the provision in the original +Constitution with the terms of the Amendment. _See_ Appendix. + +FOOTNOTES: + +[1] North Carolina ratified in November, 1789, and Rhode Island in May, +1790. + +[2] To prevent a repetition of such an unfortunate affair, the twelfth +amendment of the Constitution was adopted in 1804, changing slightly the +method of electing the President. + + + + +CHAPTER IX + +THE JEFFERSONIAN REPUBLICANS IN POWER + + +REPUBLICAN PRINCIPLES AND POLICIES + +=Opposition to Strong Central Government.=--Cherishing especially the +agricultural interest, as Jefferson said, the Republicans were in the +beginning provincial in their concern and outlook. Their attachment to +America was, certainly, as strong as that of Hamilton; but they regarded +the state, rather than the national government, as the proper center of +power and affection. Indeed, a large part of the rank and file had been +among the opponents of the Constitution in the days of its adoption. +Jefferson had entertained doubts about it and Monroe, destined to be the +fifth President, had been one of the bitter foes of ratification. The +former went so far in the direction of local autonomy that he exalted +the state above the nation in the Kentucky resolutions of 1798, +declaring the Constitution to be a mere compact and the states competent +to interpret and nullify federal law. This was provincialism with a +vengeance. "It is jealousy, not confidence, which prescribes limited +constitutions," wrote Jefferson for the Kentucky legislature. Jealousy +of the national government, not confidence in it--this is the ideal that +reflected the provincial and agricultural interest. + +=Republican Simplicity.=--Every act of the Jeffersonian party during its +early days of power was in accord with the ideals of government which it +professed. It had opposed all pomp and ceremony, calculated to give +weight and dignity to the chief executive of the nation, as symbols of +monarchy and high prerogative. Appropriately, therefore, Jefferson's +inauguration on March 4, 1801, the first at the new capital at +Washington, was marked by extreme simplicity. In keeping with this +procedure he quit the practice, followed by Washington and Adams, of +reading presidential addresses to Congress in joint assembly and adopted +in its stead the plan of sending his messages in writing--a custom that +was continued unbroken until 1913 when President Wilson returned to the +example set by the first chief magistrate. + +=Republican Measures.=--The Republicans had complained of a great +national debt as the source of a dangerous "money power," giving +strength to the federal government; accordingly they began to pay it off +as rapidly as possible. They had held commerce in low esteem and looked +upon a large navy as a mere device to protect it; consequently they +reduced the number of warships. They had objected to excise taxes, +particularly on whisky; these they quickly abolished, to the intense +satisfaction of the farmers. They had protested against the heavy cost +of the federal government; they reduced expenses by discharging hundreds +of men from the army and abolishing many offices. + +They had savagely criticized the Sedition law and Jefferson refused to +enforce it. They had been deeply offended by the assault on freedom of +speech and press and they promptly impeached Samuel Chase, a justice of +the Supreme Court, who had been especially severe in his attacks upon +offenders under the Sedition Act. Their failure to convict Justice Chase +by a narrow margin was due to no lack of zeal on their part but to the +Federalist strength in the Senate where the trial was held. They had +regarded the appointment of a large number of federal judges during the +last hours of Adams' administration as an attempt to intrench +Federalists in the judiciary and to enlarge the sphere of the national +government. Accordingly, they at once repealed the act creating the new +judgeships, thus depriving the "midnight appointees" of their posts. +They had considered the federal offices, civil and military, as sources +of great strength to the Federalists and Jefferson, though committed to +the principle that offices should be open to all and distributed +according to merit, was careful to fill most of the vacancies as they +occurred with trusted Republicans. To his credit, however, it must be +said that he did not make wholesale removals to find room for party +workers. + +The Republicans thus hewed to the line of their general policy of +restricting the weight, dignity, and activity of the national +government. Yet there were no Republicans, as the Federalists asserted, +prepared to urge serious modifications in the Constitution. "If there be +any among us who wish to dissolve this union or to change its republican +form," wrote Jefferson in his first inaugural, "let them stand +undisturbed as monuments of the safety with which error of opinion may +be tolerated where reason is left free to combat it." After reciting the +fortunate circumstances of climate, soil, and isolation which made the +future of America so full of promise, Jefferson concluded: "A wise and +frugal government which shall restrain men from injuring one another, +shall leave them otherwise free to regulate their own pursuits of +industry and improvement and shall not take from the mouth of labour the +bread it has earned. This is the sum of good government; and this is +necessary to close the circle of our felicities." + +In all this the Republicans had not reckoned with destiny. In a few +short years that lay ahead it was their fate to double the territory of +the country, making inevitable a continental nation; to give the +Constitution a generous interpretation that shocked many a Federalist; +to wage war on behalf of American commerce; to reestablish the hated +United States Bank; to enact a high protective tariff; to see their +Federalist opponents in their turn discredited as nullifiers and +provincials; to announce high national doctrines in foreign affairs; and +to behold the Constitution exalted and defended against the pretensions +of states by a son of old Virginia, John Marshall, Chief Justice of the +Supreme Court of the United States. + + +THE REPUBLICANS AND THE GREAT WEST + +=Expansion and Land Hunger.=--The first of the great measures which +drove the Republicans out upon this new national course--the purchase +of the Louisiana territory--was the product of circumstances rather than +of their deliberate choosing. It was not the lack of land for his +cherished farmers that led Jefferson to add such an immense domain to +the original possessions of the United States. In the Northwest +territory, now embracing Ohio, Indiana, Illinois, Michigan, Wisconsin, +and a portion of Minnesota, settlements were mainly confined to the +north bank of the Ohio River. To the south, in Kentucky and Tennessee, +where there were more than one hundred thousand white people who had +pushed over the mountains from Virginia and the Carolinas, there were +still wide reaches of untilled soil. The Alabama and Mississippi regions +were vast Indian frontiers of the state of Georgia, unsettled and almost +unexplored. Even to the wildest imagination there seemed to be territory +enough to satisfy the land hunger of the American people for a century +to come. + +=The Significance of the Mississippi River.=--At all events the East, +then the center of power, saw no good reason for expansion. The planters +of the Carolinas, the manufacturers of Pennsylvania, the importers of +New York, the shipbuilders of New England, looking to the seaboard and +to Europe for trade, refinements, and sometimes their ideas of +government, were slow to appreciate the place of the West in national +economy. The better educated the Easterners were, the less, it seems, +they comprehended the destiny of the nation. Sons of Federalist fathers +at Williams College, after a long debate decided by a vote of fifteen to +one that the purchase of Louisiana was undesirable. + +On the other hand, the pioneers of Kentucky, Ohio, and Tennessee, +unlearned in books, saw with their own eyes the resources of the +wilderness. Many of them had been across the Mississippi and had beheld +the rich lands awaiting the plow of the white man. Down the great river +they floated their wheat, corn, and bacon to ocean-going ships bound for +the ports of the seaboard or for Europe. The land journeys over the +mountain barriers with bulky farm produce, they knew from experience, +were almost impossible, and costly at best. Nails, bolts of cloth, tea, +and coffee could go or come that way, but not corn and bacon. A free +outlet to the sea by the Mississippi was as essential to the pioneers of +the Kentucky region as the harbor of Boston to the merchant princes of +that metropolis. + +=Louisiana under Spanish Rule.=--For this reason they watched with deep +solicitude the fortunes of the Spanish king to whom, at the close of the +Seven Years' War, had fallen the Louisiana territory stretching from New +Orleans to the Rocky Mountains. While he controlled the mouth of the +Mississippi there was little to fear, for he had neither the army nor +the navy necessary to resist any invasion of American trade. Moreover, +Washington had been able, by the exercise of great tact, to secure from +Spain in 1795 a trading privilege through New Orleans which satisfied +the present requirements of the frontiersmen even if it did not allay +their fears for the future. So things stood when a swift succession of +events altered the whole situation. + +=Louisiana Transferred to France.=--In July, 1802, a royal order from +Spain instructed the officials at New Orleans to close the port to +American produce. About the same time a disturbing rumor, long current, +was confirmed--Napoleon had coerced Spain into returning Louisiana to +France by a secret treaty signed in 1800. "The scalers of the Alps and +conquerors of Venice" now looked across the sea for new scenes of +adventure. The West was ablaze with excitement. A call for war ran +through the frontier; expeditions were organized to prevent the landing +of the French; and petitions for instant action flooded in upon +Jefferson. + +=Jefferson Sees the Danger.=--Jefferson, the friend of France and sworn +enemy of England, compelled to choose in the interest of America, never +winced. "The cession of Louisiana and the Floridas by Spain to France," +he wrote to Livingston, the American minister in Paris, "works sorely on +the United States. It completely reverses all the political relations of +the United States and will form a new epoch in our political course.... +There is on the globe one single spot, the possessor of which is our +natural and habitual enemy. It is New Orleans through which the produce +of three-eighths of our territory must pass to market.... France, +placing herself in that door, assumes to us an attitude of defiance. +Spain might have retained it quietly for years. Her pacific +dispositions, her feeble state would induce her to increase our +facilities there.... Not so can it ever be in the hands of France.... +The day that France takes possession of New Orleans fixes the sentence +which is to restrain her forever within her low water mark.... It seals +the union of the two nations who in conjunction can maintain exclusive +possession of the ocean. From that moment we must marry ourselves to the +British fleet and nation.... This is not a state of things we seek or +desire. It is one which this measure, if adopted by France, forces on us +as necessarily as any other cause by the laws of nature brings on its +necessary effect." + +=Louisiana Purchased.=--Acting on this belief, but apparently seeing +only the Mississippi outlet at stake, Jefferson sent his friend, James +Monroe, to France with the power to buy New Orleans and West Florida. +Before Monroe arrived, the regular minister, Livingston, had already +convinced Napoleon that it would be well to sell territory which might +be wrested from him at any moment by the British sea power, especially +as the war, temporarily stopped by the peace of Amiens, was once more +raging in Europe. Wise as he was in his day, Livingston had at first no +thought of buying the whole Louisiana country. He was simply dazed when +Napoleon offered to sell the entire domain and get rid of the business +altogether. Though staggered by the proposal, he and Monroe decided to +accept. On April 30, they signed the treaty of cession, agreeing to pay +$11,250,000 in six per cent bonds and to discharge certain debts due +French citizens, making in all approximately fifteen millions. Spain +protested, Napoleon's brother fumed, French newspapers objected; but the +deed was done. + +=Jefferson and His Constitutional Scruples.=--When the news of this +extraordinary event reached the United States, the people were filled +with astonishment, and no one was more surprised than Jefferson himself. +He had thought of buying New Orleans and West Florida for a small sum, +and now a vast domain had been dumped into the lap of the nation. He was +puzzled. On looking into the Constitution he found not a line +authorizing the purchase of more territory and so he drafted an +amendment declaring "Louisiana, as ceded by France,--a part of the +United States." He had belabored the Federalists for piling up a big +national debt and he could hardly endure the thought of issuing more +bonds himself. + +In the midst of his doubts came the news that Napoleon might withdraw +from the bargain. Thoroughly alarmed by that, Jefferson pressed the +Senate for a ratification of the treaty. He still clung to his original +idea that the Constitution did not warrant the purchase; but he lamely +concluded: "If our friends shall think differently, I shall certainly +acquiesce with satisfaction; confident that the good sense of our +country will correct the evil of construction when it shall produce ill +effects." Thus the stanch advocate of "strict interpretation" cut loose +from his own doctrine and intrusted the construction of the Constitution +to "the good sense" of his countrymen. + +=The Treaty Ratified.=--This unusual transaction, so favorable to the +West, aroused the ire of the seaboard Federalists. Some denounced it as +unconstitutional, easily forgetting Hamilton's masterly defense of the +bank, also not mentioned in the Constitution. Others urged that, if "the +howling wilderness" ever should be settled, it would turn against the +East, form new commercial connections, and escape from federal control. +Still others protested that the purchase would lead inevitably to the +dominance of a "hotch potch of wild men from the Far West." Federalists, +who thought "the broad back of America" could readily bear Hamilton's +consolidated debt, now went into agonies over a bond issue of less than +one-sixth of that amount. But in vain. Jefferson's party with a high +hand carried the day. The Senate, after hearing the Federalist protest, +ratified the treaty. In December, 1803, the French flag was hauled down +from the old government buildings in New Orleans and the Stars and +Stripes were hoisted as a sign that the land of Coronado, De Soto, +Marquette, and La Salle had passed forever to the United States. + +[Illustration: THE UNITED STATES IN 1805] + +By a single stroke, the original territory of the United States was more +than doubled. While the boundaries of the purchase were uncertain, it is +safe to say that the Louisiana territory included what is now Arkansas, +Missouri, Iowa, Oklahoma, Kansas, Nebraska, South Dakota, and large +portions of Louisiana, Minnesota, North Dakota, Colorado, Montana, and +Wyoming. The farm lands that the friends of "a little America" on the +seacoast declared a hopeless wilderness were, within a hundred years, +fully occupied and valued at nearly seven billion dollars--almost five +hundred times the price paid to Napoleon. + +=Western Explorations.=--Having taken the fateful step, Jefferson wisely +began to make the most of it. He prepared for the opening of the new +country by sending the Lewis and Clark expedition to explore it, +discover its resources, and lay out an overland route through the +Missouri Valley and across the Great Divide to the Pacific. The story of +this mighty exploit, which began in the spring of 1804 and ended in the +autumn of 1806, was set down with skill and pains in the journal of +Lewis and Clark; when published even in a short form, it invited the +forward-looking men of the East to take thought about the western +empire. At the same time Zebulon Pike, in a series of journeys, explored +the sources of the Mississippi River and penetrated the Spanish +territories of the far Southwest. Thus scouts and pioneers continued the +work of diplomats. + + +THE REPUBLICAN WAR FOR COMMERCIAL INDEPENDENCE + +=The English and French Blockades.=--In addition to bringing Louisiana +to the United States, the reopening of the European War in 1803, after a +short lull, renewed in an acute form the commercial difficulties that +had plagued the country all during the administrations of Washington and +Adams. The Republicans were now plunged into the hornets' nest. The +party whose ardent spirits had burned Jay in effigy, stoned Hamilton for +defending his treaty, jeered Washington's proclamation of neutrality, +and spoken bitterly of "timid traders," could no longer take refuge in +criticism. It had to act. + +Its troubles took a serious turn in 1806. England, in a determined +effort to bring France to her knees by starvation, declared the coast of +Europe blockaded from Brest to the mouth of the Elbe River. Napoleon +retaliated by his Berlin Decree of November, 1806, blockading the +British Isles--a measure terrifying to American ship owners whose +vessels were liable to seizure by any French rover, though Napoleon had +no navy to make good his proclamation. Great Britain countered with a +still more irritating decree--the Orders in Council of 1807. It modified +its blockade, but in so doing merely authorized American ships not +carrying munitions of war to complete their voyage to the Continent, on +condition of their stopping at a British port, securing a license, and +paying a tax. This, responded Napoleon, was the height of insolence, and +he denounced it as a gross violation of international law. He then +closed the circle of American troubles by issuing his Milan Decree of +December, 1807. This order declared that any ship which complied with +the British rules would be subject to seizure and confiscation by French +authorities. + +=The Impressment of Seamen.=--That was not all. Great Britain, in dire +need of men for her navy, adopted the practice of stopping American +ships, searching them, and carrying away British-born sailors found on +board. British sailors were so badly treated, so cruelly flogged for +trivial causes, and so meanly fed that they fled in crowds to the +American marine. In many cases it was difficult to tell whether seamen +were English or American. They spoke the same language, so that language +was no test. Rovers on the deep and stragglers in the ports of both +countries, they frequently had no papers to show their nativity. +Moreover, Great Britain held to the old rule--"Once an Englishman, +always an Englishman"--a doctrine rejected by the United States in +favor of the principle that a man could choose the nation to which he +would give allegiance. British sea captains, sometimes by mistake, and +often enough with reckless indifference, carried away into servitude in +their own navy genuine American citizens. The process itself, even when +executed with all the civilities of law, was painful enough, for it +meant that American ships were forced to "come to," and compelled to +rest submissively under British guns until the searching party had pried +into records, questioned seamen, seized and handcuffed victims. Saints +could not have done this work without raising angry passions, and only +saints could have endured it with patience and fortitude. + +Had the enactment of the scenes been confined to the high seas and +knowledge of them to rumors and newspaper stories, American resentment +might not have been so intense; but many a search and seizure was made +in sight of land. British and French vessels patrolled the coasts, +firing on one another and chasing one another in American waters within +the three-mile limit. When, in the summer of 1807, the American frigate +_Chesapeake_ refused to surrender men alleged to be deserters from King +George's navy, the British warship _Leopard_ opened fire, killing three +men and wounding eighteen more--an act which even the British ministry +could hardly excuse. If the French were less frequently the offenders, +it was not because of their tenderness about American rights but because +so few of their ships escaped the hawk-eyed British navy to operate in +American waters. + +=The Losses in American Commerce.=--This high-handed conduct on the part +of European belligerents was very injurious to American trade. By their +enterprise, American shippers had become the foremost carriers on the +Atlantic Ocean. In a decade they had doubled the tonnage of American +merchant ships under the American flag, taking the place of the French +marine when Britain swept that from the seas, and supplying Britain with +the sinews of war for the contest with the Napoleonic empire. The +American shipping engaged in foreign trade embraced 363,110 tons in +1791; 669,921 tons in 1800; and almost 1,000,000 tons in 1810. Such was +the enterprise attacked by the British and French decrees. American +ships bound for Great Britain were liable to be captured by French +privateers which, in spite of the disasters of the Nile and Trafalgar, +ranged the seas. American ships destined for the Continent, if they +failed to stop at British ports and pay tribute, were in great danger of +capture by the sleepless British navy and its swarm of auxiliaries. +American sea captains who, in fear of British vengeance, heeded the +Orders in Council and paid the tax were almost certain to fall a prey to +French vengeance, for the French were vigorous in executing the Milan +Decree. + +=Jefferson's Policy.=--The President's dilemma was distressing. Both the +belligerents in Europe were guilty of depredations on American commerce. +War on both of them was out of the question. War on France was +impossible because she had no territory on this side of the water which +could be reached by American troops and her naval forces had been +shattered at the battles of the Nile and Trafalgar. War on Great +Britain, a power which Jefferson's followers feared and distrusted, was +possible but not inviting. Jefferson shrank from it. A man of peace, he +disliked war's brazen clamor; a man of kindly spirit, he was startled at +the death and destruction which it brought in its train. So for the +eight years Jefferson steered an even course, suggesting measure after +measure with a view to avoiding bloodshed. He sent, it is true, +Commodore Preble in 1803 to punish Mediterranean pirates preying upon +American commerce; but a great war he evaded with passionate +earnestness, trying in its place every other expedient to protect +American rights. + +=The Embargo and Non-intercourse Acts.=--In 1806, Congress passed and +Jefferson approved a non-importation act closing American ports to +certain products from British dominions--a measure intended as a club +over the British government's head. This law, failing in its purpose, +Jefferson proposed and Congress adopted in December, 1807, the Embargo +Act forbidding all vessels to leave American harbors for foreign ports. +France and England were to be brought to terms by cutting off their +supplies. + +The result of the embargo was pathetic. England and France refused to +give up search and seizure. American ship owners who, lured by huge +profits, had formerly been willing to take the risk were now restrained +by law to their home ports. Every section suffered. The South and West +found their markets for cotton, rice, tobacco, corn, and bacon +curtailed. Thus they learned by bitter experience the national +significance of commerce. Ship masters, ship builders, longshoremen, and +sailors were thrown out of employment while the prices of foreign goods +doubled. Those who obeyed the law were ruined; violators of the law +smuggled goods into Canada and Florida for shipment abroad. + +Jefferson's friends accepted the medicine with a wry face as the only +alternative to supine submission or open war. His opponents, without +offering any solution of their own, denounced it as a contemptible plan +that brought neither relief nor honor. Beset by the clamor that arose on +all sides, Congress, in the closing days of Jefferson's administration, +repealed the Embargo law and substituted a Non-intercourse act +forbidding trade with England and France while permitting it with other +countries--a measure equally futile in staying the depredations on +American shipping. + +=Jefferson Retires in Favor of Madison.=--Jefferson, exhausted by +endless wrangling and wounded, as Washington had been, by savage +criticism, welcomed March 4, 1809. His friends urged him to "stay by the +ship" and accept a third term. He declined, saying that election for +life might result from repeated reelection. In following Washington's +course and defending it on principle, he set an example to all his +successors, making the "third term doctrine" a part of American +unwritten law. + +His intimate friend, James Madison, to whom he turned over the burdens +of his high office was, like himself, a man of peace. Madison had been a +leader since the days of the Revolution, but in legislative halls and +council chambers, not on the field of battle. Small in stature, +sensitive in feelings, studious in habits, he was no man for the rough +and tumble of practical politics. He had taken a prominent and +distinguished part in the framing and the adoption of the Constitution. +He had served in the first Congress as a friend of Hamilton's measures. +Later he attached himself to Jefferson's fortunes and served for eight +years as his first counselor, the Secretary of State. The principles of +the Constitution, which he had helped to make and interpret, he was now +as President called upon to apply in one of the most perplexing moments +in all American history. In keeping with his own traditions and +following in the footsteps of Jefferson, he vainly tried to solve the +foreign problem by negotiation. + +=The Trend of Events.=--Whatever difficulties Madison had in making up +his mind on war and peace were settled by events beyond his own control. +In the spring of 1811, a British frigate held up an American ship near +the harbor of New York and impressed a seaman alleged to be an American +citizen. Burning with resentment, the captain of the _President_, an +American warship, acting under orders, poured several broadsides into +the _Little Belt_, a British sloop, suspected of being the guilty party. +The British also encouraged the Indian chief Tecumseh, who welded +together the Indians of the Northwest under British protection and gave +signs of restlessness presaging a revolt. This sent a note of alarm +along the frontier that was not checked even when, in November, +Tecumseh's men were badly beaten at Tippecanoe by William Henry +Harrison. The Indians stood in the way of the advancing frontier, and it +seemed to the pioneers that, without support from the British in Canada, +the Red Men would soon be subdued. + +=Clay and Calhoun.=--While events were moving swiftly and rumors were +flying thick and fast, the mastery of the government passed from the +uncertain hands of Madison to a party of ardent young men in Congress, +dubbed "Young Republicans," under the leadership of two members destined +to be mighty figures in American history: Henry Clay of Kentucky and +John C. Calhoun of South Carolina. The former contended, in a flair of +folly, that "the militia of Kentucky alone are competent to place +Montreal and Upper Canada at your feet." The latter with a light heart +spoke of conquering Canada in a four weeks' campaign. "It must not be +inferred," says Channing, "that in advocating conquest, the Westerners +were actuated merely by desire for land; they welcomed war because they + +thought it would be the easiest way to abate Indian troubles. The +savages were supported by the fur-trading interests that centred at +Quebec and London.... The Southerners on their part wished for Florida +and they thought that the conquest of Canada would obviate some Northern +opposition to this acquisition of slave territory." While Clay and +Calhoun, spokesmen of the West and South, were not unmindful of what +Napoleon had done to American commerce, they knew that their followers +still remembered with deep gratitude the aid of the French in the war +for independence and that the embers of the old hatred for George III, +still on the throne, could be readily blown into flame. + +=Madison Accepts War as Inevitable.=--The conduct of the British +ministers with whom Madison had to deal did little to encourage him in +adhering to the policy of "watchful waiting." One of them, a high Tory, +believed that all Americans were alike "except that a few are less +knaves than others" and his methods were colored by his belief. On the +recall of this minister the British government selected another no less +high and mighty in his principles and opinions. So Madison became +thoroughly discouraged about the outcome of pacific measures. When the +pressure from Congress upon him became too heavy, he gave way, signing +on June 18, 1812, the declaration of war on Great Britain. In +proclaiming hostilities, the administration set forth the causes which +justified the declaration; namely, the British had been encouraging the +Indians to attack American citizens on the frontier; they had ruined +American trade by blockades; they had insulted the American flag by +stopping and searching our ships; they had illegally seized American +sailors and driven them into the British navy. + +=The Course of the War.=--The war lasted for nearly three years without +bringing victory to either side. The surrender of Detroit by General +Hull to the British and the failure of the American invasion of Canada +were offset by Perry's victory on Lake Erie and a decisive blow +administered to British designs for an invasion of New York by way of +Plattsburgh. The triumph of Jackson at New Orleans helped to atone for +the humiliation suffered in the burning of the Capitol by the British. +The stirring deeds of the _Constitution_, the _United States_, and the +_Argus_ on the seas, the heroic death of Lawrence and the victories of a +hundred privateers furnished consolation for those who suffered from the +iron blockade finally established by the British government when it came +to appreciate the gravity of the situation. While men love the annals of +the sea, they will turn to the running battles, the narrow escapes, and +the reckless daring of American sailors in that naval contest with Great +Britain. + +All this was exciting but it was inconclusive. In fact, never was a +government less prepared than was that of the United States in 1812. It +had neither the disciplined troops, the ships of war, nor the supplies +required by the magnitude of the military task. It was fortune that +favored the American cause. Great Britain, harassed, worn, and +financially embarrassed by nearly twenty years of fighting in Europe, +was in no mood to gather her forces for a titanic effort in America even +after Napoleon was overthrown and sent into exile at Elba in the spring +of 1814. War clouds still hung on the European horizon and the conflict +temporarily halted did again break out. To be rid of American anxieties +and free for European eventualities, England was ready to settle with +the United States, especially as that could be done without conceding +anything or surrendering any claims. + +=The Treaty of Peace.=--Both countries were in truth sick of a war that +offered neither glory nor profit. Having indulged in the usual +diplomatic skirmishing, they sent representatives to Ghent to discuss +terms of peace. After long negotiations an agreement was reached on +Christmas eve, 1814, a few days before Jackson's victory at New Orleans. +When the treaty reached America the people were surprised to find that +it said nothing about the seizure of American sailors, the destruction +of American trade, the searching of American ships, or the support of +Indians on the frontier. Nevertheless, we are told, the people "passed +from gloom to glory" when the news of peace arrived. The bells were +rung; schools were closed; flags were displayed; and many a rousing +toast was drunk in tavern and private home. The rejoicing could +continue. With Napoleon definitely beaten at Waterloo in June, 1815, +Great Britain had no need to impress sailors, search ships, and +confiscate American goods bound to the Continent. Once more the terrible +sea power sank into the background and the ocean was again white with +the sails of merchantmen. + + +THE REPUBLICANS NATIONALIZED + +=The Federalists Discredited.=--By a strange turn of fortune's wheel, +the party of Hamilton, Washington, Adams, the party of the grand nation, +became the party of provincialism and nullification. New England, +finding its shipping interests crippled in the European conflict and +then penalized by embargoes, opposed the declaration of war on Great +Britain, which meant the completion of the ruin already begun. In the +course of the struggle, the Federalist leaders came perilously near to +treason in their efforts to hamper the government of the United States; +and in their desperation they fell back upon the doctrine of +nullification so recently condemned by them when it came from Kentucky. +The Senate of Massachusetts, while the war was in progress, resolved +that it was waged "without justifiable cause," and refused to approve +military and naval projects not connected with "the defense of our +seacoast and soil." A Boston newspaper declared that the union was +nothing but a treaty among sovereign states, that states could decide +for themselves the question of obeying federal law, and that armed +resistance under the banner of a state would not be rebellion or +treason. The general assembly of Connecticut reminded the administration +at Washington that "the state of Connecticut is a free, sovereign, and +independent state." Gouverneur Morris, a member of the convention which +had drafted the Constitution, suggested the holding of another +conference to consider whether the Northern states should remain in the +union. + +[Illustration: _From an old cartoon_ + +NEW ENGLAND JUMPING INTO THE HANDS OF GEORGE III] + +In October, 1814, a convention of delegates from Connecticut, +Massachusetts, Rhode Island, and certain counties of New Hampshire and +Vermont was held at Hartford, on the call of Massachusetts. The counsels +of the extremists were rejected but the convention solemnly went on +record to the effect that acts of Congress in violation of the +Constitution are void; that in cases of deliberate, dangerous, and +palpable infractions the state is duty bound to interpose its authority +for the protection of its citizens; and that when emergencies occur the +states must be their own judges and execute their own decisions. Thus +New England answered the challenge of Calhoun and Clay. Fortunately its +actions were not as rash as its words. The Hartford convention merely +proposed certain amendments to the Constitution and adjourned. At the +close of the war, its proposals vanished harmlessly; but the men who +made them were hopelessly discredited. + +=The Second United States Bank.=--In driving the Federalists towards +nullification and waging a national war themselves, the Republicans lost +all their old taint of provincialism. Moreover, in turning to measures +of reconstruction called forth by the war, they resorted to the national +devices of the Federalists. In 1816, they chartered for a period of +twenty years a second United States Bank--the institution which +Jefferson and Madison once had condemned as unsound and +unconstitutional. The Constitution remained unchanged; times and +circumstances had changed. Calhoun dismissed the vexed question of +constitutionality with a scant reference to an ancient dispute, while +Madison set aside his scruples and signed the bill. + +=The Protective Tariff of 1816.=--The Republicans supplemented the Bank +by another Federalist measure--a high protective tariff. Clay viewed it +as the beginning of his "American system" of protection. Calhoun +defended it on national principles. For this sudden reversal of policy +the young Republicans were taunted by some of their older party +colleagues with betraying the "agricultural interest" that Jefferson had +fostered; but Calhoun refused to listen to their criticisms. "When the +seas are open," he said, "the produce of the South may pour anywhere +into the markets of the Old World.... What are the effects of a war with +a maritime power--with England? Our commerce annihilated ... our +agriculture cut off from its accustomed markets, the surplus of the +farmer perishes on his hands.... The recent war fell with peculiar +pressure on the growers of cotton and tobacco and the other great +staples of the country; and the same state of things will recur in the +event of another war unless prevented by the foresight of this body.... +When our manufactures are grown to a certain perfection, as they soon +will be under the fostering care of the government, we shall no longer +experience these evils." With the Republicans nationalized, the +Federalist party, as an organization, disappeared after a crushing +defeat in the presidential campaign of 1816. + +=Monroe and the Florida Purchase.=--To the victor in that political +contest, James Monroe of Virginia, fell two tasks of national +importance, adding to the prestige of the whole country and deepening +the sense of patriotism that weaned men away from mere allegiance to +states. The first of these was the purchase of Florida from Spain. The +acquisition of Louisiana let the Mississippi flow "unvexed to the sea"; +but it left all the states east of the river cut off from the Gulf, +affording them ground for discontent akin to that which had moved the +pioneers of Kentucky to action a generation earlier. The uncertainty as +to the boundaries of Louisiana gave the United States a claim to West +Florida, setting on foot a movement for occupation. The Florida swamps +were a basis for Indian marauders who periodically swept into the +frontier settlements, and hiding places for runaway slaves. Thus the +sanction of international law was given to punitive expeditions into +alien territory. + +The pioneer leaders stood waiting for the signal. It came. President +Monroe, on the occasion of an Indian outbreak, ordered General Jackson +to seize the offenders, in the Floridas, if necessary. The high-spirited +warrior, taking this as a hint that he was to occupy the coveted region, +replied that, if possession was the object of the invasion, he could +occupy the Floridas within sixty days. Without waiting for an answer to +this letter, he launched his expedition, and in the spring of 1818 was +master of the Spanish king's domain to the south. + +There was nothing for the king to do but to make the best of the +inevitable by ceding the Floridas to the United States in return for +five million dollars to be paid to American citizens having claims +against Spain. On Washington's birthday, 1819, the treaty was signed. It +ceded the Floridas to the United States and defined the boundary between +Mexico and the United States by drawing a line from the mouth of the +Sabine River in a northwesterly direction to the Pacific. On this +occasion even Monroe, former opponent of the Constitution, forgot to +inquire whether new territory could be constitutionally acquired and +incorporated into the American union. The Republicans seemed far away +from the days of "strict construction." And Jefferson still lived! + +=The Monroe Doctrine.=--Even more effective in fashioning the national +idea was Monroe's enunciation of the famous doctrine that bears his +name. The occasion was another European crisis. During the Napoleonic +upheaval and the years of dissolution that ensued, the Spanish colonies +in America, following the example set by their English neighbors in +1776, declared their independence. Unable to conquer them alone, the +king of Spain turned for help to the friendly powers of Europe that +looked upon revolution and republics with undisguised horror. + +_The Holy Alliance._--He found them prepared to view his case with +sympathy. Three of them, Austria, Prussia, and Russia, under the +leadership of the Czar, Alexander I, in the autumn of 1815, had entered +into a Holy Alliance to sustain by reciprocal service the autocratic +principle in government. Although the effusive, almost maudlin, language +of the treaty did not express their purpose explicitly, the Alliance was +later regarded as a mere union of monarchs to prevent the rise and +growth of popular government. + +The American people thought their worst fears confirmed when, in 1822, a +conference of delegates from Russia, Austria, Prussia, and France met at +Verona to consider, among other things, revolutions that had just broken +out in Spain and Italy. The spirit of the conference is reflected in the +first article of the agreement reached by the delegates: "The high +contracting powers, being convinced that the system of representative +government is equally incompatible with the monarchical principle and +the maxim of the sovereignty of the people with the divine right, +mutually engage in the most solemn manner to use all their efforts to +put an end to the system of representative government in whatever +country it may exist in Europe and to prevent its being introduced in +those countries where it is not yet known." The Czar, who incidentally +coveted the west coast of North America, proposed to send an army to aid +the king of Spain in his troubles at home, thus preparing the way for +intervention in Spanish America. It was material weakness not want of +spirit, that prevented the grand union of monarchs from making open war +on popular government. + +_The Position of England._--Unfortunately, too, for the Holy Alliance, +England refused to cooperate. English merchants had built up a large +trade with the independent Latin-American colonies and they protested +against the restoration of Spanish sovereignty, which meant a renewal of +Spain's former trade monopoly. Moreover, divine right doctrines had been +laid to rest in England and the representative principle thoroughly +established. Already there were signs of the coming democratic flood +which was soon to carry the first reform bill of 1832, extending the +suffrage, and sweep on to even greater achievements. British statesmen, +therefore, had to be cautious. In such circumstances, instead of +cooperating with the autocrats of Russia, Austria, and Prussia, they +turned to the minister of the United States in London. The British prime +minister, Canning, proposed that the two countries join in declaring +their unwillingness to see the Spanish colonies transferred to any other +power. + +_Jefferson's Advice._--The proposal was rejected; but President Monroe +took up the suggestion with Madison and Jefferson as well as with his +Secretary of State, John Quincy Adams. They favored the plan. Jefferson +said: "One nation, most of all, could disturb us in this pursuit [of +freedom]; she now offers to lead, aid, and accompany us in it. By +acceding to her proposition we detach her from the bands, bring her +mighty weight into the scale of free government and emancipate a +continent at one stroke.... With her on our side we need not fear the +whole world. With her then we should most sedulously cherish a cordial +friendship." + +_Monroe's Statement of the Doctrine._--Acting on the advice of trusted +friends, President Monroe embodied in his message to Congress, on +December 2, 1823, a statement of principles now famous throughout the +world as the Monroe Doctrine. To the autocrats of Europe he announced +that he would regard "any attempt on their part to extend their system +to any portion of this hemisphere as dangerous to our peace and safety." +While he did not propose to interfere with existing colonies dependent +on European powers, he ranged himself squarely on the side of those that +had declared their independence. Any attempt by a European power to +oppress them or control their destiny in any manner he characterized as +"a manifestation of an unfriendly disposition toward the United States." +Referring in another part of his message to a recent claim which the +Czar had made to the Pacific coast, President Monroe warned the Old +World that "the American continents, by the free and independent +condition which they have assumed and maintained, are henceforth not to +be considered as subjects for future colonization by any European +powers." The effect of this declaration was immediate and profound. Men +whose political horizon had been limited to a community or state were +led to consider their nation as a great power among the sovereignties of +the earth, taking its part in shaping their international relations. + +=The Missouri Compromise.=--Respecting one other important measure of +this period, the Republicans also took a broad view of their obligations +under the Constitution; namely, the Missouri Compromise. It is true, +they insisted on the admission of Missouri as a slave state, balanced +against the free state of Maine; but at the same time they assented to +the prohibition of slavery in the Louisiana territory north of the line +36 o 30'. During the debate on the subject an extreme view had been +presented, to the effect that Congress had no constitutional warrant for +abolishing slavery in the territories. The precedent of the Northwest +Ordinance, ratified by Congress in 1789, seemed a conclusive answer from +practice to this contention; but Monroe submitted the issue to his +cabinet, which included Calhoun of South Carolina, Crawford of Georgia, +and Wirt of Virginia, all presumably adherents to the Jeffersonian +principle of strict construction. He received in reply a unanimous +verdict to the effect that Congress did have the power to prohibit +slavery in the territories governed by it. Acting on this advice he +approved, on March 6, 1820, the bill establishing freedom north of the +compromise line. This generous interpretation of the powers of Congress +stood for nearly forty years, until repudiated by the Supreme Court in +the Dred Scott case. + + +THE NATIONAL DECISIONS OF CHIEF JUSTICE MARSHALL + +=John Marshall, the Nationalist.=--The Republicans in the lower ranges +of state politics, who did not catch the grand national style of their +leaders charged with responsibilities in the national field, were +assisted in their education by a Federalist from the Old Dominion, John +Marshall, who, as Chief Justice of the Supreme Court of the United +States from 1801 to 1835, lost no occasion to exalt the Constitution +above the claims of the provinces. No differences of opinion as to his +political views have ever led even his warmest opponents to deny his +superb abilities or his sincere devotion to the national idea. All will +likewise agree that for talents, native and acquired, he was an ornament +to the humble democracy that brought him forth. His whole career was +American. Born on the frontier of Virginia, reared in a log cabin, +granted only the barest rudiments of education, inured to hardship and +rough life, he rose by masterly efforts to the highest judicial honor +America can bestow. + +On him the bitter experience of the Revolution and of later days made a +lasting impression. He was no "summer patriot." He had been a soldier in +the Revolutionary army. He had suffered with Washington at Valley Forge. +He had seen his comrades in arms starving and freezing because the +Continental Congress had neither the power nor the inclination to force +the states to do their full duty. To him the Articles of Confederation +were the symbol of futility. Into the struggle for the formation of the +Constitution and its ratification in Virginia he had thrown himself with +the ardor of a soldier. Later, as a member of Congress, a representative +to France, and Secretary of State, he had aided the Federalists in +establishing the new government. When at length they were driven from +power in the executive and legislative branches of the government, he +was chosen for their last stronghold, the Supreme Court. By historic +irony he administered the oath of office to his bitterest enemy, Thomas +Jefferson; and, long after the author of the Declaration of Independence +had retired to private life, the stern Chief Justice continued to +announce the old Federalist principles from the Supreme Bench. + +[Illustration: JOHN MARSHALL] + +=Marbury _vs._ Madison--An Act of Congress Annulled.=--He had been in +his high office only two years when he laid down for the first time in +the name of the entire Court the doctrine that the judges have the power +to declare an act of Congress null and void when in their opinion it +violates the Constitution. This power was not expressly conferred on the +Court. Though many able men held that the judicial branch of the +government enjoyed it, the principle was not positively established +until 1803 when the case of Marbury _vs._ Madison was decided. In +rendering the opinion of the Court, Marshall cited no precedents. He +sought no foundations for his argument in ancient history. He rested it +on the general nature of the American system. The Constitution, ran his +reasoning, is the supreme law of the land; it limits and binds all who +act in the name of the United States; it limits the powers of Congress +and defines the rights of citizens. If Congress can ignore its +limitations and trespass upon the rights of citizens, Marshall argued, +then the Constitution disappears and Congress is supreme. Since, +however, the Constitution is supreme and superior to Congress, it is the +duty of judges, under their oath of office, to sustain it against +measures which violate it. Therefore, from the nature of the American +constitutional system the courts must declare null and void all acts +which are not authorized. "A law repugnant to the Constitution," he +closed, "is void and the courts as well as other departments are bound +by that instrument." From that day to this the practice of federal and +state courts in passing upon the constitutionality of laws has remained +unshaken. + +This doctrine was received by Jefferson and many of his followers with +consternation. If the idea was sound, he exclaimed, "then indeed is our +Constitution a complete _felo de se_ [legally, a suicide]. For, +intending to establish three departments, coordinate and independent +that they might check and balance one another, it has given, according +to this opinion, to one of them alone the right to prescribe rules for +the government of the others, and to that one, too, which is unelected +by and independent of the nation.... The Constitution, on this +hypothesis, is a mere thing of wax in the hands of the judiciary which +they may twist and shape into any form they please. It should be +remembered, as an axiom of eternal truth in politics, that whatever +power in any government is independent, is absolute also.... A judiciary +independent of a king or executive alone is a good thing; but +independence of the will of the nation is a solecism, at least in a +republican government." But Marshall was mighty and his view prevailed, +though from time to time other men, clinging to Jefferson's opinion, +likewise opposed the exercise by the Courts of the high power of passing +upon the constitutionality of acts of Congress. + +=Acts of State Legislatures Declared Unconstitutional.=--Had Marshall +stopped with annulling an act of Congress, he would have heard less +criticism from Republican quarters; but, with the same firmness, he set +aside acts of state legislatures as well, whenever, in his opinion, they +violated the federal Constitution. In 1810, in the case of Fletcher +_vs._ Peck, he annulled an act of the Georgia legislature, informing the +state that it was not sovereign, but "a part of a large empire, ... a +member of the American union; and that union has a constitution ... +which imposes limits to the legislatures of the several states." In the +case of McCulloch _vs._ Maryland, decided in 1819, he declared void an +act of the Maryland legislature designed to paralyze the branches of the +United States Bank established in that state. In the same year, in the +still more memorable Dartmouth College case, he annulled an act of the +New Hampshire legislature which infringed upon the charter received by +the college from King George long before. That charter, he declared, was +a contract between the state and the college, which the legislature +under the federal Constitution could not impair. Two years later he +stirred the wrath of Virginia by summoning her to the bar of the Supreme +Court to answer in a case in which the validity of one of her laws was +involved and then justified his action in a powerful opinion rendered in +the case of Cohens _vs._ Virginia. + +All these decisions aroused the legislatures of the states. They passed +sheaves of resolutions protesting and condemning; but Marshall never +turned and never stayed. The Constitution of the United States, he +fairly thundered at them, is the supreme law of the land; the Supreme +Court is the proper tribunal to pass finally upon the validity of the +laws of the states; and "those sovereignties," far from possessing the +right of review and nullification, are irrevocably bound by the +decisions of that Court. This was strong medicine for the authors of the +Kentucky and Virginia Resolutions and for the members of the Hartford +convention; but they had to take it. + +=The Doctrine of Implied Powers.=--While restraining Congress in the +Marbury case and the state legislatures in a score of cases, Marshall +also laid the judicial foundation for a broad and liberal view of the +Constitution as opposed to narrow and strict construction. In McCulloch +_vs._ Maryland, he construed generously the words "necessary and proper" +in such a way as to confer upon Congress a wide range of "implied +powers" in addition to their express powers. That case involved, among +other things, the question whether the act establishing the second +United States Bank was authorized by the Constitution. Marshall answered +in the affirmative. Congress, ran his reasoning, has large powers over +taxation and the currency; a bank is of appropriate use in the exercise +of these enumerated powers; and therefore, though not absolutely +necessary, a bank is entirely proper and constitutional. "With respect +to the means by which the powers that the Constitution confers are to be +carried into execution," he said, Congress must be allowed the +discretion which "will enable that body to perform the high duties +assigned to it, in the manner most beneficial to the people." In short, +the Constitution of the United States is not a strait jacket but a +flexible instrument vesting in Congress the powers necessary to meet +national problems as they arise. In delivering this opinion Marshall +used language almost identical with that employed by Lincoln when, +standing on the battle field of a war waged to preserve the nation, he +said that "a government of the people, by the people, for the people +shall not perish from the earth." + + +SUMMARY OF THE UNION AND NATIONAL POLITICS + +During the strenuous period between the establishment of American +independence and the advent of Jacksonian democracy the great American +experiment was under the direction of the men who had launched it. All +the Presidents in that period, except John Quincy Adams, had taken part +in the Revolution. James Madison, the chief author of the Constitution, +lived until 1836. This age, therefore, was the "age of the fathers." It +saw the threatened ruin of the country under the Articles of +Confederation, the formation of the Constitution, the rise of political +parties, the growth of the West, the second war with England, and the +apparent triumph of the national spirit over sectionalism. + +The new republic had hardly been started in 1783 before its troubles +began. The government could not raise money to pay its debts or running +expenses; it could not protect American commerce and manufactures +against European competition; it could not stop the continual issues of +paper money by the states; it could not intervene to put down domestic +uprisings that threatened the existence of the state governments. +Without money, without an army, without courts of law, the union under +the Articles of Confederation was drifting into dissolution. Patriots, +who had risked their lives for independence, began to talk of monarchy +again. Washington, Hamilton, and Madison insisted that a new +constitution alone could save America from disaster. + +By dint of much labor the friends of a new form of government induced +the Congress to call a national convention to take into account the +state of America. In May, 1787, it assembled at Philadelphia and for +months it debated and wrangled over plans for a constitution. The small +states clamored for equal rights in the union. The large states vowed +that they would never grant it. A spirit of conciliation, fair play, and +compromise saved the convention from breaking up. In addition, there +were jealousies between the planting states and the commercial states. +Here, too, compromises had to be worked out. Some of the delegates +feared the growth of democracy and others cherished it. These factions +also had to be placated. At last a plan of government was drafted--the +Constitution of the United States--and submitted to the states for +approval. Only after a long and acrimonious debate did enough states +ratify the instrument to put it into effect. On April 30, 1789, George +Washington was inaugurated first President. + +The new government proceeded to fund the old debt of the nation, assume +the debts of the states, found a national bank, lay heavy taxes to pay +the bills, and enact laws protecting American industry and commerce. +Hamilton led the way, but he had not gone far before he encountered +opposition. He found a formidable antagonist in Jefferson. In time two +political parties appeared full armed upon the scene: the Federalists +and the Republicans. For ten years they filled the country with +political debate. In 1800 the Federalists were utterly vanquished by the +Republicans with Jefferson in the lead. + +By their proclamations of faith the Republicans favored the states +rather than the new national government, but in practice they added +immensely to the prestige and power of the nation. They purchased +Louisiana from France, they waged a war for commercial independence +against England, they created a second United States Bank, they enacted +the protective tariff of 1816, they declared that Congress had power to +abolish slavery north of the Missouri Compromise line, and they spread +the shield of the Monroe Doctrine between the Western Hemisphere and +Europe. + +Still America was a part of European civilization. Currents of opinion +flowed to and fro across the Atlantic. Friends of popular government in +Europe looked to America as the great exemplar of their ideals. Events +in Europe reacted upon thought in the United States. The French +Revolution exerted a profound influence on the course of political +debate. While it was in the stage of mere reform all Americans favored +it. When the king was executed and a radical democracy set up, American +opinion was divided. When France fell under the military dominion of +Napoleon and preyed upon American commerce, the United States made ready +for war. + +The conduct of England likewise affected American affairs. In 1793 war +broke out between England and France and raged with only a slight +intermission until 1815. England and France both ravaged American +commerce, but England was the more serious offender because she had +command of the seas. Though Jefferson and Madison strove for peace, the +country was swept into war by the vehemence of the "Young Republicans," +headed by Clay and Calhoun. + +When the armed conflict was closed, one in diplomacy opened. The +autocratic powers of Europe threatened to intervene on behalf of Spain +in her attempt to recover possession of her Latin-American colonies. +Their challenge to America brought forth the Monroe Doctrine. The powers +of Europe were warned not to interfere with the independence or the +republican policies of this hemisphere or to attempt any new +colonization in it. It seemed that nationalism was to have a peaceful +triumph over sectionalism. + + +=References= + +H. Adams, _History of the United States, 1800-1817_ (9 vols.). + +K.C. Babcock, _Rise of American Nationality_ (American Nation Series). + +E. Channing, _The Jeffersonian System_ (Same Series). + +D.C. Gilman, _James Monroe_. + +W. Reddaway, _The Monroe Doctrine_. + +T. Roosevelt, _Naval War of 1812_. + + +=Questions= + +1. What was the leading feature of Jefferson's political theory? + +2. Enumerate the chief measures of his administration. + +3. Were the Jeffersonians able to apply their theories? Give the +reasons. + + +4. Explain the importance of the Mississippi River to Western farmers. + +5. Show how events in Europe forced the Louisiana Purchase. + +6. State the constitutional question involved in the Louisiana Purchase. + +7. Show how American trade was affected by the European war. + +8. Compare the policies of Jefferson and Madison. + +9. Why did the United States become involved with England rather than +with France? + +10. Contrast the causes of the War of 1812 with the results. + +11. Give the economic reasons for the attitude of New England. + +12. Give five "nationalist" measures of the Republicans. Discuss each in +detail. + +13. Sketch the career of John Marshall. + +14. Discuss the case of Marbury _vs._ Madison. + +15. Summarize Marshall's views on: (_a_) states' rights; and (_b_) a +liberal interpretation of the Constitution. + + +=Research Topics= + +=The Louisiana Purchase.=--Text of Treaty in Macdonald, _Documentary +Source Book_, pp. 279-282. Source materials in Hart, _American History +Told by Contemporaries_, Vol. III, pp. 363-384. Narrative, Henry Adams, +_History of the United States_, Vol. II, pp. 25-115; Elson, _History of +the United States_, pp. 383-388. + +=The Embargo and Non-Intercourse Acts.=--Macdonald, pp. 282-288; Adams, +Vol. IV, pp. 152-177; Elson, pp. 394-405. + +=Congress and the War of 1812.=--Adams, Vol. VI, pp. 113-198; Elson, pp. +408-450. + +=Proposals of the Hartford Convention.=--Macdonald, pp. 293-302. + +=Manufactures and the Tariff of 1816.=--Coman, _Industrial History of +the United States_, pp. 184-194. + +=The Second United States Bank.=--Macdonald, pp. 302-306. + +=Effect of European War on American Trade.=--Callender, _Economic +History of the United States_, pp. 240-250. + +=The Monroe Message.=--Macdonald, pp. 318-320. + +=Lewis and Clark Expedition.=--R.G. Thwaites, _Rocky Mountain +Explorations_, pp. 92-187. Schafer, _A History of the Pacific Northwest_ +(rev. ed.), pp. 29-61. + + + + +PART IV. THE WEST AND JACKSONIAN DEMOCRACY + + + + +CHAPTER X + +THE FARMERS BEYOND THE APPALACHIANS + + +The nationalism of Hamilton was undemocratic. The democracy of Jefferson +was, in the beginning, provincial. The historic mission of uniting +nationalism and democracy was in the course of time given to new leaders +from a region beyond the mountains, peopled by men and women from all +sections and free from those state traditions which ran back to the +early days of colonization. The voice of the democratic nationalism +nourished in the West was heard when Clay of Kentucky advocated his +American system of protection for industries; when Jackson of Tennessee +condemned nullification in a ringing proclamation that has taken its +place among the great American state papers; and when Lincoln of +Illinois, in a fateful hour, called upon a bewildered people to meet the +supreme test whether this was a nation destined to survive or to perish. +And it will be remembered that Lincoln's party chose for its banner that +earlier device--Republican--which Jefferson had made a sign of power. +The "rail splitter" from Illinois united the nationalism of Hamilton +with the democracy of Jefferson, and his appeal was clothed in the +simple language of the people, not in the sonorous rhetoric which +Webster learned in the schools. + + +PREPARATION FOR WESTERN SETTLEMENT + +=The West and the American Revolution.=--The excessive attention devoted +by historians to the military operations along the coast has obscured +the role played by the frontier in the American Revolution. The action +of Great Britain in closing western land to easy settlement in 1763 was +more than an incident in precipitating the war for independence. +Americans on the frontier did not forget it; when Indians were employed +by England to defend that land, zeal for the patriot cause set the +interior aflame. It was the members of the western vanguard, like Daniel +Boone, John Sevier, and George Rogers Clark, who first understood the +value of the far-away country under the guns of the English forts, where +the Red Men still wielded the tomahawk and the scalping knife. It was +they who gave the East no rest until their vision was seen by the +leaders on the seaboard who directed the course of national policy. It +was one of their number, a seasoned Indian fighter, George Rogers Clark, +who with aid from Virginia seized Kaskaskia and Vincennes and secured +the whole Northwest to the union while the fate of Washington's army was +still hanging in the balance. + +=Western Problems at the End of the Revolution.=--The treaty of peace, +signed with Great Britain in 1783, brought the definite cession of the +coveted territory west to the Mississippi River, but it left unsolved +many problems. In the first place, tribes of resentful Indians in the +Ohio region, even though British support was withdrawn at last, had to +be reckoned with; and it was not until after the establishment of the +federal Constitution that a well-equipped army could be provided to +guarantee peace on the border. In the second place, British garrisons +still occupied forts on Lake Erie pending the execution of the terms of +the treaty of 1783--terms which were not fulfilled until after the +ratification of the Jay treaty twelve years later. In the third place, +Virginia, Connecticut, and Massachusetts had conflicting claims to the +land in the Northwest based on old English charters and Indian treaties. +It was only after a bitter contest that the states reached an agreement +to transfer their rights to the government of the United States, +Virginia executing her deed of cession on March 1, 1784. In the fourth +place, titles to lands bought by individuals remained uncertain in the +absence of official maps and records. To meet this last situation, +Congress instituted a systematic survey of the Ohio country, laying it +out into townships, sections of 640 acres each, and quarter sections. In +every township one section of land was set aside for the support of +public schools. + +=The Northwest Ordinance.=--The final problem which had to be solved +before settlement on a large scale could be begun was that of governing +the territory. Pioneers who looked with hungry eyes on the fertile +valley of the Ohio could hardly restrain their impatience. Soldiers of +the Revolution, who had been paid for their services in land warrants +entitling them to make entries in the West, called for action. + +Congress answered by passing in 1787 the famous Northwest Ordinance +providing for temporary territorial government to be followed by the +creation of a popular assembly as soon as there were five thousand free +males in any district. Eventual admission to the union on an equal +footing with the original states was promised to the new territories. +Religious freedom was guaranteed. The safeguards of trial by jury, +regular judicial procedure, and _habeas corpus_ were established, in order +that the methods of civilized life might take the place of the +rough-and-ready justice of lynch law. During the course of the debate on +the Ordinance, Congress added the sixth article forbidding slavery and +involuntary servitude. + +This Charter of the Northwest, so well planned by the Congress under the +Articles of Confederation, was continued in force by the first Congress +under the Constitution in 1789. The following year its essential +provisions, except the ban on slavery, were applied to the territory +south of the Ohio, ceded by North Carolina to the national government, +and in 1798 to the Mississippi territory, once held by Georgia. Thus it +was settled for all time that "the new colonies were not to be exploited +for the benefit of the parent states (any more than for the benefit of +England) but were to be autonomous and coordinate commonwealths." This +outcome, bitterly opposed by some Eastern leaders who feared the triumph +of Western states over the seaboard, completed the legal steps necessary +by way of preparation for the flood of settlers. + +=The Land Companies, Speculators, and Western Land Tenure.=--As in the +original settlement of America, so in the opening of the West, great +companies and single proprietors of large grants early figured. In 1787 +the Ohio Land Company, a New England concern, acquired a million and a +half acres on the Ohio and began operations by planting the town of +Marietta. A professional land speculator, J.C. Symmes, secured a million +acres lower down where the city of Cincinnati was founded. Other +individuals bought up soldiers' claims and so acquired enormous holdings +for speculative purposes. Indeed, there was such a rush to make fortunes +quickly through the rise in land values that Washington was moved to cry +out against the "rage for speculating in and forestalling of land on the +North West of the Ohio," protesting that "scarce a valuable spot within +any tolerable distance of it is left without a claimant." He therefore +urged Congress to fix a reasonable price for the land, not "too +exorbitant and burdensome for real occupiers, but high enough to +discourage monopolizers." + +Congress, however, was not prepared to use the public domain for the +sole purpose of developing a body of small freeholders in the West. It +still looked upon the sale of public lands as an important source of +revenue with which to pay off the public debt; consequently it thought +more of instant income than of ultimate results. It placed no limit on +the amount which could be bought when it fixed the price at $2 an acre +in 1796, and it encouraged the professional land operator by making the +first installment only twenty cents an acre in addition to the small +registration and survey fee. On such terms a speculator with a few +thousand dollars could get possession of an enormous plot of land. If he +was fortunate in disposing of it, he could meet the installments, which +were spread over a period of four years, and make a handsome profit for +himself. Even when the credit or installment feature was abolished in +1821 and the price of the land lowered to a cash price of $1.75 an acre, +the opportunity for large speculative purchases continued to attract +capital to land ventures. + +=The Development of the Small Freehold.=--The cheapness of land and the +scarcity of labor, nevertheless, made impossible the triumph of the huge +estate with its semi-servile tenantry. For about $45 a man could get a +farm of 160 acres on the installment plan; another payment of $80 was +due in forty days; but a four-year term was allowed for the discharge of +the balance. With a capital of from two to three hundred dollars a +family could embark on a land venture. If it had good crops, it could +meet the deferred payments. It was, however, a hard battle at best. Many +a man forfeited his land through failure to pay the final installment; +yet in the end, in spite of all the handicaps, the small freehold of a +few hundred acres at most became the typical unit of Western +agriculture, except in the planting states of the Gulf. Even the lands +of the great companies were generally broken up and sold in small lots. + +The tendency toward moderate holdings, so favored by Western conditions, +was also promoted by a clause in the Northwest Ordinance declaring that +the land of any person dying intestate--that is, without any will +disposing of it--should be divided equally among his descendants. +Hildreth says of this provision: "It established the important +republican principle, not then introduced into all the states, of the +equal distribution of landed as well as personal property." All these +forces combined made the wide dispersion of wealth, in the early days of +the nineteenth century, an American characteristic, in marked contrast +with the European system of family prestige and vast estates based on +the law of primogeniture. + + +THE WESTERN MIGRATION AND NEW STATES + +=The People.=--With government established, federal arms victorious over +the Indians, and the lands surveyed for sale, the way was prepared for +the immigrants. They came with a rush. Young New Englanders, weary of +tilling the stony soil of their native states, poured through New York +and Pennsylvania, some settling on the northern bank of the Ohio but +most of them in the Lake region. Sons and daughters of German farmers in +Pennsylvania and many a redemptioner who had discharged his bond of +servitude pressed out into Ohio, Kentucky, Tennessee, or beyond. From +the exhausted fields and the clay hills of the Southern states came +pioneers of English and Scotch-Irish descent, the latter in great +numbers. Indeed one historian of high authority has ventured to say that +"the rapid expansion of the United States from a coast strip to a +continental area is largely a Scotch-Irish achievement." While native +Americans of mixed stocks led the way into the West, it was not long +before immigrants direct from Europe, under the stimulus of company +enterprise, began to filter into the new settlements in increasing +numbers. + +The types of people were as various as the nations they represented. +Timothy Flint, who published his entertaining _Recollections_ in 1826, +found the West a strange mixture of all sorts and conditions of people. +Some of them, he relates, had been hunters in the upper world of the +Mississippi, above the falls of St. Anthony. Some had been still farther +north, in Canada. Still others had wandered from the South--the Gulf of +Mexico, the Red River, and the Spanish country. French boatmen and +trappers, Spanish traders from the Southwest, Virginia planters with +their droves of slaves mingled with English, German, and Scotch-Irish +farmers. Hunters, forest rangers, restless bordermen, and squatters, +like the foaming combers of an advancing tide, went first. Then followed +the farmers, masters of the ax and plow, with their wives who shared +every burden and hardship and introduced some of the features of +civilized life. The hunters and rangers passed on to new scenes; the +home makers built for all time. + +=The Number of Immigrants.=--There were no official stations on the +frontier to record the number of immigrants who entered the West during +the decades following the American Revolution. But travelers of the time +record that every road was "crowded" with pioneers and their families, +their wagons and cattle; and that they were seldom out of the sound of +the snapping whip of the teamster urging forward his horses or the crack +of the hunter's rifle as he brought down his evening meal. "During the +latter half of 1787," says Coman, "more than nine hundred boats floated +down the Ohio carrying eighteen thousand men, women, and children, and +twelve thousand horses, sheep, and cattle, and six hundred and fifty +wagons." Other lines of travel were also crowded and with the passing +years the flooding tide of home seekers rose higher and higher. + +=The Western Routes.=--Four main routes led into the country beyond the +Appalachians. The Genesee road, beginning at Albany, ran almost due west +to the present site of Buffalo on Lake Erie, through a level country. In +the dry season, wagons laden with goods could easily pass along it into +northern Ohio. A second route, through Pittsburgh, was fed by three +eastern branches, one starting at Philadelphia, one at Baltimore, and +another at Alexandria. A third main route wound through the mountains +from Alexandria to Boonesboro in Kentucky and then westward across the +Ohio to St. Louis. A fourth, the most famous of them all, passed through +the Cumberland Gap and by branches extended into the Cumberland valley +and the Kentucky country. + +Of these four lines of travel, the Pittsburgh route offered the most +advantages. Pioneers, no matter from what section they came, when once +they were on the headwaters of the Ohio and in possession of a flatboat, +could find a quick and easy passage into all parts of the West and +Southwest. Whether they wanted to settle in Ohio, Kentucky, or western +Tennessee they could find their way down the drifting flood to their +destination or at least to some spot near it. Many people from the South +as well as the Northern and Middle states chose this route; so it came +about that the sons and daughters of Virginia and the Carolinas mingled +with those of New York, Pennsylvania, and New England in the settlement +of the Northwest territory. + +=The Methods of Travel into the West.=--Many stories giving exact +descriptions of methods of travel into the West in the early days have +been preserved. The country was hardly opened before visitors from the +Old World and from the Eastern states, impelled by curiosity, made their +way to the very frontier of civilization and wrote books to inform or +amuse the public. One of them, Gilbert Imlay, an English traveler, has +given us an account of the Pittsburgh route as he found it in 1791. "If +a man ... " he writes, "has a family or goods of any sort to remove, his +best way, then, would be to purchase a waggon and team of horses to +carry his property to Redstone Old Fort or to Pittsburgh, according as +he may come from the Northern or Southern states. A good waggon will +cost, at Philadelphia, about $10 ... and the horses about $12 each; they +would cost something more both at Baltimore and Alexandria. The waggon +may be covered with canvass, and if it is the choice of the people, they +may sleep in it of nights with the greatest safety. But if they dislike +that, there are inns of accommodation the whole distance on the +different roads.... The provisions I would purchase in the same manner +[that is, from the farmers along the road]; and by having two or three +camp kettles and stopping every evening when the weather is fine upon +the brink of some rivulet and by kindling a fire they may soon dress +their own food.... This manner of journeying is so far from being +disagreeable that in a fine season it is extremely pleasant." The +immigrant once at Pittsburgh or Wheeling could then buy a flatboat of a +size required for his goods and stock, and drift down the current to his +journey's end. + +[Illustration: ROADS AND TRAILS INTO THE WESTERN TERRITORY] + +=The Admission of Kentucky and Tennessee.=--When the eighteenth century +drew to a close, Kentucky had a population larger than Delaware, Rhode +Island, or New Hampshire. Tennessee claimed 60,000 inhabitants. In 1792 +Kentucky took her place as a state beside her none too kindly parent, +Virginia. The Eastern Federalists resented her intrusion; but they took +some consolation in the admission of Vermont because the balance of +Eastern power was still retained. + +As if to assert their independence of old homes and conservative ideas +the makers of Kentucky's first constitution swept aside the landed +qualification on the suffrage and gave the vote to all free white males. +Four years later, Kentucky's neighbor to the south, Tennessee, followed +this step toward a wider democracy. After encountering fierce opposition +from the Federalists, Tennessee was accepted as the sixteenth state. + +=Ohio.=--The door of the union had hardly opened for Tennessee when +another appeal was made to Congress, this time from the pioneers in +Ohio. The little posts founded at Marietta and Cincinnati had grown into +flourishing centers of trade. The stream of immigrants, flowing down the +river, added daily to their numbers and the growing settlements all +around poured produce into their markets to be exchanged for "store +goods." After the Indians were disposed of in 1794 and the last British +soldier left the frontier forts under the terms of the Jay treaty of +1795, tiny settlements of families appeared on Lake Erie in the "Western +Reserve," a region that had been retained by Connecticut when she +surrendered her other rights in the Northwest. + +At the close of the century, Ohio, claiming a population of more than +50,000, grew discontented with its territorial status. Indeed, two years +before the enactment of the Northwest Ordinance, squatters in that +region had been invited by one John Emerson to hold a convention after +the fashion of the men of Hartford, Windsor, and Wethersfield in old +Connecticut and draft a frame of government for themselves. This true +son of New England declared that men "have an undoubted right to pass +into every vacant country and there to form their constitution and that +from the confederation of the whole United States Congress is not +empowered to forbid them." This grand convention was never held because +the heavy hand of the government fell upon the leaders; but the spirit +of John Emerson did not perish. In November, 1802, a convention chosen +by voters, assembled under the authority of Congress at Chillicothe, +drew up a constitution. It went into force after a popular ratification. +The roll of the convention bore such names as Abbot, Baldwin, Cutler, +Huntington, Putnam, and Sargent, and the list of counties from which +they came included Adams, Fairfield, Hamilton, Jefferson, Trumbull, and +Washington, showing that the new America in the West was peopled and led +by the old stock. In 1803 Ohio was admitted to the union. + +=Indiana and Illinois.=--As in the neighboring state, the frontier in +Indiana advanced northward from the Ohio, mainly under the leadership, +however, of settlers from the South--restless Kentuckians hoping for +better luck in a newer country and pioneers from the far frontiers of +Virginia and North Carolina. As soon as a tier of counties swinging +upward like the horns of the moon against Ohio on the east and in the +Wabash Valley on the west was fairly settled, a clamor went up for +statehood. Under the authority of an act of Congress in 1816 the +Indianians drafted a constitution and inaugurated their government at +Corydon. "The majority of the members of the convention," we are told by +a local historian, "were frontier farmers who had a general idea of what +they wanted and had sense enough to let their more erudite colleagues +put it into shape." + +Two years later, the pioneers of Illinois, also settled upward from the +Ohio, like Indiana, elected their delegates to draft a constitution. +Leadership in the convention, quite properly, was taken by a man born in +New York and reared in Tennessee; and the constitution as finally +drafted "was in its principal provisions a copy of the then existing +constitutions of Kentucky, Ohio, and Indiana.... Many of the articles +are exact copies in wording although differently arranged and +numbered." + +=Louisiana, Mississippi, and Alabama.=--Across the Mississippi to the +far south, clearing and planting had gone on with much bustle and +enterprise. The cotton and sugar lands of Louisiana, opened by French +and Spanish settlers, were widened in every direction by planters with +their armies of slaves from the older states. New Orleans, a good market +and a center of culture not despised even by the pioneer, grew apace. In +1810 the population of lower Louisiana was over 75,000. The time had +come, said the leaders of the people, to fulfill the promise made to +France in the treaty of cession; namely, to grant to the inhabitants of +the territory statehood and the rights of American citizens. Federalists +from New England still having a voice in Congress, if somewhat weaker, +still protested in tones of horror. "I am compelled to declare it as my +deliberate opinion," pronounced Josiah Quincy in the House of +Representatives, "that if this bill [to admit Louisiana] passes, the +bonds of this Union are virtually dissolved ... that as it will be the +right of all, so it will be the duty of some [states] to prepare +definitely for a separation; amicably if they can, violently if they +must.... It is a death blow to the Constitution. It may afterwards +linger; but lingering, its fate will, at no very distant period, be +consummated." Federalists from New York like those from New England had +their doubts about the wisdom of admitting Western states; but the party +of Jefferson and Madison, having the necessary majority, granted the +coveted statehood to Louisiana in 1812. + +When, a few years later, Mississippi and Alabama knocked at the doors of +the union, the Federalists had so little influence, on account of their +conduct during the second war with England, that spokesmen from the +Southwest met a kindlier reception at Washington. Mississippi, in 1817, +and Alabama, in 1819, took their places among the United States of +America. Both of them, while granting white manhood suffrage, gave their +constitutions the tone of the old East by providing landed +qualifications for the governor and members of the legislature. + +=Missouri.=--Far to the north in the Louisiana purchase, a new +commonwealth was rising to power. It was peopled by immigrants who came +down the Ohio in fleets of boats or crossed the Mississippi from +Kentucky and Tennessee. Thrifty Germans from Pennsylvania, hardy farmers +from Virginia ready to work with their own hands, freemen seeking +freemen's homes, planters with their slaves moving on from worn-out +fields on the seaboard, came together in the widening settlements of the +Missouri country. Peoples from the North and South flowed together, +small farmers and big planters mingling in one community. When their +numbers had reached sixty thousand or more, they precipitated a contest +over their admission to the union, "ringing an alarm bell in the night," +as Jefferson phrased it. The favorite expedient of compromise with +slavery was brought forth in Congress once more. Maine consequently was +brought into the union without slavery and Missouri with slavery. At the +same time there was drawn westward through the rest of the Louisiana +territory a line separating servitude from slavery. + + +THE SPIRIT OF THE FRONTIER + +=Land Tenure and Liberty.=--Over an immense western area there developed +an unbroken system of freehold farms. In the Gulf states and the lower +Mississippi Valley, it is true, the planter with his many slaves even +led in the pioneer movement; but through large sections of Tennessee and +Kentucky, as well as upper Georgia and Alabama, and all throughout the +Northwest territory the small farmer reigned supreme. In this immense +dominion there sprang up a civilization without caste or class--a body +of people all having about the same amount of this world's goods and +deriving their livelihood from one source: the labor of their own hands +on the soil. The Northwest territory alone almost equaled in area all +the original thirteen states combined, except Georgia, and its system of +agricultural economy was unbroken by plantations and feudal estates. "In +the subdivision of the soil and the great equality of condition," as +Webster said on more than one occasion, "lay the true basis, most +certainly, of popular government." There was the undoubted source of +Jacksonian democracy. + +[Illustration: A LOG CABIN--LINCOLN'S BIRTHPLACE] + +=The Characteristics of the Western People.=--Travelers into the +Northwest during the early years of the nineteenth century were agreed +that the people of that region were almost uniformly marked by the +characteristics common to an independent yeomanry. A close observer thus +recorded his impressions: "A spirit of adventurous enterprise, a +willingness to go through any hardship to accomplish an object.... +Independence of thought and action. They have felt the influence of +these principles from their childhood. Men who can endure anything; that +have lived almost without restraint, free as the mountain air or as the +deer and the buffalo of their forests, and who know they are Americans +all.... An apparent roughness which some would deem rudeness of +manner.... Where there is perfect equality in a neighborhood of people +who know little about each other's previous history or ancestry but +where each is lord of the soil he cultivates. Where a log cabin is all +that the best of families can expect to have for years and of course can +possess few of the external decorations which have so much influence in +creating a diversity of rank in society. These circumstances have laid +the foundation for that equality of intercourse, simplicity of manners, +want of deference, want of reserve, great readiness to make +acquaintances, freedom of speech, indisposition to brook real or +imaginary insults which one witnesses among people of the West." + +This equality, this independence, this rudeness so often described by +the traveler as marking a new country, were all accentuated by the +character of the settlers themselves. Traces of the fierce, unsociable, +eagle-eyed, hard-drinking hunter remained. The settlers who followed the +hunter were, with some exceptions, soldiers of the Revolutionary army, +farmers of the "middling order," and mechanics from the towns,--English, +Scotch-Irish, Germans,--poor in possessions and thrown upon the labor of +their own hands for support. Sons and daughters from well-to-do Eastern +homes sometimes brought softer manners; but the equality of life and the +leveling force of labor in forest and field soon made them one in spirit +with their struggling neighbors. Even the preachers and teachers, who +came when the cabins were raised in the clearings and rude churches and +schoolhouses were built, preached sermons and taught lessons that +savored of the frontier, as any one may know who reads Peter +Cartwright's _A Muscular Christian_ or Eggleston's _The Hoosier +Schoolmaster_. + + +THE WEST AND THE EAST MEET + +=The East Alarmed.=--A people so independent as the Westerners and so +attached to local self-government gave the conservative East many a rude +shock, setting gentlemen in powdered wigs and knee breeches agog with +the idea that terrible things might happen in the Mississippi Valley. +Not without good grounds did Washington fear that "a touch of a feather +would turn" the Western settlers away from the seaboard to the +Spaniards; and seriously did he urge the East not to neglect them, lest +they be "drawn into the arms of, or be dependent upon foreigners." +Taking advantage of the restless spirit in the Southwest, Aaron Burr, +having disgraced himself by killing Alexander Hamilton in a duel, laid +wild plans, if not to bring about a secession in that region, at least +to build a state of some kind out of the Spanish dominions adjoining +Louisiana. Frightened at such enterprises and fearing the dominance of +the West, the Federalists, with a few conspicuous exceptions, opposed +equality between the sections. Had their narrow views prevailed, the +West, with its new democracy, would have been held in perpetual tutelage +to the seaboard or perhaps been driven into independence as the thirteen +colonies had been not long before. + +=Eastern Friends of the West.=--Fortunately for the nation, there were +many Eastern leaders, particularly from the South, who understood the +West, approved its spirit, and sought to bring the two sections together +by common bonds. Washington kept alive and keen the zeal for Western +advancement which he acquired in his youth as a surveyor. He never grew +tired of urging upon his Eastern friends the importance of the lands +beyond the mountains. He pressed upon the governor of Virginia a project +for a wagon road connecting the seaboard with the Ohio country and was +active in a movement to improve the navigation of the Potomac. He +advocated strengthening the ties of commerce. "Smooth the roads," he +said, "and make easy the way for them, and then see what an influx of +articles will be poured upon us; how amazingly our exports will be +increased by them; and how amply we shall be compensated for any trouble +and expense we may encounter to effect it." Jefferson, too, was +interested in every phase of Western development--the survey of lands, +the exploration of waterways, the opening of trade, and even the +discovery of the bones of prehistoric animals. Robert Fulton, the +inventor of the steamboat, was another man of vision who for many years +pressed upon his countrymen the necessity of uniting East and West by a +canal which would cement the union, raise the value of the public lands, +and extend the principles of confederate and republican government. + +=The Difficulties of Early Transportation.=--Means of communication +played an important part in the strategy of all those who sought to +bring together the seaboard and the frontier. The produce of the +West--wheat, corn, bacon, hemp, cattle, and tobacco--was bulky and the +cost of overland transportation was prohibitive. In the Eastern market, +"a cow and her calf were given for a bushel of salt, while a suit of +'store clothes' cost as much as a farm." In such circumstances, the +inhabitants of the Mississippi Valley were forced to ship their produce +over a long route by way of New Orleans and to pay high freight rates +for everything that was brought across the mountains. Scows of from five +to fifty tons were built at the towns along the rivers and piloted down +the stream to the Crescent City. In a few cases small ocean-going +vessels were built to transport goods to the West Indies or to the +Eastern coast towns. Salt, iron, guns, powder, and the absolute +essentials which the pioneers had to buy mainly in Eastern markets were +carried over narrow wagon trails that were almost impassable in the +rainy season. + +=The National Road.=--To far-sighted men, like Albert Gallatin, "the +father of internal improvements," the solution of this problem was the +construction of roads and canals. Early in Jefferson's administration, +Congress dedicated a part of the proceeds from the sale of lands to +building highways from the headwaters of the navigable waters emptying +into the Atlantic to the Ohio River and beyond into the Northwest +territory. In 1806, after many misgivings, it authorized a great +national highway binding the East and the West. The Cumberland Road, as +it was called, began in northwestern Maryland, wound through southern +Pennsylvania, crossed the narrow neck of Virginia at Wheeling, and then +shot almost straight across Ohio, Indiana, and Illinois, into Missouri. +By 1817, stagecoaches were running between Washington and Wheeling; by +1833 contractors had carried their work to Columbus, Ohio, and by 1852, +to Vandalia, Illinois. Over this ballasted road mail and passenger +coaches could go at high speed, and heavy freight wagons proceed in +safety at a steady pace. + +[Illustration: THE CUMBERLAND ROAD] + +=Canals and Steamboats.=--A second epoch in the economic union of the +East and West was reached with the opening of the Erie Canal in 1825, +offering an all-water route from New York City to the Great Lakes and +the Mississippi Valley. Pennsylvania, alarmed by the advantages +conferred on New York by this enterprise, began her system of canals and +portages from Philadelphia to Pittsburgh, completing the last link in +1834. In the South, the Chesapeake and Ohio Company, chartered in 1825, +was busy with a project to connect Georgetown and Cumberland when +railways broke in upon the undertaking before it was half finished. +About the same time, Ohio built a canal across the state, affording +water communication between Lake Erie and the Ohio River through a rich +wheat belt. Passengers could now travel by canal boat into the West with +comparative ease and comfort, if not at a rapid speed, and the bulkiest +of freight could be easily handled. Moreover, the rate charged for +carrying goods was cut by the Erie Canal from $32 a ton per hundred +miles to $1. New Orleans was destined to lose her primacy in the +Mississippi Valley. + +The diversion of traffic to Eastern markets was also stimulated by +steamboats which appeared on the Ohio about 1810, three years after +Fulton had made his famous trip on the Hudson. It took twenty men to +sail and row a five-ton scow up the river at a speed of from ten to +twenty miles a day. In 1825, Timothy Flint traveled a hundred miles a +day on the new steamer _Grecian_ "against the whole weight of the +Mississippi current." Three years later the round trip from Louisville +to New Orleans was cut to eight days. Heavy produce that once had to +float down to New Orleans could be carried upstream and sent to the East +by way of the canal systems. + +[Illustration: _From an old print_ + +AN EARLY MISSISSIPPI STEAMBOAT] + +Thus the far country was brought near. The timid no longer hesitated at +the thought of the perilous journey. All routes were crowded with +Western immigrants. The forests fell before the ax like grain before the +sickle. Clearings scattered through the woods spread out into a great +mosaic of farms stretching from the Southern Appalachians to Lake +Michigan. The national census of 1830 gave 937,000 inhabitants to Ohio; +343,000 to Indiana; 157,000 to Illinois; 687,000 to Kentucky; and +681,000 to Tennessee. + +[Illustration: DISTRIBUTION OF POPULATION, 1830] + +With the increase in population and the growth of agriculture came +political influence. People who had once petitioned Congress now sent +their own representatives. Men who had hitherto accepted without +protests Presidents from the seaboard expressed a new spirit of dissent +in 1824 by giving only three electoral votes for John Quincy Adams; and +four years later they sent a son of the soil from Tennessee, Andrew +Jackson, to take Washington's chair as chief executive of the +nation--the first of a long line of Presidents from the Mississippi +basin. + + +=References= + +W.G. Brown, _The Lower South in American History_. + +B.A. Hinsdale, _The Old North West_ (2 vols.). + +A.B. Hulbert, _Great American Canals_ and _The Cumberland Road_. + +T. Roosevelt, _Thomas H. Benton_. + +P.J. Treat, _The National Land System_ (1785-1820). + +F.J. Turner, _Rise of the New West_ (American Nation Series). + +J. Winsor, _The Westward Movement_. + + +=Questions= + +1. How did the West come to play a role in the Revolution? + +2. What preparations were necessary to settlement? + +3. Give the principal provisions of the Northwest Ordinance. + +4. Explain how freehold land tenure happened to predominate in the West. + +5. Who were the early settlers in the West? What routes did they take? +How did they travel? + +6. Explain the Eastern opposition to the admission of new Western +states. Show how it was overcome. + +7. Trace a connection between the economic system of the West and the +spirit of the people. + +8. Who were among the early friends of Western development? + +9. Describe the difficulties of trade between the East and the West. + +10. Show how trade was promoted. + + +=Research Topics= + +=Northwest Ordinance.=--Analysis of text in Macdonald, _Documentary +Source Book_. Roosevelt, _Winning of the West_, Vol. V, pp. 5-57. + +=The West before the Revolution.=--Roosevelt, Vol. I. + +=The West during the Revolution.=--Roosevelt, Vols. II and III. + +=Tennessee.=--Roosevelt, Vol. V, pp. 95-119 and Vol. VI, pp. 9-87. + +=The Cumberland Road.=--A.B. Hulbert, _The Cumberland Road_. + +=Early Life in the Middle West.=--Callender, _Economic History of the +United States_, pp. 617-633; 636-641. + +=Slavery in the Southwest.=--Callender, pp. 641-652. + +=Early Land Policy.=--Callender, pp. 668-680. + +=Westward Movement of Peoples.=--Roosevelt, Vol. IV, pp. 7-39. + +Lists of books dealing with the early history of Western states are +given in Hart, Channing, and Turner, _Guide to the Study and Reading of +American History_ (rev. ed.), pp. 62-89. + +=Kentucky.=--Roosevelt, Vol. IV, pp. 176-263. + + + + +CHAPTER XI + +JACKSONIAN DEMOCRACY + + +The New England Federalists, at the Hartford convention, prophesied that +in time the West would dominate the East. "At the adoption of the +Constitution," they said, "a certain balance of power among the original +states was considered to exist, and there was at that time and yet is +among those parties a strong affinity between their great and general +interests. By the admission of these [new] states that balance has been +materially affected and unless the practice be modified must ultimately +be destroyed. The Southern states will first avail themselves of their +new confederates to govern the East, and finally the Western states, +multiplied in number, and augmented in population, will control the +interests of the whole." Strangely enough the fulfillment of this +prophecy was being prepared even in Federalist strongholds by the rise +of a new urban democracy that was to make common cause with the farmers +beyond the mountains. + + +THE DEMOCRATIC MOVEMENT IN THE EAST + +=The Aristocratic Features of the Old Order.=--The Revolutionary +fathers, in setting up their first state constitutions, although they +often spoke of government as founded on the consent of the governed, did +not think that consistency required giving the vote to all adult males. +On the contrary they looked upon property owners as the only safe +"depositary" of political power. They went back to the colonial +tradition that related taxation and representation. This, they argued, +was not only just but a safeguard against the "excesses of democracy." + +In carrying their theory into execution they placed taxpaying or +property qualifications on the right to vote. Broadly speaking, these +limitations fell into three classes. Three states, Pennsylvania (1776), +New Hampshire (1784), and Georgia (1798), gave the ballot to all who +paid taxes, without reference to the value of their property. Three, +Virginia, Delaware, and Rhode Island, clung firmly to the ancient +principles that only freeholders could be intrusted with electoral +rights. Still other states, while closely restricting the suffrage, +accepted the ownership of other things as well as land in fulfillment of +the requirements. In Massachusetts, for instance, the vote was granted +to all men who held land yielding an annual income of three pounds or +possessed other property worth sixty pounds. + +The electors thus enfranchised, numerous as they were, owing to the wide +distribution of land, often suffered from a very onerous disability. In +many states they were able to vote only for persons of wealth because +heavy property qualifications were imposed on public officers. In New +Hampshire, the governor had to be worth five hundred pounds, one-half in +land; in Massachusetts, one thousand pounds, all freehold; in Maryland, +five thousand pounds, one thousand of which was freehold; in North +Carolina, one thousand pounds freehold; and in South Carolina, ten +thousand pounds freehold. A state senator in Massachusetts had to be the +owner of a freehold worth three hundred pounds or personal property +worth six hundred pounds; in New Jersey, one thousand pounds' worth of +property; in North Carolina, three hundred acres of land; in South +Carolina, two thousand pounds freehold. For members of the lower house +of the legislature lower qualifications were required. + +In most of the states the suffrage or office holding or both were +further restricted by religious provisions. No single sect was powerful +enough to dominate after the Revolution, but, for the most part, +Catholics and Jews were either disfranchised or excluded from office. +North Carolina and Georgia denied the ballot to any one who was not a +Protestant. Delaware withheld it from all who did not believe in the +Trinity and the inspiration of the Scriptures. Massachusetts and +Maryland limited it to Christians. Virginia and New York, advanced for +their day, made no discrimination in government on account of religious +opinion. + +=The Defense of the Old Order.=--It must not be supposed that property +qualifications were thoughtlessly imposed at the outset or considered of +little consequence in practice. In the beginning they were viewed as +fundamental. As towns grew in size and the number of landless citizens +increased, the restrictions were defended with even more vigor. In +Massachusetts, the great Webster upheld the rights of property in +government, saying: "It is entirely just that property should have its +due weight and consideration in political arrangements.... The +disastrous revolutions which the world has witnessed, those political +thunderstorms and earthquakes which have shaken the pillars of society +to their deepest foundations, have been revolutions against property." +In Pennsylvania, a leader in local affairs cried out against a plan to +remove the taxpaying limitation on the suffrage: "What does the delegate +propose? To place the vicious vagrant, the wandering Arabs, the Tartar +hordes of our large cities on the level with the virtuous and good man?" +In Virginia, Jefferson himself had first believed in property +qualifications and had feared with genuine alarm the "mobs of the great +cities." It was near the end of the eighteenth century before he +accepted the idea of manhood suffrage. Even then he was unable to +convince the constitution-makers of his own state. "It is not an idle +chimera of the brain," urged one of them, "that the possession of land +furnishes the strongest evidence of permanent, common interest with, and +attachment to, the community.... It is upon this foundation I wish to +place the right of suffrage. This is the best general standard which can +be resorted to for the purpose of determining whether the persons to be +invested with the right of suffrage are such persons as could be, +consistently with the safety and well-being of the community, intrusted +with the exercise of that right." + +=Attacks on the Restricted Suffrage.=--The changing circumstances of +American life, however, soon challenged the rule of those with property. +Prominent among the new forces were the rising mercantile and business +interests. Where the freehold qualification was applied, business men +who did not own land were deprived of the vote and excluded from office. +In New York, for example, the most illiterate farmer who had one hundred +pounds' worth of land could vote for state senator and governor, while +the landless banker or merchant could not. It is not surprising, +therefore, to find business men taking the lead in breaking down +freehold limitations on the suffrage. The professional classes also were +interested in removing the barriers which excluded many of them from +public affairs. It was a schoolmaster, Thomas Dorr, who led the popular +uprising in Rhode Island which brought the exclusive rule by freeholders +to an end. + +In addition to the business and professional classes, the mechanics of +the towns showed a growing hostility to a system of government that +generally barred them from voting or holding office. Though not +numerous, they had early begun to exercise an influence on the course of +public affairs. They had led the riots against the Stamp Act, overturned +King George's statue, and "crammed stamps down the throats of +collectors." When the state constitutions were framed they took a lively +interest, particularly in New York City and Philadelphia. In June, 1776, +the "mechanicks in union" in New York protested against putting the new +state constitution into effect without their approval, declaring that +the right to vote on the acceptance or rejection of a fundamental law +"is the birthright of every man to whatever state he may belong." Though +their petition was rejected, their spirit remained. When, a few years +later, the federal Constitution was being framed, the mechanics watched +the process with deep concern; they knew that one of its main objects +was to promote trade and commerce, affecting directly their daily bread. +During the struggle over ratification, they passed resolutions approving +its provisions and they often joined in parades organized to stir up +sentiment for the Constitution, even though they could not vote for +members of the state conventions and so express their will directly. +After the organization of trade unions they collided with the courts of +law and thus became interested in the election of judges and lawmakers. + +Those who attacked the old system of class rule found a strong moral +support in the Declaration of Independence. Was it not said that all men +are created equal? Whoever runs may read. Was it not declared that +governments derive their just power from the consent of the governed? +That doctrine was applied with effect to George III and seemed +appropriate for use against the privileged classes of Massachusetts or +Virginia. "How do the principles thus proclaimed," asked the +non-freeholders of Richmond, in petitioning for the ballot, "accord with +the existing regulation of the suffrage? A regulation which, instead of +the equality nature ordains, creates an odious distinction between +members of the same community ... and vests in a favored class, not in +consideration of their public services but of their private possessions, +the highest of all privileges." + +=Abolition of Property Qualifications.=--By many minor victories rather +than by any spectacular triumphs did the advocates of manhood suffrage +carry the day. Slight gains were made even during the Revolution or +shortly afterward. In Pennsylvania, the mechanics, by taking an active +part in the contest over the Constitution of 1776, were able to force +the qualification down to the payment of a small tax. Vermont came into +the union in 1792 without any property restrictions. In the same year +Delaware gave the vote to all men who paid taxes. Maryland, reckoned one +of the most conservative of states, embarked on the experiment of +manhood suffrage in 1809; and nine years later, Connecticut, equally +conservative, decided that all taxpayers were worthy of the ballot. + +Five states, Massachusetts, New York, Virginia, Rhode Island, and North +Carolina, remained obdurate while these changes were going on around +them; finally they had to yield themselves. The last struggle in +Massachusetts took place in the constitutional convention of 1820. There +Webster, in the prime of his manhood, and John Adams, in the closing +years of his old age, alike protested against such radical innovations +as manhood suffrage. Their protests were futile. The property test was +abolished and a small tax-paying qualification was substituted. New York +surrendered the next year and, after trying some minor restrictions for +five years, went completely over to white manhood suffrage in 1826. +Rhode Island clung to her freehold qualification through thirty years of +agitation. Then Dorr's Rebellion, almost culminating in bloodshed, +brought about a reform in 1843 which introduced a slight tax-paying +qualification as an alternative to the freehold. Virginia and North +Carolina were still unconvinced. The former refused to abandon ownership +of land as the test for political rights until 1850 and the latter until +1856. Although religious discriminations and property qualifications for +office holders were sometimes retained after the establishment of +manhood suffrage, they were usually abolished along with the monopoly of +government enjoyed by property owners and taxpayers. + +[Illustration: THOMAS DORR AROUSING HIS FOLLOWERS] + +At the end of the first quarter of the nineteenth century, the white +male industrial workers and the mechanics of the Northern cities, at +least, could lay aside the petition for the ballot and enjoy with the +free farmer a voice in the government of their common country. +"Universal democracy," sighed Carlyle, who was widely read in the United +States, "whatever we may think of it has declared itself the inevitable +fact of the days in which we live; and he who has any chance to instruct +or lead in these days must begin by admitting that ... Where no +government is wanted, save that of the parish constable, as in America +with its boundless soil, every man being able to find work and +recompense for himself, democracy may subsist; not elsewhere." Amid the +grave misgivings of the first generation of statesmen, America was +committed to the great adventure, in the populous towns of the East as +well as in the forests and fields of the West. + + +THE NEW DEMOCRACY ENTERS THE ARENA + +The spirit of the new order soon had a pronounced effect on the +machinery of government and the practice of politics. The enfranchised +electors were not long in demanding for themselves a larger share in +administration. + +=The Spoils System and Rotation in Office.=--First of all they wanted +office for themselves, regardless of their fitness. They therefore +extended the system of rewarding party workers with government +positions--a system early established in several states, notably New +York and Pennsylvania. Closely connected with it was the practice of +fixing short terms for officers and making frequent changes in +personnel. "Long continuance in office," explained a champion of this +idea in Pennsylvania in 1837, "unfits a man for the discharge of its +duties, by rendering him arbitrary and aristocratic, and tends to beget, +first life office, and then hereditary office, which leads to the +destruction of free government." The solution offered was the historic +doctrine of "rotation in office." At the same time the principle of +popular election was extended to an increasing number of officials who +had once been appointed either by the governor or the legislature. Even +geologists, veterinarians, surveyors, and other technical officers were +declared elective on the theory that their appointment "smacked of +monarchy." + +=Popular Election of Presidential Electors.=--In a short time the spirit +of democracy, while playing havoc with the old order in state +government, made its way upward into the federal system. The framers of +the Constitution, bewildered by many proposals and unable to agree on +any single plan, had committed the choice of presidential electors to +the discretion of the state legislatures. The legislatures, in turn, +greedy of power, early adopted the practice of choosing the electors +themselves; but they did not enjoy it long undisturbed. Democracy, +thundering at their doors, demanded that they surrender the privilege to +the people. Reluctantly they yielded, sometimes granting popular +election and then withdrawing it. The drift was inevitable, and the +climax came with the advent of Jacksonian democracy. In 1824, Vermont, +New York, Delaware, South Carolina, Georgia, and Louisiana, though some +had experimented with popular election, still left the choice of +electors with the legislature. Eight years later South Carolina alone +held to the old practice. Popular election had become the final word. +The fanciful idea of an electoral college of "good and wise men," +selected without passion or partisanship by state legislatures acting as +deliberative bodies, was exploded for all time; the election of the +nation's chief magistrate was committed to the tempestuous methods of +democracy. + +=The Nominating Convention.=--As the suffrage was widened and the +popular choice of presidential electors extended, there arose a violent +protest against the methods used by the political parties in nominating +candidates. After the retirement of Washington, both the Republicans and +the Federalists found it necessary to agree upon their favorites before +the election, and they adopted a colonial device--the pre-election +caucus. The Federalist members of Congress held a conference and +selected their candidate, and the Republicans followed the example. In +a short time the practice of nominating by a "congressional caucus" +became a recognized institution. The election still remained with the +people; but the power of picking candidates for their approval passed +into the hands of a small body of Senators and Representatives. + + +A reaction against this was unavoidable. To friends of "the plain +people," like Andrew Jackson, it was intolerable, all the more so +because the caucus never favored him with the nomination. More +conservative men also found grave objections to it. They pointed out +that, whereas the Constitution intended the President to be an +independent officer, he had now fallen under the control of a caucus of +congressmen. The supremacy of the legislative branch had been obtained +by an extra-legal political device. To such objections were added +practical considerations. In 1824, when personal rivalry had taken the +place of party conflicts, the congressional caucus selected as the +candidate, William H. Crawford, of Georgia, a man of distinction but no +great popularity, passing by such an obvious hero as General Jackson. +The followers of the General were enraged and demanded nothing short of +the death of "King Caucus." Their clamor was effective. Under their +attacks, the caucus came to an ignominious end. + +In place of it there arose in 1831 a new device, the national nominating +convention, composed of delegates elected by party voters for the sole +purpose of nominating candidates. Senators and Representatives were +still prominent in the party councils, but they were swamped by hundreds +of delegates "fresh from the people," as Jackson was wont to say. In +fact, each convention was made up mainly of office holders and office +seekers, and the new institution was soon denounced as vigorously as +King Caucus had been, particularly by statesmen who failed to obtain a +nomination. Still it grew in strength and by 1840 was firmly +established. + +=The End of the Old Generation.=--In the election of 1824, the +representatives of the "aristocracy" made their last successful stand. +Until then the leadership by men of "wealth and talents" had been +undisputed. There had been five Presidents--Washington, John Adams, +Jefferson, Madison, and Monroe--all Eastern men brought up in prosperous +families with the advantages of culture which come from leisure and the +possession of life's refinements. None of them had ever been compelled +to work with his hands for a livelihood. Four of them had been +slaveholders. Jefferson was a philosopher, learned in natural science, a +master of foreign languages, a gentleman of dignity and grace of manner, +notwithstanding his studied simplicity. Madison, it was said, was armed +"with all the culture of his century." Monroe was a graduate of William +and Mary, a gentleman of the old school. Jefferson and his three +successors called themselves Republicans and professed a genuine faith +in the people but they were not "of the people" themselves; they were +not sons of the soil or the workshop. They were all men of "the grand + +old order of society" who gave finish and style even to popular +government. + +Monroe was the last of the Presidents belonging to the heroic epoch of +the Revolution. He had served in the war for independence, in the +Congress under the Articles of Confederation, and in official capacity +after the adoption of the Constitution. In short, he was of the age that +had wrought American independence and set the government afloat. With +his passing, leadership went to a new generation; but his successor, +John Quincy Adams, formed a bridge between the old and the new in that +he combined a high degree of culture with democratic sympathies. +Washington had died in 1799, preceded but a few months by Patrick Henry +and followed in four years by Samuel Adams. Hamilton had been killed in +a duel with Burr in 1804. Thomas Jefferson and John Adams were yet alive +in 1824 but they were soon to pass from the scene, reconciled at last, +full of years and honors. Madison was in dignified retirement, destined +to live long enough to protest against the doctrine of nullification +proclaimed by South Carolina before death carried him away at the ripe +old age of eighty-five. + +=The Election of John Quincy Adams (1824).=--The campaign of 1824 marked +the end of the "era of good feeling" inaugurated by the collapse of the +Federalist party after the election of 1816. There were four leading +candidates, John Quincy Adams, Andrew Jackson, Henry Clay, and W.H. +Crawford. The result of the election was a division of the electoral +votes into four parts and no one received a majority. Under the +Constitution, therefore, the selection of President passed to the House +of Representatives. Clay, who stood at the bottom of the poll, threw his +weight to Adams and assured his triumph, much to the chagrin of +Jackson's friends. They thought, with a certain justification, that +inasmuch as the hero of New Orleans had received the largest electoral +vote, the House was morally bound to accept the popular judgment and +make him President. Jackson shook hands cordially with Adams on the day +of the inauguration, but never forgave him for being elected. + +While Adams called himself a Republican in politics and often spoke of +"the rule of the people," he was regarded by Jackson's followers as "an +aristocrat." He was not a son of the soil. Neither was he acquainted at +first hand with the labor of farmers and mechanics. He had been educated +at Harvard and in Europe. Like his illustrious father, John Adams, he +was a stern and reserved man, little given to seeking popularity. +Moreover, he was from the East and the frontiersmen of the West regarded +him as a man "born with a silver spoon in his mouth." Jackson's +supporters especially disliked him because they thought their hero +entitled to the presidency. Their anger was deepened when Adams +appointed Clay to the office of Secretary of State; and they set up a +cry that there had been a "deal" by which Clay had helped to elect Adams +to get office for himself. + +Though Adams conducted his administration with great dignity and in a +fine spirit of public service, he was unable to overcome the opposition +which he encountered on his election to office or to win popularity in +the West and South. On the contrary, by advocating government assistance +in building roads and canals and public grants in aid of education, +arts, and sciences, he ran counter to the current which had set in +against appropriations of federal funds for internal improvements. By +signing the Tariff Bill of 1828, soon known as the "Tariff of +Abominations," he made new enemies without adding to his friends in New +York, Pennsylvania, and Ohio where he sorely needed them. Handicapped by +the false charge that he had been a party to a "corrupt bargain" with +Clay to secure his first election; attacked for his advocacy of a high +protective tariff; charged with favoring an "aristocracy of +office-holders" in Washington on account of his refusal to discharge +government clerks by the wholesale, Adams was retired from the White +House after he had served four years. + +=The Triumph of Jackson in 1828.=--Probably no candidate for the +presidency ever had such passionate popular support as Andrew Jackson +had in 1828. He was truly a man of the people. Born of poor parents in +the upland region of South Carolina, schooled in poverty and adversity, +without the advantages of education or the refinements of cultivated +leisure, he seemed the embodiment of the spirit of the new American +democracy. Early in his youth he had gone into the frontier of Tennessee +where he soon won a name as a fearless and intrepid Indian fighter. On +the march and in camp, he endeared himself to his men by sharing their +hardships, sleeping on the ground with them, and eating parched corn +when nothing better could be found for the privates. From local +prominence he sprang into national fame by his exploit at the battle of +New Orleans. His reputation as a military hero was enhanced by the +feeling that he had been a martyr to political treachery in 1824. The +farmers of the West and South claimed him as their own. The mechanics of +the Eastern cities, newly enfranchised, also looked upon him as their +friend. Though his views on the tariff, internal improvements, and other +issues before the country were either vague or unknown, he was readily +elected President. + +The returns of the electoral vote in 1828 revealed the sources of +Jackson's power. In New England, he received but one ballot, from +Maine; he had a majority of the electors in New York and all of them in +Pennsylvania; and he carried every state south of Maryland and beyond +the Appalachians. Adams did not get a single electoral vote in the South +and West. The prophecy of the Hartford convention had been fulfilled. + +[Illustration: ANDREW JACKSON] + +When Jackson took the oath of office on March 4, 1829, the government of +the United States entered into a new era. Until this time the +inauguration of a President--even that of Jefferson, the apostle of +simplicity--had brought no rude shock to the course of affairs at the +capital. Hitherto the installation of a President meant that an +old-fashioned gentleman, accompanied by a few servants, had driven to +the White House in his own coach, taken the oath with quiet dignity, +appointed a few new men to the higher posts, continued in office the +long list of regular civil employees, and begun his administration with +respectable decorum. Jackson changed all this. When he was inaugurated, +men and women journeyed hundreds of miles to witness the ceremony. Great +throngs pressed into the White House, "upset the bowls of punch, broke +the glasses, and stood with their muddy boots on the satin-covered +chairs to see the people's President." If Jefferson's inauguration was, +as he called it, the "great revolution," Jackson's inauguration was a +cataclysm. + + +THE NEW DEMOCRACY AT WASHINGTON + +=The Spoils System.=--The staid and respectable society of Washington +was disturbed by this influx of farmers and frontiersmen. To speak of +politics became "bad form" among fashionable women. The clerks and +civil servants of the government who had enjoyed long and secure tenure +of office became alarmed at the clamor of new men for their positions. +Doubtless the major portion of them had opposed the election of Jackson +and looked with feelings akin to contempt upon him and his followers. +With a hunter's instinct, Jackson scented his prey. Determined to have +none but his friends in office, he made a clean sweep, expelling old +employees to make room for men "fresh from the people." This was a new +custom. Other Presidents had discharged a few officers for engaging in +opposition politics. They had been careful in making appointments not to +choose inveterate enemies; but they discharged relatively few men on +account of their political views and partisan activities. + +By wholesale removals and the frank selection of officers on party +grounds--a practice already well intrenched in New York--Jackson +established the "spoils system" at Washington. The famous slogan, "to +the victor belong the spoils of victory," became the avowed principle of +the national government. Statesmen like Calhoun denounced it; poets like +James Russell Lowell ridiculed it; faithful servants of the government +suffered under it; but it held undisturbed sway for half a century +thereafter, each succeeding generation outdoing, if possible, its +predecessor in the use of public office for political purposes. If any +one remarked that training and experience were necessary qualifications +for important public positions, he met Jackson's own profession of +faith: "The duties of any public office are so simple or admit of being +made so simple that any man can in a short time become master of them." + +=The Tariff and Nullification.=--Jackson had not been installed in power +very long before he was compelled to choose between states' rights and +nationalism. The immediate occasion of the trouble was the tariff--a +matter on which Jackson did not have any very decided views. His mind +did not run naturally to abstruse economic questions; and owing to the +divided opinion of the country it was "good politics" to be vague and +ambiguous in the controversy. Especially was this true, because the +tariff issue was threatening to split the country into parties again. + +_The Development of the Policy of "Protection."_--The war of 1812 and +the commercial policies of England which followed it had accentuated the +need for American economic independence. During that conflict, the +United States, cut off from English manufactures as during the +Revolution, built up home industries to meet the unusual call for iron, +steel, cloth, and other military and naval supplies as well as the +demands from ordinary markets. Iron foundries and textile mills sprang +up as in the night; hundreds of business men invested fortunes in +industrial enterprises so essential to the military needs of the +government; and the people at large fell into the habit of buying +American-made goods again. As the London _Times_ tersely observed of the +Americans, "their first war with England made them independent; their +second war made them formidable." + +In recognition of this state of affairs, the tariff of 1816 was +designed: _first_, to prevent England from ruining these "infant +industries" by dumping the accumulated stores of years suddenly upon +American markets; and, _secondly_, to enlarge in the manufacturing +centers the demand for American agricultural produce. It accomplished +the purposes of its framers. It kept in operation the mills and furnaces +so recently built. It multiplied the number of industrial workers and +enhanced the demand for the produce of the soil. It brought about +another very important result. It turned the capital and enterprise of +New England from shipping to manufacturing, and converted her statesmen, +once friends of low tariffs, into ardent advocates of protection. + +In the early years of the nineteenth century, the Yankees had bent their +energies toward building and operating ships to carry produce from +America to Europe and manufactures from Europe to America. For this +reason, they had opposed the tariff of 1816 calculated to increase +domestic production and cut down the carrying trade. Defeated in their +efforts, they accepted the inevitable and turned to manufacturing. Soon +they were powerful friends of protection for American enterprise. As the +money invested and the labor employed in the favored industries +increased, the demand for continued and heavier protection grew apace. +Even the farmers who furnished raw materials, like wool, flax, and hemp, +began to see eye to eye with the manufacturers. So the textile interests +of New England, the iron masters of Connecticut, New Jersey, and +Pennsylvania, the wool, hemp, and flax growers of Ohio, Kentucky, and +Tennessee, and the sugar planters of Louisiana developed into a +formidable combination in support of a high protective tariff. + +_The Planting States Oppose the Tariff._--In the meantime, the cotton +states on the seaboard had forgotten about the havoc wrought during the +Napoleonic wars when their produce rotted because there were no ships to +carry it to Europe. The seas were now open. The area devoted to cotton +had swiftly expanded as Alabama, Mississippi, and Louisiana were opened +up. Cotton had in fact become "king" and the planters depended for their +prosperity, as they thought, upon the sale of their staple to English +manufacturers whose spinning and weaving mills were the wonder of the +world. Manufacturing nothing and having to buy nearly everything except +farm produce and even much of that for slaves, the planters naturally +wanted to purchase manufactures in the cheapest market, England, where +they sold most of their cotton. The tariff, they contended, raised the +price of the goods they had to buy and was thus in fact a tribute laid +on them for the benefit of the Northern mill owners. + +_The Tariff of Abominations._--They were overborne, however, in 1824 and +again in 1828 when Northern manufacturers and Western farmers forced +Congress to make an upward revision of the tariff. The Act of 1828 known +as "the Tariff of Abominations," though slightly modified in 1832, was +"the straw which broke the camel's back." Southern leaders turned in +rage against the whole system. The legislatures of Virginia, North +Carolina, South Carolina, Georgia, and Alabama denounced it; a general +convention of delegates held at Augusta issued a protest of defiance +against it; and South Carolina, weary of verbal battles, decided to +prevent its enforcement. + +_South Carolina Nullifies the Tariff._--The legislature of that state, +on October 26, 1832, passed a bill calling for a state convention which +duly assembled in the following month. In no mood for compromise, it +adopted the famous Ordinance of Nullification after a few days' debate. +Every line of this document was clear and firm. The tariff, it opened, +gives "bounties to classes and individuals ... at the expense and to the +injury and oppression of other classes and individuals"; it is a +violation of the Constitution of the United States and therefore null +and void; its enforcement in South Carolina is unlawful; if the federal +government attempts to coerce the state into obeying the law, "the +people of this state will thenceforth hold themselves absolved from all +further obligations to maintain or preserve their political connection +with the people of the other states and will forthwith proceed to +organize a separate government and do all other acts and things which +sovereign and independent states may of right do." + +_Southern States Condemn Nullification._--The answer of the country to +this note of defiance, couched in the language used in the Kentucky +resolutions and by the New England Federalists during the war of 1812, +was quick and positive. The legislatures of the Southern states, while +condemning the tariff, repudiated the step which South Carolina had +taken. Georgia responded: "We abhor the doctrine of nullification as +neither a peaceful nor a constitutional remedy." Alabama found it +"unsound in theory and dangerous in practice." North Carolina replied +that it was "revolutionary in character, subversive of the Constitution +of the United States." Mississippi answered: "It is disunion by +force--it is civil war." Virginia spoke more softly, condemning the +tariff and sustaining the principle of the Virginia resolutions but +denying that South Carolina could find in them any sanction for her +proceedings. + +_Jackson Firmly Upholds the Union._--The eyes of the country were turned +upon Andrew Jackson. It was known that he looked with no friendly +feelings upon nullification, for, at a Jefferson dinner in the spring of +1830 while the subject was in the air, he had with laconic firmness +announced a toast: "Our federal union; it must be preserved." When two +years later the open challenge came from South Carolina, he replied that +he would enforce the law, saying with his frontier directness: "If a +single drop of blood shall be shed there in opposition to the laws of +the United States, I will hang the first man I can lay my hands on +engaged in such conduct upon the first tree that I can reach." He made +ready to keep his word by preparing for the use of military and naval +forces in sustaining the authority of the federal government. Then in a +long and impassioned proclamation to the people of South Carolina he +pointed out the national character of the union, and announced his +solemn resolve to preserve it by all constitutional means. Nullification +he branded as "incompatible with the existence of the union, +contradicted expressly by the letter of the Constitution, unauthorized +by its spirit, inconsistent with every principle on which it was +founded, and destructive of the great objects for which it was formed." + +_A Compromise._--In his messages to Congress, however, Jackson spoke the +language of conciliation. A few days before issuing his proclamation he +suggested that protection should be limited to the articles of domestic +manufacture indispensable to safety in war time, and shortly afterward +he asked for new legislation to aid him in enforcing the laws. With two +propositions before it, one to remove the chief grounds for South +Carolina's resistance and the other to apply force if it was continued, +Congress bent its efforts to avoid a crisis. On February 12, 1833, +Henry Clay laid before the Senate a compromise tariff bill providing for +the gradual reduction of the duties until by 1842 they would reach the +level of the law which Calhoun had supported in 1816. About the same +time the "force bill," designed to give the President ample authority in +executing the law in South Carolina, was taken up. After a short but +acrimonious debate, both measures were passed and signed by President +Jackson on the same day, March 2. Looking upon the reduction of the +tariff as a complete vindication of her policy and an undoubted victory, +South Carolina rescinded her ordinance and enacted another nullifying +the force bill. + +[Illustration: _From an old print._ + +DANIEL WEBSTER] + +_The Webster-Hayne Debate._--Where the actual victory lay in this +quarrel, long the subject of high dispute, need not concern us to-day. +Perhaps the chief result of the whole affair was a clarification of the +issue between the North and the South--a definite statement of the +principles for which men on both sides were years afterward to lay down +their lives. On behalf of nationalism and a perpetual union, the stanch +old Democrat from Tennessee had, in his proclamation on nullification, +spoken a language that admitted of only one meaning. On behalf of +nullification, Senator Hayne, of South Carolina, a skilled lawyer and +courtly orator, had in a great speech delivered in the Senate in +January, 1830, set forth clearly and cogently the doctrine that the +union is a compact among sovereign states from which the parties may +lawfully withdraw. It was this address that called into the arena +Daniel Webster, Senator from Massachusetts, who, spreading the mantle +of oblivion over the Hartford convention, delivered a reply to Hayne +that has been reckoned among the powerful orations of all time--a plea +for the supremacy of the Constitution and the national character of the +union. + +=The War on the United States Bank.=--If events forced the issue of +nationalism and nullification upon Jackson, the same could not be said +of his attack on the bank. That institution, once denounced by every +true Jeffersonian, had been reestablished in 1816 under the +administration of Jefferson's disciple, James Madison. It had not been +in operation very long, however, before it aroused bitter opposition, +especially in the South and the West. Its notes drove out of circulation +the paper currency of unsound banks chartered by the states, to the +great anger of local financiers. It was accused of favoritism in making +loans, of conferring special privileges upon politicians in return for +their support at Washington. To all Jackson's followers it was "an +insidious money power." One of them openly denounced it as an +institution designed "to strengthen the arm of wealth and counterpoise +the influence of extended suffrage in the disposition of public +affairs." + +This sentiment President Jackson fully shared. In his first message to +Congress he assailed the bank in vigorous language. He declared that its +constitutionality was in doubt and alleged that it had failed to +establish a sound and uniform currency. If such an institution was +necessary, he continued, it should be a public bank, owned and managed +by the government, not a private concern endowed with special privileges +by it. In his second and third messages, Jackson came back to the +subject, leaving the decision, however, to "an enlightened people and +their representatives." + +Moved by this frank hostility and anxious for the future, the bank +applied to Congress for a renewal of its charter in 1832, four years +before the expiration of its life. Clay, with his eye upon the +presidency and an issue for the campaign, warmly supported the +application. Congress, deeply impressed by his leadership, passed the +bill granting the new charter, and sent the open defiance to Jackson. +His response was an instant veto. The battle was on and it raged with +fury until the close of his second administration, ending in the +destruction of the bank, a disordered currency, and a national panic. + +In his veto message, Jackson attacked the bank as unconstitutional and +even hinted at corruption. He refused to assent to the proposition that +the Supreme Court had settled the question of constitutionality by the +decision in the McCulloch case. "Each public officer," he argued, "who +takes an oath to support the Constitution, swears that he will support +it as he understands it, not as it is understood by others." + +Not satisfied with his veto and his declaration against the bank, +Jackson ordered the Secretary of the Treasury to withdraw the government +deposits which formed a large part of the institution's funds. This +action he followed up by an open charge that the bank had used money +shamefully to secure the return of its supporters to Congress. The +Senate, stung by this charge, solemnly resolved that Jackson had +"assumed upon himself authority and power not conferred by the +Constitution and laws, but in derogation of both." + +The effects of the destruction of the bank were widespread. When its +charter expired in 1836, banking was once more committed to the control +of the states. The state legislatures, under a decision rendered by the +Supreme Court after the death of Marshall, began to charter banks under +state ownership and control, with full power to issue paper money--this +in spite of the provision in the Constitution that states shall not +issue bills of credit or make anything but gold and silver coin legal +tender in the payment of debts. Once more the country was flooded by +paper currency of uncertain value. To make matters worse, Jackson +adopted the practice of depositing huge amounts of government funds in +these banks, not forgetting to render favors to those institutions which +supported him in politics--"pet banks," as they were styled at the +time. In 1837, partially, though by no means entirely, as a result of +the abolition of the bank, the country was plunged into one of the most +disastrous panics which it ever experienced. + +=Internal Improvements Checked.=--The bank had presented to Jackson a +very clear problem--one of destruction. Other questions were not so +simple, particularly the subject of federal appropriations in aid of +roads and other internal improvements. Jefferson had strongly favored +government assistance in such matters, but his administration was +followed by a reaction. Both Madison and Monroe vetoed acts of Congress +appropriating public funds for public roads, advancing as their reason +the argument that the Constitution authorized no such laws. Jackson, +puzzled by the clamor on both sides, followed their example without +making the constitutional bar absolute. Congress, he thought, might +lawfully build highways of a national and military value, but he +strongly deprecated attacks by local interests on the federal treasury. + +=The Triumph of the Executive Branch.=--Jackson's reelection in 1832 +served to confirm his opinion that he was the chosen leader of the +people, freed and instructed to ride rough shod over Congress and even +the courts. No President before or since ever entertained in times of +peace such lofty notions of executive prerogative. The entire body of +federal employees he transformed into obedient servants of his wishes, a +sign or a nod from him making and undoing the fortunes of the humble and +the mighty. His lawful cabinet of advisers, filling all of the high +posts in the government, he treated with scant courtesy, preferring +rather to secure his counsel and advice from an unofficial body of +friends and dependents who, owing to their secret methods and back +stairs arrangements, became known as "the kitchen cabinet." Under the +leadership of a silent, astute, and resourceful politician, Amos +Kendall, this informal gathering of the faithful both gave and carried +out decrees and orders, communicating the President's lightest wish or +strictest command to the uttermost part of the country. Resolutely and +in the face of bitter opposition Jackson had removed the deposits from +the United States Bank. When the Senate protested against this arbitrary +conduct, he did not rest until it was forced to expunge the resolution +of condemnation; in time one of his lieutenants with his own hands was +able to tear the censure from the records. When Chief Justice Marshall +issued a decree against Georgia which did not suit him, Jackson, +according to tradition, blurted out that Marshall could go ahead and +enforce his own orders. To the end he pursued his willful way, finally +even choosing his own successor. + + +THE RISE OF THE WHIGS + +=Jackson's Measures Arouse Opposition.=--Measures so decided, policies +so radical, and conduct so high-handed could not fail to arouse against +Jackson a deep and exasperated opposition. The truth is the conduct of +his entire administration profoundly disturbed the business and finances +of the country. It was accompanied by conditions similar to those which +existed under the Articles of Confederation. A paper currency, almost as +unstable and irritating as the worthless notes of revolutionary days, +flooded the country, hindering the easy transaction of business. The use +of federal funds for internal improvements, so vital to the exchange of +commodities which is the very life of industry, was blocked by executive +vetoes. The Supreme Court, which, under Marshall, had held refractory +states to their obligations under the Constitution, was flouted; states' +rights judges, deliberately selected by Jackson for the bench, began to +sap and undermine the rulings of Marshall. The protective tariff, under +which the textile industry of New England, the iron mills of +Pennsylvania, and the wool, flax, and hemp farms of the West had +flourished, had received a severe blow in the compromise of 1833 which +promised a steady reduction of duties. To cap the climax, Jackson's +party, casting aside the old and reputable name of Republican, boldly +chose for its title the term "Democrat," throwing down the gauntlet to +every conservative who doubted the omniscience of the people. All these +things worked together to evoke an opposition that was sharp and +determined. + +[Illustration: AN OLD CARTOON RIDICULING CLAY'S TARIFF AND INTERNAL +IMPROVEMENT PROGRAM] + +=Clay and the National Republicans.=--In this opposition movement, +leadership fell to Henry Clay, a son of Kentucky, rather than to Daniel +Webster of Massachusetts. Like Jackson, Clay was born in a home haunted +by poverty. Left fatherless early and thrown upon his own resources, he +went from Virginia into Kentucky where by sheer force of intellect he +rose to eminence in the profession of law. Without the martial gifts or +the martial spirit of Jackson, he slipped more easily into the social +habits of the East at the same time that he retained his hold on the +affections of the boisterous West. Farmers of Ohio, Indiana, and +Kentucky loved him; financiers of New York and Philadelphia trusted him. +He was thus a leader well fitted to gather the forces of opposition +into union against Jackson. + +Around Clay's standard assembled a motley collection, representing every +species of political opinion, united by one tie only--hatred for "Old +Hickory." Nullifiers and less strenuous advocates of states' rights were +yoked with nationalists of Webster's school; ardent protectionists were +bound together with equally ardent free traders, all fraternizing in one +grand confusion of ideas under the title of "National Republicans." Thus +the ancient and honorable term selected by Jefferson and his party, now +abandoned by Jacksonian Democracy, was adroitly adopted to cover the +supporters of Clay. The platform of the party, however, embraced all the +old Federalist principles: protection for American industry; internal +improvements; respect for the Supreme Court; resistance to executive +tyranny; and denunciation of the spoils system. Though Jackson was +easily victorious in 1832, the popular vote cast for Clay should have +given him some doubts about the faith of "the whole people" in the +wisdom of his "reign." + +=Van Buren and the Panic of 1837.=--Nothing could shake the General's +superb confidence. At the end of his second term he insisted on +selecting his own successor; at a national convention, chosen by party +voters, but packed with his office holders and friends, he nominated +Martin Van Buren of New York. Once more he proved his strength by +carrying the country for the Democrats. With a fine flourish, he +attended the inauguration of Van Buren and then retired, amid the +applause and tears of his devotees, to the Hermitage, his home in +Tennessee. + +Fortunately for him, Jackson escaped the odium of a disastrous panic +which struck the country with terrible force in the following summer. +Among the contributory causes of this crisis, no doubt, were the +destruction of the bank and the issuance of the "specie circular" of + +1836 which required the purchasers of public lands to pay for them in +coin, instead of the paper notes of state banks. Whatever the dominating +cause, the ruin was widespread. Bank after bank went under; boom towns +in the West collapsed; Eastern mills shut down; and working people in +the industrial centers, starving from unemployment, begged for relief. +Van Buren braved the storm, offering no measure of reform or assistance +to the distracted people. He did seek security for government funds by +suggesting the removal of deposits from private banks and the +establishment of an independent treasury system, with government +depositaries for public funds, in several leading cities. This plan was +finally accepted by Congress in 1840. + +Had Van Buren been a captivating figure he might have lived down the +discredit of the panic unjustly laid at his door; but he was far from +being a favorite with the populace. Though a man of many talents, he +owed his position to the quiet and adept management of Jackson rather +than to his own personal qualities. The men of the frontier did not care +for him. They suspected that he ate from "gold plate" and they could not +forgive him for being an astute politician from New York. Still the +Democratic party, remembering Jackson's wishes, renominated him +unanimously in 1840 and saw him go down to utter defeat. + +=The Whigs and General Harrison.=--By this time, the National +Republicans, now known as Whigs--a title taken from the party of +opposition to the Crown in England, had learned many lessons. Taking a +leaf out of the Democratic book, they nominated, not Clay of Kentucky, +well known for his views on the bank, the tariff, and internal +improvements, but a military hero, General William Henry Harrison, a man +of uncertain political opinions. Harrison, a son of a Virginia signer of +the Declaration of Independence, sprang into public view by winning a +battle more famous than important, "Tippecanoe"--a brush with the +Indians in Indiana. He added to his laurels by rendering praiseworthy +services during the war of 1812. When days of peace returned he was +rewarded by a grateful people with a seat in Congress. Then he retired +to quiet life in a little village near Cincinnati. Like Jackson he was +held to be a son of the South and the West. Like Jackson he was a +military hero, a lesser light, but still a light. Like Old Hickory he +rode into office on a tide of popular feeling against an Eastern man +accused of being something of an aristocrat. His personal popularity was +sufficient. The Whigs who nominated him shrewdly refused to adopt a +platform or declare their belief in anything. When some Democrat +asserted that Harrison was a backwoodsman whose sole wants were a jug of +hard cider and a log cabin, the Whigs treated the remark not as an +insult but as proof positive that Harrison deserved the votes of Jackson +men. The jug and the cabin they proudly transformed into symbols of the +campaign, and won for their chieftain 234 electoral votes, while Van +Buren got only sixty. + +=Harrison and Tyler.=--The Hero of Tippecanoe was not long to enjoy the +fruits of his victory. The hungry horde of Whig office seekers descended +upon him like wolves upon the fold. If he went out they waylaid him; if +he stayed indoors, he was besieged; not even his bed chamber was spared. +He was none too strong at best and he took a deep cold on the day of his +inauguration. Between driving out Democrats and appeasing Whigs, he fell +mortally ill. Before the end of a month he lay dead at the capitol. + +Harrison's successor, John Tyler, the Vice President, whom the Whigs had +nominated to catch votes in Virginia, was more of a Democrat than +anything else, though he was not partisan enough to please anybody. The +Whigs railed at him because he would not approve the founding of another +United States Bank. The Democrats stormed at him for refusing, until +near the end of his term, to sanction the annexation of Texas, which had +declared its independence of Mexico in 1836. His entire administration, +marked by unseemly wrangling, produced only two measures of importance. +The Whigs, flushed by victory, with the aid of a few protectionist +Democrats, enacted, in 1842, a new tariff law destroying the compromise +which had brought about the truce between the North and the South, in +the days of nullification. The distinguished leader of the Whigs, Daniel +Webster, as Secretary of State, in negotiation with Lord Ashburton +representing Great Britain, settled the long-standing dispute between +the two countries over the Maine boundary. A year after closing this +chapter in American diplomacy, Webster withdrew to private life, leaving +the President to endure alone the buffets of political fortune. + +To the end, the Whigs regarded Tyler as a traitor to their cause; but +the judgment of history is that it was a case of the biter bitten. They +had nominated him for the vice presidency as a man of views acceptable +to Southern Democrats in order to catch their votes, little reckoning +with the chances of his becoming President. Tyler had not deceived them +and, thoroughly soured, he left the White House in 1845 not to appear in +public life again until the days of secession, when he espoused the +Southern confederacy. Jacksonian Democracy, with new leadership, serving +a new cause--slavery--was returned to power under James K. Polk, a +friend of the General from Tennessee. A few grains of sand were to run +through the hour glass before the Whig party was to be broken and +scattered as the Federalists had been more than a generation before. + + +THE INTERACTION OF AMERICAN AND EUROPEAN OPINION + +=Democracy in England and France.=--During the period of Jacksonian +Democracy, as in all epochs of ferment, there was a close relation +between the thought of the New World and the Old. In England, the +successes of the American experiment were used as arguments in favor of +overthrowing the aristocracy which George III had manipulated with such +effect against America half a century before. In the United States, on +the other hand, conservatives like Chancellor Kent, the stout opponent +of manhood suffrage in New York, cited the riots of the British working +classes as a warning against admitting the same classes to a share in +the government of the United States. Along with the agitation of opinion +went epoch-making events. In 1832, the year of Jackson's second +triumph, the British Parliament passed its first reform bill, which +conferred the ballot--not on workingmen as yet--but on mill owners and +shopkeepers whom the landlords regarded with genuine horror. The initial +step was thus taken in breaking down the privileges of the landed +aristocracy and the rich merchants of England. + +About the same time a popular revolution occurred in France. The Bourbon +family, restored to the throne of France by the allied powers after +their victory over Napoleon in 1815, had embarked upon a policy of +arbitrary government. To use the familiar phrase, they had learned +nothing and forgotten nothing. Charles X, who came to the throne in +1824, set to work with zeal to undo the results of the French +Revolution, to stifle the press, restrict the suffrage, and restore the +clergy and the nobility to their ancient rights. His policy encountered +equally zealous opposition and in 1830 he was overthrown. The popular +party, under the leadership of Lafayette, established, not a republic as +some of the radicals had hoped, but a "liberal" middle-class monarchy +under Louis Philippe. This second French Revolution made a profound +impression on Americans, convincing them that the whole world was moving +toward democracy. The mayor, aldermen, and citizens of New York City +joined in a great parade to celebrate the fall of the Bourbons. Mingled +with cheers for the new order in France were hurrahs for "the people's +own, Andrew Jackson, the Hero of New Orleans and President of the United +States!" + +=European Interest in America.=--To the older and more settled +Europeans, the democratic experiment in America was either a menace or +an inspiration. Conservatives viewed it with anxiety; liberals with +optimism. Far-sighted leaders could see that the tide of democracy was +rising all over the world and could not be stayed. Naturally the country +that had advanced furthest along the new course was the place in which +to find arguments for and against proposals that Europe should make +experiments of the same character. + +=De Tocqueville's _Democracy in America_.=--In addition to the casual +traveler there began to visit the United States the thoughtful observer +bent on finding out what manner of nation this was springing up in the +wilderness. Those who looked with sympathy upon the growing popular +forces of England and France found in the United States, in spite of +many blemishes and defects, a guarantee for the future of the people's +rule in the Old World. One of these, Alexis de Tocqueville, a French +liberal of mildly democratic sympathies, made a journey to this country +in 1831; he described in a very remarkable volume, _Democracy in +America_, the grand experiment as he saw it. On the whole he was +convinced. After examining with a critical eye the life and labor of the +American people, as well as the constitutions of the states and the +nation, he came to the conclusion that democracy with all its faults was +both inevitable and successful. Slavery he thought was a painful +contrast to the other features of American life, and he foresaw what +proved to be the irrepressible conflict over it. He believed that +through blundering the people were destined to learn the highest of all +arts, self-government on a grand scale. The absence of a leisure class, +devoted to no calling or profession, merely enjoying the refinements of +life and adding to its graces--the flaw in American culture that gave +deep distress to many a European leader--de Tocqueville thought a +necessary virtue in the republic. "Amongst a democratic people where +there is no hereditary wealth, every man works to earn a living, or has +worked, or is born of parents who have worked. A notion of labor is +therefore presented to the mind on every side as the necessary, natural, +and honest condition of human existence." It was this notion of a +government in the hands of people who labored that struck the French +publicist as the most significant fact in the modern world. + +=Harriet Martineau's Visit to America.=--This phase of American life +also profoundly impressed the brilliant English writer, Harriet +Martineau. She saw all parts of the country, the homes of the rich and +the log cabins of the frontier; she traveled in stagecoaches, canal +boats, and on horseback; and visited sessions of Congress and auctions +at slave markets. She tried to view the country impartially and the +thing that left the deepest mark on her mind was the solidarity of the +people in one great political body. "However various may be the tribes +of inhabitants in those states, whatever part of the world may have been +their birthplace, or that of their fathers, however broken may be their +language, however servile or noble their employments, however exalted or +despised their state, all are declared to be bound together by equal +political obligations.... In that self-governing country all are held to +have an equal interest in the principles of its institutions and to be +bound in equal duty to watch their workings." Miss Martineau was also +impressed with the passion of Americans for land ownership and +contrasted the United States favorably with England where the tillers of +the soil were either tenants or laborers for wages. + +=Adverse Criticism.=--By no means all observers and writers were +convinced that America was a success. The fastidious traveler, Mrs. +Trollope, who thought the English system of church and state was ideal, +saw in the United States only roughness and ignorance. She lamented the +"total and universal want of manners both in males and females," adding +that while "they appear to have clear heads and active intellects," +there was "no charm, no grace in their conversation." She found +everywhere a lack of reverence for kings, learning, and rank. Other +critics were even more savage. The editor of the _Foreign Quarterly_ +petulantly exclaimed that the United States was "a brigand +confederation." Charles Dickens declared the country to be "so maimed +and lame, so full of sores and ulcers that her best friends turn from +the loathsome creature in disgust." Sydney Smith, editor of the +_Edinburgh Review_, was never tired of trying his caustic wit at the +expense of America. "Their Franklins and Washingtons and all the other +sages and heroes of their revolution were born and bred subjects of the +king of England," he observed in 1820. "During the thirty or forty +years of their independence they have done absolutely nothing for the +sciences, for the arts, for literature, or even for the statesmanlike +studies of politics or political economy.... In the four quarters of the +globe who reads an American book? Or goes to an American play? Or looks +at an American picture or statue?" To put a sharp sting into his taunt +he added, forgetting by whose authority slavery was introduced and +fostered: "Under which of the old tyrannical governments of Europe is +every sixth man a slave whom his fellow creatures may buy and sell?" + +Some Americans, while resenting the hasty and often superficial +judgments of European writers, winced under their satire and took +thought about certain particulars in the indictments brought against +them. The mass of the people, however, bent on the great experiment, +gave little heed to carping critics who saw the flaws and not the +achievements of our country--critics who were in fact less interested in +America than in preventing the rise and growth of democracy in Europe. + + +=References= + +J.S. Bassett, _Life of Andrew Jackson_. + +J.W. Burgess, _The Middle Period_. + +H. Lodge, _Daniel Webster_. + +W. Macdonald, _Jacksonian Democracy_ (American Nation Series). + +Ostrogorski, _Democracy and the Organization of Political Parties_, Vol. +II. + +C.H. Peck, _The Jacksonian Epoch_. + +C. Schurz, _Henry Clay_. + + +=Questions= + +1. By what devices was democracy limited in the first days of our +Republic? + +2. On what grounds were the limitations defended? Attacked? + +3. Outline the rise of political democracy in the United States. + +4. Describe three important changes in our political system. + +5. Contrast the Presidents of the old and the new generations. + +6. Account for the unpopularity of John Adams' administration. + +7. What had been the career of Andrew Jackson before 1829? + +8. Sketch the history of the protective tariff and explain the theory +underlying it. + +9. Explain the growth of Southern opposition to the tariff. + +10. Relate the leading events connected with nullification in South +Carolina. + +11. State Jackson's views and tell the outcome of the controversy. + +12. Why was Jackson opposed to the bank? How did he finally destroy it? + +13. The Whigs complained of Jackson's "executive tyranny." What did they +mean? + +14. Give some of the leading events in Clay's career. + +15. How do you account for the triumph of Harrison in 1840? + +16. Why was Europe especially interested in America at this period? Who +were some of the European writers on American affairs? + + +=Research Topics= + +=Jackson's Criticisms of the Bank.=--Macdonald, _Documentary Source +Book_, pp. 320-329. + +=Financial Aspects of the Bank Controversy.=--Dewey, _Financial History +of the United States_, Sections 86-87; Elson, _History of the United +States_, pp. 492-496. + +=Jackson's View of the Union.=--See his proclamation on nullification in +Macdonald, pp. 333-340. + +=Nullification.=--McMaster, _History of the People of the United +States_, Vol. VI, pp. 153-182; Elson, pp. 487-492. + +=The Webster-Hayne Debate.=--Analyze the arguments. Extensive extracts +are given in Macdonald's larger three-volume work, _Select Documents of +United States History, 1776-1761_, pp. 239-260. + +=The Character of Jackson's Administration.=--Woodrow Wilson, _History +of the American People_, Vol. IV, pp. 1-87; Elson, pp. 498-501. + +=The People in 1830.=--From contemporary writings in Hart, _American +History Told by Contemporaries_, Vol. III, pp. 509-530. + +=Biographical Studies.=--Andrew Jackson, J.Q. Adams, Henry Clay, Daniel +Webster, J.C. Calhoun, and W.H. Harrison. + + + + +CHAPTER XII + +THE MIDDLE BORDER AND THE GREAT WEST + + +"We shall not send an emigrant beyond the Mississippi in a hundred +years," exclaimed Livingston, the principal author of the Louisiana +purchase. When he made this astounding declaration, he doubtless had +before his mind's eye the great stretches of unoccupied lands between +the Appalachians and the Mississippi. He also had before him the history +of the English colonies, which told him of the two centuries required to +settle the seaboard region. To practical men, his prophecy did not seem +far wrong; but before the lapse of half that time there appeared beyond +the Mississippi a tier of new states, reaching from the Gulf of Mexico +to the southern boundary of Minnesota, and a new commonwealth on the +Pacific Ocean where American emigrants had raised the Bear flag of +California. + + +THE ADVANCE OF THE MIDDLE BORDER + +=Missouri.=--When the middle of the nineteenth century had been reached, +the Mississippi River, which Daniel Boone, the intrepid hunter, had +crossed during Washington's administration "to escape from civilization" +in Kentucky, had become the waterway for a vast empire. The center of +population of the United States had passed to the Ohio Valley. Missouri, +with its wide reaches of rich lands, low-lying, level, and fertile, well +adapted to hemp raising, had drawn to its borders thousands of planters +from the old Southern states--from Virginia and the Carolinas as well as +from Kentucky and Tennessee. When the great compromise of 1820-21 +admitted her to the union, wearing "every jewel of sovereignty," as a +florid orator announced, migratory slave owners were assured that their +property would be safe in Missouri. Along the western shore of the +Mississippi and on both banks of the Missouri to the uttermost limits of +the state, plantations tilled by bondmen spread out in broad expanses. +In the neighborhood of Jefferson City the slaves numbered more than a +fourth of the population. + +Into this stream of migration from the planting South flowed another +current of land-tilling farmers; some from Kentucky, Tennessee, and +Mississippi, driven out by the onrush of the planters buying and +consolidating small farms into vast estates; and still more from the +East and the Old World. To the northwest over against Iowa and to the +southwest against Arkansas, these yeomen laid out farms to be tilled by +their own labor. In those regions the number of slaves seldom rose above +five or six per cent of the population. The old French post, St. Louis, +enriched by the fur trade of the Far West and the steamboat traffic of +the river, grew into a thriving commercial city, including among its +seventy-five thousand inhabitants in 1850 nearly forty thousand +foreigners, German immigrants from Pennsylvania and Europe being the +largest single element. + +=Arkansas.=--Below Missouri lay the territory of Arkansas, which had +long been the paradise of the swarthy hunter and the restless +frontiersman fleeing from the advancing borders of farm and town. In +search of the life, wild and free, where the rifle supplied the game and +a few acres of ground the corn and potatoes, they had filtered into the +territory in an unending drift, "squatting" on the land. Without so much +as asking the leave of any government, territorial or national, they +claimed as their own the soil on which they first planted their feet. +Like the Cherokee Indians, whom they had as neighbors, whose very +customs and dress they sometimes adopted, the squatters spent their days +in the midst of rough plenty, beset by chills, fevers, and the ills of +the flesh, but for many years unvexed by political troubles or the +restrictions of civilized life. + +Unfortunately for them, however, the fertile valleys of the Mississippi +and Arkansas were well adapted to the cultivation of cotton and tobacco +and their sylvan peace was soon broken by an invasion of planters. The +newcomers, with their servile workers, spread upward in the valley +toward Missouri and along the southern border westward to the Red River. +In time the slaves in the tier of counties against Louisiana ranged from +thirty to seventy per cent of the population. This marked the doom of +the small farmer, swept Arkansas into the main current of planting +politics, and led to a powerful lobby at Washington in favor of +admission to the union, a boon granted in 1836. + +=Michigan.=--In accordance with a well-established custom, a free state +was admitted to the union to balance a slave state. In 1833, the people +of Michigan, a territory ten times the size of Connecticut, announced +that the time had come for them to enjoy the privileges of a +commonwealth. All along the southern border the land had been occupied +largely by pioneers from New England, who built prim farmhouses and +adopted the town-meeting plan of self-government after the fashion of +the old home. The famous post of Detroit was growing into a flourishing +city as the boats plying on the Great Lakes carried travelers, settlers, +and freight through the narrows. In all, according to the census, there +were more than ninety thousand inhabitants in the territory; so it was +not without warrant that they clamored for statehood. Congress, busy as +ever with politics, delayed; and the inhabitants of Michigan, unable to +restrain their impatience, called a convention, drew up a constitution, +and started a lively quarrel with Ohio over the southern boundary. The +hand of Congress was now forced. Objections were made to the new +constitution on the ground that it gave the ballot to all free white +males, including aliens not yet naturalized; but the protests were +overborne in a long debate. The boundary was fixed, and Michigan, though +shorn of some of the land she claimed, came into the union in 1837. + +=Wisconsin.=--Across Lake Michigan to the west lay the territory of +Wisconsin, which shared with Michigan the interesting history of the +Northwest, running back into the heroic days when French hunters and +missionaries were planning a French empire for the great monarch, Louis +XIV. It will not be forgotten that the French rangers of the woods, the +black-robed priests, prepared for sacrifice, even to death, the trappers +of the French agencies, and the French explorers--Marquette, Joliet, and +Menard--were the first white men to paddle their frail barks through the +northern waters. They first blazed their trails into the black forests +and left traces of their work in the names of portages and little +villages. It was from these forests that Red Men in full war paint +journeyed far to fight under the _fleur-de-lis_ of France when the +soldiers of King Louis made their last stand at Quebec and Montreal +against the imperial arms of Britain. It was here that the British flag +was planted in 1761 and that the great Pontiac conspiracy was formed two +years later to overthrow British dominion. + +When, a generation afterward, the Stars and Stripes supplanted the Union +Jack, the French were still almost the only white men in the region. +They were soon joined by hustling Yankee fur traders who did battle +royal against British interlopers. The traders cut their way through +forest trails and laid out the routes through lake and stream and over +portages for the settlers and their families from the states "back +East." It was the forest ranger who discovered the water power later +used to turn the busy mills grinding the grain from the spreading farm +lands. In the wake of the fur hunters, forest men, and farmers came +miners from Kentucky, Tennessee, and Missouri crowding in to exploit the +lead ores of the northwest, some of them bringing slaves to work their +claims. Had it not been for the gold fever of 1849 that drew the +wielders of pick and shovel to the Far West, Wisconsin would early have +taken high rank among the mining regions of the country. + +From a favorable point of vantage on Lake Michigan, the village of +Milwaukee, a center for lumber and grain transport and a place of entry +for Eastern goods, grew into a thriving city. It claimed twenty thousand +inhabitants, when in 1848 Congress admitted Wisconsin to the union. +Already the Germans, Irish, and Scandinavians had found their way into +the territory. They joined Americans from the older states in clearing +forests, building roads, transforming trails into highways, erecting +mills, and connecting streams with canals to make a network of routes +for the traffic that poured to and from the Great Lakes. + +=Iowa and Minnesota.=--To the southwest of Wisconsin beyond the +Mississippi, where the tall grass of the prairies waved like the sea, +farmers from New England, New York, and Ohio had prepared Iowa for +statehood. A tide of immigration that might have flowed into Missouri +went northward; for freemen, unaccustomed to slavery and slave markets, +preferred the open country above the compromise line. With incredible +swiftness, they spread farms westward from the Mississippi. With Yankee +ingenuity they turned to trading on the river, building before 1836 +three prosperous centers of traffic: Dubuque, Davenport, and Burlington. +True to their old traditions, they founded colleges and academies that +religion and learning might be cherished on the frontier as in the +states from which they came. Prepared for self-government, the Iowans +laid siege to the door of Congress and were admitted to the union in +1846. + +Above Iowa, on the Mississippi, lay the territory of Minnesota--the home +of the Dakotas, the Ojibways, and the Sioux. Like Michigan and +Wisconsin, it had been explored early by the French scouts, and the +first white settlement was the little French village of Mendota. To the +people of the United States, the resources of the country were first +revealed by the historic journey of Zebulon Pike in 1805 and by American +fur traders who were quick to take advantage of the opportunity to ply +their arts of hunting and bartering in fresh fields. In 1839 an +American settlement was planted at Marina on the St. Croix, the outpost +of advancing civilization. Within twenty years, the territory, boasting +a population of 150,000, asked for admission to the union. In 1858 the +plea was granted and Minnesota showed her gratitude three years later by +being first among the states to offer troops to Lincoln in the hour of +peril. + + +ON TO THE PACIFIC--TEXAS AND THE MEXICAN WAR + +=The Uniformity of the Middle West.=--There was a certain monotony about +pioneering in the Northwest and on the middle border. As the long +stretches of land were cleared or prepared for the plow, they were laid +out like checkerboards into squares of forty, eighty, one hundred sixty, +or more acres, each the seat of a homestead. There was a striking +uniformity also about the endless succession of fertile fields spreading +far and wide under the hot summer sun. No majestic mountains relieved +the sweep of the prairie. Few monuments of other races and antiquity +were there to awaken curiosity about the region. No sonorous bells in +old missions rang out the time of day. The chaffering Red Man bartering +blankets and furs for powder and whisky had passed farther on. The +population was made up of plain farmers and their families engaged in +severe and unbroken labor, chopping down trees, draining fever-breeding +swamps, breaking new ground, and planting from year to year the same +rotation of crops. Nearly all the settlers were of native American stock +into whose frugal and industrious lives the later Irish and German +immigrants fitted, on the whole, with little friction. Even the Dutch +oven fell before the cast-iron cooking stove. Happiness and sorrow, +despair and hope were there, but all encompassed by the heavy tedium of +prosaic sameness. + +[Illustration: SANTA BARBARA MISSION] + +=A Contrast in the Far West and Southwest.=--As George Rogers Clark and +Daniel Boone had stirred the snug Americans of the seaboard to seek +their fortunes beyond the Appalachians, so now Kit Carson, James Bowie, +Sam Houston, Davy Crockett, and John C. Fremont were to lead the way +into a new land, only a part of which was under the American flag. The +setting for this new scene in the westward movement was thrown out in a +wide sweep from the headwaters of the Mississippi to the banks of the +Rio Grande; from the valleys of the Sabine and Red rivers to Montana and +the Pacific slope. In comparison with the middle border, this region +presented such startling diversities that only the eye of faith could +foresee the unifying power of nationalism binding its communities with +the older sections of the country. What contrasts indeed! The blue grass +region of Kentucky or the rich, black soil of Illinois--the painted +desert, the home of the sage brush and the coyote! The level prairies of +Iowa--the mighty Rockies shouldering themselves high against the +horizon! The long bleak winters of Wisconsin--California of endless +summer! The log churches of Indiana or Illinois--the quaint missions of +San Antonio, Tucson, and Santa Barbara! The little state of +Delaware--the empire of Texas, one hundred and twenty times its area! +And scattered about through the Southwest were signs of an ancient +civilization--fragments of four-and five-story dwellings, ruined dams, +aqueducts, and broken canals, which told of once prosperous peoples +who, by art and science, had conquered the aridity of the desert and +lifted themselves in the scale of culture above the savages of the +plain. + +The settlers of this vast empire were to be as diverse in their origins +and habits as those of the colonies on the coast had been. Americans of +English, Irish, and Scotch-Irish descent came as usual from the Eastern +states. To them were added the migratory Germans as well. Now for the +first time came throngs of Scandinavians. Some were to make their homes +on quiet farms as the border advanced against the setting sun. Others +were to be Indian scouts, trappers, fur hunters, miners, cowboys, Texas +planters, keepers of lonely posts on the plain and the desert, stage +drivers, pilots of wagon trains, pony riders, fruit growers, "lumber +jacks," and smelter workers. One common bond united them--a passion for +the self-government accorded to states. As soon as a few thousand +settlers came together in a single territory, there arose a mighty shout +for a position beside the staid commonwealths of the East and the South. +Statehood meant to the pioneers self-government, dignity, and the right +to dispose of land, minerals, and timber in their own way. In the quest +for this local autonomy there arose many a wordy contest in Congress, +each of the political parties lending a helping hand in the admission of +a state when it gave promise of adding new congressmen of the "right +political persuasion," to use the current phrase. + +=Southern Planters and Texas.=--While the farmers of the North found the +broad acres of the Western prairies stretching on before them apparently +in endless expanse, it was far different with the Southern planters. +Ever active in their search for new fields as they exhausted the virgin +soil of the older states, the restless subjects of King Cotton quickly +reached the frontier of Louisiana. There they paused; but only for a +moment. The fertile land of Texas just across the boundary lured them on +and the Mexican republic to which it belonged extended to them a more +than generous welcome. Little realizing the perils lurking in a +"peaceful penetration," the authorities at Mexico City opened wide the +doors and made large grants of land to American contractors, who agreed +to bring a number of families into Texas. The omnipresent Yankee, in the +person of Moses Austin of Connecticut, hearing of this good news in the +Southwest, obtained a grant in 1820 to settle three hundred Americans +near Bexar--a commission finally carried out to the letter by his son +and celebrated in the name given to the present capital of the state of +Texas. Within a decade some twenty thousand Americans had crossed the +border. + +=Mexico Closes the Door.=--The government of Mexico, unaccustomed to +such enterprise and thoroughly frightened by its extent, drew back in +dismay. Its fears were increased as quarrels broke out between the +Americans and the natives in Texas. Fear grew into consternation when +efforts were made by President Jackson to buy the territory for the +United States. Mexico then sought to close the flood gates. It stopped +all American colonization schemes, canceled many of the land grants, put +a tariff on farming implements, and abolished slavery. These barriers +were raised too late. A call for help ran through the western border of +the United States. The sentinels of the frontier answered. Davy +Crockett, the noted frontiersman, bear hunter, and backwoods politician; +James Bowie, the dexterous wielder of the knife that to this day bears +his name; and Sam Houston, warrior and pioneer, rushed to the aid of +their countrymen in Texas. Unacquainted with the niceties of diplomacy, +impatient at the formalities of international law, they soon made it +known that in spite of Mexican sovereignty they would be their own +masters. + +=The Independence of Texas Declared.=--Numbering only about one-fourth +of the population in Texas, they raised the standard of revolt in 1836 +and summoned a convention. Following in the footsteps of their +ancestors, they issued a declaration of independence signed mainly by +Americans from the slave states. Anticipating that the government of +Mexico would not quietly accept their word of defiance as final, they +dispatched a force to repel "the invading army," as General Houston +called the troops advancing under the command of Santa Ana, the Mexican +president. A portion of the Texan soldiers took their stand in the +Alamo, an old Spanish mission in the cottonwood trees in the town of San +Antonio. Instead of obeying the order to blow up the mission and retire, +they held their ground until they were completely surrounded and cut off +from all help. Refusing to surrender, they fought to the bitter end, the +last man falling a victim to the sword. Vengeance was swift. Within +three months General Houston overwhelmed Santa Ana at the San Jacinto, +taking him prisoner of war and putting an end to all hopes for the +restoration of Mexican sovereignty over Texas. + +The Lone Star Republic, with Houston at the head, then sought admission +to the United States. This seemed at first an easy matter. All that was +required to bring it about appeared to be a treaty annexing Texas to the +union. Moreover, President Jackson, at the height of his popularity, had +a warm regard for General Houston and, with his usual sympathy for rough +and ready ways of doing things, approved the transaction. Through an +American representative in Mexico, Jackson had long and anxiously +labored, by means none too nice, to wring from the Mexican republic the +cession of the coveted territory. When the Texans took matters into +their own hands, he was more than pleased; but he could not marshal the +approval of two-thirds of the Senators required for a treaty of +annexation. Cautious as well as impetuous, Jackson did not press the +issue; he went out of office in 1837 with Texas uncertain as to her +future. + +=Northern Opposition to Annexation.=--All through the North the +opposition to annexation was clear and strong. Anti-slavery agitators +could hardly find words savage enough to express their feelings. +"Texas," exclaimed Channing in a letter to Clay, "is but the first step +of aggression. I trust indeed that Providence will beat back and humble +our cupidity and ambition. I now ask whether as a people we are +prepared to seize on a neighboring territory for the end of extending +slavery? I ask whether as a people we can stand forth in the sight of +God, in the sight of nations, and adopt this atrocious policy? Sooner +perish! Sooner be our name blotted out from the record of nations!" +William Lloyd Garrison called for the secession of the Northern states +if Texas was brought into the union with slavery. John Quincy Adams +warned his countrymen that they were treading in the path of the +imperialism that had brought the nations of antiquity to judgment and +destruction. Henry Clay, the Whig candidate for President, taking into +account changing public sentiment, blew hot and cold, losing the state +of New York and the election of 1844 by giving a qualified approval of +annexation. In the same campaign, the Democrats boldly demanded the +"Reannexation of Texas," based on claims which the United States once +had to Spanish territory beyond the Sabine River. + +=Annexation.=--The politicians were disposed to walk very warily. Van +Buren, at heart opposed to slavery extension, refused to press the issue +of annexation. Tyler, a pro-slavery Democrat from Virginia, by a strange +fling of fortune carried into office as a nominal Whig, kept his mind +firmly fixed on the idea of reelection and let the troublesome matter +rest until the end of his administration was in sight. He then listened +with favor to the voice of the South. Calhoun stated what seemed to be a +convincing argument: All good Americans have their hearts set on the +Constitution; the admission of Texas is absolutely essential to the +preservation of the union; it will give a balance of power to the South +as against the North growing with incredible swiftness in wealth and +population. Tyler, impressed by the plea, appointed Calhoun to the +office of Secretary of State in 1844, authorizing him to negotiate the +treaty of annexation--a commission at once executed. This scheme was +blocked in the Senate where the necessary two-thirds vote could not be +secured. Balked but not defeated, the advocates of annexation drew up a +joint resolution which required only a majority vote in both houses, +and in February of the next year, just before Tyler gave way to Polk, +they pushed it through Congress. So Texas, amid the groans of Boston and +the hurrahs of Charleston, folded up her flag and came into the union. + +[Illustration: TEXAS AND THE TERRITORY IN DISPUTE] + +=The Mexican War.=--The inevitable war with Mexico, foretold by the +abolitionists and feared by Henry Clay, ensued, the ostensible cause +being a dispute over the boundaries of the new state. The Texans claimed +all the lands down to the Rio Grande. The Mexicans placed the border of +Texas at the Nueces River and a line drawn thence in a northerly +direction. President Polk, accepting the Texan view of the controversy, +ordered General Zachary Taylor to move beyond the Nueces in defense of +American sovereignty. This act of power, deemed by the Mexicans an +invasion of their territory, was followed by an attack on our troops. + +President Polk, not displeased with the turn of events, announced that +American blood had been "spilled on American soil" and that war existed +"by the act of Mexico." Congress, in a burst of patriotic fervor, +brushed aside the protests of those who deplored the conduct of the +government as wanton aggression on a weaker nation and granted money and +supplies to prosecute the war. The few Whigs in the House of +Representatives, who refused to vote in favor of taking up arms, +accepted the inevitable with such good grace as they could command. All +through the South and the West the war was popular. New England +grumbled, but gave loyal, if not enthusiastic, support to a conflict +precipitated by policies not of its own choosing. Only a handful of firm +objectors held out. James Russell Lowell, in his _Biglow Papers_, flung +scorn and sarcasm to the bitter end. + +=The Outcome of the War.=--The foregone conclusion was soon reached. +General Taylor might have delivered the fatal thrust from northern +Mexico if politics had not intervened. Polk, anxious to avoid raising up +another military hero for the Whigs to nominate for President, decided +to divide the honors by sending General Scott to strike a blow at the +capital, Mexico City. The deed was done with speed and pomp and two +heroes were lifted into presidential possibilities. In the Far West a +third candidate was made, John C. Fremont, who, in cooperation with +Commodores Sloat and Stockton and General Kearney, planted the Stars and +Stripes on the Pacific slope. + +In February, 1848, the Mexicans came to terms, ceding to the victor +California, Arizona, New Mexico, and more--a domain greater in extent +than the combined areas of France and Germany. As a salve to the wound, +the vanquished received fifteen million dollars in cash and the +cancellation of many claims held by American citizens. Five years later, +through the negotiations of James Gadsden, a further cession of lands +along the southern border of Arizona and New Mexico was secured on +payment of ten million dollars. + +=General Taylor Elected President.=--The ink was hardly dry upon the +treaty that closed the war before "rough and ready" General Taylor, a +slave owner from Louisiana, "a Whig," as he said, "but not an ultra +Whig," was put forward as the Whig candidate for President. He himself +had not voted for years and he was fairly innocent in matters political. +The tariff, the currency, and internal improvements, with a magnificent +gesture he referred to the people's representatives in Congress, +offering to enforce the laws as made, if elected. Clay's followers +mourned. Polk stormed but could not win even a renomination at the hands +of the Democrats. So it came about that the hero of Buena Vista, +celebrated for his laconic order, "Give 'em a little more grape, Captain +Bragg," became President of the United States. + + +THE PACIFIC COAST AND UTAH + +=Oregon.=--Closely associated in the popular mind with the contest about +the affairs of Texas was a dispute with Great Britain over the +possession of territory in Oregon. In their presidential campaign of +1844, the Democrats had coupled with the slogan, "The Reannexation of +Texas," two other cries, "The Reoccupation of Oregon," and "Fifty-four +Forty or Fight." The last two slogans were founded on American +discoveries and explorations in the Far Northwest. Their appearance in +politics showed that the distant Oregon country, larger in area than New +England, New York, and Pennsylvania combined, was at last receiving from +the nation the attention which its importance warranted. + +_Joint Occupation and Settlement._--Both England and the United States +had long laid claim to Oregon and in 1818 they had agreed to occupy the +territory jointly--a contract which was renewed ten years later for an +indefinite period. Under this plan, citizens of both countries were free +to hunt and settle anywhere in the region. The vanguard of British fur +traders and Canadian priests was enlarged by many new recruits, with +Americans not far behind them. John Jacob Astor, the resourceful New +York merchant, sent out trappers and hunters who established a trading +post at Astoria in 1811. Some twenty years later, American +missionaries--among them two very remarkable men, Jason Lee and Marcus +Whitman--were preaching the gospel to the Indians. + +Through news from the fur traders and missionaries, Eastern farmers +heard of the fertile lands awaiting their plows on the Pacific slope; +those with the pioneering spirit made ready to take possession of the +new country. In 1839 a band went around by Cape Horn. Four years later a +great expedition went overland. The way once broken, others followed +rapidly. As soon as a few settlements were well established, the +pioneers held a mass meeting and agreed upon a plan of government. "We, +the people of Oregon territory," runs the preamble to their compact, +"for the purposes of mutual protection and to secure peace and +prosperity among ourselves, agree to adopt the following laws and +regulations until such time as the United States of America extend their +jurisdiction over us." Thus self-government made its way across the +Rocky Mountains. + +[Illustration: THE OREGON COUNTRY AND THE DISPUTED BOUNDARY] + +_The Boundary Dispute with England Adjusted._--By this time it was +evident that the boundaries of Oregon must be fixed. Having made the +question an issue in his campaign, Polk, after his election in 1844, +pressed it upon the attention of the country. In his inaugural address +and his first message to Congress he reiterated the claim of the +Democratic platform that "our title to the whole territory of Oregon is +clear and unquestionable." This pretension Great Britain firmly +rejected, leaving the President a choice between war and compromise. + +Polk, already having the contest with Mexico on his hands, sought and +obtained a compromise. The British government, moved by a hint from the +American minister, offered a settlement which would fix the boundary at +the forty-ninth parallel instead of "fifty-four forty," and give it +Vancouver Island. Polk speedily chose this way out of the dilemma. +Instead of making the decision himself, however, and drawing up a +treaty, he turned to the Senate for "counsel." As prearranged with party +leaders, the advice was favorable to the plan. The treaty, duly drawn in +1846, was ratified by the Senate after an acrimonious debate. "Oh! +mountain that was delivered of a mouse," exclaimed Senator Benton, "thy +name shall be fifty-four forty!" Thirteen years later, the southern part +of the territory was admitted to the union as the state of Oregon, +leaving the northern and eastern sections in the status of a territory. + +=California.=--With the growth of the northwestern empire, dedicated by +nature to freedom, the planting interests might have been content, had +fortune not wrested from them the fair country of California. Upon this +huge territory they had set their hearts. The mild climate and fertile +soil seemed well suited to slavery and the planters expected to extend +their sway to the entire domain. California was a state of more than +155,000 square miles--about seventy times the size of the state of +Delaware. It could readily be divided into five or six large states, if +that became necessary to preserve the Southern balance of power. + +_Early American Relations with California._--Time and tide, it seems, +were not on the side of the planters. Already Americans of a far +different type were invading the Pacific slope. Long before Polk ever +dreamed of California, the Yankee with his cargo of notions had been +around the Horn. Daring skippers had sailed out of New England harbors +with a variety of goods, bent their course around South America to +California, on to China and around the world, trading as they went and +leaving pots, pans, woolen cloth, guns, boots, shoes, salt fish, naval +stores, and rum in their wake. "Home from Californy!" rang the cry in +many a New England port as a good captain let go his anchor on his +return from the long trading voyage in the Pacific. + +[Illustration: THE OVERLAND TRAILS] + +_The Overland Trails._--Not to be outdone by the mariners of the deep, +western scouts searched for overland routes to the Pacific. Zebulon +Pike, explorer and pathfinder, by his expedition into the Southwest +during Jefferson's administration, had discovered the resources of New +Spain and had shown his countrymen how easy it was to reach Santa Fe +from the upper waters of the Arkansas River. Not long afterward, traders +laid open the route, making Franklin, Missouri, and later Fort +Leavenworth the starting point. Along the trail, once surveyed, poured +caravans heavily guarded by armed men against marauding Indians. Sand +storms often wiped out all signs of the route; hunger and thirst did +many a band of wagoners to death; but the lure of the game and the +profits at the end kept the business thriving. Huge stocks of cottons, +glass, hardware, and ammunition were drawn almost across the continent +to be exchanged at Santa Fe for furs, Indian blankets, silver, and +mules; and many a fortune was made out of the traffic. + +_Americans in California._--Why stop at Santa Fe? The question did not +long remain unanswered. In 1829, Ewing Young broke the path to Los +Angeles. Thirteen years later Fremont made the first of his celebrated +expeditions across plain, desert, and mountain, arousing the interest of +the entire country in the Far West. In the wake of the pathfinders went +adventurers, settlers, and artisans. By 1847, more than one-fifth of the +inhabitants in the little post of two thousand on San Francisco Bay were +from the United States. The Mexican War, therefore, was not the +beginning but the end of the American conquest of California--a conquest +initiated by Americans who went to till the soil, to trade, or to follow +some mechanical pursuit. + +_The Discovery of Gold._--As if to clinch the hold on California already +secured by the friends of free soil, there came in 1848 the sudden +discovery of gold at Sutter's Mill in the Sacramento Valley. When this +exciting news reached the East, a mighty rush began to California, over +the trails, across the Isthmus of Panama, and around Cape Horn. Before +two years had passed, it is estimated that a hundred thousand people, in +search of fortunes, had arrived in California--mechanics, teachers, +doctors, lawyers, farmers, miners, and laborers from the four corners of +the earth. + +[Illustration: _From an old print_ + +SAN FRANCISCO IN 1849] + +_California a Free State._--With this increase in population there +naturally resulted the usual demand for admission to the union. Instead +of waiting for authority from Washington, the Californians held a +convention in 1849 and framed their constitution. With impatience, the +delegates brushed aside the plea that "the balance of power between the +North and South" required the admission of their state as a slave +commonwealth. Without a dissenting voice, they voted in favor of freedom +and boldly made their request for inclusion among the United States. +President Taylor, though a Southern man, advised Congress to admit the +applicant. Robert Toombs of Georgia vowed to God that he preferred +secession. Henry Clay, the great compromiser, came to the rescue and in +1850 California was admitted as a free state. + +=Utah.=--On the long road to California, in the midst of forbidding and +barren wastes, a religious sect, the Mormons, had planted a colony +destined to a stormy career. Founded in 1830 under the leadership of +Joseph Smith of New York, the sect had suffered from many cruel buffets +of fortune. From Ohio they had migrated into Missouri where they were +set upon and beaten. Some of them were murdered by indignant neighbors. +Harried out of Missouri, they went into Illinois only to see their +director and prophet, Smith, first imprisoned by the authorities and +then shot by a mob. Having raised up a cloud of enemies on account of +both their religious faith and their practice of allowing a man to have +more than one wife, they fell in heartily with the suggestion of a new +leader, Brigham Young, that they go into the Far West beyond the plains +of Kansas--into the forlorn desert where the wicked would cease from +troubling and the weary could be at rest, as they read in the Bible. In +1847, Young, with a company of picked men, searched far and wide until +he found a suitable spot overlooking the Salt Lake Valley. Returning to +Illinois, he gathered up his followers, now numbering several thousand, +and in one mighty wagon caravan they all went to their distant haven. + +_Brigham Young and His Economic System._--In Brigham Young the Mormons +had a leader of remarkable power who gave direction to the redemption of +the arid soil, the management of property, and the upbuilding of +industry. He promised them to make the desert blossom as the rose, and +verily he did it. He firmly shaped the enterprise of the colony along +co-operative lines, holding down the speculator and profiteer with one +hand and giving encouragement to the industrious poor with the other. +With the shrewdness befitting a good business man, he knew how to draw +the line between public and private interest. Land was given outright to +each family, but great care was exercised in the distribution so that +none should have great advantage over another. The purchase of supplies +and the sale of produce were carried on through a cooperative store, the +profits of which went to the common good. Encountering for the first +time in the history of the Anglo-Saxon race the problem of aridity, the +Mormons surmounted the most perplexing obstacles with astounding skill. +They built irrigation works by cooperative labor and granted water +rights to all families on equitable terms. + +_The Growth of Industries._--Though farming long remained the major +interest of the colony, the Mormons, eager to be self-supporting in +every possible way, bent their efforts also to manufacturing and later +to mining. Their missionaries, who hunted in the highways and byways of +Europe for converts, never failed to stress the economic advantages of +the sect. "We want," proclaimed President Young to all the earth, "a +company of woolen manufacturers to come with machinery and take the wool +from the sheep and convert it into the best clothes. We want a company +of potters; we need them; the clay is ready and the dishes wanted.... We +want some men to start a furnace forthwith; the iron, coal, and molders +are waiting.... We have a printing press and any one who can take good +printing and writing paper to the Valley will be a blessing to +themselves and the church." Roads and bridges were built; millions were +spent in experiments in agriculture and manufacturing; missionaries at a +huge cost were maintained in the East and in Europe; an army was kept +for defense against the Indians; and colonies were planted in the +outlying regions. A historian of Deseret, as the colony was called by +the Mormons, estimated in 1895 that by the labor of their hands the +people had produced nearly half a billion dollars in wealth since the +coming of the vanguard. + +_Polygamy Forbidden._--The hope of the Mormons that they might forever +remain undisturbed by outsiders was soon dashed to earth, for hundreds +of farmers and artisans belonging to other religious sects came to +settle among them. In 1850 the colony was so populous and prosperous +that it was organized into a territory of the United States and brought +under the supervision of the federal government. Protests against +polygamy were raised in the colony and at the seat of authority three +thousand miles away at Washington. The new Republican party in 1856 +proclaimed it "the right and duty of Congress to prohibit in the +Territories those twin relics of barbarism, polygamy and slavery." In +due time the Mormons had to give up their marriage practices which were +condemned by the common opinion of all western civilization; but they +kept their religious faith. Monuments to their early enterprise are seen +in the Temple and the Tabernacle, the irrigation works, and the great +wealth of the Church. + + +SUMMARY OF WESTERN DEVELOPMENT AND NATIONAL POLITICS + +While the statesmen of the old generation were solving the problems of +their age, hunters, pioneers, and home seekers were preparing new +problems beyond the Alleghanies. The West was rising in population and +wealth. Between 1783 and 1829, eleven states were added to the original +thirteen. All but two were in the West. Two of them were in the +Louisiana territory beyond the Mississippi. Here the process of +colonization was repeated. Hardy frontier people cut down the forests, +built log cabins, laid out farms, and cut roads through the wilderness. +They began a new civilization just as the immigrants to Virginia or +Massachusetts had done two centuries earlier. + +Like the seaboard colonists before them, they too cherished the spirit +of independence and power. They had not gone far upon their course +before they resented the monopoly of the presidency by the East. In 1829 +they actually sent one of their own cherished leaders, Andrew Jackson, +to the White House. Again in 1840, in 1844, in 1848, and in 1860, the +Mississippi Valley could boast that one of its sons had been chosen for +the seat of power at Washington. Its democratic temper evoked a cordial +response in the towns of the East where the old aristocracy had been put +aside and artisans had been given the ballot. + +For three decades the West occupied the interest of the nation. Under +Jackson's leadership, it destroyed the second United States Bank. When +he smote nullification in South Carolina, it gave him cordial support. +It approved his policy of parceling out government offices among party +workers--"the spoils system" in all its fullness. On only one point did +it really dissent. The West heartily favored internal improvements, the +appropriation of federal funds for highways, canals, and railways. +Jackson had misgivings on this question and awakened sharp criticism by +vetoing a road improvement bill. + +From their point of vantage on the frontier, the pioneers pressed on +westward. They pushed into Texas, created a state, declared their +independence, demanded a place in the union, and precipitated a war with +Mexico. They crossed the trackless plain and desert, laying out trails +to Santa Fe, to Oregon, and to California. They were upon the scene when +the Mexican War brought California under the Stars and Stripes. They had +laid out their farms in the Willamette Valley when the slogan +"Fifty-Four Forty or Fight" forced a settlement of the Oregon boundary. +California and Oregon were already in the union when there arose the +Great Civil War testing whether this nation or any nation so conceived +and so dedicated could long endure. + + +=References= + +G.P. Brown, _Westward Expansion_ (American Nation Series). + + +K. Coman, _Economic Beginnings of the Far West_ (2 vols.). + +F. Parkman, _California and the Oregon Trail_. + +R.S. Ripley, _The War with Mexico_. + +W.C. Rives, _The United States and Mexico, 1821-48_ (2 vols.). + + +=Questions= + +1. Give some of the special features in the history of Missouri, +Arkansas, Michigan, Wisconsin, Iowa, and Minnesota. + +2. Contrast the climate and soil of the Middle West and the Far West. + +3. How did Mexico at first encourage American immigration? + +4. What produced the revolution in Texas? Who led in it? + +5. Narrate some of the leading events in the struggle over annexation to +the United States. + +6. What action by President Polk precipitated war? + +7. Give the details of the peace settlement with Mexico. + +8. What is meant by the "joint occupation" of Oregon? + +9. How was the Oregon boundary dispute finally settled? + +10. Compare the American "invasion" of California with the migration +into Texas. + +11. Explain how California became a free state. + +12. Describe the early economic policy of the Mormons. + + +=Research Topics= + +=The Independence of Texas.=--McMaster, _History of the People of the +United States_, Vol. VI, pp. 251-270. Woodrow Wilson, _History of the +American People_, Vol. IV, pp. 102-126. + +=The Annexation of Texas.=--McMaster, Vol. VII. The passages on +annexation are scattered through this volume and it is an exercise in +ingenuity to make a connected story of them. Source materials in Hart, +_American History Told by Contemporaries_, Vol. III, pp. 637-655; Elson, +_History of the United States_, pp. 516-521, 526-527. + +=The War with Mexico.=--Elson, pp. 526-538. + +=The Oregon Boundary Dispute.=--Schafer, _History of the Pacific +Northwest_ (rev. ed.), pp. 88-104; 173-185. + +=The Migration to Oregon.=--Schafer, pp. 105-172. Coman, _Economic +Beginnings of the Far West_, Vol. II, pp. 113-166. + +=The Santa Fe Trail.=--Coman, _Economic Beginnings_, Vol. II, pp. 75-93. + +=The Conquest of California.=--Coman, Vol. II, pp. 297-319. + +=Gold in California.=--McMaster, Vol. VII, pp. 585-614. + +=The Mormon Migration.=--Coman, Vol. II, pp. 167-206. + +=Biographical Studies.=--Fremont, Generals Scott and Taylor, Sam +Houston, and David Crockett. + +=The Romance of Western Exploration.=--J.G. Neihardt, _The Splendid +Wayfaring_. J.G. Neihardt, _The Song of Hugh Glass_. + + + + +PART V. SECTIONAL CONFLICT AND RECONSTRUCTION + + + + +CHAPTER XIII + +THE RISE OF THE INDUSTRIAL SYSTEM + + +If Jefferson could have lived to see the Stars and Stripes planted on +the Pacific Coast, the broad empire of Texas added to the planting +states, and the valley of the Willamette waving with wheat sown by +farmers from New England, he would have been more than fortified in his +faith that the future of America lay in agriculture. Even a stanch old +Federalist like Gouverneur Morris or Josiah Quincy would have mournfully +conceded both the prophecy and the claim. Manifest destiny never seemed +more clearly written in the stars. + +As the farmers from the Northwest and planters from the Southwest poured +in upon the floor of Congress, the party of Jefferson, christened anew +by Jackson, grew stronger year by year. Opponents there were, no doubt, +disgruntled critics and Whigs by conviction; but in 1852 Franklin +Pierce, the Democratic candidate for President, carried every state in +the union except Massachusetts, Vermont, Kentucky, and Tennessee. This +victory, a triumph under ordinary circumstances, was all the more +significant in that Pierce was pitted against a hero of the Mexican War, +General Scott, whom the Whigs, hoping to win by rousing the martial +ardor of the voters, had nominated. On looking at the election returns, +the new President calmly assured the planters that "the general +principle of reduction of duties with a view to revenue may now be +regarded as the settled policy of the country." With equal confidence, +he waved aside those agitators who devoted themselves "to the supposed +interests of the relatively few Africans in the United States." Like a +watchman in the night he called to the country: "All's well." + +The party of Hamilton and Clay lay in the dust. + + +THE INDUSTRIAL REVOLUTION + +As pride often goeth before a fall, so sanguine expectation is sometimes +the symbol of defeat. Jackson destroyed the bank. Polk signed the tariff +bill of 1846 striking an effective blow at the principle of protection +for manufactures. Pierce promised to silence the abolitionists. His +successor was to approve a drastic step in the direction of free trade. +Nevertheless all these things left untouched the springs of power that +were in due time to make America the greatest industrial nation on the +earth; namely, vast national resources, business enterprise, inventive +genius, and the free labor supply of Europe. Unseen by the thoughtless, +unrecorded in the diaries of wiseacres, rarely mentioned in the speeches +of statesmen, there was swiftly rising such a tide in the affairs of +America as Jefferson and Hamilton never dreamed of in their little +philosophies. + +=The Inventors.=--Watt and Boulton experimenting with steam in England, +Whitney combining wood and steel into a cotton gin, Fulton and Fitch +applying the steam engine to navigation, Stevens and Peter Cooper trying +out the "iron horse" on "iron highways," Slater building spinning mills +in Pawtucket, Howe attaching the needle to the flying wheel, Morse +spanning a continent with the telegraph, Cyrus Field linking the markets +of the new world with the old along the bed of the Atlantic, McCormick +breaking the sickle under the reaper--these men and a thousand more were +destroying in a mighty revolution of industry the world of the +stagecoach and the tallow candle which Washington and Franklin had +inherited little changed from the age of Caesar. Whitney was to make +cotton king. Watt and Fulton were to make steel and steam masters of the +world. Agriculture was to fall behind in the race for supremacy. + +=Industry Outstrips Planting.=--The story of invention, that tribute to +the triumph of mind over matter, fascinating as a romance, need not be +treated in detail here. The effects of invention on social and political +life, multitudinous and never-ending, form the very warp and woof of +American progress from the days of Andrew Jackson to the latest hour. +Neither the great civil conflict--the clash of two systems--nor the +problems of the modern age can be approached without an understanding of +the striking phases of industrialism. + +[Illustration: A NEW ENGLAND MILL BUILT IN 1793] + +First and foremost among them was the uprush of mills managed by +captains of industry and manned by labor drawn from farms, cities, and +foreign lands. For every planter who cleared a domain in the Southwest +and gathered his army of bondmen about him, there rose in the North a +magician of steam and steel who collected under his roof an army of free +workers. + +In seven league boots this new giant strode ahead of the Southern giant. +Between 1850 and 1859, to use dollars and cents as the measure of +progress, the value of domestic manufactures including mines and +fisheries rose from $1,019,106,616 to $1,900,000,000, an increase of +eighty-six per cent in ten years. In this same period the total +production of naval stores, rice, sugar, tobacco, and cotton, the +staples of the South, went only from $165,000,000, in round figures, to +$204,000,000. At the halfway point of the century, the capital invested +in industry, commerce, and cities far exceeded the value of all the farm +land between the Atlantic and the Pacific; thus the course of economy +had been reversed in fifty years. Tested by figures of production, King +Cotton had shriveled by 1860 to a petty prince in comparison, for each +year the captains of industry turned out goods worth nearly twenty times +all the bales of cotton picked on Southern plantations. Iron, boots and +shoes, and leather goods pouring from Northern mills surpassed in value +the entire cotton output. + +=The Agrarian West Turns to Industry.=--Nor was this vast enterprise +confined to the old Northeast where, as Madison had sagely remarked, +commerce was early dominant. "Cincinnati," runs an official report in +1854, "appears to be a great central depot for ready-made clothing and +its manufacture for the Western markets may be said to be one of the +great trades of that city." There, wrote another traveler, "I heard the +crack of the cattle driver's whip and the hum of the factory: the West +and the East meeting." Louisville and St. Louis were already famous for +their clothing trades and the manufacture of cotton bagging. Five +hundred of the two thousand woolen mills in the country in 1860 were in +the Western states. Of the output of flour and grist mills, which almost +reached in value the cotton crop of 1850, the Ohio Valley furnished a +rapidly growing share. The old home of Jacksonian democracy, where +Federalists had been almost as scarce as monarchists, turned slowly +backward, as the needle to the pole, toward the principle of protection +for domestic industry, espoused by Hamilton and defended by Clay. + +=The Extension of Canals and Railways.=--As necessary to mechanical +industry as steel and steam power was the great market, spread over a +wide and diversified area and knit together by efficient means of +transportation. This service was supplied to industry by the steamship, +which began its career on the Hudson in 1807; by the canals, of which +the Erie opened in 1825 was the most noteworthy; and by the railways, +which came into practical operation about 1830. + +[Illustration: _From an old print_ + +AN EARLY RAILWAY] + +With sure instinct the Eastern manufacturer reached out for the markets +of the Northwest territory where free farmers were producing annually +staggering crops of corn, wheat, bacon, and wool. The two great canal +systems--the Erie connecting New York City with the waterways of the +Great Lakes and the Pennsylvania chain linking Philadelphia with the +headwaters of the Ohio--gradually turned the tide of trade from New +Orleans to the Eastern seaboard. The railways followed the same paths. +By 1860, New York had rail connections with Chicago and St. Louis, one +of the routes running through the Hudson and Mohawk valleys and along +the Great Lakes, the other through Philadelphia and Pennsylvania and +across the rich wheat fields of Ohio, Indiana, and Illinois. Baltimore, +not to be outdone by her two rivals, reached out over the mountains for +the Western trade and in 1857 had trains running into St. Louis. + +In railway enterprise the South took more interest than in canals, and +the friends of that section came to its aid. To offset the magnet +drawing trade away from the Mississippi Valley, lines were built from +the Gulf to Chicago, the Illinois Central part of the project being a +monument to the zeal and industry of a Democrat, better known in +politics than in business, Stephen A. Douglas. The swift movement of +cotton and tobacco to the North or to seaports was of common concern to +planters and manufacturers. Accordingly lines were flung down along the +Southern coast, linking Richmond, Charleston, and Savannah with the +Northern markets. Other lines struck inland from the coast, giving a +rail outlet to the sea for Raleigh, Columbia, Atlanta, Chattanooga, +Nashville, and Montgomery. Nevertheless, in spite of this enterprise, +the mileage of all the Southern states in 1860 did not equal that of +Ohio, Indiana, and Illinois combined. + +=Banking and Finance.=--Out of commerce and manufactures and the +construction and operation of railways came such an accumulation of +capital in the Northern states as merchants of old never imagined. The +banks of the four industrial states of Massachusetts, Connecticut, New +York, and Pennsylvania in 1860 had funds greater than the banks in all +the other states combined. New York City had become the money market of +America, the center to which industrial companies, railway promoters, +farmers, and planters turned for capital to initiate and carry on their +operations. The banks of Louisiana, South Carolina, Georgia, and +Virginia, it is true, had capital far in excess of the banks of the +Northwest; but still they were relatively small compared with the +financial institutions of the East. + +=The Growth of the Industrial Population.=--A revolution of such +magnitude in industry, transport, and finance, overturning as it did the +agrarian civilization of the old Northwest and reaching out to the very +borders of the country, could not fail to bring in its train +consequences of a striking character. Some were immediate and obvious. +Others require a fullness of time not yet reached to reveal their +complete significance. Outstanding among them was the growth of an +industrial population, detached from the land, concentrated in cities, +and, to use Jefferson's phrase, dependent upon "the caprices and +casualties of trade" for a livelihood. This was a result, as the great +Virginian had foreseen, which flowed inevitably from public and private +efforts to stimulate industry as against agriculture. + +[Illustration: LOWELL, MASSACHUSETTS, IN 1838, AN EARLY INDUSTRIAL +TOWN] + +It was estimated in 1860, on the basis of the census figures, that +mechanical production gave employment to 1,100,000 men and 285,000 +women, making, if the average number of dependents upon them be +reckoned, nearly six million people or about one-sixth of the population +of the country sustained from manufactures. "This," runs the official +record, "was exclusive of the number engaged in the production of many +of the raw materials and of the food for manufacturers; in the +distribution of their products, such as merchants, clerks, draymen, +mariners, the employees of railroads, expresses, and steamboats; of +capitalists, various artistic and professional classes, as well as +carpenters, bricklayers, painters, and the members of other mechanical +trades not classed as manufactures. It is safe to assume, then, that +one-third of the whole population is supported, directly, or indirectly, +by manufacturing industry." Taking, however, the number of persons +directly supported by manufactures, namely about six millions, reveals +the astounding fact that the white laboring population, divorced from +the soil, already exceeded the number of slaves on Southern farms and +plantations. + +_Immigration._--The more carefully the rapid growth of the industrial +population is examined, the more surprising is the fact that such an +immense body of free laborers could be found, particularly when it is +recalled to what desperate straits the colonial leaders were put in +securing immigrants,--slavery, indentured servitude, and kidnapping +being the fruits of their necessities. The answer to the enigma is to be +found partly in European conditions and partly in the cheapness of +transportation after the opening of the era of steam navigation. Shrewd +observers of the course of events had long foreseen that a flood of +cheap labor was bound to come when the way was made easy. Some, among +them Chief Justice Ellsworth, went so far as to prophesy that white +labor would in time be so abundant that slavery would disappear as the +more costly of the two labor systems. The processes of nature were aided +by the policies of government in England and Germany. + +_The Coming of the Irish._--The opposition of the Irish people to the +English government, ever furious and irrepressible, was increased in the +mid forties by an almost total failure of the potato crop, the main +support of the peasants. Catholic in religion, they had been compelled +to support a Protestant church. Tillers of the soil by necessity, they +were forced to pay enormous tributes to absentee landlords in England +whose claim to their estates rested upon the title of conquest and +confiscation. Intensely loyal to their race, the Irish were subjected in +all things to the Parliament at London, in which their small minority of +representatives had little influence save in holding a balance of power +between the two contending English parties. To the constant political +irritation, the potato famine added physical distress beyond +description. In cottages and fields and along the highways the victims +of starvation lay dead by the hundreds, the relief which charity +afforded only bringing misery more sharply to the foreground. Those who +were fortunate enough to secure passage money sought escape to America. +In 1844 the total immigration into the United States was less than +eighty thousand; in 1850 it had risen by leaps and bounds to more than +three hundred thousand. Between 1820 and 1860 the immigrants from the +United Kingdom numbered 2,750,000, of whom more than one-half were +Irish. It has been said with a touch of exaggeration that the American +canals and railways of those days were built by the labor of Irishmen. + +_The German Migration._--To political discontent and economic distress, +such as was responsible for the coming of the Irish, may likewise be +traced the source of the Germanic migration. The potato blight that fell +upon Ireland visited the Rhine Valley and Southern Germany at the same +time with results as pitiful, if less extensive. The calamity inflicted +by nature was followed shortly by another inflicted by the despotic +conduct of German kings and princes. In 1848 there had occurred +throughout Europe a popular uprising in behalf of republics and +democratic government. For a time it rode on a full tide of success. +Kings were overthrown, or compelled to promise constitutional +government, and tyrannical ministers fled from their palaces. Then came +reaction. Those who had championed the popular cause were imprisoned, +shot, or driven out of the land. Men of attainments and distinction, +whose sole offense was opposition to the government of kings and +princes, sought an asylum in America, carrying with them to the land of +their adoption the spirit of liberty and democracy. In 1847 over fifty +thousand Germans came to America, the forerunners of a migration that +increased, almost steadily, for many years. The record of 1860 showed +that in the previous twenty years nearly a million and a half had found +homes in the United States. Far and wide they scattered, from the mills +and shops of the seacoast towns to the uttermost frontiers of Wisconsin +and Minnesota. + +_The Labor of Women and Children._--If the industries, canals, and +railways of the country were largely manned by foreign labor, still +important native sources must not be overlooked; above all, the women +and children of the New England textile districts. Spinning and weaving, +by a tradition that runs far beyond the written records of mankind, +belonged to women. Indeed it was the dexterous housewives, spinsters, +and boys and girls that laid the foundations of the textile industry in +America, foundations upon which the mechanical revolution was built. As +the wheel and loom were taken out of the homes to the factories operated +by water power or the steam engine, the women and, to use Hamilton's +phrase, "the children of tender years," followed as a matter of course. +"The cotton manufacture alone employs six thousand persons in Lowell," +wrote a French observer in 1836; "of this number nearly five thousand +are young women from seventeen to twenty-four years of age, the +daughters of farmers from the different New England states." It was not +until after the middle of the century that foreign lands proved to be +the chief source from which workers were recruited for the factories of +New England. It was then that the daughters of the Puritans, outdone by +the competition of foreign labor, both of men and women, left the +spinning jenny and the loom to other hands. + +=The Rise of Organized Labor.=--The changing conditions of American +life, marked by the spreading mill towns of New England, New York, and +Pennsylvania and the growth of cities like Buffalo, Cincinnati, +Louisville, St. Louis, Detroit, and Chicago in the West, naturally +brought changes, as Jefferson had prophesied, in "manners and morals." A +few mechanics, smiths, carpenters, and masons, widely scattered through +farming regions and rural villages, raise no such problems as tens of +thousands of workers collected in one center in daily intercourse, +learning the power of cooperation and union. + +Even before the coming of steam and machinery, in the "good old days" of +handicrafts, laborers in many trades--printers, shoemakers, carpenters, +for example--had begun to draw together in the towns for the advancement +of their interests in the form of higher wages, shorter days, and +milder laws. The shoemakers of Philadelphia, organized in 1794, +conducted a strike in 1799 and held together until indicted seven years +later for conspiracy. During the twenties and thirties, local labor +unions sprang up in all industrial centers and they led almost +immediately to city federations of the several crafts. + +As the thousands who were dependent upon their daily labor for their +livelihood mounted into the millions and industries spread across the +continent, the local unions of craftsmen grew into national craft +organizations bound together by the newspapers, the telegraph, and the +railways. Before 1860 there were several such national trade unions, +including the plumbers, printers, mule spinners, iron molders, and stone +cutters. All over the North labor leaders arose--men unknown to general +history but forceful and resourceful characters who forged links binding +scattered and individual workers into a common brotherhood. An attempt +was even made in 1834 to federate all the crafts into a permanent +national organization; but it perished within three years through lack +of support. Half a century had to elapse before the American Federation +of Labor was to accomplish this task. + +All the manifestations of the modern labor movement had appeared, in +germ at least, by the time the mid-century was reached: unions, labor +leaders, strikes, a labor press, a labor political program, and a labor +political party. In every great city industrial disputes were a common +occurrence. The papers recorded about four hundred in two years, +1853-54, local affairs but forecasting economic struggles in a larger +field. The labor press seems to have begun with the founding of the +_Mechanics' Free Press_ in Philadelphia in 1828 and the establishment of +the New York _Workingman's Advocate_ shortly afterward. These +semi-political papers were in later years followed by regular trade +papers designed to weld together and advance the interests of particular +crafts. Edited by able leaders, these little sheets with limited +circulation wielded an enormous influence in the ranks of the workers. + +=Labor and Politics.=--As for the political program of labor, the main +planks were clear and specific: the abolition of imprisonment for debt, +manhood suffrage in states where property qualifications still +prevailed, free and universal education, laws protecting the safety and +health of workers in mills and factories, abolition of lotteries, repeal +of laws requiring militia service, and free land in the West. + +Into the labor papers and platforms there sometimes crept a note of +hostility to the masters of industry, a sign of bitterness that excited +little alarm while cheap land in the West was open to the discontented. +The Philadelphia workmen, in issuing a call for a local convention, +invited "all those of our fellow citizens who live by their own labor +and none other." In Newcastle county, Delaware, the association of +working people complained in 1830: "The poor have no laws; the laws are +made by the rich and of course for the rich." Here and there an +extremist went to the length of advocating an equal division of wealth +among all the people--the crudest kind of communism. + +Agitation of this character produced in labor circles profound distrust +of both Whigs and Democrats who talked principally about tariffs and +banks; it resulted in attempts to found independent labor parties. In +Philadelphia, Albany, New York City, and New England, labor candidates +were put up for elections in the early thirties and in a few cases were +victorious at the polls. "The balance of power has at length got into +the hands of the working people, where it properly belongs," +triumphantly exclaimed the _Mechanics' Free Press_ of Philadelphia in +1829. But the triumph was illusory. Dissensions appeared in the labor +ranks. The old party leaders, particularly of Tammany Hall, the +Democratic party organization in New York City, offered concessions to +labor in return for votes. Newspapers unsparingly denounced "trade union +politicians" as "demagogues," "levellers," and "rag, tag, and bobtail"; +and some of them, deeming labor unrest the sour fruit of manhood +suffrage, suggested disfranchisement as a remedy. Under the influence +of concessions and attacks the political fever quickly died away, and +the end of the decade left no remnant of the labor political parties. +Labor leaders turned to a task which seemed more substantial and +practical, that of organizing workingmen into craft unions for the +definite purpose of raising wages and reducing hours. + + +THE INDUSTRIAL REVOLUTION AND NATIONAL POLITICS + +=Southern Plans for Union with the West.=--It was long the design of +Southern statesmen like Calhoun to hold the West and the South together +in one political party. The theory on which they based their hope was +simple. Both sections were agricultural--the producers of raw materials +and the buyers of manufactured goods. The planters were heavy purchasers +of Western bacon, pork, mules, and grain. The Mississippi River and its +tributaries formed the natural channel for the transportation of heavy +produce southward to the plantations and outward to Europe. Therefore, +ran their political reasoning, the interests of the two sections were +one. By standing together in favor of low tariffs, they could buy their +manufactures cheaply in Europe and pay for them in cotton, tobacco, and +grain. The union of the two sections under Jackson's management seemed +perfect. + +=The East Forms Ties with the West.=--Eastern leaders were not blind to +the ambitions of Southern statesmen. On the contrary, they also +recognized the importance of forming strong ties with the agrarian West +and drawing the produce of the Ohio Valley to Philadelphia and New York. +The canals and railways were the physical signs of this economic union, +and the results, commercial and political, were soon evident. By the +middle of the century, Southern economists noted the change, one of +them, De Bow, lamenting that "the great cities of the North have +severally penetrated the interior with artificial lines until they have +taken from the open and untaxed current of the Mississippi the commerce +produced on its borders." To this writer it was an astounding thing to +behold "the number of steamers that now descend the upper Mississippi +River, loaded to the guards with produce, as far as the mouth of the +Illinois River and then turn up that stream with their cargoes to be +shipped to New York _via_ Chicago. The Illinois canal has not only swept +the whole produce along the line of the Illinois River to the East, but +it is drawing the products of the upper Mississippi through the same +channel; thus depriving New Orleans and St. Louis of a rich portion of +their former trade." + +If to any shippers the broad current of the great river sweeping down to +New Orleans offered easier means of physical communication to the sea +than the canals and railways, the difference could be overcome by the +credit which Eastern bankers were able to extend to the grain and +produce buyers, in the first instance, and through them to the farmers +on the soil. The acute Southern observer just quoted, De Bow, admitted +with evident regret, in 1852, that "last autumn, the rich regions of +Ohio, Indiana, and Illinois were flooded with the local bank notes of +the Eastern States, advanced by the New York houses on produce to be +shipped by way of the canals in the spring.... These moneyed facilities +enable the packer, miller, and speculator to hold on to their produce +until the opening of navigation in the spring and they are no longer +obliged, as formerly, to hurry off their shipments during the winter by +the way of New Orleans in order to realize funds by drafts on their +shipments. The banking facilities at the East are doing as much to draw +trade from us as the canals and railways which Eastern capital is +constructing." Thus canals, railways, and financial credit were swiftly +forging bonds of union between the old home of Jacksonian Democracy in +the West and the older home of Federalism in the East. The nationalism +to which Webster paid eloquent tribute became more and more real with +the passing of time. The self-sufficiency of the pioneer was broken down +as he began to watch the produce markets of New York and Philadelphia +where the prices of corn and hogs fixed his earnings for the year. + +=The West and Manufactures.=--In addition to the commercial bonds +between the East and the West there was growing up a common interest in +manufactures. As skilled white labor increased in the Ohio Valley, the +industries springing up in the new cities made Western life more like +that of the industrial East than like that of the planting South. +Moreover, the Western states produced some important raw materials for +American factories, which called for protection against foreign +competition, notably, wool, hemp, and flax. As the South had little or +no foreign competition in cotton and tobacco, the East could not offer +protection for her raw materials in exchange for protection for +industries. With the West, however, it became possible to establish +reciprocity in tariffs; that is, for example, to trade a high rate on +wool for a high rate on textiles or iron. + +=The South Dependent on the North.=--While East and West were drawing +together, the distinctions between North and South were becoming more +marked; the latter, having few industries and producing little save raw +materials, was being forced into the position of a dependent section. As +a result of the protective tariff, Southern planters were compelled to +turn more and more to Northern mills for their cloth, shoes, hats, hoes, +plows, and machinery. Nearly all the goods which they bought in Europe +in exchange for their produce came overseas to Northern ports, whence +transshipments were made by rail and water to Southern points of +distribution. Their rice, cotton, and tobacco, in as far as they were +not carried to Europe in British bottoms, were transported by Northern +masters. In these ways, a large part of the financial operations +connected with the sale of Southern produce and the purchase of goods in +exchange passed into the hands of Northern merchants and bankers who, +naturally, made profits from their transactions. Finally, Southern +planters who wanted to buy more land and more slaves on credit borrowed +heavily in the North where huge accumulations made the rates of interest +lower than the smaller banks of the South could afford. + +=The South Reckons the Cost of Economic Dependence.=--As Southern +dependence upon Northern capital became more and more marked, Southern +leaders began to chafe at what they regarded as restraints laid upon +their enterprise. In a word, they came to look upon the planter as a +tribute-bearer to the manufacturer and financier. "The South," +expostulated De Bow, "stands in the attitude of feeding ... a vast +population of [Northern] merchants, shipowners, capitalists, and others +who, without claims on her progeny, drink up the life blood of her +trade.... Where goes the value of our labor but to those who, taking +advantage of our folly, ship for us, buy for us, sell to us, and, after +turning our own capital to their profitable account, return laden with +our money to enjoy their easily earned opulence at home." + +Southern statisticians, not satisfied with generalities, attempted to +figure out how great was this tribute in dollars and cents. They +estimated that the planters annually lent to Northern merchants the full +value of their exports, a hundred millions or more, "to be used in the +manipulation of foreign imports." They calculated that no less than +forty millions all told had been paid to shipowners in profits. They +reckoned that, if the South were to work up her own cotton, she would +realize from seventy to one hundred millions a year that otherwise went +North. Finally, to cap the climax, they regretted that planters spent +some fifteen millions a year pleasure-seeking in the alluring cities and +summer resorts of the North. + +=Southern Opposition to Northern Policies.=--Proceeding from these +premises, Southern leaders drew the logical conclusion that the entire +program of economic measures demanded in the North was without exception +adverse to Southern interests and, by a similar chain of reasoning, +injurious to the corn and wheat producers of the West. Cheap labor +afforded by free immigration, a protective tariff raising prices of +manufactures for the tiller of the soil, ship subsidies increasing the +tonnage of carrying trade in Northern hands, internal improvements +forging new economic bonds between the East and the West, a national +banking system giving strict national control over the currency as a +safeguard against paper inflation--all these devices were regarded in +the South as contrary to the planting interest. They were constantly +compared with the restrictive measures by which Great Britain more than +half a century before had sought to bind American interests. + +As oppression justified a war for independence once, statesmen argued, +so it can justify it again. "It is curious as it is melancholy and +distressing," came a broad hint from South Carolina, "to see how +striking is the analogy between the colonial vassalage to which the +manufacturing states have reduced the planting states and that which +formerly bound the Anglo-American colonies to the British empire.... +England said to her American colonies: 'You shall not trade with the +rest of the world for such manufactures as are produced in the mother +country.' The manufacturing states say to their Southern colonies: 'You +shall not trade with the rest of the world for such manufactures as we +produce.'" The conclusion was inexorable: either the South must control +the national government and its economic measures, or it must declare, +as America had done four score years before, its political and economic +independence. As Northern mills multiplied, as railways spun their +mighty web over the face of the North, and as accumulated capital rose +into the hundreds of millions, the conviction of the planters and their +statesmen deepened into desperation. + +=Efforts to Start Southern Industries Fail.=--A few of them, seeing the +predominance of the North, made determined efforts to introduce +manufactures into the South. To the leaders who were averse to secession +and nullification this seemed the only remedy for the growing disparity +in the power of the two sections. Societies for the encouragement of +mechanical industries were formed, the investment of capital was sought, +and indeed a few mills were built on Southern soil. The results were +meager. The natural resources, coal and water power, were abundant; but +the enterprise for direction and the skilled labor were wanting. The +stream of European immigration flowed North and West, not South. The +Irish or German laborer, even if he finally made his home in a city, had +before him, while in the North, the alternative of a homestead on +Western land. To him slavery was a strange, if not a repelling, +institution. He did not take to it kindly nor care to fix his home where +it flourished. While slavery lasted, the economy of the South was +inevitably agricultural. While agriculture predominated, leadership with +equal necessity fell to the planting interest. While the planting +interest ruled, political opposition to Northern economy was destined to +grow in strength. + +=The Southern Theory of Sectionalism.=--In the opinion of the statesmen +who frankly represented the planting interest, the industrial system was +its deadly enemy. Their entire philosophy of American politics was +summed up in a single paragraph by McDuffie, a spokesman for South +Carolina: "Owing to the federative character of our government, the +great geographical extent of our territory, and the diversity of the +pursuits of our citizens in different parts of the union, it has so +happened that two great interests have sprung up, standing directly +opposed to each other. One of these consists of those manufactures which +the Northern and Middle states are capable of producing but which, owing +to the high price of labor and the high profits of capital in those +states, cannot hold competition with foreign manufactures without the +aid of bounties, directly or indirectly given, either by the general +government or by the state governments. The other of these interests +consists of the great agricultural staples of the Southern states which +can find a market only in foreign countries and which can be +advantageously sold only in exchange for foreign manufactures which come +in competition with those of the Northern and Middle states.... These +interests then stand diametrically and irreconcilably opposed to each +other. The interest, the pecuniary interest of the Northern +manufacturer, is directly promoted by every increase of the taxes +imposed upon Southern commerce; and it is unnecessary to add that the +interest of the Southern planter is promoted by every diminution of +taxes imposed upon the productions of their industry. If, under these +circumstances, the manufacturers were clothed with the power of imposing +taxes, at their pleasure, upon the foreign imports of the planter, no +doubt would exist in the mind of any man that it would have all the +characteristics of an absolute and unqualified despotism." The economic +soundness of this reasoning, a subject of interesting speculation for +the economist, is of little concern to the historian. The historical +point is that this opinion was widely held in the South and with the +progress of time became the prevailing doctrine of the planting +statesmen. + +Their antagonism was deepened because they also became convinced, on +what grounds it is not necessary to inquire, that the leaders of the +industrial interest thus opposed to planting formed a consolidated +"aristocracy of wealth," bent upon the pursuit and attainment of +political power at Washington. "By the aid of various associated +interests," continued McDuffie, "the manufacturing capitalists have +obtained a complete and permanent control over the legislation of +Congress on this subject [the tariff].... Men confederated together upon +selfish and interested principles, whether in pursuit of the offices or +the bounties of the government, are ever more active and vigilant than +the great majority who act from disinterested and patriotic impulses. +Have we not witnessed it on this floor, sir? Who ever knew the tariff +men to divide on any question affecting their confederated interests?... +The watchword is, stick together, right or wrong upon every question +affecting the common cause. Such, sir, is the concert and vigilance and +such the combinations by which the manufacturing party, acting upon the +interests of some and the prejudices of others, have obtained a decided +and permanent control over public opinion in all the tariff states." +Thus, as the Southern statesman would have it, the North, in matters +affecting national policies, was ruled by a "confederated interest" +which menaced the planting interest. As the former grew in magnitude and +attached to itself the free farmers of the West through channels of +trade and credit, it followed as night the day that in time the planters +would be overshadowed and at length overborne in the struggle of giants. +Whether the theory was sound or not, Southern statesmen believed it and +acted upon it. + + +=References= + +M. Beard, _Short History of the American Labor Movement_. + +E.L. Bogart, _Economic History of the United States_. + +J.R. Commons, _History of Labour in the United States_ (2 vols.). + +E.R. Johnson, _American Railway Transportation_. + +C.D. Wright, _Industrial Evolution of the United States_. + + +=Questions= + +1. What signs pointed to a complete Democratic triumph in 1852? + +2. What is the explanation of the extraordinary industrial progress of +America? + +3. Compare the planting system with the factory system. + +4. In what sections did industry flourish before the Civil War? Why? + +5. Show why transportation is so vital to modern industry and +agriculture. + +6. Explain how it was possible to secure so many people to labor in +American industries. + +7. Trace the steps in the rise of organized labor before 1860. + +8. What political and economic reforms did labor demand? + +9. Why did the East and the South seek closer ties with the West? + +10. Describe the economic forces which were drawing the East and the +West together. + +11. In what way was the South economically dependent upon the North? + +12 State the national policies generally favored in the North and +condemned in the South. + +13. Show how economic conditions in the South were unfavorable to +industry. + +14. Give the Southern explanation of the antagonism between the North +and the South. + + +=Research Topics= + +=The Inventions.=--Assign one to each student. Satisfactory accounts are +to be found in any good encyclopedia, especially the Britannica. + +=River and Lake Commerce.=--Callender, _Economic History of the United +States_, pp. 313-326. + +=Railways and Canals.=--Callender, pp. 326-344; 359-387. Coman, +_Industrial History of the United States_, pp. 216-225. + +=The Growth of Industry, 1815-1840.=--Callender, pp. 459-471. From 1850 +to 1860, Callender, pp. 471-486. + +=Early Labor Conditions.=--Callender, pp. 701-718. + +=Early Immigration.=--Callender, pp. 719-732. + +=Clay's Home Market Theory of the Tariff.=--Callender, pp. 498-503. + +=The New England View of the Tariff.=--Callender, pp. 503-514. + + + + +CHAPTER XIV + +THE PLANTING SYSTEM AND NATIONAL POLITICS + + +James Madison, the father of the federal Constitution, after he had +watched for many days the battle royal in the national convention of +1787, exclaimed that the contest was not between the large and the small +states, but between the commercial North and the planting South. From +the inauguration of Washington to the election of Lincoln the sectional +conflict, discerned by this penetrating thinker, exercised a profound +influence on the course of American politics. It was latent during the +"era of good feeling" when the Jeffersonian Republicans adopted +Federalist policies; it flamed up in the contest between the Democrats +and Whigs. Finally it raged in the angry political quarrel which +culminated in the Civil War. + + +SLAVERY--NORTH AND SOUTH + +=The Decline of Slavery in the North.=--At the time of the adoption of +the Constitution, slavery was lawful in all the Northern states except +Massachusetts. There were almost as many bondmen in New York as in +Georgia. New Jersey had more than Delaware or Tennessee, indeed nearly +as many as both combined. All told, however, there were only about forty +thousand in the North as against nearly seven hundred thousand in the +South. Moreover, most of the Northern slaves were domestic servants, not +laborers necessary to keep mills going or fields under cultivation. + +There was, in the North, a steadily growing moral sentiment against the +system. Massachusetts abandoned it in 1780. In the same year, +Pennsylvania provided for gradual emancipation. New Hampshire, where +there had been only a handful, Connecticut with a few thousand +domestics, and New Jersey early followed these examples. New York, in +1799, declared that all children born of slaves after July 4 of that +year should be free, though held for a term as apprentices; and in 1827 +it swept away the last vestiges of slavery. So with the passing of the +generation that had framed the Constitution, chattel servitude +disappeared in the commercial states, leaving behind only such +discriminations as disfranchisement or high property qualifications on +colored voters. + +=The Growth of Northern Sentiment against Slavery.=--In both sections of +the country there early existed, among those more or less +philosophically inclined, a strong opposition to slavery on moral as +well as economic grounds. In the constitutional convention of 1787, +Gouverneur Morris had vigorously condemned it and proposed that the +whole country should bear the cost of abolishing it. About the same time +a society for promoting the abolition of slavery, under the presidency +of Benjamin Franklin, laid before Congress a petition that serious +attention be given to the emancipation of "those unhappy men who alone +in this land of freedom are degraded into perpetual bondage." When +Congress, acting on the recommendations of President Jefferson, provided +for the abolition of the foreign slave trade on January 1, 1808, several +Northern members joined with Southern members in condemning the system +as well as the trade. Later, colonization societies were formed to +encourage the emancipation of slaves and their return to Africa. James +Madison was president and Henry Clay vice president of such an +organization. + +The anti-slavery sentiment of which these were the signs was +nevertheless confined to narrow circles and bore no trace of bitterness. + +"We consider slavery your calamity, not your crime," wrote a +distinguished Boston clergyman to his Southern brethren, "and we will +share with you the burden of putting an end to it. We will consent that +the public lands shall be appropriated to this object.... I deprecate +everything which sows discord and exasperating sectional animosities." + +=Uncompromising Abolition.=--In a little while the spirit of generosity +was gone. Just as Jacksonian Democracy rose to power there appeared a +new kind of anti-slavery doctrine--the dogmatism of the abolition +agitator. For mild speculation on the evils of the system was +substituted an imperious and belligerent demand for instant +emancipation. If a date must be fixed for its appearance, the year 1831 +may be taken when William Lloyd Garrison founded in Boston his +anti-slavery paper, _The Liberator_. With singleness of purpose and +utter contempt for all opposing opinions and arguments, he pursued his +course of passionate denunciation. He apologized for having ever +"assented to the popular but pernicious doctrine of gradual abolition." +He chose for his motto: "Immediate and unconditional emancipation!" He +promised his readers that he would be "harsh as truth and uncompromising +as justice"; that he would not "think or speak or write with +moderation." Then he flung out his defiant call: "I am in earnest--I +will not equivocate--I will not excuse--I will not retreat a single +inch--and I will be heard.... + + 'Such is the vow I take, so help me God.'" + +Though Garrison complained that "the apathy of the people is enough to +make every statue leap from its pedestal," he soon learned how alive the +masses were to the meaning of his propaganda. Abolition orators were +stoned in the street and hissed from the platform. Their meeting places +were often attacked and sometimes burned to the ground. Garrison himself +was assaulted in the streets of Boston, finding refuge from the angry +mob behind prison bars. Lovejoy, a publisher in Alton, Illinois, for his +willingness to give abolition a fair hearing, was brutally murdered; his +printing press was broken to pieces as a warning to all those who +disturbed the nation's peace of mind. The South, doubly frightened by a +slave revolt in 1831 which ended in the murder of a number of men, +women, and children, closed all discussion of slavery in that section. +"Now," exclaimed Calhoun, "it is a question which admits of neither +concession nor compromise." + +As the opposition hardened, the anti-slavery agitation gathered in force +and intensity. Whittier blew his blast from the New England hills: + + "No slave-hunt in our borders--no pirate on our strand; + No fetters in the Bay State--no slave upon our land." + +Lowell, looking upon the espousal of a great cause as the noblest aim of +his art, ridiculed and excoriated bondage in the South. Those +abolitionists, not gifted as speakers or writers, signed petitions +against slavery and poured them in upon Congress. The flood of them was +so continuous that the House of Representatives, forgetting its +traditions, adopted in 1836 a "gag rule" which prevented the reading of +appeals and consigned them to the waste basket. Not until the Whigs were +in power nearly ten years later was John Quincy Adams able, after a +relentless campaign, to carry a motion rescinding the rule. + +How deep was the impression made upon the country by this agitation for +immediate and unconditional emancipation cannot be measured. If the +popular vote for those candidates who opposed not slavery, but its +extension to the territories, be taken as a standard, it was slight +indeed. In 1844, the Free Soil candidate, Birney, polled 62,000 votes +out of over a million and a half; the Free Soil vote of the next +campaign went beyond a quarter of a million, but the increase was due to +the strength of the leader, Martin Van Buren; four years afterward it +receded to 156,000, affording all the outward signs for the belief that +the pleas of the abolitionist found no widespread response among the +people. Yet the agitation undoubtedly ran deeper than the ballot box. +Young statesmen of the North, in whose hands the destiny of frightful +years was to lie, found their indifference to slavery broken and their +consciences stirred by the unending appeal and the tireless reiteration. +Charles Sumner afterward boasted that he read the _Liberator_ two years +before Wendell Phillips, the young Boston lawyer who cast aside his +profession to take up the dangerous cause. + +=Early Southern Opposition to Slavery.=--In the South, the sentiment +against slavery was strong; it led some to believe that it would also +come to an end there in due time. Washington disliked it and directed in +his will that his own slaves should be set free after the death of his +wife. Jefferson, looking into the future, condemned the system by which +he also lived, saying: "Can the liberties of a nation be thought secure +when we have removed their only firm basis, a conviction in the minds of +the people that their liberties are the gift of God? Are they not to be +violated but with His wrath? Indeed I tremble for my country when I +reflect that God is just; that His justice cannot sleep forever." Nor +did Southern men confine their sentiments to expressions of academic +opinion. They accepted in 1787 the Ordinance which excluded slavery from +the Northwest territory forever and also the Missouri Compromise, which +shut it out of a vast section of the Louisiana territory. + +=The Revolution in the Slave System.=--Among the representatives of +South Carolina and Georgia, however, the anti-slavery views of +Washington and Jefferson were by no means approved; and the drift of +Southern economy was decidedly in favor of extending and perpetuating, +rather than abolishing, the system of chattel servitude. The invention +of the cotton gin and textile machinery created a market for cotton +which the planters, with all their skill and energy, could hardly +supply. Almost every available acre was brought under cotton culture as +the small farmers were driven steadily from the seaboard into the +uplands or to the Northwest. + +The demand for slaves to till the swiftly expanding fields was enormous. +The number of bondmen rose from 700,000 in Washington's day to more than +three millions in 1850. At the same time slavery itself was transformed. +Instead of the homestead where the same family of masters kept the same +families of slaves from generation to generation, came the plantation +system of the Far South and Southwest where masters were ever moving and +ever extending their holdings of lands and slaves. This in turn reacted +on the older South where the raising of slaves for the market became a +regular and highly profitable business. + +[Illustration: _From an old print_ + +JOHN C. CALHOUN] + +=Slavery Defended as a Positive Good.=--As the abolition agitation +increased and the planting system expanded, apologies for slavery became +fainter and fainter in the South. Then apologies were superseded by +claims that slavery was a beneficial scheme of labor control. Calhoun, +in a famous speech in the Senate in 1837, sounded the new note by +declaring slavery "instead of an evil, a good--a positive good." His +reasoning was as follows: in every civilized society one portion of the +community must live on the labor of another; learning, science, and the +arts are built upon leisure; the African slave, kindly treated by his +master and mistress and looked after in his old age, is better off than +the free laborers of Europe; and under the slave system conflicts +between capital and labor are avoided. The advantages of slavery in this +respect, he concluded, "will become more and more manifest, if left +undisturbed by interference from without, as the country advances in +wealth and numbers." + +=Slave Owners Dominate Politics.=--The new doctrine of Calhoun was +eagerly seized by the planters as they came more and more to overshadow +the small farmers of the South and as they beheld the menace of +abolition growing upon the horizon. It formed, as they viewed matters, a +moral defense for their labor system--sound, logical, invincible. It +warranted them in drawing together for the protection of an institution +so necessary, so inevitable, so beneficent. + +Though in 1850 the slave owners were only about three hundred and fifty +thousand in a national population of nearly twenty million whites, they +had an influence all out of proportion to their numbers. They were knit +together by the bonds of a common interest. They had leisure and wealth. +They could travel and attend conferences and conventions. Throughout the +South and largely in the North, they had the press, the schools, and the +pulpits on their side. They formed, as it were, a mighty union for the +protection and advancement of their common cause. Aided by those +mechanics and farmers of the North who stuck by Jacksonian Democracy +through thick and thin, the planters became a power in the federal +government. "We nominate Presidents," exultantly boasted a Richmond +newspaper; "the North elects them." + +This jubilant Southern claim was conceded by William H. Seward, a +Republican Senator from New York, in a speech describing the power of +slavery in the national government. "A party," he said, "is in one sense +a joint stock association, in which those who contribute most direct the +action and management of the concern.... The slaveholders, contributing +in an overwhelming proportion to the strength of the Democratic party, +necessarily dictate and prescribe its policy." He went on: "The +slaveholding class has become the governing power in each of the +slaveholding states and it practically chooses thirty of the sixty-two +members of the Senate, ninety of the two hundred and thirty-three +members of the House of Representatives, and one hundred and five of the +two hundred and ninety-five electors of President and Vice-President of +the United States." Then he considered the slave power in the Supreme +Court. "That tribunal," he exclaimed, "consists of a chief justice and +eight associate justices. Of these, five were called from slave states +and four from free states. The opinions and bias of each of them were +carefully considered by the President and Senate when he was appointed. +Not one of them was found wanting in soundness of politics, according to +the slaveholder's exposition of the Constitution." Such was the Northern +view of the planting interest that, from the arena of national politics, +challenged the whole country in 1860. + +[Illustration: DISTRIBUTION OF SLAVES IN THE SOUTHERN STATES] + + +SLAVERY IN NATIONAL POLITICS + +=National Aspects of Slavery.=--It may be asked why it was that slavery, +founded originally on state law and subject to state government, was +drawn into the current of national affairs. The answer is simple. There +were, in the first place, constitutional reasons. The Congress of the +United States had to make all needful rules for the government of the +territories, the District of Columbia, the forts and other property +under national authority; so it was compelled to determine whether +slavery should exist in the places subject to its jurisdiction. Upon +Congress was also conferred the power of admitting new states; whenever +a territory asked for admission, the issue could be raised as to whether +slavery should be sanctioned or excluded. Under the Constitution, +provision was made for the return of runaway slaves; Congress had the +power to enforce this clause by appropriate legislation. Since the +control of the post office was vested in the federal government, it had +to face the problem raised by the transmission of abolition literature +through the mails. Finally citizens had the right of petition; it +inheres in all free government and it is expressly guaranteed by the +first amendment to the Constitution. It was therefore legal for +abolitionists to present to Congress their petitions, even if they asked +for something which it had no right to grant. It was thus impossible, +constitutionally, to draw a cordon around the slavery issue and confine +the discussion of it to state politics. + +There were, in the second place, economic reasons why slavery was +inevitably drawn into the national sphere. It was the basis of the +planting system which had direct commercial relations with the North and +European countries; it was affected by federal laws respecting tariffs, +bounties, ship subsidies, banking, and kindred matters. The planters of +the South, almost without exception, looked upon the protective tariff +as a tribute laid upon them for the benefit of Northern industries. As +heavy borrowers of money in the North, they were generally in favor of +"easy money," if not paper currency, as an aid in the repayment of their +debts. This threw most of them into opposition to the Whig program for a +United States Bank. All financial aids to American shipping they stoutly +resisted, preferring to rely upon the cheaper service rendered by +English shippers. Internal improvements, those substantial ties that +were binding the West to the East and turning the traffic from New +Orleans to Philadelphia and New York, they viewed with alarm. Free +homesteads from the public lands, which tended to overbalance the South +by building free states, became to them a measure dangerous to their +interests. Thus national economic policies, which could not by any twist +or turn be confined to state control, drew the slave system and its +defenders into the political conflict that centered at Washington. + +=Slavery and the Territories--the Missouri Compromise (1820).=--Though +men continually talked about "taking slavery out of politics," it could +not be done. By 1818 slavery had become so entrenched and the +anti-slavery sentiment so strong, that Missouri's quest for admission +brought both houses of Congress into a deadlock that was broken only by +compromise. The South, having half the Senators, could prevent the +admission of Missouri stripped of slavery; and the North, powerful in +the House of Representatives, could keep Missouri with slavery out of +the union indefinitely. An adjustment of pretensions was the last +resort. Maine, separated from the parent state of Massachusetts, was +brought into the union with freedom and Missouri with bondage. At the +same time it was agreed that the remainder of the vast Louisiana +territory north of the parallel of 36 o 30' should be, like the old +Northwest, forever free; while the southern portion was left to slavery. +In reality this was an immense gain for liberty. The area dedicated to +free farmers was many times greater than that left to the planters. The +principle was once more asserted that Congress had full power to prevent +slavery in the territories. + +[Illustration: THE MISSOURI COMPROMISE] + +=The Territorial Question Reopened by the Wilmot Proviso.=--To the +Southern leaders, the annexation of Texas and the conquest of Mexico +meant renewed security to the planting interest against the increasing +wealth and population of the North. Texas, it was said, could be divided +into four slave states. The new territories secured by the treaty of +peace with Mexico contained the promise of at least three more. Thus, as +each new free soil state knocked for admission into the union, the +South could demand as the price of its consent a new slave state. No +wonder Southern statesmen saw, in the annexation of Texas and the +conquest of Mexico, slavery and King Cotton triumphant--secure for all +time against adverse legislation. Northern leaders were equally +convinced that the Southern prophecy was true. Abolitionists and +moderate opponents of slavery alike were in despair. Texas, they +lamented, would fasten slavery upon the country forevermore. "No living +man," cried one, "will see the end of slavery in the United States!" + +It so happened, however, that the events which, it was thought, would +secure slavery let loose a storm against it. A sign appeared first on +August 6, 1846, only a few months after war was declared on Mexico. On +that day, David Wilmot, a Democrat from Pennsylvania, introduced into +the House of Representatives a resolution to the effect that, as an +express and fundamental condition to the acquisition of any territory +from the republic of Mexico, slavery should be forever excluded from +every part of it. "The Wilmot Proviso," as the resolution was popularly +called, though defeated on that occasion, was a challenge to the South. + +The South answered the challenge. Speaking in the House of +Representatives, Robert Toombs of Georgia boldly declared: "In the +presence of the living God, if by your legislation you seek to drive us +from the territories of California and New Mexico ... I am for +disunion." South Carolina announced that the day for talk had passed and +the time had come to join her sister states "in resisting the +application of the Wilmot Proviso at any and all hazards." A conference, +assembled at Jackson, Mississippi, in the autumn of 1849, called a +general convention of Southern states to meet at Nashville the following +summer. The avowed purpose was to arrest "the course of aggression" and, +if that was not possible, to provide "in the last resort for their +separate welfare by the formation of a compact and union that will +afford protection to their liberties and rights." States that had +spurned South Carolina's plea for nullification in 1832 responded to +this new appeal with alacrity--an augury of the secession to come. + +[Illustration: _From an old print._ + +HENRY CLAY] + +=The Great Debate of 1850.=--The temper of the country was white hot +when Congress convened in December, 1849. It was a memorable session, +memorable for the great men who took part in the debates and memorable +for the grand Compromise of 1850 which it produced. In the Senate sat +for the last time three heroic figures: Webster from the North, Calhoun +from the South, and Clay from a border state. For nearly forty years +these three had been leaders of men. All had grown old and gray in +service. Calhoun was already broken in health and in a few months was to +be borne from the political arena forever. Clay and Webster had but two +more years in their allotted span. + +Experience, learning, statecraft--all these things they now marshaled in +a mighty effort to solve the slavery problem. On January 29, 1850, Clay +offered to the Senate a compromise granting concessions to both sides; +and a few days later, in a powerful oration, he made a passionate appeal +for a union of hearts through mutual sacrifices. Calhoun relentlessly +demanded the full measure of justice for the South: equal rights in the +territories bought by common blood; the return of runaway slaves as +required by the Constitution; the suppression of the abolitionists; and +the restoration of the balance of power between the North and the South. +Webster, in his notable "Seventh of March speech," condemned the Wilmot +Proviso, advocated a strict enforcement of the fugitive slave law, +denounced the abolitionists, and made a final plea for the Constitution, +union, and liberty. This was the address which called forth from +Whittier the poem, "Ichabod," deploring the fall of the mighty one whom +he thought lost to all sense of faith and honor. + +=The Terms of the Compromise of 1850.=--When the debates were closed, +the results were totaled in a series of compromise measures, all of +which were signed in September, 1850, by the new President, Millard +Fillmore, who had taken office two months before on the death of Zachary +Taylor. By these acts the boundaries of Texas were adjusted and the +territory of New Mexico created, subject to the provision that all or +any part of it might be admitted to the union "with or without slavery +as their constitution may provide at the time of their admission." The +Territory of Utah was similarly organized with the same conditions as to +slavery, thus repudiating the Wilmot Proviso without guaranteeing +slavery to the planters. California was admitted as a free state under a +constitution in which the people of the territory had themselves +prohibited slavery. + +The slave trade was abolished in the District of Columbia, but slavery +itself existed as before at the capital of the nation. This concession +to anti-slavery sentiment was more than offset by a fugitive slave law, +drastic in spirit and in letter. It placed the enforcement of its terms +in the hands of federal officers appointed from Washington and so +removed it from the control of authorities locally elected. It provided +that masters or their agents, on filing claims in due form, might +summarily remove their escaped slaves without affording their "alleged +fugitives" the right of trial by jury, the right to witness, the right +to offer any testimony in evidence. Finally, to "put teeth" into the +act, heavy penalties were prescribed for all who obstructed or assisted +in obstructing the enforcement of the law. Such was the Great Compromise +of 1850. + +[Illustration: AN OLD CARTOON REPRESENTING WEBSTER "STEALING CLAY'S +THUNDER"] + +=The Pro-slavery Triumph in the Election of 1852.=--The results of the +election of 1852 seemed to show conclusively that the nation was weary +of slavery agitation and wanted peace. Both parties, Whigs and +Democrats, endorsed the fugitive slave law and approved the Great +Compromise. The Democrats, with Franklin Pierce as their leader, swept +the country against the war hero, General Winfield Scott, on whom the +Whigs had staked their hopes. Even Webster, broken with grief at his +failure to receive the nomination, advised his friends to vote for +Pierce and turned away from politics to meditate upon approaching death. +The verdict of the voters would seem to indicate that for the time +everybody, save a handful of disgruntled agitators, looked upon Clay's +settlement as the last word. "The people, especially the business men of +the country," says Elson, "were utterly weary of the agitation and they +gave their suffrages to the party that promised them rest." The Free +Soil party, condemning slavery as "a sin against God and a crime against +man," and advocating freedom for the territories, failed to carry a +single state. In fact it polled fewer votes than it had four years +earlier--156,000 as against nearly 3,000,000, the combined vote of the +Whigs and Democrats. It is not surprising, therefore, that President +Pierce, surrounded in his cabinet by strong Southern sympathizers, could +promise to put an end to slavery agitation and to crush the abolition +movement in the bud. + +=Anti-slavery Agitation Continued.=--The promise was more difficult to +fulfill than to utter. In fact, the vigorous execution of one measure +included in the Compromise--the fugitive slave law--only made matters +worse. Designed as security for the planters, it proved a powerful +instrument in their undoing. Slavery five hundred miles away on a +Louisiana plantation was so remote from the North that only the +strongest imagination could maintain a constant rage against it. "Slave +catching," "man hunting" by federal officers on the streets of +Philadelphia, New York, Boston, Chicago, or Milwaukee and in the hamlets +and villages of the wide-stretching farm lands of the North was another +matter. It brought the most odious aspects of slavery home to thousands +of men and women who would otherwise have been indifferent to the +system. Law-abiding business men, mechanics, farmers, and women, when +they saw peaceful negroes, who had resided in their neighborhoods +perhaps for years, torn away by federal officers and carried back to +bondage, were transformed into enemies of the law. They helped slaves to +escape; they snatched them away from officers who had captured them; +they broke open jails and carried fugitives off to Canada. + +Assistance to runaway slaves, always more or less common in the North, +was by this time organized into a system. Regular routes, known as +"underground railways," were laid out across the free states into +Canada, and trusted friends of freedom maintained "underground stations" +where fugitives were concealed in the daytime between their long night +journeys. Funds were raised and secret agents sent into the South to +help negroes to flee. One negro woman, Harriet Tubman, "the Moses of her +people," with headquarters at Philadelphia, is accredited with nineteen +invasions into slave territory and the emancipation of three hundred +negroes. Those who worked at this business were in constant peril. One +underground operator, Calvin Fairbank, spent nearly twenty years in +prison for aiding fugitives from justice. Yet perils and prisons did not +stay those determined men and women who, in obedience to their +consciences, set themselves to this lawless work. + +[Illustration: HARRIET BEECHER STOWE] + +From thrilling stories of adventure along the underground railways came +some of the scenes and themes of the novel by Harriet Beecher Stowe, +"Uncle Tom's Cabin," published two years after the Compromise of 1850. +Her stirring tale set forth the worst features of slavery in vivid word +pictures that caught and held the attention of millions of readers. +Though the book was unfair to the South and was denounced as a hideous +distortion of the truth, it was quickly dramatized and played in every +city and town throughout the North. Topsy, Little Eva, Uncle Tom, the +fleeing slave, Eliza Harris, and the cruel slave driver, Simon Legree, +with his baying blood hounds, became living specters in many a home that +sought to bar the door to the "unpleasant and irritating business of +slavery agitation." + + +THE DRIFT OF EVENTS TOWARD THE IRREPRESSIBLE CONFLICT + +=Repeal of the Missouri Compromise.=--To practical men, after all, the +"rub-a-dub" agitation of a few abolitionists, an occasional riot over +fugitive slaves, and the vogue of a popular novel seemed of slight or +transient importance. They could point with satisfaction to the election +returns of 1852; but their very security was founded upon shifting +sands. The magnificent triumph of the pro-slavery Democrats in 1852 +brought a turn in affairs that destroyed the foundations under their +feet. Emboldened by their own strength and the weakness of their +opponents, they now dared to repeal the Missouri Compromise. The leader +in this fateful enterprise was Stephen A. Douglas, Senator from +Illinois, and the occasion for the deed was the demand for the +organization of territorial government in the regions west of Iowa and +Missouri. + +Douglas, like Clay and Webster before him, was consumed by a strong +passion for the presidency, and, to reach his goal, it was necessary to +win the support of the South. This he undoubtedly sought to do when he +introduced on January 4, 1854, a bill organizing the Nebraska territory +on the principle of the Compromise of 1850; namely, that the people in +the territory might themselves decide whether they would have slavery or +not. Unwittingly the avalanche was started. + +After a stormy debate, in which important amendments were forced on +Douglas, the Kansas-Nebraska Bill became a law on May 30, 1854. The +measure created two territories, Kansas and Nebraska, and provided that +they, or territories organized out of them, could come into the union as +states "with or without slavery as their constitutions may prescribe at +the time of their admission." Not content with this, the law went on to +declare the Missouri Compromise null and void as being inconsistent with +the principle of non-intervention by Congress with slavery in the states +and territories. Thus by a single blow the very heart of the continent, +dedicated to freedom by solemn agreement, was thrown open to slavery. A +desperate struggle between slave owners and the advocates of freedom was +the outcome in Kansas. + +If Douglas fancied that the North would receive the overthrow of the +Missouri Compromise in the same temper that it greeted Clay's +settlement, he was rapidly disillusioned. A blast of rage, terrific in +its fury, swept from Maine to Iowa. Staid old Boston hanged him in +effigy with an inscription--"Stephen A. Douglas, author of the infamous +Nebraska bill: the Benedict Arnold of 1854." City after city burned him +in effigy until, as he himself said, he could travel from the Atlantic +coast to Chicago in the light of the fires. Thousands of Whigs and +Free-soil Democrats deserted their parties which had sanctioned or at +least tolerated the Kansas-Nebraska Bill, declaring that the startling +measure showed an evident resolve on the part of the planters to rule +the whole country. A gage of defiance was thrown down to the +abolitionists. An issue was set even for the moderate and timid who had +been unmoved by the agitation over slavery in the Far South. That issue +was whether slavery was to be confined within its existing boundaries or +be allowed to spread without interference, thereby placing the free +states in the minority and surrendering the federal government wholly to +the slave power. + +=The Rise of the Republican Party.=--Events of terrible significance, +swiftly following, drove the country like a ship before a gale straight +into civil war. The Kansas-Nebraska Bill rent the old parties asunder +and called into being the Republican party. While that bill was pending +in Congress, many Northern Whigs and Democrats had come to the +conclusion that a new party dedicated to freedom in the territories must +follow the repeal of the Missouri Compromise. Several places claim to be +the original home of the Republican party; but historians generally +yield it to Wisconsin. At Ripon in that state, a mass meeting of Whigs +and Democrats assembled in February, 1854, and resolved to form a new +party if the Kansas-Nebraska Bill should pass. At a second meeting a +fusion committee representing Whigs, Free Soilers, and Democrats was +formed and the name Republican--the name of Jefferson's old party--was +selected. All over the country similar meetings were held and political +committees were organized. + +When the presidential campaign of 1856 began the Republicans entered the +contest. After a preliminary conference in Pittsburgh in February, they +held a convention in Philadelphia at which was drawn up a platform +opposing the extension of slavery to the territories. John C. Fremont, +the distinguished explorer, was named for the presidency. The results +of the election were astounding as compared with the Free-soil failure +of the preceding election. Prominent men like Longfellow, Washington +Irving, William Cullen Bryant, Ralph Waldo Emerson, and George William +Curtis went over to the new party and 1,341,264 votes were rolled up for +"free labor, free speech, free men, free Kansas, and Fremont." +Nevertheless the victory of the Democrats was decisive. Their candidate, +James Buchanan of Pennsylvania, was elected by a majority of 174 to 114 +electoral votes. + +[Illustration: SLAVE AND FREE SOIL ON EVE OF CIVIL WAR] + +=The Dred Scott Decision (1857).=--In his inaugural, Buchanan vaguely +hinted that in a forthcoming decision the Supreme Court would settle one +of the vital questions of the day. This was a reference to the Dred +Scott case then pending. Scott was a slave who had been taken by his +master into the upper Louisiana territory, where freedom had been +established by the Missouri Compromise, and then carried back into his +old state of Missouri. He brought suit for his liberty on the ground +that his residence in the free territory made him free. This raised the +question whether the law of Congress prohibiting slavery north of 36 o +30' was authorized by the federal Constitution or not. The Court might +have avoided answering it by saying that even though Scott was free in +the territory, he became a slave again in Missouri by virtue of the law +of that state. The Court, however, faced the issue squarely. It held +that Scott had not been free anywhere and that, besides, the Missouri +Compromise violated the Constitution and was null and void. + +The decision was a triumph for the South. It meant that Congress after +all had no power to abolish slavery in the territories. Under the decree +of the highest court in the land, that could be done only by an +amendment to the Constitution which required a two-thirds vote in +Congress and the approval of three-fourths of the states. Such an +amendment was obviously impossible--the Southern states were too +numerous; but the Republicans were not daunted. "We know," said Lincoln, +"the Court that made it has often overruled its own decisions and we +shall do what we can to have it overrule this." Legislatures of Northern +states passed resolutions condemning the decision and the Republican +platform of 1860 characterized the dogma that the Constitution carried +slavery into the territories as "a dangerous political heresy at +variance with the explicit provisions of that instrument itself ... with +legislative and judicial precedent ... revolutionary in tendency and +subversive of the peace and harmony of the country." + +=The Panic of 1857.=--In the midst of the acrimonious dispute over the +Dred Scott decision, came one of the worst business panics which ever +afflicted the country. In the spring and summer of 1857, fourteen +railroad corporations, including the Erie, Michigan Central, and the +Illinois Central, failed to meet their obligations; banks and insurance +companies, some of them the largest and strongest institutions in the +North, closed their doors; stocks and bonds came down in a crash on the +markets; manufacturing was paralyzed; tens of thousands of working +people were thrown out of employment; "hunger meetings" of idle men were +held in the cities and banners bearing the inscription, "We want +bread," were flung out. In New York, working men threatened to invade +the Council Chamber to demand "work or bread," and the frightened mayor +called for the police and soldiers. For this distressing state of +affairs many remedies were offered; none with more zeal and persistence +than the proposal for a higher tariff to take the place of the law of +March, 1857, a Democratic measure making drastic reductions in the rates +of duty. In the manufacturing districts of the North, the panic was +ascribed to the "Democratic assault on business." So an old issue was +again vigorously advanced, preparatory to the next presidential +campaign. + +=The Lincoln-Douglas Debates.=--The following year the interest of the +whole country was drawn to a series of debates held in Illinois by +Lincoln and Douglas, both candidates for the United States Senate. In +the course of his campaign Lincoln had uttered his trenchant saying that +"a house divided against itself cannot stand. I believe this government +cannot endure permanently half slave and half free." At the same time he +had accused Douglas, Buchanan, and the Supreme Court of acting in +concert to make slavery national. This daring statement arrested the +attention of Douglas, who was making his campaign on the doctrine of +"squatter sovereignty;" that is, the right of the people of each +territory "to vote slavery up or down." After a few long-distance shots +at each other, the candidates agreed to meet face to face and discuss +the issues of the day. Never had such crowds been seen at political +meetings in Illinois. Farmers deserted their plows, smiths their forges, +and housewives their baking to hear "Honest Abe" and "the Little Giant." + +The results of the series of debates were momentous. Lincoln clearly +defined his position. The South, he admitted, was entitled under the +Constitution to a fair, fugitive slave law. He hoped that there might be +no new slave states; but he did not see how Congress could exclude the +people of a territory from admission as a state if they saw fit to adopt +a constitution legalizing the ownership of slaves. He favored the +gradual abolition of slavery in the District of Columbia and the total +exclusion of it from the territories of the United States by act of +Congress. + +Moreover, he drove Douglas into a hole by asking how he squared +"squatter sovereignty" with the Dred Scott decision; how, in other +words, the people of a territory could abolish slavery when the Court +had declared that Congress, the superior power, could not do it under +the Constitution? To this baffling question Douglas lamely replied that +the inhabitants of a territory, by "unfriendly legislation," might make +property in slaves insecure and thus destroy the institution. This +answer to Lincoln's query alienated many Southern Democrats who believed +that the Dred Scott decision settled the question of slavery in the +territories for all time. Douglas won the election to the Senate; but +Lincoln, lifted into national fame by the debates, beat him in the +campaign for President two years later. + +=John Brown's Raid.=--To the abolitionists the line of argument pursued +by Lincoln, including his proposal to leave slavery untouched in the +states where it existed, was wholly unsatisfactory. One of them, a grim +and resolute man, inflamed by a hatred for slavery in itself, turned +from agitation to violence. "These men are all talk; what is needed is +action--action!" So spoke John Brown of New York. During the sanguinary +struggle in Kansas he hurried to the frontier, gun and dagger in hand, +to help drive slave owners from the free soil of the West. There he +committed deeds of such daring and cruelty that he was outlawed and a +price put upon his head. Still he kept on the path of "action." Aided by +funds from Northern friends, he gathered a small band of his followers +around him, saying to them: "If God be for us, who can be against us?" +He went into Virginia in the autumn of 1859, hoping, as he explained, +"to effect a mighty conquest even though it be like the last victory of +Samson." He seized the government armory at Harper's Ferry, declared +free the slaves whom he found, and called upon them to take up arms in +defense of their liberty. His was a hope as forlorn as it was desperate. +Armed forces came down upon him and, after a hard battle, captured him. +Tried for treason, Brown was condemned to death. The governor of +Virginia turned a deaf ear to pleas for clemency based on the ground +that the prisoner was simply a lunatic. "This is a beautiful country," +said the stern old Brown glancing upward to the eternal hills on his way +to the gallows, as calmly as if he were returning home from a long +journey. "So perish all such enemies of Virginia. All such enemies of +the Union. All such foes of the human race," solemnly announced the +executioner as he fulfilled the judgment of the law. + +The raid and its grim ending deeply moved the country. Abolitionists +looked upon Brown as a martyr and tolled funeral bells on the day of his +execution. Longfellow wrote in his diary: "This will be a great day in +our history; the date of a new revolution as much needed as the old +one." Jefferson Davis saw in the affair "the invasion of a state by a +murderous gang of abolitionists bent on inciting slaves to murder +helpless women and children"--a crime for which the leader had met a +felon's death. Lincoln spoke of the raid as absurd, the deed of an +enthusiast who had brooded over the oppression of a people until he +fancied himself commissioned by heaven to liberate them--an attempt +which ended in "little else than his own execution." To Republican +leaders as a whole, the event was very embarrassing. They were taunted +by the Democrats with responsibility for the deed. Douglas declared his +"firm and deliberate conviction that the Harper's Ferry crime was the +natural, logical, inevitable result of the doctrines and teachings of +the Republican party." So persistent were such attacks that the +Republicans felt called upon in 1860 to denounce Brown's raid "as among +the gravest of crimes." + +=The Democrats Divided.=--When the Democratic convention met at +Charleston in the spring of 1860, a few months after Brown's execution, +it soon became clear that there was danger ahead. Between the extreme +slavery advocates of the Far South and the so-called pro-slavery +Democrats of the Douglas type, there was a chasm which no appeals to +party loyalty could bridge. As the spokesman of the West, Douglas knew +that, while the North was not abolitionist, it was passionately set +against an extension of slavery into the territories by act of Congress; +that squatter sovereignty was the mildest kind of compromise acceptable +to the farmers whose votes would determine the fate of the election. +Southern leaders would not accept his opinion. Yancey, speaking for +Alabama, refused to palter with any plan not built on the proposition +that slavery was in itself right. He taunted the Northern Democrats with +taking the view that slavery was wrong, but that they could not do +anything about it. That, he said, was the fatal error--the cause of all +discord, the source of "Black Republicanism," as well as squatter +sovereignty. The gauntlet was thus thrown down at the feet of the +Northern delegates: "You must not apologize for slavery; you must +declare it right; you must advocate its extension." The challenge, so +bluntly put, was as bluntly answered. "Gentlemen of the South," +responded a delegate from Ohio, "you mistake us. You mistake us. We will +not do it." + +For ten days the Charleston convention wrangled over the platform and +balloted for the nomination of a candidate. Douglas, though in the lead, +could not get the two-thirds vote required for victory. For more than +fifty times the roll of the convention was called without a decision. +Then in sheer desperation the convention adjourned to meet later at +Baltimore. When the delegates again assembled, their passions ran as +high as ever. The division into two irreconcilable factions was +unchanged. Uncompromising delegates from the South withdrew to Richmond, +nominated John C. Breckinridge of Kentucky for President, and put forth +a platform asserting the rights of slave owners in the territories and +the duty of the federal government to protect them. The delegates who +remained at Baltimore nominated Douglas and endorsed his doctrine of +squatter sovereignty. + +=The Constitutional Union Party.=--While the Democratic party was being +disrupted, a fragment of the former Whig party, known as the +Constitutional Unionists, held a convention at Baltimore and selected +national candidates: John Bell from Tennessee and Edward Everett from +Massachusetts. A melancholy interest attached to this assembly. It was +mainly composed of old men whose political views were those of Clay and +Webster, cherished leaders now dead and gone. In their platform they +sought to exorcise the evil spirit of partisanship by inviting their +fellow citizens to "support the Constitution of the country, the union +of the states, and the enforcement of the laws." The party that +campaigned on this grand sentiment only drew laughter from the Democrats +and derision from the Republicans and polled less than one-fourth the +votes. + +=The Republican Convention.=--With the Whigs definitely forced into a +separate group, the Republican convention at Chicago was fated to be +sectional in character, although five slave states did send delegates. +As the Democrats were split, the party that had led a forlorn hope four +years before was on the high road to success at last. New and powerful +recruits were found. The advocates of a high protective tariff and the +friends of free homesteads for farmers and workingmen mingled with +enthusiastic foes of slavery. While still firm in their opposition to +slavery in the territories, the Republicans went on record in favor of a +homestead law granting free lands to settlers and approved customs +duties designed "to encourage the development of the industrial +interests of the whole country." The platform was greeted with cheers +which, according to the stenographic report of the convention, became +loud and prolonged as the protective tariff and homestead planks were +read. + +Having skillfully drawn a platform to unite the North in opposition to +slavery and the planting system, the Republicans were also adroit in +their selection of a candidate. The tariff plank might carry +Pennsylvania, a Democratic state; but Ohio, Indiana, and Illinois were +equally essential to success at the polls. The southern counties of +these states were filled with settlers from Virginia, North Carolina, +and Kentucky who, even if they had no love for slavery, were no friends +of abolition. Moreover, remembering the old fight on the United States +Bank in Andrew Jackson's day, they were suspicious of men from the East. +Accordingly, they did not favor the candidacy of Seward, the leading +Republican statesman and "favorite son" of New York. + +After much trading and discussing, the convention came to the conclusion +that Abraham Lincoln of Illinois was the most "available" candidate. He +was of Southern origin, born in Kentucky in 1809, a fact that told +heavily in the campaign in the Ohio Valley. He was a man of the soil, +the son of poor frontier parents, a pioneer who in his youth had labored +in the fields and forests, celebrated far and wide as "honest Abe, the +rail-splitter." It was well-known that he disliked slavery, but was no +abolitionist. He had come dangerously near to Seward's radicalism in his +"house-divided-against-itself" speech but he had never committed himself +to the reckless doctrine that there was a "higher law" than the +Constitution. Slavery in the South he tolerated as a bitter fact; +slavery in the territories he opposed with all his strength. Of his +sincerity there could be no doubt. He was a speaker and writer of +singular power, commanding, by the use of simple and homely language, +the hearts and minds of those who heard him speak or read his printed +words. He had gone far enough in his opposition to slavery; but not too +far. He was the man of the hour! Amid lusty cheers from ten thousand +throats, Lincoln was nominated for the presidency by the Republicans. In +the ensuing election, he carried all the free states except New Jersey. + + +=References= + +P.E. Chadwick, _Causes of the Civil War_ (American Nation Series). + +W.E. Dodd, _Statesmen of the Old South_. + +E. Engle, _Southern Sidelights_ (Sympathetic account of the Old South). + +A.B. Hart, _Slavery and Abolition_ (American Nation Series). + +J.F. Rhodes, _History of the United States_, Vols. I and II. + +T.C. Smith, _Parties and Slavery_ (American Nation Series). + + +=Questions= + +1. Trace the decline of slavery in the North and explain it. + +2. Describe the character of early opposition to slavery. + +3. What was the effect of abolition agitation? + +4. Why did anti-slavery sentiment practically disappear in the South? + +5. On what grounds did Calhoun defend slavery? + +6. Explain how slave owners became powerful in politics. + +7. Why was it impossible to keep the slavery issue out of national +politics? + +8. Give the leading steps in the long controversy over slavery in the +territories. + +9. State the terms of the Compromise of 1850 and explain its failure. + +10. What were the startling events between 1850 and 1860? + +11. Account for the rise of the Republican party. What party had used +the title before? + +12. How did the Dred Scott decision become a political issue? + +13. What were some of the points brought out in the Lincoln-Douglas +debates? + +14. Describe the party division in 1860. + +15. What were the main planks in the Republican platform? + + +=Research Topics= + +=The Extension of Cotton Planting.=--Callender, _Economic History of the +United States_, pp. 760-768. + +=Abolition Agitation.=--McMaster, _History of the People of the United +States_, Vol. VI, pp. 271-298. + +=Calhoun's Defense of Slavery.=--Harding, _Select Orations Illustrating +American History_, pp. 247-257. + +=The Compromise of 1850.=--Clay's speech in Harding, _Select Orations_, +pp. 267-289. The compromise laws in Macdonald, _Documentary Source Book +of American History_, pp. 383-394. Narrative account in McMaster, Vol. +VIII, pp. 1-55; Elson, _History of the United States_, pp. 540-548. + +=The Repeal of the Missouri Compromise.=--McMaster, Vol. VIII, pp. +192-231; Elson, pp. 571-582. + +=The Dred Scott Case.=--McMaster, Vol. VIII, pp. 278-282. Compare the +opinion of Taney and the dissent of Curtis in Macdonald, _Documentary +Source Book_, pp. 405-420; Elson, pp. 595-598. + +=The Lincoln-Douglas Debates.=--Analysis of original speeches in +Harding, _Select Orations_ pp. 309-341; Elson, pp. 598-604. + +=Biographical Studies.=--Calhoun, Clay, Webster, A.H. Stephens, Douglas, +W.H. Seward, William Lloyd Garrison, Wendell Phillips, and Harriet +Beecher Stowe. + + + + +CHAPTER XV + +THE CIVIL WAR AND RECONSTRUCTION + + +"The irrepressible conflict is about to be visited upon us through the +Black Republican nominee and his fanatical, diabolical Republican +party," ran an appeal to the voters of South Carolina during the +campaign of 1860. If that calamity comes to pass, responded the governor +of the state, the answer should be a declaration of independence. In a +few days the suspense was over. The news of Lincoln's election came +speeding along the wires. Prepared for the event, the editor of the +Charleston _Mercury_ unfurled the flag of his state amid wild cheers +from an excited throng in the streets. Then he seized his pen and wrote: +"The tea has been thrown overboard; the revolution of 1860 has been +initiated." The issue was submitted to the voters in the choice of +delegates to a state convention called to cast off the yoke of the +Constitution. + + +THE SOUTHERN CONFEDERACY + +=Secession.=--As arranged, the convention of South Carolina assembled in +December and without a dissenting voice passed the ordinance of +secession withdrawing from the union. Bells were rung exultantly, the +roar of cannon carried the news to outlying counties, fireworks lighted +up the heavens, and champagne flowed. The crisis so long expected had +come at last; even the conservatives who had prayed that they might +escape the dreadful crash greeted it with a sigh of relief. + +[Illustration: THE UNITED STATES IN 1861 + +The border states (in purple) remained loyal.] + +South Carolina now sent forth an appeal to her sister states--states +that had in Jackson's day repudiated nullification as leading to "the +dissolution of the union." The answer that came this time was in a +different vein. A month had hardly elapsed before five other +states--Florida, Georgia, Alabama, Mississippi, and Louisiana--had +withdrawn from the union. In February, Texas followed. Virginia, +hesitating until the bombardment of Fort Sumter forced a conclusion, +seceded in April; but fifty-five of the one hundred and forty-three +delegates dissented, foreshadowing the creation of the new state of West +Virginia which Congress admitted to the union in 1863. In May, North +Carolina, Arkansas, and Tennessee announced their independence. + +=Secession and the Theories of the Union.=--In severing their relations +with the union, the seceding states denied every point in the Northern +theory of the Constitution. That theory, as every one knows, was +carefully formulated by Webster and elaborated by Lincoln. According to +it, the union was older than the states; it was created before the +Declaration of Independence for the purpose of common defense. The +Articles of Confederation did but strengthen this national bond and the +Constitution sealed it forever. The federal government was not a +creature of state governments. It was erected by the people and derived +its powers directly from them. "It is," said Webster, "the people's +Constitution, the people's government; made for the people; made by the +people; and answerable to the people. The people of the United States +have declared that this Constitution shall be the supreme law." When a +state questions the lawfulness of any act of the federal government, it +cannot nullify that act or withdraw from the union; it must abide by the +decision of the Supreme Court of the United States. The union of these +states is perpetual, ran Lincoln's simple argument in the first +inaugural; the federal Constitution has no provision for its own +termination; it can be destroyed only by some action not provided for in +the instrument itself; even if it is a compact among all the states the +consent of all must be necessary to its dissolution; therefore no state +can lawfully get out of the union and acts of violence against the +United States are insurrectionary or revolutionary. This was the system +which he believed himself bound to defend by his oath of office +"registered in heaven." + +All this reasoning Southern statesmen utterly rejected. In their opinion +the thirteen original states won their independence as separate and +sovereign powers. The treaty of peace with Great Britain named them all +and acknowledged them "to be free, sovereign, and independent states." +The Articles of Confederation very explicitly declared that "each state +retains its sovereignty, freedom, and independence." The Constitution +was a "league of nations" formed by an alliance of thirteen separate +powers, each one of which ratified the instrument before it was put into +effect. They voluntarily entered the union under the Constitution and +voluntarily they could leave it. Such was the constitutional doctrine of +Hayne, Calhoun, and Jefferson Davis. In seceding, the Southern states +had only to follow legal methods, and the transaction would be correct +in every particular. So conventions were summoned, elections were held, +and "sovereign assemblies of the people" set aside the Constitution in +the same manner as it had been ratified nearly four score years before. +Thus, said the Southern people, the moral judgment was fulfilled and the +letter of the law carried into effect. + +[Illustration: JEFFERSON DAVIS] + +=The Formation of the Confederacy.=--Acting on the call of Mississippi, +a congress of delegates from the seceded states met at Montgomery, +Alabama, and on February 8, 1861, adopted a temporary plan of union. It +selected, as provisional president, Jefferson Davis of Mississippi, a +man well fitted by experience and moderation for leadership, a graduate +of West Point, who had rendered distinguished service on the field of +battle in the Mexican War, in public office, and as a member of +Congress. + +In March, a permanent constitution of the Confederate states was +drafted. It was quickly ratified by the states; elections were held in +November; and the government under it went into effect the next year. +This new constitution, in form, was very much like the famous instrument +drafted at Philadelphia in 1787. It provided for a President, a Senate, +and a House of Representatives along almost identical lines. In the +powers conferred upon them, however, there were striking differences. +The right to appropriate money for internal improvements was expressly +withheld; bounties were not to be granted from the treasury nor import +duties so laid as to promote or foster any branch of industry. The +dignity of the state, if any might be bold enough to question it, was +safeguarded in the opening line by the declaration that each acted "in +its sovereign and independent character" in forming the Southern union. + +=Financing the Confederacy.=--No government ever set out upon its career +with more perplexing tasks in front of it. The North had a monetary +system; the South had to create one. The North had a scheme of taxation +that produced large revenues from numerous sources; the South had to +formulate and carry out a financial plan. Like the North, the +Confederacy expected to secure a large revenue from customs duties, +easily collected and little felt among the masses. To this expectation +the blockade of Southern ports inaugurated by Lincoln in April, 1861, +soon put an end. Following the precedent set by Congress under the +Articles of Confederation, the Southern Congress resorted to a direct +property tax apportioned among the states, only to meet the failure that +might have been foretold. + +The Confederacy also sold bonds, the first issue bringing into the +treasury nearly all the specie available in the Southern banks. This +specie by unhappy management was early sent abroad to pay for supplies, +sapping the foundations of a sound currency system. Large amounts of +bonds were sold overseas, commanding at first better terms than those +of the North in the markets of London, Paris, and Amsterdam, many an +English lord and statesman buying with enthusiasm and confidence to +lament within a few years the proofs of his folly. The difficulties of +bringing through the blockade any supplies purchased by foreign bond +issues, however, nullified the effect of foreign credit and forced the +Confederacy back upon the device of paper money. In all approximately +one billion dollars streamed from the printing presses, to fall in value +at an alarming rate, reaching in January, 1863, the astounding figure of +fifty dollars in paper money for one in gold. Every known device was +used to prevent its depreciation, without result. To the issues of the +Confederate Congress were added untold millions poured out by the states +and by private banks. + +=Human and Material Resources.=--When we measure strength for strength +in those signs of power--men, money, and supplies--it is difficult to +see how the South was able to embark on secession and war with such +confidence in the outcome. In the Confederacy at the final reckoning +there were eleven states in all, to be pitted against twenty-two; a +population of nine millions, nearly one-half servile, to be pitted +against twenty-two millions; a land without great industries to produce +war supplies and without vast capital to furnish war finances, joined in +battle with a nation already industrial and fortified by property worth +eleven billion dollars. Even after the Confederate Congress authorized +conscription in 1862, Southern man power, measured in numbers, was +wholly inadequate to uphold the independence which had been declared. +How, therefore, could the Confederacy hope to sustain itself against + +such a combination of men, money, and materials as the North could +marshal? + +=Southern Expectations.=--The answer to this question is to be found in +the ideas that prevailed among Southern leaders. First of all, they +hoped, in vain, to carry the Confederacy up to the Ohio River; and, with +the aid of Missouri, to gain possession of the Mississippi Valley, the +granary of the nation. In the second place, they reckoned upon a large +and continuous trade with Great Britain--the exchange of cotton for war +materials. They likewise expected to receive recognition and open aid +from European powers that looked with satisfaction upon the breakup of +the great American republic. In the third place, they believed that +their control over several staples so essential to Northern industry +would enable them to bring on an industrial crisis in the manufacturing +states. "I firmly believe," wrote Senator Hammond, of South Carolina, in +1860, "that the slave-holding South is now the controlling power of the +world; that no other power would face us in hostility. Cotton, rice, +tobacco, and naval stores command the world; and we have the sense to +know it and are sufficiently Teutonic to carry it out successfully. The +North without us would be a motherless calf, bleating about, and die of +mange and starvation." + +There were other grounds for confidence. Having seized all of the +federal military and naval supplies in the South, and having left the +national government weak in armed power during their possession of the +presidency, Southern leaders looked to a swift war, if it came at all, +to put the finishing stroke to independence. "The greasy mechanics of +the North," it was repeatedly said, "will not fight." As to disparity in +numbers they drew historic parallels. "Our fathers, a mere handful, +overcame the enormous power of Great Britain," a saying of ex-President +Tyler, ran current to reassure the doubtful. Finally, and this point +cannot be too strongly emphasized, the South expected to see a weakened +and divided North. It knew that the abolitionists and the Southern +sympathizers were ready to let the Confederate states go in peace; that +Lincoln represented only a little more than one-third the voters of the +country; and that the vote for Douglas, Bell, and Breckinridge meant a +decided opposition to the Republicans and their policies. + +=Efforts at Compromise.=--Republican leaders, on reviewing the same +facts, were themselves uncertain as to the outcome of a civil war and +made many efforts to avoid a crisis. Thurlow Weed, an Albany journalist +and politician who had done much to carry New York for Lincoln, proposed +a plan for extending the Missouri Compromise line to the Pacific. +Jefferson Davis, warning his followers that a war if it came would be +terrible, was prepared to accept the offer; but Lincoln, remembering his +campaign pledges, stood firm as a rock against it. His followers in +Congress took the same position with regard to a similar settlement +suggested by Senator Crittenden of Kentucky. + +Though unwilling to surrender his solemn promises respecting slavery in +the territories, Lincoln was prepared to give to Southern leaders a +strong guarantee that his administration would not interfere directly or +indirectly with slavery in the states. Anxious to reassure the South on +this point, the Republicans in Congress proposed to write into the +Constitution a declaration that no amendment should ever be made +authorizing the abolition of or interference with slavery in any state. +The resolution, duly passed, was sent forth on March 4, 1861, with the +approval of Lincoln; it was actually ratified by three states before the +storm of war destroyed it. By the irony of fate the thirteenth amendment +was to abolish, not guarantee, slavery. + + +THE WAR MEASURES OF THE FEDERAL GOVERNMENT + +=Raising the Armies.=--The crisis at Fort Sumter, on April 12-14, 1861, +forced the President and Congress to turn from negotiations to problems +of warfare. Little did they realize the magnitude of the task before +them. Lincoln's first call for volunteers, issued on April 15, 1861, +limited the number to 75,000, put their term of service at three months, +and prescribed their duty as the enforcement of the law against +combinations too powerful to be overcome by ordinary judicial process. +Disillusionment swiftly followed. The terrible defeat of the Federals at +Bull Run on July 21 revealed the serious character of the task before +them; and by a series of measures Congress put the entire man power of +the country at the President's command. Under these acts, he issued new +calls for volunteers. Early in August, 1862, he ordered a draft of +militiamen numbering 300,000 for nine months' service. The results were +disappointing--ominous--for only about 87,000 soldiers were added to the +army. Something more drastic was clearly necessary. + +In March, 1863, Lincoln signed the inevitable draft law; it enrolled in +the national forces liable to military duty all able-bodied male +citizens and persons of foreign birth who had declared their intention +to become citizens, between the ages of twenty and forty-five +years--with exemptions on grounds of physical weakness and dependency. +From the men enrolled were drawn by lot those destined to active +service. Unhappily the measure struck a mortal blow at the principle of +universal liability by excusing any person who found a substitute for +himself or paid into the war office a sum, not exceeding three hundred +dollars, to be fixed by general order. This provision, so crass and so +obviously favoring the well-to-do, sowed seeds of bitterness which +sprang up a hundredfold in the North. + +[Illustration: THE DRAFT RIOTS IN NEW YORK CITY] + +The beginning of the drawings under the draft act in New York City, on +Monday, July 13, 1863, was the signal for four days of rioting. In the +course of this uprising, draft headquarters were destroyed; the office +of the _Tribune_ was gutted; negroes were seized, hanged, and shot; the +homes of obnoxious Unionists were burned down; the residence of the +mayor of the city was attacked; and regular battles were fought in the +streets between the rioters and the police. Business stopped and a large +part of the city passed absolutely into the control of the mob. Not +until late the following Wednesday did enough troops arrive to restore +order and enable the residents of the city to resume their daily +activities. At least a thousand people had been killed or wounded and +more than a million dollars' worth of damage done to property. The draft +temporarily interrupted by this outbreak was then resumed and carried +out without further trouble. + +The results of the draft were in the end distinctly disappointing to the +government. The exemptions were numerous and the number who preferred +and were able to pay $300 rather than serve exceeded all expectations. +Volunteering, it is true, was stimulated, but even that resource could +hardly keep the thinning ranks of the army filled. With reluctance +Congress struck out the $300 exemption clause, but still favored the +well-to-do by allowing them to hire substitutes if they could find them. +With all this power in its hands the administration was able by January, +1865, to construct a union army that outnumbered the Confederates two to +one. + +=War Finance.=--In the financial sphere the North faced immense +difficulties. The surplus in the treasury had been dissipated by 1861 +and the tariff of 1857 had failed to produce an income sufficient to +meet the ordinary expenses of the government. Confronted by military and +naval expenditures of appalling magnitude, rising from $35,000,000 in +the first year of the war to $1,153,000,000 in the last year, the +administration had to tap every available source of income. The duties +on imports were increased, not once but many times, producing huge +revenues and also meeting the most extravagant demands of the +manufacturers for protection. Direct taxes were imposed on the states +according to their respective populations, but the returns were +meager--all out of proportion to the irritation involved. Stamp taxes +and taxes on luxuries, occupations, and the earnings of corporations +were laid with a weight that, in ordinary times, would have drawn forth +opposition of ominous strength. The whole gamut of taxation was run. +Even a tax on incomes and gains by the year, the first in the history of +the federal government, was included in the long list. + +Revenues were supplemented by bond issues, mounting in size and interest +rate, until in October, at the end of the war, the debt stood at +$2,208,000,000. The total cost of the war was many times the money value +of all the slaves in the Southern states. To the debt must be added +nearly half a billion dollars in "greenbacks"--paper money issued by +Congress in desperation as bond sales and revenues from taxes failed to +meet the rising expenditures. This currency issued at par on +questionable warrant from the Constitution, like all such paper, quickly +began to decline until in the worst fortunes of 1864 one dollar in gold +was worth nearly three in greenbacks. + +=The Blockade of Southern Ports.=--Four days after his call for +volunteers, April 19, 1861, President Lincoln issued a proclamation +blockading the ports of the Southern Confederacy. Later the blockade was +extended to Virginia and North Carolina, as they withdrew from the +union. Vessels attempting to enter or leave these ports, if they +disregarded the warnings of a blockading ship, were to be captured and +brought as prizes to the nearest convenient port. To make the order +effective, immediate steps were taken to increase the naval forces, +depleted by neglect, until the entire coast line was patrolled with such +a number of ships that it was a rare captain who ventured to run the +gantlet. The collision between the _Merrimac_ and the _Monitor_ in +March, 1862, sealed the fate of the Confederacy. The exploits of the +union navy are recorded in the falling export of cotton: $202,000,000 in +1860; $42,000,000 in 1861; and $4,000,000 in 1862. + +The deadly effect of this paralysis of trade upon Southern war power may +be readily imagined. Foreign loans, payable in cotton, could be +negotiated but not paid off. Supplies could be purchased on credit but +not brought through the drag net. With extreme difficulty could the +Confederate government secure even paper for the issue of money and +bonds. Publishers, in despair at the loss of supplies, were finally +driven to the use of brown wrapping paper and wall paper. As the +railways and rolling stock wore out, it became impossible to renew them +from England or France. Unable to export their cotton, planters on the +seaboard burned it in what were called "fires of patriotism." In their +lurid light the fatal weakness of Southern economy stood revealed. + +[Illustration: A BLOCKADE RUNNER] + +=Diplomacy.=--The war had not advanced far before the federal government +became involved in many perplexing problems of diplomacy in Europe. The +Confederacy early turned to England and France for financial aid and for +recognition as an independent power. Davis believed that the industrial +crisis created by the cotton blockade would in time literally compel +Europe to intervene in order to get this essential staple. The crisis +came as he expected but not the result. Thousands of English textile +workers were thrown out of employment; and yet, while on the point of +starvation, they adopted resolutions favoring the North instead of +petitioning their government to aid the South by breaking the blockade. + +With the ruling classes it was far otherwise. Napoleon III, the Emperor +of the French, was eager to help in disrupting the American republic; if +he could have won England's support, he would have carried out his +designs. As it turned out he found plenty of sympathy across the Channel +but not open and official cooperation. According to the eminent +historian, Rhodes, "four-fifths of the British House of Lords and most +members of the House of Commons were favorable to the Confederacy and +anxious for its triumph." Late in 1862 the British ministers, thus +sustained, were on the point of recognizing the independence of the +Confederacy. Had it not been for their extreme caution, for the constant +and harassing criticism by English friends of the United States--like +John Bright--and for the victories of Vicksburg and Gettysburg, both + +England and France would have doubtless declared the Confederacy to be +one of the independent powers of the earth. + +[Illustration: JOHN BRIGHT] + +While stopping short of recognizing its independence, England and France +took several steps that were in favor of the South. In proclaiming +neutrality, they early accepted the Confederates as "belligerents" and +accorded them the rights of people at war--a measure which aroused anger +in the North at first but was later admitted to be sound. Otherwise +Confederates taken in battle would have been regarded as "rebels" or +"traitors" to be hanged or shot. Napoleon III proposed to Russia in 1861 +a coalition of powers against the North, only to meet a firm refusal. +The next year he suggested intervention to Great Britain, encountering +this time a conditional rejection of his plans. In 1863, not daunted by +rebuffs, he offered his services to Lincoln as a mediator, receiving in +reply a polite letter declining his proposal and a sharp resolution from +Congress suggesting that he attend to his own affairs. + +In both England and France the governments pursued a policy of +friendliness to the Confederate agents. The British ministry, with +indifference if not connivance, permitted rams and ships to be built in +British docks and allowed them to escape to play havoc under the +Confederate flag with American commerce. One of them, the _Alabama_, +built in Liverpool by a British firm and paid for by bonds sold in +England, ran an extraordinary career and threatened to break the +blockade. The course followed by the British government, against the +protests of the American minister in London, was later regretted. By an +award of a tribunal of arbitration at Geneva in 1872, Great Britain was +required to pay the huge sum of $15,500,000 to cover the damages wrought +by Confederate cruisers fitted out in England. + +[Illustration: WILLIAM H. SEWARD] + +In all fairness it should be said that the conduct of the North +contributed to the irritation between the two countries. Seward, the +Secretary of State, was vindictive in dealing with Great Britain; had it +not been for the moderation of Lincoln, he would have pursued a course +verging in the direction of open war. The New York and Boston papers +were severe in their attacks on England. Words were, on one occasion at +least, accompanied by an act savoring of open hostility. In November, +1861, Captain Wilkes, commanding a union vessel, overhauled the British +steamer _Trent_, and carried off by force two Confederate agents, Mason +and Slidell, sent by President Davis to represent the Confederacy at +London and Paris respectively. This was a clear violation of the right +of merchant vessels to be immune from search and impressment; and, in +answer to the demand of Great Britain for the release of the two men, +the United States conceded that it was in the wrong. It surrendered the +two Confederate agents to a British vessel for safe conduct abroad, and +made appropriate apologies. + +=Emancipation.=--Among the extreme war measures adopted by the Northern +government must be counted the emancipation of the slaves in the states +in arms against the union. This step was early and repeatedly suggested +to Lincoln by the abolitionists; but was steadily put aside. He knew +that the abolitionists were a mere handful, that emancipation might +drive the border states into secession, and that the Northern soldiers +had enlisted to save the union. Moreover, he had before him a solemn +resolution passed by Congress on July 22, 1861, declaring the sole +purpose of the war to be the salvation of the union and disavowing any +intention of interfering with slavery. + +The federal government, though pledged to the preservation of slavery, +soon found itself beaten back upon its course and out upon a new tack. +Before a year had elapsed, namely on April 10, 1862, Congress resolved +that financial aid should be given to any state that might adopt gradual +emancipation. Six days later it abolished slavery in the District of +Columbia. Two short months elapsed. On June 19, 1862, it swept slavery +forever from the territories of the United States. Chief Justice Taney +still lived, the Dred Scott decision stood as written in the book, but +the Constitution had been re-read in the light of the Civil War. The +drift of public sentiment in the North was being revealed. + +While these measures were pending in Congress, Lincoln was slowly making +up his mind. By July of that year he had come to his great decision. +Near the end of that month he read to his cabinet the draft of a +proclamation of emancipation; but he laid it aside until a military +achievement would make it something more than an idle gesture. In +September, the severe check administered to Lee at Antietam seemed to +offer the golden opportunity. On the 22d, the immortal document was +given to the world announcing that, unless the states in arms returned +to the union by January 1, 1863, the fatal blow at their "peculiar +institution" would be delivered. Southern leaders treated it with slight +regard, and so on the date set the promise was fulfilled. The +proclamation was issued as a war measure, adopted by the President as +commander-in-chief of the armed forces, on grounds of military +necessity. It did not abolish slavery. It simply emancipated slaves in +places then in arms against federal authority. Everywhere else slavery, +as far as the Proclamation was concerned, remained lawful. + +[Illustration: ABRAHAM LINCOLN] + +To seal forever the proclamation of emancipation, and to extend freedom +to the whole country, Congress, in January, 1865, on the urgent +recommendation of Lincoln, transmitted to the states the thirteenth +amendment, abolishing slavery throughout the United States. By the end +of 1865 the amendment was ratified. The house was not divided against +itself; it did not fall; it was all free. + +=The Restraint of Civil Liberty.=--As in all great wars, particularly +those in the nature of a civil strife, it was found necessary to use +strong measures to sustain opinion favorable to the administration's +military policies and to frustrate the designs of those who sought to +hamper its action. Within two weeks of his first call for volunteers, +Lincoln empowered General Scott to suspend the writ of _habeas corpus_ +along the line of march between Philadelphia and Washington and thus to +arrest and hold without interference from civil courts any one whom he +deemed a menace to the union. At a later date the area thus ruled by +military officers was extended by executive proclamation. By an act of +March 3, 1863, Congress, desiring to lay all doubts about the +President's power, authorized him to suspend the writ throughout the +United States or in any part thereof. It also freed military officers +from the necessity of surrendering to civil courts persons arrested +under their orders, or even making answers to writs issued from such +courts. In the autumn of that year the President, acting under the terms +of this law, declared this ancient and honorable instrument for the +protection of civil liberties, the _habeas corpus_, suspended throughout +the length and breadth of the land. The power of the government was also +strengthened by an act defining and punishing certain conspiracies, +passed on July 31, 1861--a measure which imposed heavy penalties on +those who by force, intimidation, or threat interfered with the +execution of the law. + +Thus doubly armed, the military authorities spared no one suspected of +active sympathy with the Southern cause. Editors were arrested and +imprisoned, their papers suspended, and their newsboys locked up. Those +who organized "peace meetings" soon found themselves in the toils of the +law. Members of the Maryland legislature, the mayor of Baltimore, and +local editors suspected of entertaining secessionist opinions, were +imprisoned on military orders although charged with no offense, and were +denied the privilege of examination before a civil magistrate. A Vermont +farmer, too outspoken in his criticism of the government, found himself +behind the bars until the government, in its good pleasure, saw fit to +release him. These measures were not confined to the theater of war nor +to the border states where the spirit of secession was strong enough to +endanger the cause of union. They were applied all through the Northern +states up to the very boundaries of Canada. Zeal for the national cause, +too often supplemented by a zeal for persecution, spread terror among +those who wavered in the singleness of their devotion to the union. + +These drastic operations on the part of military authorities, so foreign +to the normal course of civilized life, naturally aroused intense and +bitter hostility. Meetings of protest were held throughout the country. +Thirty-six members of the House of Representatives sought to put on +record their condemnation of the suspension of the _habeas corpus_ act, +only to meet a firm denial by the supporters of the act. Chief Justice +Taney, before whom the case of a man arrested under the President's +military authority was brought, emphatically declared, in a long and +learned opinion bristling with historical examples, that the President +had no power to suspend the writ of _habeas corpus_. In Congress and +out, Democrats, abolitionists, and champions of civil liberty denounced +Lincoln and his Cabinet in unsparing terms. Vallandigham, a Democratic +leader of Ohio, afterward banished to the South for his opposition to +the war, constantly applied to Lincoln the epithet of "Caesar." Wendell +Phillips saw in him "a more unlimited despot than the world knows this +side of China." + +Sensitive to such stinging thrusts and no friend of wanton persecution, +Lincoln attempted to mitigate the rigors of the law by paroling many +political prisoners. The general policy, however, he defended in homely +language, very different in tone and meaning from the involved reasoning +of the lawyers. "Must I shoot a simple-minded soldier boy who deserts, +while I must not touch a hair of the wily agitator who induces him to +desert?" he asked in a quiet way of some spokesmen for those who +protested against arresting people for "talking against the war." This +summed up his philosophy. He was engaged in a war to save the union, and +all measures necessary and proper to accomplish that purpose were +warranted by the Constitution which he had sworn to uphold. + +=Military Strategy--North and South.=--The broad outlines of military +strategy followed by the commanders of the opposing forces are clear +even to the layman who cannot be expected to master the details of a +campaign or, for that matter, the maneuvers of a single great battle. +The problem for the South was one of defense mainly, though even for +defense swift and paralyzing strokes at the North were later deemed +imperative measures. The problem of the North was, to put it baldly, one +of invasion and conquest. Southern territory had to be invaded and +Southern armies beaten on their own ground or worn down to exhaustion +there. + +In the execution of this undertaking, geography, as usual, played a +significant part in the disposition of forces. The Appalachian ranges, +stretching through the Confederacy to Northern Alabama, divided the +campaigns into Eastern and Western enterprises. Both were of signal +importance. Victory in the East promised the capture of the Confederate +capital of Richmond, a stroke of moral worth, hardly to be +overestimated. Victory in the West meant severing the Confederacy and +opening the Mississippi Valley down to the Gulf. + +As it turned out, the Western forces accomplished their task first, +vindicating the military powers of union soldiers and shaking the +confidence of opposing commanders. In February, 1862, Grant captured +Fort Donelson on the Tennessee River, rallied wavering unionists in +Kentucky, forced the evacuation of Nashville, and opened the way for two +hundred miles into the Confederacy. At Shiloh, Murfreesboro, Vicksburg, +Chickamauga, Chattanooga, desperate fighting followed and, in spite of +varying fortunes, it resulted in the discomfiture and retirement of +Confederate forces to the Southeast into Georgia. By the middle of 1863, +the Mississippi Valley was open to the Gulf, the initiative taken out of +the hands of Southern commanders in the West, and the way prepared for +Sherman's final stroke--the march from Atlanta to the sea--a maneuver +executed with needless severity in the autumn of 1864. + +[Illustration: GENERAL ULYSSES S. GRANT] + +[Illustration: GENERAL ROBERT E. LEE] + +For the almost unbroken succession of achievements in the West by +Generals Grant, Sherman, Thomas, and Hooker against Albert Sidney +Johnston, Bragg, Pemberton, and Hood, the union forces in the East +offered at first an almost equally unbroken series of misfortunes and +disasters. Far from capturing Richmond, they had been thrown on the +defensive. General after general--McClellan, Pope, Burnside, Hooker, and +Meade--was tried and found wanting. None of them could administer a +crushing defeat to the Confederate troops and more than once the union +soldiers were beaten in a fair battle. They did succeed, however, in +delivering a severe check to advancing Confederates under General Robert +E. Lee, first at Antietam in September, 1862, and then at Gettysburg in +July, 1863--checks reckoned as victories though in each instance the +Confederates escaped without demoralization. Not until the beginning of +the next year, when General Grant, supplied with almost unlimited men +and munitions, began his irresistible hammering at Lee's army, did the +final phase of the war commence. The pitiless drive told at last. +General Lee, on April 9, 1865, seeing the futility of further conflict, +surrendered an army still capable of hard fighting, at Appomattox, not +far from the capital of the Confederacy. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +THE FEDERAL MILITARY HOSPITAL AT GETTYSBURG] + +=Abraham Lincoln.=--The services of Lincoln to the cause of union defy +description. A judicial scrutiny of the war reveals his thought and +planning in every part of the varied activity that finally crowned +Northern arms with victory. Is it in the field of diplomacy? Does +Seward, the Secretary of State, propose harsh and caustic measures +likely to draw England's sword into the scale? Lincoln counsels +moderation. He takes the irritating message and with his own hand +strikes out, erases, tones down, and interlines, exchanging for words +that sting and burn the language of prudence and caution. Is it a matter +of compromise with the South, so often proposed by men on both sides +sick of carnage? Lincoln is always ready to listen and turns away only +when he is invited to surrender principles essential to the safety of +the union. Is it high strategy of war, a question of the general best +fitted to win Gettysburg--Hooker, Sedgwick, or Meade? Lincoln goes in +person to the War Department in the dead of night to take counsel with +his Secretary and to make the fateful choice. + +Is it a complaint from a citizen, deprived, as he believes, of his civil +liberties unjustly or in violation of the Constitution? Lincoln is ready +to hear it and anxious to afford relief, if warrant can be found for it. +Is a mother begging for the life of a son sentenced to be shot as a +deserter? Lincoln hears her petition, and grants it even against the +protests made by his generals in the name of military discipline. Do +politicians sow dissensions in the army and among civilians? Lincoln +grandly waves aside their petty personalities and invites them to think +of the greater cause. Is it a question of securing votes to ratify the +thirteenth amendment abolishing slavery? Lincoln thinks it not beneath +his dignity to traffic and huckster with politicians over the trifling +jobs asked in return by the members who hold out against him. Does a New +York newspaper call him an ignorant Western boor? Lincoln's reply is a +letter to a mother who has given her all--her sons on the field of +battle--and an address at Gettysburg, both of which will live as long as +the tongue in which they were written. These are tributes not only to +his mastery of the English language but also to his mastery of all those +sentiments of sweetness and strength which are the finest flowers of +culture. + +Throughout the entire span of service, however, Lincoln was beset by +merciless critics. The fiery apostles of abolition accused him of +cowardice when he delayed the bold stroke at slavery. Anti-war Democrats +lashed out at every step he took. Even in his own party he found no +peace. Charles Sumner complained: "Our President is now dictator, +_imperator_--whichever you like; but how vain to have the power of a +god and not to use it godlike." Leaders among the Republicans sought to +put him aside in 1864 and place Chase in his chair. "I hope we may never +have a worse man," was Lincoln's quiet answer. + +Wide were the dissensions in the North during that year and the +Republicans, while selecting Lincoln as their candidate again, cast off +their old name and chose the simple title of the "Union party." +Moreover, they selected a Southern man, Andrew Johnson, of Tennessee, to +be associated with him as candidate for Vice President. This combination +the Northern Democrats boldly confronted with a platform declaring that +"after four years of failure to restore the union by the experiment of +war, during which, under the pretence of military necessity or war power +higher than the Constitution, the Constitution itself has been +disregarded in every part and public liberty and private right alike +trodden down ... justice, humanity, liberty, and public welfare demand +that immediate efforts be made for a cessation of hostilities, to the +end that peace may be restored on the basis of the federal union of the +states." It is true that the Democratic candidate, General McClellan, +sought to break the yoke imposed upon him by the platform, saying that +he could not look his old comrades in the face and pronounce their +efforts vain; but the party call to the nation to repudiate Lincoln and +his works had gone forth. The response came, giving Lincoln 2,200,000 +votes against 1,800,000 for his opponent. The bitter things said about +him during the campaign, he forgot and forgave. When in April, 1865, he +was struck down by the assassin's hand, he above all others in +Washington was planning measures of moderation and healing. + + +THE RESULTS OF THE CIVIL WAR + +There is a strong and natural tendency on the part of writers to stress +the dramatic and heroic aspects of war; but the long judgment of history +requires us to include all other significant phases as well. Like every +great armed conflict, the Civil War outran the purposes of those who +took part in it. Waged over the nature of the union, it made a +revolution in the union, changing public policies and constitutional +principles and giving a new direction to agriculture and industry. + +=The Supremacy of the Union.=--First and foremost, the war settled for +all time the long dispute as to the nature of the federal system. The +doctrine of state sovereignty was laid to rest. Men might still speak of +the rights of states and think of their commonwealths with affection, +but nullification and secession were destroyed. The nation was supreme. + +=The Destruction of the Slave Power.=--Next to the vindication of +national supremacy was the destruction of the planting aristocracy of +the South--that great power which had furnished leadership of undoubted +ability and had so long contested with the industrial and commercial +interests of the North. The first paralyzing blow at the planters was +struck by the abolition of slavery. The second and third came with the +fourteenth (1868) and fifteenth (1870) amendments, giving the ballot to +freedmen and excluding from public office the Confederate +leaders--driving from the work of reconstruction the finest talents of +the South. As if to add bitterness to gall and wormwood, the fourteenth +amendment forbade the United States or any state to pay any debts +incurred in aid of the Confederacy or in the emancipation of the +slaves--plunging into utter bankruptcy the Southern financiers who had +stripped their section of capital to support their cause. So the +Southern planters found themselves excluded from public office and ruled +over by their former bondmen under the tutelage of Republican leaders. +Their labor system was wrecked and their money and bonds were as +worthless as waste paper. The South was subject to the North. That which +neither the Federalists nor the Whigs had been able to accomplish in the +realm of statecraft was accomplished on the field of battle. + + +=The Triumph of Industry.=--The wreck of the planting system was +accompanied by a mighty upswing of Northern industry which made the old +Whigs of Massachusetts and Pennsylvania stare in wonderment. The demands +of the federal government for manufactured goods at unrestricted prices +gave a stimulus to business which more than replaced the lost markets of +the South. Between 1860 and 1870 the number of manufacturing +establishments increased 79.6 per cent as against 14.2 for the previous +decade; while the number of persons employed almost doubled. There was +no doubt about the future of American industry. + +=The Victory for the Protective Tariff.=--Moreover, it was henceforth to +be well protected. For many years before the war the friends of +protection had been on the defensive. The tariff act of 1857 imposed +duties so low as to presage a tariff for revenue only. The war changed +all that. The extraordinary military expenditures, requiring heavy taxes +on all sources, justified tariffs so high that a follower of Clay or +Webster might well have gasped with astonishment. After the war was over +the debt remained and both interest and principal had to be paid. +Protective arguments based on economic reasoning were supported by a +plain necessity for revenue which admitted no dispute. + +=A Liberal Immigration Policy.=--Linked with industry was the labor +supply. The problem of manning industries became a pressing matter, and +Republican leaders grappled with it. In the platform of the Union party +adopted in 1864 it was declared "that foreign immigration, which in the +past has added so much to the wealth, the development of resources, and +the increase of power to this nation--the asylum of the oppressed of all +nations--should be fostered and encouraged by a liberal and just +policy." In that very year Congress, recognizing the importance of the +problem, passed a measure of high significance, creating a bureau of +immigration, and authorizing a modified form of indentured labor, by +making it legal for immigrants to pledge their wages in advance to pay +their passage over. Though the bill was soon repealed, the practice +authorized by it was long continued. The cheapness of the passage +shortened the term of service; but the principle was older than the +days of William Penn. + +=The Homestead Act of 1862.=--In the immigration measure guaranteeing a +continuous and adequate labor supply, the manufacturers saw an offset to +the Homestead Act of 1862 granting free lands to settlers. The Homestead +law they had resisted in a long and bitter congressional battle. +Naturally, they had not taken kindly to a scheme which lured men away +from the factories or enabled them to make unlimited demands for higher +wages as the price of remaining. Southern planters likewise had feared +free homesteads for the very good reason that they only promised to add +to the overbalancing power of the North. + +In spite of the opposition, supporters of a liberal land policy made +steady gains. Free-soil Democrats,--Jacksonian farmers and +mechanics,--labor reformers, and political leaders, like Stephen A. +Douglas of Illinois and Andrew Johnson of Tennessee, kept up the +agitation in season and out. More than once were they able to force a +homestead bill through the House of Representatives only to have it +blocked in the Senate where Southern interests were intrenched. Then, +after the Senate was won over, a Democratic President, James Buchanan, +vetoed the bill. Still the issue lived. The Republicans, strong among +the farmers of the Northwest, favored it from the beginning and pressed +it upon the attention of the country. Finally the manufacturers yielded; +they received their compensation in the contract labor law. In 1862 +Congress provided for the free distribution of land in 160-acre lots +among men and women of strong arms and willing hearts ready to build +their serried lines of homesteads to the Rockies and beyond. + +=Internal Improvements.=--If farmers and manufacturers were early +divided on the matter of free homesteads, the same could hardly be said +of internal improvements. The Western tiller of the soil was as eager +for some easy way of sending his produce to market as the manufacturer +was for the same means to transport his goods to the consumer on the +farm. While the Confederate leaders were writing into their +constitution a clause forbidding all appropriations for internal +improvements, the Republican leaders at Washington were planning such +expenditures from the treasury in the form of public land grants to +railways as would have dazed the authors of the national road bill half +a century earlier. + +=Sound Finance--National Banking.=--From Hamilton's day to Lincoln's, +business men in the East had contended for a sound system of national +currency. The experience of the states with paper money, painfully +impressive in the years before the framing of the Constitution, had been +convincing to those who understood the economy of business. The +Constitution, as we have seen, bore the signs of this experience. States +were forbidden to emit bills of credit: paper money, in short. This +provision stood clear in the document; but judicial ingenuity had +circumvented it in the age of Jacksonian Democracy. The states had +enacted and the Supreme Court, after the death of John Marshall, had +sustained laws chartering banking companies and authorizing them to +issue paper money. So the country was beset by the old curse, the banks +of Western and Southern states issuing reams of paper notes to help +borrowers pay their debts. + +In dealing with war finances, the Republicans attacked this ancient +evil. By act of Congress in 1864, they authorized a series of national +banks founded on the credit of government bonds and empowered to issue +notes. The next year they stopped all bank paper sent forth under the +authority of the states by means of a prohibitive tax. In this way, by +two measures Congress restored federal control over the monetary system +although it did not reestablish the United States Bank so hated by +Jacksonian Democracy. + +=Destruction of States' Rights by Fourteenth Amendment.=--These acts and +others not cited here were measures of centralization and consolidation +at the expense of the powers and dignity of the states. They were all of +high import, but the crowning act of nationalism was the fourteenth +amendment which, among other things, forbade states to "deprive any +person of life, liberty or property without due process of law." The +immediate occasion, though not the actual cause of this provision, was +the need for protecting the rights of freedmen against hostile +legislatures in the South. The result of the amendment, as was +prophesied in protests loud and long from every quarter of the +Democratic party, was the subjection of every act of state, municipal, +and county authorities to possible annulment by the Supreme Court at +Washington. The expected happened. + +Few negroes ever brought cases under the fourteenth amendment to the +attention of the courts; but thousands of state laws, municipal +ordinances, and acts of local authorities were set aside as null and +void under it. Laws of states regulating railway rates, fixing hours of +labor in bakeshops, and taxing corporations were in due time to be +annulled as conflicting with an amendment erroneously supposed to be +designed solely for the protection of negroes. As centralized power over +tariffs, railways, public lands, and other national concerns went to +Congress, so centralized power over the acts of state and local +authorities involving an infringement of personal and property rights +was conferred on the federal judiciary, the apex of which was the +Supreme Court at Washington. Thus the old federation of "independent +states," all equal in rights and dignity, each wearing the "jewel of +sovereignty" so celebrated in Southern oratory, had gone the way of all +flesh under the withering blasts of Civil War. + + +RECONSTRUCTION IN THE SOUTH + +=Theories about the Position of the Seceded States.=--On the morning of +April 9, 1865, when General Lee surrendered his army to General Grant, +eleven states stood in a peculiar relation to the union now declared +perpetual. Lawyers and political philosophers were much perturbed and +had been for some time as to what should be done with the members of the +former Confederacy. Radical Republicans held that they were "conquered +provinces" at the mercy of Congress, to be governed under such laws as +it saw fit to enact and until in its wisdom it decided to readmit any or +all of them to the union. Men of more conservative views held that, as +the war had been waged by the North on the theory that no state could +secede from the union, the Confederate states had merely attempted to +withdraw and had failed. The corollary of this latter line of argument +was simple: "The Southern states are still in the union and it is the +duty of the President, as commander-in-chief, to remove the federal +troops as soon as order is restored and the state governments ready to +function once more as usual." + +=Lincoln's Proposal.=--Some such simple and conservative form of +reconstruction had been suggested by Lincoln in a proclamation of +December 8, 1863. He proposed pardon and a restoration of property, +except in slaves, to nearly all who had "directly or by implication +participated in the existing rebellion," on condition that they take an +oath of loyalty to the union. He then announced that when, in any of the +states named, a body of voters, qualified under the law as it stood +before secession and equal in number to one-tenth the votes cast in +1860, took the oath of allegiance, they should be permitted to +reestablish a state government. Such a government, he added, should be +recognized as a lawful authority and entitled to protection under the +federal Constitution. With reference to the status of the former slaves +Lincoln made it clear that, while their freedom must be recognized, he +would not object to any legislation "which may yet be consistent as a +temporary arrangement with their present condition as a laboring, +landless, and homeless class." + +=Andrew Johnson's Plan--His Impeachment.=--Lincoln's successor, Andrew +Johnson, the Vice President, soon after taking office, proposed to +pursue a somewhat similar course. In a number of states he appointed +military governors, instructing them at the earliest possible moment to +assemble conventions, chosen "by that portion of the people of the said +states who are loyal to the United States," and proceed to the +organization of regular civil government. Johnson, a Southern man and a +Democrat, was immediately charged by the Republicans with being too +ready to restore the Southern states. As the months went by, the +opposition to his measures and policies in Congress grew in size and +bitterness. The contest resulted in the impeachment of Johnson by the +House of Representatives in March, 1868, and his acquittal by the Senate +merely because his opponents lacked one vote of the two-thirds required +for conviction. + +=Congress Enacts "Reconstruction Laws."=--In fact, Congress was in a +strategic position. It was the law-making body, and it could, moreover, +determine the conditions under which Senators and Representatives from +the South were to be readmitted. It therefore proceeded to pass a series +of reconstruction acts--carrying all of them over Johnson's veto. These +measures, the first of which became a law on March 2, 1867, betrayed an +animus not found anywhere in Lincoln's plans or Johnson's proclamations. + +They laid off the ten states--the whole Confederacy with the exception +of Tennessee--still outside the pale, into five military districts, each +commanded by a military officer appointed by the President. They ordered +the commanding general to prepare a register of voters for the election +of delegates to conventions chosen for the purpose of drafting new +constitutions. Such voters, however, were not to be, as Lincoln had +suggested, loyal persons duly qualified under the law existing before +secession but "the male citizens of said state, twenty-one years old and +upward, of whatever race, color, or previous condition, ... except such +as may be disfranchised for participation in the rebellion or for felony +at common law." This was the death knell to the idea that the leaders of +the Confederacy and their white supporters might be permitted to share +in the establishment of the new order. Power was thus arbitrarily thrust +into the hands of the newly emancipated male negroes and the handful of +whites who could show a record of loyalty. That was not all. Each state +was, under the reconstruction acts, compelled to ratify the fourteenth +amendment to the federal Constitution as a price of restoration to the +union. + +The composition of the conventions thus authorized may be imagined. +Bondmen without the asking and without preparation found themselves the +governing power. An army of adventurers from the North, "carpet baggers" +as they were called, poured in upon the scene to aid in +"reconstruction." Undoubtedly many men of honor and fine intentions gave +unstinted service, but the results of their deliberations only +aggravated the open wound left by the war. Any number of political +doctors offered their prescriptions; but no effective remedy could be +found. Under measures admittedly open to grave objections, the Southern +states were one after another restored to the union by the grace of +Congress, the last one in 1870. Even this grudging concession of the +formalities of statehood did not mean a full restoration of honors and +privileges. The last soldier was not withdrawn from the last Southern +capital until 1877, and federal control over elections long remained as +a sign of congressional supremacy. + +=The Status of the Freedmen.=--Even more intricate than the issues +involved in restoring the seceded states to the union was the question +of what to do with the newly emancipated slaves. That problem, often put +to abolitionists before the war, had become at last a real concern. The +thirteenth amendment abolishing slavery had not touched it at all. It +declared bondmen free, but did nothing to provide them with work or +homes and did not mention the subject of political rights. All these +matters were left to the states, and the legislatures of some of them, +by their famous "black codes," restored a form of servitude under the +guise of vagrancy and apprentice laws. Such methods were in fact partly +responsible for the reaction that led Congress to abandon Lincoln's +policies and undertake its own program of reconstruction. + +Still no extensive effort was made to solve by law the economic problems +of the bondmen. Radical abolitionists had advocated that the slaves when +emancipated should be given outright the fields of their former +masters; but Congress steadily rejected the very idea of confiscation. +The necessity of immediate assistance it recognized by creating in 1865 +the Freedmen's Bureau to take care of refugees. It authorized the issue +of food and clothing to the destitute and the renting of abandoned and +certain other lands under federal control to former slaves at reasonable +rates. But the larger problem of the relation of the freedmen to the +land, it left to the slow working of time. + +Against sharp protests from conservative men, particularly among the +Democrats, Congress did insist, however, on conferring upon the freedmen +certain rights by national law. These rights fell into broad divisions, +civil and political. By an act passed in 1866, Congress gave to former +slaves the rights of white citizens in the matter of making contracts, +giving testimony in courts, and purchasing, selling, and leasing +property. As it was doubtful whether Congress had the power to enact +this law, there was passed and submitted to the states the fourteenth +amendment which gave citizenship to the freedmen, assured them of the +privileges and immunities of citizens of the United States, and declared +that no state should deprive any person of his life, liberty, or +property without due process of law. Not yet satisfied, Congress +attempted to give social equality to negroes by the second civil rights +bill of 1875 which promised to them, among other things, the full and +equal enjoyment of inns, theaters, public conveyances, and places of +amusement--a law later declared unconstitutional by the Supreme Court. + +The matter of political rights was even more hotly contested; but the +radical Republicans, like Charles Sumner, asserted that civil rights +were not secure unless supported by the suffrage. In this same +fourteenth amendment they attempted to guarantee the ballot to all negro +men, leaving the women to take care of themselves. The amendment +declared in effect that when any state deprived adult male citizens of +the right to vote, its representation in Congress should be reduced in +the proportion such persons bore to the voting population. + +This provision having failed to accomplish its purpose, the fifteenth +amendment was passed and ratified, expressly declaring that no citizen +should be deprived of the right to vote "on account of race, color, or +previous condition of servitude." To make assurance doubly secure, +Congress enacted in 1870, 1872, and 1873 three drastic laws, sometimes +known as "force bills," providing for the use of federal authorities, +civil and military, in supervising elections in all parts of the Union. +So the federal government, having destroyed chattel slavery, sought by +legal decree to sweep away all its signs and badges, civil, social, and +political. Never, save perhaps in some of the civil conflicts of Greece +or Rome, had there occurred in the affairs of a nation a social +revolution so complete, so drastic, and far-reaching in its results. + + +SUMMARY OF THE SECTIONAL CONFLICT + +Just as the United States, under the impetus of Western enterprise, +rounded out the continental domain, its very existence as a nation was +challenged by a fratricidal conflict between two sections. This storm +had been long gathering upon the horizon. From the very beginning in +colonial times there had been a marked difference between the South and +the North. The former by climate and soil was dedicated to a planting +system--the cultivation of tobacco, rice, cotton, and sugar cane--and in +the course of time slave labor became the foundation of the system. The +North, on the other hand, supplemented agriculture by commerce, trade, +and manufacturing. Slavery, though lawful, did not flourish there. An +abundant supply of free labor kept the Northern wheels turning. + +This difference between the two sections, early noted by close +observers, was increased with the advent of the steam engine and the +factory system. Between 1815 and 1860 an industrial revolution took +place in the North. Its signs were gigantic factories, huge aggregations +of industrial workers, immense cities, a flourishing commerce, and +prosperous banks. Finding an unfavorable reception in the South, the new +industrial system was confined mainly to the North. By canals and +railways New York, Boston, and Philadelphia were linked with the +wheatfields of Ohio, Indiana, and Illinois. A steel net wove North and +Northwest together. A commercial net supplemented it. Western trade was +diverted from New Orleans to the East and Eastern credit sustained +Western enterprise. + +In time, the industrial North and the planting South evolved different +ideas of political policy. The former looked with favor on protective +tariffs, ship subsidies, a sound national banking system, and internal +improvements. The farmers of the West demanded that the public domain be +divided up into free homesteads for farmers. The South steadily swung +around to the opposite view. Its spokesmen came to regard most of these +policies as injurious to the planting interests. + +The economic questions were all involved in a moral issue. The Northern +states, in which slavery was of slight consequence, had early abolished +the institution. In the course of a few years there appeared +uncompromising advocates of universal emancipation. Far and wide the +agitation spread. The South was thoroughly frightened. It demanded +protection against the agitators, the enforcement of its rights in the +case of runaway slaves, and equal privileges for slavery in the new +territories. + +With the passing years the conflict between the two sections increased +in bitterness. It flamed up in 1820 and was allayed by the Missouri +compromise. It took on the form of a tariff controversy and +nullification in 1832. It appeared again after the Mexican war when the +question of slavery in the new territories was raised. Again +compromise--the great settlement of 1850--seemed to restore peace, only +to prove an illusion. A series of startling events swept the country +into war: the repeal of the Missouri compromise in 1854, the rise of the +Republican party pledged to the prohibition of slavery in the +territories, the Dred Scott decision of 1857, the Lincoln-Douglas +debates, John Brown's raid, the election of Lincoln, and secession. + +The Civil War, lasting for four years, tested the strength of both North +and South, in leadership, in finance, in diplomatic skill, in material +resources, in industry, and in armed forces. By the blockade of Southern +ports, by an overwhelming weight of men and materials, and by relentless +hammering on the field of battle, the North was victorious. + +The results of the war were revolutionary in character. Slavery was +abolished and the freedmen given the ballot. The Southern planters who +had been the leaders of their section were ruined financially and almost +to a man excluded from taking part in political affairs. The union was +declared to be perpetual and the right of a state to secede settled by +the judgment of battle. Federal control over the affairs of states, +counties, and cities was established by the fourteenth amendment. The +power and prestige of the federal government were enhanced beyond +imagination. The North was now free to pursue its economic policies: a +protective tariff, a national banking system, land grants for railways, +free lands for farmers. Planting had dominated the country for nearly a +generation. Business enterprise was to take its place. + + +=References= + +NORTHERN ACCOUNTS + +J.K. Hosmer, _The Appeal to Arms_ and _The Outcome of the Civil War_ +(American Nation Series). + +J. Ropes, _History of the Civil War_ (best account of military +campaigns). + +J.F. Rhodes, _History of the United States_, Vols. III, IV, and V. + +J.T. Morse, _Abraham Lincoln_ (2 vols.). + + +SOUTHERN ACCOUNTS + +W.E. Dodd, _Jefferson Davis_. + +Jefferson Davis, _Rise and Fall of the Confederate Government_. + +E. Pollard, _The Lost Cause_. + +A.H. Stephens, _The War between the States_. + + +=Questions= + +1. Contrast the reception of secession in 1860 with that given to +nullification in 1832. + +2. Compare the Northern and Southern views of the union. + +3. What were the peculiar features of the Confederate constitution? + +4. How was the Confederacy financed? + +5. Compare the resources of the two sections. + +6. On what foundations did Southern hopes rest? + +7. Describe the attempts at a peaceful settlement. + +8. Compare the raising of armies for the Civil War with the methods +employed in the World War. (See below, chapter XXV.) + +9. Compare the financial methods of the government in the two wars. + +10. Explain why the blockade was such a deadly weapon. + +11. Give the leading diplomatic events of the war. + +12. Trace the growth of anti-slavery sentiment. + +13. What measures were taken to restrain criticism of the government? + +14. What part did Lincoln play in all phases of the war? + +15. State the principal results of the war. + +16. Compare Lincoln's plan of reconstruction with that adopted by +Congress. + +17. What rights did Congress attempt to confer upon the former slaves? + + +=Research Topics= + +=Was Secession Lawful?=--The Southern view by Jefferson Davis in +Harding, _Select Orations Illustrating American History_, pp. 364-369. +Lincoln's view, Harding, pp. 371-381. + +=The Confederate Constitution.=--Compare with the federal Constitution +in Macdonald, _Documentary Source Book_, pp. 424-433 and pp. 271-279. + +=Federal Legislative Measures.=--Prepare a table and brief digest of the +important laws relating to the war. Macdonald, pp. 433-482. + +=Economic Aspects of the War.=--Coman, _Industrial History of the United +States_, pp. 279-301. Dewey, _Financial History of the United States_, +Chaps. XII and XIII. Tabulate the economic measures of Congress in +Macdonald. + +=Military Campaigns.=--The great battles are fully treated in Rhodes, +_History of the Civil War_, and teachers desiring to emphasize military +affairs may assign campaigns to members of the class for study and +report. A briefer treatment in Elson, _History of the United States_, +pp. 641-785. + +=Biographical Studies.=--Lincoln, Davis, Lee, Grant, Sherman, and other +leaders in civil and military affairs, with reference to local "war +governors." + +=English and French Opinion of the War.=--Rhodes, _History of the United +States_, Vol. IV, pp. 337-394. + +=The South during the War.=--Rhodes, Vol. V, pp. 343-382. + +=The North during the War.=--Rhodes, Vol. V, pp. 189-342. + +=Reconstruction Measures.=--Macdonald, _Source Book_, pp. 500-511; +514-518; 529-530; Elson, pp. 786-799. + +=The Force Bills.=--Macdonald, pp. 547-551; 554-564. + + + + +PART VI. NATIONAL GROWTH AND WORLD POLITICS + + + + +CHAPTER XVI + +THE POLITICAL AND ECONOMIC EVOLUTION OF THE SOUTH + + +The outcome of the Civil War in the South was nothing short of a +revolution. The ruling class, the law, and the government of the old +order had been subverted. To political chaos was added the havoc wrought +in agriculture, business, and transportation by military operations. And +as if to fill the cup to the brim, the task of reconstruction was +committed to political leaders from another section of the country, +strangers to the life and traditions of the South. + + +THE SOUTH AT THE CLOSE OF THE WAR + +=A Ruling Class Disfranchised.=--As the sovereignty of the planters had +been the striking feature of the old regime, so their ruin was the +outstanding fact of the new. The situation was extraordinary. The +American Revolution was carried out by people experienced in the arts of +self-government, and at its close they were free to follow the general +course to which they had long been accustomed. The French Revolution +witnessed the overthrow of the clergy and the nobility; but middle +classes who took their places had been steadily rising in intelligence +and wealth. + +The Southern Revolution was unlike either of these cataclysms. It was +not brought about by a social upheaval, but by an external crisis. It +did not enfranchise a class that sought and understood power, but +bondmen who had played no part in the struggle. Moreover it struck down +a class equipped to rule. The leading planters were almost to a man +excluded from state and federal offices, and the fourteenth amendment +was a bar to their return. All civil and military places under the +authority of the United States and of the states were closed to every +man who had taken an oath to support the Constitution as a member of +Congress, as a state legislator, or as a state or federal officer, and +afterward engaged in "insurrection or rebellion," or "given aid and +comfort to the enemies" of the United States. This sweeping provision, +supplemented by the reconstruction acts, laid under the ban most of the +talent, energy, and spirit of the South. + +=The Condition of the State Governments.=--The legislative, executive, +and judicial branches of the state governments thus passed into the +control of former slaves, led principally by Northern adventurers or +Southern novices, known as "Scalawags." The result was a carnival of +waste, folly, and corruption. The "reconstruction" assembly of South +Carolina bought clocks at $480 apiece and chandeliers at $650. To +purchase land for former bondmen the sum of $800,000 was appropriated; +and swamps bought at seventy-five cents an acre were sold to the state +at five times the cost. In the years between 1868 and 1873, the debt of +the state rose from about $5,800,000 to $24,000,000, and millions of the +increase could not be accounted for by the authorities responsible for +it. + +=Economic Ruin--Urban and Rural.=--No matter where Southern men turned +in 1865 they found devastation--in the towns, in the country, and along +the highways. Atlanta, the city to which Sherman applied the torch, lay +in ashes; Nashville and Chattanooga had been partially wrecked; Richmond +and Augusta had suffered severely from fires. Charleston was described +by a visitor as "a city of ruins, of desolation, of vacant houses, of +rotten wharves, of deserted warehouses, of weed gardens, of miles of +grass-grown streets.... How few young men there are, how generally the +young women are dressed in black! The flower of their proud aristocracy +is buried on scores of battle fields." + +Those who journeyed through the country about the same time reported +desolation equally widespread and equally pathetic. An English traveler +who made his way along the course of the Tennessee River in 1870 wrote: +"The trail of war is visible throughout the valley in burnt-up gin +houses, ruined bridges, mills, and factories ... and large tracts of +once cultivated land are stripped of every vestige of fencing. The +roads, long neglected, are in disorder and, having in many places become +impassable, new tracks have been made through the woods and fields +without much respect to boundaries." Many a great plantation had been +confiscated by the federal authorities while the owner was in +Confederate service. Many more lay in waste. In the wake of the armies +the homes of rich and poor alike, if spared the torch, had been +despoiled of the stock and seeds necessary to renew agriculture. + +=Railways Dilapidated.=--Transportation was still more demoralized. This +is revealed in the pages of congressional reports based upon first-hand +investigations. One eloquent passage illustrates all the rest. From +Pocahontas to Decatur, Alabama, a distance of 114 miles, we are told, +the railroad was "almost entirely destroyed, except the road bed and +iron rails, and they were in a very bad condition--every bridge and +trestle destroyed, cross-ties rotten, buildings burned, water tanks +gone, tracks grown up in weeds and bushes, not a saw mill near the line +and the labor system of the country gone. About forty miles of the track +were burned, the cross-ties entirely destroyed, and the rails bent and +twisted in such a manner as to require great labor to straighten and a +large portion of them requiring renewal." + +=Capital and Credit Destroyed.=--The fluid capital of the South, money +and credit, was in the same prostrate condition as the material capital. +The Confederate currency, inflated to the bursting point, had utterly +collapsed and was as worthless as waste paper. The bonds of the +Confederate government were equally valueless. Specie had nearly +disappeared from circulation. The fourteenth amendment to the federal +Constitution had made all "debts, obligations, and claims" incurred in +aid of the Confederate cause "illegal and void." Millions of dollars +owed to Northern creditors before the war were overdue and payment was +pressed upon the debtors. Where such debts were secured by mortgages on +land, executions against the property could be obtained in federal +courts. + + +THE RESTORATION OF WHITE SUPREMACY + +=Intimidation.=--In both politics and economics, the process of +reconstruction in the South was slow and arduous. The first battle in +the political contest for white supremacy was won outside the halls of +legislatures and the courts of law. It was waged, in the main, by secret +organizations, among which the Ku Klux Klan and the White Camelia were +the most prominent. The first of these societies appeared in Tennessee +in 1866 and held its first national convention the following year. It +was in origin a social club. According to its announcement, its objects +were "to protect the weak, the innocent, and the defenceless from the +indignities, wrongs, and outrages of the lawless, the violent, and the +brutal; and to succor the suffering, especially the widows and orphans +of the Confederate soldiers." The whole South was called "the Empire" +and was ruled by a "Grand Wizard." Each state was a realm and each +county a province. In the secret orders there were enrolled over half a +million men. + +The methods of the Ku Klux and the White Camelia were similar. Solemn +parades of masked men on horses decked in long robes were held, +sometimes in the daytime and sometimes at the dead of night. Notices +were sent to obnoxious persons warning them to stop certain practices. +If warning failed, something more convincing was tried. Fright was the +emotion most commonly stirred. A horseman, at the witching hour of +midnight, would ride up to the house of some offender, lift his head +gear, take off a skull, and hand it to the trembling victim with the +request that he hold it for a few minutes. Frequently violence was +employed either officially or unofficially by members of the Klan. Tar +and feathers were freely applied; the whip was sometimes laid on +unmercifully, and occasionally a brutal murder was committed. Often the +members were fired upon from bushes or behind trees, and swift +retaliation followed. So alarming did the clashes become that in 1870 +Congress forbade interference with electors or going in disguise for the +purpose of obstructing the exercise of the rights enjoyed under federal +law. + +In anticipation of such a step on the part of the federal government, +the Ku Klux was officially dissolved by the "Grand Wizard" in 1869. +Nevertheless, the local societies continued their organization and +methods. The spirit survived the national association. "On the whole," +says a Southern writer, "it is not easy to see what other course was +open to the South.... Armed resistance was out of the question. And yet +there must be some control had of the situation.... If force was denied, +craft was inevitable." + +=The Struggle for the Ballot Box.=--The effects of intimidation were +soon seen at elections. The freedman, into whose inexperienced hand the +ballot had been thrust, was ordinarily loath to risk his head by the +exercise of his new rights. He had not attained them by a long and +laborious contest of his own and he saw no urgent reason why he should +battle for the privilege of using them. The mere show of force, the mere +existence of a threat, deterred thousands of ex-slaves from appearing at +the polls. Thus the whites steadily recovered their dominance. Nothing +could prevent it. Congress enacted force bills establishing federal +supervision of elections and the Northern politicians protested against +the return of former Confederates to practical, if not official, power; +but all such opposition was like resistance to the course of nature. + +=Amnesty for Southerners.=--The recovery of white supremacy in this way +was quickly felt in national councils. The Democratic party in the North +welcomed it as a sign of its return to power. The more moderate +Republicans, anxious to heal the breach in American unity, sought to +encourage rather than to repress it. So it came about that amnesty for +Confederates was widely advocated. Yet it must be said that the struggle +for the removal of disabilities was stubborn and bitter. Lincoln, with +characteristic generosity, in the midst of the war had issued a general +proclamation of amnesty to nearly all who had been in arms against the +Union, on condition that they take an oath of loyalty; but Johnson, +vindictive toward Southern leaders and determined to make "treason +infamous," had extended the list of exceptions. Congress, even more +relentless in its pursuit of Confederates, pushed through the fourteenth +amendment which worked the sweeping disabilities we have just described. + +To appeals for comprehensive clemency, Congress was at first adamant. In +vain did men like Carl Schurz exhort their colleagues to crown their +victory in battle with a noble act of universal pardon and oblivion. +Congress would not yield. It would grant amnesty in individual cases; +for the principle of proscription it stood fast. When finally in 1872, +seven years after the surrender at Appomattox, it did pass the general +amnesty bill, it insisted on certain exceptions. Confederates who had +been members of Congress just before the war, or had served in other +high posts, civil or military, under the federal government, were still +excluded from important offices. Not until the summer of 1898, when the +war with Spain produced once more a union of hearts, did Congress relent +and abolish the last of the disabilities imposed on the Confederates. + +=The Force Bills Attacked and Nullified.=--The granting of amnesty +encouraged the Democrats to redouble their efforts all along the line. +In 1874 they captured the House of Representatives and declared war on +the "force bills." As a Republican Senate blocked immediate repeal, they +resorted to an ingenious parliamentary trick. To the appropriation bill +for the support of the army they attached a "rider," or condition, to +the effect that no troops should be used to sustain the Republican +government in Louisiana. The Senate rejected the proposal. A deadlock +ensued and Congress adjourned without making provision for the army. +Satisfied with the technical victory, the Democrats let the army bill +pass the next session, but kept up their fight on the force laws until +they wrung from President Hayes a measure forbidding the use of United +States troops in supervising elections. The following year they again +had recourse to a rider on the army bill and carried it through, putting +an end to the use of money for military control of elections. The +reconstruction program was clearly going to pieces, and the Supreme +Court helped along the process of dissolution by declaring parts of the +laws invalid. In 1878 the Democrats even won a majority in the Senate +and returned to power a large number of men once prominent in the +Confederate cause. + +The passions of the war by this time were evidently cooling. A new +generation of men was coming on the scene. The supremacy of the whites +in the South, if not yet complete, was at least assured. Federal +marshals, their deputies, and supervisors of elections still possessed +authority over the polls, but their strength had been shorn by the +withdrawal of United States troops. The war on the remaining remnants of +the "force bills" lapsed into desultory skirmishing. When in 1894 the +last fragment was swept away, the country took little note of the fact. +The only task that lay before the Southern leaders was to write in the +constitutions of their respective states the provisions of law which +would clinch the gains so far secured and establish white supremacy +beyond the reach of outside intervention. + +=White Supremacy Sealed by New State Constitutions.=--The impetus to +this final step was given by the rise of the Populist movement in the +South, which sharply divided the whites and in many communities threw +the balance of power into the hands of the few colored voters who +survived the process of intimidation. Southern leaders now devised new +constitutions so constructed as to deprive negroes of the ballot by law. +Mississippi took the lead in 1890; South Carolina followed five years +later; Louisiana, in 1898; North Carolina, in 1900; Alabama and +Maryland, in 1901; and Virginia, in 1902. + +The authors of these measures made no attempt to conceal their purposes. +"The intelligent white men of the South," said Governor Tillman, "intend +to govern here." The fifteenth amendment to the federal Constitution, +however, forbade them to deprive any citizen of the right to vote on +account of race, color, or previous condition of servitude. This made +necessary the devices of indirection. They were few, simple, and +effective. The first and most easily administered was the ingenious +provision requiring each prospective voter to read a section of the +state constitution or "understand and explain it" when read to him by +the election officers. As an alternative, the payment of taxes or the +ownership of a small amount of property was accepted as a qualification +for voting. Southern leaders, unwilling to disfranchise any of the poor +white men who had stood side by side with them "in the dark days of +reconstruction," also resorted to a famous provision known as "the +grandfather clause." This plan admitted to the suffrage any man who did +not have either property or educational qualifications, provided he had +voted on or before 1867 or was the son or grandson of any such person. + +The devices worked effectively. Of the 147,000 negroes in Mississippi +above the age of twenty-one, only about 8600 registered under the +constitution of 1890. Louisiana had 127,000 colored voters enrolled in +1896; under the constitution drafted two years later the registration +fell to 5300. An analysis of the figures for South Carolina in 1900 +indicates that only about one negro out of every hundred adult males of +that race took part in elections. Thus was closed this chapter of +reconstruction. + +=The Supreme Court Refuses to Intervene.=--Numerous efforts were made to +prevail upon the Supreme Court of the United States to declare such laws +unconstitutional; but the Court, usually on technical grounds, avoided +coming to a direct decision on the merits of the matter. In one case +the Court remarked that it could not take charge of and operate the +election machinery of Alabama; it concluded that "relief from a great +political wrong, if done as alleged, by the people of a state and by the +state itself, must be given by them, or by the legislative and executive +departments of the government of the United States." Only one of the +several schemes employed, namely, the "grandfather clause," was held to +be a violation of the federal Constitution. This blow, effected in 1915 +by the decision in the Oklahoma and Maryland cases, left, however, the +main structure of disfranchisement unimpaired. + +=Proposals to Reduce Southern Representation in Congress.=--These +provisions excluding thousands of male citizens from the ballot did not, +in express terms, deprive any one of the vote on account of race or +color. They did not, therefore, run counter to the letter of the +fifteenth amendment; but they did unquestionably make the states which +adopted them liable to the operations of the fourteenth amendment. The +latter very explicitly provides that whenever any state deprives adult +male citizens of the right to vote (except in certain minor cases) the +representation of the state in Congress shall be reduced in the +proportion which such number of disfranchised citizens bears to the +whole number of male citizens over twenty-one years of age. + +Mindful of this provision, those who protested against disfranchisement +in the South turned to the Republican party for relief, asking for +action by the political branches of the federal government as the +Supreme Court had suggested. The Republicans responded in their platform +of 1908 by condemning all devices designed to deprive any one of the +ballot for reasons of color alone; they demanded the enforcement in +letter and spirit of the fourteenth as well as all other amendments. +Though victorious in the election, the Republicans refrained from +reopening the ancient contest; they made no attempt to reduce Southern +representation in the House. Southern leaders, while protesting against +the declarations of their opponents, were able to view them as idle +threats in no way endangering the security of the measures by which +political reconstruction had been undone. + +=The Solid South.=--Out of the thirty-year conflict against "carpet-bag +rule" there emerged what was long known as the "solid South"--a South +that, except occasionally in the border states, never gave an electoral +vote to a Republican candidate for President. Before the Civil War, the +Southern people had been divided on political questions. Take, for +example, the election of 1860. In all the fifteen slave states the +variety of opinion was marked. In nine of them--Delaware, Virginia, +Tennessee, Missouri, Maryland, Louisiana, Kentucky, Georgia, and +Arkansas--the combined vote against the representative of the extreme +Southern point of view, Breckinridge, constituted a safe majority. In +each of the six states which were carried by Breckinridge, there was a +large and powerful minority. In North Carolina Breckinridge's majority +over Bell and Douglas was only 849 votes. Equally astounding to those +who imagine the South united in defense of extreme views in 1860 was the +vote for Bell, the Unionist candidate, who stood firmly for the +Constitution and silence on slavery. In every Southern state Bell's vote +was large. In Virginia, Kentucky, Missouri, and Tennessee it was greater +than that received by Breckinridge; in Georgia, it was 42,000 against +51,000; in Louisiana, 20,000 against 22,000; in Mississippi, 25,000 +against 40,000. + +The effect of the Civil War upon these divisions was immediate and +decisive, save in the border states where thousands of men continued to +adhere to the cause of Union. In the Confederacy itself nearly all +dissent was silenced by war. Men who had been bitter opponents joined +hands in defense of their homes; when the armed conflict was over they +remained side by side working against "Republican misrule and negro +domination." By 1890, after Northern supremacy was definitely broken, +they boasted that there were at least twelve Southern states in which no +Republican candidate for President could win a single electoral vote. + +=Dissent in the Solid South.=--Though every one grew accustomed to speak +of the South as "solid," it did not escape close observers that in a +number of Southern states there appeared from time to time a fairly +large body of dissenters. In 1892 the Populists made heavy inroads upon +the Democratic ranks. On other occasions, the contests between factions +within the Democratic party over the nomination of candidates revealed +sharp differences of opinion. In some places, moreover, there grew up a +Republican minority of respectable size. For example, in Georgia, Mr. +Taft in 1908 polled 41,000 votes against 72,000 for Mr. Bryan; in North +Carolina, 114,000 against 136,000; in Tennessee, 118,000 against +135,000; in Kentucky, 235,000 against 244,000. In 1920, Senator Harding, +the Republican candidate, broke the record by carrying Tennessee as well +as Kentucky, Oklahoma, and Maryland. + + +THE ECONOMIC ADVANCE OF THE SOUTH + +=The Break-up of the Great Estates.=--In the dissolution of chattel +slavery it was inevitable that the great estate should give way before +the small farm. The plantation was in fact founded on slavery. It was +continued and expanded by slavery. Before the war the prosperous +planter, either by inclination or necessity, invested his surplus in +more land to add to his original domain. As his slaves increased in +number, he was forced to increase his acreage or sell them, and he +usually preferred the former, especially in the Far South. Still another +element favored the large estate. Slave labor quickly exhausted the soil +and of its own force compelled the cutting of the forests and the +extension of the area under cultivation. Finally, the planter took a +natural pride in his great estate; it was a sign of his prowess and his +social prestige. + +In 1865 the foundations of the planting system were gone. It was +difficult to get efficient labor to till the vast plantations. The +planters themselves were burdened with debts and handicapped by lack of +capital. Negroes commonly preferred tilling plots of their own, rented +or bought under mortgage, to the more irksome wage labor under white +supervision. The land hunger of the white farmer, once checked by the +planting system, reasserted itself. Before these forces the plantation +broke up. The small farm became the unit of cultivation in the South as +in the North. Between 1870 and 1900 the number of farms doubled in every +state south of the line of the Potomac and Ohio rivers, except in +Arkansas and Louisiana. From year to year the process of breaking up +continued, with all that it implied in the creation of land-owning +farmers. + +=The Diversification of Crops.=--No less significant was the concurrent +diversification of crops. Under slavery, tobacco, rice, and sugar were +staples and "cotton was king." These were standard crops. The methods of +cultivation were simple and easily learned. They tested neither the +skill nor the ingenuity of the slaves. As the returns were quick, they +did not call for long-time investments of capital. After slavery was +abolished, they still remained the staples, but far-sighted +agriculturists saw the dangers of depending upon a few crops. The mild +climate all the way around the coast from Virginia to Texas and the +character of the alluvial soil invited the exercise of more imagination. +Peaches, oranges, peanuts, and other fruits and vegetables were found to +grow luxuriantly. Refrigeration for steamships and freight cars put the +markets of great cities at the doors of Southern fruit and vegetable +gardeners. The South, which in planting days had relied so heavily upon +the Northwest for its foodstuffs, began to battle for independence. +Between 1880 and the close of the century the value of its farm crops +increased from $660,000,000 to $1,270,000,000. + +=The Industrial and Commercial Revolution.=--On top of the radical +changes in agriculture came an industrial and commercial revolution. The +South had long been rich in natural resources, but the slave system had +been unfavorable to their development. Rivers that would have turned +millions of spindles tumbled unheeded to the seas. Coal and iron beds +lay unopened. Timber was largely sacrificed in clearing lands for +planting, or fell to earth in decay. Southern enterprise was consumed in +planting. Slavery kept out the white immigrants who might have supplied +the skilled labor for industry. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +STEEL MILLS--BIRMINGHAM, ALABAMA] + +After 1865, achievement and fortune no longer lay on the land alone. As +soon as the paralysis of the war was over, the South caught the +industrial spirit that had conquered feudal Europe and the agricultural +North. In the development of mineral wealth, enormous strides were +taken. Iron ore of every quality was found, the chief beds being in +Virginia, West Virginia, Tennessee, Kentucky, North Carolina, Georgia, +Alabama, Arkansas, and Texas. Five important coal basins were uncovered: +in Virginia, North Carolina, the Appalachian chain from Maryland to +Northern Alabama, Kentucky, Arkansas, and Texas. Oil pools were found +in Kentucky, Tennessee, and Texas. Within two decades, 1880 to 1900, the +output of mineral wealth multiplied tenfold: from ten millions a year to +one hundred millions. The iron industries of West Virginia and Alabama +began to rival those of Pennsylvania. Birmingham became the Pittsburgh +and Atlanta the Chicago of the South. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +A SOUTHERN COTTON MILL IN A COTTON FIELD] + +In other lines of industry, lumbering and cotton manufacturing took a +high rank. The development of Southern timber resources was in every +respect remarkable, particularly in Louisiana, Arkansas, and +Mississippi. At the end of the first decade of the twentieth century, +primacy in lumber had passed from the Great Lakes region to the South. +In 1913 eight Southern states produced nearly four times as much lumber +as the Lake states and twice as much as the vast forests of Washington +and Oregon. + +The development of the cotton industry, in the meantime, was similarly +astounding. In 1865 cotton spinning was a negligible matter in the +Southern states. In 1880 they had one-fourth of the mills of the +country. At the end of the century they had one-half the mills, the two +Carolinas taking the lead by consuming more than one-third of their +entire cotton crop. Having both the raw materials and the power at hand, +they enjoyed many advantages over the New England rivals, and at the +opening of the new century were outstripping the latter in the +proportion of spindles annually put into operation. Moreover, the cotton +planters, finding a market at the neighboring mills, began to look +forward to a day when they would be somewhat emancipated from absolute +dependence upon the cotton exchanges of New York, New Orleans, and +Liverpool. + +Transportation kept pace with industry. In 1860, the South had about ten +thousand miles of railway. By 1880 the figure had doubled. During the +next twenty years over thirty thousand miles were added, most of the +increase being in Texas. About 1898 there opened a period of +consolidation in which scores of short lines were united, mainly under +the leadership of Northern capitalists, and new through service opened +to the North and West. Thus Southern industries were given easy outlets +to the markets of the nation and brought within the main currents of +national business enterprise. + +=The Social Effects of the Economic Changes.=--As long as the slave +system lasted and planting was the major interest, the South was bound +to be sectional in character. With slavery gone, crops diversified, +natural resources developed, and industries promoted, the social order +of the ante-bellum days inevitably dissolved; the South became more and +more assimilated to the system of the North. In this process several +lines of development are evident. + +In the first place we see the steady rise of the small farmer. Even in +the old days there had been a large class of white yeomen who owned no +slaves and tilled the soil with their own hands, but they labored under +severe handicaps. They found the fertile lands of the coast and river +valleys nearly all monopolized by planters, and they were by the force +of circumstances driven into the uplands where the soil was thin and the +crops were light. Still they increased in numbers and zealously worked +their freeholds. + +The war proved to be their opportunity. With the break-up of the +plantations, they managed to buy land more worthy of their plows. By +intelligent labor and intensive cultivation they were able to restore +much of the worn-out soil to its original fertility. In the meantime +they rose with their prosperity in the social and political scale. It +became common for the sons of white farmers to enter the professions, +while their daughters went away to college and prepared for teaching. +Thus a more democratic tone was given to the white society of the South. +Moreover the migration to the North and West, which had formerly carried +thousands of energetic sons and daughters to search for new homesteads, +was materially reduced. The energy of the agricultural population went +into rehabilitation. + +The increase in the number of independent farmers was accompanied by the +rise of small towns and villages which gave diversity to the life of the +South. Before 1860 it was possible to travel through endless stretches +of cotton and tobacco. The social affairs of the planter's family +centered in the homestead even if they were occasionally interrupted by +trips to distant cities or abroad. Carpentry, bricklaying, and +blacksmithing were usually done by slaves skilled in simple handicrafts. +Supplies were bought wholesale. In this way there was little place in +plantation economy for villages and towns with their stores and +mechanics. + +The abolition of slavery altered this. Small farms spread out where +plantations had once stood. The skilled freedmen turned to agriculture +rather than to handicrafts; white men of a business or mechanical bent +found an opportunity to serve the needs of their communities. So local +merchants and mechanics became an important element in the social +system. In the county seats, once dominated by the planters, business +and professional men assumed the leadership. + +Another vital outcome of this revolution was the transference of a large +part of planting enterprise to business. Mr. Bruce, a Southern historian +of fine scholarship, has summed up this process in a single telling +paragraph: "The higher planting class that under the old system gave so +much distinction to rural life has, so far as it has survived at all, +been concentrated in the cities. The families that in the time of +slavery would have been found only in the country are now found, with a +few exceptions, in the towns. The transplantation has been practically +universal. The talent, the energy, the ambition that formerly sought +expression in the management of great estates and the control of hosts +of slaves, now seek a field of action in trade, in manufacturing +enterprises, or in the general enterprises of development. This was for +the ruling class of the South the natural outcome of the great economic +revolution that followed the war." + +As in all other parts of the world, the mechanical revolution was +attended by the growth of a population of industrial workers dependent +not upon the soil but upon wages for their livelihood. When Jefferson +Davis was inaugurated President of the Southern Confederacy, there were +approximately only one hundred thousand persons employed in Southern +manufactures as against more than a million in Northern mills. Fifty +years later, Georgia and Alabama alone had more than one hundred and +fifty thousand wage-earners. Necessarily this meant also a material +increase in urban population, although the wide dispersion of cotton +spinning among small centers prevented the congestion that had +accompanied the rise of the textile industry in New England. In 1910, +New Orleans, Atlanta, Memphis, Nashville, and Houston stood in the same +relation to the New South that Cincinnati, Chicago, Cleveland, and +Detroit had stood to the New West fifty years before. The problems of +labor and capital and municipal administration, which the earlier +writers boasted would never perplex the planting South, had come in full +force. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +A GLIMPSE OF MEMPHIS, TENNESSEE] + +=The Revolution in the Status of the Slaves.=--No part of Southern +society was so profoundly affected by the Civil War and economic +reconstruction as the former slaves. On the day of emancipation, they +stood free, but empty-handed, the owners of no tools or property, the +masters of no trade and wholly inexperienced in the arts of self-help +that characterized the whites in general. They had never been accustomed +to looking out for themselves. The plantation bell had called them to +labor and released them. Doles of food and clothing had been regularly +made in given quantities. They did not understand wages, ownership, +renting, contracts, mortgages, leases, bills, or accounts. + +When they were emancipated, four courses were open to them. They could +flee from the plantation to the nearest town or city, or to the distant +North, to seek a livelihood. Thousands of them chose this way, +overcrowding cities where disease mowed them down. They could remain +where they, were in their cabins and work for daily wages instead of +food, clothing, and shelter. This second course the major portion of +them chose; but, as few masters had cash to dispense, the new relation +was much like the old, in fact. It was still one of barter. The planter +offered food, clothing, and shelter; the former slaves gave their labor +in return. That was the best that many of them could do. + +A third course open to freedmen was that of renting from the former +master, paying him usually with a share of the produce of the land. This +way a large number of them chose. It offered them a chance to become +land owners in time and it afforded an easier life, the renter being, to +a certain extent at least, master of his own hours of labor. The final +and most difficult path was that to ownership of land. Many a master +helped his former slaves to acquire small holdings by offering easy +terms. The more enterprising and the more fortunate who started life as +renters or wage-earners made their way upward to ownership in so many +cases that by the end of the century, one-fourth of the colored laborers +on the land owned the soil they tilled. + +In the meantime, the South, though relatively poor, made relatively +large expenditures for the education of the colored population. By the +opening of the twentieth century, facilities were provided for more than +one-half of the colored children of school age. While in many respects +this progress was disappointing, its significance, to be appreciated, +must be derived from a comparison with the total illiteracy which +prevailed under slavery. + +In spite of all that happened, however, the status of the negroes in the +South continued to give a peculiar character to that section of the +country. They were almost entirely excluded from the exercise of the +suffrage, especially in the Far South. Special rooms were set aside for +them at the railway stations and special cars on the railway lines. In +the field of industry calling for technical skill, it appears, from the +census figures, that they lost ground between 1890 and 1900--a condition +which their friends ascribed to discriminations against them in law and +in labor organizations and their critics ascribed to their lack of +aptitude. Whatever may be the truth, the fact remained that at the +opening of the twentieth century neither the hopes of the emancipators +nor the fears of their opponents were realized. The marks of the +"peculiar institution" were still largely impressed upon Southern +society. + +The situation, however, was by no means unchanging. On the contrary +there was a decided drift in affairs. For one thing, the proportion of +negroes in the South had slowly declined. By 1900 they were in a +majority in only two states, South Carolina and Mississippi. In +Arkansas, Virginia, West Virginia, and North Carolina the proportion of +the white population was steadily growing. The colored migration +northward increased while the westward movement of white farmers which +characterized pioneer days declined. At the same time a part of the +foreign immigration into the United States was diverted southward. As +the years passed these tendencies gained momentum. The already huge +colored quarters in some Northern cities were widely expanded, as whole +counties in the South were stripped of their colored laborers. The race +question, in its political and economic aspects, became less and less +sectional, more and more national. The South was drawn into the main +stream of national life. The separatist forces which produced the +cataclysm of 1861 sank irresistibly into the background. + + +=References= + +H.W. Grady, _The New South_ (1890). + +H.A. Herbert, _Why the Solid South_. + +W.G. Brown, _The Lower South_. + +E.G. Murphy, _Problems of the Present South_. + +B.T. Washington, _The Negro Problem_; _The Story of the Negro_; _The +Future of the Negro_. + +A.B. Hart, _The Southern South_ and R.S. Baker, _Following the Color +Line_ (two works by Northern writers). + +T.N. Page, _The Negro, the Southerner's Problem_. + + +=Questions= + +1. Give the three main subdivisions of the chapter. + +2. Compare the condition of the South in 1865 with that of the North. +Compare with the condition of the United States at the close of the +Revolutionary War. At the close of the World War in 1918. + +3. Contrast the enfranchisement of the slaves with the enfranchisement +of white men fifty years earlier. + +4. What was the condition of the planters as compared with that of the +Northern manufacturers? + +5. How does money capital contribute to prosperity? Describe the plight +of Southern finance. + +6. Give the chief steps in the restoration of white supremacy. + +7. Do you know of any other societies to compare with the Ku Klux Klan? + +8. Give Lincoln's plan for amnesty. What principles do you think should +govern the granting of amnesty? + +9. How were the "Force bills" overcome? + +10. Compare the fourteenth and fifteenth amendments with regard to the +suffrage provisions. + +11. Explain how they may be circumvented. + +12. Account for the Solid South. What was the situation before 1860? + +13. In what ways did Southern agriculture tend to become like that of +the North? What were the social results? + +14. Name the chief results of an "industrial revolution" in general. In +the South, in particular. + +15. What courses were open to freedmen in 1865? + +16. Give the main features in the economic and social status of the +colored population in the South. + +17. Explain why the race question is national now, rather than +sectional. + + + +=Research Topics= + +=Amnesty for Confederates.=--Study carefully the provisions of the +fourteenth amendment in the Appendix. Macdonald, _Documentary Source +Book of American History_, pp. 470 and 564. A plea for amnesty in +Harding, _Select Orations Illustrating American History_, pp. 467-488. + +=Political Conditions in the South in 1868.=--Dunning, _Reconstruction, +Political and Economic_ (American Nation Series), pp. 109-123; Hart, +_American History Told by Contemporaries_, Vol. IV, pp. 445-458, +497-500; Elson, _History of the United States_, pp. 799-805. + +=Movement for White Supremacy.=--Dunning, _Reconstruction_, pp. 266-280; +Paxson, _The New Nation_ (Riverside Series), pp. 39-58; Beard, _American +Government and Politics_, pp. 454-457. + +=The Withdrawal of Federal Troops from the South.=--Sparks, _National +Development_ (American Nation Series), pp. 84-102; Rhodes, _History of +the United States_, Vol. VIII, pp. 1-12. + +=Southern Industry.=--Paxson, _The New Nation_, pp. 192-207; T.M. Young, +_The American Cotton Industry_, pp. 54-99. + +=The Race Question.=--B.T. Washington, _Up From Slavery_ (sympathetic +presentation); A.H. Stone, _Studies in the American Race Problem_ +(coldly analytical); Hart, _Contemporaries_, Vol. IV, pp. 647-649, +652-654, 663-669. + + + + +CHAPTER XVII + +BUSINESS ENTERPRISE AND THE REPUBLICAN PARTY + + +If a single phrase be chosen to characterize American life during the +generation that followed the age of Douglas and Lincoln, it must be +"business enterprise"--the tremendous, irresistible energy of a virile +people, mounting in numbers toward a hundred million and applied without +let or hindrance to the developing of natural resources of unparalleled +richness. The chief goal of this effort was high profits for the +captains of industry, on the one hand; and high wages for the workers, +on the other. Its signs, to use the language of a Republican orator in +1876, were golden harvest fields, whirling spindles, turning wheels, +open furnace doors, flaming forges, and chimneys filled with eager fire. +The device blazoned on its shield and written over its factory doors was +"prosperity." A Republican President was its "advance agent." Released +from the hampering interference of the Southern planters and the +confusing issues of the slavery controversy, business enterprise sprang +forward to the task of winning the entire country. Then it flung its +outposts to the uttermost parts of the earth--Europe, Africa, and the +Orient--where were to be found markets for American goods and natural +resources for American capital to develop. + + +RAILWAYS AND INDUSTRY + +=The Outward Signs of Enterprise.=--It is difficult to comprehend all +the multitudinous activities of American business energy or to appraise +its effects upon the life and destiny of the American people; for beyond +the horizon of the twentieth century lie consequences as yet undreamed +of in our poor philosophy. Statisticians attempt to record its +achievements in terms of miles of railways built, factories opened, men +and women employed, fortunes made, wages paid, cities founded, rivers +spanned, boxes, bales, and tons produced. Historians apply standards of +comparison with the past. Against the slow and leisurely stagecoach, +they set the swift express, rushing from New York to San Francisco in +less time than Washington consumed in his triumphal tour from Mt. Vernon +to New York for his first inaugural. Against the lazy sailing vessel +drifting before a genial breeze, they place the turbine steamer crossing +the Atlantic in five days or the still swifter airplane, in fifteen +hours. For the old workshop where a master and a dozen workmen and +apprentices wrought by hand, they offer the giant factory where ten +thousand persons attend the whirling wheels driven by steam. They write +of the "romance of invention" and the "captains of industry." + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +A CORNER IN THE BETHLEHEM STEEL WORKS] + +=The Service of the Railway.=--All this is fitting in its way. Figures +and contrasts cannot, however, tell the whole story. Take, for example, +the extension of railways. It is easy to relate that there were 30,000 +miles in 1860; 166,000 in 1890; and 242,000 in 1910. It is easy to show +upon the map how a few straggling lines became a perfect mesh of closely +knitted railways; or how, like the tentacles of a great monster, the few +roads ending in the Mississippi Valley in 1860 were extended and +multiplied until they tapped every wheat field, mine, and forest beyond +the valley. All this, eloquent of enterprise as it truly is, does not +reveal the significance of railways for American life. It does not +indicate how railways made a continental market for American goods; nor +how they standardized the whole country, giving to cities on the +advancing frontier the leading features of cities in the old East; nor +how they carried to the pioneer the comforts of civilization; nor yet +how in the West they were the forerunners of civilization, the makers of +homesteads, the builders of states. + +=Government Aid for Railways.=--Still the story is not ended. The +significant relation between railways and politics must not be +overlooked. The bounty of a lavish government, for example, made +possible the work of railway promoters. By the year 1872 the Federal +government had granted in aid of railways 155,000,000 acres of land--an +area estimated as almost equal to Pennsylvania, New York, Connecticut, +Rhode Island, Massachusetts, Maine, New Hampshire, and Vermont. The +Union Pacific Company alone secured from the federal government a free +right of way through the public domain, twenty sections of land with +each mile of railway, and a loan up to fifty millions of dollars secured +by a second mortgage on the company's property. More than half of the +northern tier of states lying against Canada from Lake Michigan to the +Pacific was granted to private companies in aid of railways and wagon +roads. About half of New Mexico, Arizona, and California was also given +outright to railway companies. These vast grants from the federal +government were supplemented by gifts from the states in land and by +subscriptions amounting to more than two hundred million dollars. The +history of these gifts and their relation to the political leaders that +engineered them would alone fill a large and interesting volume. + +=Railway Fortunes and Capital.=--Out of this gigantic railway promotion, +the first really immense American fortunes were made. Henry Adams, the +grandson of John Quincy Adams, related that his grandfather on his +mother's side, Peter Brooks, on his death in 1849, left a fortune of two +million dollars, "supposed to be the largest estate in Boston," then one +of the few centers of great riches. Compared with the opulence that +sprang out of the Union Pacific, the Northern Pacific, the Southern +Pacific, with their subsidiary and component lines, the estate of Peter +Brooks was a poor man's heritage. + +The capital invested in these railways was enormous beyond the +imagination of the men of the stagecoach generation. The total debt of +the United States incurred in the Revolutionary War--a debt which those +of little faith thought the country could never pay--was reckoned at a +figure well under $75,000,000. When the Union Pacific Railroad was +completed, there were outstanding against it $27,000,000 in first +mortgage bonds, $27,000,000 in second mortgage bonds held by the +government, $10,000,000 in income bonds, $10,000,000 in land grant +bonds, and, on top of that huge bonded indebtedness, $36,000,000 in +stock--making $110,000,000 in all. If the amount due the United States +government be subtracted, still there remained, in private hands, stocks +and bonds exceeding in value the whole national debt of Hamilton's +day--a debt that strained all the resources of the Federal government in +1790. Such was the financial significance of the railways. + +[Illustration: RAILROADS OF THE UNITED STATES IN 1918] + +=Growth and Extension of Industry.=--In the field of manufacturing, +mining, and metal working, the results of business enterprise far +outstripped, if measured in mere dollars, the results of railway +construction. By the end of the century there were about ten billion +dollars invested in factories alone and five million wage-earners +employed in them; while the total value of the output, fourteen billion +dollars, was fifteen times the figure for 1860. In the Eastern states +industries multiplied. In the Northwest territory, the old home of +Jacksonian Democracy, they overtopped agriculture. By the end of the +century, Ohio had almost reached and Illinois had surpassed +Massachusetts in the annual value of manufacturing output. + +That was not all. Untold wealth in the form of natural resources was +discovered in the South and West. Coal deposits were found in the +Appalachians stretching from Pennsylvania down to Alabama, in Michigan, +in the Mississippi Valley, and in the Western mountains from North +Dakota to New Mexico. In nearly every coal-bearing region, iron was also +discovered and the great fields of Michigan, Wisconsin, and Minnesota +soon rivaled those of the Appalachian area. Copper, lead, gold, and +silver in fabulous quantities were unearthed by the restless prospectors +who left no plain or mountain fastness unexplored. Petroleum, first +pumped from the wells of Pennsylvania in the summer of 1859, made new +fortunes equaling those of trade, railways, and land speculation. It +scattered its riches with an especially lavish hand through Oklahoma, +Texas, and California. + +=The Trust--an Instrument of Industrial Progress.=--Business enterprise, +under the direction of powerful men working single-handed, or of small +groups of men pooling their capital for one or more undertakings, had +not advanced far before there appeared upon the scene still mightier +leaders of even greater imagination. New constructive genius now brought +together and combined under one management hundreds of concerns or +thousands of miles of railways, revealing the magic strength of +cooperation on a national scale. Price-cutting in oil, threatening ruin +to those engaged in the industry, as early as 1879, led a number of +companies in Cleveland, Pittsburgh, and Philadelphia to unite in +price-fixing. Three years later a group of oil interests formed a close +organization, placing all their stocks in the hands of trustees, among +whom was John D. Rockefeller. The trustees, in turn, issued +certificates representing the share to which each participant was +entitled; and took over the management of the entire business. Such was +the nature of the "trust," which was to play such an unique role in the +progress of America. + +The idea of combination was applied in time to iron and steel, copper, +lead, sugar, cordage, coal, and other commodities, until in each field +there loomed a giant trust or corporation, controlling, if not most of +the output, at least enough to determine in a large measure the prices +charged to consumers. With the passing years, the railways, mills, +mines, and other business concerns were transferred from individual +owners to corporations. At the end of the nineteenth century, the whole +face of American business was changed. Three-fourths of the output from +industries came from factories under corporate management and only +one-fourth from individual and partnership undertakings. + +[Illustration: JOHN D. ROCKEFELLER] + +=The Banking Corporation.=--Very closely related to the growth of +business enterprise on a large scale was the system of banking. In the +old days before banks, a person with savings either employed them in his +own undertakings, lent them to a neighbor, or hid them away where they +set no industry in motion. Even in the early stages of modern business, +it was common for a manufacturer to rise from small beginnings by +financing extensions out of his own earnings and profits. This state of +affairs was profoundly altered by the growth of the huge corporations +requiring millions and even billions of capital. The banks, once an +adjunct to business, became the leaders in business. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +WALL STREET, NEW YORK CITY] + +It was the banks that undertook to sell the stocks and bonds issued by +new corporations and trusts and to supply them with credit to carry on +their operations. Indeed, many of the great mergers or combinations in +business were initiated by magnates in the banking world with millions +and billions under their control. Through their connections with one +another, the banks formed a perfect network of agencies gathering up the +pennies and dollars of the masses as well as the thousands of the rich +and pouring them all into the channels of business and manufacturing. +In this growth of banking on a national scale, it was inevitable that a +few great centers, like Wall Street in New York or State Street in +Boston, should rise to a position of dominance both in concentrating the +savings and profits of the nation and in financing new as well as old +corporations. + +=The Significance of the Corporation.=--The corporation, in fact, became +the striking feature of American business life, one of the most +marvelous institutions of all time, comparable in wealth and power and +the number of its servants with kingdoms and states of old. The effect +of its rise and growth cannot be summarily estimated; but some special +facts are obvious. It made possible gigantic enterprises once entirely +beyond the reach of any individual, no matter how rich. It eliminated +many of the futile and costly wastes of competition in connection with +manufacture, advertising, and selling. It studied the cheapest methods +of production and shut down mills that were poorly equipped or +disadvantageously located. It established laboratories for research in +industry, chemistry, and mechanical inventions. Through the sale of +stocks and bonds, it enabled tens of thousands of people to become +capitalists, if only in a small way. The corporation made it possible +for one person to own, for instance, a $50 share in a million dollar +business concern--a thing entirely impossible under a regime of +individual owners and partnerships. + +There was, of course, another side to the picture. Many of the +corporations sought to become monopolies and to make profits, not by +economies and good management, but by extortion from purchasers. +Sometimes they mercilessly crushed small business men, their +competitors, bribed members of legislatures to secure favorable laws, +and contributed to the campaign funds of both leading parties. Wherever +a trust approached the position of a monopoly, it acquired a dominion +over the labor market which enabled it to break even the strongest trade +unions. In short, the power of the trust in finance, in manufacturing, +in politics, and in the field of labor control can hardly be measured. + +=The Corporation and Labor.=--In the development of the corporation +there was to be observed a distinct severing of the old ties between +master and workmen, which existed in the days of small industries. For +the personal bond between the owner and the employees was substituted a +new relation. "In most parts of our country," as President Wilson once +said, "men work, not for themselves, not as partners in the old way in +which they used to work, but generally as employees--in a higher or +lower grade--of great corporations." The owner disappeared from the +factory and in his place came the manager, representing the usually +invisible stockholders and dependent for his success upon his ability to +make profits for the owners. Hence the term "soulless corporation," +which was to exert such a deep influence on American thinking about +industrial relations. + +=Cities and Immigration.=--Expressed in terms of human life, this era of +unprecedented enterprise meant huge industrial cities and an immense +labor supply, derived mainly from European immigration. Here, too, +figures tell only a part of the story. In Washington's day nine-tenths +of the American people were engaged in agriculture and lived in the +country; in 1890 more than one-third of the population dwelt in towns of +2500 and over; in 1920 more than half of the population lived in towns +of over 2500. In forty years, between 1860 and 1900, Greater New York +had grown from 1,174,000 to 3,437,000; San Francisco from 56,000 to +342,000; Chicago from 109,000 to 1,698,000. The miles of city tenements +began to rival, in the number of their residents, the farm homesteads of +the West. The time so dreaded by Jefferson had arrived. People were +"piled upon one another in great cities" and the republic of small +farmers had passed away. + +To these industrial centers flowed annually an ever-increasing tide of +immigration, reaching the half million point in 1880; rising to +three-quarters of a million three years later; and passing the million +mark in a single year at the opening of the new century. Immigration was +as old as America but new elements now entered the situation. In the +first place, there were radical changes in the nationality of the +newcomers. The migration from Northern Europe--England, Ireland, +Germany, and Scandinavia--diminished; that from Italy, Russia, and +Austria-Hungary increased, more than three-fourths of the entire number +coming from these three lands between the years 1900 and 1910. These +later immigrants were Italians, Poles, Magyars, Czechs, Slovaks, +Russians, and Jews, who came from countries far removed from the +language and the traditions of England whence came the founders of +America. + +In the second place, the reception accorded the newcomers differed from +that given to the immigrants in the early days. By 1890 all the free +land was gone. They could not, therefore, be dispersed widely among the +native Americans to assimilate quickly and unconsciously the habits and +ideas of American life. On the contrary, they were diverted mainly to +the industrial centers. There they crowded--nay, overcrowded--into +colonies of their own where they preserved their languages, their +newspapers, and their old-world customs and views. + +So eager were American business men to get an enormous labor supply that +they asked few questions about the effect of this "alien invasion" upon +the old America inherited from the fathers. They even stimulated the +invasion artificially by importing huge armies of foreigners under +contract to work in specified mines and mills. There seemed to be no +limit to the factories, forges, refineries, and railways that could be +built, to the multitudes that could be employed in conquering a +continent. As for the future, that was in the hands of Providence! + +=Business Theories of Politics.=--As the statesmen of Hamilton's school +and the planters of Calhoun's had their theories of government and +politics, so the leaders in business enterprise had theirs. It was +simple and easily stated. "It is the duty of the government," they +urged, "to protect American industry against foreign competition by +means of high tariffs on imported goods, to aid railways by generous +grants of land, to sell mineral and timber lands at low prices to +energetic men ready to develop them, and then to leave the rest to the +initiative and drive of individuals and companies." All government +interference with the management, prices, rates, charges, and conduct of +private business they held to be either wholly pernicious or intolerably +impertinent. Judging from their speeches and writings, they conceived +the nation as a great collection of individuals, companies, and labor +unions all struggling for profits or high wages and held together by a +government whose principal duty was to keep the peace among them and +protect industry against the foreign manufacturer. Such was the +political theory of business during the generation that followed the +Civil War. + + +THE SUPREMACY OF THE REPUBLICAN PARTY (1861-85) + +=Business Men and Republican Policies.=--Most of the leaders in industry +gravitated to the Republican ranks. They worked in the North and the +Republican party was essentially Northern. It was moreover--at least so +far as the majority of its members were concerned--committed to +protective tariffs, a sound monetary and banking system, the promotion +of railways and industry by land grants, and the development of internal +improvements. It was furthermore generous in its immigration policy. It +proclaimed America to be an asylum for the oppressed of all countries +and flung wide the doors for immigrants eager to fill the factories, man +the mines, and settle upon Western lands. In a word the Republicans +stood for all those specific measures which favored the enlargement and +prosperity of business. At the same time they resisted government +interference with private enterprise. They did not regulate railway +rates, prosecute trusts for forming combinations, or prevent railway +companies from giving lower rates to some shippers than to others. To +sum it up, the political theories of the Republican party for three +decades after the Civil War were the theories of American +business--prosperous and profitable industries for the owners and "the +full dinner pail" for the workmen. Naturally a large portion of those +who flourished under its policies gave their support to it, voted for +its candidates, and subscribed to its campaign funds. + +=Sources of Republican Strength in the North.=--The Republican party was +in fact a political organization of singular power. It originated in a +wave of moral enthusiasm, having attracted to itself, if not the +abolitionists, certainly all those idealists, like James Russell Lowell +and George William Curtis, who had opposed slavery when opposition was +neither safe nor popular. To moral principles it added practical +considerations. Business men had confidence in it. Workingmen, who +longed for the independence of the farmer, owed to its indulgent land +policy the opportunity of securing free homesteads in the West. The +immigrant, landing penniless on these shores, as a result of the same +beneficent system, often found himself in a little while with an estate +as large as many a baronial domain in the Old World. Under a Republican +administration, the union had been saved. To it the veterans of the war +could turn with confidence for those rewards of service which the +government could bestow: pensions surpassing in liberality anything that +the world had ever seen. Under a Republican administration also the +great debt had been created in the defense of the union, and to the +Republican party every investor in government bonds could look for the +full and honorable discharge of the interest and principal. The spoils +system, inaugurated by Jacksonian Democracy, in turn placed all the +federal offices in Republican hands, furnishing an army of party workers +to be counted on for loyal service in every campaign. + +Of all these things Republican leaders made full and vigorous use, +sometimes ascribing to the party, in accordance with ancient political +usage, merits and achievements not wholly its own. Particularly was this +true in the case of saving the union. "When in the economy of +Providence, this land was to be purged of human slavery ... the +Republican party came into power," ran a declaration in one platform. +"The Republican party suppressed a gigantic rebellion, emancipated four +million slaves, decreed the equal citizenship of all, and established +universal suffrage," ran another. As for the aid rendered by the +millions of Northern Democrats who stood by the union and the tens of +thousands of them who actually fought in the union army, the Republicans +in their zeal were inclined to be oblivious. They repeatedly charged the +Democratic party "with being the same in character and spirit as when it +sympathized with treason." + +=Republican Control of the South.=--To the strength enjoyed in the +North, the Republicans for a long time added the advantages that came +from control over the former Confederate states where the newly +enfranchised negroes, under white leadership, gave a grateful support to +the party responsible for their freedom. In this branch of politics, +motives were so mixed that no historian can hope to appraise them all at +their proper values. On the one side of the ledger must be set the +vigorous efforts of the honest and sincere friends of the freedmen to +win for them complete civil and political equality, wiping out not only +slavery but all its badges of misery and servitude. On the same side +must be placed the labor of those who had valiantly fought in forum and +field to save the union and who regarded continued Republican supremacy +after the war as absolutely necessary to prevent the former leaders in +secession from coming back to power. At the same time there were +undoubtedly some men of the baser sort who looked on politics as a game +and who made use of "carpet-bagging" in the South to win the spoils that +might result from it. At all events, both by laws and presidential acts, +the Republicans for many years kept a keen eye upon the maintenance of +their dominion in the South. Their declaration that neither the law nor +its administration should admit any discrimination in respect of +citizens by reason of race, color, or previous condition of servitude +appealed to idealists and brought results in elections. Even South +Carolina, where reposed the ashes of John C. Calhoun, went Republican in +1872 by a vote of three to one! + +Republican control was made easy by the force bills described in a +previous chapter--measures which vested the supervision of elections in +federal officers appointed by Republican Presidents. These drastic +measures, departing from American tradition, the Republican authors +urged, were necessary to safeguard the purity of the ballot, not merely +in the South where the timid freedman might readily be frightened from +using it; but also in the North, particularly in New York City, where it +was claimed that fraud was regularly practiced by Democratic leaders. + +The Democrats, on their side, indignantly denied the charges, replying +that the force bills were nothing but devices created by the Republicans +for the purpose of securing their continued rule through systematic +interference with elections. Even the measures of reconstruction were +deemed by Democratic leaders as thinly veiled schemes to establish +Republican power throughout the country. "Nor is there the slightest +doubt," exclaimed Samuel J. Tilden, spokesman of the Democrats in New +York and candidate for President in 1876, "that the paramount object and +motive of the Republican party is by these means to secure itself +against a reaction of opinion adverse to it in our great populous +Northern commonwealths.... When the Republican party resolved to +establish negro supremacy in the ten states in order to gain to itself +the representation of those states in Congress, it had to begin by +governing the people of those states by the sword.... The next was the +creation of new electoral bodies for those ten states, in which, by +exclusions, by disfranchisements and proscriptions, by control over +registration, by applying test oaths ... by intimidation and by every +form of influence, three million negroes are made to predominate over +four and a half million whites." + +=The War as a Campaign Issue.=--Even the repeal of force bills could not +allay the sectional feelings engendered by the war. The Republicans +could not forgive the men who had so recently been in arms against the +union and insisted on calling them "traitors" and "rebels." The +Southerners, smarting under the reconstruction acts, could regard the +Republicans only as political oppressors. The passions of the war had +been too strong; the distress too deep to be soon forgotten. The +generation that went through it all remembered it all. For twenty +years, the Republicans, in their speeches and platforms, made "a +straight appeal to the patriotism of the Northern voters." They +maintained that their party, which had saved the union and emancipated +the slaves, was alone worthy of protecting the union and uplifting the +freedmen. + +Though the Democrats, especially in the North, resented this policy and +dubbed it with the expressive but inelegant phrase, "waving the bloody +shirt," the Republicans refused to surrender a slogan which made such a +ready popular appeal. As late as 1884, a leader expressed the hope that +they might "wring one more President from the bloody shirt." They +refused to let the country forget that the Democratic candidate, Grover +Cleveland, had escaped military service by hiring a substitute; and they +made political capital out of the fact that he had "insulted the +veterans of the Grand Army of the Republic" by going fishing on +Decoration Day. + +=Three Republican Presidents.=--Fortified by all these elements of +strength, the Republicans held the presidency from 1869 to 1885. The +three Presidents elected in this period, Grant, Hayes, and Garfield, had +certain striking characteristics in common. They were all of origin +humble enough to please the most exacting Jacksonian Democrat. They had +been generals in the union army. Grant, next to Lincoln, was regarded as +the savior of the Constitution. Hayes and Garfield, though lesser lights +in the military firmament, had honorable records duly appreciated by +veterans of the war, now thoroughly organized into the Grand Army of the +Republic. It is true that Grant was not a politician and had never voted +the Republican ticket; but this was readily overlooked. Hayes and +Garfield on the other hand were loyal party men. The former had served +in Congress and for three terms as governor of his state. The latter had +long been a member of the House of Representatives and was Senator-elect +when he received the nomination for President. + +All of them possessed, moreover, another important asset, which was not +forgotten by the astute managers who led in selecting candidates. All +of them were from Ohio--though Grant had been in Illinois when the +summons to military duties came--and Ohio was a strategic state. It lay +between the manufacturing East and the agrarian country to the West. +Having growing industries and wool to sell it benefited from the +protective tariff. Yet being mainly agricultural still, it was not + +without sympathy for the farmers who showed low tariff or free trade +tendencies. Whatever share the East had in shaping laws and framing +policies, it was clear that the West was to have the candidates. This +division in privileges--not uncommon in political management--was always +accompanied by a judicious selection of the candidate for Vice +President. With Garfield, for example, was associated a prominent New +York politician, Chester A. Arthur, who, as fate decreed, was destined +to more than three years' service as chief magistrate, on the +assassination of his superior in office. + +=The Disputed Election of 1876.=--While taking note of the long years of +Republican supremacy, it must be recorded that grave doubts exist in the +minds of many historians as to whether one of the three Presidents, +Hayes, was actually the victor in 1876 or not. His Democratic opponent, +Samuel J. Tilden, received a popular plurality of a quarter of a million +and had a plausible claim to a majority of the electoral vote. At all +events, four states sent in double returns, one set for Tilden and +another for Hayes; and a deadlock ensued. Both parties vehemently +claimed the election and the passions ran so high that sober men did not +shrink from speaking of civil war again. Fortunately, in the end, the +counsels of peace prevailed. Congress provided for an electoral +commission of fifteen men to review the contested returns. The +Democrats, inspired by Tilden's moderation, accepted the judgment in +favor of Hayes even though they were not convinced that he was really +entitled to the office. + + +THE GROWTH OF OPPOSITION TO REPUBLICAN RULE + +=Abuses in American Political Life.=--During their long tenure of +office, the Republicans could not escape the inevitable consequences of +power; that is, evil practices and corrupt conduct on the part of some +who found shelter within the party. For that matter neither did the +Democrats manage to avoid such difficulties in those states and cities +where they had the majority. In New York City, for instance, the local +Democratic organization, known as Tammany Hall, passed under the sway of +a group of politicians headed by "Boss" Tweed. He plundered the city +treasury until public-spirited citizens, supported by Samuel J. Tilden, +the Democratic leader of the state, rose in revolt, drove the ringleader +from power, and sent him to jail. In Philadelphia, the local Republican +bosses were guilty of offenses as odious as those committed by New York +politicians. Indeed, the decade that followed the Civil War was marred +by so many scandals in public life that one acute editor was moved to +inquire: "Are not all the great communities of the Western World growing +more corrupt as they grow in wealth?" + +In the sphere of national politics, where the opportunities were +greater, betrayals of public trust were even more flagrant. One +revelation after another showed officers, high and low, possessed with +the spirit of peculation. Members of Congress, it was found, accepted +railway stock in exchange for votes in favor of land grants and other +concessions to the companies. In the administration as well as the +legislature the disease was rife. Revenue officers permitted whisky +distillers to evade their taxes and received heavy bribes in return. A +probe into the post-office department revealed the malodorous "star +route frauds"--the deliberate overpayment of certain mail carriers whose +lines were indicated in the official record by asterisks or stars. Even +cabinet officers did not escape suspicion, for the trail of the serpent +led straight to the door of one of them. + +In the lower ranges of official life, the spoils system became more +virulent as the number of federal employees increased. The holders of +offices and the seekers after them constituted a veritable political +army. They crowded into Republican councils, for the Republicans, being +in power, could alone dispense federal favors. They filled positions in +the party ranging from the lowest township committee to the national +convention. They helped to nominate candidates and draft platforms and +elbowed to one side the busy citizen, not conversant with party +intrigues, who could only give an occasional day to political matters. +Even the Civil Service Act of 1883, wrung from a reluctant Congress two +years after the assassination of Garfield, made little change for a long +time. It took away from the spoilsmen a few thousand government +positions, but it formed no check on the practice of rewarding party +workers from the public treasury. + +On viewing this state of affairs, many a distinguished citizen became +profoundly discouraged. James Russell Lowell, for example, thought he +saw a steady decline in public morals. In 1865, hearing of Lee's +surrender, he had exclaimed: "There is something magnificent in having a +country to love!" Ten years later, when asked to write an ode for the +centennial at Philadelphia in 1876, he could think only of a biting +satire on the nation: + + "Show your state legislatures; show your Rings; + And challenge Europe to produce such things + As high officials sitting half in sight + To share the plunder and fix things right. + If that don't fetch her, why, you need only + To show your latest style in martyrs,--Tweed: + She'll find it hard to hide her spiteful tears + At such advance in one poor hundred years." + +When his critics condemned him for this "attack upon his native land," +Lowell replied in sadness: "These fellows have no notion of what love of +country means. It was in my very blood and bones. If I am not an +American who ever was?... What fills me with doubt and dismay is the +degradation of the moral tone. Is it or is it not a result of democracy? +Is ours a 'government of the people, by the people, for the people,' or +a Kakistocracy [a government of the worst], rather for the benefit of +knaves at the cost of fools?" + +=The Reform Movement in Republican Ranks.=--The sentiments expressed by +Lowell, himself a Republican and for a time American ambassador to +England, were shared by many men in his party. Very soon after the close +of the Civil War some of them began to protest vigorously against the +policies and conduct of their leaders. In 1872, the dissenters, calling +themselves Liberal Republicans, broke away altogether, nominated a +candidate of their own, Horace Greeley, and put forward a platform +indicting the Republican President fiercely enough to please the most +uncompromising Democrat. They accused Grant of using "the powers and +opportunities of his high office for the promotion of personal ends." +They charged him with retaining "notoriously corrupt and unworthy men in +places of power and responsibility." They alleged that the Republican +party kept "alive the passions and resentments of the late civil war to +use them for their own advantages," and employed the "public service of +the government as a machinery of corruption and personal influence." + +It was not apparent, however, from the ensuing election that any +considerable number of Republicans accepted the views of the Liberals. +Greeley, though indorsed by the Democrats, was utterly routed and died +of a broken heart. The lesson of his discomfiture seemed to be that +independent action was futile. So, at least, it was regarded by most men +of the rising generation like Henry Cabot Lodge, of Massachusetts, and +Theodore Roosevelt, of New York. Profiting by the experience of Greeley +they insisted in season and out that reformers who desired to rid the +party of abuses should remain loyal to it and do their work "on the +inside." + +=The Mugwumps and Cleveland Democracy in 1884.=--Though aided by +Republican dissensions, the Democrats were slow in making headway +against the political current. They were deprived of the energetic and +capable leadership once afforded by the planters, like Calhoun, Davis, +and Toombs; they were saddled by their opponents with responsibility for +secession; and they were stripped of the support of the prostrate +South. Not until the last Southern state was restored to the union, not +until a general amnesty was wrung from Congress, not until white +supremacy was established at the polls, and the last federal soldier +withdrawn from Southern capitals did they succeed in capturing the +presidency. + +The opportune moment for them came in 1884 when a number of +circumstances favored their aspirations. The Republicans, leaving the +Ohio Valley in their search for a candidate, nominated James G. Blaine +of Maine, a vigorous and popular leader but a man under fire from the +reformers in his own party. The Democrats on their side were able to +find at this juncture an able candidate who had no political enemies in +the sphere of national politics, Grover Cleveland, then governor of New +York and widely celebrated as a man of "sterling honesty." At the same +time a number of dissatisfied Republicans openly espoused the Democratic +cause,--among them Carl Schurz, George William Curtis, Henry Ward +Beecher, and William Everett, men of fine ideals and undoubted +integrity. Though the "regular" Republicans called them "Mugwumps" and +laughed at them as the "men milliners, the dilettanti, and carpet +knights of politics," they had a following that was not to be despised. + +The campaign which took place that year was one of the most savage in +American history. Issues were thrust into the background. The tariff, +though mentioned, was not taken seriously. Abuse of the opposition was +the favorite resource of party orators. The Democrats insisted that "the +Republican party so far as principle is concerned is a reminiscence. In +practice it is an organization for enriching those who control its +machinery." For the Republican candidate, Blaine, they could hardly find +words to express their contempt. The Republicans retaliated in kind. +They praised their own good works, as of old, in saving the union, and +denounced the "fraud and violence practiced by the Democracy in the +Southern states." Seeing little objectionable in the public record of +Cleveland as mayor of Buffalo and governor of New York, they attacked +his personal character. Perhaps never in the history of political +campaigns did the discussions on the platform and in the press sink to +so low a level. Decent people were sickened. Even hot partisans shrank +from their own words when, after the election, they had time to reflect +on their heedless passions. Moreover, nothing was decided by the +balloting. Cleveland was elected, but his victory was a narrow one. A +change of a few hundred votes in New York would have sent his opponent +to the White House instead. + +=Changing Political Fortunes (1888-96).=--After the Democrats had +settled down to the enjoyment of their hard-earned victory, President +Cleveland in his message of 1887 attacked the tariff as "vicious, +inequitable, and illogical"; as a system of taxation that laid a burden +upon "every consumer in the land for the benefit of our manufacturers." +Business enterprise was thoroughly alarmed. The Republicans +characterized the tariff message as a free-trade assault upon the +industries of the country. Mainly on that issue they elected in 1888 +Benjamin Harrison of Indiana, a shrewd lawyer, a reticent politician, a +descendant of the hero of Tippecanoe, and a son of the old Northwest. +Accepting the outcome of the election as a vindication of their +principles, the Republicans, under the leadership of William McKinley in +the House of Representatives, enacted in 1890 a tariff law imposing the +highest duties yet laid in our history. To their utter surprise, +however, they were instantly informed by the country that their program +was not approved. That very autumn they lost in the congressional +elections, and two years later they were decisively beaten in the +presidential campaign, Cleveland once more leading his party to victory. + + +=References= + +L.H. Haney, _Congressional History of Railways_ (2 vols.). + +J.P. Davis, _Union Pacific Railway_. + +J.M. Swank, _History of the Manufacture of Iron_. + +M.T. Copeland, _The Cotton Manufacturing Industry in the United States_ +(Harvard Studies). + +E.W. Bryce, _Progress of Invention in the Nineteenth Century_. + +Ida Tarbell, _History of the Standard Oil Company_ (Critical). + +G.H. Montague, _Rise and Progress of the Standard Oil Company_ +(Friendly). + +H.P. Fairchild, _Immigration_, and F.J. Warne, _The Immigrant Invasion_ +(Both works favor exclusion). + +I.A. Hourwich, _Immigration_ (Against exclusionist policies). + +J.F. Rhodes, _History of the United States, 1877-1896_, Vol. VIII. + +Edward Stanwood, _A History of the Presidency_, Vol. I, for the +presidential elections of the period. + + +=Questions= + +1. Contrast the state of industry and commerce at the close of the Civil +War with its condition at the close of the Revolutionary War. + +2. Enumerate the services rendered to the nation by the railways. + +3. Explain the peculiar relation of railways to government. + +4. What sections of the country have been industrialized? + +5. How do you account for the rise and growth of the trusts? Explain +some of the economic advantages of the trust. + +6. Are the people in cities more or less independent than the farmers? +What was Jefferson's view? + +7. State some of the problems raised by unrestricted immigration. + +8. What was the theory of the relation of government to business in this +period? Has it changed in recent times? + +9. State the leading economic policies sponsored by the Republican +party. + +10. Why were the Republicans especially strong immediately after the +Civil War? + +11. What illustrations can you give showing the influence of war in +American political campaigns? + +12. Account for the strength of middle-western candidates. + +13. Enumerate some of the abuses that appeared in American political +life after 1865. + +14. Sketch the rise and growth of the reform movement. + +15. How is the fluctuating state of public opinion reflected in the +elections from 1880 to 1896? + + +=Research Topics= + +=Invention, Discovery, and Transportation.=--Sparks, _National +Development_ (American Nation Series), pp. 37-67; Bogart, _Economic +History of the United States_, Chaps. XXI, XXII, and XXIII. + +=Business and Politics.=--Paxson, _The New Nation_ (Riverside Series), +pp. 92-107; Rhodes, _History of the United States_, Vol. VII, pp. 1-29, +64-73, 175-206; Wilson, _History of the American People_, Vol. IV, pp. +78-96. + +=Immigration.=--Coman, _Industrial History of the United States_ (2d +ed.), pp. 369-374; E.L. Bogart, _Economic History of the United States_, +pp. 420-422, 434-437; Jenks and Lauck, _Immigration Problems_, Commons, +_Races and Immigrants_. + +=The Disputed Election of 1876.=--Haworth, _The United States in Our Own +Time_, pp. 82-94; Dunning, _Reconstruction, Political and Economic_ +(American Nation Series), pp. 294-341; Elson, _History of the United +States_, pp. 835-841. + +=Abuses in Political Life.=--Dunning, _Reconstruction_, pp. 281-293; see +criticisms in party platforms in Stanwood, _History of the Presidency_, +Vol. I; Bryce, _American Commonwealth_ (1910 ed.), Vol. II, pp. 379-448; +136-167. + +=Studies of Presidential Administrations.=--(_a_) Grant, (_b_) Hayes, +(_c_) Garfield-Arthur, (_d_) Cleveland, and (_e_) Harrison, in Haworth, +_The United States in Our Own Time_, or in Paxson, _The New Nation_ +(Riverside Series), or still more briefly in Elson. + +=Cleveland Democracy.=--Haworth, _The United States_, pp. 164-183; +Rhodes, _History of the United States_, Vol. VIII, pp. 240-327; Elson, +pp. 857-887. + +=Analysis of Modern Immigration Problems.=--_Syllabus in History_ (New +York State, 1919), pp. 110-112. + + + + +CHAPTER XVIII + +THE DEVELOPMENT OF THE GREAT WEST + + +At the close of the Civil War, Kansas and Texas were sentinel states on +the middle border. Beyond the Rockies, California, Oregon, and Nevada +stood guard, the last of them having been just admitted to furnish +another vote for the fifteenth amendment abolishing slavery. Between the +near and far frontiers lay a vast reach of plain, desert, plateau, and +mountain, almost wholly undeveloped. A broad domain, extending from +Canada to Mexico, and embracing the regions now included in Washington, +Idaho, Wyoming, Montana, Utah, Arizona, New Mexico, the Dakotas, and +Oklahoma, had fewer than half a million inhabitants. It was laid out +into territories, each administered under a governor appointed by the +President and Senate and, as soon as there was the requisite number of +inhabitants, a legislature elected by the voters. No railway line +stretched across the desert. St. Joseph on the Missouri was the terminus +of the Eastern lines. It required twenty-five days for a passenger to +make the overland journey to California by the stagecoach system, +established in 1858, and more than ten days for the swift pony express, +organized in 1860, to carry a letter to San Francisco. Indians still +roamed the plain and desert and more than one powerful tribe disputed +the white man's title to the soil. + + +THE RAILWAYS AS TRAIL BLAZERS + +=Opening Railways to the Pacific.=--A decade before the Civil War the +importance of rail connection between the East and the Pacific Coast had +been recognized. Pressure had already been brought to bear on Congress +to authorize the construction of a line and to grant land and money in +its aid. Both the Democrats and Republicans approved the idea, but it +was involved in the slavery controversy. Indeed it was submerged in it. +Southern statesmen wanted connections between the Gulf and the Pacific +through Texas, while Northerners stood out for a central route. + +The North had its way during the war. Congress, by legislation initiated +in 1862, provided for the immediate organization of companies to build a +line from the Missouri River to California and made grants of land and +loans of money to aid in the enterprise. The Western end, the Central +Pacific, was laid out under the supervision of Leland Stanford. It was +heavily financed by the Mormons of Utah and also by the state +government, the ranchmen, miners, and business men of California; and it +was built principally by Chinese labor. The Eastern end, the Union +Pacific, starting at Omaha, was constructed mainly by veterans of the +Civil War and immigrants from Ireland and Germany. In 1869 the two +companies met near Ogden in Utah and the driving of the last spike, +uniting the Atlantic and the Pacific, was the occasion of a great +demonstration. + +Other lines to the Pacific were projected at the same time; but the +panic of 1873 checked railway enterprise for a while. With the revival +of prosperity at the end of that decade, construction was renewed with +vigor and the year 1883 marked a series of railway triumphs. In February +trains were running from New Orleans through Houston, San Antonio, and +Yuma to San Francisco, as a result of a union of the Texas Pacific with +the Southern Pacific and its subsidiary corporations. In September the +last spike was driven in the Northern Pacific at Helena, Montana. Lake +Superior was connected with Puget Sound. The waters explored by Joliet +and Marquette were joined to the waters plowed by Sir Francis Drake +while he was searching for a route around the world. That same year also +a third line was opened to the Pacific by way of the Atchison, Topeka +and Santa Fe, making connections through Albuquerque and Needles with +San Francisco. The fondest hopes of railway promoters seemed to be +realized. + +[Illustration: UNITED STATES IN 1870] + +=Western Railways Precede Settlement.=--In the Old World and on our +Atlantic seaboard, railways followed population and markets. In the Far +West, railways usually preceded the people. Railway builders planned +cities on paper before they laid tracks connecting them. They sent +missionaries to spread the gospel of "Western opportunity" to people in +the Middle West, in the Eastern cities, and in Southern states. Then +they carried their enthusiastic converts bag and baggage in long trains +to the distant Dakotas and still farther afield. So the development of +the Far West was not left to the tedious processes of time. It was +pushed by men of imagination--adventurers who made a romance of +money-making and who had dreams of empire unequaled by many kings of the +past. + +These empire builders bought railway lands in huge tracts; they got more +from the government; they overcame every obstacle of canon, mountain, +and stream with the aid of science; they built cities according to the +plans made by the engineers. Having the towns ready and railway and +steamboat connections formed with the rest of the world, they carried +out the people to use the railways, the steamships, the houses, and the +land. It was in this way that "the frontier speculator paved the way for +the frontier agriculturalist who had to be near a market before he could +farm." The spirit of this imaginative enterprise, which laid out +railways and towns in advance of the people, is seen in an advertisement +of that day: "This extension will run 42 miles from York, northeast +through the Island Lake country, and will have five good North Dakota +towns. The stations on the line will be well equipped with elevators and +will be constructed and ready for operation at the commencement of the +grain season. Prospective merchants have been active in securing +desirable locations at the different towns on the line. There are still +opportunities for hotels, general merchandise, hardware, furniture, and +drug stores, etc." + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +A TOWN ON THE PRAIRIE] + +Among the railway promoters and builders in the West, James J. Hill, +of the Great Northern and allied lines, was one of the most forceful +figures. He knew that tracks and trains were useless without passengers +and freight; without a population of farmers and town dwellers. He +therefore organized publicity in the Virginias, Iowa, Ohio, Indiana, +Illinois, Wisconsin, and Nebraska especially. He sent out agents to tell +the story of Western opportunity in this vein: "You see your children +come out of school with no chance to get farms of their own because the +cost of land in your older part of the country is so high that you can't +afford to buy land to start your sons out in life around you. They have +to go to the cities to make a living or become laborers in the mills or +hire out as farm hands. There is no future for them there. If you are +doing well where you are and can safeguard the future of your children +and see them prosper around you, don't leave here. But if you want +independence, if you are renting your land, if the money-lender is +carrying you along and you are running behind year after year, you can +do no worse by moving.... You farmers talk of free trade and protection +and what this or that political party will do for you. Why don't you +vote a homestead for yourself? That is the only thing Uncle Sam will +ever give you. Jim Hill hasn't an acre of land to sell you. We are not +in the real estate business. We don't want you to go out West and make a +failure of it because the rates at which we haul you and your goods make +the first transaction a loss.... We must have landless men for a manless +land." + +Unlike steamship companies stimulating immigration to get the fares, +Hill was seeking permanent settlers who would produce, manufacture, and +use the railways as the means of exchange. Consequently he fixed low +rates and let his passengers take a good deal of live stock and +household furniture free. By doing this he made an appeal that was +answered by eager families. In 1894 the vanguard of home seekers left +Indiana in fourteen passenger coaches, filled with men, women, and +children, and forty-eight freight cars carrying their household goods +and live stock. In the ten years that followed, 100,000 people from the +Middle West and the South, responding to his call, went to the Western +country where they brought eight million acres of prairie land under +cultivation. + +When Hill got his people on the land, he took an interest in everything +that increased the productivity of their labor. Was the output of food +for his freight cars limited by bad drainage on the farms? Hill then +interested himself in practical ways of ditching and tiling. Were +farmers hampered in hauling their goods to his trains by bad roads? In +that case, he urged upon the states the improvement of highways. Did the +traffic slacken because the food shipped was not of the best quality? +Then live stock must be improved and scientific farming promoted. Did +the farmers need credit? Banks must be established close at hand to +advance it. In all conferences on scientific farm management, +conservation of natural resources, banking and credit in relation to +agriculture and industry, Hill was an active participant. His was the +long vision, seeing in conservation and permanent improvements the +foundation of prosperity for the railways and the people. + +Indeed, he neglected no opportunity to increase the traffic on the +lines. He wanted no empty cars running in either direction and no wheat +stored in warehouses for the lack of markets. So he looked to the Orient +as well as to Europe as an outlet for the surplus of the farms. He sent +agents to China and Japan to discover what American goods and produce +those countries would consume and what manufactures they had to offer to +Americans in exchange. To open the Pacific trade he bought two ocean +monsters, the _Minnesota_ and the _Dakota_, thus preparing for +emergencies West as well as East. When some Japanese came to the United +States on their way to Europe to buy steel rails, Hill showed them how +easy it was for them to make their purchase in this country and ship by +way of American railways and American vessels. So the railway builder +and promoter, who helped to break the virgin soil of the prairies, lived +through the pioneer epoch and into the age of great finance. Before he +died he saw the wheat fields of North Dakota linked with the spinning +jennies of Manchester and the docks of Yokohama. + + +THE EVOLUTION OF GRAZING AND AGRICULTURE + +=The Removal of the Indians.=--Unlike the frontier of New England in +colonial days or that of Kentucky later, the advancing lines of home +builders in the Far West had little difficulty with warlike natives. +Indian attacks were made on the railway construction gangs; General +Custer had his fatal battle with the Sioux in 1876 and there were minor +brushes; but they were all of relatively slight consequence. The former +practice of treating with the Indians as independent nations was +abandoned in 1871 and most of them were concentrated in reservations +where they were mainly supported by the government. The supervision of +their affairs was vested in a board of commissioners created in 1869 and +instructed to treat them as wards of the nation--a trust which +unfortunately was often betrayed. A further step in Indian policy was +taken in 1887 when provision was made for issuing lands to individual +Indians, thus permitting them to become citizens and settle down among +their white neighbors as farmers or cattle raisers. The disappearance of +the buffalo, the main food supply of the wild Indians, had made them +more tractable and more willing to surrender the freedom of the hunter +for the routine of the reservation, ranch, or wheat field. + +=The Cowboy and Cattle Ranger.=--Between the frontier of farms and the +mountains were plains and semi-arid regions in vast reaches suitable for +grazing. As soon as the railways were open into the Missouri Valley, +affording an outlet for stock, there sprang up to the westward cattle +and sheep raising on an immense scale. The far-famed American cowboy was +the hero in this scene. Great herds of cattle were bred in Texas; with +the advancing spring and summer seasons, they were driven northward +across the plains and over the buffalo trails. In a single year, 1884, +it is estimated that nearly one million head of cattle were moved out of +Texas to the North by four thousand cowboys, supplied with 30,000 +horses and ponies. + +During the two decades from 1870 to 1890 both the cattle men and the +sheep raisers had an almost free run of the plains, using public lands +without paying for the privilege and waging war on one another over the +possession of ranges. At length, however, both had to go, as the +homesteaders and land companies came and fenced in the plain and desert +with endless lines of barbed wire. Already in 1893 a writer familiar +with the frontier lamented the passing of the picturesque days: "The +unique position of the cowboys among the Americans is jeopardized in a +thousand ways. Towns are growing up on their pasture lands; irrigation +schemes of a dozen sorts threaten to turn bunch-grass scenery into +farm-land views; farmers are pre-empting valleys and the sides of +waterways; and the day is not far distant when stock-raising must be +done mainly in small herds, with winter corrals, and then the cowboy's +days will end. Even now his condition disappoints those who knew him +only half a dozen years ago. His breed seems to have deteriorated and +his ranks are filling with men who work for wages rather than for the +love of the free life and bold companionship that once tempted men into +that calling. Splendid Cheyenne saddles are less and less numerous in +the outfits; the distinctive hat that made its way up from Mexico may or +may not be worn; all the civil authorities in nearly all towns in the +grazing country forbid the wearing of side arms; nobody shoots up these +towns any more. The fact is the old simon-pure cowboy days are gone +already." + +=Settlement under the Homestead Act of 1862.=--Two factors gave a +special stimulus to the rapid settlement of Western lands which swept +away the Indians and the cattle rangers. The first was the policy of the +railway companies in selling large blocks of land received from the +government at low prices to induce immigration. The second was the +operation of the Homestead law passed in 1862. This measure practically +closed the long controversy over the disposition of the public domain +that was suitable for agriculture. It provided for granting, without any +cost save a small registration fee, public lands in lots of 160 acres +each to citizens and aliens who declared their intention of becoming +citizens. The one important condition attached was that the settler +should occupy the farm for five years before his title was finally +confirmed. Even this stipulation was waived in the case of the Civil War +veterans who were allowed to count their term of military service as a +part of the five years' occupancy required. As the soldiers of the +Revolutionary and Mexican wars had advanced in great numbers to the +frontier in earlier days, so now veterans led in the settlement of the +middle border. Along with them went thousands of German, Irish, and +Scandinavian immigrants, fresh from the Old World. Between 1867 and +1874, 27,000,000 acres were staked out in quarter-section farms. In +twenty years (1860-80), the population of Nebraska leaped from 28,000 to +almost half a million; Kansas from 100,000 to a million; Iowa from +600,000 to 1,600,000; and the Dakotas from 5000 to 140,000. + +=The Diversity of Western Agriculture.=--In soil, produce, and +management, Western agriculture presented many contrasts to that of the +East and South. In the region of arable and watered lands the typical +American unit--the small farm tilled by the owner--appeared as usual; +but by the side of it many a huge domain owned by foreign or Eastern +companies and tilled by hired labor. Sometimes the great estate took the +shape of the "bonanza farm" devoted mainly to wheat and corn and +cultivated on a large scale by machinery. Again it assumed the form of +the cattle ranch embracing tens of thousands of acres. Again it was a +vast holding of diversified interest, such as the Santa Anita ranch near +Los Angeles, a domain of 60,000 acres "cultivated in a glorious sweep of +vineyards and orange and olive orchards, rich sheep and cattle pastures +and horse ranches, their life and customs handed down from the Spanish +owners of the various ranches which were swept into one estate." + +=Irrigation.=--In one respect agriculture in the Far West was unique. In +a large area spreading through eight states, Montana, Idaho, Wyoming, +Utah, Colorado, Nevada, Arizona, New Mexico, and parts of adjoining +states, the rainfall was so slight that the ordinary crops to which the +American farmer was accustomed could not be grown at all. The Mormons +were the first Anglo-Saxons to encounter aridity, and they were baffled +at first; but they studied it and mastered it by magnificent irrigation +systems. As other settlers poured into the West the problem of the +desert was attacked with a will, some of them replying to the +commiseration of Eastern farmers by saying that it was easier to scoop +out an irrigation ditch than to cut forests and wrestle with stumps and +stones. Private companies bought immense areas at low prices, built +irrigation works, and disposed of their lands in small plots. Some +ranchers with an instinct for water, like that of the miner for metal, +sank wells into the dry sand and were rewarded with gushers that "soused +the thirsty desert and turned its good-for-nothing sand into +good-for-anything loam." The federal government came to the aid of the +arid regions in 1894 by granting lands to the states to be used for +irrigation purposes. In this work Wyoming took the lead with a law which +induced capitalists to invest in irrigation and at the same time +provided for the sale of the redeemed lands to actual settlers. Finally +in 1902 the federal government by its liberal Reclamation Act added its +strength to that of individuals, companies, and states in conquering +"arid America." + +"Nowhere," writes Powell, a historian of the West, in his picturesque +_End of the Trail_, "has the white man fought a more courageous fight or +won a more brilliant victory than in Arizona. His weapons have been the +transit and the level, the drill and the dredge, the pick and the spade; +and the enemy which he has conquered has been the most stubborn of all +foes--the hostile forces of Nature.... The story of how the white man +within the space of less than thirty years penetrated, explored, and +mapped this almost unknown region; of how he carried law, order, and +justice into a section which had never had so much as a speaking +acquaintance with any one of the three before; of how, realizing the +necessity for means of communication, he built highways of steel across +this territory from east to west and from north to south; of how, +undismayed by the savageness of the countenance which the desert turned +upon him, he laughed and rolled up his sleeves, and spat upon his hands, +and slashed the face of the desert with canals and irrigating ditches, +and filled those ditches with water brought from deep in the earth or +high in the mountains; and of how, in the conquered and submissive soil, +he replaced the aloe with alfalfa, the mesquite with maize, the cactus +with cotton, forms one of the most inspiring chapters in our history. It +is one of the epics of civilization, this reclamation of the Southwest, +and its heroes, thank God, are Americans. + +"Other desert regions have been redeemed by irrigation--Egypt, for +example, and Mesopotamia and parts of the Sudan--but the people of all +those regions lay stretched out in the shade of a convenient palm, +metaphorically speaking, and waited for some one with more energy than +themselves to come along and do the work. But the Arizonians, mindful of +the fact that God, the government, and Carnegie help those who help +themselves, spent their days wielding the pick and shovel, and their +evenings in writing letters to Washington with toil-hardened hands. +After a time the government was prodded into action and the great dams +at Laguna and Roosevelt are the result. Then the people, organizing +themselves into cooperative leagues and water-users' associations, took +up the work of reclamation where the government left off; it is to these +energetic, persevering men who have drilled wells, plowed fields, and +dug ditches through the length and breadth of that great region which +stretches from Yuma to Tucson, that the metamorphosis of Arizona is +due." + +The effect of irrigation wherever introduced was amazing. Stretches of +sand and sagebrush gave way to fertile fields bearing crops of wheat, +corn, fruits, vegetables, and grass. Huge ranches grazed by browsing +sheep were broken up into small plots. The cowboy and ranchman vanished. +In their place rose the prosperous community--a community unlike the +township of Iowa or the industrial center of the East. Its intensive +tillage left little room for hired labor. Its small holdings drew +families together in village life rather than dispersing them on the +lonely plain. Often the development of water power in connection with +irrigation afforded electricity for labor-saving devices and lifted many +a burden that in other days fell heavily upon the shoulders of the +farmer and his family. + + +MINING AND MANUFACTURING IN THE WEST + +=Mineral Resources.=--In another important particular the Far West +differed from the Mississippi Valley states. That was in the +predominance of mining over agriculture throughout a vast section. +Indeed it was the minerals rather than the land that attracted the +pioneers who first opened the country. The discovery of gold in +California in 1848 was the signal for the great rush of prospectors, +miners, and promoters who explored the valleys, climbed the hills, +washed the sands, and dug up the soil in their feverish search for gold, +silver, copper, coal, and other minerals. In Nevada and Montana the +development of mineral resources went on all during the Civil War. Alder +Gulch became Virginia City in 1863; Last Chance Gulch was named Helena +in 1864; and Confederate Gulch was christened Diamond City in 1865. At +Butte the miners began operations in 1864 and within five years had +washed out eight million dollars' worth of gold. Under the gold they +found silver; under silver they found copper. + +Even at the end of the nineteenth century, after agriculture was well +advanced and stock and sheep raising introduced on a large scale, +minerals continued to be the chief source of wealth in a number of +states. This was revealed by the figures for 1910. The gold, silver, +iron, and copper of Colorado were worth more than the wheat, corn, and +oats combined; the copper of Montana sold for more than all the cereals +and four times the price of the wheat. The interest of Nevada was also +mainly mining, the receipts from the mineral output being $43,000,000 or +more than one-half the national debt of Hamilton's day. The yield of the +mines of Utah was worth four or five times the wheat crop; the coal of +Wyoming brought twice as much as the great wool clip; the minerals of +Arizona were totaled at $43,000,000 as against a wool clip reckoned at +$1,200,000; while in Idaho alone of this group of states did the wheat +crop exceed in value the output of the mines. + +[Illustration: _Photograph from Underwood and Underwood, N.Y._ + +LOGGING] + +=Timber Resources.=--The forests of the great West, unlike those of the +Ohio Valley, proved a boon to the pioneers rather than a foe to be +attacked. In Ohio and Indiana, for example, the frontier line of +homemakers had to cut, roll, and burn thousands of trees before they +could put out a crop of any size. Beyond the Mississippi, however, +there were all ready for the breaking plow great reaches of almost +treeless prairie, where every stick of timber was precious. In the other +parts, often rough and mountainous, where stood primeval forests of the +finest woods, the railroads made good use of the timber. They consumed +acres of forests themselves in making ties, bridge timbers, and +telegraph poles, and they laid a heavy tribute upon the forests for +their annual upkeep. The surplus trees, such as had burdened the +pioneers of the Northwest Territory a hundred years before, they carried +off to markets on the east and west coasts. + +=Western Industries.=--The peculiar conditions of the Far West +stimulated a rise of industries more rapid than is usual in new country. +The mining activities which in many sections preceded agriculture called +for sawmills to furnish timber for the mines and smelters to reduce and +refine ores. The ranches supplied sheep and cattle for the packing +houses of Kansas City as well as Chicago. The waters of the Northwest +afforded salmon for 4000 cases in 1866 and for 1,400,000 cases in 1916. +The fruits and vegetables of California brought into existence +innumerable canneries. The lumber industry, starting with crude sawmills +to furnish rough timbers for railways and mines, ended in specialized +factories for paper, boxes, and furniture. As the railways preceded +settlement and furnished a ready outlet for local manufactures, so they +encouraged the early establishment of varied industries, thus creating a +state of affairs quite unlike that which obtained in the Ohio Valley in +the early days before the opening of the Erie Canal. + +=Social Effects of Economic Activities.=--In many respects the social +life of the Far West also differed from that of the Ohio Valley. The +treeless prairies, though open to homesteads, favored the great estate +tilled in part by tenant labor and in part by migratory seasonal labor, +summoned from all sections of the country for the harvests. The mineral +resources created hundreds of huge fortunes which made the accumulations +of eastern mercantile families look trivial by comparison. Other +millionaires won their fortunes in the railway business and still more +from the cattle and sheep ranges. In many sections the "cattle king," as +he was called, was as dominant as the planter had been in the old South. +Everywhere in the grazing country he was a conspicuous and important +person. He "sometimes invested money in banks, in railroad stocks, or in +city property.... He had his rating in the commercial reviews and could +hobnob with bankers, railroad presidents, and metropolitan merchants.... +He attended party caucuses and conventions, ran for the state +legislature, and sometimes defeated a lawyer or metropolitan 'business +man' in the race for a seat in Congress. In proportion to their numbers, +the ranchers ... have constituted a highly impressive class." + +Although many of the early capitalists of the great West, especially +from Nevada, spent their money principally in the East, others took +leadership in promoting the sections in which they had made their +fortunes. A railroad pioneer, General Palmer, built his home at Colorado +Springs, founded the town, and encouraged local improvements. Denver +owed its first impressive buildings to the civic patriotism of Horace +Tabor, a wealthy mine owner. Leland Stanford paid his tribute to +California in the endowment of a large university. Colonel W.F. Cody, +better known as "Buffalo Bill," started his career by building a "boom +town" which collapsed, and made a large sum of money supplying buffalo +meat to construction hands (hence his popular name). By his famous Wild +West Show, he increased it to a fortune which he devoted mainly to the +promotion of a western reclamation scheme. + +While the Far West was developing this vigorous, aggressive leadership +in business, a considerable industrial population was springing up. Even +the cattle ranges and hundreds of farms were conducted like factories in +that they were managed through overseers who hired plowmen, harvesters, +and cattlemen at regular wages. At the same time there appeared other +peculiar features which made a lasting impression on western economic +life. Mining, lumbering, and fruit growing, for instance, employed +thousands of workers during the rush months and turned them out at other +times. The inevitable result was an army of migratory laborers wandering +from camp to camp, from town to town, and from ranch to ranch, without +fixed homes or established habits of life. From this extraordinary +condition there issued many a long and lawless conflict between capital +and labor, giving a distinct color to the labor movement in whole +sections of the mountain and coast states. + + +THE ADMISSION OF NEW STATES + +=The Spirit of Self-Government.=--The instinct of self-government was +strong in the western communities. In the very beginning, it led to the +organization of volunteer committees, known as "vigilantes," to suppress +crime and punish criminals. As soon as enough people were settled +permanently in a region, they took care to form a more stable kind of +government. An illustration of this process is found in the Oregon +compact made by the pioneers in 1843, the spirit of which is reflected +in an editorial in an old copy of the _Rocky Mountain News_: "We claim +that any body or community of American citizens which from any cause or +under any circumstances is cut off from or from isolation is so situated +as not to be under any active and protecting branch of the central +government, have a right, if on American soil, to frame a government and +enact such laws and regulations as may be necessary for their own +safety, protection, and happiness, always with the condition precedent, +that they shall, at the earliest moment when the central government +shall extend an effective organization and laws over them, give it their +unqualified support and obedience." + +People who turned so naturally to the organization of local +administration were equally eager for admission to the union as soon as +any shadow of a claim to statehood could be advanced. As long as a +region was merely one of the territories of the United States, the +appointment of the governor and other officers was controlled by +politics at Washington. Moreover the disposition of land, mineral +rights, forests, and water power was also in the hands of national +leaders. Thus practical considerations were united with the spirit of +independence in the quest for local autonomy. + +=Nebraska and Colorado.=--Two states, Nebraska and Colorado, had little +difficulty in securing admission to the union. The first, Nebraska, had +been organized as a territory by the famous Kansas-Nebraska bill which +did so much to precipitate the Civil War. Lying to the north of Kansas, +which had been admitted in 1861, it escaped the invasion of slave owners +from Missouri and was settled mainly by farmers from the North. Though +it claimed a population of only 67,000, it was regarded with kindly +interest by the Republican Congress at Washington and, reduced to its +present boundaries, it received the coveted statehood in 1867. + +This was hardly accomplished before the people of Colorado to the +southwest began to make known their demands. They had been organized +under territorial government in 1861 when they numbered only a handful; +but within ten years the aspect of their affairs had completely changed. +The silver and gold deposits of the Leadville and Cripple Creek regions +had attracted an army of miners and prospectors. The city of Denver, +founded in 1858 and named after the governor of Kansas whence came many +of the early settlers, had grown from a straggling camp of log huts into +a prosperous center of trade. By 1875 it was reckoned that the +population of the territory was not less than one hundred thousand; the +following year Congress, yielding to the popular appeal, made Colorado a +member of the American union. + +=Six New States (1889-1890).=--For many years there was a deadlock in +Congress over the admission of new states. The spell was broken in 1889 +under the leadership of the Dakotas. For a long time the Dakota +territory, organized in 1861, had been looked upon as the home of the +powerful Sioux Indians whose enormous reservation blocked the advance of +the frontier. The discovery of gold in the Black Hills, however, marked +their doom. Even before Congress could open their lands to prospectors, +pioneers were swarming over the country. Farmers from the adjoining +Minnesota and the Eastern states, Scandinavians, Germans, and Canadians, +came in swelling waves to occupy the fertile Dakota lands, now famous +even as far away as the fjords of Norway. Seldom had the plow of man cut +through richer soil than was found in the bottoms of the Red River +Valley, and it became all the more precious when the opening of the +Northern Pacific in 1883 afforded a means of transportation east and +west. The population, which had numbered 135,000 in 1880, passed the +half million mark before ten years had elapsed. + +Remembering that Nebraska had been admitted with only 67,000 +inhabitants, the Dakotans could not see why they should be kept under +federal tutelage. At the same time Washington, far away on the Pacific +Coast, Montana, Idaho, and Wyoming, boasting of their populations and +their riches, put in their own eloquent pleas. But the members of +Congress were busy with politics. The Democrats saw no good reason for +admitting new Republican states until after their defeat in 1888. Near +the end of their term the next year they opened the door for North and +South Dakota, Washington, and Montana. In 1890, a Republican Congress +brought Idaho and Wyoming into the union, the latter with woman +suffrage, which had been granted twenty-one years before. + +=Utah.=--Although Utah had long presented all the elements of a +well-settled and industrious community, its admission to the union was +delayed on account of popular hostility to the practice of polygamy. The +custom, it is true, had been prohibited by act of Congress in 1862; but +the law had been systematically evaded. In 1882 Congress made another +and more effective effort to stamp out polygamy. Five years later it +even went so far as to authorize the confiscation of the property of the +Mormon Church in case the practice of plural marriages was not stopped. +Meanwhile the Gentile or non-Mormon population was steadily increasing +and the leaders in the Church became convinced that the battle +against the sentiment of the country was futile. At last in 1896 Utah +was admitted as a state under a constitution which forbade plural +marriages absolutely and forever. Horace Greeley, who visited Utah in +1859, had prophesied that the Pacific Railroad would work a revolution +in the land of Brigham Young. His prophecy had come true. + +[Illustration: THE UNITED STATES IN 1912] + +=Rounding out the Continent.=--Three more territories now remained out +of the Union. Oklahoma, long an Indian reservation, had been opened for +settlement to white men in 1889. The rush upon the fertile lands of this +region, the last in the history of America, was marked by all the frenzy +of the final, desperate chance. At a signal from a bugle an army of men +with families in wagons, men and women on horseback and on foot, burst +into the territory. During the first night a city of tents was raised at +Guthrie and Oklahoma City. In ten days wooden houses rose on the plains. +In a single year there were schools, churches, business blocks, and +newspapers. Within fifteen years there was a population of more than +half a million. To the west, Arizona with a population of about 125,000 +and New Mexico with 200,000 inhabitants joined Oklahoma in asking for +statehood. Congress, then Republican, looked with reluctance upon the +addition of more Democratic states; but in 1907 it was literally +compelled by public sentiment and a sense of justice to admit Oklahoma. +In 1910 the House of Representatives went to the Democrats and within +two years Arizona and New Mexico were "under the roof." So the +continental domain was rounded out. + + +THE INFLUENCE OF THE FAR WEST ON NATIONAL LIFE + +=The Last of the Frontier.=--When Horace Greeley made his trip west in +1859 he thus recorded the progress of civilization in his journal: + + "May 12th, Chicago.--Chocolate and morning journals last + seen on the hotel breakfast table. + + 23rd, Leavenworth (Kansas).--Room bells and bath tubs make + their final appearance. + + 26th, Manhattan.--Potatoes and eggs last recognized among + the blessings that 'brighten as they take their flight.' + + 27th, Junction City.--Last visitation of a boot-black, with + dissolving views of a board bedroom. Beds bid us good-by." + +[Illustration: _Copyright by Panama-California Exposition_ + +THE CANADIAN BUILDING AT THE PANAMA-CALIFORNIA INTERNATIONAL +EXPOSITION, SAN DIEGO, 1915] + +Within thirty years travelers were riding across that country in Pullman +cars and enjoying at the hotels all the comforts of a standardized +civilization. The "wild west" was gone, and with it that frontier of +pioneers and settlers who had long given such a bent and tone to +American life and had "poured in upon the floor of Congress" such a long +line of "backwoods politicians," as they were scornfully styled. + +=Free Land and Eastern Labor.=--It was not only the picturesque features +of the frontier that were gone. Of far more consequence was the +disappearance of free lands with all that meant for American labor. For +more than a hundred years, any man of even moderate means had been able +to secure a homestead of his own and an independent livelihood. For a +hundred years America had been able to supply farms to as many +immigrants as cared to till the soil. Every new pair of strong arms +meant more farms and more wealth. Workmen in Eastern factories, mines, +or mills who did not like their hours, wages, or conditions of labor, +could readily find an outlet to the land. Now all that was over. By +about 1890 most of the desirable land available under the Homestead act +had disappeared. American industrial workers confronted a new situation. + +=Grain Supplants King Cotton.=--In the meantime a revolution was taking +place in agriculture. Until 1860 the chief staples sold by America were +cotton and tobacco. With the advance of the frontier, corn and wheat +supplanted them both in agrarian economy. The West became the granary of +the East and of Western Europe. The scoop shovel once used to handle +grain was superseded by the towering elevator, loading and unloading +thousands of bushels every hour. The refrigerator car and ship made the +packing industry as stable as the production of cotton or corn, and gave +an immense impetus to cattle raising and sheep farming. So the meat of +the West took its place on the English dinner table by the side of bread +baked from Dakotan wheat. + +=Aid in American Economic Independence.=--The effects of this economic +movement were manifold and striking. Billions of dollars' worth of +American grain, dairy produce, and meat were poured into European +markets where they paid off debts due money lenders and acquired +capital to develop American resources. Thus they accelerated the +progress of American financiers toward national independence. The +country, which had timidly turned to the Old World for capital in +Hamilton's day and had borrowed at high rates of interest in London in +Lincoln's day, moved swiftly toward the time when it would be among the +world's first bankers and money lenders itself. Every grain of wheat and +corn pulled the balance down on the American side of the scale. + +=Eastern Agriculture Affected.=--In the East as well as abroad the +opening of the western granary produced momentous results. The +agricultural economy of that part of the country was changed in many +respects. Whole sections of the poorest land went almost out of +cultivation, the abandoned farms of the New England hills bearing solemn +witness to the competing power of western wheat fields. Sheep and cattle +raising, as well as wheat and corn production, suffered at least a +relative decline. Thousands of farmers cultivating land of the lower +grade were forced to go West or were driven to the margin of +subsistence. Even the herds that supplied Eastern cities with milk were +fed upon grain brought halfway across the continent. + +=The Expansion of the American Market.=--Upon industry as well as +agriculture, the opening of vast food-producing regions told in a +thousand ways. The demand for farm machinery, clothing, boots, shoes, +and other manufactures gave to American industries such a market as even +Hamilton had never foreseen. Moreover it helped to expand far into the +Mississippi Valley the industrial area once confined to the Northern +seaboard states and to transform the region of the Great Lakes into an +industrial empire. Herein lies the explanation of the growth of +mid-western cities after 1865. Chicago, with its thirty-five railways, +tapped every locality of the West and South. To the railways were added +the water routes of the Lakes, thus creating a strategic center for +industries. Long foresight carried the McCormick reaper works to +Chicago before 1860. From Troy, New York, went a large stove plant. That +was followed by a shoe factory from Massachusetts. The packing industry +rose as a matter of course at a point so advantageous for cattle raisers +and shippers and so well connected with Eastern markets. + +To the opening of the Far West also the Lake region was indebted for a +large part of that water-borne traffic which made it "the Mediterranean +basin of North America." The produce of the West and the manufactures of +the East poured through it in an endless stream. The swift growth of +shipbuilding on the Great Lakes helped to compensate for the decline of +the American marine on the high seas. In response to this stimulus +Detroit could boast that her shipwrights were able to turn out a ten +thousand ton Leviathan for ore or grain about "as quickly as carpenters +could put up an eight-room house." Thus in relation to the Far West the +old Northwest territory--the wilderness of Jefferson's time--had taken +the position formerly occupied by New England alone. It was supplying +capital and manufactures for a vast agricultural empire West and South. + +=America on the Pacific.=--It has been said that the Mediterranean Sea +was the center of ancient civilization; that modern civilization has +developed on the shores of the Atlantic; and that the future belongs to +the Pacific. At any rate, the sweep of the United States to the shores +of the Pacific quickly exercised a powerful influence on world affairs +and it undoubtedly has a still greater significance for the future. + +Very early regular traffic sprang up between the Pacific ports and the +Hawaiian Islands, China, and Japan. Two years before the adjustment of +the Oregon controversy with England, namely in 1844, the United States +had established official and trading relations with China. Ten years +later, four years after the admission of California to the union, the +barred door of Japan was forced open by Commodore Perry. The commerce +which had long before developed between the Pacific ports and Hawaii, +China, and Japan now flourished under official care. In 1865 a ship +from Honolulu carried sugar, molasses, and fruits from Hawaii to the +Oregon port of Astoria. The next year a vessel from Hongkong brought +rice, mats, and tea from China. An era of lucrative trade was opened. +The annexation of Hawaii in 1898, the addition of the Philippines at the +same time, and the participation of American troops in the suppression +of the Boxer rebellion in Peking in 1900, were but signs and symbols of +American power on the Pacific. + +[Illustration: _From an old print_ + +COMMODORE PERRY'S MEN MAKING PRESENTS TO THE JAPANESE] + +=Conservation and the Land Problem.=--The disappearance of the frontier +also brought new and serious problems to the governments of the states +and the nation. The people of the whole United States suddenly were +forced to realize that there was a limit to the rich, new land to +exploit and to the forests and minerals awaiting the ax and the pick. +Then arose in America the questions which had long perplexed the +countries of the Old World--the scientific use of the soils and +conservation of natural resources. Hitherto the government had followed +the easy path of giving away arable land and selling forest and mineral +lands at low prices. Now it had to face far more difficult and complex +problems. It also had to consider questions of land tenure again, +especially if the ideal of a nation of home-owning farmers was to be +maintained. While there was plenty of land for every man or woman who +wanted a home on the soil, it made little difference if single landlords +or companies got possession of millions of acres, if a hundred men in +one western river valley owned 17,000,000 acres; but when the good land +for small homesteads was all gone, then was raised the real issue. At +the opening of the twentieth century the nation, which a hundred years +before had land and natural resources apparently without limit, was +compelled to enact law after law conserving its forests and minerals. +Then it was that the great state of California, on the very border of +the continent, felt constrained to enact a land settlement measure +providing government assistance in an effort to break up large holdings +into small lots and to make it easy for actual settlers to acquire small +farms. America was passing into a new epoch. + + +=References= + +Henry Inman, _The Old Santa Fe Trail_. + +R.I. Dodge, _The Plains of the Great West_ (1877). + +C.H. Shinn, _The Story of the Mine_. + +Cy Warman, _The Story of the Railroad_. + +Emerson Hough, _The Story of the Cowboy_. + +H.H. Bancroft is the author of many works on the West but his writings +will be found only in the larger libraries. + +Joseph Schafer, _History of the Pacific Northwest_ (ed. 1918). + +T.H. Hittel, _History of California_ (4 vols.). + +W.H. Olin, _American Irrigation Farming_. + +W.E. Smythe, _The Conquest of Arid America_. + +H.A. Millis, _The American-Japanese Problem_. + +E.S. Meany, _History of the State of Washington_. + +H.K. Norton, _The Story of California_. + + +=Questions= + +1. Name the states west of the Mississippi in 1865. + +2. In what manner was the rest of the western region governed? + +3. How far had settlement been carried? + +4. What were the striking physical features of the West? + +5. How was settlement promoted after 1865? + +6. Why was admission to the union so eagerly sought? + +7. Explain how politics became involved in the creation of new states. + +8. Did the West rapidly become like the older sections of the country? + +9. What economic peculiarities did it retain or develop? + +10. How did the federal government aid in western agriculture? + +11. How did the development of the West affect the East? The South? + +12. What relation did the opening of the great grain areas of the West +bear to the growth of America's commercial and financial power? + +13. State some of the new problems of the West. + +14. Discuss the significance of American expansion to the Pacific Ocean. + + +=Research Topics= + +=The Passing of the Wild West.=--Haworth, _The United States in Our Own +Times_, pp. 100-124. + +=The Indian Question.=--Sparks, _National Development_ (American Nation +Series), pp. 265-281. + +=The Chinese Question.=--Sparks, _National Development_, pp. 229-250; +Rhodes, _History of the United States_, Vol. VIII, pp. 180-196. + +=The Railway Age.=--Schafer, _History of the Pacific Northwest_, pp. +230-245; E.V. Smalley, _The Northern Pacific Railroad_; Paxson, _The New +Nation_ (Riverside Series), pp. 20-26, especially the map on p. 23, and +pp. 142-148. + +=Agriculture and Business.=--Schafer, _Pacific Northwest_, pp. 246-289. + +=Ranching in the Northwest.=--Theodore Roosevelt, _Ranch Life_, and +_Autobiography_, pp. 103-143. + +=The Conquest of the Desert.=--W.E. Smythe, _The Conquest of Arid +America_. + +=Studies of Individual Western States.=--Consult any good encyclopedia. + + + + +CHAPTER XIX + +DOMESTIC ISSUES BEFORE THE COUNTRY (1865-1897) + + +For thirty years after the Civil War the leading political parties, +although they engaged in heated presidential campaigns, were not sharply +and clearly opposed on many matters of vital significance. During none +of that time was there a clash of opinion over specific issues such as +rent the country in 1800 when Jefferson rode a popular wave to victory, +or again in 1828 when Jackson's western hordes came sweeping into power. +The Democrats, who before 1860 definitely opposed protective tariffs, +federal banking, internal improvements, and heavy taxes, now spoke +cautiously on all these points. The Republicans, conscious of the fact +that they had been a minority of the voters in 1860 and warned by the +early loss of the House of Representatives in 1874, also moved with +considerable prudence among the perplexing problems of the day. Again +and again the votes in Congress showed that no clear line separated all +the Democrats from all the Republicans. There were Republicans who +favored tariff reductions and "cheap money." There were Democrats who +looked with partiality upon high protection or with indulgence upon the +contraction of the currency. Only on matters relating to the coercion of +the South was the division between the parties fairly definite; this +could be readily accounted for on practical as well as sentimental +grounds. + +After all, the vague criticisms and proposals that found their way into +the political platforms did but reflect the confusion of mind prevailing +in the country. The fact that, out of the eighteen years between 1875 +and 1893, the Democrats held the House of Representatives for fourteen +years while the Republicans had every President but one showed that the +voters, like the politicians, were in a state of indecision. Hayes had a +Democratic House during his entire term and a Democratic Senate for two +years of the four. Cleveland was confronted by a belligerent Republican +majority in the Senate during his first administration; and at the same +time was supported by a Democratic majority in the House. Harrison was +sustained by continuous Republican successes in Senatorial elections; +but in the House he had the barest majority from 1889 to 1891 and lost +that altogether at the election held in the middle of his term. The +opinion of the country was evidently unsettled and fluctuating. It was +still distracted by memories of the dead past and uncertain as to the +trend of the future. + + +THE CURRENCY QUESTION + +Nevertheless these years of muddled politics and nebulous issues proved +to be a period in which social forces were gathering for the great +campaign of 1896. Except for three new features--the railways, the +trusts, and the trade unions--the subjects of debate among the people +were the same as those that had engaged their attention since the +foundation of the republic: the currency, the national debt, banking, +the tariff, and taxation. + +=Debtors and the Fall in Prices.=--For many reasons the currency +question occupied the center of interest. As of old, the farmers and +planters of the West and South were heavily in debt to the East for +borrowed money secured by farm mortgages; and they counted upon the sale +of cotton, corn, wheat, and hogs to meet interest and principal when +due. During the war, the Western farmers had been able to dispose of +their produce at high prices and thus discharge their debts with +comparative ease; but after the war prices declined. Wheat that sold at +two dollars a bushel in 1865 brought sixty-four cents twenty years +later. The meaning of this for the farmers in debt--and nearly +three-fourths of them were in that class--can be shown by a single +illustration. A thousand-dollar mortgage on a Western farm could be paid +off by five hundred bushels of wheat when prices were high; whereas it +took about fifteen hundred bushels to pay the same debt when wheat was +at the bottom of the scale. For the farmer, it must be remembered, wheat +was the measure of his labor, the product of his toil under the summer +sun; and in its price he found the test of his prosperity. + +=Creditors and Falling Prices.=--To the bondholders or creditors, on the +other hand, falling prices were clear gain. If a fifty-dollar coupon on +a bond bought seventy or eighty bushels of wheat instead of twenty or +thirty, the advantage to the owner of the coupon was obvious. Moreover +the advantage seemed to him entirely just. Creditors had suffered heavy +losses when the Civil War carried prices skyward while the interest +rates on their old bonds remained stationary. For example, if a man had +a $1000 bond issued before 1860 and paying interest at five per cent, he +received fifty dollars a year from it. Before the war each dollar would +buy a bushel of wheat; in 1865 it would only buy half a bushel. When +prices--that is, the cost of living--began to go down, creditors +therefore generally regarded the change with satisfaction as a return to +normal conditions. + +=The Cause of Falling Prices.=--The fall in prices was due, no doubt, to +many factors. Among them must be reckoned the discontinuance of +government buying for war purposes, labor-saving farm machinery, +immigration, and the opening of new wheat-growing regions. The currency, +too, was an element in the situation. Whatever the cause, the +discontented farmers believed that the way to raise prices was to issue +more money. They viewed it as a case of supply and demand. If there was +a small volume of currency in circulation, prices would be low; if there +was a large volume, prices would be high. Hence they looked with favor +upon all plans to increase the amount of money in circulation. First +they advocated more paper notes--greenbacks--and then they turned to +silver as the remedy. The creditors, on the other hand, naturally +approved the reduction of the volume of currency. They wished to see the +greenbacks withdrawn from circulation and gold--a metal more limited in +volume than silver--made the sole basis of the national monetary system. + +=The Battle over the Greenbacks.=--The contest between these factions +began as early as 1866. In that year, Congress enacted a law authorizing +the Treasury to withdraw the greenbacks from circulation. The paper +money party set up a shrill cry of protest, and kept up the fight until, +in 1878, it forced Congress to provide for the continuous re-issue of +the legal tender notes as they came into the Treasury in payment of +taxes and other dues. Then could the friends of easy money rejoice: + + "Thou, Greenback, 'tis of thee + Fair money of the free, + Of thee we sing." + +=Resumption of Specie Payment.=--There was, however, another side to +this victory. The opponents of the greenbacks, unable to stop the +circulation of paper, induced Congress to pass a law in 1875 providing +that on and after January 1, 1879, "the Secretary of the Treasury shall +redeem in coin the United States legal tender notes then outstanding on +their presentation at the office of the Assistant Treasurer of the +United States in the City of New York in sums of not less than fifty +dollars." "The way to resume," John Sherman had said, "is to resume." +When the hour for redemption arrived, the Treasury was prepared with a +large hoard of gold. "On the appointed day," wrote the assistant +secretary, "anxiety reigned in the office of the Treasury. Hour after +hour passed; no news from New York. Inquiry by wire showed that all was +quiet. At the close of the day this message came: '$135,000 of notes +presented for coin--$400,000 of gold for notes.' That was all. +Resumption was accomplished with no disturbance. By five o'clock the +news was all over the land, and the New York bankers were sipping their +tea in absolute safety." + +=The Specie Problem--the Parity of Gold and Silver.=--Defeated in their +efforts to stop "the present suicidal and destructive policy of +contraction," the advocates of an abundant currency demanded an increase +in the volume of silver in circulation. This precipitated one of the +sharpest political battles in American history. The issue turned on +legal as well as economic points. The Constitution gave Congress the +power to coin money and it forbade the states to make anything but gold +and silver legal tender in the payment of debts. It evidently +contemplated the use of both metals in the currency system. Such, at +least, was the view of many eminent statesmen, including no less a +personage than James G. Blaine. The difficulty, however, lay in +maintaining gold and silver coins on a level which would permit them to +circulate with equal facility. Obviously, if the gold in a gold dollar +exceeds the value of the silver in a silver dollar on the open market, +men will hoard gold money and leave silver money in circulation. When, +for example, Congress in 1792 fixed the ratio of the two metals at one +to fifteen--one ounce of gold declared worth fifteen of silver--it was +soon found that gold had been undervalued. When again in 1834 the ratio +was put at one to sixteen, it was found that silver was undervalued. +Consequently the latter metal was not brought in for coinage and silver +almost dropped out of circulation. Many a silver dollar was melted down +by silverware factories. + +=Silver Demonetized in 1873.=--So things stood in 1873. At that time, +Congress, in enacting a mintage law, discontinued the coinage of the +standard silver dollar, then practically out of circulation. This act +was denounced later by the friends of silver as "the crime of '73," a +conspiracy devised by the money power and secretly carried out. This +contention the debates in Congress do not seem to sustain. In the course +of the argument on the mint law it was distinctly said by one speaker at +least: "This bill provides for the making of changes in the legal tender +coin of the country and for substituting as legal tender, coin of only +one metal instead of two as heretofore." + +=The Decline in the Value of Silver.=--Absorbed in the greenback +controversy, the people apparently did not appreciate, at the time, the +significance of the "demonetization" of silver; but within a few years +several events united in making it the center of a political storm. +Germany, having abandoned silver in 1871, steadily increased her demand +for gold. Three years later, the countries of the Latin Union followed +this example, thus helping to enhance the price of the yellow metal. All +the while, new silver lodes, discovered in the Far West, were pouring +into the market great streams of the white metal, bearing down the +price. Then came the resumption of specie payment, which, in effect, +placed the paper money on a gold basis. Within twenty years silver was +worth in gold only about half the price of 1870. + +That there had been a real decline in silver was denied by the friends +of that metal. They alleged that gold had gone up because it had been +given a monopoly in the coinage markets of civilized governments. This +monopoly, they continued, was the fruit of a conspiracy against the +people conceived by the bankers of the world. Moreover, they went on, +the placing of the greenbacks on a gold basis had itself worked a +contraction of the currency; it lowered the prices of labor and produce +to the advantage of the holders of long-term investments bearing a fixed +rate of interest. When wheat sold at sixty-four cents a bushel, their +search for relief became desperate, and they at last concentrated their +efforts on opening the mints of the government for the free coinage of +silver at the ratio of sixteen to one. + +=Republicans and Democrats Divided.=--On this question both Republicans +and Democrats were divided, the line being drawn between the East on the +one hand and the South and West on the other, rather than between the +two leading parties. So trusted a leader as James G. Blaine avowed, in a +speech delivered in the Senate in 1878, that, as the Constitution +required Congress to make both gold and silver the money of the land, +the only question left was that of fixing the ratio between them. He +affirmed, moreover, the main contention of the silver faction that a +reopening of the government mints of the world to silver would bring it +up to its old relation with gold. He admitted also that their most +ominous warnings were well founded, saying: "I believe the struggle now +going on in this country and in other countries for a single gold +standard would, if successful, produce widespread disaster throughout +the commercial world. The destruction of silver as money and the +establishment of gold as the sole unit of value must have a ruinous +effect on all forms of property, except those investments which yield a +fixed return." + +This was exactly the concession that the silver party wanted. +"Three-fourths of the business enterprises of this country are conducted +on borrowed capital," said Senator Jones, of Nevada. "Three-fourths of +the homes and farms that stand in the names of the actual occupants have +been bought on time and a very large proportion of them are mortgaged +for the payment of some part of the purchase money. Under the operation +of a shrinkage in the volume of money, this enormous mass of borrowers, +at the maturity of their respective debts, though nominally paying no +more than the amount borrowed, with interest, are in reality, in the +amount of the principal alone, returning a percentage of value greater +than they received--more in equity than they contracted to pay.... In +all discussions of the subject the creditors attempt to brush aside the +equities involved by sneering at the debtors." + +=The Silver Purchase Act (1878).=--Even before the actual resumption of +specie payment, the advocates of free silver were a power to be reckoned +with, particularly in the Democratic party. They had a majority in the +House of Representatives in 1878 and they carried a silver bill through +that chamber. Blocked by the Republican Senate they accepted a +compromise in the Bland-Allison bill, which provided for huge monthly +purchases of silver by the government for coinage into dollars. So +strong was the sentiment that a two-thirds majority was mustered after +President Hayes vetoed the measure. + +The effect of this act, as some had anticipated, was disappointing. It +did not stay silver on its downward course. Thereupon the silver faction +pressed through Congress in 1886 a bill providing for the issue of paper +certificates based on the silver accumulated in the Treasury. Still +silver continued to fall. Then the advocates of inflation declared that +they would be content with nothing short of free coinage at the ratio of +sixteen to one. If the issue had been squarely presented in 1890, there +is good reason for believing that free silver would have received a +majority in both houses of Congress; but it was not presented. + +=The Sherman Silver Purchase Act and the Bond Sales.=--Republican +leaders, particularly from the East, stemmed the silver tide by a +diversion of forces. They passed the Sherman Act of 1890 providing for +large monthly purchases of silver and for the issue of notes redeemable +in gold or silver at the discretion of the Secretary of the Treasury. In +a clause of superb ambiguity they announced that it was "the established +policy of the United States to maintain the two metals on a parity with +each other upon the present legal ratio or such other ratio as may be +provided by law." For a while silver was buoyed up. Then it turned once +more on its downward course. In the meantime the Treasury was in a sad +plight. To maintain the gold reserve, President Cleveland felt compelled +to sell government bonds; and to his dismay he found that as soon as the +gold was brought in at the front door of the Treasury, notes were +presented for redemption and the gold was quickly carried out at the +back door. Alarmed at the vicious circle thus created, he urged upon +Congress the repeal of the Sherman Silver Purchase Act. For this he was +roundly condemned by many of his own followers who branded his conduct +as "treason to the party"; but the Republicans, especially from the +East, came to his rescue and in 1893 swept the troublesome sections of +the law from the statute book. The anger of the silver faction knew no +bounds, and the leaders made ready for the approaching presidential +campaign. + + +THE PROTECTIVE TARIFF AND TAXATION + +=Fluctuation in Tariff Policy.=--As each of the old parties was divided +on the currency question, it is not surprising that there was some +confusion in their ranks over the tariff. Like the silver issue, the +tariff tended to align the manufacturing East against the agricultural +West and South rather than to cut directly between the two parties. +Still the Republicans on the whole stood firmly by the rates imposed +during the Civil War. If we except the reductions of 1872 which were +soon offset by increases, we may say that those rates were substantially +unchanged for nearly twenty years. When a revision was brought about, +however, it was initiated by Republican leaders. Seeing a huge surplus +of revenue in the Treasury in 1883, they anticipated popular clamor by +revising the tariff on the theory that it ought to be reformed by its +friends rather than by its enemies. On the other hand, it was the +Republicans also who enacted the McKinley tariff bill of 1890, which +carried protection to its highest point up to that time. + +The Democrats on their part were not all confirmed free traders or even +advocates of tariff for revenue only. In Cleveland's first +administration they did attack the protective system in the House, where +they had a majority, and in this they were vigorously supported by the +President. The assault, however, proved to be a futile gesture for it +was blocked by the Republicans in the Senate. When, after the sweeping +victory of 1892, the Democrats in the House again attempted to bring +down the tariff by the Wilson bill of 1894, they were checkmated by +their own party colleagues in the upper chamber. In the end they were +driven into a compromise that looked more like a McKinley than a Calhoun +tariff. The Republicans taunted them with being "babes in the woods." +President Cleveland was so dissatisfied with the bill that he refused to +sign it, allowing it to become a law, on the lapse of ten days, without +his approval. + +=The Income Tax of 1894.=--The advocates of tariff reduction usually +associated with their proposal a tax on incomes. The argument which +they advanced in support of their program was simple. Most of the +industries, they said, are in the East and the protective tariff which +taxes consumers for the benefit of manufacturers is, in effect, a +tribute laid upon the rest of the country. As an offset they offered a +tax on large incomes; this owing to the heavy concentration of rich +people in the East, would fall mainly upon the beneficiaries of +protection. "We propose," said one of them, "to place a part of the +burden upon the accumulated wealth of the country instead of placing it +all upon the consumption of the people." In this spirit the sponsors of +the Wilson tariff bill laid a tax upon all incomes of $4000 a year or +more. + +In taking this step, the Democrats encountered opposition in their own +party. Senator Hill, of New York, turned fiercely upon them, exclaiming: +"The professors with their books, the socialists with their schemes, the +anarchists with their bombs are all instructing the people in the ... +principles of taxation." Even the Eastern Republicans were hardly as +savage in their denunciation of the tax. But all this labor was wasted. +The next year the Supreme Court of the United States declared the income +tax to be a direct tax, and therefore null and void because it was laid +on incomes wherever found and not apportioned among the states according +to population. The fact that four of the nine judges dissented from this +decision was also an index to the diversity of opinion that divided both +parties. + + +THE RAILWAYS AND TRUSTS + +=The Grangers and State Regulation.=--The same uncertainty about the +railways and trusts pervaded the ranks of the Republicans and Democrats. +As to the railways, the first firm and consistent demand for their +regulation came from the West. There the farmers, in the early +seventies, having got control in state legislatures, particularly in +Iowa, Wisconsin, and Illinois, enacted drastic laws prescribing the +maximum charges which companies could make for carrying freight and +passengers. The application of these measures, however, was limited +because the state could not fix the rates for transporting goods and +passengers beyond its own borders. The power of regulating interstate +commerce, under the Constitution, belonged to Congress. + +=The Interstate Commerce Act of 1887.=--Within a few years, the movement +which had been so effective in western legislatures appeared at +Washington in the form of demands for the federal regulation of +interstate rates. In 1887, the pressure became so strong that Congress +created the interstate commerce commission and forbade many abuses on +the part of railways; such as discriminating in charges between one +shipper and another and granting secret rebates to favored persons. This +law was a significant beginning; but it left the main question of +rate-fixing untouched, much to the discontent of farmers and shippers. + +=The Sherman Anti-Trust Law of 1890.=--As in the case of the railways, +attacks upon the trusts were first made in state legislatures, where it +became the fashion to provide severe penalties for those who formed +monopolies and "conspired to enhance prices." Republicans and Democrats +united in the promotion of measures of this kind. As in the case of the +railways also, the movement to curb the trusts soon had spokesmen at +Washington. Though Blaine had declared that "trusts were largely a +private affair with which neither the President nor any private citizen +had any particular right to interfere," it was a Republican Congress +that enacted in 1890 the first measure--the Sherman Anti-Trust +Law--directed against great combinations in business. This act declared +illegal "every contract, combination in the form of trust or otherwise, +or conspiracy in restraint of trade and commerce among the several +states or with foreign nations." + +=The Futility of the Anti-Trust Law.=--Whether the Sherman law was +directed against all combinations or merely those which placed an +"unreasonable restraint" on trade and competition was not apparent. +Senator Platt of Connecticut, a careful statesman of the old school, +averred: "The questions of whether the bill would be operative, of how +it would operate, or whether it was within the power of Congress to +enact it, have been whistled down the wind in this Senate as idle talk +and the whole effort has been to get some bill headed: 'A bill to punish +trusts,' with which to go to the country." Whatever its purpose, its +effect upon existing trusts and upon the formation of new combinations +was negligible. It was practically unenforced by President Harrison and +President Cleveland, in spite of the constant demand for harsh action +against "monopolies." It was patent that neither the Republicans nor the +Democrats were prepared for a war on the trusts to the bitter end. + + +THE MINOR PARTIES AND UNREST + +=The Demands of Dissenting Parties.=--From the election of 1872, when +Horace Greeley made his ill-fated excursion into politics, onward, there +appeared in each presidential campaign one, and sometimes two or more +parties, stressing issues that appealed mainly to wage-earners and +farmers. Whether they chose to call themselves Labor Reformers, +Greenbackers, or Anti-monopolists, their slogans and their platforms all +pointed in one direction. Even the Prohibitionists, who in 1872 started +on their career with a single issue, the abolition of the liquor +traffic, found themselves making declarations of faith on other matters +and hopelessly split over the money question in 1896. + +A composite view of the platforms put forth by the dissenting parties +from the administration of Grant to the close of Cleveland's second term +reveals certain notions common to them all. These included among many +others: the earliest possible payment of the national debt; regulation +of the rates of railways and telegraph companies; repeal of the specie +resumption act of 1875; the issue of legal tender notes by the +government convertible into interest-bearing obligations on demand; +unlimited coinage of silver as well as gold; a graduated inheritance +tax; legislation to take from "land, railroad, money, and other gigantic +corporate monopolies ... the powers they have so corruptly and unjustly +usurped"; popular or direct election of United States Senators; woman +suffrage; and a graduated income tax, "placing the burden of government +on those who can best afford to pay instead of laying it on the farmers +and producers." + +=Criticism of the Old Parties.=--To this long program of measures the +reformers added harsh and acrid criticism of the old parties and +sometimes, it must be said, of established institutions of government. +"We denounce," exclaimed the Labor party in 1888, "the Democratic and +Republican parties as hopelessly and shamelessly corrupt and by reason +of their affiliation with monopolies equally unworthy of the suffrages +of those who do not live upon public plunder." "The United States +Senate," insisted the Greenbackers, "is a body composed largely of +aristocratic millionaires who according to their own party papers +generally purchased their elections in order to protect the great +monopolies which they represent." Indeed, if their platforms are to be +accepted at face value, the Greenbackers believed that the entire +government had passed out of the hands of the people. + +=The Grangers.=--This unsparing, not to say revolutionary, criticism of +American political life, appealed, it seems, mainly to farmers in the +Middle West. Always active in politics, they had, before the Civil War, +cast their lot as a rule with one or the other of the leading parties. +In 1867, however, there grew up among them an association known as the +"Patrons of Husbandry," which was destined to play a large role in the +partisan contests of the succeeding decades. This society, which +organized local lodges or "granges" on principles of secrecy and +fraternity, was originally designed to promote in a general way the +interests of the farmers. Its political bearings were apparently not +grasped at first by its promoters. Yet, appealing as it did to the most +active and independent spirits among the farmers and gathering to itself +the strength that always comes from organization, it soon found itself +in the hands of leaders more or less involved in politics. Where a few +votes are marshaled together in a democracy, there is power. + +=The Greenback Party.=--The first extensive activity of the Grangers was +connected with the attack on the railways in the Middle West which +forced several state legislatures to reduce freight and passenger rates +by law. At the same time, some leaders in the movement, no doubt +emboldened by this success, launched in 1876 a new political party, +popularly known as the Greenbackers, favoring a continued re-issue of +the legal tenders. The beginnings were disappointing; but two years +later, in the congressional elections, the Greenbackers swept whole +sections of the country. Their candidates polled more than a million +votes and fourteen of them were returned to the House of +Representatives. To all outward signs a new and formidable party had +entered the lists. + +The sanguine hopes of the leaders proved to be illusory. The quiet +operations of the resumption act the following year, a revival of +industry from a severe panic which had set in during 1873, the Silver +Purchase Act, and the re-issue of Greenbacks cut away some of the +grounds of agitation. There was also a diversion of forces to the silver +faction which had a substantial support in the silver mine owners of the +West. At all events the Greenback vote fell to about 300,000 in the +election of 1880. A still greater drop came four years later and the +party gave up the ghost, its sponsors returning to their former +allegiance or sulking in their tents. + +=The Rise of the Populist Party.=--Those leaders of the old parties who +now looked for a happy future unvexed by new factions were doomed to +disappointment. The funeral of the Greenback party was hardly over +before there arose two other political specters in the agrarian +sections: the National Farmers' Alliance and Industrial Union, +particularly strong in the South and West; and the Farmers' Alliance, +operating in the North. By 1890 the two orders claimed over three +million members. As in the case of the Grangers many years before, the +leaders among them found an easy way into politics. In 1892 they held a +convention, nominated a candidate for President, and adopted the name of +"People's Party," from which they were known as Populists. Their +platform, in every line, breathed a spirit of radicalism. They declared +that "the newspapers are largely subsidized or muzzled; public opinion +silenced; business prostrate; our homes covered with mortgages; and the +land concentrating in the hands of capitalists.... The fruits of the +toil of millions are boldly stolen to build up colossal fortunes for a +few." Having delivered this sweeping indictment, the Populists put +forward their remedies: the free coinage of silver, a graduated income +tax, postal savings banks, and government ownership of railways and +telegraphs. At the same time they approved the initiative, referendum, +and popular election of Senators, and condemned the use of federal +troops in labor disputes. On this platform, the Populists polled over a +million votes, captured twenty-two presidential electors, and sent a +powerful delegation to Congress. + +=Industrial Distress Augments Unrest.=--The four years intervening +between the campaign of 1892 and the next presidential election brought +forth many events which aggravated the ill-feeling expressed in the +portentous platform of Populism. Cleveland, a consistent enemy of free +silver, gave his powerful support to the gold standard and insisted on +the repeal of the Silver Purchase Act, thus alienating an increasing +number of his own party. In 1893 a grave industrial crisis fell upon the +land: banks and business houses went into bankruptcy with startling +rapidity; factories were closed; idle men thronged the streets hunting +for work; and the prices of wheat and corn dropped to a ruinous level. +Labor disputes also filled the crowded record. A strike at the Pullman +car works in Chicago spread to the railways. Disorders ensued. President +Cleveland, against the protests of the governor of Illinois, John P. +Altgeld, dispatched troops to the scene of action. The United States +district court at Chicago issued an injunction forbidding the president +of the Railway Union, Eugene V. Debs, or his assistants to interfere +with the transmission of the mails or interstate commerce in any form. +For refusing to obey the order, Debs was arrested and imprisoned. With +federal troops in possession of the field, with their leader in jail, +the strikers gave up the battle, defeated but not subdued. To cap the +climax the Supreme Court of the United States, the following year (1895) +declared null and void the income tax law just enacted by Congress, thus +fanning the flames of Populist discontent all over the West and South. + + +THE SOUND MONEY BATTLE OF 1896 + +=Conservative Men Alarmed.=--Men of conservative thought and leaning in +both parties were by this time thoroughly disturbed. They looked upon +the rise of Populism and the growth of labor disputes as the signs of a +revolutionary spirit, indeed nothing short of a menace to American +institutions and ideals. The income tax law of 1894, exclaimed the +distinguished New York advocate, Joseph H. Choate, in an impassioned +speech before the Supreme Court, "is communistic in its purposes and +tendencies and is defended here upon principles as communistic, +socialistic--what shall I call them--populistic as ever have been +addressed to any political assembly in the world." Mr. Justice Field in +the name of the Court replied: "The present assault upon capital is but +the beginning. It will be but the stepping stone to others larger and +more sweeping till our political conditions will become a war of the +poor against the rich." In declaring the income tax unconstitutional, he +believed that he was but averting greater evils lurking under its guise. +As for free silver, nearly all conservative men were united in calling +it a measure of confiscation and repudiation; an effort of the debtors +to pay their obligations with money worth fifty cents on the dollar; the +climax of villainies openly defended; a challenge to law, order, and +honor. + +=The Republicans Come Out for the Gold Standard.=--It was among the +Republicans that this opinion was most widely shared and firmly held. It +was they who picked up the gauge thrown down by the Populists, though a +host of Democrats, like Cleveland and Hill of New York, also battled +against the growing Populist defection in Democratic ranks. When the +Republican national convention assembled in 1896, the die was soon +cast; a declaration of opposition to free silver save by international +agreement was carried by a vote of eight to one. The Republican party, +to use the vigorous language of Mr. Lodge, arrayed itself against "not +only that organized failure, the Democratic party, but all the wandering +forces of political chaos and social disorder ... in these bitter times +when the forces of disorder are loose and the wreckers with their false +lights gather at the shore to lure the ship of state upon the rocks." +Yet it is due to historic truth to state that McKinley, whom the +Republicans nominated, had voted in Congress for the free coinage of +silver, was widely known as a bimetallist, and was only with difficulty +persuaded to accept the unequivocal indorsement of the gold standard +which was pressed upon him by his counselors. Having accepted it, +however, he proved to be a valiant champion, though his major interest +was undoubtedly in the protective tariff. To him nothing was more +reprehensible than attempts "to array class against class, 'the classes +against the masses,' section against section, labor against capital, +'the poor against the rich,' or interest against interest." Such was the +language of his acceptance speech. The whole program of Populism he now +viewed as a "sudden, dangerous, and revolutionary assault upon law and +order." + +=The Democratic Convention at Chicago.=--Never, save at the great +disruption on the eve of the Civil War, did a Democratic national +convention display more feeling than at Chicago in 1896. From the +opening prayer to the last motion before the house, every act, every +speech, every scene, every resolution evoked passions and sowed +dissensions. Departing from long party custom, it voted down in anger a +proposal to praise the administration of the Democratic President, +Cleveland. When the platform with its radical planks, including free +silver, was reported, a veritable storm broke. Senator Hill, trembling +with emotion, protested against the departure from old tests of +Democratic allegiance; against principles that must drive out of the +party men who had grown gray in its service; against revolutionary, +unwise, and unprecedented steps in the history of the party. Senator +Vilas of Wisconsin, in great fervor, avowed that there was no difference +in principle between the free coinage of silver--"the confiscation of +one-half of the credits of the nation for the benefit of debtors"--and +communism itself--"a universal distribution of property." In the triumph +of that cause he saw the beginning of "the overthrow of all law, all +justice, all security and repose in the social order." + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +WILLIAM J. BRYAN IN 1898] + +=The Crown of Thorns Speech.=--The champions of free silver replied in +strident tones. They accused the gold advocates of being the aggressors +who had assailed the labor and the homes of the people. William Jennings +Bryan, of Nebraska, voiced their sentiments in a memorable oration. He +declared that their cause "was as holy as the cause of liberty--the +cause of humanity." He exclaimed that the contest was between the idle +holders of idle capital and the toiling millions. Then he named those +for whom he spoke--the wage-earner, the country lawyer, the small +merchant, the farmer, and the miner. "The man who is employed for wages +is as much a business man as his employer. The attorney in a country +town is as much a business man as the corporation counsel in a great +metropolis. The merchant at the cross roads store is as much a business +man as the merchant of New York. The farmer ... is as much a business +man as the man who goes upon the board of trade and bets upon the price +of grain. The miners who go a thousand feet into the earth or climb two +thousand feet upon the cliffs ... are as much business men as the few +financial magnates who in a back room corner the money of the world.... +It is for these that we speak. We do not come as aggressors. Ours is not +a war of conquest. We are fighting in defense of our homes, our +families, and our posterity. We have petitioned and our petitions have +been scorned. We have entreated and our entreaties have been +disregarded. We have begged and they have mocked when our calamity came. +We beg no longer; we entreat no more; we petition no more. We defy +them.... We shall answer their demands for a gold standard by saying to +them, 'You shall not press upon the brow of labor this crown of thorns. +You shall not crucify mankind upon a cross of gold.'" + +=Bryan Nominated.=--In all the history of national conventions never had +an orator so completely swayed a multitude; not even Yancey in his +memorable plea in the Charleston convention of 1860 when, with grave and +moving eloquence, he espoused the Southern cause against the impending +fates. The delegates, after cheering Mr. Bryan until they could cheer no +more, tore the standards from the floor and gathered around the Nebraska +delegation to renew the deafening applause. The platform as reported was +carried by a vote of two to one and the young orator from the West, +hailed as America's Tiberius Gracchus, was nominated as the Democratic +candidate for President. The South and West had triumphed over the East. +The division was sectional, admittedly sectional--the old combination of +power which Calhoun had so anxiously labored to build up a century +earlier. The Gold Democrats were repudiated in terms which were clear to +all. A few, unable to endure the thought of voting the Republican +ticket, held a convention at Indianapolis where, with the sanction of +Cleveland, they nominated candidates of their own and endorsed the gold +standard in a forlorn hope. + +=The Democratic Platform.=--It was to the call from Chicago that the +Democrats gave heed and the Republicans made answer. The platform on +which Mr. Bryan stood, unlike most party manifestoes, was explicit in +its language and its appeal. It denounced the practice of allowing +national banks to issue notes intended to circulate as money on the +ground that it was "in derogation of the Constitution," recalling +Jackson's famous attack on the Bank in 1832. It declared that tariff +duties should be laid "for the purpose of revenue"--Calhoun's doctrine. +In demanding the free coinage of silver, it recurred to the practice +abandoned in 1873. The income tax came next on the program. The platform +alleged that the law of 1894, passed by a Democratic Congress, was "in +strict pursuance of the uniform decisions of the Supreme Court for +nearly a hundred years," and then hinted that the decision annulling the +law might be reversed by the same body "as it may hereafter be +constituted." + +The appeal to labor voiced by Mr. Bryan in his "crown of thorns" speech +was reinforced in the platform. "As labor creates the wealth of the +country," ran one plank, "we demand the passage of such laws as may be +necessary to protect it in all its rights." Referring to the recent +Pullman strike, the passions of which had not yet died away, the +platform denounced "arbitrary interference by federal authorities in +local affairs as a violation of the Constitution of the United States +and a crime against free institutions." A special objection was lodged +against "government by injunction as a new and highly dangerous form of +oppression by which federal judges, in contempt of the laws of states +and rights of citizens, become at once legislators, judges, and +executioners." The remedy advanced was a federal law assuring trial by +jury in all cases of contempt in labor disputes. Having made this +declaration of faith, the Democrats, with Mr. Bryan at the head, raised +their standard of battle. + +=The Heated Campaign.=--The campaign which ensued outrivaled in the +range of its educational activities and the bitterness of its tone all +other political conflicts in American history, not excepting the fateful +struggle of 1860. Immense sums of money were contributed to the funds of +both parties. Railway, banking, and other corporations gave generously +to the Republicans; the silver miners, less lavishly but with the same +anxiety, supported the Democrats. The country was flooded with +pamphlets, posters, and handbills. Every public forum, from the great +auditoriums of the cities to the "red schoolhouses" on the countryside, +was occupied by the opposing forces. + +Mr. Bryan took the stump himself, visiting all parts of the country in +special trains and addressing literally millions of people in the open +air. Mr. McKinley chose the older and more formal plan. He received +delegations at his home in Canton and discussed the issues of the +campaign from his front porch, leaving to an army of well-organized +orators the task of reaching the people in their home towns. Parades, +processions, and monster demonstrations filled the land with politics. +Whole states were polled in advance by the Republicans and the doubtful +voters personally visited by men equipped with arguments and literature. +Manufacturers, frightened at the possibility of disordered public +credit, announced that they would close their doors if the Democrats won +the election. Men were dismissed from public and private places on +account of their political views, one eminent college president being +forced out for advocating free silver. The language employed by +impassioned and embittered speakers on both sides roused the public to a +state of frenzy, once more showing the lengths to which men could go in +personal and political abuse. + +=The Republican Victory.=--The verdict of the nation was decisive. +McKinley received 271 of the 447 electoral votes, and 7,111,000 popular +votes as against Bryan's 6,509,000. The congressional elections were +equally positive although, on account of the composition of the Senate, +the "hold-over" Democrats and Populists still enjoyed a power out of +proportion to their strength as measured at the polls. Even as it was, +the Republicans got full control of both houses--a dominion of the +entire government which they were to hold for fourteen years--until the +second half of Mr. Taft's administration, when they lost possession of +the House of Representatives. The yoke of indecision was broken. The +party of sound finance and protective tariffs set out upon its lease of +power with untroubled assurance. + + +REPUBLICAN MEASURES AND RESULTS + +=The Gold Standard and the Tariff.=--Yet strange as it may seem, the +Republicans did not at once enact legislation making the gold dollar the +standard for the national currency. Not until 1900 did they take that +positive step. In his first inaugural President McKinley, as if still +uncertain in his own mind or fearing a revival of the contest just +closed, placed the tariff, not the money question, in the forefront. +"The people have decided," he said, "that such legislation should be had +as will give ample protection and encouragement to the industries and +development of our country." Protection for American industries, +therefore, he urged, is the task before Congress. "With adequate revenue +secured, but not until then, we can enter upon changes in our fiscal +laws." As the Republicans had only forty-six of the ninety Senators, and +at least four of them were known advocates of free silver, the +discretion exercised by the President in selecting the tariff for +congressional debate was the better part of valor. + +Congress gave heed to the warning. Under the direction of Nelson P. +Dingley, whose name was given to the bill, a tariff measure levying the +highest rates yet laid in the history of American imposts was prepared +and driven through the House of Representatives. The opposition +encountered in the Senate, especially from the West, was overcome by +concessions in favor of that section; but the duties on sugar, tin, +steel, lumber, hemp, and in fact all of the essential commodities +handled by combinations and trusts, were materially raised. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +PRESIDENT MCKINLEY AND HIS CABINET] + +=Growth of Combinations.=--The years that followed the enactment of the +Dingley law were, whatever the cause, the most prosperous the country +had witnessed for many a decade. Industries of every kind were soon +running full blast; labor was employed; commerce spread more swiftly +than ever to the markets of the world. Coincident with this progress was +the organization of the greatest combinations and trusts the world had +yet seen. In 1899 the smelters formed a trust with a capital of +$65,000,000; in the same year the Standard Oil Company with a capital of +over one hundred millions took the place of the old trust; and the +Copper Trust was incorporated under the laws of New Jersey, its par +value capital being fixed shortly afterward at $175,000,000. A year +later the National Sugar Refining Company, of New Jersey, started with a +capital of $90,000,000, adopting the policy of issuing to the +stockholders no public statement of its earnings or financial condition. +Before another twelvemonth had elapsed all previous corporate financing +was reduced to small proportions by the flotation of the United States +Steel Corporation with a capital of more than a billion dollars, an +enterprise set in motion by the famous Morgan banking house of New York. + +In nearly all these gigantic undertakings, the same great leaders in +finance were more or less intimately associated. To use the language of +an eminent authority: "They are all allied and intertwined by their +various mutual interests. For instance, the Pennsylvania Railroad +interests are on the one hand allied with the Vanderbilts and on the +other with the Rockefellers. The Vanderbilts are closely allied with the +Morgan group.... Viewed as a whole we find the dominating influences in +the trusts to be made up of a network of large and small capitalists, +many allied to one another by ties of more or less importance, but all +being appendages to or parts of the greater groups which are themselves +dependent on and allied with the two mammoth or Rockefeller and Morgan +groups. These two mammoth groups jointly ... constitute the heart of the +business and commercial life of the nation." Such was the picture of +triumphant business enterprise drawn by a financier within a few years +after the memorable campaign of 1896. + +America had become one of the first workshops of the world. It was, by +virtue of the closely knit organization of its business and finance, one +of the most powerful and energetic leaders in the struggle of the giants +for the business of the earth. The capital of the Steel Corporation +alone was more than ten times the total national debt which the apostles +of calamity in the days of Washington and Hamilton declared the nation +could never pay. American industry, filling domestic markets to +overflowing, was ready for new worlds to conquer. + + +=References= + +F.W. Taussig, _Tariff History of the United States_. + +J.L. Laughlin, _Bimetallism in the United States_. + +A.B. Hepburn, _History of Coinage and Currency in the United States_. + +E.R.A. Seligman, _The Income Tax_. + +S.J. Buck, _The Granger Movement_ (Harvard Studies). + +F.H. Dixon, _State Railroad Control_. + +H.R. Meyer, _Government Regulation of Railway Rates_. + +W.Z. Ripley (editor), _Trusts, Pools, and Corporations_. + +R.T. Ely, _Monopolies and Trusts_. + +J.B. Clark, _The Control of Trusts_. + + +=Questions= + +1. What proof have we that the political parties were not clearly +divided over issues between 1865 and 1896? + +2. Why is a fall in prices a loss to farmers and a gain to holders of +fixed investments? + +3. Explain the theory that the quantity of money determines the prices +of commodities. + +4. Why was it difficult, if not impossible, to keep gold and silver at a +parity? + +5. What special conditions favored a fall in silver between 1870 and +1896? + +6. Describe some of the measures taken to raise the value of silver. + +7. Explain the relation between the tariff and the income tax in 1894. + +8. How did it happen that the farmers led in regulating railway rates? + +9. Give the terms of the Sherman Anti-Trust Act. What was its immediate +effect? + +10. Name some of the minor parties. Enumerate the reforms they +advocated. + +11. Describe briefly the experiments of the farmers in politics. + +12. How did industrial conditions increase unrest? + +13. Why were conservative men disturbed in the early nineties? + +14. Explain the Republican position in 1896. + +15. Give Mr. Bryan's doctrines in 1896. Enumerate the chief features of +the Democratic platform. + +16. What were the leading measures adopted by the Republicans after +their victory in 1896? + + +=Research Topics= + +=Greenbacks and Resumption.=--Dewey, _Financial History of the United +States_ (6th ed.), Sections 122-125, 154, and 378; MacDonald, +_Documentary Source Book of American History_, pp. 446, 566; Hart, +_American History Told by Contemporaries_, Vol. IV, pp. 531-533; Rhodes, +_History of the United States_, Vol. VIII, pp. 97-101. + +=Demonetization and Coinage of Silver.=--Dewey, _Financial History_, +Sections 170-173, 186, 189, 194; MacDonald, _Documentary Source Book_, +pp. 174, 573, 593, 595; Hart, _Contemporaries_, Vol. IV, pp. 529-531; +Rhodes, _History_, Vol. VIII, pp. 93-97. + +=Free Silver and the Campaign of 1896.=--Dewey, _National Problems_ +(American Nation Series), pp. 220-237, 314-328; Hart, _Contemporaries_, +Vol. IV, pp. 533-538. + +=Tariff Revision.=--Dewey, _Financial History_, Sections 167, 180, 181, +187, 192, 196; Hart, _Contemporaries_, Vol. IV, pp. 518-525; Rhodes, +_History_, Vol. VIII, pp. 168-179, 346-351, 418-422. + +=Federal Regulation of Railways.=--Dewey, _National Problems_, pp. +91-111; MacDonald, _Documentary Source Book_, pp. 581-590; Hart, +_Contemporaries_, Vol. IV, pp. 521-523; Rhodes, _History_, Vol. VIII, +pp. 288-292. + +=The Rise and Regulation of Trusts.=--Dewey, _National Problems_, pp. +188-202; MacDonald, _Documentary Source Book_, pp. 591-593. + +=The Grangers and Populism.=--Paxson, _The New Nation_ (Riverside +Series), pp. 20-37, 177-191, 208-223. + +=General Analysis of Domestic Problems.=--_Syllabus in History_ (New +York State, 1920), pp. 137-142. + + + + +CHAPTER XX + +AMERICA A WORLD POWER (1865-1900) + + +It has now become a fashion, sanctioned by wide usage and by eminent +historians, to speak of America, triumphant over Spain and possessed of +new colonies, as entering the twentieth century in the role of "a world +power," for the first time. Perhaps at this late day, it is useless to +protest against the currency of the idea. Nevertheless, the truth is +that from the fateful moment in March, 1775, when Edmund Burke unfolded +to his colleagues in the British Parliament the resources of an +invincible America, down to the settlement at Versailles in 1919 closing +the drama of the World War, this nation has been a world power, +influencing by its example, by its institutions, by its wealth, trade, +and arms the course of international affairs. And it should be said also +that neither in the field of commercial enterprise nor in that of +diplomacy has it been wanting in spirit or ingenuity. + +When John Hay, Secretary of State, heard that an American citizen, +Perdicaris, had been seized by Raisuli, a Moroccan bandit, in 1904, he +wired his brusque message: "We want Perdicaris alive or Raisuli dead." +This was but an echo of Commodore Decatur's equally characteristic +answer, "Not a minute," given nearly a hundred years before to the +pirates of Algiers begging for time to consider whether they would cease +preying upon American merchantmen. Was it not as early as 1844 that the +American commissioner, Caleb Cushing, taking advantage of the British +Opium War on China, negotiated with the Celestial Empire a successful +commercial treaty? Did he not then exultantly exclaim: "The laws of the +Union follow its citizens and its banner protects them even within the +domain of the Chinese Empire"? Was it not almost half a century before +the battle of Manila Bay in 1898, that Commodore Perry with an adequate +naval force "gently coerced Japan into friendship with us," leading all +the nations of the earth in the opening of that empire to the trade of +the Occident? Nor is it inappropriate in this connection to recall the +fact that the Monroe Doctrine celebrates in 1923 its hundredth +anniversary. + + +AMERICAN FOREIGN RELATIONS (1865-98) + +=French Intrigues in Mexico Blocked.=--Between the war for the union and +the war with Spain, the Department of State had many an occasion to +present the rights of America among the powers of the world. Only a +little while after the civil conflict came to a close, it was called +upon to deal with a dangerous situation created in Mexico by the +ambitions of Napoleon III. During the administration of Buchanan, Mexico +had fallen into disorder through the strife of the Liberal and the +Clerical parties; the President asked for authority to use American +troops to bring to a peaceful haven "a wreck upon the ocean, drifting +about as she is impelled by different factions." Our own domestic crisis +then intervened. + +Observing the United States heavily involved in its own problems, the +great powers, England, France, and Spain, decided in the autumn of 1861 +to take a hand themselves in restoring order in Mexico. They entered +into an agreement to enforce the claims of their citizens against Mexico +and to protect their subjects residing in that republic. They invited +the United States to join them, and, on meeting a polite refusal, they +prepared for a combined military and naval demonstration on their own +account. In the midst of this action England and Spain, discovering the +sinister purposes of Napoleon, withdrew their troops and left the field +to him. + +The French Emperor, it was well known, looked with jealousy upon the +growth of the United States and dreamed of establishing in the Western +hemisphere an imperial power to offset the American republic. +Intervention to collect debts was only a cloak for his deeper designs. +Throwing off that guise in due time, he made the Archduke Maximilian, a +brother of the ruler of Austria, emperor in Mexico, and surrounded his +throne by French soldiers, in spite of all protests. + +This insolent attack upon the Mexican republic, deeply resented in the +United States, was allowed to drift in its course until 1865. At that +juncture General Sheridan was dispatched to the Mexican border with a +large armed force; General Grant urged the use of the American army to +expel the French from this continent. The Secretary of State, Seward, +counseled negotiation first, and, applying the Monroe Doctrine, was able +to prevail upon Napoleon III to withdraw his troops. Without the support +of French arms, the sham empire in Mexico collapsed like a house of +cards and the unhappy Maximilian, the victim of French ambition and +intrigue, met his death at the hands of a Mexican firing squad. + +=Alaska Purchased.=--The Mexican affair had not been brought to a close +before the Department of State was busy with negotiations which resulted +in the purchase of Alaska from Russia. The treaty of cession, signed on +March 30, 1867, added to the United States a domain of nearly six +hundred thousand square miles, a territory larger than Texas and nearly +three-fourths the size of the Louisiana purchase. Though it was a +distant colony separated from our continental domain by a thousand miles +of water, no question of "imperialism" or "colonization foreign to +American doctrines" seems to have been raised at the time. The treaty +was ratified promptly by the Senate. The purchase price, $7,200,000, was +voted by the House of Representatives after the display of some +resentment against a system that compelled it to appropriate money to +fulfill an obligation which it had no part in making. Seward, who +formulated the treaty, rejoiced, as he afterwards said, that he had kept +Alaska out of the hands of England. + +=American Interest in the Caribbean.=--Having achieved this diplomatic +triumph, Seward turned to the increase of American power in another +direction. He negotiated, with Denmark, a treaty providing for the +purchase of the islands of St. John and St. Thomas in the West Indies, +strategic points in the Caribbean for sea power. This project, long +afterward brought to fruition by other men, was defeated on this +occasion by the refusal of the Senate to ratify the treaty. Evidently it +was not yet prepared to exercise colonial dominion over other races. + +Undaunted by the misadventure in Caribbean policies, President Grant +warmly advocated the acquisition of Santo Domingo. This little republic +had long been in a state of general disorder. In 1869 a treaty of +annexation was concluded with its president. The document Grant +transmitted to the Senate with his cordial approval, only to have it +rejected. Not at all changed in his opinion by the outcome of his +effort, he continued to urge the subject of annexation. Even in his last +message to Congress he referred to it, saying that time had only proved +the wisdom of his early course. The addition of Santo Domingo to the +American sphere of protection was the work of a later generation. The +State Department, temporarily checked, had to bide its time. + +=The _Alabama_ Claims Arbitrated.=--Indeed, it had in hand a far more +serious matter, a vexing issue that grew out of Civil War diplomacy. The +British government, as already pointed out in other connections, had +permitted Confederate cruisers, including the famous _Alabama_, built in +British ports, to escape and prey upon the commerce of the Northern +states. This action, denounced at the time by our government as a grave +breach of neutrality as well as a grievous injury to American citizens, +led first to remonstrances and finally to repeated claims for damages +done to American ships and goods. For a long time Great Britain was +firm. Her foreign secretary denied all obligations in the premises, +adding somewhat curtly that "he wished to say once for all that Her +Majesty's government disclaimed any responsibility for the losses and +hoped that they had made their position perfectly clear." Still +President Grant was not persuaded that the door of diplomacy, though +closed, was barred. Hamilton Fish, his Secretary of State, renewed the +demand. Finally he secured from the British government in 1871 the +treaty of Washington providing for the arbitration not merely of the +_Alabama_ and other claims but also all points of serious controversy +between the two countries. + +The tribunal of arbitration thus authorized sat at Geneva in +Switzerland, and after a long and careful review of the arguments on +both sides awarded to the United States the lump sum of $15,500,000 to +be distributed among the American claimants. The damages thus allowed +were large, unquestionably larger than strict justice required and it is +not surprising that the decision excited much adverse comment in +England. Nevertheless, the prompt payment by the British government +swept away at once a great cloud of ill-feeling in America. Moreover, +the spectacle of two powerful nations choosing the way of peaceful +arbitration to settle an angry dispute seemed a happy, if illusory, omen +of a modern method for avoiding the arbitrament of war. + +=Samoa.=--If the Senate had its doubts at first about the wisdom of +acquiring strategic points for naval power in distant seas, the same +could not be said of the State Department or naval officers. In 1872 +Commander Meade, of the United States navy, alive to the importance of +coaling stations even in mid-ocean, made a commercial agreement with the +chief of Tutuila, one of the Samoan Islands, far below the equator, in +the southern Pacific, nearer to Australia than to California. This +agreement, providing among other things for our use of the harbor of +Pago Pago as a naval base, was six years later changed into a formal +treaty ratified by the Senate. + +Such enterprise could not escape the vigilant eyes of England and +Germany, both mindful of the course of the sea power in history. The +German emperor, seizing as a pretext a quarrel between his consul in the +islands and a native king, laid claim to an interest in the Samoan +group. England, aware of the dangers arising from German outposts in the +southern seas so near to Australia, was not content to stand aside. So +it happened that all three countries sent battleships to the Samoan +waters, threatening a crisis that was fortunately averted by friendly +settlement. If, as is alleged, Germany entertained a notion of +challenging American sea power then and there, the presence of British +ships must have dispelled that dream. + +The result of the affair was a tripartite agreement by which the three +powers in 1889 undertook a protectorate over the islands. But joint +control proved unsatisfactory. There was constant friction between the +Germans and the English. The spheres of authority being vague and open +to dispute, the plan had to be abandoned at the end of ten years. +England withdrew altogether, leaving to Germany all the islands except +Tutuila, which was ceded outright to the United States. Thus one of the +finest harbors in the Pacific, to the intense delight of the American +navy, passed permanently under American dominion. Another triumph in +diplomacy was set down to the credit of the State Department. + +=Cleveland and the Venezuela Affair.=--In the relations with South +America, as well as in those with the distant Pacific, the diplomacy of +the government at Washington was put to the test. For some time it had +been watching a dispute between England and Venezuela over the western +boundary of British Guiana and, on an appeal from Venezuela, it had +taken a lively interest in the contest. In 1895 President Cleveland saw +that Great Britain would yield none of her claims. After hearing the +arguments of Venezuela, his Secretary of State, Richard T. Olney, in a +note none too conciliatory, asked the British government whether it was +willing to arbitrate the points in controversy. This inquiry he +accompanied by a warning to the effect that the United States could not +permit any European power to contest its mastery in this hemisphere. +"The United States," said the Secretary, "is practically sovereign on +this continent and its fiat is law upon the subjects to which it +confines its interposition.... Its infinite resources, combined with its +isolated position, render it master of the situation and practically +invulnerable against any or all other powers." + +The reply evoked from the British government by this strong statement +was firm and clear. The Monroe Doctrine, it said, even if not so widely +stretched by interpretation, was not binding in international law; the +dispute with Venezuela was a matter of interest merely to the parties +involved; and arbitration of the question was impossible. This response +called forth President Cleveland's startling message of 1895. He asked +Congress to create a commission authorized to ascertain by researches +the true boundary between Venezuela and British Guiana. He added that it +would be the duty of this country "to resist by every means in its +power, as a willful aggression upon its rights and interests, the +appropriation by Great Britain of any lands or the exercise of +governmental jurisdiction over any territory which, after investigation, +we have determined of right belongs to Venezuela." The serious character +of this statement he thoroughly understood. He declared that he was +conscious of his responsibilities, intimating that war, much as it was +to be deplored, was not comparable to "a supine submission to wrong and +injustice and the consequent loss of national self-respect and honor." + +[Illustration: GROVER CLEVELAND] + +The note of defiance which ran through this message, greeted by shrill +cries of enthusiasm in many circles, was viewed in other quarters as a +portent of war. Responsible newspapers in both countries spoke of an +armed settlement of the dispute as inevitable. Congress created the +commission and appropriated money for the investigation; a body of +learned men was appointed to determine the merits of the conflicting +boundary claims. The British government, deaf to the clamor of the +bellicose section of the London press, deplored the incident, +courteously replied in the affirmative to a request for assistance in +the search for evidence, and finally agreed to the proposition that the +issue be submitted to arbitration. The outcome of this somewhat perilous +dispute contributed not a little to Cleveland's reputation as "a +sterling representative of the true American spirit." This was not +diminished when the tribunal of arbitration found that Great Britain was +on the whole right in her territorial claims against Venezuela. + +=The Annexation of Hawaii.=--While engaged in the dangerous Venezuela +controversy, President Cleveland was compelled by a strange turn in +events to consider the annexation of the Hawaiian Islands in the +mid-Pacific. For more than half a century American missionaries had been +active in converting the natives to the Christian faith and enterprising +American business men had been developing the fertile sugar plantations. +Both the Department of State and the Navy Department were fully +conscious of the strategic relation of the islands to the growth of sea +power and watched with anxiety any developments likely to bring them +under some other Dominion. + +The country at large was indifferent, however, until 1893, when a +revolution, headed by Americans, broke out, ending in the overthrow of +the native government, the abolition of the primitive monarchy, and the +retirement of Queen Liliuokalani to private life. This crisis, a +repetition of the Texas affair in a small theater, was immediately +followed by a demand from the new Hawaiian government for annexation to +the United States. President Harrison looked with favor on the proposal, +negotiated the treaty of annexation, and laid it before the Senate for +approval. There it still rested when his term of office was brought to a +close. + +Harrison's successor, Cleveland, it was well known, had doubts about the +propriety of American action in Hawaii. For the purpose of making an +inquiry into the matter, he sent a special commissioner to the islands. +On the basis of the report of his agent, Cleveland came to the +conclusion that "the revolution in the island kingdom had been +accomplished by the improper use of the armed forces of the United +States and that the wrong should be righted by a restoration of the +queen to her throne." Such being his matured conviction, though the +facts upon which he rested it were warmly controverted, he could do +nothing but withdraw the treaty from the Senate and close the incident. + +To the Republicans this sharp and cavalier disposal of their plans, +carried out in a way that impugned the motives of a Republican +President, was nothing less than "a betrayal of American interests." In +their platform of 1896 they made clear their position: "Our foreign +policy should be at all times firm, vigorous, and dignified and all our +interests in the Western hemisphere carefully watched and guarded. The +Hawaiian Islands should be controlled by the United States and no +foreign power should be permitted to interfere with them." There was no +mistaking this view of the issue. As the vote in the election gave +popular sanction to Republican policies, Congress by a joint resolution, +passed on July 6, 1898, annexed the islands to the United States and +later conferred upon them the ordinary territorial form of government. + + +CUBA AND THE SPANISH WAR + +=Early American Relations with Cuba.=--The year that brought Hawaii +finally under the American flag likewise drew to a conclusion another +long controversy over a similar outpost in the Atlantic, one of the last +remnants of the once glorious Spanish empire--the island of Cuba. + +For a century the Department of State had kept an anxious eye upon this +base of power, knowing full well that both France and England, already +well established in the West Indies, had their attention also fixed upon +Cuba. In the administration of President Fillmore they had united in +proposing to the United States a tripartite treaty guaranteeing Spain in +her none too certain ownership. This proposal, squarely rejected, +furnished the occasion for a statement of American policy which stood +the test of all the years that followed; namely, that the affair was one +between Spain and the United States alone. + +In that long contest in the United States for the balance of power +between the North and South, leaders in the latter section often thought +of bringing Cuba into the union to offset the free states. An +opportunity to announce their purposes publicly was afforded in 1854 by +a controversy over the seizure of an American ship by Cuban authorities. +On that occasion three American ministers abroad, stationed at Madrid, +Paris, and London respectively, held a conference and issued the +celebrated "Ostend Manifesto." They united in declaring that Cuba, by +her geographical position, formed a part of the United States, that +possession by a foreign power was inimical to American interests, and +that an effort should be made to purchase the island from Spain. In case +the owner refused to sell, they concluded, with a menacing flourish, "by +every law, human and divine, we shall be justified in wresting it from +Spain if we possess the power." This startling proclamation to the world +was promptly disowned by the United States government. + +[Illustration: _=An old cartoon.=_ + +A SIGHT TOO BAD + +_Struggling Cuba._ "You must be awfully near-sighted, Mr. President, not +to recognize me." _U.S.G._ "No, I am far-sighted: for I can recognize +France."] + +=Revolutions in Cuba.=--For nearly twenty years afterwards the Cuban +question rested. Then it was revived in another form during President +Grant's administrations, when the natives became engaged in a +destructive revolt against Spanish officials. For ten years--1868-78--a +guerrilla warfare raged in the island. American citizens, by virtue of +their ancient traditions of democracy, naturally sympathized with a war +for independence and self-government. Expeditions to help the insurgents +were fitted out secretly in American ports. Arms and supplies were +smuggled into Cuba. American soldiers of fortune joined their ranks. The +enforcement of neutrality against the friends of Cuban independence, no +pleasing task for a sympathetic President, the protection of American +lives and property in the revolutionary area, and similar matters kept +our government busy with Cuba for a whole decade. + +A brief lull in Cuban disorders was followed in 1895 by a renewal of the +revolutionary movement. The contest between the rebels and the Spanish +troops, marked by extreme cruelty and a total disregard for life and +property, exceeded all bounds of decency, and once more raised the old +questions that had tormented Grant's administration. Gomez, the leader +of the revolt, intent upon provoking American interference, laid waste +the land with fire and sword. By a proclamation of November 6, 1895, he +ordered the destruction of sugar plantations and railway connections and +the closure of all sugar factories. The work of ruin was completed by +the ruthless Spanish general, Weyler, who concentrated the inhabitants +from rural regions into military camps, where they died by the hundreds +of disease and starvation. Stories of the atrocities, bad enough in +simple form, became lurid when transmuted into American news and deeply +moved the sympathies of the American people. Sermons were preached about +Spanish misdeeds; orators demanded that the Cubans be sustained "in +their heroic struggle for independence"; newspapers, scouting the +ordinary forms of diplomatic negotiation, spurned mediation and demanded +intervention and war if necessary. + +[Illustration: _Underwood and Underwood, N.Y._ + +CUBAN REVOLUTIONISTS] + +=President Cleveland's Policy.=--Cleveland chose the way of peace. He +ordered the observance of the rule of neutrality. He declined to act on +a resolution of Congress in favor of giving to the Cubans the rights of +belligerents. Anxious to bring order to the distracted island, he +tendered to Spain the good offices of the United States as mediator in +the contest--a tender rejected by the Spanish government with the broad +hint that President Cleveland might be more vigorous in putting a stop +to the unlawful aid in money, arms, and supplies, afforded to the +insurgents by American sympathizers. Thereupon the President returned to +the course he had marked out for himself, leaving "the public nuisance" +to his successor, President McKinley. + +=Republican Policies.=--The Republicans in 1897 found themselves in a +position to employ that "firm, vigorous, and dignified" foreign policy +which they had approved in their platform. They had declared: "The +government of Spain having lost control of Cuba and being unable to + +protect the property or lives of resident American citizens or to comply +with its treaty obligations, we believe that the government of the +United States should actively use its influence and good offices to +restore peace and give independence to the island." The American +property in Cuba to which the Republicans referred in their platform +amounted by this time to more than fifty million dollars; the commerce +with the island reached more than one hundred millions annually; and the +claims of American citizens against Spain for property destroyed totaled +sixteen millions. To the pleas of humanity which made such an effective +appeal to the hearts of the American people, there were thus added +practical considerations of great weight. + +=President McKinley Negotiates.=--In the face of the swelling tide of +popular opinion in favor of quick, drastic, and positive action, +McKinley chose first the way of diplomacy. A short time after his +inauguration he lodged with the Spanish government a dignified protest +against its policies in Cuba, thus opening a game of thrust and parry +with the suave ministers at Madrid. The results of the exchange of +notes were the recall of the obnoxious General Weyler, the appointment +of a governor-general less bloodthirsty in his methods, a change in the +policy of concentrating civilians in military camps, and finally a +promise of "home rule" for Cuba. There is no doubt that the Spanish +government was eager to avoid a war that could have but one outcome. The +American minister at Madrid, General Woodford, was convinced that firm +and patient pressure would have resulted in the final surrender of Cuba +by the Spanish government. + +=The De Lome and the _Maine_ Incidents.=--Such a policy was defeated by +events. In February, 1898, a private letter written by Senor de Lome, +the Spanish ambassador at Washington, expressing contempt for the +President of the United States, was filched from the mails and passed +into the hands of a journalist, William R. Hearst, who published it to +the world. In the excited state of American opinion, few gave heed to +the grave breach of diplomatic courtesy committed by breaking open +private correspondence. The Spanish government was compelled to recall +De Lome, thus officially condemning his conduct. + +At this point a far more serious crisis put the pacific relations of the +two negotiating countries in dire peril. On February 15, the battleship +_Maine_, riding in the harbor of Havana, was blown up and sunk, carrying +to death two officers and two hundred and fifty-eight members of the +crew. This tragedy, ascribed by the American public to the malevolence +of Spanish officials, profoundly stirred an already furious nation. +When, on March 21, a commission of inquiry reported that the ill-fated +ship had been blown up by a submarine mine which had in turn set off +some of the ship's magazines, the worst suspicions seemed confirmed. If +any one was inclined to be indifferent to the Cuban war for +independence, he was now met by the vehement cry: "Remember the +_Maine_!" + +=Spanish Concessions.=--Still the State Department, under McKinley's +steady hand, pursued the path of negotiation, Spain proving more pliable +and more ready with promises of reform in the island. Early in April, +however, there came a decided change in the tenor of American diplomacy. +On the 4th, McKinley, evidently convinced that promises did not mean +performances, instructed our minister at Madrid to warn the Spanish +government that as no effective armistice had been offered to the +Cubans, he would lay the whole matter before Congress. This decision, +every one knew, from the temper of Congress, meant war--a prospect which +excited all the European powers. The Pope took an active interest in the +crisis. France and Germany, foreseeing from long experience in world +politics an increase of American power and prestige through war, sought +to prevent it. Spain, hopeless and conscious of her weakness, at last +dispatched to the President a note promising to suspend hostilities, to +call a Cuban parliament, and to grant all the autonomy that could be +reasonably asked. + +=President McKinley Calls for War.=--For reasons of his own--reasons +which have never yet been fully explained--McKinley ignored the final +program of concessions presented by Spain. At the very moment when his +patient negotiations seemed to bear full fruit, he veered sharply from +his course and launched the country into the war by sending to Congress +his militant message of April 11, 1898. Without making public the last +note he had received from Spain, he declared that he was brought to the +end of his effort and the cause was in the hands of Congress. Humanity, +the protection of American citizens and property, the injuries to +American commerce and business, the inability of Spain to bring about +permanent peace in the island--these were the grounds for action that +induced him to ask for authority to employ military and naval forces in +establishing a stable government in Cuba. They were sufficient for a +public already straining at the leash. + +=The Resolution of Congress.=--There was no doubt of the outcome when +the issue was withdrawn from diplomacy and placed in charge of Congress. +Resolutions were soon introduced into the House of Representatives +authorizing the President to employ armed force in securing peace and +order in the island and "establishing by the free action of the people +thereof a stable and independent government of their own." To the form +and spirit of this proposal the Democrats and Populists took exception. +In the Senate, where they were stronger, their position had to be +reckoned with by the narrow Republican majority. As the resolution +finally read, the independence of Cuba was recognized; Spain was called +upon to relinquish her authority and withdraw from the island; and the +President was empowered to use force to the extent necessary to carry +the resolutions into effect. Furthermore the United States disclaimed +"any disposition or intention to exercise sovereignty, jurisdiction, or +control over said island except for the pacification thereof." Final +action was taken by Congress on April 19, 1898, and approved by the +President on the following day. + +=War and Victory.=--Startling events then followed in swift succession. +The navy, as a result in no small measure of the alertness of Theodore +Roosevelt, Assistant Secretary of the Department, was ready for the +trial by battle. On May 1, Commodore Dewey at Manila Bay shattered the +Spanish fleet, marking the doom of Spanish dominion in the Philippines. +On July 3, the Spanish fleet under Admiral Cervera, in attempting to +escape from Havana, was utterly destroyed by American forces under +Commodore Schley. On July 17, Santiago, invested by American troops +under General Shafter and shelled by the American ships, gave up the +struggle. On July 25 General Miles landed in Porto Rico. On August 13, +General Merritt and Admiral Dewey carried Manila by storm. The war was +over. + +=The Peace Protocol.=--Spain had already taken cognizance of stern +facts. As early as July 26, 1898, acting through the French ambassador, +M. Cambon, the Madrid government approached President McKinley for a +statement of the terms on which hostilities could be brought to a close. +After some skirmishing Spain yielded reluctantly to the ultimatum. On +August 12, the preliminary peace protocol was signed, stipulating that +Cuba should be free, Porto Rico ceded to the United States, and Manila +occupied by American troops pending the formal treaty of peace. On +October 1, the commissioners of the two countries met at Paris to bring +about the final settlement. + +=Peace Negotiations.=--When the day for the first session of the +conference arrived, the government at Washington apparently had not made +up its mind on the final disposition of the Philippines. Perhaps, before +the battle of Manila Bay, not ten thousand people in the United States +knew or cared where the Philippines were. Certainly there was in the +autumn of 1898 no decided opinion as to what should be done with the +fruits of Dewey's victory. President McKinley doubtless voiced the +sentiment of the people when he stated to the peace commissioners on the +eve of their departure that there had originally been no thought of +conquest in the Pacific. + +The march of events, he added, had imposed new duties on the country. +"Incidental to our tenure in the Philippines," he said, "is the +commercial opportunity to which American statesmanship cannot be +indifferent. It is just to use every legitimate means for the +enlargement of American trade." On this ground he directed the +commissioners to accept not less than the cession of the island of +Luzon, the chief of the Philippine group, with its harbor of Manila. It +was not until the latter part of October that he definitely instructed +them to demand the entire archipelago, on the theory that the occupation +of Luzon alone could not be justified "on political, commercial, or +humanitarian grounds." This departure from the letter of the peace +protocol was bitterly resented by the Spanish agents. It was with +heaviness of heart that they surrendered the last sign of Spain's +ancient dominion in the far Pacific. + +=The Final Terms of Peace.=--The treaty of peace, as finally agreed +upon, embraced the following terms: the independence of Cuba; the +cession of Porto Rico, Guam, and the Philippines to the United States; +the settlement of claims filed by the citizens of both countries; the +payment of twenty million dollars to Spain by the United States for the +Philippines; and the determination of the status of the inhabitants of +the ceded territories by Congress. The great decision had been made. Its +issue was in the hands of the Senate where the Democrats and the +Populists held the balance of power under the requirement of the +two-thirds vote for ratification. + +=The Contest in America over the Treaty of Peace.=--The publication of +the treaty committing the United States to the administration of distant +colonies directed the shifting tides of public opinion into two distinct +channels: support of the policy and opposition to it. The trend in +Republican leadership, long in the direction marked out by the treaty, +now came into the open. Perhaps a majority of the men highest in the +councils of that party had undergone the change of heart reflected in +the letters of John Hay, Secretary of State. In August of 1898 he had +hinted, in a friendly letter to Andrew Carnegie, that he sympathized +with the latter's opposition to "imperialism"; but he had added quickly: +"The only question in my mind is how far it is now possible for us to +withdraw from the Philippines." In November of the same year he wrote to +Whitelaw Reid, one of the peace commissioners at Paris: "There is a wild +and frantic attack now going on in the press against the whole +Philippine transaction. Andrew Carnegie really seems to be off his +head.... But all this confusion of tongues will go its way. The country +will applaud the resolution that has been reached and you will return in +the role of conquering heroes with your 'brows bound with oak.'" + +Senator Beveridge of Indiana and Senator Platt of Connecticut, accepting +the verdict of history as the proof of manifest destiny, called for +unquestioning support of the administration in its final step. "Every +expansion of our territory," said the latter, "has been in accordance +with the irresistible law of growth. We could no more resist the +successive expansions by which we have grown to be the strongest nation +on earth than a tree can resist its growth. The history of territorial +expansion is the history of our nation's progress and glory. It is a +matter to be proud of, not to lament. We should rejoice that Providence +has given us the opportunity to extend our influence, our institutions, +and our civilization into regions hitherto closed to us, rather than +contrive how we can thwart its designs." + +This doctrine was savagely attacked by opponents of McKinley's policy, +many a stanch Republican joining with the majority of Democrats in +denouncing the treaty as a departure from the ideals of the republic. +Senator Vest introduced in the Senate a resolution that "under the +Constitution of the United States, no power is given to the federal +Government to acquire territory to be held and governed permanently as +colonies." Senator Hoar, of Massachusetts, whose long and honorable +career gave weight to his lightest words, inveighed against the whole +procedure and to the end of his days believed that the new drift into +rivalry with European nations as a colonial power was fraught with +genuine danger. "Our imperialistic friends," he said, "seem to have +forgotten the use of the vocabulary of liberty. They talk about giving +good government. 'We shall give them such a government as we think they +are fitted for.' 'We shall give them a better government than they had +before.' Why, Mr. President, that one phrase conveys to a free man and a +free people the most stinging of insults. In that little phrase, as in a +seed, is contained the germ of all despotism and of all tyranny. +Government is not a gift. Free government is not to be given by all the +blended powers of earth and heaven. It is a birthright. It belongs, as +our fathers said, and as their children said, as Jefferson said, and as +President McKinley said, to human nature itself." + +The Senate, more conservative on the question of annexation than the +House of Representatives composed of men freshly elected in the stirring +campaign of 1896, was deliberate about ratification of the treaty. The +Democrats and Populists were especially recalcitrant. Mr. Bryan hurried +to Washington and brought his personal influence to bear in favor of +speedy action. Patriotism required ratification, it was said in one +quarter. The country desires peace and the Senate ought not to delay, it +was urged in another. Finally, on February 6, 1899, the requisite +majority of two-thirds was mustered, many a Senator who voted for the +treaty, however, sharing the misgivings of Senator Hoar as to the +"dangers of imperialism." Indeed at the time, the Senators passed a +resolution declaring that the policy to be adopted in the Philippines +was still an open question, leaving to the future, in this way, the +possibility of retracing their steps. + +=The Attitude of England.=--The Spanish war, while accomplishing the +simple objects of those who launched the nation on that course, like all +other wars, produced results wholly unforeseen. In the first place, it +exercised a profound influence on the drift of opinion among European +powers. In England, sympathy with the United States was from the first +positive and outspoken. "The state of feeling here," wrote Mr. Hay, then +ambassador in London, "is the best I have ever known. From every quarter +the evidences of it come to me. The royal family by habit and tradition +are most careful not to break the rules of strict neutrality, but even +among them I find nothing but hearty kindness and--so far as is +consistent with propriety--sympathy. Among the political leaders on both +sides I find not only sympathy but a somewhat eager desire that 'the +other fellows' shall not seem more friendly." + +Joseph Chamberlain, the distinguished Liberal statesman, thinking no +doubt of the continental situation, said in a political address at the +very opening of the war that the next duty of Englishmen "is to +establish and maintain bonds of permanent unity with our kinsmen across +the Atlantic.... I even go so far as to say that, terrible as war may +be, even war would be cheaply purchased if, in a great and noble cause, +the Stars and Stripes and the Union Jack should wave together over an +Anglo-Saxon alliance." To the American ambassador he added +significantly that he did not "care a hang what they say about it on the +continent," which was another way of expressing the hope that the +warning to Germany and France was sufficient. This friendly English +opinion, so useful to the United States when a combination of powers to +support Spain was more than possible, removed all fears as to the +consequences of the war. Henry Adams, recalling days of humiliation in +London during the Civil War, when his father was the American +ambassador, coolly remarked that it was "the sudden appearance of +Germany as the grizzly terror" that "frightened England into America's +arms"; but the net result in keeping the field free for an easy triumph +of American arms was none the less appreciated in Washington where, +despite outward calm, fears of European complications were never absent. + + +AMERICAN POLICIES IN THE PHILIPPINES AND THE ORIENT + +=The Filipino Revolt against American Rule.=--In the sphere of domestic +politics, as well as in the field of foreign relations, the outcome of +the Spanish war exercised a marked influence. It introduced at once +problems of colonial administration and difficulties in adjusting trade +relations with the outlying dominions. These were furthermore +complicated in the very beginning by the outbreak of an insurrection +against American sovereignty in the Philippines. The leader of the +revolt, Aguinaldo, had been invited to join the American forces in +overthrowing Spanish dominion, and he had assumed, apparently without +warrant, that independence would be the result of the joint operations. +When the news reached him that the American flag had been substituted +for the Spanish flag, his resentment was keen. In February, 1899, there +occurred a slight collision between his men and some American soldiers. +The conflict thus begun was followed by serious fighting which finally +dwindled into a vexatious guerrilla warfare lasting three years and +costing heavily in men and money. Atrocities were committed by the +native insurrectionists and, sad to relate, they were repaid in kind; +it was argued in defense of the army that the ordinary rules of warfare +were without terror to men accustomed to fighting like savages. In vain +did McKinley assure the Filipinos that the institutions and laws +established in the islands would be designed "not for our satisfaction +or for the expression of our theoretical views, but for the happiness, +peace, and prosperity of the people of the Philippine Islands." Nothing +short of military pressure could bring the warring revolutionists to +terms. + +=Attacks on Republican "Imperialism."=--The Filipino insurrection, +following so quickly upon the ratification of the treaty with Spain, +moved the American opponents of McKinley's colonial policies to redouble +their denunciation of what they were pleased to call "imperialism." +Senator Hoar was more than usually caustic in his indictment of the new +course. The revolt against American rule did but convince him of the +folly hidden in the first fateful measures. Everywhere he saw a +conspiracy of silence and injustice. "I have failed to discover in the +speeches, public or private, of the advocates of this war," he contended +in the Senate, "or in the press which supports it and them, a single +expression anywhere of a desire to do justice to the people of the +Philippine Islands, or of a desire to make known to the people of the +United States the truth of the case.... The catchwords, the cries, the +pithy and pregnant phrases of which their speech is full, all mean +dominion. They mean perpetual dominion.... There is not one of these +gentlemen who will rise in his place and affirm that if he were a +Filipino he would not do exactly as the Filipinos are doing; that he +would not despise them if they were to do otherwise. So much at least +they owe of respect to the dead and buried history--the dead and buried +history so far as they can slay and bury it--of their country." In the +way of practical suggestions, the Senator offered as a solution of the +problem: the recognition of independence, assistance in establishing +self-government, and an invitation to all powers to join in a guarantee +of freedom to the islands. + +=The Republican Answer.=--To McKinley and his supporters, engaged in a +sanguinary struggle to maintain American supremacy, such talk was more +than quixotic; it was scarcely short of treasonable. They pointed out +the practical obstacles in the way of uniform self-government for a +collection of seven million people ranging in civilization from the most +ignorant hill men to the highly cultivated inhabitants of Manila. The +incidents of the revolt and its repression, they admitted, were painful +enough; but still nothing as compared with the chaos that would follow +the attempt of a people who had never had experience in such matters to +set up and sustain democratic institutions. They preferred rather the +gradual process of fitting the inhabitants of the islands for +self-government. This course, in their eyes, though less poetic, was +more in harmony with the ideals of humanity. Having set out upon it, +they pursued it steadfastly to the end. First, they applied force +without stint to the suppression of the revolt. Then they devoted such +genius for colonial administration as they could command to the +development of civil government, commerce, and industry. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +A PHILIPPINE HOME] + +=The Boxer Rebellion in China.=--For a nation with a world-wide trade, +steadily growing, as the progress of home industries redoubled the zeal +for new markets, isolation was obviously impossible. Never was this +clearer than in 1900 when a native revolt against foreigners in China, +known as the Boxer uprising, compelled the United States to join with +the powers of Europe in a military expedition and a diplomatic +settlement. The Boxers, a Chinese association, had for some time carried +on a campaign of hatred against all aliens in the Celestial empire, +calling upon the natives to rise in patriotic wrath and drive out the +foreigners who, they said, "were lacerating China like tigers." In the +summer of 1900 the revolt flamed up in deeds of cruelty. Missionaries +and traders were murdered in the provinces; foreign legations were +stoned; the German ambassador, one of the most cordially despised +foreigners, was killed in the streets of Peking; and to all appearances +a frightful war of extermination had begun. In the month of June nearly +five hundred men, women, and children, representing all nations, were +besieged in the British quarters in Peking under constant fire of +Chinese guns and in peril of a terrible death. + +=Intervention in China.=--Nothing but the arrival of armed forces, made +up of Japanese, Russian, British, American, French, and German soldiers +and marines, prevented the destruction of the beleaguered aliens. When +once the foreign troops were in possession of the Chinese capital, +diplomatic questions of the most delicate character arose. For more than +half a century, the imperial powers of Europe had been carving up the +Chinese empire, taking to themselves territory, railway concessions, +mining rights, ports, and commercial privileges at the expense of the +huge but helpless victim. The United States alone among the great +nations, while as zealous as any in the pursuit of peaceful trade, had +refrained from seizing Chinese territory or ports. Moreover, the +Department of State had been urging European countries to treat China +with fairness, to respect her territorial integrity, and to give her +equal trading privileges with all nations. + +=The American Policy of the "Open Door."=--In the autumn of 1899, +Secretary Hay had addressed to London, Berlin, Rome, Paris, Tokyo, and +St. Petersburg his famous note on the "open door" policy in China. In +this document he proposed that existing treaty ports and vested +interests of the several foreign countries should be respected; that +the Chinese government should be permitted to extend its tariffs to all +ports held by alien powers except the few free ports; and that there +should be no discrimination in railway and port charges among the +citizens of foreign countries operating in the empire. To these +principles the governments addressed by Mr. Hay, finally acceded with +evident reluctance. + +[Illustration: AMERICAN DOMINIONS IN THE PACIFIC] + +On this basis he then proposed the settlement that had to follow the +Boxer uprising. "The policy of the Government of the United States," he +said to the great powers, in the summer of 1900, "is to seek a solution +which may bring about permanent safety and peace to China, preserve +Chinese territorial and administrative entity, protect all rights +guaranteed to friendly powers by treaty and international law, and +safeguard for the world the principle of equal and impartial trade with +all parts of the Chinese empire." This was a friendly warning to the +world that the United States would not join in a scramble to punish the +Chinese by carving out more territory. "The moment we acted," said Mr. +Hay, "the rest of the world paused and finally came over to our ground; +and the German government, which is generally brutal but seldom silly, +recovered its senses, and climbed down off its perch." + +In taking this position, the Secretary of State did but reflect the +common sense of America. "We are, of course," he explained, "opposed to +the dismemberment of that empire and we do not think that the public +opinion of the United States would justify this government in taking +part in the great game of spoliation now going on." Heavy damages were +collected by the European powers from China for the injuries inflicted +upon their citizens by the Boxers; but the United States, finding the +sum awarded in excess of the legitimate claims, returned the balance in +the form of a fund to be applied to the education of Chinese students in +American universities. "I would rather be, I think," said Mr. Hay, "the +dupe of China than the chum of the Kaiser." By pursuing a liberal +policy, he strengthened the hold of the United States upon the +affections of the Chinese people and, in the long run, as he remarked +himself, safeguarded "our great commercial interests in that Empire." + +=Imperialism in the Presidential Campaign of 1900.=--It is not strange +that the policy pursued by the Republican administration in disposing of +the questions raised by the Spanish War became one of the first issues +in the presidential campaign of 1900. Anticipating attacks from every +quarter, the Republicans, in renominating McKinley, set forth their +position in clear and ringing phrases: "In accepting by the treaty of +Paris the just responsibility of our victories in the Spanish War the +President and Senate won the undoubted approval of the American people. +No other course was possible than to destroy Spain's sovereignty +throughout the West Indies and in the Philippine Islands. That course +created our responsibility, before the world and with the unorganized +population whom our intervention had freed from Spain, to provide for +the maintenance of law and order, and for the establishment of good +government and for the performance of international obligations. Our +authority could not be less than our responsibility, and wherever +sovereign rights were extended it became the high duty of the government +to maintain its authority, to put down armed insurrection, and to confer +the blessings of liberty and civilization upon all the rescued peoples. +The largest measure of self-government consistent with their welfare and +our duties shall be secured to them by law." To give more strength to +their ticket, the Republican convention, in a whirlwind of enthusiasm, +nominated for the vice presidency, against his protest, Theodore +Roosevelt, the governor of New York and the hero of the Rough Riders, so +popular on account of their Cuban campaign. + +The Democrats, as expected, picked up the gauntlet thrown down with such +defiance by the Republicans. Mr. Bryan, whom they selected as their +candidate, still clung to the currency issue; but the main emphasis, +both of the platform and the appeal for votes, was on the "imperialistic +program" of the Republican administration. The Democrats denounced the +treatment of Cuba and Porto Rico and condemned the Philippine policy in +sharp and vigorous terms. "As we are not willing," ran the platform, "to +surrender our civilization or to convert the Republic into an empire, we +favor an immediate declaration of the Nation's purpose to give to the +Filipinos, first, a stable form of government; second, independence; +third, protection from outside interference.... The greedy commercialism +which dictated the Philippine policy of the Republican administration +attempts to justify it with the plea that it will pay, but even this +sordid and unworthy plea fails when brought to the test of facts. The +war of 'criminal aggression' against the Filipinos entailing an annual +expense of many millions has already cost more than any possible profit +that could accrue from the entire Philippine trade for years to come.... +We oppose militarism. It means conquest abroad and intimidation and +oppression at home. It means the strong arm which has ever been fatal to +free institutions. It is what millions of our citizens have fled from in +Europe. It will impose upon our peace-loving people a large standing +army, an unnecessary burden of taxation, and would be a constant menace +to their liberties." Such was the tenor of their appeal to the voters. + +With the issues clearly joined, the country rejected the Democratic +candidate even more positively than four years before. The popular vote +cast for McKinley was larger and that cast for Bryan smaller than in the +silver election. Thus vindicated at the polls, McKinley turned with +renewed confidence to the development of the policies he had so far +advanced. But fate cut short his designs. In the September following his +second inauguration, he was shot by an anarchist while attending the +Buffalo exposition. "What a strange and tragic fate it has been of +mine," wrote the Secretary of State, John Hay, on the day of the +President's death, "to stand by the bier of three of my dearest friends, +Lincoln, Garfield, and McKinley, three of the gentlest of men, all risen +to the head of the state and all done to death by assassins." On +September 14, 1901, the Vice President, Theodore Roosevelt, took up the +lines of power that had fallen from the hands of his distinguished +chief, promising to continue "absolutely unbroken" the policies he had +inherited. + + +SUMMARY OF NATIONAL GROWTH AND WORLD POLITICS + +The economic aspects of the period between 1865 and 1900 may be readily +summed up: the recovery of the South from the ruin of the Civil War, the +extension of the railways, the development of the Great West, and the +triumph of industry and business enterprise. In the South many of the +great plantations were broken up and sold in small farms, crops were +diversified, the small farming class was raised in the scale of social +importance, the cotton industry was launched, and the coal, iron, +timber, and other resources were brought into use. In the West the free +arable land was practically exhausted by 1890 under the terms of the +Homestead Act; gold, silver, copper, coal and other minerals were +discovered in abundance; numerous rail connections were formed with the +Atlantic seaboard; the cowboy and the Indian were swept away before a +standardized civilization of electric lights and bathtubs. By the end of +the century the American frontier had disappeared. The wild, primitive +life so long associated with America was gone. The unity of the nation +was established. + +In the field of business enterprise, progress was most marked. The +industrial system, which had risen and flourished before the Civil War, +grew into immense proportions and the industrial area was extended from +the Northeast into all parts of the country. Small business concerns +were transformed into huge corporations. Individual plants were merged +under the management of gigantic trusts. Short railway lines were +consolidated into national systems. The industrial population of +wage-earners rose into the tens of millions. The immigration of aliens +increased by leaps and bounds. The cities overshadowed the country. The +nation that had once depended upon Europe for most of its manufactured +goods became a competitor of Europe in the markets of the earth. + +In the sphere of politics, the period witnessed the recovery of white +supremacy in the South; the continued discussion of the old questions, +such as the currency, the tariff, and national banking; and the +injection of new issues like the trusts and labor problems. As of old, +foreign affairs were kept well at the front. Alaska was purchased from +Russia; attempts were made to extend American influence in the Caribbean +region; a Samoan island was brought under the flag; and the Hawaiian +islands were annexed. The Monroe Doctrine was applied with vigor in the +dispute between Venezuela and Great Britain. + +Assistance was given to the Cubans in their revolutionary struggle +against Spain and thus there was precipitated a war which ended in the +annexation of Porto Rico and the Philippines. American influence in the +Pacific and the Orient was so enlarged as to be a factor of great weight +in world affairs. Thus questions connected with foreign and "imperial" +policies were united with domestic issues to make up the warp and woof +of politics. In the direction of affairs, the Republicans took the +leadership, for they held the presidency during all the years, except +eight, between 1865 and 1900. + + +=References= + +J.W. Foster, _A Century of American Diplomacy_; _American Diplomacy in +the Orient_. + +W.F. Reddaway, _The Monroe Doctrine_. + +J.H. Latane, _The United States and Spanish America_. + +A.C. Coolidge, _United States as a World Power_. + +A.T. Mahan, _Interest of the United States in the Sea Power_. + +F.E. Chadwick, _Spanish-American War_. + +D.C. Worcester, _The Philippine Islands and Their People_. + +M.M. Kalaw, _Self-Government in the Philippines_. + +L.S. Rowe, _The United States and Porto Rico_. + +F.E. Chadwick, _The Relations of the United States and Spain_. + +W.R. Shepherd, _Latin America_; _Central and South America_. + + +=Questions= + +1. Tell the story of the international crisis that developed soon after +the Civil War with regard to Mexico. + +2. Give the essential facts relating to the purchase of Alaska. + +3. Review the early history of our interest in the Caribbean. + +4. Amid what circumstances was the Monroe Doctrine applied in +Cleveland's administration? + +5. Give the causes that led to the war with Spain. + +6. Tell the leading events in that war. + +7. What was the outcome as far as Cuba was concerned? The outcome for +the United States? + +8. Discuss the attitude of the Filipinos toward American sovereignty in +the islands. + +9. Describe McKinley's colonial policy. + +10. How was the Spanish War viewed in England? On the Continent? + +11. Was there a unified American opinion on American expansion? + +12. Was this expansion a departure from our traditions? + +13. What events led to foreign intervention in China? + +14. Explain the policy of the "open door." + + +=Research Topics= + +=Hawaii and Venezuela.=--Dewey, _National Problems_ (American Nation +Series), pp. 279-313; Macdonald, _Documentary Source Book_, pp. 600-602; +Hart, _American History Told by Contemporaries_, Vol. IV, pp. 612-616. + +=Intervention in Cuba.=--Latane, _America as a World Power_ (American +Nation Series), pp. 3-28; Macdonald, _Documentary Source Book_, pp. +597-598; Roosevelt, _Autobiography_, pp. 223-277; Haworth, _The United +States in Our Own Time_, pp. 232-256; Hart, _Contemporaries_, Vol. IV, +pp. 573-578. + +=The War with Spain.=--Elson, _History of the United States_, pp. +889-896. + +=Terms of Peace with Spain.=--Latane, pp. 63-81; Macdonald, pp. 602-608; +Hart, _Contemporaries_, Vol. IV, pp. 588-590. + +=The Philippine Insurrection.=--Latane, pp. 82-99. + +=Imperialism as a Campaign Issue.=--Latane, pp. 120-132; Haworth, pp. +257-277; Hart, _Contemporaries_, Vol. IV, pp. 604-611. + +=Biographical Studies.=--William McKinley, M.A. Hanna, John Hay; +Admirals, George Dewey, W.T. Sampson, and W.S. Schley; and Generals, +W.R. Shafter, Joseph Wheeler, and H.W. Lawton. + +=General Analysis of American Expansion.=--_Syllabus in History_ (New +York State, 1920), pp. 142-147. + + + + +PART VII. PROGRESSIVE DEMOCRACY AND THE WORLD WAR + + + + +CHAPTER XXI + +THE EVOLUTION OF REPUBLICAN POLICIES (1901-13) + + +=The Personality and Early Career of Roosevelt.=--On September 14, 1901, +when Theodore Roosevelt took the oath of office, the presidency passed +to a new generation and a leader of a new type recalling, if comparisons +must be made, Andrew Jackson rather than any Republican predecessor. +Roosevelt was brusque, hearty, restless, and fond of action--"a young +fellow of infinite dash and originality," as John Hay remarked of him; +combining the spirit of his old college, Harvard, with the breezy +freedom of the plains; interested in everything--a new species of game, +a new book, a diplomatic riddle, or a novel theory of history or +biology. Though only forty-three years old he was well versed in the art +of practical politics. Coming upon the political scene in the early +eighties, he had associated himself with the reformers in the Republican +party; but he was no Mugwump. From the first he vehemently preached the +doctrine of party loyalty; if beaten in the convention, he voted the +straight ticket in the election. For twenty years he adhered to this +rule and during a considerable portion of that period he held office as +a spokesman of his party. He served in the New York legislature, as head +of the metropolitan police force, as federal civil service commissioner +under President Harrison, as assistant secretary of the navy under +President McKinley, and as governor of the Empire state. Political +managers of the old school spoke of him as "brilliant but erratic"; they +soon found him equal to the shrewdest in negotiation and action. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +ROOSEVELT TALKING TO THE ENGINEER OF A RAILROAD TRAIN] + + +FOREIGN AFFAIRS + +=The Panama Canal.=--The most important foreign question confronting +President Roosevelt on the day of his inauguration, that of the Panama +Canal, was a heritage from his predecessor. The idea of a water route +across the isthmus, long a dream of navigators, had become a living +issue after the historic voyage of the battleship _Oregon_ around South +America during the Spanish War. But before the United States could act +it had to undo the Clayton-Bulwer treaty, made with Great Britain in +1850, providing for the construction of the canal under joint +supervision. This was finally effected by the Hay-Pauncefote treaty of +1901 authorizing the United States to proceed alone, on condition that +there should be no discriminations against other nations in the matter +of rates and charges. + +This accomplished, it was necessary to decide just where the canal +should be built. One group in Congress favored the route through +Nicaragua; in fact, two official commissions had already approved that +location. Another group favored cutting the way through Panama after +purchasing the rights of the old French company which, under the +direction of De Lesseps, the hero of the Suez Canal, had made a costly +failure some twenty years before. After a heated argument over the +merits of the two plans, preference was given to the Panama route. As +the isthmus was then a part of Colombia, President Roosevelt proceeded +to negotiate with the government at Bogota a treaty authorizing the +United States to cut a canal through its territory. The treaty was +easily framed, but it was rejected by the Colombian senate, much to the +President's exasperation. "You could no more make an agreement with the +Colombian rulers," he exclaimed, "than you could nail jelly to a wall." +He was spared the necessity by a timely revolution. On November 3, 1903, +Panama renounced its allegiance to Colombia and three days later the +United States recognized its independence. + +[Illustration: _Courtesy of Panama Canal, Washington, D.C._ + +DEEPEST EXCAVATED PORTION OF PANAMA CANAL, SHOWING GOLD HILL ON +RIGHT AND CONTRACTOR'S HILL ON LEFT. JUNE, 1913] + +This amazing incident was followed shortly by the signature of a treaty +between Panama and the United States in which the latter secured the +right to construct the long-discussed canal, in return for a guarantee +of independence and certain cash payments. The rights and property of +the French concern were then bought, and the final details settled. A +lock rather than a sea-level canal was agreed upon. Construction by the +government directly instead of by private contractors was adopted. +Scientific medicine was summoned to stamp out the tropical diseases +that had made Panama a plague spot. Finally, in 1904, as the President +said, "the dirt began to fly." After surmounting formidable +difficulties--engineering, labor, and sanitary--the American forces in +1913 joined the waters of the Atlantic and the Pacific. Nearly eight +thousand miles were cut off the sea voyage from New York to San +Francisco. If any were inclined to criticize President Roosevelt for +the way in which he snapped off negotiations with Colombia and +recognized the Panama revolutionists, their attention was drawn to the +magnificent outcome of the affair. Notwithstanding the treaty with Great +Britain, Congress passed a tolls bill discriminating in rates in favor +of American ships. It was only on the urgent insistence of President +Wilson that the measure was later repealed. + +=The Conclusion of the Russo-Japanese War.=--The applause which greeted +the President's next diplomatic stroke was unmarred by censure of any +kind. In the winter of 1904 there broke out between Japan and Russia a +terrible conflict over the division of spoils in Manchuria. The fortunes +of war were with the agile forces of Nippon. In this struggle, it seems, +President Roosevelt's sympathies were mainly with the Japanese, although +he observed the proprieties of neutrality. At all events, Secretary Hay +wrote in his diary on New Year's Day, 1905, that the President was +"quite firm in his view that we cannot permit Japan to be robbed a +second time of her victory," referring to the fact that Japan, ten years +before, after defeating China on the field of battle, had been forced by +Russia, Germany, and France to forego the fruits of conquest. + +Whatever the President's personal feelings may have been, he was aware +that Japan, despite her triumphs over Russia, was staggering under a +heavy burden of debt. At a suggestion from Tokyo, he invited both +belligerents in the summer of 1905 to join in a peace conference. The +celerity of their reply was aided by the pressure of European bankers, +who had already come to a substantial agreement that the war must stop. +After some delay, Portsmouth, New Hampshire, was chosen as the meeting +place for the spokesmen of the two warring powers. Roosevelt presided +over the opening ceremonies with fine urbanity, thoroughly enjoying the +justly earned honor of being for the moment at the center of the world's +interest. He had the satisfaction of seeing the conference end in a +treaty of peace and amity. + +=The Monroe Doctrine Applied to Germany.=--Less spectacular than the +Russo-Japanese settlement but not less important was a diplomatic +passage-at-arms with Germany over the Monroe Doctrine. This clash grew +out of the inability or unwillingness of the Venezuelan government to +pay debts due foreign creditors. Having exhausted their patience in +negotiations, England and Germany, in December 1901, sent battleships to +establish what they characterized as "a peaceful blockade" of Venezuelan +ports. Their action was followed by the rupture of diplomatic relations; +there was a possibility that war and the occupation of Venezuelan +territory might result. + +While unwilling to stand between a Latin-American country and its +creditors, President Roosevelt was determined that debt collecting +should not be made an excuse for European countries to seize territory. +He therefore urged arbitration of the dispute, winning the assent of +England and Italy. Germany, with a somewhat haughty air, refused to take +the milder course. The President, learning of this refusal, called the +German ambassador to the White House and informed him in very precise +terms that, unless the Imperial German Government consented to +arbitrate, Admiral Dewey would be ordered to the scene with instructions +to prevent Germany from seizing any Venezuelan territory. A week passed +and no answer came from Berlin. Not baffled, the President again took +the matter up with the ambassador, this time with even more firmness; he +stated in language admitting of but one meaning that, unless within +forty-eight hours the Emperor consented to arbitration, American +battleships, already coaled and cleared, would sail for Venezuelan +waters. The hint was sufficient. The Kaiser accepted the proposal and +the President, with the fine irony of diplomacy, complimented him +publicly on "being so stanch an advocate of arbitration." In terms of +the Monroe Doctrine this action meant that the United States, while not +denying the obligations of debtors, would not permit any move on the +part of European powers that might easily lead to the temporary or +permanent occupation of Latin-American territory. + +=The Santo Domingo Affair.=--The same issue was involved in a +controversy over Santo Domingo which arose in 1904. The Dominican +republic, like Venezuela, was heavily in debt, and certain European +countries declared that, unless the United States undertook to look +after the finances of the embarrassed debtor, they would resort to armed +coercion. What was the United States to do? The danger of having some +European power strongly intrenched in Santo Domingo was too imminent to +be denied. President Roosevelt acted with characteristic speed, and +notwithstanding strong opposition in the Senate was able, in 1907, to +effect a treaty arrangement which placed Dominican finances under +American supervision. + +In the course of the debate over this settlement, a number of +interesting questions arose. It was pertinently asked whether the +American navy should be used to help creditors collect their debts +anywhere in Latin-America. It was suggested also that no sanction should +be given to the practice among European governments of using armed force +to collect private claims. Opponents of President Roosevelt's policy, +and they were neither few nor insignificant, urged that such matters +should be referred to the Hague Court or to special international +commissions for arbitration. To this the answer was made that the United +States could not surrender any question coming under the terms of the +Monroe Doctrine to the decision of an international tribunal. The +position of the administration was very clearly stated by President +Roosevelt himself. "The country," he said, "would certainly decline to +go to war to prevent a foreign government from collecting a just debt; +on the other hand, it is very inadvisable to permit any foreign power to +take possession, even temporarily, of the customs houses of an American +republic in order to enforce the payment of its obligations; for such a +temporary occupation might turn into a permanent occupation. The only +escape from these alternatives may at any time be that we must +ourselves undertake to bring about some arrangement by which so much as +possible of a just obligation shall be paid." The Monroe Doctrine was +negative. It denied to European powers a certain liberty of operation in +this hemisphere. The positive obligations resulting from its application +by the United States were points now emphasized and developed. + +=The Hague Conference.=--The controversies over Latin-American relations +and his part in bringing the Russo-Japanese War to a close naturally +made a deep impression upon Roosevelt, turning his mind in the direction +of the peaceful settlement of international disputes. The subject was +moreover in the air. As if conscious of impending calamity, the +statesmen of the Old World, to all outward signs at least, seemed +searching for a way to reduce armaments and avoid the bloody and costly +trial of international causes by the ancient process of battle. It was +the Czar, Nicholas II, fated to die in one of the terrible holocausts +which he helped to bring upon mankind, who summoned the delegates of the +nations in the first Hague Peace Conference in 1899. The conference did +nothing to reduce military burdens or avoid wars but it did recognize +the right of friendly nations to offer the services of mediation to +countries at war and did establish a Court at the Hague for the +arbitration of international disputes. + +Encouraged by this experiment, feeble as it was, President Roosevelt in +1904 proposed a second conference, yielding to the Czar the honor of +issuing the call. At this great international assembly, held at the +Hague in 1907, the representatives of the United States proposed a plan +for the compulsory arbitration of certain matters of international +dispute. This was rejected with contempt by Germany. Reduction of +armaments, likewise proposed in the conference, was again deferred. In +fact, nothing was accomplished beyond agreement upon certain rules for +the conduct of "civilized warfare," casting a somewhat lurid light upon +the "pacific" intentions of most of the powers assembled. + +=The World Tour of the Fleet.=--As if to assure the world then that the +United States placed little reliance upon the frail reed of peace +conferences, Roosevelt the following year (1908) made an imposing +display of American naval power by sending a fleet of sixteen +battleships on a tour around the globe. On his own authority, he ordered +the ships to sail out of Hampton Roads and circle the earth by way of +the Straits of Magellan, San Francisco, Australia, the Philippines, +China, Japan, and the Suez Canal. This enterprise was not, as some +critics claimed, a "mere boyish flourish." President Roosevelt knew how +deep was the influence of sea power on the fate of nations. He was aware +that no country could have a wide empire of trade and dominion without +force adequate to sustain it. The voyage around the world therefore +served a double purpose. It interested his own country in the naval +program of the government, and it reminded other powers that the +American giant, though quiet, was not sleeping in the midst of +international rivalries. + + +COLONIAL ADMINISTRATION + +=A Constitutional Question Settled.=--In colonial administration, as in +foreign policy, President Roosevelt advanced with firm step in a path +already marked out. President McKinley had defined the principles that +were to control the development of Porto Rico and the Philippines. The +Republican party had announced a program of pacification, gradual +self-government, and commercial improvement. The only remaining question +of importance, to use the popular phrase,--"Does the Constitution follow +the flag?"--had been answered by the Supreme Court of the United States. +Although it was well known that the Constitution did not contemplate the +government of dependencies, such as the Philippines and Porto Rico, the +Court, by generous and ingenious interpretations, found a way for +Congress to apply any reasonable rules required by the occasion. + +=Porto Rico.=--The government of Porto Rico was a relatively simple +matter. It was a single island with a fairly homogeneous population +apart from the Spanish upper class. For a time after military occupation +in 1898, it was administered under military rule. This was succeeded by +the establishment of civil government under the "organic act" passed by +Congress in 1900. The law assured to the Porto Ricans American +protection but withheld American citizenship--a boon finally granted in +1917. It provided for a governor and six executive secretaries appointed +by the President with the approval of the Senate; and for a legislature +of two houses--one elected by popular native vote, and an upper chamber +composed of the executive secretaries and five other persons appointed +in the same manner. Thus the United States turned back to the provincial +system maintained by England in Virginia or New York in old colonial +days. The natives were given a voice in their government and the power +of initiating laws; but the final word both in law-making and +administration was vested in officers appointed in Washington. Such was +the plan under which the affairs of Porto Rico were conducted by +President Roosevelt. It lasted until the new organic act of 1917. + +[Illustration: _Photograph from Underwood and Underwood, N.Y._ + +A SUGAR MILL, PORTO RICO] + +=The Philippines.=--The administration of the Philippines presented far +more difficult questions. The number of islands, the variety of +languages and races, the differences in civilization all combined to +challenge the skill of the government. Moreover, there was raging in +1901 a stubborn revolt against American authority, which had to be +faced. Following the lines laid down by President McKinley, the +evolution of American policy fell into three stages. At first the +islands were governed directly by the President under his supreme +military power. In 1901 a civilian commission, headed by William Howard +Taft, was selected by the President and charged with the government of +the provinces in which order had been restored. Six years later, under +the terms of an organic act, passed by Congress in 1902, the third stage +was reached. The local government passed into the hands of a governor +and commission, appointed by the President and Senate, and a +legislature--one house elected by popular vote and an upper chamber + +composed of the commission. This scheme, like that obtaining in Porto +Rico, remained intact until a Democratic Congress under President +Wilson's leadership carried the colonial administration into its fourth +phase by making both houses elective. Thus, by the steady pursuit of a +liberal policy, self-government was extended to the dependencies; but it +encouraged rather than extinguished the vigorous movement among the +Philippine natives for independence. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +MR TAFT IN THE PHILIPPINES] + +=Cuban Relations.=--Within the sphere of colonial affairs, Cuba, though +nominally independent, also presented problems to the government at +Washington. In the fine enthusiasm that accompanied the declaration of +war on Spain, Congress, unmindful of practical considerations, +recognized the independence of Cuba and disclaimed "any disposition or +intention to exercise sovereignty, jurisdiction, or control over said +island except for the pacification thereof." In the settlement that +followed the war, however, it was deemed undesirable to set the young +republic adrift upon the stormy sea of international politics without a +guiding hand. Before withdrawing American troops from the island, +Congress, in March, 1901, enacted, and required Cuba to approve, a +series of restrictions known as the Platt amendment, limiting her power +to incur indebtedness, securing the right of the United States to +intervene whenever necessary to protect life and property, and reserving +to the United States coaling stations at certain points to be agreed +upon. The Cubans made strong protests against what they deemed +"infringements of their sovereignty"; but finally with good grace +accepted their fate. Even when in 1906 President Roosevelt landed +American troops in the island to quell a domestic dissension, they +acquiesced in the action, evidently regarding it as a distinct warning +that they should learn to manage their elections in an orderly manner. + + +THE ROOSEVELT DOMESTIC POLICIES + +=Social Questions to the Front.=--From the day of his inauguration to +the close of his service in 1909, President Roosevelt, in messages, +speeches, and interviews, kept up a lively and interesting discussion of +trusts, capital, labor, poverty, riches, lawbreaking, good citizenship, +and kindred themes. Many a subject previously touched upon only by +representatives of the minor and dissenting parties, he dignified by a +careful examination. That he did this with any fixed design or policy in +mind does not seem to be the case. He admitted himself that when he +became President he did not have in hand any settled or far-reaching +plan of social betterment. He did have, however, serious convictions on +general principles. "I was bent upon making the government," he wrote, +"the most efficient possible instrument in helping the people of the +United States to better themselves in every way, politically, socially, +and industrially. I believed with all my heart in real and +thorough-going democracy and I wished to make the democracy industrial +as well as political, although I had only partially formulated the +method I believed we should follow." It is thus evident at least that he +had departed a long way from the old idea of the government as nothing +but a great policeman keeping order among the people in a struggle over +the distribution of the nation's wealth and resources. + +=Roosevelt's View of the Constitution.=--Equally significant was +Roosevelt's attitude toward the Constitution and the office of +President. He utterly repudiated the narrow construction of our national +charter. He held that the Constitution "should be treated as the +greatest document ever devised by the wit of man to aid a people in +exercising every power necessary for its own betterment, not as a +strait-jacket cunningly fashioned to strangle growth." He viewed the +presidency as he did the Constitution. Strict constructionists of the +Jeffersonian school, of whom there were many on occasion even in the +Republican party, had taken a view that the President could do nothing +that he was not specifically authorized by the Constitution to do. +Roosevelt took exactly the opposite position. It was his opinion that it +was not only the President's right but his duty "to do anything that the +needs of the nation demanded unless such action was forbidden by the +Constitution or the laws." He went on to say that he acted "for the +common well-being of all our people whenever and in whatever manner was +necessary, unless prevented by direct constitutional or legislative +prohibition." + +=The Trusts and Railways.=--To the trust question, Roosevelt devoted +especial attention. This was unavoidable. By far the larger part of the +business of the country was done by corporations as distinguished from +partnerships and individual owners. The growth of these gigantic +aggregations of capital had been the leading feature in American +industrial development during the last two decades of the nineteenth +century. In the conquest of business by trusts and "the resulting +private fortunes of great magnitude," the Populists and the Democrats +had seen a grievous danger to the republic. "Plutocracy has taken the +place of democracy; the tariff breeds trusts; let us destroy therefore +the tariff and the trusts"--such was the battle cry which had been taken +up by Bryan and his followers. + +President Roosevelt countered vigorously. He rejected the idea that the +trusts were the product of the tariff or of governmental action of any +kind. He insisted that they were the outcome of "natural economic +forces": (1) destructive competition among business men compelling them +to avoid ruin by cooperation in fixing prices; (2) the growth of markets +on a national scale and even international scale calling for vast +accumulations of capital to carry on such business; (3) the possibility +of immense savings by the union of many plants under one management. In +the corporation he saw a new stage in the development of American +industry. Unregulated competition he regarded as "the source of evils +which all men concede must be remedied if this civilization of ours is +to survive." The notion, therefore, that these immense business concerns +should be or could be broken up by a decree of law, Roosevelt considered +absurd. + +At the same time he proposed that "evil trusts" should be prevented from +"wrong-doing of any kind"; that is, punished for plain swindling, for +making agreements to limit output, for refusing to sell to customers who +dealt with rival firms, and for conspiracies with railways to ruin +competitors by charging high freight rates and for similar abuses. +Accordingly, he proposed, not the destruction of the trusts, but their +regulation by the government. This, he contended, would preserve the +advantages of business on a national scale while preventing the evils +that accompanied it. The railway company he declared to be a public +servant. "Its rates should be just to and open to all shippers alike." +So he answered those who thought that trusts and railway combinations +were private concerns to be managed solely by their owners without let +or hindrance and also those who thought trusts and railway combinations +could be abolished by tariff reduction or criminal prosecution. + +=The Labor Question.=--On the labor question, then pressing to the front +in public interest, President Roosevelt took advanced ground for his +time. He declared that the working-man, single-handed and empty-handed, +threatened with starvation if unemployed, was no match for the employer +who was able to bargain and wait. This led him, accordingly, to accept +the principle of the trade union; namely, that only by collective +bargaining can labor be put on a footing to measure its strength equally +with capital. While he severely arraigned labor leaders who advocated +violence and destructive doctrines, he held that "the organization of +labor into trade unions and federations is necessary, is beneficent, and +is one of the greatest possible agencies in the attainment of a true +industrial, as well as a true political, democracy in the United +States." The last resort of trade unions in labor disputes, the strike, +he approved in case negotiations failed to secure "a fair deal." + +He thought, however, that labor organizations, even if wisely managed, +could not solve all the pressing social questions of the time. The aid +of the government at many points he believed to be necessary to +eliminate undeserved poverty, industrial diseases, unemployment, and the +unfortunate consequences of industrial accidents. In his first message +of 1901, for instance, he urged that workers injured in industry should +have certain and ample compensation. From time to time he advocated +other legislation to obtain what he called "a larger measure of social +and industrial justice." + +=Great Riches and Taxation.=--Even the challenge of the radicals, such +as the Populists, who alleged that "the toil of millions is boldly +stolen to build up colossal fortunes for a few"--challenges which his +predecessors did not consider worthy of notice--President Roosevelt +refused to let pass without an answer. In his first message he denied +the truth of the common saying that the rich were growing richer and the +poor were growing poorer. He asserted that, on the contrary, the average +man, wage worker, farmer, and small business man, was better off than +ever before in the history of our country. That there had been abuses in +the accumulation of wealth he did not pretend to ignore, but he believed +that even immense fortunes, on the whole, represented positive benefits +conferred upon the country. Nevertheless he felt that grave dangers to +the safety and the happiness of the people lurked in great inequalities +of wealth. In 1906 he wrote that he wished it were in his power to +prevent the heaping up of enormous fortunes. The next year, to the +astonishment of many leaders in his own party, he boldly announced in a +message to Congress that he approved both income and inheritance taxes, +then generally viewed as Populist or Democratic measures. He even took +the stand that such taxes should be laid in order to bring about a more +equitable distribution of wealth and greater equality of opportunity +among citizens. + + +LEGISLATIVE AND EXECUTIVE ACTIVITIES + +=Economic Legislation.=--When President Roosevelt turned from the field +of opinion he found himself in a different sphere. Many of his views +were too advanced for the members of his party in Congress, and where +results depended upon the making of new laws, his progress was slow. +Nevertheless, in his administrations several measures were enacted that +bore the stamp of his theories, though it could hardly be said that he +dominated Congress to the same degree as did some other Presidents. The +Hepburn Railway Act of 1906 enlarged the interstate commerce commission; +it extended the commission's power over oil pipe lines, express +companies, and other interstate carriers; it gave the commission the +right to reduce rates found to be unreasonable and discriminatory; it +forbade "midnight tariffs," that is, sudden changes in rates favoring +certain shippers; and it prohibited common carriers from transporting +goods owned by themselves, especially coal, except for their own proper +use. Two important pure food and drug laws, enacted during the same +year, were designed to protect the public against diseased meats and +deleterious foods and drugs. A significant piece of labor legislation +was an act of the same Congress making interstate railways liable to +damages for injuries sustained by their employees. When this measure was +declared unconstitutional by the Supreme Court it was reenacted with the +objectionable clauses removed. A second installment of labor legislation +was offered in the law of 1908 limiting the hours of railway employees +engaged as trainmen or telegraph operators. + +[Illustration: _Courtesy United States Reclamation Service._ + +THE ROOSEVELT DAM, PHOENIX, ARIZONA] + +=Reclamation and Conservation.=--The open country--the deserts, the +forests, waterways, and the public lands--interested President Roosevelt +no less than railway and industrial questions. Indeed, in his first +message to Congress he placed the conservation of natural resources +among "the most vital internal problems" of the age, and forcibly +emphasized an issue that had been discussed in a casual way since +Cleveland's first administration. The suggestion evoked an immediate +response in Congress. Under the leadership of Senator Newlands, of +Nevada, the Reclamation Act of 1902 was passed, providing for the +redemption of the desert areas of the West. The proceeds from the sale +of public lands were dedicated to the construction of storage dams and +sluiceways to hold water and divert it as needed to the thirsty sands. +Furthermore it was stipulated that the rents paid by water users should +go into a reclamation fund to continue the good work forever. +Construction was started immediately under the terms of the law. Within +seventeen years about 1,600,000 acres had been reclaimed and more than a +million were actually irrigated. In the single year 1918, the crops of +the irrigated districts were valued at approximately $100,000,000. + +In his first message, also, President Roosevelt urged the transfer of +all control over national forests to trained men in the Bureau of +Forestry--a recommendation carried out in 1907 when the Forestry Service +was created. In every direction noteworthy advances were made in the +administration of the national domain. The science of forestry was +improved and knowledge of the subject spread among the people. Lands in +the national forest available for agriculture were opened to settlers. +Water power sites on the public domain were leased for a term of years +to private companies instead of being sold outright. The area of the +national forests was enlarged from 43 million acres to 194 million acres +by presidential proclamation--more than 43 million acres being added in +one year, 1907. The men who turned sheep and cattle to graze on the +public lands were compelled to pay a fair rental, much to their +dissatisfaction. Fire prevention work was undertaken in the forests on a +large scale, reducing the appalling, annual destruction of timber. +Millions of acres of coal land, such as the government had been +carelessly selling to mining companies at low figures, were withdrawn +from sale and held until Congress was prepared to enact laws for the +disposition of them in the public interest. Prosecutions were +instituted against men who had obtained public lands by fraud and vast +tracts were recovered for the national domain. An agitation was begun +which bore fruit under the administrations of Taft and Wilson in laws +reserving to the federal government the ownership of coal, water power, +phosphates, and other natural resources while authorizing corporations +to develop them under leases for a period of years. + +=The Prosecution of the Trusts.=--As an executive, President Roosevelt +was also a distinct "personality." His discrimination between "good" and +"bad" trusts led him to prosecute some of them with vigor. On his +initiative, the Northern Securities Company, formed to obtain control of +certain great western railways, was dissolved by order of the Supreme +Court. Proceedings were instituted against the American Tobacco Company +and the Standard Oil Company as monopolies in violation of the Sherman +Anti-Trust law. The Sugar Trust was found guilty of cheating the New +York customs house and some of the minor officers were sent to prison. +Frauds in the Post-office Department were uncovered and the offenders +brought to book. In fact hardly a week passed without stirring news of +"wrong doers" and "malefactors" haled into federal courts. + +=The Great Coal Strike.=--The Roosevelt theory that the President could +do anything for public welfare not forbidden by the Constitution and the +laws was put to a severe test in 1902. A strike of the anthracite coal +miners, which started in the summer, ran late into the autumn. +Industries were paralyzed for the want of coal; cities were threatened +with the appalling menace of a winter without heat. Governors and mayors +were powerless and appealed for aid. The mine owners rejected the +demands of the men and refused to permit the arbitration of the points +in dispute, although John Mitchell, the leader of the miners, repeatedly +urged it. After observing closely the course affairs, President +Roosevelt made up his mind that the situation was intolerable. He +arranged to have the federal troops, if necessary, take possession of +the mines and operate them until the strike could be settled. He then +invited the contestants to the White House and by dint of hard labor +induced them to accept, as a substitute or compromise, arbitration by a +commission which he appointed. Thus, by stepping outside the +Constitution and acting as the first citizen of the land, President +Roosevelt averted a crisis of great magnitude. + +=The Election of 1904.=--The views and measures which he advocated with +such vigor aroused deep hostility within as well as without his party. +There were rumors of a Republican movement to defeat his nomination in +1904 and it was said that the "financial and corporation interests" were +in arms against him. A prominent Republican paper in New York City +accused him of having "stolen Mr. Bryan's thunder," by harrying the +trusts and favoring labor unions. When the Republican convention +assembled in Chicago, however, the opposition disappeared and Roosevelt +was nominated by acclamation. + +This was the signal for a change on the part of Democratic leaders. They +denounced the President as erratic, dangerous, and radical and decided +to assume the moderate role themselves. They put aside Mr. Bryan and +selected as their candidate, Judge Alton B. Parker, of New York, a man + +who repudiated free silver and made a direct appeal for the conservative +vote. The outcome of the reversal was astounding. Judge Parker's vote +fell more than a million below that cast for Bryan in 1900; of the 476 +electoral votes he received only 140. Roosevelt, in addition to sweeping +the Republican sections, even invaded Democratic territory, carrying the +state of Missouri. Thus vindicated at the polls, he became more +outspoken than ever. His leadership in the party was so widely +recognized that he virtually selected his own successor. + + +THE ADMINISTRATION OF PRESIDENT TAFT + +=The Campaign of 1908.=--Long before the end of his elective term, +President Roosevelt let it be known that he favored as his successor, +William Howard Taft, of Ohio, his Secretary of War. To attain this end +he used every shred of his powerful influence. When the Republican +convention assembled, Mr. Taft easily won the nomination. Though the +party platform was conservative in tone, he gave it a progressive tinge +by expressing his personal belief in the popular election of United +States Senators, an income tax, and other liberal measures. President +Roosevelt announced his faith in the Republican candidate and appealed +to the country for his election. + +The turn in Republican affairs now convinced Mr. Bryan that the signs +were propitious for a third attempt to win the presidency. The disaster +to Judge Parker had taught the party that victory did not lie in a +conservative policy. With little difficulty, therefore, the veteran +leader from Nebraska once more rallied the Democrats around his +standard, won the nomination, and wrote a platform vigorously attacking +the tariff, trusts, and monopolies. Supported by a loyal following, he +entered the lists, only to meet another defeat. Though he polled almost +a million and a half more votes than did Judge Parker in 1904, the palm +went to Mr. Taft. + +=The Tariff Revision and Party Dissensions.=--At the very beginning of +his term, President Taft had to face the tariff issue. He had met it in +the campaign. Moved by the Democratic demand for a drastic reduction, he +had expressed opinions which were thought to imply a "downward +revision." The Democrats made much of the implication and the +Republicans from the Middle West rejoiced in it. Pressure was coming +from all sides. More than ten years had elapsed since the enactment of +the Dingley bill and the position of many industries had been altered +with the course of time. Evidently the day for revision--at best a +thankless task--had arrived. Taft accepted the inevitable and called +Congress in a special session. Until the midsummer of 1909, Republican +Senators and Representatives wrangled over tariff schedules, the +President making little effort to influence their decisions. When on +August 5 the Payne-Aldrich bill became a law, a breach had been made in +Republican ranks. Powerful Senators from the Middle West had spoken +angrily against many of the high rates imposed by the bill. They had +even broken with their party colleagues to vote against the entire +scheme of tariff revision. + +=The Income Tax Amendment.=--The rift in party harmony was widened by +another serious difference of opinion. During the debate on the tariff +bill, there was a concerted movement to include in it an income tax +provision--this in spite of the decision of the Supreme Court in 1895 +declaring it unconstitutional. Conservative men were alarmed by the +evident willingness of some members to flout a solemn decree of that +eminent tribunal. At the same time they saw a powerful combination of +Republicans and Democrats determined upon shifting some of the burden of +taxation to large incomes. In the press of circumstances, a compromise +was reached. The income tax bill was dropped for the present; but +Congress passed the sixteenth amendment to the Constitution, authorizing +taxes upon incomes from whatever source they might be derived, without +reference to any apportionment among the states on the basis of +population. The states ratified the amendment and early in 1913 it was +proclaimed. + +=President Taft's Policies.=--After the enactment of the tariff bill, +Taft continued to push forward with his legislative program. He +recommended, and Congress created, a special court of commerce with +jurisdiction, among other things, over appeals from the interstate +commerce commission, thus facilitating judicial review of the railway +rates fixed and the orders issued by that body. This measure was quickly +followed by an act establishing a system of postal savings banks in +connection with the post office--a scheme which had long been opposed by +private banks. Two years later, Congress defied the lobby of the express +companies and supplemented the savings banks with a parcels post system, +thus enabling the American postal service to catch up with that of other +progressive nations. With a view to improving the business +administration of the federal government, the President obtained from +Congress a large appropriation for an economy and efficiency commission +charged with the duty of inquiring into wasteful and obsolete methods +and recommending improved devices and practices. The chief result of +this investigation was a vigorous report in favor of a national budget +system, which soon found public backing. + +President Taft negotiated with England and France general treaties +providing for the arbitration of disputes which were "justiciable" in +character even though they might involve questions of "vital interest +and national honor." They were coldly received in the Senate and so +amended that Taft abandoned them altogether. A tariff reciprocity +agreement with Canada, however, he forced through Congress in the face +of strong opposition from his own party. After making a serious breach +in Republican ranks, he was chagrined to see the whole scheme come to +naught by the overthrow of the Liberals in the Canadian elections of +1911. + +=Prosecution of the Trusts.=--The party schism was even enlarged by what +appeared to be the successful prosecution of several great combinations. +In two important cases, the Supreme Court ordered the dissolution of the +Standard Oil Company and the American Tobacco Company on the ground that +they violated the Sherman Anti-Trust law. In taking this step Chief +Justice White was at some pains to state that the law did not apply to +combinations which did not "unduly" restrain trade. His remark, +construed to mean that the Court would not interfere with corporations +as such, became the subject of a popular outcry against the President +and the judges. + + +PROGRESSIVE INSURGENCY AND THE ELECTION OF 1912 + +=Growing Dissensions.=--All in all, Taft's administration from the first +day had been disturbed by party discord. High words had passed over the +tariff bill and disgruntled members of Congress could not forget them. +To differences over issues were added quarrels between youth and old +age. In the House of Representatives there developed a group of young +"insurgent" Republicans who resented the dominance of the Speaker, +Joseph G. Cannon, and other members of the "old guard," as they named +the men of long service and conservative minds. In 1910, the insurgents +went so far as to join with the Democrats in a movement to break the +Speaker's sway by ousting him from the rules committee and depriving him +of the power to appoint its members. The storm was brewing. In the +autumn of that year the Democrats won a clear majority in the House of +Representatives and began an open battle with President Taft by +demanding an immediate downward revision of the tariff. + +=The Rise of the Progressive Republicans.=--Preparatory to the campaign +of 1912, the dissenters within the Republican party added the prefix +"Progressive" to their old title and began to organize a movement to +prevent the renomination of Mr. Taft. As early as January 21, 1911, they +formed a Progressive Republican League at the home of Senator La +Follette of Wisconsin and launched an attack on the Taft measures and +policies. In October they indorsed Mr. La Follette as "the logical +Republican candidate" and appealed to the party for support. The +controversy over the tariff had grown into a formidable revolt against +the occupant of the White House. + +=Roosevelt in the Field.=--After looking on for a while, ex-President +Roosevelt took a hand in the fray. Soon after his return in 1910 from a +hunting trip in Africa and a tour in Europe, he made a series of +addresses in which he formulated a progressive program. In a speech in +Kansas, he favored regulation of the trusts, a graduated income tax +bearing heavily on great fortunes, tariff revision schedule by schedule, +conservation of natural resources, labor legislation, the direct +primary, and the recall of elective officials. In an address before the +Ohio state constitutional convention in February, 1912, he indorsed the +initiative and referendum and announced a doctrine known as the "recall +of judicial decisions." This was a new and radical note in American +politics. An ex-President of the United States proposed that the people +at the polls should have the right to reverse the decision of a judge +who set aside any act of a state legislature passed in the interests of +social welfare. The Progressive Republicans, impressed by these +addresses, turned from La Follette to Roosevelt and on February 24, +induced him to come out openly as a candidate against Taft for the +Republican nomination. + +=The Split in the Republican Party.=--The country then witnessed the +strange spectacle of two men who had once been close companions engaged +in a bitter rivalry to secure a majority of the delegates to the +Republican convention to be held at Chicago. When the convention +assembled, about one-fourth of the seats were contested, the delegates +for both candidates loudly proclaiming the regularity of their election. +In deciding between the contestants the national committee, after the +usual hearings, settled the disputes in such a way that Taft received a +safe majority. After a week of negotiation, Roosevelt and his followers +left the Republican party. Most of his supporters withdrew from the +convention and the few who remained behind refused to answer the roll +call. Undisturbed by this formidable bolt, the regular Republicans went +on with their work. They renominated Mr. Taft and put forth a platform +roundly condemning such Progressive doctrines as the recall of judges. + +=The Formation of the Progressive Party.=--The action of the Republicans +in seating the Taft delegates was vigorously denounced by Roosevelt. He +declared that the convention had no claim to represent the voters of the +Republican party; that any candidate named by it would be "the +beneficiary of a successful fraud"; and that it would be deeply +discreditable to any man to accept the convention's approval under such +circumstances. The bitterness of his followers was extreme. On July 8, a +call went forth for a "Progressive" convention to be held in Chicago on +August 5. The assembly which duly met on that day was a unique political +conference. Prominence was given to women delegates, and "politicians" +were notably absent. Roosevelt himself, who was cheered as a conquering +hero, made an impassioned speech setting forth his "confession of +faith." He was nominated by acclamation; Governor Hiram Johnson of +California was selected as his companion candidate for Vice President. +The platform endorsed such political reforms as woman suffrage, direct +primaries, the initiative, referendum, and recall, popular election of +United States Senators, and the short ballot. It favored a program of +social legislation, including the prohibition of child labor and minimum +wages for women. It approved the regulation, rather than the +dissolution, of the trusts. Like apostles in a new and lofty cause, the +Progressives entered a vigorous campaign for the election of their +distinguished leader. + +=Woodrow Wilson and the Election of 1912.=--With the Republicans +divided, victory loomed up before the Democrats. Naturally, a terrific +contest over the nomination occurred at their convention in Baltimore. +Champ Clark, Speaker of the House of Representatives, and Governor +Woodrow Wilson, of New Jersey, were the chief contestants. After tossing +to and fro for seven long, hot days, and taking forty-six ballots, the +delegates, powerfully influenced by Mr. Bryan, finally decided in favor +of the governor. As a professor, a writer on historical and political +subjects, and the president of Princeton University, Mr. Wilson had +become widely known in public life. As the governor of New Jersey he had +attracted the support of the progressives in both parties. With grim +determination he had "waged war on the bosses," and pushed through the +legislature measures establishing direct primaries, regulating public +utilities, and creating a system of workmen's compensation in +industries. During the presidential campaign that followed Governor +Wilson toured the country and aroused great enthusiasm by a series of +addresses later published under the title of _The New Freedom_. He +declared that "the government of the United States is at present the +foster child of the special interests." He proposed to free the country +by breaking the dominance of "the big bankers, the big manufacturers, +the big masters of commerce, the heads of railroad corporations and of +steamship corporations." + +In the election Governor Wilson easily secured a majority of the +electoral votes, and his party, while retaining possession of the House +of Representatives, captured the Senate as well. The popular verdict, +however, indicated a state of confusion in the country. The combined +Progressive and Republican vote exceeded that of the Democrats by +1,300,000. The Socialists, with Eugene V. Debs as their candidate again, +polled about 900,000 votes, more than double the number received four +years before. Thus, as the result of an extraordinary upheaval the +Republicans, after holding the office of President for sixteen years, +passed out of power, and the government of the country was intrusted to +the Democrats under the leadership of a man destined to be one of the +outstanding figures of the modern age, Woodrow Wilson. + + +=General References= + +J.B. Bishop, _Theodore Roosevelt and His Time_ (2 vols.). + +Theodore Roosevelt, _Autobiography_; _New Nationalism_; _Progressive +Principles_. + +W.H. Taft, _Popular Government_. + +Walter Weyl, _The New Democracy_. + +H. Croly, _The Promise of American Life_. + +J.B. Bishop, _The Panama Gateway_. + +J.B. Scott, _The Hague Peace Conferences_. + +W.B. Munro (ed.), _Initiative, Referendum, and Recall_. + +C.R. Van Hise, _The Conservation of Natural Resources_. + +Gifford Pinchot, _The Fight for Conservation_. + +W.F. Willoughby, _Territories and Dependencies of the United States_ +(1905). + + +=Research Topics= + +=Roosevelt and "Big Business."=--Haworth, _The United States in Our Own +Time_, pp. 281-289; F.A. Ogg, _National Progress_ (American Nation +Series), pp. 40-75; Paxson, _The New Nation_ (Riverside Series), pp. +293-307. + +=Our Insular Possessions.=--Elson, _History of the United States_, pp. +896-904. + +=Latin-American Relations.=--Haworth, pp. 294-299; Ogg, pp. 254-257. + +=The Panama Canal.=--Haworth, pp. 300-309; Ogg, pp. 266-277; Paxson, pp. +286-292; Elson, pp. 906-911. + +=Conservation.=--Haworth, pp. 331-334; Ogg, pp. 96-115; Beard, _American +Government and Politics_ (3d ed.), pp. 401-416. + +=Republican Dissensions under Taft's Administration.=--Haworth, pp. +351-360; Ogg, pp. 167-186; Paxson, pp. 324-342; Elson, pp. 916-924. + +=The Campaign of 1912.=--Haworth, pp. 360-379; Ogg, pp. 187-208. + + +=Questions= + +1. Compare the early career of Roosevelt with that of some other +President. + +2. Name the chief foreign and domestic questions of the Roosevelt-Taft +administrations. + +3. What international complications were involved in the Panama Canal +problem? + +4. Review the Monroe Doctrine. Discuss Roosevelt's applications of it. + +5. What is the strategic importance of the Caribbean to the United +States? + +6. What is meant by the sea power? Trace the voyage of the fleet around +the world and mention the significant imperial and commercial points +touched. + +7. What is meant by the question: "Does the Constitution follow the +flag?" + +8. Trace the history of self-government in Porto Rico. In the +Philippines. + +9. What is Cuba's relation to the United States? + +10. What was Roosevelt's theory of our Constitution? + +11. Give Roosevelt's views on trusts, labor, taxation. + +12. Outline the domestic phases of Roosevelt's administrations. + +13. Account for the dissensions under Taft. + +14. Trace the rise of the Progressive movement. + +15. What was Roosevelt's progressive program? + +16. Review Wilson's early career and explain the underlying theory of +_The New Freedom_. + + + + +CHAPTER XXII + +THE SPIRIT OF REFORM IN AMERICA + + +AN AGE OF CRITICISM + +=Attacks on Abuses in American Life.=--The crisis precipitated by the +Progressive uprising was not a sudden and unexpected one. It had been +long in preparation. The revolt against corruption in politics which +produced the Liberal Republican outbreak in the seventies and the +Mugwump movement of the eighties was followed by continuous criticism of +American political and economic development. From 1880 until his death +in 1892, George William Curtis, as president of the Civil Service Reform +Association, kept up a running fire upon the abuses of the spoils +system. James Bryce, an observant English scholar and man of affairs, in +his great work, _The American Commonwealth_, published in 1888, by +picturing fearlessly the political rings and machines which dominated +the cities, gave the whole country a fresh shock. Six years later Henry +D. Lloyd, in a powerful book entitled _Wealth against Commonwealth_, +attacked in scathing language certain trusts which had destroyed their +rivals and bribed public officials. In 1903 Miss Ida Tarbell, an author +of established reputation in the historical field, gave to the public an +account of the Standard Oil Company, revealing the ruthless methods of +that corporation in crushing competition. About the same time Lincoln +Steffens exposed the sordid character of politics in several +municipalities in a series of articles bearing the painful heading: _The +Shame of the Cities_. The critical spirit appeared in almost every form; +in weekly and monthly magazines, in essays and pamphlets, in editorials +and news stories, in novels like Churchill's _Coniston_ and Sinclair's +_The Jungle_. It became so savage and so wanton that the opening years +of the twentieth century were well named "the age of the muckrakers." + +=The Subjects of the Criticism.=--In this outburst of invective, nothing +was spared. It was charged that each of the political parties had fallen +into the hands of professional politicians who devoted their time to +managing conventions, making platforms, nominating candidates, and +dictating to officials; in return for their "services" they sold offices +and privileges. It was alleged that mayors and councils had bargained +away for private benefit street railway and other franchises. It was +asserted that many powerful labor unions were dominated by men who +blackmailed employers. Some critics specialized in descriptions of the +poverty, slums, and misery of great cities. Others took up "frenzied +finance" and accused financiers of selling worthless stocks and bonds to +an innocent public. Still others professed to see in the accumulations +of millionaires the downfall of our republic. + +=The Attack on "Invisible Government."=--Some even maintained that the +control of public affairs had passed from the people to a sinister +minority called "the invisible government." So eminent and conservative +a statesman as the Hon. Elihu Root lent the weight of his great name to +such an imputation. Speaking of his native state, New York, he said: +"What is the government of this state? What has it been during the forty +years of my acquaintance with it? The government of the Constitution? +Oh, no; not half the time or half way.... From the days of Fenton and +Conkling and Arthur and Cornell and Platt, from the days of David B. +Hill down to the present time, the government of the state has presented +two different lines of activity: one, of the constitutional and +statutory officers of the state and the other of the party leaders; they +call them party bosses. They call the system--I don't coin the +phrase--the system they call 'invisible government.' For I don't know +how many years Mr. Conkling was the supreme ruler in this state. The +governor did not count, the legislature did not count, comptrollers and +secretaries of state and what not did not count. It was what Mr. +Conkling said, and in a great outburst of public rage he was pulled +down. Then Mr. Platt ruled the state; for nigh upon twenty years he +ruled it. It was not the governor; it was not the legislature; it was +Mr. Platt. And the capital was not here [in Albany]; it was at 49 +Broadway; Mr. Platt and his lieutenants. It makes no difference what +name you give, whether you call it Fenton or Conkling or Cornell or +Arthur or Platt or by the names of men now living. The ruler of the +state during the greater part of the forty years of my acquaintance with +the state government has not been any man authorized by the constitution +or by law.... The party leader is elected by no one, accountable to no +one, bound by no oath of office, removable by no one." + +=The Nation Aroused.=--With the spirit of criticism came also the spirit +of reform. The charges were usually exaggerated; often wholly false; but +there was enough truth in them to warrant renewed vigilance on the part +of American democracy. President Roosevelt doubtless summed up the +sentiment of the great majority of citizens when he demanded the +punishment of wrong-doers in 1907, saying: "It makes not a particle of +difference whether these crimes are committed by a capitalist or by a +laborer, by a leading banker or manufacturer or railroad man or by a +leading representative of a labor union. Swindling in stocks, corrupting +legislatures, making fortunes by the inflation of securities, by +wrecking railroads, by destroying competitors through rebates--these +forms of wrong-doing in the capitalist are far more infamous than any +ordinary form of embezzlement or forgery." The time had come, he added, +to stop "muckraking" and proceed to the constructive work of removing +the abuses that had grown up. + + +POLITICAL REFORMS + +=The Public Service.=--It was a wise comprehension of the needs of +American democracy that led the friends of reform to launch and to +sustain for more than half a century a movement to improve the public +service. On the one side they struck at the spoils system; at the right +of the politicians to use public offices as mere rewards for partisan +work. The federal civil service act of 1883 opened the way to reform by +establishing five vital principles in law: (1) admission to office, not +on the recommendation of party workers, but on the basis of competitive +examinations; (2) promotion for meritorious service of the government +rather than of parties; (3) no assessment of office holders for campaign +funds; (4) permanent tenure during good behavior; and (5) no dismissals +for political reasons. The act itself at first applied to only 14,000 +federal offices, but under the constant pressure from the reformers it +was extended until in 1916 it covered nearly 300,000 employees out of an +executive force of approximately 414,000. While gaining steadily at +Washington, civil service reformers carried their agitation into the +states and cities. By 1920 they were able to report ten states with +civil service commissions and the merit system well intrenched in more +than three hundred municipalities. + +In excluding spoilsmen from public office, the reformers were, in a +sense, engaged in a negative work: that of "keeping the rascals out." +But there was a second and larger phase to their movement, one +constructive in character: that of getting skilled, loyal, and efficient +servants into the places of responsibility. Everywhere on land and sea, +in town and country, new burdens were laid upon public officers. They +were called upon to supervise the ships sailing to and from our ports; +to inspect the water and milk supplies of our cities; to construct and +operate great public works, such as the Panama and Erie canals; to +regulate the complicated rates of railway companies; to safeguard health +and safety in a thousand ways; to climb the mountains to fight forest +fires; and to descend into the deeps of the earth to combat the deadly +coal gases that assail the miners. In a word, those who labored to +master the secrets and the powers of nature were summoned to the aid of +the government: chemists, engineers, architects, nurses, surgeons, +foresters--the skilled in all the sciences, arts, and crafts. + +Keeping rascals out was no task at all compared with the problem of +finding competent people for all the technical offices. "Now," said the +reformers, "we must make attractive careers in the government work for +the best American talent; we must train those applying for admission and +increase the skill of those already in positions of trust; we must see +to it that those entering at the bottom have a chance to rise to the +top; in short, we must work for a government as skilled and efficient as +it is strong, one commanding all the wisdom and talent of America that +public welfare requires." + +=The Australian Ballot.=--A second line of attack on the political +machines was made in connection with the ballot. In the early days +elections were frequently held in the open air and the poll was taken by +a show of hands or by the enrollment of the voters under names of their +favorite candidates. When this ancient practice was abandoned in favor +of the printed ballot, there was still no secrecy about elections. Each +party prepared its own ballot, often of a distinctive color, containing +the names of its candidates. On election day, these papers were handed +out to the voters by party workers. Any one could tell from the color of +the ballot dropped into the box, or from some mark on the outside of the +folded ballot, just how each man voted. Those who bought votes were sure +that their purchases were "delivered." Those who intimidated voters +could know when their intimidation was effective. In this way the party +ballot strengthened the party machine. + +As a remedy for such abuses, reformers, learning from the experience of +Australia, urged the adoption of the "Australian ballot." That ballot, +though it appeared in many forms, had certain constant features. It was +official, that is, furnished by the government, not by party workers; it +contained the names of all candidates of all parties; it was given out +only in the polling places; and it was marked in secret. The first state +to introduce it was Massachusetts. The year was 1888. Before the end of +the century it had been adopted by nearly all the states in the union. +The salutary effect of the reform in reducing the amount of cheating +and bribery in elections was beyond all question. + +=The Direct Primary.=--In connection with the uprising against machine +politics, came a call for the abolition of the old method of nominating +candidates by conventions. These time-honored party assemblies, which +had come down from the days of Andrew Jackson, were, it was said, merely +conclaves of party workers, sustained by the spoils system, and +dominated by an inner circle of bosses. The remedy offered in this case +was again "more democracy," namely, the abolition of the party +convention and the adoption of the direct primary. Candidates were no +longer to be chosen by secret conferences. Any member of a party was to +be allowed to run for any office, to present his name to his party by +securing signatures to a petition, and to submit his candidacy to his +fellow partisans at a direct primary--an election within the party. In +this movement Governor La Follette of Wisconsin took the lead and his +state was the first in the union to adopt the direct primary for +state-wide purposes. The idea spread, rapidly in the West, more slowly +in the East. The public, already angered against "the bosses," grasped +eagerly at it. Governor Hughes in New York pressed it upon the unwilling +legislature. State after state accepted it until by 1918 Rhode Island, +Delaware, Connecticut, and New Mexico were the only states that had not +bowed to the storm. Still the results were disappointing and at that +very time the pendulum was beginning to swing backward. + +=Popular Election of Federal Senators.=--While the movement for direct +primaries was still advancing everywhere, a demand for the popular +election of Senators, usually associated with it, swept forward to +victory. Under the original Constitution, it had been expressly provided +that Senators should be chosen by the legislatures of the states. In +practice this rule transferred the selection of Senators to secret +caucuses of party members in the state legislatures. In connection with +these caucuses there had been many scandals, some direct proofs of +brazen bribery and corruption, and dark hints besides. The Senate was +called by its detractors "a millionaires' club" and it was looked upon +as the "citadel of conservatism." The prescription in this case was +likewise "more democracy"--direct election of Senators by popular vote. + +This reform was not a new idea. It had been proposed in Congress as +early as 1826. President Johnson, an ardent advocate, made it the +subject of a special message in 1868 Not long afterward it appeared in +Congress. At last in 1893, the year after the great Populist upheaval, +the House of Representatives by the requisite two-thirds vote +incorporated it in an amendment to the federal Constitution. Again and +again it passed the House; but the Senate itself was obdurate. Able +Senators leveled their batteries against it. Mr. Hoar of Massachusetts +declared that it would transfer the seat of power to the "great cities +and masses of population"; that it would "overthrow the whole scheme of +the Senate and in the end the whole scheme of the national Constitution +as designed and established by the framers of the Constitution and the +people who adopted it." + +Failing in the Senate, advocates of popular election made a rear assault +through the states. They induced state legislatures to enact laws +requiring the nomination of candidates for the Senate by the direct +primary, and then they bound the legislatures to abide by the popular +choice. Nevada took the lead in 1899. Shortly afterward Oregon, by the +use of the initiative and referendum, practically bound legislators to +accept the popular nominee and the country witnessed the spectacle of a +Republican legislature "electing" a Democrat to represent the state in +the Senate at Washington. By 1910 three-fourths of the states had +applied the direct primary in some form to the choice of Senators. Men +selected by that method began to pour in upon the floors of Congress; +finally in 1912 the two-thirds majority was secured for an amendment to +the federal Constitution providing for the popular election of Senators. +It was quickly ratified by the states. The following year it was +proclaimed in effect. + +=The Initiative and Referendum.=--As a corrective for the evils which +had grown up in state legislatures there arose a demand for the +introduction of a Swiss device known as the initiative and referendum. +The initiative permits any one to draw up a proposed bill; and, on +securing a certain number of signatures among the voters, to require the +submission of the measure to the people at an election. If the bill thus +initiated receives a sufficient majority, it becomes a law. The +referendum allows citizens who disapprove any act passed by the +legislature to get up a petition against it and thus bring about a +reference of the measure to the voters at the polls for approval or +rejection. These two practices constitute a form of "direct government." + +These devices were prescribed "to restore the government to the people." +The Populists favored them in their platform of 1896. Mr. Bryan, two +years later, made them a part of his program, and in the same year South +Dakota adopted them. In 1902 Oregon, after a strenuous campaign, added a +direct legislation amendment to the state constitution. Within ten years +all the Southwestern, Mountain, and Pacific states, except Texas and +Wyoming, had followed this example. To the east of the Mississippi, +however, direct legislation met a chilly reception. By 1920 only five +states in this section had accepted it: Maine, Massachusetts, Ohio, +Michigan, and Maryland, the last approving the referendum only. + +=The Recall.=--Executive officers and judges, as well as legislatures, +had come in for their share of criticism, and it was proposed that they +should likewise be subjected to a closer scrutiny by the public. For +this purpose there was advanced a scheme known as the recall--which +permitted a certain percentage of the voters to compel any officer, at +any time during his term, to go before the people at a new election. +This feature of direct government, tried out first in the city of Los +Angeles, was extended to state-wide uses in Oregon in 1908. It failed, +however, to capture popular imagination to the same degree as the +initiative and referendum. At the end of ten years' agitation, only ten +states, mainly in the West, had adopted it for general purposes, and +four of them did not apply it to the judges of the courts. Still it was +extensively acclaimed in cities and incorporated into hundreds of +municipal laws and charters. + +As a general proposition, direct government in all its forms was +bitterly opposed by men of a conservative cast of mind. It was denounced +by Senator Henry Cabot Lodge as "nothing less than a complete revolution +in the fabric of our government and in the fundamental principles upon +which that government rests." In his opinion, it promised to break down +the representative principle and "undermine and overthrow the bulwarks +of ordered liberty and individual freedom." Mr. Taft shared Mr. Lodge's +views and spoke of direct government with scorn. "Votes," he exclaimed, +"are not bread ... referendums do not pay rent or furnish houses, +recalls do not furnish clothes, initiatives do not supply employment or +relieve inequalities of condition or of opportunity." + +=Commission Government for Cities.=--In the restless searching out of +evils, the management of cities early came under critical scrutiny. City +government, Mr. Bryce had remarked, was the one conspicuous failure in +America. This sharp thrust, though resented by some, was accepted as a +warning by others. Many prescriptions were offered by doctors of the +body politic. Chief among them was the idea of simplifying the city +government so that the light of public scrutiny could shine through it. +"Let us elect only a few men and make them clearly responsible for the +city government!" was the new cry in municipal reform. So, many city +councils were reduced in size; one of the two houses, which several +cities had adopted in imitation of the federal government, was +abolished; and in order that the mayor could be held to account, he was +given the power to appoint all the chief officials. This made the mayor, +in some cases, the only elective city official and gave the voters a +"short ballot" containing only a few names--an idea which some proposed +to apply also to the state government. + +A further step in the concentration of authority was taken in Galveston, +Texas, where the people, looking upon the ruin of their city wrought by +the devastating storm of 1901, and confronted by the difficult problems +of reconstruction, felt the necessity for a more businesslike management +of city affairs and instituted a new form of local administration. They +abolished the old scheme of mayor and council and vested all power in +five commissioners, one of whom, without any special prerogatives, was +assigned to the office of "mayor president." In 1908, the commission +form of government, as it was soon characterized, was adopted by Des +Moines, Iowa. The attention of all municipal reformers was drawn to it +and it was hailed as the guarantee of a better day. By 1920, more than +four hundred cities, including Memphis, Spokane, Birmingham, Newark, and +Buffalo, had adopted it. Still the larger cities like New York and +Chicago kept their boards of aldermen. + +=The City Manager Plan.=--A few years' experience with commission +government revealed certain patent defects. The division of the work +among five men was frequently found to introduce dissensions and +irresponsibility. Commissioners were often lacking in the technical +ability required to manage such difficult matters as fire and police +protection, public health, public works, and public utilities. Some one +then proposed to carry over into city government an idea from the +business world. In that sphere the stockholders of each corporation +elect the directors and the directors, in turn, choose a business +manager to conduct the affairs of the company. It was suggested that the +city commissioners, instead of attempting to supervise the details of +the city administration, should select a manager to do this. The scheme +was put into effect in Sumter, South Carolina, in 1912. Like the +commission plan, it became popular. Within eight years more than one +hundred and fifty towns and cities had adopted it. Among the larger +municipalities were Dayton, Springfield (Ohio), Akron, Kalamazoo, and +Phoenix. It promised to create a new public service profession, that of +city manager. + + +MEASURES OF ECONOMIC REFORM + +=The Spirit of American Reform.=--The purification of the ballot, the +restriction of the spoils system, the enlargement of direct popular +control over the organs of government were not the sole answers made by +the reformers to the critics of American institutions. Nor were they the +most important. In fact, they were regarded not as ends in themselves, +but as means to serve a wider purpose. That purpose was the promotion of +the "general welfare." The concrete objects covered by that broad term +were many and varied; but they included the prevention of extortion by +railway and other corporations, the protection of public health, the +extension of education, the improvement of living conditions in the +cities, the elimination of undeserved poverty, the removal of gross +inequalities in wealth, and more equality of opportunity. + +All these things involved the use of the powers of government. Although +a few clung to the ancient doctrine that the government should not +interfere with private business at all, the American people at large +rejected that theory as vigorously as they rejected the doctrines of an +extreme socialism which exalts the state above the individual. Leaders +representing every shade of opinion proclaimed the government an +instrument of common welfare to be used in the public interest. "We must +abandon definitely," said Roosevelt, "the _laissez-faire_ theory of +political economy and fearlessly champion a system of increased +governmental control, paying no attention to the cries of worthy people +who denounce this as socialistic." This view was shared by Mr. Taft, who +observed: "Undoubtedly the government can wisely do much more ... to +relieve the oppressed, to create greater equality of opportunity, to +make reasonable terms for labor in employment, and to furnish vocational +education." He was quick to add his caution that "there is a line beyond +which the government cannot go with any good practical results in +seeking to make men and society better." + +=The Regulation of Railways.=--The first attempts to use the government +in a large way to control private enterprise in the public interest were +made by the Northwestern states in the decade between 1870 and 1880. +Charges were advanced by the farmers, particularly those organized into +Granges, that the railways extorted the highest possible rates for +freight and passengers, that favoritism was shown to large shippers, +that fraudulent stocks and bonds were sold to the innocent public. It +was claimed that railways were not like other enterprises, but were +"quasi-public" concerns, like the roads and ferries, and thus subject to +government control. Accordingly laws were enacted bringing the railroads +under state supervision. In some cases the state legislature fixed the +maximum rates to be charged by common carriers, and in other cases +commissions were created with the power to establish the rates after an +investigation. This legislation was at first denounced in the East as +nothing less than the "confiscation" of the railways in the interest of +the farmers. Attempts to have the Supreme Court of the United States +declare it unconstitutional were made without avail; still a principle +was finally laid down to the effect that in fixing rates state +legislatures and commissions must permit railway companies to earn a +"fair" return on the capital invested. + +In a few years the Granger spirit appeared in Congress. An investigation +revealed a long list of abuses committed by the railways against +shippers and travelers. The result was the interstate commerce act of +1887, which created the Interstate Commerce Commission, forbade +discriminations in rates, and prohibited other objectionable practices +on the part of railways. This measure was loosely enforced and the +abuses against which it was directed continued almost unabated. A demand +for stricter control grew louder and louder. Congress was forced to +heed. In 1903 it enacted the Elkins law, forbidding railways to charge +rates other than those published, and laid penalties upon the officers +and agents of companies, who granted secret favors to shippers, and upon +shippers who accepted them. Three years later a still more drastic step +was taken by the passage of the Hepburn act. The Interstate Commerce +Commission was authorized, upon complaint of some party aggrieved, and +after a public hearing, to determine whether just and reasonable rates +had been charged by the companies. In effect, the right to fix freight +and passenger rates was taken out of the hands of the owners of the +railways engaged in interstate commerce and vested in the hands of the +Interstate Commerce Commission. Thus private property to the value of +$20,000,000,000 or more was declared to be a matter of public concern +and subject to government regulation in the common interest. + +=Municipal Utilities.=--Similar problems arose in connection with the +street railways, electric light plants, and other utilities in the great +cities. In the beginning the right to construct such undertakings was +freely, and often corruptly, granted to private companies by city +councils. Distressing abuses arose in connection with such practices. +Many grants or franchises were made perpetual, or perhaps for a term of +999 years. The rates charged and services rendered were left largely to +the will of the companies holding the franchises. Mergers or unions of +companies were common and the public was deluged with stocks and bonds +of doubtful value; bankruptcies were frequent. The connection between +the utility companies and the politicians was, to say the least, not +always in the public interest. + +American ingenuity was quick to devise methods for eliminating such +evils. Three lines of progress were laid out by the reformers. One group +proposed that such utilities should be subject to municipal or state +regulation, that the formation of utility companies should be under +public control, and that the issue of stocks and bonds must be approved +by public authority. In some cases state, and in other cases municipal, +commissions were created to exercise this great power over "quasi-public +corporations." Wisconsin, by laws enacted in 1907, put all heat, light, +water works, telephone, and street railway companies under the +supervision of a single railway commission. Other states followed this +example rapidly. By 1920 the principle of public control over municipal +utilities was accepted in nearly every section of the union. + +A second line of reform appeared in the "model franchise" for utility +corporations. An illustration of this tendency was afforded by the +Chicago street railway settlement of 1906. The total capital of the +company was fixed at a definite sum, its earnings were agreed upon, and +the city was given the right to buy and operate the system if it desired +to do so. In many states, about the same time, it was provided that no +franchises to utility companies could run more than twenty-five years. + +A third group of reformers were satisfied with nothing short of +municipal ownership. They proposed to drive private companies entirely +out of the field and vest the ownership and management of municipal +plants in the city itself. This idea was extensively applied to electric +light and water works plants, but to street railways in only a few +cities, including San Francisco and Seattle. In New York the subways are +owned by the city but leased for operation. + +=Tenement House Control.=--Among the other pressing problems of the +cities was the overcrowding in houses unfit for habitation. An inquiry +in New York City made under the authority of the state in 1902 revealed +poverty, misery, slums, dirt, and disease almost beyond imagination. The +immediate answer was the enactment of a tenement house law prescribing +in great detail the size of the rooms, the air space, the light and the +sanitary arrangement for all new buildings. An immense improvement +followed and the idea was quickly taken up in other states having large +industrial centers. In 1920 New York made a further invasion of the +rights of landlords by assuring to the public "reasonable rents" for +flats and apartments. + +=Workmen's Compensation.=--No small part of the poverty in cities was +due to the injury of wage-earners while at their trade. Every year the +number of men and women killed or wounded in industry mounted higher. +Under the old law, the workman or his family had to bear the loss unless +the employer had been guilty of some extraordinary negligence. Even in +that case an expensive lawsuit was usually necessary to recover +"damages." In short, although employers insured their buildings and +machinery against necessary risks from fire and storm, they allowed +their employees to assume the heavy losses due to accidents. The +injustice of this, though apparent enough now, was once not generally +recognized. It was said to be unfair to make the employer pay for +injuries for which he was not personally responsible; but the argument +was overborne. + +[Illustration: AN EAST SIDE STREET IN NEW YORK] + +About 1910 there set in a decided movement in the direction of lifting +the burden of accidents from the unfortunate victims. In the first +place, laws were enacted requiring employers to pay damages in certain +amounts according to the nature of the case, no matter how the accident +occurred, as long as the injured person was not guilty of willful +negligence. By 1914 more than one-half the states had such laws. In the +second place, there developed schemes of industrial insurance in the +form of automatic grants made by state commissions to persons injured in +industries, the funds to be provided by the employers or the state or by +both. By 1917 thirty-six states had legislation of this type. + +=Minimum Wages and Mothers' Pensions.=--Another source of poverty, +especially among women and children, was found to be the low wages paid +for their labor. Report after report showed this. In 1912 Massachusetts +took a significant step in the direction of declaring the minimum wages +which might be paid to women and children. Oregon, the following year, +created a commission with power to prescribe minimum wages in certain +industries, based on the cost of living, and to enforce the rates fixed. +Within a short time one-third of the states had legislation of this +character. To cut away some of the evils of poverty and enable widows to +keep their homes intact and bring up their children, a device known as +mothers' pensions became popular during the second decade of the +twentieth century. At the opening of 1913 two states, Colorado and +Illinois, had laws authorizing the payment from public funds of definite +sums to widows with children. Within four years, thirty-five states had +similar legislation. + +=Taxation and Great Fortunes.=--As a part of the campaign waged against +poverty by reformers there came a demand for heavy taxes upon great +fortunes, particularly taxes upon inheritances or estates passing to +heirs on the decease of the owners. Roosevelt was an ardent champion of +this type of taxation and dwelt upon it at length in his message to +Congress in 1907. "Such a tax," he said, "would help to preserve a +measurable equality of opportunity for the people of the generations +growing to manhood.... Our aim is to recognize what Lincoln pointed out: +the fact that there are some respects in which men are obviously not +equal; but also to insist that there should be equality of self-respect +and of mutual respect, an equality of rights before the law, and at +least an approximate equality in the conditions under which each man +obtains the chance to show the stuff that is in him when compared with +his fellows." + +The spirit of the new age was, therefore, one of reform, not of +revolution. It called for no evolutionary or utopian experiments, but +for the steady and progressive enactment of measures aimed at admitted +abuses and designed to accomplish tangible results in the name of public +welfare. + + +=General References= + +J. Bryce, _The American Commonwealth_. + +R.C. Brooks, _Corruption in American Life_. + +E.A. Ross, _Changing America_. + +P.L. Haworth, _America in Ferment_. + +E.R.A. Seligman, _The Income Tax_. + +W.Z. Ripley, _Railroads: Rates and Regulation_. + +E.S. Bradford, _Commission Government in American Cities_. + +H.R. Seager, _A Program of Social Reform_. + +C. Zueblin, _American Municipal Progress_. + +W.E. Walling, _Progressivism and After_. + +_The American Year Book_ (an annual publication which contains reviews +of reform legislation). + + +=Research Topics= + +="The Muckrakers."=--Paxson, _The New Nation_ (Riverside Series), pp. +309-323. + +=Civil Service Reform.=--Beard, _American Government and Politics_ (3d +ed.), pp. 222-230; Ogg, _National Progress_ (American Nation Series), +pp. 135-142. + +=Direct Government.=--Beard, _American Government_, pp. 461-473; Ogg, +pp. 160-166. + +=Popular Election of Senators.=--Beard, _American Government_, pp. +241-244; Ogg, pp. 149-150. + +=Party Methods.=--Beard, _American Government_, pp. 656-672. + +=Ballot Reform.=--Beard, _American Government_, pp. 672-705. + +=Social and Economic Legislation.=--Beard, _American Government_, pp. +721-752. + + +=Questions= + +1. Who were some of the critics of abuses in American life? + +2. What particular criticisms were advanced? + +3. How did Elihu Root define "invisible government"? + +4. Discuss the use of criticism as an aid to progress in a democracy. + +5. Explain what is meant by the "merit system" in the civil service. +Review the rise of the spoils system. + +6. Why is the public service of increasing importance? Give some of its +new problems. + +7. Describe the Australian ballot and the abuses against which it is +directed. + +8. What are the elements of direct government? Sketch their progress in +the United States. + +9. Trace the history of popular election of Senators. + +10. Explain the direct primary. Commission government. The city manager +plan. + +11. How does modern reform involve government action? On what theory is +it justified? + +12. Enumerate five lines of recent economic reform. + + + + +CHAPTER XXIII + +THE NEW POLITICAL DEMOCRACY + + +=Women in Public Affairs.=--The social legislation enacted in response +to the spirit of reform vitally affected women in the home and in +industry and was promoted by their organizations. Where they did not +lead, they were affiliated with movements for social improvement. No +cause escaped their attention; no year passed without widening the range +of their interests. They served on committees that inquired into the +problems of the day; they appeared before legislative assemblies to +advocate remedies for the evils they discovered. By 1912 they were a +force to be reckoned with in national politics. In nine states complete +and equal suffrage had been established, and a widespread campaign for a +national suffrage amendment was in full swing. On every hand lay +evidences that their sphere had been broadened to include public +affairs. This was the culmination of forces that had long been +operating. + +=A New Emphasis in History.=--A movement so deeply affecting important +interests could not fail to find a place in time in the written record +of human progress. History often began as a chronicle of kings and +queens, knights and ladies, written partly to amuse and partly to +instruct the classes that appeared in its pages. With the growth of +commerce, parliaments, and international relations, politics and +diplomacy were added to such chronicles of royal and princely doings. +After the rise of democracy, industry, and organized labor, the +transactions of everyday life were deemed worthy of a place in the pages +of history. In each case history was rewritten and the past rediscovered +in the light of the new age. So it will be with the rise and growth of +women's political power. The history of their labor, their education, +their status in society, their influence on the course of events will be +explored and given its place in the general record. + +It will be a history of change. The superior position which women enjoy +in America to-day is the result of a slow evolution from an almost +rightless condition in colonial times. The founders of America brought +with them the English common law. Under that law, a married woman's +personal property--jewels, money, furniture, and the like--became her +husband's property; the management of her lands passed into his control. +Even the wages she earned, if she worked for some one else, belonged to +him. Custom, if not law, prescribed that women should not take part in +town meetings or enter into public discussions of religious questions. +Indeed it is a far cry from the banishment of Anne Hutchinson from +Massachusetts in 1637, for daring to dispute with the church fathers, to +the political conventions of 1920 in which women sat as delegates, made +nominating speeches, and served on committees. In the contrast between +these two scenes may be measured the change in the privileges of women +since the landing of the Pilgrims. The account of this progress is a +narrative of individual effort on the part of women, of organizations +among them, of generous aid from sympathetic men in the long agitation +for the removal of civil and political disabilities. It is in part also +a narrative of irresistible economic change which drew women into +industry, created a leisure class, gave women wages and incomes, and +therewith economic independence. + + +THE RISE OF THE WOMAN MOVEMENT + +=Protests of Colonial Women.=--The republican spirit which produced +American independence was of slow and steady growth. It did not spring +up full-armed in a single night. It was, on the contrary, nourished +during a long period of time by fireside discussions as well as by +debates in the public forum. Women shared that fireside sifting of +political principles and passed on the findings of that scrutiny in +letters to their friends, newspaper articles, and every form of written +word. How widespread was this potent, though not spectacular force, is +revealed in the collections of women's letters, articles, songs, dramas, +and satirical "skits" on English rule that have come down to us. In this +search into the reasons of government, some women began to take thought +about laws that excluded them from the ballot. Two women at least left +their protests on record. Abigail, the ingenious and witty wife of John +Adams, wrote to her husband, in March, 1776, that women objected "to all +arbitrary power whether of state or males" and demanded political +privileges in the new order then being created. Hannah Lee Corbin, the +sister of "Lighthorse" Harry Lee, protested to her brother against the +taxation of women without representation. + +[Illustration: ABIGAIL ADAMS] + +=The Stir among European Women.=--Ferment in America, in the case of +women as of men, was quickened by events in Europe. In 1792, Mary +Wollstonecraft published in England the _Vindication of the Rights of +Women_--a book that was destined to serve the cause of liberty among +women as the writings of Locke and Paine had served that of men. The +specific grievances which stirred English women were men's invasion of +women's industries, such as spinning and weaving; the denial of equal +educational opportunities; and political disabilities. In France also +the great Revolution raised questionings about the status of women. The +rights of "citizenesses" as well as the rights of "citizens" were +examined by the boldest thinkers. This in turn reacted upon women in the +United States. + +=Leadership in America.=--The origins of the American woman movement are +to be found in the writings of a few early intellectual leaders. During +the first decades of the nineteenth century, books, articles, and +pamphlets about women came in increasing numbers from the press. Lydia +Maria Child wrote a history of women; Margaret Fuller made a critical +examination of the status of women in her time; and Mrs. Elizabeth Ellet +supplemented the older histories by showing what an important part women +had played in the American Revolution. + +=The Struggle for Education.=--Along with criticism, there was carried +on a constructive struggle for better educational facilities for women +who had been from the beginning excluded from every college in the +country. In this long battle, Emma Willard and Mary Lyon led the way; +the former founded a seminary at Troy, New York; and the latter made the +beginnings of Mount Holyoke College in Massachusetts. Oberlin College in +Ohio, established in 1833, opened its doors to girls and from it were +graduated young students to lead in the woman movement. Sarah J. Hale, +who in 1827 became the editor of a "Ladies' Magazine," published in +Boston, conducted a campaign for equal educational opportunities which +helped to bear fruit in the founding of Vassar College shortly after the +Civil War. + +=The Desire to Effect Reforms.=--As they came to study their own history +and their own part in civilization, women naturally became deeply +interested in all the controversies going on around them. The temperance +question made a special appeal to them and they organized to demand the +right to be heard on it. In 1846 the "Daughters of Temperance" formed a +secret society favoring prohibition. They dared to criticize the +churches for their indifference and were so bold as to ask that +drunkenness be made a ground for divorce. + +The slavery issue even more than temperance called women into public +life. The Grimke sisters of South Carolina emancipated their bondmen, +and one of these sisters, exiled from Charleston for her "Appeal to the +Christian Women of the South," went North to work against the slavery +system. In 1837 the National Women's Anti-Slavery Convention met in New +York; seventy-one women delegates represented eight states. Three years +later eight American women, five of them in Quaker costume, attended the +World Anti-Slavery Convention in London, much to the horror of the men, +who promptly excluded them from the sessions on the ground that it was +not fitting for women to take part in such meetings. + +In other spheres of activity, especially social service, women steadily +enlarged their interest. Nothing human did they consider alien to them. +They inveighed against cruel criminal laws and unsanitary prisons. They +organized poor relief and led in private philanthropy. Dorothea Dix +directed the movement that induced the New York legislature to establish +in 1845 a separate asylum for the criminal insane. In the same year +Sarah G. Bagley organized the Lowell Female Reform Association for the +purpose of reducing the long hours of labor for women, safeguarding "the +constitutions of future generations." Mrs. Eliza Woodson Farnham, matron +in Sing Sing penitentiary, was known throughout the nation for her +social work, especially prison reform. Wherever there were misery and +suffering, women were preparing programs of relief. + +=Freedom of Speech for Women.=--In the advancement of their causes, of +whatever kind, women of necessity had to make public appeals and take +part in open meetings. Here they encountered difficulties. The +appearance of women on the platform was new and strange. Naturally it +was widely resented. Antoinette Brown, although she had credentials as a +delegate, was driven off the platform of a temperance convention in New +York City simply because she was a woman. James Russell Lowell, editor +of the "Atlantic Monthly," declined a poem from Julia Ward Howe on the +theory that no woman could write a poem; but he added on second thought +that he might consider an article in prose. Nathaniel Hawthorne, +another editor, even objected to something in prose because to him "all +ink-stained women were equally detestable." To the natural resentment +against their intrusion into new fields was added that aroused by their +ideas and methods. As temperance reformers, they criticized in a caustic +manner those who would not accept their opinions. As opponents of +slavery they were especially bitter. One of their conventions, held at +Philadelphia in 1833, passed a resolution calling on all women to leave +those churches that would not condemn every form of human bondage. This +stirred against them many of the clergy who, accustomed to having women +sit silent during services, were in no mood to treat such a revolt +leniently. Then came the last straw. Women decided that they would +preach--out of the pulpit first, and finally in it. + +=Women in Industry.=--The period of this ferment was also the age of the +industrial revolution in America, the rise of the factory system, and +the growth of mill towns. The labor of women was transferred from the +homes to the factories. Then arose many questions: the hours of labor, +the sanitary conditions of the mills, the pressure of foreign +immigration on native labor, the wages of women as compared with those +of men, and the right of married women to their own earnings. Labor +organizations sprang up among working women. The mill girls of Lowell, +Massachusetts, mainly the daughters of New England farmers, published a +magazine, "The Lowell Offering." So excellent were their writings that +the French statesman, Thiers, carried a copy of their paper into the +Chamber of Deputies to show what working women could achieve in a +republic. As women were now admittedly earning their own way in the +world by their own labor, they began to talk of their "economic +independence." + +=The World Shaken by Revolution.=--Such was the quickening of women's +minds in 1848 when the world was startled once more by a revolution in +France which spread to Germany, Poland, Austria, Hungary, and Italy. +Once more the people of the earth began to explore the principles of +democracy and expound human rights. Women, now better educated and more +"advanced" in their ideas, played a role of still greater importance in +that revolution. They led in agitations and uprisings. They suffered +from reaction and persecution. From their prison in France, two of them +who had been jailed for too much insistence on women's rights exchanged +greetings with American women who were raising the same issue here. By +this time the women had more supporters among the men. Horace Greeley, +editor of the New York _Tribune_, though he afterwards recanted, used +his powerful pen in their behalf. Anti-slavery leaders welcomed their +aid and repaid them by urging the enfranchisement of women. + +=The Woman's Rights Convention of 1848.=--The forces, moral and +intellectual, which had been stirring among women, crystallized a few +months after the outbreak of the European revolution in the first +Woman's Rights Convention in the history of America. It met at Seneca +Falls, New York, in 1848, on the call of Lucretia Mott, Martha Wright, +Elizabeth Cady Stanton, and Mary Ann McClintock, three of them Quakers. +Accustomed to take part in church meetings with men, the Quakers +naturally suggested that men as well as women be invited to attend the +convention. Indeed, a man presided over the conference, for that +position seemed too presumptuous even for such stout advocates of +woman's rights. + +The deliberations of the Seneca Falls convention resulted in a +Declaration of Rights modeled after the Declaration of Independence. For +example, the preamble began: "When in the course of human events it +becomes necessary for one portion of the family of man to assume among +the people of the earth a position different from that which they have +hitherto occupied...." So also it closed: "Such has been the patient +suffering of women under this government and such is now the necessity +which constrains them to demand the equal station to which they are +entitled." Then followed the list of grievances, the same number which +had been exhibited to George III in 1776. Especially did they assail the +disabilities imposed upon them by the English common law imported into +America--the law which denied married women their property, their wages, +and their legal existence as separate persons. All these grievances they +recited to "a candid world." The remedies for the evils which they +endured were then set forth in detail. They demanded "equal rights" in +the colleges, trades, and professions; equal suffrage; the right to +share in all political offices, honors, and emoluments; the right to +complete equality in marriage, including equal guardianship of the +children; and for married women the right to own property, to keep +wages, to make contracts, to transact business, and to testify in the +courts of justice. In short, they declared women to be persons as men +are persons and entitled to all the rights and privileges of human +beings. Such was the clarion call which went forth to the world in +1848--to an amused and contemptuous world, it must be admitted--but to a +world fated to heed and obey. + +=The First Gains in Civil Liberty.=--The convention of 1848 did not make +political enfranchisement the leading issue. Rather did it emphasize the +civil disabilities of women which were most seriously under discussion +at the time. Indeed, the New York legislature of that very year, as the +result of a twelve years' agitation, passed the Married Woman's Property +Act setting aside the general principles of the English common law as +applied to women and giving them many of the "rights of man." California +and Wisconsin followed in 1850; Massachusetts in 1854; and Kansas in +1859. Other states soon fell into line. Women's earnings and +inheritances were at last their own in some states at least. In a little +while laws were passed granting women rights as equal guardians of their +children and permitting them to divorce their husbands on the grounds of +cruelty and drunkenness. + +By degrees other steps were taken. The Woman's Medical College of +Pennsylvania was founded in 1850, and the Philadelphia School of Design +for Women three years later. In 1852 the American Women's Educational +Association was formed to initiate an agitation for enlarged +educational opportunities for women. Other colleges soon emulated the +example of Oberlin: the University of Utah in 1850; Hillsdale College in +Michigan in 1855; Baker University in Kansas in 1858; and the University +of Iowa in 1860. New trades and professions were opened to women and old +prejudices against their activities and demands slowly gave way. + + +THE NATIONAL STRUGGLE FOR WOMAN SUFFRAGE + +=The Beginnings of Organization.=--As women surmounted one obstacle +after another, the agitation for equal suffrage came to the front. If +any year is to be fixed as the date of its beginning, it may very well +be 1850, when the suffragists of Ohio urged the state constitutional +convention to confer the vote upon them. With apparent spontaneity there +were held in the same year state suffrage conferences in Indiana, +Pennsylvania, and Massachusetts; and connections were formed among the +leaders of these meetings. At the same time the first national suffrage +convention was held in Worcester, Massachusetts, on the call of +eighty-nine leading men and women representing six states. Accounts of +the convention were widely circulated in this country and abroad. +English women,--for instance, Harriet Martineau,--sent words of +appreciation for the work thus inaugurated. It inspired a leading +article in the "Westminster Review," which deeply interested the +distinguished economist, John Stuart Mill. Soon he was the champion of +woman suffrage in the British Parliament and the author of a powerful +tract _The Subjection of Women_, widely read throughout the +English-speaking world. Thus do world movements grow. Strange to relate +the women of England were enfranchised before the adoption of the +federal suffrage amendment in America. + +The national suffrage convention of 1850 was followed by an +extraordinary outburst of agitation. Pamphlets streamed from the press. +Petitions to legislative bodies were drafted, signed, and presented. +There were addresses by favorite orators like Garrison, Phillips, and +Curtis, and lectures and poems by men like Emerson, Longfellow, and +Whittier. In 1853 the first suffrage paper was founded by the wife of a +member of Congress from Rhode Island. By this time the last barrier to +white manhood suffrage in the North had been swept away and the woman's +movement was gaining momentum every year. + +=The Suffrage Movement Checked by the Civil War.=--Advocates of woman +suffrage believed themselves on the high road to success when the Civil +War engaged the energies and labors of the nation. Northern women became +absorbed in the struggle to preserve the union. They held no suffrage +conventions for five years. They transformed their associations into +Loyalty Leagues. They banded together to buy only domestic goods when +foreign imports threatened to ruin American markets. They rolled up +monster petitions in favor of the emancipation of slaves. In hospitals, +in military prisons, in agriculture, and in industry they bore their +full share of responsibility. Even when the New York legislature took +advantage of their unguarded moments and repealed the law giving the +mother equal rights with the father in the guardianship of children, +they refused to lay aside war work for agitation. As in all other wars, +their devotion was unstinted and their sacrifices equal to the +necessities of the hour. + +=The Federal Suffrage Amendment.=--Their plans and activities, when the +war closed, were shaped by events beyond their control. The emancipation +of the slaves and their proposed enfranchisement made prominent the +question of a national suffrage for the first time in our history. +Friends of the colored man insisted that his civil liberties would not +be safe unless he was granted the right to vote. The woman suffragists +very pertinently asked why the same principle did not apply to women. +The answer which they received was negative. The fourteenth amendment to +the federal Constitution, adopted in 1868, definitely put women aside by +limiting the scope of its application, so far as the suffrage was +concerned, to the male sex. In making manhood suffrage national, +however, it nationalized the issue. + +This was the signal for the advocates of woman suffrage. In March, 1869, +their proposed amendment was introduced in Congress by George W. Julian +of Indiana. It provided that no citizen should be deprived of the vote +on account of sex, following the language of the fifteenth amendment +which forbade disfranchisement on account of race. Support for the +amendment, coming from many directions, led the suffragists to believe +that their case was hopeful. In their platform of 1872, for example, the +Republicans praised the women for their loyal devotion to freedom, +welcomed them to spheres of wider usefulness, and declared that the +demand of any class of citizens for additional rights deserved +"respectful consideration." + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +SUSAN B. ANTHONY] + +Experience soon demonstrated, however, that praise was not the ballot. +Indeed the suffragists already had realized that a tedious contest lay +before them. They had revived in 1866 their regular national convention. +They gave the name of "The Revolution" to their paper, edited by +Elizabeth Cady Stanton and Susan B. Anthony. They formed a national +suffrage association and organized annual pilgrimages to Congress to +present their claims. Such activities bore some results. Many eminent +congressmen were converted to their cause and presented it ably to their +colleagues of both chambers. Still the subject was ridiculed by the +newspapers and looked upon as freakish by the masses. + +=The State Campaigns.=--Discouraged by the outcome of the national +campaign, suffragists turned to the voters of the individual states and +sought the ballot at their hands. Gains by this process were painfully +slow. Wyoming, it is true, while still a territory, granted suffrage to +women in 1869 and continued it on becoming a state twenty years later, +in spite of strong protests in Congress. In 1893 Colorado established +complete political equality. In Utah, the third suffrage state, the +cause suffered many vicissitudes. Women were enfranchised by the +territorial legislature; they were deprived of the ballot by Congress in +1887; finally in 1896 on the admission of Utah to the union they +recovered their former rights. During the same year, 1896, Idaho +conferred equal suffrage upon the women. This was the last suffrage +victory for more than a decade. + +=The Suffrage Cause in Congress.=--In the midst of the meager gains +among the states there were occasional flurries of hope for immediate +action on the federal amendment. Between 1878 and 1896 the Senate +committee reported the suffrage resolution by a favorable majority on +five different occasions. During the same period, however, there were +nine unfavorable reports and only once did the subject reach the point +of a general debate. At no time could anything like the required +two-thirds vote be obtained. + +=The Changing Status of Women.=--While the suffrage movement was +lagging, the activities of women in other directions were steadily +multiplying. College after college--Vassar, Bryn Mawr, Smith, Wellesley, +to mention a few--was founded to give them the advantages of higher +education. Other institutions, especially the state universities of the +West, opened their doors to women, and women were received into the +professions of law and medicine. By the rapid growth of public high +schools in which girls enjoyed the same rights as boys, education was +extended still more widely. The number of women teachers increased by +leaps and bounds. + +Meanwhile women were entering nearly every branch of industry and +business. How many of them worked at gainful occupations before 1870 we +do not know; but from that year forward we have the records of the +census. Between 1870 and 1900 the proportion of women in the professions +rose from less than two per cent to more than ten per cent; in trade and +transportation from 24.8 per cent to 43.2 per cent; and in manufacturing +from 13 to 19 per cent. In 1910, there were over 8,000,000 women +gainfully employed as compared with 30,000,000 men. When, during the war +on Germany, the government established the principle of equal pay for +equal work and gave official recognition to the value of their services +in industry, it was discovered how far women had traveled along the road +forecast by the leaders of 1848. + +=The Club Movement among Women.=--All over the country women's societies +and clubs were started to advance this or that reform or merely to study +literature, art, and science. In time these women's organizations of all +kinds were federated into city, state, and national associations and +drawn into the consideration of public questions. Under the leadership +of Frances Willard they made temperance reform a vital issue. They took +an interest in legislation pertaining to prisons, pure food, public +health, and municipal government, among other things. At their sessions +and conferences local, state, and national issues were discussed until +finally, it seems, everything led to the quest of the franchise. By +solemn resolution in 1914 the National Federation of Women's Clubs, +representing nearly two million club women, formally endorsed woman +suffrage. In the same year the National Education Association, speaking +for the public school teachers of the land, added its seal of approval. + +=State and National Action.=--Again the suffrage movement was in full +swing in the states. Washington in 1910, California in 1911, Oregon, +Kansas, and Arizona in 1912, Nevada and Montana in 1914 by popular vote +enfranchised their women. Illinois in 1913 conferred upon them the right +to vote for President of the United States. The time had arrived for a +new movement. A number of younger suffragists sought to use the votes of +women in the equal suffrage states to compel one or both of the national +political parties to endorse and carry through Congress the federal +suffrage amendment. Pressure then came upon Congress from every +direction: from the suffragists who made a straight appeal on the +grounds of justice; and from the suffragists who besought the women of +the West to vote against candidates for President, who would not approve +the federal amendment. In 1916, for the first time, a leading +presidential candidate, Mr. Charles E. Hughes, speaking for the +Republicans, endorsed the federal amendment and a distinguished +ex-President, Roosevelt, exerted a powerful influence to keep it an +issue in the campaign. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +CONFERENCE OF MEN AND WOMEN DELEGATES AT A NATIONAL CONVENTION IN +1920] + +=National Enfranchisement.=--After that, events moved rapidly. The great +state of New York adopted equal suffrage in 1917. Oklahoma, South +Dakota, and Michigan swung into line the following year; several other +states, by legislative action, gave women the right to vote for +President. In the meantime the suffrage battle at Washington grew +intense. Appeals and petitions poured in upon Congress and the +President. Militant suffragists held daily demonstrations in Washington. +On September 30, 1918, President Wilson, who, two years before, had +opposed federal action and endorsed suffrage by state adoption only, +went before Congress and urged the passage of the suffrage amendment to +the Constitution. In June, 1919, the requisite two-thirds vote was +secured; the resolution was carried and transmitted to the states for +ratification. On August 28, 1920, the thirty-sixth state, Tennessee, +approved the amendment, making three-fourths of the states as required +by the Constitution. Thus woman suffrage became the law of the land. A +new political democracy had been created. The age of agitation was +closed and the epoch of responsible citizenship opened. + + +=General References= + +Edith Abbott, _Women in Industry_. + +C.P. Gilman, _Woman and Economics_. + +I.H. Harper, _Life and Work of Susan B. Anthony_. + +E.R. Hecker, _Short History of Woman's Rights_. + +S.B. Anthony and I.H. Harper, _History of Woman Suffrage_ (4 vols.). + +J.W. Taylor, _Before Vassar Opened_. + +A.H. Shaw, _The Story of a Pioneer_. + + +=Research Topics= + +=The Rise of the Woman Suffrage Movement.=--McMaster, _History of the +People of the United States_, Vol. VIII, pp. 116-121; K. Porter, +_History of Suffrage in the United States_, pp. 135-145. + +=The Development of the Suffrage Movement.=--Porter, pp. 228-254; Ogg, +_National Progress_ (American Nation Series), pp. 151-156 and p. 382. + +=Women's Labor in the Colonial Period.=--E. Abbott, _Women in Industry_, +pp. 10-34. + +=Women and the Factory System.=--Abbott, pp. 35-62. + +=Early Occupations for Women.=--Abbott, pp. 63-85. + +=Women's Wages.=--Abbott, pp. 262-316. + + +=Questions= + +1. Why were women involved in the reform movements of the new century? + +2. What is history? What determines the topics that appear in written +history? + +3. State the position of women under the old common law. + +4. What part did women play in the intellectual movement that preceded +the American Revolution? + +5. Explain the rise of the discussion of women's rights. + +6. What were some of the early writings about women? + +7. Why was there a struggle for educational opportunities? + +8. How did reform movements draw women into public affairs and what were +the chief results? + +9. Show how the rise of the factory affected the life and labor of +women. + +10. Why is the year 1848 an important year in the woman movement? +Discuss the work of the Seneca Falls convention. + +11. Enumerate some of the early gains in civil liberty for women. + +12. Trace the rise of the suffrage movement. Show the effect of the +Civil War. + +13. Review the history of the federal suffrage amendment. + +14. Summarize the history of the suffrage in the states. + + + + +CHAPTER XXIV + +INDUSTRIAL DEMOCRACY + + +=The New Economic Age.=--The spirit of criticism and the measures of +reform designed to meet it, which characterized the opening years of the +twentieth century, were merely the signs of a new age. The nation had +definitely passed into industrialism. The number of city dwellers +employed for wages as contrasted with the farmers working on their own +land was steadily mounting. The free land, once the refuge of restless +workingmen of the East and the immigrants from Europe, was a thing of +the past. As President Roosevelt later said in speaking of the great +coal strike, "a few generations ago, the American workman could have +saved money, gone West, and taken up a homestead. Now the free lands +were gone. In earlier days, a man who began with a pick and shovel might +come to own a mine. That outlet was now closed as regards the immense +majority.... The majority of men who earned wages in the coal industry, +if they wished to progress at all, were compelled to progress not by +ceasing to be wage-earners but by improving the conditions under which +all the wage-earners of the country lived and worked." + +The disappearance of the free land, President Roosevelt went on to say, +also produced "a crass inequality in the bargaining relation of the +employer and the individual employee standing alone. The great +coal-mining and coal-carrying companies which employed their tens of +thousands could easily dispense with the services of any particular +miner. The miner, on the other hand, however expert, could not dispense +with the companies. He needed a job; his wife and children would starve +if he did not get one.... Individually the miners were impotent when +they sought to enter a wage contract with the great companies; they +could make fair terms only by uniting into trade unions to bargain +collectively." It was of this state of affairs that President Taft spoke +when he favored the modification of the common law "so as to put +employees of little power and means on a level with their employers in +adjusting and agreeing upon their mutual obligations." + +John D. Rockefeller, Jr., on the side of the great captains of industry, +recognized the same facts. He said: "In the early days of the +development of industry, the employer and capital investor were +frequently one. Daily contact was had between him and his employees, who +were his friends and neighbors.... Because of the proportions which +modern industry has attained, employers and employees are too often +strangers to each other.... Personal relations can be revived only +through adequate representation of the employees. Representation is a +principle which is fundamentally just and vital to the successful +conduct of industry.... It is not consistent for us as Americans to +demand democracy in government and practice autocracy in industry.... +With the developments what they are in industry to-day, there is sure to +come a progressive evolution from aristocratic single control, whether +by capital, labor, or the state, to democratic, cooperative control by +all three." + + +COOPERATION BETWEEN EMPLOYERS AND EMPLOYEES + +=Company Unions.=--The changed economic life described by the three +eminent men just quoted was acknowledged by several great companies and +business concerns. All over the country decided efforts were made to +bridge the gulf which industry and the corporation had created. Among +the devices adopted was that of the "company union." In one of the +Western lumber mills, for example, all the employees were invited to +join a company organization; they held monthly meetings to discuss +matters of common concern; they elected a "shop committee" to confer +with the representatives of the company; and periodically the agents of +the employers attended the conferences of the men to talk over matters +of mutual interest. The function of the shop committee was to consider +wages, hours, safety rules, sanitation, recreation and other problems. +Whenever any employee had a grievance he took it up with the foreman +and, if it was not settled to his satisfaction, he brought it before the +shop committee. If the members of the shop committee decided in favor of +the man with a grievance, they attempted to settle the matter with the +company's agents. All these things failing, the dispute was transferred +to a grand meeting of all the employees with the employers' +representatives, in common council. A deadlock, if it ensued from such a +conference, was broken by calling in impartial arbitrators selected by +both sides from among citizens outside the mill. Thus the employees were +given a voice in all decisions affecting their work and welfare; rights +and grievances were treated as matters of mutual interest rather than +individual concern. Representatives of trade unions from outside, +however, were rigidly excluded from all negotiations between employers +and the employees. + +=Profit-sharing.=--Another proposal for drawing capital and labor +together was to supplement the wage system by other ties. Sometimes lump +sums were paid to employees who remained in a company's service for a +definite period of years. Again they were given a certain percentage of +the annual profits. In other instances, employees were allowed to buy +stock on easy terms and thus become part owners in the concern. This +last plan was carried so far by a large soap manufacturing company that +the employees, besides becoming stockholders, secured the right to elect +representatives to serve on the board of directors who managed the +entire business. So extensive had profit-sharing become by 1914 that the +Federal Industrial Relations Committee, appointed by the President, +deemed it worthy of a special study. Though opposed by regular trade +unions, it was undoubtedly growing in popularity. + +=Labor Managers and Welfare Work.=--Another effort of employers to meet +the problems of the new age appeared in the appointment of specialists, +known as employment managers, whose task it was to study the relations +existing between masters and workers and discover practical methods for +dealing with each grievance as it arose. By 1918, hundreds of big +companies had recognized this modern "profession" and universities were +giving courses of instruction on the subject to young men and women. In +that year a national conference of employment managers was held at +Rochester, New York. The discussion revealed a wide range of duties +assigned to managers, including questions of wages, hours, sanitation, +rest rooms, recreational facilities, and welfare work of every kind +designed to make the conditions in mills and factories safer and more +humane. Thus it was evident that hundreds of employers had abandoned the +old idea that they were dealing merely with individual employees and +that their obligations ended with the payment of any wages they saw fit +to fix. In short, they were seeking to develop a spirit of cooperation +to take the place of competition and enmity; and to increase the +production of commodities by promoting the efficiency and happiness of +the producers. + + +THE RISE AND GROWTH OF ORGANIZED LABOR + +=The American Federation of Labor.=--Meanwhile a powerful association of +workers representing all the leading trades and crafts, organized into +unions of their own, had been built up outside the control of employers. +This was the American Federation of Labor, a nation-wide union of +unions, founded in 1886 on the basis of beginnings made five years +before. At the time of its establishment it had approximately 150,000 +members. Its growth up to the end of the century was slow, for the total +enrollment in 1900 was only 300,000. At that point the increase became +marked. The membership reached 1,650,000 in 1904 and more than 3,000,000 +in 1919. To be counted in the ranks of organized labor were several +strong unions, friendly to the Federation, though not affiliated with +it. Such, for example, were the Railway Brotherhoods with more than half +a million members. By the opening of 1920 the total strength of +organized labor was put at about 4,000,000 members, meaning, if we +include their families, that nearly one-fifth of the people of the +United States were in some positive way dependent upon the operations of +trade unions. + +=Historical Background.=--This was the culmination of a long and +significant history. Before the end of the eighteenth century, the +skilled workmen--printers, shoemakers, tailors, and carpenters--had, as +we have seen, formed local unions in the large cities. Between 1830 and +1860, several aggressive steps were taken in the American labor +movement. For one thing, the number of local unions increased by leaps +and bounds in all the industrial towns. For another, there was +established in every large manufacturing city a central labor body +composed of delegates from the unions of the separate trades. In the +local union the printers or the cordwainers, for example, considered +only their special trade problems. In the central labor union, printers, +cordwainers, iron molders, and other craftsmen considered common +problems and learned to cooperate with one another in enforcing the +demands of each craft. A third step was the federation of the unions of +the same craftsmen in different cities. The printers of New York, +Philadelphia, Boston, and other towns, for instance, drew together and +formed a national trade union of printers built upon the local unions of +that craft. By the eve of the Civil War there were four or five powerful +national unions of this character. The expansion of the railway made +travel and correspondence easier and national conventions possible even +for workmen of small means. About 1834 an attempt was made to federate +the unions of all the different crafts into a national organization; but +the effort was premature. + +_The National Labor Union._--The plan which failed in 1834 was tried +again in the sixties. During the war, industries and railways had +flourished as never before; prices had risen rapidly; the demand for +labor had increased; wages had mounted slowly, but steadily. Hundreds of +new local unions had been founded and eight or ten national trade unions +had sprung into being. The time was ripe, it seemed, for a national +consolidation of all labor's forces; and in 1866, the year after the +surrender of General Lee at Appomattox, the "National Labor Union" was +formed at Baltimore under the leadership of an experienced organizer, +W.H. Sylvis of the iron molders. The purpose of the National Labor Union +was not merely to secure labor's standard demands touching hours, wages, +and conditions of work or to maintain the gains already won. It leaned +toward political action and radical opinions. Above all, it sought to +eliminate the conflict between capital and labor by making workingmen +the owners of shops through the formation of cooperative industries. For +six years the National Labor Union continued to hold conferences and +carry on its propaganda; but most of the cooperative enterprises failed, +political dissensions arose, and by 1872 the experiment had come to an +end. + +_The Knights of Labor._--While the National Labor Union was +experimenting, there grew up in the industrial world a more radical +organization known as the "Noble Order of the Knights of Labor." It was +founded in Philadelphia in 1869, first as a secret society with rituals, +signs, and pass words; "so that no spy of the boss can find his way into +the lodge room to betray his fellows," as the Knights put it. In form +the new organization was simple. It sought to bring all laborers, +skilled and unskilled, men and women, white and colored, into a mighty +body of local and national unions without distinction of trade or craft. +By 1885, ten years after the national organization was established, it +boasted a membership of over 700,000. In philosophy, the Knights of +Labor were socialistic, for they advocated public ownership of the +railways and other utilities and the formation of cooperative societies +to own and manage stores and factories. + +As the Knights were radical in spirit and their strikes, numerous and +prolonged, were often accompanied by violence, the organization alarmed +employers and the general public, raising up against itself a vigorous +opposition. Weaknesses within, as well as foes from without, started the +Knights on the path to dissolution. They waged more strikes than they +could carry on successfully; their cooperative experiments failed as +those of other labor groups before them had failed; and the rank and +file could not be kept in line. The majority of the members wanted +immediate gains in wages or the reduction of hours; when their hopes +were not realized they drifted away from the order. The troubles were +increased by the appearance of the American Federation of Labor, a still +mightier organization composed mainly of skilled workers who held +strategic positions in industry. When they failed to secure the +effective support of the Federation in their efforts to organize the +unskilled, the employers closed in upon them; then the Knights declined +rapidly in power. By 1890 they were a negligible factor and in a short +time they passed into the limbo of dead experiments. + +=The Policies of the American Federation.=--Unlike the Knights of Labor, +the American Federation of Labor sought, first of all, to be very +practical in its objects and methods. It avoided all kinds of +socialistic theories and attended strictly to the business of organizing +unions for the purpose of increasing wages, shortening hours, and +improving working conditions for its members. It did not try to include +everybody in one big union but brought together the employees of each +particular craft whose interests were clearly the same. To prepare for +strikes and periods of unemployment, it raised large funds by imposing +heavy dues and created a benefit system to hold men loyally to the +union. In order to permit action on a national scale, it gave the +superior officers extensive powers over local unions. + +While declaring that employers and employees had much in common, the +Federation strongly opposed company unions. Employers, it argued, were +affiliated with the National Manufacturers' Association or with similar +employers' organizations; every important industry was now national in +scope; and wages and hours, in view of competition with other shops, +could not be determined in a single factory, no matter how amicable +might be the relations of the company and its workers in that particular +plant. For these reasons, the Federation declared company unions and +local shop committees inherently weak; it insisted that hours, wages, +and other labor standards should be fixed by general trade agreements +applicable to all the plants of a given industry, even if subject to +local modifications. + +At the same time, the Federation, far from deliberately antagonizing +employers, sought to enlist their cooperation and support. It affiliated +with the National Civic Federation, an association of business men, +financiers, and professional men, founded in 1900 to promote friendly +relations in the industrial world. In brief, the American Federation of +Labor accepted the modern industrial system and, by organization within +it, endeavored to secure certain definite terms and conditions for trade +unionists. + + +THE WIDER RELATIONS OF ORGANIZED LABOR + +=The Socialists.=--The trade unionism "pure and simple," espoused by the +American Federation of Labor, seemed to involve at first glance nothing +but businesslike negotiations with employers. In practice it did not +work out that way. The Federation was only six years old when a new +organization, appealing directly for the labor vote--namely, the +Socialist Labor Party--nominated a candidate for President, launched +into a national campaign, and called upon trade unionists to desert the +older parties and enter its fold. + +The socialistic idea, introduced into national politics in 1892, had +been long in germination. Before the Civil War, a number of reformers, +including Nathaniel Hawthorne, Horace Greeley, and Wendell Phillips, +deeply moved by the poverty of the great industrial cities, had +earnestly sought relief in the establishment of cooperative or +communistic colonies. They believed that people should go into the +country, secure land and tools, own them in common so that no one could +profit from exclusive ownership, and produce by common labor the food +and clothing necessary for their support. For a time this movement +attracted wide interest, but it had little vitality. Nearly all the +colonies failed. Selfishness and indolence usually disrupted the best of +them. + +In the course of time this "Utopian" idea was abandoned, and another set +of socialist doctrines, claiming to be more "scientific," appeared +instead. The new school of socialists, adopting the principles of a +German writer and agitator, Karl Marx, appealed directly to workingmen. +It urged them to unite against the capitalists, to get possession of the +machinery of government, and to introduce collective or public ownership +of railways, land, mines, mills, and other means of production. The +Marxian socialists, therefore, became political. They sought to organize +labor and to win elections. Like the other parties they put forward +candidates and platforms. The Socialist Labor party in 1892, for +example, declared in favor of government ownership of utilities, free +school books, woman suffrage, heavy income taxes, and the referendum. +The Socialist party, founded in 1900, with Eugene V. Debs, the leader of +the Pullman strike, as its candidate, called for public ownership of all +trusts, monopolies, mines, railways; and the chief means of production. +In the course of time the vote of the latter organization rose to +considerable proportions, reaching almost a million in 1912. It declined +four years later and then rose in 1920 to about the same figure. + +In their appeal for votes, the socialists of every type turned first to +labor. At the annual conventions of the American Federation of Labor +they besought the delegates to endorse socialism. The president of the +Federation, Samuel Gompers, on each occasion took the floor against +them. He repudiated socialism and the socialists, on both theoretical +and practical grounds. He opposed too much public ownership, declaring +that the government was as likely as any private employer to oppress +labor. The approval of socialism, he maintained, would split the +Federation on the rock of politics, weaken it in its fight for higher +wages and shorter hours, and prejudice the public against it. At every +turn he was able to vanquish the socialists in the Federation, although +he could not prevent it from endorsing public ownership of the railways +at the convention of 1920. + +=The Extreme Radicals.=--Some of the socialists, defeated in their +efforts to capture organized labor and seeing that the gains in +elections were very meager, broke away from both trade unionism and +politics. One faction, the Industrial Workers of the World, founded in +1905, declared themselves opposed to all capitalists, the wages system, +and craft unions. They asserted that the "working class and the +employing class have nothing in common" and that trade unions only +pitted one set of workers against another set. They repudiated all +government ownership and the government itself, boldly proclaiming their +intention to unite all employees into one big union and seize the +railways, mines, and mills of the country. This doctrine, so +revolutionary in tone, called down upon the extremists the condemnation +of the American Federation of Labor as well as of the general public. At +its convention in 1919, the Federation went on record as "opposed to +Bolshevism, I.W.W.-ism, and the irresponsible leadership that encourages +such a policy." It announced its "firm adherence to American ideals." + +=The Federation and Political Issues.=--The hostility of the Federation +to the socialists did not mean, however, that it was indifferent to +political issues or political parties. On the contrary, from time to +time, at its annual conventions, it endorsed political and social +reforms, such as the initiative, referendum, and recall, the abolition +of child labor, the exclusion of Oriental labor, old-age pensions, and +government ownership. Moreover it adopted the policy of "rewarding +friends and punishing enemies" by advising members to vote for or +against candidates according to their stand on the demands of organized +labor. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +SAMUEL GOMPERS AND OTHER LABOR LEADERS] + +This policy was pursued with especial zeal in connection with disputes +over the use of injunctions in labor controversies. An injunction is a +bill or writ issued by a judge ordering some person or corporation to do +or to refrain from doing something. For example, a judge may order a +trade union to refrain from interfering with non-union men or to +continue at work handling goods made by non-union labor; and he may fine +or imprison those who disobey his injunction, the penalty being +inflicted for "contempt of court." This ancient legal device came into +prominence in connection with nation-wide railway strikes in 1877. It +was applied with increasing frequency after its effective use against +Eugene V. Debs in the Pullman strike of 1894. + +Aroused by the extensive use of the writ, organized labor demanded that +the power of judges to issue injunctions in labor disputes be limited by +law. Representatives of the unions sought support from the Democrats and +the Republicans; they received from the former very specific and cordial +endorsement. In 1896 the Democratic platform denounced "government by +injunction as a new and highly dangerous form of oppression." Mr. +Gompers, while refusing to commit the Federation to Democratic politics, +privately supported Mr. Bryan. In 1908, he came out openly and boasted +that eighty per cent of the votes of the Federation had been cast for +the Democratic candidate. Again in 1912 the same policy was pursued. The +reward was the enactment in 1914 of a federal law exempting trade unions +from prosecution as combinations in restraint of trade, limiting the use +of the injunction in labor disputes, and prescribing trial by jury in +case of contempt of court. This measure was hailed by Mr. Gompers as the +"Magna Carta of Labor" and a vindication of his policy. As a matter of +fact, however, it did not prevent the continued use of injunctions +against trade unions. Nevertheless Mr. Gompers was unshaken in his +conviction that organized labor should not attempt to form an +independent political party or endorse socialist or other radical +economic theories. + +=Organized Labor and the Public.=--Besides its relations to employers, +radicals within its own ranks, and political questions, the Federation +had to face responsibilities to the general public. With the passing of +time these became heavy and grave. While industries were small and +conflicts were local in character, a strike seldom affected anybody but +the employer and the employees immediately involved in it. When, +however, industries and trade unions became organized on a national +scale and a strike could paralyze a basic enterprise like coal mining or +railways, the vital interests of all citizens were put in jeopardy. +Moreover, as increases in wages and reductions in hours often added +directly to the cost of living, the action of the unions affected the +well-being of all--the food, clothing, and shelter of the whole people. + +For the purpose of meeting the issue raised by this state of affairs, it +was suggested that employers and employees should lay their disputes +before commissions of arbitration for decision and settlement. President +Cleveland, in a message of April 2, 1886, proposed such a method for +disposing of industrial controversies, and two years later Congress +enacted a voluntary arbitration law applicable to the railways. The +principle was extended in 1898 and again in 1913, and under the +authority of the federal government many contentions in the railway +world were settled by arbitration. + +The success of such legislation induced some students of industrial +questions to urge that unions and employers should be compelled to +submit all disputes to official tribunals of arbitration. Kansas +actually passed such a law in 1920. Congress in the Esch-Cummins railway +bill of the same year created a federal board of nine members to which +all railway controversies, not settled by negotiation, must be +submitted. Strikes, however, were not absolutely forbidden. Generally +speaking, both employers and employees opposed compulsory adjustments +without offering any substitute in case voluntary arbitration should not +be accepted by both parties to a dispute. + + +IMMIGRATION AND AMERICANIZATION + +=The Problems of Immigration.=--From its very inception, the American +Federation of Labor, like the Knights of Labor before it, was confronted +by numerous questions raised by the ever swelling tide of aliens coming +to our shores. In its effort to make each trade union all-inclusive, it +had to wrestle with a score or more languages. When it succeeded in +thoroughly organizing a craft, it often found its purposes defeated by +an influx of foreigners ready to work for lower wages and thus undermine +the foundations of the union. + +At the same time, persons outside the labor movement began to be +apprehensive as they contemplated the undoubted evil, as well as the +good, that seemed to be associated with the "alien invasion." They saw +whole sections of great cities occupied by people speaking foreign +tongues, reading only foreign newspapers, and looking to the Old World +alone for their ideas and their customs. They witnessed an expanding +army of total illiterates, men and women who could read and write no +language at all; while among those aliens who could read few there were +who knew anything of American history, traditions, and ideals. Official +reports revealed that over twenty per cent of the men of the draft army +during the World War could not read a newspaper or write a letter home. +Perhaps most alarming of all was the discovery that thousands of alien +men are in the United States only on a temporary sojourn, solely to make +money and return home with their savings. These men, willing to work for +low wages and live in places unfit for human beings, have no stake in +this country and do not care what becomes of it. + +=The Restriction of Immigration.=--In all this there was, strictly +speaking, no cause for surprise. Since the foundation of our republic +the policy of the government had been to encourage the coming of the +alien. For nearly one hundred years no restraining act was passed by +Congress, while two important laws positively encouraged it; namely, the +homestead act of 1862 and the contract immigration law of 1864. Not +until American workingmen came into open collision with cheap Chinese +labor on the Pacific Coast did the federal government spread the first +measure of limitation on the statute books. After the discovery of gold, +and particularly after the opening of the railway construction era, a +horde of laborers from China descended upon California. Accustomed to +starvation wages and indifferent to the conditions of living, they +threatened to cut the American standard to the point of subsistence. By +1876 the protest of American labor was loud and long and both the +Republicans and the Democrats gave heed to it. In 1882 Congress enacted +a law prohibiting the admission of Chinese laborers to the United States +for a term of ten years--later extended by legislation. In a little +while the demand arose for the exclusion of the Japanese as well. In +this case no exclusion law was passed; but an understanding was reached +by which Japan agreed not to issue passports to her laborers authorizing +them to come to the United States. By act of Congress in 1907 the +President was empowered to exclude any laborers who, having passports to +Canada, Hawaii, or Mexico, attempted to enter our country. + +These laws and agreements, however, did not remove all grounds for the +agitation of the subject. They were difficult to enforce and it was +claimed by residents of the Coast that in spite of federal authority +Oriental laborers were finding their way into American ports. Moreover, +several Western states, anxious to preserve the soil for American +ownership, enacted laws making it impossible for Chinese and Japanese to +buy land outright; and in other ways they discriminated against +Orientals. Such proceedings placed the federal government in an +embarrassing position. By treaty it had guaranteed specific rights to +Japanese citizens in the United States, and the government at Tokyo +contended that the state laws just cited violated the terms of the +international agreement. The Western states were fixed in their +determination to control Oriental residents; Japan was equally +persistent in asking that no badge of inferiority be attached to her +citizens. Subjected to pressure on both sides, the federal government +sought a way out of the deadlock. + +Having embarked upon the policy of restriction in 1882, Congress readily +extended it. In that same year it barred paupers, criminals, convicts, +and the insane. Three years later, mainly owing to the pressure of the +Knights of Labor, it forbade any person, company, or association to +import aliens under contract. By an act of 1887, the contract labor +restriction was made even more severe. In 1903, anarchists were excluded +and the bureau of immigration was transferred from the Treasury +Department to the Department of Commerce and Labor, in order to provide +for a more rigid execution of the law. In 1907 the classes of persons +denied admission were widened to embrace those suffering from physical +and mental defects and otherwise unfit for effective citizenship. When +the Department of Labor was established in 1913 the enforcement of the +law was placed in the hands of the Secretary of Labor, W.B. Wilson, who +was a former leader in the American Federation of Labor. + +=The Literacy Test.=--Still the advocates of restriction were not +satisfied. Still organized labor protested and demanded more protection +against the competition of immigrants. In 1917 it won a thirty-year +battle in the passage of a bill excluding "all aliens over sixteen years +of age, physically capable of reading, who cannot read the English +language or some other language or dialect, including Hebrew or +Yiddish." Even President Wilson could not block it, for a two-thirds +vote to overcome his veto was mustered in Congress. + +This act, while it served to exclude illiterates, made no drastic cut in +the volume of immigration. Indeed a material reduction was resolutely +opposed in many quarters. People of certain nationalities already in the +United States objected to every barrier that shut out their own kinsmen. +Some Americans of the old stock still held to the idea that the United +States should continue to be an asylum for "the oppressed of the earth." +Many employers looked upon an increased labor supply as the means of +escaping what they called "the domination of trade unions." In the babel +of countless voices, the discussion of these vital matters went on in +town and country. + +=Americanization.=--Intimately connected with the subject of immigration +was a call for the "Americanization" of the alien already within our +gates. The revelation of the illiteracy in the army raised the cry and +the demand was intensified when it was found that many of the leaders +among the extreme radicals were foreign in birth and citizenship. +Innumerable programs for assimilating the alien to American life were +drawn up, and in 1919 a national conference on the subject was held in +Washington under the auspices of the Department of the Interior. All +were agreed that the foreigner should be taught to speak and write the +language and understand the government of our country. Congress was +urged to lend aid in this vast undertaking. America, as ex-President +Roosevelt had said, was to find out "whether it was a nation or a +boarding-house." + + +=General References= + +J.R. Commons and Associates, _History of Labor in the United States_ (2 +vols.). + +Samuel Gompers, _Labor and the Common Welfare_. + +W.E. Walling, _Socialism as It Is_. + +W.E. Walling (and Others), _The Socialism of Today_. + +R.T. Ely, _The Labor Movement in America_. + +T.S. Adams and H. Sumner, _Labor Problems_. + +J.G. Brooks, _American Syndicalism_ and _Social Unrest_. + +P.F. Hall, _Immigration and Its Effects on the United States_. + + +=Research Topics= + +=The Rise of Trade Unionism.=--Mary Beard, _Short History of the +American Labor Movement_, pp. 10-18, 47-53, 62-79; Carlton, _Organized +Labor in American History_, pp. 11-44. + +=Labor and Politics.=--Beard, _Short History_, pp. 33-46, 54-61, +103-112; Carlton, pp. 169-197; Ogg, _National Progress_ (American Nation +Series), pp. 76-85. + +=The Knights of Labor.=--Beard, _Short History_, pp. 116-126; Dewey, +_National Problems_ (American Nation Series), pp. 40-49. + +=The American Federation of Labor--Organization and Policies.=--Beard, +_Short History_, pp. 86-112. + +=Organized Labor and the Socialists.=--Beard, _Short History_, pp. +126-149. + +=Labor and the Great War.=--Carlton, pp. 282-306; Beard, _Short +History_, pp. 150-170. + + +=Questions= + +1. What are the striking features of the new economic age? + +2. Give Mr. Rockefeller's view of industrial democracy. + +3. Outline the efforts made by employers to establish closer relations +with their employees. + +4. Sketch the rise and growth of the American Federation of Labor. + +5. How far back in our history does the labor movement extend? + +6. Describe the purposes and outcome of the National Labor Union and the +Knights of Labor. + +7. State the chief policies of the American Federation of Labor. + +8. How does organized labor become involved with outside forces? + +9. Outline the rise of the socialist movement. How did it come into +contact with the American Federation? + +10. What was the relation of the Federation to the extreme radicals? To +national politics? To the public? + +11. Explain the injunction. + +12. Why are labor and immigration closely related? + +13. Outline the history of restrictions on immigration. + +14. What problems arise in connection with the assimilation of the alien +to American life? + + + + +CHAPTER XXV + +PRESIDENT WILSON AND THE WORLD WAR + + +"The welfare, the happiness, the energy, and the spirit of the men and +women who do the daily work in our mines and factories, on our +railroads, in our offices and ports of trade, on our farms, and on the +sea are the underlying necessity of all prosperity." Thus spoke Woodrow +Wilson during his campaign for election. In this spirit, as President, +he gave the signal for work by summoning Congress in a special session +on April 7, 1913. He invited the cooperation of all "forward-looking +men" and indicated that he would assume the role of leadership. As an +evidence of his resolve, he appeared before Congress in person to read +his first message, reviving the old custom of Washington and Adams. Then +he let it be known that he would not give his party any rest until it +fulfilled its pledges to the country. When Democratic Senators balked at +tariff reductions, they were sharply informed that the party had +plighted its word and that no excuses or delays would be tolerated. + + +DOMESTIC LEGISLATION + +=Financial Measures.=--Under this spirited leadership Congress went to +work, passing first the Underwood tariff act of 1913, which made a +downward revision in the rates of duty, fixing them on the average about +twenty-six per cent lower than the figures of 1907. The protective +principle was retained, but an effort was made to permit a moderate +element of foreign competition. As a part of the revenue act Congress +levied a tax on incomes as authorized by the sixteenth amendment to the +Constitution. The tax which roused such party passions twenty years +before was now accepted as a matter of course. + +Having disposed of the tariff, Congress took up the old and vexatious +currency question and offered a new solution in the form of the federal +reserve law of December, 1913. This measure, one of the most interesting +in the history of federal finance, embraced four leading features. In +the first place, it continued the prohibition on the issuance of notes +by state banks and provided for a national currency. In the second +place, it put the new banking system under the control of a federal +reserve board composed entirely of government officials. To prevent the +growth of a "central money power," it provided, in the third place, for +the creation of twelve federal reserve banks, one in each of twelve +great districts into which the country is divided. All local national +banks were required and certain other banks permitted to become members +of the new system and share in its control. Finally, with a view to +expanding the currency, a step which the Democrats had long urged upon +the country, the issuance of paper money, under definite safeguards, was +authorized. + +Mindful of the agricultural interest, ever dear to the heart of +Jefferson's followers, the Democrats supplemented the reserve law by the +Farm Loan Act of 1916, creating federal agencies to lend money on farm +mortgages at moderate rates of interest. Within a year $20,000,000 had +been lent to farmers, the heaviest borrowing being in nine Western and +Southern states, with Texas in the lead. + +=Anti-trust Legislation.=--The tariff and currency laws were followed by +three significant measures relative to trusts. Rejecting utterly the +Progressive doctrine of government regulation, President Wilson +announced that it was the purpose of the Democrats "to destroy monopoly +and maintain competition as the only effective instrument of business +liberty." The first step in this direction, the Clayton Anti-trust Act, +carried into great detail the Sherman law of 1890 forbidding and +penalizing combinations in restraint of interstate and foreign trade. In +every line it revealed a determined effort to tear apart the great +trusts and to put all business on a competitive basis. Its terms were +reinforced in the same year by a law creating a Federal Trade Commission +empowered to inquire into the methods of corporations and lodge +complaints against concerns "using any unfair method of competition." In +only one respect was the severity of the Democratic policy relaxed. An +act of 1918 provided that the Sherman law should not apply to companies +engaged in export trade, the purpose being to encourage large +corporations to enter foreign commerce. + +The effect of this whole body of anti-trust legislation, in spite of +much labor on it, remained problematical. Very few combinations were +dissolved as a result of it. Startling investigations were made into +alleged abuses on the part of trusts; but it could hardly be said that +huge business concerns had lost any of their predominance in American +industry. + +=Labor Legislation.=--By no mere coincidence, the Clayton Anti-trust law +of 1914 made many concessions to organized labor. It declared that "the +labor of a human being is not a commodity or an article of commerce," +and it exempted unions from prosecution as "combinations in restraint of +trade." It likewise defined and limited the uses which the federal +courts might make of injunctions in labor disputes and guaranteed trial +by jury to those guilty of disobedience (see p. 581). + +The Clayton law was followed the next year by the Seamen's Act giving +greater liberty of contract to American sailors and requiring an +improvement of living conditions on shipboard. This was such a drastic +law that shipowners declared themselves unable to meet foreign +competition under its terms, owing to the low labor standards of other +countries. + +Still more extraordinary than the Seamen's Act was the Adamson law of +1916 fixing a standard eight-hour work-day for trainmen on railroads--a +measure wrung from Congress under a threat of a great strike by the four +Railway Brotherhoods. This act, viewed by union leaders as a triumph, +called forth a bitter denunciation of "trade union domination," but it +was easier to criticize than to find another solution of the problem. + +Three other laws enacted during President Wilson's administration were +popular in the labor world. One of them provided compensation for +federal employees injured in the discharge of their duties. Another +prohibited the labor of children under a certain age in the industries +of the nation. A third prescribed for coal miners in Alaska an +eight-hour day and modern safeguards for life and health. There were +positive proofs that organized labor had obtained a large share of power +in the councils of the country. + +=Federal and State Relations.=--If the interference of the government +with business and labor represented a departure from the old idea of +"the less government the better," what can be said of a large body of +laws affecting the rights of states? The prohibition of child labor +everywhere was one indication of the new tendency. Mr. Wilson had once +declared such legislation unconstitutional; the Supreme Court declared +it unconstitutional; but Congress, undaunted, carried it into effect +under the guise of a tax on goods made by children below the age limit. +There were other indications of the drift. Large sums of money were +appropriated by Congress in 1916 to assist the states in building and +maintaining highways. The same year the Farm Loan Act projected the +federal government into the sphere of local money lending. In 1917 +millions of dollars were granted to states in aid of vocational +education, incidentally imposing uniform standards throughout the +country. Evidently the government was no longer limited to the duties of +the policeman. + +=The Prohibition Amendment.=--A still more significant form of +intervention in state affairs was the passage, in December, 1917, of an +amendment to the federal Constitution establishing national prohibition +of the manufacture and sale of intoxicating liquors as beverages. This +was the climax of a historical movement extending over half a century. +In 1872, a National Prohibition party, launched three years before, +nominated its first presidential candidate and inaugurated a campaign of +agitation. Though its vote was never large, the cause for which it +stood found increasing favor among the people. State after state by +popular referendum abolished the liquor traffic within its borders. By +1917 at least thirty-two of the forty-eight were "dry." When the federal +amendment was submitted for approval, the ratification was surprisingly +swift. In a little more than a year, namely, on January 16, 1919, it was +proclaimed. Twelve months later the amendment went into effect. + + +COLONIAL AND FOREIGN POLICIES + +=The Philippines and Porto Rico.=--Independence for the Philippines and +larger self-government for Porto Rico had been among the policies of the +Democratic party since the campaign of 1900. President Wilson in his +annual messages urged upon Congress more autonomy for the Filipinos and +a definite promise of final independence. The result was the Jones +Organic Act for the Philippines passed in 1916. This measure provided +that the upper as well as the lower house of the Philippine legislature +should be elected by popular vote, and declared it to be the intention +of the United States to grant independence "as soon as a stable +government can be established." This, said President Wilson on signing +the bill, is "a very satisfactory advance in our policy of extending to +them self-government and control of their own affairs." The following +year Congress, yielding to President Wilson's insistence, passed a new + +organic act for Porto Rico, making both houses of the legislature +elective and conferring American citizenship upon the inhabitants of the +island. + +[Illustration: THE CARIBBEAN REGION] + +=American Power in the Caribbean.=--While extending more self-government +to its dominions, the United States enlarged its sphere of influence in +the Caribbean. The supervision of finances in Santo Domingo, inaugurated +in Roosevelt's administration, was transformed into a protectorate under +Wilson. In 1914 dissensions in the republic led to the landing of +American marines to "supervise" the elections. Two years later, an +officer in the American navy, with authority from Washington, placed +the entire republic "in a state of military occupation." He proceeded to +suspend the government and laws of the country, exile the president, +suppress the congress, and substitute American military authority. In +1919 a consulting board of four prominent Dominicans was appointed to +aid the American military governor; but it resigned the next year after +making a plea for the restoration of independence to the republic. For +all practical purposes, it seemed, the sovereignty of Santo Domingo had +been transferred to the United States. + +In the neighboring republic of Haiti, a similar state of affairs +existed. In the summer of 1915 a revolution broke out there--one of a +long series beginning in 1804--and our marines were landed to restore +order. Elections were held under the supervision of American officers, +and a treaty was drawn up placing the management of Haitian finances and +the local constabulary under American authority. In taking this action, +our Secretary of State was careful to announce: "The United States +government has no purpose of aggression and is entirely disinterested in +promoting this protectorate." Still it must be said that there were +vigorous protests on the part of natives and American citizens against +the conduct of our agents in the island. In 1921 President Wilson was +considering withdrawal. + +In line with American policy in the West Indian waters was the purchase +in 1917 of the Danish Islands just off the coast of Porto Rico. The +strategic position of the islands, especially in relation to Haiti and +Porto Rico, made them an object of American concern as early as 1867, +when a treaty of purchase was negotiated only to be rejected by the +Senate of the United States. In 1902 a second arrangement was made, but +this time it was defeated by the upper house of the Danish parliament. +The third treaty brought an end to fifty years of bargaining and the +Stars and Stripes were raised over St. Croix, St. Thomas, St. John, and +numerous minor islands scattered about in the neighborhood. "It would be +suicidal," commented a New York newspaper, "for America, on the +threshold of a great commercial expansion in South America, to suffer a +Heligoland, or a Gibraltar, or an Aden to be erected by her rivals at +the mouth of her Suez." On the mainland American power was strengthened +by the establishment of a protectorate over Nicaragua in 1916. + +=Mexican Relations.=--The extension of American enterprise southward +into Latin America, of which the operations in the Caribbean regions +were merely one phase, naturally carried Americans into Mexico to +develop the natural resources of that country. Under the iron rule of +General Porfirio Diaz, established in 1876 and maintained with only a +short break until 1911, Mexico had become increasingly attractive to our +business men. On the invitation of President Diaz, they had invested +huge sums in Mexican lands, oil fields, and mines, and had laid the +foundations of a new industrial order. The severe regime instituted by +Diaz, however, stirred popular discontent. The peons, or serfs, demanded +the break-up of the great estates, some of which had come down from the +days of Cortez. Their clamor for "the restoration of the land to the +people could not be silenced." In 1911 Diaz was forced to resign and +left the country. + +Mexico now slid down the path to disorder. Revolutions and civil +commotions followed in swift succession. A liberal president, Madero, +installed as the successor to Diaz, was deposed in 1913 and brutally +murdered. Huerta, a military adventurer, hailed for a time as another +"strong man," succeeded Madero whose murder he was accused of +instigating. Although Great Britain and nearly all the powers of Europe +accepted the new government as lawful, the United States steadily +withheld recognition. In the meantime Mexico was torn by insurrections +under the leadership of Carranza, a friend of Madero, Villa, a bandit of +generous pretensions, and Zapata, a radical leader of the peons. Without +the support of the United States, Huerta was doomed. + +In the summer of 1914, the dictator resigned and fled from the capital, +leaving the field to Carranza. For six years the new president, +recognized by the United States, held a precarious position which he +vigorously strove to strengthen against various revolutionary movements. +At length in 1920, he too was deposed and murdered, and another military +chieftain, Obregon, installed in power. + +These events right at our door could not fail to involve the government +of the United States. In the disorders many American citizens lost their +lives. American property was destroyed and land owned by Americans was +confiscated. A new Mexican constitution, in effect nationalizing the +natural resources of the country, struck at the rights of foreign +investors. Moreover the Mexican border was in constant turmoil. Even in +the last days of his administration, Mr. Taft felt compelled to issue a +solemn warning to the Mexican government protesting against the +violation of American rights. + +President Wilson, soon after his inauguration, sent a commissioner to +Mexico to inquire into the situation. Although he declared a general +policy of "watchful waiting," he twice came to blows with Mexican +forces. In 1914 some American sailors at Tampico were arrested by a +Mexican officer; the Mexican government, although it immediately +released the men, refused to make the required apology for the incident. +As a result President Wilson ordered the landing of American forces at +Vera Cruz and the occupation of the city. A clash of arms followed in +which several Americans were killed. War seemed inevitable, but at this +juncture the governments of Argentina, Brazil, and Chile tendered their +good offices as mediators. After a few weeks of negotiation, during +which Huerta was forced out of power, American forces were withdrawn +from Vera Cruz and the incident closed. + +In 1916 a second break in amicable relations occurred. In the spring of +that year a band of Villa's men raided the town of Columbus, New Mexico, +killing several citizens and committing robberies. A punitive expedition +under the command of General Pershing was quickly sent out to capture +the offenders. Against the protests of President Carranza, American +forces penetrated deeply into Mexico without effecting the object of +the undertaking. This operation lasted until January, 1917, when the +imminence of war with Germany led to the withdrawal of the American +soldiers. Friendly relations were resumed with the Mexican government +and the policy of "watchful waiting" was continued. + + +THE UNITED STATES AND THE EUROPEAN WAR + +=The Outbreak of the War.=--In the opening days of August, 1914, the +age-long jealousies of European nations, sharpened by new imperial +ambitions, broke out in another general conflict such as had shaken the +world in the days of Napoleon. On June 28, the heir to the +Austro-Hungarian throne was assassinated at Serajevo, the capital of +Bosnia, an Austrian province occupied mainly by Serbs. With a view to +stopping Serbian agitation for independence, Austria-Hungary laid the +blame for this incident on the government of Serbia and made humiliating +demands on that country. Germany at once proposed that the issue should +be regarded as "an affair which should be settled solely between +Austria-Hungary and Serbia"; meaning that the small nation should be +left to the tender mercies of a great power. Russia refused to take this +view. Great Britain proposed a settlement by mediation. Germany backed +up Austria to the limit. To use the language of the German authorities: +"We were perfectly aware that a possible warlike attitude of +Austria-Hungary against Serbia might bring Russia upon the field and +that it might therefore involve us in a war, in accordance with our +duties as allies. We could not, however, in these vital interests of +Austria-Hungary which were at stake, advise our ally to take a yielding +attitude not compatible with his dignity nor deny him our assistance." +That made the war inevitable. + +Every day of the fateful August, 1914, was crowded with momentous +events. On the 1st, Germany declared war on Russia. On the 2d, the +Germans invaded the little duchy of Luxemburg and notified the King of +Belgium that they were preparing to violate the neutrality of his realm +on their way to Paris. On the same day, Great Britain, anxiously +besought by the French government, promised the aid of the British navy +if German warships made hostile demonstrations in the Channel. August +3d, the German government declared war on France. The following day, +Great Britain demanded of Germany respect for Belgian neutrality and, +failing to receive the guarantee, broke off diplomatic relations. On the +5th, the British prime minister announced that war had opened between +England and Germany. The storm now broke in all its pitiless fury. + +=The State of American Opinion.=--Although President Wilson promptly +proclaimed the neutrality of the United States, the sympathies of a +large majority of the American people were without doubt on the side of +Great Britain and France. To them the invasion of the little kingdom of +Belgium and the horrors that accompanied German occupation were odious +in the extreme. Moreover, they regarded the German imperial government +as an autocratic power wielded in the interest of an ambitious military +party. The Kaiser, William II, and the Crown Prince were the symbols of +royal arrogance. On the other hand, many Americans of German descent, in +memory of their ties with the Fatherland, openly sympathized with the +Central Powers; and many Americans of Irish descent, recalling their +long and bitter struggle for home rule in Ireland, would have regarded +British defeat as a merited redress of ancient grievances. + +Extremely sensitive to American opinion, but ill informed about it, the +German government soon began systematic efforts to present its cause to +the people of the United States in the most favorable light possible. +Dr. Bernhard Dernburg, the former colonial secretary of the German +empire, was sent to America as a special agent. For months he filled the +newspapers, magazines, and periodicals with interviews, articles, and +notes on the justice of the Teutonic cause. From a press bureau in New +York flowed a stream of pamphlets, leaflets, and cartoons. A magazine, +"The Fatherland," was founded to secure "fair play for Germany and +Austria." Several professors in American universities, who had received +their training in Germany, took up the pen in defense of the Central +Empires. The German language press, without exception it seems, the +National German Alliance, minor German societies, and Lutheran churches +came to the support of the German cause. Even the English language +papers, though generally favorable to the Entente Allies, opened their +columns in the interest of equal justice to the spokesmen for all the +contending powers of Europe. + +Before two weeks had elapsed the controversy had become so intense that +President Wilson (August 18, 1914) was moved to caution his countrymen +against falling into angry disputes. "Every man," he said, "who really +loves America will act and speak in the true spirit of neutrality which +is the spirit of impartiality and fairness and friendliness to all +concerned.... We must be impartial in thought as well as in action, must +put a curb upon our sentiments as well as upon every transaction that +might be construed as a preference of one party to the struggle before +another." + +=The Clash over American Trade.=--As in the time of the Napoleonic wars, +the conflict in Europe raised fundamental questions respecting rights of +Americans trading with countries at peace as well as those at war. On +this point there existed on August 1, 1914, a fairly definite body of +principles by which nations were bound. Among them the following were of +vital significance. In the first place, it was recognized that an enemy +merchant ship caught on the high seas was a legitimate prize of war +which might be seized and confiscated. In the second place, it was +agreed that "contraband of war" found on an enemy or neutral ship was a +lawful prize; any ship suspected of carrying it was liable to search and +if caught with forbidden goods was subject to seizure. In the third +place, international law prescribed that a peaceful merchant ship, +whether belonging to an enemy or to a neutral country, should not be +destroyed or sunk without provision for the safety of crew and +passengers. In the fourth place, it was understood that a belligerent +had the right, if it could, to blockade the ports of an enemy and +prevent the ingress and egress of all ships; but such a blockade, to be +lawful, had to be effective. + +These general principles left undetermined two important matters: "What +is an effective blockade?" and "What is contraband of war?" The task of +answering these questions fell to Great Britain as mistress of the seas. +Although the German submarines made it impossible for her battleships to +maintain a continuous patrol of the waters in front of blockaded ports, + +she declared the blockade to be none the less "effective" because her +navy was supreme. As to contraband of war Great Britain put such a broad +interpretation upon the term as to include nearly every important +article of commerce. Early in 1915 she declared even cargoes of grain +and flour to be contraband, defending the action on the ground that the +German government had recently taken possession of all domestic stocks +of corn, wheat, and flour. + +A new question arose in connection with American trade with the neutral +countries surrounding Germany. Great Britain early began to intercept +ships carrying oil, gasoline, and copper--all war materials of prime +importance--on the ground that they either were destined ultimately to +Germany or would release goods for sale to Germans. On November 2, 1914, +the English government announced that the Germans wore sowing mines in +open waters and that therefore the whole of the North Sea was a military +zone. Ships bound for Denmark, Norway, and Sweden were ordered to come +by the English Channel for inspection and sailing directions. In effect, +Americans were now licensed by Great Britain to trade in certain +commodities and in certain amounts with neutral countries. + +Against these extraordinary measures, the State Department at Washington +lodged pointed objections, saying: "This government is reluctantly +forced to the conclusion that the present policy of His Majesty's +government toward neutral ships and cargoes exceeds the manifest +necessity of a belligerent and constitutes restrictions upon the rights +of American citizens on the high seas, which are not justified by the +rules of international law or required under the principle of +self-preservation." + +=Germany Begins the Submarine Campaign.=--Germany now announced that, on +and after February 18, 1915, the whole of the English Channel and the +waters around Great Britain would be deemed a war zone and that every +enemy ship found therein would be destroyed. The German decree added +that, as the British admiralty had ordered the use of neutral flags by +English ships in time of distress, neutral vessels would be in danger of +destruction if found in the forbidden area. It was clear that Germany +intended to employ submarines to destroy shipping. A new factor was thus +introduced into naval warfare, one not provided for in the accepted laws +of war. A warship overhauling a merchant vessel could easily take its +crew and passengers on board for safe keeping as prescribed by +international law; but a submarine ordinarily could do nothing of the +sort. Of necessity the lives and the ships of neutrals, as well as of +belligerents, were put in mortal peril. This amazing conduct Germany +justified on the ground that it was mere retaliation against Great +Britain for her violations of international law. + +The response of the United States to the ominous German order was swift +and direct. On February 10, 1915, it warned Germany that if her +commanders destroyed American lives and ships in obedience to that +decree, the action would "be very hard indeed to reconcile with the +friendly relations happily subsisting between the two governments." The +American note added that the German imperial government would be held to +"strict accountability" and all necessary steps would be taken to +safeguard American lives and American rights. This was firm and clear +language, but the only response which it evoked from Germany was a +suggestion that, if Great Britain would allow food supplies to pass +through the blockade, the submarine campaign would be dropped. + +=Violations of American Rights.=--Meanwhile Germany continued to ravage +shipping on the high seas. On January 28, a German raider sank the +American ship, _William P. Frye_, in the South Atlantic; on March 28, a +British ship, the _Falaba_, was sunk by a submarine and many on board, +including an American citizen, were killed; and on April 28, a German +airplane dropped bombs on the American steamer _Cushing_. On the morning +of May 1, 1915, Americans were astounded to see in the newspapers an +advertisement, signed by the German Imperial Embassy, warning travelers +of the dangers in the war zone and notifying them that any who ventured +on British ships into that area did so at their own risk. On that day, +the _Lusitania_, a British steamer, sailed from New York for Liverpool. +On May 7, without warning, the ship was struck by two torpedoes and in a +few minutes went down by the bow, carrying to death 1153 persons +including 114 American men, women, and children. A cry of horror ran +through the country. The German papers in America and a few American +people argued that American citizens had been duly warned of the danger +and had deliberately taken their lives into their own hands; but the +terrible deed was almost universally condemned by public opinion. + +=The _Lusitania_ Notes.=--On May 14, the Department of State at +Washington made public the first of three famous notes on the +_Lusitania_ case. It solemnly informed the German government that "no +warning that an unlawful and inhumane act will be committed can possibly +be accepted as an excuse or palliation for that act or as an abatement +of the responsibility for its commission." It called upon the German +government to disavow the act, make reparation as far as possible, and +take steps to prevent "the recurrence of anything so obviously +subversive of the principles of warfare." The note closed with a clear +caution to Germany that the government of the United States would not +"omit any word or any act necessary to the performance of its sacred +duty of maintaining the rights of the United States and its citizens and +of safeguarding their free exercise and enjoyment." The die was cast; +but Germany in reply merely temporized. + +In a second note, made public on June 11, the position of the United +States was again affirmed. William Jennings Bryan, the Secretary of +State, had resigned because the drift of President Wilson's policy was +not toward mediation but the strict maintenance of American rights, if +need be, by force of arms. The German reply was still evasive and German +naval commanders continued their course of sinking merchant ships. In a +third and final note of July 21, 1915, President Wilson made it clear to +Germany that he meant what he said when he wrote that he would maintain +the rights of American citizens. Finally after much discussion and +shifting about, the German ambassador on September 1, 1915, sent a brief +note to the Secretary of State: "Liners will not be sunk by our +submarines without warning and without safety of the lives of +non-combatants, provided the liners do not try to escape or offer +resistance." Editorially, the New York _Times_ declared: "It is a +triumph not only of diplomacy but of reason, of humanity, of justice, +and of truth." The Secretary of State saw in it "a recognition of the +fundamental principles for which we have contended." + +=The Presidential Election of 1916.=--In the midst of this crisis came +the presidential campaign. On the Republican side everything seemed to +depend upon the action of the Progressives. If the breach created in +1912 could be closed, victory was possible; if not, defeat was certain. +A promise of unity lay in the fact that the conventions of the +Republicans and Progressives were held simultaneously in Chicago. The +friends of Roosevelt hoped that both parties would select him as their +candidate; but this hope was not realized. The Republicans chose, and +the Progressives accepted, Charles E. Hughes, an associate justice of +the federal Supreme Court who, as governor of New York, had won a +national reputation by waging war on "machine politicians." + +In the face of the clamor for expressions of sympathy with one or the +other of the contending powers of Europe, the Republicans chose a middle +course, declaring that they would uphold all American rights "at home +and abroad, by land and by sea." This sentiment Mr. Hughes echoed in his +acceptance speech. By some it was interpreted to mean a firmer policy in +dealing with Great Britain; by others, a more vigorous handling of the +submarine menace. The Democrats, on their side, renominated President +Wilson by acclamation, reviewed with pride the legislative achievements +of the party, and commended "the splendid diplomatic victories of our +great President who has preserved the vital interests of our government +and its citizens and kept us out of war." + +In the election which ensued President Wilson's popular vote exceeded +that cast for Mr. Hughes by more than half a million, while his +electoral vote stood 277 to 254. The result was regarded, and not +without warrant, as a great personal triumph for the President. He had +received the largest vote yet cast for a presidential candidate. The +Progressive party practically disappeared, and the Socialists suffered a +severe set-back, falling far behind the vote of 1912. + +=President Wilson Urges Peace upon the Warring Nations.=--Apparently +convinced that his pacific policies had been profoundly approved by his +countrymen, President Wilson, soon after the election, addressed "peace +notes" to the European belligerents. On December 16, the German Emperor +proposed to the Allied Powers that they enter into peace negotiations, a +suggestion that was treated as a mere political maneuver by the opposing +governments. Two days later President Wilson sent a note to the warring +nations asking them to avow "the terms upon which war might be +concluded." To these notes the Central Powers replied that they were +ready to meet their antagonists in a peace conference; and Allied Powers +answered by presenting certain conditions precedent to a satisfactory +settlement. On January 22, 1917, President Wilson in an address before +the Senate, declared it to be a duty of the United States to take part +in the establishment of a stable peace on the basis of certain +principles. These were, in short: "peace without victory"; the right of +nationalities to freedom and self-government; the independence of +Poland; freedom of the seas; the reduction of armaments; and the +abolition of entangling alliances. The whole world was discussing the +President's remarkable message, when it was dumbfounded to hear, on +January 31, that the German ambassador at Washington had announced the +official renewal of ruthless submarine warfare. + + +THE UNITED STATES AT WAR + +=Steps toward War.=--Three days after the receipt of the news that the +German government intended to return to its former submarine policy, +President Wilson severed diplomatic relations with the German empire. At +the same time he explained to Congress that he desired no conflict with +Germany and would await an "overt act" before taking further steps to +preserve American rights. "God grant," he concluded, "that we may not be +challenged to defend them by acts of willful injustice on the part of +the government of Germany." Yet the challenge came. Between February 26 +and April 2, six American merchant vessels were torpedoed, in most cases +without any warning and without regard to the loss of American lives. +President Wilson therefore called upon Congress to answer the German +menace. The reply of Congress on April 6 was a resolution, passed with +only a few dissenting votes, declaring the existence of a state of war +with Germany. Austria-Hungary at once severed diplomatic relations with +the United States; but it was not until December 7 that Congress, acting +on the President's advice, declared war also on that "vassal of the +German government." + +=American War Aims.=--In many addresses at the beginning and during the +course of the war, President Wilson stated the purposes which actuated +our government in taking up arms. He first made it clear that it was a +war of self-defense. "The military masters of Germany," he exclaimed, +"denied us the right to be neutral." Proof of that lay on every hand. +Agents of the German imperial government had destroyed American lives +and American property on the high seas. They had filled our communities +with spies. They had planted bombs in ships and munition works. They had +fomented divisions among American citizens. + +Though assailed in many ways and compelled to resort to war, the United +States sought no material rewards. "The world must be made safe for +democracy. Its peace must be planted upon the tested foundations of +political liberty. We have no selfish ends to serve. We desire no +conquest, no dominion. We seek no indemnities for ourselves." + +In a very remarkable message read to Congress on January 8, 1918, +President Wilson laid down his famous "fourteen points" summarizing the +ideals for which we were fighting. They included open treaties of peace, +openly arrived at; absolute freedom of navigation upon the seas; the +removal, as far as possible, of trade barriers among nations; reduction +of armaments; adjustment of colonial claims in the interest of the +populations concerned; fair and friendly treatment of Russia; the +restoration of Belgium; righting the wrong done to France in 1871 in the +matter of Alsace-Lorraine; adjustment of Italian frontiers along the +lines of nationality; more liberty for the peoples of Austria-Hungary; +the restoration of Serbia and Rumania; the readjustment of the Turkish +Empire; an independent Poland; and an association of nations to afford +mutual guarantees to all states great and small. On a later occasion +President Wilson elaborated the last point, namely, the formation of a +league of nations to guarantee peace and establish justice among the +powers of the world. Democracy, the right of nations to determine their +own fate, a covenant of enduring peace--these were the ideals for which +the American people were to pour out their blood and treasure. + +=The Selective Draft.=--The World War became a war of nations. The +powers against which we were arrayed had every able-bodied man in +service and all their resources, human and material, thrown into the +scale. For this reason, President Wilson summoned the whole people of +the United States to make every sacrifice necessary for victory. +Congress by law decreed that the national army should be chosen from all +male citizens and males not enemy aliens who had declared their +intention of becoming citizens. By the first act of May 18, 1917, it +fixed the age limits at twenty-one to thirty-one inclusive. Later, in +August, 1918, it extended them to eighteen and forty-five. From the men +of the first group so enrolled were chosen by lot the soldiers for the +World War who, with the regular army and the national guard, formed the +American Expeditionary Force upholding the American cause on the +battlefields of Europe. "The whole nation," said the President, "must be +a team in which each man shall play the part for which he is best +fitted." + +=Liberty Loans and Taxes.=--In order that the military and naval forces +should be stinted in no respect, the nation was called upon to place its +financial resources at the service of the government. Some urged the +"conscription of wealth as well as men," meaning the support of the war +out of taxes upon great fortunes; but more conservative counsels +prevailed. Four great Liberty Loans were floated, all the agencies of +modern publicity being employed to enlist popular interest. The first +loan had four and a half million subscribers; the fourth more than +twenty million. Combined with loans were heavy taxes. A progressive tax +was laid upon incomes beginning with four per cent on incomes in the +lower ranges and rising to sixty-three per cent of that part of any +income above $2,000,000. A progressive tax was levied upon inheritances. +An excess profits tax was laid upon all corporations and partnerships, +rising in amount to sixty per cent of the net income in excess of +thirty-three per cent on the invested capital. "This," said a +distinguished economist, "is the high-water mark in the history of +taxation. Never before in the annals of civilization has an attempt been +made to take as much as two-thirds of a man's income by taxation." + +=Mobilizing Material Resources.=--No stone was left unturned to provide +the arms, munitions, supplies, and transportation required in the +gigantic undertaking. Between the declaration of war and the armistice, +Congress enacted law after law relative to food supplies, raw materials, +railways, mines, ships, forests, and industrial enterprises. No power +over the lives and property of citizens, deemed necessary to the +prosecution of the armed conflict, was withheld from the government. The +farmer's wheat, the housewife's sugar, coal at the mines, labor in the +factories, ships at the wharves, trade with friendly countries, the +railways, banks, stores, private fortunes--all were mobilized and laid +under whatever obligations the government deemed imperative. Never was a +nation more completely devoted to a single cause. + +A law of August 10, 1917, gave the President power to fix the prices of +wheat and coal and to take almost any steps necessary to prevent +monopoly and excessive prices. By a series of measures, enlarging the +principles of the shipping act of 1916, ships and shipyards were brought +under public control and the government was empowered to embark upon a +great ship-building program. In December, 1917, the government assumed +for the period of the war the operation of the railways under a +presidential proclamation which was elaborated in March, 1918, by act of +Congress. In the summer of 1918 the express, telephone, and telegraph +business of the entire country passed under government control. By war +risk insurance acts allowances were made for the families of enlisted +men, compensation for injuries was provided, death benefits were +instituted, and a system of national insurance was established in the +interest of the men in service. Never before in the history of the +country had the government taken such a wise and humane view of its +obligations to those who served on the field of battle or on the seas. + +=The Espionage and Sedition Acts.=--By the Espionage law of June 15, +1917, and the amending law, known as the Sedition act, passed in May of +the following year, the government was given a drastic power over the +expression of opinion. The first measure penalized those who conveyed +information to a foreign country to be used to the injury of the United +States; those who made false statements designed to interfere with the +military or naval forces of the United States; those who attempted to +stir up insubordination or disloyalty in the army and navy; and those +who willfully obstructed enlistment. The Sedition act was still more +severe and sweeping in its terms. It imposed heavy penalties upon any +person who used "abusive language about the government or institutions +of the country." It authorized the dismissal of any officer of the +government who committed "disloyal acts" or uttered "disloyal language," +and empowered the Postmaster General to close the mails to persons +violating the law. This measure, prepared by the Department of Justice, +encountered vigorous opposition in the Senate, where twenty-four +Republicans and two Democrats voted against it. Senator Johnson of +California denounced it as a law "to suppress the freedom of the press +in the United States and to prevent any man, no matter who he is, from +expressing legitimate criticism concerning the present government." The +constitutionality of the acts was attacked; but they were sustained by +the Supreme Court and stringently enforced. + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +THE LAUNCHING OF A SHIP AT THE GREAT NAVAL YARDS, NEWARK, N.J.] + +=Labor and the War.=--In view of the restlessness of European labor +during the war and especially the proletarian revolution in Russia in +November, 1917, some anxiety was early expressed as to the stand which +organized labor might take in the United States. It was, however, soon +dispelled. Samuel Gompers, speaking for the American Federation of +Labor, declared that "this is labor's war," and pledged the united +support of all the unions. There was some dissent. The Socialist party +denounced the war as a capitalist quarrel; but all the protests combined +were too slight to have much effect. American labor leaders were sent to +Europe to strengthen the wavering ranks of trade unionists in war-worn +England, France, and Italy. Labor was given representation on the +important boards and commissions dealing with industrial questions. +Trade union standards were accepted by the government and generally +applied in industry. The Department of Labor became one of the powerful +war centers of the nation. In a memorable address to the American +Federation of Labor, President Wilson assured the trade unionists that +labor conditions should not be made unduly onerous by the war and +received in return a pledge of loyalty from the Federation. Recognition +of labor's contribution to winning the war was embodied in the treaty of +peace, which provided for a permanent international organization to +promote the world-wide effort of labor to improve social conditions. +"The league of nations has for its object the establishment of universal +peace," runs the preamble to the labor section of the treaty, "and such +a peace can be established only if it is based upon social justice.... +The failure of any nation to adopt humane conditions of labor is an +obstacle in the way of other nations which desire to improve the +conditions in their own countries." + +=The American Navy in the War.=--As soon as Congress declared war the +fleet was mobilized, American ports were thrown open to the warships of +the Allies, immediate provision was made for increasing the number of +men and ships, and a contingent of war vessels was sent to cooperate +with the British and French in their life-and-death contest with +submarines. Special effort was made to stimulate the production of +"submarine chasers" and "scout cruisers" to be sent to the danger zone. +Convoys were provided to accompany the transports conveying soldiers to +France. Before the end of the war more than three hundred American +vessels and 75,000 officers and men were operating in European waters. +Though the German fleet failed to come out and challenge the sea power +of the Allies, the battleships of the United States were always ready to +do their full duty in such an event. As things turned out, the service +of the American navy was limited mainly to helping in the campaign that +wore down the submarine menace to Allied shipping. + +=The War in France.=--Owing to the peculiar character of the warfare in +France, it required a longer time for American military forces to get +into action; but there was no unnecessary delay. Soon after the +declaration of war, steps were taken to give military assistance to the +Allies. The regular army was enlarged and the troops of the national +guard were brought into national service. On June 13, General John J. +Pershing, chosen head of the American Expeditionary Forces, reached +Paris and began preparations for the arrival of our troops. In June, the +vanguard of the army reached France. A slow and steady stream followed. +As soon as the men enrolled under the draft were ready, it became a +flood. During the period of the war the army was enlarged from about +190,000 men to 3,665,000, of whom more than 2,000,000 were in France +when the armistice was signed. + +Although American troops did not take part on a large scale until the +last phase of the war in 1918, several battalions of infantry were in +the trenches by October, 1917, and had their first severe encounter with +the Germans early in November. In January, 1918, they took over a part +of the front line as an American sector. In March, General Pershing +placed our forces at the disposal of General Foch, commander-in-chief of +the Allied armies. The first division, which entered the Montdidier +salient in April, soon was engaged with the enemy, "taking with splendid +dash the town of Cantigny and all other objectives, which were organized +and held steadfastly against vicious counter attacks and galling +artillery fire." + +[Illustration: _Copyright by Underwood and Underwood, N.Y._ + +TROOPS RETURNING FROM FRANCE] + +When the Germans launched their grand drives toward the Marne and Paris, +in June and July, 1918, every available man was placed at General Foch's +command. At Belleau Wood, at Chateau-Thierry, and other points along the +deep salient made by the Germans into the French lines, American +soldiers distinguished themselves by heroic action. They also played an +important role in the counter attack that "smashed" the salient and +drove the Germans back. + +In September, American troops, with French aid, "wiped out" the German +salient at St. Mihiel. By this time General Pershing was ready for the +great American drive to the northeast in the Argonne forest, while he +also cooperated with the British in the assault on the Hindenburg line. +In the Meuse-Argonne battle, our soldiers encountered some of the most +severe fighting of the war and pressed forward steadily against the most +stubborn resistance from the enemy. On the 6th of November, reported +General Pershing, "a division of the first corps reached a point on the +Meuse opposite Sedan, twenty-five miles from our line of departure. The +strategical goal which was our highest hope was gained. We had cut the +enemy's main line of communications and nothing but a surrender or an +armistice could save his army from complete disaster." Five days later +the end came. On the morning of November 11, the order to cease firing +went into effect. The German army was in rapid retreat and +demoralization had begun. The Kaiser had abdicated and fled into +Holland. The Hohenzollern dreams of empire were shattered. In the +fifty-second month, the World War, involving nearly every civilized +nation on the globe, was brought to a close. More than 75,000 American +soldiers and sailors had given their lives. More than 250,000 had been +wounded or were missing or in German prison camps. + +[Illustration: WESTERN BATTLE LINES OF THE VARIOUS YEARS OF THE +WORLD WAR] + + +THE SETTLEMENT AT PARIS + +=The Peace Conference.=--On January 18, 1919, a conference of the Allied +and Associated Powers assembled to pronounce judgment upon the German +empire and its defeated satellites: Austria-Hungary, Bulgaria, and +Turkey. It was a moving spectacle. Seventy-two delegates spoke for +thirty-two states. The United States, Great Britain, France, Italy, and +Japan had five delegates each. Belgium, Brazil, and Serbia were each +assigned three. Canada, Australia, South Africa, India, China, Greece, +Hedjaz, Poland, Portugal, Rumania, Siam, and Czechoslovakia were +allotted two apiece. The remaining states of New Zealand, Bolivia, Cuba, +Ecuador, Guatemala, Haiti, Honduras, Liberia, Nicaragua, Panama, Peru, +and Uruguay each had one delegate. President Wilson spoke in person for +the United States. England, France, and Italy were represented by their +premiers: David Lloyd George, Georges Clemenceau, and Vittorio Orlando. + +[Illustration: PREMIERS LLOYD GEORGE, ORLANDO AND CLEMENCEAU AND +PRESIDENT WILSON AT PARIS] + +=The Supreme Council.=--The real work of the settlement was first +committed to a Supreme Council of ten representing the United States, +Great Britain, France, Italy, and Japan. This was later reduced to five +members. Then Japan dropped out and finally Italy, leaving only +President Wilson and the Premiers, Lloyd George and Clemenceau, the +"Big Three," who assumed the burden of mighty decisions. On May 6, their +work was completed and in a secret session of the full conference the +whole treaty of peace was approved, though a few of the powers made +reservations or objections. The next day the treaty was presented to the +Germans who, after prolonged protests, signed on the last day of grace, +June 28. This German treaty was followed by agreements with Austria, +Hungary, Bulgaria, and Turkey. Collectively these great documents formed +the legal basis of the general European settlement. + +=The Terms of the Settlement.=--The combined treaties make a huge +volume. The German treaty alone embraces about 80,000 words. +Collectively they cover an immense range of subjects which may be +summarized under five heads: (1) The territorial settlement in Europe; +(2) the destruction of German military power; (3) reparations for +damages done by Germany and her allies; (4) the disposition of German +colonies and protectorates; and (5) the League of Nations. + +Germany was reduced by the cession of Alsace-Lorraine to France and the +loss of several other provinces. Austria-Hungary was dissolved and +dismembered. Russia was reduced by the creation of new states on the +west. Bulgaria was stripped of her gains in the recent Balkan wars. +Turkey was dismembered. Nine new independent states were created: +Poland, Finland, Lithuania, Latvia, Esthonia, Ukraine, Czechoslovakia, +Armenia, and Hedjaz. Italy, Greece, Rumania, and Serbia were enlarged by +cessions of territory and Serbia was transformed into the great state of +Jugoslavia. + +The destruction of German military power was thorough. The entire navy, +with minor exceptions, was turned over to the Allied and Associated +Powers; Germany's total equipment for the future was limited to six +battleships and six light cruisers, with certain small vessels but no +submarines. The number of enlisted men and officers for the army was +fixed at not more than 100,000; the General Staff was dissolved; and the +manufacture of munitions restricted. + +Germany was compelled to accept full responsibility for all damages; to +pay five billion dollars in cash and goods, and to make certain other +payments which might be ordered from time to time by an inter-allied +reparations commission. She was also required to deliver to Belgium, +France, and Italy, millions of tons of coal every year for ten years; +while by way of additional compensation to France the rich coal basin of +the Saar was placed under inter-allied control to be exploited under +French administration for a period of at least fifteen years. Austria +and the other associates of Germany were also laid under heavy +obligations to the victors. Damages done to shipping by submarines and +other vessels were to be paid for on the basis of ton for ton. + +The disposition of the German colonies and the old Ottoman empire +presented knotty problems. It was finally agreed that the German +colonies and Turkish provinces which were in a backward stage of +development should be placed under the tutelage of certain powers acting +as "mandatories" holding them in "a sacred trust of civilization." An +exception to the mandatory principle arose in the case of German rights +in Shantung, all of which were transferred directly to Japan. It was +this arrangement that led the Chinese delegation to withhold their +signatures from the treaty. + +=The League of Nations.=--High among the purposes which he had in mind +in summoning the nation to arms, President Wilson placed the desire to +put an end to war. All through the United States the people spoke of the +"war to end war." No slogan called forth a deeper response from the +public. The President himself repeatedly declared that a general +association of nations must be formed to guard the peace and protect all +against the ambitions of the few. "As I see it," he said in his address +on opening the Fourth Liberty Loan campaign, "the constitution of the +League of Nations and the clear definition of its objects must be a +part, in a sense the most essential part, of the peace settlement +itself." + +Nothing was more natural, therefore, than Wilson's insistence at Paris +upon the formation of an international association. Indeed he had gone +to Europe in person largely to accomplish that end. Part One of the +treaty with Germany, the Covenant of the League of Nations, was due to +his labors more than to any other influence. Within the League thus +created were to be embraced all the Allied and Associated Powers and +nearly all the neutrals. By a two-thirds vote of the League Assembly the +excluded nations might be admitted. + +The agencies of the League of Nations were to be three in number: (1) a +permanent secretariat located at Geneva; (2) an Assembly consisting of +one delegate from each country, dominion, or self-governing colony +(including Canada, Australia, South Africa, New Zealand, and India); (3) +and a Council consisting of representatives of the United States, Great +Britain, France, Italy, and Japan, and four other representatives +selected by the Assembly from time to time. + +The duties imposed on the League and the obligations accepted by its +members were numerous and important. The Council was to take steps to +formulate a scheme for the reduction of armaments and to submit a plan +for the establishment of a permanent Court of International Justice. The +members of the League (Article X) were to respect and preserve as +against external aggression the territorial integrity and existing +political independence of all the associated nations. They were to +submit to arbitration or inquiry by the Council all disputes which could +not be adjusted by diplomacy and in no case to resort to war until three +months after the award. Should any member disregard its covenants, its +action would be considered an act of war against the League, which would +accordingly cut off the trade and business of the hostile member and +recommend through the Council to the several associated governments the +military measures to be taken. In case the decision in any arbitration +of a dispute was unanimous, the members of the League affected by it +were to abide by it. + +Such was the settlement at Paris and such was the association of nations +formed to promote the peace of the world. They were quickly approved by +most of the powers, and the first Assembly of the League of Nations met +at Geneva late in 1920. + +=The Treaty in the United States.=--When the treaty was presented to the +United States Senate for approval, a violent opposition appeared. In +that chamber the Republicans had a slight majority and a two-thirds vote +was necessary for ratification. The sentiment for and against the treaty +ran mainly along party lines; but the Republicans were themselves +divided. The major portion, known as "reservationists," favored +ratification with certain conditions respecting American rights; while a +small though active minority rejected the League of Nations in its +entirety, announcing themselves to be "irreconcilables." The grounds of +this Republican opposition lay partly in the terms of peace imposed on +Germany and partly in the Covenant of the League of Nations. Exception +was taken to the clauses which affected the rights of American citizens +in property involved in the adjustment with Germany, but the burden of +criticism was directed against the League. Article X guaranteeing +against external aggression the political independence and territorial +integrity of the members of the League was subjected to a specially +heavy fire; while the treatment accorded to China and the sections +affecting American internal affairs were likewise attacked as "unjust +and dangerous." As an outcome of their deliberations, the Republicans +proposed a long list of reservations which touched upon many of the +vital parts of the treaty. These were rejected by President Wilson as +amounting in effect to a "nullification of the treaty." As a deadlock +ensued the treaty was definitely rejected, owing to the failure of its +sponsors to secure the requisite two-thirds vote. + +[Illustration: EUROPE] + +=The League of Nations in the Campaign of 1920.=--At this juncture the +presidential campaign of 1920 opened. The Republicans, while condemning +the terms of the proposed League, endorsed the general idea of an +international agreement to prevent war. Their candidate, Senator +Warren G. Harding of Ohio, maintained a similar position without saying +definitely whether the League devised at Paris could be recast in such a +manner as to meet his requirements. The Democrats, on the other hand, +while not opposing limitations clarifying the obligations of the United +States, demanded "the immediate ratification of the treaty without +reservations which would impair its essential integrity." The Democratic +candidate, Governor James M. Cox, of Ohio, announced his firm conviction +that the United States should "go into the League," without closing the +door to mild reservations; he appealed to the country largely on that +issue. The election of Senator Harding, in an extraordinary "landslide," +coupled with the return of a majority of Republicans to the Senate, made +uncertain American participation in the League of Nations. + +=The United States and International Entanglements.=--Whether America +entered the League or not, it could not close its doors to the world and +escape perplexing international complications. It had ever-increasing +financial and commercial connections with all other countries. Our +associates in the recent war were heavily indebted to our government. +The prosperity of American industries depended to a considerable extent +upon the recovery of the impoverished and battle-torn countries of +Europe. + +There were other complications no less specific. The United States was +compelled by force of circumstances to adopt a Russian policy. The +government of the Czar had been overthrown by a liberal revolution, +which in turn had been succeeded by an extreme, communist +"dictatorship." The Bolsheviki, or majority faction of the socialists, +had obtained control of the national council of peasants, workingmen, +and soldiers, called the soviet, and inaugurated a radical regime. They +had made peace with Germany in March, 1918. Thereupon the United States +joined England, France, and Japan in an unofficial war upon them. After +the general settlement at Paris in 1919, our government, while +withdrawing troops from Siberia and Archangel, continued in its refusal +to recognize the Bolshevists or to permit unhampered trade with them. +President Wilson repeatedly denounced them as the enemies of +civilization and undertook to lay down for all countries the principles +which should govern intercourse with Russia. + +Further international complications were created in connection with the +World War, wholly apart from the terms of peace or the League of +Nations. The United States had participated in a general European +conflict which changed the boundaries of countries, called into being +new nations, and reduced the power and territories of the vanquished. +Accordingly, it was bound to face the problem of how far it was prepared +to cooperate with the victors in any settlement of Europe's +difficulties. By no conceivable process, therefore, could America be +disentangled from the web of world affairs. Isolation, if desirable, had +become impossible. Within three hundred years from the founding of the +tiny settlements at Jamestown and Plymouth, America, by virtue of its +institutions, its population, its wealth, and its commerce, had become +first among the nations of the earth. By moral obligations and by +practical interests its fate was thus linked with the destiny of all +mankind. + + +SUMMARY OF DEMOCRACY AND THE WORLD WAR + +The astounding industrial progress that characterized the period +following the Civil War bequeathed to the new generation many perplexing +problems connected with the growth of trusts and railways, the +accumulation of great fortunes, the increase of poverty in the +industrial cities, the exhaustion of the free land, and the acquisition +of dominions in distant seas. As long as there was an abundance of land +in the West any able-bodied man with initiative and industry could +become an independent farmer. People from the cities and immigrants from +Europe had always before them that gateway to property and prosperity. +When the land was all gone, American economic conditions inevitably +became more like those of Europe. + +Though the new economic questions had been vigorously debated in many +circles before his day, it was President Roosevelt who first discussed +them continuously from the White House. The natural resources of the +country were being exhausted; he advocated their conservation. Huge +fortunes were being made in business creating inequalities in +opportunity; he favored reducing them by income and inheritance taxes. +Industries were disturbed by strikes; he pressed arbitration upon +capital and labor. The free land was gone; he declared that labor was in +a less favorable position to bargain with capital and therefore should +organize in unions for collective bargaining. There had been wrong-doing +on the part of certain great trusts; those responsible should be +punished. + +The spirit of reform was abroad in the land. The spoils system was +attacked. It was alleged that the political parties were dominated by +"rings and bosses." The United States Senate was called "a millionaires' +club." Poverty and misery were observed in the cities. State +legislatures and city governments were accused of corruption. + +In answer to the charges, remedies were proposed and adopted. Civil +service reform was approved. The Australian ballot, popular election of +Senators, the initiative, referendum, and recall, commission and city +manager plans for cities, public regulation of railways, compensation +for those injured in industries, minimum wages for women and children, +pensions for widows, the control of housing in the cities--these and a +hundred other reforms were adopted and tried out. The national watchword +became: "America, Improve Thyself." + +The spirit of reform broke into both political parties. It appeared in +many statutes enacted by Congress under President Taft's leadership. It +disrupted the Republicans temporarily in 1912 when the Progressive party +entered the field. It led the Democratic candidate in that year, +Governor Wilson, to make a "progressive appeal" to the voters. It +inspired a considerable program of national legislation under President +Wilson's two administrations. + +In the age of change, four important amendments to the federal +constitution, the first in more than forty years, were adopted. The +sixteenth empowered Congress to lay an income tax. The seventeenth +assured popular election of Senators. The eighteenth made prohibition +national. The nineteenth, following upon the adoption of woman suffrage +in many states, enfranchised the women of the nation. + +In the sphere of industry, equally great changes took place. The major +portion of the nation's business passed into the hands of corporations. +In all the leading industries of the country labor was organized into +trade unions and federated in a national organization. The power of +organized capital and organized labor loomed upon the horizon. Their +struggles, their rights, and their place in the economy of the nation +raised problems of the first magnitude. + +While the country was engaged in a heated debate upon its domestic +issues, the World War broke out in Europe in 1914. As a hundred years +before, American rights upon the high seas became involved at once. They +were invaded on both sides; but Germany, in addition to assailing +American ships and property, ruthlessly destroyed American lives. She +set at naught the rules of civilized warfare upon the sea. Warnings from +President Wilson were without avail. Nothing could stay the hand of the +German war party. + +After long and patient negotiations, President Wilson in 1917 called +upon the nation to take up arms against an assailant that had in effect +declared war upon America. The answer was swift and firm. The national +resources, human and material, were mobilized. The navy was enlarged, a +draft army created, huge loans floated, heavy taxes laid, and the spirit +of sacrifice called forth in a titanic struggle against an autocratic +power that threatened to dominate Europe and the World. + +In the end, American financial, naval, and military assistance counted +heavily in the scale. American sailors scoured the seas searching for +the terrible submarines. American soldiers took part in the last great +drives that broke the might of Germany's army. Such was the nation's +response to the President's summons to arms in a war "for democracy" and +"to end war." + +When victory crowned the arms of the powers united against Germany, +President Wilson in person took part in the peace council. He sought to +redeem his pledge to end wars by forming a League of Nations to keep the +peace. In the treaty drawn at the close of the war the first part was a +covenant binding the nations in a permanent association for the +settlement of international disputes. This treaty, the President offered +to the United States Senate for ratification and to his country for +approval. + +Once again, as in the days of the Napoleonic wars, the people seriously +discussed the place of America among the powers of the earth. The Senate +refused to ratify the treaty. World politics then became an issue in the +campaign of 1920. Though some Americans talked as if the United States +could close its doors and windows against all mankind, the victor in the +election, Senator Harding, of Ohio, knew better. The election returns +were hardly announced before he began to ask the advice of his +countrymen on the pressing theme that would not be downed: "What part +shall America--first among the nations of the earth in wealth and +power--assume at the council table of the world?" + + +=General References= + +Woodrow Wilson, _The New Freedom_. + +C.L. Jones, _The Caribbean Interests of the United States_. + +H.P. Willis, _The Federal Reserve_. + +C.W. Barron, _The Mexican Problem_ (critical toward Mexico). + +L.J. de Bekker, _The Plot against Mexico_ (against American +intervention). + +Theodore Roosevelt, _America and the World War_. + +E.E. Robinson and V.J. West, _The Foreign Policy of Woodrow Wilson_. + +J.S. Bassett, _Our War with Germany_. + +Carlton J.H. Hayes, _A Brief History of the Great War_. + +J.B. McMaster, _The United States in the World War_. + + +=Research Topics= + +=President Wilson's First Term.=--Elson, _History of the United States_, +pp. 925-941. + +=The Underwood Tariff Act.=--Ogg, _National Progress_ (The American +Nation Series), pp. 209-226. + +=The Federal Reserve System.=--Ogg, pp. 228-232. + +=Trust and Labor Legislation.=--Ogg, pp. 232-236. + +=Legislation Respecting the Territories.=--Ogg, pp. 236-245. + +=American Interests in the Caribbean.=--Ogg, pp. 246-265. + +=American Interests in the Pacific.=--Ogg, pp. 304-324. + +=Mexican Affairs.=--Haworth, pp. 388-395; Ogg, pp. 284-304. + +=The First Phases of the European War.=--Haworth, pp. 395-412; Ogg, pp. +325-343. + +=The Campaign of 1916.=--Haworth, pp. 412-418; Ogg, pp. 364-383. + +=America Enters the War.=--Haworth, pp. 422-440; pp. 454-475. Ogg, pp. +384-399; Elson, pp. 951-970. + +=Mobilizing the Nation.=--Haworth, pp. 441-453. + +=The Peace Settlement.=--Haworth, pp. 475-497; Elson, pp. 971-982. + + +=Questions= + +1. Enumerate the chief financial measures of the Wilson administration. +Review the history of banks and currency and give the details of the +Federal reserve law. + +2. What was the Wilson policy toward trusts? Toward labor? + +3. Review again the theory of states' rights. How has it fared in recent +years? + +4. What steps were taken in colonial policies? In the Caribbean? + +5. Outline American-Mexican relations under Wilson. + +6. How did the World War break out in Europe? + +7. Account for the divided state of opinion in America. + +8. Review the events leading up to the War of 1812. Compare them with +the events from 1914 to 1917. + +9. State the leading principles of international law involved and show +how they were violated. + +10. What American rights were assailed in the submarine campaign? + +11. Give Wilson's position on the _Lusitania_ affair. + +12. How did the World War affect the presidential campaign of 1916? + +13. How did Germany finally drive the United States into war? + +14. State the American war aims given by the President. + +15. Enumerate the measures taken by the government to win the war. + +16. Review the part of the navy in the war. The army. + +17. How were the terms of peace formulated? + +18. Enumerate the principal results of the war. + +19. Describe the League of Nations. + +20. Trace the fate of the treaty in American politics. + +21. Can there be a policy of isolation for America? + + + + +APPENDIX + +CONSTITUTION OF THE UNITED STATES + + +We the people of the United States, in order to form a more +perfect union, establish justice, insure domestic tranquillity, provide +for the common defence, promote the general welfare, and secure the +blessings of liberty to ourselves and our posterity, do ordain and +establish this Constitution for the United States of America. + + +ARTICLE I + +SECTION 1. All legislative powers herein granted shall be vested in a +Congress of the United States, which shall consist of a Senate and House +of Representatives. + + +SECTION 2. 1. The House of Representatives shall be composed of members +chosen every second year by the people of the several States, and the +electors in each State shall have the qualifications requisite for +electors of the most numerous branch of the State legislature. + +2. No person shall be a representative who shall not have attained to +the age of twenty-five years, and been seven years a citizen of the +United States, and who shall not, when elected, be an inhabitant of that +State in which he shall be chosen. + +3. Representatives and direct taxes[3] shall be apportioned among the +several States which may be included within this Union, according to +their respective numbers, which shall be determined by adding to the +whole number of free persons, including those bound to service for a +term of years, and excluding Indians not taxed, three-fifths of all +other persons.[3] The actual enumeration shall be made within three +years after the first meeting of the Congress of the United States, and +within every subsequent term of ten years, in such manner as they shall +by law direct. The number of representatives shall not exceed one for +every thirty thousand, but each State shall have at least one +representative; and until such enumeration shall be made, the State of +New Hampshire shall be entitled to choose three, Massachusetts eight, +Rhode Island and Providence Plantations one, Connecticut five, New York +six, New Jersey four, Pennsylvania eight, Delaware one, Maryland six, +Virginia ten, North Carolina five, South Carolina five, and Georgia +three. + +4. When vacancies happen in the representation from any State, the +executive authority thereof shall issue writs of election to fill such +vacancies. + +5. The House of Representatives shall choose their speaker and other +officers; and shall have the sole power of impeachment. + + +SECTION 3. 1. The Senate of the United States shall be composed of two +senators from each State, chosen by the legislature thereof, for six +years; and each senator shall have one vote.[4] + +2. Immediately after they shall be assembled in consequence of the first +election, they shall be divided as equally as may be into three classes. +The seats of the senators of the first class shall be vacated at the +expiration of the second year, of the second class at the expiration of +the fourth year, and of the third class at the expiration of the sixth +year, so that one-third may be chosen every second year; and if +vacancies happen by resignation, or otherwise, during the recess of the +legislature of any State, the executive thereof may make temporary +appointments until the next meeting of the legislature, which shall then +fill such vacancies.[5] + +3. No person shall be a senator who shall not have attained to the age +of thirty years, and been nine years a citizen of the United States, and +who shall not, when elected, be an inhabitant of that State for which he +shall be chosen. + +4. The Vice-President of the United States shall be President of the +Senate, but shall have no vote, unless they be equally divided. + +5. The Senate shall choose their other officers, and also a President +_pro tempore_, in the absence of the Vice-President, or when he shall +exercise the office of President of the United States. + +6. The Senate shall have the sole power to try all impeachments. When +sitting for that purpose, they shall be on oath or affirmation. When the +President of the United States is tried, the chief justice shall +preside: And no person shall be convicted without the concurrence of +two-thirds of the members present. + +7. Judgment in cases of impeachment shall not extend further than to +removal from office, and disqualification to hold and enjoy any office +of honor, trust, or profit under the United States: but the party +convicted shall nevertheless be liable and subject to indictment, trial, +judgment, and punishment, according to law. + + +SECTION 4. 1. The times, places, and manner of holding elections for +senators and representatives, shall be prescribed in each State by the +legislature thereof; but the Congress may at any time by law make or +alter such regulations, except as to the places of choosing senators. + +2. The Congress shall assemble at least once in every year, and such +meeting shall be on the first Monday in December, unless they shall by +law appoint a different day. + + +SECTION 5. 1. Each House shall be the judge of the elections, returns +and qualifications of its own members, and a majority of each shall +constitute a quorum to do business; but a smaller number may adjourn +from day to day, and may be authorized to compel the attendance of +absent members, in such manner, and under such penalties as each House +may provide. + +2. Each House may determine the rules of its proceedings, punish its +members for disorderly behaviour, and, with the concurrence of +two-thirds, expel a member. + +3. Each House shall keep a journal of its proceedings, and from time to +time publish the same, excepting such parts as may in their judgment +require secrecy; and the yeas and nays of the members of either House on +any question shall, at the desire of one-fifth of those present, be +entered on the journal. + +4. Neither House, during the session of Congress, shall, without the +consent of the other, adjourn for more than three days, nor to any other +place than that in which the two Houses shall be sitting. + + +SECTION 6. 1. The senators and representatives shall receive a +compensation for their services, to be ascertained by law, and paid out +of the Treasury of the United States. They shall in all cases, except +treason, felony, and breach of the peace, be privileged from arrest +during their attendance at the sessions of their respective Houses, and +in going to and returning from the same; and, for any speech or debate +in either House, they shall not be questioned in any other place. + +2. No senator or representative shall, during the time for which he was +elected, be appointed to any civil office under the authority of the +United States, which shall have been created, or the emoluments whereof +shall have been increased during such time; and no person, holding any +office under the United States, shall be a member of either House during +his continuance in office. + + +SECTION 7. 1. All bills for raising revenue shall originate in the House +of Representatives; but the Senate may propose or concur with amendments +as on other bills. + +2. Every bill, which shall have passed the House of Representatives; and +the Senate, shall, before it become a law, be presented to the President +of the United States; if he approve he shall sign it, but if not he +shall return it with his objections to that House, in which it shall +have originated, who shall enter the objections at large on their +journal, and proceed to reconsider it. If after such reconsideration +two-thirds of that House shall agree to pass the bill, it shall be sent, +together with the objections, to the other House, by which it shall +likewise be reconsidered, and if approved by two-thirds of that House, +it shall become a law. But in all such cases the votes of both Houses +shall be determined by yeas and nays, and the names of the persons +voting for and against the bill shall be entered on the journal of each +House respectively. If any bill shall not be returned by the President +within ten days (Sundays excepted) after it shall have been presented to +him, the same shall be a law, in like manner as if he had signed it, +unless the Congress by their adjournment prevent its return, in which +case it shall not be a law. + +3. Every order, resolution, or vote to which the concurrence of the +Senate and House of Representatives may be necessary (except on a +question of adjournment) shall be presented to the President of the +United States and before the same shall take effect, shall be approved +by him, or being disapproved by him, shall be repassed by two-thirds of +the Senate and House of Representatives, according to the rules and +limitations prescribed in the case of a bill. + + +SECTION 8. The Congress shall have power: 1. To lay and collect taxes, +duties, imposts, and excises, to pay the debts and provide for the +common defence and general welfare of the United States; but all duties, +imposts, and excises shall be uniform throughout the United States; + +2. To borrow money on the credit of the United States; + +3. To regulate commerce with foreign nations, and among the several +States, and with the Indian tribes; + +4. To establish an uniform rule of naturalization, and uniform laws on +the subject of bankruptcies throughout the United States; + +5. To coin money, regulate the value thereof, and of foreign coin, and +fix the standard of weights and measures; + +6. To provide for the punishment of counterfeiting the securities and +current coin of the United States; + +7. To establish post offices and post roads; + +8. To promote the progress of science and useful arts by securing for +limited times to authors and inventors the exclusive right to their +respective writings and discoveries; + +9. To constitute tribunals inferior to the Supreme Court; + +10. To define and punish piracies and felonies committed on the high +seas, and offences against the law of nations; + +11. To declare war, grant letters of marque and reprisal, and make rules +concerning captures on land and water; + +12. To raise and support armies, but no appropriation of money to that +use shall be for a longer term than two years; + +13. To provide and maintain a navy; + +14. To make rules for the government and regulation of the land and +naval forces; + +15. To provide for calling forth the militia to execute the laws of the +Union, suppress insurrections, and repel invasions; + +16. To provide for organizing, arming, and disciplining the militia, +and for governing such part of them as may be employed in the service +of the United States, reserving to the States respectively the +appointment of the officers, and the authority of training the militia +according to the discipline prescribed by Congress. + +17. To exercise exclusive legislation in all cases whatsoever, over such +district (not exceeding ten miles square) as may, by cession of +particular States and the acceptance of Congress, become the seat of the +government of the United States, and to exercise like authority over all +places purchased by the consent of the legislature of the State in which +the same shall be, for the erection of forts, magazines, arsenals, +dock-yards, and other needful buildings;--and + +18. To make all laws which shall be necessary and proper for carrying +into execution the foregoing powers, and all other powers vested by this +Constitution in the government of the United States, or in any +department or officer thereof. + + +SECTION 9. 1. The migration or importation of such persons as any of the +States now existing shall think proper to admit, shall not be prohibited +by the Congress prior to the year one thousand eight hundred and eight, +but a tax or duty may be imposed on such importation, not exceeding ten +dollars for each person. + +2. The privilege of the writ of _habeas corpus_ shall not be suspended, +unless when in cases of rebellion or invasion the public safety may +require it. + +3. No bill of attainder or _ex post facto_ law shall be passed. + +4. No capitation, or other direct, tax shall be laid, unless in +proportion to the census or enumeration hereinbefore directed to be +taken.[6] + +5. No tax or duty shall be laid on articles exported from any State. + +6. No preference shall be given by any regulation of commerce or revenue +to the ports of one State over those of another: nor shall vessels bound +to, or from, one State, be obliged to enter, clear, or pay duties in +another. + +7. No money shall be drawn from the Treasury, but in consequence of +appropriations made by law; and a regular statement and account of the +receipts and expenditures of all public money shall be published from +time to time. + +8. No title of nobility shall be granted by the United States; and no +person, holding any office of profit or trust under them, shall, without +the consent of the Congress, accept of any present, emolument, office, +or title, of any kind whatever, from any king, prince, or foreign State. + + +SECTION 10. 1. No State shall enter into any treaty, alliance, or +confederation; grant letters of marque and reprisal; coin money; emit +bills of credit; make anything but gold and silver coin a tender in +payment of debts; pass any bill of attainder, _ex post facto_ law, or +law impairing the obligation of contracts, or grant any title of +nobility. + +2. No State shall, without the consent of the Congress, lay any imposts +or duties on imports or exports, except what may be absolutely necessary +for executing its inspection laws: and the net produce of all duties and +imposts, laid by any State on imports or exports, shall be for the use +of the Treasury of the United States; and all such laws shall be subject +to the revision and control of the Congress. + +3. No State shall, without the consent of Congress, lay any duty of +tonnage, keep troops, or ships of war in time of peace, enter into any +agreement or compact with another State, or with a foreign power, or +engage in war unless actually invaded, or in such imminent danger as +will not admit of delay. + + +ARTICLE II + +SECTION 1. 1. The executive power shall be vested in a President of the +United States of America. He shall hold his office during the term of +four years, and, together with the Vice-President, chosen for the same +term, be elected, as follows: + +2. Each State shall appoint, in such manner as the legislature thereof +may direct, a number of electors, equal to the whole number of senators +and representatives to which the State may be entitled in the Congress; +but no senator or representative, or person holding an office of trust +or profit under the United States, shall be appointed an elector.[7] The +electors shall meet in their respective States, and vote by ballot for +two persons, of whom one at least shall not be an inhabitant of the same +State with themselves. And they shall make a list of all the persons +voted for, and of the number of votes for each; which list they shall +sign and certify, and transmit sealed to the seat of the government of +the United States, directed to the president of the Senate. The +President of the Senate shall, in the presence of the Senate and House +of Representatives, open all the certificates, and the votes shall then +be counted. The person having the greatest number of votes shall be the +President, if such number be a majority of the whole number of electors +appointed; and if there be more than one who have such majority, and +have an equal number of votes, then the House of Representatives shall +immediately choose by ballot one of them for President; and if no person +have a majority, then from the five highest on the list the said House +shall in like manner choose the President. But in choosing the +President, the votes shall be taken by States, the representation from +each State having one vote; a quorum for this purpose shall consist of a +member or members from two-thirds of the States and a majority of all +the States shall be necessary to a choice. In every case, after the +choice of the President, the person having the greatest number of votes +of the electors shall be the Vice-President. But if there should remain +two or more who have equal votes, the Senate shall choose from them by +ballot the Vice-President.[8] + +3. The Congress may determine the time of choosing the electors, and the +day on which they shall give their votes; which day shall be the same +throughout the United States. + +4. No person except a natural born citizen, or a citizen of the United +States, at the time of the adoption of this Constitution, shall be +eligible to the office of President; neither shall any person be +eligible to that office who shall not have attained to the age of +thirty-five years, and been fourteen years a resident within the United +States. + +5. In case of the removal of the President from office, or of his death, +resignation, or inability to discharge the powers and duties of the said +office, the same shall devolve on the Vice-President, and the Congress +may by law provide for the case of removal, death, resignation, or +inability both of the President and Vice-President, declaring what +officer shall then act as President, and such officer shall act +accordingly, until the disability be removed, or a President shall be +elected. + +6. The President shall, at stated times, receive for his services a +compensation, which shall neither be increased nor diminished during the +period for which he shall have been elected, and he shall not receive +within that period any other emolument from the United States, or any of +them. + +7. Before he enter on the execution of his office, he shall take the +following oath or affirmation:--"I do solemnly swear (or affirm) that I +will faithfully execute the office of President of the United States, +and will to the best of my ability, preserve, protect, and defend the +Constitution of the United States." + + +SECTION 2. 1. The President shall be commander-in-chief of the army and +navy of the United States, and of the militia of the several States, +when called into the actual service of the United States; he may require +the opinion, in writing, of the principal officer in each of the +executive departments, upon any subject relating to the duties of their +respective offices, and he shall have power to grant reprieves and +pardons for offences against the United States, except in cases of +impeachment. + +2. He shall have power, by and with the advice and consent of the +Senate, to make treaties, provided two-thirds of the senators present +concur; and he shall nominate, and by and with the advice and consent of +the Senate, shall appoint ambassadors, other public ministers and +consuls, judges of the Supreme Court, and all other officers of the +United States, whose appointments are not herein otherwise provided for, +and which shall be established by law: but the Congress may by law vest +the appointment of such inferior officers, as they think proper, in the +President alone, in the courts of law, or in the heads of departments. + +3. The President shall have power to fill all vacancies that may happen +during the recess of the Senate, by granting commissions which shall +expire at the end of their next session. + + +SECTION 3. He shall from time to time give to the Congress information +on the state of the Union, and recommend to their consideration such +measures as he shall judge necessary and expedient; he may, on +extraordinary occasions, convene both Houses, or either of them, and in +case of disagreement between them, with respect to the time of +adjournment, he may adjourn them to such time as he shall think proper; +he shall receive ambassadors and other public ministers; he shall take +care that the laws be faithfully executed, and shall commission all the +officers of the United States. + + +SECTION 4. The President, Vice-President, and all civil officers of the +United States shall be removed from office on impeachment for, and +conviction of, treason, bribery, or other high crimes and misdemeanors. + + +ARTICLE III + +SECTION 1. The judicial power of the United States shall be vested in +one Supreme Court, and in such inferior courts as the Congress may from +time to time ordain and establish. The judges, both of the Supreme and +inferior courts, shall hold their offices during good behaviour, and +shall, at stated times, receive for their services a compensation, which +shall not be diminished during their continuance in office. + + +SECTION 2. 1. The judicial power shall extend to all cases, in law and +equity, arising under this Constitution, the laws of the United States, +and treaties made, or which shall be made, under their authority;--to +all cases affecting ambassadors, other public ministers and consuls;--to +all cases of admiralty and maritime jurisdiction;--to controversies to +which the United States shall be a party;--to controversies between two +or more States;--between a State and citizens of another +State;[9]--between citizens of different States;--between citizens of +the same State claiming lands under grants of different States;--and +between a State, or the citizens thereof, and foreign States, citizens, +or subjects. + +2. In all cases affecting ambassadors, other public ministers and +consuls and those in which a State shall be a party, the Supreme Court +shall have original jurisdiction. In all the other cases before +mentioned, the Supreme Court shall have appellate jurisdiction, both as +to law and fact, with such exceptions and under such regulations as the +Congress shall make. + +3. The trial of all crimes, except in cases of impeachment, shall be by +jury; and such trial shall be held in the State where the said crimes +shall have been committed; but when not committed within any State, the +trial shall be at such place or places as the Congress may by law have +directed. + + +SECTION 3. 1. Treason against the United States shall consist only in +levying war against them, or in adhering to their enemies, giving them +aid and comfort. No person shall be convicted of treason unless on the +testimony of two witnesses to the same overt act, or on confession in +open court. + +2. The Congress shall have power to declare the punishment of treason, +but no attainder of treason shall work corruption of blood or forfeiture +except during the life of the person attainted. + + +ARTICLE IV + +SECTION 1. Full faith and credit shall be given in each State to the +public acts, records, and judicial proceedings of every other State. And +the Congress may by general laws prescribe the manner in which such +acts, records, and proceedings shall be proved, and the effect thereof. + + +SECTION 2. 1. The citizens of each State shall be entitled to all +privileges and immunities of citizens in the several States. + +2. A person charged in any State with treason, felony, or other crime, +who shall flee from justice, and be found in another State, shall on +demand of the executive authority of the State from which he fled, be +delivered up, to be removed to the State having jurisdiction of the +crime. + +3. No person held to service or labor in one State, under the laws +thereof, escaping into another, shall, in consequence of any law or +regulation therein, be discharged from such service or labor, but shall +be delivered up on claim of the party to whom such service or labor may +be due. + + +SECTION 3. 1. New States may be admitted by the Congress into this +Union; but no new State shall be formed or erected within the +jurisdiction of any other State; nor any State be formed by the junction +of two or more States, or parts of States, without the consent of the +legislatures of the States concerned as well as of the Congress. + +2. The Congress shall have power to dispose of and make all needful +rules and regulations respecting the territory or other property +belonging to the United States; and nothing in this Constitution shall +be so construed as to prejudice any claims, of the United States, or of +any particular State. + + +SECTION 4. The United States shall guarantee to every State in this +Union a republican form of government, and shall protect each of them +against invasion; and on application of the legislature, or of the +executive (when the legislature cannot be convened), against domestic +violence. + + +ARTICLE V + +The Congress, whenever two-thirds of both Houses shall deem it +necessary, shall propose amendments to this Constitution, or, on the +application of the legislatures of two-thirds of the several States, +shall call a convention for proposing amendments, which, in either case, +shall be valid to all intents and purposes as part of this Constitution, +when ratified by the legislatures of three-fourths of the several +States, or by conventions in three-fourths thereof, as the one or the +other mode of ratification may be proposed by the Congress; provided +that no amendment which may be made prior to the year one thousand eight +hundred and eight shall in any manner affect the first and fourth +clauses in the ninth Section of the first article; and that no State, +without its consent, shall be deprived of its equal suffrage in the +Senate. + + +ARTICLE VI + +1. All debts contracted and engagements entered into, before the +adoption of this Constitution, shall be as valid against the United +States under this Constitution, as under the Confederation. + +2. This Constitution and the laws of the United States which shall be +made in pursuance thereof and all treaties made, or which shall be made, +under the authority of the United States, shall be the supreme law of +the land; and the judges in every State shall be bound thereby, anything +in the Constitution or laws of any State to the contrary +notwithstanding. + +3. The senators and representatives before mentioned, and the members of +the several State legislatures, and all executive and judicial officers, +both of the United States and of the several States, shall be bound by +oath or affirmation to support this Constitution; but no religious test +shall ever be required as a qualification to any office or public trust +under the United States. + + +ARTICLE VII + +The ratification of the conventions of nine States shall be sufficient +for the establishment of this Constitution between the States so +ratifying the same. + +Done in Convention by the unanimous consent of the States present the +seventeenth day of September in the year of our Lord one thousand seven +hundred and eighty-seven and of the independence of the United States of +America the twelfth. In witness whereof we have hereunto subscribed our +names, + + G^O. WASHINGTON-- + Presidt. and Deputy from Virginia + +[and thirty-eight members from all the States except Rhode Island.] + + * * * * * + + +Articles in addition to, and amendment of, the Constitution of the +United States of America, proposed by Congress, and ratified by the +legislatures of the several States pursuant to the fifth article of the +original Constitution. + + +ARTICLE I[10] + +Congress shall make no law respecting an establishment of religion, or +prohibiting the free exercise thereof; or abridging the freedom of +speech, or of the press; or the right of the people peaceably to +assemble, and to petition the government for a redress of grievances. + + +ARTICLE II + +A well regulated militia, being necessary to the security of a free +State, the right of the people to keep and bear arms shall not be +infringed. + + +ARTICLE III + +No soldier shall, in time of peace, be quartered in any house, without +the consent of the owner, nor in time of war, but in a manner to be +prescribed by law. + + +ARTICLE IV + +The right of the people to be secure in their persons, houses, papers, +and effects, against unreasonable searches and seizures, shall not be +violated, and no warrants shall issue, but upon probable cause, +supported by oath or affirmation, and particularly describing the place +to be searched, and the persons or things to be seized. + + +ARTICLE V + +No person shall be held to answer for a capital, or otherwise infamous +crime, unless on a presentment or indictment of a grand jury, except in +cases arising in the land or naval forces, or in the militia, when in +actual service in time of war or public danger; nor shall any person be +subject for the same offence to be twice put in jeopardy of life or +limb; nor shall be compelled in any criminal case to be a witness +against himself; nor be deprived of life, liberty, or property, without +due process of law; nor shall private property be taken for public use, +without just compensation. + + +ARTICLE VI + +In all criminal prosecutions, the accused shall enjoy the right to a +speedy and public trial, by an impartial jury of the State and district +wherein the crime shall have been committed, which district shall have +been previously ascertained by law, and to be informed of the nature and +cause of the accusation; to be confronted with the witnesses against +him; to have compulsory process for obtaining witnesses in his favor, +and to have the assistance of counsel for his defence. + + +ARTICLE VII + +In suits at common law, where the value in controversy shall exceed +twenty dollars, the right of trial by jury shall be preserved, and no +fact tried by a jury shall be otherwise reexamined in any court of the +United States, than according to the rules of the common law. + + +ARTICLE VIII + +Excessive bail shall not be required, nor excessive fines imposed, nor +cruel and unusual punishments inflicted. + + +ARTICLE IX + +The enumeration in the Constitution, of certain rights, shall not be +construed to deny or disparage others retained by the people. + + +ARTICLE X + +The powers not delegated to the United States by the Constitution, nor +prohibited by it to the States, are reserved to the States respectively, +or to the people. + + +ARTICLE XI[11] + +The judicial power of the United States shall not be construed to extend +to any suit in law or equity, commenced or prosecuted against one of the +United States by citizens of another State, or by citizens or subjects +of any foreign State. + + +ARTICLE XII[12] + +The electors shall meet in their respective States, and vote by ballot +for President and Vice-President, one of whom at least shall not be an +inhabitant of the same State with themselves; they shall name in their +ballots the person voted for as President, and in distinct ballots the +person voted for as Vice-President, and they shall make distinct lists +of all persons voted for as President, and of all persons voted for as +Vice-President, and of the number of votes for each, which lists they +shall sign and certify, and transmit sealed to the seat of the +government of the United States, directed to the President of the +Senate;--The President of the Senate shall, in presence of the Senate +and House of Representatives, open all the certificates and the votes +shall then be counted;--The person having the greatest number of votes +for President, shall be the President, if such number be a majority of +the whole number of electors appointed; and if no person have such +majority, then from the persons having the highest numbers not exceeding +three on the list of those voted for as President, the House of +Representatives shall choose immediately, by ballot, the President. But +in choosing the President, the votes shall be taken by States, the +representation from each State having one vote; a quorum for this +purpose shall consist of a member or members from two-thirds of the +States, and a majority of all the States shall be necessary to a choice. +And if the House of Representatives shall not choose a President +whenever the right of choice shall devolve upon them, before the fourth +day of March next following, then the Vice-President shall act as +President, as in the case of the death or other constitutional +disability of the President. The person having the greatest number of +votes as Vice-President, shall be the Vice-President, if such number be +a majority of the whole number of electors appointed, and if no person +have a majority, then from the two highest members on the list, the +Senate shall choose the Vice-President; a quorum for the purpose shall +consist of two-thirds of the whole number of senators, and a majority of +the whole number shall be necessary to a choice. But no person +constitutionally ineligible to the office of President shall be eligible +to that of Vice-President of the United States. + + +ARTICLE XIII[13] + +SECTION 1. Neither slavery nor involuntary servitude, except as a +punishment for crime whereof the party shall have been duly convicted, +shall exist within the United States, or any place subject to their +jurisdiction. + +SECTION 2. Congress shall have power to enforce this article by +appropriate legislation. + + +ARTICLE XIV[14] + +SECTION 1. All persons born or naturalized in the United States, and +subject to the jurisdiction thereof, are citizens of the United States +and of the State wherein they reside. No State shall make or enforce any +law which shall abridge the privileges or immunities of citizens of the +United States; nor shall any State deprive any person of life, liberty, +or property without due process of law; nor deny to any person within +its jurisdiction the equal protection of the laws. + +SECTION 2. Representatives shall be apportioned among the several States +according to their respective numbers, counting the whole number of +persons in each State, excluding Indians not taxed. But when the right +to vote at any election for the choice of electors for President and +Vice-President of the United States, representatives in Congress, the +executive and judicial officers of a State, or the members of the +legislature thereof, is denied to any of the male inhabitants of such +State, being twenty-one years of age, and citizens of the United States, +or in any way abridged, except for participation in rebellion or other +crime, the basis of representation therein shall be reduced in the +proportion which the number of such male citizens shall bear to the +whole number of male citizens twenty-one years of age in such State. + +SECTION 3. No person shall be a senator or representative in Congress, +or elector of President and Vice-President, or hold any office, civil or +military, under the United States, or under any State, who, having +previously taken an oath, as a member of Congress, or as an officer of +the United States, or as a member of any State legislature, or as an +executive or judicial officer of any State, to support the Constitution +of the United States, shall have engaged in insurrection or rebellion +against the same, or given aid or comfort to the enemies thereof. But +Congress may by two-thirds vote of each House, remove such disability. + +SECTION 4. The validity of the public debt of the United States, +authorized by law, including debts incurred for payment of pensions and +bounties for services in suppressing insurrection or rebellion, shall +not be questioned. But neither the United States nor any State shall +assume or pay any debt or obligation incurred in aid of insurrection or +rebellion against the United States, or any claim for the loss or +emancipation of any slave; but all such debts, obligations, and claims +shall be held illegal and void. + +SECTION 5. The Congress shall have power to enforce, by appropriate +legislation, the provisions of this article. + + +ARTICLE XV[15] + +SECTION 1. The right of citizens of the United States to vote shall not +be denied or abridged by the United States or by any State on account of +race, color, or previous condition of servitude. + +SECTION 2. The Congress shall have power to enforce this article by +appropriate legislation. + + +ARTICLE XVI[16] + +The Congress shall have power to lay and collect taxes on incomes, from +whatever source derived, without apportionment among the several States, +and without regard to any census or enumeration. + + +ARTICLE XVII[17] + +The Senate of the United States shall be composed of two senators from +each State, elected by the people thereof, for six years; and each +senator shall have one vote. The electors in each State shall have the +qualifications requisite for electors of the most numerous branch of the +State legislature. + +When vacancies happen in the representation of any State in the Senate, +the executive authority of each State shall issue writs of election to +fill such vacancies: _Provided_ that the legislature of any State may +empower the executive thereof to make temporary appointments until the +people fill the vacancies by election as the legislature may direct. + +This amendment shall not be so construed as to effect the election or +term of any senator chosen before it becomes valid as part of the +Constitution. + + +ARTICLE XVIII[18] + +SECTION 1. After one year from the ratification of this article the +manufacture, sale, or transportation of intoxicating liquors within, the +importation thereof into, or the exportation thereof from the United +States and all territory subject to the jurisdiction thereof for +beverage purposes is hereby prohibited. + +SECTION 2. The Congress and the several States shall have concurrent +power to enforce this article by appropriate legislation. + +SECTION 3. This article shall be inoperative unless it shall have been +ratified as an amendment to the Constitution by the legislatures of the +several States, as provided in the Constitution, within seven years from +the date of the submission hereof to the States by the Congress. + + +ARTICLE XIX[19] + +The right of citizens of the United States to vote shall not be denied +or abridged by the United States or any State on account of sex. + +The Congress shall have power to enforce this article by appropriate +legislation. + + + +POPULATION OF THE UNITED STATES, BY STATES: 1920, 1910, 1900 + ++---------------------+--------------------------------------------+ +| STATES | POPULATION | ++ +--------------+--------------+--------------+ +| | 1920 | 1910 | 1900 | ++---------------------+--------------+--------------+--------------+ +|United States | 105,708,771 | 91,972,266 | 75,994,575 | ++---------------------+--------------+--------------+--------------+ +|Alabama | 2,348,174 | 2,138,093 | 1,828,697 | +|Arizona | 333,903 | 204,354 | 122,931 | +|Arkansas | 1,752,204 | 1,574,449 | 1,311,564 | +|California | 3,426,861 | 2,377,549 | 1,485,053 | +|Colorado | 939,629 | 799,024 | 539,700 | +|Connecticut | 1,380,631 | 1,114,756 | 908,420 | +|Delaware | 223,003 | 202,322 | 184,735 | +|District of Columbia | 437,571 | 331,069 | 278,718 | +|Florida | 968,470 | 752,619 | 528,542 | +|Georgia | 2,895,832 | 2,609,121 | 2,216,331 | +|Idaho | 431,866 | 325,594 | 161,772 | +|Illinois | 6,485,280 | 5,638,591 | 4,821,550 | +|Indiana | 2,930,390 | 2,700,876 | 2,516,462 | +|Iowa | 2,404,021 | 2,224,771 | 2,231,853 | +|Kansas | 1,769,257 | 1,690,949 | 1,470,495 | +|Kentucky | 2,416,630 | 2,289,905 | 2,147,174 | +|Louisiana | 1,798,509 | 1,656,388 | 1,381,625 | +|Maine | 768,014 | 742,371 | 694,466 | +|Maryland | 1,449,661 | 1,295,346 | 1,188,044 | +|Massachusetts | 3,852,356 | 3,366,416 | 2,805,346 | +|Michigan | 3,668,412 | 2,810,173 | 2,420,982 | +|Minnesota | 2,387,125 | 2,075,708 | 1,751,394 | +|Mississippi | 1,790,618 | 1,797,114 | 1,551,270 | +|Missouri | 3,404,055 | 3,293,335 | 3,106,665 | +|Montana | 548,889 | 376,053 | 243,329 | +|Nebraska | 1,296,372 | 1,192,214 | 1,066,300 | +|Nevada | 77,407 | 81,875 | 42,335 | +|New Hampshire | 443,407 | 430,572 | 411,588 | +|New Jersey | 3,155,900 | 2,537,167 | 1,883,669 | +|New Mexico | 360,350 | 327,301 | 195,310 | +|New York | 10,384,829 | 9,113,614 | 7,268,894 | +|North Carolina | 2,559,123 | 2,206,287 | 1,893,810 | +|North Dakota | 645,680 | 577,056 | 319,146 | +|Ohio | 5,759,394 | 4,767,121 | 4,157,545 | +|Oklahoma | 2,028,283 | 1,657,155 | 790,391 | +|Oregon | 783,389 | 672,765 | 413,536 | +|Pennsylvania | 8,720,017 | 7,665,111 | 6,302,115 | +|Rhode Island | 604,397 | 542,610 | 428,556 | +|South Carolina | 1,683,724 | 1,515,400 | 1,340,316 | +|South Dakota | 636,547 | 583,888 | 401,570 | +|Tennessee | 2,337,885 | 2,184,789 | 2,020,616 | +|Texas | 4,663,228 | 3,896,542 | 3,048,710 | +|Utah | 449,396 | 373,351 | 276,749 | +|Vermont | 352,428 | 355,956 | 343,641 | +|Virginia | 2,309,187 | 2,061,612 | 1,854,184 | +|Washington | 1,356,621 | 1,141,990 | 518,103 | +|West Virginia | 1,463,701 | 1,221,119 | 958,800 | +|Wisconsin | 2,632,067 | 2,333,860 | 2,069,042 | +|Wyoming | 194,402 | 145,965 | 92,531 | ++---------------------+--------------+--------------+--------------+ + +FOOTNOTES: + +[3] Partly superseded by the 14th Amendment, p. 639. + +[4] See the 17th Amendment, p. 641. + +[5] _Ibid._, p. 641. + +[6] See the 16th Amendment, p. 640. + +[7] The following paragraph was in force only from 1788 to 1803. + +[8] Superseded by the 12th Amendment, p. 638. + +[9] See the 11th Amendment, p. 638. + +[10] First ten amendments proposed by Congress, Sept. 25, 1789. +Proclaimed to be in force Dec. 15, 1791. + +[11] Proposed Sept. 5, 1794. Declared in force January 8, 1798. + +[12] Adopted in 1804. + +[13] Adopted in 1865. + +[14] Adopted in 1868. + +[15] Proposed February 27, 1869. Declared in force March 30, 1870. + +[16] Passed July, 1909; proclaimed February 25, 1913. + +[17] Passed May, 1912, in lieu of paragraph one, Section 3, Article I, +of the Constitution and so much of paragraph two of the same Section as +relates to the filling of vacancies; proclaimed May 31, 1913. + +[18] Ratified January 16, 1919. + +[19] Ratified August 26, 1920. + + + + +APPENDIX + +TABLE OF PRESIDENTS + +NAME STATE PARTY YEAR IN VICE-PRESIDENT + OFFICE +1 George Washington Va. Fed. 1789-1797 John Adams +2 John Adams Mass. Fed. 1797-1801 Thomas Jefferson +3 Thomas Jefferson Va. Rep. 1801-1809 Aaron Burr + George Clinton +4 James Madison Va. Rep. 1809-1817 George Clinton + Elbridge Gerry +5 James Monroe Va. Rep. 1817-1825 Daniel D. Tompkins +6 John Q. Adams Mass. Rep. 1825-1829 John C. Calhoun +7 Andrew Jackson Tenn. Dem. 1829-1837 John C. Calhoun + Martin Van Buren +8 Martin Van Buren N.Y. Dem. 1837-1841 Richard M. Johnson +9 Wm. H. Harrison Ohio Whig 1841-1841 John Tyler +10 John Tyler[20] Va. Whig 1841-1845 +11 James K. Polk Tenn. Dem. 1845-1849 George M. Dallas +12 Zachary Taylor La. Whig 1849-1850 Millard Fillmore +13 Millard Fillmore[20] N.Y. Whig 1850-1853 +14 Franklin Pierce N.H. Dem. 1853-1857 William R. King +15 James Buchanan Pa. Dem. 1857-1861 J.C. Breckinridge +16 Abraham Lincoln Ill. Rep. 1861-1865 Hannibal Hamlin + Andrew Johnson +17 Andrew Johnson[20] Tenn. Rep. 1865-1869 +18 Ulysses S. Grant Ill. Rep. 1869-1877 Schuyler Colfax + Henry Wilson +19 Rutherford B. Hayes Ohio Rep. 1877-1881 Wm. A. Wheeler +20 James A. Garfield Ohio Rep. 1881-1881 Chester A. Arthur +21 Chester A. Arthur[20] N.Y. Rep. 1881-1885 +22 Grover Cleveland N.Y. Dem. 1885-1889 Thomas A. Hendricks +23 Benjamin Harrison Ind. Rep. 1889-1893 Levi P. Morton +24 Grover Cleveland N.Y. Dem. 1893-1897 Adlai E. Stevenson +25 William McKinley Ohio Rep. 1897-1901 Garrett A. Hobart + Theodore Roosevelt +26 Theodore Roosevelt[20]N.Y. Rep. 1901-1909 Chas. W. Fairbanks +27 William H. Taft Ohio Rep. 1909-1913 James S. Sherman +28 Woodrow Wilson N.J. Dem. 1913-1921 Thomas R. Marshall +29 Warren G. Harding Ohio Rep. 1921- Calvin Coolidge + + +FOOTNOTES: + +[20] Promoted from the vice-presidency on the death of the president. + +POPULATION OF THE OUTLYING POSSESSIONS: 1920 AND 1910 + +----------------------------------------+--------------+--------------- + AREA | 1920 | 1910 +----------------------------------------+--------------+--------------- +United States with outlying possessions |117,857,509 | 101,146,530 + +--------------+--------------- +Continental United States |105,708,771 | 91,972,266 +Outlying Possessions | 12,148,738 | 9,174,264 + +--------------|--------------- + Alaska | 54,899 | 64,356 + American Samoa | 8,056 | 7,251[21] + Guam | 13,275 | 11,806 + Hawaii | 255,912 | 191,909 + Panama Canal Zone | 22,858 | 62,810[21] + Porto Rico | 1,299,809 | 1,118,012 + Military and naval, etc., service | | + abroad | 117,238 | 55,608 + Philippine Islands |10,350,640[22]| 7,635,426[23] + Virgin Islands of the United States | 26,051[24]| 27,086[25] +----------------------------------------+--------------+--------------- + +FOOTNOTES: + +[21] Population in 1912. + +[22] Population in 1918. + +[23] Population in 1903. + +[24] Population in 1917. + +[25] Population in 1911. + + + + +A TOPICAL SYLLABUS + +As a result of a wholesome reaction against the purely chronological +treatment of history, there is now a marked tendency in the direction of +a purely topical handling of the subject. The topical method, however, +may also be pushed too far. Each successive stage of any topic can be +understood only in relation to the forces of the time. For that reason, +the best results are reached when there is a combination of the +chronological and the topical methods. It is therefore suggested that +the teacher first follow the text closely and then review the subject +with the aid of this topical syllabus. The references are to pages. + + +=Immigration= + + I. Causes: religious (1-2, 4-11, 302), economic (12-17, 302-303), + and political (302-303). + II. Colonial immigration. + 1. Diversified character: English, Scotch-Irish, Irish, Jews, + Germans and other peoples (6-12). + 2. Assimilation to an American type; influence of the land + system (23-25, 411). + 3. Enforced immigration: indentured servitude, slavery, etc. + (13-17). + III. Immigration between 1789-1890. + 1. Nationalities: English, Irish, Germans, and Scandinavians + (278, 302-303). + 2. Relations to American life (432-433, 445). + IV. Immigration and immigration questions after 1890. + 1. Change in nationalities (410-411). + 2. Changes in economic opportunities (411). + 3. Problems of congestion and assimilation (410). + 4. Relations to labor and illiteracy (582-586). + 5. Oriental immigration (583). + 6. The restriction of immigration (583-585). + +=Expansion of the United States= + + I. Territorial growth. + 1. Territory of the United States in 1783 (134 and color map). + 2. Louisiana purchase, 1803 (188-193 and color map). + 3. Florida purchase, 1819 (204). + 4. Annexation of Texas, 1845 (278-281). + 5. Acquisition of Arizona, New Mexico, California, and other + territory at close of Mexican War, 1848 (282-283). + 6. The Gadsden purchase, 1853 (283). + 7. Settlement of the Oregon boundary question, 1846 (284-286). + 8. Purchase of Alaska from Russia, 1867 (479). + 9. Acquisition of Tutuila in Samoan group, 1899 (481-482). + 10. Annexation of Hawaii, 1898 (484). + 11. Acquisition of Porto Rico, the Philippines, and Guam at + close of Spanish War, 1898 (493-494). + 12. Acquisition of Panama Canal strip, 1904 (508-510). + 13. Purchase of Danish West Indies, 1917 (593). + 14. Extension of protectorate over Haiti, Santo Domingo, and + Nicaragua (593-594). + II. Development of colonial self-government. + 1. Hawaii (485). + 2. Philippines (516-518). + 3. Porto Rico (515-516). + III. Sea power. + 1. In American Revolution (118). + 2. In the War of 1812 (193-201). + 3. In the Civil War (353-354). + 4. In the Spanish-American War (492). + 5. In the Caribbean region (512-519). + 6. In the Pacific (447-448, 481). + 7. The role of the American navy (515). + +=The Westward Advance of the People= + + I. Beyond the Appalachians. + 1. Government and land system (217-231). + 2. The routes (222-224). + 3. The settlers (221-223, 228-230). + 4. Relations with the East (230-236). + II. Beyond the Mississippi. + 1. The lower valley (271-273). + 2. The upper valley (275-276). + III. Prairies, plains, and desert. + 1. Cattle ranges and cowboys (276-278, 431-432). + 2. The free homesteads (432-433). + 3. Irrigation (434-436, 523-525). + IV. The Far West. + 1. Peculiarities of the West (433-440). + 2. The railways (425-431). + 3. Relations to the East and Europe (443-447). + 4. American power in the Pacific (447-449). + +=The Wars of American History= + + I. Indian wars (57-59). + II. Early colonial wars: King William's, Queen Anne's, and King + George's (59). + III. French and Indian War (Seven Years' War), 1754-1763 (59-61). + IV. Revolutionary War, 1775-1783 (99-135). + V. The War of 1812, 1812-1815 (193-201). + VI. The Mexican War, 1845-1848 (276-284). + VII. The Civil War, 1861-1865 (344-375). + VIII. The Spanish War, 1898 (485-497). + IX. The World War, 1914-1918 [American participation, 1917-1918] + (596-625). + +=Government= + + I. Development of the American system of government. + 1. Origin and growth of state government. + _a._ The trading corporation (2-4), religious congregation + (4-5), and proprietary system (5-6). + _b._ Government of the colonies (48-53). + _c._ Formation of the first state constitutions (108-110). + _d._ The admission of new states (_see_ Index under each + state). + _e._ Influence of Jacksonian Democracy (238-247). + _f._ Growth of manhood suffrage (238-244). + _g._ Nullification and state sovereignty (180-182, 251-257). + _h._ The doctrine of secession (345-346). + _i._ Effects of the Civil War on position of states (366, + 369-375). + _j._ Political reform--direct government--initiative, + referendum, and recall (540-544). + 2. Origin and growth of national government. + _a._ British imperial control over the colonies (64-72). + _b._ Attempts at intercolonial union--New England + Confederation, Albany plan (61-62). + _c._ The Stamp Act Congress (85-86). + _d._ The Continental Congresses (99-101). + _e._ The Articles of Confederation (110-111, 139-143). + _f._ The formation of the federal Constitution (143-160). + _g._ Development of the federal Constitution. + (1) Amendments 1-11--rights of persons and states (163). + (2) Twelfth amendment--election of President (184, note). + (3) Amendments 13-15--Civil War settlement (358, 366, 369, + 370, 374, 375). + (4) Sixteenth amendment--income tax (528-529). + (5) Seventeenth amendment--election of Senators (541-542). + (6) Eighteenth amendment--prohibition (591-592). + (7) Nineteenth amendment--woman suffrage (563-568). + 3. Development of the suffrage. + _a._ Colonial restrictions (51-52). + _b._ Provisions of the first state constitutions + (110, 238-240). + _c._ Position under federal Constitution of 1787 (149). + _d._ Extension of manhood suffrage (241-244). + _e._ Extension and limitation of negro suffrage (373-375, + 382-387). + _f._ Woman suffrage (560-568). + II. Relation of government to economic and social welfare. + 1. Debt and currency. + _a._ Colonial paper money (80). + _b._ Revolutionary currency and debt (125-127). + _c._ Disorders under Articles of Confederation (140-141). + _d._ Powers of Congress under the Constitution to coin money + (_see_ Constitution in the Appendix). + _e._ First United States bank notes (167). + _f._ Second United States bank notes (257). + _g._ State bank notes (258). + _h._ Civil War greenbacks and specie payment (352-353, 454). + _i._ The Civil War debt (252). + _j._ Notes of National Banks under act of 1864 (369). + _k._ Demonetization of silver and silver legislation + (452-458). + _l._ The gold standard (472). + _m._ The federal reserve notes (589). + _n._ Liberty bonds (606). + 2. Banking systems. + _a._ The first United States bank (167). + _b._ The second United States bank--origin and destruction + (203, 257-259). + _c._ United States treasury system (263). + _d._ State banks (258). + _e._ The national banking system of 1864 (369). + _f._ Services of banks (407-409). + _g._ Federal reserve system (589). + 3. The tariff. + _a._ British colonial system (69-72). + _b._ Disorders under Articles of Confederation (140). + _c._ The first tariff under the Constitution (150, 167-168). + _d._ Development of the tariff, 1816-1832 (252-254). + _f._ Tariff and nullification (254-256). + _g._ Development to the Civil War--attitude of South and West + (264, 309-314, 357). + _h._ Republicans and Civil War tariffs (352, 367). + _i._ Revival of the tariff controversy under Cleveland (422). + _j._ Tariff legislation after 1890--McKinley bill (422), + Wilson bill (459), Dingley bill (472), Payne-Aldrich bill + (528), Underwood bill (588). + 4. Foreign and domestic commerce and transportation + (_see_ Tariff, Immigration, and Foreign Relations). + _a._ British imperial regulations (69-72). + _b._ Confusion under Articles of Confederation (140). + _c._ Provisions of federal Constitution (150). + _d._ Internal improvements--aid to roads, canals, etc. + (230-236). + _e._ Aid to railways (403). + _f._ Service of railways (402). + _g._ Regulation of railways (460-461, 547-548). + _h._ Control of trusts and corporations (461-462, 589-590). + 5. Land and natural resources. + _a._ British control over lands (80). + _b._ Early federal land measures (219-221). + _c._ The Homestead act (368, 432-445). + _d._ Irrigation and reclamation (434-436, 523-525). + _e._ Conservation of natural resources (523-526). + 6. Legislation advancing human rights and general welfare + (_see_ Suffrage). + _a._ Abolition of slavery: civil and political rights of + negroes (357-358, 373-375). + _b._ Extension of civil and political rights to women + (554-568). + _c._ Legislation relative to labor conditions (549-551, + 579-581, 590-591). + _d._ Control of public utilities (547-549). + _e._ Social reform and the war on poverty (549-551). + _f._ Taxation and equality of opportunity (551-552). + +=Political Parties and Political Issues= + + I. The Federalists _versus_ the Anti-Federalists [Jeffersonian + Republicans] from about 1790 to about 1816 (168-208, 201-203). + 1. Federalist leaders: Hamilton, John Adams, John Marshall, + Robert Morris. + 2. Anti-Federalist leaders: Jefferson, Madison, Monroe. + 3. Issues: funding the debt, assumption of state debts, first + United States bank, taxation, tariff, strong central + government _versus_ states' rights, and the Alien and + Sedition acts. + II. Era of "Good Feeling" from about 1816 to about 1824, a period + of no organized party opposition (248). + III. The Democrats [former Jeffersonian Republicans] _versus_ the + Whigs [or National Republicans] from about 1832 to 1856 + (238-265, 276-290, 324-334). + 1. Democratic leaders: Jackson, Van Buren, Calhoun, Benton. + + 2. Whig leaders: Webster and Clay. + 3. Issues: second United States bank, tariff, nullification, + Texas, internal improvements, and disposition of Western + lands. + IV. The Democrats _versus_ the Republicans from about 1856 to the + present time (334-377, 388-389, 412-422, 451-475, 489-534, + 588-620). + 1. Democratic leaders: Jefferson Davis, Tilden, Cleveland, + Bryan, and Wilson. + 2. Republican leaders: Lincoln, Blaine, McKinley, Roosevelt. + 3. Issues: Civil War and reconstruction, currency, tariff, + taxation, trusts, railways, foreign policies, imperialism, + labor questions, and policies with regard to land and + conservation. + V. Minor political parties. + 1. Before the Civil War: Free Soil (319) and Labor Parties + (306-307). + 2. Since the Civil War: Greenback (463-464), Populist (464), + Liberal Republican (420), Socialistic (577-579), Progressive + (531-534, 602-603). + +=The Economic Development of the United States= + + I. The land and natural resources. + 1. The colonial land system: freehold, plantation, and manor + (20-25). + 2. Development of the freehold in the West (220-221, 228-230). + 3. The Homestead act and its results (368, 432-433). + 4. The cattle range and cowboy (431-432). + 5. Disappearance of free land (443-445). + 6. Irrigation and reclamation (434-436). + 7. Movement for the conservation of resources (523-526). + II. Industry. + 1. The rise of local and domestic industries (28-32). + 2. British restrictions on American enterprise (67-69, 70-72). + 3. Protective tariffs (see above, 648-649). + 4. Development of industry previous to the Civil War (295-307). + 5. Great progress of industry after the war (401-406). + 6. Rise and growth of trusts and combinations (406-412, + 472-474). + III. Commerce and transportation. + 1. Extent of colonial trade and commerce (32-35). + 2. British regulation (69-70). + 3. Effects of the Revolution and the Constitution + (139-140, 154). + 4. Growth of American shipping (195-196). + 5. Waterways and canals (230-236). + 6. Rise and extension of the railway system (298-300). + 7. Growth of American foreign trade (445-449). + IV. Rise of organized labor. + 1. Early phases before the Civil War: local unions, city + federations, and national unions in specific trades + (304-307). + 2. The National Trade Union, 1866-1872 (574-575). + 3. The Knights of Labor (575-576). + 4. The American Federation of Labor (573-574). + _a._ Policies of the Federation (576-577). + _b._ Relations to politics (579-581). + _c._ Contests with socialists and radicals (577-579). + _d._ Problems of immigration (582-585). + 5. The relations of capital and labor. + _a._ The corporation and labor (410, 570-571). + _b._ Company unions and profit-sharing (571-572). + _c._ Welfare work (573). + _d._ Strikes (465, 526, 580-581). + _e._ Arbitration (581-582). + +=American Foreign Relations= + + I. Colonial period. + 1. Indian relations (57-59). + 2. French relations (59-61). + II. Period of conflict and independence. + 1. Relations with Great Britain (77-108, 116-125, 132-135). + 2. Establishment of connections with European powers (128). + 3. The French alliance of 1778 (128-130). + 4. Assistance of Holland and Spain (130). + III. Relations with Great Britain since 1783. + 1. Commercial settlement in Jay treaty of 1794 (177-178). + 2. Questions arising out of European wars [1793-1801] + (176-177, 180). + 3. Blockade and embargo problems (193-199). + 4. War of 1812 (199-201). + 5. Monroe Doctrine and Holy Alliance (205-207). + 6. Maine boundary--Webster-Ashburton treaty (265). + 7. Oregon boundary (284-286). + 8. Attitude of Great Britain during Civil War (354-355). + 9. Arbitration of _Alabama_ claims (480-481). + 10. The Samoan question (481-482) + 11. The Venezuelan question (482-484). + 12. British policy during Spanish-American War (496-497). + 13. Controversy over blockade, 1914-1917 (598-600). + 14. The World War (603-620). + IV. Relations with France. + 1. The colonial wars (59-61). + 2. The French alliance of 1778 (128-130). + 3. Controversies over the French Revolution (128-130). + 4. Commercial questions arising out of the European wars + (176-177, 180, 193-199). + 5. Attitude of Napoleon III toward the Civil War (354-355). + 6. The Mexican entanglement (478-479). + 7. The World War (596-620). + V. Relations with Germany. + 1. Negotiations with Frederick, king of Prussia (128). + 2. The Samoan controversy (481-482). + 3. Spanish-American War (491). + 4. The Venezuelan controversy (512). + 5. The World War (596-620). + VI. Relations with the Orient. + 1. Early trading connections (486-487). + 2. The opening of China (447). + 3. The opening of Japan (448). + 4. The Boxer rebellion and the "open door" policy (499-502). + 5. Roosevelt and the close of the Russo-Japanese War (511). + 6. The Oriental immigration question (583-584). + VII. The United States and Latin America. + 1. Mexican relations. + _a._ Mexican independence and the Monroe Doctrine (205-207). + _b._ Mexico and French intervention--policy of the United + States (478-479). + _c._ The overthrow of Diaz (1911) and recent questions + (594-596). + 2. Cuban relations. + _a._ Slavery and the "Ostend Manifesto" (485-486). + _b._ The revolutionary period, 1867-1877 (487). + _c._ The revival of revolution (487-491). + _d._ American intervention and the Spanish War (491-496). + _e._ The Platt amendment and American protection (518-519). + 3. Caribbean and other relations. + _a._ Acquisition of Porto Rico (493). + _b._ The acquisition of the Panama Canal strip (508-510). + _c._ Purchase of Danish West Indies (593). + _d._ Venezuelan controversies (482-484, 512). + _e._ Extension of protectorate over Haiti, Santo Domingo, + and Nicaragua (513-514, 592-594). + + + + +INDEX + + +Abolition, 318, 331 + +Adams, Abigail, 556 + +Adams, John, 97, 128, 179ff. + +Adams, J.Q., 247, 319 + +Adams, Samuel, 90, 99, 108 + +Adamson law, 590 + +Aguinaldo, 497 + +Alabama, admission, 227 + +_Alabama_ claims, 480 + +Alamance, battle, 92 + +Alamo, 280 + +Alaska, purchase, 479 + +Albany, plan of union, 62 + +Algonquins, 57 + +Alien law, 180 + +Amendment, method of, 156 + +Amendments to federal Constitution: first eleven, 163 + twelfth, 184, note + thirteenth, 358 + fourteenth, 366, 369, 387 + fifteenth, 358 + sixteenth, 528 + seventeenth, 542 + eighteenth, 591 + nineteenth, 563ff. + +American expeditionary force, 610 + +American Federation of Labor, 573, 608 + +Americanization, 585 + +Amnesty, for Confederates, 383 + +Andros, 65 + +Annapolis, convention, 144 + +Antietam, 357 + +Anti-Federalists, 169 + +Anti-slavery. _See_ Abolition + +Anthony, Susan, 564 + +Appomattox, 363 + +Arbitration: international, 480, 514, 617 + labor disputes, 582 + +Arizona, admission, 443 + +Arkansas, admission, 272 + +Arnold, Benedict, 114, 120 + +Articles of Confederation, 110, 139ff., 146 + +Ashburton, treaty, 265 + +Assembly, colonial, 49ff., 89ff. + +Assumption, 164ff. + +Atlanta, 361 + +Australian ballot, 540 + + +Bacon, Nathaniel, 58 + +Ballot: Australian, 540 + short, 544 + +Baltimore, Lord, 6 + +Bank: first U.S., 167 + second, 203, 257ff. + +Banking system: state, 300 + U.S. national, 369 + services of, 407 + _See also_ Federal reserve + +Barry, John, 118 + +Bastille, 172 + +Bell, John, 341 + +Belleau Wood, 611 + +Berlin decree, 194 + +Blockade: by England and France, 193ff. + Southern ports, 353 + law and practice in 1914, 598ff. + +Bond servants, 13ff. + +Boone, Daniel, 28, 218 + +Boston: massacre, 91 + evacuation, 116 + port bill, 94 + +Bowdoin, Governor, 142 + +Boxer rebellion, 499 + +Brandywine, 129 + +Breckinridge, J.C., 340 + +Bright, John, 355 + +Brown, John, 338 + +Brown University, 45 + +Bryan, W.J., 468ff., 495, 502, 503, 527 + +Buchanan, James, 335, 368 + +Budget system, 529 + +Bull Run, 350 + +Bunker Hill, 102 + +Burgoyne, General, 116, 118, 130 + +Burke, Edmund, 87, 96ff., 132, 175 + +Burr, Aaron, 183, 231 + +Business. _See_ Industry + + +Calhoun, J.C., 198ff., 203, 208, 281, 321, 328 + +California, 286ff. + +Canada, 61, 114, 530 + +Canals, 233, 298, 508 + +Canning, British premier, 206 + +Cannon, J.G., 530 + +Cantigny, 611 + +Caribbean, 479 + +Carpet baggers, 373 + +Cattle ranger, 431ff. + +Caucus, 245 + +Censorship. _See_ Newspapers + +Charles I, 3 + +Charles II, 65 + +Charleston, 36, 116 + +Charters, colonial, 2ff., 41 + +Chase, Justice, 187 + +Chateau-Thierry, 611 + +Checks and balances, 153 + +_Chesapeake_, the, 195 + +Chickamauga, 361 + +Child labor law, 591 + +China, 447, 499ff. + +Chinese labor, 583 + +Churches, colonial, 39ff., 42, 43 + +Cities, 35, 36, 300ff., 395, 410, 544 + +City manager plan, 545 + +Civil liberty, 358ff., 561 + +Civil service, 419, 536, 538ff. + +Clarendon, Lord, 6 + +Clark, G.R., 116, 218 + +Clay, Henry, 198, 203, 248, 261, 328 + +Clayton anti-trust act, 489 + +Clergy. _See_ Churches + +Cleveland, Grover, 421, 465, 482, 484, 489, 582 + +Clinton, Sir Henry, 119 + +Colorado, admission, 441 + +Combination. _See_ Trusts + +Commerce, colonial, 33ff. + disorders after 1781, 140 + Constitutional provisions on, 154 + Napoleonic wars, 176, 193ff. + domestic growth of, 307 + congressional regulation of, 460ff., 547 + _See also_ Trusts and Railways + +Commission government, 544 + +Committees of correspondence, 108 + +_Commonsense_, pamphlet, 103 + +Communism, colonial, 20f. + +Company, trading, 2f. + +Compromises: of Constitution, 148, 150, 151 + Missouri, 325, 332 + of 1850, 328ff. + Crittenden, 350 + +Conciliation, with England, 131 + +Concord, battle, 100 + +Confederacy, Southern, 346ff. + +Confederation: New England, 61f. + _See also_ Articles of + +Congregation, religious, 4 + +Congress: stamp act, 85 + continental, 99ff. + under Articles, 139f. + under Constitution, 152 + powers of, 153 + +Connecticut: founded, 4ff. + self-government, 49 + _See also_ Suffrage + constitutions, state + +Conservation, 523ff. + +Constitution: formation of, 143ff. + _See also_ Amendment + +_Constitution_, the, 200 + +Constitutions, state, 109ff., 238ff., 385ff. + +Constitutional union party, 340 + +Contract labor law, 584 + +Convention: 1787, 144ff. + nominating, 405 + +Convicts, colonial, 15 + +Conway Cabal, 120 + +Cornwallis, General, 116, 119, 131 + +Corporation and labor, 571. _See also_ Trusts + +Cotton. _See_ Planting system + +Cowboy, 431ff. + +Cowpens, battle, 116 + +Cox, J.M., 619 + +_Crisis, The_, pamphlet, 115 + +Crittenden Compromise, 350 + +Cuba, 485ff., 518 + +Cumberland Gap, 223 + +Currency. _See_ Banking + + +Danish West Indies, purchased, 593 + +Dartmouth College, 45 + +Daughters of liberty, 84 + +Davis, Jefferson, 346ff. + +Deane, Silas, 128 + +Debs, E.V., 465, 534 + +Debt, national, 164ff. + +Decatur, Commodore, 477 + +Declaration of Independence, 101ff. + +Defense, national, 154 + +De Kalb, 121 + +Delaware, 3, 49 + +De Lome affair, 490 + +Democratic party, name assumed, 260 + _See also_ Anti-Federalists + +Dewey, Admiral, 492 + +Diplomacy: of the Revolution, 127ff. + Civil War, 354 + +Domestic industry, 28 + +Donelson, Fort, 361 + +Dorr Rebellion, 243 + +Douglas, Stephen A., 333, 337, 368 + +Draft: Civil War, 351 + World War, 605 + +Draft riots, 351 + +Dred Scott case, 335, 338 + +Drug act, 523 + +Duquesne, Fort, 60 + +Dutch, 3, 12 + + +East India Company, 93 + +Education, 43ff., 557, 591 + +Electors, popular election of, 245 + +Elkins law, 547 + +Emancipation, 357ff. + +Embargo acts, 186ff. + +England: Colonial policy of, 64ff. + Revolutionary War, 99ff. + Jay treaty, 177 + War of 1812, 198ff. + Monroe Doctrine, 206 + Ashburton treaty, 265 + Civil War, 354 + _Alabama_ claims, 480 + Samoa, 481 + Venezuela question, 482 + Spanish War, 496 + World War, 596ff. + +Erie Canal, 233 + +Esch-Cummins bill, 582 + +Espionage act, 607 + +Excess profits tax, 606 + +Executive, federal, plans for, 151 + +Expunging resolution, 260 + + +Farm loan act, 589 + +Federal reserve act, 589 + +Federal trade commission, 590 + +_Federalist_, the, 158 + +Federalists, 168ff., 201ff. + +Feudal elements in colonies, 21f. + +Filipino revolt. _See_ Philippines + +Fillmore, President, 485 + +Finances: colonial, 64 + revolutionary, 125ff. + disorders, 140 + Civil War, 347, 352ff. + World War, 606 + _See also_ Banking + +Fishing industry, 31 + +Fleet, world tour, 515 + +Florida, 134, 204 + +Foch, General, 611 + +Food and fuel law, 607 + +Force bills, 384 ff., 375 + +Forests, national, 525ff. + +Fourteen points, 605 + +Fox, C.J., 132 + +France: colonization, 59ff. + French and Indian War, 60ff. + American Revolution, 116, 123, 128ff. + French Revolution, 165ff. + Quarrel with, 180 + Napoleonic wars, 193ff. + Louisiana purchase, 190 + French Revolution of 1830, 266 + Civil War, 354 + Mexican affair, 478 + World War, 596ff. + +Franchises, utility, 548 + +Franklin, Benjamin, 45, 62, 82, 86, 128, 134 + +Freedmen. _See_ Negro + +Freehold. _See_ Land + +Free-soil party, 319 + +Fremont, J.C., 288, 334 + +French. _See_ France + +Friends, the, 5 + +Frontier. _See_ Land + +Fugitive slave act, 329 + +Fulton, Robert, 231, 234 + +Fundamental articles, 5 + +Fundamental orders, 5 + + +Gage, General, 95, 100 + +Garfield, President, 416 + +Garrison, William Lloyd, 318 + +_Gaspee_, the, 92 + +Gates, General, 116, 120, 131 + +Genet, 177 + +George I, 66 + +George II, 4, 66, 82 + +George III, 77ff. + +Georgia: founded, 4 + royal province, 49 + state constitution, 109 + _See also_ Secession + +Germans: colonial immigration, 9ff. + in Revolutionary War, 102ff. + later immigration, 303 + +Germany: Samoa, 481 + Venezuela affair, 512 + World War, 596f. + +Gerry, Elbridge, 148 + +Gettysburg, 362 + +Gibbon, Edward, 133 + +Gold: discovery, 288 + standard, 466, 472 + +Gompers, Samuel, 573, 608 + +Governor, royal, 49ff. + +Grandfather clause, 386f. + +Grangers, 460ff. + +Grant, General, 361, 416, 480, 487 + +Great Britain. _See_ England + +Greeley, Horace, 420 + +Greenbacks, 454ff. + +Greenbackers, 462ff. + +Greene, General, 117, 120 + +Grenville, 79ff. + +Guilford, battle, 117 + + +Habeas corpus, 358 + +Hague conferences, 514 + +Haiti, 593 + +Hamilton, Alexander, 95, 143, 158, 162, 168ff., 231 + +Harding, W.G., 389, 619 + +Harlem Heights, battle, 114 + +Harper's Ferry, 339 + +Harrison, Benjamin, 422, 484 + +Harrison, W.H., 198, 263f. + +Hartford convention, 201ff., 238 + +Harvard, 44 + +Hawaii, 484f. + +Hay, John, 477, 500ff. + +Hayne, Robert, 256 + +Hays, President, 416f. + +Henry, Patrick, 85 + +Hepburn act, 523 + +Hill, James J., 429 + +Holland, 130 + +Holy Alliance, 205 + +Homestead act, 368, 432 + +Hooker, Thomas, 5 + +Houston, Sam, 279ff. + +Howe, General, 118 + +Hughes, Charles E., 602 + +Huguenots, 10 + +Hume, David, 132 + +Hutchinson, Anne, 5 + + +Idaho, admission, 442 + +Income tax, 459, 466, 528, 588, 606 + +Inheritance tax, 606 + +Illinois, admission, 226 + +Illiteracy, 585 + +Immigration: colonial, 1-17 + before Civil War, 302, 367 + after Civil War, 410ff. + problems of, 582ff. + +Imperialism, 494ff., 498f., 502ff. + +Implied powers, 212 + +Impressment of seamen, 194 + +Indentured servants, 13f. + +Independence, Declaration of, 107 + +Indiana, admission, 226 + +Indians, 57ff., 81, 431 + +Industry: colonial, 28ff. + growth of, 296ff. + during Civil War, 366 + after 1865, 390ff., 401ff., 436ff., 559 + _See also_ Trusts + +Initiative, the, 543 + +Injunction, 465, 580 + +Internal improvements, 260, 368 + +Interstate commerce act, 461, 529 + +Intolerable acts, 93 + +Invisible government, 537 + +Iowa, admission, 275 + +Irish, 11, 302 + +Iron. _See_ Industry + +Irrigation, 434ff., 523ff. + + +Jackson, Andrew, 201, 204, 246, 280 + +Jacobins, 174 + +James I, 3 + +James II, 65 + +Jamestown, 3, 21 + +Japan, relations with, 447, 511, 583 + +Jay, John, 128, 158, 177 + +Jefferson, Thomas: Declaration of Independence, 107 + Secretary of State, 162ff. + political leader, 169 + as President, 183ff. + Monroe Doctrine, 206, 231 + +Jews, migration of, 11 + +Johnson, Andrew, 365, 368, 371f. + +Johnson, Samuel, 132 + +Joliet, 59 + +Jones, John Paul, 118 + +Judiciary: British system, 67 + federal, 152 + + +Kansas, admission, 441 + +Kansas-Nebraska bill, 333 + +Kentucky: admission, 224 + Resolutions, 182 + +King George's War, 59 + +King Philip's War, 57 + +King William's War, 59 + +King's College (Columbia), 45 + +Knights of Labor, 575ff. + +Kosciusko, 121 + +Ku Klux Klan, 382 + + +Labor: rise of organized, 304 + parties, 462ff. + question, 521 + American Federation, 573ff. + legislation, 590 + World War, 608ff. + +Lafayette, 121 + +La Follette, Senator, 531 + +Land: tenure 20ff. + sales restricted, 80 + Western survey, 219 + federal sales policy, 220 + Western tenure, 228 + disappearance of free, 445 + new problems, 449 + _See also_ Homestead act + +La Salle, 59 + +Lawrence, Captain, 200 + +League of Nations, 616ff. + +Le Boeuf, Fort, 59 + +Lee, General Charles, 131 + +Lee, R.E., 357 + +Lewis and Clark expedition, 193 + +Lexington, battle, 100 + +Liberal Republicans, 420 + +Liberty loan, 606 + +Lincoln: Mexican War, 282 + Douglas debates, 336f. + election, 341 + Civil War, 344ff. + reconstruction, 371 + +Literacy test, 585 + +Livingston, R.R., 191 + +Locke, John, 95 + +London Company, 3 + +Long Island, battle, 114 + +Lords of trade, 67ff. + +Louis XVI, 171ff. + +Louisiana: ceded to Spain, 61 + purchase, 190ff. + admission, 227 + +Loyalists. _See_ Tories + +_Lusitania_, the, 601ff. + + +McClellan, General, 362, 365 + +McCulloch _vs._ Maryland, 211 + +McKinley, William, 422, 467ff., 489ff. + +Macaulay, Catherine, 132 + +Madison, James, 158, 197ff. + +Maine, 325 + +_Maine_, the, 490 + +Manila Bay, battle, 492 + +Manors, colonial, 22 + +Manufactures. _See_ Industry + +Marbury _vs._ Madison, 209 + +Marietta, 220 + +Marion, Francis, 117, 120 + +Marquette, 59 + +Marshall, John, 208ff. + +Martineau, Harriet, 267 + +Maryland, founded, 6, 49, 109, 239, 242 + +Massachusetts: founded, 3ff. + _See also_ Immigration, Royal province, Industry, Revolutionary War, + Constitutions, state, Suffrage, Commerce, and Industry + +Massachusetts Bay Company, 3 + founded, 3ff. + _See also_ Immigration, Royal province + +_Mayflower_ compact, 4 + +Mercantile theory, 69 + +Merchants. _See_ Commerce + +_Merrimac_, the, 353 + +Meuse-Argonne, battle, 612 + +Mexico: and Texas, 278ff. + later relations, 594f. + +Michigan, admission, 273 + +Midnight appointees, 187 + +Milan Decree, 194 + +Militia, Revolutionary War, 122 + +Minimum wages, 551 + +Minnesota, admission, 275 + +Mississippi River, and West, 189f. + +Missouri Compromise, 207, 227, 271, 325, 332 + +Molasses act, 71 + +Money, paper, 80, 126, 155, 369 + +_Monitor_, the, 353 + +Monroe, James, 204ff., 191 + +Monroe Doctrine, 205, 512 + +Montana, admission, 442 + +Montgomery, General, 114 + +Morris, Robert, 127 + +Mothers' pensions, 551 + +Mohawks, 57 + +Muckraking, 536f. + +Mugwumps, 420 + +Municipal ownership, 549 + + +Napoleon I, 190 + +Napoleon III: Civil War, 354f. + Mexico, 477 + +National Labor Union, 574 + +National road, 232 + +Nationalism, colonial, 56ff. + +Natural rights, 95 + +Navigation acts, 69 + +Navy: in Revolution, 188 + War of 1812, 195 + Civil War, 353 + World War, 610. + _See also_ Sea Power + +Nebraska, admission, 441 + +Negro: Civil rights, 370ff. + in agriculture, 393ff. + status of, 396ff. + _See also_ Slavery + +New England: colonial times, 6ff., 35, 40ff. + _See also_ Industry, Suffrage, Commerce, and Wars + +New Hampshire: founded, 4ff. + _See also_ Immigration, Royal province, Suffrage, and Constitutions, + state + +New Jersey, founded, 6. + _See also_ Immigration, Royal province, Suffrage, and + Constitutions, state + +Newlands, Senator, 524 + +New Mexico, admission, 443 + +New Orleans, 59, 190 + battle, 201 + +Newspapers, colonial, 46ff. + +New York: founded by Dutch, 3 + transferred to English, 49 + _See also_ Dutch, Immigration, Royal province, Commerce, Suffrage, + and Constitutions, state + +New York City, colonial, 36 + +Niagara, Fort, 59 + +Nicaragua protectorate, 594 + +Non-intercourse act, 196ff. + +Non-importation, 84ff., 99 + +North, Lord, 100, 131, 133 + +North Carolina: founded, 6. + _See also_ Royal province, Immigration, Suffrage, and Constitutions, + state + +North Dakota, admission, 442 + +Northwest Ordinance, 219 + +Nullification, 182, 251ff. + + +Oglethorpe, James, 3 + +Ohio, admission, 225 + +Oklahoma, admission, 443 + +Open door policy, 500 + +Oregon, 284ff. + +Ostend Manifesto, 486 + +Otis, James, 88, 95f. + + +Pacific, American influence, 447 + +Paine, Thomas, 103, 115, 175 + +Panama Canal, 508ff. + +Panics: 1837, 262 + 1857, 336 + 1873, 464 + 1893, 465 + +Parcel post, 529 + +Parker, A.B., 527 + +Parties: rise of, 168ff. + Federalists, 169ff. + Anti-Federalists (Jeffersonian Republicans), 169ff. + Democrats, 260 + Whigs, 260ff. + Republicans, 334ff. + Liberal Republicans, 420 + Constitutional union, 340 + minor parties, 462ff. + +Paterson, William, 196ff. + +Penn, William, 6 + +Pennsylvania: founded, 6 + _See also_ Penn, Germans, Immigration, Industry, Revolutionary War, + Constitutions, state, Suffrage + +Pennsylvania University, 45 + +Pensions, soldiers and sailors, 413, 607 + mothers', 551 + +Pequots, 57 + +Perry, O.H., 200 + +Pershing, General, 610 + +Philadelphia, 36, 116 + +Philippines, 492ff., 516ff., 592 + +Phillips, Wendell, 320 + +Pierce, Franklin, 295, 330 + +Pike, Z., 193, 287 + +Pilgrims, 4 + +Pinckney, Charles, 148 + +Pitt, William, 61, 79, 87, 132 + +Planting system, 22f., 25, 149, 389, 393ff. + +Plymouth, 4, 21 + +Polk, J.K., 265, 285f. + +Polygamy, 290f. + +Populist party, 464 + +Porto Rico, 515, 592 + +Postal savings bank, 529 + +Preble, Commodore, 196 + +Press. _See_ Newspapers + +Primary, direct, 541 + +Princeton, battle, 129 + University, 45 + +Profit sharing, 572 + +Progressive party, 531f. + +Prohibition, 591f. + +Proprietary colonies, 3, 6 + +Provinces, royal, 49ff. + +Public service, 538ff. + +Pulaski, 121 + +Pullman strike, 465 + +Pure food act, 523 + +Puritans, 3, 7, 40ff. + + +Quakers, 6ff. + +Quartering act, 83 + +Quebec act, 94 + +Queen Anne's War, 59 + +Quit rents, 21f. + + +Radicals, 579 + +Railways, 298, 402, 425, 460ff., 547, 621 + +Randolph, Edmund, 146, 147, 162 + +Ratification, of Constitution, 156ff. + +Recall, 543 + +Reclamation, 523ff. + +Reconstruction, 370ff. + +Referendum, the, 543 + +Reign of terror, 174 + +Republicans: Jeffersonian, 179 + rise of present party, 334ff. + supremacy of, 412ff. + _See also_ McKinley, Roosevelt, and Taft + +Resumption, 454 + +Revolution: American, 99ff. + French, 171ff. + Russian, 619 + +Rhode Island: founded, 4ff. + self-government, 49 + _See also_ Suffrage + +Roosevelt, Theodore, 492, 500ff., 531, 570 + +Royal province, 49ff. + +Russia, 205, 207, 355, 479, 619 + +Russo-Japanese War, 511f. + + +Saint Mihiel, 612 + +Samoa, 481 + +San Jacinto, 280 + +Santa Fe trail, 287 + +Santo Domingo, 480, 513, 592 + +Saratoga, battle, 116, 130 + +Savannah, 116, 131 + +Scandinavians, 278 + +Schools. _See_ Education + +Scott, General, 283, 330 + +Scotch-Irish, 7ff. + +Seamen's act, 590 + +Sea power: American Revolution, 118 + Napoleonic wars, 193ff. + Civil War, 353 + Caribbean, 593 + Pacific, 447 + World War, 610ff. + +Secession, 344ff. + +Sedition: act of 1798, 180ff., 187 + of 1918, 608 + +Senators, popular election, 527, 541ff. + +Seven Years' War, 60ff. + +Sevier, John, 218 + +Seward, W.H., 322, 342 + +Shafter, General, 492 + +Shays's rebellion, 142 + +Sherman, General, 361 + +Sherman: anti-trust law, 461 + silver act, 458 + +Shiloh, 361 + +Shipping. _See_ Commerce + +Shipping act, 607 + +Silver, free, 455ff. + +Slavery: colonial, 16f. + trade, 150 + in Northwest, 219 + decline in North, 316f. + growth in South, 320ff. + and the Constitution, 324 + and territories, 325ff. + compromises, 350 + abolished, 357ff. + +Smith, Joseph, 290 + +Socialism, 577ff. + +Solid South, 388 + +Solomon, Hayn, 126 + +Sons of liberty, 82 + +South: economic and political views, 309ff. + _See also_ Slavery and Planting system, and Reconstruction + +South Carolina: founded, 6 + nullification, 253ff. + _See also_ Constitutions, state, Suffrage, Slavery, and Secession + +South Dakota, 442 + +Spain: and Revolution, 130 + Louisiana, 190 + Monroe Doctrine, 205 + Spanish War, 490ff. + +Spoils system, 244, 250, 418, 536ff. + +Stamp act, 82ff. + +Stanton, Elizabeth Cady, 564 + +States: disorders under Articles of Confederation, 141 + constitutions, federal limits on, 155 + position after Civil War, 366ff. + _See also_ Suffrage, Nullification, and Secession + +Steamboat, 234 + +Stowe, H.B., 332 + +Strikes: of 1877, 581 + Pullman, 581 + coal, 526 + _See also_ Labor + +Submarine campaign, 600ff. + +Suffrage: colonial, 42, 51 + first state constitutions, 239 + White manhood, 242 + Negro, 374ff., 385f. + Woman, 110, 562ff. + +Sugar act, 81 + +Sumner, Charles, 319 + +Sumter, Fort, 350 + +Swedes, 3, 13 + + +Taft, W.H., 527ff. + +Tammany Hall, 306, 418 + +Taney, Chief Justice, 357 + +Tariff: first, 167 + of 1816, 203 + development of, 251ff. + abominations, 249, 253 + nullification, 251 + of 1842, 264 + Southern views of, 309ff. + of 1857, 337 + Civil War, 367 + Wilson bill, 459 + McKinley bill, 422 + Dingley bill, 472 + Payne-Aldrich, 528 + Underwood, 588 + +Taxation: and representation, 149 + and Constitution, 154 + Civil War, 353 + and wealth, 522, 551 + and World War, 606 + +Tea act, 88 + +Tea party, 92 + +Tenement house reform, 549 + +Tennessee, 28, 224 + +Territories, Northwest, 219 + South of the Ohio, 219 + _See also_ Slavery and Compromise + +Texas, 278ff. + +Tippecanoe, battle, 198 + +Tocqueville, 267 + +Toleration, religious, 42 + +Tories, colonial, 84 + in Revolution, 112 + +Townshend acts, 80, 87 + +Trade, colonial, 70 + legislation, 70. _See_ Commerce + +Transylvania company, 28 + +Treasury, independent, 263 + +Treaties, of 1763, 61 + alliance with France, 177 + of 1783 with England, 134 + Jay, 177, 218 + Louisiana purchase, 191f. + of 1815, 201 + Ashburton, 265 + of 1848 with Mexico, 283 + Washington with England, 481 + with Spain, 492 + Versailles (1919), 612ff. + +Trenton, battle, 116 + +Trollope, Mrs., 268 + +Trusts, 405ff., 461, 472ff., 521, 526, 530 + +Tweed, W.M., 418 + +Tyler, President, 264ff., 281, 349 + + +"Uncle Tom's Cabin," 332 + +Union party, 365 + +Unions. _See_ Labor + +Utah, 290ff., 329, 442 + +Utilities, municipal, 548 + + +Vallandigham, 360 + +Valley Forge, 116, 129 + +Van Buren, Martin, 262 + +Venango, Fort, 59 + +Venezuela, 482ff., 512 + +Vermont, 223 + +Vicksburg, 361 + +Virginia: founded, 3. + _See also_ Royal province, Constitutions, state, Planting system, + Slavery, Secession, and Immigration + + +Walpole, Sir Robert, 66 + +Wars: colonial, 57ff. + Revolutionary, 99ff. + of 1812, 199ff. + Mexican, 282ff. + Civil, 344ff. + Spanish, 490ff. + World, 596ff. + +Washington: warns French, 60 + in French war, 63 + commander-in-chief, 101ff. + and movement for Constitution, 142ff. + as President, 166ff. + Farewell Address, 178 + +Washington City, 166 + +Washington State, 442 + +Webster, 256, 265, 328 + +Welfare work, 573 + +Whigs: English, 78 + colonial, 83 + rise of party, 260ff., 334, 340 + +Whisky Rebellion, 171 + +White Camelia, 382 + +White Plains, battle, 114 + +Whitman, Marcus, 284 + +William and Mary College, 45 + +Williams, Roger, 5, 42 + +Wilmot Proviso, 326 + +Wilson, James, 147 + +Wilson, Woodrow, election, 533f. + administrations, 588ff. + +Winthrop, John, 3 + +Wisconsin, admission, 274 + +Witchcraft, 41 + +Wollstonecraft, Mary, 556 + +Women: colonial, 28 + Revolutionary War, 124 + labor, 305 + education and civil rights, 554ff. + suffrage, 562ff. + +Workmen's compensation, 549 + +Writs of assistance, 88 + +Wyoming, admission, 442 + + +X, Y, Z affair, 180 + + +Yale, 44 + +Young, Brigham, 290 + + +Zenger, Peter, 48 + + * * * * * + +Printed in the United States of America. + + * * * * * + +[Transcriber's notes: + +Punctuation normalized in all _Underwood and Underwood, N.Y._ + +Superscripted letters are denoted with a caret. For example, G^O +WASHINGTON. + +Period added after Mass on verso page. Original read "Mass, U.S.A." + +Chapter I, page 19, period added to pp. 55-159 and pp. 242-244. + +Chapter IV, page 61 cooperation changed to cooperation twice to match +rest of text usage. Also on page 620. + +Chapter VI, page 121 changed maneuvered to manoevered. + +Chapter VIII, page 185, period added to "Vol." Original read "Vol III," + +Chapter X, page 219, changed coordinate to coordinate to reflect rest of +text usage. + +Chapter X, page 234, Italicized habeus corpus to match rest of text. + +Chapter XI, page 257 changed reestablished to reestablished to conform +to rest of text usage. + +Chapter XI, page 259 changed reelection to reelection + +Chapter XII, page 269 added period after "Vol" Vol. II + +Chapter XII, page 270. Title of work reads "_Selected Documents of +United States History, 1776-1761_". Research shows the document does +have this title. + +Chapter XV, page 351. changed "bout" to "about". "for only about" + +Chapter XVI, page 385. changed "provisons" to "provisions". + +Chapter XX, page 478. changed "aniversary" to "anniversary". + +Chapter XXIV, page 579 word "on" changed to "one" "five commissioners, +one of whom," + +Topical Syllabus. Missing periods added to normalize punctuation in +entries such as on page 648 (4) Sixteenth Amendment--income tax +(528-529). + +Appendix, page 631, comma changed to semi-colon on "bills of credit;" to +match rest of list. Also on "obligation of contracts;" + +Index, page 657, changed "Freesoil" to Free-soil to match rest of text +usage. + +Index, page 660, space removed from "396 ff." changed to "status of, +396ff." + +Index, Page 662, added comma to States: disorders under Articles of +Constitution, 141] + + + + + +End of the Project Gutenberg EBook of History of the United States +by Charles A. Beard and Mary R. Beard + +*** END OF THIS PROJECT GUTENBERG EBOOK HISTORY OF THE UNITED STATES *** + +***** This file should be named 16960-8.txt or 16960-8.zip ***** +This and all associated files of various formats will be found in: + http://www.gutenberg.org/1/6/9/6/16960/ + +Produced by Curtis Weyant, M and the Online Distributed +Proofreading Team at http://www.pgdp.net + + +Updated editions will replace the previous one--the old editions +will be renamed. + +Creating the works from public domain print editions means that no +one owns a United States copyright in these works, so the Foundation +(and you!) can copy and distribute it in the United States without +permission and without paying copyright royalties. Special rules, +set forth in the General Terms of Use part of this license, apply to +copying and distributing Project Gutenberg-tm electronic works to +protect the PROJECT GUTENBERG-tm concept and trademark. Project +Gutenberg is a registered trademark, and may not be used if you +charge for the eBooks, unless you receive specific permission. If you +do not charge anything for copies of this eBook, complying with the +rules is very easy. You may use this eBook for nearly any purpose +such as creation of derivative works, reports, performances and +research. They may be modified and printed and given away--you may do +practically ANYTHING with public domain eBooks. Redistribution is +subject to the trademark license, especially commercial +redistribution. + + + +*** START: FULL LICENSE *** + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase "Project +Gutenberg"), you agree to comply with all the terms of the Full Project +Gutenberg-tm License (available with this file or online at +http://gutenberg.net/license). + + +Section 1. General Terms of Use and Redistributing Project Gutenberg-tm +electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or destroy +all copies of Project Gutenberg-tm electronic works in your possession. +If you paid a fee for obtaining a copy of or access to a Project +Gutenberg-tm electronic work and you do not agree to be bound by the +terms of this agreement, you may obtain a refund from the person or +entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. "Project Gutenberg" is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this agreement +and help preserve free future access to Project Gutenberg-tm electronic +works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" +or PGLAF), owns a compilation copyright in the collection of Project +Gutenberg-tm electronic works. Nearly all the individual works in the +collection are in the public domain in the United States. If an +individual work is in the public domain in the United States and you are +located in the United States, we do not claim a right to prevent you from +copying, distributing, performing, displaying or creating derivative +works based on the work as long as all references to Project Gutenberg +are removed. Of course, we hope that you will support the Project +Gutenberg-tm mission of promoting free access to electronic works by +freely sharing Project Gutenberg-tm works in compliance with the terms of +this agreement for keeping the Project Gutenberg-tm name associated with +the work. You can easily comply with the terms of this agreement by +keeping this work in the same format with its attached full Project +Gutenberg-tm License when you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are in +a constant state of change. If you are outside the United States, check +the laws of your country in addition to the terms of this agreement +before downloading, copying, displaying, performing, distributing or +creating derivative works based on this work or any other Project +Gutenberg-tm work. The Foundation makes no representations concerning +the copyright status of any work in any country outside the United +States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other immediate +access to, the full Project Gutenberg-tm License must appear prominently +whenever any copy of a Project Gutenberg-tm work (any work on which the +phrase "Project Gutenberg" appears, or with which the phrase "Project +Gutenberg" is associated) is accessed, displayed, performed, viewed, +copied or distributed: + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.net + +1.E.2. If an individual Project Gutenberg-tm electronic work is derived +from the public domain (does not contain a notice indicating that it is +posted with permission of the copyright holder), the work can be copied +and distributed to anyone in the United States without paying any fees +or charges. If you are redistributing or providing access to a work +with the phrase "Project Gutenberg" associated with or appearing on the +work, you must comply either with the requirements of paragraphs 1.E.1 +through 1.E.7 or obtain permission for the use of the work and the +Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or +1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any additional +terms imposed by the copyright holder. Additional terms will be linked +to the Project Gutenberg-tm License for all works posted with the +permission of the copyright holder found at the beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including any +word processing or hypertext form. However, if you provide access to or +distribute copies of a Project Gutenberg-tm work in a format other than +"Plain Vanilla ASCII" or other format used in the official version +posted on the official Project Gutenberg-tm web site (www.gutenberg.net), +you must, at no additional cost, fee or expense to the user, provide a +copy, a means of exporting a copy, or a means of obtaining a copy upon +request, of the work in its original "Plain Vanilla ASCII" or other +form. Any alternate format must include the full Project Gutenberg-tm +License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works provided +that + +- You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is + owed to the owner of the Project Gutenberg-tm trademark, but he + has agreed to donate royalties under this paragraph to the + Project Gutenberg Literary Archive Foundation. Royalty payments + must be paid within 60 days following each date on which you + prepare (or are legally required to prepare) your periodic tax + returns. Royalty payments should be clearly marked as such and + sent to the Project Gutenberg Literary Archive Foundation at the + address specified in Section 4, "Information about donations to + the Project Gutenberg Literary Archive Foundation." + +- You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or + destroy all copies of the works possessed in a physical medium + and discontinue all use of and all access to other copies of + Project Gutenberg-tm works. + +- You provide, in accordance with paragraph 1.F.3, a full refund of any + money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days + of receipt of the work. + +- You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm +electronic work or group of works on different terms than are set +forth in this agreement, you must obtain permission in writing from +both the Project Gutenberg Literary Archive Foundation and Michael +Hart, the owner of the Project Gutenberg-tm trademark. Contact the +Foundation as set forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +public domain works in creating the Project Gutenberg-tm +collection. Despite these efforts, Project Gutenberg-tm electronic +works, and the medium on which they may be stored, may contain +"Defects," such as, but not limited to, incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other intellectual +property infringement, a defective or damaged disk or other medium, a +computer virus, or computer codes that damage or cannot be read by +your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right +of Replacement or Refund" described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium with +your written explanation. The person or entity that provided you with +the defective work may elect to provide a replacement copy in lieu of a +refund. If you received the work electronically, the person or entity +providing it to you may choose to give you a second opportunity to +receive the work electronically in lieu of a refund. If the second copy +is also defective, you may demand a refund in writing without further +opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of damages. +If any disclaimer or limitation set forth in this agreement violates the +law of the state applicable to this agreement, the agreement shall be +interpreted to make the maximum disclaimer or limitation permitted by +the applicable state law. The invalidity or unenforceability of any +provision of this agreement shall not void the remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in accordance +with this agreement, and any volunteers associated with the production, +promotion and distribution of Project Gutenberg-tm electronic works, +harmless from all liability, costs and expenses, including legal fees, +that arise directly or indirectly from any of the following which you do +or cause to occur: (a) distribution of this or any Project Gutenberg-tm +work, (b) alteration, modification, or additions or deletions to any +Project Gutenberg-tm work, and (c) any Defect you cause. + + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of computers +including obsolete, old, middle-aged and new computers. It exists +because of the efforts of hundreds of volunteers and donations from +people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need, is critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future generations. +To learn more about the Project Gutenberg Literary Archive Foundation +and how your efforts and donations can help, see Sections 3 and 4 +and the Foundation web page at http://www.pglaf.org. + + +Section 3. Information about the Project Gutenberg Literary Archive +Foundation + +The Project Gutenberg Literary Archive Foundation is a non profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Its 501(c)(3) letter is posted at +http://pglaf.org/fundraising. Contributions to the Project Gutenberg +Literary Archive Foundation are tax deductible to the full extent +permitted by U.S. federal laws and your state's laws. + +The Foundation's principal office is located at 4557 Melan Dr. S. +Fairbanks, AK, 99712., but its volunteers and employees are scattered +throughout numerous locations. Its business office is located at +809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email +business@pglaf.org. Email contact links and up to date contact +information can be found at the Foundation's web site and official +page at http://pglaf.org + +For additional contact information: + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without wide +spread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To +SEND DONATIONS or determine the status of compliance for any +particular state visit http://pglaf.org + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg Web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including including checks, online payments and credit card +donations. To donate, please visit: http://pglaf.org/donate + + +Section 5. General Information About Project Gutenberg-tm electronic +works. + +Professor Michael S. Hart is the originator of the Project Gutenberg-tm +concept of a library of electronic works that could be freely shared +with anyone. For thirty years, he produced and distributed Project +Gutenberg-tm eBooks with only a loose network of volunteer support. + + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the U.S. +unless a copyright notice is included. Thus, we do not necessarily +keep eBooks in compliance with any particular paper edition. + + +Most people start at our Web site which has the main PG search facility: + + http://www.gutenberg.net + +This Web site includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. +Project Gutenberg's Manual of Surgery, by Alexis Thomson and Alexander Miles + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org + + +Title: Manual of Surgery + Volume First: General Surgery. Sixth Edition. + +Author: Alexis Thomson and Alexander Miles + +Release Date: March 4, 2006 [EBook #17921] + +Language: English + +Character set encoding: ISO-8859-1 + +*** START OF THIS PROJECT GUTENBERG EBOOK MANUAL OF SURGERY *** + + + + +Produced by Jonathan Ingram, Laura Wisewell and the Online +Distributed Proofreading Team at http://www.pgdp.net + + + + + ++--------------------------------------------------------------------+ +| | +| Transcriber's note: The original text used the apothecaries' | +| symbols here rendered as [ounce] and [dram]. The substitutions | +| used for other special characters, such as the oe ligature, are | +| standard. All the special characters are preserved in the UTF-8 | +| and HTML versions of this text. | +| | +| In addition, a number of printing errors have been corrected. | +| These are marked in the HTML version only. | +| | ++--------------------------------------------------------------------+ + + + + + OXFORD MEDICAL PUBLICATIONS + + + + MANUAL OF SURGERY + + + + BY + + ALEXIS THOMSON, F.R.C.S.Ed. + _PROFESSOR OF SURGERY, UNIVERSITY OF EDINBURGH_ + SURGEON EDINBURGH ROYAL INFIRMARY + + AND + + ALEXANDER MILES, F.R.C.S.Ed. + SURGEON EDINBURGH ROYAL INFIRMARY + + + VOLUME FIRST + GENERAL SURGERY + + + _SIXTH EDITION REVISED_ + _WITH 169 ILLUSTRATIONS_ + + + + LONDON + HENRY FROWDE and HODDER & STOUGHTON + THE _LANCET_ BUILDING + 1 & 2 BEDFORD STREET, STRAND, W.C.2 + + + + + + + First Edition 1904 + Second Edition 1907 + Third Edition 1909 + Fourth Edition 1911 + " " Second Impression 1913 + Fifth Edition 1915 + " " Second Impression 1919 + Sixth Edition 1921 + + + + PRINTED IN GREAT BRITAIN BY + MORRISON AND GIBB LTD., EDINBURGH + + + + +PREFACE TO SIXTH EDITION + + +Much has happened since this Manual was last revised, and many surgical +lessons have been learned in the hard school of war. Some may yet have +to be unlearned, and others have but little bearing on the problems +presented to the civilian surgeon. Save in its broadest principles, the +surgery of warfare is a thing apart from the general surgery of civil +life, and the exhaustive literature now available on every aspect of it +makes it unnecessary that it should receive detailed consideration in a +manual for students. In preparing this new edition, therefore, we have +endeavoured to incorporate only such additions to our knowledge and +resources as our experience leads us to believe will prove of permanent +value in civil practice. + +For the rest, the text has been revised, condensed, and in places +rearranged; a number of old illustrations have been discarded, and a +greater number of new ones added. Descriptions of operative procedures +have been omitted from the _Manual_, as they are to be found in the +companion volume on _Operative Surgery_, the third edition of which +appeared some months ago. + +We have retained the Basle anatomical nomenclature, as extended +experience has confirmed our preference for it. For the convenience of +readers who still employ the old terms, these are given in brackets +after the new. + +This edition of the _Manual_ appears in three volumes; the first being +devoted to General Surgery, the other two to Regional Surgery. This +arrangement has enabled us to deal in a more consecutive manner than +hitherto with the surgery of the Extremities, including Fractures and +Dislocations. + +We have once more to express our thanks to colleagues in the Edinburgh +School and to other friends for aiding us in providing new +illustrations, and for other valuable help, as well as to our publishers +for their generosity in the matter of illustrations. + +EDINBURGH, + _March_ 1921. + + + + +CONTENTS + + + PAGE + CHAPTER I + REPAIR 1 + + CHAPTER II + CONDITIONS WHICH INTERFERE WITH REPAIR 17 + + CHAPTER III + INFLAMMATION 31 + + CHAPTER IV + SUPPURATION 45 + + CHAPTER V + ULCERATION AND ULCERS 68 + + CHAPTER VI + GANGRENE 86 + + CHAPTER VII + BACTERIAL AND OTHER WOUND INFECTIONS 107 + + CHAPTER VIII + TUBERCULOSIS 133 + + CHAPTER IX + SYPHILIS 146 + + CHAPTER X + TUMOURS 181 + + CHAPTER XI + INJURIES 218 + + CHAPTER XII + METHODS OF WOUND TREATMENT 241 + + CHAPTER XIII + CONSTITUTIONAL EFFECTS OF INJURIES 249 + + CHAPTER XIV + THE BLOOD VESSELS 258 + + CHAPTER XV + THE LYMPH VESSELS AND GLANDS 321 + + CHAPTER XVI + THE NERVES 342 + + CHAPTER XVII + SKIN AND SUBCUTANEOUS TISSUES 376 + + CHAPTER XVIII + THE MUSCLES, TENDONS, AND TENDON SHEATHS 405 + + CHAPTER XIX + THE BURSAE 426 + + CHAPTER XX + DISEASES OF BONE 434 + + CHAPTER XXI + DISEASES OF JOINTS 501 + + INDEX 547 + + + + +LIST OF ILLUSTRATIONS + + + FIG. PAGE + + 1. Ulcer of Back of Hand grafted from Abdominal Wall 15 + + 2. Staphylococcus aureus in Pus from case of Osteomyelitis 25 + + 3. Streptococci in Pus from case of Diffuse Cellulitis 26 + + 4. Bacillus coli communis in Pus from Abdominal Abscess 27 + + 5. Fraenkel's Pneumococci in Pus from Empyema following 28 + Pneumonia + + 6. Passive Hyperaemia of Hand and Forearm induced by Bier's 37 + Bandage + + 7. Passive Hyperaemia of Finger induced by Klapp's Suction 38 + Bell + + 8. Passive Hyperaemia induced by Klapp's Suction Bell for 39 + Inflammation of Inguinal Gland + + 9. Diagram of various forms of Whitlow 56 + + 10. Charts of Acute Sapraemia 61 + + 11. Chart of Hectic Fever 62 + + 12. Chart of Septicaemia followed by Pyaemia 63 + + 13. Chart of Pyaemia following on Acute Osteomyelitis 65 + + 14. Leg Ulcers associated with Varicose Veins 71 + + 15. Perforating Ulcers of Sole of Foot 74 + + 16. Bazin's Disease in a girl aet. 16 75 + + 17. Syphilitic Ulcers in region of Knee 76 + + 18. Callous Ulcer showing thickened edges 78 + + 19. Tibia and Fibula, showing changes due to Chronic Ulcer of 80 + Leg + + 20. Senile Gangrene of the Foot 89 + + 21. Embolic Gangrene of Hand and Arm 92 + + 22. Gangrene of Terminal Phalanx of Index-Finger 100 + + 23. Cancrum Oris 103 + + 24. Acute Bed Sores over right Buttock 104 + + 25. Chart of Erysipelas occurring in a wound 108 + + 26. Bacillus of Tetanus 113 + + 27. Bacillus of Anthrax 120 + + 28. Malignant Pustule third day after infection 122 + + 29. Malignant Pustule fourteen days after infection 122 + + 30. Colony of Actinomyces 126 + + 31. Actinomycosis of Maxilla 128 + + 32. Mycetoma, or Madura Foot 130 + + 33. Tubercle bacilli 134 + + 34. Tuberculous Abscess in Lumbar Region 141 + + 35. Tuberculous Sinus injected through its opening in the 144 + Forearm with Bismuth Paste + + 36. Spirochaete pallida 147 + + 37. Spirochaeta refrigerans from scraping of Vagina 148 + + 38. Primary Lesion on Thumb, with Secondary Eruption on 154 + Forearm + + 39. Syphilitic Rupia 159 + + 40. Ulcerating Gumma of Lips 169 + + 41. Ulceration in inherited Syphilis 170 + + 42. Tertiary Syphilitic Ulceration in region of Knee and on 171 + both Thumbs + + 43. Facies of Inherited Syphilis 174 + + 44. Facies of Inherited Syphilis 175 + + 45. Subcutaneous Lipoma 185 + + 46. Pedunculated Lipoma of Buttock 186 + + 47. Diffuse Lipomatosis of Neck 187 + + 48. Zanthoma of Hands 188 + + 49. Zanthoma of Buttock 189 + + 50. Chondroma growing from Infra-Spinous Fossa of Scapula 190 + + 51. Chondroma of Metacarpal Bone of Thumb 190 + + 52. Cancellous Osteoma of Lower End of Femur 192 + + 53. Myeloma of Shaft of Humerus 195 + + 54. Fibro-myoma of Uterus 196 + + 55. Recurrent Sarcoma of Sciatic Nerve 198 + + 56. Sarcoma of Arm fungating 199 + + 57. Carcinoma of Breast 206 + + 58. Epithelioma of Lip 209 + + 59. Dermoid Cyst of Ovary 213 + + 60. Carpal Ganglion in a woman aet. 25 215 + + 61. Ganglion on lateral aspect of Knee 216 + + 62. Radiogram showing pellets embedded in Arm 228 + + 63. Cicatricial Contraction following Severe Burn 236 + + 64. Genealogical Tree of Haemophilic Family 278 + + 65. Radiogram showing calcareous degeneration of Arteries 284 + + 66. Varicose Vein with Thrombosis 289 + + 67. Extensive Varix of Internal Saphena System on Left Leg 291 + + 68. Mixed Naevus of Nose 296 + + 69. Cirsoid Aneurysm of Forehead 299 + + 70. Cirsoid Aneurysm of Orbit and Face 300 + + 71. Radiogram of Aneurysm of Aorta 303 + + 72. Sacculated Aneurysm of Abdominal Aorta 304 + + 73. Radiogram of Innominate Aneurysm after Treatment by 309 + Moore-Corradi method + + 74. Thoracic Aneurysm threatening to rupture 313 + + 75. Innominate Aneurysm in a woman 315 + + 76. Congenital Cystic Tumour or Hygroma of Axilla 328 + + 77. Tuberculous Cervical Gland with Abscess formation 331 + + 78. Mass of Tuberculous Glands removed from Axilla 333 + + 79. Tuberculous Axillary Glands 335 + + 80. Chronic Hodgkin's Disease in boy aet. 11 337 + + 81. Lymphadenoma in a woman aet. 44 338 + + 82. Lympho Sarcoma removed from Groin 339 + + 83. Cancerous Glands in Neck, secondary to Epithelioma of Lip 341 + + 84. Stump Neuromas of Sciatic Nerve 345 + + 85. Stump Neuromas, showing changes at ends of divided Nerves 354 + + 86. Diffuse Enlargement of Nerves in generalised 356 + Neuro-Fibromatosis + + 87. Plexiform Neuroma of small Sciatic Nerve 357 + + 88. Multiple Neuro-Fibromas of Skin (Molluscum fibrosum) 358 + + 89. Elephantiasis Neuromatosa in a woman aet. 28 359 + + 90. Drop-Wrist following Fracture of Shaft of Humerus 365 + + 91. To illustrate the Loss of Sensation produced by Division 367 + of the Median Nerve + + 92. To illustrate Loss of Sensation produced by Complete 368 + Division of Ulnar Nerve + + 93. Callosities and Corns on Sole of Foot 377 + + 94. Ulcerated Chilblains on Fingers 378 + + 95. Carbuncle on Back of Neck 381 + + 96. Tuberculous Elephantiasis 383 + + 97. Elephantiasis in a woman aet. 45 387 + + 98. Elephantiasis of Penis and Scrotum 388 + + 99. Multiple Sebaceous Cysts or Wens 390 + + 100. Sebaceous Horn growing from Auricle 392 + + 101. Paraffin Epithelioma 394 + + 102. Rodent Cancer of Inner Canthus 395 + + 103. Rodent Cancer with destruction of contents of Orbit 396 + + 104. Diffuse Melanotic Cancer of Lymphatics of Skin 398 + + 105. Melanotic Cancer of Forehead with Metastasis in Lymph 399 + Glands + + 106. Recurrent Keloid 401 + + 107. Subungual Exostosis 403 + + 108. Avulsion of Tendon 410 + + 109. Volkmann's Ischaemic Contracture 414 + + 110. Ossification in Tendon of Ilio-psoas Muscle 417 + + 111. Radiogram of Calcification and Ossification in Biceps and 418 + Triceps + + 112. Ossification in Muscles of Trunk in generalised Ossifying 419 + Myositis + + 113. Hydrops of Prepatellar Bursa 427 + + 114. Section through Gouty Bursa 428 + + 115. Tuberculous Disease of Sub-Deltoid Bursa 429 + + 116. Great Enlargement of the Ischial Bursa 431 + + 117. Gouty Disease of Bursae 432 + + 118. Shaft of the Femur after Acute Osteomyelitis 444 + + 119. Femur and Tibia showing results of Acute Osteomyelitis 445 + + 120. Segment of Tibia resected for Brodie's Abscess 449 + + 121. Radiogram of Brodie's Abscess in Lower End of Tibia 451 + + 122. Sequestrum of Femur after Amputation 453 + + 123. New Periosteal Bone on Surface of Femur from Amputation 454 + Stump + + 124. Tuberculous Osteomyelitis of Os Magnum 456 + + 125. Tuberculous Disease of Tibia 457 + + 126. Diffuse Tuberculous Osteomyelitis of Right Tibia 458 + + 127. Advanced Tuberculous Disease in Region of Ankle 459 + + 128. Tuberculous Dactylitis 460 + + 129. Shortening of Middle Finger of Adult, the result of 461 + Tuberculous Dactylitis in Childhood + + 130. Syphilitic Disease of Skull 463 + + 131. Syphilitic Hyperostosis and Sclerosis of Tibia 464 + + 132. Sabre-blade Deformity of Tibia 467 + + 133. Skeleton of Rickety Dwarf 470 + + 134. Changes in the Skull resulting from Ostitis Deformans 474 + + 135. Cadaver, illustrating the alterations in the Lower Limbs 475 + resulting from Ostitis Deformans + + 136. Osteomyelitis Fibrosa affecting Femora 476 + + 137. Radiogram of Upper End of Femur in Osteomyelitis Fibrosa 478 + + 138. Radiogram of Right Knee showing Multiple Exostoses 482 + + 139. Multiple Exostoses of Limbs 483 + + 140. Multiple Cartilaginous Exostoses 484 + + 141. Multiple Cartilaginous Exostoses 486 + + 142. Multiple Chondromas of Phalanges and Metacarpals 488 + + 143. Skiagram of Multiple Chondromas 489 + + 144. Multiple Chondromas in Hand 490 + + 145. Radiogram of Myeloma of Humerus 492 + + 146. Periosteal Sarcoma of Femur 493 + + 147. Periosteal Sarcoma of Humerus 493 + + 148. Chondro-Sarcoma of Scapula 494 + + 149. Central Sarcoma of Femur invading Knee Joint 495 + + 150. Osseous Shell of Osteo-Sarcoma of Femur 495 + + 151. Radiogram of Osteo-Sarcoma of Femur 496 + + 152. Radiogram of Chondro-Sarcoma of Humerus 497 + + 153. Epitheliomatus Ulcer of Leg invading Tibia 499 + + 154. Osseous Ankylosis of Femur and Tibia 503 + + 155. Osseous Ankylosis of Knee 504 + + 156. Caseating focus in Upper End of Fibula 513 + + 157. Arthritis Deformans of Elbow 525 + + 158. Arthritis Deformans of Knee 526 + + 159. Hypertrophied Fringes of Synovial Membrane of Knee 527 + + 160. Arthritis Deformans of Hands 529 + + 161. Arthritis Deformans of several Joints 530 + + 162. Bones of Knee in Charcot's Disease 533 + + 163. Charcot's Disease of Left Knee 534 + + 164. Charcot's Disease of both Ankles: front view 535 + + 165. Charcot's Disease of both Ankles: back view 536 + + 166. Radiogram of Multiple Loose Bodies in Knee-joint 540 + + 167. Loose Body from Knee-joint 541 + + 168. Multiple partially ossified Chondromas of Synovial 542 + Membrane from Shoulder-joint + + 169. Multiple Cartilaginous Loose Bodies from Knee-joint 543 + + + + +MANUAL OF SURGERY + + + + +CHAPTER I + +REPAIR + + +Introduction--Process of repair--Healing by primary union--Granulation + tissue--Cicatricial tissue--Modifications of process of + repair--Repair in individual tissues--Transplantation or grafting + of tissues--Conditions--Sources of grafts--Grafting of individual + tissues--Methods. + + +INTRODUCTION + +To prolong human life and to alleviate suffering are the ultimate +objects of scientific medicine. The two great branches of the healing +art--Medicine and Surgery--are so intimately related that it is +impossible to draw a hard-and-fast line between them, but for +convenience Surgery may be defined as "the art of treating lesions and +malformations of the human body by manual operations, mediate and +immediate." To apply his art intelligently and successfully, it is +essential that the surgeon should be conversant not only with the normal +anatomy and physiology of the body and with the various pathological +conditions to which it is liable, but also with the nature of the +process by which repair of injured or diseased tissues is effected. +Without this knowledge he is unable to recognise such deviations from +the normal as result from mal-development, injury, or disease, or +rationally to direct his efforts towards the correction or removal of +these. + + +PROCESS OF REPAIR + +The process of repair in living tissue depends upon an inherent power +possessed by vital cells of reacting to the irritation caused by injury +or disease. The cells of the damaged tissues, under the influence of +this irritation, undergo certain proliferative changes, which are +designed to restore the normal structure and configuration of the part. +The process by which this restoration is effected is essentially the +same in all tissues, but the extent to which different tissues can carry +the recuperative process varies. Simple structures, such as skin, +cartilage, bone, periosteum, and tendon, for example, have a high power +of regeneration, and in them the reparative process may result in almost +perfect restitution to the normal. More complex structures, on the other +hand, such as secreting glands, muscle, and the tissues of the central +nervous system, are but imperfectly restored, simple cicatricial +connective tissue taking the place of what has been lost or destroyed. +Any given tissue can be replaced only by tissue of a similar kind, and +in a damaged part each element takes its share in the reparative process +by producing new material which approximates more or less closely to the +normal according to the recuperative capacity of the particular tissue. +The normal process of repair may be interfered with by various +extraneous agencies, the most important of which are infection by +disease-producing micro-organisms, the presence of foreign substances, +undue movement of the affected part, and improper applications and +dressings. The effect of these agencies is to delay repair or to prevent +the individual tissues carrying the process to the furthest degree of +which they are capable. + +In the management of wounds and other diseased conditions the main +object of the surgeon is to promote the natural reparative process by +preventing or eliminating any factor by which it may be disturbed. + +#Healing by Primary Union.#--The most favourable conditions for the +progress of the reparative process are to be found in a clean-cut wound +of the integument, which is uncomplicated by loss of tissue, by the +presence of foreign substances, or by infection with disease-producing +micro-organisms, and its edges are in contact. Such a wound in virtue of +the absence of infection is said to be _aseptic_, and under these +conditions healing takes place by what is called "primary union"--the +"healing by first intention" of the older writers. + +#Granulation Tissue.#--The essential and invariable medium of repair in +all structures is an elementary form of new tissue known as _granulation +tissue_, which is produced in the damaged area in response to the +irritation caused by injury or disease. The vital reaction induced by +such irritation results in dilatation of the vessels of the part, +emigration of leucocytes, transudation of lymph, and certain +proliferative changes in the fixed tissue cells. These changes are +common to the processes of inflammation and repair; no hard-and-fast +line can be drawn between these processes, and the two may go on +together. It is, however, only when the proliferative changes have come +to predominate that the reparative process is effectively established by +the production of healthy granulation tissue. + +_Formation of Granulation Tissue._--When a wound is made in the +integument under aseptic conditions, the passage of the knife through +the tissues is immediately followed by an oozing of blood, which soon +coagulates on the cut surfaces. In each of the divided vessels a clot +forms, and extends as far as the nearest collateral branch; and on the +surface of the wound there is a microscopic layer of bruised and +devitalised tissue. If the wound is closed, the narrow space between its +edges is occupied by blood-clot, which consists of red and white +corpuscles mixed with a quantity of fibrin, and this forms a temporary +uniting medium between the divided surfaces. During the first twelve +hours, the minute vessels in the vicinity of the wound dilate, and from +them lymph exudes and leucocytes migrate into the tissues. In from +twenty-four to thirty-six hours, the capillaries of the part adjacent to +the wound begin to throw out minute buds and fine processes, which +bridge the gap and form a firmer, but still temporary, connection +between the two sides. Each bud begins in the wall of the capillary as a +small accumulation of granular protoplasm, which gradually elongates +into a filament containing a nucleus. This filament either joins with a +neighbouring capillary or with a similar filament, and in time these +become hollow and are filled with blood from the vessels that gave them +origin. In this way a series of young _capillary loops_ is formed. + +The spaces between these loops are filled by cells of various kinds, the +most important being the _fibroblasts_, which are destined to form +cicatricial fibrous tissue. These fibroblasts are large irregular +nucleated cells derived mainly from the proliferation of the fixed +connective-tissue cells of the part, and to a less extent from the +lymphocytes and other mononuclear cells which have migrated from the +vessels. Among the fibroblasts, larger multi-nucleated cells--_giant +cells_--are sometimes found, particularly when resistant substances, +such as silk ligatures or fragments of bone, are embedded in the +tissues, and their function seems to be to soften such substances +preliminary to their being removed by the phagocytes. Numerous +_polymorpho-nuclear leucocytes_, which have wandered from the vessels, +are also present in the spaces. These act as phagocytes, their function +being to remove the red corpuscles and fibrin of the original clot, and +this performed, they either pass back into the circulation in virtue of +their amoeboid movement, or are themselves eaten up by the growing +fibroblasts. Beyond this phagocytic action, they do not appear to play +any direct part in the reparative process. These young capillary loops, +with their supporting cells and fluids, constitute granulation tissue, +which is usually fully formed in from three to five days, after which it +begins to be replaced by cicatricial or scar tissue. + +_Formation of Cicatricial Tissue._--The transformation of this temporary +granulation tissue into scar tissue is effected by the fibroblasts, +which become elongated and spindle-shaped, and produce in and around +them a fine fibrillated material which gradually increases in quantity +till it replaces the cell protoplasm. In this way white fibrous tissue +is formed, the cells of which are arranged in parallel lines and +eventually become grouped in bundles, constituting fully formed white +fibrous tissue. In its growth it gradually obliterates the capillaries, +until at the end of two, three, or four weeks both vessels and cells +have almost entirely disappeared, and the original wound is occupied by +cicatricial tissue. In course of time this tissue becomes consolidated, +and the cicatrix undergoes a certain amount of contraction--_cicatricial +contraction_. + +_Healing of Epidermis._--While these changes are taking place in the +deeper parts of the wound, the surface is being covered over by +_epidermis_ growing in from the margins. Within twelve hours the cells +of the rete Malpighii close to the cut edge begin to sprout on to the +surface of the wound, and by their proliferation gradually cover the +granulations with a thin pink pellicle. As the epithelium increases in +thickness it assumes a bluish hue and eventually the cells become +cornified and the epithelium assumes a greyish-white colour. + +_Clinical Aspects._--So long as the process of repair is not complicated +by infection with micro-organisms, there is no interference with the +general health of the patient. The temperature remains normal; the +circulatory, gastro-intestinal, nervous, and other functions are +undisturbed; locally, the part is cool, of natural colour and free from +pain. + +#Modifications of the Process of Repair.#--The process of repair by +primary union, above described, is to be looked upon as the type of all +reparative processes, such modifications as are met with depending +merely upon incidental differences in the conditions present, such as +loss of tissue, infection by micro-organisms, etc. + +_Repair after Loss or Destruction of Tissue._--When the edges of a wound +cannot be approximated either because tissue has been lost, for example +in excising a tumour or because a drainage tube or gauze packing has +been necessary, a greater amount of granulation tissue is required to +fill the gap, but the process is essentially the same as in the ideal +method of repair. + +The raw surface is first covered by a layer of coagulated blood and +fibrin. An extensive new formation of capillary loops and fibroblasts +takes place towards the free surface, and goes on until the gap is +filled by a fine velvet-like mass of granulation tissue. This +granulation tissue is gradually replaced by young cicatricial tissue, +and the surface is covered by the ingrowth of epithelium from the edges. + +This modification of the reparative process can be best studied +clinically in a recent wound which has been packed with gauze. When the +plug is introduced, the walls of the cavity consist of raw tissue with +numerous oozing blood vessels. On removing the packing on the fifth or +sixth day, the surface is found to be covered with minute, red, +papillary granulations, which are beginning to fill up the cavity. At +the edges the epithelium has proliferated and is covering over the newly +formed granulation tissue. As lymph and leucocytes escape from the +exposed surface there is a certain amount of serous or sero-purulent +discharge. On examining the wound at intervals of a few days, it is +found that the granulation tissue gradually increases in amount till the +gap is completely filled up, and that coincidently the epithelium +spreads in and covers over its surface. In course of time the epithelium +thickens, and as the granulation tissue is slowly replaced by young +cicatricial tissue, which has a peculiar tendency to contract and so to +obliterate the blood vessels in it, the scar that is left becomes +smooth, pale, and depressed. This method of healing is sometimes spoken +of as "healing by granulation"--although, as we have seen, it is by +granulation that all repair takes place. + +_Healing by Union of two Granulating Surfaces._--In gaping wounds union +is sometimes obtained by bringing the two surfaces into apposition after +each has become covered with healthy granulations. The exudate on the +surfaces causes them to adhere, capillary loops pass from one to the +other, and their final fusion takes place by the further development of +granulation and cicatricial tissue. + +_Reunion of Parts entirely Separated from the Body._--Small portions of +tissue, such as the end of a finger, the tip of the nose or a portion of +the external ear, accidentally separated from the body, if accurately +replaced and fixed in position, occasionally adhere by primary union. + +In the course of operations also, portions of skin, fascia, or bone, or +even a complete joint may be transplanted, and unite by primary union. + +_Healing under a Scab._--When a small superficial wound is exposed to +the air, the blood and serum exuded on its surface may dry and form a +hard crust or _scab_, which serves to protect the surface from external +irritation in the same way as would a dry pad of sterilised gauze. Under +this scab the formation of granulation tissue, its transformation into +cicatricial tissue, and the growth of epithelium on the surface, go on +until in the course of time the crust separates, leaving a scar. + +_Healing by Blood-clot._--In subcutaneous wounds, for example tenotomy, +in amputation wounds, and in wounds made in excising tumours or in +operating upon bones, the space left between the divided tissues becomes +filled with blood-clot, which acts as a temporary scaffolding in which +granulation tissue is built up. Capillary loops grow into the coagulum, +and migrated leucocytes from the adjacent blood vessels destroy the red +corpuscles, and are in turn disposed of by the developing fibroblasts, +which by their growth and proliferation fill up the gap with young +connective tissue. It will be evident that this process only differs +from healing by primary union in the _amount_ of blood-clot that is +present. + +_Presence of a Foreign Body._--When an aseptic foreign body is present +in the tissues, _e.g._ a piece of unabsorbable chromicised catgut, the +healing process may be modified. After primary union has taken place the +scar may broaden, become raised above the surface, and assume a +bluish-brown colour; the epidermis gradually thins and gives way, +revealing the softened portion of catgut, which can be pulled out in +pieces, after which the wound rapidly heals and resumes a normal +appearance. + + +REPAIR IN INDIVIDUAL TISSUES + +_Skin and Connective Tissue._--The mode of regeneration of these tissues +under aseptic conditions has already been described as the type of ideal +repair. In highly vascular parts, such as the face, the reparative +process goes on with great rapidity, and even extensive wounds may be +firmly united in from three to five days. Where the anastomosis is less +free the process is more prolonged. The more highly organised elements +of the skin, such as the hair follicles, the sweat and sebaceous glands, +are imperfectly reproduced; hence the scar remains smooth, dry, and +hairless. + +_Epithelium._--Epithelium is only reproduced from pre-existing +epithelium, and, as a rule, from one of a similar type, although +metaplastic transformation of cells of one kind of epithelium into +another kind can take place. Thus a granulating surface may be covered +entirely by the ingrowing of the cutaneous epithelium from the margins; +or islets, originating in surviving cells of sebaceous glands or sweat +glands, or of hair follicles, may spring up in the centre of the raw +area. Such islets may also be due to the accidental transference of +loose epithelial cells from the edges. Even the fluid from a blister, in +virtue of the isolated cells of the rete Malpighii which it contains, is +capable of starting epithelial growth on a granulating surface. Hairs +and nails may be completely regenerated if a sufficient amount of the +hair follicles or of the nail matrix has escaped destruction. The +epithelium of a mucous membrane is regenerated in the same way as that +on a cutaneous surface. + +Epithelial cells have the power of living for some time after being +separated from their normal surroundings, and of growing again when once +more placed in favourable circumstances. On this fact the practice of +skin grafting is based (p. 11). + +_Cartilage._--When an articular cartilage is divided by incision or by +being implicated in a fracture involving the articular end of a bone, it +is repaired by ordinary cicatricial fibrous tissue derived from the +proliferating cells of the perichondrium. Cartilage being a non-vascular +tissue, the reparative process goes on slowly, and it may be many weeks +before it is complete. + +It is possible for a metaplastic transformation of connective-tissue +cells into cartilage cells to take place, the characteristic hyaline +matrix being secreted by the new cells. This is sometimes observed as an +intermediary stage in the healing of fractures, especially in young +bones. It may also take place in the regeneration of lost portions of +cartilage, provided the new tissue is so situated as to constitute part +of a joint and to be subjected to pressure by an opposing cartilaginous +surface. This is illustrated by what takes place after excision of +joints where it is desired to restore the function of the articulation. +By carrying out movements between the constituent parts, the fibrous +tissue covering the ends of the bones becomes moulded into shape, its +cells take on the characters of cartilage cells, and, forming a matrix, +so develop a new cartilage. + +Conversely, it is observed that when articular cartilage is no longer +subjected to pressure by an opposing cartilage, it tends to be +transformed into fibrous tissue, as may be seen in deformities attended +with displacement of articular surfaces, such as hallux valgus and +club-foot. + +After fractures of costal cartilage or of the cartilages of the larynx +the cicatricial tissue may be ultimately replaced by bone. + +_Tendons._--When a tendon is divided, for example by subcutaneous +tenotomy, the end nearer the muscle fibres is drawn away from the other, +leaving a gap which is speedily filled by blood-clot. In the course of a +few days this clot becomes permeated by granulation tissue, the +fibroblasts of which are derived from the sheath of the tendon, the +surrounding connective tissue, and probably also from the divided ends +of the tendon itself. These fibroblasts ultimately develop into typical +tendon cells, and the fibres which they form constitute the new tendon +fibres. Under aseptic conditions repair is complete in from two to three +weeks. In the course of the reparative process the tendon and its sheath +may become adherent, which leads to impaired movement and stiffness. If +the ends of an accidentally divided tendon are at once brought into +accurate apposition and secured by sutures, they unite directly with a +minimum amount of scar tissue, and function is perfectly restored. + +_Muscle._--Unstriped muscle does not seem to be capable of being +regenerated to any but a moderate degree. If the ends of a divided +striped muscle are at once brought into apposition by stitches, primary +union takes place with a minimum of intervening fibrous tissue. The +nuclei of the muscle fibres in close proximity to this young cicatricial +tissue proliferate, and a few new muscle fibres may be developed, but +any gross loss of muscular tissue is replaced by a fibrous cicatrix. It +would appear that portions of muscle transplanted from animals to fill +up gaps in human muscle are similarly replaced by fibrous tissue. When a +muscle is paralysed from loss of its nerve supply and undergoes complete +degeneration, it is not capable of being regenerated, even should the +integrity of the nerve be restored, and so its function is permanently +lost. + +_Secretory Glands._--The regeneration of secretory glands is usually +incomplete, cicatricial tissue taking the place of the glandular +substance which has been destroyed. In wounds of the liver, for example, +the gap is filled by fibrous tissue, but towards the periphery of the + +wound the liver cells proliferate and a certain amount of regeneration +takes place. In the kidney also, repair mainly takes place by +cicatricial tissue, and although a few collecting tubules may be +reformed, no regeneration of secreting tissue takes place. After the +operation of decapsulation of the kidney a new capsule is formed, and +during the process young blood vessels permeate the superficial parts +of the kidney and temporarily increase its blood supply, but in the +consolidation of the new fibrous tissue these vessels are ultimately +obliterated. This does not prove that the operation is useless, as the +temporary improvement of the circulation in the kidney may serve to tide +the patient over a critical period of renal insufficiency. + +_Stomach and Intestine._--Provided the peritoneal surfaces are +accurately apposed, wounds of the stomach and intestine heal with great +rapidity. Within a few hours the peritoneal surfaces are glued together +by a thin layer of fibrin and leucocytes, which is speedily organised +and replaced by fibrous tissue. Fibrous tissue takes the place of the +muscular elements, which are not regenerated. The mucous lining is +restored by ingrowth from the margins, and there is evidence that some +of the secreting glands may be reproduced. + +Hollow viscera, like the oesophagus and urinary bladder, in so far +as they are not covered by peritoneum, heal less rapidly. + +_Nerve Tissues._--There is no trustworthy evidence that regeneration of +the tissues of the brain or spinal cord in man ever takes place. Any +loss of substance is replaced by cicatricial tissue. + +The repair of _Bone_, _Blood Vessels_, and _Peripheral Nerves_ is more +conveniently considered in the chapters dealing with these structures. + +#Rate of Healing.#--While the rate at which wounds heal is remarkably +constant there are certain factors that influence it in one direction or +the other. Healing is more rapid when the edges are in contact, when +there is a minimum amount of blood-clot between them, when the patient +is in normal health and the vitality of the tissues has not been +impaired. Wounds heal slightly more quickly in the young than in the +old, although the difference is so small that it can only be +demonstrated by the most careful observations. + +Certain tissues take longer to heal than others: for example, a fracture +of one of the larger long bones takes about six weeks to unite, and +divided nerve trunks take much longer--about a year. + +Wounds of certain parts of the body heal more quickly than others: those +of the scalp, face, and neck, for example, heal more quickly than those +over the buttock or sacrum, probably because of their greater +vascularity. + +The extent of the wound influences the rate of healing; it is only + +natural that a long and deep wound should take longer to heal than a +short and superficial one, because there is so much more work to be +done in the conversion of blood-clot into granulation tissue, and this +again into scar tissue that will be strong enough to stand the strain on +the edges of the wound. + + +THE TRANSPLANTATION OR GRAFTING OF TISSUES + +Conditions are not infrequently met with in which healing is promoted +and restoration of function made possible by the transference of a +portion of tissue from one part of the body to another; the tissue +transferred is known as the _graft_ or the _transplant_. The simplest +example of grafting is the transplantation of skin. + +In order that the graft may survive and have a favourable chance of +"taking," as it is called, the transplanted tissue must retain its +vitality until it has formed an organic connection with the tissue in +which it is placed, so that it may derive the necessary nourishment from +its new bed. When these conditions are fulfilled the tissues of the +graft continue to proliferate, producing new tissue elements to replace +those that are lost and making it possible for the graft to become +incorporated with the tissue with which it is in contact. + +Dead tissue, on the other hand, can do neither of these things; it is +only capable of acting as a model, or, at the most, as a scaffolding for +such mobile tissue elements as may be derived from, the parent tissue +with which the graft is in contact: a portion of sterilised marine +sponge, for example, may be observed to become permeated with +granulation tissue when it is embedded in the tissues. + +A successful graft of living tissue is not only capable of regeneration, +but it acquires a system of lymph and blood vessels, so that in time it +bleeds when cut into, and is permeated by new nerve fibres spreading in +from the periphery towards the centre. + +It is instructive to associate the period of survival of the different +tissues of the body after death, with their capacity of being used for +grafting purposes; the higher tissues such as those of the central +nervous system and highly specialised glandular tissues like those of +the kidney lose their vitality quickly after death and are therefore +useless for grafting; connective tissues, on the other hand, such as +fat, cartilage, and bone retain their vitality for several hours after +death, so that when they are transplanted, they readily "take" and do +all that is required of them: the same is true of the skin and its +appendages. + +_Sources of Grafts._--It is convenient to differentiate between +_autoplastic_ grafts, that is those derived from the same individual; +_homoplastic_ grafts, derived from another animal of the same species; +and _heteroplastic_ grafts, derived from an animal of another species. +Other conditions being equal, the prospects of success are greatest with +autoplastic grafts, and these are therefore preferred whenever possible. + +There are certain details making for success that merit attention: the +graft must not be roughly handled or allowed to dry, or be subjected to +chemical irritation; it must be brought into accurate contact with the +new soil, no blood-clot intervening between the two, no movement of the +one upon the other should be possible and all infection must be +excluded; it will be observed that these are exactly the same conditions +that permit of the primary healing of wounds, with which of course the +healing of grafts is exactly comparable. + +_Preservation of Tissues for Grafting._--It was at one time believed +that tissues might be taken from the operating theatre and kept in cold +storage until they were required. It is now agreed that tissues which +have been separated from the body for some time inevitably lose their +vitality, become incapable of regeneration, and are therefore unsuited +for grafting purposes. If it is intended to preserve a portion of tissue +for future grafting, it should be embedded in the subcutaneous tissue of +the abdominal wall until it is wanted; this has been carried out with +portions of costal cartilage and of bone. + + +INDIVIDUAL TISSUES AS GRAFTS + +#The Blood# lends itself in an ideal manner to transplantation, or, as +it has long been called, _transfusion_. Being always a homoplastic +transfer, the new blood is not always tolerated by the old, in which +case biochemical changes occur, resulting in haemolysis, which +corresponds to the disintegration of other unsuccessful homoplastic +grafts. (See article on Transfusion, _Op. Surg._, p. 37.) + +#The Skin.#--The skin was the first tissue to be used for grafting +purposes, and it is still employed with greater frequency than any +other, as lesions causing defects of skin are extremely common and +without the aid of grafts are tedious in healing. + +Skin grafts may be applied to a raw surface or to one that is covered +with granulations. + +_Skin grafting of raw surfaces_ is commonly indicated after operations +for malignant disease in which considerable areas of skin must be +sacrificed, and after accidents, such as avulsion of the scalp by +machinery. + +_Skin grafting of granulating surfaces_ is chiefly employed to promote +healing in the large defects of skin caused by severe burns; the +grafting is carried out when the surface is covered by a uniform layer +of healthy granulations and before the inevitable contraction of scar +tissue makes itself manifest. Before applying the grafts it is usual to +scrape away the granulations until the young fibrous tissue underneath +is exposed, but, if the granulations are healthy and can be rendered +aseptic, the grafts may be placed on them directly. + +If it is decided to scrape away the granulations, the oozing must be +arrested by pressure with a pad of gauze, a sheet of dental rubber or +green protective is placed next the raw surface to prevent the gauze +adhering and starting the bleeding afresh when it is removed. + +#Methods of Skin-Grafting.#--Two methods are employed: one in which the +epidermis is mainly or exclusively employed--epidermis or epithelial +grafting; the other, in which the graft consists of the whole thickness +of the true skin--cutis-grafting. + +_Epidermis or Epithelial Grafting._--The method introduced by the late +Professor Thiersch of Leipsic is that almost universally practised. It +consists in transplanting strips of epidermis shaved from the surface of +the skin, the razor passing through the tips of the papillae, which +appear as tiny red points yielding a moderate ooze of blood. + +The strips are obtained from the front and lateral aspects of the thigh +or upper arm, the skin in those regions being pliable and comparatively +free from hairs. + +They are cut with a sharp hollow-ground razor or with Thiersch's +grafting knife, the blade of which is rinsed in alcohol and kept +moistened with warm saline solution. The cutting is made easier if the +skin is well stretched and kept flat and perfectly steady, the +operator's left hand exerting traction on the skin behind, the hands of +the assistant on the skin in front, one above and the other below the +seat of operation. To ensure uniform strips being cut, the razor is kept +parallel with the surface and used with a short, rapid, sawing movement, +so that, with a little practice, grafts six or eight inches long by one +or two inches broad can readily be cut. The patient is given a general +anaesthetic, or regional anaesthesia is obtained by injections of a +solution of one per cent. novocain into the line of the lateral and +middle cutaneous nerves; the disinfection of the skin is carried out on +the usual lines, any chemical agent being finally got rid of, however, +by means of alcohol followed by saline solution. + +The strips of epidermis wrinkle up on the knife and are directly +transferred to the surface, for which they should be made to form a +complete carpet, slightly overlapping the edges of the area and of one +another; some blunt instrument is used to straighten out the strips, +which are then subjected to firm pressure with a pad of gauze to express +blood and air-bells and to ensure accurate contact, for this must be as +close as that between a postage stamp and the paper to which it is +affixed. + +As a dressing for the grafted area and of that also from which the +grafts have been taken, gauze soaked in _liquid paraffin_--the patent +variety known as _ambrine_ is excellent--appears to be the best; the +gauze should be moistened every other day or so with fresh paraffin, so +that, at the end of a week, when the grafts should have united, the +gauze can be removed without risk of detaching them. _Dental wax_ is +another useful type of dressing; as is also _picric acid_ solution. Over +the gauze, there is applied a thick layer of cotton wool, and the whole +dressing is kept in place by a firmly applied bandage, and in the case +of the limbs some form of splint should be added to prevent movement. + +A dressing may be dispensed with altogether, the grafts being protected +by a wire cage such as is used after vaccination, but they tend to dry +up and come to resemble a scab. + +When the grafts have healed, it is well to protect them from injury and +to prevent them drying up and cracking by the liberal application of +lanoline or vaseline. + +The new skin is at first insensitive and is fixed to the underlying +connective tissue or bone, but in course of time (from six weeks +onwards) sensation returns and the formation of elastic tissue beneath +renders the skin pliant and movable so that it can be pinched up between +the finger and thumb. + +_Reverdin's_ method consists in planting out pieces of skin not bigger +than a pin-head over a granulating surface. It is seldom employed. + +_Grafts of the Cutis Vera._--Grafts consisting of the entire thickness +of the true skin were specially advocated by Wolff and are often +associated with his name. They should be cut oval or spindle-shaped, to +facilitate the approximation of the edges of the resulting wound. The +graft should be cut to the exact size of the surface it is to cover; +Gillies believes that tension of the graft favours its taking. These +grafts may be placed either on a fresh raw surface or on healthy +granulations. It is sometimes an advantage to stitch them in position, +especially on the face. The dressing and the after-treatment are the +same as in epidermis grafting. + +There is a degree of uncertainty about the graft retaining its vitality +long enough to permit of its deriving the necessary nourishment from its +new surroundings; in a certain number of cases the flap dies and is +thrown off as a slough--moist or dry according to the presence or +absence of septic infection. + +The technique for cutis-grafting must be without a flaw, and the asepsis +absolute; there must not only be a complete absence of movement, but +there must be no traction on the flap that will endanger its blood +supply. + +Owing to the uncertainty in the results of cutis-grafting the +_two-stage_ or _indirect method_ has been introduced, and its almost +uniform success has led to its sphere of application being widely +extended. The flap is raised as in the direct method but is left +attached at one of its margins for a period ranging from 14 to 21 days +until its blood supply from its new bed is assured; the detachment is +then made complete. The blood supply of the proposed flap may influence +its selection and the way in which it is fashioned; for example, a flap +cut from the side of the head to fill a defect in the cheek, having in +its margin of attachment or pedicle the superficial temporal artery, is +more likely to take than a flap cut with its base above. + +Another modification is to raise the flap but leave it connected at both +ends like the piers of a bridge; this method is well suited to defects +of skin on the dorsum of the fingers, hand and forearm, the bridge of +skin is raised from the abdominal wall and the hand is passed beneath it +and securely fixed in position; after an interval of 14 to 21 days, when +the flap is assured of its blood supply, the piers of the bridge are +divided (Fig. 1). With undermining it is usually easy to bring the +edges of the gap in the abdominal wall together, even in children; the +skin flap on the dorsum of the hand appears rather thick and +prominent--almost like the pad of a boxing-glove--for some time, but +the restoration of function in the capacity to flex the fingers is +gratifying in the extreme. + +[Illustration: FIG. 1.--Ulcer of back of Hand covered by flap of skin +raised from anterior abdominal wall. The lateral edges of the flap are +divided after the graft has adhered.] + +The indirect element of this method of skin-grafting may be carried +still further by transferring the flap of skin first to one part of the +body and then, after it has taken, transferring it to a third part. +Gillies has especially developed this method in the remedying of +deformities of the face caused by gunshot wounds and by petrol burns in +air-men. A rectangular flap of skin is marked out in the neck and chest, +the lateral margins of the flap are raised sufficiently to enable them +to be brought together so as to form a tube of skin: after the +circulation has been restored, the lower end of the tube is detached and +is brought up to the lip or cheek, or eyelid, where it is wanted; when +this end has derived its new blood supply, the other end is detached +from the neck and brought up to where it is wanted. In this way, skin +from the chest may be brought up to form a new forehead and eyelids. + +Grafts of _mucous membrane_ are used to cover defects in the lip, cheek, +and conjunctiva. The technique is similar to that employed in +skin-grafting; the sources of mucous membrane are limited and the +element of septic infection cannot always be excluded. + +_Fat._--Adipose tissue has a low vitality, but it is easily retained and +it readily lends itself to transplantation. Portions of fat are often +obtainable at operations--from the omentum, for example, otherwise the +subcutaneous fat of the buttock is the most accessible; it may be +employed to fill up cavities of all kinds in order to obtain more rapid +and sounder healing and also to remedy deformity, as in filling up a +depression in the cheek or forehead. It is ultimately converted into +ordinary connective tissue _pari passu_ with the absorption of the fat. + +The _fascia lata of the thigh_ is widely and successfully used as a +graft to fill defects in the dura mater, and interposed between the +bones of a joint--if the articular cartilage has been destroyed--to +prevent the occurrence of ankylosis. + +The _peritoneum_ of hydrocele and hernial sacs and of the omentum +readily lends itself to transplantation. + +_Cartilage and bone_, next to skin, are the tissues most frequently +employed for grafting purposes; their sphere of action is so extensive +and includes so much of technical detail in their employment, that they +will be considered later with the surgery of the bones and joints and +with the methods of re-forming the nose. + +_Tendons and blood vessels_ readily lend themselves to transplantation +and will also be referred to later. + +_Muscle and nerve_, on the other hand, do not retain their vitality when +severed from their surroundings and do not functionate as grafts except +for their connective-tissue elements, which it goes without saying are +more readily obtainable from other sources. + +Portions of the _ovary_ and of the _thyreoid_ have been successfully +transplanted into the subcutaneous cellular tissue of the abdominal wall +by Tuffier and others. In these new surroundings, the ovary or thyreoid +is vascularised and has been shown to functionate, but there is not +sufficient regeneration of the essential tissue elements to "carry on"; +the secreting tissue is gradually replaced by connective tissue and the +special function comes to an end. Even such temporary function may, +however, tide a patient over a difficult period. + + + + +CHAPTER II + +CONDITIONS WHICH INTERFERE WITH REPAIR + + +SURGICAL BACTERIOLOGY + +Want of rest--Irritation--Unhealthy tissues--Pathogenic bacteria. + SURGICAL BACTERIOLOGY--General characters of + bacteria--Classification of bacteria--Conditions of bacterial + life--Pathogenic powers of bacteria--Results of bacterial + growth--Death of bacteria--Immunity--Antitoxic sera--Identification + of bacteria--Pyogenic bacteria. + +In the management of wounds and other surgical conditions it is +necessary to eliminate various extraneous influences which tend to delay +or arrest the natural process of repair. + +Of these, one of the most important is undue movement of the affected +part. "The first and great requisite for the restoration of injured +parts is _rest_," said John Hunter; and physiological and mechanical +rest as the chief of natural therapeutic agents was the theme of John +Hilton's classical work--_Rest and Pain_. In this connection it must be +understood that "rest" implies more than the mere state of physical +repose: all physiological as well as mechanical function must be +prevented as far as is possible. For instance, the constituent bones of +a joint affected with tuberculosis must be controlled by splints or +other appliances so that no movement can take place between them, and +the limb may not be used for any purpose; physiological rest may be +secured to an inflamed colon by making an artificial anus in the caecum; +the activity of a diseased kidney may be diminished by regulating the +quantity and quality of the fluids taken by the patient. + +Another source of interference with repair in wounds is _irritation_, +either by mechanical agents such as rough, unsuitable dressings, +bandages, or ill-fitting splints; or by chemical agents in the form of +strong lotions or other applications. + +An _unhealthy or devitalised condition of the patient's tissues_ also +hinders the reparative process. Bruised or lacerated skin heals less +kindly than skin cut with a smooth, sharp instrument; and persistent + +venous congestion of a part, such as occurs, for example, in the leg +when the veins are varicose, by preventing the access of healthy blood, +tends to delay the healing of open wounds. The existence of grave +constitutional disease, such as Bright's disease, diabetes, syphilis, +scurvy, or alcoholism, also impedes healing. + +Infection by disease-producing micro-organisms or _pathogenic bacteria_ +is, however, the most potent factor in disturbing the natural process of +repair in wounds. + + +SURGICAL BACTERIOLOGY + +The influence of micro-organisms in the causation of disease, and the +role played by them in interfering with the natural process of repair, +are so important that the science of applied bacteriology has now come +to dominate every department of surgery, and it is from the standpoint +of bacteriology that nearly all surgical questions have to be +considered. + +The term _sepsis_ as now used in clinical surgery no longer retains its +original meaning as synonymous with "putrefaction," but is employed to +denote all conditions in which bacterial infection has taken place, and +more particularly those in which pyogenic bacteria are present. In the +same way the term _aseptic_ conveys the idea of freedom from all forms +of bacteria, putrefactive or otherwise; and the term _antiseptic_ is +used to denote a power of counteracting bacteria and their products. + +#General Characters of Bacteria.#--A _bacterium_ consists of a finely +granular mass of protoplasm, enclosed in a thin gelatinous envelope. +Many forms are motile--some in virtue of fine thread-like flagella, and +others through contractility of the protoplasm. The great majority +multiply by simple fission, each parent cell giving rise to two daughter +cells, and this process goes on with extraordinary rapidity. Other +varieties, particularly bacilli, are propagated by the formation of +_spores_. A spore is a minute mass of protoplasm surrounded by a dense, +tough membrane, developed in the interior of the parent cell. Spores are +remarkable for their tenacity of life, and for the resistance they offer +to the action of heat and chemical germicides. + +Bacteria are most conveniently classified according to their shape. Thus +we recognise (1) those that are globular--_cocci_; (2) those that +resemble a rod--_bacilli_; (3) the spiral or wavy forms--_spirilla_. + +_Cocci_ or _micrococci_ are minute round bodies, averaging about 1 u in +diameter. The great majority are non-motile. They multiply by fission; +and when they divide in such a way that the resulting cells remain in +pairs, are called _diplococci_, of which the bacteria of gonorrhoea and +pneumonia are examples (Fig. 5). When they divide irregularly, and form +grape-like bunches, they are known as _staphylococci_, and to this + +variety the commonest pyogenic or pus-forming organisms belong (Fig. 2). +When division takes place only in one axis, so that long chains are +formed, the term _streptococcus_ is applied (Fig. 3). Streptococci are +met with in erysipelas and various other inflammatory and suppurative +processes of a spreading character. + +_Bacilli_ are rod-shaped bacteria, usually at least twice as long as +they are broad (Fig. 4). Some multiply by fission, others by +sporulation. Some forms are motile, others are non-motile. Tuberculosis, +tetanus, anthrax, and many other surgical diseases are due to different +forms of bacilli. + +_Spirilla_ are long, slender, thread-like cells, more or less spiral or +wavy. Some move by a screw-like contraction of the protoplasm, some by +flagellae. The spirochaete associated with syphilis (Fig. 36) is the most +important member of this group. + +#Conditions of Bacterial Life.#--Bacteria require for their growth and +development a suitable food-supply in the form of proteins, +carbohydrates, and salts of calcium and potassium which they break up +into simpler elements. An alkaline medium favours bacterial growth; and +moisture is a necessary condition; spores, however, can survive the want +of water for much longer periods than fully developed bacteria. The +necessity for oxygen varies in different species. Those that require +oxygen are known as _aerobic bacilli_ or _aerobes_; those that cannot +live in the presence of oxygen are spoken of as _anaerobes_. The great +majority of bacteria, however, while they prefer to have oxygen, are +able to live without it, and are called _facultative anaerobes_. + +The most suitable temperature for bacterial life is from 95 o to 102 o F., +roughly that of the human body. Extreme or prolonged cold paralyses but +does not kill micro-organisms. Few, however, survive being raised to a +temperature of 134 1/2 o F. Boiling for ten to twenty minutes will kill all +bacteria, and the great majority of spores. Steam applied in an +autoclave under a pressure of two atmospheres destroys even the most +resistant spores in a few minutes. Direct sunlight, electric light, or +even diffuse daylight, is inimical to the growth of bacteria, as are +also Rontgen rays and radium emanations. + +#Pathogenic Properties of Bacteria.#--We are now only concerned with +pathogenic bacteria--that is, bacteria capable of producing disease in +the human subject. This capacity depends upon two sets of factors--(1) +certain features peculiar to the invading bacteria, and (2) others +peculiar to the host. Many bacteria have only the power of living upon +dead matter, and are known as _saphrophytes_. Such as do nourish in +living tissue are, by distinction, known as _parasites_. The power a +given parasitic micro-organism has of multiplying in the body and giving +rise to disease is spoken of as its _virulence_, and this varies not +only with different species, but in the same species at different times +and under varying circumstances. The actual number of organisms +introduced is also an important factor in determining their pathogenic +power. Healthy tissues can resist the invasion of a certain number of +bacteria of a given species, but when that number is exceeded, the +organisms get the upper hand and disease results. When the organisms +gain access directly to the blood-stream, as a rule they produce their +effects more certainly and with greater intensity than when they are +introduced into the tissues. + +Further, the virulence of an organism is modified by the condition of +the patient into whose tissues it is introduced. So long as a person is +in good health, the tissues are able to resist the attacks of moderate +numbers of most bacteria. Any lowering of the vitality of the +individual, however, either locally or generally, at once renders him +more susceptible to infection. Thus bruised or torn tissue is much more +liable to infection with pus-producing organisms than tissues clean-cut +with a knife; also, after certain diseases, the liability to infection +by the organisms of diphtheria, pneumonia, or erysipelas is much +increased. Even such slight depression of vitality as results from +bodily fatigue, or exposure to cold and damp, may be sufficient to turn +the scale in the battle between the tissues and the bacteria. Age is an +important factor in regard to the action of certain bacteria. Young +subjects are attacked by diphtheria, tuberculosis, acute osteomyelitis, +and some other diseases with greater frequency and severity than those +of more advanced years. + +In different races, localities, environment, and seasons, the pathogenic +powers of certain organisms, such as those of erysipelas, diphtheria, +and acute osteomyelitis, vary considerably. + +There is evidence that a _mixed infection_--that is, the introduction of +more than one species of organism, for example, the tubercle bacillus +and a pyogenic staphylococcus--increases the severity of the resulting +disease. If one of the varieties gain the ascendancy, the poisons +produced by the others so devitalise the tissue cells, and diminish +their power of resistance, that the virulence of the most active +organisms is increased. On the other hand, there is reason to believe +that the products of certain organisms antagonise one another--for +example, an attack of erysipelas may effect the cure of a patch of +tuberculous lupus. + +Lastly, in patients suffering from chronic wasting diseases, bacteria +may invade the internal organs by the blood-stream in enormous numbers +and with great rapidity, during the period of extreme debility which +shortly precedes death. The discovery of such collections of organisms +on post-mortem examination may lead to erroneous conclusions being drawn +as to the cause of death. + +#Results of Bacterial Growth.#--Some organisms, such as those of tetanus +and erysipelas, and certain of the pyogenic bacteria, show little +tendency to pass far beyond the point at which they gain an entrance to +the body. Others, on the contrary--for example, the tubercle bacillus +and the organism of acute osteomyelitis--although frequently remaining +localised at the seat of inoculation, tend to pass to distant parts, +lodging in the capillaries of joints, bones, kidney, or lungs, and there +producing their deleterious effects. + +In the human subject, multiplication in the blood-stream does not occur +to any great extent. In some general acute pyogenic infections, such as +osteomyelitis, cellulitis, etc., pure cultures of staphylococci or of +streptococci may be obtained from the blood. In pneumococcal and typhoid +infections, also, the organisms may be found in the blood. + +It is by the vital changes they bring about in the parts where they +settle that micro-organisms disturb the health of the patient. In +deriving nourishment from the complex organic compounds in which they +nourish, the organisms evolve, probably by means of a ferment, certain +chemical products of unknown composition, but probably colloidal in +nature, and known as _toxins_. When these poisons are absorbed into the +general circulation they give rise to certain groups of symptoms--such +as rise of temperature, associated circulatory and respiratory +derangements, interference with the gastro-intestinal functions and also +with those of the nervous system--which go to make up the condition +known as blood-poisoning, toxaemia, or _bacterial intoxication_. In +addition to this, certain bacteria produce toxins that give rise to +definite and distinct groups of symptoms--such as the convulsions of +tetanus, or the paralyses that follow diphtheria. + +_Death of Bacteria._--Under certain circumstances, it would appear that +the accumulation of the toxic products of bacterial action tends to +interfere with the continued life and growth of the organisms +themselves, and in this way the natural cure of certain diseases is +brought about. Outside the body, bacteria may be killed by starvation, +by want of moisture, by being subjected to high temperature, or by the +action of certain chemical agents of which carbolic acid, the +perchloride and biniodide of mercury, and various chlorine preparations +are the most powerful. + +#Immunity.#--Some persons are insusceptible to infection by certain +diseases, from which they are said to enjoy a _natural immunity_. In +many acute diseases one attack protects the patient, for a time at +least, from a second attack--_acquired immunity_. + +_Phagocytosis._--In the production of immunity the leucocytes and +certain other cells play an important part in virtue of the power they +possess of ingesting bacteria and of destroying them by a process of +intra-cellular digestion. To this process Metchnikoff gave the name of +_phagocytosis_, and he recognised two forms of _phagocytes_: (1) the +_microphages_, which are the polymorpho-nuclear leucocytes of the blood; +and (2) the _macrophages_, which include the larger hyaline leucocytes, +endothelial cells, and connective-tissue corpuscles. + +During the process of phagocytosis, the polymorpho-nuclear leucocytes in +the circulating blood increase greatly in numbers (_leucocytosis_), as +well as in their phagocytic action, and in the course of destroying the +bacteria they produce certain ferments which enter the blood serum. +These are known as _opsonins_ or _alexins_, and they act on the bacteria +by a process comparable to narcotisation, and render them an easy prey +for the phagocytes. + +_Artificial or Passive Immunity._--A form of immunity can be induced by +the introduction of protective substances obtained from an animal which +has been actively immunised. The process by which passive immunity is +acquired depends upon the fact that as a result of the reaction between +the specific virus of a particular disease (the _antigen_) and the +tissues of the animal attacked, certain substances--_antibodies_--are +produced, which when transferred to the body of a susceptible animal +protect it against that disease. The most important of these antibodies +are the _antitoxins_. From the study of the processes by which immunity +is secured against the effects of bacterial action the serum and vaccine +methods of treating certain infective diseases have been evolved. The +_serum treatment_ is designed to furnish the patient with a sufficiency +of antibodies to neutralise the infection. The anti-diphtheritic and the +anti-tetanic act by neutralising the specific toxins of the +disease--_antitoxic serums_; the anti-streptcoccic and the serum for +anthrax act upon the bacteria--_anti-bacterial serums_. + +A _polyvalent_ serum, that is, one derived from an animal which has been +immunised by numerous strains of the organism derived from various +sources, is much more efficacious than when a single strain has been +used. + +_Clinical Use of Serums._--Every precaution must be taken to prevent +organismal contamination of the serum or of the apparatus by means of +which it is injected. Syringes are so made that they can be sterilised +by boiling. The best situations for injection are under the skin of the +abdomen, the thorax, or the buttock, and the skin should be purified at +the seat of puncture. If the bulk of the full dose is large, it should +be divided and injected into different parts of the body, not more than +20 c.c. being injected at one place. The serum may be introduced +directly into a vein, or into the spinal canal, _e.g._ anti-tetanic +serum. The immunity produced by injections of antitoxic sera lasts only +for a comparatively short time, seldom longer than a few weeks. + +_"Serum Disease" and Anaphylaxis._--It is to be borne in mind that some +patients exhibit a supersensitiveness with regard to protective sera, an +injection being followed in a few days by the appearance of an +urticarial or erythematous rash, pain and swelling of the joints, and a +variable degree of fever. These symptoms, to which the name _serum +disease_ is applied, usually disappear in the course of a few days. + +The term _anaphylaxis_ is applied to an allied condition of +supersensitiveness which appears to be induced by the injection of +certain substances, including toxins and sera, that are capable of +acting as antigens. When a second injection is given after an interval +of some days, if anaphylaxis has been established by the first dose, the +patient suddenly manifests toxic symptoms of the nature of profound +shock which may even prove fatal. The conditions which render a person +liable to develop anaphylaxis and the mechanism by which it is +established are as yet imperfectly understood. + +_Vaccine Treatment._--The vaccine treatment elaborated by A. E. Wright +consists in injecting, while the disease is still active, specially +prepared dead cultures of the causative organisms, and is based on the +fact that these "vaccines" render the bacteria in the tissues less able +to resist the attacks of the phagocytes. The method is most successful +when the vaccine is prepared from organisms isolated from the patient +himself, _autogenous vaccine_, but when this is impracticable, or takes +a considerable time, laboratory-prepared polyvalent _stock vaccines_ may +be used. + +_Clinical Use of Vaccines._--Vaccines should not be given while a +patient is in a negative phase, as a certain amount of the opsonin in +the blood is used up in neutralising the substances injected, and this +may reduce the opsonic index to such an extent that the vaccines +themselves become dangerous. As a rule, the propriety of using a vaccine +can be determined from the general condition of the patient. The initial +dose should always be a small one, particularly if the disease is acute, +and the subsequent dosage will be regulated by the effect produced. If +marked constitutional disturbance with rise of temperature follows the +use of a vaccine, it indicates a negative phase, and calls for a +diminution in the next dose. If, on the other hand, the local as well as +the general condition of the patient improves after the injection, it +indicates a positive phase, and the original dose may be repeated or +even increased. Vaccines are best introduced subcutaneously, a part +being selected which is not liable to pressure, as there is sometimes +considerable local reaction. Repeated doses may be necessary at +intervals of a few days. + +The vaccine treatment has been successfully employed in various +tuberculous lesions, in pyogenic infections such as acne, boils, +sycosis, streptococcal, pneumococcal, and gonococcal conditions, in +infections of the accessory air sinuses, and in other diseases caused by +bacteria. + + +PYOGENIC BACTERIA + +From the point of view of the surgeon the most important varieties of +micro-organisms are those that cause inflammation and suppuration--the +_pyogenic bacteria_. This group includes a great many species, and these +are so widely distributed that they are to be met with under all +conditions of everyday life. + +The nature of the inflammatory and suppurative processes will be +considered in detail later; suffice it here to say that they are brought +about by the action of one or other of the organisms that we have now to +consider. + +It is found that the _staphylococci_, which cluster into groups, tend to +produce localised lesions; while the chain-forms--_streptococci_--give +rise to diffuse, spreading conditions. Many varieties of pyogenic +bacteria have now been differentiated, the best known being the +staphylococcus aureus, the streptococcus, and the bacillus coli +communis. + +[Illustration: FIG. 2.--Staphylococcus aureus in Pus from case of +Osteomyelitis. x 1000 diam. Gram's stain.] + +_Staphylococcus Aureus._--This is the commonest organism found in +localised inflammatory and suppurative conditions. It varies greatly in +its virulence, and is found in such widely different conditions as skin +pustules, boils, carbuncles, and some acute inflammations of bone. As +seen by the microscope it occurs in grape-like clusters, fission of the +individual cells taking place irregularly (Fig. 2). When grown in +artificial media, the colonies assume an orange-yellow colour--hence the +name _aureus_. It is of high vitality and resists more prolonged +exposure to high temperatures than most non-sporing bacteria. It is +capable of lying latent in the tissues for long periods, for example, in +the marrow of long bones, and of again becoming active and causing a +fresh outbreak of suppuration. This organism is widely distributed: it +is found on the skin, in the mouth, and in other situations in the body, +and as it is present in the dust of the air and on all objects upon +which dust has settled, it is a continual source of infection unless +means are taken to exclude it from wounds. + +The _staphylococcus albus_ is much less common than the aureus, but has +the same properties and characters, save that its growth on artificial +media assumes a white colour. It is the common cause of stitch +abscesses, the skin being its normal habitat. + +[Illustration: FIG. 3.--Streptococci in Pus from an acute abscess in +subcutaneous tissue. x 1000 diam. Gram's stain.] + +_Streptococcus Pyogenes._--This organism also varies greatly in its +virulence; in some instances--for example in erysipelas--it causes a +sharp attack of acute spreading inflammation, which soon subsides +without showing any tendency to end in suppuration; under other +conditions it gives rise to a generalised infection which rapidly proves +fatal. The streptococcus has less capacity of liquefying the tissues +than the staphylococcus, so that pus formation takes place more slowly. +At the same time its products are very potent in destroying the tissues +in their vicinity, and so interfering with the exudation of leucocytes +which would otherwise exercise their protective influence. Streptococci +invade the lymph spaces, and are associated with acute spreading +conditions such as phlegmonous or erysipelatous inflammations and +suppurations, lymphangitis and suppuration in lymph glands, and +inflammation of serous and synovial membranes, also with a form of +pneumonia which is prone to follow on severe operations in the mouth and +throat. Streptococci are also concerned in the production of spreading +gangrene and pyaemia. + +Division takes place in one axis, so that chains of varying length are +formed (Fig. 3). It is less easily cultivated by artificial media than +the staphylococcus; it forms a whitish growth. + +[Illustration: FIG. 4.--Bacillus coli communis in Urine, from a case of +Cystitis. x 1000 diam. Leishman's stain.] + +_Bacillus Coli Communis._--This organism, which is a normal inhabitant +of the intestinal tract, shows a great tendency to invade any organ or +tissue whose vitality is lowered. It is causatively associated with such +conditions as peritonitis and peritoneal suppuration resulting from +strangulated hernia, appendicitis, or perforation in any part of the +alimentary canal. In cystitis, pyelitis, abscess of the kidney, +suppuration in the bile-ducts or liver, and in many other abdominal +conditions, it plays a most important part. The discharge from wounds +infected by this organism has usually a foetid, or even a faecal odour, +and often contains gases resulting from putrefaction. + +It is a small rod-shaped organism with short flagellae, which render it +motile (Fig. 4). It closely resembles the typhoid bacillus, but is +distinguished from it by its behaviour in artificial culture media. + +[Illustration: FIG. 5.--Fraenkel's Pneumococci in Pus from Empyema +following Pneumonia. x 100 diam. Stained with Muir's capsule stain.] + +_Pneumo-bacteria._--Two forms of organism associated with +pneumonia--_Fraenkel's pneumococcus_ (one of the diplococci) (Fig. 5) +and _Friedlander's pneumo-bacillus_ (a short rod-shaped form)--are +frequently met with in inflammations of the serous and synovial +membranes, in suppuration in the liver, and in various other +inflammatory and suppurative conditions. + +_Bacillus Typhosus._--This organism has been found in pure culture in +suppurative conditions of bone, of cellular tissue, and of internal +organs, especially during convalescence from typhoid fever. Like the +staphylococcus, it is capable of lying latent in the tissues for long +periods. + +_Other Pyogenic Bacteria._--It is not necessary to do more than name +some of the other organisms that are known to be pyogenic, such as the +bacillus pyocyaneus, which is found in green and blue pus, the +micrococcus tetragenus, the gonococcus, actinomyces, the glanders +bacillus, and the tubercle bacillus. Most of these will receive further +mention in connection with the diseases to which they give rise. + +#Leucocytosis.#--Most bacterial diseases, as well as certain other +pathological conditions, are associated with an increase in the number +of leucocytes in the blood throughout the circulatory system. This +condition of the blood, which is known as _leucocytosis_, is believed to +be due to an excessive output and rapid formation of leucocytes by the +bone marrow, and it probably has as its object the arrest and +destruction of the invading organisms or toxins. To increase the +resisting power of the system to pathogenic organisms, an artificial +leucocytosis may be induced by subcutaneous injection of a solution of +nucleinate of soda (16 minims of a 5 per cent. solution). + +The _normal_ number of leucocytes per cubic millimetre varies in +different individuals, and in the same individual under different +conditions, from 5000 to 10,000: 7500 is a normal average, and anything +above 12,000 is considered abnormal. When leucocytosis is present, the +number may range from 12,000 to 30,000 or even higher; 40,000 is looked +upon as a high degree of leucocytosis. According to Ehrlich, the +following may be taken as the standard proportion of the various forms +of leucocytes in normal blood: polynuclear neutrophile leucocytes, 70 to +72 per cent.; lymphocytes, 22 to 25 per cent.; eosinophile cells, 2 to 4 +per cent.; large mononuclear and transitional leucocytes, 2 to 4 per +cent.; mast-cells, 0.5 to 2 per cent. + +In estimating the clinical importance of a leucocytosis, it is not +sufficient merely to count the aggregate number of leucocytes present. A +differential count must be made to determine which variety of cells is +in excess. In the majority of surgical affections it is chiefly the +granular polymorpho-nuclear neutrophile leucocytes that are in excess +(_ordinary leucocytosis_). In some cases, and particularly in parasitic +diseases such as trichiniasis and hydatid disease, the eosinophile +leucocytes also show a proportionate increase (_eosinophilia_). The term +_lymphocytosis_ is applied when there is an increase in the number of +circulating lymphocytes, as occurs, for example, in lymphatic leucaemia, +and in certain cases of syphilis. + +Leucocytosis is met with in nearly all acute infective diseases, and in +acute pyogenic inflammatory affections, particularly in those attended +with suppuration. In exceptionally acute septic conditions the extreme +virulence of the toxins may prevent the leucocytes reacting, and +leucocytosis may be absent. The absence of leucocytosis in a disease in +which it is usually present is therefore to be looked upon as a grave +omen, particularly when the general symptoms are severe. In some cases +of malignant disease the number of leucocytes is increased to 15,000 or +20,000. A few hours after a severe haemorrhage also there is usually a +leucocytosis of from 15,000 to 30,000, which lasts for three or four +days (Lyon). In cases of haemorrhage the leucocytosis is increased by +infusion of fluids into the circulation. After all operations there is +at least a transient leucocytosis (_post-operative leucocytosis_) +(F. I. Dawson). + +The leucocytosis begins soon after the infection manifests itself--for +example, by shivering, rigor, or rise of temperature. The number of +leucocytes rises somewhat rapidly, increases while the condition is +progressing, and remains high during the febrile period, but there is no +constant correspondence between the number of leucocytes and the height +of the temperature. The arrest of the inflammation and its resolution +are accompanied by a fall in the number of leucocytes, while the +occurrence of suppuration is attended with a further increase in their +number. + +In interpreting the "blood count," it is to be kept in mind that a +_physiological leucocytosis_ occurs within three or four hours of taking +a meal, especially one rich in proteins, from 1500 to 2000 being added +to the normal number. In this _digestion leucocytosis_ the increase is +chiefly in the polynuclear neutrophile leucocytes. Immediately before +and after delivery, particularly in primiparae, there is usually a +moderate degree of leucocytosis. If the labour is normal and the +puerperium uncomplicated, the number of leucocytes regains the normal in +about a week. Lactation has no appreciable effect on the number of +leucocytes. In new-born infants the leucocyte count is abnormally high, +ranging from 15,000 to 20,000. In children under one year of age, the +normal average is from 10,000 to 20,000. + +_Absence of Leucocytosis--Leucopenia._--In certain infective diseases +the number of leucocytes in the circulating blood is abnormally +low--3000 or 4000--and this condition is known as _leucopenia_. It +occurs in typhoid fever, especially in the later stages of the disease, +in tuberculous lesions unaccompanied by suppuration, in malaria, and in +most cases of uncomplicated influenza. The occurrence of leucocytosis in +any of these conditions is to be looked upon as an indication that a +mixed infection has taken place, and that some suppurative process is +present. + +The absence of leucocytosis in some cases of virulent septic poisoning +has already been referred to. + +It will be evident that too much reliance must not be placed upon a +single observation, particularly in emergency cases. Whenever possible, +a series of observations should be made, the blood being examined about +four hours after meals, and about the same hour each day. + +The clinical significance of the blood count in individual diseases will +be further referred to. + +_The Iodine or Glycogen Reaction._--The leucocyte count may be +supplemented by staining films of the blood with a watery solution of +iodine and potassium iodide. In all advancing purulent conditions, in +septic poisonings, in pneumonia, and in cancerous growths associated +with ulceration, a certain number of the polynuclear leucocytes are +stained a brown or reddish-brown colour, due to the action of the iodine +on some substance in the cells of the nature of glycogen. This reaction +is absent in serous effusions, in unmixed tuberculous infections, in +uncomplicated typhoid fever, and in the early stages of cancerous +growths. + + + + +CHAPTER III + +INFLAMMATION + + +Definition--Nature of inflammation from surgical point of + view--Sequence of changes in bacterial inflammation--Clinical + aspects of inflammation--General principles of treatment--Chronic + inflammation. + +Inflammation may be defined as the series of vital changes that occurs +in the tissues in response to irritation. These changes represent the +reaction of the tissue elements to the irritant, and constitute the +attempt made by nature to arrest or to limit its injurious effects, and +to repair the damage done by it. + +The phenomena which characterise the inflammatory reaction can be +induced by any form of irritation--such, for example, as mechanical +injury, the application of heat or of chemical substances, or the action +of pathogenic bacteria and their toxins--and they are essentially +similar in kind whatever the irritant may be. The extent to which the +process may go, however, and its effects on the part implicated and on +the system as a whole, vary with different irritants and with the +intensity and duration of their action. A mechanical, a thermal, or a +chemical irritant, acting alone, induces a degree of reaction directly +proportionate to its physical properties, and so long as it does not +completely destroy the vitality of the part involved, the changes in the +tissues are chiefly directed towards repairing the damage done to the +part, and the inflammatory reaction is not only compatible with the +occurrence of ideal repair, but may be looked upon as an integral step +in the reparative process. + +The irritation caused by infection with bacteria, on the other hand, is +cumulative, as the organisms not only multiply in the tissues, but in +addition produce chemical poisons (toxins) which aggravate the +irritative effects. The resulting reaction is correspondingly +progressive, and has as its primary object the expulsion of the irritant +and the limitation of its action. If the natural protective effort is +successful, the resulting tissue changes subserve the process of repair, +but if the bacteria gain the upper hand in the struggle, the +inflammatory reaction becomes more intense, certain of the tissue +elements succumb, and the process for the time being is a destructive +one. During the stage of bacterial inflammation, reparative processes +are in abeyance, and it is only after the inflammation has been allayed, +either by natural means or by the aid of the surgeon, that repair takes +place. + +In applying the antiseptic principle to the treatment of wounds, our +main object is to exclude or to eliminate the bacterial factor, and so +to prevent the inflammatory reaction going beyond the stage in which it +is protective, and just in proportion as we succeed in attaining this +object, do we favour the occurrence of ideal repair. + +#Sequence of Changes in Bacterial Inflammation.#--As the form of +inflammation with which we are most concerned is that due to the action +of bacteria, in describing the process by which the protective influence +of the inflammatory reaction is brought into play, we shall assume the +presence of a bacterial irritant. + +The introduction of a colony of micro-organisms is quickly followed by +an accumulation of wandering cells, and proliferation of +connective-tissue cells in the tissues at the site of infection. The +various cells are attracted to the bacteria by a peculiar chemical or +biological power known as _chemotaxis_, which seems to result from +variations in the surface tension of different varieties of cells, +probably caused by some substance produced by the micro-organisms. +Changes in the blood vessels then ensue, the arteries becoming dilated +and the rate of the current in them being for a time increased--_active +hyperaemia_. Soon, however, the rate of the blood flow becomes slower +than normal, and in course of time the current may cease (_stasis_), and +the blood in the vessels may even coagulate (_thrombosis_). Coincidently +with these changes in the vessels, the leucocytes in the blood of the +inflamed part rapidly increase in number, and they become viscous and +adhere to the vessel wall, where they may accumulate in large numbers. +In course of time the leucocytes pass through the vessel +wall--_emigration of leucocytes_--and move towards the seat of +infection, giving rise to a marked degree of _local leucocytosis_. +Through the openings by which the leucocytes have escaped from the +vessels, red corpuscles may be passively extruded--_diapedesis of red +corpuscles_. These processes are accompanied by changes in the +endothelium of the vessel walls, which result in an increased formation +of lymph, which transudes into the meshes of the connective tissue +giving rise to an _inflammatory oedema_, or, if the inflammation is on a +free surface, forming an _inflammatory exudate_. The quantity and +characters of this exudate vary in different parts of the body, and +according to the nature, virulence, and location of the organisms +causing the inflammation. Thus it may be _serous_, as in some forms of +synovitis; _sero-fibrinous_, as in certain varieties of peritonitis, the +fibrin tending to limit the spread of the inflammation by forming +adhesions; _croupous_, when it coagulates on a free surface and forms a +false membrane, as in diphtheria; _haemorrhagic_ when mixed with blood; +or _purulent_, when suppuration has occurred. The protective effects of +the inflammatory reaction depend for the most part upon the transudation +of lymph and the emigration of leucocytes. The lymph contains the +opsonins which act on the bacteria and render them less able to resist +the attack of the phagocytes, as well as the various protective +antibodies which neutralise the toxins. The polymorph leucocytes are the +principal agents in the process of phagocytosis (p. 22), and together +with the other forms of phagocytes they ingest and destroy the bacteria. + +If the attempt to repel the invading organisms is successful, the +irritant effects are overcome, the inflammation is arrested, and +_resolution_ is said to take place. + +Certain of the vascular and cellular changes are now utilised to restore +the condition to the normal, and _repair_ ensues after the manner +already described. In certain situations, notably in tendon sheaths, in +the cavities of joints, and in the interior of serous cavities, for +example the pleura and peritoneum, the restoration to the normal is not +perfect, adhesions forming between the opposing surfaces. + +If, however, the reaction induced by the infection is insufficient to +check the growth and spread of the organisms, or to inhibit their toxin +production, local necrosis of tissue may take place, either in the form +of suppuration or of gangrene, or the toxins absorbed into the +circulation may produce blood-poisoning, which may even prove fatal. + +#Clinical Aspects of Inflammation.#--It must clearly be understood that +inflammation is not to be looked upon as a disease in itself, but rather +as an evidence of some infective process going on in the tissues in +which it occurs, and of an effort on the part of these tissues to +overcome the invading organisms and their products. The chief danger to +the patient lies, not in the reactive changes that constitute the +inflammatory process, but in the fact that he is liable to be poisoned +by the toxins of the bacteria at work in the inflamed area. + +Since the days of Celsus (first century A.D.), heat, redness, swelling, +and pain have been recognised as cardinal signs of inflammation, and to +these may be added, interference with function in the inflamed part, and +general constitutional disturbance. Variations in these signs and +symptoms depend upon the acuteness of the condition, the nature of the +causative organism and of the tissue attacked, the situation of the part +in relation to the surface, and other factors. + +The _heat_ of the inflamed part is to be attributed to the increased +quantity of blood present in it, and the more superficial the affected +area the more readily is the local increase of temperature detected by +the hand. This clinical point is best tested by placing the palm of the +hand and fingers for a few seconds alternately over an uninflamed and an +inflamed area, otherwise under similar conditions as to coverings and +exposure. In this way even slight differences may be recognised. + +_Redness_, similarly, is due to the increased afflux of blood to the +inflamed part. The shade of colour varies with the stage of the +inflammation, being lighter and brighter in the early, hyperaemic stages, +and darker and duskier when the blood flow is slowed or when stasis has +occurred and the oxygenation of the blood is defective. In the +thrombotic stage the part may assume a purplish hue. + +The _swelling_ is partly due to the increased amount of blood in the +affected part and to the accumulation of leucocytes and proliferated +tissue cells, but chiefly to the exudate in the connective +tissue--_inflammatory oedema_. The more open the structure of the tissue +of the part, the greater is the amount of swelling--witness the marked +degree of oedema that occurs in such parts as the scrotum or the eyelids. + +_Pain_ is a symptom seldom absent in inflammation. _Tenderness_--that +is, pain elicited on pressure--is one of the most valuable diagnostic +signs we possess, and is often present before pain is experienced by the +patient. That the area of tenderness corresponds to the area of +inflammation is almost an axiom of surgery. Pain and tenderness are due +to the irritation of nerve filaments of the part, rendered all the more +sensitive by the abnormal conditions of their blood supply. In +inflammatory conditions of internal organs, for example the abdominal +viscera, the pain is frequently referred to other parts, usually to an +area supplied by branches from the same segment of the cord as that +supplying the inflamed part. + +For purposes of diagnosis, attention should be paid to the terms in +which the patient describes his pain. For example, the pain caused by +an inflammation of the skin is usually described as of a _burning_ or +_itching_ character; that of inflammation in dense tissues like +periosteum or bone, or in encapsuled organs, as _dull_, _boring_, or +_aching_. When inflammation is passing on to suppuration the pain +assumes a _throbbing_ character, and as the pus reaches the surface, or +"points," as it is called, sharp, _darting_, or _lancinating_ pains are +experienced. Inflammation involving a nerve-trunk may cause a _boring_ +or a _tingling_ pain; while the implication of a serous membrane such as +the pleura or peritoneum gives rise to a pain of a sharp, _stabbing_ +character. + +_Interference with the function_ of the inflamed part is always present +to a greater or less extent. + +#Constitutional Disturbances.#--Under the term constitutional +disturbances are included the presence of fever or elevation of +temperature; certain changes in the pulse rate and the respiration; +gastro-intestinal and urinary disturbances; and derangements of the +central nervous system. These are all due to the absorption of toxins +into the general circulation. + +_Temperature._--A marked rise of temperature is one of the most constant +and important concomitants of acute inflammatory conditions, and the +temperature chart forms a fairly reliable index of the state of the +patient. The toxins interfere with the nerve-centres in the medulla that +regulate the balance between the production and the loss of body heat. + +Clinically the temperature is estimated by means of a self-registering +thermometer placed, for from one to five minutes, in close contact with +the skin in the axilla, or in the mouth. Sometimes the thermometer is +inserted into the rectum, where, however, the temperature is normally +3/4 o F. higher than in the axilla. + +_In health_ the temperature of the body is maintained at a mean of about +98.4 o F. (37 o C.) by the heat-regulating mechanism. It varies from hour +to hour even in health, reaching its maximum between four and eight in +the evening, when it may rise to 99 o F., and is at its lowest between +four and six in the morning, when it may be about 97 o F. + +The temperature is more easily disturbed in children than in adults, and +may become markedly elevated (104 o or 105 o F.) from comparatively slight +causes; in the aged it is less liable to change, so that a rise to 103 o +or 104 o F. is to be looked upon as indicating a high state of fever. + +A sudden rise of temperature is usually associated with a feeling of +chilliness down the back and in the limbs, which may be so marked that +the patient shivers violently, while the skin becomes cold, pale, and +shrivelled--_cutis anserina_. This is a nervous reaction due to a want +of correspondence between the internal and the surface temperature of +the body, and is known clinically as a _rigor_. When the temperature +rises gradually the chill is usually slight and may be unobserved. Even +during the cold stage, however, the internal temperature is already +raised, and by the time the chill has passed off its maximum has been +reached. + +The _pulse_ is always increased in frequency, and usually varies +directly with the height of the temperature. _Respiration_ is more +active during the progress of an inflammation; and bronchial catarrh is +common apart from any antecedent respiratory disease. + +_Gastro-intestinal disturbances_ take the form of loss of appetite, +vomiting, diminished secretion of the alimentary juices, and weakening +of the peristalsis of the bowel, leading to thirst, dry, furred tongue, +and constipation. Diarrhoea is sometimes present. The _urine_ is usually +scanty, of high specific gravity, rich in nitrogenous substances, +especially urea and uric acid, and in calcium salts, while sodium +chloride is deficient. Albumin and hyaline casts may be present in cases +of severe inflammation with high temperature. The significance of +general _leucocytosis_ has already been referred to. + +#General Principles of Treatment.#--The capacity of the inflammatory +reaction for dealing with bacterial infections being limited, it often +becomes necessary for the surgeon to aid the natural defensive +processes, as well as to counteract the local and general effects of the +reaction, and to relieve symptoms. + +The ideal means of helping the tissues is by removing the focus of +infection, and when this can be done, as for example in a carbuncle or +an anthrax pustule, the infected area may be completely excised. When +the focus is not sufficiently limited to admit of this, the infected +tissue may be scraped away with the sharp spoon, or destroyed by +caustics or by the actual cautery. If this is inadvisable, the organisms +may be attacked by strong antiseptics, such as pure carbolic acid. + +Moist dressings favour the removal of bacteria by promoting the escape +of the inflammatory exudate, in which they are washed out. + +#Artificial Hyperaemia.#--When such direct means as the above are +impracticable, much can be done to aid the tissues in their struggle by +improving the condition of the circulation in the inflamed area, so as +to ensure that a plentiful supply of fresh arterial blood reaches it. +The beneficial effects of _hot fomentations and poultices_ depend on +their causing a dilatation of the vessels, and so inducing a hyperaemia +in the affected area. It has been shown experimentally that repeated, +short applications of moist heat (not exceeding 106 o F.) are more +efficacious than continuous application. It is now believed that the +so-called _counter-irritants_--mustard, iodine, cantharides, actual +cautery--act in the same way; and the method of treating erysipelas by +applying a strong solution of iodine around the affected area is based +on the same principle. + +[Illustration: FIG. 6.--Passive Hyperaemia of Hand and Forearm induced by +Bier's Bandage.] + +While these and similar methods have long been employed in the treatment +of inflammatory conditions, it is only within comparatively recent years +that their mode of action has been properly understood, and to August +Bier belongs the credit of having put the treatment of inflammation on a +scientific and rational basis. Recognising the "beneficent intention" of +the inflammatory reaction, and the protective action of the leucocytosis +which accompanies the hyperaemic stages of the process, Bier was led to +study the effects of increasing the hyperaemia by artificial means. As a +result of his observations, he has formulated a method of treatment +which consists in inducing an artificial hyperaemia in the inflamed area, +either by obstructing the venous return from the part (_passive +hyperaemia_), or by stimulating the arterial flow through it (_active +hyperaemia_). + +_Bier's Constricting Bandage._--To induce a _passive hyperaemia_ in a +limb, an elastic bandage is applied some distance above the inflamed +area sufficiently tightly to obstruct the venous return from the distal +parts without arresting in any way the inflow of arterial blood (Fig. 6). +If the constricting band is correctly applied, the parts beyond +become swollen and oedematous, and assume a bluish-red hue, but they +retain their normal temperature, the pulse is unchanged, and there is no +pain. If the part becomes blue, cold, or painful, or if any existing +pain is increased, the band has been applied too tightly. The hyperaemia +is kept up from twenty to twenty-two hours out of the twenty-four, and +in the intervals the limb is elevated to get rid of the oedema and to +empty it of impure blood, and so make room for a fresh supply of healthy +blood when the bandage is re-applied. As the inflammation subsides, the +period during which the band is kept on each day is diminished; but the +treatment should be continued for some days after all signs of +inflammation have subsided. + +This method of treating acute inflammatory conditions necessitates +close supervision until the correct degree of tightness of the band has +been determined. + +[Illustration: FIG. 7.--Passive Hyperaemia of Finger induced by Klapp's +Suction Bell.] + +_Klapp's Suction Bells._--In inflammatory conditions to which the +constricting band cannot be applied, as for example an acute mastitis, a +bubo in the groin, or a boil on the neck, the affected area may be +rendered hyperaemic by an appropriately shaped glass bell applied over it +and exhausted by means of a suction-pump, the rarefaction of the air in +the bell determining a flow of blood into the tissues enclosed within it +(Figs. 7 and 8). The edge of the bell is smeared with vaseline, and the +suction applied for from five to ten minutes at a time, with a +corresponding interval between the applications. Each sitting lasts for +from half an hour to an hour, and the treatment may be carried out once +or twice a day according to circumstances. This apparatus acts in the +same way as the old-fashioned _dry cup_, and is more convenient and +equally efficacious. + +[Illustration: FIG. 8.--Passive Hyperaemia induced by Klapp's Suction +Bell for Inflammation of Inguinal Gland.] + +_Active hyperaemia_ is induced by the local application of heat, +particularly by means of hot air. It has not proved so useful in acute +inflammation as passive hyperaemia, but is of great value in hastening +the absorption of inflammatory products and in overcoming adhesions and +stiffness in tendons and joints. + +_General Treatment._--The patient should be kept at rest, preferably in +bed, to diminish the general tissue waste; and the diet should be +restricted to fluids, such as milk, beef-tea, meat juices or gruel, and +these may be rendered more easily assimilable by artificial digestion if +necessary. To counteract the general effect of toxins absorbed into +the circulation, specific antitoxic sera are employed in certain forms +of infection, such as diphtheria, streptococcal septicaemia, and tetanus. +In other forms of infection, vaccines are employed to increase the +opsonic power of the blood. When such means are not available, the +circulating toxins may to some extent be diluted by giving plenty of +bland fluids by the mouth or normal salt solution by the rectum. + +The elimination of the toxins is promoted by securing free action of the +emunctories. A saline purge, such as half an ounce of sulphate of +magnesium in a small quantity of water, ensures a free evacuation of the +bowels. The kidneys are flushed by such diluent drinks as equal parts of +milk and lime water, or milk with a dram of liquor calcis saccharatus +added to each tumblerful. Barley-water and "Imperial drink," which +consists of a dram and a half of cream of tartar added to a pint of +boiling water and sweetened with sugar after cooling, are also useful +and non-irritating diuretics. The skin may be stimulated by Dover's +powder (10 grains) or liquor ammoniae acetatis in three-dram doses every +four hours. + +Various drugs administered internally, such as quinine, salol, +salicylate of iron, and others, have a reputation, more or less +deserved, as internal antiseptics. + +Weakness of the heart, as indicated by the condition of the pulse, is +treated by the use of such drugs as digitalis, strophanthus, or +strychnin, according to circumstances. + +Gastro-intestinal disturbances are met by ordinary medical means. +Vomiting, for example, can sometimes be checked by effervescing drinks, +such as citrate of caffein, or by dilute hydrocyanic acid and bismuth. +In severe cases, and especially when the vomited matter resembles +coffee-grounds from admixture with altered blood--the so-called +post-operative haematemesis--the best means of arresting the vomiting is +by washing out the stomach. Thirst is relieved by rectal injections of +saline solution. The introduction of saline solution into the veins or +by the rectum is also useful in diluting and hastening the elimination +of circulating toxins. + +In surgical inflammations, as a rule, nothing is gained by lowering the +temperature, unless at the same time the cause is removed. When severe +or prolonged pyrexia becomes a source of danger, the use of hot or cold +sponging, or even the cold bath, is preferable to the administration of +drugs. + +_Relief of Symptoms._--For the relief of _pain_, rest is essential. The +inflamed part should be placed in a splint or other appliance which will +prevent movement, and steps must be taken to reduce its functional +activity as far as possible. Locally, warm and moist dressings, such as +a poultice or fomentation, may be used. To make a fomentation, a piece +of flannel or lint is wrung out of very hot water or antiseptic lotion +and applied under a sheet of mackintosh. Fomentations should be renewed +as often as they cool. An ordinary india-rubber bag filled with hot +water and fixed over the fomentation, by retaining the heat, obviates +the necessity of frequently changing the application. The addition of a +few drops of laudanum sprinkled on the flannel has a soothing effect. +Lead and opium lotion is a useful, soothing application employed as a +fomentation. We prefer the application of lint soaked in a 10 per cent. +aqueous or glycerine solution of ichthyol, or smeared with ichthyol +ointment (1 in 3). Belladonna and glycerine, equal parts, may be used. + +Dry cold obtained by means of icebags, or by Leiter's lead tubes through +which a continuous stream of ice-cold water is kept flowing, is +sometimes soothing to the patient, but when the vessels in the inflamed +part are greatly congested its use is attended with considerable risk, +as it not only contracts the arterioles supplying the part, but also +diminishes the outflow of venous blood, and so may determine gangrene of +tissues already devitalised. + +A milder form of employing cold is by means of evaporating lotions: a +thin piece of lint or gauze is applied over the inflamed part and kept +constantly moist with the lotion, the dressing being left freely exposed +to allow of continuous evaporation. A useful evaporating lotion is made +up as follows: take of chloride of ammonium, half an ounce; rectified +spirit, one ounce; and water, seven ounces. + +The administration of opiates may be necessary for the relief of pain. + +The accumulation of an excessive amount of inflammatory exudate may +endanger the vitality of the tissues by pressing on the blood vessels to +such an extent as to cause stasis, and by concentrating the local action +of the toxins. Under such conditions the tension should be relieved and +the exudate with its contained toxins removed by making an incision into +the inflamed tissues, and applying a suction bell. When the exudate has +collected in a synovial cavity, such as a joint or bursa, it may be +withdrawn by means of a trocar and cannula. There are other methods of +withdrawing blood and exudate from an inflamed area, for example by +leeches or wet-cupping, but they are seldom employed now. + +Before applying leeches the part must be thoroughly cleansed, and if +the leech is slow to bite, may be smeared with cream. The leech is +retained in position under an inverted wine-glass or wide test-tube till +it takes hold. After it has sucked its fill it usually drops off, having +withdrawn a dram or a dram and a half of blood. If it be desirable to +withdraw more blood, hot fomentations should be applied to the bite. As +it is sometimes necessary to employ considerable pressure to stop the +bleeding, leeches should, if possible, be applied over a bone which will +furnish the necessary resistance. The use of styptics may be called for. + +_Wet-cupping_ has almost entirely been superseded by the use of Klapp's +suction bells. + +_General blood-letting_ consists in opening a superficial vein +(venesection) and allowing from eight to ten ounces of blood to flow +from it. It is seldom used in the treatment of surgical forms of +inflammation. + +_Counter-irritants._--In deep-seated inflammations, counter-irritants +are sometimes employed in the form of mustard leaves or blisters, +according to the degree of irritation required. A mustard leaf or +plaster should not be left on longer than ten or fifteen minutes, unless +it is desired to produce a blister. Blistering may be produced by a +_cantharides plaster_, or by painting with _liquor epispasticus_. The +plaster should be left on from eight to ten hours, and if it has failed +to raise a blister, a hot fomentation should be applied to the part. +_Liquor epispasticus_, alone or mixed with equal parts of collodion, is +painted on the part with a brush. Several paintings are often required +before a blister is raised. The preliminary removal of the natural +grease from the skin favours the action of these applications. + +The treatment of inflammation in special tissues and organs will be +considered in the sections devoted to regional surgery. + +#Chronic Inflammation.#--A variety of types of chronic and subacute +inflammation are met with which, owing to ignorance of their causations, +cannot at present be satisfactorily classified. + +The best defined group is that of the _granulomata_, which includes such +important diseases as tuberculosis and syphilis, and in which different +types of chronic inflammation are caused by infection with a specific +organism, all having the common character, however, that abundant +granulation tissue is formed in which cellular changes are more in +evidence than changes in the blood vessels, and in which the subsequent +degeneration and necrosis of the granulation tissue results in the +breaking down and destruction of the tissue in which it is formed. +Another group is that in which chronic inflammation is due to mild or +attenuated forms of pyogenic infection affecting especially the lymph +glands and the bone marrow. In the glands of the groin, for example, +associated with various forms of irritation about the external genitals, +different types of _chronic lymphadenitis_ are met with; they do not +frankly suppurate as do the acute types, but are attended with a +hyperplasia of the tissue elements which results in enlargement of the +affected glands of a persistent, and sometimes of a relapsing character. +Similar varieties of _osteomyelitis_ are met with that do not, like the +acute forms, go on to suppuration or to death of bone, but result in +thickening of the bone affected, both on the surface and in the +interior, resulting in obliteration of the medullary canal. + +A third group of chronic inflammations are those that begin as an acute +pyogenic inflammation, which, instead of resolving completely, persists +in a chronic form. It does so apparently because there is some factor +aiding the organisms and handicapping the tissues, such as the presence +of a foreign body, a piece of glass or metal, or a piece of dead bone; +in these circumstances the inflammation persists in a chronic form, +attended with the formation of fibrous tissue, and, in the case of bone, +with the formation of new bone in excess. It will be evident that in +this group, chronic inflammation and repair are practically +interchangeable terms. + +There are other groups of chronic inflammation, the origin of which +continues to be the subject of controversy. Reference is here made to +the chronic inflammations of the synovial membrane of joints, of tendon +sheaths and of bursae--_chronic synovitis_, _teno-synovitis_ and +_bursitis_; of the fibrous tissues of joints--chronic forms of +_arthritis_; of the blood vessels--chronic forms of _endarteritis_ and +of _phlebitis_ and of the peripheral nerves--_neuritis_. Also in the +breast and in the prostate, with the waning of sexual life there may +occur a formation of fibrous tissue--chronic _interstitial mastitis_, +_chronic prostatitis_, having analogies with the chronic interstitial +inflammations of internal organs like the kidney--_chronic interstitial +nephritis_; and in the breast and prostate, as in the kidney, the +formation of fibrous tissue leads to changes in the secreting epithelium +resulting in the formation of cysts. + +Lastly, there are still other types of chronic inflammation attended +with the formation of fibrous tissue on such a liberal scale as to +suggest analogies with new growths. The best known of these are the +systematic forms of fibromatosis met with in the central nervous system +and in the peripheral nerves--_neuro-fibromatosis_; in the submucous +coat of the stomach--_gastric fibromatosis_; and in the +colon--_intestinal fibromatosis_. + +These conditions will be described with the tissues and organs in which +they occur. + +In the _treatment of chronic inflammations_, pending further knowledge +as to their causation, and beyond such obvious indications as to help +the tissues by removing a foreign body or a piece of dead bone, there +are employed--empirically--a number of procedures such as the induction +of hyperaemia, exposure to the X-rays, and the employment of blisters, +cauteries, and setons. Vaccines may be had recourse to in those of +bacterial origin. + + + + +CHAPTER IV + +SUPPURATION + + +Definition--Pus--_Varieties_--Acute circumscribed abscess--_Acute + suppuration in a wound_--_Acute Suppuration in a mucous + membrane_--Diffuse cellulitis and diffuse suppuration-- + _Whitlow_--_Suppurative cellulitis in different situations_--Chronic + suppuration--Sinus, Fistula--Constitutional manifestations of + pyogenic infection--_Sapraemia_--_Septicaemia_--_Pyaemia_. + +Suppuration, or the formation of pus, is one of the results of the +action of bacteria on the tissues. The invading organism is usually one +of the staphylococci, less frequently a streptococcus, and still less +frequently one of the other bacteria capable of producing pus, such as +the bacillus coli communis, the gonococcus, the pneumococcus, or the +typhoid bacillus. + +So long as the tissues are in a healthy condition they are able to +withstand the attacks of moderate numbers of pyogenic bacteria of +ordinary virulence, but when devitalised by disease, by injury, or by +inflammation due to the action of other pathogenic organisms, +suppuration ensues. + +It would appear, for example, that pyogenic organisms can pass through +the healthy urinary tract without doing any damage, but if the pelvis of +the kidney, the ureter, or the bladder is the seat of stone, they give +rise to suppuration. Similarly, a calculus in one of the salivary ducts +frequently results in an abscess forming in the floor of the mouth. When +the lumen of a tubular organ, such as the appendix or the Fallopian tube +is blocked also, the action of pyogenic organisms is favoured and +suppuration ensues. + +#Pus.#--The fluid resulting from the process of suppuration is known +as _pus_. In its typical form it is a yellowish creamy substance, of +alkaline reaction, with a specific gravity of about 1030, and it has a +peculiar mawkish odour. If allowed to stand in a test-tube it does not +coagulate, but separates into two layers: the upper, transparent, +straw-coloured fluid, the _liquor puris_ or pus serum, closely +resembling blood serum in its composition, but containing less protein +and more cholestrol; it also contains leucin, tyrosin, and certain +albumoses which prevent coagulation. + +The layer at the bottom of the tube consists for the most part of +polymorph leucocytes, and proliferated connective tissue and endothelial +cells (_pus corpuscles_). Other forms of leucocytes may be present, +especially in long-standing suppurations; and there are usually some red +corpuscles, dead bacteria, fat cells and shreds of tissue, cholestrol +crystals, and other detritus in the deposit. + +If a film of fresh pus is examined under the microscope, the pus cells +are seen to have a well-defined rounded outline, and to contain a finely +granular protoplasm and a multi-partite nucleus; if still warm, the +cells may exhibit amoeboid movement. In stained films the nuclei take the +stain well. In older pus cells the outline is irregular, the protoplasm +coarsely granular, and the nuclei disintegrated, no longer taking the +stain. + +_Variations from Typical Pus._--Pus from old-standing sinuses is often +watery in consistence (ichorous), with few cells. Where the granulations +are vascular and bleed easily, it becomes sanious from admixture with +red corpuscles; while, if a blood-clot be broken down and the debris +mixed with the pus, it contains granules of blood pigment and is said to +be "grumous." The _odour_ of pus varies with the different bacteria +producing it. Pus due to ordinary pyogenic cocci has a mawkish odour; +when putrefactive organisms are present it has a putrid odour; when it +forms in the vicinity of the intestinal canal it usually contains the +bacillus coli communis and has a faecal odour. + +The _colour_ of pus also varies: when due to one or other of the +varieties of the bacillus pyocyaneus, it is usually of a blue or green +colour; when mixed with bile derivatives or altered blood pigment, it +may be of a bright orange colour. In wounds inflicted with rough iron +implements from which rust is deposited, the pus often presents the same +colour. + +The pus may form and collect within a circumscribed area, constituting a +localised _abscess_; or it may infiltrate the tissues over a wide +area--_diffuse suppuration_. + + +ACUTE CIRCUMSCRIBED ABSCESS + +Any tissue of the body may be the seat of an acute abscess, and there +are many routes by which the bacteria may gain access to the affected +area. For example: an abscess in the integument or subcutaneous +cellular tissue usually results from infection by organisms which have +entered through a wound or abrasion of the surface, or along the ducts +of the skin; an abscess in the breast from organisms which have passed +along the milk ducts opening on the nipple, or along the lymphatics +which accompany these. An abscess in a lymph gland is usually due to +infection passing by way of the lymph channels from the area of skin or +mucous membrane drained by them. Abscesses in internal organs, such as +the kidney, liver, or brain, usually result from organisms carried in +the blood-stream from some focus of infection elsewhere in the body. + +A knowledge of the possible avenues of infection is of clinical +importance, as it may enable the source of a given abscess to be traced +and dealt with. In suppuration in the Fallopian tube (pyosalpynx), for +example, the fact that the most common origin of the infection is in the +genital passage, leads to examination for vaginal discharge; and if none +is present, the abscess is probably due to infection carried in the +blood-stream from some primary focus about the mouth, such as a gumboil +or an infective sore throat. + +The exact location of an abscess also may furnish a key to its source; +in axillary abscess, for example, if the suppuration is in the lymph +glands the infection has come through the afferent lymphatics; if in the +cellular tissue, it has spread from the neck or chest wall; if in the +hair follicles, it is a local infection through the skin. + +#Formation of an Abscess.#--When pyogenic bacteria are introduced into +the tissue there ensues an inflammatory reaction, which is characterised +by dilatation of the blood vessels, exudation of large numbers of +leucocytes, and proliferation of connective-tissue cells. These +wandering cells soon accumulate round the focus of infection, and form a +protective barrier which tends to prevent the spread of the organisms +and to restrict their field of action. Within the area thus +circumscribed the struggle between the bacteria and the phagocytes takes +place, and in the process toxins are formed by the organisms, a certain +number of the leucocytes succumb, and, becoming degenerated, set free +certain proteolytic enzymes or ferments. The toxins cause +coagulation-necrosis of the tissue cells with which they come in +contact, the ferments liquefy the exudate and other albuminous +substances, and in this way _pus_ is formed. + +If the bacteria gain the upper hand, this process of liquefaction which +is characteristic of suppuration, extends into the surrounding tissues, +the protective barrier of leucocytes is broken down, and the +suppurative process spreads. A fresh accession of leucocytes, however, +forms a new barrier, and eventually the spread is arrested, and the +collection of pus so hemmed in constitutes an _abscess_. + +Owing to the swelling and condensation of the parts around, the pus thus +formed is under considerable pressure, and this causes it to burrow +along the lines of least resistance. In the case of a subcutaneous +abscess the pus usually works its way towards the surface, and "points," +as it is called. Where it approaches the surface the skin becomes soft +and thin, and eventually sloughs, allowing the pus to escape. + +An abscess forming in the deeper planes is prevented from pointing +directly to the surface by the firm fasciae and other fibrous structures. +The pus therefore tends to burrow along the line of the blood vessels +and in the connective-tissue septa, till it either finds a weak spot or +causes a portion of fascia to undergo necrosis and so reaches the +surface. Accordingly, many abscess cavities resulting from deep-seated +suppuration are of irregular shape, with pouches and loculi in various +directions--an arrangement which interferes with their successful +treatment by incision and drainage. + +The relief of tension which follows the bursting of an abscess, the +removal of irritation by the escape of pus, and the casting off of +bacteria and toxins, allow the tissues once more to assert themselves, +and a process of repair sets in. The walls of the abscess fall in; +granulation tissue grows into the space and gradually fills it; and +later this is replaced by cicatricial tissue. As a result of the +subsequent contraction of the cicatricial tissue, the scar is usually +depressed below the level of the surrounding skin surface. + +If an abscess is prevented from healing--for example, by the presence of +a foreign body or a piece of necrosed bone--a sinus results, and from it +pus escapes until the foreign body is removed. + +#Clinical Features of an Acute Circumscribed Abscess.#--In the initial +stages the usual symptoms of inflammation are present. Increased +elevation of temperature, with or without a rigor, progressive +leucocytosis, and sweating, mark the transition between inflammation and +suppuration. An increasing leucocytosis is evidence that a suppurative +process is spreading. + +The local symptoms vary with the seat of the abscess. When it is +situated superficially--for example, in the breast tissue--the affected +area is hot, the redness of inflammation gives place to a dusky purple +colour, with a pale, sometimes yellow, spot where the pus is near the +surface. The swelling increases in size, the firm brawny centre becomes +soft, projects as a cone beyond the level of the rest of the swollen +area, and is usually surrounded by a zone of induration. + +By gently palpating with the finger-tips over the softened area, a fluid +wave may be detected--_fluctuation_--and when present this is a certain +indication of the existence of fluid in the swelling. Its recognition, +however, is by no means easy, and various fallacies are to be guarded +against in applying this test clinically. When, for example, the walls +of the abscess are thick and rigid, or when its contents are under +excessive tension, the fluid wave cannot be elicited. On the other hand, +a sensation closely resembling fluctuation may often be recognised in +oedematous tissues, in certain soft, solid tumours such as fatty tumours +or vascular sarcomata, in aneurysm, and in a muscle when it is palpated +in its transverse axis. + +When pus has formed in deeper parts, and before it has reached the +surface, oedema of the overlying skin is frequently present, and the skin +pits on pressure. + +With the formation of pus the continuous burning or boring pain of +inflammation assumes a throbbing character, with occasional sharp, +lancinating twinges. Should doubt remain as to the presence of pus, +recourse may be had to the use of an exploring needle. + +_Differential Diagnosis of Acute Abscess._--A practical difficulty which +frequently arises is to decide whether or not pus has actually formed. +It may be accepted as a working rule in practice that when an acute +inflammation has lasted for four or five days without showing signs of +abatement, suppuration has almost certainly occurred. In deep-seated +suppuration, marked oedema of the skin and the occurrence of rigors and +sweating may be taken to indicate the formation of pus. + +There are cases on record where rapidly growing sarcomatous and +angiomatous tumours, aneurysms, and the bruises that occur in +haemophylics, have been mistaken for acute abscesses and incised, with +disastrous results. + +#Treatment of Acute Abscesses.#--The dictum of John Bell, "Where there +is pus, let it out," summarises the treatment of abscess. The extent and +situation of the incision and the means taken to drain the cavity, +however, vary with the nature, site, and relations of the abscess. In a +superficial abscess, for example a bubo, or an abscess in the breast or +face where a disfiguring scar is undesirable, a small puncture should be +made where the pus threatens to point, and a Klapp's suction bell be +applied as already described (p. 39). A drain is not necessary, and in +the intervals between the applications of the bell the part is covered +with a moist antiseptic dressing. + +In abscesses deeply placed, as for example under the gluteal or pectoral +muscles, one or more incisions should be made, and the cavity drained by +glass or rubber tubes or by strips of rubber tissue. + +The wound should be dressed the next day, and the tube shortened, in the +case of a rubber tube, by cutting off a portion of its outer end. On the +second day or later, according to circumstances, the tube is removed, +and after this the dressing need not be repeated oftener than every +second or third day. + +Where pus has formed in relation to important structures--as, for +example, in the deeper planes of the neck--_Hilton's method_ of opening +the abscess may be employed. An incision is made through the skin and +fascia, a grooved director is gently pushed through the deeper tissues +till pus escapes along its groove, and then the track is widened by +passing in a pair of dressing forceps and expanding the blades. A tube, +or strip of rubber tissue, is introduced, and the subsequent treatment +carried out as in other abscesses. When the drain lies in proximity to a +large blood vessel, care must be taken not to leave it in position long +enough to cause ulceration of the vessel wall by pressure. + +In some abscesses, such as those in the vicinity of the anus, the cavity +should be laid freely open in its whole extent, stuffed with iodoform or +bismuth gauze, and treated by the open method. + +It is seldom advisable to wash out an abscess cavity, and squeezing out +the pus is also to be avoided, lest the protective zone be broken down +and the infection be diffused into the surrounding tissues. + +The importance of taking precautions against further infection in +opening an abscess can scarcely be exaggerated, and the rapidity with +which healing occurs when the access of fresh bacteria is prevented is +in marked contrast to what occurs when such precautions are neglected +and further infection is allowed to take place. + +_Acute Suppuration in a Wound._--If in the course of an operation +infection of the wound has occurred, a marked inflammatory reaction soon +manifests itself, and the same changes as occur in the formation of an +acute abscess take place, modified, however, by the fact that the pus +can more readily reach the surface. In from twenty-four to forty-eight +hours the patient is conscious of a sensation of chilliness, or may +even have a rigor. At the same time he feels generally out of sorts, +with impaired appetite, headache, and it may be looseness of the bowels. +His temperature rises to 100 o or 101 o F., and the pulse quickens to 100 +or 110. + +On exposing the wound it is found that the parts for some distance +around are red, glazed, and oedematous. The discoloration and swelling +are most intense in the immediate vicinity of the wound, the edges of +which are everted and moist. Any stitches that may have been introduced +are tight, and the deep ones may be cutting into the tissues. There is +heat, and a constant burning or throbbing pain, which is increased by +pressure. If the stitches be cut, pus escapes, the wound gapes, and its +surfaces are found to be inflamed and covered with pus. + +The open method is the only safe means of treating such wounds. The +infected surface may be sponged over with pure carbolic acid, the excess +of which is washed off with absolute alcohol, and the wound either +drained by tubes or packed with iodoform gauze. The practice of scraping +such surfaces with the sharp spoon, squeezing or even of washing them +out with antiseptic lotions, is attended with the risk of further +diffusing the organisms in the tissue, and is only to be employed under +exceptional circumstances. Continuous irrigation of infected wounds or +their immersion in antiseptic baths is sometimes useful. The free +opening up of the wound is almost immediately followed by a fall in the +temperature. The surrounding inflammation subsides, the discharge of pus +lessens, and healing takes place by the formation of granulation +tissue--the so-called "healing by second intention." + +Wound infection may take place from _catgut_ which has not been +efficiently prepared. The local and general reactions may be slight, +and, as a rule, do not appear for seven or eight days after the +operation, and, it may be, not till after the skin edges have united. +The suppuration is strictly localised to the part of the wound where +catgut was employed for stitches or ligatures, and shows little tendency +to spread. The infected part, however, is often long of healing. The +irritation in these cases is probably due to toxins in the catgut and +not to bacteria. + +When suppuration occurs in connection with buried sutures of +unabsorbable materials, such as silk, silkworm gut, or silver wire, it +is apt to persist till the foreign material is cast off or removed. + +Suppuration may occur in the track of a skin stitch, producing a _stitch +abscess_. The infection may arise from the material used, especially +catgut or silk, or, more frequently perhaps, from the growth of +staphylococcus albus from the skin of the patient when this has been +imperfectly disinfected. The formation of pus under these conditions may +not be attended with any of the usual signs of suppuration, and beyond +some induration around the wound and a slight tenderness on pressure +there may be nothing to suggest the presence of an abscess. + +_Acute Suppuration of a Mucous Membrane._--When pyogenic organisms gain +access to a mucous membrane, such as that of the bladder, urethra, or +middle ear, the usual phenomena of acute inflammation and suppuration +ensue, followed by the discharge of pus on the free surface. It would +appear that the most marked changes take place in the submucous tissue, +causing the covering epithelium in places to die and leave small +superficial ulcers, for example in gonorrhoeal urethritis, the +cicatricial contraction of the scar subsequently leading to the +formation of stricture. When mucous glands are present in the membrane, +the pus is mixed with mucus--_muco-pus_. + + +DIFFUSE CELLULITIS AND DIFFUSE SUPPURATION + +Cellulitis is an acute affection resulting from the introduction of some +organism--commonly the _streptococcus pyogenes_--into the cellular +connective tissue of the integument, intermuscular septa, tendon +sheaths, or other structures. Infection always takes place through a +breach of the surface, although this may be superficial and +insignificant, such as a pin-prick, a scratch, or a crack under a nail, +and the wound may have been healed for some time before the inflammation +becomes manifest. The cellulitis, also, may develop at some distance +from the seat of inoculation, the organisms having travelled by the +lymphatics. + +The virulence of the organisms, the loose, open nature of the tissues in +which they develop, and the free lymphatic circulation by means of which +they are spread, account for the diffuse nature of the process. +Sometimes numbers of cocci are carried for a considerable distance from +the primary area before they are arrested in the lymphatics, and thus +several patches of inflammation may appear with healthy areas between. + +The pus infiltrates the meshes of the cellular tissue, there is +sloughing of considerable portions of tissue of low vitality, such as +fat, fascia, or tendon, and if the process continues for some time +several collections of pus may form. + +_Clinical Features._--The reaction in cases of diffuse cellulitis is +severe, and is usually ushered in by a distinct chill or even a rigor, +while the temperature rises to 103 o, 104 o, or 105 o F. The pulse is +proportionately increased in frequency, and is small, feeble, and often +irregular. The face is flushed, the tongue dry and brown, and the +patient may become delirious, especially during the night. Leucocytosis +is present in cases of moderate severity; but in severe cases the +virulence of the toxins prevents reaction taking place, and leucocytosis +is absent. + +The local manifestations vary with the relation of the seat of the +inflammation to the surface. When the superficial cellular tissue is +involved, the skin assumes a dark bluish-red colour, is swollen, +oedematous, and the seat of burning pain. To the touch it is firm, hot, +and tender. When the primary focus is in the deeper tissues, the +constitutional disturbance is aggravated, while the local signs are +delayed, and only become prominent when pus forms and approaches the +surface. It is not uncommon for blebs containing dark serous fluid to +form on the skin. The infection frequently spreads along the line of the +main lymph vessels of the part (_septic lymphangitis_) and may reach the +lymph glands (_septic lymphadenitis_). + +With the formation of pus the skin becomes soft and boggy at several +points, and eventually breaks, giving exit to a quantity of thick +grumous discharge. Sometimes several small collections under the skin +fuse, and an abscess is formed in which fluctuation can be detected. +Occasionally gases are evolved in the tissues, giving rise to emphysema. +It is common for portions of fascia, ligaments, or tendons to slough, +and this may often be recognised clinically by a peculiar crunching or +grating sensation transmitted to the fingers on making firm pressure on +the part. + +If it is not let out by incision, the pus, travelling along the lines of +least resistance, tends to point at several places on the surface, or to +open into joints or other cavities. + +_Prognosis._--The occurrence of _septicaemia_ is the most serious risk, +and it is in cases of diffuse suppurative cellulitis that this form of +blood-poisoning assumes its most aggravated forms. The toxins of the +streptococci are exceedingly virulent, and induce local death of tissue +so rapidly that the protective emigration of leucocytes fails to take +place. In some cases the passage of masses of free cocci in the +lymphatics, or of infective emboli in the blood vessels, leads to the +formation of _pyogenic abscesses_ in vital organs, such as the brain, +lungs, liver, kidneys, or other viscera. _Haemorrhage_ from erosion of +arterial or venous trunks may take place and endanger life. + +_Treatment._--The treatment of diffuse cellulitis depends to a large +extent on the situation and extent of the affected area, and on the +stage of the process. + +_In the limbs_, for example, where the application of a constricting +band is practicable, Bier's method of inducing passive hyperaemia yields +excellent results. If pus is formed, one or more small incisions are +made and a light moist dressing placed over the wounds to absorb the +discharge, but no drain is inserted. The whole of the inflamed area +should be covered with gauze wrung out of a 1 in 10 solution of ichthyol +in glycerine. The dressing is changed as often as necessary, and in the +intervals when the band is off, gentle active and passive movements +should be carried out to prevent the formation of adhesions. After +incisions have been made, we have found the _immersion_ of the limb, for +a few hours at a time, in a water-bath containing warm boracic lotion or +eusol a useful adjuvant to the passive hyperaemia. + +_Continuous irrigation_ of the part by a slow, steady stream of lotion, +at the body temperature, such as eusol, or Dakin's solution, or boracic +acid, or frequent washing with peroxide of hydrogen, has been found of +value. + +A suitably arranged splint adds to the comfort of the patient; and the +limb should be placed in the attitude which, in the event of stiffness +resulting, will least interfere with its usefulness. The elbow, for +example, should be flexed to a little less than a right angle; at the +wrist, the hand should be dorsiflexed and the fingers flexed slightly +towards the palm. + +Massage, passive movement, hot and cold douching, and other measures, +may be necessary to get rid of the chronic oedema, adhesions of tendons, +and stiffness of joints which sometimes remain. + +In situations where a constricting band cannot be applied, for example, +on the trunk or the neck, Klapp's suction bells may be used, small +incisions being made to admit of the escape of pus. + +If these measures fail or are impracticable, it may be necessary to make +one or more free incisions, and to insert drainage-tubes, portions of +rubber dam, or iodoform worsted. + +The general treatment of toxaemia must be carried out, and in cases due +to infection by streptococci, anti-streptococcic serum may be used. + +In a few cases, amputation well above the seat of disease, by removing +the source of toxin production, offers the only means of saving the +patient. + + +WHITLOW + +The clinical term whitlow is applied to an acute infection, usually +followed by suppuration, commonly met with in the fingers, less +frequently in the toes. The point of infection is often trivial--a +pin-prick, a puncture caused by a splinter of wood, a scratch, or even +an imperceptible lesion of the skin. + +Several varieties of whitlow are recognised, but while it is convenient +to describe them separately, it is to be clearly understood that +clinically they merge one into another, and it is not always possible to +determine in which connective-tissue plane a given infection has +originated. + +_Initial Stage._--Attention is usually first attracted to the condition +by a sensation of tightness in the finger and tenderness when the part +is squeezed or knocked against anything. In the course of a few hours +the part becomes red and swollen; there is continuous pain, which soon +assumes a throbbing character, particularly when the hand is dependent, +and may be so severe as to prevent sleep, and the patient may feel +generally out of sorts. + +If a constricting band is applied at this stage, the infection can +usually be checked and the occurrence of suppuration prevented. If this +fails, or if the condition is allowed to go untreated, the inflammatory +reaction increases and terminates in suppuration, giving rise to one or +other of the forms of whitlow to be described. + +_The Purulent Blister._--In the most superficial variety, pus forms +between the rete Malpighii and the stratum corneum of the skin, the +latter being raised as a blister in which fluctuation can be detected +(Fig. 9, a). This is commonly met with in the palm of the hand of +labouring men who have recently resumed work after a spell of idleness. +When the blister forms near the tip of the finger, the pus burrows under +the nail--which corresponds to the stratum corneum--raising it from its +bed. + +There is some local heat and discoloration, and considerable pain and +tenderness, but little or no constitutional disturbance. Superficial +lymphangitis may extend a short distance up the forearm. By clipping +away the raised epidermis, and if necessary the nail, the pus is allowed +to escape, and healing speedily takes place. + +_Whitlow at the Nail Fold._--This variety, which is met with among those +who handle septic material, occurs in the sulcus between the nail and +the skin, and is due to the introduction of infective matter at the root +of the nail (Fig. 9, b). A small focus of suppuration forms under the +nail, with swelling and redness of the nail fold, causing intense pain +and discomfort, interfering with sleep, and producing a constitutional +reaction out of all proportion to the local lesion. + +To allow the pus to escape, it is necessary, under local anaesthesia, to +cut away the nail fold as well as the portion of nail in the infected +area, or, it may be, to remove the nail entirely. If only a small +opening is made in the nail it is apt to be blocked by granulations. + +[Illustration: FIG. 9.--Diagram of various forms of Whitlow. + a = Purulent blister. + b = Suppuration at nail fold. + c = Subcutaneous whitlow. + d = Whitlow in sheath of flexor tendon (e). ] + +_Subcutaneous Whitlow._--In this variety the infection manifests itself +as a cellulitis of the pulp of the finger (Fig. 9, c), which sometimes +spreads towards the palm of the hand. The finger becomes red, swollen, +and tense; there is severe throbbing pain, which is usually worst at +night and prevents sleep, and the part is extremely tender on pressure. +When the palm is invaded there may be marked oedema of the back of the +hand, the dense integument of the palm preventing the swelling from +appearing on the front. The pus may be under such tension that +fluctuation cannot be detected. The patient is usually able to flex the +finger to a certain extent without increasing the pain--a point which +indicates that the tendon sheaths have not been invaded. The +suppurative process may, however, spread to the tendon sheaths, or even +to the bone. Sometimes the excessive tension and virulent toxins induce +actual gangrene of the distal part, or even of the whole finger. There +is considerable constitutional disturbance, the temperature often +reaching 101 o or 102 o F. + +The treatment consists in applying a constriction band and making an +incision over the centre of the most tender area, care being taken to +avoid opening the tendon sheath lest the infection be conveyed to it. +Moist dressings should be employed while the suppuration lasts. Carbolic +fomentations, however, are to be avoided on account of the risk of +inducing gangrene. + +_Whitlow of the Tendon Sheaths._--In this form the main incidence of the +infection is on the sheaths of the flexor tendons, but it is not always +possible to determine whether it started there or spread thither from +the subcutaneous cellular tissue (Fig. 9, d). In some cases both +connective tissue planes are involved. The affected finger becomes red, +painful, and swollen, the swelling spreading to the dorsum. The +involvement of the tendon sheath is usually indicated by the patient +being unable to flex the finger, and by the pain being increased when he +attempts to do so. On account of the anatomical arrangement of the +tendon sheaths, the process may spread into the forearm--directly in the +case of the thumb and little finger, and after invading the palm in the +case of the other fingers--and there give rise to a diffuse cellulitis +which may result in sloughing of fasciae and tendons. When the infection +spreads into the common flexor sheath under the transverse carpal +(anterior annular) ligament, it is not uncommon for the intercarpal and +wrist joints to become implicated. Impaired movement of tendons and +joints is, therefore, a common sequel to this variety of whitlow. + +The _treatment_ consists in inducing passive hyperaemia by Bier's method, +and, if this is done early, suppuration may be avoided. If pus forms, +small incisions are made, under local anaesthesia, to relieve the tension +in the sheath and to diminish the risk of the tendons sloughing. No form +of drain should be inserted. In the fingers the incisions should be made +in the middle line, and in the palm they should be made over the +metacarpal bones to avoid the digital vessels and nerves. If pus has +spread under the transverse carpal ligament, the incision must be made +above the wrist. Passive movements and massage must be commenced as +early as possible and be perseveringly employed to diminish the +formation of adhesions and resulting stiffness. + +_Subperiosteal Whitlow._--This form is usually an extension of the +subcutaneous or of the thecal variety, but in some cases the +inflammation begins in the periosteum--usually of the terminal phalanx. +It may lead to necrosis of a portion or even of the entire phalanx. This +is usually recognised by the persistence of suppuration long after the +acute symptoms have passed off, and by feeling bare bone with the probe. +In such cases one or more of the joints are usually implicated also, and +lateral mobility and grating may be elicited. Recovery does not take +place until the dead bone is removed, and the usefulness of the finger +is often seriously impaired by fibrous or bony ankylosis of the +interphalangeal joints. This may render amputation advisable when a +stiff finger is likely to interfere with the patient's occupation. + + +SUPPURATIVE CELLULITIS IN DIFFERENT SITUATIONS + +_Cellulitis of the forearm_ is usually a sequel to one of the deeper +varieties of whitlow. + +In the _region of the elbow-joint_, cellulitis is common around the +olecranon. It may originate as an inflammation of the olecranon bursa, +or may invade the bursa secondarily. In exceptional cases the +elbow-joint is also involved. + +Cellulitis of the _axilla_ may originate in suppuration in the lymph +glands, following an infected wound of the hand, or it may spread from a +septic wound on the chest wall or in the neck. In some cases it is +impossible to discover the primary seat of infection. A firm, brawny +swelling forms in the armpit and extends on to the chest wall. It is +attended with great pain, which is increased on moving the arm, and +there is marked constitutional disturbance. When suppuration occurs, its +spread is limited by the attachments of the axillary fascia, and the pus +tends to burrow on to the chest wall beneath the pectoral muscles, and +upwards towards the shoulder-joint, which may become infected. When the +pus forms in the axillary space, the treatment consists in making free +incisions, which should be placed on the thoracic side of the axilla to +avoid the axillary vessels and nerves. If the pus spreads on to the +chest wall, the abscess should be opened below the clavicle by Hilton's +method, and a counter opening may be made in the axilla. + +Cellulitis of the _sole of the foot_ may follow whitlow of the toes. + +In the _region of the ankle_ cellulitis is not common; but _around the +knee_ it frequently occurs in relation to the prepatellar bursa and to +the popliteal lymph glands, and may endanger the knee-joint. It is also +met with in the _groin_ following on inflammation and suppuration of the +inguinal glands, and cases are recorded in which the sloughing process +has implicated the femoral vessels and led to secondary haemorrhage. + +Cellulitis of the scalp, orbit, neck, pelvis, and perineum will be +considered with the diseases of these regions. + + +CHRONIC SUPPURATION + +While it is true that a chronic pyogenic abscess is sometimes met +with--for example, in the breast and in the marrow of long bones--in the +great majority of instances the formation of a chronic or cold abscess +is the result of the action of the tubercle bacillus. It is therefore +more convenient to study this form of suppuration with tuberculosis +(p. 139). + + +SINUS AND FISTULA + +#Sinus.#--A sinus is a track leading from a focus of suppuration to a +cutaneous or mucous surface. It usually represents the path by which the +discharge escapes from an abscess cavity that has been prevented from +closing completely, either from mechanical causes or from the persistent +formation of discharge which must find an exit. A sinus is lined by +granulation tissue, and when it is of long standing the opening may be +dragged below the level of the surrounding skin by contraction of the +scar tissue around it. As a sinus will persist until the obstacle to +closure of the original abscess is removed, it is necessary that this +should be sought for. It may be a foreign body, such as a piece of dead +bone, an infected ligature, or a bullet, acting mechanically or by +keeping up discharge, and if the body is removed the sinus usually +heals. The presence of a foreign body is often suggested by a mass of +redundant granulations at the mouth of the sinus. If a sinus passes +through a muscle, the repeated contractions tend to prevent healing +until the muscle is kept at rest by a splint, or put out of action by +division of its fibres. The sinuses associated with empyema are +prevented from healing by the rigidity of the chest wall, and will only +close after an operation which admits of the cavity being obliterated. +In any case it is necessary to disinfect the track, and, it may be, to +remove the unhealthy granulations lining it, by means of the sharp +spoon, or to excise it bodily. To encourage healing from the bottom the +cavity should be packed with bismuth or iodoform gauze. The healing of +long and tortuous sinuses is often hastened by the injection of Beck's +bismuth paste (p. 145). If disfigurement is likely to follow from +cicatricial contraction--for example, in a sinus over the lower jaw +associated with a carious tooth--the sinus should be excised and the raw +surfaces approximated with stitches. + +The _tuberculous sinus_ is described under Tuberculosis. + +A #fistula# is an abnormal canal passing from a mucous surface to the +skin or to another mucous surface. Fistulae resulting from suppuration +usually occur near the natural openings of mucous canals--for example, +on the cheek, as a salivary fistula; beside the inner angle of the eye, +as a lacrymal fistula; near the ear, as a mastoid fistula; or close to +the anus, as a fistula-in-ano. Intestinal fistulae are sometimes met with +in the abdominal wall after strangulated hernia, operations for +appendicitis, tuberculous peritonitis, and other conditions. In the +perineum, fistulae frequently complicate stricture of the urethra. + +Fistulae also occur between the bladder and vagina (_vesico-vaginal +fistula_), or between the bladder and the rectum (_recto-vesical +fistula_). + +The _treatment_ of these various forms of fistula will be described in +the sections dealing with the regions in which they occur. + +_Congenital fistulae_, such as occur in the neck from imperfect closure +of branchial clefts, or in the abdomen from unobliterated foetal ducts +such as the urachus or Meckel's diverticulum, will be described in their +proper places. + + +CONSTITUTIONAL MANIFESTATIONS OF PYOGENIC INFECTION + +We have here to consider under the terms Sapraemia, Septicaemia, and +Pyaemia certain general effects of pyogenic infection, which, although +their clinical manifestations may vary, are all associated with the +action of the same forms of bacteria. They may occur separately or in +combination, or one may follow on and merge into another. + +#Sapraemia#, or septic intoxication, is the name applied to a form of +poisoning resulting from the absorption into the blood of the toxic +products of pyogenic bacteria. These products, which are of the nature +of alkaloids, act immediately on their entrance into the circulation, +and produce effects in direct proportion to the amount absorbed. As the +toxins are gradually eliminated from the body the symptoms abate, and if +no more are introduced they disappear. Sapraemia in these respects, +therefore, is comparable to poisoning by any other form of alkaloid, +such as strychnin or morphin. + +_Clinical Features._--The symptoms of sapraemia seldom manifest +themselves within twenty-four hours of an operation or injury, because +it takes some time for the bacteria to produce a sufficient dose of +their poisons. The onset of the condition is marked by a feeling of +chilliness, sometimes amounting to a rigor, and a rise of temperature to +102 o, 103 o, or 104 o F., with morning remissions (Fig. 10). The heart's +action is markedly depressed, and the pulse is soft and compressible. +The appetite is lost, the tongue dry and covered with a thin +brownish-red fur, so that it has the appearance of "dried beef." The +urine is scanty and loaded with urates. In severe cases diarrhoea and +vomiting of dark coffee-ground material are often prominent features. +Death is usually impending when the skin becomes cold and clammy, the +mucous membranes livid, the pulse feeble and fluttering, the discharges +involuntary, and when a low form of muttering delirium is present. + +[Illustration: FIG. 10.--Charts of Acute sapraemia from (a) case of +crushed foot, and (b) case of incomplete abortion.] + +A local form of septic infection is always present--it may be an +abscess, an infected compound fracture, or an infection of the cavity of +the uterus, for example, from a retained portion of placenta. + +_Treatment._--The first indication is the immediate and complete removal +of the infected material. The wound must be freely opened, all +blood-clot, discharge, or necrosed tissue removed, and the area +disinfected by washing with sterilised salt solution, peroxide of +hydrogen, or eusol. Stronger lotions are to be avoided as being likely +to depress the tissues, and so interfere with protective phagocytosis. +On account of its power of neutralising toxins, iodoform is useful in +these cases, and is best employed by packing the wound with iodoform +gauze, and treating it by the open method, if this is possible. + +The general treatment is carried out on the same lines as for other +infective conditions. + +#Chronic sapraemia or Hectic Fever.#--Hectic fever differs from acute +sapraemia merely in degree. It usually occurs in connection with +tuberculous conditions, such as bone or joint disease, psoas abscess, or +empyema, which have opened externally, and have thereby become infected +with pyogenic organisms. It is gradual in its development, and is of a +mild type throughout. + +[Illustration: FIG. 11.--Chart of Hectic Fever.] + +The pulse is small, feeble, and compressible, and the temperature rises +in the afternoon or evening to 102 o or 103 o F. (Fig. 11), the cheeks +becoming characteristically flushed. In the early morning the +temperature falls to normal or below it, and the patient breaks into a +profuse perspiration, which leaves him pale, weak, and exhausted. He +becomes rapidly and markedly emaciated, even although in some cases the +appetite remains good and is even voracious. + +The poisons circulating in the blood produce _waxy degeneration_ in +certain viscera, notably the liver, spleen, kidneys, and intestines. The +process begins in the arterial walls, and spreads thence to the +connective-tissue structures, causing marked enlargement of the affected +organs. Albuminuria, ascites, oedema of the lower limbs, clubbing of the +fingers, and diarrhoea are among the most prominent symptoms of this +condition. + +The _prognosis_ in hectic fever depends on the completeness with which +the further absorption of toxins can be prevented. In many cases this +can only be effected by an operation which provides for free drainage, +and, if possible, the removal of infected tissues. The resulting wound +is best treated by the open method. Even advanced waxy degeneration does +not contra-indicate this line of treatment, as the diseased organs +usually recover if the focus from which absorption of toxic material is +taking place is completely eradicated. + +[Illustration: FIG. 12.--Chart of case of Septicaemia followed by +Pyaemia.] + +#Septicaemia.#--This form of blood-poisoning is the result of the action +of pyogenic bacteria, which not only produce their toxins at the primary +seat of infection, but themselves enter the blood-stream and are carried +to other parts, where they settle and produce further effects. + +_Clinical Features._--There may be an incubation period of some hours +between the infection and the first manifestation of acute septicaemia. +In such conditions as acute osteomyelitis or acute peritonitis, we see +the most typical clinical pictures of this condition. The onset is +marked by a chill, or a rigor, which may be repeated, while the +temperature rises to 103 o or 104 o F., although in very severe cases the +temperature may remain subnormal throughout, the virulence of the toxins +preventing reaction. It is in the general appearance of the patient and +in the condition of the pulse that we have our best guides as to the +severity of the condition. If the pulse remains firm, full, and regular, +and does not exceed 110 or even 120, while the temperature is moderately +raised, the outlook is hopeful; but when the pulse becomes small and +compressible, and reaches 130 or more, especially if at the same time +the temperature is low, a grave prognosis is indicated. The tongue is +often dry and coated with a black crust down the centre, while the sides +are red. It is a good omen when the tongue becomes moist again. Thirst +is most distressing, especially in septicaemia of intestinal origin. +Persistent vomiting of dark-brown material is often present, and +diarrhoea with blood-stained stools is not uncommon. The urine is small +in amount, and contains a large proportion of urates. As the poisons +accumulate, the respiration becomes shallow and laboured, the face of a +dull ashy grey, the nose pinched, and the skin cold and clammy. +Capillary haemorrhages sometimes take place in the skin or mucous +membranes; and in a certain proportion of cases cutaneous eruptions +simulating those of scarlet fever or measles appear, and are apt to lead +to errors in diagnosis. In other cases there is slight jaundice. The +mental state is often one of complete apathy, the patient failing to +realise the gravity of his condition; sometimes there is delirium. + +The _prognosis_ is always grave, and depends on the possibility of +completely eradicating the focus of infection, and on the reserve force +the patient has to carry him over the period during which he is +eliminating the poison already circulating in his blood. + +The _treatment_ is carried out on the same lines as in sapraemia, but it +is less likely to be successful owing to the organisms having entered +the circulation. When possible, the primary focus of infection should be +dealt with. + +#Pyaemia# is a form of blood-poisoning characterised by the development +of secondary foci of suppuration in different parts of the body. Toxins +are thus introduced into the blood, not only at the primary seat of +infection, but also from each of these metastatic collections. Like +septicaemia, this condition is due to pyogenic bacteria, the +_streptococcus pyogenes_ being the commonest organism found. The primary +infection is usually in a wound--for example, a compound fracture--but +cases occur in which the point of entrance of the bacteria is not +discoverable. The dissemination of the organisms takes place through the +medium of infected emboli which form in a thrombosed vein in the +vicinity of the original lesion, and, breaking loose, are carried +thence in the blood-stream. These emboli lodge in the minute vessels of +the lungs, spleen, liver, kidneys, pleura, brain, synovial membranes, or +cellular tissue, and the bacteria they contain give rise to secondary +foci of suppuration. Secondary abscesses are thus formed in those parts, +and these in turn may be the starting-point of new emboli which give +rise to fresh areas of pus formation. The organs above named are the +commonest situations of pyaemic abscesses, but these may also occur in +the bone marrow, the substance of muscles, the heart and pericardium, +lymph glands, subcutaneous tissue, or, in fact, in any tissue of the +body. Organisms circulating in the blood are prone to lodge on the +valves of the heart and give rise to endocarditis. + +[Illustration: FIG. 13.--Chart of Pyaemia following on Acute +Osteomyelitis.] + +_Clinical Features._--Before antiseptic surgery was practised, pyaemia +was a common complication of wounds. In the present day it is not only +infinitely less common, but appears also to be of a less severe type. +Its rarity and its mildness may be related as cause and effect, because +it was formerly found that pyaemia contracted from a pyaemic patient was +more virulent than that from other sources. + +In contrast with sapraemia and septicaemia, pyaemia is late of developing, +and it seldom begins within a week of the primary infection. The first +sign is a feeling of chilliness, or a violent rigor lasting for perhaps +half an hour, during which time the temperature rises to 103 o, 104 o, or +105 o F. In the course of an hour it begins to fall again, and the +patient breaks into a profuse sweat. The temperature may fall several +degrees, but seldom reaches the normal. In a few days there is a second +rigor with rise of temperature, and another remission, and such attacks +may be repeated at diminishing intervals during the course of the +illness (Figs. 12 and 13). The pulse is soft, and tends to remain +abnormally rapid even when the temperature falls nearly to normal. + +The face is flushed, and wears a drawn, anxious expression, and the eyes +are bright. A characteristic sweetish odour, which has been compared to +that of new-mown hay, can be detected in the breath and may pervade the +patient. The appetite is lost; there may be sickness and vomiting and +profuse diarrhoea; and the patient emaciates rapidly. The skin is +continuously hot, and has often a peculiar pungent feel. Patches of +erythema sometimes appear scattered over the body. The skin may assume a +dull sallow or earthy hue, or a bright yellow icteric tint may appear. +The conjunctivae also may be yellow. In the latter stages of the disease +the pulse becomes small and fluttering; the tongue becomes dry and +brown; sordes collect on the teeth; and a low muttering form of delirium +supervenes. + +Secondary infection of the parotid gland frequently occurs, and gives +rise to a suppurative parotitis. This condition is associated with +severe pain, gradually extending from behind the angle of the jaw on to +the face. There is also swelling over the gland, and eventually +suppuration and sloughing of the gland tissue and overlying skin. + +Secondary abscesses in the lymph glands, subcutaneous tissue, or joints +are often so insidious and painless in their development that they are +only discovered accidentally. When the abscess is evacuated, healing +often takes place with remarkable rapidity, and with little impairment +of function. + +The general symptoms may be simulated by an attack of malaria. + +_Prognosis._--The prognosis in acute pyaemia is much less hopeless than +it once was, a considerable proportion of the patients recovering. In +acute cases the disease proves fatal in ten days or a fortnight, death +being due to toxaemia. Chronic cases often run a long course, lasting for +weeks or even months, and prove fatal from exhaustion and waxy disease +following on prolonged suppuration. + +_Treatment._--In such conditions as compound fractures and severe +lacerated wounds, much can be done to avert the conditions which lead to +pyaemia, by applying a Bier's constricting bandage as soon as there is +evidence of infection having taken place, or even if there is reason to +suspect that the wound is not aseptic. + +If sepsis is already established, and evidence of general infection is +present, the wound should be opened up sufficiently to admit of thorough +disinfection and drainage, and the constricting bandage applied to aid +the defensive processes going on in the tissues. If these measures fail, +amputation of the limb may be the only means of preventing further +dissemination of infective material from the primary source of +infection. + +Attempts have been made to interrupt the channel along which the +infective emboli spread, by ligating or resecting the main vein of the +affected part, but this is seldom feasible except in the case of the +internal jugular vein for infection of the transverse sinus. + +Secondary abscesses must be aspirated or opened and drained whenever +possible. + +The general treatment is conducted on the same lines as on other forms +of pyogenic infection. + + + + +CHAPTER V + +ULCERATION AND ULCERS + + +Definitions--Clinical examination of an ulcer--The healing + sore.--Classification of ulcers--A. According to cause: + _Traumatism_, _Imperfect circulation_, _Imperfect nerve-supply_, + _Constitutional causes_--B. According to condition: _Healing_, + _Stationary_, _Spreading_.--Treatment. + +The process of _ulceration_ may be defined as the molecular or cellular +death of tissue taking place on a free surface. It is essentially of the +same nature as the process of suppuration, only that the purulent +discharge, instead of collecting in a closed cavity and forming an +abscess, at once escapes on the surface. + +An _ulcer_ is an open wound or sore in which there are present certain +conditions tending to prevent it undergoing the natural process of +repair. Of these, one of the most important is the presence of +pathogenic bacteria, which by their action not only prevent healing, but +so irritate and destroy the tissues as to lead to an actual increase in +the size of the sore. Interference with the nutrition of a part by oedema +or chronic venous congestion may impede healing; as may also induration +of the surrounding area, by preventing the contraction which is such an +important factor in repair. Defective innervation, such as occurs in +injuries and diseases of the spinal cord, also plays an important part +in delaying repair. In certain constitutional conditions, too--for +example, Bright's disease, diabetes, or syphilis--the vitiated state of +the tissues is an impediment to repair. Mechanical causes, such as +unsuitable dressings or ill-fitting appliances, may also act in the same +direction. + +#Clinical Examination of an Ulcer.#--In examining any ulcer, we +observe--(1) Its _base_ or _floor_, noting the presence or absence of +granulations, their disposition, size, colour, vascularity, and whether +they are depressed or elevated in relation to the surrounding parts. (2) +The _discharge_ as to quantity, consistence, colour, composition, and +odour. (3) The _edges_, noting particularly whether or not the marginal +epithelium is attempting to grow over the surface; also their shape, +regularity, thickness, and whether undermined or overlapping, everted or +depressed. (4) The _surrounding tissues_, as to whether they are +congested, oedematous, inflamed, indurated, or otherwise. (5) Whether or +not there is _pain_ or tenderness in the raw surface or its +surroundings. (6) The _part of the body_ on which it occurs, because +certain ulcers have special seats of election--for example, the varicose +ulcer in the lower third of the leg, the perforating ulcer on the sole +of the foot, and so on. + +#The Healing Sore.#--If a portion of skin be excised aseptically, and no +attempt made to close the wound, the raw surface left is soon covered +over with a layer of coagulated blood and lymph. In the course of a few +days this is replaced by the growth of _granulations_, which are of +uniform size, of a pinkish-red colour, and moist with a slight serous +exudate containing a few dead leucocytes. They grow until they reach the +level of the surrounding skin, and so fill the gap with a fine velvety +mass of granulation tissue. At the edges, the young epithelium may be +seen spreading in over the granulations as a fine bluish-white pellicle, +which gradually covers the sore, becoming paler in colour as it +thickens, and eventually forming the smooth, non-vascular covering of +the cicatrix. There is no pain, and the surrounding parts are healthy. + +This may be used as a type with which to compare the ulcers seen at the +bedside, so that we may determine how far, and in what particulars, +these differ from the type; and that we may in addition recognise the +conditions that have to be counteracted before the characters of the +typical healing sore are assumed. + +For purposes of contrast we may indicate the characters of an open sore +in which bacterial infection with pathogenic bacteria has taken place. +The layer of coagulated blood and lymph becomes liquefied and is thrown +off, and instead of granulations being formed, the tissues exposed on +the floor of the ulcer are destroyed by the bacterial toxins, with the +formation of minute sloughs and a quantity of pus. + +The discharge is profuse, thin, acrid, and offensive, and consists of +pus, broken-down blood-clot, and sloughs. The edges are inflamed, +irregular, and ragged, showing no sign of growing epithelium--on the +contrary, the sore may be actually increasing in area by the +breaking-down of the tissues at its margins. The surrounding parts are +hot, red, swollen, and oedematous; and there is pain and tenderness both +in the sore itself and in the parts around. + +#Classification of Ulcers.#--The nomenclature of ulcers is much involved +and gives rise to great confusion, chiefly for the reason that no one +basis of classification has been adopted. Thus some ulcers are named +according to the causes at work in producing or maintaining them--for +example, the traumatic, the septic, and the varicose ulcer; some from +the constitutional element present, as the gouty and the diabetic ulcer; +and others according to the condition in which they happen to be when +seen by the surgeon, such as the weak, the inflamed, and the callous +ulcer. + +So long as we retain these names it will be impossible to find a single +basis for classification; and yet many of the terms are so descriptive +and so generally understood that it is undesirable to abolish them. We +must therefore remain content with a clinical arrangement of ulcers,--it +cannot be called a classification,--considering any given ulcer from two +points of view: first its _cause_, and second its _present condition_. +This method of studying ulcers has the practical advantage that it +furnishes us with the main indications for treatment as well as for +diagnosis: the cause must be removed, and the condition so modified as +to convert the ulcer into an aseptic healing sore. + +A. #Arrangement of Ulcers according to their Cause.#--Although any given +ulcer may be due to a combination of causes, it is convenient to +describe the following groups: + +_Ulcers due to Traumatism._--Traumatism in the form of a _crush_ or +_bruise_ is a frequent cause of ulcer formation, acting either by +directly destroying the skin, or by so diminishing its vitality that it +is rendered a suitable soil for bacteria. If these gain access, in the +course of a few days the damaged area of skin becomes of a greyish +colour, blebs form on it, and it undergoes necrosis, leaving an +unhealthy raw surface when the slough separates. + +_Heat_ and _prolonged exposure to the Rontgen rays_ or _to radium +emanations_ act in a similar way. + +The _pressure_ of improperly padded splints or other appliances may so +far interfere with the circulation of the part pressed upon, that the +skin sloughs, leaving an open sore. This is most liable to occur in +patients who suffer from some nerve lesion--such as anterior +poliomyelitis, or injury of the spinal cord or nerve-trunks. +Splint-pressure sores are usually situated over bony prominences, such +as the malleoli, the condyles of the femur or humerus, the head of the +fibula, the dorsum of the foot, or the base of the fifth metatarsal +bone. On removing the splint, the skin of the part pressed upon is found +to be of a red or pink colour, with a pale grey patch in the centre, +which eventually sloughs and leaves an ulcer. Certain forms of +_bed-sore_ are also due to prolonged pressure. + +Pressure sores are also known to have been produced artificially by +malingerers and hysterical subjects. + +[Illustration: FIG. 14.--Leg Ulcers associated with Varicose Veins and +Pigmentation of the Skin.] + +_Ulcers due to Imperfect Circulation._--Imperfect circulation is an +important causative factor in ulceration, especially when it is the +_venous return_ that is defective. This is best illustrated in the +so-called _leg ulcer_, which occurs most frequently on the front and +medial aspect of the lower third of the leg. At this point the +anastomosis between the superficial and deep veins of the leg is less +free than elsewhere, so that the extra stress thrown upon the surface +veins interferes with the nutrition of the skin (Hilton). The importance +of imperfect venous return in the causation of such ulcers is evidenced +by the fact that as soon as the condition of the circulation is improved +by confining the patient to bed and elevating the limb, the ulcer begins +to heal, even although all methods of local treatment have hitherto +proved ineffectual. In a considerable number of cases, but by no means +in all, this form of ulcer is associated with the presence of varicose +veins, and in such cases it is spoken of as the _varicose ulcer_ (Fig. 14). +The presence of varicose veins is frequently associated with a +diffuse brownish or bluish pigmentation of the skin of the lower third +of the leg, or with an obstinate form of dermatitis (_varicose eczema_), +and the scratching or rubbing of the part is liable to cause a breach of +the surface and permit of infection which leads to ulceration. Varicose +ulcers may also originate from the bursting of a small peri-phlebitic +abscess. + +Varicose veins in immediate relation to the base of a large chronic +ulcer usually become thrombosed, and in time are reduced to fibrous +cords, and therefore in such cases haemorrhage is not a common +complication. In smaller and more superficial ulcers, however, the +destructive process is liable to implicate the wall of the vessel before +the occurrence of thrombosis, and to lead to profuse and it may be +dangerous bleeding. + +These ulcers are at first small and superficial, but from want of care, +from continued standing or walking, or from injudicious treatment, they +gradually become larger and deeper. They are not infrequently multiple, +and this, together with their depth, may lead to their being mistaken +for ulcers due to syphilis. The base of the ulcer is covered with +imperfectly formed, soft, oedematous granulations, which give off a thin +sero-purulent discharge. The edges are slightly inflamed, and show no +evidence of healing. The parts around are usually pigmented and slightly +oedematous, and as a rule there is little pain. This variety of ulcer is +particularly prone to pass into the condition known as callous. + +In _anaemic_ patients, especially young girls, ulcers are occasionally +met with which have many of the clinical characters of those associated +with imperfect venous return. They are slow to heal, and tend to pass +into the condition known as weak. + +_Ulcers due to Interference with Nerve-Supply._--Any interference with +the nerve-supply of the superficial tissues predisposes to ulceration. +For example, _trophic_ ulcers are liable to occur in injuries or +diseases of the spinal cord, in cerebral paralysis, in limbs weakened by +poliomyelitis, in ascending or peripheral neuritis, or after injuries of +nerve-trunks. + +The _acute bed-sore_ is a rapidly progressing form of ulceration, often +amounting to gangrene, of portions of skin exposed to pressure when +their trophic nerve-supply has been interfered with. + +[Illustration: FIG. 15.--Perforating Ulcers of Sole of Foot. + +(From Photograph lent by Sir Montagu Cotterill.)] + +The _perforating ulcer of the foot_ is a peculiar type of sore which +occurs in association with the different forms of peripheral neuritis, +and with various lesions of the brain and spinal cord, such as general +paralysis, locomotor ataxia, or syringo-myelia (Fig. 15). It also occurs +in patients suffering from glycosuria, and is usually associated with +arterio-sclerosis--local or general. Perforating ulcer is met with most +frequently under the head of the metatarsal bone of the great toe. A +callosity forms and suppuration occurs under it, the pus escaping +through a small hole in the centre. The process slowly and gradually +spreads deeper and deeper, till eventually the bone or joint is reached, +and becomes implicated in the destructive process--hence the term +"perforating ulcer." The flexor tendons are sometimes destroyed, the toe +being dorsiflexed by the unopposed extensors. The depth of the track +being so disproportionate to its superficial area, the condition closely +simulates a tuberculous sinus, for which it is liable to be mistaken. +The raw surface is absolutely insensitive, so that the probe can be +freely employed without the patient even being aware of it or suffering +the least discomfort--a significant fact in diagnosis. The cavity is +filled with effete and decomposing epidermis, which has a most offensive +odour. The chronic and intractable character of the ulcer is due to +interference with the trophic nerve-supply of the parts, and to the fact +that the epithelium of the skin grows in and lines the track leading +down to the deepest part of the ulcer and so prevents closure. While +they are commonest on the sole of the foot and other parts subjected to +pressure, perforating ulcers are met with on the sides and dorsum of the +foot and toes, on the hands, and on other parts where no pressure has +been exerted. + +The _tuberculous ulcer_, so often seen in the neck, in the vicinity of +joints, or over the ribs and sternum, usually results from the bursting +through the skin of a tuberculous abscess. The base is soft, pale, and +covered with feeble granulations and grey shreddy sloughs. The edges are +of a dull blue or purple colour, and gradually thin out towards their +free margins, and in addition are characteristically undermined, so that +a probe can be passed for some distance between the floor of the ulcer +and the thinned-out edges. Thin, devitalised tags of skin often stretch +from side to side of the ulcer. The outline is irregular; small +perforations often occur through the skin, and a thin, watery discharge, +containing grey shreds of tuberculous debris, escapes. + +_Bazin's Disease._--This term is applied to an affection of the skin and +subcutaneous tissue which bears certain resemblances to tuberculosis. It +is met with almost exclusively between the knee and the ankle, and it +usually affects both legs. It is commonest in girls of delicate +constitution, in whose family history there is evidence of a tuberculous +taint. The patient often presents other lesions of a tuberculous +character, notably enlarged cervical glands, and phlyctenular +ophthalmia. The tubercle bacillus has rarely been found, but we have +always observed characteristic epithelioid cells and giant cells in +sections made from the edge or floor of the ulcer. + +[Illustration: FIG. 16.--Bazin's Disease in a girl aet. 16.] + +The condition begins by the formation in the skin and subcutaneous +tissue of dusky or livid nodules of induration, which soften and +ulcerate, forming small open sores with ragged and undermined edges, not +unlike those resulting from the breaking down of superficial syphilitic +gummata (Fig. 16). Fresh crops of nodules appear in the neighbourhood of +the ulcers, and in turn break down. While in the nodular stage the +affection is sometimes painful, but with the formation of the ulcer the +pain subsides. + +The disease runs a chronic course, and may slowly extend over a wide +area in spite of the usual methods of treatment. After lasting for some +months, or even years, however, it may eventually undergo spontaneous +cure. The most satisfactory treatment is to excise the affected tissues +and fill the gap with skin-grafts. + +[Illustration: FIG. 17.--Syphilitic Ulcers in region of Knee, showing +punched-out appearance and raised indurated edges.] + +The _syphilitic ulcer_ is usually formed by the breaking down of a +cutaneous or subcutaneous gumma in the tertiary stage of syphilis. When +the gummatous tissue is first exposed by the destruction of the skin or +mucous membrane covering it, it appears as a tough greyish slough, +compared to "wash leather," which slowly separates and leaves a more or +less circular, deep, punched-out gap which shows a few feeble unhealthy +granulations and small sloughs on its floor. The edges are raised and +indurated; and the discharge is thick, glairy, and peculiarly offensive. +The parts around the ulcer are congested and of a dark brown colour. +There are usually several such ulcers together, and as they tend to heal +at one part while they spread at another, the affected area assumes a +sinuous or serpiginous outline. Syphilitic ulcers may be met with in any +part of the body, but are most frequent in the upper part of the leg +(Fig. 17), especially around the knee-joint in women, and over the ribs +and sternum. On healing, they usually leave a depressed and adherent +cicatrix. + +The _scorbutic ulcer_ occurs in patients suffering from scurvy, and is +characterised by its prominent granulations, which show a marked +tendency to bleed, with the formation of clots, which dry and form a +spongy crust on the surface. + +In _gouty_ patients small ulcers which are exceedingly irritable and +painful are liable to occur. + +_Ulcers associated with Malignant Disease._--Cancer and sarcoma when +situated in the subcutaneous tissue may destroy the overlying skin so +that the substance of the tumour is exposed. The fungating masses thus +produced are sometimes spoken of as malignant ulcers, but as they are +essentially different in their nature from all other forms of ulcers, +and call for totally different treatment, it is best to consider them +along with the tumours with which they are associated. Rodent ulcer, +which is one form of cancer of the skin, will be discussed with new +growths of the skin. + +B. #Arrangement of Ulcers according to their Condition.#--Having arrived +at an opinion as to the cause of a given ulcer, and placed it in one or +other of the preceding groups, the next question to ask is, In what +condition do I find this ulcer at the present moment? + +Any ulcer is in one of three states--healing, stationary, or spreading; +although it is not uncommon to find healing going on at one part while +the destructive process is extending at another. + +_The Healing Condition._--The process of healing in an ulcer has already +been studied, and we have learned that it takes place by the formation +of granulation tissue, which becomes converted into connective tissue, +and is covered over by epithelium growing in from the edges. + +Those ulcers which are _stationary_--that is, neither healing nor +spreading--may be in one of several conditions. + +_The Weak Condition._--Any ulcer may get into a weak state from +receiving a blood supply which is defective either in quantity or in +quality. The granulations are small and smooth, and of a pale yellow or +grey colour, the discharge is small in amount, and consists of thin +serum and a few pus cells, and as this dries on the edges it forms scabs +which interfere with the growth of epithelium. + +Should the part become oedematous, either from general causes, such as +heart or kidney disease, or from local causes, such as varicose veins, +the granulations share in the oedema, and there is an abundant serous +discharge. + +The excessive use of moist dressings leads to a third variety of weak +ulcer--namely, one in which the granulations become large, soft, pale, +and flabby, projecting beyond the level of the skin and overlapping the +edges, which become pale and sodden. The term "proud flesh" is popularly +applied to such redundant granulations. + +[Illustration: FIG. 18.--Callous Ulcer, showing thickened edges and +indurated swelling of surrounding parts.] + +_The Callous Condition._--This condition is usually met with in ulcers +on the lower third of the leg, and is often associated with the presence +of varicose veins. It is chiefly met with in hospital practice. The want +of healing is mainly due to impeded venous return and to oedema and +induration of the surrounding skin and cellular tissues (Fig. 18). The +induration results from coagulation and partial organisation of the +inflammatory effusion, and prevents the necessary contraction of the +sore. The base of a callous ulcer lies at some distance below the level +of the swollen, thickened, and white edges, and presents a glazed +appearance, such granulations as are present being unhealthy and +irregular. The discharge is usually watery, and cakes in the dressing. +When from neglect and want of cleanliness the ulcer becomes inflamed, +there is considerable pain, and the discharge is purulent and often +offensive. + +The prolonged hyperaemia of the tissues in relation to a callous ulcer of +the leg often leads to changes in the underlying bones. The periosteum +is abnormally thick and vascular, the superficial layers of the bone +become injected and porous, and the bones, as a whole, are thickened. In +the macerated bone "the surface is covered with irregular, +stalactite-like processes or foliaceous masses, which, to a certain +extent, follow the line of attachment of the interosseous membrane and +of the intermuscular septa" (Cathcart) (Fig. 19). When the whole +thickness of the soft tissues is destroyed by the ulcerative process, +the area of bone that comes to form the base of the ulcer projects as a +flat, porous node, which in its turn may be eroded. These changes as +seen in the macerated specimen are often mistaken for disease +originating in the bone. + +[Illustration: FIG. 19.--Tibia and Fibula, showing changes due to +chronic ulcer of leg.] + +The _irritable condition_ is met with in ulcers which occur, as a rule, +just above the external malleolus in women of neurotic temperament. They +are small in size and have prominent granulations, and by the aid of a +probe points of excessive tenderness may be discovered. These, Hilton +believed, correspond to exposed nerve filaments. + +_Ulcers which are spreading_ may be met with in one of several +conditions. + +_The Inflamed Condition._--Any ulcer may become acutely inflamed from +the access of fresh organisms, aided by mechanical irritation from +trauma, ill-fitting splints or bandages, or want of rest, or from +chemical irritants, such as strong antiseptics. The best clinical +example of an inflamed ulcer is the venereal soft sore. The base of the +ulcer becomes red and angry-looking, the granulations disappear, and a +copious discharge of thin yellow pus, mixed with blood, escapes. Sloughs +of granulation tissue or of connective tissue may form. The edges become +red, ragged, and everted, and the ulcer increases in size by spreading +into the inflamed and oedematous surrounding tissues. Such ulcers are +frequently multiple. Pain is a constant symptom, and is often severe, +and there is usually some constitutional disturbance. + +The _phagedaenic condition_ is the result of an ulcer being infected with +specially virulent bacteria. It occurs in syphilitic ulcers, and rapidly +leads to a widespread destruction of tissue. It is also met with in the +throat in some cases of scarlet fever, and may give rise to fatal +haemorrhage by ulcerating into large blood vessels. All the local and +constitutional signs of a severe septic infection are present. + +#Treatment of Ulcers.#--An ulcer is not only an immediate cause of +suffering to the patient, crippling and incapacitating him for his work, +but is a distinct and constant menace to his health: the prolonged +discharge reduces his strength; the open sore is a possible source of +infection by the organisms of suppuration, erysipelas, or other specific +diseases; phlebitis, with formation of septic emboli, leading to pyaemia, +is liable to occur; and in old persons it is not uncommon for ulcers of +long standing to become the seat of cancer. In addition, the offensive +odour of many ulcers renders the patient a source of annoyance and +discomfort to others. The primary object of treatment in any ulcer is to +bring it into the condition of a healing sore. When this has been +effected, nature will do the rest, provided extraneous sources of +irritation are excluded. + +Steps must be taken to facilitate the venous return from the ulcerated +part, and to ensure that a sufficient supply of fresh, healthy blood +reaches it. The septic element must be eliminated by disinfecting the +ulcer and its surroundings, and any other sources of irritation must be +removed. + +If the patient's health is below par, good nourishing food, tonics, and +general hygienic treatment are indicated. + +_Management of a Healing Sore._--Perhaps the best dressing for a healing +sore is a layer of Lister's perforated oiled-silk protective, which is +made to cover the raw surface and the skin for about a quarter of an +inch beyond the margins of the sore. Over this three or four thicknesses +of sterilised gauze, wrung out of eusol, creolin, or sterilised water, +are applied, and covered by a pad of absorbent wool. As far as possible +the part should be kept at rest, and the position should be adjusted so +as to favour the circulation in the affected area. + +The dressing may be renewed at intervals, and care must be taken to +avoid any rough handling of the sore. Any discharge that lies on the +surface should be removed by a gentle stream of lotion rather than by +wiping. The area round the sore should be cleansed before the fresh +dressing is applied. + +In some cases, healing goes on more rapidly under a dressing of weak +boracic ointment (one-quarter the strength of the pharmacopoeial +preparation). The growth of epithelium may be stimulated by a 6 to 8 per +cent. ointment of scarlet-red. + +Dusting powders and poultice dressings are best avoided in the treatment +of healing sores. + +In extensive ulcers resulting from recent burns, if the granulations are +healthy and aseptic, skin-grafts may safely be placed on them directly. +If, however, their asepticity cannot be relied upon, it is necessary to +scrape away the superficial layer of the granulations, the young fibrous +tissue underneath being conserved, as it is sufficiently vascular to +nourish the grafts placed on it. + +#Treatment of Special Varieties of Ulcers.#--Before beginning to treat a +given ulcer, two questions have to be answered--first, What are the +causative conditions present? and second, In what condition do I find +the ulcer?--in other words, In what particulars does it differ from a +healthy healing sore? + +If the cause is a local one, it must be removed; if a constitutional +one, means must be taken to counteract it. This done, the condition of +the ulcer must be so modified as to bring it into the state of a healing +sore, after which it will be managed on the lines already laid down. + +#Treatment in relation to the Cause of the Ulcer.#--_Traumatic +Group._--The _prophylaxis_ of these ulcers consists in excluding +bacteria, by cleansing crushed or bruised parts, and applying sterilised +dressings and properly adjusted splints. If there is reason to fear that +the disinfection has not been complete, a Bier's constricting bandage +should be applied for some hours each day. These measures will often +prevent a grossly injured portion of skin dying, and will ensure +asepticity should it do so. In the event of the skin giving way, the +same form of dressing should be continued till the slough has separated +and a healthy granulating surface is formed. The protective dressing +appropriate to a healing sore is then substituted. _Pressure sores_ are +treated on the same lines. + +The treatment of ulcers caused by _burns and scalds_ will be described +later. + +In _ulcers of the leg due to interference with the venous return_, the +primary indication is to elevate the limb in order to facilitate the +flow of the blood in the veins, and so admit of fresh blood reaching the +part. The limb may be placed on pillows, or the foot of the bed raised +on blocks, so that the ulcer lies on a higher level than the heart. +Should varicose veins be present, the question of operative treatment +must be considered. + +When an _imperfect nerve supply_ is the main factor underlying ulcer +formation, prophylaxis is the chief consideration. In patients suffering +from spinal injuries or diseases, cerebral paralysis, or affections of +the peripheral nerves, all sources of irritation, such as ill-fitting +splints, tight bandages, moist applications, and hot bottles, should be +avoided. Any part liable to pressure, from the position of the patient +or otherwise, must be carefully protected by pads of wool, air-cushions, +or water-bags, and must be kept absolutely dry. The skin should be +hardened by daily applications of methylated spirit. + +Should an ulcer form in spite of these precautions, the mildest +antiseptics must be employed for bathing and dressing it, and as far as +possible all dressings should be dry. + +The _perforating ulcer_ of the foot calls for special treatment. To +avoid pressure on the sole of the foot, the patient must be confined to +bed. As the main local obstacle to healing is the down-growth of +epithelium along the sides of the ulcer, this must be removed by the +knife or sharp spoon. The base also should be excised, and any bone +which may have become involved should be gouged away, so as to leave a +healthy and vascular surface. The cavity thus formed is stuffed with +bismuth or iodoform gauze and encouraged to heal from the bottom. As the +parts are insensitive an anaesthetic is not required. After the ulcer has +healed, the patient should wear in his boot a thick felt sole with a +hole cut out opposite the situation of the cicatrix. When a joint has +been opened into, the difficulty of thoroughly getting rid of all +unhealthy and infected granulations is so great that amputation may be +advisable, but it is to be remembered that ulceration may recur in the +stump if pressure is put upon it. The treatment of any nervous disease +or glycosuria which may coexist is, of course, indicated. + +Exposure of the plantar nerves by an incision behind the medial +malleolus, and subjecting them to forcible stretching, has been employed +by Chipault and others in the treatment of perforating ulcers of the +foot. + +The ulcer that forms in relation to callosities on the sole of the foot +is treated by paring away all the thickened skin, after softening it +with soda fomentations, removing the unhealthy granulations, and +applying stimulating dressings. + +_Treatment of Ulcers due to Constitutional Causes._--When ulcers are +associated with such diseases as tuberculosis, syphilis, diabetes, +Bright's disease, scurvy, or gout, these must receive appropriate +treatment. + +The local treatment of the _tuberculous ulcer_ calls for special +mention. If the ulcer is of limited extent and situated on an exposed +part of the body, the most satisfactory method is complete removal, by +means of the knife, scissors, or sharp spoon, of the ulcerated surface +and of all the infected area around it, so as to leave a healthy surface +from which granulations may spring up. Should the raw surface left be +likely to result in an unsightly scar or in cicatricial contraction, +skin-grafting should be employed. + +For extensive ulcers on the limbs, the chest wall, or on other covered +parts, or when operative treatment is contra-indicated, the use of +tuberculin and exposure to the Rontgen rays have proved beneficial. The +induction of passive hyperaemia, by Bier's or by Klapp's apparatus, +should also be used, either alone or supplementary to other measures. + +No ulcerative process responds so readily to medicinal treatment as the +_syphilitic ulcer_ does to the intra-venous administration of arsenical +preparations of the "606" or "914" groups or to full doses of iodide of +potassium and mercury, and the local application of black wash. When the +ulceration has lasted for a long time, however, and is widespread and +deep, the duration of treatment is materially shortened by a thorough +scraping with the sharp spoon. + +#Treatment in relation to the Condition of the Ulcer.#--_Ulcers in a +weak condition._--If the weak condition of the ulcer is due to anaemia +or kidney disease, these affections must first be treated. Locally, the +imperfect granulations should be scraped away, and some stimulating +agent applied to the raw surface to promote the growth of healthy +granulations. For this purpose the sore may be covered with gauze +smeared with a 6 to 8 per cent. ointment of scarlet-red, the surrounding +parts being protected from the irritant action of the scarlet-red by a +layer of vaseline. A dressing of gauze moistened with eusol or of +boracic lint wrung out of red lotion (2 grains of sulphate of zinc, and +10 minims of compound tincture of lavender, to an ounce of water), and +covered with a layer of gutta-percha tissue, is also useful. + +When the condition has resulted from the prolonged use of moist +dressings, these must be stopped, the redundant granulations clipped +away with scissors, the surface rubbed with silver nitrate or sulphate +of copper (blue-stone), and dry dressings applied. + +When the ulcer has assumed the characters of a healing sore, skin-grafts +may be applied to hasten cicatrisation. + +_Ulcers in a callous condition_ call for treatment in three +directions--(1) The infective element must be eliminated. When the ulcer +is foul, relays of charcoal poultices (three parts of linseed meal to +one of charcoal), maintained for thirty-six to forty-eight hours, are +useful as a preliminary step. The base of the ulcer and the thickened +edges should then be freely scraped with a sharp spoon, and the +resulting raw surface sponged over with undiluted carbolic acid or +iodine, after which an antiseptic dressing is applied, and changed daily +till healthy granulations appear. (2) The venous return must be +facilitated by elevation of the limb and massage. (3) The induration of +the surrounding parts must be got rid of before contraction of the sore +is possible. For this purpose the free application of blisters, as first +recommended by Syme, leaves little to be desired. Liquor epispasticus +painted over the parts, or a large fly-blister (emplastrum cantharidis) +applied all round the ulcer, speedily disperses the inflammatory +products which cause the induration. The use of elastic pressure or of +strapping, of hot-air baths, or the making of multiple incisions in the +skin around the ulcer, fulfils the same object. + +As soon as the ulcer assumes the characters of a healing sore, it should +be covered with skin-grafts, which furnish a much better cicatrix than +that which forms when the ulcer is allowed to heal without such aid. + +A more radical method of treatment consists in excising the whole +ulcer, including its edges and about a quarter of an inch of the +surrounding tissue, as well as the underlying fibrous tissue, and +grafting the raw surface. + +_Ambulatory Treatment._--When the circumstances of the patient forbid +his lying up in bed, the healing of the ulcer is much delayed. He should +be instructed to take every possible opportunity of placing the limb in +an elevated position, and must constantly wear a firm bandage of +_elastic webbing_. This webbing is porous and admits of evaporation of +the skin and wound secretions--an advantage it has over Martin's rubber +bandage. The bandage should extend from the toes to well above the knee, +and should always be applied while the patient is in the recumbent +position with the leg elevated, preferably before getting out of bed in +the morning. Additional support is given to the veins if the bandage is +applied as a figure of eight. + +We have found the following method satisfactory in out-patient +practice. The patient lying on a couch, the limb is raised about +eighteen inches and kept in this position for five minutes--till the +excess of blood has left it. With the limb still raised, the ulcer with +the surrounding skin is covered with a layer, about half an inch thick, +of finely powdered boracic acid, and the leg, from foot to knee, +excluding the sole, is enveloped in a thick layer of wood-wool wadding. +This is held in position by ordinary cotton bandages, painted over with +liquid starch; while the starch is drying the limb is kept elevated. +With this appliance the patient may continue to work, and the dressing +does not require to be changed oftener than once in three or four weeks +(W. G. Richardson). + +When an ulcer becomes acutely _inflamed_ as a result of superadded +infection, antiseptic measures are employed to overcome the infection, +and ichthyol or other soothing applications may be used to allay the +pain. + +The _phagedaenic ulcer_ calls for more energetic means of disinfection; +the whole of the affected surface is touched with the actual cautery at +a white heat, or is painted with pure carbolic acid. Relays of charcoal +poultices are then applied until the spread of the disease is arrested. + +For the _irritable ulcer_ the most satisfactory treatment is complete +excision and subsequent skin-grafting. + + + + +CHAPTER VI + +GANGRENE + + +Definition--Types: _Dry_, _Moist_--Varieties--Gangrene primarily due to + interference with circulation: _Senile gangrene_; _Embolic + gangrene_; _Gangrene following ligation of arteries_; _Gangrene + from mechanical causes_; _Gangrene from heat, chemical agents, and + cold_; _Diabetic gangrene_; _Gangrene associated with spasm of + blood vessels_; _Raynaud's disease_; _Angio-sclerotic gangrene_; + _Gangrene from ergot_. Bacterial varieties of gangrene. + _Pathology_--clinical varieties--_Acute infective gangrene_; + _Malignant oedema_; _Acute emphysematous_ or _gas gangrene_; + _Cancrum oris_, _etc_. Bed-sores: _Acute_; _chronic_. + +Gangrene or mortification is the process by which a portion of tissue +dies _en masse_, as distinguished from the molecular or cellular death +which constitutes ulceration. The dead portion is known as a _slough_. + +In this chapter we shall confine our attention to the process as it +affects the limbs and superficial parts, leaving gangrene of the viscera +to be described in regional surgery. + + +TYPES OF GANGRENE + +Two distinct types of gangrene are met with, which, from their most +obvious point of difference, are known respectively as _dry_ and +_moist_, and there are several clinical varieties of each type. + +Speaking generally, it may be said that dry gangrene is essentially due +to a simple _interference with the blood supply_ of a part; while the +main factor in the production of moist gangrene is _bacterial +infection_. + +The cardinal signs of gangrene are: change in the colour of the part, +coldness, loss of sensation and motor power, and, lastly, loss of +pulsation in the arteries. + +#Dry Gangrene# or #Mummification# is a comparatively slow form of local +death due, as a rule, to a diminution in the arterial blood supply of +the affected part, resulting from such causes as the gradual narrowing +of the lumen of the arteries by disease of their coats, or the blocking +of the main vessel by an embolus. + +As the fluids in the tissues are lost by evaporation the part becomes +dry and shrivelled, and as the skin is usually intact, infection does +not take place, or if it does, the want of moisture renders the part an +unsuitable soil, and the organisms do not readily find a footing. Any +spread of the process that may take place is chiefly influenced by the +anatomical distribution of the blocked arteries, and is arrested as soon +as it reaches an area rich in anastomotic vessels. The dead portion is +then cast off, the irritation resulting from the contact of the dead +with the still living tissue inducing the formation of granulations on +the proximal side of the junction, and these by slowly eating into the +dead portion produce a furrow--the _line of demarcation_--which +gradually deepens until complete separation is effected. As the muscles +and bones have a richer blood supply than the integument, the death of +skin and subcutaneous tissues extends higher than that of muscles and +bone, with the result that the stump left after spontaneous separation +is conical, the end of the bone projecting beyond the soft parts. + +_Clinical Features._--The part undergoing mortification becomes colder +than normal, the temperature falling to that of the surrounding +atmosphere. In many instances, but not in all, the onset of the process +is accompanied by severe neuralgic pain in the part, probably due to +anaemia of the nerves, to neuritis, or to the irritation of the exposed +axis cylinders by the dead and dying tissues around them. This pain soon +ceases and gives place to a complete loss of sensation. The dead part +becomes dry, horny, shrivelled, and semi-transparent--at first of a dark +brown, but finally of a black colour, from the dissemination of blood +pigment throughout the tissues. There is no putrefaction, and therefore +no putrid odour; and the condition being non-infective, there is not +necessarily any constitutional disturbance. In itself, therefore, dry +gangrene does not involve immediate risk to life; the danger lies in the +fact that the breach of surface at the line of demarcation furnishes a +possible means of entrance for bacteria, which may lead to infective +complications. + +#Moist Gangrene# is an acute process, the dead part retaining its fluids +and so affording a favourable soil for the development of bacteria. The +action of the organisms and their toxins on the adjacent tissues leads +to a rapid and wide spread of the process. The skin becomes moist and +macerated, and bullae, containing dark-coloured fluid or gases, form +under the epidermis. The putrefactive gases evolved cause the skin to +become emphysematous and crepitant and produce an offensive odour. The +tissues assume a greenish-black colour from the formation in them of a +sulphide of iron resulting from decomposition of the blood pigment. +Under certain conditions the dead part may undergo changes resembling +more closely those of ordinary post-mortem decomposition. Owing to its +nature the spread of the gangrene is seldom arrested by the natural +protective processes, and it usually continues until the condition +proves fatal from the absorption of toxins into the circulation. + +The _clinical features_ vary in the different varieties of moist +gangrene, but the local results of bacterial action and the +constitutional disturbance associated with toxin absorption are present +in all; the prognosis therefore is grave in the extreme. + +From what has been said, it will be gathered that in dry gangrene there +is no urgent call for operation to save the patient's life, the primary +indication being to prevent the access of bacteria to the dead part, and +especially to the surface exposed at the line of demarcation. In moist +gangrene, on the contrary, organisms having already obtained a footing, +immediate removal of the dead and dying tissues, as a rule, offers the +only hope of saving life. + + +VARIETIES OF GANGRENE + +#Varieties of Gangrene essentially due to Interference with the +Circulation# + +While the varieties of gangrene included in this group depend primarily +on interference with the circulation, it is to be borne in mind that the +clinical course of the affection may be profoundly influenced by +superadded infection with micro-organisms. Although the bacteria do not +play the most important part in producing tissue necrosis, their + +subsequent introduction is an accident of such importance that it may +change the whole aspect of affairs and convert a dry form of gangrene +into one of the moist type. Moreover, the low state of vitality of the +tissues, and the extreme difficulty of securing and maintaining asepsis, +make it a sequel of great frequency. + +#Senile Gangrene.#--Senile gangrene is the commonest example of local +death produced by a _gradual_ diminution in the quantity of blood +passing through the parts, as a result of arterio-sclerosis or other +chronic disease of the arteries leading to diminution of their calibre. +It is the most characteristic example of the dry type of gangrene. As +the term indicates, it occurs in old persons, but the patient's age is +to be reckoned by the condition of his arteries rather than by the +number of his years. Thus the vessels of a comparatively young man who +has suffered from syphilis and been addicted to alcohol are more liable +to atheromatous degeneration leading to this form of gangrene than are +those of a much older man who has lived a regular and abstemious life. +This form of gangrene is much more common in men than in women. While it +usually attacks only one foot, it is not uncommon for the other foot to +be affected after an interval, and in some cases it is bilateral from +the outset. It must clearly be understood that any form of gangrene may + +occur in old persons, the term senile being here restricted to that +variety which results from arterio-sclerosis. + +[Illustration: FIG. 20.--Senile Gangrene of the Foot, showing line of +demarcation.] + +_Clinical Features._--The commonest seat of the disease is in the toes, +especially the great toe, whence it spreads up the foot to the heel, or +even to the leg (Fig. 20). There is often a history of some slight +injury preceding its onset. The vitality of the tissues is so low that +the balance between life and death may be turned by the most trivial +injury, such as a cut while paring a toe-nail or a corn, a blister +caused by an ill-fitting shoe or the contact of a hot-bottle. In some +cases the actual gangrene is determined by thrombosis of the popliteal +or tibial arteries, which are already narrowed by obliterating +endarteritis. + +It is common to find that the patient has been troubled for a long time +before the onset of definite signs of gangrene, with cold feet, with +tingling and loss of feeling, or a peculiar sensation as if walking on +cotton wool. + +The first evidence of the death of the part varies in different cases. +Sometimes a dark-blue spot appears on the medial side of the great toe +and gradually increases in size; or a blister containing blood-stained +fluid may form. Streaks or patches of dark-blue mottling appear higher +up on the foot or leg. In other cases a small sore surrounded by a +congested areola forms in relation to the nail and refuses to heal. Such +sores on the toes of old persons are always to be looked upon with +suspicion and treated with the greatest care; and the urine should be +examined for sugar. There is often severe, deep-seated pain of a +neuralgic character, with cramps in the limb, and these may persist long +after a line of demarcation has formed. The dying part loses sensibility +to touch and becomes cold and shrivelled. + +All the physical appearances and clinical symptoms associated with dry +gangrene supervene, and the dead portion is delimited by a line of +demarcation. If this forms slowly and irregularly it indicates a very +unsatisfactory condition of the circulation; while, if it forms quickly +and decidedly, the presumption is that the circulation in the parts +above is fairly good. The separation of the dead part is always attended +with the risk of infection taking place, and should this occur, the +temperature rises and other evidences of toxaemia appear. + +_Prophylaxis._--The toes and feet of old people, the condition of whose +circulation predisposes them to gangrene, should be protected from +slight injuries such as may be received while paring nails, cutting +corns, or wearing ill-fitting boots. The patient should also be warned +of the risk of exposure to cold, the use of hot-bottles, and of placing +the feet near a fire. Attempts have been made to improve the peripheral +circulation by establishing an anastomosis between the main artery of a +limb and its companion vein, so that arterial blood may reach the +peripheral capillaries--reversal of the circulation--but the clinical +results have proved disappointing. (See _Op. Surg._, p. 29.) + +_Treatment._--When there is evidence that gangrene has occurred, the +first indication is to prevent infection by purifying the part, and +after careful drying to wrap it in a thick layer of absorbent and +antiseptic wool, retained in place by a loosely applied bandage. A +slight degree of elevation of the limb is an advantage, but it must not +be sufficient to diminish the amount of blood entering the part. +Hot-bottles are to be used with the utmost caution. As absolute dryness +is essential, ointments or other greasy dressings are to be avoided, as +they tend to prevent evaporation from the skin. Opium should be given +freely to alleviate pain. Stimulation is to be avoided, and the patient +should be carefully dieted. + +When the gangrene is limited to the toes in old and feeble patients, +some surgeons advocate the expectant method of treatment, waiting for a +line of demarcation to form and allowing the dead part to be separated. +This takes place so slowly, however, that it necessitates the patient +being laid up for many weeks, or even months; and we agree with the +majority in advising early amputation. + +In this connection it is worthy of note that there are certain points at +which gangrene naturally tends to become arrested--namely, at the highly +vascular areas in the neighbourhood of joints. Thus gangrene of the +great toe often stops when it reaches the metatarso-phalangeal joint; or +if it trespasses this limit it may be arrested either at the +tarso-metatarsal or at the ankle joint. If these be passed, it usually +spreads up the leg to just below the knee before signs of arrestment +appear. Further, it is seen from pathological specimens that the spread +is greater on the dorsal than on the plantar aspect, and that the death +of skin and subcutaneous tissues extends higher than that of bone and +muscle. + +These facts furnish us with indications as to the seat and method of +amputation. Experience has proved that in senile gangrene of the lower +extremity the most reliable and satisfactory results are obtained by +amputating in the region of the knee, care being taken to perform the +operation so as to leave the prepatellar anastomosis intact by retaining +the patella in the anterior flap. The most satisfactory operation in +these cases is Gritti's supra-condylar amputation. Haemorrhage is easily +controlled by digital pressure, and the use of a tourniquet should be +dispensed with, as the constriction of the limb is liable to interfere +with the vitality of the flaps. + +When the tibial vessels can be felt pulsating at the ankle it may be +justifiable, if the patient urgently desires it, to amputate lower than +the knee; but there is considerable risk of gangrene recurring in the +stump and necessitating a second operation. + +That amputation for senile gangrene performed between the ankle and the +knee seldom succeeds, is explained by the fact that the vascular +obstruction is usually in the upper part of the posterior tibial artery, +and the operation is therefore performed through tissues with an +inadequate blood supply. It is not uncommon, indeed, on amputating above +the knee, to find even the popliteal artery plugged by a clot. This +should be removed at the amputation by squeezing the vessel from above +downward by a "milking" movement, or by "catheterising the artery" with +the aid of a cannula with a terminal aperture. + +It is to be borne in mind that the object of amputation in these cases +is merely to remove the gangrenous part, and so relieve the patient of +the discomfort and the risks from infection which its presence involves. +While it is true that in many of these patients the operation is borne +remarkably well, it must be borne in mind that those who suffer from +senile gangrene are of necessity bad lives, and a guarded opinion should +be expressed as to the prospects of survival. The possibility of the +disease developing in the other limb has already been referred to. + +[Illustration: FIG. 21.--Embolic Gangrene of Hand and Arm.] + +#Embolic Gangrene# (Fig. 21).--This is the most typical form of gangrene +resulting from the _sudden_ occlusion of the main artery of a part, +whether by the impaction of an embolus or the formation of a thrombus in +its lumen, when the collateral circulation is not sufficiently free to +maintain the vitality of the tissues. + +There is sudden pain at the site of impaction of the embolus, and the +pulses beyond are lost. The limb becomes cold, numb, insensitive, and +powerless. It is often pale at first--hence the term "white gangrene" +sometimes applicable to the early appearances, which closely resemble +those presented by the limb of a corpse. + +If the part is aseptic it shrivels, and presents the ordinary features +of dry gangrene. It is liable, however, especially in the lower +extremity and when the veins also are obstructed, to become infected and +to assume the characters of the moist type. + +The extent of the gangrene depends upon the site of impaction of the +embolus, thus if the _abdominal aorta_ becomes suddenly occluded by an +embolus at its bifurcation, the obstruction of the iliacs and femorals +induces symmetrical gangrene of both extremities as high as the inguinal +ligaments. When gangrene follows occlusion of the _external iliac_ or of +the _femoral artery_ above the origin of its deep branch, the death of +the limb extends as high as the middle or upper third of the thigh. When +the _femoral_ below the origin of its deep branch or the _popliteal +artery_ is obstructed, the veins remaining pervious, the anastomosis +through the profunda is sufficient to maintain the vascular supply, and +gangrene does not necessarily follow. The rupture of a popliteal +aneurysm, however, by compressing the vein and the articular branches, +usually determines gangrene. When an embolus becomes impacted at the +_bifurcation of the popliteal_, if gangrene ensues it usually spreads +well up the leg. + +When the _axillary artery_ is the seat of embolic impaction, and +gangrene ensues, the process usually reaches the middle of the upper +arm. Gangrene following the blocking of the _brachial_ at its +bifurcation usually extends as far as the junction of the lower and +middle thirds of the forearm. + +Gangrene due to thrombosis or embolism is sometimes met with in patients +recovering from typhus, typhoid, or other fevers, such as that +associated with child-bed. It occurs in peripheral parts, such as the +toes, fingers, nose, or ears. + +_Treatment._--The general treatment of embolic gangrene is the same as +that for the senile form. Success has followed opening the artery and +removing the embolus. The artery is exposed at the seat of impaction +and, having been clamped above and below, a longitudinal opening is made +and the clot carefully extracted with the aid of forceps; it is +sometimes unexpectedly long (one recorded from the femoral artery +measured nearly 34 inches); the wound in the artery is then sewn up with +fine silk soaked in paraffin. When amputation is indicated, it must be +performed sufficiently high to ensure a free vascular supply to the +flaps. + +#Gangrene following Ligation of Arteries.#--After the ligation of an +artery in its continuity--for example, in the treatment of aneurysm--the +limb may for some days remain in a condition verging on gangrene, the +distal parts being cold, devoid of sensation, and powerless. As the +collateral circulation is established, the vitality of the tissues is +gradually restored and these symptoms pass off. In some cases, +however,--and especially in the lower extremity--gangrene ensues and +presents the same characters as those resulting from embolism. It tends +to be of the dry type. The occlusion of the vein as well as the artery +is not found to increase the risk of gangrene. + +#Gangrene from Mechanical Constriction of the Vessels of the part.#--The +application of a bandage or plaster-of-Paris case too tightly, or of a +tourniquet for too long a time, has been known to lead to death of the +part beyond; but such cases are rare, as are also those due to the +pressure of a fractured bone or of a tumour on a large artery or vein. +When gangrene occurs from such causes, it tends to be of the moist type. + +Much commoner is it to meet with localised areas of necrosis due to the +excessive _pressure of splints_ over bony prominences, such as the +lateral malleolus, the medial condyle of the humerus, or femur, or over +the dorsum of the foot. This is especially liable to occur when the +nutrition of the skin is depressed by any interference with its +nerve-supply, such as follows injuries to the spine or peripheral +nerves, disease of the brain, or acute anterior poliomyelitis. When the +splint is removed the skin pressed upon is found to be of a pale yellow +or grey colour, and is surrounded by a ring of hyperaemia. If protected +from infection, the clinical course is that of dry gangrene. + +Bed-sores, which are closely allied to pressure sores, will be described +at the end of this chapter. + +When a localised portion of tissue, for example, a piece of skin, is so +severely _crushed_ or _bruised_ that its blood vessels are occluded and +its structure destroyed, it dies, and, if not infected with bacteria, +dries up, and the shrivelled brown skin is slowly separated by the +growth of granulation tissue beneath and around it. + +Fingers, toes, or even considerable portions of limbs may in the same +way be suddenly destroyed by severe trauma, and undergo mummification. +If organisms gain access, typical moist gangrene may ensue, or changes +similar to those of ordinary post-mortem decomposition may take place. + +_Treatment._--The first indication is to exclude bacteria by purifying +the damaged part and its surroundings, and applying dry, non-irritating +dressings. + +When these measures are successful, dry gangrene ensues. The raw surface +left after the separation of the dead skin may be allowed to heal by +granulation, or may be covered by skin-grafts. In the case of a finger +or a limb it is not necessary to wait until spontaneous separation takes +place, as this is often a slow process. When a well-marked line of +demarcation has formed, amputation may be performed just sufficiently +far above it to enable suitable flaps to be made. + +The end of a stump, after spontaneous separation of the gangrenous +portion, requires to be trimmed, sufficient bone being removed to permit +of the soft parts coming together. + +If moist gangrene supervenes, amputation must be performed without +delay, and at a higher level. + +#Gangrene from Heat, Chemical Agents, and Cold.#--Severe #burns# and +#scalds# may be followed by necrosis of tissue. So long as the parts are +kept absolutely dry--as, for example, by the picric acid method of +treatment--the grossly damaged portions of tissue undergo dry gangrene; +but when wet or oily dressings are applied and organisms gain access, +moist gangrene follows. + +Strong #chemical agents#, such as caustic potash, nitric or sulphuric +acid, may also induce local tissue necrosis, the general appearances of +the lesions produced being like those of severe burns. The resulting +sloughs are slow to separate, and leave deep punched-out cavities which +are long of healing. + +#Carbolic Gangrene.#--Carbolic acid, even in comparatively weak +solution, is liable to induce dry gangrene when applied as a fomentation +to a finger, especially in women and children. Thrombosis occurs in the +blood vessels of the part, which at first is pale and soft, but later +becomes dark and leathery. On account of the anaesthetic action of +carbolic acid, the onset of the process is painless, and the patient +does not realise his danger. A line of demarcation soon forms, but the +dead part separates very slowly. + +#Gangrene from Frost-bite.#--It is difficult to draw the line between +the third degree of chilblain and the milder forms of true frost-bite; +the difference is merely one of degree. Frost-bite affects chiefly the +toes and fingers--especially the great toe and the little finger--the +ears, and the nose. In this country it is seldom seen except in members +of the tramp class, who, in addition to being exposed to cold by +sleeping in the open air, are ill-fed and generally debilitated. The +condition usually manifests itself after the parts, having been +subjected to extreme cold, are brought into warm surroundings. The first +symptom is numbness in the part, followed by a sense of weight, +tingling, and finally by complete loss of sensation. The part attacked +becomes white and bleached-looking, feels icy cold, and is insensitive +to touch. Either immediately, or, it may be, not for several days, it +becomes discoloured and swollen, and finally contracts and shrivels. +Above the dead area the limb may be the seat of excruciating pain. The +dead portion is cast off, as in other forms of dry gangrene, by the +formation of a line of demarcation. + +To prevent the occurrence of gangrene from frost-bite it is necessary to +avoid the sudden application of heat. The patient should be placed in a +cold room, and the part rubbed with snow, or put in a cold bath, and +have light friction applied to it. As the circulation is restored the +general surroundings and the local applications are gradually made +warmer. Elevation of the part, wrapping it in cotton wool, and removal +to a warmer room, are then permissible, and stimulants and warm drinks +may be given with caution. When by these means the occurrence of +gangrene is averted, recovery ensues, its onset being indicated by the +white parts assuming a livid red hue and becoming the seat of an acute +burning sensation. + +A condition known as _Trench feet_ was widely prevalent amongst the +troops in France during the European War. Although allied to frost-bite, +cold appears to play a less important part in its causation than +humidity and constriction of the limbs producing ischaemia of the feet. +Changes were found in the endothelium of the blood vessels, the axis +cylinders of nerves, and the muscles. The condition does not occur in +civil life. + +#Diabetic Gangrene.#--This form of gangrene is prone to occur in persons +over fifty years of age who suffer from glycosuria. The arteries are +often markedly diseased. In some cases the existence of the glycosuria +is unsuspected before the onset of the gangrene, and it is only on +examining the urine that the cause of the condition is discovered. The +gangrenous process seldom begins as suddenly as that associated with +embolism, and, like senile gangrene, which it may closely simulate in +its early stages, it not infrequently begins after a slight injury to +one of the toes. It but rarely, however, assumes the dry, shrivelling +type, as a rule being attended with swelling, oedema, and dusky redness +of the foot, and severe pain. According to Paget, the dead part remains +warm longer than in other forms of senile gangrene; there is a greater +tendency for patches of skin at some distance from the primary seat of +disease to become gangrenous, and for the death of tissue to extend +upwards in the subcutaneous planes, leaving the overlying skin +unaffected. The low vitality of the tissues favours the growth of +bacteria, and if these gain access, the gangrene assumes the characters +of the moist type and spreads rapidly. + +The rules for amputation are the same as those governing the treatment +of senile gangrene, the level at which the limb is removed depending +upon whether the gangrene is of the dry or moist type. The general +treatment for diabetes must, of course, be employed whether amputation +is performed or not. Paget recommended that the dietetic treatment +should not be so rigid as in uncomplicated diabetes, and that opium +should be given freely. + +The _prognosis_ even after amputation is unfavourable. In many cases the +patient dies with symptoms of diabetic coma within a few days of the +operation; or, if he survives this, he may eventually succumb to +diabetes. In others there is sloughing of the flaps and death results +from toxaemia. Occasionally the other limb becomes gangrenous. On the +other hand, the glycosuria may diminish or may even disappear after +amputation. + +#Gangrene associated with Spasm of Blood Vessels.#--#Raynaud's Disease#, +or symmetrical gangrene, is supposed to be due to spasm of the +arterioles, resulting from peripheral neuritis. It occurs oftenest in +women, between the ages of eighteen and thirty, who are the subjects of +uterine disorders, anaemia, or chlorosis. Cold is an aggravating factor, +as the disease is commonest during the winter months. The digits of both +hands or the toes of both feet are simultaneously attacked, and the +disease seldom spreads beyond the phalanges or deeper than the skin. + +The first evidence is that the fingers become cold, white, and +insensitive to touch and pain. These attacks of _local syncope_ recur at +varying intervals for months or even years. They last for a few minutes +or even for some hours, and as they pass off the parts become hyperaemic +and painful. + +A more advanced stage of the disease is known as _local asphyxia_. The +circulation through the fingers becomes exceedingly sluggish, and the +parts assume a dull, livid hue. There is swelling and burning or +shooting pain. This may pass off in a few days, or may increase in +severity, with the formation of bullae, and end in dry gangrene. As a +rule, the slough which forms is comparatively small and superficial, +but it may take some months to separate. The condition tends to recur in +successive winters. + +The _treatment_ consists in remedying any nervous or uterine disorder +that may be present, keeping the parts warm by wrapping them in cotton +wool, and in the use of hot-air or electric baths, the parts being +immersed in water through which a constant current is passed. When +gangrene occurs, it is treated on the same lines as other forms of dry +gangrene, but if amputation is called for it is only with a view to +removing the dead part. + +#Angio-sclerotic Gangrene.#--A form of gangrene due to _angio-sclerosis_ +is occasionally met with in young persons, even in children. It bears +certain analogies to Raynaud's disease in that spasm of the vessels +plays a part in determining the local death. + +The main arteries are narrowed by hyperplastic endarteritis followed by +thrombosis, and similar changes are found in the veins. The condition is +usually met with in the feet, but the upper extremity may be affected, +and is attended with very severe pain, rendering sleep impossible. + +The patient is liable to sudden attacks of numbness, tingling and +weakness of the limbs which pass off with rest--_intermittent +claudication_. During these attacks the large arteries--femoral, +brachial, and subclavian--can be felt as firm cords, while pulsation is +lost in the peripheral vessels. Gangrene eventually ensues, is attended +with great pain and runs a slow course. It is treated on the same lines +as Raynaud's disease. + +#Gangrene from Ergot.#--Gangrene may occur from interference with blood +supply, the result of tetanic contraction of the minute vessels, such as +results in ill-nourished persons who eat large quantities of coarse rye +bread contaminated with the _claviceps purpurea_ and containing the +ergot of rye. It has also occurred in the fingers of patients who have +taken ergot medicinally over long periods. The gangrene, which attacks +the toes, fingers, ears, or nose, is preceded by formication, numbness, +and pains in the parts to be affected, and is of the dry variety. + +In this country it is usually met with in sailors off foreign ships, +whose dietary largely consists of rye bread. Trivial injuries may be the +starting-point, the anaesthesia produced by the ergotin preventing the +patient taking notice of them. Alcoholism is a potent predisposing +cause. + +As it is impossible to predict how far the process will spread, it is +advisable to wait for the formation of a line of demarcation before +operating, and then to amputate immediately above the dead part. + + +BACTERIAL VARIETIES OF GANGRENE + +The acute bacillary forms of gangrene all assume the moist type from the +first, and, spreading rapidly, result in extensive necrosis of tissue, +and often end fatally. + +The infection is usually a mixed one in which anaerobic bacteria +predominate. The anaerobe most constantly present is the _bacillus +aerogenes capsulatus_, usually in association with other anaerobes, and +sometimes with pyogenic diplo- and streptococci. According to the mode of +action of the associated organisms and the combined effects of their +toxins on the tissues, the gangrenous process presents different +pathological and clinical features. Some combinations, for example, +result in a rapidly spreading cellulitis with early necrosis of +connective tissue accompanied by thrombosis throughout the capillary and +venous circulation of the parts implicated; other combinations cause +great oedema of the part, and others again lead to the formation of gases +in the tissues, particularly in the muscles. + +These different effects do not appear to be due to a specific action of +any one of the organisms present, but to the combined effect of a +particular group living in symbiosis. + +According as the cellulitic, the oedematous, or the gaseous +characteristics predominate, the clinical varieties of bacillary +gangrene may be separately described, but it must be clearly understood +that they frequently overlap and cannot always be distinguished from one +another. + +#Clinical Varieties of Bacillary Gangrene.#--#Acute infective gangrene# +is the form most commonly met with in civil practice. It may follow such +trivial injuries as a pin-prick or a scratch, the signs of acute +cellulitis rapidly giving place to those of a spreading gangrene. Or it +may ensue on a severe railway, machinery, or street accident, when +lacerated and bruised tissues are contaminated with gross dirt. Often +within a few hours of the injury the whole part rapidly becomes painful, +swollen, oedematous, and tense. The skin is at first glazed, and perhaps +paler than normal, but soon assumes a dull red or purplish hue, and +bullae form on the surface. Putrefactive gases may be evolved in the +tissues, and their presence is indicated by emphysematous crackling when +the part is handled. The spread of the disease is so rapid that its +progress is quite visible from hour to hour, and may be traced by the +occurrence of red lines along the course of the lymphatics of the limb. +In the most acute cases the death of the affected part takes place so +rapidly that the local changes indicative of gangrene have not time to +occur, and the fact that the part is dead may be overlooked. + +[Illustration: FIG. 22.--Gangrene of Terminal Phalanx of Index-Finger, +following cellulitis of hand resulting from a scratch on the palm of the +hand.] + +Rigors may occur, but the temperature is not necessarily raised--indeed, +it is sometimes subnormal. The pulse is small, feeble, rapid, and +irregular. Unless amputation is promptly performed, death usually +follows within thirty-six or forty-eight hours. Even early operation +does not always avert the fatal issue, because the quantity of toxin +absorbed and its extreme virulence are often more than even a robust +subject can outlive. + +_Treatment._--Every effort must be made to purify all such wounds as are +contaminated by earth, street dust, stable refuse, or other forms of +gross dirt. Devitalised and contaminated tissue is removed with the +knife or scissors and the wound purified with antiseptics of the +chlorine group or with hydrogen peroxide. If there is a reasonable +prospect that infection has been overcome, the wound may be at once +sutured, but if this is doubtful it is left open and packed or +irrigated. + +When acute gangrene has set in no treatment short of amputation is of +any avail, and the sooner this is done, the greater is the hope of +saving the patient. The limb must be amputated well beyond the apparent +limits of the infected area, and stringent precautions must be taken to +avoid discharge from the already gangrenous area reaching the operation +wound. An assistant or nurse, who is to take no other part in the +operation, is told off to carry out the preliminary purification, and to +hold the limb during the operation. + +#Malignant Oedema.#--This form of acute gangrene has been defined as +"a spreading inflammatory oedema attended with emphysema, and ultimately +followed by gangrene of the skin and adjacent parts." The predominant +organism is the _bacillus of malignant oedema_ or _vibrion septique_ of +Pasteur, which is found in garden soil, dung, and various putrefying +substances. It is anaerobic, and occurs as long, thick rods with +somewhat rounded ends and several laterally placed flagella. Spores, +which have a high power of resistance, form in the centre of the rods, +and bulge out the sides so as to give the organisms a spindle-shaped +outline. Other pathogenic organisms are also present and aid the +specific bacillus in its action. + +At the bedside it is difficult, if not impossible, to distinguish it +from acute infective gangrene. Both follow on the same kinds of injury +and run an exceedingly rapid course. In malignant oedema, however, the +incidence of the disease is mainly on the superficial parts, which +become oedematous and emphysematous, and acquire a marbled appearance +with the veins clearly outlined. Early disappearance of sensation is a +particularly grave symptom. Bullae form on the skin, and the tissues +have "a peculiar heavy but not putrid odour." The constitutional effects +are extremely severe, and death may ensue within a few hours. + +#Acute Emphysematous# or #Gas Gangrene# was prevalent in certain areas +at various periods during the European War. It follows infection of +lacerated wounds with the _bacillus aerogenes capsulatus_, usually in +combination with other anaerobes, and its main incidence is on the +muscles, which rapidly become infiltrated with gas that spreads +throughout the whole extent of the muscle, disintegrating its fibres and +leading to necrosis. The gangrenous process spreads with appalling +rapidity, the limb becoming enormously swollen, painful, and crepitant +or even tympanitic. Patches of coppery or purple colour appear on the +skin, and bullae containing blood-stained serum form on the surface. The +toxaemia is profound, and the face and lips assume a characteristic +cyanosis. The condition is attended with a high mortality. Only in the +early stages and when the infection is limited are local measures +successful in arresting the spread; in more severe cases amputation is +the only means of saving life. + +#Cancrum Oris# or #Noma#.--This disease is believed to be due to a +specific bacillus, which occurs in long delicate rods, and is chiefly +found at the margin of the gangrenous area. It is prone to attack +unhealthy children from two to five years of age, especially during +their convalescence from such diseases as measles, scarlet fever, or +typhoid, but may attack adults when they are debilitated. It is most +common in the mouth, but sometimes occurs on the vulva. In the mouth it +begins as an ulcerative stomatitis, more especially affecting the gums +or inner aspect of the cheek. The child lies prostrated, and from the +open mouth foul-smelling saliva, streaked with blood, escapes; the face +is of an ashy-grey colour, the lips dark and swollen. On the inner +aspect of the cheek is a deeply ulcerated surface, with sloughy shreds +of dark-brown or black tissue covering its base; the edges are +irregular, firm, and swollen, and the surrounding mucous membrane is +infiltrated and oedematous. In the course of a few hours a dark spot +appears on the outer aspect of the cheek, and rapidly increases in size; +towards the centre it is black, shading off through blue and grey into a +dark-red area which extends over the cheek (Fig. 23). The tissue +implicated is at first firm and indurated, but as it loses its vitality +it becomes doughy and sodden. Finally a slough forms, and, when it +separates, the cheek is perforated. + +Meanwhile the process spreads inside the mouth, and the gums, the floor +of the mouth, or even the jaws, may become gangrenous and the teeth fall +out. The constitutional disturbance is severe, the temperature raised, +and the pulse feeble and rapid. + +The extremely foetid odour which pervades the room or even the house the +patient occupies, is usually sufficient to suggest the diagnosis of +cancrum oris. The odour must not be mistaken for that due to +decomposition of sordes on the teeth and gums of a debilitated patient. + +The _prognosis_ is always grave in the extreme, the main risks being +general toxaemia and septic pneumonia. When recovery takes place there is +serious deformity, and considerable portions of the jaws may be lost by +necrosis. + +[Illustration: FIG. 23.--Cancrum oris. + +(From a photograph lent by Sir George T. Beatson.)] + +_Treatment._--The only satisfactory treatment is thorough removal under +an anaesthetic of all the sloughy tissue, with the surrounding zone in +which the organisms are active. This is most efficiently accomplished by +the knife or scissors, cutting until the tissue bleeds freely, after +which the raw surface is painted with undiluted carbolic acid and +dressed with iodoform gauze. It may be necessary to remove large pieces +of bone when the necrotic process has implicated the jaws. The mouth +must be constantly sprayed with peroxide of hydrogen, and washed out +with a disinfectant and deodorant lotion, such as Condy's fluid. The +patient's general condition calls for free stimulation. + +The deformity resulting from these necessarily heroic measures is not so +great as might be expected, and can be further diminished by plastic +operations, which should be undertaken before cicatricial contraction +has occurred. + + +BED-SORES + +Bed-sores are most frequently met with in old and debilitated patients, +or in those whose tissues are devitalised by acute or chronic diseases +associated with stagnation of blood in the peripheral veins. Any +interference with the nerve-supply of the skin, whether from injury or +disease of the central nervous system or of the peripheral nerves, +strongly predisposes to the formation of bed-sores. Prolonged and +excessive pressure over a bony prominence, especially if the parts be +moist with skin secretions, urine, or wound discharges, determines the +formation of a sore. Excoriations, which may develop into true +bed-sores, sometimes form where two skin surfaces remain constantly +apposed, as in the region of the scrotum or labium, under pendulous +mammae, or between fingers or toes confined in a splint. + +[Illustration: FIG. 24.--Acute Bed-Sores over Right Buttock.] + +_Clinical Features._--Two clinical varieties are met with--the acute +and the chronic bed-sore. + +The _acute_ bed-sore usually occurs over the sacrum or buttock. It +develops rapidly after spinal injuries and in the course of certain +brain diseases. The part affected becomes red and congested, while the +surrounding parts are oedematous and swollen, blisters form, and the skin +loses its vitality (Fig. 24). + +In advanced cases of general paralysis of the insane, a peculiar form of +acute bed-sore beginning as a blister, and passing on to the formation +of a black, dry eschar, which slowly separates, occurs on such parts as +the medial side of the knee, the angle of the scapula, and the heel. + +The _chronic_ bed-sore begins as a dusky reddish purple patch, which +gradually becomes darker till it is almost black. The parts around are +oedematous, and a blister may form. This bursts and exposes the papillae +of the skin, which are of a greenish hue. A tough greyish-black slough +forms, and is slowly separated. It is not uncommon for the gangrenous +area to continue to spread both in width and in depth till it reaches +the periosteum or bone. Bed-sores over the sacrum sometimes implicate +the vertebral canal and lead to spinal meningitis, which usually proves +fatal. + +In old and debilitated patients the septic absorption taking place from +a bed-sore often proves a serious complication of other surgical +conditions. From this cause, for example, old people may succumb during +the treatment of a fractured thigh. + +The granulating surface left on the separation of the slough tends to +heal comparatively rapidly. + +_Prevention of Bed-sores._--The first essential in the prevention of +bed-sores is the regular changing of the patient's position, so that no +one part of the body is continuously pressed upon for any length of +time. Ring-pads of wool, air-cushions, or water-beds are necessary to +remove pressure from prominent parts. Absolute dryness of the skin is +all-important. At least once a day, the sacrum, buttocks, +shoulder-blades, heels, elbows, malleoli, or other parts exposed to +pressure, must be sponged with soap and water, thoroughly dried, and +then rubbed with methylated spirit, which is allowed to dry on the skin. +Dusting the part with boracic acid powder not only keeps it dry, but +prevents the development of bacteria in the skin secretions. + +In operation cases, care must be taken that irritating chemicals used to +purify the skin do not collect under the patient and remain in contact +with the skin of the sacrum and buttocks during the time he is on the +operating-table. There is reason to believe that the so-called +"post-operation bed-sore" may be due to such causes. A similar result +has been known to follow soiling of the sheets by the escape of a +turpentine enema. + +_Treatment._--Once a bed-sore has formed, every effort must be made to +prevent its spread. Alcohol is used to cleanse the broken surface, and +dry absorbent dressings are applied and frequently changed. It is +sometimes found necessary to employ moist or oily substances, such as +boracic poultices, eucalyptus ointment, or balsam of Peru, to facilitate +the separation of sloughs, or to promote the growth of granulations. In +patients who are not extremely debilitated the slough may be excised, +the raw surface scraped, and then painted with iodine. + +Skin-grafting is sometimes useful in covering in the large raw surface +left after separation or removal of sloughs. + + + + +CHAPTER VII + +BACTERIAL AND OTHER WOUND INFECTIONS + + +_Erysipelas_--_Diphtheria_--_Tetanus_--_Hydrophobia_--_Anthrax_-- + _Glanders_--_Actinomycosis_--_Mycetoma_--_Delhi + boil_--_Chigoe_--_Poisoning by insects_--_Snake-bites_. + + +ERYSIPELAS + +Erysipelas, popularly known as "rose," is an acute spreading infective +disease of the skin or of a mucous membrane due to the action of a +streptococcus. Infection invariably takes place through an abrasion of +the surface, although this may be so slight that it escapes observation +even when sought for. The streptococci are found most abundantly in the +lymph spaces just beyond the swollen margin of the inflammatory area, +and in the serous blebs which sometimes form on the surface. + +#Clinical Features.#--_Facial erysipelas_ is the commonest clinical +variety, infection usually occurring through some slight abrasion in the +region of the mouth or nose, or from an operation wound in this area. +From this point of origin the inflammation may spread all over the face +and scalp as far back as the nape of the neck. It stops, however, at the +chin, and never extends on to the front of the neck. There is great +oedema of the face, the eyes becoming closed up, and the features +unrecognisable. The inflammation may spread to the meninges, the +intracranial venous sinuses, the eye, or the ear. In some cases the +erysipelas invades the mucous membrane of the mouth, and spreads to the +fauces and larynx, setting up an oedema of the glottis which may prove +dangerous to life. + +Erysipelas occasionally attacks an operation wound that has become +septic; and it may accompany septic infection of the genital tract in +puerperal women, or the separation of the umbilical cord in infants +(_erysipelas neonatorum_). After an incubation period, which varies from +fifteen to sixty hours, the patient complains of headache, pains in the +back and limbs, loss of appetite, nausea, and frequently there is +vomiting. He has a chill or slight rigor, initiating a rise of +temperature to 103 o, 104 o, or 105 o F.; and a full bounding pulse of +about 100 (Fig. 25). The tongue is foul, the breath heavy, and, as a +rule, the bowels are constipated. There is frequently albuminuria, and +occasionally nocturnal delirium. A moderate degree of leucocytosis +(15,000 to 20,000) is usually present. + +Around the seat of inoculation a diffuse red patch forms, varying in hue +from a bright scarlet to a dull brick-red. The edges are slightly raised +above the level of the surrounding skin, as may readily be recognised by +gently stroking the part from the healthy towards the affected area. The +skin is smooth, tense, and glossy, and presents here and there blisters +filled with serous fluid. The local temperature is raised, and the part +is the seat of a burning sensation and is tender to the touch, the most +tender area being the actively spreading zone which lies about half an +inch beyond the red margin. + +[Illustration: FIG. 25.--Chart of Erysipelas occurring in a wound.] + +The disease tends to spread spasmodically and irregularly, and the +direction and extent of its progress may be recognised by mapping out +the peripheral zone of tenderness. Red streaks appear along the lines of +the superficial lymph vessels, and the deep lymphatics may sometimes be +palpated as firm, tender cords. The neighbouring glands, also, are +generally enlarged and tender. + +The disease lasts for from two or three days to as many weeks, and +relapses are frequent. Spontaneous resolution usually takes place, but +the disease may prove fatal from absorption of toxins, involvement of +the brain or meninges, or from general streptococcal infection. + +#Complications.#--_Diffuse suppurative cellulitis_ is the most serious +local complication, and results from a mixed infection with other +pyogenic bacteria. Small _localised superficial abscesses_ may form +during the convalescent stage. They are doubtless due to the action of +skin bacteria, which attack the tissues devitalised by the erysipelas. A +persistent form of _oedema_ sometimes remains after recurrent attacks of +erysipelas, especially when they affect the face or the lower extremity, +a condition which is referred to with elephantiasis. + +#Treatment.#--The first indication is to endeavour to arrest the spread +of the process. We have found that by painting with linimentum iodi, a +ring half an inch broad, about an inch in front of the peripheral tender +zone--not the red margin--an artificial leucocytosis is produced, and +the advancing streptococci are thereby arrested. Several coats of the +iodine are applied, one after the other, and this is repeated daily for +several days, even although the erysipelas has not overstepped the ring. +Success depends upon using the liniment of iodine (the tincture is not +strong enough), and in applying it well in front of the disease. To +allay pain the most useful local applications are ichthyol ointment (1 +in 6), or lead and opium fomentations. + +The general treatment consists in attending to the emunctories, in +administrating quinine in small--two-grain--doses every four hours, or +salicylate of iron (2-5 gr. every three hours), and in giving plenty of +fluid nourishment. It is worthy of note that the anti-streptococcic +serum has proved of less value in the treatment of erysipelas than might +have been expected, probably because the serum is not made from the +proper strain of streptococcus. + +It is not necessary to isolate cases of erysipelas, provided the usual +precautions against carrying infection from one patient to another are +rigidly carried out. + + +DIPHTHERIA + +Diphtheria is an acute infective disease due to the action of a specific +bacterium, the _bacillus diphtheriae_ or _Klebs-Loffler bacillus_. The +disease is usually transmitted from one patient to another, but it may +be contracted from cats, fowls, or through the milk of infected cows. +Cases have occurred in which the surgeon has carried the infection from +one patient to another through neglect of antiseptic precautions. The +incubation period varies from two to seven days. + +#Clinical Features.#--In _pharyngeal diphtheria_, on the first or +second day of the disease, redness and swelling of the mucous membrane +of the pharynx, tonsils, and palate are well marked, and small, circular +greenish or grey patches of false membrane, composed of necrosed +epithelium, fibrin, leucocytes, and red blood corpuscles, begin to +appear. These rapidly increase in area and thickness, till they coalesce +and form a complete covering to the parts. In the pharynx the false +membrane is less adherent to the surface than it is when the disease +affects the air-passages. The diphtheritic process may spread from the +pharynx to the nasal cavities, causing blocking of the nares, with a +profuse ichorous discharge from the nostrils, and sometimes severe +epistaxis. The infection may spread along the nasal duct to the +conjunctiva. The middle ear also may become involved by spread along the +auditory (Eustachian) tube. + +The lymph glands behind the angle of the jaw enlarge and become tender, +and may suppurate from superadded infection. There is pain on +swallowing, and often earache; and the patient speaks with a nasal +accent. He becomes weak and anaemic, and loses his appetite. There is +often albuminuria. Leucocytosis is usually well marked before the +injection of antitoxin; after the injection there is usually a +diminution in the number of leucocytes. The false membrane may separate +and be cast off, after which the patient gradually recovers. Death may +take place from gradual failure of the heart's action or from syncope +during some slight exertion. + +_Laryngeal Diphtheria._--The disease may arise in the larynx, although, +as a rule, it spreads thence from the pharynx. It first manifests itself +by a short, dry, croupy cough, and hoarseness of the voice. The first +difficulty in breathing usually takes place during the night, and once +it begins, it rapidly gets worse. Inspiration becomes noisy, sometimes +stridulous or metallic or sibilant, and there is marked indrawing of the +epigastrium and lower intercostal spaces. The hoarseness becomes more +marked, the cough more severe, and the patient restless. The difficulty +of breathing occurs in paroxysms, which gradually increase in frequency +and severity, until at length the patient becomes asphyxiated. The +duration of the disease varies from a few hours to four or five days. + +After the acute symptoms have passed off, various localised +paralyses may develop, affecting particularly the nerves of the palatal +and orbital muscles, less frequently the lower limbs. + +#Diagnosis.#--The finding of the Klebs-Loffler bacillus is the only +conclusive evidence of the disease. The bacillus may be obtained by +swabbing the throat with a piece of aseptic--not antiseptic--cotton wool +or clean linen rag held in a pair of forceps, and rotated so as to +entangle portions of the false membrane or exudate. The swab thus +obtained is placed in a test-tube, previously sterilised by having had +some water boiled in it, and sent to a laboratory for investigation. To +identify the bacillus a piece of the membrane from the swab is rubbed on +a cover glass, dried, and stained with methylene blue or other basic +stain; or cultures may be made on agar or other suitable medium. When a +bacteriological examination is impossible, or when the clinical features +do not coincide with the results obtained, the patient should always be +treated on the assumption that he suffers from diphtheria. So much doubt +exists as to the real nature of membranous croup and its relationship to +true diphtheria, that when the diagnosis between the two is uncertain +the safest plan is to treat the case as one of diphtheria. + +In children, diphtheria may occur on the vulva, vagina, prepuce, or +glans penis, and give rise to difficulty in diagnosis, which is only +cleared up by demonstration of the bacillus. + +#Treatment.#--An attempt may be made to destroy or to counteract the +organisms by swabbing the throat with strong antiseptic solutions, such +as 1 in 1000 corrosive sublimate or 1 in 30 carbolic acid, or by +spraying with peroxide of hydrogen. + +The antitoxic serum is our sheet-anchor in the treatment of diphtheria, +and recourse should be had to its use as early as possible. + +Difficulty of swallowing may be met by the use of a stomach tube passed +either through the mouth or nose. When this is impracticable, nutrient +enemata are called for. + +In laryngeal diphtheria, the interference with respiration may call for +intubation of the larynx, or tracheotomy, but the antitoxin treatment +has greatly diminished the number of cases in which it becomes necessary +to have recourse to these measures. + +Intubation consists in introducing through the mouth into the larynx a +tube which allows the patient to breathe freely during the period while +the membrane is becoming separated and thrown off. This is best done +with the apparatus of O'Dwyer; but when this instrument is not +available, a simple gum-elastic catheter with a terminal opening (as +suggested by Macewen and Annandale) may be employed. + +When intubation is impracticable, the operation of tracheotomy is +called for if the patient's life is endangered by embarrassment of +respiration. Unless the patient is in hospital with skilled assistance +available, tracheotomy is the safer of the two procedures. + + +TETANUS + +Tetanus is a disease resulting from infection of a wound by a specific +micro-organism, the _bacillus tetani_, and characterised by increased +reflex excitability, hypertonus, and spasm of one or more groups of +voluntary muscles. + +_Etiology and Morbid Anatomy._--The tetanus bacillus, which is a perfect +anaerobe, is widely distributed in nature and can be isolated from +garden earth, dung-heaps, and stable refuse. It is a slender rod-shaped +bacillus, with a single large spore at one end giving it the shape of a +drum-stick (Fig. 26). The spores, which are the active agents in +producing tetanus, are highly resistant to chemical agents, retain their +vitality in a dry condition, and even survive boiling for five minutes. + +The organism does not readily establish itself in the human body, and +seems to flourish best when it finds a nidus in necrotic tissue and is +accompanied by aerobic organisms, which, by using up the oxygen in the +tissues, provide for it a suitable environment. The presence of a +foreign body in the wound seems to favour its action. The infection is +for all practical purposes a local one, the symptoms of the disease +being due to the toxins produced in the wound of infection acting upon +the central nervous system. + +The toxin acts principally on the nerve centres in the spinal medulla, +to which it travels from the focus of infection by way of the nerve +fibres supplying the voluntary muscles. Its first effect on the motor +ganglia of the cord is to render them hypersensitive, so that they are +excited by mild stimuli, which under ordinary conditions would produce +no reaction. As the toxin accumulates the reflex arc is affected, with +the result that when a stimulus reaches the ganglia a motor discharge +takes place, which spreads by ascending and descending collaterals to +the reflex apparatus of the whole cord. As the toxin spreads it causes +both motor hyper-tonus and hyper-excitability, which accounts for the +tonic contraction and the clonic spasms characteristic of tetanus. + +[Illustration: FIG. 26.--Bacillus of Tetanus from scraping of a wound of +finger, x 1000 diam. Basic fuchsin stain.] + +#Clinical Varieties of Tetanus.#--_Acute_ or _Fulminating +Tetanus_.--This variety is characterised by the shortness of the +incubation period, the rapidity of its progress, the severity of its +symptoms, and its all but universally fatal issue in spite of +treatment, death taking place in from one to four days. The +characteristic symptoms may appear within three or four days of the +infliction of the wound, but the incubation period may extend to three +weeks, and the wound may be quite healed before the disease declares +itself--_delayed tetanus_. Usually, however, the wound is inflamed and +suppurating, with ragged and sloughy edges. A slight feverish attack may +mark the onset of the tetanic condition, or the patient may feel +perfectly well until the spasms begin. If careful observations be made, +it may be found that the muscles in the immediate neighbourhood of the +wound are the first to become contracted; but in the majority of +instances the patient's first complaint is of pain and stiffness in the +muscles of mastication, notably the masseter, so that he has difficulty +in opening the mouth--hence the popular name "lock-jaw." The muscles of +expression soon share in the rigidity, and the face assumes a taut, +mask-like aspect. The angles of the mouth may be retracted, producing a +grinning expression known as the _risus sardonicus_. + +The next muscles to become stiff and painful are those of the neck, +especially the sterno-mastoid and trapezius. The patient is inclined to +attribute the pain and stiffness to exposure to cold or rheumatism. At +an early stage the diaphragm and the muscles of the anterior abdominal +wall become contracted; later the muscles of the back and thorax are +involved; and lastly those of the limbs. Although this is the typical +order of involvement of the different groups of muscles, it is not +always adhered to. + +To this permanent tonic contraction of the muscles there are soon added +clonic spasms. These spasms are at first slight and transient, with +prolonged intervals between the attacks, but rapidly tend to become more +frequent, more severe, and of longer duration, until eventually the +patient simply passes out of one seizure into another. + +The distribution of the spasms varies in different cases: in some it is +confined to particular groups of muscles, such as those of the neck, +back, abdominal walls, or limbs; in others all these groups are +simultaneously involved. + +When the muscles of the back become spasmodically contracted, the body +is raised from the bed, sometimes to such an extent that the patient +rests only on his heels and occiput--the position of _opisthotonos_. +Lateral arching of the body from excessive action of the muscles on one +side--_pleurosthotonos_--is not uncommon, the arching usually taking +place towards the side on which the wound of infection exists. Less +frequently the body is bent forward so that the knees and chin almost +meet (_emprosthotonos_). Sometimes all the muscles simultaneously become +rigid, so that the body assumes a statuesque attitude (_orthotonos_). +When the thoracic muscles, including the diaphragm, are thrown into +spasm, the patient experiences a distressing sensation as if he were +gripped in a vice, and has extreme difficulty in getting breath. Between +the attacks the limbs are kept rigidly extended. The clonic spasms may +be so severe as to rupture muscles or even to fracture one of the long +bones. + +As time goes on, the clonic exacerbations become more and more frequent, +and the slightest external stimulus, such as the feeling of the pulse, a +whisper in the room, a noise in the street, a draught of cold air, the +effort to swallow, a question addressed to the patient or his attempt to +answer, is sufficient to determine an attack. The movements are so +forcible and so continuous that the nurse has great difficulty in +keeping the bedclothes on the patient, or even in keeping him in bed. + +The general condition of the patient is pitiful in the extreme. He is +fully conscious of the gravity of the disease, and his mind remains +clear to the end. The suffering induced by the cramp-like spasms of the +muscles keeps him in a constant state of fearful apprehension of the +next seizure, and he is unable to sleep until he becomes utterly +exhausted. + +The temperature is moderately raised (100 o to 102 o F.), or may remain +normal throughout. Shortly before death very high temperatures (110 o F.) +have been recorded, and it has been observed that the thermometer +sometimes continues to rise after death, and may reach as high as +112 o F. or more. + +The pulse corresponds with the febrile condition. It is accelerated +during the spasms, and may become exceedingly rapid and feeble before +death, probably from paralysis of the vagus. Sudden death from cardiac +paralysis or from cardiac spasm is not uncommon. + +The respiration is affected in so far as the spasms of the respiratory +muscles produce dyspnoea, and a feeling of impending suffocation which +adds to the horrors of the disease. + +One of the most constant symptoms is a copious perspiration, the patient +being literally bathed in sweat. The urine is diminished in quantity, +but as a rule is normal in composition; as in other acute infective +conditions, albumen and blood may be present. Retention of urine may +result from spasm of the urethral muscles, and necessitate the use of +the catheter. + +The fits may cease some time before death, or, on the other hand, death +may occur during a paroxysm from fixation of the diaphragm and arrest of +respiration. + +_Differential Diagnosis._--There is little difficulty, as a rule, in +diagnosing a case of fulminating tetanus, but there are several +conditions with which it may occasionally be confused. In _strychnin +poisoning_, for example, the spasms come on immediately after the +patient has taken a toxic dose of the drug; they are clonic in +character, but the muscles are relaxed between the fits. If the dose is +not lethal, the spasms soon cease. In _hydrophobia_ a history of having +been bitten by a rabid animal is usually forthcoming; the spasms, which +are clonic in character, affect chiefly the muscles of respiration and +deglutition, and pass off entirely in the intervals between attacks. +Certain cases of _haemorrhage into the lateral ventricles_ of the brain +also simulate tetanus, but an analysis of the symptoms will prevent +errors in diagnosis. _Cerebro-spinal meningitis_ and _basal meningitis_ +present certain superficial resemblances to tetanus, but there is no +trismus, and the spasms chiefly affect the muscles of the neck and +back. _Hysteria and catalepsy_ may assume characters resembling those +of tetanus, but there is little difficulty in distinguishing between +these diseases. Lastly, in the _tetany_ of children, or that following +operations on the thyreoid gland, the spasms are of a jerking character, +affect chiefly the hands and fingers, and yield to medicinal treatment. + +#Chronic Tetanus.#--The difference between this and acute tetanus is +mainly one of degree. Its incubation period is longer, it is more slow +and insidious in its progress, and it never reaches the same degree of +severity. Trismus is the most marked and constant form of spasm; and +while the trunk muscles may be involved, those of respiration as a rule +escape. Every additional day the patient lives adds to the probability +of his ultimate recovery. When the disease does prove fatal, it is from +exhaustion, and not from respiratory or cardiac spasm. The usual +duration is from six to ten weeks. + +#Delayed Tetanus.#--During the European War acute tetanus occasionally +developed many weeks or even months after a patient had been injured, +and when the original wound had completely healed. It usually followed +some secondary operation, _e.g._, for the removal of a foreign body, or +the breaking down of adhesions, which aroused latent organisms. + +#Local Tetanus.#--This term is applied to a form of the disease in which +the hypertonus and spasms are localised to the muscles in the vicinity +of the wound. It usually occurs in patients who have had prophylactic +injections of anti-tetanic serum, the toxins entering the blood being +probably neutralised by the antibodies in circulation, while those +passing along the motor nerves are unaffected. + +When it occurs in the _limbs_, attention is usually directed to the fact +by pain accompanying the spasms; the muscles are found to be hard and +there are frequent twitchings of the limb. A characteristic reflex is +present in the lower extremity, namely, extension of the foot and leg +when the sole is tickled. + +_Cephalic Tetanus_ is another localised variety which follows injury in +the distribution of the facial nerve. It is characterised by the +occurrence on the same side as the injury, of facial spasm, rapidly +followed by more or less complete paralysis of the muscles of +expression, with unilateral trismus and difficulty in swallowing. Other +cranial nerves, particularly the oculomotor and the hypoglossal, may +also be implicated. A remarkable feature of this condition is that +although the muscles are irresponsive to ordinary physiological stimuli, +they are thrown into spasm by the abnormal impulses of tetanus. + +_Trismus._--This term is used to denote a form of tetanic spasm limited +to the muscles of mastication. It is really a mild form of chronic +tetanus, and the prognosis is favourable. It must not be confused with +the fixation of the jaw sometimes associated with a wisdom-tooth +gumboil, with tonsillitis, or with affections of the temporo-mandibular +articulation. + +_Tetanus neonatorum_ is a form of tetanus occurring in infants of about +a week old. Infection takes place through the umbilicus, and manifests +itself clinically by spasms of the muscles of mastication. It is almost +invariably fatal within a few days. + +_Prophylaxis._--Experience in the European War has established the +fact that the routine injection of anti-tetanic serum to all patients +with lacerated and contaminated wounds greatly reduces the frequency of +tetanus. The sooner the serum is given after the injury, the more +certain is its effect; within twenty-four hours 1500 units injected +subcutaneously is sufficient for the initial dose; if a longer period +has elapsed, 2000 to 3000 units should be given intra-muscularly, as +this ensures more rapid absorption. A second injection is given a week +after the first. + +The wound must be purified in the usual way, and all instruments and +appliances used for operations on tetanic patients must be immediately +sterilised by prolonged boiling. + +_Treatment._--When tetanus has developed the main indications are to +prevent the further production of toxins in the wound, and to neutralise +those that have been absorbed into the nervous system. Thorough +purification with antiseptics, excision of devitalised tissues, and +drainage of the wound are first carried out. To arrest the absorption of +toxins intra-muscular injections of 10,000 units of serum are given +daily into the muscles of the affected limb, or directly into the nerve +trunks leading from the focus of infection, in the hope of "blocking" +the nerves with antitoxin and so preventing the passage of toxins +towards the spinal cord. + +To neutralise the toxins that have already reached the spinal cord, 5000 +units should be injected intra-thecally daily for four or five days, the +foot of the bed being raised to enable the serum to reach the upper +parts of the cord. + +The quantity of toxin circulating in the blood is so small as to be +practically negligible, and the risk of anaphylactic shock attending +intra-venous injection outweighs any benefit likely to follow this +procedure. + +Baccelli recommends the injection of 20 c.c. of a 1 in 100 solution of +carbolic acid into the subcutaneous tissues every four hours during the +period that the contractions persist. Opinions vary as to the +efficiency of this treatment. The intra-thecal injection of 10 c.c. of a +15 per cent. solution of magnesium sulphate has proved beneficial in +alleviating the severity of the spasms, but does not appear to have a +curative effect. + +To conserve the patient's strength by preventing or diminishing the +severity of the spasms, he should be placed in a quiet room, and every +form of disturbance avoided. Sedatives, such as bromides, paraldehyde, +or opium, must be given in large doses. Chloral is perhaps the best, and +the patient should rarely have less than 150 grains in twenty-four +hours. When he is unable to swallow, it should be given by the rectum. +The administration of chloroform is of value in conserving the strength +of the patient, by abolishing the spasms, and enabling the attendants to +administer nourishment or drugs either through a stomach tube or by the +rectum. Extreme elevation of temperature is met by tepid sponging. It is +necessary to use the catheter if retention of urine occurs. + + +HYDROPHOBIA + +Hydrophobia is an acute infective disease following on the bite of a +rabid animal. It most commonly follows the bite or lick of a rabid dog +or cat. The virus appears to be communicated through the saliva of the +animal, and to show a marked affinity for nerve tissues; and the disease +is most likely to develop when the patient is infected on the face or +other uncovered part, or in a part richly endowed with nerves. + +A dog which has bitten a person should on no account be killed until its +condition has been proved one way or the other. Should rabies develop +and its destruction become necessary, the head and spinal cord should be +retained and forwarded, packed in ice, to a competent observer. Much +anxiety to the person bitten and to his friends would be avoided if +these rules were observed, because in many cases it will be shown that +the animal did not after all suffer from rabies, and that the patient +consequently runs no risk. If, on the other hand, rabies is proved to be +present, the patient should be submitted to the Pasteur treatment. + +_Clinical Features._--There is almost always a history of the patient +having been bitten or licked by an animal supposed to suffer from +rabies. The incubation period averages about forty days, but varies from +a fortnight to seven or eight months, and is shorter in young than in +old persons. The original wound has long since healed, and beyond a +slight itchiness or pain shooting along the nerves of the part, shows no +sign of disturbance. A few days of general malaise, with chills and +giddiness precede the onset of the acute manifestations, which affect +chiefly the muscles of deglutition and respiration. One of the earliest +signs is that the patient has periodically a sudden catch in his +breathing "resembling what often occurs when a person goes into a cold +bath." This is due to spasm of the diaphragm, and is frequently +accompanied by a loud-sounding hiccough, likened by the laity to the +barking of a dog. Difficulty in swallowing fluids may be the first +symptom. + +The spasms rapidly spread to all the muscles of deglutition and +respiration, so that the patient not only has the greatest difficulty in +swallowing, but has a constant sense of impending suffocation. To add to +his distress, a copious secretion of viscid saliva fills his mouth. Any +voluntary effort, as well as all forms of external stimuli, only serve +to aggravate the spasms which are always induced by the attempt to +swallow fluid, or even by the sound of running water. + +The temperature is raised; the pulse is small, rapid, and intermittent; +and the urine may contain sugar and albumen. + +The mind may remain clear to the end, or the patient may have delusions, +supposing himself to be surrounded by terrifying forms. There is always +extreme mental agitation and despair, and the sufferer is in constant +fear of his impending fate. Happily the inevitable issue is not long +delayed, death usually occurring in from two to four days from the +onset. The symptoms of the disease are so characteristic that there is +no difficulty in diagnosis. The only condition with which it is liable +to be confused is the variety of cephalic tetanus in which the muscles +of deglutition are specially involved--the so-called tetanus +hydrophobicus. + +_Prophylaxis._--The bite of an animal suspected of being rabid should be +cauterised at once by means of the actual or Paquelin cautery, or by a +strong chemical escharotic such as pure carbolic acid, after which +antiseptic dressings are applied. + +It is, however, to Pasteur's _preventive inoculation_ that we must look +for our best hope of averting the onset of symptoms. "It may now be +taken as established that a grave responsibility rests on those +concerned if a person bitten by a mad animal is not subjected to the +Pasteur treatment" (Muir and Ritchie). + +This method is based on the fact that the long incubation period of the +disease admits of the patient being inoculated with a modified virus +producing a mild attack, which protects him from the natural disease. + +_Treatment._--When the symptoms have once developed they can only be +palliated. The patient must be kept absolutely quiet and free from all +sources of irritation. The spasms may be diminished by means of chloral +and bromides, or by chloroform inhalation. + + +ANTHRAX + +Anthrax is a comparatively rare disease, communicable to man from +certain of the lower animals, such as sheep, oxen, horses, deer, and +other herbivora. In animals it is characterised by symptoms of acute +general poisoning, and, from the fact that it produces a marked +enlargement of the spleen, is known in veterinary surgery as "splenic +fever." + +The _bacillus anthracis_ (Fig. 27), the largest of the known pathogenic +bacteria, occurs in groups or in chains made up of numerous bacilli, +each bacillus measuring from 6 to 8 u in length. The organisms are found +in enormous numbers throughout the bodies of animals that have died of +anthrax, and are readily recognised and cultivated. Sporulation only +takes place outside the body, probably because free oxygen is necessary +to the process. In the spore-free condition, the organisms are readily +destroyed by ordinary germicides, and by the gastric juice. The spores, +on the other hand, have a high degree of resistance. Not only do they +remain viable in the dry state for long periods, even up to a year, but +they survive boiling for five minutes, and must be subjected to dry heat +at 140 o C. for several hours before they are destroyed. + +[Illustration: FIG. 27.--Bacillus of Anthrax in section of skin, from a +case of malignant pustule; shows vesicle containing bacilli. x 400 diam. +Gram's stain.] + +_Clinical Varieties of Anthrax._--In man, anthrax may manifest itself in +one of three clinical forms. + +It may be transmitted by means of spores or bacilli directly from a +diseased animal to those who, by their occupation or otherwise, are +brought into contact with it--for example, shepherds, butchers, +veterinary surgeons, or hide-porters. Infection may occur on the face by +the use of a shaving-brush contaminated by spores. The path of infection +is usually through an abrasion of the skin, and the primary +manifestations are local, constituting what is known as _the malignant +pustule_. + +In other cases the disease is contracted through the inhalation of the +dried spores into the respiratory passages. This occurs oftenest in +those who work amongst wool, fur, and rags, and a form of acute +pneumonia of great virulence ensues. This affection is known as +_wool-sorter's disease_, and is almost universally fatal. + +There is reason to believe that infection may also take place by means +of spores ingested into the alimentary canal in meat or milk derived +from diseased animals, or in infected water. + +#Clinical Features of Malignant Pustule.#--We shall here confine +ourselves to the consideration of the local lesion as it occurs in the +skin--_the malignant pustule_. + +The point of infection is usually on an uncovered part of the body, such +as the face, hands, arms, or back of the neck, and the wound may be +exceedingly minute. After an incubation period varying from a few hours +to several days, a reddish nodule resembling a small boil appears at the +seat of inoculation, the immediately surrounding skin becomes swollen +and indurated, and over the indurated area there appear a number of +small vesicles containing serum, which at first is clear but soon +becomes blood-stained (Fig. 28). Coincidently the subcutaneous tissue +for a considerable distance around becomes markedly oedematous, and the +skin red and tense. Within a few hours, blood is extravasated in the +centre of the indurated area, the blisters burst, and a dark brown or +black eschar, composed of necrosed skin and subcutaneous tissue and +altered blood, forms (Fig. 29). Meanwhile the induration extends, fresh +vesicles form and in turn burst, and the eschar increases in size. The +neighbouring lymph glands soon become swollen and tender. The affected +part is hot and itchy, but the patient does not complain of great pain. +There is a moderate degree of constitutional disturbance, with headache, +nausea, and sometimes shivering. + +If the infection becomes generalised--_anthracaemia_--the temperature +rises to 103 o or 104 o F., the pulse becomes feeble and rapid, and other +signs of severe blood-poisoning appear: vomiting, diarrhoea, pains in the +limbs, headache and delirium, and the condition proves fatal in from +five to eight days. + +_Differential Diagnosis._--When the malignant pustule is fully +developed, the central slough with the surrounding vesicles and the +widespread oedema are characteristic. The bacillus can be obtained from +the peripheral portion of the slough, from the blisters, and from the +adjacent lymph vessels and glands. The occupation of the patient may +suggest the possibility of anthrax infection. + +[Illustration: FIG. 28.--Malignant Pustule, third day after infection +with Anthrax, showing great oedema of upper extremity and pectoral region +(cf. Fig. 29).] + +[Illustration: FIG. 29.--Malignant Pustule, fourteen days after +infection, showing black eschar in process of separation. The oedema has +largely disappeared. Treated by Sclavo's serum (cf. Fig. 28).] + +_Prophylaxis._--Any wound suspected of being infected with anthrax +should at once be cauterised with caustic potash, the actual cautery, or +pure carbolic acid. + +_Treatment._--The best results hitherto obtained have followed the use +of the anti-anthrax serum introduced by Sclavo. The initial dose is 40 +c.c., and if the serum is given early in the disease, the beneficial +effects are manifest in a few hours. Favourable results have also +followed the use of pyocyanase, a vaccine prepared from the bacillus +pyocyaneus. + +By some it is recommended that the local lesion should be freely +excised; others advocate cauterisation of the affected part with solid +caustic potash till all the indurated area is softened. Graf has had +excellent results by the latter method in a large series of cases, the +oedema subsiding in about twenty-four hours and the constitutional +symptoms rapidly improving. Wolff and Wiewiorowski, on the other hand, +have had equally good results by simply protecting the local lesion with +a mild antiseptic dressing, and relying upon general treatment. + +The general treatment consists in feeding and stimulating the patient as +freely as possible. Quinine, in 5 to 10 grain doses every four hours, +and powdered ipecacuanha, in 40 to 60 grain doses every four hours, have +also been employed with apparent benefit. + + +GLANDERS + +Glanders is due to the action of a specific bacterium, the _bacillus +mallei_, which resembles the tubercle bacillus, save that it is somewhat +shorter and broader, and does not stain by Gram's method. It requires +higher temperatures for its cultivation than the tubercle bacillus, and +its growth on potato is of a characteristic chocolate-brown colour, with +a greenish-yellow ring at the margin of the growth. The bacillus mallei +retains its vitality for long periods under ordinary conditions, but is +readily killed by heat and chemical agents. It does not form spores. + +_Clinical Features._--Both in the lower animals and in man the bacillus +gives rise to two distinct types of disease--_acute glanders_, and +_chronic glanders_ or _farcy_. + +Acute Glanders is most commonly met with in the horse and in other +equine animals, horned cattle being immune. It affects the septum of the +nose and adjacent parts, firm, translucent, greyish nodules containing +lymphoid and epithelioid cells appearing in the mucous membrane. These +nodules subsequently break down in the centre, forming irregular +ulcers, which are attended with profuse discharge, and marked +inflammatory swelling. The cervical lymph glands, as well as the lungs, +spleen, and liver, may be the seat of secondary nodules. + +_In man_, acute glanders is commoner than the chronic variety. Infection +always takes place through an abraded surface, and usually on one of the +uncovered parts of the body--most commonly the skin of the hands, arms, +or face; or on the mucous membrane of the mouth, nose, or eye. The +disease has been acquired by accidental inoculation in the course of +experimental investigations in the laboratory, and proved fatal. The +incubation period is from three to five days. + +The _local_ manifestations are pain and swelling in the region of the +infected wound, with inflammatory redness around it and along the lines +of the superficial lymphatics. In the course of a week, small, firm +nodules appear, and are rapidly transformed into pustules. These may +occur on the face and in the vicinity of joints, and may be mistaken for +the eruption of small-pox. + +After breaking down, these pustules give rise to irregular ulcers, which +by their confluence lead to extensive destruction of skin. Sometimes the +nasal mucous membrane becomes affected, and produces a discharge--at +first watery, but later sanious and purulent. Necrosis of the bones of +the nose may take place, in which case the discharge becomes peculiarly +offensive. In nearly every case metastatic abscesses form in different +parts of the body, such as the lungs, joints, or muscles. + +During the development of the disease the patient feels ill, complains +of headache and pains in the limbs, the temperature rises to 104 o or +even to 106 o F., and assumes a pyaemic type. The pulse becomes rapid and +weak. The tongue is dry and brown. There is profuse sweating, +albuminuria, and often insomnia with delirium. Death may take place +within a week, but more frequently occurs during the second or third +week. + +_Differential Diagnosis._--There is nothing characteristic in the site +of the primary lesion in man, and the condition may, during the early +stages, be mistaken for a boil or carbuncle, or for any acute +inflammatory condition. Later, the disease may simulate acute articular +rheumatism, or may manifest all the symptoms of acute septicaemia or +pyaemia. The diagnosis is established by the recognition of the bacillus. +Veterinary surgeons attach great importance to the mallein test as a +means of diagnosis in animals, but in the human subject its use is +attended with considerable risk and is not to be recommended. + +_Treatment._--Excision of the primary nodule, followed by the +application of the thermo-cautery and sponging with pure carbolic acid, +should be carried out, provided the condition is sufficiently limited to +render complete removal practicable. + +When secondary abscesses form in accessible situations, they must be +incised, disinfected, and drained. The general treatment is carried out +on the same lines as in other acute infective diseases. + +#Chronic Glanders.#--_In the horse_ the chronic form of glanders is +known as _farcy_, and follows infection through an abrasion of the skin, +involving chiefly the superficial lymph vessels and glands. The +lymphatics become indurated and nodular, constituting what veterinarians +call _farcy pipes_ and _farcy buds_. + +_In man_ also the clinical features of the chronic variety of the +disease are somewhat different from those of the acute form. Here, too, +infection takes place through a broken cutaneous surface, and leads to a +superficial lymphangitis with nodular thickening of the lymphatics +(_farcy buds_). The neighbouring glands soon become swollen and +indurated. The primary lesion meanwhile inflames, suppurates, and, after +breaking down, leaves a large, irregular ulcer with thickened edges and +a foul, purulent or bloody discharge. The glands break down in the same +way, and lead to wide destruction of skin, and the resulting sinuses and +ulcers are exceedingly intractable. Secondary deposits in the +subcutaneous tissue, the muscles, and other parts, are not uncommon, and +the nasal mucous membrane may become involved. The disease often runs a +chronic course, extending to four or five months, or even longer. +Recovery takes place in about 50 per cent. of cases, but the +convalescence is prolonged, and at any time the disease may assume the +characters of the acute variety and speedily prove fatal. + +The _differential diagnosis_ is often difficult, especially in the +chronic nodules, in which it may be impossible to demonstrate the +bacillus. The ulcerated lesions of farcy have to be distinguished from +those of tubercle, syphilis, and other forms of infective granuloma. + +_Treatment._--Limited areas of disease should be completely excised. The +general condition of the patient must be improved by tonics, good food, +and favourable hygienic surroundings. In some cases potassium iodide +acts beneficially. + + +ACTINOMYCOSIS + +Actinomycosis is a chronic disease due to the action of an organism +somewhat higher in the vegetable scale than ordinary bacteria--the +_streptothrix actinomyces_ or _ray fungus_. + +[Illustration: FIG. 30.--Section of Actinomycosis Colony in Pus from +Abscess of Liver, showing filaments and clubs of streptothrix +actinomyces. x 400 diam. Gram's stain.] + +_Etiology and Morbid Anatomy._--The actinomyces, which has never been +met with outside the body, gives rise in oxen, horses, and other animals +to tumour-like masses composed of granulation tissue; and in man to +chronic suppurative processes which may result in a condition resembling +chronic pyaemia. The actinomyces is more complex in structure than other +pathogenic organisms, and occurs in the tissues in the form of small, +round, semi-translucent bodies, about the size of a pin-head or less, +and consisting of colonies of the fungus. On account of their yellow +tint they are spoken of as "sulphur grains." Each colony is made up of a +series of thin, interlacing, and branching _filaments_, some of which +are broken up so as to form masses or chains of _cocci_; and around the +periphery of the colony are elongated, pear-shaped, hyaline, _club-like +bodies_ (Fig. 30). + +Infection is believed to be conveyed by the husks of cereals, especially +barley; and the organism has been found adhering to particles of grain +embedded in the tissues of animals suffering from the disease. In the +human subject there is often a history of exposure to infection from +such sources, and the disease is said to be most common during the +harvesting months. + +Around each colony of actinomyces is a zone of granulation tissue in +which suppuration usually occurs, so that the fungus comes to lie in a +bath of greenish-yellow pus. As the process spreads these purulent foci +become confluent and form abscess cavities. When metastasis takes place, +as it occasionally does, the fungus is transmitted by the blood vessels, +as in pyaemia. + +_Clinical features._--In man the disease may be met with in the skin, +the organisms gaining access through an abrasion, and spreading by the +formation of new nodules in the same way as tuberculosis. + +The region of the mouth and jaws is one of the commonest sites of +surgical actinomycosis. Infection takes place, as a rule, along the side +of a carious tooth, and spreads to the lower jaw. A swelling is slowly +and insidiously developed, but when the loose connective tissue of the +neck becomes infiltrated, the spread is more rapid. The whole region +becomes infiltrated and swollen, and the skin ultimately gives way and +free suppuration occurs, resulting in the formation of sinuses. The +characteristic greenish-grey or yellow granules are seen in the pus, and +when examined microscopically reveal the colonies of actinomyces. + +Less frequently the maxilla becomes affected, and the disease may spread +to the base of the skull and brain. The vertebrae may become involved by +infection taking place through the pharynx or oesophagus, and leading to +a condition simulating tuberculous disease of the spine. When it +implicates the intestinal canal and its accessory glands, the lungs, +pleura, and bronchial tubes, or the brain, the disease is not amenable +to surgical treatment. + +_Differential Diagnosis._--The conditions likely to be mistaken for +surgical actinomycosis are sarcoma, tubercle, and syphilis. In the early +stages the differential diagnosis is exceedingly difficult. In many +cases it is only possible when suppuration has occurred and the fungus +can be demonstrated. + +The slow destruction of the affected tissue by suppuration, the absence +of pain, tenderness, and redness, simulate tuberculosis, but the absence +of glandular involvement helps to distinguish it. + +Syphilitic lesions are liable to be mistaken for actinomycosis, all the +more that in both diseases improvement follows the administration of +iodides. When it affects the lower jaw, in its early stages, +actinomycosis may closely simulate a periosteal sarcoma. + +[Illustration: FIG. 31.--Actinomycosis of Maxilla. The disease spread to +opposite side; finally implicated base of skull, and proved fatal. +Treated by radium. + +(Mr. D. P. D. Wilkie's case.)] + +The recognition of the fungus is the crucial point in diagnosis. + +_Prognosis._--Spontaneous cure rarely occurs. When the disease +implicates internal organs, it is almost always fatal. On external parts +the destructive process gradually spreads, and the patient eventually +succumbs to superadded septic infection. When, from its situation, the +primary focus admits of removal, the prognosis is more favourable. + +_Treatment._--The surgical treatment is early and free removal of the +affected tissues, after which the wound is cauterised by the actual +cautery, and sponged over with pure carbolic acid. The cavity is packed +with iodoform gauze, no attempt being made to close the wound. + +Success has attended the use of a vaccine prepared from cultures of the +organism; and the X-rays and radium, combined with the administration of +iodides in large doses, or with intra-muscular injections of a 10 per +cent. solution of cacodylate of soda, have proved of benefit. + +MYCETOMA, OR MADURA FOOT.--Mycetoma is a chronic disease due to +an organism resembling that of actinomycosis, but not identical with it. +It is endemic in certain tropical countries, and is most frequently met +with in India. Infection takes place through an abrasion of the skin, +and the disease usually occurs on the feet of adult males who work +barefooted in the fields. + +_Clinical Features._--The disease begins on the foot as an indurated +patch, which becomes discoloured and permeated by black or yellow +nodules containing the organism. These nodules break down by +suppuration, and numerous minute abscesses lined by granulation tissues +are thus formed. In the pus are found yellow particles likened to +fish-roe, or black pigmented granules like gunpowder. Sinuses form, and +the whole foot becomes greatly swollen and distorted by flattening of +the sole and dorsiflexion of the toes. Areas of caries or necrosis occur +in the bones, and the disease gradually extends up the leg (Fig. 32). +There is but little pain, and no glandular involvement or constitutional +disturbance. The disease runs a prolonged course, sometimes lasting for +twenty or thirty years. Spontaneous cure never takes place, and the risk +to life is that of prolonged suppuration. + +If the disease is localised, it may be removed by the knife or sharp +spoon, and the part afterwards cauterised. As a rule, amputation well +above the disease is the best line of treatment. Unlike actinomycosis, +this disease does not appear to be benefited by iodides. + +[Illustration: FIG. 32.--Mycetoma, or Madura Foot. (Museum of Royal +College of Surgeons, Edinburgh.)] + +DELHI BOIL.--_Synonyms_--Aleppo boil, Biskra button, Furunculus +orientalis, Natal sore. + +Delhi boil is a chronic inflammatory disease, most commonly met with in +India, especially towards the end of the wet season. The disease occurs +oftenest on the face, and is believed to be due to an organism, although +this has not been demonstrated. The infection is supposed to be conveyed +through water used for washing, or by the bites of insects. + +_Clinical Features._--A red spot, resembling the mark of a mosquito +bite, appears on the affected part, and is attended with itching. After +becoming papular and increasing to the size of a pea, desquamation takes +place, leaving a dull-red surface, over which in the course of several +weeks there develops a series of small yellowish-white spots, from which +serum exudes, and, drying, forms a thick scab. Under this scab the skin +ulcerates, leaving small oval sores with sharply bevelled edges, and an +uneven floor covered with yellow or sanious pus. These sores vary in +number from one to forty or fifty. They may last for months and then +heal spontaneously, or may continue to spread until arrested by suitable +treatment. There is no enlargement of adjacent glands, and but little +inflammatory reaction in the surrounding tissues; nor is there any +marked constitutional disturbance. Recovery is often followed by +cicatricial contraction leading to deformity of the face. + +The _treatment_ consists in destroying the original papule by the actual +cautery, acid nitrate of mercury, or pure carbolic acid. The ulcers +should be scraped with the sharp spoon, and cauterised. + +CHIGOE.--Chigoe or jigger results from the introduction of the +eggs of the sand-flea (_Pulex penetrans_) into the tissues. It occurs in +tropical Africa, South America, and the West Indies. The impregnated +female flea remains attached to the part till the eggs mature, when by +their irritation they cause localised inflammation with pustules or +vesicles on the surface. Children are most commonly attacked, +particularly about the toe-nails and on the scrotum. The treatment +consists in picking out the insect with a blunt needle, special care +being taken not to break it up. The puncture is then cauterised. The +application of essential oils to the feet acts as a preventive. + +POISONING BY INSECTS.--The bites of certain insects, such as +mosquitoes, midges, different varieties of flies, wasps, and spiders, +may be followed by serious complications. The effects are mainly due to +the injection of an irritant acid secretion, the exact nature of which +has not been ascertained. + +The local lesion is a puncture, surrounded by a zone of hyperaemia, +wheals, or vesicles, and is associated with burning sensations and +itching which usually pass off in a few hours, but may recur at +intervals, especially when the patient is warm in bed. Scratching also +reproduces the local signs and symptoms. Where the connective tissue is +loose--for example, in the eyelid or scrotum--there is often +considerable swelling; and in the mouth and fauces this may lead to +oedema of the glottis, which may prove fatal. + +The _treatment_ consists in the local application of dilute alkalies +such as ammonia water, solutions of carbonate or bicarbonate of soda, or +sal-volatile. Weak carbolic lotions, or lead and opium lotion, are +useful in allaying the local irritation. One of the best means of +neutralising the poison is to apply to the sting a drop of a mixture +containing equal parts of pure carbolic acid and liquor ammoniae. + +Free stimulation is called for when severe constitutional symptoms are +present. + +SNAKE-BITES.--We are here only concerned with the injuries +inflicted by the venomous varieties of snakes, the most important of +which are the hooded snakes of India, the rattle-snakes of America, the +horned snakes of Africa, the viper of Europe, and the adder of the +United Kingdom. + +While the virulence of these creatures varies widely, they are all +capable of producing in a greater or less degree symptoms of acute +poisoning in man and other animals. By means of two recurved fangs +attached to the upper jaw, and connected by a duct with poison-secreting +glands, they introduce into their prey a thick, transparent, yellowish +fluid, of acid reaction, probably of the nature of an albumose, and +known as the _venom_. + +The _clinical features_ resulting from the injection of the venom vary +directly in intensity with the amount of the poison introduced, and the +rapidity with which it reaches the circulating blood, being most marked +when it immediately enters a large vein. The poison is innocuous when +taken into the stomach. + +_Locally_ the snake inflicts a double wound, passing vertically into the +subcutaneous tissue; the edges of the punctures are ecchymosed, and the +adjacent vessels the seat of thrombosis. Immediately there is intense +pain, and considerable swelling with congestion, which tends to spread +towards the trunk. Extensive gangrene may ensue. There is no special +involvement of the lymphatics. + +The _general symptoms_ may come on at once if the snake is a +particularly venomous one, or not for some hours if less virulent. In +the majority of viper or adder bites the constitutional disturbance is +slight and transient, if it appears at all. Snake-bites in children are +particularly dangerous. + +The patient's condition is one of profound shock with faintness, +giddiness, dimness of sight, and a feeling of great terror. The pupils +dilate, the skin becomes moist with a clammy sweat, and nausea with +vomiting, sometimes of blood, ensues. High fever, cramps, loss of +sensation, haematuria, and melaena are among the other symptoms that may +be present. The pulse becomes feeble and rapid, the respiratory nerve +centres are profoundly depressed, and delirium followed by coma usually +precedes the fatal issue, which may take place in from five to +forty-eight hours. If the patient survives for two days the prognosis is +favourable. + +_Treatment._--A broad ligature should be tied tightly round the limb +above the seat of infection, to prevent the poison passing into the +general circulation, and bleeding from the wound should be encouraged. +The application of an elastic bandage from above downward to empty the +blood out of the infected portion of the limb has been recommended. The +whole of the bite should at once be excised, and crystals of +permanganate of potash rubbed into the wound until it is black, or +peroxide of hydrogen applied with the object of destroying the poison by +oxidation. + +The general treatment consists in free stimulation with whisky, brandy, +ammonia, digitalis, etc. Hypodermic injections of strychnin in doses +sufficiently large to produce a slight degree of poisoning by the drug +are particularly useful. The most rational treatment, when it is +available, is the use of the _antivenin_ introduced by Fraser and +Calmette. + + + + +CHAPTER VIII + +TUBERCULOSIS + + +Tubercle bacillus--Methods of infection--Inherited and acquired + predisposition--Relationship of tuberculosis to injury--Human and + bovine tuberculosis--Action of the bacillus upon the + tissues--Tuberculous granulation tissue--Natural cure--Recrudescence + of the disease--THE TUBERCULOUS ABSCESS--Contents and wall of the + abscess--Tuberculous sinuses. + +Tuberculosis occurs more frequently in some situations than in others; +it is common, for example, in lymph glands, in bones and joints, in the +peritoneum, the intestine, the kidney, prostate and testis, and in the +skin and subcutaneous cellular tissue; it is seldom met with in the +breast or in muscles, and it rarely affects the ovary, the pancreas, the +parotid, or the thyreoid. + +_Tubercle bacilli_ vary widely in their virulence, and they are more +tenacious of life than the common pyogenic bacteria. In a dry state, for +example, they can retain their vitality for months; and they can also +survive immersion in water for prolonged periods. They resist the action +of the products of putrefaction for a considerable time, and are not +destroyed by digestive processes in the stomach and intestine. They may +be killed in a few minutes by boiling, or by exposure to steam under +pressure, or by immersion for less than a minute in 1 in 20 carbolic +lotion. + +#Methods of Infection.#--In marked contrast to what obtains in the +infective diseases that have already been described, tuberculosis rarely +results from the _infection of a wound_. In exceptional instances, +however, this does occur, and in illustration of the fact may be cited +the case of a servant who cut her finger with a broken spittoon +containing the sputum of her consumptive master; the wound subsequently +showed evidence of tuberculous infection, which ultimately spread up +along the lymph vessels of the arm. Pathologists, too, whose hands, +before the days of rubber gloves, were frequently exposed to the contact +of tuberculous tissues and pus, were liable to suffer from a form of +tuberculosis of the skin of the finger, known as _anatomical tubercle_. +Slight wounds of the feet in children who go about barefoot in towns +sometimes become infected with tubercle. Operation wounds made with +instruments contaminated with tuberculous material have also been known +to become infected. It is highly probable that the common form of +tuberculosis of the skin known as "lupus" arises by direct infection +from without. + +[Illustration: FIG. 33.--Tubercle Bacilli in caseous material +x 1000 diam. Z. Neilsen stain.] + +In the vast majority of cases the tubercle bacillus gains entrance to +the body by way of the mucous surfaces, the organisms being either +inhaled or swallowed; those inhaled are mostly derived from the human +subject, those swallowed, from cattle. Bacilli, whether inhaled or +swallowed, are especially apt to lodge about the pharynx and pass to the +pharyngeal lymphoid tissue and tonsils, and by way of the lymph vessels +to the glands. The glands most frequently infected in this way are the +cervical glands, and those within the cavity of the chest--particularly +the bronchial glands at the root of the lung. From these, infection +extends at any later period in life to the bones, joints, and internal +organs. + +There is reason to believe that the organisms may lie in a dormant +condition for an indefinite period in these glands, and only become +active long afterwards, when some depression of the patient's health +produces conditions which favour their growth. When the organisms become +active in this way, the tuberculous tissue undergoes softening and +disintegration, and the infective material, by bursting into an adjacent +vein, may enter the blood-stream, in which it is carried to distant +parts of the body. In this way a _general tuberculosis_ may be set up, +or localised foci of tuberculosis may develop in the tissues in which +the organisms lodge. Many tuberculous patients are to be regarded as +possessing in their bronchial glands, or elsewhere, an internal store of +bacilli, to which the disease for which advice is sought owes its +origin, and from which similar outbreaks of tuberculosis may originate +in the future. + +_The alimentary mucous membrane_, especially that of the lower ileum and +caecum, is exposed to infection by swallowed sputum and by food +materials, such as milk, containing tubercle bacilli. The organisms may +lodge in the mucous membrane and cause tuberculous ulceration, or they +may be carried through the wall of the bowel into the lacteals, along +which they pass to the mesenteric glands where they become arrested and +give rise to tuberculous disease. + +#Relationship of Tuberculosis to Trauma.#--Any tissue whose vitality has +been lowered by injury or disease furnishes a favourable nidus for the +lodgment and growth of tubercle bacilli. The injury or disease, however, +is to be looked upon as determining the _localisation_ of the +tuberculous lesion rather than as an essential factor in its causation. +In a person, for example, in whose blood tubercle bacilli are +circulating and reaching every tissue and organ of the body, the +occurrence of tuberculous disease in a particular part may be determined +by the depression of the tissues resulting from an injury of that part. +There can be no doubt that excessive movement and jarring of a limb +aggravates tuberculous disease of a joint; also that an injury may light +up a focus that has been long quiescent, but we do not agree with +those--Da Costa, for example--who maintain that injury may be a +determining cause of tuberculosis. The question is not one of mere +academic interest, but one that may raise important issues in the law +courts. + +#Human and Bovine Tuberculosis.#--The frequency of the bovine bacillus +in the abdominal and in the glandular and osseous tuberculous lesions of +children would appear to justify the conclusion that the disease is +transmissible from the ox to the human subject, and that the milk of +tuberculous cows is probably a common vehicle of transmission. + +#Changes in the Tissues following upon the successful Lodgment of +Tubercle Bacilli.#--The action of the bacilli on the tissues results in +the formation of granulation tissue comprising characteristic tissue +elements and with a marked tendency to undergo caseation. + +The recognition of the characteristic elements, with or without +caseation, is usually sufficient evidence of the tuberculous nature of +any portion of tissue examined for diagnostic purposes. The recognition +of the bacillus itself by appropriate methods of staining makes the +diagnosis a certainty; but as it is by no means easy to identify the +organism in many forms of surgical tuberculosis, it may be necessary to +have recourse to experimental inoculation of susceptible animals such as +guinea-pigs. + +The changes subsequent to the formation of tuberculous granulation +tissue are liable to many variations. It must always be borne in mind +that although the bacilli have effected a lodgment and have inaugurated +disease, the relation between them and the tissues remains one of mutual +antagonism; which of them is to gain and keep the upper hand in the +conflict depends on their relative powers of resistance. + +If the tissues prevail, there ensues a process of repair. In the +immediate vicinity of the area of infection young connective tissue, and +later, fibrous tissue, is formed. This may replace the tuberculous +tissue and bring about repair--a fibrous cicatrix remaining to mark the +scene of the previous contest. Scars of this nature are frequently +discovered at the apex of the lung after death in persons who have at +one time suffered from pulmonary phthisis. Under other circumstances, +the tuberculous tissue that has undergone caseation, or even +calcification, is only encapsulated by the new fibrous tissue, like a +foreign body. Although this may be regarded as a victory for the +tissues, the cure, if such it may be called, is not necessarily a +permanent one, for at any subsequent period, if the part affected is +disturbed by injury or through some other influence, the encapsulated +tubercle may again become active and get the upper hand of the tissues, +and there results a relapse or recrudescence of the disease. This +_tendency to relapse_ after apparent cure is a notable feature of +tuberculous disease as it is met with in the spine, or in the +hip-joint, and it necessitates a prolonged course of treatment to give +the best chance of a lasting cure. + +If, however, at the inauguration of the tuberculous disease the bacilli +prevail, the infection tends to spread into the tissues surrounding +those originally infected, and more and more tuberculous granulation +tissue is formed. Finally the tuberculous tissue breaks down and +liquefies, resulting in the formation of a cold abscess. In their +struggle with the tissues, tubercle bacilli receive considerable support +and assistance from any pyogenic organisms that may be present. A +tuberculous infection may exhibit its aggressive qualities in a more +serious manner by sending off detachments of bacilli, which are carried +by the lymphatics to the nearest glands, or by the blood-stream to more +distant, and it may be to all, parts of the body. When the infection is +thus generalised, the condition is called _general tuberculosis_. +Considering the extraordinary frequency of localised forms of surgical +tuberculosis, general dissemination of the disease is rare. + +#The clinical features# of surgical tuberculosis will be described with +the individual tissues and organs, as they vary widely according to the +situation of the lesion. + +#The general treatment# consists in combating the adverse influences +that have been mentioned as increasing the liability to tuberculous +infection. Within recent years the value of the "open-air" treatment has +been widely recognised. An open-air life, even in the centre of a city, +may be followed by marked improvement, especially in the hospital class +of patient, whose home surroundings tend to favour the progress of the +disease. The purer air of places away from centres of population is +still better; and, according to the idiosyncrasies of the individual +patient, mountain air or that of the sea coast may be preferred. In view +of the possible discomforts and gastric disturbance which may attend a +sea-voyage, this should be recommended to patients suffering from +tuberculous lesions with more caution than has hitherto been exercised. +The diet must be a liberal one, and should include those articles which +are at the same time easily digested and nourishing, especially proteids +and fats; milk obtained from a reliable source and underdone +butcher-meat are among the best. When the ordinary nourishment taken is +insufficient, it may be supplemented by such articles as malt extract, +stout, and cod-liver oil. The last is specially beneficial in patients +who do not take enough fat in other forms. It is noteworthy that many +tuberculous patients show an aversion to fat. + +For _the use of tuberculin in diagnosis_ and for _the vaccine treatment +of tuberculosis_ the reader is referred to text-books on medicine. + +In addition to increasing the resisting power of the patient, it is +important to enable the fluids of the body, so altered, to come into +contact with the tuberculous focus. One of the obstacles to this is that +the focus is often surrounded by tissues or fluids which have been +almost entirely deprived of bactericidal substances. In the case of +caseated glands in the neck, for example, it is obvious that the removal +of this inert material is necessary before the tissues can be irrigated +with fluids of high bactericidal value. Again, in tuberculous ascites +the abdominal cavity is filled with a fluid practically devoid of +anti-bacterial substances, so that the bacilli are able to thrive and +work their will on the tissues. When the stagnant fluid is got rid of by +laparotomy, the parts are immediately douched with lymph charged with +protective substances, the bactericidal power of which may be many times +that of the fluid displaced. + +It is probable that the beneficial influence of _counter-irritants_, +such as blisters, and exposure to the _Finsen light_ and other forms of +_rays_, is to be attributed in part to the increased flow of blood to +the infected tissues. + +_Artificial Hyperaemia._--As has been explained, the induction of +hyperaemia by the method devised by Bier, constitutes one of our most +efficient means of combating bacterial infection. The treatment of +tuberculosis on this plan has been proved by experience to be a valuable +addition to our therapeutic measures, and the simplicity of its +application has led to its being widely adopted in practice. It results +in an increase in the reactive changes around the tuberculous focus, an +increase in the immigration of leucocytes, and infiltration with the +lymphocytes. + +The constricting bandage should be applied at some distance above the +seat of infection; for instance, in disease of the wrist, it is put on +above the elbow, and it must not cause pain either where it is applied +or in the diseased part. The bandage is only applied for a few hours +each day, either two hours at a time or twice a day for one hour, and, +while it is on, all dressings are removed save a piece of sterile gauze +over any wound or sinus that may be present. The process of cure takes a +long time--nine or even twelve months in the case of a severe joint +affection. + +In cases in which a constricting bandage is inapplicable, for example, +in cold abscesses, tuberculous glands or tendon sheaths, Klapp's suction +bell is employed. The cup is applied for five minutes at a time and then +taken off for three minutes, and this is repeated over a period of +about three-quarters of an hour. The pus is allowed to escape by a small +incision, and no packing or drain should be introduced. + +It has been found that tuberculous lesions tend to undergo cure +when the infected tissues are exposed to the rays of the +sun--_heliotherapy_--therefore whenever practicable this therapeutic +measure should be had recourse to. + +Since the introduction of the methods of treatment described above, and +especially by their employment at an early stage in the disease, the +number of cases of tuberculosis requiring operative interference has +greatly diminished. There are still circumstances, however, in which an +operation is required; for example, in disease of the lymph glands for +the removal of inert masses of caseous material, in disease of bone for +the removal of sequestra, or in disease of joints to improve the +function of the limb. It is to be understood, however, that operative +treatment must always be preceded by and combined with other therapeutic +measures. + + +TUBERCULOUS ABSCESS + +The caseation of tuberculous granulation tissue and its liquefaction is +a slow and insidious process, and is unattended with the classical signs +of inflammation--hence the terms "cold" and "chronic" applied to the +tuberculous abscess. + +In a cold abscess, such as that which results from tuberculous disease +of the vertebrae, the clinical appearances are those of a soft, fluid +swelling without heat, redness, pain, or fever. When toxic symptoms are +present, they are usually due to a mixed infection. + +A tuberculous abscess results from the disintegration and liquefaction +of tuberculous granulation tissue which has undergone caseation. Fluid +and cells from the adjacent blood vessels exude into the cavity, and +lead to variations in the character of its contents. In some cases the +contents consist of a clear amber-coloured fluid, in which are suspended +fragments of caseated tissue; in others, of a white material like +cream-cheese. From the addition of a sufficient number of leucocytes, +the contents may resemble the pus of an ordinary abscess. + +The wall of the abscess is lined with tuberculous granulation tissue, +the inner layers of which are undergoing caseation and disintegration, +and present a shreddy appearance; the outer layers consist of +tuberculous tissue which has not yet undergone caseation. The abscess +tends to increase in size by progressive liquefaction of the inner +layers, caseation of the outer layers, and the further invasion of the +surrounding tissues by tubercle bacilli. In this way a tuberculous +abscess is capable of indefinite extension and increase in size until it +reaches a free surface and ruptures externally. The direction in which +it spreads is influenced by the anatomical arrangement of the tissues, +and possibly to some extent by gravity, and the abscess may reach the +surface at a considerable distance from its seat of origin. The best +illustration of this is seen in the psoas abscess, which may originate +in the dorsal vertebrae, extend downwards within the sheath of the psoas +muscle, and finally appear in the thigh. + +#Clinical Features.#--The insidious development of the tuberculous +abscess is one of its characteristic features. The swelling may attain a +considerable size without the patient being aware of its existence, and, +as a matter of fact, it is often discovered accidentally. The absence of +toxaemia is to be associated with the incapacity of the wall of the +abscess to permit of absorption; this is shown also by the fact that +when even a large quantity of iodoform is inserted into the cavity of +the abscess, there are no symptoms of poisoning. The abscess varies in +size from a small cherry to a cavity containing several pints of pus. +Its shape also varies; it is usually that of a flattened sphere, but it +may present pockets or burrows running in various directions. Sometimes +it is hour-glass or dumb-bell shaped, as is well illustrated in the +region of the groin in disease of the spine or pelvis, where there may +be a large sac occupying the venter ilii, and a smaller one in the +thigh, the two communicating by a narrow channel under Poupart's +ligament. By pressing with the fingers the pus may be displaced from one +compartment to the other. The usual course of events is that the abscess +progresses slowly, and finally reaches a free surface--generally the +skin. As it does so there may be some pain, redness, and local elevation +of temperature. Fluctuation becomes evident and superficial, and the +skin becomes livid and finally gives way. If the case is left to nature, +the discharge of pus continues, and the track opening on the skin +remains as a _sinus_. The persistence of suppuration is due to the +presence in the wall of the abscess and of the sinus, of tuberculous +granulation tissue, which, so long as it remains, continues to furnish +discharge, and so prevents healing. Sooner or later pyogenic organisms +gain access to the sinus, and through it to the wall of the abscess. +They tend further to depress the resisting power of the tissues, and +thereby aggravate and perpetuate the tuberculous disease. This +superadded infection with pyogenic organisms exposes the patient to the +further risks of septic intoxication, especially in the form of hectic +fever and septicaemia, and increases the liability to general +tuberculosis, and to waxy degeneration of the internal organs. The mixed +infection is chiefly responsible for the pyrexia, sweating, and +emaciation which the laity associate with consumptive disease. A +tuberculous abscess may in one or other of these ways be a cause of +death. + +_Residual abscess_ is the name given to an abscess that makes its +appearance months, or even years, after the apparent cure of tuberculous +disease--as, for example, in the hip-joint or spine. It is called +residual because it has its origin in the remains of the original +disease. + +[Illustration: FIG. 34.--Tuberculous Abscess in right lumbar region in a +woman aged thirty.] + +#Diagnosis.#--A cold abscess is to be diagnosed from a syphilitic gumma, +a cyst, and from lipoma and other soft tumours. The differential +diagnosis of these affections will be considered later; it is often made +easier by recognising the presence of a lesion that is likely to cause a +cold abscess, such as tuberculous disease of the spine or of the +sacro-iliac joint. When it is about to burst externally, it may be +difficult to distinguish a tuberculous abscess from one due to infection +with pyogenic organisms. Even when the abscess is opened, the +appearances of the pus may not supply the desired information, and it +may be necessary to submit it to bacteriological examination. When the +pus is found to be sterile, it is usually safe to assume that the +condition is tuberculous, as in other forms of suppuration the causative +organisms can usually be recognised. Experimental inoculation will +establish a definite diagnosis, but it implies a delay of two to three +weeks. + +#Treatment.#--The tuberculous abscess may recede and disappear under +general treatment. Many surgeons advise that so long as the abscess is +quiescent it should be left alone. All agree, however, that if it shows +a tendency to spread, to increase in size, or to approach the skin or a +mucous membrane, something should be done to avoid the danger of its +bursting and becoming infected with pyogenic organisms. Simple +evacuation of the abscess by a hollow needle may suffice, or bismuth or +iodoform may be introduced after withdrawal of the contents. + +_Evacuation of the Abscess and Injection of Iodoform._--The iodoform is +employed in the form of a 10 per cent. solution in ether or the same +proportion suspended in glycerin. Either form becomes sterile soon after +it is prepared. Its curative effects would appear to depend upon the +liberation of iodine, which restrains the activity of the bacilli, and +upon its capacity for irritating the tissues and so inducing a +protective leucocytosis, and also of stimulating the formation of scar +tissue. An anaesthetic is rarely called for, except in children. The +abscess is first evacuated by means of a large trocar and cannula +introduced obliquely through the overlying soft parts, avoiding any part +where the skin is thin or red. If the cannula becomes blocked with +caseous material, it may be cleared with a probe, or a small quantity of +saline solution is forced in by the syringe. The iodoform is injected by +means of a glass-barrelled syringe, which is firmly screwed on to the +cannula. The amount injected varies with the size of the abscess and the +age of the patient; it may be said to range from two or three drams in +the case of children to several ounces in large abscesses in adults. The +cannula is withdrawn, the puncture is closed by a Michel's clip, and a +dressing applied so as to exert a certain amount of compression. If the +abscess fills up again, the procedure should be repeated; in doing so, +the contents show the coloration due to liberated iodine. When the +contents are semi-solid, and cannot be withdrawn even through a large +cannula, an incision must be made, and, after the cavity has been +emptied, the iodoform is introduced through a short rubber tube attached +to the syringe. Experience has shown that even large abscesses, such as +those associated with spinal disease, may be cured by iodoform +injection, and this even when rupture of the abscess on the skin surface +has appeared to be imminent. + +Another method of treatment which is less popular now than it used to +be, and which is chiefly applicable in abscesses of moderate size, is by +_incision of the abscess and removal of the tuberculous tissue in its +wall_ with the sharp spoon. An incision is made which will give free +access to the interior of the abscess, so that outlying pockets or +recesses may not be overlooked. After removal of the pus, the wall of +the abscess is scraped with the Volkmann spoon or with Barker's flushing +spoon, to get rid of the tuberculous tissue with which it is lined. In +using the spoon, care must be taken that its sharp edge does not +perforate the wall of a vein or other important structure. Any debris +which may adhere to the walls is removed by rubbing with dry gauze. The +oozing of blood is arrested by packing the cavity for a few minutes with +gauze. After the packing is removed, iodoform powder is rubbed into the +raw surface. The soft parts divided by the incision are sutured in +layers so as to ensure primary union. If, on the other hand, there is +fear of a mixed infection, especially in abscesses near the rectum or +anus, it is safer to treat it by the open method, packing the cavity +with iodoform worsted or bismuth gauze, which is renewed at intervals of +a week or ten days as the cavity heals from the bottom. + +Another method is to incise the abscess, cleanse the cavity with gauze, +irrigate with Carrel-Dakin solution and pack with gauze smeared with the +dilute non-toxic B.I.P.P. (bismuth and iodoform 2 parts, vaseline 12 +parts, hard paraffin, sufficient to give the consistence of butter). The +wound is closed with "bipped" silk sutures; one of these--the "waiting +suture"--is left loose to permit of withdrawal of the gauze after +forty-eight hours; the waiting suture is then tied, and delayed primary +union is thus effected. + +When the skin over the abscess is red, thin, and about to give way, as +is frequently the case when the abscess is situated in the subcutaneous +cellular tissue, any skin which is undermined and infected with tubercle +should be removed with the scissors at the same time that the abscess is +dealt with. + +In abscesses treated by the open method, when the cavity has become +lined with healthy granulations, it may be closed by secondary suture, +or, if the granulating surface is flush with the skin, healing may be +hastened by skin-grafting. + +If the tuberculous abscess has burst and left a _sinus_, this is apt to +persist because of the presence of tuberculous tissue in its wall, and +of superadded pyogenic infection, or because it serves as an avenue for +the escape of discharge from a focus of tubercle in a bone or a lymph +gland. + +[Illustration: FIG. 35.--Tuberculous Sinus injected through its opening +in the forearm with bismuth paste. + +(Mr. Pirie Watson's case--Radiogram by Dr. Hope Fowler.)] + +The treatment varies with the conditions present, and must include +measures directed to the lesion from which the sinus has originated. The +extent and direction of any given sinus may be demonstrated by the use +of the probe, or, more accurately, by injecting the sinus with a paste +consisting of white vaseline containing 10 to 30 per cent. of bismuth +subcarbonate, and following its track with the X-rays (Fig. 35). + +It was found by Beck of Chicago that the injection of bismuth paste is +frequently followed by healing of the sinus, and that, if one injection +fails to bring about a cure, repeating the injection every second day +may be successful. Some caution must be observed in this treatment, as +symptoms of poisoning have been observed to follow its use. If they +manifest themselves, an injection of warm olive oil should be given; the +oil, left in for twelve hours or so, forms an emulsion with the bismuth, +which can be withdrawn by aspiration. Iodoform suspended in glycerin may +be employed in a similar manner. When these and other non-operative +measures fail, and the whole track of the sinus is accessible, it should +be laid open, scraped, and packed with bismuth or iodoform gauze until +it heals from the bottom. + +The _tuberculous ulcer_ is described in the chapter on ulcers. + + + + +CHAPTER IX + +SYPHILIS + + +Definition.--Virus.--ACQUIRED SYPHILIS--Primary period: + _Incubation, primary chancre, glandular enlargement_; + _Extra-genital chancres_--Treatment--Secondary period: _General + symptoms, skin affections, mucous patches, affections of bones, + joints, eyes_, etc.--Treatment: _Salvarsan_--_Methods of + administering mercury_--Syphilis and marriage--Intermediate + stage--_Reminders_--Tertiary period: _General symptoms_, + _gummata_, _tertiary ulcers_, _tertiary lesions of skin, mucous + membrane, bones, joints_, etc.--Second attacks.--INHERITED + SYPHILIS--Transmission--_Clinical features in infancy, in later + life_--Contagiousness--Treatment. + +Syphilis is an infective disease due to the entrance into the body of a +specific virus. It is nearly always communicated from one individual to +another by contact infection, the discharge from a syphilitic lesion +being the medium through which the virus is transmitted, and the seat of +inoculation is almost invariably a surface covered by squamous +epithelium. The disease was unknown in Europe before the year 1493, when +it was introduced into Spain by Columbus' crew, who were infected in +Haiti, where the disease had been endemic from time immemorial (Bloch). + +The granulation tissue which forms as a result of the reaction of the +tissues to the presence of the virus is chiefly composed of lymphocytes +and plasma cells, along with an abundant new formation of capillary +blood vessels. Giant cells are not uncommon, but the endothelioid cells, +which are so marked a feature of tuberculous granulation tissue, are +practically absent. + +When syphilis is communicated from one individual to another by contact +infection, the condition is spoken of as _acquired syphilis_, and the +first visible sign of the disease appears at the site of inoculation, +and is known as _the primary lesion_. Those who have thus acquired the +disease may transmit it to their offspring, who are then said to suffer +from _inherited syphilis_. + +#The Virus of Syphilis.#--The cause of syphilis, whether acquired or +inherited, is the organism, described by Schaudinn and Hoffman, in 1905, +under the name of _spirochaeta pallida_ or _spironema pallidum_. It is a +delicate, thread-like spirilla, in length averaging from 8 to 10 u and +in width about 0.25 u, and is distinguished from other spirochaetes by +its delicate shape, its dead-white appearance, together with its closely +twisted spiral form, with numerous undulations (10 to 26), which are +perfectly regular, and are characteristic in that they remain the same +during rest and in active movement (Fig. 36). In a fresh specimen, such +as a scraping from a hard chancre suspended in a little salt solution, +it shows active movements. The organism is readily destroyed by heat, +and perishes in the absence of moisture. It has been proved +experimentally that it remains infective only up to six hours after its +removal from the body. Noguchi has succeeded in obtaining pure cultures +from the infected tissues of the rabbit. + +[Illustration: FIG. 36.--Spirochaeta pallida from scraping of hard +Chancre of Prepuce. x 1000 diam. Burri method.] + +The spirochaete may be recognised in films made by scraping the deeper +parts of the primary lesion, from papules on the skin, or from blisters +artificially raised on lesions of the skin or on the immediately +adjacent portion of healthy skin. It is readily found in the mucous +patches and condylomata of the secondary period. It is best stained by +Giemsa's method, and its recognition is greatly aided by the use of the +ultra-microscope. + +The spirochaete has been demonstrated in every form of syphilitic lesion, +and has been isolated from the blood--with difficulty--and from lymph +withdrawn by a hollow needle from enlarged lymph glands. The saliva of +persons suffering from syphilitic lesions of the mouth also contains the +organism. + +[Illustration: FIG. 37.--Spirochaeta refrigerans from scraping of Vagina. +x 1000 diam. Burri method.] + +In tertiary lesions there is greater difficulty in demonstrating the +spirochaete, but small numbers have been found in the peripheral parts of +gummata and in the thickened patches in syphilitic disease of the aorta. +Noguchi and Moore have discovered the spirochaete in the brain in a +number of cases of general paralysis of the insane. The spirochaete may +persist in the body for a long time after infection; its presence has +been demonstrated as long as sixteen years after the original +acquisition of the disease. + +In inherited syphilis the spirochaete is present in enormous numbers +throughout all the organs and fluids of the body. + +Considerable interest attaches to the observations of Metchnikoff, Roux, +and Neisser, who have succeeded in conveying syphilis to the chimpanzee +and other members of the ape tribe, obtaining primary and secondary +lesions similar to those observed in man, and also containing the +spirochaete. In animals the disease has been transmitted by material from +all kinds of syphilitic lesions, including even the blood in the +secondary and tertiary stages of the disease. The primary lesion is in +the form of an indurated papule, in every respect resembling the +corresponding lesion in man, and associated with enlargement and +induration of the lymph glands. The primary lesion usually appears about +thirty days after inoculation, to be followed, in about half the cases, +by secondary manifestations, which are usually of a mild character; in +no instance has any tertiary lesion been observed. The severity of the +affection amongst apes would appear to be in proportion to the nearness +of the relationship of the animal to the human subject. The eye of the +rabbit is also susceptible to inoculation from syphilitic lesions; the +material in a finely divided state is introduced into the anterior +chamber of the eye. + +Attempts to immunise against the disease have so far proved negative, +but Metchnikoff has shown that the inunction of the part inoculated with +an ointment containing 33 per cent. of calomel, within one hour of +infection, suffices to neutralise the virus in man, and up to eighteen +hours in monkeys. He recommends the adoption of this procedure in the +prophylaxis of syphilis. + +Noguchi has made an emulsion of dead spirochaetes which he calls +_luetin_, and which gives a specific reaction resembling that of +tuberculin in tuberculosis, a papule or a pustule forming at the site of +the intra-dermal injection. It is said to be most efficacious in the +tertiary and latent forms of syphilis, which are precisely those forms +in which the diagnosis is surrounded with difficulties. + + +ACQUIRED SYPHILIS + +In the vast majority of cases, infection takes place during the congress +of the sexes. Delicate, easily abraded surfaces are then brought into +contact, and the discharge from lesions containing the virus is placed +under favourable conditions for conveying the disease from one person to +the other. In the male the possibility of infection taking place is +increased if the virus is retained under cover of a long and tight +prepuce, and if there are abrasions on the surface with which it comes +in contact. The frequency with which infection takes place on the +genitals during sexual intercourse warrants syphilis being considered a +venereal disease, although there are other ways in which it may be +contracted. + +Some of these imply direct contact--such, for example, as kissing, the +digital examination of syphilitic patients by doctors or nurses, or +infection of the surgeon's fingers while operating upon a syphilitic +patient. In suckling, a syphilitic wet nurse may infect a healthy +infant, or a syphilitic infant may infect a healthy wet nurse. In other +cases the infection is by indirect contact, the virus being conveyed +through the medium of articles contaminated by a syphilitic +patient--such, for example, as surgical instruments, tobacco pipes, wind +instruments, table utensils, towels, or underclothing. Physiological +secretions, such as saliva, milk, or tears, are not capable of +communicating the disease unless contaminated by discharge from a +syphilitic sore. While the saliva itself is innocuous, it can be, and +often is, contaminated by the discharge from mucous patches or other +syphilitic lesions in the mouth and throat, and is then a dangerous +medium of infection. Unless these extra-genital sources of infection are +borne in mind, there is a danger of failing to recognise the primary +lesion of syphilis in unusual positions, such as the lip, finger, or +nipple. When the disease is thus acquired by innocent transfer, it is +known as _syphilis insontium_. + +#Stages or Periods of Syphilis.#--Following the teaching of Ricord, it +is customary to divide the life-history of syphilis into three periods +or stages, referred to, for convenience, as primary, secondary, and +tertiary. This division is to some extent arbitrary and artificial, as +the different stages overlap one another, and the lesions of one stage +merge insensibly into those of another. Wide variations are met with in +the manifestations of the secondary stage, and histologically there is +no valid distinction to be drawn between secondary and tertiary lesions. + +_The primary period_ embraces the interval that elapses between the +initial infection and the first constitutional manifestations,--roughly, +from four to eight weeks,--and includes the period of incubation, the +development of the primary sore, and the enlargement of the nearest +lymph glands. + +_The secondary period_ varies in duration from one to two years, during +which time the patient is liable to suffer from manifestations which are +for the most part superficial in character, affecting the skin and its +appendages, the mucous membranes, and the lymph glands. + +_The tertiary period_ has no time-limit except that it follows upon the +secondary, so that during the remainder of his life the patient is +liable to suffer from manifestations which may affect the deeper tissues +and internal organs as well as the skin and mucous membranes. + +#Primary Syphilis.#--_The period of incubation_ represents the interval +that elapses between the occurrence of infection and the appearance of +the primary lesion at the site of inoculation. Its limits may be stated +as varying from two to six weeks, with an average of from twenty-one to +twenty-eight days. While the disease is incubating, there is nothing to +show that infection has occurred. + +_The Primary Lesion._--The incubation period having elapsed, there +appears at the site of inoculation a circumscribed area of infiltration +which represents the reaction of the tissues to the entrance of the +virus. The first appearance is that of a sharply defined papule, rarely +larger than a split pea. Its surface is at first smooth and shiny, but +as necrosis of the tissue elements takes place in the centre, it becomes +concave, and in many cases the epithelium is shed, and an ulcer is +formed. Such an ulcer has an elevated border, sharply cut edges, an +indurated base, and exudes a scanty serous discharge; its surface is at +first occupied by yellow necrosed tissue, but in time this is replaced +by smooth, pale-pink granulation tissue; finally, epithelium may spread +over the surface, and the ulcer heals. As a rule, the patient suffers +little discomfort, and may even be ignorant of the existence of the +lesion, unless, as a result of exposure to mechanical or septic +irritation, ulceration ensues, and the sore becomes painful and tender, +and yields a purulent discharge. The primary lesion may persist until +the secondary manifestations make their appearance, that is, for several +weeks. + +It cannot be emphasised too strongly that the induration of the primary +lesion, which has obtained for it the name of "hard chancre," is its +most important characteristic. It is best appreciated when the sore is +grasped from side to side between the finger and thumb. The sensation on +grasping it has been aptly compared to that imparted by a nodule of +cartilage, or by a button felt through a layer of cloth. The evidence +obtained by touch is more valuable than that obtained by inspection, a +fact which is made use of in the recognition of _concealed +chancres_--that is, those which are hidden by a tight prepuce. The +induration is due not only to the dense packing of the connective-tissue +spaces with lymphocytes and plasma cells, but also to the formation of +new connective-tissue elements. It is most marked in chancres situated +in the furrow between the glans and the prepuce. + +_In the male_, the primary lesion specially affects certain +_situations_, and the appearances vary with these: (1) On the inner +aspect of the prepuce, and in the fold between the prepuce and the +glans; in the latter situation the induration imparts a "collar-like" +rigidity to the prepuce, which is most apparent when it is rolled back +over the corona. (2) At the orifice of the prepuce the primary lesion +assumes the form of multiple linear ulcers or fissures, and as each of +these is attended with infiltration, the prepuce cannot be pulled +back--a condition known as _syphilitic phimosis_. (3) On the glans penis +the infiltration may be so superficial that it resembles a layer of +parchment, but if it invades the cavernous tissue there is a dense mass +of induration. (4) On the external aspect of the prepuce or on the skin +of the penis itself. (5) At either end of the torn fraenum, in the form +of a diamond-shaped ulcer raised above the surroundings. (6) In relation +to the meatus and canal of the urethra, in either of which situations +the swelling and induration may lead to narrowing of the urethra, so +that the urine is passed with pain and difficulty and in a minute +stream; stricture results only in the exceptional cases in which the +chancre has ulcerated and caused destruction of tissue. A chancre within +the orifice of the urethra is rare, and, being concealed from view, it +can only be recognised by the discharge from the meatus and by the +induration felt between the finger and thumb on palpating the urethra. + +_In the female_, the primary lesion is not so typical or so easily +recognised as in men; it is usually met with on the labia; the +induration is rarely characteristic and does not last so long. The +primary lesion may take the form of condylomata. Indurated oedema, with +brownish-red or livid discoloration of one or both labia, is diagnostic +of syphilis. + +The hard chancre is usually solitary, but sometimes there are two or +more; when there are several, they are individually smaller than the +solitary chancre. + +It is the exception for a hard chancre to leave a visible scar, hence, +in examining patients with a doubtful history of syphilis, little +reliance can be placed on the presence or absence of a scar on the +genitals. When the primary lesion has taken the form of an open ulcer +with purulent discharge, or has sloughed, there is a permanent scar. + +_Infection of the adjacent lymph glands_ is usually found to have taken +place by the time the primary lesion has acquired its characteristic +induration. Several of the glands along Poupart's ligament, on one or on +both sides, become enlarged, rounded, and indurated; they are usually +freely movable, and are rarely sensitive unless there is superadded +septic infection. The term _bullet-bubo_ has been applied to them, and +their presence is of great value in diagnosis. In a certain number of +cases, one of the main _lymph vessels_ on the dorsum of the penis is +transformed into a fibrous cord easily recognisable on palpation, and +when grasped between the fingers appears to be in size and consistence +not unlike the vas deferens. + +_Concealed chancre_ is the term applied when one or more chancres are +situated within the sac of a prepuce which cannot be retracted. If the +induration is well marked, the chancre can be palpated through the +prepuce, and is tender on pressure. As under these conditions it is +impossible for the patient to keep the parts clean, septic infection +becomes a prominent feature, the prepuce is oedematous and inflamed, and +there is an abundant discharge of pus from its orifice. It occasionally +happens that the infection assumes a virulent character and causes +sloughing of the prepuce--a condition known as _phagedaena_. The +discharge is then foul and blood-stained, and the prepuce becomes of a +dusky red or purple colour, and may finally slough, exposing the glans. + +_Extra-genital or Erratic Chancres_ (Fig. 38).--Erratic chancre is the +term applied by Jonathan Hutchinson to the primary lesion of syphilis +when it appears on parts of the body other than the genitals. It differs +in some respects from the hard chancre as met with on the penis; it is +usually larger, the induration is more diffused, and the enlarged glands +are softer and more sensitive. The glands in nearest relation to the +sore are those first affected, for example, the epitrochlear or axillary +glands in chancre of the finger; the submaxillary glands in chancre of +the lip or mouth; or the pre-auricular gland in chancre of the eyelid or +forehead. In consequence of their divergence from the typical chancre, +and of their being often met with in persons who, from age, +surroundings, or moral character, are unlikely subjects of venereal +disease, the true nature of erratic chancres is often overlooked until +the persistence of the lesion, its want of resemblance to anything else, +or the onset of constitutional symptoms, determines the diagnosis of +syphilis. A solitary, indolent sore occurring on the lip, eyelid, +finger, or nipple, which does not heal but tends to increase in size, +and is associated with induration and enlargement of the adjacent +glands, is most likely to be the primary lesion of syphilis. + +[Illustration: FIG. 38.--Primary Lesion on Thumb, with Secondary +Eruption on Forearm.[1]] + +[1] From _A System of Syphilis_, vol. ii., edited by D'Arcy Power and +J. Keogh Murphy, Oxford Medical Publications. + +#The Soft Sore, Soft Chancre, or Chancroid.#--The differential diagnosis +of syphilis necessitates the consideration of the _soft sore_, _soft +chancre_, or _chancroid_, which is also a common form of venereal +disease, and is due to infection with a virulent pus-forming bacillus, +first described by Ducrey in 1889. Ducrey's bacillus occurs in the form +of minute oval rods measuring about 1.5 u in length, which stain readily +with any basic aniline dye, but are quickly decolorised by Gram's +method. They are found mixed with other organisms in the purulent +discharge from the sore, and are chiefly arranged in small groups or in +short chains. Soft sores are always contracted by direct contact from +another individual, and the incubation period is a short one of from two +to five days. They are usually situated in the vicinity of the fraenum, +and, in women, about the labia minora or fourchette; they probably +originate in abrasions in these situations. They appear as pustules, +which are rapidly converted into small, acutely inflamed ulcers with +sharply cut, irregular margins, which bleed easily and yield an abundant +yellow purulent discharge. They are devoid of the induration of +syphilis, are painful, and nearly always multiple, reproducing +themselves in successive crops by auto-inoculation. Soft sores are often +complicated by phimosis and balanitis, and they frequently lead to +infection of the glands in the groin. The resulting bubo is ill-defined, +painful, and tender, and suppuration occurs in about one-fourth of the +cases. The overlying skin becomes adherent and red, and suppuration +takes place either in the form of separate foci in the interior of the +individual glands, or around them; in the latter case, on incision, the +glands are found lying bathed in pus. Ducrey's bacillus is found in pure +culture in the pus. Sometimes other pyogenic organisms are superadded. +After the bubo has been opened the wound may take on the characters of a +soft sore. + +_Treatment._--Soft sores heal rapidly when kept clean. If concealed +under a tight prepuce, an incision should be made along the dorsum to +give access to the sores. They should be washed with eusol, and dusted +with a mixture of one part iodoform and two parts boracic or salicylic +acid, or, when the odour of iodoform is objected to, of equal parts of +boracic acid and carbonate of zinc. Immersion of the penis in a bath of +eusol for some hours daily is useful. The sore is then covered with a +piece of gauze kept in position by drawing the prepuce over it, or by a +few turns of a narrow bandage. Sublimed sulphur frequently rubbed into +the sore is recommended by C. H. Mills. If the sores spread in spite of +this, they should be painted with cocaine and then cauterised. When the +glands in the groin are infected, the patient must be confined to bed, +and a dressing impregnated with ichthyol and glycerin (10 per cent.) +applied; the repeated use of a suction bell is of great service. +Harrison recommends aspiration of a bubonic abscess, followed by +injection of 1 in 20 solution of tincture of iodine into the cavity; +this is in turn aspirated, and then 1 or 2 c.c. of the solution injected +and left in. This is repeated as often as the cavity refills. It is +sometimes necessary to let the pus out by one or more small incisions +and continue the use of the suction bell. + +_Diagnosis of Primary Syphilis._--In cases in which there is a history +of an incubation period of from three to five weeks, when the sore is +indurated, persistent, and indolent, and attended with bullet-buboes in +the groin, the diagnosis of primary syphilis is not difficult. Owing, +however, to the great importance of instituting treatment at the +earliest possible stage of the infection, an effort should be made to +establish the diagnosis without delay by demonstrating the spirochaete. +Before any antiseptic is applied, the margin of the suspected sore is +rubbed with gauze, and the serum that exudes on pressure is collected +in a capillary tube and sent to a pathologist for microscopical +examination. A better specimen can sometimes be obtained by puncturing +an enlarged lymph gland with a hypodermic needle, injecting a few minims +of sterile saline solution and then aspirating the blood-stained fluid. + +The Wassermann test must not be relied upon for diagnosis in the early +stage, as it does not appear until the disease has become generalised +and the secondary manifestations are about to begin. The practice of +waiting in doubtful cases before making a diagnosis until secondary +manifestations appear is to be condemned. + +Extra-genital chancres, _e.g._ sores on the fingers of doctors or +nurses, are specially liable to be overlooked, if the possibility of +syphilis is not kept in mind. + +It is important to bear in mind _the possibility of a patient having +acquired a mixed infection_ with the virus of soft chancre, which will +manifest itself a few days after infection, and the virus of syphilis, +which shows itself after an interval of several weeks. This occurrence +was formerly the source of much confusion in diagnosis, and it was +believed at one time that syphilis might result from soft sores, but it +is now established that syphilis does not follow upon soft sores unless +the virus of syphilis has been introduced at the same time. The +practitioner must be on his guard, therefore, when a patient asks his +advice concerning a venereal sore which has appeared within a few days +of exposure to infection. Such a patient is naturally anxious to know +whether he has contracted syphilis or not, but neither a positive nor a +negative answer can be given--unless the spirochaete can be identified. + +Syphilis is also to be diagnosed from _epithelioma_, the common form of +cancer of the penis. It is especially in elderly patients with a tight +prepuce that the induration of syphilis is liable to be mistaken for +that associated with epithelioma. In difficult cases the prepuce must be +slit open. + +Difficulty may occur in the diagnosis of primary syphilis from _herpes_, +as this may appear as late as ten days after connection; it commences as +a group of vesicles which soon burst and leave shallow ulcers with a +yellow floor; these disappear quickly on the use of an antiseptic +dusting powder. + +Apprehensive patients who have committed sexual indiscretions are apt to +regard as syphilitic any lesion which happens to be located on the +penis--for example, acne pustules, eczema, psoriasis papules, boils, +balanitis, or venereal warts. + +_The local treatment_ of the primary sore consists in attempting to +destroy the organisms _in situ_. An ointment made up of calomel 33 +parts, lanoline 67 parts, and vaseline 10 parts (Metchnikoff's cream) is +rubbed into the sore several times a day. If the surface is unbroken, it +may be dusted lightly with a powder composed of equal parts of calomel +and carbonate of zinc. A gauze dressing is applied, and the penis and +scrotum should be supported against the abdominal wall by a triangular +handkerchief or bathing-drawers; if there is inflammatory oedema the +patient should be confined to bed. + +In _concealed chancres_ with phimosis, the sac of the prepuce should be +slit up along the dorsum to admit of the ointment being applied. If +phagedaena occurs, the prepuce must be slit open along the dorsum, or if +sloughing, cut away, and the patient should have frequent sitz baths of +weak sublimate lotion. When the chancre is within the meatus, iodoform +bougies are inserted into the urethra, and the urine should be rendered +bland by drinking large quantities of fluid. + +General treatment is considered on p. 149. + +#Secondary Syphilis.#--The following description of secondary syphilis +is based on the average course of the disease in untreated cases. The +onset of constitutional symptoms occurs from six to twelve weeks after +infection, and the manifestations are the result of the entrance of the +virus into the general circulation, and its being carried to all parts +of the body. The period during which the patient is liable to suffer +from secondary symptoms ranges from six months to two years. + +In some cases the general health is not disturbed; in others the patient +is feverish and out of sorts, losing appetite, becoming pale and anaemic, +complaining of lassitude, incapacity for exertion, headache, and pains +of a rheumatic type referred to the bones. There is a moderate degree of +leucocytosis, but the increase is due not to the polymorpho-nuclear +leucocytes but to lymphocytes. In isolated cases the temperature rises +to 101 o or 102 o F. and the patient loses flesh. The lymph glands, +particularly those along the posterior border of the sterno-mastoid, +become enlarged and slightly tender. The hair comes out, eruptions +appear on the skin and mucous membranes, and the patient may suffer from +sore throat and affections of the eyes. The local lesions are to be +regarded as being of the nature of reactions against accumulations of +the parasite, lymphocytes and plasma cells being the elements chiefly +concerned in the reactive process. + +_Affections of the Skin_ are among the most constant manifestations. An +evanescent macular rash, not unlike that of measles--_roseola_--is the +first to appear, usually in from six to eight weeks from the date of +infection; it is widely diffused over the trunk, and the original dull +rose-colour soon fades, leaving brownish stains, which in time +disappear. It is usually followed by a _papular eruption_, the +individual papules being raised above the surface of the skin, smooth or +scaly, and as they are due to infiltration of the skin they are more +persistent than the roseoles. They vary in size and distribution, being +sometimes small, hard, polished, and closely aggregated like lichen, +sometimes as large as a shilling-piece, with an accumulation of scales +on the surface like that seen in psoriasis. The co-existence of scaly +papules and faded roseoles is very suggestive of syphilis. + +Other types of eruption are less common, and are met with from the third +month onwards. A _pustular_ eruption, not unlike that of acne, is +sometimes a prominent feature, but is not characteristic of syphilis +unless it affects the scalp and forehead and is associated with the +remains of the papular eruption. The term _ecthyma_ is applied when the +pustules are of large size, and, after breaking on the surface, give +rise to superficial ulcers; the discharge from the ulcer often dries up +and forms a scab or crust which is continually added to from below as +the ulcer extends in area and depth. The term _rupia_ is applied when +the crusts are prominent, dark in colour, and conical in shape, roughly +resembling the shell of a limpet. If the crust is detached, a sharply +defined ulcer is exposed, and when this heals it leaves a scar which is +usually circular, thin, white, shining like satin, and the surrounding +skin is darkly pigmented; in the case of deep ulcers, the scar is +depressed and adherent (Fig. 39). + +[Illustration: FIG. 39.--Syphilitic Rupia, showing the limpet-shaped +crusts or scabs.] + +In the later stages there may occur a form of creeping or _spreading +ulceration of the skin_ of the face, groin, or scrotum, healing at one +edge and spreading at another like tuberculous lupus, but distinguished +from this by its more rapid progress and by the pigmentation of the +scar. + +_Condylomata_ are more characteristic of syphilis than any other type of +skin lesion. They are papules occurring on those parts of the body where +the skin is habitually moist, and especially where two skin surfaces are +in contact. They are chiefly met with on the external genitals, +especially in women, around the anus, beneath large pendulous mammae, +between the toes, and at the angles of the mouth, and in these +situations their development is greatly favoured by neglect of +cleanliness. They present the appearance of well-defined circular or +ovoid areas in which the skin is thickened and raised above the surface; +they are covered with a white sodden epidermis, and furnish a scanty but +very infective discharge. Under the influence of irritation and want of +rest, as at the anus or at the angle of the mouth, they are apt to +become fissured and superficially ulcerated, and the discharge then +becomes abundant and may crust on the surface, forming yellow scabs. At +the angle of the mouth the condylomatous patches may spread to the +cheek, and when they ulcerate may leave fissure-like scars radiating +from the mouth--an appearance best seen in inherited syphilis (Fig. 44). + +_The Appendages of the Skin._--The _hair_ loses its gloss, becomes dry +and brittle, and readily falls out, either as an exaggeration of the +normal shedding of the hair, or in scattered areas over the scalp +(_syphilitic alopoecia_). The hair is not re-formed in the scars which +result from ulcerated lesions of the scalp. The _nail-folds_ +occasionally present a pustular eruption and superficial ulceration, to +which the name _syphilitic onychia_ has been applied; more commonly the +nails become brittle and ragged, and they may even be shed. + +_The Mucous Membranes_, and especially those of the _mouth_ and +_throat_, suffer from lesions similar to those met with on the skin. On +a mucous surface the papular eruption assumes the form of _mucous +patches_, which are areas with a congested base covered with a thin +white film of sodden epithelium like wet tissue-paper. They are best +seen on the inner aspect of the cheeks, the soft palate, uvula, pillars +of the fauces, and tonsils. In addition to mucous patches, there may be +a number of small, _superficial, kidney-shaped ulcers_, especially along +the margins of the tongue and on the tonsils. In the absence of mucous +patches and ulcers, the sore throat may be characterised by a bluish +tinge of the inflamed mucous membrane and a thin film of shed epithelium +on the surface. Sometimes there is an elongated sinuous film which has +been likened to the track of a snail. In the _larynx_ the presence of +congestion, oedema, and mucous patches may be the cause of persistent +hoarseness. The _tongue_ often presents a combination of lesions, +including ulcers, patches where the papillae are absent, fissures, and +raised white papules resembling warts, especially towards the centre of +the dorsum. These lesions are specially apt to occur in those who smoke, +drink undiluted alcohol or spirits, or eat hot condiments to excess, or +who have irregular, sharp-cornered teeth. At a later period, and in +those who are broken down in health from intemperance or other cause, +the sore throat may take the form of rapidly spreading, penetrating +ulcers in the soft palate and pillars of the fauces, which may lead to +extensive destruction of tissue, with subsequent scars and deformity +highly characteristic of previous syphilis. + +In the _Bones_, lesions occur which assume the clinical features of an +evanescent periostitis, the patient complaining of nocturnal pains over +the frontal bone, sternum, tibiae, and ulnae, and localised tenderness on +tapping over these bones. + +In the _Joints_, a serous synovitis or hydrops may occur, chiefly in the +knee, on one or on both sides. + +_The Affections of the Eyes_, although fortunately rare, are of great +importance because of the serious results which may follow if they are +not recognised and treated. _Iritis_ is the commonest of these, and may +occur in one or in both eyes, one after the other, from three to eight +months after infection. The patient complains of impairment of sight and +of frontal or supraorbital pain. The eye waters and is hypersensitive, +the iris is discoloured and reacts sluggishly to light, and there is a +zone of ciliary congestion around the cornea. The appearance of minute +white nodules or flakes of lymph at the margin of the pupil is +especially characteristic of syphilitic iritis. When adhesions have +formed between the iris and the structures in relation to it, the pupil +dilates irregularly under atropin. Although complete recovery is to be +expected under early and energetic treatment, if neglected, _iritis_ may +result in occlusion of the pupil and permanent impairment or loss of +sight. + +The other lesions of the eye are much rarer, and can only be discovered +on ophthalmoscopic examination. + +The virus of syphilis exerts a special influence upon the _Blood +Vessels_, exciting a proliferation of the endothelial lining which +results in narrowing of their lumen, _endarteritis_, and a perivascular +infiltration in the form of accumulations of plasma cells around the +vessels and in the lymphatics that accompany them. + +In the _Brain_, in the later periods of secondary and in tertiary +syphilis, changes occur as a result of the narrowing of the lumen of the +arteries, or of their complete obliteration by thrombosis. By +interfering with the nutrition of those parts of the brain supplied by +the affected arteries, these lesions give rise to clinical features of +which severe headache and paralysis are the most prominent. + +Affections of the _Spinal Cord_ are extremely rare, but paraplegia from +myelitis has been observed. + +Lastly, attention must be directed to the remarkable variations observed +in different patients. Sometimes the virulent character of the disease +can only be accounted for by an idiosyncrasy of the patient. +Constitutional symptoms, particularly pyrexia and anaemia, are most often +met with in young women. Patients over forty years of age have greater +difficulty in overcoming the infection than younger adults. Malarial and +other infections, and the conditions attending life in tropical +countries, from the debility which they cause, tend to aggravate and +prolong the disease, which then assumes the characters of what has been +called _malignant syphilis_. All chronic ailments have a similar +influence, and alcoholic intemperance is universally regarded as a +serious aggravating factor. + +_Diagnosis of Secondary Syphilis._--A routine examination should be made +of the parts of the body which are most often affected in this +disease--the scalp, mouth, throat, posterior cervical glands, and the +trunk, the patient being stripped and examined by daylight. Among the +_diagnostic features of the skin affections_ the following may be +mentioned: They are frequently, and sometimes to a marked degree, +symmetrical; more than one type of eruption--papules and pustules, for +example--are present at the same time; there is little itching; they are +at first a dull-red colour, but later present a brown pigmentation which +has been likened to the colour of raw ham; they exhibit a predilection +for those parts of the forehead and neck which are close to the roots of +the hair; they tend to pass off spontaneously; and they disappear +rapidly under treatment. + +#Serum Diagnosis--Wassermann Reaction.#--Wassermann found that if an +extract of syphilitic liver rich in spirochaetes is mixed with the serum +from a syphilitic patient, a large amount of complement is fixed. The +application of the test is highly complicated and can only be carried +out by an expert pathologist. For the purpose he is supplied with from 5 +c.c. to 10 c.c. of the patient's blood, withdrawn under aseptic +conditions from the median basilic vein by means of a serum syringe, and +transferred to a clean and dry glass tube. There is abundant evidence +that the Wassermann test is a reliable means of establishing a diagnosis +of syphilis. + +A definitely positive reaction can usually be obtained between the +fifteenth and thirtieth day after the appearance of the primary lesion, +and as time goes on it becomes more marked. During the secondary period +the reaction is practically always positive. In the tertiary stage also +it is positive except in so far as it is modified by the results of +treatment. In para-syphilitic lesions such as general paralysis and +tabes a positive reaction is almost always present. In inherited +syphilis the reaction is positive in every case. A positive reaction may +be present in other diseases, for example, frambesia, trypanosomiasis, +and leprosy. + +As the presence of the reaction is an evidence of the activity of the +spirochaetes, repeated applications of the test furnish a valuable means +of estimating the efficacy of treatment. The object aimed at is to +change a persistently positive reaction to a permanently negative one. + +#Treatment of Syphilis.#--In the treatment of syphilis the two main +objects are to maintain the general health at the highest possible +standard, and to introduce into the system therapeutic agents which will +inhibit or destroy the invading parasite. + +The second of these objects has been achieved by the researches of +Ehrlich, who, in conjunction with his pupil, Hata, has built up a +compound, the dihydrochloride of dioxydiamido-arseno-benzol, popularly +known as salvarsan or "606." Other preparations, such as kharsivan, +arseno-billon, and diarsenol, are chemically equivalent to salvarsan, +containing from 27 to 31 per cent. of arsenic, and are equally +efficient. The full dose is 0.6 grm. All these members of the "606" +group form an acid solution when dissolved in water, and must be +rendered alkaline before being injected. As subcutaneous and +intra-muscular injections cause considerable pain, and may cause +sloughing of the tissues, "606" preparations must be injected +intravenously. Ehrlich has devised a preparation--neo-salvarsan, or +"914," which is more easily prepared and forms a neutral solution. It +contains from 18 to 20 per cent. of arsenic. Neo-kharsivan, +novo-arseno-billon, and neo-diarsenol belong to the "914" group, the +full dosage of which is 0.9 grm. As subcutaneous and intra-muscular +injections of the "914" group are not painful, and even more efficient +than intravenous injections, the administration is simpler. + +Galyl, luargol, and other preparations act in the same way as the "606" +and "914" groups. + +The "606" preparations may be introduced into the veins by injection or +by means of an apparatus which allows the solution to flow in by +gravity. The left median basilic vein is selected, and a platino-iridium +needle with a short point and a bore larger than that of the ordinary +hypodermic syringe is used. The needle is passed for a few millimetres +along the vein, and the solution is then slowly introduced; before +withdrawing the needle some saline is run in to diminish the risk of +thrombosis. + +The "914" preparations may be injected either into the subcutaneous +tissue of the buttock or into the substance of the gluteus muscle. The +part is then massaged for a few minutes, and the massage is repeated +daily for a few days. + +No hard-and-fast rules can be laid down as to what constitutes a +complete course of treatment. Harrison recommends as a _minimum_ course +of one of the "914" preparations in _early primary cases_ an initial +dose of 0.45 grm. given intra-muscularly or into the deep subcutaneous +tissue; the same dose a week later; 0.6 grm. the following week; then +miss a week and give 9.6 grms. on two successive weeks; then miss two +weeks and give 0.6 grm. on two more successive weeks. + +When a _positive Wassermann reaction_ is present before treatment is +commenced, the above course is prolonged as follows: for three weeks is +given a course of potassium iodide, after which four more weekly +injections of 0.6 grm. of "914" are given. + +With each injection of "914" after the first, throughout the whole +course 1 grain of mercury is injected intra-muscularly. + +In the course of a few hours, there is usually some indisposition, with +a feeling of chilliness and slight rise of temperature; these symptoms +pass off within twenty-four hours, and in a few days there is a decided +improvement of health. Three or four days after an intra-muscular +injection there may be pain and stiffness in the gluteal region. + +These preparations are the most efficient therapeutic agents that have +yet been employed in the treatment of syphilis. + +The manifestations of the disease disappear with remarkable rapidity. +Observations show that the spirochaetes lose their capacity for movement +within an hour or two of the administration, and usually disappear +altogether in from twenty-four to thirty-six hours. Wassermann's +reaction usually yields a negative result in from three weeks to two +months, but later may again become positive. Subsequent doses of the +arsenical preparation are therefore usually indicated, and should be +given in from 7 to 21 days according to the dose. + +When syphilis occurs in a _pregnant woman_, she should be given in the +early months an ordinary course of "914," followed by 10-grain doses of +potassium iodide twice daily. The injections may be repeated two months +later, and during the remainder of the pregnancy 2-grain mercury pills +are given twice daily (A. Campbell). The presence of albumen in the +urine contra-indicates arsenical treatment. + +It need scarcely be pointed out that the use of powerful drugs like +"606" and "914" is not free from risk; it may be mentioned that each +dose contains nearly three grains of arsenic. Before the administration +the patient must be overhauled; its administration is contra-indicated +in the presence of disease of the heart and blood vessels, especially a +combination of syphilitic aortitis and sclerosis of the coronary +arteries, with degeneration of the heart muscle; in affections of the +central nervous system, especially advanced paralysis, and in such +disturbances of metabolism as are associated with diabetes and Bright's +disease. Its use is not contra-indicated in any lesion of active +syphilis. + +The administration is controlled by the systematic examination of the +urine for arsenic. + +_The Administration of Mercury._--The success of the arsenical +preparations has diminished the importance of mercury in the treatment +of syphilis, but it is still used to supplement the effect of the +injections. The amount of mercury to be given in any case must be +proportioned to the idiosyncrasies of the patient, and it is advisable, +before commencing the treatment, to test his urine and record his +body-weight. The small amount of mercury given at the outset is +gradually increased. If the body-weight falls, or if the gums become +sore and the breath foul, the mercury should be stopped for a time. If +salivation occurs, the drinking of hot water and the taking of hot baths +should be insisted upon, and half-dram doses of the alkaline sulphates +prescribed. + +_Methods of Administering Mercury._--(1) _By the Mouth._--This was for +long the most popular method in this country, the preparation usually +employed being grey powder, in pills or tablets, each of which contains +one grain of the powder. Three of these are given daily in the first +instance, and the daily dose is increased to five or even seven grains +till the standard for the individual patient is arrived at. As the grey +powder alone sometimes causes irritation of the bowels, it should be +combined with iron, as in the following formula: Hydrarg. c. cret. gr. 1; +ferri sulph. exsiccat. gr. 1 or 2. + +(2) _By Inunction._--Inunction consists in rubbing into the pores of the +skin an ointment composed of equal parts of 20 per cent. oleate of +mercury and lanolin. Every night after a hot bath, a dram of the +ointment (made up by the chemist in paper packets) is rubbed for fifteen +minutes into the skin where it is soft and comparatively free from +hairs. When the patient has been brought under the influence of the +mercury, inunction may be replaced by one of the other methods, of +administering the drug. + +(3) _By Intra-muscular Injection._--This consists in introducing the +drug by means of a hypodermic syringe into the substance of the gluteal +muscles. The syringe is made of glass, and has a solid glass piston; the +needle of platino-iridium should be 5 cm. long and of a larger calibre +than the ordinary hypodermic needle. The preparation usually employed +consists of: metallic mercury or calomel 1 dram, lanolin and olive oil +each 2 drams; it must be warmed to allow of its passage through the +needle. Five minims--containing one grain of metallic mercury--represent +a dose, and this is injected into the muscles above and behind the great +trochanter once a week. The contents of the syringe are slowly +expressed, and, after withdrawing the needle, gentle massage of the +buttock should be employed. Four courses each of ten injections are +given the first year, three courses of the same number during the second +and third years, and two courses during the fourth year (Lambkin). + +_The General Health._--The patient must lead a regular life and +cultivate the fresh-air habit, which is as beneficial in syphilis as in +tuberculosis. Anaemia, malaria, and other sources of debility must +receive appropriate treatment. The diet should be simple and easily +digested, and should include a full supply of milk. Alcohol is +prohibited. The excretory organs are encouraged to act by the liberal +drinking of hot water between meals, say five or six tumblerfuls in the +twenty-four hours. The functions of the skin are further aided by +frequent hot baths, and by the wearing of warm underclothing. While the +patient should avoid exposure to cold, and taxing his energies by undue +exertion, he should be advised to take exercise in the open air. On +account of the liability to lesions of the mouth and throat, he should +use tobacco in moderation, his teeth should be thoroughly overhauled by +the dentist, and he should brush them after every meal, using an +antiseptic tooth powder or wash. The mouth and throat should be rinsed +out night and morning with a solution of chlorate of potash and alum, or +with peroxide of hydrogen. + +_Treatment of the Local Manifestations._--_The skin lesions_ are treated +on the same lines as similar eruptions of other origin. As local +applications, preparations of mercury are usually selected, notably the +ointments of the red oxide of mercury, ammoniated mercury, or oleate of +mercury (5 per cent.), or the mercurial plaster introduced by Unna. In +the treatment of condylomata the greatest attention must be paid to +cleanliness and dryness. After washing and drying the affected patches, +they are dusted with a powder consisting of equal parts of calomel and +carbonate of zinc; and apposed skin surfaces, such as the nates or +labia, are separated by sublimate wool. In the ulcers of later secondary +syphilis, crusts are got rid of in the first instance by means of a +boracic poultice, after which a piece of lint or gauze cut to the size +of the ulcer and soaked in black wash is applied and covered with +oil-silk. If the ulcer tends to spread in area or in depth, it should be +scraped with a sharp spoon, and painted over with acid nitrate of +mercury, or a local hyperaemia may be induced by Klapp's suction +apparatus. + +_In lesions of the mouth and throat_, the teeth should be attended to; +the best local application is a solution of chromic acid--10 grains to +the ounce--painted on with a brush once daily. If this fails, the +lesions may be dusted with calomel the last thing at night. For deep +ulcers of the throat the patient should gargle frequently with chlorine +water or with perchloride of mercury (1 in 2000); if the ulcer continues +to spread it should be painted with acid nitrate of mercury. + +In the treatment of _iritis_ the eyes are shaded from the light and +completely rested, and the pupil is well dilated by atropin to prevent +adhesions. If there is much pain, a blister may be applied to the +temple. + +_The Relations of Syphilis to Marriage._--Before the introduction of the +Ehrlich-Hata treatment no patient was allowed to marry until three years +had elapsed after the disappearance of the last manifestation. While +marriage might be entered upon under these conditions without risk of +the husband infecting the wife, the possibility of his conveying the +disease to the offspring cannot be absolutely excluded. It is +recommended, as a precautionary measure, to give a further mercurial +course of two or three months' duration before marriage, and an +intravenous injection of an arsenical preparation. + +#Intermediate Stage.#--After the dying away of the secondary +manifestations and before the appearance of tertiary lesions, the +patient may present certain symptoms which Hutchinson called +_reminders_. These usually consist of relapses of certain of the +affections of the skin, mouth, or throat, already described. In the +skin, they may assume the form of peeling patches in the palms, or may +appear as spreading and confluent circles of a scaly papular eruption, +which if neglected may lead to the formation of fissures and superficial +ulcers. Less frequently there is a relapse of the eye affections, or of +paralytic symptoms from disease of the cerebral arteries. + +#Tertiary Syphilis.#--While the manifestations of primary and secondary +syphilis are common, those of the tertiary period are by comparison +rare, and are observed chiefly in those who have either neglected +treatment or who have had their powers of resistance lowered by +privation, by alcoholic indulgence, or by tropical disease. + +It is to be borne in mind that in a certain proportion of men and in a +larger proportion of women, the patient has no knowledge of having +suffered from syphilis. Certain slight but important signs may give the +clue in a number of cases, such as irregularity of the pupils or failure +to react to light, abnormality of the reflexes, and the discovery of +patches of leucoplakia on the tongue, cheek, or palate. + +The _general character of tertiary manifestations_ may be stated as +follows: They attack by preference the tissues derived from the +mesoblastic layer of the embryo--the cellular tissue, bones, muscles, +and viscera. They are often localised to one particular tissue or organ, +such, for example, as the subcutaneous cellular tissue, the bones, or +the liver, and they are rarely symmetrical. They are usually aggressive +and persistent, with little tendency to natural cure, and they may be +dangerous to life, because of the destructive changes produced in such +organs as the brain or the larynx. They are remarkably amenable to +treatment if instituted before the stage which is attended with +destruction of tissue is reached. Early tertiary lesions may be +infective, and the disease may be transmitted by the discharges from +them; but the later the lesions the less is the risk of their containing +an infective virus. + +The most prominent feature of tertiary syphilis consists in the +formation of granulation tissue, and this takes place on a scale +considerably larger than that observed in lesions of the secondary +period. The granulation tissue frequently forms a definite swelling or +tumour-like mass (syphiloma), which, from its peculiar elastic +consistence, is known as a _gumma_. In its early stages a gumma is a +firm, semi-translucent greyish or greyish-red mass of tissue; later it +becomes opaque, yellow, and caseous, with a tendency to soften and +liquefy. The gumma does harm by displacing and replacing the normal +tissue elements of the part affected, and by involving these in the +degenerative changes, of the nature of caseation and necrosis, which +produce the destructive lesions of the skin, mucous membranes, and +internal organs. This is true not only of the circumscribed gumma, but +of the condition known as _gummatous infiltration_ or _syphilitic +cirrhosis_, in which the granulation tissue is diffused throughout the +connective-tissue framework of such organs as the tongue or liver. Both +the gummatous lesions and the fibrosis of tertiary syphilis are directly +excited by the spirochaetes. + +The life-history of an untreated gumma varies with its environment. When +protected from injury and irritation in the substance of an internal +organ such as the liver, it may become encapsulated by fibrous tissue, +and persist in this condition for an indefinite period, or it may be +absorbed and leave in its place a fibrous cicatrix. In the interior of a +long bone it may replace the rigid framework of the shaft to such an +extent as to lead to pathological fracture. If it is near the surface of +the body--as, for example, in the subcutaneous or submucous cellular +tissue, or in the periosteum of a superficial bone, such as the palate, +the skull, or the tibia--the tissue of which it is composed is apt to +undergo necrosis, in which the overlying skin or mucous membrane +frequently participates, the result being an ulcer--the tertiary +syphilitic ulcer (Figs. 40 and 41). + +_Tertiary Lesions of the Skin and Subcutaneous Cellular Tissue._--The +clinical features of a _subcutaneous gumma_ are those of an indolent, +painless, elastic swelling, varying in size from a pea to an almond or +walnut. After a variable period it usually softens in the centre, the +skin over it becomes livid and dusky, and finally separates as a slough, +exposing the tissue of the gumma, which sometimes appears as a mucoid, +yellowish, honey-like substance, more frequently as a sodden, caseated +tissue resembling wash-leather. The caseated tissue of a gumma differs +from that of a tuberculous lesion in being tough and firm, of a buff +colour like wash-leather, or whitish, like boiled fish. The degenerated +tissue separates slowly and gradually, and in untreated cases may be +visible for weeks in the floor of the ulcer. + +[Illustration: FIG. 40.--Ulcerating Gumma of Lips. + +(From a photograph lent by Dr. Stopford Taylor and Dr. R. W. Mackenna.)] + +_The tertiary ulcer_ may be situated anywhere, but is most frequently +met with on the leg, especially in the region of the knee (Fig. 42) and +over the calf. There may be one or more ulcers, and also scars of +antecedent ulcers. The edges are sharply cut, as if punched out; the +margins are rounded in outline, firm, and congested; the base is +occupied by gummatous tissue, or, if this has already separated and +sloughed out, by unhealthy granulations and a thick purulent discharge. +When the ulcer has healed it leaves a scar which is depressed, and if +over a bone, is adherent to it. The features of the tertiary ulcer, +however, are not always so characteristic as the above description would +imply. It is to be diagnosed from the "leg ulcer," which occurs almost +exclusively on the lower third of the leg; from Bazin's disease (p. 74); +from the ulcers that result from certain forms of malignant disease, +such as rodent cancer, and from those met with in chronic glanders. + +_Gummatous Infiltration of the Skin_ ("Syphilitic Lupus").--This is a +lesion, met with chiefly on the face and in the region of the external +genitals, in which the skin becomes infiltrated with granulation tissue +so that it is thickened, raised above the surface, and of a brownish-red +colour. It appears as isolated nodules, which may fuse together; the +epidermis becomes scaly and is shed, giving rise to superficial ulcers +which are usually covered by crusted discharge. The disease tends to +spread, creeping over the skin with a serpiginous, crescentic, or +horse-shoe margin, while the central portion may heal and leave a scar. +From the fact of its healing in the centre while it spreads at the +margin, it may resemble tuberculous disease of the skin. It can usually +be differentiated by observing that the infiltration is on a larger +scale; the progress is much more rapid, involving in the course of +months an area which in the case of tuberculosis would require as many +years; the scars are sounder and are less liable to break down again; +and the disease rapidly yields to anti-syphilitic treatment. + +[Illustration: FIG. 41.--Ulceration of nineteen year's duration +in a woman aet. 24, the subject of inherited syphilis, showing active +ulceration, cicatricial contraction, and sabre-blade deformity of +tibiae.] + +_Tertiary lesions of mucous membrane and of the submucous cellular +tissue_ are met with chiefly in the tongue, nose, throat, larynx, and +rectum. They originate as gummata or as gummatous infiltrations, which +are liable to break down and lead to the formation of ulcers which may +prove locally destructive, and, in such situations as the larynx, even +dangerous to life. In the tongue the tertiary ulcer may prove the +starting-point of cancer; and in the larynx or rectum the healing of the +ulcer may lead to cicatricial stenosis. + +Tertiary lesions of the _bones and joints_, of the _muscles_, and of the +_internal organs_, will be described under these heads. The part played +by syphilis in the production of disease of arteries and of aneurysm +will be referred to along with diseases of blood vessels. + +[Illustration: FIG. 42.--Tertiary Syphilitic Ulceration in region of +Knee and on both Thumbs of woman aet. 37.] + +_Treatment._--The most valuable drugs for the treatment of the +manifestations of the tertiary period are the arsenical preparations and +the iodides of sodium and potassium. On account of their depressing +effects, the latter are frequently prescribed along with carbonate of +ammonium. The dose is usually a matter of experiment in each individual +case; 5 grains three times a day may suffice, or it may be necessary to +increase each dose to 20 or 25 grains. The symptoms of iodism which may +follow from the smaller doses usually disappear on giving a larger +amount of the drug. It should be taken after meals, with abundant water +or other fluid, especially if given in tablet form. It is advisable to +continue the iodides for from one to three months after the lesions for +which they are given have cleared up. If the potassium salt is not +tolerated, it may be replaced by the ammonium or sodium iodide. + +_Local Treatment._--The absorption of a subcutaneous gumma is often +hastened by the application of a fly-blister. When a gumma has broken on +the surface and caused an ulcer, this is treated on general principles, +with a preference, however, for applications containing mercury or +iodine, or both. If a wet dressing is required to cleanse the ulcer, +black wash may be used; if a powder to promote dryness, one containing +iodoform; if an ointment is indicated, the choice lies between the red +oxide of mercury or the dilute nitrate of mercury ointment, and one +consisting of equal parts of lanolin and vaselin with 2 per cent. of +iodine. Deep ulcers, and obstinate lesions of the bones, larynx, and +other parts may be treated by excision or scraping with the sharp spoon. + +#Second Attacks of Syphilis.#--Instances of re-infection of syphilis +have been recorded with greater frequency since the more general +introduction of arsenical treatment. A remarkable feature in such cases +is the shortness of the interval between the original infection and the +alleged re-infection; in a recent series of twenty-eight cases, this +interval was less than a year. Another feature of interest is that when +patients in the tertiary stage of syphilis are inoculated with the virus +from lesions from these in the primary and secondary stage lesions of +the tertiary type are produced. + +Reference may be made to the #relapsing false indurated chancre#, +described by Hutchinson and by Fournier, as it may be the source of +difficulty in diagnosis. A patient who has had an infecting chancre one +or more years before, may present a slightly raised induration on the +penis at or close to the site of his original sore. This relapsed +induration is often so like that of a primary chancre that it is +impossible to distinguish between them, except by the history. If there +has been a recent exposure to venereal infection, it is liable to be +regarded as the primary lesion of a second attack of syphilis, but the +further progress shows that neither bullet-buboes nor secondary +manifestations develop. These facts, together with the disappearance of +the induration under treatment, make it very likely that the lesion is +really gummatous in character. + + +INHERITED SYPHILIS + +One of the most striking features of syphilis is that it may be +transmitted from infected parents to their offspring, the children +exhibiting the manifestations that characterise the acquired form of the +disease. + +The more recent the syphilis in the parent, the greater is the risk of +the disease being communicated to the offspring; so that if either +parent suffers from secondary syphilis the infection is almost +inevitably transmitted. + +While it is certain that either parent may be responsible for +transmitting the disease to the next generation, the method of +transmission is not known. In the case of a syphilitic mother it is most +probable that the infection is conveyed to the foetus by the placental +circulation. In the case of a syphilitic father, it is commonly believed +that the infection is conveyed to the ovum through the seminal fluid at +the moment of conception. If a series of children, one after the other, +suffer from inherited syphilis, it is almost invariably the case that +the mother has been infected. + +In contrast to the acquired form, inherited syphilis is remarkable for +the absence of any primary stage, the infection being a general one from +the outset. The spirochaete is demonstrated in incredible numbers in the +liver, spleen, lung, and other organs, and in the nasal secretion, and, +from any of these, successful inoculations in monkeys can readily be +made. The manifestations differ in degree rather than in kind from those +of the acquired disease; the difference is partly due to the fact that +the virus is attacking developing instead of fully formed tissues. + +The virus exercises an injurious influence on the foetus, which in many +cases dies during the early months of intra-uterine life, so that +miscarriage results, and this may take place in repeated pregnancies, +the date at which the miscarriage occurs becoming later as the virus in +the mother becomes attenuated. Eventually a child is carried to full +term, and it may be still-born, or, if born alive, may suffer from +syphilitic manifestations. It is difficult to explain such vagaries of +syphilitic inheritance as the infection of one twin and the escape of +the other. + +_Clinical Features._--We are not here concerned with the severe forms of +the disease which prove fatal, but with the milder forms in which the +infant is apparently healthy when born, but after from two to six weeks +begins to show evidence of the syphilitic taint. + +The usual phenomena are that the child ceases to thrive, becomes thin +and sallow, and suffers from eruptions on the skin and mucous membranes. +There is frequently a condition known as _snuffles_, in which the nasal +passages are obstructed by an accumulation of thin muco-purulent +discharge which causes the breathing to be noisy. It usually begins +within a month after birth and before the eruptions on the skin appear. +When long continued it is liable to interfere with the development of +the nasal bones, so that when the child grows up there results a +condition known as the "saddle-nose" deformity (Figs. 43 and 44). + +[Illustration: FIG. 43.--Facies of Inherited Syphilis. + +(From Dr. Byrom Bramwell's _Atlas of Clinical Medicine_.)] + +_Affections of the Skin._--Although all types of skin affection are met +with in the inherited disease, the most important is a _papular_ +eruption, the papules being of large size, with a smooth shining top and +of a reddish-brown colour. It affects chiefly the buttocks and thighs, +the genitals, and other parts which are constantly moist. It is +necessary to distinguish this specific eruption from a form of eczema +which occurs in these situations in non-syphilitic children, the points +that characterise the syphilitic condition being the infiltration of the +skin and the coppery colour of the eruption. At the anus the papules +acquire the characters of _condylomata_, also at the angles of the +mouth, where they often ulcerate and leave radiating scars. + +_Affections of the Mucous Membranes._--The inflammation of the nasal +mucous membrane that causes snuffles has already been referred to. There +may be mucous patches in the mouth, or a stomatitis which is of +importance, because it results in interference with the development of +the permanent teeth. The mucous membrane of the larynx may be the seat +of mucous patches or of catarrh, and as a result the child's cry is +hoarse. + +_Affections of the Bones._--Swellings at the ends of the long bones, due +to inflammation at the epiphysial junctions, are most often observed at +the upper end of the humerus and in the bones in the region of the +elbow. Partial displacement and mobility at the ossifying junction may +be observed. The infant cries when the part is touched; and as it does +not move the limb voluntarily, the condition is spoken of as _the +pseudo-paralysis of syphilis_. Recovery takes place under +anti-syphilitic treatment and immobilisation of the limb. + +Diffuse thickening of the shafts of the long bones, due to a deposit of +new bone by the periosteum, is sometimes met with. + +[Illustration: FIG. 44.--Facies of Inherited Syphilis.] + +The conditions of the skull known as Parrot's nodes or bosses, and +craniotabes, were formerly believed to be characteristic of inherited +syphilis, but they are now known to occur, particularly in rickety +children, from other causes. The _bosses_ result from the heaping up of +new spongy bone beneath the pericranium, and they may be grouped +symmetrically around the anterior fontanelle, or may extend along either +side of the sagittal suture, which appears as a deep groove--the +"natiform skull." The bosses disappear in time, but the skull may remain +permanently altered in shape, the frontal and parietal eminences +appearing unduly prominent. The term _craniotabes_ is applied when the +bone becomes thin and soft, reverting to its original membranous +condition, so that the affected areas dimple under the finger like +parchment or thin cardboard; its localisation in the posterior parts of +the skull suggests that the disappearance of the osseous tissue is +influenced by the pressure of the head on the pillow. Craniotabes is +recovered from as the child improves in health. + +Between the ages of three and six months, certain other phenomena may be +met with, such as _effusion into the joints_, especially the knees; +_iritis_, in one or in both eyes, and enlargement of the spleen and +liver. + +In the majority of cases the child recovers from these early +manifestations, especially when efficiently treated, and may enjoy an +indefinite period of good health. On the other hand, when it attains the +age of from two to four years, it may begin to manifest lesions which +correspond to those of the tertiary period of acquired syphilis. + +#Later Lesions.#--In the skin and subcutaneous tissue, the later +manifestations may take the form of localised gummata, which tend to +break down and form ulcers, on the leg for example, or of a spreading +gummatous infiltration which is also liable to ulcerate, leaving +disfiguring scars, especially on the face. The palate and fauces may be +destroyed by ulceration. In the nose, especially when the ulcerative +process is associated with a putrid discharge--ozaena--the destruction of +tissue may be considerable and result in unsightly deformity. The entire +palatal portions of the upper jaws, the vomer, turbinate, and other +bones bounding the nasal and oral cavities, may disappear, so that on +looking into the mouth the base of the skull is readily seen. Gummatous +disease is frequently observed also in the flat bones of the skull, in +the bones of the hand, as syphilitic dactylitis, and in the bones of the +forearm and leg. When the tibia is affected the disease is frequently +bilateral, and may assume the form of gummatous ulcers and sinuses. In +later years the tibia may present alterations in shape resulting from +antecedent gummatous disease--for example, nodular thickenings of the +shaft, flattening of the crest, or a more uniform increase in thickness +and length of the shaft of the bone, which, when it is curved in +addition, is described as the "sabre-blade" deformity. Among lesions of +the viscera, mention should be made of gumma of the testis, which causes +the organ to become enlarged, uneven, and indurated. This has even been +observed in infants a few months old. + +Occasionally a syphilitic child suffers from a succession of these +gummatous lesions with resulting ill-health, and, it may be, waxy +disease of the internal organs; on the other hand, it may recover and +present no further manifestations of the inherited taint. + +_Affections of the Eyes._--At or near puberty there is frequently +observed an affection of the eyes, known as _chronic interstitial +keratitis_, the relationship of which to inherited syphilis was first +established by Hutchinson. It occurs between the ages of six and sixteen +years, and usually affects one eye before the other. It commences as a +diffuse haziness or steaminess near the centre of the cornea, and as it +spreads the entire cornea assumes the appearance of ground glass. The +chief complaint is of dimness of sight, which may almost amount to +blindness, but there is little pain or photophobia; a certain amount of +conjunctival and ciliary congestion is usually present, and there may be +_iritis_ in addition. The cornea, or parts of it, may become of a deep +pink or salmon colour from the formation in it of new blood vessels. The +affection may last for from eighteen months to two years. Complete +recovery usually takes place, but slight opacities, especially in the +site of former salmon patches, may persist, and the disease occasionally +relapses. _Choroiditis_ and _retinitis_ may also occur, and leave +permanent changes easily recognised on examination with the +ophthalmoscope. + +Among the rarer and more serious lesions of the inherited disease may be +mentioned gummatous disease in the _larynx and trachea_, attended with +ulceration and resulting in stenosis; and lesions of the _nervous +system_ which may result in convulsions, paralysis, or dementia. + +In a limited number of cases, about the period of puberty there may +develop _deafness_, which is usually bilateral and may become absolute. + +_Changes in the Permanent Teeth._--These affect specially the upper +central incisors, which are dwarfed and stand somewhat apart in the gum, +with their free edges converging towards one another. They are tapering +or peg-shaped, and present at their cutting margin a deep semilunar +notch. These appearances are commonly associated with the name of +Hutchinson, who first described them. Affecting as they do the +permanent teeth, they are not available for diagnosis until the child is +over eight years of age. Henry Moon drew attention to a change in the +first molars; these are reduced in size and dome-shaped through dwarfing +of the central tubercle of each cusp. + +#Diagnosis of Inherited Syphilis.#--When there is a typical eruption on +the buttocks and snuffles there is no difficulty in recognising the +disease. When, however, the rash is scanty or is obscured by co-existing +eczema, most reliance should be placed on the distribution of the +eruption, on the brown stains which are left after it has passed off, on +the presence of condylomata, and of fissuring and scarring at the angles +of the mouth. The history of the mother relative to repeated +miscarriages and still-born children may afford confirmatory evidence. +In doubtful cases, the diagnosis may be aided by the Wassermann test and +by noting the therapeutic effects of grey powder, which, in syphilitic +infants, usually effects a marked and rapid improvement both in the +symptoms and in the general health. + +While a considerable number of syphilitic children grow up without +showing any trace of their syphilitic inheritance, the majority retain +throughout life one or more of the following characteristics, which may +therefore be described as _permanent signs of the inherited disease_: +Dwarfing of stature from interference with growth at the epiphysial +junctions; the forehead low and vertical, and the parietal and frontal +eminences unduly prominent; the bridge of the nose sunken and rounded; +radiating scars at the angles of the mouth; perforation or destruction +of the hard palate; Hutchinson's teeth; opacities of the cornea from +antecedent keratitis; alterations in the fundus oculi from choroiditis; +deafness; depressed scars or nodes on the bones from previous gummata; +"sabre-blade" or other deformity of the tibiae. + +#The Contagiousness of Inherited Syphilis.#--In 1837, Colles of Dublin +stated his belief that, while a syphilitic infant may convey the disease +to a healthy wet nurse, it is incapable of infecting its own mother if +nursed by her, even although she may never have shown symptoms of the +disease. This doctrine, which is known as _Colles' law_, is generally +accepted in spite of the alleged occurrence of occasional exceptions. +The older the child, the less risk there is of its communicating the +disease to others, until eventually the tendency dies out altogether, as +it does in the tertiary period of acquired syphilis. It should be +added, however, that the contagiousness of inherited syphilis is denied +by some observers, who affirm that, when syphilitic infants prove +infective, the disease has been really acquired at or soon after birth. + +There is general agreement that the subjects of inherited syphilis +cannot transmit the disease by inheritance to their offspring, and that, +although they very rarely acquire the disease _de novo_, it is possible +for them to do so. + +#Prognosis of Inherited Syphilis.#--Although inherited syphilis is +responsible for a large but apparently diminishing mortality in infancy, +the subjects of this disease may grow up to be as strong and healthy as +their neighbours. Hutchinson insisted on the fact that there is little +bad health in the general community that can be attributed to inherited +syphilis. + +#Treatment.#--Arsenical injections are as beneficial in the inherited as +in the acquired disease. An infant the subject of inherited syphilis +should, if possible, be nursed by its mother, and failing this it should +be fed by hand. In infants at the breast, the drug may be given to the +mother; in others, it is administered in the same manner as already +described--only in smaller doses. On the first appearance of syphilitic +manifestations it should be given 0.05 grm, novarsenbillon, injected +into the deep subcutaneous tissues every week for six weeks, followed by +one year's mercurial inunction--a piece of mercurial ointment the size +of a pea being inserted under the infant's binder. In older children the +dose is proportionately increased. The general health should be improved +in every possible direction; considerable benefit may be derived from +the use of cod-liver oil, and from preparations containing iron and +calcium. Surgical interference may be required in the destructive +gummatous lesions of the nose, throat, larynx, and bones, either with +the object of arresting the spread of the disease, or of removing or +alleviating the resulting deformities. In children suffering from +keratitis, the eyes should be protected from the light by smoked or +coloured glasses, and the pupils should be dilated with atropin from +time to time, especially in cases complicated with iritis. + +#Acquired Syphilis in Infants and Young Children.#--When syphilis is met +with in infants and young children, it is apt to be taken for granted +that the disease has been inherited. It is possible, however, for them +to acquire the disease--as, for example, while passing through the +maternal passages during birth, through being nursed or kissed by +infected women, or through the rite of circumcision. The risk of +infection which formerly existed by the arm-to-arm method of +vaccination has been abolished by the use of calf lymph. + +The clinical features of the acquired disease in infants and young +children are similar to those observed in the adult, with a tendency, +however, to be more severe, probably because the disease is often late +in being recognised and treated. + + + + +CHAPTER X + +TUMOURS[2] + + +Definition--Etiology--General characters of innocent and malignant + tumours. CLASSIFICATION OF TUMOURS: I. Connective-tissue tumours: + (1) _Innocent_: _Lipoma_, _Xanthoma_, _Chondroma_, _Osteoma_, + _Odontoma_, _Fibroma_, _Myxoma_, _Endothelioma_, etc.; (2) + _Malignant_: _Sarcoma_--II. Epithelial tumours: (1) _Innocent_: + _Papilloma_, _Adenoma_, _Cystic Adenoma_; (2) _Malignant_: + _Epithelioma_, _Glandular Cancer_, _Rodent Cancer_, _Melanotic + Cancer_--III. Dermoids--IV. Teratoma. Cysts: _Retention_, + _Exudation_, _Implantation_, _Parasitic_, _Lymphatic or Serous_. + Ganglion. + +[2] For the histology of tumours the reader is referred to a text-book +of pathology. + +A tumour or neoplasm is a localised swelling composed of newly formed +tissue which fulfils no physiological function. Tumours increase in size +quite independently of the growth of the body, and there is no natural +termination to their growth. They are to be distinguished from such +over-growths as are of the nature of simple hypertrophy or local +giantism, and also from inflammatory swellings, which usually develop +under the influence of a definite cause, have a natural termination, and +tend to disappear when the cause ceases to act. + +The _etiology of tumours_ is imperfectly understood. Various factors, +acting either singly or in combination, may be concerned in their +development. Certain tumours, for example, are the result of some +congenital malformation of the particular tissue from which they take +origin. This would appear to be the case in many tumours of blood +vessels (angioma), of cartilage (chondroma), of bone (osteoma), and of +secreting gland tissue (adenoma). The theory that tumours originate from +foetal residues or "rests," is associated with the name of Cohnheim. +These rests are supposed to be undifferentiated embryonic cells which +remain embedded amongst fully formed tissue elements, and lie dormant +until they are excited into active growth and give rise to a tumour. +This mode of origin is illustrated by the development of dermoids from +sequestrated portions of epidermis. + +Among the local factors concerned in the development of tumours, +reference must be made to the influence of irritation. This is probably +an important agent in the causation of many of the tumours met with in +the skin and in mucous membranes--for example, cancer of the skin, of +the lip, and of the tongue. The part played by injury is doubtful. It +not infrequently happens that the development of a tumour is preceded by +an injury of the part in which it grows, but it does not necessarily +follow that the injury and the tumour are related as cause and effect. +It is possible that an injury may stimulate into active growth +undifferentiated tissue elements or "rests," and so determine the growth +of a tumour, or that it may alter the characters of a tumour which +already exists, causing it to grow more rapidly. + +The popular belief that there is some constitutional peculiarity +concerned in the causation of tumours is largely based on the fact that +certain forms of new growth--for example, cancer--are known to occur +with undue frequency in certain families. The same influence is more +striking in the case of certain innocent tumours--particularly multiple +osteomas and lipomas--which are hereditary in the same sense as +supernumerary or webbed fingers, and appear in members of the same +family through several generations. + + +INNOCENT AND MALIGNANT TUMOURS + +For clinical purposes, tumours are arbitrarily divided into two +classes--the innocent and the malignant. The outstanding difference +between them is, that while the evil effects of innocent tumours are +entirely local and depend for their severity on the environment of the +growth, malignant tumours wherever situated, in addition to producing +similar local effects, injure the general health and ultimately cause +death. + +_Innocent_, benign, or simple tumours present a close structural +resemblance to the normal tissues of the body. They grow slowly, and are +usually definitely circumscribed by a fibrous capsule, from which they +are easily enucleated, and they do not tend to recur after removal. In +their growth they merely push aside and compress adjacent parts, and +they present no tendency to ulcerate and bleed unless the overlying skin +or mucous membrane is injured. Although usually solitary, some are +multiple from the outset--for example, fatty, fibrous, and bony tumours, +warts, and fibroid tumours of the uterus. They produce no constitutional +disturbance. They only threaten life when growing in the vicinity of +vital organs, and then only in virtue of their situation--for example, +death may result from an innocent tumour in the air-passage causing +suffocation, in the intestine causing obstruction of the bowels, or in +the vertebral canal causing pressure on the spinal medulla. + +_Malignant tumours_ usually show a marked departure from the structure +and arrangement of the normal tissues of the body. Although the cells of +which they are composed are derived from normal tissue cells, they tend +to take on a lower, more vegetative form; they may be regarded as +parasites living at the expense of the organism, multiplying +indefinitely and destroying everything with which they come in contact. + +Malignant tumours grow more rapidly than innocent tumours, and tend to +infiltrate their surroundings by sending out prolongations or offshoots; +they are therefore liable to recur after an operation which is +restricted to the removal of the main tumour. They are not encapsulated, +although they may appear to be circumscribed by condensation of the +surrounding tissues; they are rarely multiple at the outset, but show a +marked tendency to spread to other parts of the body. Fragments of the +parent tumour may become separated and be carried off in the lymph or +blood-stream and deposited in other parts of the body, where they give +rise to secondary growths. Malignant tumours tend to invade and destroy +the overlying skin or mucous membrane, and thus give rise to bleeding +ulcers; if the tumour tissue protrudes through the gap in the skin, it +is said to _fungate_. In course of time they give rise to a condition of +ill-health or _cachexia_, the patient becoming pale, sallow, feverish, +and emaciated, probably as a result of chronic poisoning from the +absorption of toxic products from the tumour. They ultimately destroy +life, it may be by their local effects, such as ulceration and +haemorrhage, by favouring the entrance of septic infection, by +interfering with the function of organs which are essential to life, by +cachexia, or by a combination of these effects. + +The situation of a malignant tumour exercises considerable influence on +the rapidity, as well as on the mode, in which it causes death. Some +cancers, such as that known as "rodent," show malignant features which +are entirely local, while others, such as melanotic cancer, exhibit a +malignancy characterised by rapid generalisation of growths throughout +the body. Tumours that are structurally alike may show variations in +malignancy, according to their situation and to the age of the patient, +as well as to other factors which are as yet unknown. + +In attempting to arrive at a conclusion as to the innocence or +malignancy of any tumour, too much reliance must not be placed on its +histological features; its situation, rate of growth, and other clinical +features must also be taken into consideration. It cannot be too +emphatically stated that there is no hard-and-fast line between innocent +and malignant growths; there is an indefinite transition from one to the +other. The possibility of the transformation of a benign into a +malignant tumour must be admitted. Such a transformation implies a +change in the structure of the growth, and has been observed especially +in fibrous and cartilaginous tumours, in tumours of the thyreoid gland, +and in uterine fibroids. The alteration in character may take place +under the influence of injury, prolonged or repeated irritation, +incomplete removal of the benign tumour by operation, or the altered +physiological conditions of the tissues which attend upon advancing +years. + +After a tumour has been removed by operation it should as a routine +measure be subjected to microscopical examination; the results are often +instructive and sometimes other than what was expected. + +#Varieties of Tumours.#--In the following description, tumours are +classified on an anatomical basis, taking in order first the +connective-tissue group and subsequently those that originate in +epithelium. + + +INNOCENT CONNECTIVE-TISSUE TUMOURS + +#Lipoma.#--A lipoma is composed of fat resembling that normally present +in the body. The commonest variety is the _subcutaneous lipoma_, which +grows from the subcutaneous fat, and forms a soft, irregularly lobulated +tumour (Fig. 45). The fat is arranged in lobules separated by +connective-tissue septa, which are continuous with the capsule +surrounding the tumour and with the overlying skin, which becomes +dimpled or puckered when an attempt is made to pinch it up. As the fat +is almost fluid at the body temperature, fluctuation can usually be +detected. These tumours vary greatly in size, occur at all ages, grow +slowly, and, while generally solitary, are sometimes multiple. They are +most commonly met with on the shoulder, buttock, or back. In certain +situations, such as the thigh and perineum, they tend to become +pedunculated (Fig. 46). + +A fatty tumour is to be diagnosed from a cold abscess and from a cyst. +The distinguishing features of the lipoma are the tacking down and +dimpling of the overlying skin, the lobulation of the tumour, which is +recognised when it is pressed upon with the flat of the hand, and, more +reliable than either of these, the mobility, the tumour slipping away +when pressed upon at its margin. + +[Illustration: FIG. 45.--Subcutaneous Lipoma showing lobulation.] + +The prognosis is more favourable than in any other tumour as it never +changes its characters; the only reasons for its removal by operation +are its unsightliness and its probable increase in size in the course of +years. The operation consists in dividing the skin and capsule over the +tumour and shelling it out. Care must be taken that none of the outlying +lobules are left behind. If the overlying skin is damaged or closely +adherent, it should be removed along with the tumour. + +[Illustration: FIG. 46.--Pedunculated Lipoma of Buttock of forty years' +duration in a woman aet. 68.] + +_Multiple subcutaneous lipomas_ are frequently symmetrical, and in a +certain group of cases, met with chiefly in women, pain is a prominent +symptom, hence the term _adiposis dolorosa_ (Dercum). These multiple +tumours show little or no tendency to increase in size, and the pain +which attends their development does not persist. + +In the neck, axilla, and pubes a diffuse overgrowth of the subcutaneous +fat is sometimes met with, forming symmetrical tumour-like masses, known +as _diffuse lipoma_. As this is not, strictly speaking, a tumour, the +term _diffuse lipomatosis_ is to be preferred. A similar condition was +described by Jonathan Hutchinson as being met with in the domestic +animals. If causing disfigurement, the mass of fat may be removed by +operation. + +[Illustration: FIG. 47.--Diffuse Lipomatosis of Neck.] + +_Lipoma in other Situations._--The _periosteal lipoma_ is usually +congenital, and is most often met with in the hand; it forms a +projecting lobulated tumour, which, when situated in the palm, resembles +an angioma or a lymphangioma. The _subserous lipoma_ arises from the +extra-peritoneal fat in the posterior abdominal wall, in which case it +tends to grow forwards between the layers of the mesentery and to give +rise to an abdominal tumour; or it may grow from the extra-peritoneal +fat in the anterior abdominal wall and protrude from one of the hernial +openings or through an abnormal opening in the parietes, constituting a +_fatty hernia_. A _subsynovial lipoma_ grows from the fat surrounding +the synovial membrane of a joint, and projects into its interior, giving +rise to the symptoms of loose body. Lipomas are also met with growing +from the adipose connective tissue _between or in the substance of +muscles_, and, when situated beneath the deep fascia, such as the fascia +lata of the thigh, the characteristic signs are obscured and a +differential diagnosis is difficult. It may be differentiated from a +cold abscess by puncture with an exploring needle. + +[Illustration: FIG. 48.--Zanthoma of Hands in a girl aet. 14, showing +multiple subcutaneous tumours (cf. Fig. 49). + +(Sir H. J. Stiles' case.)] + +#Zanthoma# is a rare but interesting form of tumour, composed of a +fibrous and fatty tissue, containing a granular orange-yellow pigment, +resembling that of the corpus luteum. It originates in the corium and +presents two clinical varieties. In the first of these, it occurs in the +form of raised yellow patches, usually in the skin of the eyelids of +persons after middle life, and in many instances is associated with +chronic jaundice; the patches are often symmetrical, and as they +increase in size they tend to fuse with another. + +The second form occurs in children and adolescents; it may affect +several generations of the same family, and is often multiple, there +being a combination of thickened yellow patches of skin and projecting +tumours, some of which may attain a considerable size (Figs. 48 and 49). +On section, the tumour tissue presents a brilliant orange or saffron +colour. + +There is no indication for removing the tumours unless for the deformity +which they cause; exposure to the X-rays is to be preferred to +operation. + +[Illustration: FIG. 49.--Zanthoma showing Subcutaneous Tumours on +Buttocks. From same patient as Fig. 48.] + +#Chondroma.#--A chondroma is mainly composed of cartilage. Processes of +vascular connective tissue pass in between the nodules of cartilage +composing the tumour from the fibrous capsule which surrounds it. On +section it is of a greyish-blue colour and semi-translucent. The tumour +is firm and elastic in consistence, but certain portions may be densely +hard from calcification or ossification, while other portions may be +soft and fluctuating as a result of myxomatous degeneration and +liquefaction. These tumours grow slowly and painlessly, and may surround +nerves and arteries without injuring them. They may cause a deep hollow +in the bone from which they originate. All intermediate forms between +the innocent chondroma and the malignant chondro-sarcoma are met with. +Chondroma may occur in a multiple form, especially in relation to the +phalanges and metacarpal bones. When growing in the interior of a bone +it causes a spindle-shaped enlargement of the shaft, which in the case +of a phalanx or metacarpal bone may resemble the dactylitis resulting +from tubercle or syphilis. A chondroma appears as a clear area in a +skiagram. + +A _skiagram_ of a bone in which there is a chondroma shows a clear +rounded area in the position of the tumour, which must be differentiated +from similar clear areas due to other kinds of tumour, especially the +myeloma; when it has undergone calcification or ossification, it gives a +shadow as dark as bone. + +[Illustration: FIG. 50.--Chondroma growing from infraspinous fossa of +Scapula.] + +[Illustration: FIG. 51.--Chondroma of Metacarpal Bone of Thumb.] + +_Treatment._--In view of the unstable quality of the chondroma, +especially of its liability to become malignant, it should be removed as +soon as it is recognised. In those projecting from the surface of a +bone, both the tumour and its capsule should be removed. If in the +interior, a sufficient amount of the cortex should be removed to allow +of the tumour being scraped out, and care must be taken that no nodules +of cartilage are left behind. In multiple chondromas of the hand, when +the fingers are crippled and useless, exposure to the X-rays should be +given a trial, and in extreme cases the question of amputation may have +to be considered. When a cartilaginous tumour takes on active growth, it +must be treated as malignant. + +The chondromas that are met with at the ends of the long bones in +children and young adults form a group by themselves. They are usually +related to the epiphysial cartilage, and it was suggested by Virchow +that they take origin from islands of cartilage which have not been used +up in the process of ossification. They are believed to occur more +frequently in those who have suffered from rickets. They have no +malignant tendencies and tend to undergo ossification concurrently with +the epiphysial cartilage from which they take origin, and constitute +what are known as _cartilaginous exostoses_. These are sometimes met +with in a multiple form, and may occur in several generations of the +same family. They are considered in greater detail in the chapter +dealing with tumours of bone. + +Minute nodules of cartilage sometimes form in the synovial membrane of +joints and lining of tendon sheaths and bursae: they tend to become +detached from the membrane and constitute loose bodies; they also +undergo a variable amount of calcification and ossification, so as to be +visible in skiagrams. They are further considered with loose bodies in +joints. + +Cartilaginous tumours in the parotid, submaxillary gland, and testicle +belong to a class of "mixed tumours" that will be referred to later. + +#Osteoma.#--The true osteoma is composed of bony tissue, and originates +from the skeleton. Two varieties are recognised--the spongy or +cancellous, and the ivory or compact. The _spongy_ or _cancellous +osteoma_ is really an ossified chondroma, and is met with at the ends of +the long bones (Fig. 52). From the fact that it projects from the +surface of the bone it is often spoken of as an _exostosis_. It grows +slowly, and rarely causes any discomfort unless it presses upon a +nerve-trunk or upon a bursa which has developed over it. The Rontgen +rays show a dark shadow corresponding to the ossified portion of the +tumour, and continuous with that of the bone from which it is growing +(Fig. 138). Operative interference is only indicated when the tumour is +giving rise to inconvenience. It is then removed, its base or neck being +divided by means of the chisel. The multiple variety of osteoma is +considered with the diseases of bone. + +The bony outgrowth from the terminal phalanx of the great toe--known as +the _subungual exostosis_--is described and figured on p. 404. Bony +projections or "spurs" sometimes occur on the under surface of the +calcaneus, and, projecting downwards and forwards from the greater +process, cause pain on putting the heel to the ground. + +[Illustration: FIG. 52.--Cancellous Osteoma of lower end of Femur.] + +The _ivory_ or _compact osteoma_ is composed of dense bone, and usually +grows from the skull. It is generally sessile and solitary, and may grow +into the interior of the skull, into the frontal sinus, into the cavity +of the orbit or nose, or may fill up the external auditory meatus, +causing most unsightly deformity and interference with sight, breathing, +and hearing. + +Bony formations occur in _muscles and tendons_, especially at their +points of attachment to the skeleton, and are known as false exostoses; +they are described with the diseases of muscles. + +#Odontoma.#--An odontoma is composed of dental tissues in varying +proportions and different degrees of development, arising from +tooth-germs or from teeth still in process of growth (Bland Sutton). +Odontomas resemble teeth in so far that during their development they +remain hidden below the mucous membrane and give no evidence of their +existence. There then succeeds, usually between the twentieth and +twenty-fifth years, an eruptive stage, which is often attended with +suppuration, and this may be the means of drawing attention to the +tumour. Following Bland Sutton, several varieties of odontoma may be +distinguished according to the part of the tooth-germ concerned in their +formation. + +The _epithelial odontoma_ is derived from persistent portions of the +epithelium of the enamel organ, and constitutes a multilocular cystic +tumour which is chiefly met with in the mandible. The cystic spaces of +the tumour contain a brownish glairy fluid. These tumours have been +described by Eve under the name of multilocular cystic epithelial +tumours of the jaw. + +The _follicular odontoma_, also known as a _dentigerous cyst_, is +derived from the distension of a tooth follicle. It constitutes a cyst +containing a viscid fluid, and an imperfectly formed tooth is often +found embedded in its wall. The cyst usually forms in relation to one of +the permanent molars, and may attain considerable dimensions. + +The _fibrous odontoma_ is the result of an overgrowth of fibrous tissue +surrounding the tooth sac, which encapsulates the tooth and prevents its +eruption. The thickened tooth sac is usually mistaken for a fibrous +tumour, until, after removal, the tooth is recognised in its interior. + +_Composite Odontoma._--This is a convenient term to apply to certain +hard dental tumours which are met with in the jaws, and consist of +enamel, dentine, and cement. The tumour is to be regarded as being +derived from an abnormal growth of all the elements of a tooth germ, or +of two or more tooth germs, indiscriminately fused with one another. It +may appear in childhood, and form a smooth unyielding tumour, often of +considerable size, replacing the corresponding permanent tooth. It may +cause a purulent discharge, and in some cases it has been extruded after +sloughing of the overlying soft parts. Many examples of this variety of +odontoma, growing in the nasal cavity or in the maxillary sinus, have +been erroneously regarded as osteomas even after removal. + +On section, the tumour is usually laminated, and is seen to consist +mainly of dentine with a partial covering of enamel and cement. + +_Diagnosis._--Odontomas are often only diagnosed after removal. When +attended with suppuration, the condition has been mistaken for disease +of the jaw. Fibrous odontomas have been mistaken for sarcoma, and +portions of the maxilla removed unnecessarily. Any circumscribed tumour +of the jaw, particularly when met with in a young adult, should suggest +the possibility of an odontoma. Skiagrams often give useful information +both for diagnosis and for treatment. + +_Treatment._--The solid varieties of odontoma can usually be shelled out +after dividing the overlying soft parts. In the follicular variety, it +is usually sufficient to excise a portion of the wall, scrape out the +interior, and remove any tooth that may be present. The cavity is then +packed and allowed to heal from the bottom. + +#Fibroma.#--A fibroma is a tumour composed of fibrous connective tissue. +A distinction may be made between the _soft fibroma_, which is +comparatively rich in cells and blood vessels, and in which the fibres +are arranged loosely; and the _hard fibroma_, which is composed of +closely packed bundles of fibres often arranged in a concentric fashion +around the blood vessels. The cut surface of the soft fibroma presents a +pinkish-white, fleshy appearance, resembling the slowly growing forms of +sarcoma; that of a hard fibroma presents a dry, glistening appearance, +aptly compared to watered silk. The soft variety grows much more rapidly +than the hard. In certain fibromas--in those, for example, which grow +from the periosteum of the base of the skull and project into the +naso-pharynx--the blood vessels are dilated into sinuses and have no +proper sheaths; they therefore tend to remain open when divided, and to +bleed excessively. Transition forms between soft fibroma and sarcoma are +met with, so that in operating for their removal it is safer to take +away the capsule along with the tumour, and the patient should be kept +under observation in view of the risk of recurrence. + +The skin--especially the skin of the buttock--is one of the favourite +seats of fibroma, and it may occur in a multiple form. It is met with +also in the subcutaneous and intermuscular cellular tissue, and in the +abdominal wall, where it sometimes attains considerable dimensions. +Various forms of fibroma are met with in the mamma and are described +with diseases of that organ. The fibrous overgrowths in the skin, known +as _keloid_ and _molluscum fibrosum_, and those met with in the _sheaths +of nerves_, are described elsewhere. Fibroid tumours of the uterus are +described with myoma. + +_Diffuse fibroma_ or _Fibromatosis_, analogous to lipomatosis, is met +with in the connective tissue of the skin and sheaths of nerves, and +constitutes one form of neuro-fibromatosis; a similar change is also met +with in the stomach and colon. + +#Myxoma.#--A myxoma is composed of tissue of a soft gelatinous, +semifluid consistence. The pure myxoma is extremely rare, and +clinically resembles the lipoma. Myxomatous tissue is, however, +frequently found in other connective-tissue tumours as a result of +degeneration, for example, in cartilaginous tumours and in sarcomas. +Myxomatous tissue is also a prominent constituent of the "innocent +parotid tumour." Mucous polypus of the nose, which is often described as +a myxoma, is merely a pendulous process of oedematous mucous membrane. + +[Illustration: FIG. 53.--Myeloma of Shaft of Humerus, causing +pathological fracture. (Mr. J. W. Struthers' case.) + +(The unusual site of the tumour is to be noted.)] + +#Myeloma.#--A myeloma is composed of large multinuclear giant cells +surrounded by round and spindle cells. The cut surface of the tumour +presents a deep red or maroon colour. While occasionally met with in +tendon sheaths and bursae, and is then of an orange-yellow colour, the +myeloma occurs most frequently in the cancellous tissue at the ends of +the long bones, its favourite site being the upper end of the tibia. +Although formerly classified as a sarcoma, it is the exception for it to +present malignant features, and it can usually be extirpated by local +measures without fear of recurrence. The diagnosis, X-ray appearances, +and the method of removal are considered with the diseases of bone. +Sometimes the myeloma is met with in multiple form in the skeleton, in +association with an unusual form of protein in the urine (Bence Jones). + +#Myoma.#--A myoma is composed of non-striped muscle fibres. A pure myoma +is very rare, and is met with in organs possessed of non-striped muscle, +such as the stomach, intestine, urinary bladder, and prostate. In the +uterus, which is the most common situation, these tumours contain a +considerable admixture of fibrous tissue, and are known as _fibroids_ or +_fibro-myomas_. They present on section a fasciculated appearance, which +may resemble that of a section of balls of cotton (Fig. 54). They are +encapsulated and vascular, frequently attain a large size, and may be +single or multiple. While they may occasion neither inconvenience nor +suffering, they frequently give rise to profuse haemorrhage from the +uterus, and may cause serious symptoms by pressing injuriously on the +ureters or the intestine, or by complicating pregnancy and parturition. + +The #Rhabdomyoma# is an extremely rare form of tumour, met with in the +kidney, uterus, and testicle. It contains striped muscle fibres, and is +supposed to originate from a residue of muscular tissue which has become +sequestrated during development. + +[Illustration: FIG. 54.--Fibro-myoma of Uterus. + +(Anatomical Museum, University of Edinburgh.)] + +#Glioma.#--A glioma is a tumour composed of neuroglia. It is met with +exclusively in the central nervous system, retina, and optic nerve. It +is a slowly growing, soft, ill-defined tumour, which displaces the +adjacent nerve centres and nerve tracts, and is liable to become the +seat of haemorrhage and thus to give rise to pressure symptoms resembling +apoplexy. The glioma of the retina tends to grow into the vitreous +humour and to perforate the globe. It is usually of the nature of a +glio-sarcoma and is highly malignant. + +#Endotheliomas# take origin from the endothelium of lymph vessels and +blood vessels, and serous cavities. They show great variation in type, +partly because of the number of different kinds of endothelium from +which they are derived, and partly because the new connective tissue +which is formed is liable to undergo transformation into other tissues. +They may be soft or hard, solid or cystic, diffuse or circumscribed; +they grow very slowly, and are almost always innocent, although +recurrence has been occasionally observed. Cases of multiple +endotheliomata of the skin have recently been described by Wise. + +_Angioma_, _lymphangioma_, and _neuroma_ are described with the disease +of the individual tissues. + + +MALIGNANT CONNECTIVE-TISSUE TUMOURS--SARCOMA + +The term sarcoma is applied to any connective-tissue tumour which +exhibits malignant characters. The essential structural feature is the +predominance of the cellular elements over the intercellular substance +or stroma, in which respect a sarcoma resembles the connective tissue of +the embryo. The typical sarcoma consists chiefly of immature or +embryonic connective tissue. It most frequently originates from fascia, +intermuscular connective tissue, periosteum, bone-marrow, and skin, and +forms a rounded or nodulated tumour which appears to be encapsulated, +but the capsule merely consists of the condensed surrounding tissues, +and usually contains sarcomatous elements. The consistence of the tumour +depends on the nature and amount of the stroma, and on the presence of +degenerative changes. The softer medullary forms are composed almost +exclusively of cells; while the harder forms--such as the fibro-, +chondro-, and osteo-sarcoma--are provided with an abundant stroma and +are relatively poor in cells. Degenerative changes may produce areas of +softening or liquefaction which result in the formation of cystic +cavities in the interior of the tumour. The colour depends on the amount +of blood in the tumour, and on the presence of the products of +degeneration. + +The blood vessels are usually represented by mere chinks or spaces +between the cells. This peculiarity accounts for the facility with which +haemorrhage takes place into the substance of the tumour, the persistence +of the bleeding when it is incised or ulcerates through the skin, and +the readiness with which the sarcomatous cells are carried off and +infect distant parts through the blood-stream. Sarcomas are devoid of +lymphatics, and unless originating in lymphatic structures--for example, +in the tonsil--they rarely infect the lymph glands. Minute portions of +the tumour grow into the small veins, and, becoming detached, are +transported by the blood-current to distant organs, where they are +arrested in the capillaries and give rise to secondary growths. These +are most frequently situated in the lungs, except when the primary +growth lies within the territory of the portal circulation, in which +case they occur in the liver. The secondary growths closely resemble the +parent tumour. Sarcoma may invade an adjacent vein on such a scale that +if the invading portion becomes detached it may constitute a dangerous +embolus. This may be observed in sarcoma of the kidney, the growth +taking place along the renal vein until it projects into the vena cava. + +[Illustration: FIG. 55.--Recurrent Sarcoma of Sciatic Nerve in a woman +aet. 27. Recurrence twenty months after removal of primary growth.] + +In its growth, a sarcoma compresses and destroys neighbouring parts, +surrounds vessels and nerves, and may lead to destruction of the skin, +either by invading it, or more commonly by causing sloughing from +pressure. Inflammatory and suppurative changes may take place as a +result of pyogenic infection following upon sloughing of the overlying +skin or upon an exploratory incision. Once the skin is broken the tumour +fungates through the opening. Sarcomas vary in malignancy, especially as +regards rapidity of growth and capacity for dissemination. Certain of +them, such as the so-called "recurrent fibroid of Paget," grow +comparatively slowly, and are only malignant in the sense that they tend +to recur locally after removal; others--especially the more cellular +ones--grow with extreme rapidity, and are early disseminated throughout +the body, resembling in these respects the most malignant forms of +cancer. They are usually solitary in the first instance, although +primary multiple growths are occasionally met with in the skin and in +the bones. + +Many varieties of sarcoma are recognised, according to its structural +peculiarities. Thus, in virtue of the size and character of the cells, +we have the _small round-celled_ and the _large round-celled_ sarcoma, +the _small_ and the _large spindle-celled_, the _giant-celled_ and the +_mixed-celled_ sarcoma. The _lympho-sarcoma_ presents a structure +similar to that of lymph-follicular tissue, and the _alveolar sarcoma_ +an arrangement of cells in alveoli resembling that seen in cancers. When +there is a considerable amount of intercellular fibrous tissue, the +tumour is called a _fibro-sarcoma_. + +[Illustration: FIG. 56.--Fungating Sarcoma of Arm. + +(Dr. J. M'Watt's case.)] + +The term _lymphangio-sarcoma_ is applied when the cells of the tumour +are derived from the endothelium of lymph spaces and vessels. The +_angio-sarcomas_ are those in which blood vessels form a prominent +element in the structure of the tumour. They are sometimes derived from +innocent angiomas, and they may be so vascular as to pulsate and on +auscultation yield a blowing murmur like an aneurysm. The +_glio-sarcoma_, _myxo-sarcoma_, _chondro-sarcoma_, and _myo-sarcoma_ are +mixed forms which usually develop in pre-existing innocent tumours. The +_osteo-sarcoma_ is characterised by the formation in the tumour of bone, +the medullary spaces being occupied by sarcomatous cells in place of +marrow. The _osteoid sarcoma_ is characterised by the formation of a +tissue resembling bone but deficient in lime salts, and the _petrifying +sarcoma_ by the formation of calcified areas in the stroma. These +varieties, although met with chiefly in the bones, may occur in soft +tissues such as muscle, and in such organs as the mamma. The pigmented +varieties include the _chloroma_, which is of a light-green colour, and +the _melanotic sarcoma_, which is brown or black. The _psammoma_ is a +sarcoma containing a material resembling sand; it is chiefly met with in +the membranes of the brain. The _chordoma_ is a rare form of tumour +originating from the remains of the notochord in the region of the +spheno-occipital synchondrosis or in the sacro-coccygeal region. + +_Diagnosis of Sarcoma._--A sarcoma is to be differentiated from an +inflammatory swelling such as results from tubercle, actinomycosis, or +syphilis, from an innocent tumour, and from a cancer. The points on +which the diagnosis is founded are discussed with the different tissues +and organs. + +_Treatment._--The removal of the tumour by operation is the most +reliable method of treatment; in order to be successful it must be +undertaken before dissemination has taken place, and a considerable area +of healthy tissue beyond the apparent margin of the growth must be +removed, and in tumours near the surface of the body, the overlying skin +also. + +In order to prevent recurrence, a tube of _radium_, to which a silk +thread is attached, is inserted into the space from which the tumour was +removed; the thread is brought out at the drain-opening, and at the end +of a week or ten days the tube of radium is removed by pulling on the +thread. Radium causes a reaction in the tissues attended with exudation +from the vessels, for the escape of which provision must be made. If +radium is not available, the affected area is repeatedly exposed to the +action of the _X-rays_ as soon as the wound has healed. The employment +of these measures has diminished to a remarkable degree the recurrence +of sarcoma after operation. + +It will readily be understood that the less thoroughly or radically the +growth has been removed, the more do we depend upon radium or the X-rays +for bringing about a permanent cure, and that in advanced cases of +sarcoma and in cases in which, on account of their anatomical situation, +removal by operation is necessarily incomplete, the prospect of cure is +still more dependent on the use of radium or of the X-rays. Finally, +there are cases in which removal by operation is impossible, the +so-called _inoperable sarcoma_; a tube of radium, to which a silk thread +is attached, is inserted into the substance of the tumour, either +through an opening made by a large trocar, or, when necessary, by open +dissection. A second tube of radium is placed upon the skin over the +tumour and is secured there by a stitch or by a strip of plaster, thus +securing a cross-fire action of the radium rays, both from within and +without, as this is found to be much more efficacious in destroying or +inhibiting the cellular elements of the growth. The tubes of radium are +left _in situ_ for from eight to fourteen days, according to the power +of the radium employed, but are moved about every second day or so in +order that every part of the tumour may be efficiently radiated. If the +tumour shrinks in size after the use of radium and becomes operable, it +should be removed before time is given it to resume its growth. It will +depend upon the subsequent course of the disease, whether or not a +second, or it may be even a third, application of radium will be +required. + +Where neither radium nor X-rays is available or applicable, recourse may +be had to the injection of Coley's fluid, a preparation containing the +mixed toxins of the streptococcus of erysipelas and the bacillus +prodigiosus; or of selenium. + + +EPITHELIAL TUMOURS + +An excessive and erratic growth of epithelium is the essential and +distinguishing feature of these tumours. The innocent forms are the +papilloma and the adenoma; the malignant, the carcinoma or cancer. + +#Papilloma.#--A papilloma is a tumour which projects from a cutaneous or +mucous surface, and consists of a central axis of vascular fibrous +tissue with a covering of epithelium resembling that of the surface from +which the tumour grows. In the papillomas of the skin--commonly known as +_warts_--the covering consists of epidermis; in those growing from +mucous surfaces it consists of the epithelium covering the mucous +membrane. When the surface epithelium projects as filiform processes, +the tumour is called a _villous papilloma_, the best-known example of +which is met with in the urinary bladder. Papillomatous growths are +also met with in the larynx, in the ducts of the breast, and in the +interior of certain cystic tumours of the breast and of the ovary. +Although papillomas are primarily innocent, they may become the +starting-point of cancer, especially in persons past middle life and if +the papilloma has been subjected to irritation and has ulcerated. The +clinical features and treatment of the various forms of papilloma are +considered with the individual tissues and organs. + +#Adenoma.#--An adenoma is a tumour constructed on the type of, and +growing in connection with, a secreting gland. In the substance of such +glands as the mamma, parotid, thyreoid, and prostate, adenomas are met +with as encapsulated tumours. When they originate from the glands of the +skin or of a mucous membrane, they tend to project from the surface, and +form pedunculated tumours or polypi. + +Adenomas may be single or multiple, and they vary greatly in size. The +tumour is seldom composed entirely of gland tissue; it usually contains +a considerable proportion of fibrous tissue, and is then called a +_fibro-adenoma_. When it contains myxomatous tissue it is called a +_myxo-adenoma_, and when the gland spaces of the tumour become distended +with accumulated secretion, a _cystic adenoma_, the best examples of +which are met with in the mamma and ovary. A characteristic feature of +the cystic variety is the tendency the tumour tissue exhibits to project +into the interior of the cysts, constituting what are known as +_intracystic growths_. They are essentially innocent, but intracystic +growths, especially in the mamma of women over fifty, should be regarded +with suspicion and therefore should be removed on radical lines. +Transition forms between adenoma and carcinoma are also met with in the +rectum and large intestine, and these should be treated on the same +lines as cancer. + + +CARCINOMA OR CANCER + +A cancer is a malignant tumour which originates in epithelium. The +cancer cells are derived by proliferation from already existing +epithelium, and they invade the sub-epithelial connective tissue in the +form of simple or branching columns. These columns are enclosed in +spaces--termed alveoli--which are probably dilated lymph spaces, and +which communicate freely with the lymph vessels. The cells composing the +columns and filling the alveoli vary with the character of the +epithelium in which the cancer originates. The malignancy of cancer +depends on the tendency which the epithelium has of invading the tissues +in its neighbourhood, and on the capacity of the cells, when +transported elsewhere by the lymph or blood-stream, of giving rise to +secondary growths. + +Cancer may arise on any surface covered by epithelium or in any of the +secreting glands of the body, but it is much more common in some +situations than in others. It is frequently met with, for example, in +the skin, in the stomach and large intestine, in the breast, the uterus, +and the external genitals; less frequently in the gall-bladder, larynx, +thyreoid, prostate, and urinary bladder. + +Tissues appear to be most liable to cancer when, having attained +maturity, they enter upon the phase of decadence or involution, and this +phase is reached by different tissues at different periods. It is not so +much, therefore, the age of the person in whom it occurs, as the age of +the tissue in which it arises, that determines the maximum incidence of +cancer. Cancer of the stomach appears and attains a maximum frequency +earlier than cancer of the skin; cancer of the uterus and mamma is more +frequent towards the decline of reproductive activity than in the later +years of life; rectal cancer is not infrequently met with during the +second and third decades. There is evidence that the irritation caused +by alcohol and tobacco plays a part in the causation of cancer, in the +fact that a large proportion of those who become the subjects of cancer +of the mouth are excessive drinkers and smokers. + +A cancer may appear as a papillary growth on a mucous or a skin surface, +as a nodule in the substance of an organ, or as a diffuse thickening of +a tubular organ such as the stomach or intestine. The absence of +definition in cancerous tumours explains the difficulty of completely +removing them by surgical measures, and has led to the practice of +complete extirpation of cancerous organs wherever this is possible. The +boundaries of the affected organ, moreover, are frequently transgressed +by the disease, and the epithelial infiltration implicates the +surrounding parts. In cancer of the breast, for example, the disease +often extends to the adjacent skin, fat, and muscle; in cancer of the +lip or tongue, to the mandible; in cancer of the uterus or intestine, to +the investing peritoneum. + +In addition to its tendency to infiltrate adjacent tissues and organs, +cancer is also liable to give rise to _secondary growths_. These are +most often met with in the nearest lymph glands; those in the neck, for +example, becoming infected from cancer of the lip, tongue, or throat; +those in the axilla, from cancer of the breast; those along the +curvatures of the stomach, from cancer of the pylorus; and those in the +groin, from cancer of the external genitals. In lymph vessels the cancer +cells may merely accumulate so as to fill the lumen and form indurated +cords, or they may proliferate and give rise to secondary nodules along +the course of the vessels. When the lymphatic network in the skin is +diffusely infected, the appearance is either that of a multitude of +secondary nodules or of a diffuse thickening, so that the skin comes to +resemble coarse leather. On the wall of the chest this condition is +known as _cancer en cuirasse_. Although the cancer cells constantly +attack the walls of the adjacent veins and spread into their interior at +a comparatively early period, secondary growths due to dissemination by +the blood-stream rarely show themselves clinically until late in the +course of the disease. It is probable that many of the cancer cells +which are carried away in the blood or lymph stream undergo necrosis and +fail to give rise to secondary growths. Secondary growths present a +faithful reproduction of the structure of the primary tumour. Apart from +the lymph glands, the chief seats of secondary growths are the liver, +lungs, serous membranes, and bone marrow. + +It is generally believed that the secondary growths in cancer that +develop at a distance from the primary tumour, those, for example, in +the medullary canal of the femur or in the diploe of the skull occurring +in advanced cases of cancer of the breast, are the result of +dissemination of cancer cells by way of the blood-stream and are to be +regarded as emboli. Sampson Handley disagrees with this view; he +believes that the dissemination is accomplished in a more subtle way, +namely, by the actual growth of cancer cells along the finer vessels of +the lymph plexuses that ramify in the deep fascia, a method of spread +which he calls _permeation_. It is maintained also that permeation +occurs as readily against the lymph stream as with it. He compares the +spread of cancer to that of an invisible annular ringworm. The growing +edge extends in a wider and wider circle, within which a healing process +may occur, so that the area of permeation is a ring, rather than a disc. +Healing occurs by a process of "peri-lymphatic fibrosis," but as the +natural process of healing may fail at isolated points, nodules of +cancer appear, which, although apparently separate from the primary +growth, have developed in continuity with it, peri-lymphatic fibrosis +having destroyed the cancer chain connecting the nodule with the primary +growth. This centrifugal spread of cancer is clearly seen in the +distribution of the subcutaneous secondary nodules so frequently met +with in the late stages of mammary cancer. The area within which the +secondary nodules occur is a circle of continually increasing diameter +with the primary growth in the centre. + +In the rare cases in which the skin of the greater part of the body is +affected, the nodules rarely appear below the level of the deltoid or +the middle third of the thigh, the patient dying before the spread can +reach the distal portions of the limbs. + +Handley argues against the embolic origin of the metastases in the bones +because of the rarity of these in the bones of the distal parts of the +limbs, because of the fact that secondary cancer of the femur nearly +always commences in the upper third of the shaft, which harmonises with +the intimate connection of the deep fascia with the periosteum over the +great trochanter, thus favouring invasion of the bone marrow when +permeation has spread thus far. He claims support for the permeation +theory from the fact that the humerus is rarely involved below the +insertion of the deltoid, and that spontaneous fracture of the femur is +three times more common on the side on which the breast cancer is +situated. + +The tumour tissue may undergo necrosis, and when the overlying skin or +mucous membrane gives way an ulcer is formed. The margins of a +_cancerous ulcer_ (Fig. 57) are made up of tumour tissue which has not +broken down. Usually they are irregular, nodularly thickened or +indurated; sometimes they are raised and crater-like. The floor of the +ulcer is smooth and glazed, or occupied by necrosed tissue, and the +discharge is watery and blood-stained, and as a result of putrefactive +changes may become offensive. Haemorrhage is rarely a prominent feature, +but discharge of blood may constitute a symptom of considerable +diagnostic importance in cancer of internal organs such as the rectum, +the bladder, or the uterus. + +[Illustration: FIG. 57.--Carcinoma of Breast with Cancerous Ulcer.] + +_The Contagiousness of Cancer._--A limited number of cases are on record +in which a cancer appears to have been transferred by contact, as from +the lower to the upper lip, from one labium majus to the other, from the +tongue to the cheek, and from one vocal cord to the other; these being +all examples of cancer involving surfaces which are constantly or +frequently in contact. The transference of cancer from one human being +to another, whether by accident, as in the case of a surgeon wounding +his finger while operating for cancer, or by the deliberate introduction +of a portion of cancerous tumour into the tissues, has never been known +to occur. It is by no means infrequent, however, that when recurrence +takes place after an operation for the removal of cancer, the recurrent +nodules make their appearance in the main scar or in the scars of +stitches in its neighbourhood. In the lower animals the grafting of +cancer only succeeds in animals of the same species; for example, a +cancer taken from a mouse will not grow in the tissues of a rat, but +only in a mouse of the same variety as that from which the graft was +taken. + +While cancer cannot be regarded as either contagious or infectious, it +is important to bear in mind the possibility of infection of a wound +with cancer when operating for the disease. A cancer should not be cut +into unless this is essential for purposes of diagnosis, and the wound +made for exploration should be tightly closed by stitches before the +curative operation is proceeded with; the instruments used for the +exploration must not be used again until they have been boiled. The +greatest care should be taken that a cancer which has softened or broken +down is not opened into during the operation. + +Investigations regarding the cause of cancer have been prosecuted with +great energy during recent years, but as yet without positive result. It +is recognised that there are a number of conditions which favour the +development of cancer, such as prolonged irritation, and a considerable +number of cases have been recorded in which cancer of the skin of the +hands has followed prolonged and repeated exposure to the Rontgen rays. + +_The Alleged Increase of Cancer._--Regarding the alleged increase of +cancer, it may be pointed out that it is impossible to ascertain how +much of the apparent increase is due to more accurate diagnosis and +improved registration. It is probable also that some increase has taken +place in consequence of the increased average duration of life; a larger +proportion of persons now reach the age at which cancer is frequent. + +_The prognosis_ largely depends on the variety of cancer and on its +situation. Certain varieties--such as the atrophic cancer of the breast +which occurs in old people, and some forms of cancer in the rectum--are +so indolent in their progress that they can scarcely be said to shorten +life; while others--such as the softer varieties of mammary cancer +occurring in young women--are among the most malignant of tumours. The +mode in which cancer causes death depends to a large extent upon its +situation. In the gullet, for example, it usually causes death by +starvation; in the larynx or thyreoid, by suffocation; in the intestine, +by obstruction of the bowels; in the uterus, prostate, and bladder, by +haemorrhage or by implication of the ureters and kidneys. Independently +of their situation, however, cancers frequently cause death by giving +rise to a progressive impairment of health known as the _cancerous +cachexia_, a condition which is due to the continued absorption of +poisonous products from the tumour. The patient loses appetite, becomes +emaciated, pale, and feverish, and gradually loses strength until he +dies. In many cases, especially those in which ulceration has occurred, +the addition of pyogenic infection may also be concerned in the failure +of health. + +_Treatment._--Removal by surgical means affords the best prospect of +cure. If carcinomatous disease is to be rooted out, its mode of spread +by means of the lymph vessels must be borne in mind, and as this occurs +at an early stage, and is not evident on examination, a wide area must +be included in the operation. The organ from which the original growth +springs should, if practicable, be altogether removed, because its lymph +vessels generally communicate freely with each other, and secondary +deposits have probably already taken place in various parts of it. In +addition, the nearest chain of lymph glands must also be removed, even +though they may not be noticeably enlarged, and in some cases--in cancer +of the breast, for example--the intervening lymph vessels should be +removed at the same time. + +The treatment of cancer by other than operative methods has received a +great deal of attention within recent years, and many agents have been +put to the test, _e.g._ colloidal suspensions of selenium, but without +any positive results. Most benefit has resulted from the use of radium +and of the X-rays, and one or other should be employed as a routine +measure after every operation for cancer. + +It has been demonstrated that cancer cells are more sensitive to radium +and to the Rontgen rays than the normal cells of the body, and are more +easily killed. The effect varies a good deal with the nature and seat of +the tumour. In rodent cancers of the skin, for example, both radium and +X-ray treatment are very successful, and are to be preferred to +operation because they yield a better cosmetic result. While small +epitheliomas of the skin may be cured by means of the rays, they are not +so amenable as rodent cancers. + +Cancers of mucous membranes are less amenable to ray treatment because +they are less circumscribed and are difficult of access. In cancers +under the skin, the Rontgen rays are less efficient; if radium is +employed, the tube containing it should be inserted into the substance +of the tumour after the method described in connection with sarcoma--and +another tube should be placed on the overlying skin. + +In the employment of X-rays and of radium in the treatment of cancer, +experience is required, not only to obtain the maximum effect of the +rays, but to avoid damage to the adjacent and overlying tissues. + +Ray treatment is not to be looked upon as a rival but as a powerful +supplement to the operative treatment of cancer. + + +VARIETIES OF CANCER + +The varieties of cancer are distinguished according to the character and +arrangement of the epithelial cells. + +The _squamous epithelial cancer_ or _epithelioma_ originates from a +surface covered by squamous epithelium, such as the skin, or the mucous +membrane of the mouth, gullet, or larynx. The cancer cells retain the +characters of squamous epithelium, and, being confined within the lymph +spaces of the sub-epithelial connective tissue, become compressed and +undergo a horny change. This results in the formation of concentrically +laminated masses known as cell nests. + +The clinical features are those of a slowly growing indurated tumour, +which nearly always ulcerates; there is a characteristic induration of +the edges and floor of the ulcer, and its surface is often covered with +warty or cauliflower-like outgrowths (Fig. 58). The infection of the +lymph glands is early and constant, and constitutes the most dangerous +feature of the disease; the secondary growths in the glands exhibit the +characteristic induration, and may themselves break down and lead to the +formation of ulcers. + +[Illustration: FIG. 58.--Epithelioma of Lip.] + +Epithelioma frequently originates in long-standing ulcers or sinuses, +and in scars, and probably results from the displacement and +sequestration of epithelial cells during the process of cicatrisation. + +The _columnar epithelial cancer_ or _columnar epithelioma_ originates in +mucous membranes covered with columnar epithelium, and is chiefly met +with in the stomach and intestine. As it resembles an adenoma in +structure it is sometimes described as a _malignant adenoma_. Its +malignancy is shown by the proliferating epithelium invading the other +coats of the stomach or intestine, and by the development of secondary +growths. + +_Glandular carcinoma_ originates in organs such as the breast, and in +the glands of mucous membranes and skin. The epithelial cells are not +arranged on any definite plan, but are closely packed in irregularly +shaped alveoli. If the alveoli are large and the intervening stroma is +scanty and delicate, the tumour is soft and brain-like, and is described +as a _medullary_ or _encephaloid cancer_. If the alveoli are small and +the intervening stroma is abundant and composed of dense fibrous tissue, +the tumour is hard, and is known as a _scirrhous cancer_--a form which +is most frequently met with in the breast. If the cells undergo +degeneration and absorption and the stroma contracts, the tumour becomes +still harder, and tends to shrink and to draw in the surrounding parts, +leading, in the breast, to retraction of the nipple and overlying skin, +and in the stomach and colon to narrowing of the lumen. When the cells +of the tumour undergo colloid degeneration, a _colloid cancer_ results; +if the degeneration is complete, as may occur in the breast, the +malignancy is thereby greatly diminished; if only partial, as is more +common in rectal cancer, the malignancy is not appreciably affected. +Melanin pigment is formed in relation to the cells and stroma of certain +epithelial tumours, giving rise to _melanotic cancer_, one of the most +malignant of all new growths. Cyst-like spaces may form in the tumour by +the accumulation of the secretion of the epithelial cells, or as a +result of their degeneration--_cystic carcinoma_. This is met with +chiefly in the breast and ovary, and the tumour resembles the cystic +adenoma, but it tends to infect its surroundings and gives rise to +secondary growths. + +_Rodent cancer_ originates in the glands of the skin, and presents a +special tendency to break down and ulcerate on the surface (Figs. 102 +and 103). It almost never infects the lymph glands. + + +DERMOIDS + +A dermoid is a tumour containing skin or mucous membrane, occurring in a +situation where these tissues are not met under normal conditions. + +The _skin dermoid_, or _derma-cyst_ as it has been called by Askanazy, +arises from a portion of epiblast, which has become sequestrated during +the process of coalescence of two cutaneous surfaces in development. +This form is therefore most frequently met with on the face and neck in +the situations which correspond to the various clefts and fissures of +the embryo. It occurs also on the trunk in situations where the lateral +halves of the body coalesce during development. Such a dermoid usually +takes the form of a globular cyst, the wall of which consists of skin, +and the contents of turbid fluid containing desquamated epithelium, fat +droplets, cholestrol crystals, and detached hairs. Delicate hairs may +also be found projecting from the epithelial lining of the cyst. + +Faulty coalescence of the cutaneous covering of the back occurs most +frequently over the lower sacral vertebrae, giving rise to small +congenital recesses, known as post-anal dimples and coccygeal sinuses. +These recesses are lined with skin, which is furnished with hairs, +sebaceous and sweat glands. If the external orifice becomes occluded, +there results a dermoid cyst. + +_Tubulo-dermoids_ arise from embryonic ducts and passages that are +normally obliterated at birth, for example, _lingual dermoids_ develop +in relation to the thyreo-glossal duct; _rectal and post-rectal_ +dermoids to the post-anal gut; and _branchial dermoids_ in relation to +the branchial clefts. Tubulo-dermoids present the same structure as skin +dermoids, save that mucous membrane takes the place of skin in the wall +of the cyst, and the contents consist of the pent-up secretion of mucous +glands. + +_Clinical Features._--Although dermoids are of congenital origin, they +are rarely evident at birth, and may not give rise to visible tumours +until puberty, when the skin and its appendages become more active, or +not till adult life. Superficial dermoids, such as those met with at the +outer angle of the orbit, form rounded, definitely limited tumours over +which the skin is freely movable. They are usually adherent to the +deeper parts, and when situated over the skull may be lodged in a +depression or actual gap in the bone. Sometimes the cyst becomes +infected and suppurates, and finally ruptures on the surface. This may +lead to a natural cure, or a persistent sinus may form. Dermoids more +deeply placed, such as those within the thorax, or those situated +between the rectum and sacrum, give rise to difficulty in diagnosis, +even with the help of the X-rays, and their nature is seldom recognised +until the escape of the contents--particularly hairs--supplies the clue. +The literature of dermoid cysts is full of accounts of puzzling tumours +met with in all sorts of situations. + +The treatment is to remove the cyst. When it is impossible to remove the +whole of the lining membrane by dissection, the portion that is left +should be destroyed with the cautery. + +_Ovarian Dermoids._--Dermoids are not uncommon in the ovary (Fig. 59). +They usually take the form of unilocular or multilocular cysts, the +wall of which contains skin, mucous membrane, hair follicles, sebaceous, +sweat, and mucous glands, nails, teeth, nipples, and mammary glands. The +cavity of the cyst usually contains a pultaceous mixture of shed +epithelium, fluid fat, and hair. If the cyst ruptures, the epithelial +elements are diffused over the peritoneum, and may give rise to +secondary dermoids. + +[Illustration: FIG. 59.--Dermoid Cyst of Ovary showing Teeth in its +interior.] + +The ovarian dermoid appears clinically as an abdominal or pelvic tumour +provided with a pedicle; if the pedicle becomes twisted, the tumour +undergoes strangulation, an event which is attended with urgent +symptoms, not unlike those of strangulated hernia. + +The treatment consists in removing the tumour by laparotomy. + +#Teratoma.#--A teratoma is believed to result from partial dichotomy or +cleavage of the trunk axis of the embryo, and is found exclusively in +connection with the skull and vertebral column. It may take the form of +a monstrosity such as conjoined twins or a parasitic foetus, but more +commonly it is met with as an irregularly shaped tumour, usually growing +from the sacrum. On dissection, such a tumour is found to contain a +curious mixture of tissues--bones, skin, and portions of viscera, such +as the intestine or liver. The question of the removal of the tumour +requires to be considered in relation to the conditions present in each +individual case. + + +CYSTS[3] + +[3] Cysts which form in relation to new-growths have been considered +with tumours. + +Cysts are rounded sacs, the wall being composed of fibrous tissue lined +by epithelium or endothelium; the contents are fluid or semi-solid, and +vary in character according to the tissue in which the cyst has +originated. + +_Retention and Exudation Cysts._--_Retention cysts_ develop when the +duct of a secreting gland is partly obstructed; the secretion +accumulates, and the gland and its duct become distended into a cyst. +They are met with in the mamma and in the salivary glands. Sebaceous +cysts or wens are described with diseases of the skin. _Exudation cysts_ +arise from the distension of cavities which are not provided with +excretory ducts, such as those in the thyreoid. + +_Implantation cysts_ are caused by the accidental transference of +portions of the epidermis into the underlying connective tissue, as may +occur in wounds by needles, awls, forks, or thorns. The implanted +epidermis proliferates and forms a small cyst. They are met with chiefly +on the palmar aspect of the fingers, and vary in size from a split pea +to a cherry. The treatment consists in removing them by dissection. + +_Parasitic cysts_ are produced by the growth within the tissues of +cyst-forming parasites, the best known being the taenia echinococcus, +which gives rise to the _hydatid cyst_. The liver is by far the most +common site of hydatid cysts in the human subject. + +With regard to the further life-history of hydatids, the living elements +of the cyst may die and degenerate, or the cyst may increase in size +until it ruptures. As a result of pyogenic infection the cyst may be +converted into an abscess. + +The _clinical features_ of hydatids vary so much with their situation +and size, that they are best discussed with the individual organs. In +general it may be said that there is a slow formation of a globular, +elastic, fluctuating, painless swelling. Fluctuation is detected when +the cyst approaches the surface, and it is then also that percussion +may elicit the "hydatid thrill" or fremitus. This thrill is not often +obtainable, and in any case is not pathognomonic of hydatids, as it may +be elicited in ascites and in other abdominal cysts. Pressure of the +cyst upon adjacent structures, and the occurrence of suppuration, are +attended with characteristic clinical features. + +The _diagnosis_ of hydatids will be considered with the individual +organs. The disease is more common in certain parts of Australia and in +Shetland and Iceland than in countries where the association of dogs in +the domestic life of the inhabitants is less intimate. Pfeiler, who has +worked at the _serum diagnosis of hydatid disease_, regards the +complement deviation method as the most reliable; he believes that a +positive reaction may almost be regarded as absolutely diagnostic of an +echinococcal lesion. + +The _treatment_ is to excise the cyst completely, or to inject into it a +1 per cent. solution of formalin. In operating upon hydatids the utmost +care must be taken to avoid leakage of the contents of the cyst, as +these may readily disseminate the infection. + +A _blood cyst_ or haematoma results from the encapsulation of +extravasated blood in the tissues, from haemorrhage taking place into a +preformed cyst, or from the saccular pouching of a varicose vein. + +A _lymph cyst_ usually results from a contusion in which the skin is +forcibly displaced from the subjacent tissues, and lymph vessels are +thereby torn across. The cyst is usually situated between the skin and +fascia, and contains clear or blood-stained serum. At first it is lax +and fluctuates readily, later it becomes larger and more tense. The +treatment consists in drawing off the contents through a hollow needle +and applying firm pressure. Apart from injury, lymph cysts are met with +as the result of the distension of lymph spaces and vessels +(_lymphangiectasis_); and in lymphangiomas, of which the best-known +example is the cystic hygroma or hydrocele of the neck. + + +GANGLION + +This term is applied to a cyst filled with a clear colourless jelly or +colloid material, met with in the vicinity of a joint or tendon sheath. + +The commonest variety--the _carpal ganglion_--popularly known as a +sprained sinew--is met with as a smooth, rounded, or oval swelling on +the dorsal aspect of the carpus, usually towards its radial side (Fig. 60). +It is situated over one of the intercarpal or other joints in this +region, and may be connected with one or other of the extensor tendons. +The skin and fascia are movable over the cyst. The cyst varies in size +from a pea to a pigeon's egg, and usually attains its maximum size +within a few months and then remains stationary. It becomes tense and +prominent when the hand is flexed towards the palm. Its appearance is +usually ascribed to some strain of the wrist--for example, in girls +learning gymnastics. It may cause no symptoms or it may interfere with +the use of the hand, especially in grasping movements and when the hand +is dorsiflexed. In girls it may give rise to pain which shoots up the +arm. Ganglia are also met with on the dorsum of the metacarpus and on +the palmar aspect of the wrist. + +[Illustration: FIG. 60.--Carpal Ganglion in a woman aet. 25.] + +The _tarsal ganglion_ is situated on the dorsum of the foot over one or +other of the intertarsal joints. It is usually smaller, flatter, and +more tense than that met with over the wrist, so that it is sometimes +mistaken for a bony tumour. It rarely causes symptoms, unless so +situated as to be pressed upon by the boot. + +_Ganglia in the region of the knee_ are usually situated over the +interval between the femur and tibia, most often on the lateral aspect +of the joint in front of the tendon of the biceps (Fig. 61). The +swelling, which may attain the size of half a walnut, is tense and hard +when the knee is extended, and becomes softer and more prominent when it +is flexed. They are met with in young adults who follow laborious +occupations or who indulge in athletics, and they cause stiffness, +discomfort, and impairment of the use of the limb. A ganglion is +sometimes met with on the median aspect of the head of the metatarsal +bone of the great toe and may be the cause of considerable suffering; it +is indistinguishable from the thickened and enlarged bursa so commonly +present in this situation in the condition known as bunion. + +[Illustration: FIG. 61.--Ganglion on lateral aspect of Knee in a young +woman.] + +Ganglionic cysts are met with in other situations than those mentioned, +but they are so rare as not to require separate description. + +Ganglia are to be diagnosed by their situation and physical characters; +enlarged bursae, synovial cysts, and new-growths are the swellings most +likely to be mistaken for them. The diagnosis is sometimes only cleared +up by withdrawing the clear, jelly-like contents through a hollow +needle. + +_Pathological Anatomy._--The wall of the cyst is composed of fibrous +tissue closely adherent to or fused with the surrounding tissues, so +that it cannot be shelled out. There is no endothelial lining, and the +fibrous tissue of the wall is in immediate contact with the colloid +material in the interior, which appears to be derived by a process of +degeneration from the surrounding connective tissue. In the region of +the knee the ganglion is usually multilocular, and consists of a +meshwork of fibrous tissue, the meshes of which are occupied by colloid +material. + +It is often stated that a ganglion originates from a hernial protrusion +of the synovial membrane of a joint or tendon sheath. We have not been +able to demonstrate any communication between the cavity of the cyst +and that of an adjacent tendon sheath or joint. It is possible, however, +that the cyst may originate from a minute portion of synovial membrane +being protruded and strangulated so that it becomes disconnected from +that to which it originally belonged; it may then degenerate and give +rise to colloid material, which accumulates and forms a cyst. Ledderhose +and others regard ganglia as entirely new formations in the +peri-articular tissues, resulting from colloid degeneration of the +fibrous tissue of the capsular ligament, occurring at first in numerous +small areas which later coalesce. Ganglia are probably, therefore, of +the nature of degeneration cysts arising in the capsule of joints, in +tendons, and in their sheaths. + +_Treatment._--A ganglion can usually be got rid of by a modification of +the old-fashioned seton. The skin and cyst wall are transfixed by a +stout needle carrying a double thread of silkworm gut; some of the +colourless jelly escapes from the punctures; the ends of the thread are +tied and cut short, and a dressing is applied. A week later the threads +are removed and the minute punctures are sealed with collodion. The +action of the threads is to convert the cyst wall into granulation +tissue, which undergoes the usual conversion into scar tissue. If the +cyst re-forms, it should be removed by open dissection under local +anaesthesia. Puncture with a tenotomy knife and scraping the interior, +and the injection of irritants, are alternative, but less satisfactory, +methods of treatment. + +_Ganglia_ in the substance of _tendons_ are rare. The diagnosis rests on +the observation that the small tumour is cystic, and that it follows the +movements of the tendon. The cyst is at first multiple, but the +partitions disappear, and the spaces are thrown into one. The tendon is +so weakened that it readily ruptures. The best treatment is to resect +the affected segment of tendon. + +The so-called "compound palmar ganglion" is a tuberculous disease of the +tendon sheaths, and is described with diseases of tendon sheaths. + + + + +CHAPTER XI + +INJURIES + + +CONTUSIONS--WOUNDS: _Varieties_--WOUNDS BY FIREARMS AND + EXPLOSIVES: _Pistol-shot wounds_; _Wounds by sporting guns_; + _Wounds by rifle bullets_; _Wounds received in warfare_; _Shell + wounds_. _Embedded foreign bodies_--BURNS AND + SCALDS--INJURIES PRODUCED BY ELECTRICITY: _X-ray and + radium_; _Electrical burns_; _Lightning stroke_. + + +CONTUSIONS + +A contusion or bruise is a laceration of the subcutaneous soft tissues, +without solution of continuity of the skin. When the integument gives +way at the same time, a _contused-wound_ results. Bruising occurs when +force is applied to a part by means of a blunt object, whether as a +direct blow, a crush, or a grazing form of violence. If the force acts +at right angles to the part, it tends to produce localised lesions which +extend deeply; while, if it acts obliquely, it gives rise to lesions +which are more diffuse, but comparatively superficial. It is well to +remember that those who suffer from scurvy, or haemophilia (bleeders), +and fat and anaemic females, are liable to be bruised by comparatively +trivial injuries. + +_Clinical Features._--The less severe forms of contusion are associated +with _ecchymosis_, numerous minute and discrete punctate haemorrhages +being scattered through the superficial layers of the skin, which is +slightly oedematous. The effused blood is soon reabsorbed. + +The more severe forms are attended with _extravasation_, the +extravasated blood being widely diffused through the cellular tissue of +the part, especially where this is loose and lax, as in the region of +the orbit, the scrotum and perineum, and on the chest wall. A blue or +bluish-black discoloration occurs in patches, varying in size and depth +with the degree of force which produced the injury, and in shape with +the instrument employed. It is most intense in regions where the skin is +naturally thin and pigmented. In parts where the extravasated blood is +only separated from the oxygen of the air by a thin layer of epidermis +or by a mucous membrane, it retains its bright arterial colour. These +points are often well illustrated in cases of black eye, where the blood +effused under the conjunctiva is bright red, while that in the eyelids +is almost black. In severe contusions associated with great tension of +the skin--for example, over the front of the tibia or around the +ankle--blisters often form on the surface and constitute a possible +avenue of infection. When deeply situated, the blood tends to spread +along the lines of least resistance, partly under the influence of +gravity, passing under fasciae, between muscles, along the sheaths of +vessels, or in connective-tissue spaces, so that it may only reach the +surface after some time, and at a considerable distance from the seat of +injury. This fact is sometimes of importance in diagnosis, as, for +example, in certain fractures of the base of the skull, where +discoloration appears under the conjunctiva or behind the mastoid +process some days after the accident. + +Blood extravasated deeply in the tissues gives rise to a firm, +resistant, doughy swelling, in which there may be elicited on deep +palpation a peculiar sensation, not unlike the crepitus of fracture. + +It frequently happens that, from the tearing of lymph vessels, serous +fluid is extravasated, and a _lymphatic_ or _serous cyst_ may form. + +In all contusions accompanied by extravasation, there is marked swelling +of the area involved, as well as pain and tenderness. The temperature +may rise to 101 o F., or, in the large extravasations that occur in +bleeders, even higher--a form of aseptic fever. The degree of shock is +variable, but sudden syncope frequently results from severe bruises of +the testicle, abdomen, or head, and occasionally marked nervous +depression follows these injuries. + +Contusion of muscles or nerves may produce partial atrophy and paresis, +as is often seen after injuries in the region of the shoulder. + +In alcoholic or other debilitated patients, suppuration is liable to +ensue in bruised parts, infection taking place from cocci circulating in +the blood, or through the overlying skin. + +_Terminations of Contusions._--The usual termination is a complete +return to the normal, some of the extravasated blood being organised, +but most of it being reabsorbed. During the process characteristic +alterations in the colour of the effused blood take place as a result of +changes in the blood pigment. In from twenty-four to forty-eight hours +the margins of the blue area become of a violet hue, and as time goes on +the discoloured area increases in size, and becomes successively green, +yellow, and lemon-coloured at its margins, the central part being the +last to change. The rate at which this play of colours proceeds is so +variable, and depends on so many circumstances, that no time-limits can +be laid down. During the disintegration of the effused blood the +adjacent lymph glands may become enlarged, and on dissection may be +found to be pigmented. Sometimes the blood persists as a collection of +fluid with a newly formed connective-tissue capsule, constituting a +_haematoma_ or _blood cyst_, more often met with in the scalp than in +other parts. + +The impairment of the blood supply of the skin may lead to the formation +of _blisters_, or to _necrosis_. Death of skin is more liable to occur +in bleeders, and when the slough separates the blood-clot is exposed and +the reparative changes go on extremely slowly. _Suppuration_ may occur +and lead to the formation of an abscess as a result of direct infection +from the skin or through the circulation. + +_Treatment._--If the patient is seen immediately after the accident, +elevation of the part, and firm pressure applied by means of a thick pad +of cotton wool and an elastic bandage, are useful in preventing effusion +of blood. Ice-bags and evaporating lotions are to be used with caution, +as they are liable to lower the vitality of the damaged tissues and lead +to necrosis of the skin. + +When extravasation has already taken place, massage is the most speedy +and efficacious means of dispersing the effused blood. The part should +be massaged several times a day, unless the presence of blebs or +abrasions of the skin prevents this being done. When this is the case, +the use of antiseptic dressings is called for to prevent infection and +to promote healing, after which massage is employed. + +When the tension caused by the extravasated blood threatens the vitality +of the skin, incisions may be made, if asepsis can be assured. The blood +from a haematoma may be withdrawn by an exploring needle, and the +puncture sealed with collodion. Infective complications must be looked +for and dealt with on general principles. + + +WOUNDS + +A wound is a solution in the continuity of the skin or mucous membrane +and of the underlying tissues, caused by violence. + +Three varieties of wounds are described: incised, punctured, and +contused and lacerated. + +#Incised Wounds.#--Typical examples of incised wounds are those made by +the surgeon in the course of an operation, wounds accidentally inflicted +by cutting instruments, and suicidal cut-throat wounds. It should be +borne in mind in connection with medico-legal inquiries, that wounds of +soft parts that closely overlie a bone, such as the skull, the tibia, or +the patella, although, inflicted by a blunt instrument, may have all the +appearances of incised wounds. + +_Clinical Features._--One of the characteristic features of an incised +wound is its tendency to gape. This is evident in long skin wounds, and +especially when the cut runs across the part, or when it extends deeply +enough to divide muscular fibres at right angles to their long axis. The +gaping of a wound, further, is more marked when the underlying tissues +are in a state of tension--as, for example, in inflamed parts. Incised +wounds in the palm of the hand, the sole of the foot, or the scalp, +however, have little tendency to gape, because of the close attachment +of the skin to the underlying fascia. + +Incised wounds, especially in inflamed tissues, tend to bleed profusely; +and when a vessel is only partly divided and is therefore unable to +contract, it continues to bleed longer than when completely cut across. + +The _special risks_ of incised wounds are: (1) division of large blood +vessels, leading to profuse haemorrhage; (2) division of nerve-trunks, +resulting in motor and sensory disturbances; and (3) division of tendons +or muscles, interfering with movement. + +_Treatment._--If haemorrhage is still going on, it must be arrested by +pressure, torsion, or ligature, as the accumulation of blood in a wound +interferes with union. If necessary, the wound should be purified by +washing with saline solution or eusol, and the surrounding skin painted +with iodine, after which the edges are approximated by sutures. The raw +surfaces must be brought into accurate apposition, care being taken that +no inversion of the cutaneous surface takes place. In extensive and deep +wounds, to ensure more complete closure and to prevent subsequent +stretching of the scar, it is advisable to unite the different +structures--muscles, fasciae, and subcutaneous tissue--by separate series +of _buried sutures_ of catgut or other absorbable material. For the +approximation of the skin edges, stitches of horse-hair, fishing-gut, or +fine silk are the most appropriate. These _stitches of coaptation_ may +be interrupted or continuous. In small superficial wounds on exposed +parts, stitch marks may be avoided by approximating the edges with +strips of gauze fixed in position by collodion, or by subcutaneous +sutures of fine catgut. Where the skin is loose, as, for example, in the +neck, on the limbs, or in the scrotum, the use of Michel's clips is +advantageous in so far as these bring the deep surfaces of the skin into +accurate apposition, are introduced with comparatively little pain, and +leave only a slight mark if removed within forty-eight hours. + +When there is any difficulty in bringing the edges of the wound into +apposition, a few interrupted _relaxation stitches_ may be introduced +wide of the margins, to take the strain off the coaptation stitches. +Stout silk, fishing-gut, or silver wire may be employed for this +purpose. When the tension is extreme, Lister's button suture may be +employed. The tension is relieved and death of skin prevented by scoring +it freely with a sharp knife. Relaxation stitches should be removed in +four or five days, and stitches of coaptation in from seven to ten days. +On the face and neck, wounds heal rapidly, and stitches may be removed +in two or three days, thus diminishing the marks they leave. + +_Drainage._--In wounds in which no cavity has been left, and in which +there is no reason to suspect infection, drainage is unnecessary. When, +however, the deeper parts of an extensive wound cannot be brought into +accurate apposition, and especially when there is any prospect of oozing +of blood or serum--as in amputation stumps or after excision of the +breast--drainage is indicated. It is a wise precaution also to insert +drainage tubes into wounds in fat patients when there is the slightest +reason to suspect the presence of infection. Glass or rubber tubes are +the best drains; but where it is desirable to leave little mark, a few +strands of horse-hair, or a small roll of rubber, form a satisfactory +substitute. Except when infection occurs, the drain is removed in from +one to four days and the opening closed with a Michel's clip or a +suture. + +#Punctured Wounds.#--Punctured wounds are produced by narrow, pointed +instruments, and the sharper and smoother the instrument the more does +the resulting injury resemble an incised wound; while from more rounded +and rougher instruments the edges of the wound are more or less contused +or lacerated. The depth of punctured wounds greatly exceeds their width, +and the damage to subcutaneous parts is usually greater than that to the +skin. When the instrument transfixes a part, the edges of the wound of +entrance may be inverted, and those of the exit wound everted. If the +instrument is a rough one, these conditions may be reversed by its +sudden withdrawal. + +Punctured wounds neither gape nor bleed much. Even when a large vessel +is implicated, the bleeding usually takes place into the tissues rather +than externally. + +The _risks_ incident to this class of wounds are: (1) the extreme +difficulty, especially when a dense fascia has been perforated, of +rendering them aseptic, on account of the uncertainty as to their depth, +and of the way in which the surface wound closes on the withdrawal of +the instrument; (2) different forms of aneurysm may result from the +puncture of a large vessel; (3) perforation of a joint, or of a serous +cavity, such as the abdomen, thorax, or skull, materially adds to the +danger. + +_Treatment._--The first indication is to purify the whole extent of the +wound, and to remove any foreign body or blood-clot that may be in it. +It is usually necessary to enlarge the wound, freely dividing injured +fasciae, paring away bruised tissues, and purifying the whole +wound-surface. Any blood vessel that is punctured should be cut across +and tied; and divided muscles, tendons, or nerves must be sutured. After +haemorrhage has been arrested, iodoform and bismuth paste is rubbed into +the raw surface, and the wound closed. If there is any reason to doubt +the asepticity of the wound, it is better treated by the open method, +and a Bier's bandage should be applied. + +#Contused and Lacerated Wounds.#--These may be considered together, as +they so occur in practice. They are produced by crushing, biting, or +tearing forms of violence--such as result from machinery accidents, +firearms, or the bites of animals. In addition to the irregular wound of +the integument, there is always more or less bruising of the parts +beneath and around, and the subcutaneous lesions are much wider than +appears on the surface. + +Wounds of this variety usually gape considerably, especially when there +is much laceration of the skin. It is not uncommon to have considerable +portions of skin, muscle, or tendon completely torn away. + +Haemorrhage is seldom a prominent feature, as the crushing or tearing of +the vessel wall leads to the obliteration of the lumen. + +The _special risks_ of these wounds are: (1) Sloughing of the bruised +tissues, especially when attempts to sterilise the wound have not been +successful. (2) Reactionary haemorrhage after the initial shock has +passed off. (3) Secondary haemorrhage as a result of infective processes +ensuing in the wound. (4) Loss of muscle or tendon, interfering with +motion. (5) Cicatricial contraction. (6) Gangrene, which may follow +occlusion of main vessels, or virulent infective processes. (7) It is +not uncommon to have particles of carbon embedded in the tissues after +lacerated wounds, leaving unsightly, pigmented scars. This is often seen +in coal-miners, and in those injured by firearms, and is to be prevented +by removing all gross dirt from the edges of the wound. + +_Treatment._--In severe wounds of this class implicating the +extremities, the most important question that arises is whether or not +the limb can be saved. In examining the limb, attention should first be +directed to the state of the main blood vessels, in order to determine +if the vascular supply of the part beyond the lesion is sufficient to +maintain its vitality. Amputation is usually called for if there is +complete absence of pulsation in the distal arteries and if the part +beyond is cold. If at the same time important nerve-trunks are +lacerated, so that the function of the limb would be seriously impaired, +it is not worth running the risk of attempting to save it. If, in +addition, there is extensive destruction of large muscular masses or of +important tendons, or comminution of the bones, amputation is usually +imperative. Stripping of large areas of skin is not in itself a reason +for removing a limb, as much can be done by skin grafting, but when it +is associated with other lesions it favours amputation. In considering +these points, it must be borne in mind that the damage to the deeper +tissues is always more extensive than appears on the surface, and that +in many cases it is only possible to estimate the real extent of the +injury by administering an anaesthetic and exploring the wound. In +doubtful cases the possibility of rendering the parts aseptic will often +decide the question for or against amputation. If thorough purification +is accomplished, the success which attends conservative measures is +often remarkable. It is permissible to run an amount of risk to save an +upper extremity which would be unjustifiable in the case of a lower +limb. The age and occupation of the patient must also be taken into +account. + +It having been decided to try and save the limb, the question is only +settled for the moment; it may have to be reconsidered from day to day, +or even from hour to hour, according to the progress of the case. + +When it is decided to make the attempt to save the limb, the wound must +be thoroughly purified. All bruised tissue in which gross dirt has +become engrained should be cut away with knife or scissors. The raw +surface is then cleansed with eusol, washed with sterilised salt +solution followed by methylated spirit, and rubbed all over with "bipp" +paste. If the purification is considered satisfactory the wound may be +closed, otherwise it is left open, freely drained or packed with gauze, +and the limb is immobilised by suitable splints. + + +WOUNDS BY FIREARMS AND EXPLOSIVES + +It is not necessary here to do more than indicate the general characters +of wounds produced by modern weapons. For further details the reader is +referred to works on military surgery. Experience has shown that the +nature and severity of the injuries sustained in warfare vary widely in + +different campaigns, and even in different fields of the same campaign. +Slight variations in the size, shape, and weight of rifle bullets, for +example, may profoundly modify the lesions they produce: witness the +destructive effect of the pointed bullet compared with that of the +conical form previously used. The conditions under which the fighting is +carried on also influence the wounds. Those sustained in the open, +long-range fighting of the South African campaign of 1899-1902 were very +different from those met with in the entrenched warfare in France in +1914-1918. It has been found also that the infective complications are +greatly influenced by the terrain in which the fighting takes place. In +the dry, sandy, uncultivated veldt of South Africa, bullet wounds seldom +became infected, while those sustained in the highly manured fields of +Belgium were almost invariably contaminated with putrefactive organisms, +and gaseous gangrene and tetanus were common complications. It has been +found also that wounds inflicted in naval engagements present different +characters from those sustained on land. Many other factors, such as the +physical and mental condition of the men, the facilities for affording +first aid, and the transport arrangements, also play a part in +determining the nature and condition of the wounds that have to be dealt +with by military surgeons. + +Whatever the nature of the weapon concerned, the wound is of the +_punctured, contused, and lacerated_ variety. Its severity depends on +the size, shape, and velocity of the missile, the range at which the +weapon is discharged, and the part of the body struck. + +Shock is a prominent feature, but its degree, as well as the time of its +onset, varies with the extent and seat of the injury, and with the +mental state of the patient when wounded. We have observed pronounced +shock in children after being shot even when no serious injury was +sustained. At the moment of injury the patient experiences a sensation +which is variously described as being like the lash of a whip, a blow +with a stick, or an electric shock. There is not much pain at first, but +later it may become severe, and is usually associated with intense +thirst, especially when much blood has been lost. + +In all forms of wounds sustained in warfare, septic infection +constitutes the main risk, particularly that resulting from +streptococci. The presence of anaerobic organisms introduces the +additional danger of gaseous forms of gangrene. + +The earlier the wound is disinfected the greater is the possibility of +diminishing this risk. If cleansing is carried out within the first six +hours the chance of eliminating sepsis is good; with every succeeding +six hours it diminishes, until after twenty-four hours it is seldom +possible to do more than mitigate sepsis. (J. T. Morrison.) + +The presence of a metallic foreign body having been determined and its +position localised by means of the X-rays, all devitalised and +contaminated tissue is excised, the foreign material, _e.g._, a missile, +fragments of clothing, gravel and blood-clot, removed, the wound +purified with antiseptics and closed or drained according to +circumstances. + +#Pistol-shot Wounds.#--Wounds inflicted by pistols, revolvers, and small +air-guns are of frequent occurrence in civil practice, the weapon being +discharged usually by accident, but frequently with suicidal, and +sometimes with homicidal intent. + +With all calibres and at all ranges, except actual contact, the wound of +entrance is smaller than the bullet. If the weapon is discharged within +a foot of the body, the skin surrounding the wound is usually stained +with powder and burned, and the hair singed. At ranges varying from six +inches to thirty feet, grains of powder may be found embedded in the +skin or lying loose on the surface, the greater the range the wider +being the area of spread. When black powder is used, the embedded grains +usually leave a permanent bluish-black tattooing of the skin. When the +weapon is placed in contact with the skin, the subcutaneous tissues are +lacerated over an area of two or three inches around the opening made by +the bullet and smoke and powder-staining and scorching are more marked +than at longer ranges. + +When the bullet perforates, the exit wound is usually larger and more +extensively lacerated than the wound of entrance. Its margins are as a +rule everted, and it shows no marks of flame, smoke, or powder. These +features are common to all perforations caused by bullets. + +Pistol wounds only produce dangerous effects when fired at close range, +and when the cavities of the skull, the thorax, or the abdomen are +implicated. In the abdomen a lethal injury may readily be caused even by +pistols of the "toy" order. These injuries will be described with +regional surgery. + +Pistol-shot wounds of _joints_ and _soft parts_ are seldom of serious +import apart from the risk of haemorrhage and of infection. + +_Treatment._--The treatment of wounds of the soft parts consists in +purifying the wounds of entrance and exit and the surrounding skin, and +in providing for drainage if this is indicated. + +There being no urgency for the removal of the bullet, time should be +taken to have it localised by the X-rays, preferably by stereoscopic +plates. In some cases it is not necessary to remove the bullet. + +#Wounds by Sporting Guns.#--In the common sporting or scatter gun, with +which accidents so commonly occur during the shooting season, the charge +of small shot or pellets leave the muzzle of the gun as a solid mass +which makes a single ragged wound having much the appearance of that +caused by a single bullet. At a distance of from four to five feet from +the muzzle the pellets begin to disperse so that there are separate +punctures around the main central wound. As the range increases, these +outlying punctures make a wider and wider pattern, until at a distance +of from eighteen to twenty feet from the muzzle, the scattering is +complete, there is no longer any central wound, and each individual +pellet makes its own puncture. From these elementary data, it is usually +possible, from the features of the wound, to arrive at an approximately +accurate conclusion regarding the range at which the gun was discharged, +and this may have an important bearing on the question of accident, +suicide, or murder. + +As regards the effects on the tissues at close range, that is, within a +few feet, there is widespread laceration and disruption; if a bone is +struck it is shattered, and portions of bone may be displaced or even +driven out through the exit wound. + +When the charge impinges over one of the large cavities of the body, the +shot may scatter widely through the contained viscera, and there is +often no exit wound. In the thorax, for example, if a rib is struck, the +charge and possibly fragments of bone, will penetrate the pleura, and be +dispersed throughout the lung; in the head, the skull may be shattered +and the brain torn up; and in the abdomen, the hollow viscera may be +perforated in many places and the solid organs lacerated. + +On covered parts the clothing, by deflecting the shot, influences the +size and shape of the wound; the entrance wound is increased in size and +more ragged, and portions of the clothes may be driven into the tissues. + +[Illustration: FIG. 62.--Radiogram showing Pellets embedded in Arm. + +(Mr. J. W. Dowden's case.)] + +A charge of small shot is much more destructive to blood vessels, +tendons, and ligaments than a single bullet, which in many cases pushes +such structures aside without dividing them. In the abdomen and chest, +also, the damage done by a full charge of shot is much more extensive +than that inflicted by a single bullet, the deflection of the pellets +leading to a greater number of perforations of the intestine and more +widespread laceration of solid viscera. + +When the charge impinges on one of the extremities at close range, we +often have the opportunity of observing that the exit wound is larger, +more ragged than that of entrance, and that its edges are everted; the +extensive tearing and bruising of all the tissues, including the bones, +and the marked tendency to early and progressive septic infection, +render amputation compulsory in the majority of such cases. + +At a range of from twenty to thirty feet, although the scatter is +complete, the pellets are still close together, so that if they +encounter the shaft of a long bone, even the femur, they fracture the +bone across, often along with some longitudinal splintering. + +Individual pellets striking the shafts of long bones become flattened or +distorted, and when cancellated bone is struck they become embedded in +it (Fig. 62). + +The skin, when it is closely peppered with shot, is liable to lose its +vitality, and with the addition of a little sepsis, readily necroses and +comes away as a slough. + +When the shot have diverged so as to strike singly, they seldom do much +harm, but fatal damage may be done to the brain or to the aorta, or the +eye may be seriously injured by a single pellet. + +Small shot fired at longer ranges--over about a hundred and fifty +feet--usually go through the skin, but seldom pierce the fascia, and lie +embedded in the subcutaneous tissue, from which they can readily be +extracted. + +The wad of the cartridge behaves erratically: so long as it remains flat +it goes off with the rest of the charge, and is often buried in the +wound; but if it curls up or turns on its side, it is usually deflected +and flies clear of the shot. It may make a separate wound. + +Wounds from sporting guns are to be _treated_ on the usual lines, the +early efforts being directed to the alleviation of shock and the +prevention of septic infection. There is rarely any urgency in the +removal of pellets from the tissues. + +#Wounds by Rifle Bullets.#--The vast majority of wounds inflicted by +rifle bullets are met with in the field during active warfare, and fall +to be treated by military surgeons. They occasionally occur +accidentally, however, during range practice for example, and may then +come under the notice of the civil surgeon. + +It is only necessary here to consider the effects of modern small-bore +rifle or machine-gun bullets. + +The trajectory is practically flat up to 675 yards. In destructive +effect there is not much difference between the various high velocity +bullets used in different armies; they will kill up to a distance of two +miles. The hard covering is employed to enable the bullet to take the +grooves in the rifle, and to prevent it stripping as it passes through +the barrel. It also increases the penetrating power of the missile, but +diminishes its "stopping" power, unless a vital part or a long bone is +struck. By removing the covering from the point of the bullet, as is +done in the Dum-Dum bullet, or by splitting the end, the bullet is made +to expand or "mushroom" when it strikes the body, and its stopping power +is thereby greatly increased, the resulting wound being much more +severe. These "soft-nosed" expanding bullets are to be distinguished +from "explosive" bullets which contain substances which detonate on +impact. High velocity bullets are unlikely to lodge in the body unless +spent, or pulled up by a sandbag, or metal buckle on a belt, or a book +in the pocket, or the core and the case separating--"stripping" of the +bullet. Spent shot may merely cause bruising of the surface, or they may +pass through the skin and lodge in the subcutaneous tissue, or may even +damage some deeper structure such as a nerve trunk. + +A blank cartridge fired at close range may cause a severe wound, and, if +charged with black powder, may leave a permanent bluish-black +pigmentation of the skin. + +The lesions of individual tissues--bones, nerves, blood vessels--are +considered with these. + +#Treatment of Gunshot Wounds under War Conditions.#--It is only +necessary to indicate briefly the method of dealing with gunshot wounds +in warfare as practised in the European War. + +1. _On the Field._--Haemorrhage is arrested in the limbs by an improvised +tourniquet; in the head by a pad and bandage; in the thorax or abdomen +by packing if necessary, but this should be avoided if possible, as it +favours septic infection. If a limb is all but detached it should be +completely severed. A full dose of morphin is given hypodermically. The +ampoule of iodine carried by the wounded man is broken, and its contents +are poured over and around the wound, after which the field dressing is +applied. In extensive wounds, the "shell-dressing" carried by the +stretcher bearers is preferred. All bandages are applied loosely to +allow for subsequent swelling. The fragments of fractured bones are +immobilised by some form of emergency splint. + +2. _At the Advanced Dressing Station_, after the patient has had a +liberal allowance of warm fluid nourishment, such as soup or tea, a full +dose of anti-tetanic serum is injected. The tourniquet is removed and +the wound inspected. Urgent amputations are performed. Moribund patients +are detained lest they die _en route_. + +3. _In the Field Ambulance or Casualty Clearing Station_ further +measures are employed for the relief of shock, and urgent operations are +performed, such as amputation for gangrene, tracheotomy for dyspnoea, or +laparotomy for perforated or lacerated intestine. In the majority of +cases the main object is to guard against infection; the skin is +disinfected over a wide area and surrounded with towels; damaged tissue, +especially muscle, is removed with the knife or scissors, and foreign +bodies are extracted. Torn blood vessels, and, if possible, nerves and +tendons are repaired. The wound is then partly closed, provision being +made for free drainage, or some special method of irrigation, such as +that of Carrel, is adopted. Sometimes the wound is treated with bismuth, +iodoform, and paraffin paste (B.I.P.P.) and sutured. + +4. _In the Base Hospital or Hospital Ship_ various measures may be +called for according to the progress of the wound and the condition of +the patient. + +#Shell Wounds and Wounds produced by Explosions.#--It is convenient to +consider together the effects of the bursting of shells fired from heavy +ordnance and those resulting in the course of blasting operations from +the discharge of dynamite or other explosives, or from the bursting of +steam boilers or pipes, the breaking of machinery, and similar accidents +met with in civil practice. + +Wounds inflicted by shell fragments and shrapnel bullets tend to be +extensive in area, and show great contusion, laceration, and destruction +of the tissues. The missiles frequently lodge and carry portions of the +clothing and, it may be, articles from the man's pocket, with them. +Shell wounds are attended with a considerable degree of shock. On +account of the wide area of contusion which surrounds the actual wound +produced by shell fragments, amputation, when called for, should be +performed some distance above the torn tissues, as there is considerable +risk of sloughing of the flaps. + +Wounds produced by dynamite explosions and the bursting of boilers have +the same general characters as shell wounds. Fragments of stone, coal, +or metal may lodge in the tissues, and favour the occurrence of +infective complications. + +All such injuries are to be treated on the general principles governing +contused and lacerated wounds. + + +EMBEDDED FOREIGN BODIES + +In the course of many operations foreign substances are introduced into +the tissues and intentionally left there, for example, suture and +ligature materials, steel or aluminium plates, silver wire or ivory pegs +used to secure the fixation of bones, or solid paraffin employed to +correct deformities. Other substances, such as gauze, drainage tubes, +or metal instruments, may be unintentionally left in a wound. + +Foreign bodies may also lodge in accidentally inflicted wounds, for +example, bullets, needles, splinters of wood, or fragments of clothing. +The needles of hypodermic syringes sometimes break and a portion remains +embedded in the tissues. As a result of explosions, particles of carbon, +in the form of coal-dust or gunpowder, or portions of shale, may lodge +in a wound. + +The embedded foreign body at first acts as an irritant, and induces a +reaction in the tissues in which it lodges, in the form of hyperaemia, +local leucocytosis, proliferation of fibroblasts, and the formation of +granulation tissue. The subsequent changes depend upon whether or not +the wound is infected with pyogenic bacteria. If it is so infected, +suppuration ensues, a sinus forms, and persists until the foreign body +is either cast out or removed. + +If the wound is aseptic, the fate of the foreign body varies with its +character. A substance that is absorbable, such as catgut or fine silk, +is surrounded and permeated by the phagocytes, which soften and +disintegrate it, the debris being gradually absorbed in much the same +manner as a fibrinous exudate. Minute bodies that are not capable of +being absorbed, such as particles of carbon, or of pigment used in +tattooing, are taken up by the phagocytes, and in course of time +removed. Larger bodies, such as needles or bullets, which are not +capable of being destroyed by the phagocytes, become encapsulated. In +the granulation tissue by which they are surrounded large multinuclear +giant-cells appear ("_foreign-body giant-cells_") and attach themselves +to the foreign body, the fibroblasts proliferate and a capsule of scar +tissue is eventually formed around the body. The tissues of the capsule +may show evidence of iron pigmentation. Sometimes fluid accumulates +around a foreign body within its capsule, constituting a cyst. + +Substances like paraffin, strands of silk used to bridge a gap in a +tendon, or portions of calcined bone, instead of being encapsulated, are +gradually permeated and eventually replaced by new connective tissue. + +Embedded bodies may remain in the tissues for an indefinite period +without giving rise to inconvenience. At any time, however, they may +cause trouble, either as a result of infective complications, or by +inducing the formation of a mass of inflammatory tissue around them, +which may simulate a gumma, a tuberculous focus, or a sarcoma. This +latter condition may give rise to difficulties in diagnosis, +particularly if there is no history forthcoming of the entrance of the +foreign body. The ignorance of patients regarding the possible lodgment +in the tissues of a foreign body--even of considerable size--is +remarkable. In such cases the X-rays will reveal the presence of the +foreign body if it is sufficiently opaque to cast a shadow. The heavy, +lead-containing varieties of glass throw very definite shadows little +inferior in sharpness and definition to those of metal; almost all the +ordinary forms of commercial glass also may be shown up by the X-rays. + +Foreign bodies encapsulated in the peritoneal cavity are specially +dangerous, as the proximity of the intestine furnishes a constant +possibility of infection. + +The question of removal of the foreign body must be decided according to +the conditions present in individual cases; in searching for a foreign +body in the tissues, unless it has been accurately located, a general +anaesthetic is to be preferred. + + +BURNS AND SCALDS + +The distinction between a burn which results from the action of dry heat +on the tissues of the body and a scald which results from the action of +moist heat, has no clinical significance. + +In young and debilitated subjects hot poultices may produce injuries of +the nature of burns. In old people with enfeebled circulation mere +exposure to a strong fire may cause severe degrees of burning, the +clothes covering the part being uninjured. This may also occur about the +feet, legs, or knees of persons while intoxicated who have fallen asleep +before the fire. + +The damage done to the tissues by strong caustics, such as fuming nitric +acid, sulphuric acid, caustic potash, nitrate of silver, or arsenical +paste, presents pathological and clinical features almost identical with +those resulting from heat. Electricity and the Rontgen rays also produce +lesions of the nature of burns. + +_Pathology of Burns._--Much discussion has taken place regarding the +explanation of the rapidly fatal issue in extensive superficial burns. +On post-mortem examination the lesions found in these cases are: (1) +general hyperaemia of all the organs of the abdominal, thoracic, and +cerebro-spinal cavities; (2) marked leucocytosis, with destruction of +red corpuscles, setting free haemoglobin which lodges in the epithelial +cells of the tubules of the kidneys; (3) minute thrombi and +extravasations throughout the tissues of the body; (4) degeneration of +the ganglion cells of the solar plexus; (5) oedema and degeneration of +the lymphoid tissue throughout the body; (6) cloudy swelling of the +liver and kidneys, and softening and enlargement of the spleen. Bardeen +suggests that these morbid phenomena correspond so closely to those met +with where the presence of a toxin is known to produce them, that in all +probability death is similarly due to the action of some poison produced +by the action of heat on the skin and on the proteins of the blood. + +#Clinical Features--Local Phenomena.#--The most generally accepted +classification of burns is that of Dupuytren, which is based upon the +depth of the lesion. Six degrees are thus, recognised: (1) hyperaemia or +erythema; (2) vesication; (3) partial destruction of the true skin; (4) +total destruction of the true skin; (5) charring of muscles; (6) +charring of bones. + +It must be observed, however, that burns met with at the bedside always +illustrate more than one of these degrees, the deeper forms always being +associated with those less deep, and the clinical picture is made up of +the combined characters of all. A burn is classified in terms of its +most severe portion. It is also to be remarked that the extent and +severity of a burn usually prove to be greater than at first sight +appears. + +_Burns of the first degree_ are associated with erythema of the skin, +due to hyperaemia of its blood vessels, and result from scorching by +flame, from contact with solids or fluids below 212 o F., or from +exposure to the sun's rays. They are characterised clinically by acute +pain, redness, transitory swelling from oedema, and subsequent +desquamation of the surface layers of the epidermis. A special form of +pigmentation of the skin is seen on the front of the legs of women from +exposure to the heat of the fire. + +_Burns of Second Degree--Vesication of the Skin._--These are +characterised by the occurrence of vesicles or blisters which are +scattered over the hyperaemic area, and contain a clear yellowish or +brownish fluid. On removing the raised epidermis, the congested and +highly sensitive papillae of the skin are exposed. Unna has found that +pyogenic bacteria are invariably present in these blisters. Burns of the +second degree leave no scar but frequently a persistent discoloration. +In rare instances the burned area becomes the seat of a peculiar +overgrowth of fibrous tissue of the nature of keloid (p 401). + +_Burns of Third Degree--Partial Destruction of the Skin._--The epidermis +and papillae are destroyed in patches, leaving hard, dry, and insensitive +sloughs of a yellow or black colour. The pain in these burns is +intense, but passes off during the first or second day, to return again, +however, when, about the end of a week, the sloughs separate and expose +the nerve filaments of the underlying skin. Granulations spring up to +fill the gap, and are rapidly covered by epithelium, derived partly from +the margins and partly from the remains of skin glands which have not +been completely destroyed. These latter appear on the surface of the +granulations as small bluish islets which gradually increase in size, +become of a greyish-white colour, and ultimately blend with one another +and with the edges. The resulting cicatrix may be slightly depressed, +but otherwise exhibits little tendency to contract and cause deformity. + +_Burns of Fourth Degree--Total Destruction of the Skin._--These follow +the more prolonged action of any form of intense heat. Large, black, dry +eschars are formed, surrounded by a zone of intense congestion. Pain is +less severe, and is referred to the parts that have been burned to a +less degree. Infection is liable to occur and to lead to wide +destruction of the surrounding skin. The amount of granulation tissue +necessary to fill the gap is therefore great; and as the epithelial +covering can only be derived from the margins--the skin glands being +completely destroyed--the healing process is slow. The resulting scars +are irregular, deep and puckered, and show a great tendency to contract. +Keloid frequently develops in such cicatrices. When situated in the +region of the face, neck, or flexures of joints, much deformity and +impairment of function may result (Fig. 63). + +[Illustration: FIG. 63.--Cicatricial Contraction following Severe Burn.] + +In _burns of the fifth degree_ the lesion extends through the +subcutaneous tissue and involves the muscles; while in those of the +_sixth degree_ it passes still more deeply and implicates the bones. +These burns are comparatively limited in area, as they are usually +produced by prolonged contact with hot metal or caustics. Burns of the +fifth and sixth degrees are met with in epileptics or intoxicated +persons who fall into the fire. Large blood vessels, nerve-trunks, +joints, or serous cavities may be implicated. + +#General Phenomena.#--It is customary to divide the clinical history of +a severe burn into three periods; but it is to be observed that the +features characteristic of the periods have been greatly modified since +burns have been treated on the same lines as other wounds. + +_The first period_ lasts for from thirty-six to forty-eight hours, +during which time the patient remains in a more or less profound state +of _shock_, and there is a remarkable absence of pain. When shock is +absent or little marked, however, the amount of suffering may be great. +When the injury proves fatal during this period, death is due to shock, +probably aggravated by the absorption of poisonous substances produced +in the burned tissues. In fatal cases there is often evidence of +cerebral congestion and oedema. + +The _second period_ begins when the shock passes off, and lasts till the +sloughs separate. The outstanding feature of this period is _toxaemia_, +manifested by fever, the temperature rising to 102 o, 103 o, or 104 o F., +and congestive or inflammatory conditions of internal organs, giving +rise to such clinical complications as bronchitis, broncho-pneumonia, or +pleurisy--especially in burns of the thorax; or meningitis and +cerebritis, when the neck or head is the seat of the burn. Intestinal +catarrh associated with diarrhoea is not uncommon; and ulceration of the +duodenum leading to perforation has been met with in a few cases. These +phenomena are much more prominent when bacterial infection has taken +place, and it seems probable that they are to be attributed chiefly to +the infection, as they have become less frequent and less severe since +burns have been treated like other breaches of the surface. Albuminuria +is a fairly constant symptom in severe burns, and is associated with +congestion of the kidneys. In burns implicating the face, neck, mouth, +or pharynx, oedema of the glottis is a dangerous complication, entailing +as it does the risk of suffocation. + +The _third period_ begins when the sloughs separate, usually between +the seventh and fourteenth days, and lasts till the wound heals, its +duration depending upon the size, depth, and asepticity of the raw area. +The chief causes of death during this period are toxin absorption in any +of its forms; waxy disease of the liver, kidneys, or intestine; less +commonly erysipelas, tetanus, or other diseases due to infection by +specific organisms. We have seen nothing to substantiate the belief that +duodenal ulcers are liable to perforate during the third period. + +The _prognosis_ in burns depends on (1) the superficial extent, and, to +a much less degree, the depth of the injury. When more than one-third of +the entire surface of the body is involved, even in a mild degree, the +prognosis is grave. (2) The situation of the burn is important. Burns +over the serous cavities--abdomen, thorax, or skull--are, other things +being equal, much more dangerous than burns of the limbs. The risk of +oedema of the glottis in burns about the neck and mouth has already been +referred to. (3) Children are more liable to succumb to shock during the +early period, but withstand prolonged suppuration better than adults. +(4) When the patient survives the shock, the presence or absence of +infection is the all-important factor in prognosis. + +#Treatment.#--The _general treatment_ consists in combating the shock. +When pain is severe, morphin must be injected. + +_Local Treatment._--The local treatment must be carried out on +antiseptic lines, a general anaesthetic being administered, if necessary, +to enable the purification to be carried out thoroughly. After carefully +removing the clothing, the whole of the burned area is gently, but +thoroughly, cleansed with peroxide of hydrogen or warm boracic lotion, +followed by sterilised saline solution. As pyogenic bacteria are +invariably found in the blisters of burns, these must be opened and the +raised epithelium removed. + +The dressings subsequently applied should meet the following +indications: the relief of pain; the prevention of sepsis; and the +promotion of cicatrisation. + +An application which satisfactorily fulfils these requirements is +_picric acid_. Pads of lint or gauze are lightly wrung out of a solution +made up of picric acid, 1 1/2 drams; absolute alcohol, 3 ounces; +distilled water, 40 ounces, and applied over the whole of the reddened +area. These are covered with antiseptic wool, _without_ any waterproof +covering, and retained in position by a many-tailed bandage. The +dressing should be changed once or twice a week, under the guidance of +the temperature chart, any portion of the original dressing which +remains perfectly dry being left undisturbed. The value of a general +anaesthetic in dressing extensive burns, especially in children, can +scarcely be overestimated. + +Picric acid yields its best results in superficial burns, and it is +useful as _a primary dressing_ in all. As soon as the sloughs separate +and a granulating surface forms, the ordinary treatment for a healing +sore is instituted. Any slough under which pus has collected should be +cut away with scissors to permit of free drainage. + +An occlusive dressing of melted _paraffin_ has also been employed. A +useful preparation consists of: Paraffin molle 25 per cent., paraffin +durum 67 per cent., olive oil 5 per cent., oil of eucalyptus 2 per +cent., and beta-naphthol 1/4 per cent. It has a melting point of 48 o C. +It is also known as _Ambrine_ and _Burnol_. After the burned area has +been cleansed and thoroughly dried, it is sponged or painted with the +melted paraffin, and before solidification takes place a layer of +sterilised gauze is applied and covered with a second coating of +paraffin. Further coats of paraffin are applied every other day to +prevent the gauze sticking to the skin. + +An alternative method of treating extensive burns is by immersing the +part, or even the whole body when the trunk is affected, in a bath of +boracic lotion kept at the body temperature, the lotion being frequently +renewed. + +If a burn is already infected when first seen, it is to be treated on +the same principles as govern the treatment of other infected wounds. + +All moist or greasy applications, such as Carron oil, carbolic oil and +ointments, and all substances like collodion and dry powders, which +retain discharges, entirely fail to meet the indications for the +rational treatment of burns, and should be abandoned. + +Skin-grafting is of great value in hastening healing after extensive +burns, and in preventing cicatricial contraction. The _deformities_ +which are so liable to develop from contraction of the cicatrices are +treated on general principles. In the region of the face, neck, and +flexures of joints (Fig. 63), where they are most marked, the contracted +bands may be divided and the parts stretched, the raw surface left being +covered by Thiersch grafts or by flaps of skin raised from adjacent +surfaces or from other parts of the body (Fig. 1). + + +INJURIES PRODUCED BY ELECTRICITY + +#Injuries produced by Exposure to X-Rays and Radium.#--In the routine +treatment of disease by radiations, injury is sometimes done to the +tissues, even when the greatest care is exercised as to dosage and +frequency of application. Robert Knox describes the following +ill-effects. + +_Acute dermatitis_ varying in degree from a slight erythema to deep +ulceration or even necrosis of skin. When ulcers form they are extremely +painful and slow to heal. When hair-bearing areas are affected, +epilation may occur without destroying the hair follicles and the hairs +are reproduced, but if the reaction is excessive permanent alopecia may +result. + +_Chronic dermatitis_, which results from persistence of the acute form, +is most intractable and may assume malignant characters. X-ray warts are +a late manifestation of chronic dermatitis and may become malignant. + +Among the _late manifestations_ are neuritis, telangiectasis, and a +painful and intractable form of ulceration, any of which may come on +months or even years after the cessation of exposure. _Sterility_ may be +induced in X-ray workers who are imperfectly protected from the effects +of the rays. + +#Electrical burns# usually occur in those who are engaged in industrial +undertakings where powerful electrical currents are employed. + +The lesions--which vary from a slight superficial scorching to complete +charring of parts--are most evident at the points of entrance and exit +of the current, the intervening tissues apparently escaping injury. + +The more superficial degrees of electrical burns differ from those +produced by heat in being almost painless, and in healing very slowly, +although as a rule they remain dry and aseptic. + +The more severe forms are attended with a considerable degree of shock, +which is not only more profound, but also lasts much longer than the +shock in an ordinary burn of corresponding severity. The parts at the +point of entrance of the current are charred to a greater or lesser +depth. The eschar is at first dry and crisp, and is surrounded by a zone +of pallor. For the first thirty-six to forty-eight hours there is +comparatively little suffering, but at the end of that time the parts +become exceedingly painful. In a majority of cases, in spite of careful +purification, a slow form of moist gangrene sets in, and the slough +spreads both in area and in depth, until the muscles and often the +large blood vessels and nerves are exposed. A line of demarcation +eventually forms, but the sloughs are exceedingly slow to separate, +taking from three to five times as long as in an ordinary burn, and +during the process of separation there is considerable risk of secondary +haemorrhage from erosion of large vessels. + +_Treatment._--Electrical burns are treated on the same lines as ordinary +burns, by thorough purification and the application of dry dressings, +with a view to avoiding the onset of moist gangrene. After granulations +have formed, skin-grafting is of value in hastening healing. + +#Lightning-stroke.#--In a large proportion of cases lightning-stroke +proves instantly fatal. In non-fatal cases the patient suffers from a +profound degree of shock, and there may or may not be any external +evidence of injury. In the mildest cases red spots or wheals--closely +resembling those of urticaria--may appear on the body, but they usually +fade again in the course of twenty-four hours. Sometimes large patches +of skin are scorched or stained, the discoloured area showing an +arborescent appearance. In other cases the injured skin becomes dry and +glazed, resembling parchment. Appearances are occasionally met with +corresponding to those of a superficial burn produced by heat. The chief +difference from ordinary burns is the extreme slowness with which +healing takes place. Localised paralysis of groups of muscles, or even +of a whole limb, may follow any degree of lightning-stroke. Treatment is +mainly directed towards combating the shock, the surface-lesions being +treated on the same lines as ordinary burns. + + + + +CHAPTER XII + +METHODS OF WOUND TREATMENT + + +Varieties of wounds--Modes of infection--Lister's work--Means taken to + prevent infection of wounds: _heat_; _chemical antiseptics_; + _disinfection of hands_; _preparation of skin of patient_; + _instruments_; _ligatures_; _dressings_--Means taken to combat + infection: _purification_; _open-wound method_. + +The surgeon is called upon to treat two distinct classes of wounds: (1) +those resulting from injury or disease in which _the skin is already +broken_, or in which a communication with a mucous surface exists; and +(2) those that he himself makes _through intact skin_, no infected +mucous surface being involved. + +Infection by bacteria must be assumed to have taken place in all wounds +made in any other way than by the knife of the surgeon operating through +unbroken skin. On this assumption the modern system of wound treatment +is based. Pathogenic bacteria are so widely distributed, that in the +ordinary circumstances of everyday life, no matter how trivial a wound +may be, or how short a time it may remain exposed, the access of +organisms to it is almost certain unless preventive measures are +employed. + +It cannot be emphasised too strongly that rigid precautions are to be +taken to exclude fresh infection, not only in dealing with wounds that +are free of organisms, but equally in the management of wounds and other +lesions that are already infected. Any laxity in our methods which +admits of fresh organisms reaching an infected wound adds materially to +the severity of the infective process and consequently to the patient's +risk. + +There are many ways in which accidental infection may occur. Take, for +example, the case of a person who receives a cut on the face by being +knocked down in a carriage accident on the street. Organisms may be +introduced to such a wound from the shaft or wheel by which he was +struck, from the ground on which he lay, from any portion of his +clothing that may have come in contact with the wound, or from his own +skin. Or, again, the hands of those who render first aid, the water used +to bathe the wound, the handkerchief or other extemporised dressing +applied to it, may be the means of conveying bacterial infection. Should +the wound open on a mucous surface, such as the mouth or nasal cavity, +the organisms constantly present in such situations are liable to prove +agents of infection. + +Even after the patient has come under professional care the risks of his +wound becoming infected are not past, because the hands of the doctor, +his instruments, dressings, or other appliances may all, unless +purified, become the sources of infection. + +In the case of an operation carried out through unbroken skin, organisms +may be introduced into the wound from the patient's own skin, from the +hands of the surgeon or his assistants, through the medium of +contaminated instruments, swabs, ligature or suture materials, or other +things used in the course of the operation, or from the dressings +applied to the wound. + +Further, bacteria may gain access to devitalised tissues by way of the +blood-stream, being carried hither from some infected area elsewhere in +the body. + +_The Antiseptic System of Surgery._--Those who only know the surgical +conditions of to-day can scarcely realise the state of matters which +existed before the introduction of the antiseptic system by Joseph +Lister in 1867. In those days few wounds escaped the ravages of pyogenic +and other bacteria, with the result that suppuration ensued after most +operations, and such diseases as erysipelas, pyaemia, and "hospital +gangrene" were of everyday occurrence. The mortality after compound +fractures, amputations, and many other operations was appalling, and +death from blood-poisoning frequently followed even the most trivial +operations. An operation was looked upon as a last resource, and the +inherent risk from blood-poisoning seemed to have set an impassable +barrier to the further progress of surgery. To the genius of Lister we +owe it that this barrier was removed. Having satisfied himself that the +septic process was due to bacterial infection, he devised a means of +preventing the access of organisms to wounds or of counteracting their +effects. Carbolic acid was the first antiseptic agent he employed, and +by its use in compound fractures he soon obtained results such as had +never before been attained. The principle was applied to other +conditions with like success, and so profoundly has it affected the +whole aspect of surgical pathology, that many of the infective diseases +with which surgeons formerly had to deal are now all but unknown. The +broad principles upon which Lister founded his system remain unchanged, +although the methods employed to put them into practice have been +modified. + +#Means taken to Prevent Infection of Wounds.#--The avenues by which +infective agents may gain access to surgical wounds are so numerous and +so wide, that it requires the greatest care and the most watchful +attention on the part of the surgeon to guard them all. It is only by +constant practice and patient attention to technical details in the +operating room and at the bedside, that the carrying out of surgical +manipulations in such a way as to avoid bacterial infection will become +an instinctive act and a second nature. It is only possible here to +indicate the chief directions in which danger lies, and to describe the +means most generally adopted to avoid it. + +To prevent infection, it is essential that everything which comes into +contact with a wound should be sterilised or disinfected, and to ensure +the best results it is necessary that the efficiency of our methods of +sterilisation should be periodically tested. The two chief agencies at +our disposal are heat and chemical antiseptics. + +#Sterilisation by Heat.#--The most reliable, and at the same time the +most convenient and generally applicable, means of sterilisation is by +heat. All bacteria and spores are completely destroyed by being +subjected for fifteen minutes to _saturated circulating steam_ at a +temperature of 130 o to 145 o C. (= 266 o to 293 o F.). The articles to be +sterilised are enclosed in a perforated tin casket, which is placed in a +specially constructed steriliser, such as that of Schimmelbusch. This +apparatus is so arranged that the steam circulates under a pressure of +from two to three atmospheres, and permeates everything contained in it. +Objects so sterilised are dry when removed from the steriliser. This +method is specially suitable for appliances which are not damaged by +steam, such, for example, as gauze swabs, towels, aprons, gloves, and +metal instruments; it is essential that the efficiency of the steriliser +be tested from time to time by a self-registering thermometer or other +means. + +The best substitute for circulating steam is _boiling_. The articles are +placed in a "fish-kettle steriliser" and boiled for fifteen minutes in a +1 per cent. solution of washing soda. + +To prevent contamination of objects that have been sterilised they must +on no account be touched by any one whose hands have not been +disinfected and protected by sterilised gloves. + +#Sterilisation by Chemical Agents.#--For the purification of the skin of +the patient, the hands of the surgeon, and knives and other instruments +that are damaged by heat, recourse must be had to chemical agents. +These, however, are less reliable than heat, and are open to certain +other objections. + +#Disinfection of the Hands.#--It is now generally recognised that one of +the most likely sources of wound infection is the hands of the surgeon +and his assistants. It is only by carefully studying to avoid all +contact with infective matter that the hands can be kept surgically +pure, and that this source of wound infection can be reduced to a +minimum. The risk of infection from this source has further been greatly +reduced by the systematic use of rubber gloves by house-surgeons, +dressers, and nurses. The habitual use of gloves has also been adopted +by the great majority of surgeons; the minority, who find they are +handicapped by wearing gloves as a routine measure, are obliged to do so +when operating in infective cases or dressing infected wounds, and in +making rectal and vaginal examinations. + +The gloves may be sterilised by steam, and are then put on dry, or by +boiling, in which case they are put on wet. The gauntlet of the glove +should overlap and confine the end of the sleeve of the sterilised +overall, and the gloved hands are rinsed in lotion before and at +frequent intervals during the operation. The hands are sterilised before +putting on the gloves, preferably by a method which dehydrates the skin. +Cotton gloves may be worn by the surgeon when tying ligatures, or +between operations, and by the anaesthetist during operations on the +head, neck, and chest. + +The first step in the disinfection of the hands is the mechanical +removal of gross surface dirt and loose epithelium by soap, a stream of +running water as hot as can be borne, and a loofah or nail-brush, that +has been previously sterilised by heat. The nails should be cut down +till there is no sulcus between the nail edge and the pulp of the finger +in which organisms may lodge. They are next washed for three minutes in +methylated spirit to dehydrate the skin, and then for two or three +minutes in 70 per cent. sublimate or biniodide alcohol (1 in 1000). +Finally, the hands are rubbed with dry sterilised gauze. + +#Preparation of the Skin of the Patient.#--In the purification of the +skin of the patient before operation, reliance is to be placed chiefly +in the mechanical removal of dirt and grease by the same means as are +taken for the cleansing of the surgeon's hands. Hair-covered parts +should be shaved. The skin is then dehydrated by washing with methylated +spirit, followed by 70 per cent. sublimate or biniodide alcohol (1 in +1000). This is done some hours before the operation, and the part is +then covered with pads of dry sterilised gauze or a sterilised towel. +Immediately before the operation the skin is again purified in the same +way. + +The _iodine method_ of disinfecting the skin introduced by Grossich is +simple, and equally efficient. The day before operation the skin, after +being washed with soap and water, is shaved, dehydrated by means of +methylated spirit, and then painted with a 5 per cent. solution of +iodine in rectified spirit. The painting with iodine is repeated just +before the operation commences, and again after it is completed. The +final application is omitted in the case of children. In emergency +operations the skin is shaved dry and dehydrated with spirit, after +which the iodine is applied as described above. The staining of the skin +is an advantage, as it enables the operator to recognise the area that +has been prepared. + +If any acne pustules or infected sinuses are present, they should be +destroyed or purified by means of the thermo-cautery or pure carbolic +acid, after the patient is anaesthetised. + +#Appliances used at Operation.#--_Instruments_ that are not damaged by +heat must be boiled in a fish-kettle or other suitable steriliser for +fifteen minutes in a 1 per cent. solution of cresol or washing soda. +Just before the operation begins they are removed in the tray of the +steriliser and placed on a sterilised towel within reach of the surgeon +or his assistant. Knives and instruments that are liable to be damaged +by heat should be purified by being soaked in pure cresol for a few +minutes, or in 1 in 20 carbolic for at least an hour. + +_Pads of Gauze_ sterilised by compressed circulating steam have almost +entirely superseded marine sponges for operative purposes. To avoid the +risk of leaving swabs in the peritoneal cavity, large square pads of +gauze, to one corner of which a piece of strong tape about a foot long +is securely stitched, should be employed. They should be removed from +the caskets in which they are sterilised by means of sterilised forceps, +and handed direct to the surgeon. The assistant who attends to the swabs +should wear sterilised gloves. + +_Ligatures and Sutures._--To avoid the risk of implanting infective +matter in a wound by means of the materials used for ligatures and +sutures, great care must be taken in their preparation. + +_Catgut._--The following methods of preparing catgut have proved +satisfactory: (1) The gut is soaked in juniper oil for at least a month; +the juniper oil is then removed by ether and alcohol, and the gut +preserved in 1 in 1000 solution of corrosive sublimate in alcohol +(Kocher). (2) The gut is placed in a brass receiver and boiled for +three-quarters of an hour in a solution consisting of 85 per cent. +absolute alcohol, 10 per cent. water, and 5 per cent. carbolic acid, and +is then stored in 90 per cent. alcohol. (3) Cladius recommends that the +catgut, just as it is bought from the dealers, be loosely rolled on a +spool, and then immersed in a solution of--iodine, 1 part; iodide of +potassium, 1 part; distilled water, 100 parts. At the end of eight days +it is ready for use. Moschcowitz has found that the tensile strength of +catgut so prepared is increased if it is kept dry in a sterile vessel, +instead of being left indefinitely in the iodine solution. If +Salkindsohn's formula is used--tincture of iodine, 1 part; proof spirit, +15 parts--the gut can be kept permanently in the solution without +becoming brittle. To avoid contamination from the hands, catgut should +be removed from the bottle with aseptic forceps and passed direct to the +surgeon. Any portion unused should be thrown away. + +_Silk_ is prepared by being soaked for twelve hours in ether, for other +twelve in alcohol, and then boiled for ten minutes in 1 in 1000 +sublimate solution. It is then wound on spools with purified hands +protected by sterilised gloves, and kept in absolute alcohol. Before an +operation the silk is again boiled for ten minutes in the same solution, +and is used directly from this (Kocher). Linen thread is sterilised in +the same way as silk. + +Fishing-gut and silver wire, as well as the needles, should be boiled +along with the instruments. Horse-hair and fishing-gut may be sterilised +by prolonged immersion in 1 in 20 carbolic, or in the iodine solutions +employed to sterilise catgut. + +The field of operation is surrounded by sterilised towels, clipped to +the edges of the wound, and securely fixed in position so that no +contamination may take place from the surroundings. + +The surgeon and his assistants, including the anaesthetist, wear +overalls sterilised by steam. To avoid the risk of infection from dust, +scurf, or drops of perspiration falling from the head, the surgeon and +his assistants may wear sterilised cotton caps. To obviate the risk of +infection taking place by drops of saliva projected from the mouth in +talking or coughing in the vicinity of a wound, a simple mask may be +worn. + +The risk of infection from the _air_ is now known to be very small, so +long as there is no excess of floating dust. All sweeping, dusting, and +disturbing of curtains, blinds, or furniture must therefore be avoided +before or during an operation. + +It has been shown that the presence of spectators increases the number +of organisms in the atmosphere. In teaching clinics, therefore, the risk +from air infection is greater than in private practice. + +To facilitate primary union, all haemorrhage should be arrested, and the +accumulation of fluid in the wound prevented. When much oozing is +anticipated, a glass or rubber drainage-tube is inserted through a small +opening specially made for the purpose. In aseptic wounds the tube may +be removed in from twenty-four to forty-eight hours, and where it is +important to avoid a scar, the opening should be closed with a Michel's +clip; in infected wounds the tube must remain as long as the discharge +continues. + +The fascia and skin should be brought into accurate apposition by +sutures. If any cavity exists in the deeper part of the wound it should +be obliterated by buried sutures, or by so adjusting the dressing as to +bring its walls into apposition. + +If these precautions have been successful, the wound will heal under the +original dressing, which need not be interfered with for from seven to +ten days, according to the nature of the case. + +#Dressings.#--_Gauze_, sterilised by heat, is almost universally +employed for the dressing of wounds. _Double cyanide gauze_ may be used +in such regions as the neck, axilla, or groin, where complete +sterilisation of the skin is difficult to attain, and where it is +desirable to leave the dressing undisturbed for ten days or more. +_Iodoform_ or _bismuth gauze_ is of special value for the packing of +wounds treated by the open method. + +One variety or another of _wool_, rendered absorbent by the extraction +of its fat, and sterilised by heat, forms a part of almost every +surgical dressing, and various antiseptic agents may be added to it. Of +these, corrosive sublimate is the most generally used. Wood-wool +dressings are more highly and more uniformly absorbent than cotton +wools. As evaporation takes place through wool dressings, the discharge +becomes dried, and so forms an unfavourable medium for bacterial growth. + +Pads of _sphagnum moss_, sterilised by heat, are highly absorbent, and +being economical are used when there is much discharge, and in cases +where a leakage of urine has to be soaked up. + +#Means adopted to combat Infection.#--As has already been indicated, the +same antiseptic precautions are to be taken in dealing with infected as +with aseptic wounds. + +In _recent injuries_ such as result from railway or machinery accidents, +with bruising and crushing of the tissues and grinding of gross dirt +into the wounds, the scissors must be freely used to remove the tissues +that have been devitalised or impregnated with foreign material. +Hair-covered parts should be shaved and the surrounding skin painted +with iodine. Crushed and contaminated portions of bone should be +chiselled away. Opinions differ as to the benefit derived from washing +such wounds with chemical antiseptics, which are liable to devitalise +the tissues with which they come in contact, and so render them less +able to resist the action of any organisms that may remain in them. All +are agreed, however, that free washing with normal salt solution is +useful in mechanically cleansing the injured parts. Peroxide of hydrogen +sprayed over such wounds is also beneficial in virtue of its oxidising +properties. Efficient drainage must be provided, and stitches should be +used sparingly, if at all. + +The best way in which to treat such wounds is by the _open method_. This +consists in packing the wound with iodoform or bismuth gauze, which is +left in position as long as it adheres to the raw surface. The packing +may be renewed at intervals until the wound is filled by granulations; +or, in the course of a few days when it becomes evident that the +infection has been overcome, _secondary_ sutures may be introduced and +the edges drawn together, provision being made at the ends for further +packing or for drainage-tubes. + +If earth or street dirt has entered the wound, the surface may with +advantage be painted over with pure carbolic acid, as virulent +organisms, such as those of tetanus or spreading gangrene, are liable to +be present. Prophylactic injection of tetanus antitoxin may be +indicated. + + + + +CHAPTER XIII + +CONSTITUTIONAL EFFECTS OF INJURIES + + +SYNCOPE--SHOCK--COLLAPSE--FAT EMBOLISM--TRAUMATIC ASPHYXIA--DELIRIUM + IN SURGICAL PATIENTS: _Delirium in general_; _Delirium tremens_; + _Traumatic delirium_. + + +SYNCOPE, SHOCK, AND COLLAPSE + +Syncope, shock, and collapse are clinical conditions which, although +depending on different causes, bear a superficial resemblance to one +another. + +#Syncope or Fainting.#--Syncope is the result of a suddenly produced +anaemia of the brain from temporary weakening or arrest of the heart's +action. In surgical practice, this condition is usually observed in +nervous persons who have been subjected to pain, as in the reduction of +a dislocation or the incision of a whitlow; or in those who have rapidly +lost a considerable quantity of blood. It may also follow the sudden +withdrawal of fluid from a large cavity, as in tapping an abdomen for +ascites, or withdrawing fluid from the pleural cavity. Syncope sometimes +occurs also during the administration of a general anaesthetic, +especially if there is a tendency to sickness and the patient is not +completely under. During an operation the onset of syncope is often +recognised by the cessation of oozing from the divided vessels before +the general symptoms become manifest. + +_Clinical Features._--When a person is about to faint he feels giddy, +has surging sounds in his ears, and haziness of vision; he yawns, +becomes pale and sick, and a free flow of saliva takes place into the +mouth. The pupils dilate; the pulse becomes small and almost +imperceptible; the respirations shallow and hurried; consciousness +gradually fades away, and he falls in a heap on the floor. + +Sometimes vomiting ensues before the patient completely loses +consciousness, and the muscular exertion entailed may ward off the +actual faint. This is frequently seen in threatened syncopal attacks +during chloroform administration. + +Recovery begins in a few seconds, the patient sighing or gasping, or, it +may be, vomiting; the strength of the pulse gradually increases, and +consciousness slowly returns. In some cases, however, syncope is fatal. + +_Treatment._--The head should at once be lowered--in imitation of +nature's method--to encourage the flow of blood to the brain, the +patient, if necessary, being held up by the heels. All tight clothing, +especially round the neck or chest, must be loosened. The heart may be +stimulated reflexly by dashing cold water over the face or chest, or by +rubbing the face vigorously with a rough towel. The application of +volatile substances, such as ammonia or smelling-salts, to the nose; the +administration by the mouth of sal-volatile, whisky or brandy, and the +intra-muscular injection of ether, are the most speedily efficacious +remedies. In severe cases the application of hot cloths over the heart, +or of the faradic current over the line of the phrenic nerve, just above +the clavicle, may be called for. + +#Surgical Shock.#--The condition known as surgical shock may be looked +upon as a state of profound exhaustion of the mechanism that exists in +the body for the transformation of energy. This mechanism consists of +(1) the _brain_, which, through certain special centres, regulates all +vital activity; (2) the _adrenal glands_, the secretion of +which--adrenalin--acting as a stimulant of the sympathetic system, so +controls the tone of the blood vessels as to maintain efficient +oxidation of the tissues; and (3) _the liver_, which stores and delivers +glycogen as it is required by the muscles, and in addition, deals with +the by-products of metabolism. + +Crile and his co-workers have shown that in surgical shock histological +changes occur in the cells of the brain, the adrenals, and the liver, +and that these are identical, whatever be the cause that leads to the +exhaustion of the energy-transforming mechanism. These changes vary in +degree, and range from slight alterations in the structure of the +protoplasm to complete disorganisation of the cell elements. + +The influences which contribute to bring about this form of exhaustion +that we call shock are varied, and include such emotional states as +fear, anxiety, or worry, physical injury and toxic infection, and the +effects of these factors are augmented by anything that tends to lower +the vitality, such as loss of blood, exposure, insufficient food, loss +of sleep or antecedent illness. + +Any one or any combination of these influences may cause shock, but the +most potent, and the one which most concerns the surgeon, is physical +injury, _e.g._, a severe accident or an operation (_traumatic shock_). +This is usually associated with some emotional disturbance, such as fear +or anxiety (_emotional shock_), or with haemorrhage; and may be followed +by septic infection (_toxic shock_). + +The exaggerated afferent impulses reaching the brain as a result of +trauma, inhibit the action of the nuclei in the region of the fourth +ventricle and cerebellum which maintain the muscular tone, with the +result that the muscular tone is diminished and there is a marked fall +in the arterial blood pressure. The capillaries dilate--the blood +stagnating in them and giving off its oxygen and transuding its fluid +elements into the tissues--with the result that an insufficient quantity +of oxygenated blood reaches the heart to enable it to maintain an +efficient circulation. As the sarco-lactic acid liberated in the muscles +is not oxygenated a condition of acidosis ensues. + +The more highly the injured part is endowed with sensory nerves the more +marked is the shock; a crush of the hand, for example, is attended with +a more intense degree of shock than a correspondingly severe crush of +the foot; and injuries of such specially innervated parts as the testis, +the urethra, the face, or the spinal cord, are associated with severe +degrees, as are also those of parts innervated from the sympathetic +system, such as the abdominal or thoracic viscera. It is to be borne in +mind that a state of general anaesthesia does not prevent injurious +impulses reaching the brain and causing shock during an operation. If +the main nerves of the part are "blocked" by injection of a local +anaesthetic, however, the central nervous system is protected from these +impulses. + +While the aged frequently manifest but few signs of shock, they have a +correspondingly feeble power of recovery; and while many young children +suffer little, even after severe operations, others with much less cause +succumb to shock. + +When the injured person's mind is absorbed with other matters than his +own condition,--as, for example, during the heat of a battle or in the +excitement of a railway accident or a conflagration,--even severe +injuries may be unattended by pain or shock at the time, although when +the period of excitement is over, the severity of the shock is all the +greater. The same thing is observed in persons injured while under the +influence of alcohol. + +_Clinical Features._--The patient is in a state of prostration. He is +roused from his condition of indifference with difficulty, but answers +questions intelligently, if only in a whisper. The face is pale, beads +of sweat stand out on the brow, the features are drawn, the eyes +sunken, and the cheeks hollow. The lips and ears are pallid; the skin of +the body of a greyish colour, cold, and clammy. The pulse is rapid, +fluttering, and often all but imperceptible at the wrist; the +respiration is irregular, shallow, and sighing; and the temperature may +fall to 96 o F. or even lower. The mouth is parched, and the patient +complains of thirst. There is little sensibility to pain. + +Except in very severe cases, shock tends towards recovery within a few +hours, the _reaction_, as it is called, being often ushered in by +vomiting. The colour improves; the pulse becomes full and bounding; the +respiration deeper and more regular; the temperature rises to 100 o F. or +higher; and the patient begins to take notice of his surroundings. The +condition of neurasthenia which sometimes follows an operation may be +associated with the degenerative changes in nerve cells described by +Crile. + +In certain cases the symptoms of traumatic shock blend with those +resulting from toxin absorption, and it is difficult to estimate the +relative importance of the two factors in the causation of the +condition. The conditions formerly known as "delayed shock" and +"prostration with excitement" are now generally recognised to be due to +toxaemia. + +_Question of Operating during Shock._--Most authorities agree that +operations should only be undertaken during profound shock when they are +imperatively demanded for the arrest of haemorrhage, the prevention of +infection of serous cavities, or for the relief of pain which is +producing or intensifying the condition. + +_Prevention of Operation Shock._--In the preparation of a patient for +operation, drastic purgation and prolonged fasting must be avoided, and +about half an hour before a severe operation a pint of saline solution +should be slowly introduced into the rectum; this is repeated, if +necessary, during the operation, and at its conclusion. The +operating-room must be warm--not less than 70 o F.--and the patient +should be wrapped in cotton wool and blankets, and surrounded by +hot-bottles. All lotions used must be warm (100 o F.); and the operation +should be completed as speedily and as bloodlessly as possible. The +element of fear may to some extent be eliminated by the preliminary +administration of such drugs as scopolamin or morphin, and with a view +to preventing the passage of exciting afferent impulses, Crile advocates +"blocking" of the nerves by the injection of a 1 per cent. solution of +novocaine into their substance on the proximal side of the field of +operation. To prevent after-pain in abdominal wounds he recommends +injecting the edges with quinine and urea hydrochlorate before suturing, +the resulting anaesthesia lasting for twenty-four to forty-eight hours. +To these preventive measures the term _anoci-association_ has been +applied. In selecting an anaesthetic, it may be borne in mind that +chloroform lowers the blood pressure more than ether does, and that with +spinal anaesthesia there is no lowering of the blood pressure. + +_Treatment._--A patient suffering from shock should be placed in the +recumbent position, with the foot of the bed raised to facilitate the +return circulation in the large veins, and so to increase the flow of +blood to the brain. His bed should be placed near a large fire, and the +patient himself surrounded by cotton wool and blankets and hot-bottles. +If he has lost much blood, the limbs should be wrapped in cotton wool +and firmly bandaged from below upwards, to conserve as much of the +circulating blood as possible in the trunk and head. If the shock is +moderate in degree, as soon as the patient has been put to bed, about a +pint of saline solution should be introduced into the rectum, and 10 to +15 minims of adrenalin chloride (1 in 1000) may with advantage be added +to the fluid. The injection should be repeated every two hours until the +circulation is sufficiently restored. In severe cases, especially when +associated with haemorrhage, transfusion of whole blood from a compatible +donor, is the most efficient means (_Op. Surg._, p. 37). Cardiac +stimulants such as strychnin, digitalin, or strophanthin are +contra-indicated in shock, as they merely exhaust the already impaired +vaso-motor centre. + +Artificial respiration may be useful in tiding a patient over the +critical period of shock, especially at the end of a severe operation. + +Failing this, the introduction of saline solution at a temperature of +about 105 o F. into a vein or into the subcutaneous tissue is useful +where much blood has been lost (p. 276). Two or three pints may be +injected into a vein, or smaller quantities under the skin. + +Thirst is best met by giving small quantities of warm water by the +mouth, or by the introduction of saline solution into the rectum. Ice +only relieves thirst for a short time, and as it is liable to induce +flatulence should be avoided, especially in abdominal cases. Dryness of +the tongue may be relieved by swabbing the mouth with a mixture of +glycerine and lemon juice. + +If severe pain calls for the use of morphin, 1/120th grain of atropin +should be added, or heroin alone may be given in doses of 1/24th to +1/12th grain. + +#Collapse# is a clinical condition which comes on more insidiously than +shock, and which does not attain its maximum degree of severity for +several hours. It is met with in the course of severe illnesses, +especially such as are associated with the loss of large quantities of +fluid from the body--for example, by severe diarrhoea, notably in Asiatic +cholera; by persistent vomiting; or by profuse sweating, as in some +cases of heat-stroke. Severe degrees of collapse follow sudden and +profuse loss of blood. + +Collapse often follows upon shock--for example, in intestinal +perforations, or after abdominal operations complicated by peritonitis, +especially if there is vomiting, as in cases of obstruction high up in +the intestine. The symptoms of collapse are aggravated if toxin +absorption is superadded to the loss of fluid. + +The _clinical features_ of this condition are practically the same as +those of shock; and it is treated on the same lines. + +FAT EMBOLISM.--After various injuries and operations, but +especially such as implicate the marrow of long bones--for example, +comminuted fractures, osteotomies, resections of joints, or the forcible +correction of deformities--fluid fat may enter the circulation in +variable quantity. In the vast majority of cases no ill effects follow, +but when the quantity is large or when the absorption is long continued +certain symptoms ensue, either immediately, or more frequently not for +two or three days. These are mostly referable to the lungs and brain. + +In the lung the fat collects in the minute blood vessels and produces +venous congestion and oedema, and sometimes pneumonia. Dyspnoea, with +cyanosis, a persistent cough and frothy or blood-stained sputum, a +feeble pulse and low temperature, are the chief symptoms. + +When the fat lodges in the capillaries of the brain, the pulse becomes +small, rapid, and irregular, delirium followed by coma ensues, and the +condition is usually rapidly fatal. + +Fat is usually to be detected in the urine, even in mild cases. + +The _treatment_ consists in tiding the patient over the acute stage of +his illness, until the fat is eliminated from the blood vessels. + +TRAUMATIC ASPHYXIA OR TRAUMATIC CYANOSIS.--This term has been +applied to a condition which results when the thorax is so forcibly +compressed that respiration is mechanically arrested for several +minutes. It has occurred from being crushed in a struggling crowd, or +under a fall of masonry, and in machinery accidents. When the patient is +released, the face and the neck as low down as the level of the +clavicles present an intense coloration, varying from deep purple to +blue-black. The affected area is sharply defined, and on close +inspection the appearance is found to be due to the presence of +countless minute reddish-blue or black spots, with small areas or +streaks of normal skin between them. The punctate nature of the +coloration is best recognised towards the periphery of the affected +area--at the junction of the brow with the hairy scalp, and where the +dark patch meets the normal skin of the chest (Beach and Cobb). Pressure +over the skin does not cause the colour to disappear as in ordinary +cyanosis. It has been shown by Wright of Boston, that the coloration is +due to stasis from mechanical over-distension of the veins and +capillaries; actual extravasation into the tissues is exceptional. The +sharply defined distribution of the coloration is attributed to the +absence of functionating valves in the veins of the head and neck, so +that when the increased intra-thoracic pressure is transmitted to these +veins they become engorged. Under the conjunctivae there are +extravasations of bright red blood; and sublingual haematoma has been +observed (Beatson). + +The discoloration begins to fade within a few hours, and after the +second or third day it disappears, without showing any of the chromatic +changes which characterise a bruise. The sub-conjunctival ecchymosis, +however, persists for several weeks and disappears like other +extravasations. Apart from combating the shock, or dealing with +concomitant injuries, no treatment is called for. + + +DELIRIUM IN SURGICAL PATIENTS + +Delirium is a temporary disturbance of mind which occurs in the course +of certain diseases, and sometimes after injuries or operations. It may +be associated with any of the acute pyogenic infections; with +erysipelas, especially when it affects the head or face; or with chronic +infective diseases of the urinary organs. In the various forms of +meningitis also, and in some cases of injury to the head, it is common; +and it is sometimes met with after severe haemorrhage, and in cases of +poisoning by such drugs as iodoform, cocain, or alcohol. Delirium may +also, of course, be a symptom of insanity. + +Often there is merely incoherent muttering regarding past incidents or +occupations, or about absent friends; or the condition may assume the +form of excitement, of dementia, or of melancholia; and the symptoms are +usually worst at night. + +#Delirium Tremens# is seen in persons addicted to alcohol, who, as the +result of accident or operation, are suddenly compelled to lie in bed. +Although oftenest met with in habitual drunkards or chronic tipplers, it +is by no means uncommon in moderate drinkers, and has even been seen in +children. + +_Clinical Features._--The delirium, which has been aptly described as +being of a "busy" character, usually manifests itself within a few days +of the patient being laid up. For two or three days he refuses food, is +depressed, suspicious, sleepless and restless, demanding to be allowed +up. Then he begins to mutter incoherently, to pull off the bedclothes, +and to attempt to get out of bed. There is general muscular tremor, most +marked in the tongue, the lips, and the hands. The patient imagines that +he sees all sorts of horrible beings around him, and is sometimes +greatly distressed because of rats, mice, beetles, or snakes, which he +fancies are crawling over him. The pulse is soft, rapid, and +compressible; the temperature is only moderately raised (100 o-101 o F.), +and as a rule there is profuse sweating. The digestion is markedly +impaired, and there is often vomiting. Patients in this condition are +peculiarly insensitive to pain, and may even walk about with a fractured +leg without apparent discomfort. + +In most cases the symptoms begin to pass off in three or four days; the +patient sleeps, the hallucinations and tremors cease, and he gradually +recovers. In other cases the temperature rises, the pulse becomes rapid, +and death results from exhaustion. + +The main indication in _treatment_ is to secure sleep, and this is done +by the administration of bromides, chloral, or paraldehyde, or of one or +other of the drugs of which sulphonal, trional, and veronal are +examples. Heroin in doses of from 1/24th to 1/12th grain is often of +service. Morphin must be used with great caution. In some cases hyoscin +(1/200 grain) injected hypodermically is found efficacious when all +other means have failed, but this drug must be used with great +discrimination. The patient must be encouraged to take plenty of easily +digested fluid food, supplemented, if necessary, by nutrient enemata and +saline infusions. + +In the early stage a brisk mercurial purge is often of value. Alcohol +should be withheld, unless failing of the pulse strongly indicates its +use, and then it should be given along with the food. + +A delirious patient must be constantly watched by a trained attendant or +other competent person, lest he get out of bed and do harm to himself or +others. Mechanical restraint is often necessary, but must be avoided if +possible, as it is apt to increase the excitement and exhaust the +patient. On account of the extreme restlessness, there is often great +difficulty in carrying out the proper treatment of the primary surgical +condition, and considerable modifications in splints and other +appliances are often rendered necessary. + +A form of delirium, sometimes spoken of as #Traumatic Delirium#, may +follow on severe injuries or operations in persons of neurotic +temperament, or in those whose nervous system is exhausted by overwork. +It is met with apart from alcoholic intemperance. This form of delirium +seems to be specially prone to ensue on operations on the face, the +thyreoid gland, or the genito-urinary organs. The symptoms appear in +from two to five days after the operation, and take the form of +restlessness, sleeplessness, low incoherent muttering, and picking at +the bedclothes. It is not necessarily attended by fever or by muscular +tremors. The patient may show hysterical symptoms. This condition is +probably to be regarded as a form of insanity, as it is liable to merge +into mania or melancholia. + +The _treatment_ is carried out on the same lines as that of delirium +tremens. + + + + +CHAPTER XIV + +THE BLOOD VESSELS + + +Anatomy--INJURIES OF ARTERIES: _Varieties_--INJURIES OF + VEINS: _Air Embolism_--Repair of blood vessels and natural + arrest of haemorrhage--HAEMORRHAGE: _Varieties_; + _Prevention_; _Arrest_--Constitutional effects of + haemorrhage--Haemophilia--DISEASES OF BLOOD VESSELS: + Thrombosis; Embolism--Arteritis: _Varieties_; + Arterio-sclerosis--Thrombo-phlebitis--Phlebitis: + _Varieties_--VARIX--ANGIOMATA--Naevus: _Varieties_; + _Electrolysis_--Cirsoid aneurysm--ANEURYSM: _Varieties_; + _Methods of treatment_--ANEURYSMS OF INDIVIDUAL ARTERIES. + +#Surgical Anatomy.#--An _artery_ has three coats: an internal coat--the +_tunica intima_--made up of a single layer of endothelial cells lining +the lumen; outside of this a layer of delicate connective tissue; and +still farther out a dense tissue composed of longitudinally arranged +elastic fibres--the internal elastic lamina. The tunica intima is easily +ruptured. The middle coat, or _tunica media_, consists of non-striped +muscular fibres, arranged for the most part concentrically round the +vessel. In this coat also there is a considerable proportion of elastic +tissue, especially in the larger vessels. The thickness of the vessel +wall depends chiefly on the development of the muscular coat. The +external coat, or _tunica externa_, is composed of fibrous tissue, +containing, especially in vessels of medium calibre, some yellow elastic +fibres in its deeper layers. + +In most parts of the body the arteries lie in a sheath of connective +tissue, from which fine fibrous processes pass to the tunica externa. +The connection, however, is not a close one, and the artery when divided +transversely is capable of retracting for a considerable distance within +its sheath. In some of the larger arteries the sheath assumes the form +of a definite membrane. + +The arteries are nourished by small vessels--the _vasa vasorum_--which +ramify chiefly in the outer coat. They are also well supplied with +nerves, which regulate the size of the lumen by inducing contraction or +relaxation of the muscular coat. + +The _veins_ are constructed on the same general plan as the arteries, +the individual coats, however, being thinner. The inner coat is less +easily ruptured, and the middle coat contains a smaller proportion of +muscular tissue. In one important point veins differ structurally from +arteries--namely, in being provided with valves which prevent reflux of +the blood. These valves are composed of semilunar folds of the tunica +intima strengthened by an addition of connective tissue. Each valve +usually consists of two semilunar flaps attached to opposite sides of +the vessel wall, each flap having a small sinus on its cardiac side. +The distension of these sinuses with blood closes the valve and +prevents regurgitation. Valves are absent from the superior and inferior +venae cavae, the portal vein and its tributaries, the hepatic, renal, +uterine, and spermatic veins, and from the veins in the lower part of +the rectum. They are ill-developed or absent also in the iliac and +common femoral veins--a fact which has an important bearing on the +production of varix in the veins of the lower extremity. + +The wall of _capillaries_ consists of a single layer of endothelial +cells. + + +HAEMORRHAGE + +Various terms are employed in relation to haemorrhage, according to its +seat, its origin, the time at which it occurs, and other circumstances. + +The term _external haemorrhage_ is employed when the blood escapes on the +surface; when the bleeding takes place into the tissues or into a cavity +it is spoken of as _internal_. The blood may infiltrate the connective +tissue, constituting an _extravasation_ of blood; or it may collect in a +space or cavity and form a _haematoma_. + +The coughing up of blood from the lungs is known as _haemoptysis_; +vomiting of blood from the stomach, as _haematemesis_; the passage of +black-coloured stools due to the presence of blood altered by digestion, +as _melaena_; and the passage of bloody urine, as _haematuria_. + +Haemorrhage is known as arterial, venous, or capillary, according to the +nature of the vessel from which it takes place. + +In _arterial_ haemorrhage the blood is bright red in colour, and escapes +from the cardiac end of the divided vessel in pulsating jets +synchronously with the systole of the heart. In vascular parts--for +example the face--both ends of a divided artery bleed freely. The blood +flowing from an artery may be dark in colour if the respiration is +impeded. When the heart's action is weak and the blood tension low the +flow may appear to be continuous and not in jets. The blood from a +divided artery at the bottom of a deep wound, escapes on the surface in +a steady flow. + +_Venous_ bleeding is not pulsatile, but occurs in a continuous stream, +which, although both ends of the vessel may bleed, is more copious from +the distal end. The blood is dark red under ordinary conditions, but may +be purplish, or even black, if the respiration is interfered with. When +one of the large veins in the neck is wounded, the effects of +respiration produce a rise and fall in the stream which may resemble +arterial pulsation. + +In _capillary_ haemorrhage, red blood escapes from numerous points on the +surface of the wound in a steady ooze. This form of bleeding is serious +in those who are the subjects of haemophilia. + + +INJURIES OF ARTERIES + +The following description of the injuries of arteries refers to the +larger, named trunks. The injuries of smaller, unnamed vessels are +included in the consideration of wounds and contusions. + +#Contusion.#--An artery may be contused by a blow or crush, or by the +oblique impact of a bullet. The bruising of the vessel wall, especially +if it is diseased, may result in the formation of a thrombus which +occludes the lumen temporarily or even permanently, and in rare cases +may lead to gangrene of the limb beyond. + +#Subcutaneous Rupture.#--An artery may be ruptured subcutaneously by a +blow or crush, or by a displaced fragment of bone. This injury has been +produced also during attempts to reduce dislocations, especially those +of old standing at the shoulder. It is most liable to occur when the +vessels are diseased. The rupture may be incomplete or complete. + +_Incomplete Subcutaneous Rupture._--In the majority of cases the rupture +is incomplete--the inner and middle coats being torn, while the outer +remains intact. The middle coat contracts and retracts, and the +internal, because of its elasticity, curls up in the interior of the +vessel, forming a valvular obstruction to the blood-flow. In most cases +this results in the formation of a thrombus which occludes the vessel. +In some cases the blood-pressure gradually distends the injured segment +of the vessel wall and leads to the formation of an aneurysm. + +The pulsation in the vessels beyond the seat of rupture is arrested--for +a time at least--owing to the occlusion of the vessel, and the limb +becomes cold and powerless. The pulsation seldom returns within five or +six weeks of the injury, if indeed it is not permanently arrested, but, +as a rule, a collateral circulation is rapidly established, sufficient +to nourish the parts beyond. If the pulsation returns within a week of +the injury, the presumption is that the occlusion was due to pressure +from without--for example, by haemorrhage into the sheath or the pressure +of a fragment of bone. + +_Complete Subcutaneous Rupture._--When the rupture is complete, all the +coats of the vessel are torn and the blood escapes into the surrounding +tissues. If the original injury is attended with much shock, the +bleeding may not take place until the period of reaction. Rupture of the +popliteal artery in association with fracture of the femur, or of the +axillary or brachial artery with fracture of the humerus or dislocation +of the shoulder, are familiar examples of this injury. + +Like incomplete rupture, this lesion is accompanied by loss of pulsation +and power, and by coldness of the limb beyond; a tense and excessively +painful swelling rapidly appears in the region of the injury, and, where +the cellular tissue is loose, may attain a considerable size. The +pressure of the effused blood occludes the veins and leads to congestion +and oedema of the limb beyond. The interference with the circulation, and +the damage to the tissues, may be so great that gangrene ensues. + +_Treatment._--When an artery has been contused or ruptured, the limb +must be placed in the most favourable condition for restoration of the +circulation. The skin is disinfected and the limb wrapped in cotton wool +to conserve its heat, and elevated to such an extent as to promote the +venous return without at the same time interfering with the inflow of +blood. A careful watch must be kept on the state of nutrition of the +limb, lest gangrene occurs. + +If no complications supervene, the swelling subsides, and recovery may +be complete in six or eight weeks. If the extravasation is great and the +skin threatens to give way, or if the vitality of the limb is seriously +endangered, it is advisable to expose the injured vessel, and, after +clearing away the clots, to attempt to suture the rent in the artery, +or, if torn across, to join the ends after paring the bruised edges. If +this is impracticable, a ligature is applied above and below the +rupture. If gangrene ensues, amputation must be performed. + +These descriptions apply to the larger arteries of the extremities. A +good illustration of subcutaneous rupture of the arteries of the head is +afforded by the tearing of the middle meningeal artery caused by the +application of blunt violence to the skull; and of the arteries of the +trunk--caused by the tearing of the renal artery in rupture of the +kidney. + +#Open Wounds of Arteries--Laceration.#--Laceration of large arteries is +a common complication of machinery and railway accidents. The violence +being usually of a tearing, twisting, or crushing nature, such injuries +are seldom associated with much haemorrhage, as torn or crushed vessels +quickly become occluded by contraction and retraction of their coats and +by the formation of a clot. A whole limb even may be avulsed from the +body with comparatively little loss of blood. The risk in such cases is +secondary haemorrhage resulting from pyogenic infection. + +The _treatment_ is that applicable to all wounds, with, in addition, the +ligation of the lacerated vessels. + +#Punctured wounds# of blood vessels may result from stabs, or they may +be accidentally inflicted in the course of an operation. + +The division of the coats of the vessel being incomplete, the natural +haemostasis that results from curling up of the intima and contraction of +the media, fails to take place, and bleeding goes on into the +surrounding tissues, and externally. If the sheath of the vessel is not +widely damaged, the gradually increasing tension of the extravasated +blood retained within it may ultimately arrest the haemorrhage. A clot +then forms between the lips of the wound in the vessel wall and projects +for a short distance into the lumen, without, however, materially +interfering with the flow through the vessel. The organisation of this +clot results in the healing of the wound in the vessel wall. + +In other cases the blood escapes beyond the sheath and collects in the +surrounding tissues, and a traumatic aneurysm results. Secondary +haemorrhage may occur if the wound becomes infected. + +The _treatment_ consists in enlarging the external wound to permit of +the damaged vessel being ligated above and below the puncture. In some +cases it may be possible to suture the opening in the vessel wall. When +circumstances prevent these measures being taken, the bleeding may be +arrested by making firm pressure over the wound with a pad; but this +procedure is liable to be followed by the formation of an aneurysm. + +_Minute puncture of arteries_ such as frequently occur in the hypodermic +administration of drugs and in the use of exploring needles, are not +attended with any escape of blood, chiefly because of the elastic recoil +of the arterial wall; a tiny thrombus of platelets and thrombus forms at +the point where the intima is punctured. + +#Incised Wounds.#--We here refer only to such incised wounds as partly +divide the vessel wall. + +Longitudinal wounds show little tendency to gape, and are therefore not +attended with much bleeding. They usually heal rapidly, but, like +punctured wounds, are liable to be followed by the formation of an +aneurysm. + +When, however, the incision in the vessel wall is oblique or transverse, +the retraction of the muscular coat causes the opening to gape, with the +result that there is haemorrhage, which, even in comparatively small +arteries, may be so profuse as to prove dangerous. When the associated +wound in the soft parts is valvular the haemorrhage is arrested and an +aneurysm may develop. + +When a large arterial trunk, such as the external iliac, the femoral, +the common carotid, the brachial, or the popliteal, has been partly +divided, for example, in the course of an operation, the opening should +be closed with sutures--_arteriorrhaphy_. The circulation being +controlled by a tourniquet, or the artery itself occluded by a clamp, +fine silk or catgut stitches are passed through the outer and middle +coats after the method of Lembert, a fine, round needle being employed. +The sheath of the vessel or an adjacent fascia should be stitched +over the line of suture in the vessel wall. If infection be excluded, +there is little risk of thrombosis or secondary haemorrhage; and even if +thrombosis should develop at the point of suture, the artery is +obstructed gradually, and the establishment of a collateral circulation +takes place better than after ligation. In the case of smaller trunks, +or when suture is impracticable, the artery should be tied above and +below the opening, and divided between the ligatures. + +#Gunshot Wounds of Blood Vessels.#--In the majority of cases injuries of +large vessels are associated with an external wound; the profusion of +the bleeding indicates the size of the damaged vessel, and the colour of +the blood and the nature of the flow denote whether an artery or a vein +is implicated. + +When an artery is wounded a firm _haematoma_ may form, with an expansile +pulsation and a palpable thrill--whether such a haematoma remains +circumscribed or becomes diffuse depends upon the density or laxity of +the tissues around it. In course of time a _traumatic arterial aneurysm_ +may develop from such a haematoma. + +When an artery and its companion vein are injured simultaneously an +_arterio-venous aneurysm_ (p. 310) may develop. This frequently takes +place without the formation of a haematoma as the arterial blood finds +its way into the vein and so does not escape into the tissues. Even if a +haematoma forms it seldom assumes a great size. In time a swelling is +recognised, with a palpable thrill and a systolic bruit, loudest at the +level of the communication and accompanied by a continuous venous hum. + +If leakage occurs into the tissues, the extravasated blood may occlude +the vein by pressure, and the symptoms of arterial aneurysm replace +those of the arterio-venous form, the systolic bruit persisting, while +the venous hum disappears. + +_Gangrene_ may ensue if the blood supply is seriously interfered with, +or the signs of _ischaemia_ may develop; the muscles lose their +elasticity, become hard and paralysed, and anaesthesia of the "glove" or +"stocking" type, with other alterations of sensation ensue. Apart from +ischaemia, _reflex paralysis_ of motion and sensation of a transient kind +may follow injury of a large vessel. + +_Treatment_ is carried out on the same lines as for similar injuries due +to other causes. + + +INJURIES OF VEINS + +Veins are subject to the same forms of injury as arteries, and the +results are alike in both, such variations as occur being dependent +partly on the difference in their anatomical structure, and partly on +the conditions of the circulation through them. + +#Subcutaneous rupture# of veins occur most frequently in association +with fractures and in the reduction of dislocations. The veins most +commonly ruptured are the popliteal, the axillary, the femoral, and the +subclavian. On account of the smaller amount of elastic and muscular +tissue in the wall of a vein, the contraction and retraction of its +walls are less than in an artery, and so bleeding may continue for a +longer period. On the other hand, owing to the lower blood-pressure the +outflow goes on more slowly, and the gradually increasing pressure +produced by the extravasated blood is usually sufficient to arrest the +haemorrhage before it becomes serious. As an aid in diagnosing the source +of the bleeding, it should be remembered that the rupture of a vein does +not affect the pulsation in the limb beyond. The risks are practically +the same as when an artery is ruptured, excepting that of aneurysm, and +the treatment is carried out on the same lines, but it is seldom +necessary to operate for the purpose of applying a ligature to the +injured vein. + +#Wounds# of veins--punctured and incised--frequently occur in the course +of operations; for example, in the removal of tumours or diseased glands +from the neck, the axilla, or the groin. They are also met with as a +result of accidental stabs and of suicidal or homicidal injuries. The +haemorrhage from a large vein so damaged is usually profuse, but it is +more readily controlled by external pressure than that from an artery. +When a vein is merely punctured, the bleeding may be arrested by +pressure with a pad of gauze, or by a lateral ligature--that is, picking +up the margins of the rent in the wall and securing them with a +ligature without occluding the lumen. In the large veins, such as the +internal jugular, the femoral, or the axillary, it is usually possible +to suture the opening in the wall. This does not necessarily result in +thrombosis in the vessel, or in obliteration of its lumen. + +When an _artery and vein are simultaneously wounded_, the features +peculiar to each are present in greater or less degree. In the limbs +gangrene may ensue, especially if the wound is infected. Punctured and +gun-shot wounds implicating both artery and vein are liable to be +followed by the development of arterio-venous aneurysm. + +#Entrance of Air into Veins--Air Embolism.#--This serious, though +fortunately rare, accident is apt to occur in the course of operations +in the region of the thorax, neck, or axilla, if a large vein is opened +and fails to collapse on account of the rigidity of its walls, its +incorporation in a dense fascia, or from traction being made upon it. If +the wound in a vein is thus held open, the negative pressure during +inspiration sucks air into the right side of the heart. This is +accompanied by a hissing or gurgling sound, and with the next expiration +some frothy blood escapes from the wound. The patient instantly becomes +pale, the pupils dilate, respiration becomes laboured, and although the +heart may continue to beat forcibly, the peripheral pulse is weak, and +may even be imperceptible. On auscultating the heart, a churning sound +may be heard. Death may result in a few minutes; or the heart may slowly +regain its power and recovery take place. + +_Prevention._--In operations in the "dangerous area"--as the region of +the root of the neck is called in this connection--care must be taken +not to cut or divide any vein before it has been secured by forceps, and +to apply ligatures securely and at once. Deep wounds in this region +should be kept filled with normal salt solution. Immediately a cut is +recognised in a vein, a finger should be placed over the vessel on the +cardiac side of the wound, and kept there until the opening is secured. + +_Treatment._--Little can be done after the air has actually entered the +vein beyond endeavouring to maintain the heart's action by hypodermic +injections of ether or strychnin and the application of mustard or hot +cloths over the chest. The head at the same time should be lowered to +prevent syncope. Attempts to withdraw the air by suction, and the +employment of artificial respiration, have proved futile, and are, by +some, considered dangerous. In a desperate case massage of the heart +might be tried. + + +THE NATURAL ARREST OF HAEMORRHAGE AND THE REPAIR OF BLOOD +VESSELS + +#Primary Haemorrhage.#--The term primary haemorrhage is applied to the +bleeding which follows immediately on the wounding of a blood vessel. +The natural process by which such haemorrhage is arrested varies with the +character of the wound in the vessel and may be modified by accidental +circumstances. + +(a) _Repair of completely divided Artery._--When an artery is +_completely_ divided, the circular fibres of the muscular coat contract, +so that the lumen of the cut ends is diminished, and at the same time +each segment retracts within its sheath in virtue of the recoil of the +elastic elements in its walls, the tunica intima curls up in the +interior of the vessel, and the tunica externa collapses over the cut +ends. The blood that escapes from the injured vessel fills the +interstices of the tissues, and, coagulating, forms a clot which +temporarily arrests the bleeding. That part of the clot which lies +between the divided ends of the vessel and in the cellular tissue +outside, is known as the _external clot_, while the portion which +projects into the lumen of the vessel is known as the _internal clot_, +and it usually extends as far as the nearest collateral branch. These +processes constitute what is known as the _temporary arrest of +haemorrhage_, which, it will be observed, is effected by the contraction +and retraction of the divided artery and by clotting. + +The _permanent arrest_ takes place by the transformation of the clot +into scar tissue. The internal clot plays the most important part in the +process; it becomes invaded by leucocytes and proliferating endothelial +and connective-tissue cells, and new blood vessels permeate the mass, +which is thus converted into granulation tissue. This is ultimately +replaced by fibrous tissue, which permanently occludes the end of the +vessel. Concurrently and by the same process the external clot is +converted into scar tissue. + +If a divided artery is _ligated at its cut end_, the tension of the +ligature is usually sufficient to rupture the inner and middle coats, +which curl up within the lumen, the outer coat alone being held in the +grasp of the ligature. An internal clot forms and, becoming organised, +permanently occludes the vessel as above described. The ligature and the +small portion of vessel beyond it are subsequently absorbed. + +In course of time the collateral branches of the vessel above and below +the level of section enlarge and their inter-communication becomes more +free, so that even when large trunks have been divided the vascular +supply of the parts beyond may be completely restored. This is known as +the development of the _collateral circulation_. + +_Imperfect Collateral Circulation._--While the development of the +collateral circulation after the ligation or obstruction from other +cause of a main arterial trunk may be sufficient to prevent gangrene of +the limb, it may be insufficient for its adequate nourishment; it may be +cold, bluish in colour, and there may be necrosis of the skin over bony +points; this is notably the case in the lower extremity after ligation +of the femoral or popliteal artery, when patches of skin may die over +the prominence of the heel, the balls of the toes, the projecting base +of the fifth metatarsal and the external malleolus. + +If, during the period of reaction, the blood-pressure rises + +considerably, the occluding clot at the divided end of the vessel may be +washed away or the ligature displaced, permitting of fresh bleeding +taking place--_reactionary_ or _intermediary haemorrhage_ (p. 272). + +In the event of the wound becoming infected with pyogenic organisms, the +occluding blood-clot or the young fibrous tissue may become +disintegrated in the suppurative process, and the bleeding start +afresh--_secondary haemorrhage_ (p. 273). + +(b) If an artery is only _partly cut across_, the divided fibres of +the tunica muscularis contract and those of the tunica externa retract, +with the result that a more or less circular hole is formed in the wall +of the vessel, from which free bleeding takes place, as the conditions +are unfavourable for the formation of an occluding clot. Even if a clot +does form, when the blood-pressure rises it is readily displaced, +leading to reactionary haemorrhage. Should the wound become infected, +secondary haemorrhage is specially liable to occur. A further risk +attends this form of injury, in that the intra-vascular tension may in +time lead to gradual stretching of the scar tissue which closes the gap +in the vessel wall, with the result that a localised dilatation or +diverticulum forms, constituting a _traumatic aneurysm_. + +(c) When the injury merely takes the form of a _puncture_ or _small +incision_ a blood-clot forms between the edges, becomes organised, and +is converted into cicatricial tissue which seals the aperture. Such +wounds may also be followed by reactionary or secondary haemorrhage, or +later by the formation of a traumatic aneurysm. + +_Conditions which influence the Natural Arrest of Haemorrhage._--The +natural arrest of bleeding is favoured by tearing or crushing of the +vessel walls, owing to the contraction and retraction of the coats and +the tendency of blood to coagulate when in contact with damaged tissue. +Hence the primary haemorrhage following lacerated wounds is seldom +copious. The occurrence of syncope or of profound shock also helps to +stop bleeding by reducing the force of the heart's action. + +On the other hand, there are conditions which retard the natural arrest. +When, for example, a vessel is only partly divided, the contraction and +retraction of the muscular coat, instead of diminishing the calibre of +the artery, causes the wound in the vessel to gape; by completing the +division of the vessel under these circumstances the bleeding can often +be arrested. In certain situations, also, the arteries are so intimately +connected with their sheaths, that when cut across they were unable to +retract and contract--for example, in the scalp, in the penis, and in +bones--and copious bleeding may take place from comparatively small +vessels. This inability of the vessels to contract and retract is met +with also in inflamed and oedematous parts and in scar tissue. Arteries +divided in the substance of a muscle also sometimes bleed unduly. Any +increase in the force of the heart's action, such as may result from +exertion, excitement, or over-stimulation, also interferes with the +natural arrest. Lastly, in bleeders, there are conditions which +interfere with the natural arrest of haemorrhage. + +#Repair of a Vessel ligated in its Continuity.#--When a ligature is +applied to an artery it should be pulled sufficiently tight to occlude +the lumen without causing rupture of its coats. It often happens, +however, that the compression causes rupture of the inner and middle +coats, so that only the outer coat remains in the grasp of the ligature. +While this weakens the wall of the vessel, it has the advantage of +hastening coagulation, by bringing the blood into contact with damaged +tissue. Whether the inner and middle coats are ruptured or not, blood +coagulates both above and below the ligature, the proximal clot being +longer and broader than that on the distal side. In small arteries these +clots extend as far as the nearest collateral branch, but in the larger +trunks their length varies. The permanent occlusion of those portions of +the vessel occupied by clot is brought about by the formation of +granulation tissue, and its replacement by cicatricial tissue, so that +the occluded segment of the vessel is represented by a fibrous cord. In +this process the coagulum only plays a passive role by forming a +scaffolding on which the granulation tissue is built up. The ligature +surrounding the vessel, and the elements of the clot, are ultimately +absorbed. + +#Repair of Veins.#--The process of repair in veins is the same as that +in arteries, but the thrombosed area may become canalised and the +circulation through the vessel be re-established. + + +HAEMORRHAGE IN SURGICAL OPERATIONS + +The management of the haemorrhage which accompanies an operation includes +(a) preventive measures, and (b) the arrest of the bleeding. + +#Prevention of Haemorrhage.#--Whenever possible, haemorrhage should be +controlled by _digital compression_ of the main artery supplying the +limb rather than by a tourniquet. If efficiently applied compression +reduces the immediate loss of blood to a minimum, and the bleeding from +small vessels that follows the removal of the tourniquet is avoided. +Further, the pressure of a tourniquet has been shown to be a material +factor in producing shock. + +In selecting a point at which to apply digital compression, it is +essential that the vessel should be lying over a bone which will furnish +the necessary resistance. The common carotid, for example, is pressed +backward and medially against the transverse process (carotid tubercle) +of the sixth cervical vertebra; the temporal against the temporal +process (zygoma) in front of the ear; and the facial against the +mandible at the anterior edge of the masseter. + +In the upper extremity, the subclavian is pressed against the first rib +by making pressure downwards and backwards in the hollow above the +clavicle; the axillary and brachial by pressing against the shaft of the +humerus. + +In the lower extremity, the femoral is controlled by pressing in a +direction backward and slightly upward against the brim of the pelvis, +midway between the symphysis pubis and the anterior superior iliac +spine. + +The abdominal aorta may be compressed against the bodies of the lumbar +vertebrae opposite the umbilicus, if the spine is arched well forwards +over a pillow or sand-bag, or by the method suggested by Macewen, in +which the patient's spine is arched forwards by allowing the lower +extremities and pelvis to hang over the end of the table, while the +assistant, standing on a stool, applies his closed fist over the +abdominal aorta and compresses it against the vertebral column. +Momburg recommends an elastic cord wound round the body between the +iliac crest and the lower border of the ribs, but this procedure has +caused serious damage to the intestine. + +When digital compression is not available, the most convenient and +certain means of preventing haemorrhage--say in an amputation--is by the +use of some form of _tourniquet_, such as the elastic tube of Esmarch or +of Foulis, or an elastic bandage, or the screw tourniquet of Petit. +Before applying any of these it is advisable to empty the limb of blood. +This is best done after the manner suggested by Lister: the limb is held +vertical for three or four minutes; the veins are thus emptied by +gravitation, and they collapse, and as a physiological result of this +the arteries reflexly contract, so that the quantity of blood entering +the limb is reduced to a minimum. With the limb still elevated the +tourniquet is firmly applied, a part being selected where the vessel can +be pressed directly against a bone, and where there is no risk of +exerting injurious pressure on the nerve-trunks. The tourniquet should +be applied over several layers of gauze or lint to protect the skin, and +the first turn of the tourniquet must be rapidly and tightly applied to +arrest completely the arterial flow, otherwise the veins only are +obstructed and the limb becomes congested. In the lower extremity the +best place to apply a tourniquet is the middle third of the thigh; in +the upper extremity, in the middle of the arm. A tourniquet should never +be applied tighter or left on longer than is absolutely necessary. + +The screw tourniquet of Petit is to be preferred when it is desired to +intermit the flow through the main artery as in operations for aneurysm. + +When a tourniquet cannot conveniently be applied, or when its presence +interferes with the carrying out of the operation--as, for example, in +amputations at the hip or shoulder--the haemorrhage may be controlled by +preliminary ligation of the main artery above the seat of operation--for +instance, the external iliac or the subclavian. For such contingencies +also the steel skewers used by Spence and Wyeth, or a special clamp or +forceps, such as that suggested by Lynn Thomas, may be employed. In the +case of vessels which it is undesirable to occlude permanently, such as +the common carotid, the temporary application of a ligature or clamp is +useful. + +#Arrest of Haemorrhage.#--_Ligature._--This is the best means of securing +the larger vessels. The divided vessel having been caught with forceps +as near to its cut end as possible, a ligature of catgut or silk is tied +round it. When there is difficulty in applying a ligature securely, for +example in a dense tissue like the scalp or periosteum, or in a friable +tissue like the thyreoid gland or the mesentery, a stitch should be +passed so as to surround the bleeding vessel a short distance from its +end, in this way ensuring a better hold and preventing the ligature from +slipping. + +If the haemorrhage is from a partly divided vessel, this should be +completely cut across to enable its walls to contract and retract, and +to facilitate the application of forceps and ligatures. + +_Torsion._--This method is seldom employed except for comparatively +small vessels, but it is applicable to even the largest arteries. In +employing torsion, the end of the vessel is caught with forceps, and the +terminal portion twisted round several times. The object is to tear the +inner and middle coats so that they curl up inside the lumen, while the +outer fibrous coat is twisted into a cord which occludes the end of the +vessel. + +_Forci-pressure._--Bleeding from the smallest arteries and from +arterioles can usually be arrested by firmly squeezing them for a few +minutes with artery forceps. It is usually found that on the removal of +the forceps at the end of an operation no further haemorrhage takes +place. By the use of specially strong clamps, such as the angiotribes of +Doyen, large trunks may be occluded by pressure. + +_Cautery._--The actual cautery or Paquelin's thermo-cautery is seldom +employed to arrest haemorrhage, but is frequently useful in preventing +it, as, for example, in the removal of piles, or in opening the bowel in +colostomy. It is used at a dull-red heat, which sears the divided ends +of the vessel and so occludes the lumen. A bright-red or a white heat +cuts the vessel across without occluding it. The separation of the +slough produced by the charring of the tissues is sometimes attended +with secondary bleeding. + +_Haemostatics_ or _Styptics_.--The local application of haemostatics is +seldom to be recommended. In the treatment of epistaxis or bleeding from +the nose, of haemorrhage from the socket of a tooth, and sometimes from +ulcerating or granulating surfaces, however, they may be useful. All +clots must be removed and the drug applied directly to the bleeding +surface. Adrenalin and turpentine are the most useful drugs for this +purpose. + +Haemorrhage from bone, for example the skull, may be arrested by means of +Horsley's aseptic plastic wax. To stop persistent oozing from soft +tissues, Horsley successfully applied a portion of living vascular +tissue, such as a fragment of muscle, which readily adheres to the +oozing surface and yields elements that cause coagulation of the blood +by thrombo-kinetic processes. When examined after two or three days the +muscle has been found to be closely adherent and undergoing +organisation. + +#Arrest of Accidental Haemorrhage.#--The most efficient means of +temporarily controlling haemorrhage is by pressure applied with the +finger, or with a pad of gauze, directly over the bleeding point. While +this is maintained an assistant makes digital pressure, or applies a +tourniquet, over the main vessel of the limb on the proximal side of the +bleeding point. A useful _emergency tourniquet_ may be improvised by +folding a large handkerchief _en cravatte_, with a cork or piece of wood +in the fold to act as a pad. The handkerchief is applied round the +limb, with the pad over the main artery, and the ends knotted on the +lateral aspect of the limb. With a strong piece of wood the handkerchief +is wound up like a Spanish windlass, until sufficient pressure is +exerted to arrest the bleeding. + +When haemorrhage is taking place from a number of small vessels, its +arrest may be effected by elevation of the bleeding part, particularly +if it is a limb. By this means the force of the circulation is +diminished and the formation of coagula favoured. Similarly, in wounds +of the hand or forearm, or of the foot or leg, bleeding may be arrested +by placing a pad in the flexure and acutely flexing the limb at the +elbow or knee respectively. + +#Reactionary Haemorrhage.#--Reactionary or intermediary haemorrhage +is really a recurrence of primary bleeding. As the name indicates, it +occurs during the period of reaction--that is, within the first twelve +hours after an operation or injury. It may be due to the increase in the +blood-pressure that accompanies reaction displacing clots which have +formed in the vessels, or causing vessels to bleed which did not bleed +during the operation; to the slipping of a ligature; or to the giving +way of a grossly damaged portion of the vessel wall. In the scrotum, the +relaxation of the dartos during the first few hours after operation +occasionally leads to reactionary haemorrhage. + +As a rule, reactionary haemorrhage takes place from small vessels as a +result of the displacement of occluding clots, and in many cases the +haemorrhage stops when the bandages and soaked dressings are removed. If +not, it is usually sufficient to remove the clots and apply firm +pressure, and in the case of a limb to elevate it. Should the haemorrhage +recur, the wound must be reopened, and ligatures applied to the bleeding +vessels. Douching the wound with hot sterilised water (about 110 o F.), +and plugging it tightly with gauze, are often successful in arresting +capillary oozing. When the bleeding is more copious, it is usually due +to a ligature having slipped from a large vessel such as the external +jugular vein after operations in the neck, and the wound must be opened +up and the vessel again secured. The internal administration of heroin +or morphin, by keeping the patient quiet, may prove useful in preventing +the recurrence of haemorrhage. + +#Secondary Haemorrhage.#--The term secondary haemorrhage refers to +bleeding that is delayed in its onset and is due to pyogenic infection +of the tissues around an artery. The septic process causes softening and +erosion of the wall of the artery so that it gives way under the +pressure of the contained blood. The leakage may occur in drops, or as a +rush of blood, according to the extent of the erosion, the size of the +artery concerned, and the relations of the erosion to the surrounding +tissues. When met with as a complication of a wound there is an +interval--usually a week to ten days--between the receipt of the wound +and the first haemorrhage, this time being required for the extension of +the septic process to the wall of the artery and the consequent erosion +of its coats. When secondary haemorrhage occurs apart from a wound, there +is a similar septic process attacking the wall of the artery from the +outside; for example in sloughing sore-throat, the separation of a +slough may implicate the wall of an artery and be followed by serious +and it may be fatal haemorrhage. The mechanical pressure of a fragment of +bone or of a rubber drainage tube upon the vessel may aid the septic +process in causing erosion of the artery. In pre-Listerian days, the +silk ligature around the artery likewise favoured the changes that lead +to secondary haemorrhage, and the interesting observation was often made, +that when the collateral circulation was well established, the leakage +occurred on the _distal_ side of the ligature. While it may happen that +the initial haemorrhage is rapidly fatal, as for example when the +external carotid or one of its branches suddenly gives way, it is quite +common to have one, two or more _warning haemorrhages_ before the leakage +on a large scale, which is rapidly fatal. + +The _appearances of the wound_ in cases complicated by secondary +haemorrhage are only characteristic in so far that while obviously +infected, there is an absence of all reaction; instead of frankly +suppurating, there is little or no discharge and the surrounding +cellular tissue and the limb beyond are oedematous and pit on pressure. + +The _general symptoms_ of septic poisoning in cases of secondary +haemorrhage vary widely in severity: they may be so slight that the +general health is scarcely affected and the convalescence from an +operation, for example, may be apparently normal except that the wound +does not heal satisfactorily. For example, a patient may be recovering +from an operation such as the removal of an epithelioma of the mouth, +pharynx or larynx and the associated lymph glands in the neck, and be +able to be up and going about his room, when, suddenly, without warning +and without obvious cause, a rush of blood occurs from the mouth or the +incompletely healed wound in the neck, causing death within a few +minutes. + +On the other hand, the toxaemia may be of a profound type associated with +marked pallor and progressive failure of strength, which, of itself, +even when the danger from haemorrhage has been overcome, may have a fatal +termination. The _prognosis_ therefore in cases of secondary haemorrhage +can never be other than uncertain and unfavourable; the danger from loss +of blood _per se_ is less when the artery concerned is amenable to +control by surgical measures. + +_Treatment._--The treatment of secondary haemorrhage includes the use of +local measures to arrest the bleeding, the employment of general +measures to counteract the accompanying toxaemia, and when the loss of +blood has been considerable, the treatment of the bloodless state. + +_Local Measures to arrest the Haemorrhage._--The occurrence of even +slight haemorrhages from a septic wound in the vicinity of a large blood +vessel is to be taken seriously; it is usually necessary to _open up the +wound_, clear out the clots and infected tissues with a sharp spoon, +disinfect the walls of the cavity with eusol or hydrogen peroxide, and +_pack_ it carefully but not too tightly with gauze impregnated with some +antiseptic, such as "bipp," so that, if the bleeding does not recur, it +may be left undisturbed for several days. The packing should if possible +be brought into actual contact with the leaking point in the vessel, and +so arranged as to make pressure on the artery above the erosion. The +dressings and bandage are then applied, with the limb in the attitude +that will diminish the force of the stream through the main artery, for +example, flexion at the elbow in haemorrhage from the deep palmar arch. +Other measures for combating the local sepsis, such as the irrigation +method of Carrel, may be considered. + +If the wound involves one of the extremities, it may be useful; and it +imparts confidence to the nurse, and, it may be, to the patient, if a +Petit's tourniquet is loosely applied above the wound, which the nurse +is instructed to tighten up in the event of bleeding taking place. + +_Ligation of the Artery._--If the haemorrhage recurs in spite of packing +the wound, or if it is serious from the outset and likely to be critical +if repeated, ligation of the artery itself or of the trunk from which it +springs, at a selected spot higher up, should be considered. This is +most often indicated in wounds of the extremities. + +As examples of proximal ligation for secondary haemorrhage may be cited +ligation of the hypogastric artery for haemorrhage in the buttock, of the +common iliac for haemorrhage in the thigh, of the brachial in the upper +arm for haemorrhage from the deep palmar arch, and of the posterior +tibial behind the medial malleolus for haemorrhage from the sole of the +foot. + +_Amputation_ is the last resource, and should be decided upon if the +haemorrhage recurs after proximal ligation, or if this has been followed +by gangrene of the limb; it should also be considered if the nature of +the wound and the virulence of the sepsis would of themselves justify +removal of the limb. Every surgeon can recall cases in which a timely +amputation has been the means of saving life. + +The _counteraction of the toxaemia_ and the _treatment of the bloodless +state_, are carried out on the usual lines. + +#Haemorrhage of Toxic Origin.#--Mention must also be made of haemorrhages +which depend upon infective or toxic conditions and in which no gross +lesion of the vessels can be discovered. The bleeding occurs as an +oozing, which may be comparatively slight and unimportant, or by its +persistence may become serious. It takes place into the superficial +layers of the skin, from mucous membranes, and into the substance of +such organs as the pancreas. Haemorrhage from the stomach and intestine, +attended with a brown or black discoloration of the vomit and of the +stools, is one of the best known examples: it is not uncommonly met with +in infective conditions originating in the appendix, intestine, +gall-bladder, and other abdominal organs. Haemorrhage from the mucous +membrane of the stomach after abdominal operations--apparently also due +to toxic causes and not to the operation--gives rise to the so-called +_post-operative haematemesis_. + +#Constitutional Effects of Haemorrhage.#--The severity of the symptoms +resulting from haemorrhage depends as much on the rapidity with which the +bleeding takes place as on the amount of blood lost. The sudden loss of +a large quantity, whether from an open wound or into a serous +cavity--for example, after rupture of the liver or spleen--is attended +with marked pallor of the surface of the body and coldness of the skin, +especially of the face, feet, and hands. The skin is moist with a cold, +clammy sweat, and beads of perspiration stand out on the forehead. The +pulse becomes feeble, soft, and rapid, and the patient is dull and +listless, and complains of extreme thirst. The temperature is usually +sub-normal; and the respiration rapid, shallow, and sighing in +character. Abnormal visual sensations, in the form of flashes of light +or spots before the eyes; and rushing, buzzing, or ringing sounds in the +ears, are often complained of. + +In extreme cases, phenomena which have been aptly described as those of +"air-hunger" ensue. On account of the small quantity of blood +circulating through the body, and the diminished haemoglobin content of +the blood, the tissues are imperfectly oxygenated, and the patient +becomes extremely restless, gasping for breath, constantly throwing +about his arms and baring his chest in the vain attempt to breath more +freely. Faintness and giddiness are marked features. The diminished +supply of oxygen to the brain and to the muscles produces muscular +twitchings, and sometimes convulsions. Finally the pupils dilate, the +sphincters relax, and death ensues. + +Young children stand the loss of blood badly, but they quickly recover, +as the regeneration of blood takes place rapidly. In old people also, +and especially when they are fat, the loss of blood is badly borne, and +the ill effects last longer. Women, on the whole, stand loss of blood +better than men, and in them the blood is more rapidly re-formed. A few +hours after a severe haemorrhage there is usually a leucocytosis of from +15,000 to 30,000. + +#Treatment of the Bloodless State.#--The patient should be placed in a +warm, well-ventilated room, and the foot of the bed elevated. Cardiac +stimulants, such as strychnin or alcohol, must be judiciously +administered, over-stimulation being avoided. The inhalation of oxygen +has been found useful in relieving the urgent symptoms of dyspnoea. + +The blood may be emptied from the limbs into the vessels of the trunk, +where it is more needed, by holding them vertically in the air for a few +minutes, and then applying a firm elastic bandage over a layer of cotton +wool, from the periphery towards the trunk. + +_Introduction of Fluids into the Circulation._--The most valuable +measure for maintaining the circulation, however, is by transfusion of +blood (_Op. Surg._, p. 37). If this is not immediately available the +introduction of from one to three pints of physiological salt +solution (a teaspoonful of common salt to a pint of water) into a vein, +or a 6 per cent. solution of gum acacia, is a useful expedient. The +solution is sterilised by boiling, and cooled to a temperature of about +105 o F. The addition of 5 to 10 minims of adrenalin solution (1 in 1000) +is advantageous in raising the blood-pressure (_Op. Surg._, p. 565). + +When the intra-venous method is not available, one or two pints of +saline solution with adrenalin should be slowly introduced into the +rectum, by means of a long rubber tube and a filler. Satisfactory, +although less rapidly obtained results follow the introduction of saline +solution into the cellular tissue--for example, under the mamma, into +the axilla, or under the skin of the back. + +If the patient can retain fluids taken by the mouth--such as hot coffee, +barley water, or soda water--these should be freely given, unless the +injury necessitates operative treatment under a general anaesthetic. + +Transfusion of blood is most valuable as _a preliminary to operation_ in +patients who are bloodless as a result of haemorrhage from gastric and +duodenal ulcers, and in bleeders. + + +HAEMOPHILIA + +The term haemophilia is applied to an inherited disease which renders the +patient liable to serious haemorrhage from even the most trivial +injuries; and the subjects of it are popularly known as "bleeders." + +The cause of the disease and its true nature are as yet unknown. There +is no proof of any structural defect in the blood vessels, and beyond +the fact that there is a diminution in the number of blood-plates, it +has not been demonstrated that there is any alteration in the +composition of the blood. + +The affection is in a marked degree hereditary, all the branches of an +affected family being liable to suffer. Its mode of transmission to +individuals, moreover, is characteristic: the male members of the stock +alone suffer from the affection in its typical form, while the tendency +is transmitted through the female line. Thus the daughters of a father +who is a bleeder, whilst they do not themselves suffer from the disease, +transmit the tendency to their male offspring. The sons, on the other +hand, neither suffer themselves nor transmit the disease to their +children (Fig. 64). The female members of a haemophilic stock are often +very prolific, and there is usually a predominance of daughters in their +families. + + +FIG 64.--Genealogical Tree of a Haemophilic Family. + +Great-Great-Grandmother Great-Great-Grandfather +Mrs D. (Lancashire) F M (History not known + .| | as to bleeding) + .| | + .+----------+-------+ + ............| + .| + ....| + .+---------+--------+ + Great-Grandmother .| | | + (Married three .F MB MB + times) .| + .| + .| + By First Husband .| By Second By Third + ..............| Husband Husband + +-----------+------------+----------+-------+-------+-----------+------+ + | .| | | +-------+-----------+------+ + M .F F F | | +------+ + | .| | | MB F Died in No +Died Grandmother | | | Childbed Family + aet. .| | +-----------+ +----+--- + 70 .| +------+ |had family | | + .| | | |but history| | + .| MB MB |not known | MB + .| + .| + .|............................. ++-----+----------+------------+------------+------------+-------------+ +| | | | |. | | +| | | | |. | | +M M M MB F. F F + | |. | | + | Mother +--+--+---+--+--+ | + +----+ |. | | | | | | | + | | |. M M MB F F F | + M F |. | + Not Married |. +---+---+---+---+ + |. | | | | | + |. MB M MB M M + .............|. + +-----+-----+-----+-----+-----+ + | .| .| | | | + | .|* .|* | | | + M MB MB F F F + + +F = Females. M = Males (not bleeders). MB = Males (bleeders) + + ** the patients observed by the authors. The dotted line shows the + transmission of the disease to our patients through four + generations. + + +The disease is met with in boys who are otherwise healthy, and usually +manifests itself during the first few years of life. In rare instances +profuse haemorrhage takes place when the umbilical cord separates. As a +rule the first evidence is the occurrence of long-continued and +uncontrollable bleeding from a comparatively slight injury, such as the +scratch of a pin, the extraction of a tooth, or after the operation of +circumcision. The blood oozes slowly from the capillaries; at first it +appears normal, but after flowing for some days, or it may be weeks, it +becomes pale, thin, and watery, and shows less and less tendency to +coagulate. + +Female members of haemophilia families sometimes show a tendency to +excessive haemorrhage, but they seldom manifest the characteristic +features met with in the male members. + +Sometimes the haemorrhage takes place apparently spontaneously from the +gums, the nasal or the intestinal mucous membrane. In other cases the +bleeding occurs into the cellular tissue under the skin or mucous +membrane, producing large areas of ecchymosis and discoloration. One of +the commonest manifestations of the disease is the occurrence of +haemorrhage into the cavities of the large joints, especially the knee, +elbow, or hip. The patient suffers repeatedly from such haemorrhages, the +determining injury being often so slight as to have passed unobserved. + +There is evidence that the tendency to bleed is greater at certain times +than at others--in some cases showing almost a cyclical +character--although nothing is known as to the cause of the variation. + +After a severe haemorrhage into the cellular tissue or into a joint, the +patient becomes pale and anaemic, the temperature may rise to 102 o or +103 o F., the pulse become small and rapid, and haemic murmurs are +sometimes developed over the heart and large arteries. The swelling is +tense, fluctuating, and hot, and there is considerable pain and +tenderness. + +In exceptional cases, blisters form over the seat of the effusion, or +the skin may even slough, and the clinical features may therefore come +to simulate closely those of an acute suppurative condition. When the +skin sloughs, an ulcer is formed with altered blood-clot in its floor +like that seen in scurvy, and there is a remarkable absence of any +attempt at healing. + +The acute symptoms gradually subside, and the blood is slowly absorbed, +the discoloration of the skin passing through the same series of changes +as occur after an ordinary bruise. The patients seldom manifest the +symptoms of the bloodless state, and the blood is rapidly regenerated. + +The _diagnosis_ is easy if the patient or his friends are aware of the +family tendency to haemorrhage and inform the doctor of it, but they are +often sensitive and reticent regarding the fact, and it may only be +elicited after close investigation. From the history it is usually easy +to exclude scurvy and purpura. Repeated haemorrhages into a joint may +result in appearances which closely simulate those of tuberculous +disease. Recent haemorrhages into the cellular tissue often present +clinical features closely resembling those of acute cellulitis or +osteomyelitis. A careful examination, however, may reveal ecchymoses on +other parts of the body which give a clue to the nature of the +condition, and may prevent the disastrous consequences that may follow +incision. + +These patients usually succumb sooner or later to haemorrhage, although +they often survive several severe attacks. After middle life the +tendency to bleed appears to diminish. + +_Treatment._--As a rule the ordinary means of arresting haemorrhage are +of little avail. From among the numerous means suggested, the following +may be mentioned: The application to the bleeding point of gauze soaked +in a 1 in 1000 solution of adrenalin; prolonged inhalation of oxygen; +freezing the part with a spray of ethyl-chloride; one or more +subcutaneous injections of gelatin--5 ounces of a 2 1/2 per cent. +solution of white gelatin in normal salt solution being injected at a +temperature of about 100 o F.; the injection of pituitary extract. The +application of a pad of gauze soaked in the blood of a normal person +sometimes arrests the bleeding. + +To prevent bleeding in haemophilics, intra-venous or subcutaneous +injections of fresh blood serum, taken from the human subject, the +sheep, the dog, or the horse, have proved useful. If fresh serum is not +available, anti-diphtheritic or anti-tetanic serum or trade +preparations, such as hemoplastin, may be employed. We have removed the +appendix and amputated through the thigh in haemophilic subjects without +excessive loss of blood after a course of fresh sheep's serum given by +the mouth over a period of several weeks. + +The chloride and lactate of calcium, and extract of thymus gland have +been employed to increase the coagulability of the blood. The patient +should drink large quantities of milk, which also increases the +coagulability of the blood. Monro has observed remarkable results from +the hypodermic injection of emetin hydrochloride in 1/2-grain doses. + + +THROMBOSIS AND EMBOLISM + +The processes known as thrombosis and embolism are so intimately +associated with the diseases of blood vessels that it is convenient to +define these terms in the first instance. + +#Thrombosis.#--The term _thrombus_ is applied to a clot of blood formed +in the interior of the heart or of a blood vessel, and the process by +which such a clot forms is known as _thrombosis_. It would appear that +slowing or stagnation of the blood-stream, and interference with the +integrity of the lining membrane of the vessel wall, are the most +important factors determining the formation of the clot. Alterations in +the blood itself, such as occur, for example, in certain toxaemias, also +favour coagulation. When the thrombus is formed slowly, it consists of +white blood cells with a small proportion of fibrin, and, being +deposited in successive layers, has a distinctly laminated appearance on +section. It is known as a _white thrombus_ or laminated clot, and is +often met with in the sac of an aneurysm (Fig. 72). When rapidly formed +in a vessel in which the blood is almost stagnant--as, for example, in a +pouched varicose vein--the blood coagulates _en masse_, and the clot +consists of all the elements of the blood, constituting a _red thrombus_ +(Fig. 66). Sometimes the thrombus is _mixed_--a red thrombus being +deposited on a white one, it may be in alternate layers. + +When aseptic, a thrombus may become detached and be carried off in the +blood-stream as an embolus; it may become organised; or it may +degenerate and undergo calcification. Occasionally a small thrombus +situated behind a valve in a varicose vein or in the terminal end of a +dilated vein--for example in a pile--undergoes calcification, and is +then spoken of as a _phlebolith_; it gives a shadow with the X-rays. + +When infected with pyogenic bacteria, the thrombus becomes converted +into pus and a localised abscess forms; or portions of the thrombus may +be carried as emboli in the circulation to distant parts, where they +give rise to secondary foci of suppuration--pyaemic abscesses. + +#Embolism.#--The term _embolus_ is applied to any body carried along in +the circulation and ultimately becoming impacted in a blood vessel. This +occurrence is known as _embolism_. The commonest forms of embolus are +portions of thrombi or of fibrinous formations on the valves of the +heart, the latter being usually infected with micro-organisms. + +Embolism plays an important part in determining one form of gangrene, as +has already been described. Infective emboli are the direct cause of the +secondary abscesses that occur in pyaemia; and they are sometimes +responsible for the formation of aneurysm. + +Portions of malignant tumours also may form emboli, and their impaction +in the vessels may lead to the development of secondary growths in +distant parts of the body. + +Fat and air embolism have already been referred to. + + +ARTERITIS + +_Pyogenic._--Non-suppurative inflammation of the coats of an artery may +so soften the wall of the vessel as to lead to aneurysmal dilatation. It +is not uncommon in children, and explains the occurrence of aneurysm in +young subjects. + +When suppuration occurs, the vessel wall becomes disintegrated and gives +way, leading to secondary haemorrhage. If the vessel ruptures into an +abscess cavity, dangerous bleeding may occur when the abscess bursts or +is opened. + +_Syphilitic._--The inflammation associated with syphilis results in +thickening of the tunica intima, whereby the lumen of the vessel becomes +narrowed, or even obliterated--_endarteritis obliterans_. The middle +coat usually escapes, but the tunica externa is generally thickened. +These changes cause serious interference with the nutrition of the parts +supplied by the affected arteries. In large trunks, by diminishing the +elasticity of the vessel wall, they are liable to lead to the formation +of aneurysm. + +Changes in the arterial walls closely resembling those of syphilitic +arteritis are sometimes met with in _tuberculous_ lesions. + +#Arterio-sclerosis# or #Chronic Arteritis#.--These terms are applied to +certain changes which result in narrowing of the lumen and loss of +elasticity in the arteries. The condition may affect the whole vascular +system or may be confined to particular areas. In the smaller arteries +there is more or less uniform thickening of the tunica intima from +proliferation of the endothelium and increase in the connective tissue +in the elastic lamina--a form of obliterative endarteritis. The +narrowing of the vessels may be sufficient to determine gangrene in the +extremities. In course of time, particularly in the larger arteries, +this new tissue undergoes degeneration, at first of a fatty nature, but +progressing in the direction of calcification, and this is followed by +the deposit of lime salts in the young connective tissue and the +formation of calcareous plates or rings over a considerable area of the +vessel wall. To this stage in the process the term _atheroma_ is +applied. The endothelium over these plates often disappears, leaving +them exposed to the blood-stream. + +Changes of a similar kind sometimes occur in the middle coat, the lime +salts being deposited among the muscle fibres in concentric rings. + +The primary cause of arterio-sclerosis is not definitely known, but its +almost constant occurrence, to a greater or less degree, in the aged +suggests that it is of the nature of a senile degeneration. It is +favoured by anything which throws excessive strain on the vessel walls, +such as heavy muscular work; by chronic alcoholism and syphilis; or by +such general diseases as tend to raise the blood-pressure--for example, +chronic Bright's disease or gout. It occurs with greater frequency and +with greater severity in men than in women. + +Atheromatous degeneration is most common in the large arterial trunks, +and the changes are most marked at the arch of the aorta, opposite the +flexures of joints, at the mouths of large branches, and at parts where +the vessel lies in contact with bone. The presence of diseased patches +in the wall of an artery diminishes its elasticity and favours +aneurysmal dilatation. Such a vessel also is liable to be ruptured by +external violence and so give rise to traumatic aneurysm. Thrombosis is +liable to occur when calcareous plates are exposed in the lumen of the +vessel by destruction of the endothelium, and this predisposes to +embolism. Arterio-sclerosis also interferes with the natural arrest of +haemorrhage, and by rendering the vessels brittle, makes it difficult to +secure them by ligature. In advanced cases the accessible arteries--such +as the radial, the temporal or the femoral--may be felt as firm, +tortuous cords, which are sometimes so hard that they have been aptly +compared to "pipe-stems." The pulse is smaller and less compressible +than normal, and the vessel moves bodily with each pulsation. It must be +borne in mind, however, that the condition of the radial artery may fail +to afford a clue to that of the larger arteries. Calcified arteries are +readily identified in skiagrams (Fig. 65). + +[Illustration: FIG. 65.--Radiogram showing Calcareous Degeneration +(Atheroma) of Arteries.] + +We have met with a chronic form of arterial degeneration in elderly +women, affecting especially the great vessels at the root of the neck, +in which the artery is remarkably attenuated and dilated, and so friable +that the wall readily tears when seized with an artery-forceps, +rendering ligation of the vessel in the ordinary way well-nigh +impossible. Matas suggests infolding the wall of the vessel with +interrupted sutures that do not pierce the intima, and wrapping it +round with a strip of peritoneum or omentum. + +The most serious form of arterial _thrombosis_ is that met with _in the +abdominal aorta_, which is attended with violent pains in the lower +limbs, rapidly followed by paralysis and arrest of the circulation. + + +THROMBO-PHLEBITIS AND THROMBOSIS IN VEINS + +#Thrombosis# is more common in veins than in arteries, because slowing +of the blood-stream and irritation of the endothelium of the vessel wall +are, owing to the conditions of the venous circulation, more readily +induced in veins. + +Venous thrombosis may occur from purely mechanical causes--as, for +example, when the wall of a vein is incised, or the vessel included in a +ligature, or when it is bruised or crushed by a fragment of a broken +bone or by a bandage too tightly applied. Under these conditions +thrombosis is essentially a reparative process, and has already been +considered in relation to the repair of blood vessels. + +In other cases thrombosis is associated with certain constitutional +diseases--gout, for example; the endothelium of the veins undergoing +changes--possibly the result of irritation by abnormal constituents in +the blood--which favour the formation of thrombi. + +Under these various conditions the formation of a thrombus is not +necessarily associated with the action of bacteria, although in any +of them this additional factor may be present. + +The most common cause of venous thrombosis, however, is inflammation of +the wall of the vein--phlebitis. + +#Phlebitis.#--Various forms of phlebitis are met with, but for practical +purposes they may be divided into two groups--one in which there is a +tendency to the formation of a thrombus; the other in which the +infective element predominates. + +In surgical patients, the _thrombotic form_ is almost invariably met +with in the lower extremity, and usually occurs in those who are +debilitated and anaemic, and who are confined to bed for prolonged +periods--for example, during the treatment of fractures of the leg or +pelvis, or after such operations as herniotomy, prostatectomy, or +appendectomy. + +_Clinical Features._--The most typical example of this form of phlebitis +is that so frequently met with in the great saphena vein, especially +when it is varicose. The onset of the attack is indicated by a sudden +pain in the lower limb--sometimes below, sometimes above the knee. This +initial pain may be associated with shivering or even with a rigor, and +the temperature usually rises one or two degrees. There is swelling and +tenderness along the line of the affected vein, and the skin over it is +a dull-red or purple colour. The swollen vein may be felt as a firm +cord, with bead-like enlargements in the position of the valves. The +patient experiences a feeling of stiffness and tightness throughout the +limb. There is often oedema of the leg and foot, especially when the limb +is in the dependent position. The acute symptoms pass off in a few days, +but the swelling and tenderness of the vein and the oedema of the limb +may last for many weeks. + +When the deep veins--iliac, femoral, popliteal--are involved, there is +great swelling of the whole limb, which is of a firm almost "wooden" +consistence, and of a pale-white colour; the oedema may be so great that +it is impossible to feel the affected vein until the swelling has +subsided. This is most often seen in puerperal women, and is known as +_phlegmasia alba dolens_. + +_Treatment._--The patient must be placed at absolute rest, with the foot +of the bed raised on blocks 10 or 12 inches high, and the limb +immobilised by sand-bags or splints. It is necessary to avoid handling +the parts, lest the clot be displaced and embolism occur. To avoid +frequent movement of the limb, the necessary dressings should be kept in +position by means of a many-tailed rather than a roller bandage. + +To relieve the pain, warm fomentations or lead and opium lotion should +be applied. Later, ichthyol-glycerin, or glycerin and belladonna, may be +substituted. + +When, at the end of three weeks, the danger of embolism is past, +douching and gentle massage may be employed to disperse the oedema; and +when the patient gets up he should wear a supporting elastic bandage. + +The _infective_ form usually begins as a peri-phlebitis arising in +connection with some focus of infection in the adjacent tissues. The +elements of the vessel wall are destroyed by suppuration, and the +thrombus in its lumen becomes infected with pyogenic bacteria and +undergoes softening. + +_Occlusion of the inferior vena cava_ as a result of infective +thrombosis is a well-known condition, the thrombosis extending into the +main trunk from some of its tributaries, either from the femoral or +iliac veins below or from the hepatic veins above. + +Portions of the softened thrombus are liable to become detached and to +enter the circulating blood, in which they are carried as emboli. These +may lodge in distant parts, and give rise to secondary foci of +suppuration--pyaemic abscesses. + +_Clinical Features._--Infective phlebitis is most frequently met with in +the transverse sinus as a sequel to chronic suppuration in the mastoid +antrum and middle ear. It also occurs in relation to the peripheral +veins, but in these it can seldom be recognised as a separate entity, +being merged in the general infective process from which it takes +origin. Its occurrence may be inferred, if in the course of a +suppurative lesion there is a sudden rise of temperature, with pain, +redness, and swelling along the line of a venous trunk, and a rapidly +developed oedema of the limb, with pitting of the skin on pressure. In +rare cases a localised abscess forms in the vein and points towards the +surface. + +_Treatment._--Attention must be directed towards the condition with +which the phlebitis is associated. Ligation of the vein on the cardiac +side of the thrombus with a view to preventing embolism is seldom +feasible in the peripheral veins, although, as will be pointed out +later, the jugular vein is ligated with this object in cases of +phlebitis of the transverse sinus. + + +VARIX--VARICOSE VEINS + +The term varix is applied to a condition in which veins are so altered +in structure that they remain permanently dilated, and are at the same +time lengthened and tortuous. Two types are met with: one in which +dilatation of a large superficial vein and its tributaries is the most +obvious feature; the other, in which bunches of distended and tortuous +vessels develop at one or more points in the course of a vein, a +condition to which Virchow applied the term _angioma racemosum venosum_. +The two types may occur in combination. + +Any vein in the body may become varicose, but the condition is rare +except in the veins of the lower extremity, in the veins of the +spermatic cord (varicocele), and in the veins of the anal canal +(haemorrhoids). + +We are here concerned with varix as it occurs in the veins of the lower +extremity. + +_Etiology._--Considerable difference of opinion exists as to the +essential cause of varix. The weight of evidence is in favour of the +view that, when dilatation is the predominant element, it results from a +congenital deficiency in the number, size, and strength of the valves of +the affected veins, and in an inherent weakness in the vessel walls. +The _angioma racemosum venosum_ is probably also due to a congenital +alteration in the structure of the vessels, and is allied to tumours of +blood vessels. The view that varix is congenital in origin, as was first +suggested by Virchow, is supported by the fact that in a large +proportion of cases the condition is hereditary; not only may several +members of the same family in succeeding generations suffer from varix, +but it is often found that the same vein, or segment of a vein, is +involved in all of them. The frequent occurrence of varix in youth is +also an indication of its congenital origin. + +In the majority of cases it is only when some exciting factor comes into +operation that the clinical phenomena associated with varix appear. The +most common exciting cause is increased pressure within the veins, and +this may be produced in a variety of ways. In certain diseases of the +heart, lungs, and liver, for example, the venous pressure may be so +raised as to cause a localised dilatation of such veins as are +congenitally weak. The direct pressure of a tumour, or of the gravid +uterus on the large venous trunks in the pelvis, may so obstruct the +flow as to distend the veins of the lower extremity. It is a common +experience in women that the signs of varix date from an antecedent +pregnancy. The importance of the wearing of tight garters as a factor in +the production of varicose veins has been exaggerated, although it must +be admitted that this practice is calculated to aggravate the condition +when it is once established. It has been proved experimentally that the +backward pressure in the veins may be greatly increased by straining, a +fact which helps to explain the frequency with which varicosity occurs +in the lower limbs of athletes and of those whose occupation involves +repeated and violent muscular efforts. There is reason to believe, +moreover, that a sudden strain may, by rupturing the valves and so +rendering them incompetent, induce varicosity independently of any +congenital defect. Prolonged standing or walking, by allowing gravity to +act on the column of blood in the veins of the lower limbs, is also an +important determining factor in the production of varix. + +Thrombosis of the deep veins--in the leg, for example--may induce marked +dilatation of the superficial veins, by throwing an increased amount of +work upon them. This is to be looked upon rather as a compensatory +hypertrophy of the superficial vessels than as a true varix. + +_Morbid Anatomy._--In the lower extremity the varicosity most commonly +affects the vessels of the great saphena system; less frequently those +of the small saphena system. Sometimes both systems are involved, and +large communicating branches may develop between the two. + +The essential lesion is the absence or deficiency of valves, so that +they are incompetent and fail to support the column of blood which bears +back upon them. Normally the valves in the femoral and iliac veins and +in the inferior vena cava are imperfectly developed, so that in the +erect posture the great saphena receives a large share of the backward +pressure of the column of venous blood. + +The whole length of the vein may be affected, but as a rule the disease +is confined to one or more segments, which are not only dilated, but are +also increased in length, so that they become convoluted. The adjacent +loops of the convoluted vein are often bound together by fibrous tissue. +All the coats are thickened, chiefly by an increased development of +connective tissue, and in some cases changes similar to those of +arterio-sclerosis occur. The walls of varicose veins are often +exceedingly brittle. In some cases the thickening is uniform, and in +others it is irregular, so that here and there thin-walled sacs or +pouches project from the side of the vein. These pouches vary in size +from a bean to a hen's egg, the larger forms being called _venous +cysts_, and being most commonly met with in the region of the saphenous +opening and of the opening in the popliteal fascia. Such pouches, being +exposed to injury, are frequently the seat of thrombosis (Fig. 66). + +[Illustration: FIG. 66.--Thrombosis in Tortuous and Pouched Great +Saphena Vein, in longitudinal section.] + +_Clinical Features._--Varix is most frequently met with between puberty +and the age of thirty, and the sexes appear to suffer about equally. + +The amount of discomfort bears no direct proportion to the extent of +the varicosity. It depends rather upon the degree of pressure in the +veins, as is shown by the fact that it is relieved by elevation of the +limb. When the whole length of the main trunk of the great saphena is +implicated, the pressure in the vein is high and the patient suffers a +good deal of pain and discomfort. When, on the contrary, the upper part +of the saphena and its valves are intact, and only the more distal veins +are involved, the pressure is not so high and there is comparatively +little suffering. The usual complaint is of a sense of weight and +fulness in the limb after standing or walking, sometimes accompanied by +actual pain, from which relief is at once obtained by raising the limb. +Cramp-like pains in the muscles are often associated with varix of the +deep veins. + +The dilated and tortuous vein can be readily seen and felt when the +patient is examined in the upright posture. In advanced cases, bead-like +swellings are sometimes to be detected over the position of the valves, +and, on running the fingers along the course of the vessel, a firm +ridge, due to periphlebitis, may be detected on each side of the vein. +When the limb is oedematous, the outline of the veins is obscured, but +they can be identified on palpation as gutter-like tracks. When large +veins are implicated, a distinct impulse on coughing may be seen to pass +down as far as the knee; and if the vessel is sharply percussed a fluid +wave may be detected passing both up and down the vein. + +If the patient is placed on a couch and the limb elevated, the veins are +emptied, and if pressure is then made over the region of the saphenous +opening and the patient allowed to stand up, so long as the great +saphena system alone is involved, the veins fill again very slowly from +below. If the small saphena system also is involved, and if +communicating branches are dilated, the veins fill up from below more +rapidly. When the pressure over the saphenous opening is removed, the +blood rapidly rushes into the varicose vessels from above; this is known +as Trendelenburg's test. + +The most marked dilatation usually occurs on the medial side of the +limb, between the middle of the thigh and the middle of the calf, the +arrangement of the veins showing great variety (Fig. 67). + +There are usually one or more bunches of enlarged and tortuous veins in +the region of the knee. Frequently a large branch establishes a +communication between the systems of the great and small saphenous veins +in the region of the popliteal space, or across the front of the upper +part of the tibia. The superficial position of this last branch and its +proximity to the bone render it liable to injury. + +[Illustration: FIG. 67.--Extensive Varix of Internal Saphena System on +Left Leg, of many years' standing.] + +The small veins of the skin of the ankle and foot often show as fine +blue streaks arranged in a stellate or arborescent manner, especially in +women who have borne children. + +_Complications._--When the varix is of long standing, the skin in the +lower part of the leg sometimes assumes a mahogany-brown or bluish hue, +as a result of the _deposit of blood pigment_ in the tissues, and this +is frequently a precursor of ulceration. + +_Chronic dermatitis_ (_varicose eczema_) is often met with in the lower +part of the leg, and is due to interference with the nutrition of the +skin. The incompetence of the valves allows the pressure in the varicose +veins to equal that in the arterioles, so that the capillary circulation +is impeded. From the same cause the blood in the deep veins is enabled +to enter the superficial veins, where the backward pressure is so great +that the blood flows down again, and so a vicious circle is established. +The blood therefore loses more and more of its oxygen, and so fails to +nourish the tissues. + +The _ulcer_ of the leg associated with varicose veins has already been +described. + +_Haemorrhage_ may take place from a varicose vein as a result of a wound +or of ulceration of its wall. Increased intra-venous pressure produced +by severe muscular strain may determine rupture of a vein exposed in the +floor of an ulcer. If the limb is dependent, the incompetency of the +valves permits of rapid and copious bleeding, which may prove fatal, +particularly if the patient is intoxicated when the rupture takes place +and no means are taken to arrest the haemorrhage. The bleeding may be +arrested at once by elevating the limb, or by applying pressure directly +over the bleeding point. + +_Phlebitis and thrombosis_ are common sequelae of varix, and may prove +dangerous, either by spreading into the large venous trunks or by giving +rise to emboli. The larger the varix the greater is the tendency for a +thrombus to spread upwards and to involve the deep veins. Thrombi +usually originate in venous cysts or pouches, and at acute bends on the +vessel, especially when these are situated in the vicinity of the knee, +and are subjected to repeated injuries--for example in riding. +Phleboliths sometimes form in such pouches, and may be recognised in a +radiogram. In a certain proportion of cases, especially in elderly +people, the occurrence of thrombosis leads to cure of the condition by +the thrombus becoming organised and obliterating the vein. + +_Treatment._--At best the treatment of varicose veins is only +palliative, as it is obviously impossible to restore to the vessels +their normal structure. The patient must avoid wearing anything, such as +a garter, which constricts the limb, and any obvious cause of direct +pressure on the pelvic veins, such as a tumour, persistent +constipation, or an ill-fitting truss, should be removed. Cardiac, +renal, or pulmonary causes of venous congestion must also be treated, +and the functions of the liver regulated. Severe forms of muscular +exertion and prolonged standing or walking are to be avoided, and the +patient may with benefit rest the limb in an elevated position for a few +hours each day. To support the distended vessels, a closely woven silk +or worsted stocking, or a light and porous form of elastic bandage, +applied as a puttee, should be worn. These appliances should be put on +before the patient leaves his bed in the morning, and should only be +removed after he lies down at night. In this way the vessels are never +allowed to become dilated. Elastic stockings, and bandages made entirely +of india-rubber, are to be avoided. In early and mild cases these +measures are usually sufficient to relieve the patient's discomfort. + +_Operative Treatment._--In aggravated cases, when the patient is +suffering pain, when his occupation is interfered with by repeated +attacks of phlebitis, or when there are large pouches on the veins, +operative treatment is called for. The younger the patient the clearer +is the indication to operate. It may be necessary to operate to enable a +patient to enter one of the public services, even although no symptoms +are present. The presence of an ulcer does not contra-indicate +operation; the ulcer should be excised, and the raw surface covered with +skin grafts, before dealing with the veins. + +The _operation of Trendelenburg_ is especially appropriate to cases in +which the trunk of the great saphena vein in the thigh is alone +involved. It consists in exposing three or four inches of the vein in +its upper part, applying a ligature at the upper and lower ends of the +exposed portion, and, after tying all tributary branches, resecting this +portion of the vein. + +The procedure of C. H. Mayo is adapted to cases in which it is desirable +to remove longer segments of the veins. It consists in the employment of +special instruments known as "ring-enucleators" or "vein-strippers," by +means of which long portions of the vein are removed through +comparatively small incisions. + +An alternative procedure consists in avulsing segments of the vein by +means of Babcock's stylet, which consists of a flexible steel rod, 30 +inches in length, with acorn-shaped terminals. The instrument is passed +along the lumen of the segment to be dealt with, and a ligature applied +around the vein above the bulbous end of the stylet enables nearly the +whole length of the great saphena vein to be dragged out in one piece. +These methods are not suitable when the veins are brittle, when there +are pouches or calcareous deposits in their walls, or where there has +been periphlebitis binding the coils together. + +Mitchell of Belfast advises exposing the varices at numerous points by +half-inch incisions, and, after clamping the vein between two pairs of +forceps, cutting it across and twisting out the segments of the vein +between adjacent incisions. The edges of the incisions are sutured; and +the limb is firmly bandaged from below upwards, and kept in an elevated +position. We have employed this method with satisfactory results. + +The treatment of the complications of varix has already been considered. + + +ANGIOMA[4] + +[4] In the description of angiomas we have followed the teaching of the +late John Duncan. + +Tumours of blood vessels may be divided, according to the nature of the +vessels of which they are composed, into the capillary, the venous, and +the arterial angiomas. + + +CAPILLARY ANGIOMA + +The most common form of capillary angioma is the naevus or congenital +telangiectasis. + +#Naevus.#--A naevus is a collection of dilated capillaries, the afferent +arterioles and the efferent venules of which often share in the +dilatation. Little is known regarding the _etiology_ of naevi beyond the +fact that they are of congenital origin. They often escape notice until +the child is some days old, but attention is usually drawn to them +within a fortnight of birth. For practical purposes the most useful +classification of naevi is into the cutaneous, the subcutaneous, and the +mixed forms. + +_The cutaneous naevus_, "mother's mark," or "port-wine stain," consists +of an aggregation of dilated capillaries in the substance of the skin. +On stretching the skin the vessels can be seen to form a fine network, +or to run in leashes parallel to one another. A dilated arteriole or a +vein winding about among the capillaries may sometimes be detected. +These naevi occur on any part of the body, but they are most frequently +met with on the face. They may be multiple, and vary greatly in size, +some being no bigger than a pin-head, while others cover large areas of +the body. In colour they present every tint from purple to brilliant +red; in the majority there is a considerable dash of blue, especially in +cold weather. + +Unlike the other forms of naevi, the cutaneous variety shows little +tendency to disappear, and it is especially persistent when associated +with overgrowth of the epidermis and of the hairs--_naevoid mole_. + +The _treatment_ of the cutaneous naevus is unsatisfactory, owing to the +difficulty of removing the naevus without leaving a scar which is even +more disfiguring. Very small naevi may be destroyed by a fine pointed +Paquelin thermo-cautery, or by escharotics, such as nitric acid. For +larger naevi, radium and solidified carbon dioxide ("CO_2 snow") may be +used. The extensive port-wine stains so often met with on the face are +best left alone. + +The _subcutaneous naevus_ is comparatively rare. It constitutes a +well-defined, localised tumour, which may possess a distinct capsule, +especially when it has ceased to grow or is retrogressing. On section, +it presents the appearance of a finely reticulated sponge. + +Although it may be noticed at, or within a few days of, birth, a +subcutaneous naevus is often overlooked, especially when on a covered +part of the body, and may not be discovered till the patient is some +years old. It forms a rounded, lobulated swelling, seldom of large size +and yielding a sensation like that of a sponge; the skin over it is +normal, or may exhibit a bluish tinge, especially in cold weather. In +some cases the tumour is diminished by pressing the blood out of it, but +slowly fills again when the pressure is relaxed, and it swells up when +the child struggles or cries. From a cold abscess it is diagnosed by the +history and progress of the swelling and by the absence of fluctuation. +When situated over one of the hernial openings, it closely simulates a +hernia; and when it occurs in the middle line of the face, head, or +back, it may be mistaken for such other congenital conditions as +meningocele or spina bifida. When other means fail, the use of an +exploring needle clears up the diagnosis. + +_Mixed Naevus._--As its name indicates, the mixed naevus partakes of the +characters of the other two varieties; that is, it is a subcutaneous +naevus with involvement of the skin. + +It is frequently met with on the face and head, but may occur on any +part of the body. It also affects parts covered by mucous membrane, such +as the cheek, tongue, and soft palate. The swelling is rounded or +lobulated, and projects beyond the level of its surroundings. Sometimes +the skin is invaded by the naevoid tissue over the whole extent of the +tumour, sometimes only over a limited area. Frequently the margin only +is of a bright-red colour, while the skin in the centre resembles a +cicatrix. The swelling is reduced by steady pressure, and increases in +size and becomes tense when the child cries. + +[Illustration: FIG. 68.--Mixed Naevus of Nose which was subsequently +cured by Electrolysis.] + +_Prognosis._--The rate of growth of the subcutaneous and mixed forms of +naevi varies greatly. They sometimes increase rapidly, especially during +the first few months of life; after this they usually grow at the same +rate as the child, or more slowly. There is a decided tendency to +disappearance of these varieties, fully 50 per cent. undergoing natural +cure by a process of obliteration, similar to the obliteration of +vessels in cicatricial tissue. This usually begins about the period of +the first dentition, sometimes at the second dentition, and sometimes at +puberty. On the other hand, an increased activity of growth may be shown +at these periods. The onset of natural cure is recognised by the tumour +becoming firmer and less compressible, and, in the mixed variety, by the +colour becoming less bright. Injury, infection, or ulceration of the +overlying skin may initiate the curative process. + +Towards adult life the spaces in a subcutaneous naevus may become greatly +enlarged, leading to the formation of a cavernous angioma. + +_Treatment._--In view of the frequency with which subcutaneous and mixed +naevi disappear spontaneously, interference is only called for when the +growth of the tumour is out of proportion to that of the child, or when, +from its situation--for example in the vicinity of the eye--any marked +increase in its size would render it less amenable to treatment. + +The methods of treatment most generally applicable are the use of radium +and carbon dioxide snow, igni-puncture, electrolysis, and excision. + +For naevi situated on exposed parts, where it is desirable to avoid a +scar, the use of _radium_ is to be preferred. The tube of radium is +applied at intervals to different parts of the naevus, the duration and +frequency of the applications varying with the strength of the +emanations and the reaction produced. The object aimed at is to induce +obliteration of the naevoid tissue by cicatricial contraction without +destroying the overlying skin. _Carbon-dioxide snow_ may be employed in +the same manner, but the results are inferior to those obtained by +radium. + +_Igni-puncture_ consists in making a number of punctures at different +parts of the naevus with a fine-pointed thermo-cautery, with the object +of starting at each point a process of cicatrisation which extends +throughout the naevoid tissue and so obliterates the vessels. + +_Electrolysis_ acts by decomposing the blood and tissues into their +constituent elements--oxygen and acids appearing at the positive, +hydrogen and bases at the negative electrode. These substances and gases +being given off in a nascent condition, at once enter into new +combinations with anything in the vicinity with which they have a +chemical affinity. In the naevus the practical result of this reaction is +that at the positive pole nitric acid, and at the negative pole caustic +potash, both in a state of minute subdivision, make their appearance. +The effect on the tissues around the positive pole, therefore, is +equivalent to that of an acid cauterisation, and on those round the +negative pole, to an alkaline cauterisation. + +As the process is painful, a general anaesthetic is necessary. The +current used should be from 20 to 80 milliamperes, gradually increasing +from zero, without shock; three to six large Bunsen cells give a +sufficient current, and no galvanometer is required. Steel needles, +insulated with vulcanite to within an eighth of an inch of their points, +are the best. Both poles are introduced into the naevus, the positive +being kept fixed at one spot, while the negative is moved about so as to +produce a number of different tracks of cauterisation. On no account +must either pole be allowed to come in contact with the skin, lest a +slough be formed. The duration of the sitting is determined by the +effect produced, as indicated by the hardening of the tumour, the +average duration being from fifteen to twenty minutes. If pallor of the +skin appears, it indicates that the needles are too near the surface, or +that the blood supply to the integument is being cut off, and is an +indication to stop. To cauterise the track and so prevent bleeding, the +needles should be slowly withdrawn while the current is flowing. When +the skin is reached the current is turned off. The punctures are covered +with collodion. Six or eight weeks should be allowed to elapse before +repeating the procedure. From two to eight or ten sittings may be +necessary, according to the size and character of the naevus. + +_Excision_ is to be preferred for naevi of moderate size situated on +covered parts of the body, where a scar is of no importance. Its chief +advantages over electrolysis are that a single operation is sufficient, +and that the cure is speedy and certain. The operation is attended with +much less haemorrhage than might be expected. + +#Cavernous Angioma.#--This form of angioma consists of a series of large +blood spaces which are usually derived from the dilatation of the +capillaries of a subcutaneous naevus. The spaces come to communicate +freely with one another by the disappearance of adjacent capillary +walls. While the most common situation is in the subcutaneous tissue, a +cavernous angioma is sometimes met with in internal organs. It may +appear at any age from early youth to middle life, and is of slow growth +and may become stationary. The swelling is rounded or oval, there is no +pulsation or bruit, and the tumour is but slightly compressible. The +treatment consists in dissecting it out. + +#Aneurysm by Anastomosis# is the name applied to a vascular tumour in +which the arteries, veins, and capillaries are all involved. It is met +with chiefly on the upper part of the trunk, the neck, and the scalp. It +tends gradually to increase in size, and may, after many years, attain +an enormous size. The tumour is ill-defined, and varies in consistence. +It is pulsatile, and a systolic bruit or a "thrilling" murmur may be +heard over it. The chief risk is haemorrhage from injury or ulceration. + +[Illustration: FIG. 69.--Cirsoid Aneurysm of Forehead in a boy aet. 10. + +(Mr. J. W. Dowden's case.)] + +The _treatment_ is conducted on the same lines as for naevus. When +electrolysis is employed, it should be directed towards the afferent +vessels; and if it fails to arrest the flow through these, it is useless +to persist with it. In some cases ligation of the afferent vessels has +been successful. + +#Arterial Angioma# or #Cirsoid Aneurysm#.--This is composed of the +enlarged branches of an arterial trunk. It originates in the smaller +branches of an artery--usually the temporal--and may spread to the main +trunk, and may even involve branches of other trunks with which the +affected artery anastomoses. + +The condition is probably congenital in origin, though its appearance is +frequently preceded by an injury. It almost invariably occurs in the +scalp, and is usually met with in adolescent young adults. + +The affected vessels slowly increase in size, and become tortuous, with +narrowings and dilatations here and there. Grooves and gutters are +frequently found in the bone underlying the dilated vessels. + +There is a constant loud bruit in the tumour, which greatly troubles the +patient and may interfere with sleep. There is no tendency either to +natural cure or to rupture, but severe and even fatal haemorrhage may +follow a wound of the dilated vessels. + +[Illustration: FIG. 70.--Cirsoid Aneurysm of Orbit and Face, which +developed after a blow on the Orbit with a cricket ball. + +(From a photograph lent by Sir Montagu Cotterill.)] + +The condition may be treated by excision or by electrolysis. In excision +the haemorrhage is controlled by an elastic tourniquet applied +horizontally round the head, or by ligation of the feeding trunks. In +large tumours the bleeding is formidable. In many cases electrolysis is +to be preferred, and is performed in the same way as for naevus. The +positive pole is placed in the centre of the tumour, while the negative +is introduced into the main affluents one after another. + + +ANEURYSM + +An aneurysm is a sac communicating with an artery, and containing fluid +or coagulated blood. + +Two types are met with--the pathological and the traumatic. It is +convenient to describe in this section also certain conditions in which +there is an abnormal communication between an artery and a +vein--arterio-venous aneurysm. + + +PATHOLOGICAL ANEURYSM + +In this class are included such dilatations as result from weakening of +the arterial coats, combined, in most cases, with a loss of elasticity +in the walls and increase in the arterial tension due to +arterio-sclerosis. In some cases the vessel wall is softened by +arteritis--especially the embolic form--so that it yields before the +pressure of the blood. + +Repeated and sudden raising of the arterial tension, as a result, for +example, of violent muscular efforts or of excessive indulgence in +alcohol, plays an important part in the causation of aneurysm. These +factors probably explain the comparative frequency of aneurysm in those +who follow such arduous occupations as soldiers, sailors, +dock-labourers, and navvies. In these classes the condition usually +manifests itself between the ages of thirty and fifty--that is, when the +vessels are beginning to degenerate, although the heart is still +vigorous and the men are hard at work. The comparative immunity of women +may also be explained by the less severe muscular strain involved by +their occupations and recreations. + +Syphilis plays an important part in the production of aneurysm, probably +by predisposing the patient to arterio-sclerosis and atheroma, and +inducing an increase in the vascular tension in the peripheral vessels, +from loss of elasticity of the vessel wall and narrowing of the lumen as +a result of syphilitic arteritis. It is a striking fact that aneurysm is +seldom met with in women who have not suffered from syphilis. + +#Varieties--Fusiform Aneurysm.#--When the _whole circumference_ of an +artery has been weakened, the tension of the blood causes the walls to +dilate uniformly, so that a fusiform or tubular aneurysm results. All +the coats of the vessel are stretched and form the sac of the aneurysm, +and the affected portion is not only dilated but is also increased in +length. This form is chiefly met with in the arch of the aorta, but may +occur in any of the main arterial trunks. As the sac of the aneurysm +includes all three coats, and as the inner and outer coats are usually +thickened by the deposit in them of connective tissue, this variety +increases in size slowly and seldom gives rise to urgent symptoms. + +As a rule a fusiform aneurysm contains fluid blood, but when the intima +is roughened by disease, especially in the form of calcareous plates, +shreds of clot may adhere to it. + +It has little tendency to natural cure, although this is occasionally +effected by the emerging artery becoming occluded by a clot; it has also +little tendency to rupture. + +#Sacculated Aneurysm.#--When a _limited area_ of the vessel wall is +weakened--for example by atheroma or by other form of arteritis--this +portion yields before the pressure of the blood, and a sacculated +aneurysm results. The internal and middle coats being already damaged, +or, it may be, destroyed, by the primary disease, the stress falls on +the external coat, which in the majority of cases constitutes the sac. +To withstand the pressure the external coat becomes thickened, and as +the aneurysm increases in size it forms adhesions to surrounding +tissues, so that fasciae, tendons, nerves, and other structures may be +found matted together in its wall. The wall is further strengthened by +the deposit on its inner aspect of blood-clot, which may eventually +become organised. + +The contents of the sac consist of fluid blood and a varying amount of +clot which is deposited in concentric layers on the inner aspect of the +sac, where it forms a pale, striated, firm mass, which constitutes a +laminated clot. Near the blood-current the clot is soft, red, and +friable (Fig. 72). The laminated clot not only strengthens the sac, +enabling it to resist the blood-pressure and so prevent rupture, but, if +it increases sufficiently to fill the cavity, may bring about cure. The +principle upon which all methods of treatment are based is to imitate +nature in producing such a clot. + +Sacculated aneurysm, as compared with the fusiform variety, tends to +rupture and also to cure by the formation of laminated clot; natural +cure is sometimes all but complete when extension and rupture occur and +cause death. + +An aneurysm is said to be _diffused_ when the sac ruptures and the blood +escapes into the cellular tissue. + +#Clinical Features of Aneurysm.#--Surgically, the sacculated is by far +the most important variety. The outstanding feature is the existence in +the line of an artery of a globular swelling, which pulsates. The +pulsation is of an expansile character, which is detected by observing +that when both hands are placed over the swelling they are separated +with each beat of the heart. If the main artery be compressed on the +cardiac side of the swelling, the pulsation is arrested and the tumour +becomes smaller and less tense, and it may be still further reduced in +size by gentle pressure being made over it so as to empty it of fluid +blood. On allowing the blood again to flow through the artery, the +pulsation returns at once, but several beats are required before the sac +regains its former size. In most cases a distinct thrill is felt on +placing the hand over the swelling, and a blowing, systolic murmur may +be heard with the stethoscope. It is to be borne in mind that +occasionally, when the interchange of blood between an aneurysm and the +artery from which it arises is small, pulsation and bruit may be slight +or even absent. This is also the case when the sac contains a +considerable quantity of clot. When it becomes filled with +clot--_consolidated aneurysm_--these signs disappear, and the clinical +features are those of a solid tumour lying in contact with an artery, +and transmitting its pulsation. + +A comparison of the pulse in the artery beyond the seat of the aneurysm +with that in the corresponding artery on the healthy side, shows that on +the affected side the wave is smaller in volume, and delayed in time. A +pulse tracing shows that the normal impulse and dicrotic waves are lost, +and that the force and rapidity of the tidal wave are diminished. + +[Illustration: FIG. 71.--Radiogram of Aneurysm of Aorta, showing +laminated clot and erosion of bodies of vertebrae. The intervertebral +discs are intact.] + +An aneurysm exerts pressure on the surrounding structures, which are +usually thickened and adherent to it and to one another. Adjacent veins +may be so compressed that congestion and oedema of the parts beyond are +produced. Pain, disturbances of sensation, and muscular paralyses may +result from pressure on nerves. Such bones as the sternum and vertebrae +undergo erosion and are absorbed by the gradually increasing pressure of +the aneurysm. Cartilage, on the other hand, being elastic, yields before +the pressure, so that the intervertebral discs or the costal cartilages +may escape while the adjacent bones are destroyed (Fig. 71). The skin +over the tumour becomes thinned and stretched, until finally a slough +forms, and when it separates haemorrhage takes place. + +[Illustration: FIG. 72.--Sacculated Aneurysm of Abdominal Aorta nearly +filled with laminated clot. Note greater density of clot towards +periphery.] + +In the progress of an aneurysm towards rupture, timely clotting may +avert death for the moment, but while extension in one direction has +been arrested there is apt to be extension in another, with imminence of +rupture, or it may be again postponed. + +#Differential Diagnosis.#--The diagnosis is to be made from other +pulsatile swellings. Pulsation is sometimes transmitted from a large +artery to a tumour, a mass of enlarged lymph glands, or an inflammatory +swelling which lies in its vicinity, but the pulsation is not +expansile--a most important point in differential diagnosis. Such +swellings may, by appropriate manipulation, be moved from the artery and +the pulsation ceases, and compression of the artery on the cardiac side +of the swelling, although it arrests the pulsation, does not produce any +diminution in the size or tension of the swelling, and when the pressure +is removed the pulsation is restored immediately. + +Fluid swellings overlying an artery, such as cysts, abscesses, or +enlarged bursae, may closely simulate aneurysm. An apparent expansion may +accompany the pulsation, but careful examination usually enables this to +be distinguished from the true expansion of an aneurysm. Compression of +the artery makes no difference in the size or tension of the swelling. + +Vascular tumours, such as sarcoma and goitre, may yield an expansile +pulsation and a soft, whifling bruit, but they differ from an aneurysm +in that they are not diminished in size by compression of the main +artery, nor can they be emptied by pressure. + +The exaggerated pulsation sometimes observed in the abdominal aorta, the +"pulsating aorta" seen in women, should not be mistaken for aneurysm. + +#Prognosis.#--When _natural cure_ occurs it is usually brought about by +the formation of laminated clot, which gradually increases in amount +till it fills the sac. Sometimes a portion of the clot in the sac is +separated and becomes impacted as an embolus in the artery beyond, +leading to thrombosis which first occludes the artery and then extends +into the sac. + +The progress of natural cure is indicated by the aneurysm becoming +smaller, firmer, less expansile, and less compressible; the murmur and +thrill diminish and the pressure effects become less marked. When the +cure is complete the expansile pulsation is lost, and there remains a +firm swelling attached to the vessel (_consolidated aneurysm_). While +these changes are taking place the collateral arteries become enlarged, +and an anastomotic circulation is established. + +An aneurysm may prove _fatal_ by exerting pressure on important +structures, by causing syncope, by rupture, or from the occurrence of +suppuration. _Pressure_ symptoms are usually most serious from aneurysms +situated in the neck, thorax, or skull. Sudden fatal _syncope_ is not +infrequent in cases of aneurysm of the thoracic aorta. + +_Rupture_ may take place through the skin, on a mucous or serous +surface, or into the cellular tissue. The first haemorrhage is often +slight and stops naturally, but it soon recurs, and is so profuse, +especially when the blood escapes externally, that it rapidly proves +fatal. When the bleeding takes place into the cellular tissue, the +aneurysm is said to become _diffused_, and the extravasated blood +spreads widely through the tissues, exerting great pressure on the +surrounding structures. + +The _clinical features_ associated with rupture are sudden and severe +pain in the part, and the patient becomes pale, cold, and faint. If a +comparatively small escape of blood takes place into the tissues, the +sudden alteration in the size, shape, and tension of the aneurysm, +together with loss of pulsation, may be the only local signs. When the +bleeding is profuse, however, the parts beyond the aneurysm become +greatly swollen, livid, and cold, and the pulse beyond is completely +lost. The arrest of the blood supply may result in gangrene. Sometimes +the pressure of the extravasated blood causes the skin to slough and, +later, give way, and fatal haemorrhage results. + +The _treatment_ is carried out on the same lines as for a ruptured +artery (p. 261), it being remembered, however, that the artery is +diseased and does not lend itself to reconstructive procedures. + +_Suppuration_ may occur in the vicinity of an aneurysm, and the aneurysm +may burst into the abscess which forms, so that when the latter points +the pus is mixed with broken-down blood-clot, and finally free +haemorrhage takes place. It has more than once happened that a surgeon +has incised such an abscess without having recognised its association +with aneurysm, with tragic results. + +#Treatment.#--In treating an aneurysm, the indications are to imitate +Nature's method of cure by means of laminated clot. + +_Constitutional treatment_ consists in taking measures to reduce the +arterial tension and to diminish the force of the heart's action. The +patient must be kept in bed. A dry and non-stimulating diet is +indicated, the quantity being gradually reduced till it is just +sufficient to maintain nutrition. Saline purges are employed to reduce +the vascular tension. The benefit derived from potassium iodide +administered in full doses, as first recommended by George W. Balfour, +probably depends on its depressing action on the heart and its +therapeutic benefit in syphilis. Pain or restlessness may call for the +use of opiates, of which heroin is the most efficient. + +_Local Treatment._--When constitutional treatment fails, local measures +must be adopted, and many methods are available. + +#Endo-aneurysmorrhaphy.#--The operation devised by Rudolf Matas in 1888 +aims at closing the opening between the sac and its feeding artery, and +in addition, folding the wall of the sac in such a way as to leave no +vacant space. If there is marked disease of the vessel, Matas' operation +is not possible and recourse is then had to ligation of the artery just +above the sac. + +_Extirpation of the Sac--The Old Operation._--The procedure which goes +by this name consists in exposing the aneurysm, incising the sac, +clearing out the clots, and ligating the artery above and below the sac. +This method is suitable to sacculated aneurysm of the limbs, so long as +they are circumscribed and free from complications. It has been +successfully practised also in aneurysm of the subclavian, carotid, and +external iliac arteries. It is not applicable to cases in which there is +such a degree of atheroma as would interfere with the successful +ligation of the artery. The continuity of the artery may be restored by +grafting into the gap left after excision of the sac a segment of the +great saphena vein. + +_Ligation of the Artery._--The object of tying the artery is to diminish +or to arrest the flow of blood through the aneurysm so that the blood +coagulates both in the sac and in the feeding artery. The ligature may +be applied on the cardiac side of the aneurysm--proximal ligation, or to +the artery beyond--distal ligation. + +_Proximal Ligation._--The ligature may be applied immediately above the +sac (Anel, 1710) or at a distance above (John Hunter, 1785). The +_Hunterian operation_ ensures that the ligature is applied to a part of +the artery that is presumably healthy and where relations are +undisturbed by the proximity of the sac; the best example is the +ligation of the superficial femoral artery in Scarpa's triangle or in +Hunter's canal for popliteal aneurysm; it is on record that Syme +performed this operation with cure of the aneurysm on thirty-nine +occasions. + +It is to be noted that the Hunterian ligature does not aim at +_arresting_ the flow of blood through the sac, but is designed so to +diminish its volume and force as to favour the deposition within the sac +of laminated clot. The development of the collateral circulation which +follows upon ligation of the artery at a distance above the sac may be +attended with just that amount of return stream which favours the +deposit of laminated clot, and consequently the cure of the aneurysm; +the return stream may, however, be so forcible as to prevent coagulation +of the blood in the sac, or only to allow of the formation of a red +thrombus which may in its turn be dispersed so that pulsation in the sac +recurs. This does not necessarily imply failure to cure, as the +recurrent pulsation may only be temporary; the formation of laminated +clot may ultimately take place and lead to consolidation of the +aneurysm. + +The least desirable result of the Hunterian ligature is met with in +cases where, owing to widespread arterial disease, the collateral +circulation does not develop and gangrene of the limb supervenes. + +_Anel's ligature_ is only practised as part of the operation which deals +with the sac directly. + +_Distal Ligation._--The tying of the artery beyond the sac, or of its +two branches where it bifurcates (Brasdor, 1760, and Wardrop, 1825), may +arrest or only diminish the flow of blood through the sac. It is less +successful than the proximal ligature, and is therefore restricted to +aneurysms so situated as not to be amenable to other methods; for +example, in aneurysm of the common carotid near its origin, the artery +may be ligated near its bifurcation, or in aneurysm of the innominate +artery, the carotid and subclavian arteries are tied at the seat of +election. + +_Compression._--Digital compression of the feeding artery has been given +up except as a preparation for operations on the sac with a view to +favouring the development of a collateral circulation. + +_Macewen's acupuncture or "needling"_ consists in passing one or more +fine, highly tempered steel needles through the tissues overlying the +aneurysm, and through its outer wall. The needles are made to touch the +opposite wall of the sac, and the pulsation of the aneurysm imparts a +movement to them which causes them to scarify the inner surface of the +sac. White thrombus forms on the rough surface produced, and leads to +further coagulation. The needles may be left in position for some hours, +being shifted from time to time, the projecting ends being surrounded +with sterile gauze. + +The _Moore-Corradi method_ consists in introducing through the wall of +the aneurysm a hollow insulated needle, through the lumen of which from +10 to 20 feet of highly drawn silver or other wire is passed into the +sac, where it coils up into an open meshwork (Fig. 73). The positive +pole of a galvanic battery is attached to the wire, and the negative +pole placed over the patient's back. A current, varying in strength from +20 to 70 milliamperes, is allowed to flow for about an hour. The hollow +needle is then withdrawn, but the wire is left _in situ_. The results +are somewhat similar to those obtained by needling, but the clot formed +on the large coil of wire is more extensive. + +[Illustration: FIG. 73.--Radiogram of Innominate Aneurysm after +treatment by the Moore-Corradi method. Two feet of finely drawn silver +wire were introduced. The patient, a woman, aet. 47, lived for ten months +after operation, free from pain (cf. Fig. 75).] + +Colt's method of wiring has been mainly used in the treatment of +abdominal aneurysm; gilt wire in the form of a wisp is introduced +through the cannula and expands into an umbrella shape. + +_Subcutaneous Injections of Gelatin._--Three or four ounces of a 2 per +cent. solution of white gelatin in sterilised water, at a temperature of +about 100 o F., are injected into the subcutaneous tissue of the abdomen +every two, three, or four days. In the course of a fortnight or three +weeks improvement may begin. The clot which forms is liable to soften +and be absorbed, but a repetition of the injection has in several cases +established a permanent cure. + +_Amputation of the limb_ is indicated in cases complicated by +suppuration, by secondary haemorrhage after excision or ligation, or by +gangrene. Amputation at the shoulder was performed by Fergusson in a +case of subclavian aneurysm, as a means of arresting the blood-flow +through the sac. + + +TRAUMATIC ANEURYSM + +The essential feature of a traumatic aneurysm is that it is produced by +some form of injury which divides all the coats of the artery. The walls +of the injured vessel are presumably healthy, but they form no part of +the sac of the aneurysm. The sac consists of the condensed and thickened +tissues around the artery. + +The injury to the artery may be a subcutaneous one such as a tear by a +fragment of bone: much more commonly it is a punctured wound from a stab +or from a bullet. + +The aneurysm usually forms soon after the injury is inflicted; the blood +slowly escapes into the surrounding tissues, gradually displacing and +condensing them, until they form a sac enclosing the effused blood. + +Less frequently a traumatic aneurysm forms some considerable time after +the injury, from gradual stretching of the fibrous cicatrix by which the +wound in the wall of the artery has been closed. The gradual stretching +of this cicatrix results in condensation of the surrounding structures +which form the sac, on the inner aspect of which laminated clot is +deposited. + +A traumatic aneurysm is almost always sacculated, and, so long as it +remains circumscribed, has the same characters as a pathological +sacculated aneurysm, with the addition that there is a scar in the +overlying skin. A traumatic aneurysm is liable to become diffuse--a +change which, although attended with considerable risk of gangrene, has +sometimes been the means of bringing about a cure. + +The treatment is governed by the same principles as apply to the +pathological varieties, but as the walls of the artery are not diseased, +operative measures dealing with the sac and the adjacent segment of the +affected artery are to be preferred. + + +ARTERIO-VENOUS ANEURYSM + +An abnormal communication between an artery and a vein constitutes an +arterio-venous aneurysm. Two varieties are recognised--one in which the +communication is direct--_aneurysmal varix_; the other in which the +vein communicates with the artery through the medium of a sac--_varicose +aneurysm_. + +Either variety may result from pathological causes, but in the majority +of cases they are traumatic in origin, being due to such injuries as +stabs, punctured wounds, and gun-shot injuries which involve both artery +and vein. In former times the most common situation was at the bend of +the elbow, the brachial artery being accidentally punctured in +blood-letting from the median basilic vein. Arterio-venous aneurysm is a +frequent result of injuries by modern high-velocity bullets--for +example, in the neck or groin. + +In _aneurysmal varix_ the higher blood pressure in the artery forces +arterial blood into the vein, which near the point of communication with +the artery tends to become dilated, and to form a thick-walled sac, +beyond which the vessel and its tributaries are distended and tortuous. +The clinical features resemble those associated with varicose veins, but +the entrance of arterial blood into the dilated veins causes them to +pulsate, and produces in them a vibratory thrill and a loud murmur. In +those at the groin, the distension of the veins may be so great that +they look like sinuses running through the muscles, a feature that must +be taken into account in any operation. + +As the condition tends to remain stationary, the support of an elastic +bandage is all that is required; but when the condition progresses and +causes serious inconvenience, it may be necessary to cut down and expose +the communication between the artery and vein, and, after separating the +vessels, to close the opening in each by suture; this may be difficult +or impossible if the parts are matted from former suppuration. If it is +impossible thus to obliterate the communication, the artery should be +ligated above and below the point of communication; although the risk of +gangrene is considerable unless means are taken to develop the +collateral circulation beforehand (Makins). + +_Varicose aneurysm_ usually develops in relation to a traumatic +aneurysm, the sac becoming adherent to an adjacent vein, and ultimately +opening into it. In this way a communication between the artery and the +vein is established, and the clinical features are those of a +combination of aneurysm and aneurysmal varix. + +As there is little tendency to spontaneous cure, and as the aneurysm is +liable to increase in size and finally to rupture, operative treatment +is usually called for. This is carried out on the same lines as for +aneurysmal varix, and at the same time incising the sac, turning out the +clots, and ligating any branches which open into the sac. If it can be +avoided, the vein should not be ligated. + + +ANEURYSMS OF INDIVIDUAL ARTERIES + +#Thoracic Aneurysm.#--All varieties of aneurysm occur in the aorta, the +fusiform being the most common, although a sacculated aneurysm +frequently springs from a fusiform dilatation. + +The _clinical features_ depend chiefly on the direction in which the +aneurysm enlarges, and are not always well marked even when the sac is +of considerable size. They consist in a pulsatile swelling--sometimes in +the supra-sternal notch, but usually towards the right side of the +sternum--with an increased area of dulness on percussion. With the +X-rays a dark shadow is seen corresponding to the sac. Pain is usually a +prominent symptom, and is largely referable to the pressure of the +aneurysm on the vertebrae or the sternum, causing erosion of these bones. +Pressure on the thoracic veins and on the air-passage causes cyanosis +and dyspnoea. When the oesophagus is pressed upon, the patient may have +difficulty in swallowing. The left recurrent nerve may be stretched or +pressed upon as it hooks round the arch of the aorta, and hoarseness of +the voice and a characteristic "brassy" cough may result from paralysis +of the muscles of the larynx which it supplies. The vagus, the phrenic, +and the spinal nerves may also be pressed upon. When the aneurysm is on +the transverse part of the arch, the trachea is pulled down with each +beat of the heart--a clinical phenomena known as the "tracheal tug." +Aneurysm of the descending aorta may, after eroding the bodies of the +vertebrae (Fig. 71) and posterior portions of the ribs, form a swelling +in the back to the left of the spine. + +Inasmuch as obliteration of the sac and the feeding artery is out of the +question, surgical treatment is confined to causing coagulation of the +blood in an extension or pouching of the sac, which, making its way +through the parietes of the chest, threatens to rupture externally. This +may be achieved by Macewen's needles or by the introduction of wire into +the sac. We have had cases under observation in which the treatment +referred to has been followed by such an amount of improvement that the +patient has been able to resume a laborious occupation for one or more +years. Christopher Heath found that improvement followed ligation of the +left common carotid in aneurysm of the transverse part of the aortic +arch. + +[Illustration: FIG. 74.--Thoracic Aneurysm, threatening to rupture +externally, but prevented from doing so by Macewen's needling. The +needles were left in for forty-eight hours.] + +#Abdominal Aneurysm.#--Aneurysm is much less frequent in the abdominal +than in the thoracic aorta. While any of the large branches in the +abdomen may be affected, the most common seats are in the aorta itself, +just above the origin of the coeliac artery and at the bifurcation. + +The _clinical features_ vary with the site of the aneurysm and with its +rapidity and direction of growth. A smooth, rounded swelling, which +exhibits expansile pulsation, forms, usually towards the left of the +middle line. It may extend upwards under cover of the ribs, downwards +towards the pelvis, or backward towards the loin. On palpation a +systolic thrill may be detected, but the presence of a murmur is neither +constant nor characteristic. Pain is usually present; it may be +neuralgic in character, or may simulate renal colic. When the aneurysm +presses on the vertebrae and erodes them, the symptoms simulate those of +spinal caries, particularly if, as sometimes happens, symptoms of +compression paraplegia ensue. In its growth the swelling may press upon +and displace the adjacent viscera, and so interfere with their +functions. + +The _diagnosis_ has to be made from solid or cystic tumours overlying +the artery; from a "pulsating aorta"; and from spinal caries; much help +is obtained by the use of the X-rays. + +The condition usually proves fatal, either by the aneurysm bursting into +the peritoneal cavity, or by slow leakage into the retro-peritoneal +tissue. + +The Moore-Corradi method has been successfully employed, access to the +sac having been obtained by opening the abdomen. Ligation of the aorta +has so far been unsuccessful, but in one case operated upon by Keen the +patient survived forty-eight days. + +#Innominate aneurysm# may be of the fusiform or of the sacculated +variety, and is frequently associated with pouching of the aorta. It +usually grows upwards and laterally, projecting above the sternum and +right clavicle, which may be eroded or displaced (Fig. 75). Symptoms of +pressure on the structures in the neck, similar to those produced by +aortic aneurysm, occur. The pulses in the right upper extremity and in +the right carotid and its branches are diminished and delayed. Pressure +on the right brachial plexus causes shooting pain down the arm and +muscular paresis on that side. Vaso-motor disturbances and contraction +of the pupil on the right side may result from pressure on the +sympathetic. Death may take place from rupture, or from pressure on the +air-passage. + +[Illustration: FIG. 75.--Innominate Aneurysm in a woman, aet. 47, eight +months after treatment by Moore-Corradi method (cf. Fig. 73).] + +The available methods of treatment are ligation of the right common +carotid and third part of the right subclavian (Wardrop's operation), of +which a number of successful cases have been recorded. Those most +suitable for ligation are cases in which the aneurysm is circumscribed +and globular (Sheen). If ligation is found to be impracticable, the +Moore-Corradi method or Macewen's needling may be tried. + +#Carotid Aneurysms.#--Aneurysm of the _common carotid_ is more frequent +on the right than on the left side, and is usually situated either at +the root of the neck or near the bifurcation. It is the aneurysm most +frequently met with in women. From its position the swelling is liable +to press on the vagus, recurrent and sympathetic nerves, on the +air-passage, and on the oesophagus, giving rise to symptoms referable to +such pressure. There may be cerebral symptoms from interference with the +blood supply of the brain. + +Aneurysm near the origin has to be diagnosed from subclavian, +innominate, and aortic aneurysm, and from other swellings--solid or +fluid--met with in the neck. It is often difficult to determine with +precision the trunk from which an aneurysm at the root of the neck +originates, and not infrequently more than one vessel shares in the +dilatation. A careful consideration of the position in which the +swelling first appeared, of the direction in which it has progressed, of +its pressure effects, and of the condition of the pulses beyond, may +help in distinguishing between aortic, innominate, carotid, and +subclavian aneurysms. Skiagraphy is also of assistance in recognising +the vessel involved. + +Tumours of the thyreoid, enlarged lymph glands, and fatty and +sarcomatous tumours can usually be distinguished from aneurysm by the +history of the swelling and by physical examination. Cystic tumours and +abscesses in the neck are sometimes more difficult to differentiate on +account of the apparently expansile character of the pulsation +transmitted to them. The fact that compression of the vessel does not +affect the size and tension of these fluid swellings is useful in +distinguishing them from aneurysm. + +_Treatment._--Digital compression of the vessel against the transverse +process of the sixth cervical vertebra--the "carotid tubercle"--has been +successfully employed in the treatment of aneurysm near the bifurcation. +Proximal ligation in the case of high aneurysms, or distal ligation in +those situated at the root of the neck, is more certain. Extirpation of +the sac is probably the best method of treatment, especially in those of +traumatic origin. These operations are attended with considerable risk +of hemiplegia from interference with the blood supply of the brain. + +The _external carotid_ and the cervical portion of the _internal +carotid_ are seldom the primary seat of aneurysm, although they are +liable to be implicated by the upward spread of an aneurysm at the +bifurcation of the common trunk. In addition to the ordinary signs of +aneurysm, the clinical manifestations are chiefly referable to pressure +on the pharynx and larynx, and on the hypoglossal nerve. Aneurysm of the +internal carotid is of special importance on account of the way in which +it bulges into the pharynx in the region of the tonsil, in some cases +closely simulating a tonsillar abscess. Cases are on record in which +such an aneurysm has been mistaken for an abscess and incised, with +disastrous results. + +_Aneurysmal varix_ may occur in the neck as a result of stabs or bullet +wounds. The communication is usually between the common carotid artery +and the internal jugular vein. The resulting interference with the +cerebral circulation causes headache, giddiness, and other brain +symptoms, and a persistent loud murmur is usually a source of annoyance +to the patient and may be sufficient indication for operative treatment. + +#Intracranial aneurysm# involves the internal carotid and its branches, +or the basilar artery, and appears to be more frequently associated with +syphilis and with valvular disease of the heart than are external +aneurysms. It gives rise to symptoms similar to those of other +intracranial tumours, and there is sometimes a loud murmur. It usually +proves fatal by rupture, and intracranial haemorrhage. The treatment is +to ligate the common carotid or the vertebral artery in the neck, +according to the seat of the aneurysm. + +#Orbital Aneurysm.#--The term pulsating exophthalmos is employed to +embrace a number of pathological conditions, including aneurysm, in +which the chief symptoms are pulsation in the orbit and protrusion of +the eyeball. There may be, in addition, congestion and oedema of the +eyelids, and a distinct thrill and murmur, which can be controlled by +compression of the common carotid in the neck. Varying degrees of ocular +paralysis and of interference with vision may also be present. + +These symptoms are due, in the majority of cases, to an aneurysmal varix +of the internal carotid artery and cavernous sinus, which is often +traumatic in origin, being produced either by fracture of the base of +the skull or by a punctured wound of the orbit. In other cases they are +due to aneurysm of the ophthalmic artery, to thrombosis of the cavernous +sinus, and, in rare instances, to cirsoid aneurysm. + +If compression of the common carotid is found to arrest the pulsation, +ligation of this vessel is indicated. + +#Subclavian Aneurysm.#--Subclavian aneurysm is usually met with in men +who follow occupations involving constant use of the shoulder--for +example, dock-porters and coal-heavers. It is more common on the right +side. + +The aneurysm usually springs from the third part of the artery, and +appears as a tense, rounded, pulsatile swelling just above the clavicle +and to the outer side of the sterno-mastoid muscle. It occasionally +extends towards the thorax, where it may become adherent to the pleura. +The radial pulse on the same side is small and delayed. Congestion and +oedema of the arm, with pain, numbness, and muscular weakness, may result +from pressure on the veins and nerves as they pass under the clavicle; +and pressure on the phrenic nerve may induce hiccough. The aneurysm is +of slow growth, and occasionally undergoes spontaneous cure. + +The conditions most likely to be mistaken for it are a soft, rapidly +growing sarcoma, and a normal artery raised on a cervical rib. + +On account of the relations of the artery and of its branches, treatment +is attended with greater difficulty and danger in subclavian than in +almost any other form of external aneurysm. The available operative +measures are proximal ligation of the innominate, and distal ligation. +In some cases it has been found necessary to combine distal ligation +with amputation at the shoulder-joint, to prevent the collateral +circulation maintaining the flow through the aneurysm. Matas' operation +has been successfully performed by Hogarth Pringle. + +#Axillary Aneurysm.#--This is usually met with in the right arm of +labouring men and sailors, and not infrequently follows an injury in the +region of the shoulder. The vessel may be damaged by the head of a +dislocated humerus or in attempts to reduce the dislocation, by the +fragments of a fractured bone, or by a stab or cut. Sometimes the vein +also is injured and an arterio-venous aneurysm established. + +Owing to the laxity of the tissues, it increases rapidly, and it may +soon attain a large size, filling up the axilla, and displacing the +clavicle upwards. This renders compression of the third part of the +subclavian difficult or impossible. It may extend beneath the clavicle +into the neck, or, extending inwards may form adhesions to the chest +wall, and, after eroding the ribs, to the pleura. + +The usual symptoms of aneurysm are present, and the pressure effects on +the veins and nerves are similar to those produced by an aneurysm of the +subclavian. Intra-thoracic complications, such as pleurisy or pneumonia, +are not infrequent when there are adhesions to the chest wall and +pleura. Rupture may take place externally, into the shoulder-joint, or +into the pleura. + +Extirpation of the sac is the operation of choice, but, if this is +impracticable, ligation of the third part of the subclavian may be had +recourse to. + +#Brachial aneurysm# usually occurs at the bend of the elbow, is of +traumatic origin, and is best treated by excision of the sac. + +_Aneurysmal varix_, which was frequently met with in this situation in +the days of the barber-surgeons,--usually as a result of the artery +having been accidentally wounded while performing venesection of the +median basilic vein,--may be treated, according to the amount of +discomfort it causes, by a supporting bandage, or by ligation of the +artery above and below the point of communication. + +Aneurysms of the vessels of the #forearm and hand# call for no special +mention; they are almost invariably traumatic, and are treated by +excision of the sac. + +#Inguinal Aneurysm# (_Aneurysm of the Iliac and Femoral +Arteries_).--Aneurysms appearing in the region of Poupart's ligament may +have their origin in the external or common iliac arteries or in the +upper part of the femoral. On account of the tension of the fascia lata, +they tend to spread upwards towards the abdomen, and, to a less extent, +downwards into the thigh. Sometimes a constriction occurs across the +sac at the level of Poupart's ligament. + +The pressure exerted on the nerves and veins of the lower extremity +causes pain, congestion, and oedema of the limb. Rupture may take place +externally, or into the cellular tissue of the iliac fossa. + +These aneurysms have to be diagnosed from pulsating sarcoma growing from +the pelvic bones, and from an abscess or a mass of enlarged lymph glands +overlying the artery and transmitting its pulsation. + +The method of treatment that has met with most success is ligation of +the common or external iliac, reached either by reflecting the +peritoneum from off the iliac fossa (extra-peritoneal operation), or by +going through the peritoneal cavity (trans-peritoneal operation). + +#Gluteal Aneurysm.#--An aneurysm in the buttock may arise from the +superior or from the inferior gluteal artery, but by the time it forms a +salient swelling it is seldom possible to recognise by external +examination in which vessel it takes origin. The special symptoms to +which it gives rise are pain down the limb from pressure on the sciatic +nerve, and interference with the movements at the hip. + +Ligation of the hypogastric (internal iliac) by the trans-peritoneal +route is the most satisfactory method of treatment. Extirpation of the +sac is difficult and dangerous, especially when the aneurysm has spread +into the pelvis. + +#Femoral Aneurysm.#--Aneurysm of the femoral artery beyond the origin of +the profunda branch is usually traumatic in origin, and is more common +in Scarpa's triangle than in Hunter's canal. Any of the methods already +described is available for their treatment--the choice lying between +Matas' operation and ligation of the external iliac. + +Aneurysm of the _profunda femoris_ is distinguished from that of the +main trunk by the fact that the pulses beyond are, in the former, +unaffected, and by the normal artery being felt pulsating over or +alongside the sac. + +In _aneurysmal varix_, a not infrequent result of a bullet wound or a +stab, the communication with the vein may involve the main trunk of the +femoral artery. Should operative interference become necessary as a +result of progressive increase in size of the tumour, or progressive +distension of the veins of the limb, an attempt should be made to +separate the vessels concerned and to close the opening in each by +suture. If this is impracticable, the artery is tied above and below the +communication; gangrene of the limb may supervene, and we have observed +a case in which the gangrene extended up to the junction of the middle +and lower thirds of the thigh, and in which recovery followed upon +amputation of the thigh. + +#Popliteal Aneurysm.#--This is the most common surgical aneurysm, and is +not infrequently met with in both limbs. It is generally due to disease +of the artery, and repeated slight strains, which are so liable to occur +at the knee, play an important part in its formation. In former times it +was common in post-boys, from the repeated flexion and extension of the +knee in riding. + +The aneurysm is usually of the sacculated variety, and may spring from +the front or from the back of the vessel. It may exert pressure on the +bones and ligaments of the joint, and it has been known to rupture into +the articulation. The pain, stiffness, and effusion into the joint which +accompany these changes often lead to an erroneous diagnosis of joint +disease. The sac may press upon the popliteal artery or vein and their +branches, causing congestion and oedema of the leg, and lead to gangrene. +Pressure on the tibial and common peroneal nerves gives rise to severe +pain, muscular cramp, and weakness of the leg. + +The differential diagnosis is to be made from abscess, bursal cyst, +enlarged glands, and sarcoma, especially pulsating sarcoma of one of the +bones entering into the knee joint. + +The choice of operation lies between ligation of the femoral artery in +Hunter's canal, and Matas' operation of aneurysmo-arteriorrhaphy. The +success which attends the Hunterian operation is evidenced by the fact +that Syme performed it thirty-seven times without a single failure. If +it fails, the old operation should be considered, but it is a more +serious operation, and one which is more liable to be followed by +gangrene of the limb. Experience shows that ligation of the vein, or +even the removal of a portion of it, is not necessarily followed by +gangrene. The risk of gangrene is diminished by a course of digital +compression of the femoral artery, before operating on the aneurysm. + +_Aneurysmal varix_ is sometimes met with in the region of the popliteal +space. It is characterised by the usual symptoms, and is treated by +palliative measures, or by ligation of the artery above and below the +point of communication. + +_Aneurysm_ in the #leg and foot# is rare. It is almost always traumatic, +and is treated by excision of the sac. + + + + +CHAPTER XV + +THE LYMPH VESSELS AND GLANDS + + +Anatomy and Physiology--INJURIES OF LYMPH VESSELS--_Wounds of + thoracic duct_--DISEASES OF LYMPH VESSELS--Lymphangitis: + _Varieties_--Lymphangiectasis--Filarial + disease--Lymphangioma--DISEASES OF LYMPH + GLANDS--Lymphadenitis: _Septic_; _Tuberculous_; + _Syphilitic_--Lymphadenoma--Leucocythaemia--TUMOURS. + +#Surgical Anatomy and Physiology.#--Lymph is essentially blood plasma, +which has passed through the walls of capillaries. After bathing +and nourishing the tissues, it is collected by lymph vessels, which +return it to the blood stream by way of the thoracic duct. These lymph +vessels take origin in the lymph spaces of the tissues and in the +walls of serous cavities, and they usually run alongside blood +vessels--_perivascular lymph vessels_. They have a structure similar to +that of veins, but are more abundantly provided with valves. Along the +course of the lymph trunks are the _lymph glands_, which possess a +definite capsule and are composed of a reticulated connective tissue, +the spaces of which are packed with leucocytes. The glands act as +filters, arresting not only inert substances, such as blood pigment +circulating in the lymph, but also living elements, such as cancer cells +or bacteria. As it passes through a gland the lymph is brought into +intimate contact with the leucocytes, and in bacterial infections there +is always a struggle between the organisms and the leucocytes, so that +the glands may be looked upon as an important line of defence, retarding +or preventing the passage of bacteria and their products into the +general circulation. The infective agent, moreover, in order to reach +the blood stream, must usually overcome the resistance of several +glands. + +Lymph glands are, for the most part, arranged in groups or chains, such +as those in the axilla, neck, and groin. In any given situation they +vary in number and size in different individuals, and fresh glands may +be formed on comparatively slight stimulus, and disappear when the +stimulus is withdrawn. The best-known example of this is the increase in +the number of glands in the axilla which takes place during lactation; +when this function ceases, many of the glands become involuted and are +transformed into fat, and in the event of a subsequent lactation they +are again developed. After glands have been removed by operation, new +ones may be formed. + +The following are the more important groups of glands, and the areas +drained by them in the head and neck and in the extremities. + +#Head and Neck.#--_The anterior auricular (parotid and pre-auricular) +glands_ lie beneath the parotid fascia in front of the ear, and some +are partly embedded in the substance of the parotid gland; they drain +the parts about the temple, cheek, eyelids, and auricle, and are +frequently the seat of tuberculous disease. _The occipital gland_, +situated over the origin of the trapezius from the superior curved line, +drains the top and back of the head; it is rarely infected. _The +posterior auricular (mastoid) glands_ lie over the mastoid process, and +drain the side of the head and auricle. These three groups pour their +lymph into the superficial cervical glands. _The submaxillary_--two to +six in number--lie along the lower order of the mandible from the +symphysis to the angle, the posterior ones (paramandibular) being +closely connected with the submaxillary salivary gland. They receive +lymph from the face, lips, floor of the mouth, gums, teeth, anterior +part of tongue, and the alae nasi, and from the pre-auricular glands. The +lymph passes from them into the deeper cervical glands. They are +frequently infected with tubercle, with epithelioma which has spread to +them from the mouth, and also with pyogenic organisms. _The submental +glands_ lie in or close to the median line between the anterior bellies +of the digastric muscles, and receive lymph from the lips. It is rare +for them to be the seat of tubercle, but in epithelioma of the lower lip +and floor of the mouth they are infected at an early stage of the +disease. _The supra-hyoid gland_ lies a little farther back, immediately +above the hyoid bone, and receives lymph from the tongue. _The +superficial cervical (external jugular) glands_, when present, lie along +the external jugular vein, and receives lymph from the occipital and +auricular glands and from the auricle. _The sterno-mastoid +glands_--glandulae concatinatae--form a chain along the posterior edge of +the sterno-mastoid muscle, some of them lying beneath the muscle. They +are commonly enlarged in secondary syphilis. _The superior deep cervical +(internal jugular) glands_--from six to twenty in number--form a +continuous chain along the internal jugular vein, beneath the +sterno-mastoid muscle. They drain the various groups of glands which lie +nearer the surface, also the interior of the skull, the larynx, trachea, +thyreoid, and lower part of the pharynx, and pour their lymph into the +main trunks at the root of the neck. Belonging to this group is one +large gland (the tonsillar gland) which lies behind the posterior belly +of the digastric, and rests in the angle between the internal jugular +and common facial veins. It is commonly enlarged in affections of the +tonsil and posterior part of the tongue. In the same group are three or +four glands which lie entirely under cover of the upper end of the +sterno-mastoid muscle, and surround the accessory nerve before it +perforates the muscle. The deep cervical glands are commonly infected by +tubercle and also by epithelioma secondary to disease in the tongue or +throat. _The inferior deep cervical (supra-clavicular) glands_ lie in +the posterior triangle, above the clavicle. They receive lymph from the +lowest cervical glands, from the upper part of the chest wall, and from +the highest axillary glands. They are frequently infected in cancer of +the breast; those on the left side also in cancer of the stomach. The +removal of diseased supra-clavicular glands is not to be lightly +undertaken, as difficulties are liable to ensue in connection with the +thoracic duct, the pleura, or the junction of the subclavian and +internal jugular veins. _The retro-pharyngeal glands_ lie on each side +of the median line upon the rectus capitis anticus major muscle and in +front of the pre-vertebral layer of the cervical fascia. They receive +part of the lymph from the posterior wall of the pharynx, the interior +of the nose and its accessory cavities, the auditory (Eustachian) tube, +and the tympanum. When they are infected with pyogenic organisms or +with tubercle bacilli, they may lead to the formation of one form of +retro-pharyngeal abscess. + +#Upper Extremity.#--_The epi-trochlear and cubital glands_ vary in +number, that most commonly present lying about an inch and a half above +the medial epi-condyle, and other and smaller glands may lie along the +medial (internal) bicipital groove or at the bend of the elbow. They +drain the ulnar side of the hand and forearm, and pour their lymph into +the axillary group. The epi-trochlear gland is sometimes enlarged in +syphilis. _The axillary glands_ are arranged in groups: a central group +lies embedded in the axillary fascia and fat, and is often related to an +opening in it; a posterior or subscapular group lies along the line of +the subscapular vessels; anterior or pectoral groups lie behind the +pectoralis minor, along the medial side of the axillary vein, and an +inter-pectoral group, between the two pectoral muscles. The axillary +glands receive lymph from the arm, mamma, and side of the chest, and +pass it on into the lowest cervical glands and the main lymph trunk. +They are frequently the seat of pyogenic, tuberculous, and cancerous +infection, and their complete removal is an essential part of the +operation for cancer of the breast. + +#Lower Extremity.#--_The popliteal glands_ include one superficial gland +at the termination of the small saphenous vein, and several deeper ones +in relation to the popliteal vessels. They receive lymph from the toes +and foot, and transmit it to the inguinal glands. _The femoral glands_ +lie vertically along the upper part of the great saphenous vein, and +receive lymph from the leg and foot; from them the lymph passes to the +deep inguinal and external iliac glands. The femoral glands often +participate in pyogenic infections entering through the skin of the toes +and sole of the foot. _The superficial inguinal glands_ lie along the +inguinal (Poupart's) ligament, and receive lymph from the external +genitals, anus, perineum, buttock, and anterior abdominal wall. The +lymph passes on to the deep inguinal and external iliac glands. The +superficial glands through their relations to the genitals are +frequently the subject of venereal infection, and also of epithelioma +when this disease affects the genitals or anus; they are rarely the seat +of tuberculosis. _The deep inguinal glands_ lie on the medial side of +the femoral vein, and sometimes within the femoral canal. They receive +lymph from the deep lymphatics of the lower limb, and some of the +efferent vessels from the femoral and superficial inguinal glands. The +lymph then passes on through the femoral canal to the external iliac +glands. The extension of malignant disease, whether cancer or sarcoma, +can often be traced along these deeper lymphatics into the pelvis, and +as the obstruction to the flow of lymph increases there is a +corresponding increase in the swollen dropsical condition of the lower +limb on the same side. + +The glands of the _thorax_ and _abdomen_ will be considered with the +surgery of these regions. + + +INJURIES OF LYMPH VESSELS + +Lymph vessels are divided in all wounds, and the lymph that escapes from +them is added to any discharge that may be present. In injuries of +larger trunks the lymph may escape in considerable quantity as a +colourless, watery fluid--_lymphorrhagia_; and the opening through which +it escapes is known as a _lymphatic fistula_. This has been observed +chiefly after extensive operation for the removal of malignant glands in +the groin where there already exists a considerable degree of +obstruction to the lymph stream, and in such cases the lymph, including +that which has accumulated in the vessels of the limb, may escape in +such abundance as to soak through large dressings and delay healing. +Ultimately new lymph channels are formed, so that at the end of from +four to six weeks the discharge of lymph ceases and the wound heals. + +_Lymphatic Oedema._--When the lymphatic return from a limb has been +seriously interfered with,--as, for example, when the axillary contents +has been completely cleared out in operating for cancer of the +breast,--a condition of lymphatic oedema may result, the arm becoming +swollen, tight, and heavy. + +Various degrees of the conditions are met with; in the severe forms, +there is pain, as well as incapacity of the limb. As in ordinary oedema, +the condition is relieved by elevation of the limb, but not nearly to +the same degree; in time the tissues become so hard and tense as +scarcely to pit on pressure; this is in part due to the formation of new +connective tissue and hypertrophy of the skin; in advanced cases there +is a gradual transition into one form of elephantiasis. + +Handley has devised a method of treatment--_lymphangioplasty_--the +object of which is to drain the lymph by embedding a number of silk +threads in the subcutaneous cellular tissue. + +#Wounds of the Thoracic Duct.#--The thoracic duct usually opens at the +angle formed by the junction of the left internal jugular and subclavian +veins, but it may open into either of these vessels by one or by several +channels, or the duct may be double throughout its course. There is a +smaller duct on the right side--the right lymphatic duct. The duct or +ducts may be displaced by a tumour or a mass of enlarged glands, and may +be accidentally wounded in dissections at the root of the neck; jets of +milky fluid--chyle--may at once escape from it. The jets are rhythmical +and coincide with expiration. The injury may, however, not be observed +at the time of operation, but later through the dressings being soaked +with chyle--_chylorrhoea_. If the wound involves the only existing main +duct and all the chyle escapes, the patient suffers from intense thirst, +emaciation, and weakness, and may die of inanition; but if, as is +usually the case, only one of several collateral channels is implicated, +the loss of chyle may be of little moment, as the discharge usually +ceases. If the wound heals so that the chyle is prevented from escaping, +a fluctuating swelling may form beneath the scar; in course of time it +gradually disappears. + +An attempt should be made to close the wound in the duct by means of a +fine suture; failing this, the duct must be occluded by a ligature as if +it were a bleeding artery. The tissues are then stitched over it and the +skin wound accurately closed, so as to obtain primary union, firm +pressure being applied by dressings and an elastic webbing bandage. Even +if the main duct is obliterated, a collateral circulation is usually +established. A wound of the right lymphatic duct is of less importance. + +_Subcutaneous rupture of the thoracic duct_ may result from a crush of +the thorax. The chyle escapes and accumulates in the cellular tissue of +the posterior mediastinum, behind the peritoneum, in the pleural cavity +(_chylo-thorax_), or in the peritoneal cavity (_chylous ascites_). There +are physical signs of fluid in one or other of these situations, but, as +a rule, the nature of the lesion is only recognised when chyle is +withdrawn by the exploring needle. + + +DISEASES OF LYMPH VESSELS + +#Lymphangitis.#--Inflammation of peripheral lymph vessels usually +results from some primary source of pyogenic infection in the skin. This +may be a wound or a purulent blister, and the streptococcus pyogenes is +the organism most frequently present. _Septic_ lymphangitis is commonly +met with in those who, from the nature of their occupation, handle +infective material. A _gonococcal_ form has been observed in those +suffering from gonorrhoea. + +The inflammation affects chiefly the walls of the vessels, and is +attended with clotting of the lymph. There is also some degree of +inflammation of the surrounding cellular tissue--_peri-lymphangitis_. +One or more abscesses may form along the course of the vessels, or a +spreading cellulitis may supervene. + +The _clinical features_ resemble those of other pyogenic infections, and +there are wavy red lines running from the source of infection towards +the nearest lymph glands. These correspond to the inflamed vessels, and +are the seat of burning pain and tenderness. The associated glands are +enlarged and painful. In severe cases the symptoms merge into those of +septicaemia. When the deep lymph vessels alone are involved, the +superficial red lines are absent, but the limb becomes greatly swollen +and pits on pressure. + +In cases of extensive lymphangitis, especially when there are repeated +attacks, the vessels are obliterated by the formation of new connective +tissue and a persistent solid oedema results, culminating in one form of +elephantiasis. + +_Treatment._--The primary source of infection is dealt with on the usual +lines. If the lymphangitis affects an extremity, Bier's elastic bandage +is applied, and if suppuration occurs, the pus is let out through one or +more small incisions; in other parts of the body Klapp's suction bells +are employed. An autogenous vaccine may be prepared and injected. When +the condition has subsided, the limb is massaged and evenly bandaged to +promote the disappearance of oedema. + +_Tuberculous Lymphangitis._--Although lymph vessels play an important +role in the spread of tuberculosis, the clinical recognition of the +disease in them is exceptional. The infection spreads upwards along the +superficial lymphatics, which become nodularly thickened; at one or more +points, larger, peri-lymphangitic nodules may form and break down into +abscesses and ulcers; the nearest group of glands become infected at an +early stage. When the disease is widely distributed throughout the +lymphatics of the limb, it becomes swollen and hard--a condition +illustrated by lupus elephantiasis. + +_Syphilitic lymphangitis_ is observed in cases of primary syphilis, in +which the vessels of the dorsum of the penis can be felt as indurated +cords. + +In addition to acting as channels for the conveyance of bacterial +infection, _lymph vessels frequently convey the cells of malignant +tumours_, and especially cancer, from the seat of the primary disease to +the nearest lymph glands, and they may themselves become the seat of +cancerous growth forming nodular cords. The permeation of cancer by way +of the lymphatics, described by Sampson Handley, has already been +referred to. + +#Lymphangiectasis# is a dilated or varicose condition of lymph vessels. +It is met with as a congenital affection in the tongue and lips, or it +may be acquired as the result of any condition which is attended with +extensive obliteration or blocking of the main lymph trunks. An +interesting type of lymphangiectasis is that which results from the +presence of the _filaria Bancrofti_ in the vessels, and is observed +chiefly in the groin, spermatic cord, and scrotum of persons who have +lived in the tropics. + +_Filarial disease in the lymphatics of the groin_ appears as a soft, +doughy swelling, varying in size from a walnut to a cocoa-nut; it may +partly disappear on pressure and when the patient lies down. + +The patient gives a history of feverish attacks of the nature of +lymphangitis during which the swelling becomes painful and tender. These +attacks may show a remarkable periodicity, and each may be followed by +an increase in the size of the swelling, which may extend along the +inguinal canal into the abdomen, or down the spermatic cord into the +scrotum. On dissection, the swelling is found to be made up of dilated, +tortuous, and thickened lymph vessels in which the parent worm is +sometimes found, and of greatly enlarged lymph glands which have +undergone fibrosis, with giant-cell formation and eosinophile +aggregations. The fluid in the dilated vessels is either clear or +turbid, in the latter case resembling chyle. The affection is frequently +bilateral, and may be associated with lymph scrotum, with elephantiasis, +and with chyluria. + +The _diagnosis_ is to be made from such other swellings in the groin as +hernia, lipoma, or cystic pouching of the great saphenous vein. It is +confirmed by finding the recently dead or dying worms in the inflamed +lymph glands. + +_Treatment._--When the disease is limited to the groin or scrotum, +excision may bring about a permanent cure, but it may result in the +formation of lymphatic sinuses and only afford temporary relief. + +#Lymphangioma.#--A lymphangioma is a swelling composed of a series of +cavities and channels filled with lymph and freely communicating with +one another. The cavities result either from the new formation of lymph +spaces or vessels, or from the dilatation of those which already exist; +their walls are composed of fibro-areolar tissue lined by endothelium +and strengthened by non-striped muscle. They are rarely provided with a +definite capsule, and frequently send prolongations of their substance +between and into muscles and other structures in their vicinity. They +are of congenital origin and usually make their appearance at or shortly +after birth. When the tumour is made up of a meshwork of caverns and +channels, it is called a _cavernous lymphangioma_; when it is composed +of one or more cysts, it is called a _cystic lymphangioma_. It is +probable that the cysts are derived from the caverns by breaking down +and absorption of the intervening septa, as transition forms between the +cavernous and cystic varieties are sometimes met with. + +The _cavernous lymphangioma_ appears as an ill-defined, soft swelling, +presenting many of the characters of a subcutaneous haemangioma, but it +is not capable of being emptied by pressure, it does not become tense +when the blood pressure is raised, as in crying, and if the tumour is +punctured, it yields lymph instead of blood. It also resembles a lipoma, +especially the congenital variety which grows from the periosteum, and +the differential diagnosis between these is rarely completed until the +swelling is punctured or explored by operation. If treatment is called +for, it is carried out on the same lines as for haemangioma, by means of +electrolysis, igni-puncture, or excision. Complete excision is rarely +possible because of the want of definition and encapsulation, but it is +not necessary for cure, as the parts that remain undergo cicatrisation. + +[Illustration: FIG. 76.--Congenital Cystic Tumour or Hygroma of Axilla. + +(From a photograph lent by Dr. Lediard.)] + +The _cystic lymphangioma_, _lymphatic cyst_, or _congenital cystic +hygroma_ is most often met with in the neck--_hydrocele of the neck_; it +is situated beneath the deep fascia, and projects either in front of or +behind the sterno-mastoid muscle. It may attain a large size, the +overlying skin and cyst wall may be so thin as to be translucent, and it +has been known to cause serious impairment of respiration through +pressing on the trachea. In the axilla also the cystic tumour may attain +a considerable size (Fig. 76); less frequent situations are the groin, +and the floor of the mouth, where it constitutes one form of ranula. + +The nature of these swellings is to be recognised by their situation, by +their having existed from infancy, and, if necessary, by drawing off +some of the contents of the cyst through a fine needle. They are usually +remarkably indolent, persisting often for a long term of years without +change, and, like the haemangioma, they sometimes undergo spontaneous +cicatrisation and cure. Sometimes the cystic tumour becomes infected and +forms an abscess--another, although less desirable, method of cure. +Those situated in the neck are most liable to suppurate, probably +because of pyogenic organisms being brought to them by the lymphatics +taking origin in the scalp, ear, or throat. + +If operative interference is called for, the cysts may be tapped and +injected with iodine, or excised; the operation for removal may entail a +considerable dissection amongst the deeper structures at the root of the +neck, and should not be lightly undertaken; parts left behind may be +induced to cicatrise by inserting a tube of radium and leaving it for a +few days. + +Lymphangiomas are met with in the abdomen in the form of _omental +cysts_. + + +DISEASES OF LYMPH GLANDS + +#Lymphadenitis.#--Inflammation of lymph glands results from the advent +of an irritant, usually bacterial or toxic, brought to the glands by the +afferent lymph vessels. These vessels may share in the inflammation and +be the seat of lymphangitis, or they may show no evidence of the passage +of the noxa. It is exceptional for the irritant to reach the gland +through the blood-stream. + +A strain or other form of trauma is sometimes blamed for the onset of +lymphadenitis, especially in the glands of the groin (bubo), but it is +usually possible to discover some source of pyogenic infection which is +responsible for the mischief, or to obtain a history of some antecedent +infection such as gonorrhoea. It is possible for gonococci to lie latent +in the inguinal glands for long periods, and only give rise to +lymphadenitis if the glands be subsequently subjected to injury. The +glands most frequently affected are those in the neck, axilla, and +groin. + +The characters of the lymphadenitis vary with the nature of the +irritant. Sometimes it is mild and evanescent, as in the glandular +enlargement in the neck which attends tonsillitis and other forms of +sore throat. Sometimes it is more persistent, as in the enlargement +that is associated with adenoids, hypertrophied tonsils, carious teeth, +eczema of the scalp, and otorrhoea; and it is possible that this indolent +enlargement predisposes to tuberculous infection. A similar enlargement +is met with in the axilla in cases of chronic interstitial mastitis, and +in the groin as a result of chronic irritation about the external +genitals, such as balanitis. + +Sometimes the lymphadenitis is of an acute character, and the tendency +is towards the formation of an abscess. This is illustrated in the +axillary glands as a result of infected wounds of the fingers; in the +femoral glands in infected wounds or purulent blisters on the foot; in +the inguinal glands in gonorrhoea and soft sore; and in the cervical +glands in the severer forms of sore throat associated with diphtheria +and scarlet fever. The most acute suppurations result from infection +with streptococci. + +Superficial glands, when inflamed and suppurating, become enlarged, +tender, fixed, and matted to one another. In the glands of the groin the +suppurative process is often remarkably sluggish; purulent foci form in +the interior of individual glands, and some time may elapse before the +pus erupts through their respective capsules. In the deeply placed +cervical glands, especially in cases of streptococcal throat infections, +the suppuration rapidly involves the surrounding cellular tissue, and +the clinical features are those of an acute cellulitis and deeply seated +abscess. When this is incised the necrosed glands may be found lying in +the pus, and on bacteriological examination are found to be swarming +with streptococci. In suppuration of the axillary glands the abscess may +be quite superficial, or it may be deeply placed beneath the strong +fascia and pectoral muscles, according to the group of glands involved. + +The _diagnosis_ of septic lymphadenitis is usually easy. The indolent +enlargements are not always to be distinguished, however, from +commencing tuberculous disease, except by the use of the tuberculin +test, and by the fact that they usually disappear on removing the +peripheral source of irritation. + +_Treatment._--The first indication is to discover and deal with the +source of infection, and in the indolent forms of lymphadenitis this +will usually be followed by recovery. In the acute forms following on +pyogenic infection, the best results are obtained from the hyperaemic +treatment carried out by means of suction bells. If suppuration is not +thereby prevented, or if it has already taken place, each separate +collection of pus is punctured with a narrow-bladed knife and the use of +the suction bell is persevered with. If there is a large periglandular +abscess, as is often the case, in the neck and axilla, the opening may +require to be made by Hilton's method, and it may be necessary to insert +a drainage-tube. + +[Illustration: FIG. 77.--Tuberculous Cervical Gland with abscess +formation in subcutaneous cellular tissue, in a boy aet. 10.] + +#Tuberculous Disease of Glands.#--This is a disease of great frequency +and importance. The tubercle bacilli usually gain access to the gland +through the afferent lymph vessels, which convey them from some lesion +of the surface within the area drained by them. Tuberculous infection +may supervene in glands that are already enlarged as a result of chronic +septic irritation. While any of the glands in the body may be affected, +the disease is most often met with in the cervical groups which derive +their lymph from the mouth, nose, throat, and ear. + +_The appearance of the glands on section_ varies with the stage of the +disease. In the early stages the gland is enlarged, it may be to many +times its natural size, is normal in appearance and consistence, and as +there is no peri-adenitis it is easily shelled out from its +surroundings. On microscopical examination, however, there is evidence +of infection in the shape of bacilli and of characteristic giant and +epithelioid cells. At a later stage, the gland tissue is studded with +minute yellow foci which tend to enlarge and in time to become +confluent, so that the whole gland is ultimately converted into a +caseous mass. This caseous material is surrounded by the thickened +capsule which, as a result of peri-adenitis, tends to become adherent to +and fused with surrounding structures, and particularly with layers of +fascia and with the walls of veins. The caseated tissue often remains +unchanged for long periods; it may become calcified, but more frequently +it breaks down and liquefies. + +#Tuberculous disease in the cervical glands# is a common accompaniment +or sequel of adenoids, enlarged tonsils, carious teeth, pharyngitis, +middle-ear disease, and conjunctivitis. These lesions afford the bacilli +a chance of entry into the lymph vessels, in which they are carried to +the glands, where they give rise to disease. + +The enlargement may affect only one gland, usually below the angle of +the mandible, and remain confined to it, the gland reaching the size of +a hazel-nut, and being ovoid, firm, and painless. More commonly the +disease affects several glands, on one or on both sides of the neck. +When the disease commences in the pre-auricular or submaxillary glands, +it tends to spread to those along the carotid sheath: when the posterior +auricular and occipital glands are first involved, the spread is to +those along the posterior border of the sterno-mastoid. In many cases +all the chains in front of, beneath, and behind this muscle are +involved, the enlarged glands extending from the mastoid to the +clavicle. They are at first discrete and movable, and may even vary in +size from time to time; but with the addition of peri-adenitis they +become fixed and matted together, forming lobulated or nodular masses +(Fig. 78). They become adherent not only to one another, but also to the +structures in their vicinity,--and notably to the internal jugular +vein,--a point of importance in regard to their removal by operation. + +At any stage the disease may be arrested and the glands remain for long +periods without further change. It is possible that the tuberculous +tissue may undergo cicatrisation. More commonly suppuration ensues, and +a cold abscess forms, but if there is a mixed infection, the pyogenic +factor being usually derived from the throat, it may take on active +features. + +[Illustration: FIG. 78.--Mass of Tuberculous Glands removed from Axilla +(cf. Fig. 79).] + +The transition from the solid to the liquefied stage is attended with +pain and tenderness in the gland, which at the same time becomes fixed +and globular, and finally fluctuation can be elicited. + +If left to itself, the softened tubercle erupts through the capsule of +the gland and infects the cellular tissue. The cervical fascia is +perforated and a cold abscess, often much larger than the gland from +which it took origin, forms between the fascia and the overlying skin. +The further stages--reddening, undermining of skin and external rupture, +with the formation of ulcers and sinuses--have been described with +tuberculous abscess. The ulcers and sinuses persist indefinitely, or +they heal and then break out again; sometimes the skin becomes infected, +and a condition like lupus spreads over a considerable area. Spontaneous +healing finally takes place after the caseous tubercle has been +extruded; the resulting scars are extremely unsightly, being puckered or +bridled, or hypertrophied like keloid. + +While the disease is most common in childhood and youth, it may be met +with even in advanced life; and although often associated with impaired +health and unhealthy surroundings, it may affect those who are +apparently robust and are in affluent circumstances. + +_Diagnosis._--The chief importance lies in differentiating tuberculous +disease from lympho-sarcoma and from lymphadenoma, and this is usually +possible from the history and from the nature of the enlargement. Signs +of liquefaction and suppuration support the diagnosis of tubercle. If +any doubt remains, one of the glands should be removed and submitted to +microscopical examination. Other forms of sarcoma, and the enlargement +of an accessory thyreoid, are less likely to be confused with +tuberculous glands. Calcified tuberculous glands give definite shadows +with the X-rays. + +Enlargement of the cervical glands from secondary cancer may simulate +tuberculosis, but is differentiated by its association with cancer in +the mouth or throat, and by the characteristic, stone-like induration of +epithelioma. + +The cold abscess which results from tuberculous glands is to be +distinguished from that due to disease in the cervical spine, +retro-pharyngeal abscess, as well as from congenital and other cystic +swellings in the neck. + +_Prognosis._--Next to lupus, glandular disease is of all tuberculous +lesions the least dangerous to life; but while it is the rule to recover +from tuberculous disease of glands with or without an operation, it is +unfortunately quite common for such persons to become the subjects of +tuberculosis in other parts of the body at any subsequent period of +life. + +_Treatment._--There is considerable difference of opinion regarding the +treatment of glandular tuberculosis. Some authorities, impressed with +the undoubted possibility of natural cure, are satisfied with promoting +this by measures directed towards improving the general health, by the +prolonged administration of tuberculin, and by repeated exposures to the +X-rays and to sunlight. Others again, influenced by the risk of +extension of the disease and by the destruction of tissue and +disfigurement caused by breaking down of the tuberculous tissue and +mixed infection, advocate the removal of the glands by operation. + +The conditions vary widely in different cases, and the treatment should +be adapted to the individual requirements. If the disease remains +confined to the glands originally infected and there are no signs of +breaking down, "expectant measures" may be persevered with. + +[Illustration: FIG. 79.--Tuberculous Axillary Glands (cf. Fig. 78).] + +If, on the other hand, the disease exhibits aggressive tendencies, the +question of operation should be considered. The undesirable results of +the breaking down and liquefaction of the diseased gland may be avoided +by the timely withdrawal of the fluid contents through a hollow needle. + +_The excision of tuberculous glands_ is often a difficult operation, +because of the number and deep situation of the glands to be removed, +and of the adhesions to surrounding structures. The skin incision must +be sufficiently extensive to give access to the whole of the affected +area, and to avoid disfigurement should, whenever possible, be made in +the line of the natural creases of the skin. In exposing the glands the +common facial and other venous trunks may require to be clamped and +tied. Care must be taken not to injure the important nerves, +particularly the accessory, the vagus, and the phrenic. The +inframaxillary branches of the facial, the hypoglossal and its +descending branches, and the motor branches of the deep cervical plexus, +are also liable to be injured. The dissection is rendered easier and is +attended with less risk of injury to the nerves, if the patient is +placed in the sitting posture so as to empty the veins, and, instead of +a knife, the conical scissors of Mayo are employed. When the glands are +extensively affected on both sides of the neck, it is advisable to allow +an interval to elapse rather than to operate on both sides at one +sitting. (_Op. Surg._, p. 189.) + +If the tonsils are enlarged they should not be removed at the same time, +as, by so doing, there is a risk of pyogenic infection from the throat +being carried to the wound in the neck, but they should be removed, +after an interval, to prevent relapse of disease in the glands. + +_When the skin is broken_ and caseous tuberculous tissue is exposed, +healing is promoted by cutting away diseased skin, removing the +granulation tissue with the spoon, scraping sinuses, and packing the +cavity with iodoform worsted and treating it by the open method and +secondary suture if necessary. Exposure to the sunshine on the seashore +and to the X-rays is often beneficial in these cases. + +#Tuberculous disease in the axillary glands# may be a result of +extension from those in the neck, from the mamma, ribs, or sternum, or +more rarely from the upper extremity. We have seen it from an infected +wound of a finger. In some cases no source of infection is discoverable. +The individual glands attain a considerable size, and they fuse together +to form a large tumour which fills up the axillary space. The disease +progresses more rapidly than it does in the cervical glands, and almost +always goes on to suppuration with the formation of sinuses. +Conservative measures need not be considered, as the only satisfactory +treatment is excision, and that without delay. + +#Tuberculous disease in the glands of the groin# is comparatively rare. +We have chiefly observed it in the femoral glands as a result of +inoculation tubercle on the toes or sole of the foot. The affected +glands nearly always break down and suppurate, and after destroying the +overlying skin give rise to fungating ulcers. The treatment consists in +excising the glands and the affected skin. The dissection may be +attended with troublesome haemorrhage from the numerous veins that +converge towards the femoral trunk. + +Tuberculous disease in the _mesenteric_ and _bronchial glands_ is +described with the surgery of regions. + +#Syphilitic Disease of Glands.#--Enlargement of lymph glands is a +prominent feature of acquired syphilis, especially in the form of the +indolent or bullet-bubo which accompanies the primary lesion, and the +general enlargement of glands that occurs in secondary syphilis. +Gummatous disease in glands is extremely rare; the affected gland +rapidly enlarges to the size of a walnut, and may then persist for a +long period without further change; if it breaks down, the overlying +skin is destroyed and the caseated tissue of the gumma exposed. + +#Lymphadenoma.#--_Hodgkin's Disease_ (Pseudo-leukaemia of German +authors).--This is a rare disease, the origin of which is as yet +unknown, but analogy would suggest that it is due to infection with a +slowly growing micro-organism. It is chiefly met with in young subjects, +and is characterised by a painless enlargement of a particular group of +glands, most commonly those in the cervical region (Fig. 80). + +[Illustration: FIG. 80.--Chronic Hodgkin's Disease in a boy aet. 11.] + +The glands are usually larger than in tuberculosis, and they remain +longer discrete and movable; they are firm in consistence, and on +section present a granular appearance due to overgrowth of the +connective-tissue framework. In time the glandular masses may form +enormous projecting tumours, the swelling being added to by lymphatic +oedema of the overlying cellular tissue and skin. + +The enlargement spreads along the chain of glands to those above the +clavicle, to those in the axilla, and to those of the opposite side +(Fig. 81). Later, the glands in the groin become enlarged, and it is +probable that the infection has spread from the neck along the +mediastinal, bronchial, retro-peritoneal, and mesenteric glands, and has +branched off to the iliac and inguinal groups. + +Two clinical types are recognised, one in which the disease progresses +slowly and remains confined to the cervical glands for two or more +years; the other, in which the disease is more rapidly disseminated and +causes death in from twelve to eighteen months. + +[Illustration: FIG. 81.--Lymphadenoma (Hodgkin's Disease) affecting left +side of neck and left axilla, in a woman aet. 44. Three years' duration.] + +In the acute form, the health suffers, there is fever, and the glands +may vary in size with variations in the temperature; the blood presents +the characters met with in secondary anaemia. The spleen, liver, testes, +and mammae may be enlarged; the glandular swellings press on important +structures, such as the trachea, oesophagus, or great veins, and symptoms +referable to such pressure manifest themselves. + +_Diagnosis._--Considerable difficulty attends the diagnosis of +lymphadenoma at an early stage. The negative results of tuberculin tests +may assist in the differentiation from tuberculous disease, but the more +certain means of excising one of the suspected glands and submitting it +to microscopical examination should be had recourse to. The sections +show proliferation of endothelial cells, the formation of numerous giant +cells quite unlike those of tuberculosis and a progressive fibrosis. +Lympho-sarcoma can usually be differentiated by the rapid assumption of +the local features of malignant disease, and in a gland removed for +examination, a predominance of small round cells with scanty protoplasm. +The enlargement associated with leucocythaemia is differentiated by the +characteristic changes in the blood. + +_Treatment._--In the acute form of lymphadenoma, treatment is of little +avail. Arsenic may be given in full doses either by the mouth or by +subcutaneous injection; the intravenous administration of neo-salvarsan +may be tried. Exposure to the X-rays and to radium has been more +successful than any other form of treatment. Excision of glands, +although sometimes beneficial, seldom arrests the progress of the +disease. The ease and rapidity with which large masses of glands may be +shelled out is in remarkable contrast to what is observed in tuberculous +disease. Surgical interference may give relief when important structures +are being pressed upon--tracheotomy, for example, may be required where +life is threatened by asphyxia. + +#Leucocythaemia.#--This is a disease of the blood and of the +blood-forming organs, in which there is a great increase in the number, +and an alteration of the character, of the leucocytes present in the +blood. It may simulate lymphadenoma, because, in certain forms of the +disease, the lymph glands, especially those in the neck, axilla, and +groin, are greatly enlarged. + + +TUMOURS OF LYMPH GLANDS + +#Primary Tumours.#--_Lympho-sarcoma_, which may be regarded as a sarcoma +starting in a lymph gland, appears in the neck, axilla, or groin as a +rapidly growing tumour consisting of one enlarged gland with numerous +satellites. As the tumour increases in size, the sarcomatous tissue +erupts through the capsule of the gland, and infiltrates the surrounding +tissues, whereby it becomes fixed to these and to the skin. + +[Illustration: FIG. 82.--Lympho-Sarcoma removed from Groin. It will be +observed that there is one large central parent tumour surrounded by +satellites.] + +The prognosis is grave in the extreme, and the only hope is in early +excision, followed by the use of radium and X-rays. We have observed a +case of lympho-sarcoma above the clavicle, in which excision of all that +was removable, followed by the insertion of a tube of radium for ten +days, was followed by a disappearance of the disease over a period which +extended to nearly five years, when death resulted from a tumour in the +mediastinum. In a second case in which the growth was in the groin, the +patient, a young man, remained well for over two years and was then lost +sight of. + +#Secondary Tumours.#--Next to tuberculosis, _secondary cancer_ is the +most common disease of lymph glands. In the neck it is met with in +association with epithelioma of the lip, tongue, or fauces. The glands +form tumours of variable size, and are often larger than the primary +growth, the characters of which they reproduce. The glands are at first +movable, but soon become fixed both to each other and to their +surroundings; when fixed to the mandible they form a swelling of +bone-like hardness; in time they soften, liquefy, and burst through the +skin, forming foul, fungating ulcers. A similar condition is met with in +the groin from epithelioma of the penis, scrotum, or vulva. In cancer of +the breast, the infection of the axillary glands is an important +complication. + +In _pigmented_ or _melanotic cancers_ of the skin, the glands are early +infected and increase rapidly, so that, when the primary growth is still +of small size--as, for example, on the sole of the foot--the femoral +glands may already constitute large pigmented tumours. + +[Illustration: FIG. 83.--Cancerous Glands in Neck secondary to +Epithelioma of Lip. + +(Mr. G. L. Chiene's case.)] + +The implication of the glands in other forms of cancer will be +considered with regional surgery. + +_Secondary sarcoma_ is seldom met with in the lymph glands except when +the primary growth is a lympho-sarcoma and is situated in the tonsil, +thyreoid, or testicle. + + + + +CHAPTER XVI + +THE NERVES + + +Anatomy--INJURIES OF NERVES: Changes in nerves after division; + Repair and its modifications; Clinical features; _Primary and + secondary suture_--SUBCUTANEOUS INJURIES OF + NERVES--DISEASES: _Neuritis_; _Tumours_--Surgery of + the individual nerves: _Brachial neuralgia_; _Sciatica_; + _Trigeminal neuralgia_. + +#Anatomy.#--A nerve-trunk is made up of a variable number of bundles of +nerve fibres surrounded and supported by a framework of connective +tissue. The nerve fibres are chiefly of the medullated type, and they +run without interruption from a nerve cell or _neuron_ in the brain or +spinal medulla to their peripheral terminations in muscle, skin, and +secretory glands. + +Each nerve fibre consists of a number of nerve fibrils collected into a +central bundle--the axis cylinder--which is surrounded by an envelope, +the neurolemma or sheath of Schwann. Between the neurolemma and the axis +cylinder is the medullated sheath, composed of a fatty substance known +as myelin. This medullated sheath is interrupted at the nodes of +Ranvier, and in each internode is a nucleus lying between the myelin and +the neurolemma. The axis cylinder is the essential conducting structure +of the nerve, while the neurolemma and the myelin act as insulating +agents. The axis cylinder depends for its nutrition on the central +neuron with which it is connected, and from which it originally +developed, and it degenerates if it is separated from its neuron. + +The connective-tissue framework of a nerve-trunk consists of the +_perineurium_, or general sheath, which surrounds all the bundles; the +_epineurium_, surrounding individual groups of bundles; and the +_endoneurium_, a delicate connective tissue separating the individual +nerve fibres. The blood vessels and lymphatics run in these +connective-tissue sheaths. + +According to Head and his co-workers, Sherren and Rivers, the afferent +fibres in the peripheral nerves can be divided into three systems:-- + +1. Those which subserve _deep sensibility_ and conduct the impulses +produced by pressure as well as those which enable the patient to +recognise the position of a joint on passive movement (joint-sensation), +and the kinaesthetic sense, which recognises that active contraction of +the muscle is taking place (active muscle-sensation). The fibres of this +system run with the motor nerves, and pass to muscles, tendons, and +joints. Even division of both the ulnar and the median nerves above the +wrist produces little loss of deep sensibility, unless the tendons are +also cut through. The failure to recognise this form of sensibility has +been largely responsible for the conflicting statements as to the +sensory phenomena following operations for the repair of divided nerves. + +2. Those which subserve _protopathic_ sensibility--that is, are capable +of responding to painful cutaneous stimuli and to the extremes of heat +and cold. These also endow the hairs with sensibility to pain. They are +the first to regenerate after division. + +3. Those which subserve _epicritic_ sensibility, the most highly +specialised, capable of appreciating light touch, _e.g._ with a wisp of +cotton wool, as a well-localised sensation, and the finer grades of +temperature, called cool and warm (72 o-104 o F.), and of discriminating +as separate the points of a pair of compasses 2 cms. apart. These are +the last to regenerate. + +A nerve also exerts a trophic influence on the tissues in which it is +distributed. + +The researches of Stoffel on the minute anatomy of the larger nerves, +and the disposition in them of the bundles of nerve fibres supplying +different groups of muscles, have opened up what promises to be a +fruitful field of clinical investigation and therapeutics. He has shown +that in the larger nerve-trunks the nerve bundles for special groups of +muscles are not, as was formerly supposed, arranged irregularly and +fortuitously, but that on the contrary the nerve fibres to a particular +group of muscles have a typical and practically constant position within +the nerve. + +In the large nerve-trunks of the limbs he has worked out the exact +position of the bundles for the various groups of muscles, so that in a +cross section of a particular nerve the component bundles can be +labelled as confidently and accurately as can be the cortical areas in +the brain. In the living subject, by using a fine needle-like electrode +and a very weak galvanic current, he has been able to differentiate the +nerve bundles for the various groups of muscles. In several cases of +spastic paralysis he succeeded in picking out in the nerve-trunk of the +affected limb the nerve bundles supplying the spastic muscles, and, by +resecting portions of them, in relieving the spasm. In a case of spastic +contracture of the pronator muscles of the forearm, for example, an +incision is made along the line of the median nerve above the bend of +the elbow. At the lateral side of the median nerve, where it lies in +contact with the biceps muscle, is situated a well-defined and easily +isolated bundle of fibres which supplies the pronator teres, the flexor +carpi radialis, and the palmaris longus muscles. On incising the sheath +of the nerve this bundle can be readily dissected up and its identity +confirmed by stimulating it with a very weak galvanic current. An inch +or more of the bundle is then resected. + + +INJURIES OF NERVES + +Nerves are liable to be cut or torn across, bruised, compressed, +stretched, or torn away from their connections with the spinal medulla. + +#Complete Division of a Mixed Nerve.#--Complete division is a common +result of accidental wounds, especially above the wrist, where the +ulnar, median, and radial nerves are frequently cut across, and in +gun-shot injuries. + +_Changes in Structure and Function._--The mere interruption of the +continuity of a nerve results in degeneration of its fibres, the myelin +being broken up into droplets and absorbed, while the axis cylinders +swell up, disintegrate, and finally disappear. Both the conducting and +the insulating elements are thus lost. The degeneration in the central +end of the divided nerve is usually limited to the immediate proximity +of the lesion, and does not even involve all the nerve fibres. In the +distal end, it extends throughout the entire peripheral distribution of +the nerve, and appears to be due to the cutting off of the fibres from +their trophic nerve cells in the spinal medulla. Immediate suturing of +the ends does not affect the degeneration of the distal segment. The +peripheral end undergoes complete degeneration in from six weeks to two +months. + +The physiological effects of complete division are that the muscles +supplied by the nerve are immediately paralysed, the area to which it +furnishes the sole cutaneous supply becomes insensitive, and the other +structures, including tendons, bones, and joints, lose sensation, and +begin to atrophy from loss of the trophic influence. + +#Nerves divided in Amputation.#--In the case of nerves divided in an +amputation, there is an active, although necessarily abortive, attempt +at regeneration, which results in the formation of bulbous swellings at +the cut ends of the nerves. When there has been suppuration, and +especially if the nerves have been cut so as to be exposed in the wound, +these bulbous swellings may attain an abnormal size, and are then known +as "amputation" or "stump neuromas" (Fig. 84). + +When the nerves in a stump have not been cut sufficiently short, they +may become involved in the cicatrix, and it may be necessary, on account +of pain, to free them from their adhesions, and to resect enough of the +terminal portions to prevent them again becoming adherent. When this is +difficult, a portion may be resected from each of the nerve-trunks at a +higher level; and if this fails to give relief, a fresh amputation may +be performed. When there is agonising pain dependent upon an ascending +neuritis, it may be necessary to resect the corresponding posterior +nerve roots within the vertebral canal. + +[Illustration: FIG. 84.--Stump Neuromas of Sciatic Nerve, excised forty +years after the original amputation by Mr. A. G. Miller.] + +#Other Injuries of Nerves.#--_Contusion_ of a nerve-trunk is attended +with extravasation of blood into the connective-tissue sheaths, and is +followed by degeneration of the contused nerve fibres. Function is +usually restored, the conducting paths being re-established by the +formation of new nerve fibres. + +When a nerve is _torn across_ or badly _crushed_--as, for example, by a +fractured bone--the changes are similar to those in a divided nerve, and +the ultimate result depends on the amount of separation between the ends +and the possibility of the young axis cylinders bridging the gap. + +_Involvement of Nerves in Scar Tissue._--Pressure or traction may be +exerted upon a nerve by contracting scar tissue, or a process of +neuritis or perineuritis may be induced. + +When terminal filaments are involved in a scar, it is best to dissect +out the scar, and along with it the ends of the nerves pressed upon. +When a nerve-trunk, such as the sciatic, is involved in cicatricial +tissue, the nerve must be exposed and freed from its surroundings +(_neurolysis_), and then stretched so as to tear any adhesions that may +be present above or below the part exposed. It may be advisable to +displace the liberated nerve from its original position so as to +minimise the risk of its incorporation in the scar of the original wound +or in that resulting from the operation--for example, the radial nerve +may be buried in the substance of the triceps, or it may be surrounded +by a segment of vein or portion of fat-bearing fascia. + +_Injuries of nerves resulting from_ #gun-shot wounds# include: (1) those +in which the nerve is directly damaged by the bullet, and (2) those in +which the nerve-trunk is involved secondarily either by scar tissue in +its vicinity or by callus following fracture of an adjacent bone. The +primary injuries include contusion, partial or complete division, and +perforation of the nerve-trunk. One of the most constant symptoms is the +early occurrence of severe neuralgic pain, and this is usually +associated with marked hyperaesthesia. + +#Regeneration.#--_Process of Repair when the Ends are in Contact._--_If +the wound is aseptic_, and the ends of the divided nerve are sutured or +remain in contact, they become united, and the conducting paths are +re-established by a regeneration of nerve fibres. There is a difference +of opinion as to the method of regeneration. The Wallerian doctrine is +that the axis cylinders in the central end grow downwards, and enter the +nerve sheaths of the distal portion, and continue growing until they +reach the peripheral terminations in muscle and skin, and in course of +time acquire a myelin sheath; the cells of the neurolemma multiply and +form long chains in both ends of the nerve, and are believed to provide +for the nourishment and support of the actively lengthening axis +cylinders. Another view is that the formation of new axis cylinders is +not confined to the central end, but that it goes on also in the +peripheral segment, in which, however, the new axis cylinders do not +attain maturity until continuity with the central end has been +re-established. + +_If the wound becomes infected_ and suppuration occurs, the young nerve +fibres are destroyed and efficient regeneration is prevented; the +formation of scar tissue also may constitute a permanent obstacle to new +nerve fibres bridging the gap. + +_When the ends are not in contact_, reunion of the divided nerve fibres +does not take place whether the wound is infected or not. At the +proximal end there forms a bulbous swelling, which becomes adherent to +the scar tissue. It consists of branching axis cylinders running in all +directions, these having failed to reach the distal end because of the +extent of the gap. The peripheral end is completely degenerated, and is +represented by a fibrous cord, the cut end of which is often slightly +swollen or bulbous, and is also incorporated with the scar tissue of +the wound. + +#Clinical Features.#--The symptoms resulting from division and non-union +of a nerve-trunk necessarily vary with the functions of the affected +nerve. The following description refers to a mixed sensori-motor trunk, +such as the median or radial (musculo-spiral) nerve. + +_Sensory Phenomena._--Superficial touch is tested by means of a wisp of +cotton wool stroked gently across the skin; the capacity of +discriminating two points as separate, by a pair of blunt-pointed +compasses; the sensation of pressure, by means of a pencil or other +blunt object; of pain, by pricking or scratching with a needle; and of +sensibility to heat and cold, by test-tubes containing water at +different temperatures. While these tests are being carried out, the +patient's eyes are screened off. + +After division of a nerve containing sensory fibres, there is an area of +absolute cutaneous insensibility to touch (anaesthesia), to pain +(analgesia), and to all degrees of temperature--_loss of protopathic +sensibility_; surrounded by an area in which there is loss of sensation +to light touch, inability to recognise minor differences of temperature +(72 o-104 o F.), and to appreciate as separate impressions the contact of +the two points of a compass--_loss of epicritic sensibility_ (Head and +Sherren) (Figs. 91, 92). + +_Motor Phenomena._--There is immediate and complete loss of voluntary +power in the muscles supplied by the divided nerve. The muscles rapidly +waste, and within from three to five days, they cease to react to the +faradic current. When tested with the galvanic current, it is found that +a stronger current must be used to call forth contraction than in a +healthy muscle, and the contraction appears first at the closing of the +circuit when the anode is used as the testing electrode. The loss of +excitability to the interrupted current, and the specific alteration in +the type of contraction with the constant current, is known as the +_reaction of degeneration_. After a few weeks all electric excitability +is lost. The paralysed muscles undergo fatty degeneration, which attains +its maximum three or four months after the division of the nerve. +Further changes may take place, and result in the transformation of the +muscle into fibrous tissue, which by undergoing shortening may cause +deformity known as _paralytic contracture_. + +_Vaso-motor Phenomena._--In the majority of cases there is an initial +rise in the temperature of the part (2 o to 3 o F.), with redness and +increased vascularity. This is followed by a fall in the local +temperature, which may amount to 8 o or 10 o F., the parts becoming pale +and cold. Sometimes the hyperaemia resulting from vaso-motor paralysis is +more persistent, and is associated with swelling of the parts from +oedema--the so-called _angio-neurotic oedema_. The vascularity varies with +external influences, and in cold weather the parts present a bluish +appearance. + +_Trophic Phenomena._--Owing to the disappearance of the subcutaneous +fat, the skin is smooth and thin, and may be abnormally dry. The hair is +harsh, dry, and easily shed. The nails become brittle and furrowed, or +thick and curved, and the ends of the fingers become club-shaped. Skin +eruptions, especially in the form of blisters, occur, or there may be +actual ulcers of the skin, especially in winter. In aggravated cases the +tips of the fingers disappear from progressive ulceration, and in the +sole of the foot a perforating ulcer may develop. Arthropathies are +occasionally met with, the joints becoming the seat of a painless +effusion or hydrops, which is followed by fibrous thickening of the +capsular and other ligaments, and terminates in stiffness and fibrous +ankylosis. In this way the fingers are seriously crippled and deformed. + +#Treatment of Divided Nerves.#--The treatment consists in approximating +the divided ends of the nerve and placing them under the most favourable +conditions for repair, and this should be done at the earliest possible +opportunity. (_Op. Surg._, pp. 45, 46.) + +#Primary Suture.#--The reunion of a recently divided nerve is spoken of +as primary suture, and for its success asepsis is essential. As the +suturing of the ends of the nerve is extremely painful, an anaesthetic is +required. + +When the wound is healed and while waiting for the restoration of +function, measures are employed to maintain the nutrition of the damaged +nerve and of the parts supplied by it. The limb is exercised, massaged, +and douched, and protected from cold and other injurious influences. The +nutrition of the paralysed muscles is further improved by electricity. +The galvanic current is employed, using at first a mild current of not +more than 5 milliamperes for about ten minutes, the current being made +to flow downwards in the course of the nerve, with the positive +electrode applied to the spine, and the negative over the affected nerve +near its termination. It is an advantage to have a metronome in the +circuit whereby the current is opened and closed automatically at +intervals, so as to cause contraction of the muscles. + +_The results_ of primary suture, when it has been performed under +favourable conditions, are usually satisfactory. In a series of cases +investigated by Head and Sherren, the period between the operation and +the first return of sensation averaged 65 days. According to Purves +Stewart protopathic sensation commences to appear in about six weeks and +is completely restored in six months; electric sensation and motor power +reappear together in about six months, and restoration is complete in a +year. When sensation returns, the area of insensibility to pain steadily +diminishes and disappears; sensibility to extremes of temperature +appears soon after; and last of all, after a considerable interval, +there is simultaneous return of appreciation of light touch, moderate +degrees of temperature, and the points of a compass. + +A clinical means of estimating how regeneration in a divided nerve is +progressing has been described by Tinel. He found that a tingling +sensation, similar to that experienced in the foot, when it is +recovering from the "sleeping" condition induced by prolonged pressure +on the sciatic nerve from sitting on a hard bench, can be elicited on +percussing over _growing_ axis cylinders. Tapping over the proximal end +of a _newly divided nerve_, _e.g._ the common peroneal behind the head +of the fibula, produces no tingling, but when in about three weeks +axis cylinders begin to grow in the proximal end-bulb, local tingling is +induced by tapping there. The downward growth of the axis cylinders can +be traced by tapping over the distal segment of the nerve, the tingling +sensation being elicited as far down as the young axis cylinders have +reached. When the regeneration of the axis cylinders is complete, +tapping no longer causes tingling. It usually takes about one hundred +days for this stage to be reached. + +Tinel's sign is present before voluntary movement, muscular tone, or the +normal electrical reactions reappear. + +In cases of complete nerve paralysis that have not been operated upon, +the tingling test is helpful in determining whether or not regeneration +is taking place. Its detection may prevent an unnecessary operation +being performed. + +Primary suture should not be attempted so long as the wound shows signs +of infection, as it is almost certain to end in failure. The ends should +be sutured, however, as soon as the wound is aseptic or has healed. + +#Secondary Suture.#--The term secondary suture is applied to the +operation of stitching the ends of the divided nerve after the wound has +healed. + +_Results of Secondary Suture._--When secondary suture has been performed +under favourable conditions, the prognosis is good, but a longer time is +required for restoration of function than after primary suture. Purves +Stewart says protopathic sensation is sometimes observed much earlier +than in primary suture, because partial regeneration of axis cylinders +in the peripheral segment has already taken place. Sensation is +recovered first, but it seldom returns before three or four months. +There then follows an improvement or disappearance of any trophic +disturbances that may be present. Recovery of motion may be deferred for +long periods--rather because of the changes in the muscles than from +want of conductivity in the nerve--and if the muscles have undergone +complete degeneration, it may never take place at all. While waiting for +recovery, every effort should be made to maintain the nutrition of the +damaged nerve, and of the parts which it supplies. + +When suture is found to be impossible, recourse must be had to other +methods, known as nerve bridging and nerve implantation. + +#Incomplete Division of a Mixed Nerve.#--The effects of partial division +of a mixed nerve vary according to the destination of the nerve bundles +that have been interrupted. Within their area of distribution the +paralysis is as complete as if the whole trunk had been cut across. The +uninjured nerve-bundles continue to transmit impulses with the result +that there is a _dissociated paralysis_ within the distribution of the +affected nerve, some muscles continuing to act and to respond normally +to electric stimulation, while others behave as if the whole nerve-trunk +had been severed. + +In addition to vasomotor and trophic changes, there is often severe pain +of a burning kind (_causalgia_ or _thermalgia_) which comes on about a +fortnight after the injury and causes intense and continuous suffering +which may last for months. Paroxysms of pain may be excited by the +slightest touch or by heat, and the patient usually learns for himself +that the constant application of cold wet cloths allays the pain. The +thermalgic area sweats profusely. + +Operative treatment is indicated where there is no sign of improvement +within three months, when recovery is arrested before complete +restoration of function is attained, or when thermalgic pain is +excessive. + +#Subcutaneous Injuries of Nerves.#--Several varieties of subcutaneous +injuries of nerves are met with. One of the best known is the +compression paralysis of the nerves of the upper arm which results from +sleeping with the arm resting on the back of a chair or the edge of a +table--the so-called "drunkard's palsy"; and from the pressure of a +crutch in the axilla--"crutch paralysis." In some of these injuries, +notably "drunkard's palsy," the disability appears to be due not to +damage of the nerve, but to overstretching of the extensors of the wrist +and fingers (Jones). A similar form of paralysis is sometimes met with +from the pressure of a tourniquet, from tight bandages or splints, from +the pressure exerted by a dislocated bone or by excessive callus, and +from hyper-extension of the arm during anaesthesia. + +In all these forms there is impaired sensation, rarely amounting to +anaesthesia, marked muscular wasting, and diminution or loss of voluntary +motor power, while--and this is a point of great importance--the normal +electrical reactions are preserved. There may also develop trophic +changes such as blisters, superficial ulcers, and clubbing of the tips +of the fingers. The prognosis is usually favourable, as recovery is the +rule within from one to three months. If, however, neuritis supervenes, +the electrical reactions are altered, the muscles degenerate, and +recovery may be retarded or may fail to take place. + +Injuries which act abruptly or instantaneously are illustrated in the +crushing of a nerve by the sudden displacement of a sharp-edged fragment +of bone, as may occur in comminuted fractures of the humerus. The +symptoms include perversion or loss of sensation, motor paralysis, and +atrophy of muscles, which show the reaction of degeneration from the +eighth day onwards. The presence of the reaction of degeneration +influences both the prognosis and the treatment, for it implies a lesion +which is probably incapable of spontaneous recovery, and which can only +be remedied by operation. + +The _treatment_ varies with the cause and nature of the lesion. When, +for example, a displaced bone or a mass of callus is pressing upon the +nerve, steps must be taken to relieve the pressure, by operation if +necessary. When there is reason to believe that the nerve is severely +crushed or torn across, it should be exposed by incision, and, after +removal of the damaged ends, should be united by sutures. When it is +impossible to make a definite diagnosis as to the state of the nerve, it +is better to expose it by operation, and thus learn the exact state of +affairs without delay; in the event of the nerve being torn, the ends +should be united by sutures. + +#Dislocation of Nerves.#--This injury, which resembles the dislocation +of tendons from their grooves, is seldom met with except in the ulnar +nerve at the elbow, and is described with injuries of that nerve. + + +DISEASES OF NERVES + +#Traumatic Neuritis.#--This consists in an overgrowth of the +connective-tissue framework of a nerve, which causes irritation and +pressure upon the nerve fibres, sometimes resulting in their +degeneration. It may originate in connection with a wound in the +vicinity of a nerve, as, for example, when the brachial nerves are +involved in scar tissue subsequent to an operation for clearing out the +axilla for cancer; or in contusion and compression of a nerve--for +example, by the pressure of the head of the humerus in a dislocation of +the shoulder. Some weeks or months after the injury, the patient +complains of increasing hyperaesthesia and of neuralgic pains in the +course of the nerve. The nerve is very sensitive to pressure, and, if +superficial, may be felt to be swollen. The associated muscles are +wasted and weak, and are subject to twitchings. There are also trophic +disturbances. It is rare to have complete sensory and motor paralysis. +The disease is commonest in the nerves of the upper extremity, and the +hand may become crippled and useless. + +_Treatment._--Any constitutional condition which predisposes to +neuritis, such as gout, diabetes, or syphilis, must receive appropriate +treatment. The symptoms may be relieved by rest and by soothing +applications, such as belladonna, ichthyol, or menthol, by the use of +hot-air and electric baths, and in obstinate cases by blistering or by +the application of Corrigan's button. When such treatment fails the +nerve may be stretched, or, in the case of a purely sensory trunk, a +portion may be excised. Local causes, such as involvement of the nerve +in a scar or in adhesions, may afford indications for operative +treatment. + +#Multiple Peripheral Neuritis.#--Although this disease mainly comes +under the cognizance of the physician, it may be attended with phenomena +which call for surgical interference. In this country it is commonly due +to alcoholism, but it may result from diabetes or from chronic poisoning +with lead or arsenic, or from bacterial infections and intoxications +such as occur in diphtheria, gonorrhoea, syphilis, leprosy, typhoid, +influenza, beri-beri, and many other diseases. + +It is, as a rule, widely distributed throughout the peripheral nerves, +but the distribution frequently varies with the cause--the alcoholic +form, for example, mainly affecting the legs, the diphtheritic form the +soft palate and pharynx, and that associated with lead poisoning the +forearms. The essential lesion is a degeneration of the conducting +fibres of the affected nerves, and the prominent symptoms are the result +of this. In alcoholic neuritis there is great tenderness of the muscles. +When the legs are affected the patient may be unable to walk, and the +toes may droop and the heel be drawn up, resulting in one variety of pes +equino-varus. Pressure sores and perforating ulcer of the foot are the +most important trophic phenomena. + +Apart from the medical _treatment_, measures must be taken to prevent +deformity, especially when the legs are affected. The bedclothes are +supported by a cage, and the foot maintained at right angles to the leg +by sand-bags or splints. When the disease is subsiding, the nutrition of +the damaged nerves and muscles should be maintained by massage, baths, +passive movements, and the use of the galvanic current. When deformity +has been allowed to take place, operative measures may be required for +its correction. + + +NEUROMA[5] + +[5] We have followed the classification adopted by Alexis Thomson in his +work _On Neuroma, and Neuro-fibromatosis_ (Edinburgh: 1900). + +Neuroma is a clinical term applied to all tumours, irrespective of their +structure, which have their seat in nerves. + +A tumour composed of newly formed nerve tissue is spoken of as a #true +neuroma#; when ganglionic cells are present in addition to nerve fibres, +the name _ganglionic neuroma_ is applied. These tumours are rare, and +are chiefly met with in the main cords or abdominal plexuses of the +sympathetic system of children or young adults. They are quite +insensitive, and their removal is only called for if they cause pain or +show signs of malignancy. + +A #false neuroma# is an overgrowth of the sheath of a nerve. This +overgrowth may result in the formation of a circumscribed tumour, or may +take the form of a diffuse fibromatosis. + +_The circumscribed or solitary tumour_ grows from the sheath of a nerve +which is otherwise healthy, and it may be innocent or malignant. + +_The innocent_ form is usually fibrous or myxomatous, and is definitely +encapsulated. It may become cystic as a result of haemorrhage or of +myxomatous degeneration. It grows very slowly, is usually elliptical in +shape, and the solid form is rarely larger than a hazel-nut. The nerve +fibres may be spread out all round the tumour, or may run only on one +side of it. When subcutaneous and related to the smaller unnamed +cutaneous nerves, it is known as a _painful subcutaneous nodule_ or +_tubercle_. It is chiefly met with about the ankle, and most often in +women. It is remarkably sensitive, even gentle handling causing intense +pain, which usually radiates to the periphery of the nerve affected. +When related to a deeper, named nerve-trunk, it is known as a +_trunk-neuroma_. It is usually less sensitive than the "subcutaneous +nodule," and rarely gives rise to motor symptoms unless it involves the +nerve roots where they pass through bony canals. + +A trunk-neuroma is recognised clinically by its position in the line of +a nerve, by the fact that it is movable in the transverse axis of the +nerve but not in its long axis, and by being unduly painful and +sensitive. + +[Illustration: FIG. 85.--Amputation Stump of Upper Arm, showing bulbous +thickening of the ends of the nerves, embedded in scar tissue at the +apex of the stamp.] + +_Treatment._--If the tumour causes suffering it should be removed, +preferably by shelling it out from the investing nerve sheath or +capsule. In the subcutaneous nodule the nerve is rarely recognisable, +and is usually sacrificed. When removal of the tumour is incomplete, a +tube of radium should be inserted into the cavity, to prevent recurrence +of the tumour in a malignant form. + +_The malignant neuroma_ is a sarcoma growing from the sheath of a nerve. +It has the same characters and clinical features as the innocent +variety, only it grows more rapidly, and by destroying the nerve fibres +causes motor symptoms--jerkings followed by paralysis. The sarcoma tends +to spread along the lymph spaces in the long axis of the nerve, as well +as to implicate the surrounding tissues, and it is liable to give rise +to secondary growths. The malignant neuroma is met with chiefly in the +sciatic and other large nerves of the limbs. + +The _treatment_ is conducted on the same lines as sarcoma in other +situations; the insertion of a tube of radium after removal of the +tumour diminishes the tendency to recurrence; a portion of the +nerve-trunk being sacrificed, means must be taken to bridge the gap. In +inoperable cases it may be possible to relieve pain by excising a +portion of the nerve above the tumour, or, when this is impracticable, +by resecting the posterior nerve roots and their ganglia within the +vertebral canal. + +The so-called _amputation neuroma_ has already been referred to (p. 344). + +_Diffuse or Generalised Neuro-Fibromatosis--Recklinghausen's +Disease._--These terms are now used to include what were formerly known +as "multiple neuromata," as well as certain other overgrowths related to +nerves. The essential lesion is an overgrowth of the endoneural +connective tissue throughout the nerves of both the cerebro-spinal and +sympathetic systems. The nerves are diffusely and unequally thickened, +so that small twigs may become enlarged to the size of the median, while +at irregular intervals along their course the connective-tissue +overgrowth is exaggerated so as to form tumour-like swellings similar to +the trunk-neuroma already described. The tumours, which vary greatly in +size and number--as many as a thousand have been counted in one +case--are enclosed in a capsule derived from the perineurium. The +fibromatosis may also affect the cranial nerves, the ganglia on the +posterior nerve roots, the nerves within the vertebral canal, and the +sympathetic nerves and ganglia, as well as the continuations of the +motor nerves within the muscles. The nerve fibres, although mechanically +displaced and dissociated by the overgrown endoneurium, undergo no +structural change except when compressed in passing through a bony +canal. + +The disease probably originates before birth, although it may not make +its appearance till adolescence or even till adult life. It is sometimes +met with in several members of one family. It is recognised clinically +by the presence of multiple tumours in the course of the nerves, and +sometimes by palpable enlargement of the superficial nerve-trunks +(Fig. 86). The tumours resemble the solitary trunk-neuroma, are usually +quite insensitive, and many of them are unknown to the patient. As a +result of injury or other exciting cause, however, one or other tumour +may increase in size and become extremely sensitive; the pain is then +agonising; it is increased by handling, and interferes with sleep. In +these conditions, a malignant transformation of the fibroma into sarcoma +is to be suspected. Motor disturbances are exceptional, unless in the +case of tumours within the vertebral canal, which press on the spinal +medulla and cause paraplegia. + +[Illustration: FIG. 86.--Diffuse enlargement of Nerves in generalised +Neuro-fibromatosis. + +(After R. W. Smith.)] + +Neuro-fibromatosis is frequently accompanied by _pigmentation of the +skin_ in the form of brown spots or patches scattered over the trunk. + +The disease is often stationary for long periods. In progressive cases +the patient becomes exhausted, and usually dies of some intercurrent +affection, particularly phthisis. The treatment is restricted to +relieving symptoms and complications; removal of one of the tumours is +to be strongly deprecated. + +In a considerable proportion of cases one of the multiple tumours takes +on the characters of a malignant growth ("secondary malignant neuroma," +Garre). This malignant transformation may follow upon injury, or on an +unsuccessful attempt to remove the tumour. The features are those of a +rapidly growing sarcoma involving a nerve-trunk, with agonising pain +and muscular cramps, followed by paralysis from destruction of the +nerve fibres. The removal of the tumour is usually followed by +recurrence, so that high amputation is the only treatment to be +recommended. Metastasis to internal organs is exceptional. + +[Illustration: FIG. 87.--Plexiform Neuroma of small Sciatic Nerve, from +a girl aet. 16. + +(Mr. Annandale's case.)] + +There are other types of neuro-fibromatosis which require brief mention. + +_The plexiform neuroma_ (Fig. 87) is a fibromatosis confined to the +distribution of one or more contiguous nerves or of a plexus of nerves, +and it may occur either by itself or along with multiple tumours of the +nerve-trunks and with pigmentation of the skin. The clinical features +are those of an ill-defined swelling composed of a number of tortuous, +convoluted cords, lying in a loose areolar tissue and freely movable on +one another. It is rarely the seat of pain or tenderness. It most often +appears in the early years of life, sometimes in relation to a pigmented +or hairy mole. It is of slow growth, may remain stationary for long +periods, and has little or no tendency to become malignant. It is +usually subcutaneous, and is frequently situated on the head or neck in +the distribution of the trigeminal or superficial cervical nerves. There +is no necessity for its removal, but this may be indicated because of +disfigurement, especially on the face or scalp or because its bulk +interferes with function. When involving the ophthalmic division of the +trigeminus, for example, it may cause enlargement of the upper lid and +proptosis, with danger to the function of the globe. The results of +excision are usually satisfactory, even if the removal is not complete. + +[Illustration: FIG. 88.--Multiple Neuro-fibromas of Skin (Molluscum +fibrosum, or Recklinghausen's disease).] + +_The cutaneous neuro-fibroma_ or _molluscum fibrosum_ has been shown by +Recklinghausen to be a soft fibroma related to the terminal filaments of +one of the cutaneous nerves (Fig. 88). The disease appears in the form +of multiple, soft, projecting tumours, scattered all over the body, +except the palms of the hands and soles of the feet. The tumours are of +all sizes, some being no larger than a pin's head, whilst many are as +big as a filbert and a few even larger. Many are sessile and others are +distinctly pedunculated, but all are covered with skin. They are mobile, +soft to the touch, and of the consistence of firm fat. In exceptional +cases one of the skin tumours may attain an enormous size and cause a +hideous deformity, hanging down by its own weight in lobulated or folded +masses (pachy-dermatocele). The treatment consists in removing the +larger swellings. In some cases molluscum fibrosum is associated with +pigmentation of the skin and with multiple tumours of the nerve-trunks. +The small multiple tumours rarely call for interference. + +[Illustration: FIG. 89.--Elephantiasis Neuromatosa in a woman aet. 28] + +_Elephantiasis neuromatosa_ is the name applied by Virchow to a +condition in which a limb is swollen and misshapen as a result of the +extension of a neuro-fibromatosis to the skin and subcutaneous cellular +tissue of the extremity as a whole (Fig. 89). It usually begins in early +life without apparent cause, and it may be associated with multiple +tumours of the nerve-trunks. The inconvenience caused by the bulk and +weight of the limb may justify its removal. + + +SURGERY OF THE INDIVIDUAL NERVES[6] + +[6] We desire here to acknowledge our indebtedness to Mr. James +Sherren's work on _Injuries of Nerves and their Treatment_. + +#The Brachial Plexus.#--Lesions of the brachial plexus may be divided +into those above the clavicle and those below that bone. + +In the #supra-clavicular injuries#, the violence applied to the head or +shoulder causes over-stretching of the anterior branches (primary +divisions) of the cervical nerves, the fifth, or the fifth and sixth +being those most liable to suffer. Sometimes the traction is exerted +upon the plexus from below, as when a man in falling from a height +endeavours to save himself by clutching at some projection, and the +lesion then mainly affects the first dorsal nerve. There is tearing of +the nerve sheaths, with haemorrhage, but in severe cases partial or +complete severance of nerve fibres may occur and these give way at +different levels. During the healing process an excess of fibrous tissue +is formed, which may interfere with regeneration. + +_Post-anaesthetic paralysis_ occurs in patients in whom, during the +course of an operation, the arm is abducted and rotated laterally or +extended above the head, causing over-stretching of the plexus, +especially of the fifth, or fifth and sixth, anterior branches. + +A _cervical rib_ may damage the plexus by direct pressure, the part +usually affected being the medial cord, which is made up of fibres from +the eighth cervical and first dorsal nerves. + +When a lesion of the plexus complicates a _fracture of the clavicle_, +the nerve injury is due, not to pressure on or laceration of the nerves +by fragments of bone, but to the violence causing the fracture, and this +is usually applied to the point of the shoulder. + +Penetrating _wounds_, apart from those met with in military practice, +are rare. + +In the #infra-clavicular injuries#, the lesion most often results from +the pressure of the dislocated head of the humerus; occasionally from +attempts made to reduce the dislocation by the heel-in-the-axilla +method, or from fracture of the upper end of the humerus or of the neck +of the scapula. The whole plexus may suffer, but more frequently the +medial cord is alone implicated. + +_Clinical Features._--Three types of lesion result from indirect +violence: the whole plexus; the upper-arm type; and the lower-arm type. + +_When the whole plexus is involved_, sensibility is lost over the entire +forearm and hand and over the lateral surface of the arm in its distal +two-thirds. All the muscles of the arm, forearm, and hand are paralysed, +and, as a rule, also the pectorals and spinati, but the rhomboids and +serratus anterior escape. There is paralysis of the sympathetic fibres +to the eye and orbit, with narrowing of the palpebral fissure, recession +of the globe, and the pupil is slow to dilate when shaded from the +light. + +The _upper-arm type_--Erb-Duchenne paralysis--is that most frequently +met with, and it is due to a lesion of the fifth anterior branch, or, it +may be, also of the sixth. The position of the upper limb is typical: +the arm and forearm hang close to the side, with the forearm extended +and pronated; the deltoid, spinati, biceps, brachialis, and supinators +are paralysed, and in some cases the radial extensors of the wrist and +the pronator teres are also affected. The patient is unable to supinate +the forearm or to abduct the arm, and in most cases to flex the forearm. +He may, however, regain some power of flexing the forearm when it is +fully pronated, the extensors of the wrist becoming feeble flexors of +the elbow. There is, as a rule, no loss of sensibility, but complaint +may be made of tickling and of pins-and-needles over the lateral aspect +of the arm. The abnormal position of the limb may persist although the +muscles regain the power of voluntary movement, and as the condition +frequently follows a fall on the shoulder, great care is necessary in +diagnosis, as the condition is apt to be attributed to an injury to the +axillary (circumflex) nerve. + +The _lower-arm type_ of paralysis, associated with the name of Klumpke, +is usually due to over-stretching of the plexus, and especially affects +the anterior branch of the first dorsal nerve. In typical cases all the +intrinsic muscles of the hand are affected, and the hand assumes the +claw shape. Sensibility is usually altered over the medial side of the +arm and forearm, and there is paralysis of the sympathetic. + +_Infra-clavicular injuries_, as already stated, are most often produced +by a sub-coracoid dislocation of the humerus; the medial cord is that +most frequently injured, and the muscles paralysed are those supplied by +the ulnar nerve, with, in addition, those intrinsic muscles of the hand +supplied by the median. Sensibility is affected over the medial surface +of the forearm and ulnar area of the hand. Injury of the lateral and +posterior cords is very rare. + +_Treatment_ is carried out on the lines already laid down for nerve +injuries in general. It is impossible to diagnose between complete and +incomplete rupture of the nerve cords, until sufficient time has elapsed +to allow of the establishment of the reaction of degeneration. If this +is present at the end of fourteen days, operation should not be delayed. +Access to the cords of the plexus is obtained by a dissection similar to +that employed for the subclavian artery, and the nerves are sought for +as they emerge from under cover of the scalenus anterior, and are then +traced until the seat of injury is found. In the case of the first +dorsal nerve, it may be necessary temporarily to resect the clavicle. +The usual after-treatment must be persisted in until recovery ensues, +and care must be taken that the paralysed muscles do not become +over-stretched. The prognosis is less favourable in the supra-clavicular +lesions than in those below the clavicle, which nearly always recover +without surgical intervention. + +In the _brachial birth-paralysis_ met with in infants, the lesion is due +to over-stretching of the plexus, and is nearly always of the +Erb-Duchenne type. The injury is usually unilateral, it occurs with +almost equal frequency in breech and in vertex presentations, and the +left arm is more often affected than the right. The lesion is seldom +recognised at birth. The first symptom noticed is tenderness in the +supra-clavicular region, the child crying when this part is touched or +the arm is moved. The attitude may be that of the Erb-Duchenne type, or +the whole of the muscles of the upper limb may be flaccid, and the arm +hangs powerless. A considerable proportion of the cases recover +spontaneously. The arm is to be kept at rest, with the affected muscles +relaxed, and, as soon as tenderness has disappeared, daily massage and +passive movements are employed. The reaction of degeneration can rarely +be satisfactorily tested before the child is three months old, but if it +is present, an operation should be performed. After operation, the +shoulder should be elevated so that no traction is exerted on the +affected cords. + +#The long thoracic nerve# (nerve of Bell), which supplies the serratus +anterior, is rarely injured. In those whose occupation entails carrying +weights upon the shoulder it may be contused, and the resulting +paralysis of the serratus is usually combined with paralysis of the +lower part of the trapezius, the branches from the third and fourth +cervical nerves which supply this muscle also being exposed to pressure +as they pass across the root of the neck. There is complaint of pain +above the clavicle, and winging of the scapula; the patient is unable to +raise the arm in front of the body above the level of the shoulder or to +perform any forward pushing movements; on attempting either of these the +winging of the scapula is at once increased. If the scapula is compared +with that on the sound side, it is seen that, in addition to the lower +angle being more prominent, the spine is more horizontal and the lower +angle nearer the middle line. The majority of these cases recover if the +limb is placed at absolute rest, the elbow supported, and massage and +galvanism persevered with. If the paralysis persists, the sterno-costal +portion of the pectoralis major may be transplanted to the lower angle +of the scapula. + +The long thoracic nerve may be cut across while clearing out the axilla +in operating for cancer of the breast. The displacement of the scapula +is not so marked as in the preceding type, and the patient is able to +perform pushing movements below the level of the shoulder. If the +reaction of degeneration develops, an operation may be performed, the +ends of the nerve being sutured, or the distal end grafted into the +posterior cord of the brachial plexus. + +#The Axillary (Circumflex) Nerve.#--In the majority of cases in which +paralysis of the deltoid follows upon an injury of the shoulder, it is +due to a lesion of the fifth cervical nerve, as has already been +described in injuries of the brachial plexus. The axillary nerve itself +as it passes round the neck of the humerus is most liable to be injured +from the pressure of a crutch, or of the head of the humerus in +sub-glenoid dislocation, or in fracture of the neck of the scapula or of +the humerus. In miners, who work for long periods lying on the side, the +muscle may be paralysed by direct pressure on the terminal filaments of +the nerve, and the nerve may also be involved as a result of disease in +the sub-deltoid bursa. + +The deltoid is wasted, and the acromion unduly prominent. In recent +cases paralysis of the muscle is easily detected. In cases of long +standing it is not so simple, because other muscles, the spinati, the +clavicular fibres of the pectoral and the serratus, take its place and +elevate the arm; there is always loss of sensation on the lateral aspect +of the shoulder. There is rarely any call for operative treatment, as +the paralysis is usually compensated for by other muscles. + +When the _supra-scapular nerve_ is contused or stretched in injuries of +the shoulder, the spinati muscles are paralysed and wasted, the spine of +the scapula is unduly prominent, and there is impairment in the power of +abducting the arm and rotating it laterally. + +The _musculo-cutaneous nerve_ is very rarely injured; when cut across, +there is paralysis of the coraco-brachialis, biceps, and part of the +brachialis, but no movements are abolished, the forearm being flexed, in +the pronated position, by the brachio-radialis and long radial extensor +of the wrist; in the supinated position, by that portion of the +brachialis supplied by the radial nerve. Supination is feebly performed +by the supinator muscle. Protopathic and epicritic sensibility are lost +over the radial side of the forearm. + +#Radial (Musculo-Spiral) Nerve.#--From its anatomical relationships this +trunk is more exposed to injury than any other nerve in the body. It is +frequently compressed against the humerus in sleeping with the arm +resting on the back of a chair, especially in the deep sleep of +alcoholic intoxication (drunkard's palsy). It may be pressed upon by a +crutch in the axilla, by the dislocated head of the humerus, or by +violent compression of the arm, as when an elastic tourniquet is applied +too tightly. The most serious and permanent injuries of this nerve are +associated with fractures of the humerus, especially those from direct +violence attended with comminution of the bone. The nerve may be crushed +or torn by one of the fragments at the time of the injury, or at a later +period may be compressed by callus. + +_Clinical Features._--Immediately after the injury it is impossible to +tell whether the nerve is torn across or merely compressed. The patient +may complain of numbness and tingling in the distribution of the +superficial branch of the nerve, but it is a striking fact, that so long +as the nerve is divided below the level at which it gives off the dorsal +cutaneous nerve of the forearm (external cutaneous branch), there is no +loss of sensation. When it is divided above the origin of the dorsal +cutaneous branch, or when the dorsal branch of the musculo-cutaneous +nerve is also divided, there is a loss of sensibility on the dorsum +of the hand. + +The motor symptoms predominate, the muscles affected being the extensors +of the wrist and fingers, and the supinators. There is a characteristic +"drop-wrist"; the wrist is flexed and pronated, and the patient is +unable to dorsiflex the wrist or fingers (Fig. 90). If the hand and +proximal phalanges are supported, the second and third phalanges may be +partly extended by the interossei and lumbricals. There is also +considerable impairment of power in the muscles which antagonise those +that are paralysed, so that the grasp of the hand is feeble, and the +patient almost loses the use of it; in some cases this would appear to +be due to the median nerve having been injured at the same time. + +[Illustration: FIG. 90.--Drop-wrist following Fracture of Shaft of +Humerus.] + +If the lesion is high up, as it is, for example, in crutch paralysis, +the triceps and anconeus may also suffer. + +_Treatment._--The slighter forms of injury by compression recover under +massage, douching, and electricity. If there is drop-wrist, the hand and +forearm are placed on a palmar splint, with the hand dorsiflexed to +nearly a right angle, and this position is maintained until voluntary +dorsiflexion at the wrist returns to the normal. Recovery is sometimes +delayed for several months. + +In the more severe injuries associated with fracture of the humerus and +attended with the reaction of degeneration, it is necessary to cut down +upon the nerve and free it from the pressure of a fragment of bone or +from callus or adhesions. If the nerve is torn across, the ends must be +sutured, and if this is impossible owing to loss of tissue, the gap may +be bridged by a graft taken from the superficial branch of the radial +nerve, or the ends may be implanted into the median. + +Finally, in cases in which the paralysis is permanent and incurable, the +disability may be relieved by operation. A fascial graft can be employed +to act as a ligament permanently extending the wrist; it is attached to +the third and fourth metacarpal bones distally and to the radius or ulna +proximally. The flexor carpi radialis can then be joined up with the +extensor digitorum communis by passing its tendon through an aperture in +the interosseous membrane, or better still, through the pronator +quadratus, as there is less likelihood of the formation of adhesions +when the tendon passes through muscle than through interosseous +membrane. The palmaris longus is anastomosed with the abductor pollicis +longus (extensor ossis metacarpi pollicis), thus securing a fair amount +of abduction of the thumb. The flexor carpi ulnaris may also be +anastomosed with the common extensor of the fingers. The extensors of +the wrist may be shortened, so as to place the hand in the position of +dorsal flexion, and thus improve the attitude and grasp of the hand. + +_The superficial branch of the radial_ (radial nerve) _and the deep +branch_ (posterior interosseous), apart from suffering in lesions of the +radial, are liable to be contused or torn is dislocation of the head of +the radius, and in fracture of the neck of the bone. The deep branch may +be divided as it passes through the supinator in operations on old +fractures and dislocations in the region of the elbow. Division of the +superficial branch in the upper two-thirds of the forearm produces no +loss of sensibility; division in the lower third after the nerve has +become associated with branches from the musculo-cutaneous is followed +by a loss of sensibility on the radial side of the hand and thumb. Wounds +on the dorsal surface of the wrist and forearm are often followed by +loss of sensibility over a larger area, because the musculo-cutaneous +nerve is divided as well, and some of the fibres of the lower lateral +cutaneous branch of the radial. + +[Illustration: FIG. 91.--To illustrate the Loss of Sensation produced by +Division of the Median Nerve. The area of complete cutaneous +insensibility is shaded black. The parts insensitive to light touch and +to intermediate degrees of temperature are enclosed within the dotted +line. + +(After Head and Sherren.)] + +#The Median Nerve# is most frequently injured in wounds made by broken +glass in the region of the wrist. It may also be injured in fractures of +the lower end of the humerus, in fractures of both bones of the forearm, +and as a result of pressure by splints. After _division at the elbow_, +there is impairment of mobility which affects the thumb, and to a less +extent the index finger: the terminal phalanx of the thumb cannot be +flexed owing to the paralysis of the flexor pollicis longus, and the +index can only be flexed at its metacarpo-phalangeal joint by the +interosseous muscles attached to it. Pronation of the forearm is feeble, +and is completed by the weight of the hand. After _division at the +wrist_, the abductor-opponens group of muscles and the two lateral +lumbricals only are affected; the abduction of the thumb can be feebly +imitated by the short extensor and the long abductor (ext. ossis +metacarpi pollicis), while opposition may be simulated by contraction of +the long flexor and the short abductor of the thumb; the paralysis of +the two medial lumbricals produces no symptoms that can be recognised. +It is important to remember that when the median nerve is divided at the +wrist, deep touch can be appreciated over the whole of the area +supplied by the nerve; the injury, therefore, is liable to be over +looked. If, however, the tendons are divided as well as the nerve, there +is insensibility to deep touch. The areas of epicritic and of +protopathic insensibility are illustrated in Fig. 91. The division of +the nerve at the elbow, or even at the axilla, does not increase the +extent of the loss of epicritic or protopathic sensibility, but usually +affects deep sensibility. + +[Illustration: FIG. 92.--To illustrate Loss of Sensation produced by +complete Division of Ulnar Nerve. Loss of all forms of cutaneous +sensibility is represented by the shaded area. The parts insensitive to +light touch and to intermediate degrees of heat and cold are enclosed +within the dotted line. + +(Head and Sherren.)] + +#The Ulnar Nerve.#--The most common injury of this nerve is its division +in transverse accidental wounds just above the wrist. In the arm it may +be contused, along with the radial, in crutch paralysis; in the region +of the elbow it may be injured in fractures or dislocations, or it may +be accidentally divided in the operation for excising the elbow-joint. + +When it is injured _at or above the elbow_, there is paralysis of the +flexor carpi ulnaris, the ulnar half of the flexor digitorum profundus, +all the interossei, the two medial lumbricals, and the adductors of the +thumb. The hand assumes a characteristic attitude: the index and middle +fingers are extended at the metacarpo-phalangeal joints owing to +paralysis of the interosseous muscles attached to them; the little and +ring fingers are hyper-extended at these joints in consequence of the +paralysis of the lumbricals; all the fingers are flexed at the +inter-phalangeal joints, the flexion being most marked in the little and +ring fingers--claw-hand or _main en griffe_. On flexing the wrist, the +hand is tilted to the radial side, but the paralysis of the flexor carpi +ulnaris is often compensated for by the action of the palmaris longus. +The little and ring fingers can be flexed to a slight degree by the +slips of the flexor sublimis attached to them and supplied by the median +nerve; flexion of the terminal phalanx of the little finger is almost +impossible. Adduction and abduction movements of the fingers are lost. +Adduction of the thumb is carried out, not by the paralysed adductor +pollicis, but the movement may be simulated by the long flexor and +extensor muscles of the thumb. Epicritic sensibility is lost over the +little finger, the ulnar half of the ring finger, and that part of the +palm and dorsum of the hand to the ulnar side of a line drawn +longitudinally through the ring finger and continued upwards. +Protopathic sensibility is lost over an area which varies in different +cases. Deep sensibility is usually lost over an area almost as extensive +as that of protopathic insensibility. + +When the nerve is _divided at the wrist_, the adjacent tendons are also +frequently severed. If divided below the point at which its dorsal +branch is given off, the sensory paralysis is much less marked, and the +injury is therefore liable to be overlooked until the wasting of muscles +and typical _main en griffe_ ensue. The loss of sensibility after +division of the nerve before the dorsal branch is given off resembles +that after division at the elbow, except that in uncomplicated cases +deep sensibility is usually retained. If the tendons are divided as +well, however, deep touch is also lost. + +Care must be taken in all these injuries to prevent deformity; a splint +must be worn, at least during the night, until the muscles regain their +power of voluntary movement, and then exercises should be instituted. + +#Dislocation of the ulnar nerve# at the elbow results from sudden and +violent flexion of the joint, the muscular effort causing stretching or +laceration of the fascia that holds the nerve in its groove; it is +predisposed to if the groove is shallow as a result of imperfect +development of the medial condyle of the humerus, and by cubitus valgus. + +The nerve slips forward, and may be felt lying on the medial aspect of +the condyle. It may retain this position, or it may slip backwards and +forwards with the movements of the arm. The symptoms at the time of the +displacement are some disability at the elbow, and pain and tingling +along the nerve, which are exaggerated by movement and by pressure. The +symptoms may subside altogether, or a neuritis may develop, with severe +pain shooting up the nerve. + +The dislocated nerve is easily replaced, but is difficult to retain in +position. In recent cases the arm may be placed in the extended position +with a pad over the condyle, care being taken to avoid pressure on the +nerve. Failing relief, it is better to make a bed for the nerve by +dividing the deep fascia behind the medial condyle and to stitch the +edges of the fascia over the nerve. This operation has been successful +in all the recorded cases. + +#The Sciatic Nerve.#--When this nerve is compressed, as by sitting on a +fence, there is tingling and powerlessness in the limb as a whole, known +as "sleeping" of the limb, but these phenomena are evanescent. _Injuries +to the great sciatic nerve_ are rare except in war. Partial division is +more common than complete, and it is noteworthy that the fibres destined +for the peroneal nerve are more often and more severely injured than +those for the tibial (internal popliteal). After complete division, all +the muscles of the leg are paralysed; if the section is in the upper +part of the thigh, the hamstrings are also paralysed. The limb is at +first quite powerless, but the patient usually recovers sufficiently to +be able to walk with a little support, and although the hamstrings are +paralysed the knee can be flexed by the sartorius and gracilis. The +chief feature is drop-foot. There is also loss of sensation below the +knee except along the course of the long saphenous nerve on the medial +side of the leg and foot. Sensibility to deep touch is only lost over a +comparatively small area on the dorsum of the foot. + +#The Common Peroneal (external popliteal) nerve# is exposed to injury +where it winds round the neck of the fibula, because it is superficial +and lies against the unyielding bone. It may be compressed by a +tourniquet, or it may be bruised or torn in fractures of the upper end +of the bone. It has been divided in accidental wounds,--by a scythe, for +example,--in incising for cellulitis, and in performing subcutaneous +tenotomy of the biceps tendon. Cases have been observed of paralysis of +the nerve as a result of prolonged acute flexion of the knee in certain +occupations. + +When the nerve is divided, the most obvious result is "drop-foot"; the +patient is unable to dorsiflex the foot and cannot lift his toes off the +ground, so that in walking he is obliged to jerk the foot forwards and +laterally. The loss of sensibility depends upon whether the nerve is +divided above or below the origin of the large cutaneous branch which +comes off just before it passes round the neck of the fibula. In course +of time the foot becomes inverted and the toes are pointed--pes +equino-varus--and trophic sores are liable to form. + +#The Tibial (internal popliteal) nerve# is rarely injured. + +#The Cranial nerves# are considered with affections of the head and neck +(Vol. II.). + + +NEURALGIA + +The term neuralgia is applied clinically to any pain which follows the +course of a nerve, and is not referable to any discoverable cause. It +should not be applied to pain which results from pressure on a nerve by +a tumour, a mass of callus, an aneurysm, or by any similar gross lesion. +We shall only consider here those forms of neuralgia which are amenable +to surgical treatment. + +#Brachial Neuralgia.#--The pain is definitely located in the +distribution of one of the branches or nerve roots, is often +intermittent, and is usually associated with tingling and disturbance of +tactile sensation. The root of the neck should be examined to exclude +pressure as the cause of the pain by a cervical rib, a tumour, or an +aneurysm. When medical treatment fails, the nerve-trunks may be injected +with saline solution or recourse may be had to operative measures, the +affected cords being exposed and stretched through an incision in the +posterior triangle of the neck. If this fails to give relief, the more +serious operation of resecting the posterior roots of the affected +nerves within the vertebral canal may be considered. + +_Neuralgia of the sciatic nerve_--#sciatica#--is the most common form of +neuralgia met with in surgical practice. + +It is chiefly met with in adults of gouty or rheumatic tendencies who +suffer from indigestion, constipation, and oxaluria--in fact, the same +type of patients who are liable to lumbago, and the two affections are +frequently associated. In hospital practice it is commonly met with in +coal-miners and others who assume a squatting position at work. The +onset of the pain may follow over-exertion and exposure to cold and wet, +especially in those who do not take regular exercise. Any error of diet +or indulgence in beer or wine may contribute to its development. + +The essential symptom is paroxysmal or continuous pain along the course +of the nerve in the buttock, thigh, or leg. It may be comparatively +slight, or it may be so severe as to prevent sleep. It is aggravated by +movement, so that the patient walks lame or is obliged to lie up. It is +aggravated also by any movement which tends to put the nerve on the +stretch, as in bending down to put on the shoes, such movements also +causing tingling down the nerve, and sometimes numbness in the foot. +This may be demonstrated by flexing the thigh on the abdomen, the knee +being kept extended; there is no pain if the same manoeuvre is repeated +with the knee flexed. The nerve is sensitive to pressure, the most +tender points being its emergence from the greater sciatic foramen, the +hollow between the trochanter and the ischial tuberosity, and where the +common peroneal nerve winds round the neck of the fibula. The muscles of +the thigh are often wasted and are liable to twitch. + +The clinical features vary a good deal in different cases; the affection +is often obstinate, and may last for many weeks or even months. + +In the sciatica that results from neuritis and perineuritis, there is +marked tenderness on pressure due to the involvement of the nerve +filaments in the sheath of the nerve, and there may be patches of +cutaneous anaesthesia, loss of tendon reflexes, localised wasting of +muscles, and vaso-motor and trophic changes. The presence of the +reaction of degeneration confirms the diagnosis of neuritis. In +long-standing cases the pain and discomfort may lead to a postural +scoliosis (_ischias-scoliotica_). + +_Diagnosis._--Pain referred along the course of the sciatic nerve on one +side, or, as is sometimes the case, on both sides, is a symptom of +tumours of the uterus, the rectum, or the pelvic bones. It may result +also from the pressure of an abscess or an aneurysm either inside the +pelvis or in the buttock, and is sometimes associated with disease of +the spinal medulla, such as tabes. Gluteal fibrositis may be mistaken +for sciatica. It is also necessary to exclude such conditions as disease +in the hip or sacro-iliac joint, especially tuberculous disease and +arthritis deformans, before arriving at a diagnosis of sciatica. A +digital examination of the rectum or vagina is of great value in +excluding intra-pelvic tumours. + +_Treatment_ is both general and local. Any constitutional tendency, such +as gout or rheumatism, must be counteracted, and indigestion, oxaluria, +and constipation should receive appropriate treatment. In acute cases +the patient is confined to bed between blankets, the limb is wrapped in +thermogene wool, and the knee is flexed over a pillow; in some cases +relief is experienced from the use of a long splint, or slinging the leg +in a Salter's cradle. A rubber hot-bottle may be applied over the seat +of greatest pain. The bowels should be well opened by castor oil or by +calomel followed by a saline. Salicylate of soda in full doses, or +aspirin, usually proves effectual in relieving pain, but when this is +very intense it may call for injections of heroin or morphin. Potassium +iodide is of benefit in chronic cases. + +Relief usually results from bathing, douching, and massage, and from +repeated gentle stretching of the nerve. This may be carried out by +passive movements of the limb--the hip being flexed while the knee is +kept extended; and by active movements--the patient flexing the limb at +the hip, the knee being maintained in the extended position. These +exercises, which may be preceded by massage, are carried out night and +morning, and should be practised systematically by those who are liable +to sciatica. + +Benefit has followed the injection into the nerve itself, or into the +tissues surrounding it, of normal saline solution; from 70-100 c.c. are +injected at one time. If the pain recurs, the injection may require to +be repeated on many occasions at different points up and down the nerve. +Needling or acupuncture consists in piercing the nerve at intervals in +the buttock and thigh with long steel needles. Six or eight needles are +inserted and left in position for from fifteen to thirty minutes. + +In obstinate and severe cases the nerve may be _forcibly stretched_. +This may be done bloodlessly by placing the patient on his back with the +hip flexed to a right angle, and then gradually extending the knee until +it is in a straight line with the thigh (Billroth). A general anaesthetic +is usually required. A more effectual method is to expose the nerve +through an incision at the fold of the buttock, and forcibly pull upon +it. This operation is most successful when the pain is due to the nerve +being involved in adhesions. + +#Trigeminal Neuralgia.#--A severe form of epileptiform neuralgia occurs +in the branches of the fifth nerve, and is one of the most painful +affections to which human flesh is liable. So far as its pathology is +known, it is believed to be due to degenerative changes in the semilunar +(Gasserian) ganglion. It is met with in adults, is almost invariably +unilateral, and develops without apparent cause. The pain, which occurs +in paroxysms, is at first of moderate severity, but gradually becomes +agonising. In the early stages the paroxysms occur at wide intervals, +but later they recur with such frequency as to be almost continuous. +They are usually excited by some trivial cause, such as moving the jaws +in eating or speaking, touching the face as in washing, or exposure to a +draught of cold air. Between the paroxysms the patient is free from +pain, but is in constant terror of its return, and the face wears an +expression of extreme suffering and anxiety. When the paroxysm is +accompanied by twitching of the facial muscles, it is called _spasmodic +tic_. + +The skin of the affected area may be glazed and red, or may be pale and +moist with inspissated sweat, the patient not daring to touch or wash +it. + +There is excessive tenderness at the points of emergence of the +different branches on the face, and pressure over one or other of these +points may excite a paroxysm. In typical cases the patient is unable to +take any active part in life. The attempt to eat is attended with such +severe pain that he avoids taking food. In some cases the suffering is +so great that the patient only obtains sleep by the use of hypnotics, +and he is often on the verge of suicide. + +_Diagnosis._--There is seldom any difficulty in recognising the disease. +It is important, however, to exclude the hysterical form of neuralgia, +which is characterised by its occurrence earlier in life, by the pain +varying in situation, being frequently bilateral, and being more often +constant than paroxysmal. + +_Treatment._--Before having recourse to the measures described below, it +is advisable to give a thorough trial to the medical measures used in +the treatment of neuralgia. + +_The Injection of Alcohol into the Nerve._--The alcohol acts by +destroying the nerve fibres, and must be brought into direct contact +with them; if the nerve has been properly struck the injection is +followed by complete anaesthesia in the distribution of the nerve. The +relief may last for from six months to three years; if the pain returns, +the injection may be repeated. The strength of the alcohol should be 85 +per cent., and the amount injected about 2 c.c.; a general, or +preferably a local, anaesthetic (novocain) should be employed +(Schlosser); the needle is 8 cm. long, and 0.7 mm. in diameter. The +severe pain which the alcohol causes may be lessened, after the needle +has penetrated to the necessary depth, by passing a few cubic +centimetres of a 2 per cent. solution of _novocain-suprarenin_ through +it before the alcohol is injected. The treatment by injection of alcohol +is superior to the resection of branches of the nerve, for though +relapses occur after the treatment with alcohol, renewed freedom from +pain may be obtained by its repetition. The ophthalmic division should +not, however, be treated in this manner, for the alcohol may escape into +the orbit and endanger other nerves in this region. Harris recommends +the injection of alcohol into the semilunar ganglion. + +_Operative Treatment._--This consists in the removal of the affected +nerve or nerves, either by resection--_neurectomy_; or by a combination +of resection with twisting or tearing of the nerve from its central +connections--_avulsion_. To prevent the regeneration of the nerve after +these operations, the canal of exit through the bone should be +obliterated; this is best accomplished by a silver screw-nail driven +home by an ordinary screw-driver (Charles H. Mayo). + +When the neuralgia involves branches of two or of all three trunks, or +when it has recurred after temporary relief following resection of +individual branches, the _removal of the semilunar ganglion_, along with +the main trunks of the maxillary and mandibular divisions, should be +considered. + +The operation is a difficult and serious one, but the results are +satisfactory so far as the cure of the neuralgia is concerned. There is +little or no disability from the unilateral paralysis of the muscles of +mastication; but on account of the insensitiveness of the cornea, the +eye must be protected from irritation, especially during the first month +or two after the operation; this may be done by fixing a large +watch-glass around the edge of the orbit with adhesive plaster. + +If the ophthalmic branch is not involved, neither it nor the ganglion +should be interfered with; the maxillary and mandibular divisions should +be divided within the skull, and the foramen rotundum and foramen ovale +obliterated. + + + + +CHAPTER XVII + +THE SKIN AND SUBCUTANEOUS TISSUE + + +Structure of skin--_Blisters_--_Callosities_--_Corns_--_Chilblains_ + --_Boils_--_Carbuncle_--_Abscess_--_Veldt sores_--Tuberculosis of + skin: _Inoculation tubercle_--_Lupus_: _Varieties_--Sporotrichosis + --Elephantiasis--Sebaceous cysts or wens--Moles--Horns--New growths: + _Fibroma_; _Papilloma_; _Adenoma_; _Epithelioma_; _Rodent cancer_; + _Melanotic cancer_; _Sarcoma_--AFFECTIONS OF CICATRICES--_Varieties + of scars_--_Keloid_--_Tumours_--AFFECTIONS OF NAILS. + +#Structure of Skin.#--The skin is composed of a superficial cellular +layer--the epidermis, and the corium or true skin. The _epidermis_ is +differentiated from without inwards into the stratum corneum, the +stratum lucidum, the stratum granulosum, and the rete Malpighii or +germinal layer, from which all the others are developed. The _corium_ or +_true skin_ consists of connective tissue, in which ramify the blood +vessels, lymphatics, and nerves. That part of the corium immediately +adjoining the epidermis is known as the papillary portion, and contains +the terminal loops of the cutaneous blood vessels and the terminations +of the cutaneous nerves. The deeper portion of the true skin is known as +the reticular portion, and is largely composed of adipose tissue. + +#Blisters# result from the exudation of serous fluid beneath the horny +layer of the epidermis. The fluid may be clear, as in the blisters of a +recent burn, or blood-stained, as in the blisters commonly accompanying +fractures of the leg. It may become purulent as a result of infection, +and this may be the starting-point of lymphangitis or cellulitis. + +The skin should be disinfected and the blisters punctured. When +infected, the separated horny layer must be cut away with scissors to +allow of the necessary purification. + +#Callosities# are prominent, indurated masses of the horny layer of the +epidermis, where it has been exposed to prolonged friction and pressure. +They occur on the fingers and hand as a result of certain occupations +and sports, but are most common under the balls of the toes or heel. A +bursa may form beneath a callosity, and if it becomes inflamed may cause +considerable suffering; if suppuration ensues, a sinus may form, +resembling a perforating ulcer of the foot. + +The _treatment_ of callosities on the foot consists in removing pressure +by wearing properly fitting boots, and in applying a ring pad around the +callosity; another method is to fit a sock of spongiopilene with a hole +cut out opposite the callosity. After soaking in hot water, the +overgrown horny layer is pared away, and the part painted daily with a +saturated solution of salicylic acid in flexile collodion. + +[Illustration: FIG. 93.--Callosities and Corns on the Sole and Plantar +Aspect of the Toes in a woman who was also the subject of flat-foot.] + +#Corns.#--A corn is a localised overgrowth of the horny layer of the +epidermis, which grows downwards, pressing upon and displacing the +sensitive papillae of the corium. Corns are due to the friction and +pressure of ill-fitting boots, and are met with chiefly on the toes and +sole of the foot. A corn is usually hard, dry, and white; but it may be +sodden from moisture, as in "soft corns" between the toes. A bursa may +form beneath a corn, and if inflamed constitutes one form of bunion. +When suppuration takes place in relation to a corn, there is great pain +and disability, and it may prove the starting-point of lymphangitis. + +The _treatment_ consists in the wearing of properly fitting boots and +stockings, and, if the symptoms persist, the corn should be removed. +This is done after the manner of chiropodists by digging out the corn +with a suitably shaped knife. A more radical procedure is to excise, +under local anaesthesia, the portion of skin containing the corn and +the underlying bursa. The majority of so-called corn solvents consist of +a solution of salicylic acid in collodion; if this is painted on daily, +the epidermis dies and can then be pared away. The unskilful paring of +corns may determine the occurrence of senile gangrene in those who are +predisposed to it by disease of the arteries. + +[Illustration: FIG. 94.--Ulcerated Chilblains on Fingers of a Child.] + +#Chilblains.#--Chilblain or _erythema pernio_ is a vascular disturbance +resulting from the alternate action of cold and heat on the distal parts +of the body. Chilblains are met with chiefly on the fingers and toes in +children and anaemic girls. In the mild form there is a sensation of +burning and itching, the part becomes swollen, of a dusky red colour, +and the skin is tense and shiny. In more severe cases the burning and +itching are attended with pain, and the skin becomes of a violet or +wine-red colour. There is a third degree, closely approaching +frost-bite, in which the skin tends to blister and give way, leaving an +indolent raw surface popularly known as a "broken chilblain." + +Those liable to chilblains should take open-air exercise, nourishing +food, cod-liver oil, and tonics. Woollen stockings and gloves should be +worn in cold weather, and sudden changes of temperature avoided. The +symptoms may be relieved by ichthyol ointment, glycerin and belladonna, +or a mixture of Venice turpentine, castor oil, and collodion applied on +lint which is wrapped round the toe. Another favourite application is +one of equal parts of tincture of capsicum and compound liniment of +camphor, painted over the area night and morning. Balsam of Peru or +resin ointment spread on gauze should be applied to broken chilblains. +The most effective treatment is Bier's bandage applied for about six +hours twice daily; it can be worn while the patient is following his +occupation; in chronic cases this may be supplemented with hot-air +baths. + +#Boils and Carbuncles.#--These result from infection with the +staphylococcus aureus, which enters the orifices of the ducts of the +skin under the influence of friction and pressure, as was demonstrated +by the well-known experiment of Garre, who produced a crop of pustules +and boils on his own forearm by rubbing in a culture of the +staphylococcus aureus. + +A #boil# results when the infection is located in a hair follicle or +sebaceous gland. A hard, painful, conical swelling develops, to which, +so long as the skin retains its normal appearance, the term "blind +boil" is applied. Usually, however, the skin becomes red, and after a +time breaks, giving exit to a drop or two of thick pus. After an +interval of from six to ten days a soft white slough is discharged; this +is known as the "core," and consists of the necrosed hair follicle or +sebaceous gland. After the separation of the core the boil heals +rapidly, leaving a small depressed scar. + +Boils are most frequently met with on the back of the neck and the +buttocks, and on other parts where the skin is coarse and thick and is +exposed to friction and pressure. The occurrence of a number or a +succession of boils is due to spread of the infection, the cocci from +the original boil obtaining access to adjacent hair follicles. The +spread of boils may be unwittingly promoted by the use of a domestic +poultice or the wearing of infected underclothing. + +While boils are frequently met with in debilitated persons, and +particularly in those suffering from diabetes or Bright's disease, they +also occur in those who enjoy vigorous health. They seldom prove +dangerous to life except in diabetic subjects, but when they occur on +the face there is a risk of lymphatic and of general pyogenic infection. +Boils may be differentiated from syphilitic lesions of the skin by +their acute onset and progress, and by the absence of other evidence of +syphilis; and from the malignant or anthrax pustule by the absence of +the central black eschar and of the circumstances which attend upon +anthrax infection. + +_Treatment._--The skin of the affected area should be painted with +iodine, and a Klapp's suction bell applied thrice daily. If pus forms, +the skin is frozen with ethyl-chloride and a small incision made, after +which the application of the suction bell is persevered with. The +further treatment consists in the use of diluted boracic or resin +ointment. In multiple boils on the trunk and limbs, lysol or boracic +baths are of service; the underclothing should be frequently changed, +and that which is discarded must be disinfected. In patients with +recurrence of boils about the neck, re-infection frequently takes place +from the scalp, to which therefore treatment should be directed. + +Any impaired condition of health should be corrected; when, there is +sugar or albumen in the urine the conditions on which these depend must +receive appropriate treatment. When there are successive crops of boils, +recourse should be had to vaccines. In refractory cases benefit has +followed the subcutaneous injection of lipoid solution containing tin. + +#Carbuncle# may be looked upon as an aggregation of boils, and is +characterised by a densely hard base and a brownish-red discoloration of +the skin. It is usually about the size of a crown-piece, but it may +continue to enlarge until it attains the size of a dinner-plate. The +patient is ill and feverish, and the pain may be so severe as to prevent +sleep. As time goes on several points of suppuration appear, and when +these burst there are formed a number of openings in the skin, giving it +a cribriform appearance; these openings exude pus. The different +openings ultimately fuse and the large adherent greyish-white slough is +exposed. The separation of the slough is a tedious process, and the +patient may become exhausted by pain, discharge, and toxin absorption. +When the slough is finally thrown off, a deep gap is left, which takes a +long time to heal. A large carbuncle is a grave disease, especially in a +weakly person suffering from diabetes or chronic alcoholism; we have on +several occasions seen diabetic coma supervene and the patient die +without recovering consciousness. In the majority of cases the patient +is laid aside for several months. It is most common in male adults over +forty years of age, and is usually situated on the back between the +shoulders. When it occurs on the face or anterior part of the neck it is +especially dangerous, because of the greater risk of dissemination of +the infection. + +A carbuncle is to be differentiated from an ulcerated gumma and from +anthrax pustule. + +[Illustration: FIG. 95.--Carbuncle of seventeen days' duration in a +woman aet. 57.] + +_Treatment._--Pain is relieved by full doses of opium or codein, and +these drugs are specially indicated when sugar is present in the urine. +Vaccines may be given a trial. The diet should be liberal and easily +digested, and strychnin and other stimulants may be of service. Locally +the treatment is carried out on the same lines as for boils. + +In some cases it is advisable to excise the carbuncle or to make +incisions across it in different directions, so that the resulting wound +presents a stellate appearance. + +#Acute Abscesses of the Skin and Subcutaneous Tissue in Young +Children.#--In young infants, abscesses are not infrequently met with +scattered over the trunk and limbs, and are probably the result of +infection of the sebaceous glands from dirty underclothing. The +abscesses should be opened, and the further spread of infection +prevented by cleansing of the skin and by the use of clean under-linen. +Similar abscesses are met with on the scalp in association with eczema, +impetigo, and pediculosis. + +#Veldt Sore.#--This sore usually originates in an abrasion of the +epidermis, such as a sun blister, the bite of an insect, or a scratch. A +pustule forms and bursts, and a brownish-yellow scab forms over it. When +this is removed, an ulcer is left which has little tendency to heal. +These sores are most common about the hands, arms, neck, and feet, and +are most apt to occur in those who have had no opportunities of washing, +and who have lived for a long time on tinned foods. + +#Tuberculosis of the Skin.#--Interest attaches chiefly to the primary +forms of tuberculosis of the skin in which the bacilli penetrate from +without--inoculation tubercle and lupus. + +#Inoculation Tubercle.#--The appearances vary with the conditions under +which the inoculation takes place. As observed on the fingers of adults, +the affection takes the form of an indolent painless swelling, the +epidermis being red and glazed, or warty, and irregularly fissured. +Sometimes the epidermis gives way, forming an ulcer with flabby +granulations. The infection rarely spreads to the lymphatics, but we +have seen inoculation tubercle of the index-finger followed by a large +cold abscess on the median side of the upper arm and by a huge mass of +breaking down glands in the axilla. + +In children who run about barefooted in towns, tubercle may be +inoculated into wounds in the sole or about the toes, and although the +local appearances may not be characteristic, the nature of the infection +is revealed by its tendency to spread up the limb along the lymph +vessels, giving rise to abscesses and fungating ulcers in relation to +the femoral glands. + +#Tuberculous Lupus.#--This is an extremely chronic affection of the +skin. It rarely extends to the lymph glands, and of all tuberculous +lesions is the least dangerous to life. The commonest form of +lupus--_lupus vulgaris_--usually commences in childhood or youth, and is +most often met with on the nose or cheek. The early and typical +appearance is that of brownish-yellow or pink nodules in the skin, about +the size of hemp seed. Healing frequently occurs in the centre of the +affected area while the disease continues to extend at the margin. + +When there is actual destruction of tissue and ulceration--the so-called +"_lupus excedens_" or "_ulcerans_"--healing is attended with +cicatricial contraction, which may cause unsightly deformity. When the +cheek is affected, the lower eyelid may be drawn down and everted; when +the lips are affected, the mouth may be distorted or seriously +diminished in size. When the nose is attacked, both the skin and mucous +surfaces are usually involved, and the nasal orifices may be narrowed or +even obliterated; sometimes the soft parts, including the cartilages, +are destroyed, leaving only the bones covered by tightly stretched scar +tissue. + +The disease progresses slowly, healing in some places and spreading at +others. The patient complains of a burning sensation, but little of +pain, and is chiefly concerned about the disfigurement. Nothing is more +characteristic of lupus than the appearance of fresh nodules in parts +which have already healed. In the course of years large tracts of the +face and neck may become affected. From the lips it may spread to the +gum and palate, giving to the mucous membrane the appearance of a +raised, bright-red, papillary or villous surface. When the disease +affects the gums, the teeth may become loose and fall out. + +[Illustration: FIG. 96.--Tuberculous Elephantiasis in a woman aet. 35.] + +On parts of the body other than the face, the disease is even more +chronic, and is often attended with a considerable production of dense +fibrous tissue--the so-called _fibroid lupus_. Sometimes there is a +warty thickening of the epidermis--_lupus verrucosus_. In the fingers +and toes it may lead to a progressive destruction of tissue like that +observed in leprosy, and from the resulting loss of portions of the +digits it has been called _lupus mutilans_. In the lower extremity a +remarkable form of the disease is sometimes met with, to which the term +_lupus elephantiasis_ (Fig. 96) has been applied. It commences as an +ordinary lupus of the toes or dorsum of the foot, from which the +tuberculous infection spreads to the lymph vessels, and the limb as a +whole becomes enormously swollen and unshapely. + +Finally, a long-standing lupus, especially on the cheek, may become the +seat of epithelioma--_lupus epithelioma_--usually of the exuberant or +cauliflower type, which, like other epitheliomas that originate in scar +tissue, presents little tendency to infect the lymphatics. + +The _diagnosis_ of lupus is founded on the chronic progress and long +duration, and the central scarring with peripheral extension of the +disease. On the face it is most liable to be confused with syphilis and +with rodent cancer. The syphilitic lesion belongs to the tertiary +period, and although presenting a superficial resemblance to +tuberculosis, its progress is more rapid, so that within a few months it +may involve an area of skin as wide as would be affected by lupus in as +many years. Further, it readily yields to anti-syphilitic treatment. In +cases of tertiary syphilis in which the nose is destroyed, it will be +noticed that the bones have suffered most, while in lupus the +destruction of tissue involves chiefly the soft parts. + +Rodent cancer is liable to be mistaken for lupus, because it affects the +same parts of the face; it is equally chronic, and may partly heal. It +begins later in life, however, the margin of the ulcer is more sharply +defined, and often presents a "rolled" appearance. + +_Treatment._--When the disease is confined to a limited area, the most +rapid and certain cure is obtained by _excision_; larger areas are +scraped with the sharp spoon. The _ray treatment_ includes the use of +luminous, Rontgen, or radium rays, and possesses the advantage of being +comparatively painless and of being followed by the least amount of +scarring and deformity. + +Encouraging results have also been obtained by the application of carbon +dioxide snow. + +#Multiple subcutaneous tuberculous nodules# are met with chiefly in +children. They are indolent and painless, and rarely attract attention +until they break down and form abscesses, which are usually about the +size of a cherry, and when these burst sinuses or ulcers result. If the +overlying skin is still intact, the best treatment is excision. If the +abscess has already infected the skin, each focus should be scraped and +packed. + +#Sporotrichosis# is a mycotic infection due to the sporothrix Shenkii. +It presents so many features resembling syphilis and tubercle that it is +frequently mistaken for one or other of these affections. It occurs +chiefly in males between fifteen and forty-five, who are farmers, fruit +and vegetable dealers, or florists. There is usually a history of trauma +of the nature of a scratch or a cut, and after a long incubation period +there develop a series of small, hard, round nodules in the skin and +subcutaneous tissue which, without pain or temperature, soften into +cold abscesses and leave indolent ulcers or sinuses. The infection is +of slow progress and follows the course of the lymphatics. From the +gelatinous pus the organism is cultivated without difficulty, and this +is the essential step in arriving at a diagnosis. The disease yields in +a few weeks to full doses of iodide of potassium. + +#Elephantiasis.#--This term is applied to an excessive enlargement of a +part depending upon an overgrowth of the skin and subcutaneous cellular +tissue, and it may result from a number of causes, acting independently +or in combination. The condition is observed chiefly in the extremities +and in the external organs of generation. + +_Elephantiasis from Lymphatic or Venous Obstruction._--Of this the +best-known example is _tropical elephantiasis_ (E. arabum), which is +endemic in Samoa, Barbadoes, and other places. It attacks the lower +extremity or the genitals in either sex (Figs. 97, 98). The disease is +usually ushered in with fever, and signs of lymphangitis in the part +affected. After a number of such attacks, the lymph vessels appear to +become obliterated, and the skin and subcutaneous cellular tissue, being +bathed in stagnant lymph--which possibly contains the products of +streptococci--take on an overgrowth, which continues until the part +assumes gigantic proportions. In certain cases the lymph trunks have +been found to be blocked with the parent worms of the filaria Bancrofti. +Cases of elephantiasis of the lower extremity are met with in this +country in which there are no filarial parasites in the lymph vessels, +and these present features closely resembling the tropical variety, and +usually follow upon repeated attacks of lymphangitis or erysipelas. + +The part affected is enormously increased in size, and causes +inconvenience from its bulk and weight. In contrast to ordinary dropsy, +there is no pitting on pressure, and the swelling does not disappear on +elevation of the limb. The skin becomes rough and warty, and may hang +down in pendulous folds. Blisters form on the surface and yield an +abundant exudate of clear lymph. From neglect of cleanliness, the skin +becomes the seat of eczema or even of ulceration attended with foul +discharge. + +Samson Handley has sought to replace the blocked lymph vessels by +burying in the subcutaneous tissue of the swollen part a number of stout +silk threads--_lymphangioplasty_. By their capillary action they drain +the lymph to a healthy region above, and thus enable it to enter the +circulation. It has been more successful in the face and upper limb than +in the lower extremity. If the tissues are infected with pus organisms, +a course of vaccines should precede the operation. + +[Illustration: FIG. 97.--Elephantiasis in a woman aet. 45.] + +A similar type of elephantiasis may occur after extirpation of the lymph +glands in the axilla or groin; in the leg in long-standing standing +varix and phlebitis with chronic ulcer; in the arm as a result of +extensive cancerous disease of the lymphatics in the axilla secondarily +to cancer of the breast; and in extensive tuberculous disease of the +lymphatics. The last-named is chiefly observed in the lower limb in +young adult women, and from its following upon lupus of the toes or foot +it has been called _lupus elephantiasis_. The tuberculous infection +spreads slowly up the limb by way of the lymph vessels, and as these are +obliterated the skin and cellular tissues become hypertrophied, and the +surface is studded over with fungating tuberculous masses of a livid +blue colour. As the more severe forms of the disease may prove dangerous +to life by pyogenic complications inducing gangrene of the limb, the +question of amputation may have to be considered. + +[Illustration: FIG. 98.--Elephantiasis of Penis and Scrotum in native of +Demerara. + +(Mr. Annandale's case.)] + +Belonging to this group also is a form of _congenital elephantiasis_ +resulting from the circular constriction of a limb _in utero_ by +amniotic bands. + +_Elephantiasis occurring apart from lymphatic or venous obstruction_ is +illustrated by _elephantiasis nervorum_, in which there is an overgrowth +of the skin and cellular tissue of an extremity in association with +neuro-fibromatosis of the cutaneous nerves (Fig. 89); and by +_elephantiasis Graecorum_--a form of leprosy in which the skin of the +face becomes the seat of tumour-like masses consisting of leprous +nodules. It is also illustrated by _elephantiasis involving the scrotum_ +as a result of prolonged irritation by the urine in cases in which the +penis has been amputated and the urine has infiltrated the scrotal +tissues over a period of years. + +#Sebaceous Cysts.#--Atheromatous cysts or wens are formed in relation to +the sebaceous glands and hair follicles. They are commonly met with in +adults, on the scalp (Fig. 99), face, neck, back, and external genitals. +Sometimes they are multiple, and they may be met with in several members +of the same family. They are smooth, rounded, or discoid cysts, varying +in size from a split-pea to a Tangerine orange. In consistence they are +firm and elastic, or fluctuating, and are incorporated with the +overlying skin, but movable on the deeper structures. The orifice of the +partly blocked sebaceous follicle is sometimes visible, and the contents +of the cyst can be squeezed through the opening. The wall of the cyst is +composed of a connective-tissue capsule lined by stratified squamous +epithelium. The contents consist of accumulated epithelial cells, and +are at first dry and pearly white in appearance, but as a result of +fatty degeneration they break down into a greyish-yellow pultaceous and +semi-fluid material having a peculiar stale odour. It is probable that +the decomposition of the contents is the result of the presence of +bacteria, and that from the surgical point of view they should be +regarded as infective. A sebaceous cyst may remain indefinitely without +change, or may slowly increase in size, the skin over it becoming +stretched and closely adherent to the cyst wall as a result of friction +and pressure. The contents may ooze from the orifice of the duct and dry +on the skin surface, leading to the formation of a sebaceous horn +(Fig. 100). As a result of injury the cyst may undergo sudden +enlargement from haemorrhage into its interior. + +Recurrent attacks of inflammation frequently occur, especially in wens +of the face and scalp. Suppuration may ensue and be followed by cure of +the cyst, or an offensive fungating ulcer forms which may be mistaken +for epithelioma. True cancerous transformation is rare. + +Wens are to be _diagnosed_ from dermoids, from fatty tumours, and from +cold abscesses. Dermoids usually appear before adult life, and as they +nearly always lie beneath the fascia, the skin is movable over them. A +fatty tumour is movable, and is often lobulated. The confusion with a +cold abscess is most likely to occur in wens of the neck or back, and it +may be impossible without the use of an exploring needle to +differentiate between them. + +[Illustration: FIG. 99.--Multiple Sebaceous Cysts or Wens; the larger +ones are of many years' duration.] + +_Treatment._--The removal of wens is to be recommended while they are +small and freely movable, as they are then easily shelled out after +incising the overlying skin; sometimes splitting the cyst makes its +removal easier. Local anaesthesia is to be preferred. It is important +that none of the cyst wall be left behind. In large and adherent wens an +ellipse of skin is removed along with the cyst. When inflamed, it may be +impossible to dissect out the cyst, and the wall should be destroyed +with carbolic acid, the resulting wound being treated by the open +method. + +#Moles.#--The term mole is applied to a pigmented, and usually hairy, +patch of skin, present at or appearing shortly after birth. The colour +varies from brown to black, according to the amount of melanin pigment +present. The lesion consists in an overgrowth of epidermis which often +presents an alveolar arrangement. Moles vary greatly in size: some are +mere dots, others are as large as the palm of the hand, and occasionally +a mole covers half the face. In addition to being unsightly, they bleed +freely when abraded, are liable to ulcerate from friction and pressure, +and occasionally become the starting-point of melanotic cancer. Rodent +cancer sometimes originates in the slightly pigmented moles met with on +the face. Overgrowths in relation to the cutaneous nerves, especially +the plexiform neuroma, occasionally originate in pigmented moles. Soldau +believes that the pigmentation and overgrowth of the epidermis in moles +are associated with, and probably result from, a fibromatosis of the +cutaneous nerves. + +_Treatment._--The quickest way to get rid of a mole is to excise it; if +the edges of the gap cannot be brought together with sutures, recourse +should be had to grafting. In large hairy moles of the face whose size +forbids excision, radium or the X-rays should be employed. Excellent +results have been obtained by refrigeration with solid carbon dioxide. +In children and women with delicate skin, applications of from ten to +thirty seconds suffice. In persons with coarse skin an application of +one minute may be necessary, and it may have to be repeated. + +#Horns.#--The _sebaceous_ horn results from the accumulation of the +dried contents of a wen on the surface of the skin: the sebaceous +material after drying up becomes cornified, and as fresh material is +added to the base the horn increases in length (Fig. 100). The _wart_ +horn grows from a warty papilloma of the skin. _Cicatrix_ horns are +formed by the heaping up of epidermis in the scars that result from +burns. _Nail_ horns are overgrown nails (keratomata of the nail bed), +and are met with chiefly in the great toe of elderly bedridden patients. +If an ulcer forms at the base of a horn, it may prove the starting-point +of epithelioma, and for this reason, as well as for others, horns should +be removed. + +[Illustration: FIG. 100.--Sebaceous Horn growing from Auricle. + +(Dr. Kenneth Maclachan's case.)] + +#New Growths in the Skin and Subcutaneous Tissue.#--The _Angioma_ has +been described with diseases of blood vessels. _Fibroma._--Various types +of fibroma occur in the skin. A soft pedunculated fibroma, about the +size of a pea, is commonly met with, especially on the neck and trunk; +it is usually solitary, and is easily removed with scissors. The +multiple, soft fibroma known as _molluscum fibrosum_, which depends upon +a neuro-fibromatosis of the cutaneous nerves, is described with the +tumours of nerves. Hard fibromas occurring singly or in groups may be +met with, especially in the skin of the buttock, and may present a local +malignancy, recurring after removal like the "recurrent fibroid" of +Paget. The "painful subcutaneous nodule" is a solitary fibroma related +to one of the cutaneous nerves. The hard fibroma known as _keloid_ is +described with the affections of scars. + +#Papilloma.#--The _common wart_ or verruca is an outgrowth of the +surface epidermis. It may be sessile or pedunculated hard or soft. The +surface may be smooth, or fissured and foliated like a cauliflower, or +it may be divided up into a number of spines. Warts are met with chiefly +on the hands, and are often multiple, occurring in clusters or in +successive crops. Multiple warts appear to result from some contagion, +the nature of which is unknown; they sometimes occur in an epidemic form +among school-children, and show a remarkable tendency to disappear +spontaneously. The solitary flat-topped wart which occurs on the face +of old people may, if irritated, become the seat of epithelioma. A warty +growth of the epidermis is a frequent accompaniment of moles and of that +variety of lupus known as _lupus verrucosus_. + +_Treatment._--In the multiple warts of children the health should be +braced up by a change to the seaside. A dusting-powder, consisting of +boracic acid with 5 per cent. salicylic acid, may be rubbed into the +hands after washing and drying. The persistent warts of young adults +should be excised after freezing with chloride of ethyl. When cutting is +objected to, they may be painted night and morning with salicylic +collodion, the epidermis being dehydrated with alcohol before each +application. + +_Venereal warts_ occur on the genitals of either sex, and may form large +cauliflower-like masses on the inner surface of the prepuce or of the +labia majora. Although frequently co-existing with gonorrhoea or +syphilis, they occur independently of these diseases, being probably +acquired by contact with another individual suffering from warts +(C. W. Cathcart). They give rise to considerable irritation and +suffering, and when cleanliness is neglected there may be an offensive +discharge. + +In the female, the cauliflower-like masses are dissected from the labia; +in the male, the prepuce is removed and the warts on the glans are +snipped off with scissors. In milder cases, the warts usually disappear +if the parts are kept absolutely dry and clean. A useful dusting-powder +is one consisting of calamine and 5 per cent. salicylic acid; the +exsiccated sulphate of iron, in the form of a powder, may be employed in +cases which resist this treatment. + +#Adenoma.#--This is a comparatively rare tumour growing from the glands +of the skin. One variety, known as the "tomato tumour," which apparently +originates from _the sweat glands_, is met with on the scalp and face in +women past middle life. These growths are often multiple; the individual +tumours vary in size, and the skin, which is almost devoid of hairs, is +glistening and tightly stretched over them. A similar tumour may occur +on the nose. The _sebaceous adenoma_, which originates from the +sebaceous glands, forms a projecting tumour on the face or scalp, and +when the skin is irritated it may ulcerate and fungate. The treatment +consists in the removal of the tumour along with the overlying skin. + +The exuberant masses on the nose known as "rhinophyma," "lipoma nasi," +or "potato nose" are of the nature of sebaceous adenoma, and are removed +by shaving them off with a knife until the normal shape of the nose is +restored Healing takes place with remarkable rapidity. + +#Cancer.#--There are several types of primary cancer of the skin, the +most important being squamous epithelioma, rodent cancer, and melanotic +cancer. + +[Illustration: FIG. 101.--Paraffin Epithelioma.] + +#Epithelioma# occurs in a variety of forms. When originating in a small +ulcer or wart-for example on the face in old people--it presents the +features of a chronic indurated ulcer. A more exuberant and rapidly +growing form of epithelial cancer, described by Hutchinson as the +_crateriform ulcer_, commences on the face as a small red pimple which +rapidly develops into an elevated mass shaped like a bee-hive, and +breaks down in the centre. Epithelioma may develop anywhere on the body +in relation to long-standing ulcers, especially that resulting from a +burn or from lupus; this form usually presents an exuberant outgrowth of +epidermis not unlike a cauliflower. An interesting example of +epithelioma has been described by Neve of Kashmir. The natives in that +province are in the habit of carrying a fire-basket suspended from the +waist, which often burns the skin and causes a chronic ulcer, and many +of these ulcers become the seat of epithelioma, due, in Neve's opinion, +to the actual contact of the sooty pan with the skin. + +The term _trade epithelioma_ has been applied to that form met with in +those who follow certain occupations, such as paraffin workers and +chimney-sweeps. The most recent member of this group is the _X-ray +carcinoma_, which is met with in those who are constantly exposed to the +irritation of the X-rays; there is first a chronic dermatitis with warty +overgrowth of the surface epithelium, pigmentation, and the formation of +fissures and warts. The trade epithelioma varies a good deal in +malignancy, but it tends to cause death in the same manner as other +epitheliomas. + +Epithelial cancer has also been observed in those who have taken arsenic +over long periods for medicinal purposes. + +[Illustration: FIG. 102.--Rodent Cancer of Inner Canthus.] + +#Rodent Cancer# (Rodent Ulcer).--This is a cancer originating in the +sweat glands or sebaceous follicles, or in the foetal residues of +cutaneous glands. The cells are small and closely packed together in +alveoli or in reticulated columns; cell nests are rare. It is remarkably +constant in its seat of origin, being nearly always located on the +lateral aspect of the nose or in the vicinity of the lower eyelid +(Fig. 102). It is rare on the trunk or limbs. It commences as a small +flattened nodule in the skin, the epidermis over it being stretched and +shining. The centre becomes depressed, while the margins extend in the +form of an elevated ridge. Sooner or later the epidermis gives way in +the centre, exposing a smooth raw surface devoid of granulations. + +[Illustration: FIG. 103.--Rodent Cancer of fifteen years' duration, +which has destroyed the contents of the Orbit. + +(Sir Montagu Cotterill's case)] + +The margin, while in parts irregular, is typically represented by a +well-defined "rolled" border which consists of the peripheral portion of +the cancer that has not broken down. The central ulcer may temporarily +heal. There is itching but little pain, and the condition progresses +extremely slowly; rodent cancers which have existed for many years are +frequently met with. The disease attacks and destroys every structure +with which it comes in contact, such as the eyelids, the walls of the +nasal cavities, and the bones of the face; hence it may produce the most +hideous deformities (Fig. 103). The patient may succumb to haemorrhage or +to infective complications such as erysipelas or meningitis. + +Secondary growths in the lymph glands, while not unknown, are extremely +rare. We have only seen them once--in a case of rodent cancer in the +groin. + +_Diagnosis._--Lupus is the disease most often mistaken for rodent +cancer. Lupus usually begins earlier in life, it presents apple-jelly +nodules, and lacks the rounded, elevated border. Syphilitic lesions +progress more rapidly, and also lack the characteristic margin. The +differentiation from squamous epithelioma is of considerable importance, +as the latter affection spreads more rapidly, involves the lymph glands +early, and is much more dangerous to life. + +_Treatment._--In rodent cancers of limited size--say less than one inch +in diameter--free excision is the most rapid and certain method of +treatment. The alternative is the application of radium or of the +Rontgen rays, which, although requiring many exposures, results in cure +with the minimum of disfigurement. If the cancer already covers an +extensive area, or has invaded the cavity of the orbit or nose, radium +or X-rays yield the best results. The effect is soon shown by the +ingrowth of healthy epithelium from the surrounding skin, and at the +same time the discharge is lessened. Good results are also reported from +the application of carbon dioxide snow, especially when this follows +upon a course of X-ray treatment. + +#Paget's disease# of the nipple is an epithelioma occurring in women +over forty years of age: a similar form of epithelioma is sometimes met +with at the umbilicus or on the genitals. + +#Melanotic Cancer.#--Under this head are included all new growths which +contain an excess of melanin pigment. Many of these were formerly +described as melanotic sarcoma. They nearly always originate in a +pigmented mole which has been subjected to irritation. The primary +growth may remain so small that its presence is not even suspected, or +it may increase in size, ulcerate, and fungate. The amount of pigment +varies: when small in amount the growth is brown, when abundant it is a +deep black. The most remarkable feature is the rapidity with which the +disease becomes disseminated along the lymphatics, the first evidence of +which is an enlargement of the lymph glands. As the primary growth is +often situated on the sole of the foot or in the matrix of the nail of +the great toe, the femoral and inguinal glands become enlarged in +succession, forming tumours much larger than the primary growth. +Sometimes the dissemination involves the lymph vessels of the limb, +forming a series of indurated pigmented cords and nodules (Fig. 104). +Lastly, the dissemination may be universal throughout the body, and this +usually occurs at a comparatively early stage. The secondary growths are +deeply pigmented, being usually of a coal-black colour, and melanin +pigment may be present in the urine. When recurrence takes place in or +near the scar left by the operation, the cancer nodules are not +necessarily pigmented. + +[Illustration: FIG. 104.--Diffuse Melanotic Cancer of Lymphatics of Skin +secondary to a Growth in the Sole of the Foot.] + +To extirpate the disease it is necessary to excise the tumour, with a +zone of healthy skin around it and a somewhat large zone of the +underlying subcutaneous tissue and deep fascia. Hogarth Pringle +recommends that a broad strip of subcutaneous fascia up to and including +the nearest anatomical group of glands should be removed with the tumour +in one continuous piece. + +#Secondary Cancer of the Skin.#--Cancer may spread to the skin from a +subjacent growth by direct continuity or by way of the lymphatics. Both +of these processes are so well illustrated in cases of mammary cancer +that they will be described in relation to that disease. + +#Sarcoma# of various types is met with in the skin. The fibroma, after +excision, may recur as a fibro-sarcoma. The alveolar sarcoma commences +as a hard lump and increases in size until the epidermis gives way and +an ulcer is formed. + +[Illustration: FIG. 105.--Melanotic Cancer of Forehead with Metastases +in Lymph Vessels and Glands. + +(Mr. D. P. D. Wilkie's case.)] + +A number of fresh tumours may spring up around the original growth. +Sometimes the primary growth appears in the form of multiple nodules +which tend to become confluent. Excision, unless performed early, is of +little avail, and in any case should be followed up by exposure to +radium. + + +AFFECTIONS OF CICATRICES + +A cicatrix or scar consists of closely packed bundles of white fibres +covered by epidermis; the skin glands and hair follicles are usually +absent. The size, shape, and level of the cicatrix depend upon the +conditions which preceded healing. + +A healthy scar, when recently formed, has a smooth, glossy surface of a +pinkish colour, which tends to become whiter as a result of obliteration +of the blood vessels concerned in its formation. + +_Weak Scars._--A scar is said to be weak when it readily breaks down as +a result of irritation or pressure. The scars resulting from severe +burns and those over amputation stumps are especially liable to break +down from trivial causes. The treatment is to excise the weak portion of +the scar and bring the edges of the gap together. + +_Contracted scars_ frequently cause deformity either by displacing +parts, such as the eyelid or lip, or by fixing parts and preventing the +normal movements--for example, a scar on the flexor aspect of a joint +may prevent extension of the forearm (Fig. 63). These are treated by +dividing the scar, correcting the deformity, and filling up the gap with +epithelial grafts, or with a flap of the whole thickness of the skin. +When deformity results from _depression of a scar_, as is not uncommon +after the healing of a sinus, the treatment is to excise the scar. +Depressed scars may be raised by the injection of paraffin into the +subcutaneous tissue. + +_Painful Scars._--Pain in relation to a scar is usually due to nerve +fibres being compressed or stretched in the cicatricial tissue; and in +some cases to ascending neuritis. The treatment consists in excising the +scar or in stretching or excising a portion of the nerve affected. + +_Pigmented or Discoloured Scars._--The best-known examples are the blue +coloration which results from coal-dust or gunpowder, the brown scars +resulting from chronic ulcer with venous congestion of the leg, and the +variously coloured scars caused by tattooing. The only satisfactory +method of getting rid of the coloration is to excise the scar; the edges +are brought together by sutures, or the raw surface is covered with +skin-grafts according to the size of the gap. + +_Hypertrophied Scars._--Scars occasionally broaden out and become +prominent, and on exposed parts this may prove a source of +disappointment after operations such as those for goitre or tuberculous +glands in the neck. There is sometimes considerable improvement from +exposure to the X-rays. + +_Keloid._--This term is applied to an overgrowth of scar tissue which +extends beyond the area of the original wound, and the name is derived +from the fact that this extension occurs in the form of radiating +processes, suggesting the claws of a crab. It is essentially a fibroma +or new growth of fibrous tissue, which commences in relation to the +walls of the smaller blood vessels; the bundles of fibrous tissue are +for the most part parallel with the surface, and the epidermis is +tightly stretched over them. It is more frequent in the negro and in +those who are, or have been, the subjects of tuberculous disease. + +[Illustration: FIG. 106.--Recurrent Keloid in scar left by operation for +tuberculous glands in a girl aet. 7.] + +Keloid may attack scars of any kind, such as those resulting from +leech-bites, acne pustules, boils or blisters; those resulting from +operation or accidental wounds; and the scars resulting from burns, +especially when situated over the sternum, appear to be specially +liable. The scar becomes more and more conspicuous, is elevated above +the surface, of a pinkish or brownish-pink pink colour, and sends out +irregular prolongations around its margins. The patient may complain of +itching and burning, and of great sensitiveness of the scar, even to +contact with the clothing. + +There is a natural hesitation to excise keloid because of the fear of +its returning in the new scar. The application of radium is, so far as +we know, the only means of preventing such return. The irritation +associated with keloid may be relieved by the application of salicylic +collodion or of salicylic and creosote plaster. + +_Epithelioma_ is liable to attack scars in old people, especially those +which result from burns sustained early in childhood and have never +really healed. From the absence of lymphatics in scar tissue, the +disease does not spread to the glands until it has invaded the tissues +outside the scar; the prognosis is therefore better than in epithelioma +in general. It should be excised widely; in the lower extremity when +there is also extensive destruction of tissue from an antecedent chronic +ulcer or osteomyelitis, it may be better to amputate the limb. + + +AFFECTION OF THE NAILS + +_Injuries._--When a nail is contused or crushed, blood is extravasated +beneath it, and the nail is usually shed, a new one growing in its +place. A splinter driven underneath the nail causes great pain, and if +organisms are carried in along with it, may give rise to infective +complications. The free edge of the nail should be clipped away to allow +of the removal of the foreign body and the necessary disinfection. + +_Trophic Changes._--The growth of the nails may be interfered with in +any disturbance of the general health. In nerve lesions, such as a +divided nerve-trunk, the nails are apt to suffer, becoming curved, +brittle, or furrowed, or they may be shed. + +_Onychia_ is the term applied to an infection of the soft parts around +the nail or of the matrix beneath it. The commonest form of onychia has +already been referred to with whitlow. There is a superficial variety +resulting from the extension of a purulent blister beneath the nail +lifting it up from its bed, the pus being visible through the nail. The +nail as well as the raised horny layer of the epidermis should be +removed. A deeper and more troublesome onychia results from infection at +the nail-fold; the infection spreads slowly beneath the fold until it +reaches the matrix, and a drop or two of pus forms beneath the nail, +usually in the region of the lunule. This affection entails a +disability of the finger which may last for weeks unless it is properly +treated. Treatment by hyperaemia, using a suction bell, should first be +tried, and, failing improvement, the nail-fold and lunule should be +frozen, and a considerable portion removed with the knife; if only a +small portion of the nail is removed, the opening is blocked by +granulations springing from the matrix. A new nail is formed, but it is +liable to be misshapen. + +_Tuberculous onychia_ is met with in children and adolescents. It +appears as a livid or red swelling at the root of the nail and spreading +around its margins. The epidermis, which is thin and shiny, gives way, +and the nail is usually shed. + +[Illustration: FIG. 107.--Subungual Exostosis growing from Distal +Phalanx of Great Toe, showing Ulceration of Skin and Displacement of +Nail. + +_a._ Surface view. _b._ On section.] + +_Syphilitic_ affections of the nails assume various aspects. A primary +chancre at the edge of the nail may be mistaken for a whitlow, +especially if it is attended with much pain. Other forms of onychia +occur during secondary syphilis simultaneously with the skin eruptions, +and may prove obstinate and lead to shedding of the nails. They also +occur in inherited syphilis. In addition to general treatment, an +ointment containing 5 per cent. of oleate of mercury should be applied +locally. + +_Ingrowing Toe-nail._--This is more accurately described as an +overgrowth of the soft tissues along the edge of the nail. It is most +frequently met with in the great toe in young adults with flat-foot +whose feet perspire freely, who wear ill-fitting shoes, and who cut +their toe-nails carelessly or tear them with their fingers. Where the +soft tissues are pressed against the edge of the nail, the skin gives +way and there is the formation of exuberant granulations and of +discharge which is sometimes foetid. The affection is a painful one and +may unfit the patient for work. In mild cases the condition may be +remedied by getting rid of contributing causes and by disinfecting the +skin and nail; the nail is cut evenly, and the groove between it and the +skin packed with an antiseptic dusting-powder, such as boracic acid. In +more severe cases it may be necessary to remove an ellipse of tissue +consisting of the edge of the nail, together with the subjacent matrix +and the redundant nail-fold. + +_Subungual exostosis_ is an osteoma growing from the terminal phalanx of +the great toe (Fig. 107). It raises the nail and may be accompanied by +ulceration of the skin over the most prominent part of the growth. The +soft parts, including the nail, should be reflected towards the dorsum +in the form of a flap, the base of the exostosis divided with the +chisel, and the exostosis removed. + +_Malignant disease_ in relation to the nails is rare. Squamous +epithelioma and melanotic cancer are the forms met with. Treatment +consists in amputating the digit concerned, and in removing the +associated lymph glands. + + + + +CHAPTER XVIII + +THE MUSCLES, TENDONS, AND TENDON SHEATHS + + +INJURIES: _Contusion_; _Sprain_; _Rupture_--Hernia of + muscle--Dislocation of tendons--Wounds--Avulsion of tendon. + DISEASES OF MUSCLE AND OF TENDONS: _Atrophy_; _"Muscular + rheumatism"_--_Fibrositis_; _Contracture_; _Myositis_; + _Calcification and Ossification_; _Tumours_. DISEASES OF TENDON + SHEATHS: _Teno-synovitis_. + + +INJURIES + +#Contusion of Muscle.#--Contusion of muscle, which consists in bruising +of its fibres and blood vessels, may be due to violence acting from +without, as in a blow, a kick, or a fall; or from within, as by the +displacement of bone in a fracture or dislocation. + +The symptoms are those common to all contusions, and the patient +complains of severe pain on attempting to use the muscle, and maintains +an attitude which relaxes it. If the sheath of the muscle also is torn, +there is subcutaneous ecchymosis, and the accumulation of blood may +result in the formation of a haematoma. + +Restoration of function is usually complete; but when the nerve +supplying the muscle is bruised at the same time, as may occur in the +deltoid, wasting and loss of function may be persistent. In exceptional +cases the process of repair may be attended with the formation of bone +in the substance of the muscle, and this may likewise impair its +function. + +A contused muscle should be placed at rest and supported by cotton wool +and a bandage; after an interval, massage and appropriate exercises are +employed. + +#Sprain and Partial Rupture of Muscle.#--This lesion consists in +overstretching and partial rupture of the fibres of a muscle or its +aponeurosis. It is of common occurrence in athletes and in those who +follow laborious occupations. It may follow upon a single or repeated +effort--especially in those who are out of training. Familiar examples +of muscular sprain are the "labourer's" or "golfer's back," affecting +the latissimus dorsi or the sacrospinalis (erector spinae); the +"tennis-player's elbow," and the "sculler's sprain," affecting the +muscles and ligaments about the elbow; the "angler's elbow," affecting +the common origin of the extensors and supinators; the "sprinter's +sprain," affecting the flexors of the hip; and the "jumper's and +dancer's sprain," affecting the muscles of the calf. The patient +complains of pain, often sudden in onset, of tenderness on pressure, and +of inability to carry out the particular movement by which the sprain +was produced. The disability varies in different cases, and it may +incapacitate the patient from following his occupation or sport for +weeks or, if imperfectly treated, even for months. + +The _treatment_ consists in resting the muscle from the particular +effort concerned in the production of the sprain, in gently exercising +it in other directions, in the use of massage, and the induction of +hyperaemia by means of heat. In neglected cases, that is, where the +muscle has not been exercised, the patient shrinks from using it and the +disablement threatens to be permanent; it is sometimes said that +adhesions have formed and that these interfere with the recovery of +function. The condition may be overcome by graduated movements or by a +sudden forcible movement under an anaesthetic. These cases afford a +fruitful field for the bone-setter. + +#Rupture of Muscle or Tendon.#--A muscle or a tendon may be ruptured in +its continuity or torn from its attachment to bone. The site of rupture +in individual muscles is remarkably constant, and is usually at the +junction of the muscular and tendinous portions. When rupture takes +place through the belly of a muscle, the ends retract, the amount of +retraction depending on the length of the muscle, and the extent of its +attachment to adjacent aponeurosis or bone. The biceps in the arm, and +the sartorius in the thigh, furnish examples of muscles in which the +separation between the ends may be considerable. + +The gap in the muscle becomes filled with blood, and this in time is +replaced by connective tissue, which forms a bond of union between the +ends. When the space is considerable the connecting medium consists of +fibrous tissue, but when the ends are in contact it contains a number of +newly formed muscle fibres. In the process of repair, one or both ends +of the muscle or tendon may become fixed by adhesions to adjacent +structures, and if the distal portion of a muscle is deprived of its +nerve supply it may undergo degeneration and so have its function +impaired. + +Rupture of a muscle or tendon is usually the result of a sudden, and +often involuntary, movement. As examples may be cited the rupture of +the quadriceps extensor in attempting to regain the balance when falling +backwards; of the gastrocnemius, plantaris, or tendo-calcaneus in +jumping or dancing; of the adductors of the thigh in gripping a horse +when it swerves--"rider's sprain"; of the abdominal muscles in vomiting, +and of the biceps in sudden movements of the arm. Sometimes the effort +is one that would scarcely be thought likely to rupture a muscle, as in +the case recorded by Pagenstecher, where a professional athlete, while +sitting at table, ruptured his biceps in a sudden effort to catch a +falling glass. It would appear that the rupture is brought about not so +much by the contraction of the muscle concerned, as by the contraction +of the antagonistic muscles taking place before that of the muscle which +undergoes rupture is completed. The violent muscular contractions of +epilepsy, tetanus, or delirium rarely cause rupture. + +The _clinical features_ are usually characteristic. The patient +experiences a sudden pain, with the sensation of being struck with a +whip, and of something giving way; sometimes a distant snap is heard. +The limb becomes powerless. At the seat of rupture there is tenderness +and swelling, and there may be ecchymosis. As the swelling subsides, a +gap may be felt between the retracted ends, and this becomes wider when +the muscle is thrown into contraction. If untreated, a hard, fibrous +cord remains at the seat of rupture. + +_Treatment._--The ends are approximated by placing the limb in an +attitude which relaxes the muscle, and the position is maintained by +bandages, splints, or special apparatus. When it is impossible thus to +approximate the ends satisfactorily, the muscle or tendon is exposed by +incision, and the ends brought into accurate contact by catgut sutures. +This operation of primary suture yields the most satisfactory results, +and is most successful when it is done within five or six days of the +accident. Secondary suture after an interval of months is rendered +difficult by the retraction of the ends and by their adhesion to +adjacent structures. + +_Rupture of the biceps of the arm_ may involve the long or the short +head, or the belly of the muscle. Most interest attaches to rupture of +the long tendon of origin. There is pain and tenderness in front of the +upper end of the humerus, the patient is unable to abduct or to elevate +the arm, and he may be unable to flex the elbow when the forearm is +supinated. The long axis of the muscle, instead of being parallel with +the humerus, inclines downwards and outwards. When the patient is asked +to contract the muscle, its belly is seen to be drawn towards the +elbow. + +The _adductor longus_ may be ruptured, or torn from the pubes, by a +violent effort to adduct the limb. A swelling forms in the upper and +medial part of the thigh, which becomes smaller and harder when the +muscle is thrown into contraction. + +The _quadriceps femoris_ is usually ruptured close to its insertion into +the patella, in the attempt to avoid falling backwards. The injury is +sometimes bilateral. The injured limb is rendered useless for +progression, as it suddenly gives way whenever the knee is flexed. +Treatment is conducted on the same lines as in transverse fracture of +the patella; in the majority of cases the continuity of the quadriceps +should be re-established by suture within five or six days of the +accident. + +The _tendo calcaneus_ (Achillis) is comparatively easily ruptured, and +the symptoms are sometimes so slight that the nature of the injury may +be overlooked. The limb should be put up with the knee flexed and the +toes pointed. This may be effected by attaching one end of an elastic +band to the heel of a slipper, and securing the other to the lower third +of the thigh. If this is not sufficient to bring the ends into +apposition they should be approximated by an open operation. + +The _plantaris_ is not infrequently ruptured from trivial causes, such +as a sudden movement in boxing, tennis, or hockey. A sharp stinging pain +like the stroke of a whip is felt in the calf; there is marked +tenderness at the seat of rupture, and the patient is unable to raise +the heel without pain. The injury is of little importance, and if the +patient does not raise the heel from the ground in walking, it is +recovered from in a couple of weeks or so, without it being necessary to +lay him up. + +#Hernia of Muscle.#--This is a rare condition, in which, owing to the +fascia covering a muscle becoming stretched or torn, the muscular +substance is protruded through the rent. It has been observed chiefly in +the adductor longus. An oval swelling forms in the upper part of the +thigh, is soft and prominent when the muscle is relaxed, less prominent +when it is passively extended, and disappears when the muscle is thrown +into contraction. It is liable to be mistaken, according to its +situation, for a tumour, a cyst, a pouched vein, or a femoral or +obturator hernia. Treatment is only called for when it is causing +inconvenience, the muscle being exposed by a suitable incision, the +herniated portion excised, and the rent in the sheath closed by sutures. + +#Dislocation of Tendons.#--Tendons which run in grooves may be displaced +as a result of rupture of the confining sheath. This injury is met with +chiefly in the tendons at the ankle and in the long tendon of the +biceps. + +Dislocation of the _peronei tendons_ may occur, for example, from a +violent twist of the foot. There is severe pain and considerable +swelling on the lateral aspect of the ankle; the peroneus longus by +itself, or together with the brevis, can be felt on the lateral aspect +or in front of the lateral malleolus; the patient is unable to move the +foot. By a little manipulation the tendons are replaced in their +grooves, and are retained there by a series of strips of plaster. At the +end of three weeks massage and exercises are employed. + +In other cases there is no history of injury, but whenever the foot is +everted the tendon of the peroneus longus is liable to be jerked +forwards out of its groove, sometimes with an audible snap. The patient +suffers pain and is disabled until the tendon is replaced. Reduction is +easy, but as the displacement tends to recur, an operation is required +to fix the tendon in its place. An incision is made over the tendon; if +the sheath is slack or torn, it is tightened up or closed with catgut +sutures; or an artificial sheath is made by raising up a quadrilateral +flap of periosteum from the lateral aspect of the fibula, and stitching +it over the tendon. + +Similarly the _tibialis posterior_ may be displaced over the medial +malleolus as a result of inversion of the foot. + +The _long tendon of the biceps_ may be dislocated laterally--or more +frequently medially--as a result of violent or repeated rotation +movements of the arm, such as are performed in wringing clothes. The +patient is aware of the displacement taking place, and is unable to +extend the forearm until the displaced tendon has been reduced by +abducting the arm. In recurrent cases the patient may be able to +dislocate the tendon at will, but the disability is so inconsiderable +that there is rarely any occasion for interference. + +#Wounds of Muscles and Tendons.#--When a muscle is cut across in a +wound, its ends should be brought together with sutures. If the ends are +allowed to retract, and especially if the wound suppurates, they become +united by scar tissue and fixed to bone or other adjacent structure. In +a limb this interferes with the functions of the muscle; in the +abdominal wall the scar tissue may stretch, and so favour the +development of a ventral hernia. + +Tendons may be cut across accidentally, especially in those wounds so +commonly met with above the wrist as a result, for example, of the hand +being thrust through a pane of glass. It is essential that the ends +should be sutured to each other, and as the proximal end is retracted +the original wound may require to be enlarged in an upward direction. +When primary suture has been omitted, or has failed in consequence of +suppuration, the separated ends of the tendon become adherent to +adjacent structures, and the function of the associated muscle is +impaired or lost. Under these conditions the operation of secondary +suture is indicated. + +A free incision is necessary to discover and isolate the ends of the +tendon; if the interval is too wide to admit of their being approximated +by sutures, means must be taken to lengthen the tendon, or one from some +other part may be inserted in the gap. A new sheath may be provided for +the tendon by resecting a portion of the great saphenous vein. + +_Injuries of the tendons of the fingers_ are comparatively common. One +of the best known is the partial or complete rupture of the aponeurosis +of the extensor tendon close to its insertion into the terminal +phalanx--_drop-_ or _mallet-finger_. This may result from comparatively +slight violence, such as striking the tip of the extended finger against +an object, or the violence may be more severe, as in attempting to catch +a cricket ball or in falling. The terminal phalanx is flexed towards the +palm and the patient is unable to extend it. The treatment consists in +putting up the finger with the middle joint strongly flexed. In +neglected cases, a perfect functional result can only be obtained by +operation; under a local anaesthetic, the ruptured tendon is exposed and +is sutured to the base of the phalanx, which may be drilled for the +passage of the sutures. + +_Subcutaneous rupture_ of one or other _of the digital tendons_ in the +hand or at the wrist can be remedied only by operation. When some time +has elapsed since the accident, the proximal end may be so retracted +that it cannot be brought down into contact with the distal end, in +which case a slip may be taken from an adjacent tendon; in the case of +one of the extensors of the thumb, the extensor carpi radialis longus +may be detached from its insertion and stitched to the distal end of the +tendon of the thumb. + +Subcutaneous _rupture of the tendon of the extensor pollicis longus_ at +the wrist takes place just after its emergence from beneath the annular +ligament; the actual rupture may occur painlessly, more frequently a +sharp pain is felt over the back of the wrist. The prominence of the +tendon, which normally forms the ulnar border of the snuff-box, +disappears. This lesion is chiefly met with in drummer-boys and is the +cause of drummer's palsy. The only chance of restoring function is in +uniting the ruptured tendon by open operation. + +[Illustration: FIG. 108.--Avulsion of Tendon with Terminal Phalanx of +Thumb. + +(Surgical Museum, University of Edinburgh.)] + +_Avulsion of Tendons._--This is a rare injury, in which the tendons of a +finger or toe are torn from their attachments along with a portion of +the digit concerned. In the hand, it is usually brought about by the +fingers being caught in the reins of a runaway horse, or being seized in +a horse's teeth, or in machinery. It is usually the terminal phalanx +that is separated, and with it the tendon of the deep flexor, which +ruptures at its junction with the belly of the muscle (Fig. 108). The +treatment consists in disinfecting the wound, closing the tendon-sheath, +and trimming the mutilated finger so as to provide a useful stump. + + +DISEASES OF MUSCLES AND TENDONS + +_Congenital absence_ of muscles is sometimes met with, usually in +association with other deformities. The pectoralis major, for example, +may be absent on one or on both sides, without, however, causing any +disability, as other muscles enlarge and take on its functions. + +_Atrophy of Muscle._--Simple atrophy, in which the muscle elements are +merely diminished in size without undergoing any structural alteration, +is commonly met with as a result of disuse, as when a patient is +confined to bed for a long period. + +In cases of joint disease, the muscles acting on the joint become +atrophied more rapidly than is accounted for by disuse alone, and this +is attributed to an interference with the trophic innervation of the +muscles reflected from centres in the spinal medulla. It is more marked +in the extensor than in the flexor groups of muscles. Those affected +become soft and flaccid, exhibit tremors on attempted movement, and +their excitability to the faradic current is diminished. + +_Neuropathic atrophy_ is associated with lesions of the nervous system. +It is most pronounced in lesions of the motor nerve-trunks, probably +because vaso-motor and trophic fibres are involved as well as those that +are purely motor in function. It is attended with definite structural +alterations, the muscle elements first undergoing fatty degeneration, +and then being absorbed, and replaced to a large extent by ordinary +connective tissue and fat. At a certain stage the muscles exhibit the +reaction of degeneration. In the common form of paralysis resulting from +poliomyelitis, many fibres undergo fatty degeneration and are replaced +by fat, while at the same time there is a regeneration of muscle fibres. + +#Fibrositis# or "#Muscular Rheumatism#."--This clinical term is applied +to a group of affections of which lumbago is the best-known example. The +group includes lumbago, stiff-neck, and pleurodynia--conditions which +have this in common, that sudden and severe pain is excited by movement +of the affected part. The lesion consists in inflammatory hyperplasia of +the connective tissue; the new tissue differs from normal fibrous tissue +in its tendency to contract, in being swollen, painful and tender on +pressure, and in the fact that it can be massaged away (Stockman). It +would appear to involve mainly the fibrous tissue of muscles, although +it may extend from this to aponeuroses, ligaments, periosteum, and the +sheaths of nerves. The term _fibrositis_ was applied to it by Gowers in +1904. + +In _lumbago_--_lumbo-sacral fibrositis_--the pain is usually located +over the sacrum, the sacro-iliac joint, or the aponeurosis of the lumbar +muscles on one or both sides. The amount of tenderness varies, and so +long as the patient is still he is free from pain. The slightest +attempt to alter his position, however, is attended by pain, which may +be so severe as to render him helpless for the moment. The pain is most +marked on rising from the stooping or sitting posture, and may extend +down the back of the hip, especially if, as is commonly the case, +lumbago and gluteal fibrosis coexist. Once a patient has suffered from +lumbago, it is liable to recur, and an attack may be determined by +errors of diet, changes of weather, exposure to cold or unwonted +exertion. It is met with chiefly in male adults, and is most apt to +occur in those who are gouty or are the subjects of oxaluric dyspepsia. + +_Gluteal fibrositis_ usually follows exposure to wet, and affects the +gluteal muscles, particularly the medius, and their aponeurotic +coverings. When the condition has lasted for some time, indurated +strands or nodules can be detected on palpating the relaxed muscles. The +patient complains of persistent aching and stiffness over the buttock, +and sometimes extending down the lateral aspect of the thigh. The pain +is aggravated by such movements as bring the affected muscles into +action. It is not referred to the line of the sciatic nerve, nor is +there tenderness on pressing over the nerve, or sensations of tingling +or numbness in the leg or foot. + +If untreated, the morbid process may implicate the sheath of the sciatic +nerve and cause genuine sciatic neuralgia (Llewellyn and Jones). A +similar condition may implicate the fascia lata of the thigh, or the +calf muscles and their aponeuroses--_crural fibrositis_. + +In _painful stiff-neck_, or "rheumatic torticollis," the pain is located +in one side of the neck, and is excited by some inadvertent movement. +The head is held stiffly on one side as in wry-neck, the patient +contracting the sterno-mastoid. There may be tenderness over the +vertebral spines or in the lines of the cervical nerves, and the +sterno-mastoid may undergo atrophy. This affection is more often met +with in children. + +In _pleurodynia_--_intercostal fibrositis_--the pain is in the line of +the intercostal nerves, and is excited by movement of the chest, as in +coughing, or by any bodily exertion. There is often marked tenderness. + +A similar affection is met with in the _shoulder and arm_--_brachial +fibrositis_--especially on waking from sleep. There is acute pain on +attempting to abduct the arm, and there may be localised tenderness in +the region of the axillary nerve. + +_Treatment._--The general treatment is concerned with the diet, +attention to the stomach, bowels, and kidneys and with the correction +of any gouty tendencies that may be present. Remedies such as +salicylates are given for the relief of pain, and for this purpose drugs +of the aspirin type are to be preferred, and these may be followed by +large doses of iodide of potassium. Great benefit is derived from +massage, and from the induction of hyperaemia by means of heat. Cupping +or needling, or, in exceptional cases, hypodermic injections of +antipyrin or morphin, may be called for. To prevent relapses of lumbago, +the patient must take systematic exercises of all kinds, especially such +as bring out the movements of the vertebral column and hip-joints. + +[Illustration: FIG. 109.--Volkmann's Ischaemic Contracture. When the +wrist is flexed to a right angle it is possible to extend the fingers. + +(Photographs lent by Mr. Lawford Knaggs)] + +#Contracture of Muscles.#--Permanent shortening of muscles results from +the prolonged approximation of their points of attachment, or from +structural changes in their substance produced by injury or by disease. +It is a frequent accompaniment and sometimes a cause of deformities, in +the treatment of which lengthening of the shortened muscles or their +tendons may be an essential step. + +#Myositis.#--_Ischaemic Myositis._--Volkmann was the first to describe a +form of myositis followed by contracture, resulting from interference +with the arterial blood supply. It is most frequently observed in the +flexor muscles of the forearm in children and young persons under +treatment for fractures in the region of the elbow, the splints and +bandages causing compression of the blood vessels. There is considerable +effusion of blood, the skin is tense, and the muscles, vessels, and +nerves are compressed; this is further increased if the elbow is flexed +and splints and tight bandages are applied. The muscles acquire a +board-like hardness and no longer contract under the will, and passive +motion is painful and restricted. Slight contracture of the fingers is +usually the first sign of the malady; in time the muscles undergo +further contraction, and this brings about a claw-like deformity of the +hand. The affected muscles usually show the reaction of degeneration. In +severe cases the median and ulnar nerves are also the seat of +cicatricial changes (ischaemic neuritis). + +By means of splints, the interphalangeal, metacarpo-phalangeal, and +wrist joints should be gradually extended until the deformity is +over-corrected (R. Jones). Murphy advises resection of the radius and +ulna sufficient to admit of dorsiflexion of the joints and lengthening +of the flexor tendons. + +Various forms of _pyogenic_ infection are met with in muscle, most +frequently in relation to pyaemia and to typhoid fever. These may result +in overgrowth of the connective-tissue framework of the muscle and +degeneration of its fibres, or in suppuration and the formation of one +or more abscesses in the muscle substance. Repair may be associated with +contracture. + +A _gonorrhoeal_ form of myositis is sometimes met with; it is painful, +but rarely goes on to suppuration. + +In the early secondary period of _syphilis_, the muscles may be the seat +of dull, aching, nocturnal pains, especially in the neck and back. +_Syphilitic contracture_ is a condition which has been observed chiefly +in the later secondary period; the biceps of the arm and the hamstrings +in the thigh are the muscles more commonly affected. The striking +feature is a gradually increasing difficulty of extending the limb at +the elbow or knee, and progressive flexion of the joint. The affected +muscle is larger and firmer than normal, and its electric excitability +is diminished. In tertiary syphilis, individual muscles may become the +seat of interstitial myositis or of gummata, and these affections +readily yield to anti-syphilitic remedies. + +_Tuberculous disease_ in muscle, while usually due to extension from +adjacent tissues, is sometimes the result of a primary infection through +the blood-stream. Tuberculous nodules are found disseminated throughout +the muscle; the surrounding tissues are indurated, and central caseation +may take place and lead to abscess formation and sinuses. We have +observed this form of tuberculous disease in the gastrocnemius and in +the psoas--in the latter muscle apart from tuberculous disease in the +vertebrae. + +#Tendinitis.#--German authors describe an inflammation of tendon as +distinguished from inflammation of its sheath, and give it the name +tendinitis. It is met with most frequently in the tendo-calcaneus in +gouty and rheumatic subjects who have overstrained the tendon, +especially during cold and damp weather. There is localised pain which +is aggravated by walking, and the tendon is sensitive and swollen from a +little above its insertion to its junction with the muscle. Gouty +nodules may form in its substance. Constitutional measures, massage, and +douching should be employed, and the tendon should be protected from +strain. + +#Calcification and Ossification in Muscles, Tendons, and +Fasciae.#--_Myositis ossificans._--Ossifications in muscles, tendons, +fasciae, and ligaments, in those who are the subjects of arthritis +deformans, are seldom recognised clinically, but are frequently met with +in dissecting-rooms and museums. Similar localised ossifications are met +with in Charcot's disease of joints, and in fractures which have +repaired with exuberant callus. The new bone may be in the form of +spicules, plates, or irregular masses, which, when connected with a +bone, are called _false exostoses_ (Fig. 110). + +[Illustration: FIG. 110.--Ossification in Tendon of Ilio-psoas Muscle.] + +_Traumatic Ossification in Relation to Muscle._--Various forms of +ossification are met with in muscle as the result of a single or of +repeated injury. Ossification in the crureus or vastus lateralis muscle +has been frequently observed as a result of a kick from a horse. Within +a week or two a swelling appears at the site of injury, and becomes +progressively harder until its consistence is that of bone. If the mass +of new bone moves with the affected muscle, it causes little +inconvenience. If, as is commonly the case, it is fixed to the femur, +the action of the muscle is impaired, and the patient complains of pain +and difficulty in flexing the knee. A skiagram shows the extent of the +mass and its relationship to the femur. The treatment consists in +excising the bony mass. + +Difficulty may arise in differentiating such a mass of bone from +sarcoma; the ossification in muscle is uniformly hard, while the sarcoma +varies in consistence at different parts, and the X-ray picture shows a +clear outline of the bone in the vicinity of the ossification in +muscle, whereas in sarcoma the involvement of the bone is shown by +indentations and irregularity in its contour. + +A similar ossification has been observed in relation to the insertion of +the brachialis muscle as a sequel of dislocation of the elbow. After +reduction of the dislocation, the range of movement gradually diminishes +and a hard swelling appears in front of the lower end of the humerus. +The lump continues to increase in size and in three to four weeks the +disability becomes complete. A radiogram shows a shadow in the muscle, +attached at one part as a rule to the coronoid process. During the next +three or four months, the lump in front of the elbow remains stationary +in size; a gradual decrease then ensues, but the swelling persists, as a +rule, for several years. + +[Illustration: FIG. 111.--Calcification and Ossification in Biceps and +Triceps. + +(From a radiogram lent by Dr. C. A. Adair Dighton.)] + +Ossification in the adductor longus was first described by Billroth +under the name of "rider's bone." It follows bruising and partial +rupture of the muscle, and has been observed chiefly in cavalry +soldiers. If it causes inconvenience the bone may be removed by +operation. + +Ossification in the deltoid and pectoral muscles has been observed in +foot-soldiers in the German army, and has received the name of +"drill-bone"; it is due to bruising of the muscle by the recoil of the +rifle. + +_Progressive Ossifying Myositis._--This is a rare and interesting +disease, in which the muscles, tendons, and fasciae throughout the body +become the seat of ossification. It affects almost exclusively the male +sex, and usually begins in childhood or youth, sometimes after an +injury, sometimes without apparent cause. The muscles of the back, +especially the trapezius and latissimus, are the first to be affected, +and the initial complaint is limitation of movement. + +[Illustration: FIG. 112.--Ossification in Muscles of Trunk in a case of +generalised Ossifying Myositis. + +(Photograph lent by Dr. Rustomjee.)] + +The affected muscles show swellings which are rounded or oval, firm and +elastic, sharply defined, without tenderness and without discoloration +of the overlying skin. Skiagrams show that a considerable deposit of +lime salts may precede the formation of bone, as is seen in Fig. 111. In +course of time the vertebral column becomes rigid, the head is bent +forward, the hips are flexed, and abduction and other movements of the +arms are limited. The disease progresses by fits and starts, until all +the striped muscles of the body are replaced by bone, and all movements, +even those of the jaws, are abolished. The subjects of this disease +usually succumb to pulmonary tuberculosis. + +There is no means of arresting the disease, and surgical treatment is +restricted to the removal or division of any mass of bone that +interferes with an important movement. + +A remarkable feature of this disease is the frequent presence of a +deformity of the great toe, which usually takes the form of hallux +valgus, the great toe coming to lie beneath the second one; the +shortening is usually ascribed to absence of the first phalanx, but it +has been shown to depend also on a synostosis and imperfect development +of the phalanges. A similar deformity of the thumb is sometimes met +with. + +Microscopical examination of the muscles shows that, prior to the +deposition of lime salts and the formation of bone, there occurs a +proliferation of the intra-muscular connective tissue and a gradual +replacement and absorption of the muscle fibres. The bone is spongy in +character, and its development takes place along similar lines to those +observed in ossification from the periosteum. + +#Tumours of Muscle.#--With the exception of congenital varieties, such +as the rhabdomyoma, tumours of muscle grow from the connective-tissue +framework and not from the muscle fibres. Innocent tumours, such as the +fibroma, lipoma, angioma, and neuro-fibroma, are rare. Malignant tumours +may be primary in the muscle, or may result from extension from adjacent +growths--for example, implication of the pectoral muscle in cancer of +the breast--or they may be derived from tumours situated elsewhere. The +diagnosis of an intra-muscular tumour is made by observing that the +swelling is situated beneath the deep fascia, that it becomes firm and +fixed when the muscle contracts, and that, when the muscle is relaxed, +it becomes softer, and can be moved in the transverse axis of the +muscle, but not in its long axis. + +Clinical interest attaches to that form of slowly growing +fibro-sarcoma--_the recurrent fibroid of Paget_--which is most +frequently met with in the muscles of the abdominal wall. A rarer +variety is the ossifying chondro-sarcoma, which undergoes ossification +to such an extent as to be visible in skiagrams. + +In primary sarcoma the treatment consists in removing the muscle. In the +limbs, the function of the muscle that is removed may be retained by +transplanting an adjacent muscle in its place. + +_Hydatid cysts_ of muscle resemble those developing in other tissues. + + +DISEASES OF TENDON SHEATHS + +Tendon sheaths have the same structure and function as the synovial +membranes of joints, and are liable to the same diseases. Apart from the +tendon sheaths displayed in anatomical dissections, there is a loose +peritendinous and perimuscular cellular tissue which is subject to the +same pathological conditions as the tendon sheaths proper. + +#Teno-synovitis.#--The toxic or infective agent is conveyed to the +tendon sheaths through the blood-stream, as in the gouty, gonorrhoeal, +and tuberculous varieties, or is introduced directly through a wound, as +in the common pyogenic form of teno-synovitis. + +_Teno-synovitis Crepitans._--In the simple or traumatic form of +teno-synovitis, although the most prominent etiological factor is a +strain or over-use of the tendon, there would appear to be some other, +probably a toxic, factor in its production, otherwise the affection +would be much more common than it is: only a small proportion of those +who strain or over-use their tendons become the subjects of +teno-synovitis. The opposed surfaces of the tendon and its sheath are +covered with fibrinous lymph, so that there is friction when they move +on one another. + +The _clinical features_ are pain on movement, tenderness on pressure +over the affected tendon, and a sensation of crepitation or friction +when the tendon is moved in its sheath. The crepitation may be soft like +the friction of snow, or may resemble the creaking of new +leather--"saddle-back creaking." There may be swelling in the long axis +of the tendon, and redness and oedema of the skin. If there is an +effusion of fluid into the sheath, the swelling is more marked and +crepitation is absent. There is little tendency to the formation of +adhesions. + +In the upper extremity, the sheath of the long tendon of the biceps may +be affected, but the condition is most common in the tendons about the +wrist, particularly in the extensors of the thumb, and it is most +frequently met with in those who follow occupations which involve +prolonged use or excessive straining of these tendons--for example, +washerwomen or riveters. It also occurs as a result of excessive +piano-playing, fencing, or rowing. + +At the ankle it affects the peronei, the extensor digitorum longus, or +the tibialis anterior. It is most often met with in relation to the +tendo-calcaneus--_Achillo-dynia_--and results from the pressure of +ill-fitting boots or from the excessive use and strain of the tendon in +cycling, walking, or dancing. There is pain in raising the heel from the +ground, and creaking can be felt on palpation. + +The _treatment_ consists in putting the affected tendon at rest, and +with this object a splint may be helpful; the usual remedies for +inflammation are indicated: Bier's hyperaemia, lead and opium +fomentations, and ichthyol and glycerine. The affection readily subsides +under treatment, but is liable to relapse on a repetition of the +exciting cause. + +_Gouty Teno-synovitis._--A deposit of urate of soda beneath the +endothelial covering of tendons or of that lining their sheaths is +commonly met with in gouty subjects. The accumulation of urates may +result in the formation of visible nodular swellings, varying in size +from a pea to a cherry, attached to the tendon and moving with it. They +may be merely unsightly, or they may interfere with the use of the +tendon. Recurrent attacks of inflammation are prone to occur. We have +removed such gouty masses with satisfactory results. + +_Suppurative Teno-synovitis._--This form usually follows upon infected +wounds of the fingers--especially of the thumb or little finger--and is +a frequent sequel to whitlow; it may also follow amputation of a finger. +Once the infection has gained access to the sheath, it tends to spread, +and may reach the palm or even the forearm, being then associated with +cellulitis. In moderately acute cases the tendon and its sheath become +covered with granulations, which subsequently lead to the formation of +adhesions; while in more acute cases the tendon sloughs. The pus may +burst into the cellular tissue outside the sheath, and the suppuration +is liable to spread to neighbouring sheaths or to adjacent bones or +joints--for example, those of the wrist. + +The _treatment_ consists in inducing hyperaemia and making small +incisions for the escape of pus. The site of incision is determined by +the point of greatest tenderness on pressure. After the inflammation has +subsided, active and passive movements are employed to prevent the +formation of adhesions between the tendon and its sheath. If the tendon +sloughs, the dead portion should be cut away, as its separation is +extremely slow and is attended with prolonged suppuration. + +_Gonorrhoeal Teno-synovitis._--This is met with especially in the tendon +sheaths about the wrist and ankle. It may occur in a mild form, with +pain, impairment of movement, and oedema, and sometimes an elongated, +fluctuating swelling, the result of serous effusion into the sheath. +This condition may alternate with a gonorrhoeal affection of one of the +larger joints. It may subside under rest and soothing applications, but +is liable to relapse. In the more severe variety the skin is red, and +the swelling partakes of the characters of a phlegmon with threatening +suppuration; it may result in crippling from adhesions. Even if pus +forms in the sheath, the tendon rarely sloughs. The treatment consists +in inducing hyperaemia by Bier's method; and a vaccine may be employed +with satisfactory results. + +#Tuberculous Disease of Tendon Sheaths.#--This is a comparatively common +affection, and is analogous to tuberculous disease of the synovial +membrane of joints. It may originate in the sheath, or may spread to it +from an adjacent bone. + +The commonest form--hydrops--is that in which the synovial sheath is +distended with a viscous fluid, and the fibrinous material on the free +surface becomes detached and is moulded into melon-seed bodies by the +movement of the tendon. The sheath itself is thickened by the growth of +tuberculous granulation tissue. The bodies are smooth and of a +dull-white colour, and vary greatly in size and shape. There may be an +overgrowth of the fatty fringes of the synovial sheath, a condition +described as "arborescent lipoma." + +The _clinical features_ vary with the tendon sheath affected. In the +common flexor sheath of the hand an hour-glass-shaped swelling is +formed, bulging above and below the transverse carpal (anterior annular) +ligament--formerly known as _compound palmar ganglion_. There is little +or no pain, but the fingers tend to be stiff and weak, and to become +flexed. On palpation, it is usually possible to displace the contents of +the sheath from one compartment to the other, and this may yield +fluctuation, and, what is more characteristic, a peculiar soft crepitant +sensation from the movement of the melon-seed bodies. In the sheath of +the peronei or other tendons about the ankle, the swelling is +sausage-shaped, and is constricted opposite the annular ligament. + +The onset and progress of the affection are most insidious, and the +condition may remain stationary for long periods. It is aggravated by +use or strain of the tendons involved. In exceptional cases the skin is +thinned and gives way, resulting in the formation of a sinus. + +_Treatment._--In the common flexor sheath of the palm, an attempt may be +made to cure the condition by removing the contents through a small +incision and filling the cavity with iodoform glycerine, followed by the +use of Bier's bandage. If this fails, the distended sheath is laid open, +the contents removed, the wall scraped, and the wound closed. + +A less common form of tuberculous disease is that in which the sheath +becomes the seat of _a diffuse tuberculous thickening_, not unlike the +white swelling met with in joints, and with a similar tendency to +caseation. A painless swelling of an elastic character forms in relation +to the tendon sheath. It is hour-glass-shaped in the common flexor +sheath of the palm, elongated or sausage-shaped in the extensors of the +wrist and in the tendons at the ankle. The tuberculous granulation +tissue is liable to break down and lead to the formation of a cold +abscess and sinuses, and in our experience is often associated with +disease in an adjacent bone or joint. In the peronei tendons, for +example, it may result from disease of the fibula or of the ankle-joint. + +When conservative measures fail, excision of the affected sheath should +be performed; the whole of the diseased area being exposed by free +incision of the overlying soft parts, the sheath is carefully isolated +from the surrounding tissues and is cut across above and below. Any +tuberculous tissue on the tendon itself is removed with a sharp spoon. +Associated bone or joint lesions are dealt with at the same time. In the +after-treatment the functions of the tendons must be preserved by +voluntary and passive movements. + +#Syphilitic Affections of Tendon Sheaths.#--These closely resemble the +syphilitic affections of the synovial membrane of joints. During the +secondary period the lesion usually consists in effusion into the +sheath; gummata are met with during the tertiary period. + +Arborescent lipoma has been found in the sheaths of tendons about the +wrist and ankle, sometimes in a multiple and symmetrical form, +unattended by symptoms and disappearing under anti-syphilitic treatment. + +#Tumours of Tendon Sheaths.#--Innocent tumours, such as _lipoma_, +_fibroma_, and _myxoma_, are rare. Special mention should be made of the +_myeloma_ which is met with at the wrist or ankle as an elongated +swelling of slow development, or over the phalanx of a finger as a small +rounded swelling. The tumour tissue, when exposed by dissection, is of a +chocolate or chamois-yellow colour, and consists almost entirely of +giant cells. The treatment consists in dissecting the tumour tissue off +the tendons, and this is usually successful in bringing about a +permanent cure. + +All varieties of _sarcoma_ are met with, but their origin from tendon +sheaths is not associated with special features. + + + + +CHAPTER XIX + +THE BURSAE + + +Anatomy--Normal and adventitious bursae--Injuries: Bursal + haematoma--DISEASES: Infective bursitis; Traumatic or trade + bursitis; Bursal hydrops; Solid bursal tumour; Gonorrhoeal and + suppurative forms of bursitis; Tuberculous and syphilitic + disease--Tumours--_Diseases of individual bursae in the upper and + lower extremities_. + +A bursa is a closed sac lined by endothelium and containing synovia. +Some are normally present--for instance, that between the skin and the +patella, and that between the aponeurosis of the gluteus maximus and the +great trochanter. _Adventitious bursae_ are developed as a result of +abnormal pressure--for example, over the tarsal bones in cases of +club-foot. + +#Injuries of Bursae.#--As a result of contusion, especially in bleeders, +haemorrhage may occur into the cavity of a bursa and give rise to a +_bursal haematoma_. Such a haematoma may mask a fracture of the bone +beneath--for example, fracture of the olecranon. + +#Diseases of Bursae.#--The lining membrane of bursae resembles that of +joints and tendon sheaths, and is liable to the same forms of disease. + +#Infective bursitis# frequently follows abrasions, scratches, and wounds +of the skin over the prepatellar or olecranon bursa, and in neglected +cases the infection transgresses the wall of the bursa and gives rise to +a spreading cellulitis. + +#Traumatic or Trade Bursitis.#--This term may be conveniently applied to +those affections of bursae which result from repeated slight traumatism +incident to particular occupations. The most familiar examples of these +are the enlargement of the prepatellar bursa met with in housemaids--the +"housemaid's knee" (Fig. 113); the enlargement of the olecranon +bursa--"miner's elbow"; and of the ischial bursa--"weaver's" or +"tailor's bottom" (Fig. 116). These affections are characterised by an +effusion of fluid into the sac of the bursa with thickening of its +lining membrane. While friction and pressure are the most evident +factors in their production, it is probable that there is also some +toxic agent concerned, otherwise these affections would be much more +common than they are. Of the countless housemaids in whom the +prepatellar bursa is subjected to friction and pressure, only a small +proportion become the subjects of housemaid's knee. + +_Clinical Features._--As these are best illustrated in the different +varieties of prepatellar bursitis, it is convenient to take this as the +type. In a number of cases the inflammation is acute and the patient is +unable to use the limb; the part is hot, swollen, and tender, and +fluctuation can be detected in the bursa. In the majority the condition +is chronic, and the chief feature is the gradual accumulation of fluid +constituting the _bursal hydrops_ or _hygroma_. When the affection has +lasted some time, or has frequently relapsed, the wall of the bursa +becomes thickened by fibrous tissue, which may be deposited irregularly, +so that septa, bands, or fringes are formed, not unlike those met with +in arthritis deformans. These fringes may be detached and form loose +bodies like those met with in joints; less frequently there are +fibrinous bodies of the melon-seed type, sometimes moulded into circular +discs like wafers. The presence of irregular thickenings of the wall, or +of loose bodies, may be recognised on palpation, especially in +superficial bursae, if the sac is not tensely filled with fluid. The +thickening of the wall may take place in a uniform and concentric +fashion, resulting in the formation of a fibrous tumour--_the solid +bursal tumour_--a small cavity remaining in the centre which serves to +distinguish it from a new growth or neoplasm. + +[Illustration: FIG. 113.--Hydrops of Prepatellar Bursa in a housemaid.] + +The _treatment_ varies according to the variety and stage of the +affection. In recent cases the symptoms subside under rest and the +application of fomentations. Hydrops may be got rid of by blistering, +by tapping, or by incision and drainage. When the wall is thickened, the +most satisfactory treatment is to excise the bursa; the overlying skin +being reflected in the shape of a horse-shoe flap or being removed along +with the bursa. + +#Other Diseases of Bursae# are associated with _gonorrhoeal infection_, +and with _rheumatism_, especially that following scarlet fever, and are +apt to be persistent or to relapse after apparent cure. In the _gouty_ +form, urate of soda is deposited in the wall of the bursa, and may +result in the formation of chalky tumours, sometimes of considerable +size (Fig. 114). + +[Illustration: FIG. 114.--Section through Bursa over external malleolus, +showing deposit of urate of soda. (Cf. Fig. 117.)] + +_Tuberculous disease_ of bursae closely resembles that of tendon sheaths. +It may occur as an independent affection, or may be associated with +disease in an adjacent bone or joint. It is met with chiefly in the +prepatellar and subdeltoid bursae, or in one of the bursae over the great +trochanter. The clinical features are those of an indolent hydrops, with +or without melon-seed bodies, or of uniform thickening of the wall of +the bursa; the tuberculous granulation tissue may break down into a cold +abscess, and give rise to sinuses. The best treatment is to excise the +affected bursa, or, when this is impracticable, to lay it freely open, +remove the tuberculous tissue with the sharp spoon or knife, and treat +the cavity by the open method. + +_Syphilitic disease_ is rarely recognised except in the form of bursal +and peri-bursal gummata in front of the knee-joint. + +_New growths_ include the fibroma, the myxoma, the myeloma or +giant-celled tumour, and various forms of sarcoma. + +#Diseases of Individual Bursae.#--The _olecranon bursa_ is frequently +the seat of pyogenic infection and of traumatic or trade bursitis, the +latter being known as "miner's" or "student's elbow." + +[Illustration: FIG. 115.--Tuberculous Disease of Sub-deltoid Bursa. + +(From a photograph lent by Sir George T. Beatson.)] + +The _sub-deltoid_ or _sub-acromial bursa_, which usually presents a +single cavity and does not normally communicate with the shoulder-joint, +is indispensable in abduction and rotation of the humerus. When the arm +is abducted, the fixed lower part or floor of the bursa is carried under +the acromion, and the upper part or roof is rolled up in the same +direction, hence tenderness over the inflamed bursa may disappear when +the arm is abducted (Dawbarn's sign). It is liable to traumatic +affections from a fall on the shoulder, pressure, or over-use of the +limb. Pain, located commonly at the insertion of the deltoid, is a +constant symptom and is especially annoying at night, the patient being +unable to get into a comfortable position. Tenderness may be elicited +over the anatomical limits of the bursa, and is usually most marked over +the great tuberosity, just external to the inter-tubercular (bicipital) +groove. When adhesions are present, abduction beyond 10 degrees is +impossible. Demonstrable effusion is not uncommon, but is disguised by +the overlying tissues. If left to himself, the patient tends to maintain +the limb in the "sling position," and resists movements in the direction +of abduction and rotation. In the treatment of this affection the arm +should be maintained at a right angle to the body, the arm being rotated +medially (Codman). When pain does not prevent it, movements of the arm +and massage are persevered with. In neglected cases, when adhesions have +formed and the shoulder is fixed, it may be necessary to break down the +adhesions under an anaesthetic. + +The bursa is also liable to infective conditions, such as acute +rheumatism, gonorrhoea, suppuration, or tubercle. In tuberculous disease +a large fluctuating swelling may form and acquire the characters of a +cold abscess (Fig. 115). + +The bursa underneath the tendon of the _subscapularis_ muscle when +inflamed causes alteration in the attitude of the shoulder and +impairment of its movements. + +An adventitious bursa forms over the _acromion_ process in porters and +others who carry weights on the shoulder, and may be the seat of +traumatic bursitis. + +The bursa under the _tendon of insertion of the biceps_, when the seat +of disease, is attended with pain and swelling about a finger's breadth +below the bend of the elbow; there is pain and difficulty in effecting +the combined movement of flexion and supination, slight limitation of +extension, and restriction of pronation. + +In the lower extremity, a large number of normal and adventitious bursae +are met with and may be the seat of bursitis. That over the _tuberosity +of the ischium_, when enlarged as a trade disease, is known as +"weaver's" or "tailor's bottom." It may form a fluctuating swelling of +great size, projecting on the buttock and extending down the thigh, and +causing great inconvenience in sitting (Fig. 116). It sometimes contains +a number of loose bodies. + +There are two bursae over the _great trochanter_, one superficial to, the +other beneath the aponeurosis of the gluteus maximus; the latter is not +infrequently infected by tuberculous disease that has spread from the +trochanter. + +The bursa _between the psoas muscle and the capsule of the hip-joint_ +may be the seat of tuberculous disease, and give rise to clinical +features not unlike those of disease of the hip-joint. The limb is +flexed, abducted and rotated out; there is a swelling in the upper part +of Scarpa's triangle, but the movements are not restricted in directions +which do not entail putting the ilio-psoas muscle on the stretch. + +Cartilaginous and partly ossified loose bodies may accumulate in the +ilio-psoas bursa and distend it, both in a downward direction towards +the hip-joint, with which it communicates, and upwards, projecting +towards the abdomen. + +The bursa beneath the quadriceps extensor--_subcrural bursa_--usually +communicates with the knee-joint and shares in its diseases. When shut +off from the joint it may suffer independently, and when distended with +fluid forms a horse-shoe swelling above the patella. + +In front of the patella and its ligament is the _prepatellar bursa_, +which may have one, two, or three compartments, usually communicating +with one another. It is the seat of the affection known as "housemaid's +knee," which is very common and is sometimes bilateral, and, less +frequently, of tuberculous disease which usually originates in the +patella. + +[Illustration: FIG. 116.--Great Enlargement of the Ischial Bursa. + +(Mr. Scot-Skirving's case.)] + +The bursa _between the ligamentum patellae and the tibia_ is rarely the +seat of disease. When it is, there is pain and tenderness referred to +the ligament, the patient is unable to extend the limb completely, the +tuberosity of the tibia is apparently enlarged, and there is a +fluctuating swelling on either side of the ligament, most marked in the +extended position of the limb. + +Of the numerous bursae in the popliteal space, that _between the +semi-membranosus and the medial head of the gastrocnemius_ is most +frequently the seat of disease, which is usually of the nature of a +simple hydrops, forming a fluctuating egg-or sausage-shaped swelling at +the medial side of the popliteal space. It is flaccid in the flexed, and +tense in the extended position. As a rule it causes little +inconvenience, and may be left alone. Otherwise it should be dissected +out, and if, as is frequently the case, there is a communication with +the knee-joint, this should be closed with sutures. + +[Illustration: FIG. 117.--Gouty Disease of Bursae in a tailor. The bursal +tumours were almost entirely composed of urate of soda. (Cf. Fig. 114.)] + +An adventitious bursa may form over the _lateral malleolus_, especially +in tailors, giving rise to the condition known as "tailor's ankle" +(Fig. 117). + +The bursa _between the tendo-calcaneus (Achillis) and the upper part of +the calcaneus_ may become inflamed--especially as a result of +post-scarlatinal rheumatism or gonorrhoea. The affection is known as +Achillo-bursitis. There is severe pain in the region of the insertion of +the tendo-calcaneus, the movements at the ankle-joint are restricted, +and the patient may be unable to walk. There is a tender swelling on +either side of the tendon. When, in spite of palliative treatment, the +affection persists or relapses, it is best to excise the bursa. The +tendo-calcaneus is detached from the calcaneus, the bursa dissected out, +and the tendon replaced. If there is a bony projection from the +calcaneus, it should be shaved off with the chisel. + +The bursa that is sometimes met with on the under aspect of the +calcaneus--_the subcalcanean bursa_--when inflamed, gives rise to pain +and tenderness in the sole of the foot. This affection may be associated +with a spinous projection from the bone, which is capable of being +recognised in a skiagram. The soft parts of the heel are turned forwards +as a flap, the bursa is dissected out, and the projection of bone, if +present, is removed. + +The enlargement of adventitious bursae over the head of the first +metatarsal in hallux valgus; over the tarsus, metatarsus, and digits in +the different forms of club-foot; over the angular projection in Pott's +disease of the spine; over the end of the bone in amputation stumps, and +over hard tumours such as chondroma and osteoma, are described +elsewhere. + + + + +CHAPTER XX + +DISEASES OF BONE + + +Anatomy and physiology--Regeneration of bone--Transplantation of bone. + DISEASES OF BONE--Definition of terms--Pyogenic diseases: + _Acute osteomyelitis and periostitis_; _Chronic and relapsing + osteomyelitis_; _Abscess of bone_--Tuberculous disease--Syphilitic + disease--Hydatids; Rickets; Osteomalacia--Ostitis deformans of + Paget--Osteomyelitis fibrosa--Affections of bones in diseases of + the nervous system--Fragilitas ossium--Tumours and cysts of bone. + +#Surgical Anatomy.#--During the period of growth, a long bone such as +the tibia consists of a shaft or _diaphysis_, and two extremities or +_epiphyses_. So long as growth continues there intervenes between the +shaft and each of the epiphyses a disc of actively growing +cartilage--_the epiphysial cartilage_; and at the junction of this +cartilage with the shaft is a zone of young, vascular, spongy bone known +as the _metaphysis_ or _epiphysial junction_. The shaft is a cylinder of +compact bone enclosing the medullary canal, which is filled with yellow +marrow. The extremities, which include the ossifying junctions, consist +of spongy bone, the spaces of which are filled with red marrow. The +articular aspect of the epiphysis is invested with a thick layer of +hyaline cartilage, known as the _articular cartilage_, which would +appear to be mainly nourished from the synovia. + +The external investment--the _periosteum_--is thick and vascular during +the period of growth, but becomes thin and less vascular when the +skeleton has attained maturity. Except where muscles are attached it is +easily separated from the bone; at the extremities it is intimately +connected with the epiphysial cartilage and with the epiphysis, and at +the margin of the latter it becomes continuous with the capsule of the +adjacent joint. It consists of two layers, an outer fibrous and an inner +cellular layer; the cells, which are called osteoblasts, are continuous +with those lining the Haversian canals and the medullary cavity. + +The arrangement of the _blood vessels_ determines to some extent the +incidence of disease in bone. The nutrient artery, after entering the +medullary canal through a special foramen in the cortex, bifurcates, and +one main division runs towards each of the extremities, and terminates +at the ossifying junction in a series of capillary loops projected +against the epiphysial cartilage. This arrangement favours the lodgment +of any organisms that may be circulating in the blood, and partly +accounts for the frequency with which diseases of bacterial origin +develop in the region of the ossifying junction. The diaphysis is also +nourished by numerous blood vessels from the periosteum, which penetrate +the cortex through the Haversian canals and anastomose with those +derived from the nutrient artery. The epiphyses are nourished by a +separate system of blood vessels, derived from the arteries which supply +the adjacent joint. The veins of the marrow are of large calibre and are +devoid of valves. + +The _nerves_ enter the marrow along with the arteries, and, being +derived from the sympathetic system, are probably chiefly concerned with +the innervation of the blood vessels, but they are also capable of +transmitting sensory impulses, as pain is a prominent feature of many +bone affections. + +It has long been believed that _the function of the periosteum_ is to +form new bone, but this view has been questioned by Sir William Macewen, +who maintains that its chief function is to limit the formation of new +bone. His experimental observations appear to show that new bone is +exclusively formed by the cellular elements or osteoblasts: these are +found on the surface of the bone, lining the Haversian canals and in the +marrow. We believe that it will avoid confusion in the study of the +diseases of bone if the osteoblasts on the surface of the bone are still +regarded as forming the deeper layer of the periosteum. + +The formation of new bone by the osteoblasts may be _defective_ as a +result of physiological conditions, such as old age and disease of a +part, and defective formation is often associated with atrophy, or more +strictly speaking, absorption, of the existing bone, as is well seen in +the edentulous jaw and in the neck of the femur of a person advanced in +years. Defective formation associated with atrophy is also illustrated +in the bones of the lower limbs of persons who are unable to stand or +walk, and in the distal portion of a bone which is the seat of an +ununited fracture. The same combination is seen in an exaggerated degree +in the bones of limbs that are paralysed; in the case of adults, atrophy +of bone predominates; in children and adolescents, defective formation +is the more prominent feature, and the affected bones are attenuated, +smooth on the surface, and abnormally light. + +On the other hand, the formation of new bone may be _exaggerated_, the +osteoblasts being excited to abnormal activity by stimuli of different +kinds: for example, the secretion of certain glandular organs, such as +the pituitary and thyreoid; the diluted toxins of certain +micro-organisms, such as the staphylococcus aureus and the spirochaete of +syphilis; a condition of hyperaemia, such as that produced artificially +by the application of a Bier's bandage or that which accompanies a +chronic leg-ulcer. + +The new bone is laid down on the surface, in the Haversian canals, or +in the cancellous spaces and medullary canal, or in all three +situations. The new bone on the surface sometimes takes the form of a +diffuse _encrustation_ of porous or spongy bone as in secondary +syphilis, sometimes as a uniform increase in the girth of the +bone--_hyperostosis_, sometimes as a localised heaping up of bone or +_node_, and sometimes in the form of spicules, spoken of as +_osteophytes_. When the new bone is laid down in the Haversian canals, +cancellous spaces and medulla, the bone becomes denser and heavier, and +is said to be _sclerosed_; in extreme instances this may result in +obliteration of the medullary canal. Hyperostosis and sclerosis are +frequently met with in combination, a condition that is well illustrated +in the femur and tibia in tertiary syphilis; if the subject of this +condition is confined to bed for several months before his death, the +sclerosis may be undone, and rarefaction may even proceed beyond the +normal, the bone becoming lighter and richer in fat, although retaining +its abnormal girth. + +The _function of the epiphysial cartilage_ is to provide for the growth +of the shaft in length. While all epiphysial cartilages contribute to +this result, certain of them functionate more actively and for a longer +period than others. Those at the knee, for example, contribute more to +the length of limb than do those at the hip or ankle, and they are also +the last to unite. In the upper limb the more active epiphyses are at +the shoulder and wrist, and these also are the last to unite. + +The activity of the epiphysial cartilage may be modified as a result of +disease. In rickets, for example, the formation of new bone may take +place unequally, and may go on more rapidly in one half of the disc than +in the other, with the result that the axis of the shaft comes to +deviate from the normal, giving rise to knock-knee or bow-knee. In +bacterial diseases originating in the marrow, if the epiphysial junction +is directly involved in the destructive process, its bone-forming +functions may be retarded or abolished, and the subsequent growth of the +bone be seriously interfered with. On the other hand, if it is not +directly involved but is merely influenced by the proximity of an +infective focus, its bone-forming functions may be stimulated by the +diluted toxins and the growth of the bone in length exaggerated. In +paralysed limbs the growth from the epiphyses is usually little short of +the normal. The result of interference with growth is more injurious in +the lower than in the upper limb, because, from the functional point of +view, it is essential that the lower extremities should be approximately +of equal length. In the forearm or leg, where there are two parallel +bones, if the growth of one is arrested the continued growth of the +other results in a deviation of the hand or foot to one side. + +In certain diseases, such as rickets and inherited syphilis, and in +developmental anomalies such as achondroplasia, _dwarfing_ of the +skeleton results from defective growth of bone at the ossifying +junctions. Conversely, excessive growth of bone at the ossifying +junctions results in abnormal height of the skeleton or _giantism_ as a +result, for example, of increased activity of the pituitary in +adolescents, and in eunuchs who have been castrated in childhood or +adolescence; in the latter, union of the epiphyses at the ends of the +long bones is delayed beyond the usual period at which the skeleton +attains maturity. + +#Regeneration of Bone.#--When bone has been lost or destroyed as a +result of injury or disease, it is capable of being reproduced, the +extent to which regeneration takes place varying under different +conditions. The chief part in the regeneration of bone is played by the +osteoblasts in the adjacent marrow and in the deeper layer of the +periosteum. The shaft of a long bone may be reproduced after having been +destroyed by disease or removed by operation. The flat bones of the +skull and the bones of the face, which are primarily developed in +membrane, have little capacity of regeneration; hence, when bone has +been lost or removed in these situations, there results a permanent +defect. + +Wounds or defects in articular cartilage are repaired by fibrous or +osseous tissue derived from the subjacent cancellous spaces. + +_Transplantation of Bone--Bone-grafting._--Clinical experience is +conclusive that a portion of bone which has been completely detached +from its surroundings--for example, a trephine circle, or a flap of bone +detached with the saw, or the loose fragments in a compound +fracture--may become, if replaced in position, firmly and permanently +incorporated with the surrounding bone. Embedded foreign bodies, on the +other hand, such as ivory pegs or decalcified bone, exhibit, on removal +after a sufficient interval, evidence of having been eroded, in the +shape of worm-eaten depressions and perforations, and do not become +united or fused to the surrounding bone. It follows from this that the +implanting of living bone is to be preferred to the implanting of dead +bone or of foreign material. We believe that transplanted living bone +when placed under favourable conditions survives and becomes +incorporated with the bone with which it is in contact, and does not +merely act as a scaffolding. We believe also that the retention of the +periosteum on the graft is not essential, but, by favouring the +establishment of vascular connections, it contributes to the survival of +the graft and the success of the transplantation. Macewen maintains that +bone grafts "take" better if broken up into small fragments; we regard +this as unnecessary. Bone grafts yield better functional results when +they are immovably fixed to the adjacent bone by suture, pegs, or +plates. As in all grafting procedures, asepsis is essential. + +Transplanted bone retains its vitality when embedded in the soft parts, +but is gradually absorbed and replaced by fibrous tissue. + + +DISEASES OF BONE + +The morbid processes met with in bone originate in the same way and lead +to the same results as do similar processes in other tissues. The +structural peculiarities of bone, however, and the important changes +which take place in the skeleton during the period of growth, modify +certain of the clinical and pathological features. + +_Definition of Terms._--Any diseased process that affects the periosteum +is spoken of as _periostitis_; the term _osteomyelitis_ is employed when +it is located in the marrow. The term _epiphysitis_ has been applied to +an inflammatory process in two distinct situations--namely, the +ossifying nucleus in the epiphysis, and the ossifying junction or +metaphysis between the epiphysial cartilage and the diaphysis. We shall +restrict the term to inflammation in the first of these situations. +Inflammation at the ossifying junction is included under the term +osteomyelitis. + +The term _rarefying ostitis_ is applied to any process that is attended +with excessive absorption of the framework of a bone, whereby it becomes +more porous or spongy than it was before, a condition known as +_osteoporosis_. + +The term _caries_ is employed to indicate any diseased process +associated with crumbling away of the trabecular framework of a bone. It +may be considered as the equivalent of ulceration or molecular +destruction in the soft parts. The carious process is preceded by the +formation of granulation tissue in the marrow or periosteum, which eats +away and replaces the bone in contact with it. The subsequent +degeneration and death of the granulation tissue under the necrotic +influence of bacterial toxins results in disintegration and crumbling +away of the trabecular framework of the portion of bone affected. +Clinically, carious bone yields a soft grating sensation under the +pressure of the probe. The macerated bone presents a rough, eroded +surface. + +The term _dry caries_ (_caries sicca_) is applied to that variety which +is unattended with suppuration. + +_Necrosis_ is the term applied to the death of a tangible portion of +bone, and the dead portion when separated is called a _sequestrum_. The +term _exfoliation_ is sometimes employed to indicate the separation or +throwing off of a superficial sequestrum. The edges and deep surface of +the sequestrum present a serrated or worm-eaten appearance due to the +process of erosion by which the dead bone has been separated from the +living. + + +BACTERIAL DISEASES + +The most important diseases in this group are the pyogenic, the +tuberculous, and the syphilitic. + +PYOGENIC DISEASES OF BONE.--These diseases result from +infection with pyogenic organisms, and two varieties or types are +recognised according to whether the organisms concerned reach their seat +of action by way of the blood-stream, or through an infection of the +soft parts in contact with the bone. + + +INFECTIONS THROUGH THE BLOOD-STREAM + +#Diseases caused by the Staphylococcus Aureus.#--As the majority of +pyogenic diseases are due to infection with the staphylococcus aureus, +these will be described first. + +#Acute osteomyelitis# is a suppurative process beginning in the marrow +and tending to spread to the periosteum. The disease is common in +children, but is rare after the skeleton has attained maturity. Boys are +affected more often than girls, in the proportion of three to one, +probably because they are more liable to exposure, to injury, and to +violent exertion. + +_Etiology._--Staphylococci gain access to the blood-stream in various +ways, it may be through the skin or through a mucous surface. + +Such conditions as, for example, a blow, some extra exertion such as a +long walk, or exposure to cold, as in wading, may act as localising +factors. + +The long bones are chiefly affected, and the commonest sites are: either +end of the tibia and the lower end of the femur; the other bones of the +skeleton are affected in rare instances. + +_Pathology._--The disease commences and is most intense in the marrow of +the ossifying junction at one end of the diaphysis; it may commence at +both ends simultaneously--_bipolar osteomyelitis_; or, commencing at one +end, may spread to the other. + +The changes observed are those of intense engorgement of the marrow, +going on to greenish-yellow purulent infiltration. Where the process is +most advanced--that is, at the ossifying junction--there are evidences +of absorption of the framework of the bone; the marrow spaces and +Haversian canals undergo enlargement and become filled with +greenish-yellow pus. This rarefaction of the spongy bone is the earliest +change seen with the X-rays. + +The process may remain localised to the ossifying junction, but usually +spreads along the medullary canal for a varying distance, and also +extends to the periosteum by way of the enlarged Haversian canals. The +pus accumulates under the periosteum and lifts it up from the bone. The +extent of spread in the medullary canal and beneath the periosteum is in +close correspondence. The periosteum of the diaphysis is easily +separated--hence the facility with which the pus spreads along the +shaft; but in the region of the ossifying junction it is raised with +difficulty because of its intimate connection with the epiphysial +cartilage. Less frequently there is more than one collection of pus +under the periosteum, each being derived from a focus of suppuration in +the subjacent marrow. The pus perforates the periosteum, and makes its +way to the surface by the easiest anatomical route, and discharges +externally, forming one or more sinuses through which fresh infection +may take place. The infection may spread to the adjacent joint, either +directly through the epiphysis and articular cartilage, or along the +deep layer of the periosteum and its continuation--the capsular +ligament. When the epiphysis is intra-articular, as, for example, in the +head of the femur, the pus when it reaches the surface of the bone +necessarily erupts directly into the joint. + +While the occurrence of purely periosteal suppuration is regarded as +possible, we are of opinion that the embolic form of staphylococcal +osteomyelitis always originates in the marrow. + +The portion of the diaphysis which has sustained the action of the +concentrated toxins has its vitality further impaired as a result of the +stripping of the periosteum and thrombosis of the blood vessels of the +marrow, so that _necrosis_ of bone is one of the most striking results +of the disease, and as this takes place rapidly, that is, in a day or +two, the term _acute necrosis_, formerly applied to the disease, was +amply justified. + +When there is marked rarefaction of the bone at the ossifying junction, +the epiphysis is liable to be separated--_epiphysiolysis_. The +separation usually takes place through the young bone of the ossifying +junction, and the surfaces of the diaphysis and epiphysis are opposed to +each other by irregular eroded surfaces bathed in pus. The separated +epiphysis may be kept in place by the periosteum, but when this has been +detached by the formation of pus beneath it, the epiphysis is liable to +be displaced by muscular action or by some movement of the limb, or it +is the diaphysis that is displaced, for example, the lower end of the +diaphysis of the femur may be projected into the popliteal space. + +The epiphysial cartilage usually continues its bone-forming functions, +but when it has been seriously damaged or displaced, the further growth +of the bone in length may be interfered with. Sometimes the separated +and displaced epiphysis dies and constitutes a sequestrum. + +The adjacent joint may become filled at an early stage with a serous +effusion, which may be sterile. When the cocci gain access to the joint, +the lesion assumes the characters of a purulent arthritis, which, from +its frequency during the earlier years of life, has been called _the +acute arthritis of infants_. + +Separation of an epiphysis nearly always results in infection and +destruction of the adjacent joint. + +Osteomyelitis is rare in the bones of the carpus and tarsus, and the +associated joints are usually infected from the outset. In flat bones, +such as the skull, the scapula, or the ilium, suppuration usually occurs +on both aspects of the bone as well as in the marrow. + +_Clinical Features._--The constitutional symptoms, which are due to the +associated toxaemia, vary considerably in different cases. In mild cases +they may be so slight as to escape recognition. In exceptionally severe +cases the patient may succumb before there are obvious signs of the +localisation of the staphylococci in the bone marrow. In average cases +the temperature rises rapidly with a rigor and runs an irregular course +with morning remissions, there is marked general illness accompanied by +headache, vomiting, and sometimes delirium. + +The local manifestations are pain and tenderness in relation to one of +the long bones; the pain may be so severe as to prevent sleep and to +cause the child to cry out. Tenderness on pressure over the bone is the +most valuable diagnostic sign. At a later stage there is an ill-defined +swelling in the region of the ossifying junction, with oedema of the +overlying skin and dilatation of the superficial veins. + +The swelling appears earlier and is more definite in superficial bones +such as the tibia, than in those more deeply placed such as the upper +end of the femur. It may be less evident to the eye than to the fingers, +and is best appreciated by gently stroking the bone from the middle of +its shaft towards the end. The maximum thickening and tenderness usually +correspond to the junction of the diaphysis with the epiphysis, and the +swelling tails off gradually along the shaft. As time goes on there is +redness of the skin, especially over a superficial bone, such as the +tibia, the swelling becomes softer, and gives evidence of fluctuation. +This stage may be reached at the end of twenty-four hours, or not for +some days. + +Suppuration spreads towards the surface, until, some days later, the +skin sloughs and pus escapes, after which the fever usually remits and +the pain and other symptoms are relieved. The pus may contain blood and +droplets of fat derived from the marrow, and in some cases minute +particles of bone are present also. The presence of fat and bony +particles in the pus confirms the medullary origin of the suppuration. + +If an incision is made, the periosteum is found to be raised from the +bone; the extent of the bare bone will be found to correspond fairly +accurately with the extent of the lesion in the marrow. + +_Local Complications._--The adjacent joint may exhibit symptoms which +vary from those of a simple effusion to those of a purulent _arthritis_. +The joint symptoms may count for little in the clinical picture, or, as +in the case of the hip, may so predominate as to overshadow those of the +bone lesion from which they originated. + +_Separation and displacement of the epiphysis_ usually reveals itself by +an alteration in the attitude of the limb; it is nearly always +associated with suppuration in the adjacent joint. + +When _pathological fracture_ of the shaft occurs, as it may do, from +some muscular effort or strain, it is attended with the usual signs of +fracture. + +_Dislocation_ of the adjacent joint has been chiefly observed at the +hip; it may result from effusion into the joint and stretching of the +ligaments, or may be the sequel of a purulent arthritis; the signs of +dislocation are not so obvious as might be expected, but it is attended +with an alteration in the attitude of the limb, and the displacement of +the head of the bone is readily shown in a skiagram. + +_General Complications._--In some cases a _multiplicity of lesions_ in +the bones and joints imparts to the disease the features of pyaemia. The +occurrence of endocarditis, as indicated by alterations in the heart +sounds and the development of murmurs, may cause widespread infective +embolism, and metastatic suppurations in the kidneys, heart-wall, and +lungs, as well as in other bones and joints than those primarily +affected. The secondary suppurations are liable to be overlooked unless +sought for, as they are rarely attended with much pain. + +In these multiple forms of osteomyelitis the toxaemic symptoms +predominate; the patient is dull and listless, or he may be restless and +talkative, or actually delirious. The tongue is dry and coated, the lips +and teeth are covered with sordes, the motions are loose and offensive, +and may be passed involuntarily. The temperature is remittent and +irregular, the pulse small and rapid, and the urine may contain blood +and albumen. Sometimes the skin shows erythematous and purpuric rashes, +and the patient may cry out as in meningitis. The post-mortem +appearances are those of pyaemia. + +_Differential Diagnosis._--Acute osteomyelitis is to be diagnosed from +infections of the soft parts, such as erysipelas and cellulitis, and, in +the case of the tibia, from erythema nodosum. Tenderness localised to +the ossifying junction is the most valuable diagnostic sign of +osteomyelitis. + +When there is early and pronounced general intoxication, there is likely +to be confusion with other acute febrile illnesses, such as scarlet +fever. In all febrile conditions in children and adolescents, the +ossifying junctions of the long bones should be examined for areas of +pain and tenderness. + +Osteomyelitis has many features in common with acute articular +rheumatism, and some authorities believe them to be different forms of +the same disease (Kocher). In acute rheumatism, however, the joint +symptoms predominate, there is an absence of suppuration, and the pains +and temperature yield to salicylates. + +The _prognosis_ varies with the type of the disease, with its +location--the vertebrae, skull, pelvis, and lower jaw being specially +unfavourable--with the multiplicity of the lesions, and with the +development of endocarditis and internal metastases. + +_Treatment._--This is carried out on the same lines as in other pyogenic +infections. + +In the earliest stages of the disease, the induction of hyperaemia is +indicated, and should be employed until the diagnosis is definitely +established, and in the meantime preparations for operation should be +made. An incision is made down to and through the periosteum, and +whether pus is found or not, the bone should be opened in the vicinity +of the ossifying junction by means of a drill, gouge, or trephine. If +pus is found, the opening in the bone is extended along the shaft as far +as the periosteum has been separated, and the infected marrow is removed +with the spoon. The cavity is then lightly packed with rubber dam, or, +as recommended by Bier, the skin edges are brought together by sutures +which are loosely tied to afford sufficient space between them for the +exit of discharge, and the hyperaemic treatment is continued. + +When there is widespread suppuration in the marrow, and the shaft is +extensively bared of periosteum and appears likely to die, it may be +resected straight away or after an interval of a day or two. Early +resection of the shaft is also indicated if the opening of the medullary +canal is not followed by relief of symptoms. In the leg and forearm, the +unaffected bone maintains the length and contour of the limb; in the +case of the femur and humerus, extension with weight and pulley along +with some form of moulded gutter splint is employed with a similar +object. + +Amputation of the limb is reserved for grave cases, in which life is +endangered by toxaemia, which is attributed to the primary lesion. It may +be called for later if the limb is likely to be useless, as, for +example, when the whole shaft of the bone is dead without the formation +of a new case, when the epiphyses are separated and displaced, and the +joints are disorganised. + +Flat bones, such as the skull or ilium, must be trephined and the pus +cleared out from both aspects of the bone. In the vertebrae, operative +interference is usually restricted to opening and draining the +associated abscess. + +#Nature's Effort at Repair.#--_In cases which are left to nature_, and +in which necrosis of bone has occurred, those portions of the periosteum +and marrow which have retained their vitality resume their osteogenetic +functions, often to an exaggerated degree. Where the periosteum has been +lifted up by an accumulation of pus, or is in contact with bone that is +dead, it proceeds to form new bone with great activity, so that the dead +shaft becomes surrounded by a sheath or case of new bone, known as the +_involucrum_ (Fig. 118). Where the periosteum has been perforated by pus +making its way to the surface, there are defects or holes in the +involucrum, called _cloacae_. As these correspond more or less in +position to the sinuses in the skin, in passing a probe down one of the +sinuses it usually passes through a cloaca and strikes the dead bone +lying in the interior. If the periosteum has been extensively +destroyed, new bone may only be formed in patches, or not at all. The +dead bone is separated from the living by the agency of granulation +tissue with its usual complements of phagocytes and osteoclasts, so that +the sequestrum presents along its margins and on its deep surface a +pitted, grooved, and worm-eaten appearance, except on the periosteal +aspect, which is unaltered. Ultimately the dead bone becomes loose and +lies in a cavity a little larger than itself; the wall of the cavity is +formed by the new case, lined with granulation tissue. The separation of +the sequestrum takes place more rapidly in the spongy bone of the +ossifying junction than in the compact bone of the shaft. + +When foci of suppuration have been scattered up and down the medullary +cavity, and the bone has died in patches, several sequestra may be +included by the new case; each portion of dead bone is slowly separated, +and comes to lie in a cavity lined by granulations. + +Even at a distance from the actual necrosis there is formation of new +bone by the marrow; the medullary canal is often obliterated, and the +bone becomes heavier and denser--sclerosis; and the new bone which is +deposited on the original shaft results in an increase in the girth of +the bone--hyperostosis. + +[Illustration: FIG. 118.--Shaft of Femur after Acute Osteomyelitis. The +shaft has undergone extensive necrosis, and a shell of new bone has been +formed by the periosteum.] + +_Pathological fracture_ of the shaft may occur at the site of necrosis, +when the new case is incapable of resisting the strain put upon it, and +is most frequently met with in the shaft of the femur. Short of +fracture, there may be bending or curving of the new case, and this +results in deformity and shortening of the limb (Fig. 119). + +The _extrusion of a sequestrum_ may occur, provided there is a cloaca +large enough to allow of its escape, but the surgeon has usually to +interfere by performing the operation of sequestrectomy. Displacement or +partial extrusion of the dead bone may cause complications, as when a +sequestrum derived from the trigone of the femur perforates the +popliteal artery or the cavity of the knee-joint, or a sequestrum of the +pelvis perforates the wall of the urinary bladder. + +The extent to which bone which has been lost is reproduced varies in +different parts of the skeleton: while the long bones, the scapula, the +mandible, and other bones which are developed in cartilage are almost +completely re-formed, bones which are entirely developed in membrane, +such as the flat bones of the skull and the maxilla, are not reproduced. + +[Illustration: FIG. 119.--Femur and Tibia showing results of Acute +Osteomyelitis affecting Trigone of Femur; sequestrum partly surrounded +by new case; backward displacement of lower epiphysis and implication of +knee-joint.] + +It may be instructive to describe _the X-ray appearances of a long bone +that has passed through an attack of acute osteomyelitis_ severe enough +to have caused necrosis of part of the diaphysis. The shadow of the dead +bone is seen in the position of the original shaft which it represents; +it is of the same shape and density as the original shaft, while its +margins present an irregular contour from the erosion concerned in its +separation. The sequestrum is separated from the living bone by a clear +zone which corresponds to the layer of granulations lining the cavity in +which it lies. This clear zone separating the shadow of the dead bone +from that of the living bone by which it is surrounded is conclusive +evidence of a sequestrum. The medullary canal in the vicinity of the +sequestrum being obliterated, is represented by a shadow of varying +density, continuous with that of the surrounding bone. The shadow of the +new case or involucrum with its wavy contour is also in evidence, with +its openings or cloacae, and is mainly responsible for the increase in +the diameter of the bone. + +The skiagram may also show separation and displacement of the adjacent +epiphysis and destruction of the articular surfaces or dislocation of +the joint. + +_Sequelae of Acute Suppurative Osteomyelitis._--The commonest sequel is +the presence of a sequestrum with one or more discharging sinuses; owing +to the abundant formation of scar tissue these sinuses have rigid edges +which are usually depressed and adherent to the bone. + +_The Recognition and Removal of Sequestra._--So long as there is dead +bone there will be suppuration from the granulations lining the cavity +in which it lies, and a discharge of pus from the sinuses, so that the +mere persistence of discharge after an attack of osteomyelitis, is +presumptive evidence of the occurrence of necrosis. Where there are one +or more sinuses, the passage of a probe which strikes bare bone affords +corroboration of the view that the bone has perished. When the dead bone +has been separated from the living, the X-rays yield the most exact +information. + +The traditional practice is to wait until the dead bone is entirely +separated before undertaking an operation for its removal, from fear, on +the one hand, of leaving portions behind which may keep up the +discharge, and, on the other, of removing more bone than is necessary. +This practice need not be adhered to, as by operating at an earlier +stage healing is greatly hastened. If it is decided to wait for +separation of the dead bone, drainage should be improved, and the +infective element combated by the induction of hyperaemia. + +_The operation_ for the removal of the dead bone (_sequestrectomy_) +consists in opening up the periosteum and the new case sufficiently to +allow of the removal of all the dead bone, including the most minute +sequestra. The limb having been rendered bloodless, existing sinuses are +enlarged, but if these are inconveniently situated--for example, in the +centre of the popliteal space in necrosis of the femoral trigone--it is +better to make a fresh wound down to the bone on that aspect of the +limb which affords best access, and which entails the least injury of +the soft parts. The periosteum, which is thick and easily separable, is +raised from the new case with an elevator, and with the chisel or gouge +enough of the new bone is taken away to allow of the removal of the +sequestrum. Care must be taken not to leave behind any fragment of dead +bone, as this will interfere with healing, and may determine a relapse +of suppuration. + +The dead bone having been removed, the lining granulations are scraped +away with a spoon, and the cavity is disinfected. + +There are different ways of dealing with a _bone cavity_. It may be +packed with gauze (impregnated with "bipp" or with iodoform), which is +changed at intervals until healing takes place from the bottom; it may +be filled with a flap of bone and periosteum raised from the vicinity, +or with bone grafts; or the wall of bone on one side of the cavity may +be chiselled through at its base, so that it can be brought into contact +with the opposite wall. The method of filling bone cavities devised by +Mosetig-Moorhof, consists in disinfecting and drying the cavity by a +current of hot air, and filling it with a mixture of powdered iodoform +(60 parts) and oil of sesame and spermaceti (each 40 parts), which is +fluid at a temperature of 112 o F.; the soft parts are then brought +together without drainage. As the cavity fills up with new bone the +iodoform is gradually absorbed. Iodoform gives a dark shadow with the +X-rays, so that the process of its absorption can be followed in +skiagrams taken at intervals. + +These procedures may be carried out at the same time as the sequestrum +is removed, or after an interval. In all of them, asepsis is essential +for success. + +The _deformities_ resulting from osteomyelitis are more marked the +earlier in life the disease occurs. Even under favourable conditions, +and with the continuous effort at reconstruction of the bone by Nature's +method, the return to normal is often far from perfect, and there +usually remains a variable amount of hyperostosis and sclerosis and +sometimes curving of the bone. Under less favourable conditions, the +late results of osteomyelitis may be more serious. _Shortening_ is not +uncommon from interference with growth at the ossifying junction. +_Exaggerated growth_ in the length of a bone is rare, and has been +observed chiefly in the bones of the leg. Where there are two parallel +bones--as in the leg, for example--the growth of the diseased bone may +be impaired, and the other continuing its normal growth becomes +disproportionately long; less frequently the growth of the diseased +bone is exaggerated, and it becomes the longer of the two. In either +case, the longer bone becomes curved. An _obliquity_ of the bone may +result when one half of the epiphysial cartilage is destroyed and the +other half continues to form bone, giving rise to such deformities as +knock-knee and club-hand. + +Deformity may also result from vicious union of a pathological fracture, +permanent displacement of an epiphysis, contracture, ankylosis, or +dislocation of the adjacent joint. + +#Relapsing Osteomyelitis.#--As the term indicates, the various forms of +relapsing osteomyelitis date back to an antecedent attack, and their +occurrence depends on the capacity of staphylococci to lie latent in the +marrow. + +Relapse may take place within a few months of the original attack, or +not for many years. Cases are sometimes met with in which relapses recur +at regular intervals for several years, the tendency, however, being for +the attacks to become milder as the virulence of the organisms becomes +more and more attenuated. + +_Clinical Features._--Osteomyelitis in a patient over twenty-five is +nearly always of the relapsing variety. In some cases the bone becomes +enlarged, with pain and tenderness on pressure; in others there are the +usual phenomena which attend suppuration, but the pus is slow in coming +to the surface, and the constitutional symptoms are slight. The pus may +escape by new channels, or one of the old sinuses may re-open. +Radiograms usually furnish useful information as to the condition of the +bone, both as it is altered by the original attack and by the changes +that attend the relapse of the infective process. + +_Treatment._--In cases of thickening of the bone with persistent and +severe pain, if relief is not afforded by the repeated application of +blisters, the thickened periosteum should be incised, and the bone +opened up with the chisel or trephine. In cases attended with +suppuration, the swelling is incised and drained, and if there is a +sequestrum, it must be removed. + +#Circumscribed Abscess of Bone--"Brodie's Abscess."#--The most important +form of relapsing osteomyelitis is the circumscribed abscess of bone +first described by Benjamin Brodie. It is usually met with in young +adults, but we have met with it in patients over fifty. Several years +may intervene between the original attack of osteomyelitis and the onset +of symptoms of abscess. + +_Morbid Anatomy._[7]--The abscess is nearly always situated in the +central axis of the bone in the region of the ossifying junction, +although cases are occasionally met with in which it lies nearer the +middle of the shaft. In exceptional cases there is more than one abscess +(Fig. 120). The tibia is the bone most commonly affected, but the lower +end of the femur, or either end of the humerus, may be the seat of the +abscess. In the quiescent stage the lesion is represented by a small +cavity in the bone, filled with clear serum, and lined by a fibrous +membrane which is engaged in forming bone. Around the cavity the bone is +sclerosed, and the medullary canal is obliterated. When the infection +becomes active, the contents of the cavity are transformed into a +greenish-yellow pus from which the staphylococcus can be isolated, and +the cavity is lined by a thin film of granulation tissue which erodes +the surrounding bone and so causes the abscess to increase in size. If +the erosion proceeds uniformly, the cavity is spherical or oval; if it +is more active at some points than others, diverticula or tunnels are +formed, and one of these may finally erupt through the shell of the bone +or into an adjacent joint. Small irregular sequestra are occasionally +found within the abscess cavity. In long-standing cases it is common to +find extensive obliteration of the medullary canal, and a considerable +increase in the girth of the bone. + +[7] Alexis Thomson, _Edin. Med. Journ._, 1906. + +[Illustration: FIG. 120.--Segment of Tibia resected for Brodie's +Abscess. The specimen shows two separate abscesses in the centre of the +shaft, the lower one quiescent, the upper one active and increasing in +size.] + +The size of the abscess ranges from that of a cherry to that of a +walnut, but specimens in museums show that, if left to Nature, the +abscess may attain much greater dimensions. + +The affected bone is not only thicker and heavier than normal, but may +also be curved or otherwise deformed as a result of the original attack +of osteomyelitis. + +The _clinical features_ are almost exclusively local. Pain, due to +tension within the abscess, is the dominant symptom. At first it is +vague and difficult to localise, later it is referred to the interior of +the bone, and is described as "boring." It is aggravated by use of the +limb, and there are often, especially during the night, exacerbations in +which the pain becomes excruciating. In the early stages there are +periods of days or weeks during which the symptoms abate, but as the +abscess increases these become shorter, until the patient is hardly ever +free from pain. Localised tenderness can almost always be elicited by +percussion, or by compressing the bone between the fingers and thumb. +The pain induced by the traction of muscles attached to the bone, or by +the weight of the body, may interfere with the function of the limb, and +in the lower extremity cause a limp in walking. The limb may be disabled +from _involvement of the adjacent joint_, in which there may be an +intermittent hydrops which comes and goes coincidently with +exacerbations of pain; or the abscess may perforate the joint and set up +an acute arthritis. + +The _diagnosis_ of Brodie's abscess from other affections met with at +the ends of long bones, and particularly from tuberculosis, syphilis, +and new growths, is made by a consideration of the previous history, +especially with reference to an antecedent attack of osteomyelitis. When +the adjacent joint is implicated, the surgeon may be misled by the +patient referring all the symptoms to the joint. + +The X-ray picture is usually diagnostic chiefly because all the lesions +which are liable to be confused with Brodie's abscess--gumma, tubercle, +myeloma, chondroma, and sarcoma--give a well-marked central clear area; +the sclerosis around Brodie's abscess gives a dense shadow in which the +central clear area is either not seen at all or only faintly (Fig. 121). + +_Treatment._--If an abscess is suspected, there should be no hesitation +in exploring the interior of the bone. It is exposed by a suitable +incision; the periosteum is reflected and the bone is opened up by a +trephine or chisel, and the presence of an abscess may be at once +indicated by the escape of pus. If, owing to the small size of the +abscess or the density of the bone surrounding it, the pus is not +reached by this procedure, the bone should be drilled in different +directions. + +[Illustration: FIG. 121.--Radiogram of Brodie's Abscess in Lower End of +Tibia.] + +#Other Forms of Acute Osteomyelitis.#--Among the less severe forms of +osteomyelitis resulting from the action of attenuated organisms are the +_serous_ variety, in which an effusion of serous fluid forms under the +periosteum; and _growth fever_, in which the child complains of vague +evanescent pains (growing pains), and of feeling tired and disinclined +to play; there may be some rise of temperature in the evening. + +Infection with the _staphylococcus albus_, the _streptococcus_, or the +_pneumococcus_ also causes a mild form of osteomyelitis which may go on +to suppuration. + +_Necrosis without suppuration_, described by Paget under the name "quiet +necrosis," is a rare disease, and would appear to be associated with an +attenuated form of staphylococcal infection (Tavel). It occurs in +adults, being met with up to the age of fifty or sixty, and is +characterised by the insidious development of a swelling which involves +a considerable extent of a long bone. The pain varies in intensity, and +may be continuous or intermittent, and there is tenderness on pressure. +The shaft is increased in girth as a result of its being surrounded by a +new case of bone. The resemblance to sarcoma may be very close, but the +swelling is not as defined as in sarcoma, nor does it ever assume the +characteristic "leg of mutton" shape. In both diseases there is a +tendency to pathological fracture. It is difficult also in the absence +of skiagrams to differentiate the condition from syphilitic and from +tuberculous disease. If the diagnosis is not established after +examination with the X-rays, an exploratory incision should be made; if +dead bone is found, it is removed. + +In typhoid fever the bone marrow is liable to be invaded by _the typhoid +bacillus_, which may set up osteomyelitis soon after its lodgment, or it +may lie latent for a considerable period before doing so. The lesions +may be single or multiple, they involve the marrow or the periosteum or +both, and they may or may not be attended with suppuration. They are +most commonly met with in the tibia and in the ribs at the +costo-chondral junctions. + +The bone lesions usually occur during the seventh or eighth week of the +fever, but have been known to occur much later. The chief complaint is +of vague pains, at first referred to several bones, later becoming +localised in one; they are aggravated by movement, or by handling the +bone, and are worst at night. There is redness and oedema of the +overlying soft parts, and swelling with vague fluctuation, and on +incision there escapes a yellow creamy pus, or a brown syrupy fluid +containing the typhoid bacillus in pure culture. Necrosis is +exceptional. + +When the abscess develops slowly, the condition resembles tuberculous +disease, from which it may be diagnosed by the history of typhoid fever, +and by obtaining a positive Widal reaction. + +The prognosis is favourable, but recovery is apt to be slow, and relapse +is not uncommon. + +It is usually sufficient to incise the periosteum, but when the disease +occurs in a rib it may be necessary to resect a portion of bone. + +#Pyogenic Osteomyelitis due to Spread of Infection from the Soft +Parts.#--There still remain those forms of osteomyelitis which result +from infection through a wound involving the bone--for example, compound +fractures, gun-shot injuries, osteotomies, amputations, resections, or +operations for un-united fracture. In all of these the marrow is exposed +to infection by such organisms as are present in the wound. A similar +form of osteomyelitis may occur apart from a wound--for example, +infection may spread to the jaws from lesions of the mouth; to the +skull, from lesions of the scalp or of the cranial bones +themselves--such as a syphilitic gumma or a sarcoma which has fungated +externally; or to the petrous temporal, from suppuration in the middle +ear. + +The most common is an osteomyelitis commencing in the marrow exposed in +a wound infected with pyogenic organisms. In amputation stumps, +fungating granulations protrude from the sawn end of the bone, and if +necrosis takes place, the sequestrum is annular, affecting the +cross-section of the bone at the saw-line; or tubular, extending up the +shaft, and tapering off above. The periosteum is more easily detached, +is thicker than normal, and is actively engaged in forming bone. In the +macerated specimen, the new bone presents a characteristic coral-like +appearance, and may be perforated by cloacae (Fig. 122). + +[Illustration: FIG. 122.--Tubular Sequestrum resulting from Septic +Osteomyelitis in Amputation Stump.] + +Like other pyogenic infections, it may terminate in pyaemia, as a result +of septic phlebitis in the marrow. + +The _clinical features_ of osteomyelitis in _an amputation stump_ are +those of ordinary pyogenic infection; the involvement of the bone may be +suspected from the clinical course, the absence of improvement from +measures directed towards overcoming the sepsis in the soft parts, and +the persistence of suppuration in spite of free drainage, but it is not +recognised unless the bone is exposed by opening up the stump or the +changes in the bone are shown by the X-rays. The first change is due to +the deposit of new bone on the periosteal surface; later, there is the +shadow of the sequestrum. + +Healing does not take place until the sequestrum is extruded or removed +by operation. + +_In compound fractures_, if a fragment dies and forms a sequestrum, it +is apt to be walled in by new bone; the sinuses continue to discharge +until the sequestrum is removed. Even after healing has taken place, +relapse is liable to occur, especially in gun-shot injuries. Months or +years afterwards, the bone may become painful and tender. The symptoms +may subside under rest and elevation of the limb and the application of +a compress, or an abscess forms and bursts with comparatively little +suffering. The contents may be clear yellow serum or watery pus; +sometimes a small spicule of bone is discharged. Valuable information, +both for diagnosis and treatment, is afforded by skiagrams. + +[Illustration: FIG. 123.--New Periosteal Bone on surface of Femur from +Amputation Stump. Osteomyelitis supervened on the amputation, and +resulted in necrosis at the sawn section of the bone. (Anatomical +Museum, University of Edinburgh.)] + + +TUBERCULOUS DISEASE + +The tuberculous diseases of bone result from infection of the marrow or +periosteum by tubercle bacilli conveyed through the arteries; it is +exceedingly rare for tubercle to appear in bone as a primary infection, +the bacilli being usually derived from some pre-existing focus in the +bronchial glands or elsewhere. According to the observations of John +Fraser, 60 per cent. of the cases of bone and joint tubercle in children +are due to the bovine bacillus, 37 per cent. to the human variety, and +in 3 per cent. both types are present. + +Tuberculous disease in bone is characterised by its insidious onset and +slow progress, and by the frequency with which it is associated with +disease of the adjacent joint. + +#Periosteal tuberculosis# is met with in the ribs, sternum, vertebral +column, skull, and less frequently in the long bones of the limbs. It +may originate in the periosteum, or may spread thence from the marrow, +or from synovial membrane. + +_In superficial bones_, such as the sternum, the formation of +tuberculous granulation tissue in the deeper layer of the periosteum, +and its subsequent caseation and liquefaction, is attended by the +insidious development of a doughy swelling, which is not as a rule +painful, although tender on pressure. While the swelling often remains +quiescent for some time, it tends to increase in size, to become boggy +or fluctuating, and to assume the characters of a cold abscess. The pus +perforates the fibrous layer of the periosteum, invading and infecting +the overlying soft parts, its spread being influenced by the anatomical +arrangement of the tissues. The size of the abscess affords no +indication of the extent of the bone lesion from which it originates. As +the abscess reaches the surface, the skin becomes of a dusky red or +livid colour, is gradually thinned out, and finally sloughs, forming a +sinus. A probe passed into the sinus strikes carious bone. Small +sequestra may be found embedded in the granulation tissue. The sinus +persists as long as any active tubercle remains in the tissues, and is +apt to form an avenue for pyogenic infection. + +_In deeply seated bones_, such as the upper end of the femur, the +formation of a cold abscess in the soft parts is often the first +evidence of the disease. + +_Diagnosis._--Before the stage of cold abscess is reached, the localised +swelling is to be differentiated from a gumma, from chronic forms of +staphylococcal osteomyelitis, from enlarged bursa or ganglion, from +sub-periosteal lipoma, and from sarcoma. Most difficulty is met with in +relation to periosteal sarcoma, which must be differentiated either by +the X-ray appearances or by an exploratory incision. + +_X-ray appearances in periosteal tubercle_: the surface of the cortical +bone in the area of disease is roughened and irregular by erosion, and +in the vicinity there may be a deposit of new bone on the surface, +particularly if a sinus is present and mixed infection has occurred; in +_syphilis_ the shadow of the bone is denser as a result of sclerosis, +and there is usually more new bone on the surface--hyperostosis; in +_periosteal sarcoma_ there is greater erosion and consequently greater +irregularity in the contour of the cortical bone, and frequently there +is evidence of formation of bone in the form of characteristic spicules +projecting from the surface at a right angle. + +The early recognition of periosteal lesions in the articular ends of +bones is of importance, as the disease, if left to itself, is liable to +spread to the adjacent joint. + +The _treatment_ is that of tuberculous lesions in general; if +conservative measures fail, the choice lies between the injection of +iodoform, and removal of the infected tissues with the sharp spoon. In +the ribs it is more satisfactory to remove the diseased portion of bone +along with the wall of the associated abscess or sinus. If all the +tubercle has been removed and there is no pyogenic infection, the wound +is stitched up with the object of obtaining primary union; otherwise it +is treated by the open method. + +#Tuberculous Osteomyelitis.#--Tuberculous lesions in the marrow occur as +isolated or as multiple foci of granulation tissue, which replace the +marrow and erode the trabeculae of bone in the vicinity (Fig. 124). The +individual focus varies in size from a pea to a walnut. The changes that +ensue resemble in character those in other tissues, and the extent of +the destruction varies according to the way in which the tubercle +bacillus and the marrow interact upon one another. The granulation +tissue may undergo caseation and liquefaction, or may become +encapsulated by fibrous tissue--"encysted tubercle." + +[Illustration: FIG. 124.--Tuberculous Osteomyelitis of Os Magnum, +excised from a boy aet. 8. Note well-defined caseous focus, with several +minute foci in surrounding marrow.] + +Sometimes the tuberculous granulation tissue spreads in the marrow, +assuming the characters of a diffuse infiltration--diffuse tuberculous +osteomyelitis. The trabecular framework of the bone undergoes erosion +and absorption--rarefying ostitis--and either disappears altogether or +only irregular fragments or sequestra of microscopic dimensions remain +in the area affected. Less frequently the trabecular framework is added +to by the formation of new bone, resulting in a remarkable degree of +sclerosis, and if, following upon this, there is caseation of the +tubercle and death of the affected portion of bone, there results a +sequestrum often of considerable size and characteristic shape, which, +because of the sclerosis and surrounding endarteritis, is exceedingly +slow in separating. When the sequestrum involves an articular surface it +is often wedge-shaped; in other situations it is rounded or truncated +and lies in the long axis of the medullary canal (Fig. 125). Finally, +the sequestrum lies loose in a cavity lined by tuberculous granulation +tissue, and is readily identified in a radiogram. This type of sclerosis +preceding death of the bone is highly characteristic of tuberculosis. + +[Illustration: FIG. 125.--Tuberculous Disease of Child's Tibia, +showing sequestrum in medullary cavity, and increase in girth from +excess of new bone.] + +_Clinical Features._--As a rule, it is only in superficially placed +bones, such as the tibia, ulna, clavicle, mandible, or phalanges, that +tuberculous disease in the marrow gives rise to signs sufficiently +definite to allow of its clinical recognition. In the vertebrae, or in +the bones of deeply seated joints, such as the hip or shoulder, the +existence of tuberculous lesions in the marrow can only be inferred from +indirect signs--such, for example, as rigidity and curvature in the case +of the spine, or from the symptoms of grave and persistent joint-disease +in the case of the hip or shoulder. + +With few exceptions, tuberculous disease in the interior of a bone does +not reveal its presence until by extension it reaches one or other of +the surfaces of the bone. In the shaft of a long bone its eruption on +the periosteal surface is usually followed by the formation of a cold +abscess in the overlying soft parts. When situated in the articular ends +of bones, the disease more often erupts in relation to the reflection of +the synovial membrane or directly on the articular surface--in either +case giving rise to disease of the joint (Fig. 156). + +[Illustration: Fig. 126.--Diffuse Tuberculous Osteomyelitis of Right +Tibia. + +(Photograph lent by Sir H. J. Stiles.)] + +#Diffuse Tuberculous Osteomyelitis in the shaft of a long bone# is +comparatively rare, and has been observed chiefly in the tibia and the +ulna in children (Fig. 126). It commences at the growing extremity of +the diaphysis, and spreads along the medulla to a variable extent; it is +attended by the formation of vascular and porous bone on the surface, +which causes thickening of the diaphysis; this is most marked at the +ossifying junction and tapers off along the shaft. The infection not +only spreads along the medulla, but it invades the spongy bone +surrounding this, and then the cortical bone, and is only prevented from +reaching the soft parts by the new bone formed by the periosteum. The +bone is replaced by granulation tissue, and disappears, or part of it +may become sclerosed and in time form a sequestrum. In the macerated +specimen, the sequestrum appears small in proportion to the large cavity +in which it lies. All these changes are revealed in a good skiagram, +which not only confirms the diagnosis, but, in many instances, +demonstrates the extent of the disease, the presence or absence of a +sequestrum, and the amount of new bone on the surface. Finally the +periosteum gives way, and an abscess forms in the soft parts; and if +left to itself ruptures externally, leaving a sinus. The most +satisfactory _treatment_ is to resect sub-periosteally the diseased +portion of the diaphysis. + +_In cancellous bones, such as those of the tarsus_, there is a similar +caseous infiltration in the marrow, and this may be attended with the +formation of a sequestrum either in the interior of the bone or +involving its outer shell, as shown in Fig. 127. The situation and +extent of the disease are shown in X-ray photographs. After the +tuberculous granulation tissue erupts through the cortex of the bone, it +gives rise to a cold abscess or infects adjacent joints or tendon +sheaths. + +[Illustration: FIG. 127.--Advanced Tuberculous Disease in region of +Ankle. The ankle-joint is ankylosed, and there is a large sequestrum in +the calcaneus. + +(Specimen in Anatomical Museum, University of Edinburgh.)] + +If an exact diagnosis is made at an early stage of the disease--and this +is often possible with the aid of X-rays--the affected bone is excised +sub-periosteally or its interior is cleared out with the sharp spoon and +gouge, the latter procedure being preferred in the case of the +_calcaneus_ to conserve the stability of the heel. When several bones +and joints are simultaneously affected, and there are sinuses with +mixed infection, amputation is usually indicated, especially in adults. + +#Tuberculous dactylitis# is the name applied to a diffuse form of the +disease as it affects the phalanges, metacarpal or metatarsal bones. The +lesion presents, on a small scale, all the anatomical changes that have +been described as occurring in the medulla of the tibia or ulna, and +they are easily followed in skiagrams. A periosteal type of dactylitis +is also met with. + +The _clinical features_ are those of a spindle-shaped swelling of a +finger or toe, indolent, painless, and interfering but little with the +function of the digit. Recovery may eventually occur without +suppuration, but it is common to have the formation of a cold abscess, +which bursts and forms one or more sinuses. It may be difficult to +differentiate tuberculous dactylitis from the enlargement of the +phalanges in inherited syphilis (syphilitic dactylitis), especially when +the tuberculous lesion occurs in a child who is the subject of inherited +syphilis. + +[Illustration: FIG. 128.--Tuberculous Dactylitis.] + +In the syphilitic lesion, skiagrams usually show a more abundant +formation of new bone, but in many cases the doubt is only cleared up by +observing the results of the tuberculin test or the effects of +anti-syphilitic treatment. + +Sarcoma of a phalanx or metacarpal bone may closely resemble a +dactylitis both clinically and in skiagrams, but it is rare. + +_Treatment._--Recovery under conservative measures is not uncommon, and +the functional results are usually better than those following upon +operative treatment, although in either case the affected finger is +liable to be dwarfed (Fig. 129). The finger should be immobilised in a +splint, and a Bier's bandage applied to the upper arm. Operative +interference is indicated if a cold abscess develops, if there is a +persistent sinus, or if a sequestrum has formed, a point upon which +information is obtained by examination with the X-rays. When a toe is +affected, amputation is the best treatment, but in the case of a finger +it is rarely called for. In the case of a metacarpal or metatarsal bone, +sub-periosteal resection is the procedure of choice, saving the +articular ends if possible. + +[Illustration: FIG. 129.--Shortening of Middle Finger of Adult, the +result of Tuberculous Dactylitis in childhood.] + + +SYPHILITIC DISEASE + +Syphilitic affections of bone may be met with at any period of the +disease, but the graver forms occur in the tertiary stage of acquired +and inherited syphilis. The virus is carried by the blood-stream to all +parts of the skeleton, but the local development of the disease appears +to be influenced by a predisposition on the part of individual bones. + +Syphilitic diseases of bone are much less common in practice than those +due to pyogenic and tuberculous infectious, and they show a marked +predilection for the tibia, sternum, and skull. They differ from +tuberculous affections in the frequency with which they attack the +shafts of bones rather than the articular ends, and in the comparative +rarity of joint complications. + +_Evanescent periostitis_ is met with in acquired syphilis during the +period of the early skin eruptions. The patient complains, especially at +night, of pains over the frontal bone, ribs, sternum, tibiae, or ulnae. +Localised tenderness is elicited on pressure, and there is slight +swelling, which, however, rarely amounts to what may be described as a +_periosteal node_. + +In the later stages of acquired syphilis, _gummatous periostitis and +osteomyelitis_ occur, and are characterised by the formation in the +periosteum and marrow of circumscribed gummata or of a diffuse gummatous +infiltration. The framework of the bone is rarefied in the area +immediately involved, and sclerosed in the parts beyond. If the +gummatous tissue degenerates and breaks down, and especially if the +overlying skin is perforated and septic infection is superadded, the +bone disintegrates and exhibits the condition known as _syphilitic +caries_; sometimes a portion of bone has its blood supply so far +interfered with that it dies--_syphilitic necrosis_. Syphilitic +sequestra are heavier and denser than normal bone, because sclerosis +usually precedes death of the bone. The bones especially affected by +gummatous disease are: the skull, the septum of the nose, the nasal +bones, palate, sternum, femur, tibia, and the bones of the forearm. + +_In the bones of the skull_, gummata may form in the peri-cranium, +diploe, or dura mater. An isolated gumma forms a firm elastic swelling, +shading off into the surroundings. In the macerated bone there is a +depression or an actual perforation of the calvaria; multiple gummata +tend to fuse with one another at their margins, giving the appearance of +a combination of circles: these sometimes surround an area of bone and +cut it off from its blood supply (Fig. 130). If the overlying skin is +destroyed and septic infection superadded, such an isolated area of bone +is apt to die and furnish a sequestrum; the separation of the dead bone +is extremely slow, partly from the want of vascularity in the sclerosed +bone round about, and partly from the density of the sequestrum. In +exceptional cases the necrosis involves the entire vertical plate of the +frontal bone. Pus is formed between the bone and the dura (suppurative +pachymeningitis), and this may be followed by cerebral abscess or by +pyaemia. Gummatous disease in the wall of the orbit may cause +displacement of the eye and paralysis of the ocular muscles. + +[Illustration: FIG. 130.--Syphilitic Disease of Skull, showing a +sequestrum in process of separation.] + +On the inner surface of the skull, the formation of gummatous tissue may +cause pressure on the brain and give rise to intense pain in the head, +Jacksonian epilepsy, or paralysis, the symptoms varying with the seat +and extent of the disease. The cranial nerves may be pressed upon at the +base, especially at their points of exit, and this gives rise to +symptoms of irritation or paralysis in the area of distribution of the +nerves affected. + +_In the septum of the nose, the nasal bones, and the hard palate_, +gummatous disease causes ulceration, which, beginning in the mucous +membrane, spreads to the bones, and being complicated with septic +infection leads to caries and necrosis. In the nose, the disease is +attended with stinking discharge (ozoena), the extrusion of portions of +dead bone, and subsequently with deformity characterised by loss of the +bridge of the nose; in the palate, it is common to have a perforation, +so that the air escapes through the nose in speaking, giving to the +voice a characteristic nasal tone. + +_Syphilitic disease of the tibia_ may be taken as the type of the +affection as it occurs _in the long bones_. Gummatous disease in the +periosteum may be localised and result in the formation of a +well-defined node, or the whole shaft may become the seat of an +irregular nodular enlargement (Fig. 132). If the bone is macerated, it +is found to be heavier and bulkier than normal; there is diffuse +sclerosis with obliteration of the medullary canal, and the surface is +uneven from heaping up of new bone--hyperostosis (Fig. 131). If a +periosteal gumma breaks down and invades the skin, a syphilitic ulcer is +formed with carious bone at the bottom. A central gumma may eat away the +surrounding bone to such an extent that the shaft undergoes pathological +fracture. In the rare cases in which it attacks the articular end of a +long bone, gummatous disease may implicate the adjacent joint and give +rise to syphilitic arthritis. + +[Illustration: FIG. 131.--Syphilitic Hyperostosis and Sclerosis of +Tibia, on section and on surface view.] + +_Clinical Features._--There is severe boring pain--as if a gimlet were +being driven into the bone. It is worst at night, preventing sleep, and +has been ascribed to compression of the nerves in the narrowed Haversian +canals. + +The _periosteal gumma_ appears as a smooth, circumscribed swelling which +is soft and elastic in the centre and firm at the margins, and shades +off into the surrounding bone. The gumma may be completely absorbed or +it may give place to a hard node. In some cases the gumma softens in the +centre, the skin becomes adherent, thin, and red, and finally gives way. +The opening in the skin persists as a sinus, or develops into a typical +ulcer with irregular, crescentic margins; in either case a probe reveals +the presence of carious bone or of a sequestrum. The health may be +impaired as a result of mixed infection, and the absorption of toxins +and waxy degeneration in the viscera may ultimately be induced. + +A _central gumma_ in a long bone may not reveal its presence until it +erupts through the shell and reaches the periosteal surface or invades +an adjacent joint. Sometimes the first manifestation is a fracture of +the bone produced by slight violence. + +In radiograms the appearance of syphilitic bones is usually +characteristic. When there is hyperostosis and sclerosis, the shaft +appears denser and broader than normal, and the contour is uneven or +wavy. When there is a central gumma, the shadow is interrupted by a +rounded clear area, like that of a chondroma or myeloma, but there is +sclerosis round about. + +_Diagnosis._--The conditions most liable to be mistaken for syphilitic +disease of bone are chronic staphylococcal osteomyelitis, tuberculosis, +and sarcoma; and the diagnosis is to be made by the history and progress +of the disease, the result of examination with the X-rays, and the +results of specific tests and treatment. + +_Treatment._--The general health is to be improved by open air, by +nourishing food, and by the administration of cod-liver oil, iron, and +arsenic. Anti-syphilitic remedies should be given, and if they are +administered before there is any destruction of tissue, the benefit +derived from them is usually marked. + +Radiograms show the rapid absorption of the new bone both on the surface +and in the marrow, and are of value in establishing the therapeutic +diagnosis. + +In certain cases, and particularly when there are destructive changes in +the bone complicated with pyogenic infection, specific remedies have +little effect. In cases of persistent or relapsing gummatous disease +with ulceration of skin, it is often necessary to remove the diseased +soft parts with the sharp spoon and scissors, and to gouge or chisel +away the unhealthy bone, on the same lines as in tuberculous disease. +When hyperostosis and sclerosis of the bone is attended with severe pain +which does not yield to blistering, the periosteum may be incised and +the sclerosed bone perforated with a drill or trephine. + +#Lesions of Bone in Inherited Syphilis.#--_Craniotabes_, in which the +flat bones of the skull undergo absorption in patches, was formerly +regarded as syphilitic, but it is now known to result from prolonged +malnutrition from any cause. _Bossing of the skull_ resulting in the +formation of Parrot's nodes is also being withdrawn from the category of +syphilitic affections. The lesions in infancy--epiphysitis, bossing of +the skull, and craniotabes--have been referred to in the chapter on +inherited syphilis. + +_Epiphysitis or Syphilitic Perichondritis._--The first of these terms is +misleading, because the lesion involves the ossifying junction and the +shaft of the bone, and the epiphysis only indirectly. The young bone is +replaced by granulation tissue, so that large clear areas are seen with +the X-rays. The symptoms are referred to the joint, because it is there +that the muscles are inserted and drag on the perichondrium when +movement occurs; swelling is most marked in the vicinity of the joint, +and it may be added to by effusion into the synovial cavity. The baby, +usually under six months, is noticed to be feverish and fretful and to +cry when touched. The mother discovers that the pain is caused by moving +a particular limb, usually the arm, as the humerus, radius, and ulna are +the bones most commonly affected; the limb, moreover, hangs useless at +the side as if paralysed, and the condition was formerly described as +_syphilitic pseudo-paralysis_. + +The lesions met with later correspond to those of the tertiary period of +the acquired disease, but as they affect bones which are still actively +growing, the effects are more striking. Gummatous disease may come and +go over periods of many years, with the result that the external +appearance and architectural arrangement of a long bone come to be +profoundly altered. In the tibia, for example, the shaft is bowed +forward in a gentle curve, which is compared to the curve of a +sabre--"sabre-blade" deformity (Fig. 132). The diffuse thickening all +round the bone obscures the sharp margins so that the bone becomes +circular in section and the anterior and mesial edges are blunted, and +the comparison to a cucumber is deserved. In some cases the tibia is +actually increased in length as well as in girth. + +[Illustration: FIG. 132.--Sabre-blade Deformity of Left Tibia in +Inherited Syphilis. + +(From a photograph lent by Sir George T. Beatson.)] + +The contrast between the grossly enlarged and misshapen tibia and the +normal or even attenuated fibula is a striking one. + +_Treatment_ is carried out on lines similar to those recommended in the +acquired disease. When curving of the tibia causes disability in +walking, the bone may be straightened by a cuneiform resection. + +_Syphilitic dactylitis_ is met with chiefly in children. It may affect +any of the fingers or toes, but is commonest in the first phalanx of the +index-finger or of the thumb. Several fingers may be attacked at the +same time or in succession. The lesion consists in a gummatous +infiltration of the soft parts surrounding the phalanx, or a gummatous +osteomyelitis, but there is practically no tendency to break down and +discharge, or to the formation of a sequestrum as is so common in +tuberculous dactylitis. + +The finger becomes the seat of a swelling, which is more evident on the +dorsal aspect, and, according to the distribution and extent of the +disease, it is acorn-shaped, fusiform, or cylindrical. It is firm and +elastic, and usually painless. The movements are impaired, especially if +the joints are involved. In its early stages the disease is amenable to +anti-syphilitic treatment, and complete recovery is the rule. + + +HYDATID DISEASE + +This rare disease results from the lodgment of the embryos of the taenia +echinoccus, which are conveyed to the marrow by the blood-stream. The +cysts are small, usually about the size of a pin-head, and they are +present in enormous numbers scattered throughout the marrow. The parts +of the skeleton most often affected are the articular ends of the long +bones, the bodies of the vertebrae, and the pelvis. + +As the cysts increase in number and in size, the framework of the bone +is gradually absorbed, and there result excavations or cavities. The +marrow and spongy bone first disappear, the compact tissue then becomes +thin, and pathological fracture may result. The bone becomes expanded, +and the cysts may escape through perforations into the surrounding +cellular tissue, and when thus freed from confinement may attain +considerable dimensions. Suppuration from superadded pyogenic infection +may be attended with extensive necrosis, and lead to disorganisation of +the adjacent joint. + +_Clinical Features._--The patient complains of deep-seated pains. In +superficial bones, such as the tibia, there is enlargement, and it may +be possible to recognise egg-shell crackling, or unequal consistence of +the bone, which is hard in some parts, and doughy and elastic in others. +The disease may pursue an indolent course during months or years until +some complication occurs, such as suppuration or fracture. With the +occurrence of suppuration the disease becomes more active, and abscesses +may form in the soft parts and in the adjacent joint. In the vertebral +column, hydatids give rise to angular deformity and paraplegia. In the +pelvis, there is usually great enlargement of the bones, and when +suppuration occurs it is apt to infect the hip-joint and to terminate +fatally. + +Examination with the X-rays shows the characteristic excavations of the +bone caused by the cysts. The disease is liable to be mistaken for +central tumour, gumma, tuberculosis, or abscess of bone. + +The _treatment_ consists in thorough eradication of the parasite by +operation. The bone is laid open and scraped or resected according to +the extent of the disease, and the raw surfaces swabbed with 1 per cent. +formalin. In advanced cases complicated with spontaneous fracture or +with suppuration, amputation affords the best chance of recovery. + +The lesions in the bones resulting from _actinomycosis_ and from +_mycetoma_, have been described with these diseases. + + +CONSTITUTIONAL DISEASES ATTENDED WITH LESIONS IN THE BONES + +These include rickets, scurvy-rickets, osteomalacia, ostitis deformans, +osteomyelitis fibrosa, fragilitas ossium, and diseases of the nervous +system. + + +RICKETS + +Rickets or rachitis is a constitutional disease associated with +disturbance of nutrition, and attended with changes in the skeleton. +The disease is most common and most severe among the children of the +poorer classes in large cities, who are improperly fed and are brought +up in unhealthy surroundings. There is evidence that the most important +factors in the causation of rickets are ill-health of the mother during +pregnancy, and the administration to the child after its birth of food +which is defective in animal fat, proteids, and salts of lime, or which +contains these in such a form that they are not readily assimilated. The +occurrence of the disease is favoured, and its features are aggravated, +by imperfect oxygenation of the blood as the result of a deficiency of +fresh air and sunlight, want of exercise, and by other conditions which +prevail in the slums of large towns. + +_Pathological Anatomy._--The most striking feature is the softness +(malacia) of the bones, due to excessive absorption of osseous tissue, +and the formation of an imperfectly calcified tissue at the sites of +ossification. The affected bones lose their rigidity, so that they are +bent under the weight of the body, by the traction of muscles, and by +other mechanical forces. + +The _periosteum_ is thick and vascular, and when detached carries with +it plates and spicules of soft porous bone. The new bone may be so +abundant that it forms a thick crust on the surface, and in the flat +bones of the skull this may be heaped up in the form of bosses or ridges +resembling those ascribed to inherited syphilis. + +In the epiphysial cartilages and at the ossifying junctions, all the +processes concerned in ossification, excepting the deposition of lime +salts, occur to an exaggerated degree. The cartilage of the epiphysial +disc proliferates actively and irregularly, so that it becomes softer, +thicker, and wider, and gives rise to a visible swelling, best seen at +the lower end of the radius and lower end of the tibia, and at the +costo-chondral junctions where the series of beaded swellings is known +as the "rickety rosary." + +The ossifying zone is increased in depth; the marrow is abnormally +vascular; and the new bone that is formed is imperfectly calcified. The +result is that the bones may never attain their normal length, and they +remain stunted throughout life as in rickety dwarfs (Fig. 133), or the +shafts may grow unequally and come to deviate from their normal axes as +in knock-knee and bow-knee. + +[Illustration: FIG. 133.--Skeleton of Rickety Dwarf, known as +"Bowed Joseph," leader of the Meal Riots in Edinburgh, who died in 1780. + +(Anatomical Museum, University of Edinburgh.)] + +These changes are well brought out in skiagrams; instead of the +well-defined narrow line which represents the epiphysial cartilage, +there is an ill-defined, blurred zone of considerable depth. + +In the shafts of the long bones, owing to the excessive absorption of +bone, the cortex becomes porous, the spongy bone is rarefied, and the +bones readily bend or break under mechanical influences. When the +disease is arrested, a process of repair sets in which often results in +the bones becoming denser and heavier than normal. In the flat bones of +the skull, the absorption may result in the entire disappearance of +areas of bone, leaving a membrane which dimples like thin cardboard +under the pressure of the finger--a condition known as _craniotabes_. + +_Changes in the Skeleton before the Child is able to walk._--The +fontanelles remain open until the end of the second year or longer, and +the frontal and parietal eminences are unduly prominent. There is +sometimes hydrocephalus, and the head is characteristically enlarged. +The jaws are altered so that while the upper jaw is contracted into the +shape of a #V#, the lower jaw is square instead of rounded in outline, +and the teeth do not oppose one another. In the _thorax_, the chief +feature may be the beading at the costo-chondral junctions, principally +of the fifth and sixth ribs or its walls may be contracted, +particularly if respiration is interfered with as a result of bronchial +catarrh or adenoids. The contraction may take the form of a vertical +groove on each side, or of a horizontal groove at the level of the upper +end of the xiphi-sternum; when the sternum and cartilages form a +projection in front, the deformity is known as "pigeon-breast." + +The _spine_ may be curved backwards--_kyphosis_--throughout its +whole extent or only in one part; or it may be curved to one +side--_scoliosis_. + +In the _limbs_, the prominent features are the deficient growth in +length of the long bones, the enlargements at the epiphysial junctions, +and the bending, and occasional greenstick fracture, of the shafts. The +degree of enlargement of the epiphysial junctions is directly +proportionate to the amount of movement to which the bone is subjected +(John Thomson). The curves at this stage depend on the attitude of the +child while sitting or being carried--for example, the arm bones become +bent in children who paddle about the floor with the aid of their arms; +and in a child who lies on its back with the lower limbs everted, the +weight of the limb may lead to curvature of the neck of the femur--coxa +vara. The clavicle or humerus may sustain greenstick fracture from the +child being lifted by the arms; the femur, by a fall. From the extreme +laxity of the ligaments, the joints can be moved beyond the normal +limits, and the child is often observed to twist its limbs into abnormal +attitudes. + +_In Children who have walked._--In these children the most important +deformities occur in the spine, pelvis, and lower extremities, and +result for the most part from yielding of the softened bones under the +weight of the body. Scoliosis is the usual type of spinal curvature, and +in extreme cases it may lead to a pronounced form of hump-back. The +pelvis may remain small (_justo-minor pelvis_), or it may be contracted +in the sagittal plane (_flat pelvis_); when the bones are unusually +soft, the acetabular portions are pushed inwards by the femora bearing +the weight of the body, and the pelvis assumes the shape of a trefoil, +as in the malacia of women. The shaft of the femur is curved forwards +and laterally; the bones of the leg laterally as in bow-leg, or +forwards, or forwards and laterally just above the ankle. The +deformities at the knee (genu valgum, genu varum, and genu recurvatum), +and at the hip (coxa vara), will be described in the volume dealing with +the Extremities. + +The majority of cases seen in surgical practice suffer from the +deformities resulting from rickets rather than from the active disease. +The examination of a large series of children at different ages shows +that the deformities become less and less frequent with each year. Those +who recover may ultimately show no trace of rickets, and this is +especially true of children who grow at the average rate; in those, +however, in whom growth is retarded, especially from the fifth to the +seventh year, the deformities are apt to be permanent. It may be noted +that the scoliosis due to rickets has little tendency towards recovery. + +_Treatment._--The treatment of the disease consists in regulating the +diet, improving the surroundings, and preventing deformity. Phosphorus +in doses of 100th grain may be given dissolved in cod-liver oil, and +preparations of iron and lime may be added with advantage. To avoid +those postures which predispose to deformities, the child should lie as +much as possible. In the well-to-do classes this is readily accomplished +by the aid of a nurse and the use of a perambulator. In hospital +out-patients the child is kept off its feet by the use of a light wooden +splint applied to the lateral aspect of each lower extremity, and +extending from the pelvis to 6 inches beyond the sole. + +When deformities are already present, the treatment depends upon whether +or not there is any prospect of the bone straightening naturally. Under +five years of age this may, as a rule, be confidently expected; the +child should be kept off its feet, and the limbs bathed and massaged. In +children of five or six and upwards, the prospect of natural +straightening is a diminishing one, and it is more satisfactory to +correct the deformity by operation. In rickety curvature of the spine, +the child should lie on a firm mattress, or, to allow of its being taken +into the open air, upon a double Thomas' splint extending from the +occiput to the heels; the muscles acting on the trunk should be braced +up by massage and appropriate exercises. + +#Late Rickets# or #Rachitis Adolescentium# is met with at any age from +nine to seventeen, and is generally believed to be due to a +recrudescence of rickets which had been present in childhood. The +disease is not attended with any disturbance of the general health; the +pathological changes are the same as in infantile rickets, but are for +the most part confined to the ossifying junctions, especially those +which are most active during adolescence, for example at the knee-joint. +The patient is easily tired, complains of pain in the bones, and, unless +care is taken, deformity is liable to ensue. There can be no doubt that +adolescent rickets plays an important part in the production of the +deformities which occur at or near puberty, especially knock-knee and +bow-knee. + +#Scurvy-Rickets# or #Infantile Scurvy#.--This disease, described by +Barlow and Cheadle, is met with in infants under two years who have been +brought up upon sterilised or condensed milk and other proprietary +foods, and is most common in the well-to-do classes. The haemorrhages, +which are so characteristic of the disease, are usually preceded for +some weeks by a cachectic condition, with listlessness and debility and +disinclination for movement. Very commonly the child ceases to move one +of his lower limbs--pseudo-paralysis--and screams if it is touched; a +swelling is found over one of the bones, usually the femur, accompanied +by exquisite tenderness; the skin is tense and shiny, and there may be +some oedema. These symptoms are due to a sub-periosteal haemorrhage, and +associated with this there may be crepitus from separation of an +epiphysis, rarely from fracture of the shaft of the bone. X-ray +photographs show enlargement of the bone, the periosteum being raised +from the shaft and new bone formed in relation to it. Haemorrhages also +occur into the skin, presenting the appearance of bruises, into the +orbit and conjunctiva, and from the mucous membranes. + +The _treatment_ consists in correcting the errors in diet. The infant +should have a wet nurse or a plentiful supply of cow's milk in its +natural state. Anti-scorbutics in the form of orange, lemon, or grape +juice, and of potatoes bruised down in milk, may be given. + +#Osteomalacia.#--The term osteomalacia includes a group of conditions, +closely allied to rickets, in which the bones of adults become soft and +yielding, so that they are unduly liable to bend or break. + +One form occurs in _pregnant and puerperal women_, affecting most +commonly the pelvis and lumbar vertebrae, but sometimes the entire +skeleton. The lime salts are absorbed, the bones lose their rigidity and +bend under the weight of the body and other mechanical influences, with +the result that gross deformities are produced, particularly in the +pelvis, the lumbar spine, and the hip-joints. + +_Neuropathic_ forms occur in certain chronic diseases of the brain and +cord; in some cases the bones lose their lime salts and bend, in others +they become brittle. + +_Osteomalacia associated with New Growths in the Skeleton._--When +_secondary cancer_ is widely distributed throughout the skeleton, it is +associated with softening of the bones, as a result of which they +readily bend or break, and after death are easily cut with a knife. In +the disease known as _multiple myeloma_, the interior of the ribs, +sternum, and bodies of the vertebrae is occupied by a reddish gelatinous +pulp, the structure of which resembles sarcoma; the bones are reduced to +a mere shell, and may break on the slightest pressure; the urine +contains albumose, a substance resembling albumen but coagulating at a +comparatively low temperature (140 o F.), and the coagulum is +re-dissolved on boiling, and it is readily precipitated by hydrochloric +acid (Bence-Jones). + +#Ostitis Deformans--Paget's Disease of Bone.#--This rare disease was +first described by Sir James Paget in 1877. In the early stages, the +marrow is transformed into a vascular connective tissue; its bone-eating +functions are exaggerated, and the framework of the bone becomes +rarefied, so that it bends under pressure as in osteomalacia. In course +of time, however, new bone is formed in great abundance; it is at first +devoid of lime salts, but later becomes calcified, so that the bones +regain their rigidity. This formation of new bone is much in excess of +the normal, the bones become large and bulky, their surfaces rough and +uneven, their texture sclerosed in parts, and the medullary canal is +frequently obliterated. These changes are well brought out in X-ray +photographs. The curving of the long bones, which is such a striking +feature of the disease, may be associated with actual lengthening, and +the changes are sometimes remarkably symmetrical (Fig. 135). The bones +forming the cranium may be enormously thickened, the sutures are +obliterated, the distinction into tables and diploe is lost, and, while +the general texture is finely porous, there may be areas as dense as +ivory (Fig. 134). + +[Illustration: FIG. 134.--Changes in the Skull resulting from Ostitis +Deformans. + +(Anatomical Museum, University of Edinburgh.)] + +_Clinical Features._--The disease is usually met with in persons over +fifty years of age. It is insidious in its onset, and, the patient's +attention may be first attracted by the occurrence of vague pains in the +back or limbs; by the enlargement and bending of such bones as the tibia +or femur; or by a gradual increase in the size of the head, +necessitating the wearing of larger hats. When the condition is fully +developed, the attitude and general appearance are eminently +characteristic. The height is diminished, and, owing to the curving of +the lower limbs and spine, the arms appear unnaturally long; the head +and upper part of the spine are bent forwards; the legs are held apart, +slightly flexed at the knees, and are rotated out as well as curved; the +whole appearance suggests that of one of the large anthropoid apes. The +muscles of the limbs may waste to such an extent as to leave the large, +curved, misshapen bones covered only by the skin (Fig. 135). In the +majority of cases the bones of the lower extremities are much earlier +and more severely affected than those of the upper extremity, but the +capacity of walking is usually maintained even in the presence of great +deformity. In a case observed by Byrom Bramwell, the patient suffered +from a succession of fractures over a period of years. + +[Illustration: FIG. 135.--Cadaver, illustrating the alterations in the +Lower Limbs resulting from Ostitis Deformans.] + +The disease may last for an indefinite period, the general health +remaining long unaffected. In a considerable number of the recorded +cases one of the bones became the seat of sarcoma. + +#Osteomyelitis Fibrosa.#--This comparatively rare disease, which was +first described by Recklinghausen, presents many interesting features. +Because of its causing deformities of the bones and an undue liability +to fracture, and being chiefly met with in adolescents, it is regarded +by some authors as a juvenile form of Paget's disease. It may be +diffused throughout the skeleton--we have seen it in the skull and in +the bones of the extremities--or it may be confined to a single bone, +usually the femur, or, what is more remarkable, the condition may affect +a portion only of the shaft of a long bone and be sharply defined from +the normal bone in contact with it. + +[Illustration: FIG. 136.--Osteomyelitis Fibrosa affecting Femora in a +man aet. 19. The curving of the bones is due to multiple fractures.] + +On longitudinal section of a long bone during the active stage of the +disease, the marrow is seen to be replaced by a vascular young +connective tissue which encroaches on the surrounding spongy bone, +reducing it to the slenderest proportions; the formation of bone from +the periosteum does not keep pace with the absorption and replacement +going on in the interior, and the cortex may be reduced to a thin shell +of imperfectly calcified bone which can be cut with a knife. The young +connective tissue which replaces the marrow is not unlike that seen in +osteomalacia; it is highly vascular and may show haemorrhages of various +date; there are abundant giant cells of the myeloma type, and +degeneration and liquefaction of tissue may result in the formation of +cysts, which, when they constitute a prominent feature, are responsible +for the name--_osteomyelitis fibrosa cystica_--sometimes applied to the +condition. + +It would appear that most of the recorded cases of _cysts of bone_ owe +their origin to this disease, while the abundance of giant cells with +occasional islands of cartilage in the wall of such cysts is responsible +for the view formerly held that they owed their origin to the +liquefaction of a solid tumour, such as a myeloma, a chondroma, or even +a sarcoma. Although the tissue elements in this disease resemble those +of a new growth arising in the marrow, they differ in their arrangement +and in their method of growth; there is no tendency to erupt through the +cortex of the bone, to invade the soft parts, or to give rise to +secondary growths. + +_Clinical Features._--The onset of the disease is insidious, and +attention is usually first directed to it by the occurrence of fracture +of the shaft of one of the long bones--usually the femur--from violence +that would be insufficient to break a healthy bone. Apart from fracture, +the great increase in the size of one of the long bones and its uneven +contour are sufficiently remarkable to suggest examination with the +X-rays, by means of which the condition is at once recognised. A +systematic examination of the other long bones will often reveal the +presence of the disease at a stage before the bone is altered +externally. + +Symmetrical bossing of the skull was present in the case shown in +Figs. 136 and 137, and there were also scattered patches of brown +pigmentation of the skin of the face, neck, and trunk, similar to those +met with in generalised neuro-fibromatosis. Apart from fracture, the +disease is recognised by the thickening and usually also by the curving +of the shafts of the long bones. It is easy to understand the curvature +of bones that have passed through a soft stage and also of those that +have been broken and badly united, but it is difficult to account for +the curvatures that have no such cause; for example, we have seen +marked curve of the radius in a forearm of which the ulna was quite +straight. The curvature probably resulted from exaggerated growth in +length. + +[Illustration: FIG. 137.--Radiogram of Upper End of Femur showing +appearances in Osteomyelitis Fibrosa.] + +The X-ray appearances vary with the stage of the malady, not estimated +in time, for the condition is chronic and may become stationary, but +according to whether it is progressive or undergoing repair. The shadow +of the bone presents a poor contrast to the soft parts, and no trace of +its original architecture; in extreme cases the shadow of the femur +resembles an unevenly filled sausage (Fig. 137); there is no cortical +layer, the interior shows no trabecular structure, and some of the many +clear areas are probably cysts. The condition extends right up to the +articular cartilage, or, in the case of adolescent bones, up to the +epiphysial cartilage. + +_Prognosis._--The condition does not appear to affect the general +health. The future is concerned with the local conditions, and, +especially in the case of the femur, with its liability to fracture; so +far as we know there is no time limit to this. + +_Treatment_ is confined to protecting the affected bone--usually the +femur--from injury. Operative treatment may be required for lameness due +to a badly united fracture. + +#Neuropathic Atrophy of Bone.#--The conditions included under this +heading occur in association with diseases of the nervous system. + +Most importance attaches to the fragility of the bones met with in +general paralysis of the insane, locomotor ataxia, and other chronic +diseases of the brain and spinal cord. The bones are liable to be +fractured by forces which would be insufficient to break a healthy bone. +In _locomotor ataxia_ the fractures affect especially the bones of the +lower extremity, and may occur before there are any definite nerve +symptoms, but they are more often met with in the ataxic stage, when the +abrupt and uncontrolled movements of the limbs may play a part in their +causation. They may be unattended with pain, and may fail to unite; when +repair does take place, it is sometimes attended with an excessive +formation of callus. Joint lesions of the nature of Charcot's disease +may occur simultaneously with the alterations in the bones. In +_syringomyelia_ pathological fracture is not so frequent as in locomotor +ataxia; it is more likely to occur in the bones of the upper extremity, +and especially in the humerus. In some cases of _epilepsy_ the bones +break when the patient falls in a fit, and there is usually an +exaggerated amount of comminution. + +In these affections the bones present no histological or chemical +alterations, and the X-ray shadow does not differ from the normal. It is +maintained, therefore, that the disposition to fracture does not depend +upon a fragility of the bone, but on the loss of the muscular sense and +of common sensation in the bones, as a result of which there is an +inability properly to throw the muscles into action and dispose the +limbs so as to place them under the most favourable conditions to meet +external violence. + +#Osteogenesis Imperfecta#, #Fragilitas Ossium#, or #Congenital +Osteopsathyrosis#.--These terms are used to describe a condition in +which an undue fragility of the bones dates from intra-uterine life. It +may occur in several members of the same family. In severe cases, +intra-uterine fractures occur, and during parturition fresh fractures +are almost sure to be produced, so that at birth there is a combination +of recent fractures and old fractures united and partly united, with +bendings and thickenings of the bones. Large areas of the cranial vault +may remain membranous. + +After birth the predisposition to fracture continues, the bones are +easily broken, the fractures are attended with little or no pain, the +crepitus is soft, and although union may take place, it may be delayed +and be attended with excess of callus. Cases have been observed in which +a child has sustained over a hundred fractures. + +The bones show a feeble shadow with the X-rays, and appear thin and +atrophied; the medullary canal is increased at the expense of the +cortex. + +In young infants in whom multiple fractures occur the prognosis as to +life is unfavourable, and no satisfactory treatment of the disease has +been formulated. If the patient survives, the tendency to fracture +gradually disappears. + +#Hypertrophic Pulmonary Osteo-Arthropathy.#--This condition, which was +described by Marie in 1890, is secondary to disease in the chest, such +as chronic phthisis, empyema, bronchiectasis, or sarcoma of the lung. + +There is symmetrical enlargement and deformity of the hands and feet; +the shafts of the bones are thickened, and the soft tissues of the +terminal segments of the digits hypertrophied. The fingers come to +resemble drum-sticks, and the thumb the clapper of a bell. The nails are +convex, and incurved at their free ends, suggesting a resemblance to the +beak of a parrot. There is also enlargement of the lower ends of the +bones of the forearm and leg, and effusion into the wrist and +ankle-joints. Skiagrams of the hands and feet show a deposit of new bone +along the shafts of the phalanges. + + +TUMOURS OF BONE + +New growths which originate in the skeleton are spoken of as _primary +tumours_; those which invade the bones, either by metastasis from other +parts of the body or by spread from adjacent tissues, as _secondary_. A +tumour of bone may grow from the cellular elements of the periosteum, +the marrow, or the epiphysial cartilage. + +Primary tumours are of the connective-tissue type, and are usually +solitary, although certain forms, such as the chondroma, may be multiple +from the outset. + +_Periosteal tumours_ are at first situated on one side of the bone, but +as they grow they tend to surround it completely. Innocent periosteal +tumours retain the outer fibrous layer as a capsule. Malignant tumours +tend to perforate the periosteal capsule and invade the soft parts. + +_Central_ or _medullary tumours_ as they increase in size replace the +surrounding bone, and simultaneously new bone is formed on the surface; +as this is in its turn absorbed, further bone is formed beneath the +periosteum, so that in time the bone is increased in girth, and is said +to be "expanded" by the growth in its interior. + +#Primary Tumours--Osteoma.#--When the tumour projects from the surface +of a bone it is called an _exostosis_. When growing from bones developed +in membrane, such as the flat bones of the skull, it is usually dense +like ivory, and the term _ivory exostosis_ is employed. When derived +from hyaline cartilage--for example, at the ends of the long bones--it +is known as a _cartilaginous exostosis_. This is invested with a cap of +cartilage from which it continues to grow until the skeleton attains +maturity. + +An exostosis forms a rounded or mushroom-shaped tumour of limited size, +which may be either sessile or pedunculated, and its surface is smooth +or nodulated (Figs. 138 and 139). A cartilaginous exostosis in the +vicinity of a joint may be invested with a synovial sac or bursa--the +so-called _exostosis bursata_. The bursa may be derived from the +synovial membrane of the adjacent joint with which its cavity sometimes +communicates, or it may be of adventitious origin; when it is the seat +of bursitis and becomes distended with fluid, it may mask the underlying +exostosis, which then requires a radiogram for its demonstration. + +[Illustration: FIG. 138.--Radiogram of Right Knee showing Multiple +Exostoses.] + +_Clinically_, the osteoma forms a hard, indolent tumour attached to a +bone. The symptoms to which it gives rise depend on its situation. In +the vicinity of a joint, it may interfere with movement; on the medial +side of the knee it may incapacitate the patient from riding. When +growing from the dorsum of the terminal phalanx of the great +toe--_subungual exostosis_--it displaces the nail, and may project +through its matrix at the point of the toe, while the soft parts over it +may be ulcerated from pressure (Fig. 107). It incapacitates the patient +from wearing a boot. When it presses on a nerve-trunk it causes pains +and cramps. In the orbit it displaces the eyeball; in the nasal fossae +and in the external auditory meatus it causes obstruction, which may be +attended with ulceration and discharge. In the skull it may project +from the outer table, forming a smooth rounded swelling, or it may +project from the inner table and press upon the brain. + +The diagnosis is to be made by the slow growth of the tumour, its +hardness, and by the shadow which it presents with the X-rays (Fig. 138). + +An osteoma which does not cause symptoms may be left alone, as it ceases +to grow when the skeleton is mature and has no tendency to change its +benign character. If causing symptoms, it is removed by dividing the +neck or base of the tumour with a chisel, care being taken to remove the +whole of the overlying cartilage. The dense varieties met with in the +bones of the skull present greater difficulties; if it is necessary to +remove them, the base or neck of the tumour is perforated in many +directions with highly tempered drills rotated by some form of engine, +and the division is completed with the chisel. + +[Illustration: FIG. 139.--Multiple Exotoses of both limbs. + +(Photograph lent by Sir George T. Beatson.)] + +#Multiple Exostoses.#--This disease, which, by custom, is still placed +in the category of tumours, is to be regarded as a disorder of growth, +dating from intra-uterine life and probably due to a disturbance in the +function of the glands of internal secretion, the thyreoid being the one +which is most likely to be at fault (Arthur Keith). The disorder of +growth is confined to those elements of the skeleton where a core of +bone formed in cartilage comes to be encased in a sheath of bone formed +beneath the periosteum. To indicate this abnormality the name +_diaphysial aclasis_ has been employed by Arthur Keith at the suggestion +of Morley Roberts. + +Bones formed entirely in cartilage are exempt, namely, the tarsal and +carpal bones, the epiphyses of the long bones, the sternum, and the +bodies of the vertebrae. Bones formed entirely in membrane, that is, +those of the face and of the cranial vault, are also exempt. The +disorder mainly affects the ossifying junctions of the long bones of the +extremities, the vertebral border of the scapula, and the cristal border +of the ilium. + +_Clinically_ the disease is attended with the gradual and painless +development during childhood or adolescence of a number of tumours or +irregular projections of bone, at the ends of the long bones, the +vertebral border of the scapula, and the cristal border of the ilium. +They exhibit a rough symmetry; they rarely attain any size; and they +usually cease growing when the skeleton attains maturity--the conversion +of cartilage into bone being then completed. While they originate from +the ossifying junctions of the long bones, they tend, as the shaft +increases in length, to project from the surface of the bone at some +distance from the ossifying junction and to "point" away from it. They +may cause symptoms by "locking" the adjacent joint or by pressing upon +nerve-trunks or blood vessels. + +In a considerable proportion of cases, the disturbance of growth is +further manifested by dwarfing of the long bones; these are not only +deficient in length but are sometimes also curved and misshapen, which +accounts for the condition being occasionally confused with the +disturbances of growth resulting from rickets. In about one-third of the +recorded cases there is a dislocation of the head of the radius on one +or on both sides, a result of unequal growth between the bones of the +forearm. + +[Illustration: FIG. 140.--Multiple Cartilaginous Exostoses in a +man aet. 27. The scapular tumour projecting above the right clavicle has +taken on active growth and pressed injuriously on the cords of the +brachial plexus.] + +In early adult life, one of the tumours, instead of undergoing +ossification, may take on active growth and exhibit the features of a +chondro-sarcoma, pressing injuriously upon adjacent structures (Fig. 140) +and giving rise later to metastases in the lungs. + +The _X-ray appearances_ of the bones affected are of a striking +character; apart from the outgrowths of bone or "tumours" there is +evident a widespread alteration in the internal architecture of the +bones, which suggests analogies with other disturbances of ossification +such as achondroplasia and osteomyelitis fibrosa. The condition is one +that runs in families, sometimes through several generations; we have +more than once seen a father and son together in the hospital +waiting-room. + +As regards _treatment_, there is no indication for surgical interference +except when one or other tumour is a source of disability as by pressing +upon a nerve-trunk or by locking a joint, in which case it is easily +removed by chiselling through its neck. + +[Illustration: FIG. 141.--Multiple Cartilaginous Exostoses in a +man aet. 27, the same as in Fig. 140.] + +_Diffuse Osteoma, Leontiasis Ossea._--This rare affection was described +by Virchow, and named leontiasis ossea because of the disfigurement to +which it gives rise. It usually commences in adolescence as a diffuse +overgrowth first of one and then of both maxillae; these bones are +enlarged in all directions and project on the face, and the nasal fossae +and the maxillary and frontal sinuses become filled up with bone, which +encroaches also on the orbital cavities. In addition to the hideous +deformity, the patient suffers from blocking of the nose, loss of smell, +and protrusion of the eyes, sometimes followed by loss of sight. The +condition is liable to spread to the zygomatic and frontal bones, the +vault of the skull, and to the mandible. The base of the skull is not +affected. The disease is of slow progress and may become arrested; life +may be prolonged for many years, or may be terminated by brain +complications or by intercurrent affections. In certain cases it is +possible to remove some of the more disfiguring of the bony masses. + +A less aggressive form, confined to the maxilla on one side, is +sometimes met with, and, in a case of this variety under our own +observation, the disfigurement, which was the only subject of complaint, +was removed, after reflecting the soft parts, by paring away the excess +of bone; this is easily done as the bone is spongy, and at an early +stage, imperfectly calcified. + +A remarkable form of _unilateral hypertrophy and diffuse osteoma of the +skull_, following the distribution of the fifth nerve, has seen +described by Jonathan Hutchinson and Alexis Thomson. + +#Chondroma.#--Cartilaginous tumours, apart from those giving rise to +multiple exostoses, grow from the long bones and from the scapula, +ilium, ribs, or jaws. They usually project from the surface of the bone, +and may attain an enormous size; sometimes they grow in the interior of +a bone, the so-called _enchondroma_. + +The hyaline cartilage composing the tumour frequently undergoes +myxomatous degeneration, resulting in the formation of a glairy, +semi-fluid jelly, and if this change takes place throughout the tumour +it comes to resemble a cyst. On the other hand, the cartilage may +undergo calcification or ossification. The most important transition of +all is that into sarcoma, the so-called _malignant chondroma_ or +_chondro-sarcoma_, which is associated with rapid increase in size, +and parts of the tumour may be carried off in the blood-stream and give +rise to secondary growths, especially in the lungs. + +Cases have been met with in which certain parts of the skeleton--only +those developed in cartilage--were so uniformly permeated with cartilage +that the condition has been described as a "chondromatosis" and is +regarded as dating from an early period of foetal life. Unlike the +condition known as multiple cartilaginous exostoses, it is a malignant +disease. + +[Illustration: FIG. 142.--Multiple Chondromas of Phalanges and +Metacarpals in a boy aet. 10 (cf. Fig. 143).] + +The chondroma is met with as a slowly growing tumour which is specially +common in the bones of the hand, often in a multiple form (Figs. 142 and +144). The surface is smooth or lobulated, and in consistence the tumour +may be dense and elastic like normal cartilage, or may present areas of +softening, or of bony hardness. The skin moves freely over it, except in +relation to the bones of the fingers, where it may become adherent and +ulcerate, simulating the appearance of a malignant tumour. Large tumours +growing from the bones of the extremities may implicate the main +vessels and nerves, either surrounding them or pressing on them. + +Portions of a chondroma, which have undergone calcification or +ossification, throw a dark shadow with the X-rays; unaltered cartilage +and myxomatous tissue appear as clear areas. + +[Illustration: FIG. 143.--Skiagram of Multiple Chondromas shown +in Fig. 142.] + +_Treatment._--It is necessary to remove the whole tumour, and in +chondromas growing from the surface of the bone, especially if they are +pedunculated, this is comparatively easy. When a bone, such as the +scapula or mandible, is involved, it is better to excise the bone, or at +least the part of it which bears the tumour. In the case of central +tumours the shell of bone is removed over an area sufficient to allow of +the enucleation of the tumour, or the affected portion of bone is +resected. Should there be evidence of malignancy, such as increased rate +of growth, a tube of radium should be inserted, and in advanced cases +with destruction of tissue, amputation may be called for. + +[Illustration: FIG. 144.--Multiple Chondromas in Hand of boy aet. 8] + +In multiple chondromas of the hand in young subjects, it was formerly +the custom to amputate the limb; an attempt should be made to avoid this +by shelling out the larger tumours individually, and persevering with +the application of the X-rays or of radium to inhibit the growth of the +smaller ones. + +Chondromas springing from the pelvic bones usually arise in the region +of the sacro-iliac joint; they project into the pelvis and press on the +bladder and rectum, and on the sciatic and obturator nerves; sometimes +also on the iliac veins, causing oedema of the legs. They are liable to +take on malignant characters, and rarely lend themselves to complete +removal by operation. + +#Fibroma# is met with chiefly as a periosteal growth in relation to the +mouth and pharynx, the _simple epulis_ of the alveolar margin and the +_naso-pharyngeal polypus_ being the most common examples. We have met +with a fibroma in the interior of the lower end of the femur of an +adult, causing expansion of the bone with decided increase in girth and +liability to pathological fracture; it is possible that this represents +the cured stage of osteomyelitis fibrosa. + +_Myxoma_, _lipoma_, and _angioma_ of bone are all rare. + +#Myeloma.#--The myeloid tumour, which is sometimes classified with the +sarcomas, contains as its chief elements large giant cells, like those +normally present in the marrow. On section these tumours present a +brownish-red or chocolate colour, and, being highly vascular, are liable +to haemorrhages, and therefore also to pigmentation, and to the formation +of blood cysts. Sometimes the arterial vessels are so dilated as to +impart to the tumour an aneurysmal pulsation and bruit. The enlargement +or "expansion" of the bone results in the cortex being represented by a +thin shell of bone, which may crackle on pressure--parchment or +egg-shell crackling. + +The myeloma is most often met with between the ages of twenty-five and +forty in the upper end of the tibia or lower end of the femur. It grows +slowly and causes little pain, and may long escape recognition unless an +examination is made with the X-rays. Although these tumours have been +known to give rise to metastases, they are, as a rule, innocent and are +to be treated as such. When located in the shaft of a long bone, +pathological fracture is liable to occur. + +_Diagnosis and X-ray Appearances of Myeloma._--The early diagnosis of +myeloma is made with the aid of the X-rays: the typical appearance is +that of a rounded or oval clear area bounded by a shell of bone of +diminishing thickness (Fig. 145). The inflammatory lesions at the ends +of the long bones--tubercle, syphilitic gumma, and Brodie's abscess, +that resemble myeloma, are all attended with the formation of new bone +in greater or lesser amount. The myeloma is also to be diagnosed from +chondroma, from sarcoma, and from osteomyelitis fibrosa cystica. + +[Illustration: FIG. 145.--Radiogram of Myeloma of Humerus. + +(Mr. J. W. Struthers' case.)] + +_Treatment._--In early cases the cortex is opened up to give free access +to the tumour tissue, which is scraped out with the spoon. Bloodgood +advises the use of Esmarch's tourniquet, and that the curetting be +followed by painting with pure carbolic acid and then rinsing with +alcohol; a rod of bone is inserted to fill the gap. In advanced cases +the segment of bone is resected and a portion of the tibia or fibula +from the other limb inserted into the gap; a tube of radium should also +be introduced. + +The coexistence of diffuse myelomatosis of the skeleton and albumosuria +(Bence-Jones) is referred to on p. 474. Myeloma occurs in the jaws, +taking origin in the marrow or from the periosteum of the alveolar +process, and is described elsewhere. + +#Sarcoma# and #endothelioma# are the commonest tumours of bone, and +present wide variations in structure and in clinical features. +Structurally, two main groups may be differentiated: (1) the soft, +rapidly growing cellular tumours, and (2) those containing fully formed +fibrous tissue, cartilage, or bone. + +(1) The _soft cellular tumours_ are composed mainly of spindle or round +cells; they grow from the marrow of the spongy ends or from the +periosteum of the long bones, the diploe of the skull, the pelvis, +vertebrae, and jaws. As they grow they may cause little alteration in the +contour of the bone, but they eat away its framework and replace it, so +that the continuity of the bone is maintained only by tumour tissue, and +pathological fracture is a frequent result. The small round-celled +sarcomas are among the most malignant tumours of bone, growing with +great rapidity, and at an early stage giving rise to secondary growths. + +(2) The second group includes the _fibro-_, _osteo-_, and +_chondro-sarcomas_, and combinations of these; in all of them fully +formed tissues or attempts at fully formed tissues predominate over the +cellular elements. They grow chiefly from the deeper layer of the +periosteum, and at first form a projection on the surface, but later +tend to surround the bone (Fig. 150), and to invade its interior, +filling up the marrow spaces with a white, bone-like substance; in the +flat bones of the skull they may traverse the diploe and erupt on the +inner table. The tumour tissue next the shaft consists of a dense, +white, homogeneous material, from which there radiate into the softer +parts of the tumour, spicules, needles, and plates, often exhibiting a +fan-like arrangement (Fig. 151). The peripheral portion consists of soft +sarcomatous tissue, which invades the overlying soft parts. The +articular cartilage long resists destruction. The ossifying sarcoma is +met with most often in the femur and tibia, less frequently in the +humerus, skull, pelvis, and jaws. In the long bones it may grow from the +shaft, while the chondro-sarcoma more often originates at the +extremities. Sometimes they are multiple, several tumours appearing +simultaneously or one after another. Secondary growths are met with +chiefly in the lungs, metastasis taking place by way of the veins. + +[Illustration: FIG. 146.--Periosteal Sarcoma of Femur in a young +subject.] + +[Illustration: FIG. 147.--Periosteal Sarcoma of Humerus, after +maceration. + +(Anatomical Museum, University of Edinburgh.)] + +_Clinical Features._--Sarcoma is usually met with before the age of +thirty, and is comparatively common in children. Males suffer oftener +than females, in the proportion of two to one. + +In _periosteal sarcoma_ the presence of a swelling is usually the first +symptom; the tumour is fusiform, firm, and regular in outline, and when +it occurs near the end of a long bone the limb frequently assumes a +characteristic "leg of mutton" shape (Fig. 146). The surface may be +uniform or bossed, the consistence varies at different parts, and the +swelling gradually tapers off along the shaft. On firm pressure, fine +crepitation may be felt from crushing of the delicate framework of new +bone. + +[Illustration: FIG. 148.--Chondro-Sarcoma of Scapula in a man aet. 63; +removal of the scapula was followed two years later by metastases and +death.] + +In _central sarcoma_ pain is the first symptom, and it is usually +constant, dull, and aching; is not obviously increased by use of the +limb, but is often worse at night. Swelling occurs late, and is due to +expansion of the bone; it is fusiform or globular, and is at first +densely hard, but in time there may be parchment-like or egg-shell +crackling from yielding of the thin shell. The swelling may pulsate, and +a bruit may be heard over it. In advanced cases it may be impossible to +differentiate between a periosteal and a central tumour, either +clinically or after the specimen has been laid open. + +Pathological fracture is more common in central tumours, and sometimes +is the first sign that calls attention to the condition. Consolidation +rarely takes place, although there is often an attempt at union by the +formation of cartilaginous callus. + +[Illustration: FIG. 149.--Central Sarcoma of Lower End of Femur, +invading the knee-joint. + +(Museum of Royal College of Surgeons, Edinburgh.)] + +[Illustration: FIG. 150.--Osseous Shell of Osteo-Sarcoma of Upper Third +of Femur, after maceration.] + +The soft parts over the tumour for a long time preserve their normal +appearance; or they become oedematous, and the subcutaneous venous +network is evident through the skin. Elevation of the temperature over +the tumour, which may amount to two degrees or more, is a point of +diagnostic significance, as it suggests an inflammatory lesion. + +The adjacent joint usually remains intact, although its movements may be +impaired by the bulk of the tumour or by effusion into the cavity. + +Enlargement of the neighbouring lymph glands does not necessarily imply +that they have become infected with sarcoma for the enlargement may +disappear after removal of the primary growth; actual infection of the +glands, however, does sometimes occur, and in them the histological +structure of the parent tumour is reproduced. + +To obtain a reasonable prospect of cure, the _diagnosis_ must be made at +an early stage. Great reliance is to be placed on information gained by +examination with the X-rays. + +[Illustration: FIG. 151.--Radiogram of Osteo-Sarcoma of Upper Third +of Femur.] + +_X-ray Appearances._--In periosteal tumours that do not ossify, there is +merely erosion of bone, and the shadow is not unlike that given by +caries; in ossifying tumours, the arrangement of the new bone on the +surface is characteristic, and when it takes the form of spicules at +right angles to the shaft, it is pathognomic. + +In soft central tumours, there is disappearance of bone shadow in the +area of the tumour, while above and below or around this, the shadow is +that of normal bone right up to the clear area. In many respects the +X-ray appearances resemble those of myeloma. In tumours in which there +is a considerable amount of imperfectly formed new bone, this gives a +shadow which barely replaces that of the original bone, in parts it may +even add to it--the resulting picture differing widely in different +cases; but it is usually possible to differentiate it from that caused +by bacterial infections of the bone and from lesions of the adjacent +joint. + +[Illustration: FIG. 152.--Radiogram of Chondro-Sarcoma of Upper End of +Humerus in a woman aet. 29.] + +Skiagraphy is not only of assistance in differentiating new growths from +other diseases of bone, but may also yield information as to the +situation and nature of the tumour, which may have important bearings on +its treatment by operation. + +When fracture of a long bone takes place in an adolescent or young adult +from comparatively slight violence, disease of the bone should be +suspected and an X-ray examination made. + +In difficult cases the final appeal is to exploratory incision and +microscopical examination of a portion of the tumour; this should be +done when the major operation has been arranged for, the surgeon waiting +until the examination is completed. + +The _prognosis_ varies widely. In general, it may be said that +periosteal tumours are less favourable than central ones, because they +are more liable to give rise to metastases. Permanent cures are +unfortunately the exception. + +_Treatment._--When one of the bones of a limb is involved, the usual +practice has been to perform amputation well above the growth, and this +may still be recommended as a routine procedure. There are reasons, +however, which may be urged against its continuance. High amputation is +unnecessary in the more benign sarcomas, and in the more malignant forms +is usually unavailing to prevent a fatal issue either from local +recurrence or from metastases in the lungs or elsewhere. Following +the lead of Mikulicz, a considerable number of permanent cures have been +obtained by resecting the portion of bone which is the seat of the +tumour, and substituting for it a corresponding portion from the tibia +or fibula of the other limb. In a cellular sarcoma of the humerus of a +boy we resected the shaft and inserted his fibula ten years ago, and he +shows no sign of recurrence. When resection is impracticable, a +subcapsular enucleation is performed, followed by the insertion of +radium. + +#Pulsating Haematoma# or #Aneurysm of Bone#.--A limited number of these +are innocent cavernous tumours dating from a congenital angioma. The +majority would appear to be the result of changes in a sarcoma, +endothelioma, or myeloma. The tumour tissue largely disappears, while +the vessels and vascular spaces undergo a remarkable development. The +tumour may come to be represented by one large blood-containing space +communicating with the arteries of the limb; the walls of the space +consist of the remains of the original tumour, plus a shell of bone of +varying thickness. The most common seats of the condition are the lower +end of the femur, the upper end of the tibia, and the bones of the +pelvis. + +The _clinical features_ are those of a pulsating tumour of slow +development, and as in true aneurysm, the pulsation and bruit disappear +on compression of the main artery. The origin of the tumour from bone +may be revealed by the presence of egg-shell crackling, and by +examination with the X-rays. + +If the condition is believed to be innocent, the treatment is the same +as for aneurysm--preferably by ligation of the main artery; if +malignant, it is the same as for sarcoma. + +#Secondary Tumours of Bone.#--These embrace two groups of new growth, +those which give rise to secondary growths in the marrow of bones and +those which spread to bone by direct continuity. + +_Metastatic Tumours._--Excepting certain cancers which give rise to +metastases by lymphatic permeation (Handley), the common metastases +arising in the bone-marrow reach their destination through the +blood-stream. + +[Illustration: FIG. 153.--Epitheliomatous Ulcer of Leg with direct +extension to Tibia. + +(Lord Lister's specimen. Anatomical Museum, University of Edinburgh.)] + +Secondary cancer is a comparatively common disease, and, as in +metastases in other tissues, the secondary growths resemble the parent +tumour. The soft forms grow rapidly, and eat away the bone, without +altering its shape or form. In slowly growing forms there may be +considerable formation of imperfectly formed bone, often deficient in +lime salts; this condition may be widely diffused throughout the +skeleton, and, as it is associated with softening and bending of the +bones, it is known as _cancerous osteomalacia_. Secondary cancer of bone +is attended with pain, or it suddenly attracts notice by the occurrence +of pathological fracture--as, for example, in the shaft of the femur or +humerus. In the vertebrae, it is attended with a painful form of +paraplegia, which may involve the lower or all four extremities. On the +other hand, the disease may show itself clinically as a tumour of bone, +which may attain a considerable size, and may be mistaken for a sarcoma, +unless the existence of the primary cancer is discovered. + +The cancers most liable to give rise to metastasis in bone are those of +the breast, liver, uterus, prostate, colon, and rectum; hyper-nephroma +of the kidney may also give rise to metastases in bone. + +_Secondary tumours derived from the thyreoid gland_ require special +mention, because they are peculiar in that neither the primary growth in +the thyreoid nor the secondary growth in the bones is necessarily +malignant. They are therefore amenable to operative treatment. + +_Secondary sarcoma_, whether derived from a primary growth in the bone +or in the soft parts, is much rarer than secondary cancer. Its removal +by operation is usually contra-indicated, but we have known of cases +terminating fatally in which the _section_ revealed only one metastasis, +the removal of which would have benefited the patient. + +In all of these conditions, examination of the bones with the X-rays +gives valuable information and often disclose unsuspected metastases. + +_Cancer of Bone resulting from Direct Extension from Soft Parts._--In +this group there are also two clinical types. The first is met with in +relation to _epithelioma of a mucous surface_--for example, the palate, +tongue, gums, antrum, frontal sinus, auditory meatus, or middle ear. +They will be described under these special regions. + +The second type is met with in relation to _epithelioma occurring in a +sinus_, the sequel of suppurative osteomyelitis, compound fracture, or +tuberculous disease. The patient has usually had a discharging sinus for +a great number of years: we have known it to last as many as fifty. The +epithelioma originates at the skin orifice of the sinus, and spreads to +the bone and into its interior, where the progress of the cancer is +resisted by dense bone, which obliterates the medullary canal. Although +its progress is slow, the infiltration of the bone is usually more +extensive than appears externally. It is recognised clinically by the +characteristic cauliflower growth at the orifice of the sinus, and by +the offensive nature of the discharge. A similar epithelioma may arise +in connection with a _chronic ulcer of the leg_. The cancer may infect +the femoral lymph glands. The operative treatment is influenced by the +extent of the disease in the soft parts overlying the bone, and consists +in wide removal of the diseased tissues and resection of the bone, or in +amputation. + +#Cysts of Bone.#--With the exception of hydatid cysts, cysts in the +interior of bone are the result of the liquefaction of solid tissue; +this may be that of chondroma, myeloma, or sarcoma, but more commonly of +the marrow in osteomyelitis fibrosa. + + + + +CHAPTER XXI + +DISEASES OF JOINTS + + +Definition of terms--Ankylosis. DISEASES: Errors of + development--Bacterial diseases: _Pyogenic_; _Gonorrhoeal_; + _Tuberculous_; _Syphilitic_; _Acute rheumatism_--Diseases + associated with certain constitutional conditions: _Gout_; _Chronic + articular rheumatism_; _Arthritis deformans_; + _Haemophilia_--Diseases associated with affections of the nervous + system: _Neuro-arthropathies_; _Charcot's disease_--Hysterical or + mimetic affections of joints--Tumours and cysts--Loose bodies. + +#Definition of Terms.#--The term _synovitis_ is applied to any reaction +which affects the synovial membrane of a joint. It is usually associated +with effusion of fluid, and this may be serous, sero-fibrinous, or +purulent. As the term synovitis merely refers to the tissue involved, it +should always be used with an adjective--such as gouty, gonorrhoeal, or +tuberculous--which indicates its pathological nature. + +The terms _hydrops_, _hydrarthrosis_, and _chronic serous synovitis_ are +synonymous, and are employed when a serous effusion into the joint is +the prominent clinical feature. Hydrops may occur apart from +disease--for example, in the knee-joint from repeated sprains, or when +there is a loose body in the joint--but is met with chiefly in the +chronic forms of synovitis which result from gonorrhoea, tuberculosis, +syphilis, arthritis deformans, or arthropathies of nerve origin. + +_Arthritis_ is the term applied when not only the synovial membrane but +the articular surfaces, and it may be also the ends of the bones, are +involved, and it is necessary to prefix a qualifying adjective which +indicates its nature. When effusion is present, it may be serous, as in +arthritis deformans, or sero-fibrinous or purulent, as in certain forms +of pyogenic and tuberculous arthritis. Wasting of the muscles, +especially the extensors, in the vicinity of the joint is a constant +accompaniment of arthritis. On account of the involvement of the +articular surfaces, arthritis is apt to be followed by ankylosis. + +The term _empyema_ is sometimes employed to indicate that the cavity of +the joint contains pus. This is observed chiefly in chronic disease of +pyogenic or tuberculous origin, and is usually attended with the +formation of abscesses outside the joint. + +_Ulceration of cartilage_ and _caries of the articular surfaces_ are +common accompaniments of the more serious and progressive forms of joint +disease, especially those of bacterial origin. The destruction of +cartilage may be secondary to disease of the synovial membrane or of the +subjacent bone. When the disease begins as a synovitis, the synovial +membrane spreads over the articular surface, fuses with the cartilage +and eats into it, causing defects or holes which are spoken of as +ulcers. When the disease begins in the bone, the marrow is converted +into granulation tissue, which eats into the cartilage and separates it +from the bone. Following on the destruction of the cartilage, the +articular surface of the bone undergoes disintegration, a condition +spoken of as _caries of the articular surface_. The occurrence of +ulceration of cartilage and of articular caries is attended with the +clinical signs of fixation of the joint from involuntary muscular +contraction, wasting of muscles, and starting pains. These _starting +pains_ are the result of sudden involuntary movements of the joint. They +occur most frequently as the patient is dropping off to sleep; the +muscles becoming relaxed, the sensitive ulcerated surfaces jar on one +another, which causes sudden reflex contraction of the muscles, and the +resulting movement being attended with severe pain, wakens the patient +with a start. Advanced articular caries is usually associated with some +abnormal attitude and with shortening of the limb. It may be possible to +feel the bony surfaces grate upon one another. When all its constituent +elements are damaged or destroyed, a joint is said to be _disorganised_. +Should recovery take place, repair is usually attended with union of the +opposing articular surfaces either by fibrous tissue or by bone. + +#Conditions of Impaired Mobility of Joints.#--There are four conditions +of impaired mobility in joints: rigidity, contracture, ankylosis, and +locking. _Rigidity_ is the fixation of a joint by involuntary +contraction of muscles, and is of value as a sign of disease in +deep-seated joints, such as the hip. It disappears under anaesthesia. + +_Contracture_ is the term applied when the fixation is due to permanent +shortening of the soft parts around a joint--muscles, tendons, +ligaments, fasciae, or skin. As the structures on the flexor aspect are +more liable to undergo such shortening, contracture is nearly always +associated with flexion. Contracture may result from disease of the +joint, or from conditions outside it--for example, disease in one of +the adjacent bones, or lesions of the nerves. + +_Ankylosis_ is the term applied when impaired mobility results from +changes involving the articular surfaces. It is frequently combined with +contracture. Three anatomical varieties of ankylosis are +recognised--(a) The _fibrous_, in which there are adhesions between +the opposing surfaces, which may be in the form of loose isolated bands +of fibrous tissue, or may bind the bones so closely together as to +obliterate the cavity of the joint. The resulting stiffness, therefore, +varies from a mere restriction of the normal range of movement, up to a +close union of the bones which prevents movement. Fibrous ankylosis may +follow upon injury, especially dislocation or fracture implicating a +joint, or it may result from any form of arthritis. (b) _Cartilaginous +ankylosis_ implies the fusion of two apposed cartilaginous surfaces. It +is often found between the patella and the trochlear surface of the +femur in tuberculous disease of the knee. The fusion of the +cartilaginous surfaces is preceded by the spreading of a vascular +connective tissue, derived from the synovial membrane, over the +articular cartilage. Clinically, it is associated with absolute +immobility, (c) _Bony ankylosis_ or _synostosis_ is an osseous union +between articulating surfaces (Figs. 154 and 155). It may follow upon +fibrous or cartilaginous ankylosis, or may result from the fusion of two +articular surfaces which have lost their cartilage and become covered +with granulations. In the majority of cases it is to be regarded as a +reparative process, presenting analogies with the union of fracture. + +[Illustration: FIG. 154.--Osseous Ankylosis of Femur and Tibia in +position of flexion.] + +The term _arthritis ossificans_ has been applied by Joseph Griffiths to +a condition in which the articular surfaces become fused without evident +cause. + +The occurrence of ankylosis in a joint before the skeleton has attained +maturity does not appear to impair the growth in length of the bones +affected; ankylosis of the temporo-maxillary joints, however, greatly +impairs the growth of the mandible. When there is arrest of growth +accompanying ankylosis, it usually depends on changes in the ossifying +junctions caused by the original disease. + +To differentiate by manipulation between muscular fixation and +ankylosis, it may be necessary to anaesthetise the patient. The nature +and extent of ankylosis may be learned by skiagraphy; in osseous +ankylosis the shadow of the two bones is a continuous one. In fibrous as +contrasted with osseous ankylosis mobility may be elicited, although +only to a limited extent; while in osseous ankylosis the joint is +rigidly fixed, and attempts to move it are painless. + +[Illustration: FIG. 155.--Osseous Ankylosis of Knee in the flexed +position following upon Tuberculous Arthritis. + +(Anatomical Museum, University of Edinburgh.)] + +The _treatment_ is influenced by the nature of the original lesion, the +variety of the ankylosis, and the attitude of the joint. When there is +restriction of movement due to fibrous adhesions, these may be elongated +or ruptured. Elongation of the adhesions may be effected by +manipulations, exercises, and the use of special forms of +apparatus--such as the application of weights to the limb. It may be +necessary to administer an anaesthetic before rupturing strong fibrous +adhesions, and this procedure must be carried out with caution, in view +of such risks as fracture of the bone--which is often rarefied--or +separation of an epiphysis. There is also the risk of fat embolism, and +of re-starting the original disease. The giving way of adhesions may be +attended with an audible crack; and the procedure is often followed by +considerable pain and effusion into the joint, which necessitate rest +for some days before exercises and manipulations can be resumed. + +_Operative treatment_ may be called for in cases in which the bones are +closely bound to one another by fibrous or by osseous tissue. + +_Arthrolysis_, which consists in opening the joint and dividing the +fibrous adhesions, is almost inevitably followed by their reunion. + +_Arthroplasty._--Murphy of Chicago devised this operation for restoring +movement to an ankylosed joint. It consists in transplanting between the +bones a flap of fat-bearing tissue, from which a bursal cavity lined +with endothelium and containing a fluid rich in mucin is ultimately +formed. + +Arthroplasty is most successful in ankylosis following upon injury; when +the ankylosis results from some infective condition such as tuberculosis +or gonorrhoea, it is liable to result in failure either because of a +fresh outbreak of the infection or because the ankylosis recurs. + +When arthroplasty is impracticable, and a movable joint is desired--for +example at the elbow--a considerable amount of bone, and it may be also +of periosteum and capsular ligament, is resected to allow of the +formation of a false joint. + +When bony ankylosis has occurred with the joint in an undesirable +attitude--for example flexion at the hip or knee--it can sometimes be +remedied by osteotomy or by a wedge-shaped resection of the bone, with +or without such additional division of the contracted soft parts as will +permit of the limb being placed in the attitude desired. + +Bony ankylosis of the joints of a finger, whether the result of injury +or disease, is difficult to remedy by any operative procedure, for while +it is possible to restore mobility, the new joint is apt to be +flail-like. + +_Locking._--A joint is said to lock when its movements are abruptly +arrested by the coming together of bony outgrowths around the joint. It +is best illustrated in arthritis deformans of the hip in which new bone +formed round the rim of the acetabulum mechanically arrests the +excursions of the head of the femur. The new bone, which limits the +movements, is readily demonstrated in skiagrams; it may be removed by +operative means. Locking of joints is more often met with as a result of +injuries, especially in fractures occurring in the region of the elbow. +In certain injuries of the semilunar menisci of the knee, also, the +joint is liable to a variety of locking, which differs, however, in many +respects from that described above. + +#Errors of Development.#--These include congenital dislocations and +other deformities of intra-uterine origin, such as abnormal laxity of +joints, absence, displacement, or defective growth of one or other of +the essential constituents of a joint. The more important of these are +described along with the surgery of the Extremities. + + +DISEASES OF JOINTS + +#Bacterial Diseases.#--In most bacterial diseases the organisms are +carried to the joint in the blood-stream, and they lodge either in the +synovial membrane or in one of the bones, whence the disease +subsequently spreads to the other structures of the joint. Organisms may +also be introduced through accidental wounds. It has been shown +experimentally that joints are among the most susceptible parts of the +body to infection, and this would appear to be due to the viscid +character of the synovial fluid, which protects organisms from +bactericidal agents in the tissues and fluids. + + +PYOGENIC DISEASES + +The commoner pyogenic diseases are the result of infection of one or +other of the joint structures with _staphylococci_ or _streptococci_, +which may be demonstrated in the exudate in the joint and in the +substance of the synovial membrane. The mode of infection is the same as +in the pyogenic diseases of bone, the metastasis occurring most +frequently from the mucous membrane of the pharynx (J. B. Murphy). The +localisation of the infection in a particular joint is determined by +injury, exposure to cold, antecedent disease of the joint, or other +factors, the nature of which is not always apparent. + +The effects on the joint vary in severity. In the milder forms, there is +engorgement and infiltration of the synovial membrane, and an effusion +into the cavity of the joint of serous fluid mixed with flakes of +fibrin--_serous synovitis_. In more severe infections the exudate +consists of pus mixed with fibrin, and, it may be, red blood +corpuscles--_purulent_ or _suppurative synovitis_; the synovial membrane +and the ligaments are softened, and the surface of the membrane presents +granulations resembling those on an ulcer; foci of suppuration may +develop in the peri-articular cellular tissue and result in abscesses. +In _acute arthritis_, all the structures of the joint are involved; the +articular cartilage is invaded by granulation tissue derived from the +synovial membrane, and from the marrow of the subjacent bone; it +presents a worm-eaten or ulcerated appearance, or it may undergo +necrosis and separate, exposing the subjacent bone and leading to +disintegration of the osseous trabeculae--_caries_. With the destruction +of the ligaments, the stability of the joint is lost, and it becomes +disorganised. + +The _clinical features_ vary with the extent of the infection. When +this is confined to the synovial and peri-synovial tissues--_acute +serous_ and _purulent synovitis_--there is the usual general reaction, +associated with pyrexia and great pain in the joint. The part is hot and +swollen, the swelling assuming the shape of the distended synovial sac, +fluctuation can usually be elicited, and the joint is held in the flexed +position. + +When the joint is infected by extension from the surrounding cellular +tissue, the joint lesion may not be recognised at an early stage because +of the swollen condition of the limb, and because there are already +symptoms of toxaemia. We have observed a case in which both the hip and +knee joints were infected from the cellular tissue. + +If the infection involves all the joint structures--_acute +arthritis_--the general and local phenomena are intensified, the +temperature rises quickly, often with a rigor, and remains high; the +patient looks ill, and is either unable to sleep or the sleep is +disturbed by starting pains. The joint is held rigid in the flexed +position, and the least attempt at movement causes severe pain; the +slightest jar--even the shaking of the bed--may cause agony. The joint +is hot, tensely distended, and there may be oedema of the peri-articular +tissues or of the limb as a whole. If the pus perforates the joint +capsule, there are signs of abscess or of diffuse suppuration in the +cellular tissue. The final disorganisation of the joint is indicated by +abnormal mobility and grating of the articular surfaces, or by +spontaneous displacement of the bones, and this may amount to +dislocation. In the acute arthritis of infants, the epiphysis concerned +may be separated and displaced. + +When the _joint is infected through an external wound_, the anatomical +features are similar to those observed when the infection has reached +the joint by the blood-stream, but the destructive changes tend to be +more severe and are more likely to result in disorganisation. + +The _terminations_ vary with the gravity of the infection and with the +stage at which treatment is instituted. In the milder forms recovery is +the rule, with more or less complete restoration of function. In more +severe forms the joint may be permanently damaged as a result of fibrous +or bony ankylosis, or from displacement or dislocation. From changes in +the peri-articular structures there may be contracture in an undesirable +position, and in young subjects the growth of the limb may be interfered +with. The persistence of sinuses is usually due to disease in one or +other of the adjacent bones. In the most severe forms, and especially +when several joints are involved, death may result from toxaemia. + +The _treatment_ is carried out on the same principles as in other +pyogenic infections. The limb is immobilised in such an attitude that +should stiffness occur there will be the least interference with +function. Extension by weight and pulley is the most valuable means of +allaying muscular spasm and relieving intra-articular tension and of +counteracting the tendency to flexion; as much as 15 or 20 pounds may be +required to relieve the pain. + +The induction of hyperaemia is sometimes remarkably efficacious in +relieving pain and in arresting the progress of the infection. If the +fluid in the joint is in sufficient quantity to cause tension, if it +persists, or if there is reason to suspect that it is purulent, it +should be withdrawn without delay; an exploring syringe usually +suffices, the skin being punctured with a tenotomy knife, and, as +practised by Murphy, 5 to 15 c.c. of a 2 per cent. solution of formalin +in glycerin are injected and the wound is closed. In virulent infections +the injection may be repeated in twenty-four hours. Drainage by tube or +otherwise is to be condemned (Murphy). A vaccine may be prepared from +the fluid in the joint and injected into the subcutaneous cellular +tissue. + +Suppuration in the peri-articular soft parts or in one of the adjacent +bones must be looked for and dealt with. + +When convalescence is established, attention is directed to the +restoration of the functions of the limb, and to the prevention of +stiffness and deformity by movements and massage, and the use of hot-air +and other baths. + +At a later stage, and especially in neglected cases, operative and other +measures may be required for deformity or ankylosis. + + +#Metastatic Forms of Pyogenic Infection# + +In #pyaemia#, one or more joints may fill with pus without marked +symptoms or signs, and if the pus is aspirated without delay the joint +often recovers without impairment of function. + +In #typhoid fever#, joint lesions result from infection with the typhoid +bacillus alone or along with pyogenic organisms, and run their course +with or without suppuration; there is again a remarkable absence of +symptoms, and attention may only be called to the condition by the +occurrence of dislocation. + +Joint lesions are comparatively common in #scarlet fever#, and were +formerly described as scarlatinal rheumatism. The most frequent clinical +type is that of a serous synovitis, occurring within a week or ten days +from the onset of the fever. Its favourite seat is in the hand and +wrist, the sheaths of the extensor tendons as well as the synovial +membrane of the joints being involved. It does not tend to migrate to +other joints, and rarely lasts longer than a few days. It is probably +due to the specific virus of scarlet fever. + +At a later stage, especially in children and in cases in which the +throat lesion is severe, an arthritis is sometimes observed that is +believed to be a metastasis from the throat; it may be acute and +suppurative, affect several joints, and exhibit a septicaemic or pyaemic +character. + +The joints of the lower extremity are especially apt to suffer; the +child is seriously ill, is delirious at night, develops bed-sores over +the sacrum and, it may happen that, not being expected to recover, the +legs are allowed to assume contracture deformities with ankylosis or +dislocation at the hip and flexion ankylosis at the knees; should the +child survive, the degree of crippling may be pitiable in the extreme; +prolonged orthopaedic treatment and a series of operations--arthroplasty, +osteotomies, and resections--may be required to restore even a limited +capacity of locomotion. + +#Pneumococcal affections of joints#, the result of infection with the +pneumococcus of Fraenkel, are being met with in increasing numbers. The +local lesion varies from a _synovitis_ with infiltration of the synovial +membrane and effusion of serum or pus, to an _acute arthritis_ with +erosion of cartilage, caries of the articular surfaces, and +disorganisation of the joint. The knee is most frequently affected, but +several joints may suffer at the same time. In most cases the joint +affection makes its appearance a few days after the commencement of a +pneumonia, but in a number of instances, especially among children, the +lung is not specially involved, and the condition is an indication of a +generalised pneumococcal infection, which may manifest itself by +endocarditis, empyema, meningitis, or peritonitis, and frequently has a +fatal termination. The differential diagnosis from other forms of +pyogenic infection is established by bacteriological examination of the +fluid withdrawn from the joint. The treatment is carried out on the same +lines as in other pyogenic infections, considerable reliance being +placed on the use of autogenous vaccines. + +In #measles#, #diphtheria#, #smallpox#, #influenza#, and #dysentery#, +similar joint lesions may occur. + +The joint lesions which accompany #acute rheumatism# or "rheumatic +fever" are believed to be due to a diplococcus. In the course of a +general illness in which there is moderate pyrexia and profuse sweating, +some of the larger joints, and not infrequently the smaller ones also, +become swollen and extremely sensitive, so that the sufferer lies in bed +helpless, dreading the slightest movement. From day to day fresh joints +are attacked, while those first affected subside, often with great +rapidity. Affections of the heart-valves and of the pericardium are +commonly present. On recovery from the acute illness, it may be found +that the joints have entirely recovered, but in a small proportion of +cases certain of them remain stiff and pass into the crippled condition +described under chronic rheumatism. There is no call for operative +interference. + +#Gonococcal Affections of Joints.#--These include all forms of joint +lesion occurring in association with gonorrhoeal urethritis, +vulvo-vaginitis, or gonorrhoeal ophthalmia. They may develop at any stage +of the urethritis, but are most frequently met with from the eighteenth +to the twenty-second day after the primary infection, when the organisms +have reached the posterior urethra; they have been observed, however, +after the discharge has ceased. There is no connection between the +severity of the gonorrhoea and the incidence of joint disease. In women, +the gonorrhoeal nature of the discharge must be established by +bacteriological examination. + +As a complication of ophthalmia, the joint lesions are met with in +infants, and occur more commonly towards the end of the second or during +the third week. + +The gonococcus is carried to the joint in the blood-stream and is first +deposited in the synovial membrane, in the tissues of which it can +usually be found; it may be impossible to find it in the exudate within +the joint. The joint lesions may be the only evidence of metastasis, or +they may be part of a general infection involving the endocardium, +pleura, and tendon sheaths. + +The joints most frequently affected are the knee, elbow, ankle, wrist, +and fingers. Usually two or more joints are affected. + +Several clinical types are differentiated. (1) A _dry poly-arthritis_ +met with in the joints and tendon sheaths of the wrist and hand, +formerly described as gonorrhoeal rheumatism, which in some cases is +trifling and evanescent, and in others is persistent and progressive, +and results in stiffness of the affected joints and permanent crippling +of the hand and fingers. + +(2) The commonest type is a _chronic synovitis_ or _hydrops_, in which +the joint--very often the knee--becomes filled with a serous or +sero-fibrinous exudate. There are no reactive changes in the synovial +membrane, cellular tissue, or skin, nor is there any fever or +disturbance of health. The movements are free except in so far as they +are restricted by the amount of fluid in the joint. It usually subsides +in two or three weeks under rest, but tends to relapse. + +(3) An _acute synovitis_ with peri-articular phlegmon is most often met +with in the elbow, but it occurs also in the knee and ankle. There is a +sudden onset of severe pain and swelling in and around the joint, with +considerable fever and disturbance of health. The slightest movement +causes pain, and the part is sensitive to touch. The skin is hot and +tense, and in the case of the elbow may be red and fiery as in +erysipelas. + +The deposit of fibrin on the synovial membrane and on the articular +surfaces may lead to the formation of adhesions, sometimes in the form +of isolated bands, sometimes in the form of a close fibrous union +between the bones. + +(4) A _suppurative arthritis_, like that caused by ordinary pus +microbes, may be the result of gonococcal infection alone or of a mixed +infection. Usually only one joint is affected, but the condition may be +multiple. The articular cartilages are destroyed, the ends of the bones +are covered with granulations, extra-articular abscesses form, and +complete osseous ankylosis results. + +The _diagnosis_ is often missed because the possibility of gonorrhoea is +not suspected. + +The denial of the disease by the patient is not always to be relied +upon, especially in the case of women, as they may be ignorant of its +presence. The chief points in the differential diagnosis from acute +articular rheumatism are, that the gonorrhoeal affection is more often +confined to one or two joints, has little tendency to wander from joint +to joint, and its progress is not appreciably influenced by salicylates, +although these drugs may relieve pain. The conclusive point is the +recognition of a gonorrhoeal discharge or of threads in the urine. + +The disease may persist or may relapse, and the patient may be laid up +for weeks or months, and may finally be crippled in one or in several +joints. + +The _treatment_--besides that of the urethral disease or of the +ophthalmia--consists in rest until all pain and sensitiveness have +disappeared. The pain is relieved by salicylates, but most benefit +follows weight extension, the induction of hyperaemia by the rubber +bandage and hot-air baths; if the joint is greatly distended, the fluid +may be withdrawn by a needle and syringe. Detoxicated vaccines should be +given from the first, and in afebrile cases the injection of a foreign +protein, such as anti-typhoid vaccine, is beneficial (Harrison). + +Murphy has found benefit from the introduction into the joint, in the +early stages, of from 5 to 15 c.c. of a 2 per cent. solution of formalin +in glycerin. This may be repeated within a week, the patient being kept +in bed with light weight extension. In the chronic hydrops the fluid is +withdrawn, and about an ounce of a 1 per cent. solution of protargol +injected; the patient should be warned of the marked reaction which +follows. + +After all symptoms have settled down, but not till then, for fear of +exciting relapse or metastasis, the joint is massaged and exercised. +Stiffness from adhesions is most intractable, and may, in spite of every +attention, terminate in ankylosis even in cases where there has been no +suppuration. Forcible breaking down of adhesions under anaesthesia is +not recommended, as it is followed by great suffering and the adhesions +re-form. Operation for ankylosis--arthroplasty--should not be +undertaken, as the ankylosis recurs. + + +TUBERCULOUS DISEASE + +Tuberculous disease of joints results from bacillary infection through +the arteries. The disease may commence in the synovial membrane or in +the marrow of one of the adjacent bones, and the relative frequency of +these two seats of infection has been the subject of considerable +difference of opinion. The traditional view of Konig is that in the knee +and most of the larger joints the disease arises in the bone and in the +synovial membrane in about equal proportion, and that in the hip the +number of cases beginning in the bones is about five times greater than +that originating in the membrane. This estimate, so far as the actual +frequency of bone lesions is concerned, has been generally accepted, but +recent observers, notably John Fraser, do not accept the presence of +bone lesions as necessarily proving that the disease commenced in the +bones; he maintains, and we think with good grounds, that in many cases +the disease having commenced in the synovial membrane, slowly spreads to +the bone by way of the blood vessels and lymphatics, and gives rise to +lesions in the marrow. + +#Morbid Anatomy.#--Tuberculous disease in the articular end of a long +bone may give rise to _reactive changes_ in the adjacent joint, +characterised by effusion and by the extension of the synovial membrane +over the articular surfaces. This may result in the formation of +adhesions which obliterate the cavity of the joint or divide it into +compartments. These lesions are comparatively common, and are not +necessarily due to actual tuberculous infection of the joint. + +The _infection of the joint_ by tubercle originating in the adjacent +bone may take place at the periphery, the osseous focus reaching the +surface of the bone at the site of reflection of the synovial membrane, +and the infection which begins at this point then spreads to the rest of +the membrane. Or it may take place in the central area, by the +projection of tuberculous granulation tissue into the joint following +upon erosion of the cartilage (Fig. 156). + +[Illustration: FIG. 156.--Section of Upper End of Fibula, showing +caseating focus in marrow, erupting on articular surface and infecting +joint.] + +_Changes in the Synovial Membrane._--In the majority of cases there is a +_diffuse thickening of the synovial membrane_, due to the formation of +granulation tissue, or of young connective tissue, in its substance. +This new tissue is arranged in two layers--the outer composed of fully +formed connective or fibrous tissue, the inner of embryonic tissue, +usually permeated with miliary tubercles. On opening the joint, these +tubercles may be seen on the surface of the membrane, or the surface may +be covered with a layer of fibrinous or caseating tissue. Where there is +greater resistance on the part of the tissues, there is active formation +of young connective tissue which circumscribes or encapsulates the +tubercles, so that they remain embedded in the substance of the +membrane, and are only seen on cutting into it. + +The thickened synovial membrane is projected into the cavity of the +joint, filling up its pouches and recesses, and spreading over the +surface of the articular cartilage "like ivy growing on a wall." +Wherever the synovial tissue covers the cartilage it becomes adherent to +and fused with it. The morbid process may be arrested at this stage, and +fibrous adhesions form between the opposing articular surfaces, or it +may progress, in which case further changes occur, resulting in +destruction of the articular cartilage and exposure of the subjacent +bone. + +In rare instances the synovial membrane presents nodular masses or +lumps, resembling the tuberculous tumours met with in the brain; they +project into the cavity of the joint, are often pedunculated, and may +give rise to the symptoms of loose body. The fringes of synovial +membrane may also undergo a remarkable development, like that observed +in arthritis deformans, and described as arborescent lipoma. Both these +types are almost exclusively met with in the knee. + +_The Contents of Tuberculous Joints._--In a large proportion of cases of +synovial tuberculosis the joint is entirely filled up by the diffuse +thickening of the synovial membrane. In a small number there is an +abundant serous exudate, and with this there may be a considerable +formation of fibrin, covering the surface of the membrane and floating +in the fluid as flakes or masses; under the influence of movement it may +assume the shape of melon-seed bodies. More rarely the joint contains +pus, and the surface of the synovial membrane resembles the wall of a +cold abscess. + +_Ulceration and Necrosis of Cartilage._--The synovial tissue covering +the cartilage causes pitting and perforation of the cartilage and makes +its way through it, and often spreads widely between it and the +subjacent bone; the cartilage may be detached in portions of +considerable size. It may be similarly ulcerated or detached as a result +of disease in the bone. + +_Caries of Articular Surfaces._--Tuberculous infiltration of the marrow +in the surface cancelli breaks up the spongy framework of the bone into +minute irregular fragments, so that it disintegrates or crumbles +away--caries. When there is an absence of caseation and suppuration, the +condition is called _caries sicca_. + +The pressure of the articular surfaces against one another favours the +progress of ulceration of cartilage and of articular caries. These +processes are usually more advanced in the areas most exposed to +pressure--for example, in the hip-joint, on the superior aspect of the +head of the femur, and on the posterior and upper segment of the +acetabulum. + +The occurrence of _pathological dislocation_ is due to softening and +stretching of the ligaments which normally retain the bones in position, +and to some factor causing displacement, which may be the accumulation +of fluid or of granulations in the joint, the involuntary contraction of +muscles, or some movement or twist of the limb. The occurrence of +dislocation is also favoured by destructive changes in the bones. + +_Peri-articular tubercle and abscess_ may result from the spread of +disease from the bone or joint into the surrounding tissues, either +directly or by way of the lymphatics. A peri-articular abscess may +spread in several directions, sometimes invading tendon sheaths or +bursae, and finally reaching the skin surface by tortuous sinuses. + +Reactive changes in the vicinity of tuberculous joints are of common +occurrence, and play a considerable part in the production of what is +clinically known as _white swelling_. New connective tissue forms in the +peri-articular fat and between muscles and tendons. It may be tough and +fibrous, or soft, vascular, and oedematous, and the peri-articular fat +becomes swollen and gelatinous, constituting a layer of considerable +thickness. The fat disappears and is replaced by a mucoid effusion +between the fibrous bundles of connective tissue. This is what was +formerly known as _gelatinous degeneration_ of the synovial membrane. In +the case of the wrist the newly formed connective tissue may fix the +tendons in their sheaths, interfering with the movements of the fingers. +In relation to the bones also there may be reactive changes, resulting +in the formation of spicules of new bone on the periosteal surfaces and +at the attachment of the capsular and other ligaments; these are only +met with where pyogenic infection has been superadded. + +_Terminations and Sequelae._--A natural process of cure may occur at any +stage, the tuberculous tissue being replaced by scar tissue. Recovery is +apt to be attended with impairment of movement due to adhesions, +ankylosis, or contracture of the peri-articular structures. Caseous foci +in the interior of the bones may become encapsulated, and a cure be thus +effected, or they may be the cause of a relapse of the disease at a +later date. Interference with growth is comparatively common, and may +involve only the epiphysial junctions in the immediate vicinity of the +joint affected, or those of all the bones of the limb. This is well seen +in adults who have suffered from severe disease of the hip in +childhood--the entire limb, including the foot, being shorter and +smaller than the corresponding parts of the opposite side. + +Atrophic conditions are also met with, the bones undergoing fatty +atrophy, so that in extreme cases they may be cut with a knife or be +easily fractured. These atrophic conditions are most marked in bedridden +patients, and are largely due to disuse of the limb; they are recovered +from if it is able to resume its functions. + +#Clinical Features.#--These vary with the different anatomical forms of +the disease, and with the joint affected. + +Sometimes the disease is ushered in by a febrile attack attended with +pains in several joints--described by John Duncan as _tuberculous +arthritic fever_. This is liable to be mistaken for rheumatic fever, +from which, however, it differs in that there is no real migration from +joint to joint; there is an absence of sweating and of cardiac +complications; and no benefit follows the administration of salicylates. + +In exceptional cases, tuberculous joint disease follows an acute course +resembling that of the pyogenic arthritis of infants. This has been +observed in children, especially in the knee, the lesion being in the +synovial membrane, and attended with an accumulation of pus in the +joint. If promptly treated by incision and drainage, recovery is rapid, +and free movement of the joint, may be preserved. + +The onset and early stages of tuberculous disease, however, are more +often insidious, and are attended with so few symptoms that the disease +may have obtained a considerable hold before it attracts notice. It is +not uncommon for patients or their friends to attribute the condition to +injury, as it often first attracts attention after some slight trauma or +excessive use of the limb. The symptoms usually subside under rest, only +to relapse again with use of the limb. + +The initial local symptoms may be due to the presence of a focus in the +neighbouring bone, perhaps causing neuralgic pains in the joint, or +weakness, tiredness, stiffness, and inability to use the limb, these +symptoms improving with rest and being aggravated by exertion. + +It is rarely possible by external examination to recognise deep-seated +osseous foci in the vicinity of joints; but if they are near the surface +in a superficial bone--such as the head of the tibia--there may be local +thickening of the periosteum, oedema, pain, and tenderness on pressure +and on percussion. + +_X-ray Appearances of Tuberculous Joints._--Gross lesions such as +caseous foci in the marrow of the adjacent bone show as clear areas with +an ill-defined margin; a sclerosed focus gives a denser shadow than the +surrounding bone, and a sequestrum presents a dark shadow of irregular +contour, and a clear interval between it and the surrounding bone. + +Caries of the articular surface imparts a woolly appearance or irregular +contour in place of the well-defined outline of the articular end of the +bone. In bony ankylosis the shadow of the two bones is a continuous one, +the joint interval having been filled up. The minor changes are best +appreciated on comparison with the normal joint of the other limb. + +_Wasting of muscles_ is a constant accompaniment of tuberculous joint +disease. It is to be attributed partly to want of use, but chiefly to +reflex interference with the trophic innervation of the muscles. It is +specially well seen in the extensor and adductor muscles of the thigh in +disease of the knee, and in the deltoid in disease of the shoulder. The +muscles become soft and flaccid, they exhibit tremors on attempted +movement, and their excitability to the faradic current is diminished. +The muscular tissue may be largely replaced by fat. + +_Impairment of the normal movements_ is one of the most valuable +diagnostic signs, particularly in deeply seated joints such as the +shoulder, hip, and spine. It is due to a protective contraction of the +muscles around the joint, designed to prevent movement. This muscular +fixation disappears under anaesthesia. + +_Abnormal attitudes of the limb_ occur earlier, and are more pronounced +in cases in which pain and other irritative symptoms of articular +disease are well marked, and are best illustrated by the attitudes +assumed in disease of the hip. They are due to reflex or involuntary +contraction of the muscles acting on the joint, with the object of +placing it in the attitude of greatest ease; they also disappear under +anaesthesia. With the lapse of time they not only become exaggerated, but +may become permanent from ankylosis or from contracture of the soft +parts round the joint. + +_Startings at night_ are to be regarded as an indication that there is +progressive disease involving the articular surfaces. + +_The formation of extra-articular abscess_ may take place early, or it +may not occur till long after the disease has subsided. The abscess may +develop so insidiously that it does not attract attention until it has +attained considerable size, especially when associated with disease of +the spine, pelvis, or hip. The position of the abscess in relation to +different joints is fairly constant and is determined by the anatomical +relationships of the capsule and synovial membrane to the surrounding +tissues. The bursae and tendon sheaths in the vicinity may influence the +direction of spread of the abscess and the situation of resulting +sinuses. When the abscess is allowed to burst, or is opened and becomes +infected with pyogenic bacteria, there is not only the risk of +aggravation of the disease and persistent suppuration, but there is a +greater liability to general tuberculosis. + +The sinuses may be so tortuous that a probe cannot be passed to the +primary focus of disease, and their course and disposition can only be +demonstrated by injecting the sinuses with an emulsion of bismuth and +taking X-ray photographs. + +Tuberculous infection of the lymph glands of the limb is exceptional, +but may follow upon infection of the skin around the orifice of a sinus. + +A slight rise of temperature in the evening may be induced in quiescent +joint lesions by injury or by movement of the joint under anaesthesia, or +by the fatigue of a railway journey. When sinuses have formed and become +infected with pyogenic bacteria, there may be a diurnal variation in the +temperature of the type known as hectic fever (Fig. 11). + +_Relative Frequency of Tuberculous Disease in Different +Joints._--Hospital statistics show that joints are affected in the +following order of frequency: Spine, knee, hip, ankle and tarsus, elbow, +wrist, shoulder. The hip and spine are most often affected in childhood +and youth, the shoulder and wrist in adults; the knee, ankle, and elbow +show little age preference. + +_Clinical Variations of Tuberculous Joint Disease._--The above +description applies to tuberculous joint disease in general; it must be +modified to include special manifestations or varieties. + +When the main incidence of the infection affects the synovial membrane, +the clinical picture may assume the form of a _hydrops_, or of an +_empyema_ in which the joint is filled with pus. More common than either +of these is the well-known _white swelling_ or _tumor albus_ (Wiseman, +1676) which is the clinical manifestation of diffuse thickening of the +synovial membrane along with mucoid degeneration of the peri-synovial +cellular tissue. It is well seen in joints which are superficial--such +as the knee, ankle, elbow, and wrist. The swelling, which is the first +and most prominent clinical feature, develops gradually and painlessly, +obliterating the bony prominences by filling up the natural hollows. It +appears greater to the eye than is borne out by measurement, being +thrown into relief by the wasting of the muscles above and below the +joint. In the early stage the swelling is elastic, doughy, and +non-sensitive, and corresponds to the superficial area of the synovial +membrane involved, and there is comparatively little complaint on the +part of the patient, because the articular surfaces and ligaments are +still intact. There may be a feeling of weight in the limb, and in the +case of the knee and ankle the patient tires on walking and drags the +leg with more or less of a limp. Movements of the joint are permitted, +but are limited in range. The disability is increased by use and +exertion, but, for a time at least, it improves under rest. + +If the disease is not arrested, there follow the symptoms and signs of +involvement of the articular surfaces. + +_Influence of Tuberculous Joint Disease on the General +Health._--Experience shows that the early stages of tuberculous joint +disease are compatible with the appearance of good health. As a rule, +however, and especially if there is mixed infection, the health suffers, +the appetite is impaired, the patient is easily tired, and there may be +some loss of weight. + +#Treatment.#--In addition to the general treatment of tuberculosis, +local measures are employed. These may be described under two heads--the +conservative and the operative. + +_Conservative treatment_ is almost always to be employed in the first +instance, as by it a larger proportion of cures is obtained with a +smaller mortality and with better functional results than by operation. + +_Treatment by rest_ implies the immobilisation of the diseased limb +until pain and tenderness have disappeared. The attitude in which the +limb is immobilised should be that in which, in the event of subsequent +stiffness, it will be most serviceable to the patient. Immobilisation +may be secured by bandages, splints, extension, or other apparatus. +_Extension_ with weight and pulley is of value in securing rest, +especially in disease of the hip or knee; it eliminates muscular spasm, +relieves pain and startings at night, and prevents abnormal attitudes of +the limb. If, when the patient first comes under observation, the limb +is in a deformed attitude which does not readily yield to extension, the +deformity should be corrected under an anaesthetic. + +_The induction of hyperaemia_ is often helpful, the rubber bandage or the +hot-air chamber being employed for an hour or so morning and evening. + +_Injection of Iodoform._--This is carried out on the same lines as have +been described for tuberculous abscess. After the fluid contents of the +joint are withdrawn, the iodoform is injected; and this may require to +be repeated in a month or six weeks. + +After the injection of iodoform there is usually considerable reaction, +attended with fever (101 o F.), headache, and malaise, and considerable +pain and swelling of the joint. In some cases there is sickness, and +there may be blood pigment in the urine. The severity of these phenomena +diminishes with each subsequent injection. + +The use of Scott's dressing and of blisters and of the actual cautery +has largely gone out of fashion, but the cautery may still be employed +with benefit for the relief of pain in cases in which ulceration of +cartilage is a prominent feature. + +The application of the X-rays has proved beneficial in synovial lesions +in superficial joints such as the wrist or elbow; prolonged exposures +are made at fortnightly intervals, and on account of the cicatricial +contraction which attends upon recovery, the joint must be kept in good +position. + +Conservative treatment is only abandoned if improvement does not show +itself after a thorough trial, or if the disease relapses after apparent +cure. + +_Operative Treatment._--Other things being equal, operation is more +often indicated in adults than in children, because after the age of +twenty there is less prospect of recovery under conservative treatment, +there is more tendency for the disease to relapse and to invade the +internal organs, and there is no fear of interfering with the growth of +the bones. The state of the general health may necessitate operation as +the most rapid method of removing the disease. The social status of the +patient must also be taken into account; the bread-winner, under +existing social conditions, may be unable to give up his work for a +sufficient time to give conservative measures a fair trial. + +The _local conditions_ which decide for or against operation are +differently regarded by different surgeons, but it may be said in +general terms that operative interference is indicated in cases in which +the disease continues to progress in spite of a fair trial of +conservative measures; in cases unsuited for conservative +treatment--that is to say, where there are severe bone lesions. +Operative interference is indicated also when the functional result will +be better than that likely to be obtained by conservative measures, as +is often the case in the knee and elbow. Cold abscesses should, if +possible, be dealt with before operating on the joint. + +In many cases the extent of the operation can only be decided after +exploration. The aim is to remove all the disease with the least +impairment of function and the minimum sacrifice of healthy tissue. The +more open the method of operating the better, so that all parts of the +joint may be available for inspection. The methods of Kocher, which +permit of dislocating the joint, are specially to be recommended, as +this procedure affords the freest possible access. Diseased synovial +membrane is removed with the scissors or knife. If the cartilages are +sound, and if a movable joint is aimed at, they may be left; but if +ankylosis is desired, they must be removed. Localised disease of the +cartilage should be removed with the spoon or gouge, and the bone +beneath investigated. If the articular surface is extensively diseased, +a thin slice of bone should be removed, and if foci in the marrow are +then revealed, it is better to gouge them out than to remove further +slices of bone, as this involves sacrifice of the cortex and periosteum. + +Operative treatment of deformities resulting from tuberculous joint +disease has almost entirely replaced reduction by force; the contracted +soft parts are divided, and the bone is resected. + +_Amputation_ for tuberculous joint disease has become one of the rare +operations of surgery, and is only justified when less radical measures +have failed and the condition of the limb is affecting the general +health. Amputation is more frequently called for in persons past middle +life who are the subjects of pulmonary tuberculosis. + + +SYPHILITIC DISEASE + +Syphilitic affections of joints are comparatively rare. As in +tuberculosis, the disease may be first located in the synovial membrane, +or it may spread to the joint from one of the bones. + +In #acquired syphilis#, at an early stage and before the skin eruptions +appear, one of the large joints, such as the shoulder or knee, may be +the seat of pain--_arthralgia_--which is worse at night. In the +secondary stage, a _synovitis_ with serous effusion is not uncommon, and +may affect several joints. Syphilitic _hydrops_ is met with almost +exclusively in the knee; it is frequently bilateral, and is insidious in +its onset and progress, the patient usually being able to go about. + +In the _tertiary stage_ the joint lesions are persistent and +destructive, and result from the formation of gummata, either in the +deeper layers of the synovial membrane or in the adjacent bone or +periosteum. + +_Peri-synovial_ and _peri-bursal gummata_ are met with in relation to +the knee-joint of middle-aged adults, especially women. They are usually +multiple, develop slowly, and are rarely sensitive or painful. One or +more of the gummata may break down and give rise to tertiary ulcers. The +co-existence of indolent swellings, ulcers, and depressed scars in the +vicinity of the knee is characteristic of tertiary syphilis. + +The disease spreads throughout the capsule and synovial membrane, which +becomes diffusely thickened and infiltrated with granulation tissue +which eats into and replaces the articular cartilage. Clinically, the +condition resembles tuberculous disease of the synovial membrane, for +which it is probably frequently mistaken, but in the syphilitic +affection the swelling is nodular and uneven, and the subjective +symptoms are slight, mobility is little impaired, and yet the deformity +is considerable. + +_Syphilitic osteo-arthritis_ results from a gumma in the periosteum or +marrow of one of the adjacent bones. There is gradual enlargement of one +of the bones, the patient complains of pains, which are worst at night. +The disease may extend to the synovial membrane and be attended with +effusion into the joint, or it may erupt on the periosteal surface and +invade the skin, forming one or more sinuses. The further progress is +complicated by the occurrence of pyogenic infection leading to necrosis +of bone, in the knee-joint, for example, the patella or one of the +condyles of the femur or tibia, may furnish a sequestrum. In such cases, +anti-syphilitic treatment must be supplemented by operation for the +removal of the diseased tissues. In the knee, excision is rarely +necessary; but in the elbow it may be called for to obtain a movable +joint. + +In #inherited syphilis# the earliest joint affections are those in which +there is an effusion into the joint, especially the knee or elbow; and +in exceptional cases pyogenic infection may be superadded, and pus form +in the joint. + +In older children, a gummatous synovitis is met with of which the most +striking features are: its insidious development, its chronic course, +symmetrical distribution, freedom from pain, the free mobility of the +joint, its tendency to relapse, and its association with other +syphilitic stigmata, especially in the eyes. The knees are the joints +most frequently affected, and the condition usually yields readily to +anti-syphilitic treatment without impairment of function. + + +JOINT DISEASES ACCOMPANYING CERTAIN CONSTITUTIONAL CONDITIONS + +#Gout.#--_Arthritis Urica._--One of the manifestations of gout is that +certain joints are liable to attacks of inflammation associated with the +deposit of a chalk-like material composed of sodium biurate, chiefly in +the matrix of the articular cartilage, it may be in streaks or patches +towards the central area of the joint, or throughout the entire extent +of the cartilage, which appears as if it had been painted over with +plaster of Paris. As a result of this uratic infiltration, the cartilage +loses its vitality and crumbles away, leading to the formation of what +are known as gouty ulcers, and these may extend through the cartilage +and invade the bone. The deposit of urates in the synovial membrane is +attended with effusion into the joint and the formation of adhesions, +while in the ligaments and peri-articular structures it leads to the +formation of scar tissue. The metatarso-phalangeal joint of the great +toe, on one or on both sides, is that most frequently affected. The +disease is met with in men after middle life, and while common enough in +England and Ireland, is almost unknown in hospital practice in Scotland. + +The _clinical features_ are characteristic. There is a sudden onset of +excruciating pain, usually during the early hours of the morning, the +joint becomes swollen, red, and glistening, with engorgement of the +veins and some fever and disturbance of health and temper. In the course +of a week or ten days there is a gradual return to the normal. Such +attacks may recur only once a year or they may be more frequent; the +successive attacks tend to become less acute but last longer, and the +local phenomena persist, the joint remaining permanently swollen and +stiff. Masses of chalk form in and around the joint, and those in the +subcutaneous tissue may break through the skin, forming indolent ulcers +with exposure of the chalky masses (_tophi_). The hands may become +seriously crippled, especially when the tendon sheaths and bursae also +are affected; the crippling resembles that resulting from arthritis +deformans but it differs in not being symmetrical. + +The local _treatment_ consists in employing soothing applications and a +Bier's bandage for two or three hours twice daily while the symptoms are +acute; later, hot-air baths, massage, and exercises are indicated. It is +remarkable how completely even the most deformed joints may recover +their function. Dietetic and medicinal treatment must also be employed. + +#Chronic Rheumatism.#--This term is applied to a condition which +sometimes follows upon acute articular rheumatism in persons presenting +a family tendency to acute rheumatism or to inflammations of serous +membranes, and manifesting other evidence of the rheumatic taint, such +as chorea or rheumatic nodules. + +The changes in the joints involve almost exclusively the synovial +membrane and the ligaments; they consist in cellular infiltration and +exudation, resulting in the formation of new connective tissue which +encroaches on the cavity of the joint and gives rise to adhesions, and +by contracting causes stiffness and deformity. The articular cartilages +may subsequently be transformed into connective tissue, with consequent +fibrous ankylosis and obliteration of the joint. The bones are affected +only in so far as they undergo fatty atrophy from disuse of the limb, or +alteration in their configuration as a result of partial dislocation. +Osseous ankylosis may occur, especially in the small joints of the hand +and foot. + +The disease is generally poly-articular and may be met with in childhood +and youth as well as in adult life. In some cases pain is so severe that +the patient resists the least attempt at movement. In others, the +joints, although stiff, can be moved but exhibit pronounced crackings. +When there is much connective tissue formed in relation to the synovial +membrane, the joint is swollen, and as the muscles waste above and +below, the swelling is spindle-shaped. Subacute exacerbations occur from +time to time, with fever and aggravation of the local symptoms and +implication of other joints. After repeated recurrences, there is +ankylosis with deformity, the patient becoming a helpless cripple. On +account of the tendency to visceral complications, the tenure of life is +uncertain. + +From the nature of the disease, _treatment_ is for the most part +palliative. Salicylates are only of service during the exacerbations +attended with pyrexia. The application of soda fomentations, turpentine +cloths, or electric or hot-air baths may be useful. Improvement may +result from the general and local therapeutics available at such places +as Bath, Buxton, Harrogate, Strathpeffer, Wiesbaden, or Aix. In selected +cases, a certain measure of success has followed operative interference, +which consists in a modified excision. The deformities resulting from +chronic rheumatism are but little amenable to surgical treatment, and +forcible attempts to remedy stiffness or deformity are to be avoided. + +#Arthritis Deformans# (_Osteo-arthritis, Rheumatoid Arthritis, Rheumatic +Gout, Malum Senile, Traumatic or Mechanical Arthritis_).--Under the term +arthritis deformans, which was first employed by Virchow, it is +convenient to include a number of joint affections which have many +anatomical and clinical features in common. + +The disease is widely distributed in the animal kingdom, both in +domestic species and in wild animals in the natural state such as the +larger carnivora and the gorilla; evidence of it has also been found in +the bones of animals buried with prehistoric man. + +The morbid changes in the joints present a remarkable combination of +atrophy and degeneration on the one hand and overgrowth on the other, +indicating a profound disturbance of nutrition in the joint structures. +The nature of this disturbance and its etiology are imperfectly known. +By many writers it is believed to depend upon some form of +auto-intoxication, the toxins being absorbed from the gastro-intestinal +tract, and those who suffer are supposed to possess what has been called +an "arthritic diathesis." + +The localisation of the disease in a particular joint may be determined +by several factors, of which trauma appears to be the most important. +The condition is frequently observed to follow, either directly or after +an interval, upon a lesion which involves gross injury of the joint or +of one of the neighbouring bones. It occurs with greater frequency after +repeated minor injuries affecting the joint and its vicinity, such as +sprains and contusions, and particularly those sustained in laborious +occupations. This connection between trauma and arthritis deformans led +Arbuthnot Lane to apply to it the term _traumatic_ or _trade arthritis_. + +The traumatic or strain factor in the production of the disease may be +manifested in a less obvious fashion. In the lower extremity, for +example, _any condition which disturbs the static equilibrium of the +limb as a whole_ would appear to predispose to the disease in one or +other of the joints. The static equilibrium may be disturbed by such +deformities as flat-foot or knock-knee, and badly united fractures of +the lower extremity. In hallux valgus, the metatarso-phalangeal joint of +the great toe undergoes changes characteristic of arthritis deformans. + +A number of cases have been recorded in which arthritis deformans has +followed upon antecedent disease of the joint, such as pyogenic or +gonorrhoeal synovitis, upon repeated haemorrhages into the knee-joint in +bleeders, and in unreduced dislocations in which a new joint has been +established. + +[Illustration: FIG. 157.--Arthritis Deformans of Elbow, showing +destruction of articular surfaces and masses of new bone around the +articular margins. + +(Anatomical Museum, University of Edinburgh.)] + +Lastly, Poncet and other members of the Lyons school regard arthritis +deformans as due to an attenuated form of tuberculous infection, and +draw attention to the fact that a tuberculous family history is often +met with in the subjects of the disease. + +[Illustration: FIG. 158.--Arthritis Deformans of Knee, showing +eburnation and grooving of articular surfaces. + +(Anatomical Museum, University of Edinburgh.)] + +_Morbid Anatomy._--The commonest type is that in which the articular +surfaces undergo degenerative changes. The primary change involves the +articular cartilage, which becomes softened and fibrillated and is worn +away until the subjacent bone is exposed. If the bone is rarefied, the +enlarged cancellous spaces are opened into and an eroded and worm-eaten +appearance is brought about; with further use of the joint, the bone is +worn away, so that in a ball-and-socket joint like the hip, the head of +the femur and the acetabulum are markedly altered in size and shape. +More commonly, the bone exposed as a result of disappearance of the +cartilage is denser than normal, and under the influence of the +movements of the joint, becomes smooth and polished--a change described +as _eburnation_ of the articular surfaces (Fig. 158). In hinge-joints +such as the knee and elbow, the influence of movement is shown by a +series of parallel grooves corresponding to the lines of friction +(Fig. 158). + +[Illustration: FIG. 159.--Hypertrophied Fringes of Synovial Membrane in +Arthritis Deformans of Knee. + +(Museum of Royal College of Surgeons, Edinburgh.)] + +While these degenerative changes are gradually causing destruction of +the articular surfaces, reparative and hypertrophic changes are taking +place at the periphery. Along the line of the junction between the +cartilage and synovial membrane, the proliferation of tissue leads to +the formation of nodules or masses of cartilage--_ecchondroses_--which +are subsequently converted into bone (Fig. 157). Gross alterations in +the ends of the bone are thus brought about which can be recognised +clinically and in skiagrams, and which tend to restrict the normal range +of movement. The extension of the ossification into the synovial +reflection and capsular ligament adds a collar or "lip" of new bone, +known as "lipping" of the articular margins, and also into other +ligaments, insertions of tendons and intermuscular septa giving rise to +bony outgrowths or osteophytes not unlike those met with in the +neuro-arthropathies. + +Proliferative changes in the synovial membrane are attended with +increased vascularity and thickening of the membrane and an enlargement +of its villi and fringes. When the fatty fringes are developed to an +exaggerated degree, the condition is described as an _arborescent +lipoma_ (Fig. 159). Individual fringes may attain the size of a hazel +nut, and the fibro-fatty tissue of which they are composed may be +converted into cartilage and bone; such a body may remain attached by a +narrow pedicle or stalk, or this may be torn across and the body becomes +loose and, unless confined in a recess of the joint, it wanders about +and may become impacted between the articular surfaces. These changes in +the synovial membrane are often associated with an abundant exudate or +hydrops. These degenerative and hypertrophic changes, while usually +attended with marked restriction of movement and sometimes by "locking" +of the joint, practically never result in ankylosis. + +The _ankylosing type_ of chronic arthritis is fortunately much rarer +than those described above, and is chiefly met with in the joints of the +fingers and toes and in those of the vertebral column. The synovial +membrane proliferates, grows over the cartilage, and replaces it, and +when two such articular surfaces are in contact they tend to adhere, +thus obliterating the joint, cavity, and resulting in fibrous or bony +ankylosis. The changes progress slowly and, before they result in +ankylosis, various sub-luxations and dislocations may occur with +distortion and deformity which, in the case of the fingers, is extremely +disabling and unsightly (Fig. 160). + +_Clinical Features._--It is usually observed that in patients who are +still young the tendency is for the disease to advance with considerable +rapidity, so that in the course of months it may cause crippling of +several joints. The course of the disease as met with in persons past +middle life is more chronic; it begins insidiously, and many years may +pass before there is pronounced disability. The earliest symptom is +stiffness, especially in the morning after rest, which passes off +temporarily with use of the limb. As time goes on, the range of movement +becomes restricted, and crackings occur. This stage of the disease may +be prolonged indefinitely; if it progresses, stiffness becomes more +pronounced, certain movements are lost, others develop in abnormal +directions, and deformed attitudes add to the disablement. The disease +is compatible with long life, but not with any active occupation, hence +those of the hospital class who suffer from it tend to accumulate in +workhouse infirmaries. + +_Hydrops_ is most marked in the knee, and may affect also the adjacent +bursae. As the joint becomes distended with fluid, the ligaments are +stretched, the limb becomes weak and unstable, and the patient complains +of a feeling of weight, of insecurity, and of tiredness. Pain is +occasional and evanescent, and is usually the result of some extra +exertion, or exposure to cold and wet. This form of the disease is +extremely chronic, and may last for an indefinite number of years. It is +to be diagnosed from the other forms of hydrops already considered--the +purely traumatic, the pyogenic, gonorrhoeal, tuberculous, and +syphilitic--and from that associated with Charcot's disease. + +_Hypertrophied fringes and pedunculated or loose bodies_ often co-exist +with hydrops, and give rise to characteristic clinical features, +particularly in the knee. The fringes, especially when they assume the +type of the arborescent lipoma, project into the cavity of the joint, +filling up its recesses and distending its capsule so that the joint is +swollen and slightly flexed. Pain is not a prominent feature, and the +patient may walk fairly well. On grasping the joint while it is being +actively flexed and extended, the fringes may be felt moving under the +fingers. Symptoms from impaction of a loose body are exceptional. + +[Illustration: FIG. 160.--Arthritis Deformans of Hands, showing +symmetry of lesions, ulnar deviation of fingers, and nodular thickening +at inter-phalangeal joints.] + +_The dry form of arthritis deformans_, although specially common in the +knee, is met with in other joints, either as a mon-articular or +poly-articular disease; and it is also met with in the joints of the +spine and of the fingers as well as in the temporo-mandibular joint. In +the joints of the fingers the disease is remarkably symmetrical, and +tends to assume a nodular type (Heberden's nodes) (Fig. 160); in younger +subjects it assumes a more painful and progressive fusiform type +(Fig. 161). In the larger joints the subjective symptoms usually precede + +any palpable evidence of disease, the patient complaining of stiffness, +crackings, and aching, aggravated by changes in the weather. The +roughness due to fibrillation of the articular cartilages causes coarse +friction on moving the joint, or, in the knee, on moving the patella on +the condyles of the femur. It may be months or even years before the +lipping and other hypertrophic changes in the ends of the bones are +recognisable, and before the joint assumes the deformed features which +the name of the disease suggests. + +The capsular ligament, except in hydrops, is the seat of +connective-tissue overgrowth, and tends to become contracted and rigid. +Intra-articular ligaments, such as the ligamentum teres in the hip, are +usually worn away and disappear. The surrounding muscles undergo +atrophy, tendons become adherent to their sheaths and may be ossified, +and the sheaths of nerves may be involved by the cicatricial changes in +the surrounding tissues. + +_The X-ray appearances of arthritis deformans_ necessarily vary with the +type of the disease and the joint affected; in the joints of the fingers +there is a narrowing of the spaces between the articular ends of the +bones as a result of absorption of the articular cartilage, and +rarefaction of the cancellous tissue in the vicinity of the joints; in +the larger joints there is "lipping" of the articular margins, +osteophytes, and other evidence of abnormal ossification in and around +the joint. Eburnation of the articular surfaces is shown by increase in +the density of the shadow of the bone in the areas affected. + +[Illustration: FIG. 161.--Arthritis Deformans affecting several +Joints, in a boy aet. 10. + +(Dr. Dickson's case.)] + +_Treatment._--Treatment is for the most part limited to the relief of +symptoms. On no account should the affected joints be kept at rest by +means of splints or other apparatus. Active movements and exercises of +all kinds are to be persevered with. When pain is a prominent feature, +it may be relieved either by douches of iodine and hot water (tincture +of iodine 1 oz. to the quart), or by the application of lint saturated +with a lotion made up of chloral hydrate, gr. v, glycerin [dram]j, water +[ounce]j, and covered with oil-silk. Strain and over-use of the joint +and sudden changes of temperature are to be avoided. The induction of +hyperaemia by means of massage, the elastic bandage, and hot-air baths is +often of service. Operative interference is indicated when the disease +is of a severe type, when it is mon-articular, and when the general +condition of the patient is otherwise favourable. Excision has been +practised with success in the hip, knee, elbow, and temporo-mandibular +joints. Limitation of movement and locking at the hip-joint when due to +new bone round the edge of the acetabulum may be greatly relieved by +removal of the bone--a procedure known as _cheilotomy_. Loose bodies and +hypertrophied fringes if causing symptoms may also be removed by +operation. + +When stiffness and grating on movement are prominent features we have +found the injection of from half to one ounce of sterilised white +vaseline afford decided relief. + +The patient should be nourished well, and there need be no restriction +in the diet such as is required in gouty patients, so long as the +digestion is not impaired. Benefit is also derived from the +administration of cod-liver oil, and of tonics, such as strychnin, +arsenic, and iron, and in some cases of iodide of potassium. Luff +recommends the administration over long periods of guaiacol carbonate, +in cachets beginning with doses of 5-10 grs. and increased to 15-20 grs. +thrice daily. A course of treatment at one of the reputed spas--Aix, +Bath, Buxton, Gastein, Harrogate, Strathpeffer, Wiesbaden, Wildbad--is +often beneficial. + +In some cases benefit has followed the prolonged internal administration +of liquid paraffin. + +On the assumption that the condition is the result of an +auto-intoxication from the intestinal tract, saline purges and +irrigation of the colon are indicated, and Arbuthnot Lane claims to have +brought about improvement by short-circuiting or by resecting the colon. + +Residence in a warm and dry climate, with an open-air life, has been +known to arrest the disease when other measures have failed to give +relief. + +The application of radium and the ingestion of radio-active waters have +also been recommended. + +#Haemophilic# or #Bleeder's Joint#.--This is a rare but characteristic +affection met with chiefly in the knee-joint of boys who are the +subjects of haemophilia. After some trivial injury, or even without +apparent cause, a haemorrhage takes place into the joint. The joint is +tensely swollen, cannot be completely extended, and is so painful that +the patient is obliged to lie up. The temperature is often raised (101 o +to 102 o F.), especially if there are also haemorrhages elsewhere. The +blood in the joint is slowly re-absorbed, and by the end of a fortnight +or so, the symptoms completely disappear. As a rule these attacks are +repeated; the pain attending them diminishes, but the joint becomes the +seat of permanent changes: the synovial membrane is thickened, +abnormally vascular, and coloured brown from the deposit of blood +pigment; on its surface, and in parts of the articular cartilage, there +is a deposit of rust-coloured fibrin; there may be extensive adhesions, +and in some cases changes occur like those observed in arthritis +deformans with erosion and ulceration of the cartilage and a form of dry +caries of the articular surfaces, which may terminate in ankylosis. + +As the swelling of the joint is associated with wasting of the muscles, +with stiffness, and with flexion, the condition closely resembles +tuberculous disease of the synovial membrane. From errors in diagnosis +such joints have been operated upon, with disastrous results due to +haemorrhage. + +The treatment of a recent haemorrhage consists in securing absolute rest +and applying elastic compression. The introduction of blood-serum (10-15 +c.c.) into a vein may assist in arresting the haemorrhage; +anti-diphtheritic serum is that most readily obtainable. + +After an interval, measures should be adopted to promote the absorption +of blood and to prevent stiffness and flexion; these include massage, +movements, and extension with weight and pulley. + + +JOINT DISEASES ASSOCIATED WITH LESIONS OF THE NERVOUS SYSTEM: +NEURO-ARTHROPATHIES + +_In Lesions of Peripheral Nerves._--In the hand, and more rarely in the +foot, when one or other of the main nerve-trunks has been divided or +compressed, the joints may become swollen and painful and afterwards +become stiff and deformed. Bony ankylosis has been observed. + +_In Affections of the Spinal Medulla._--In myelitis, progressive +muscular atrophy, poliomyelitis, insular sclerosis, and in traumatic +lesions, joint affections are occasionally met with. + +The occurrence of joint lesions in _locomotor ataxia_ (tabes dorsalis) +was first described by Charcot in 1868--hence the term "Charcot's +disease" applied to them. Although they usually develop in the ataxic +stage, one or more years after the initial spinal symptoms, they may +appear before there is any evidence of tabes. The onset is frequently +determined by some injury. The joints of the lower extremity are most +commonly affected, and the disease is bilateral in a considerable +proportion of cases--both knees or both hips, for instance, being +implicated. + +Among the theories suggested in explanation of these arthropathies the +most recent is that by Babinski and Barre, which traces the condition to +vascular lesions of a syphilitic type in the articular arteries. + +The first symptom is usually a swelling of the joint and its vicinity. +There is no redness or heat and no pain on movement. The peri-articular +swelling, unlike ordinary oedema, scarcely pits even on firm pressure. + +[Illustration: FIG. 162.--Bones of Knee-joint in advanced stage of +Charcot's Disease. The medial part of the head of the tibia has +disappeared. + +(Anatomical Museum, University of Edinburgh).] + +In mild cases this condition of affairs may persist for months; in +severe cases destructive changes ensue with remarkable rapidity. The +joint becomes enormously swollen, loses its normal contour, and the ends +of the bones become irregularly deformed (Fig. 162). Sometimes, and +especially in the knee, the clinical features are those of an enormous +hydrops with fibrinous and other loose bodies and hypertrophied +fringes--and great oedema of the peri-articular tissues (Fig. 163). The +joint is wobbly or flail-like from stretching and destruction of the +controlling ligaments, and is devoid of sensation. In other cases, +wearing down and total disappearance of the ends of the bones is the +prominent feature, attended with flail-like movements and with coarse +grating. Dislocation is observed chiefly at the hip, and is rather a +gross displacement with unnatural mobility than a typical dislocation, +and it is usually possible to move the bones freely upon one another and +to reduce the displacement. A striking feature is the extensive +formation of new bone in the capsular ligament and surrounding muscles. +The enormous swelling and its rapid development may suggest the growth +of a malignant tumour. The most useful factor in diagnosis is the entire +absence of pain, of tenderness, and of common sensibility. The freedom +with which a tabetic patient will allow his disorganised joint to be +handled requires to be seen to be appreciated. + +[Illustration: FIG. 163.--Charcot's Disease of Left Knee. The joint is +distended with fluid and the whole limb is oedematous.] + +The rapidity of the destructive changes in certain cases of tabes, and +the entire absence of joint lesions in others, would favour the view +that special parts of the spinal medulla must be implicated in the +former group. + +In _syringomyelia_, joint affections (gliomatous arthropathies) are more +frequent than in tabes, and they usually involve the upper extremity in +correspondence with the seat of the spinal lesion, which usually affects +the lower cervical and upper thoracic segments. Except that the joint +disease is seldom symmetrical, it closely resembles the arthropathy of +tabes. The completeness of the analgesia of the articular structures +and of the overlying soft parts is illustrated by the fact that in one +case the patient himself was in the habit of letting out the fluid from +his elbow with the aid of a pair of scissors, and that in another the +joint was painlessly excised without an anaesthetic. + +[Illustration: FIG. 164.--Charcot's Disease of both Ankles: front view. +Man, aet. 32.] + +The disease may become arrested or may go on to complete +disorganisation; suppuration may ensue from infection through a breach +of the surface, and in rare cases the joint has become the seat of +tuberculosis. + +[Illustration: FIG. 165.--Charcot's Disease of both Ankles: back view. +Man, aet. 32.] + +_Treatment_, in addition to that of the nerve lesion underlying the +arthropathy, consists in supporting and protecting the joint by means of +bandages, splints, and other apparatus. In the lower extremity, the use +of crutches is helpful in taking the strain off the affected limb. When +there is much distension of the joint, considerable relief follows upon +withdrawal of fluid. The best possible result being rigid ankylosis in a +good position, it may be advisable to bring this about artificially by +arthrodesis or resection. Operation is indicated when only one joint is +affected and when the cord lesion is such as will permit of the patient +using the limb. The wounds heal well, but the victims of tabes are +unfavourable subjects for operative interference, on account of their +liability to intercurrent complications. When the limb is quite useless, +amputation may be the best course. + +_In cerebral lesions_ attended with hemiplegia, joint affections, +characterised by evanescent pain, redness, and swelling, are +occasionally met with. The secondary changes in joints which are the +seat of paralytic contracture are considered with the surgery of the +Extremities. + +In cases of _hysteria_ and other _functional affections of the +nervous system_, an intermittent neuropathic hydrops has been +observed--especially in the knee. Without apparent cause, the joint +fills with fluid and its movements become restricted, and after from two +to eight days the swelling subsides and the joint returns to normal. A +remarkable feature of the condition is that the effusion into the joint +recurs at regular intervals, it may be over a period of years. Psychic +conditions have been known to induce attacks, and sometimes to abort +them or even to cause their disappearance. Hence it has been recommended +that treatment by suggestion should be employed along with tonic doses +of quinine and arsenic. + + +HYSTERICAL OR MIMETIC JOINT AFFECTIONS + +Under this heading, Sir Benjamin Brodie, in 1822, described an affection +of joints, characterised by the prominence of subjective symptoms and +the absence of pathological changes. Although most frequently met with +in young women with an impressionable nervous system, and especially +among those in good social circumstances, it occurs occasionally in men. +The onset may be referred to injury or exposure to cold, or may be +associated with some disturbance of the emotions or of the generative +organs; or the condition may be an involuntary imitation of the symptoms +of organic joint disease presented by a relative or friend. + +It is characteristic that the symptoms develop abruptly without +satisfactory cause, that they are exaggerated and wanting in harmony +with one another, and that they do not correspond with the features of +any of the known forms of organic disease. In some cases the only +complaint is of severe pain; more often this is associated with +excessive tenderness and with impairment of the functions of the joint. +On examination the joint presents a normal appearance, but the skin +over it is remarkably sensitive. A light touch is more likely to excite +pain than deep and firm pressure. Stiffness is a variable feature--in +some cases amounting to absolute rigidity, so that no ordinary force +will elicit movement. It is characteristic of this, as of other +neuroses, that the symptoms come and go without sufficient cause. When +the patient's attention is diverted, the pain and stiffness may +disappear. There is no actual swelling of the joint, although there may +be an appearance of this from wasting of the muscles above and below. If +the joint is kept rigid for long periods, secondary contracture may +occur--in the knee with flexion, in the hip with flexion and adduction. + +The _diagnosis_ is often a matter of considerable difficulty, and the +condition is liable to be mistaken for such organic lesions as a +tuberculous or pyogenic focus in the bone close to the joint. + +The greatest difficulty is met with in the knee and hip, where the +condition may closely simulate tuberculous disease. The use of the +Rontgen rays, or examination of the joint under anaesthesia, is helpful. + +The _local treatment_ consists chiefly in improving the nutrition of the +affected limb by means of massage, exercises, baths, and electricity. +Splints are to be avoided. In refractory cases, benefit may follow the +application of blisters or of Corrigan's button. The general condition +of the patient must be treated on the same lines as in other neuroses. +The Weir-Mitchell treatment may have to be employed in obstinate cases, +the patient being secluded from her friends and placed in charge of a +nurse. Complete recovery is the rule, but when the muscles are weak and +wasted from prolonged disuse, a considerable time may elapse before the +limb returns to normal. + + +TUMOURS AND CYSTS + +New growths taking origin in the synovial membrane are rare, and are not +usually diagnosed before operation. They are attended with exudation +into the joint, and in the case of _sarcoma_ the fluid is usually +blood-stained. If the tumour projects in a polypoidal manner into the +joint, it may cause symptoms of loose body. One or two cases have been +recorded in which a _cartilaginous tumour_ growing from the synovial +membrane has erupted through the joint capsule and infiltrated the +adjoining muscles. _Multiple cartilaginous tumours_ forming loose bodies +are described on p. 544. + +_Cysts of joints_ constitute an ill-defined group which includes ganglia +formed in relation to the capsular ligament. Cystic distension of bursae +which communicate with the joint is most often met with in the region of +the knee in cases of long-standing hydrops. It was suggested by Morrant +Baker that cystic swellings may result from the hernial protrusion of +the synovial membrane between the stretched fibres of the capsular +ligament, and the name "Baker's cysts" has been applied to these. + +In the majority of cases, cysts in relation to joints give rise to +little inconvenience and may be left alone. If interfered with at all, +they should be excised. + + +LOOSE BODIES + +It is convenient to describe the varieties of loose bodies under two +heads: those composed of fibrin, and those composed of organised +connective tissue. + +#Fibrinous Loose Bodies# (Corpora oryzoidea).--These are homogeneous or +concentrically laminated masses of fibrin, sometimes resembling rice +grains, melon seeds, or adhesive wafers, sometimes quite irregular in +shape. Usually they are present in large numbers, but sometimes there is +only one, and it may attain considerable dimensions. They are not +peculiar to joints, for they are met with in tendon sheaths and bursae, +and their origin from synovial membrane may be accepted as proved. They +occur in tuberculosis, arthritis deformans, and in Charcot's disease, +and their presence is almost invariably associated with an effusion of +fluid into the joint. While they may result from the coagulation of +fibrin-forming elements in the exudate, their occurrence in tuberculous +hydrops would appear to be the result of coagulation necrosis, or of +fibrinous degeneration of the surface layer of the diseased synovial +membrane. However formed, their shape is the result of mechanical +influences, and especially of the movement of the joint. + +_Clinically_, loose bodies composed of fibrin constitute an unimportant +addition to the features of the disease with which they are associated. +They never give rise to the classical symptoms associated with impaction +of a loose body between the articular surfaces. Their presence may be +recognised, especially in the knee, by the crepitating sensation +imparted to the fingers of the hand grasping the joint while it is +flexed and extended by the patient. + +The _treatment_ is directed towards the disease underlying the hydrops. +If it is desired to empty the joint, this is best done by open +incision. + +[Illustration: FIG. 166.--Radiogram of Multiple Loose Bodies in +Knee-joint and Semi-membranosus Bursa in a man aet. 38. + +(Mr. J. W. Dowden's case.)] + +#Bodies composed of Organised Connective Tissue.#--These are +comparatively common in joints that are already the seat of some chronic +disease, such as arthritis deformans, Charcot's arthropathy, or synovial +tuberculosis. They take origin almost exclusively from an erratic +overgrowth of the fringes of the synovial membrane, and may consist +entirely of fat, the arborescent lipoma (Fig. 159) being the most +pronounced example of this variety. Fibrous tissue or cartilage may +form in one or more of the fatty fringes and give rise to hard nodular +masses, which may attain a considerable size, and in course of time may +undergo ossification. + +Like other hypertrophies on a free surface, they tend to become +pedunculated, and so acquire a limited range of movement. The pedicle +may give way and the body become free. In this condition it may wander +about the joint, or lie snugly in one of its recesses until disturbed by +some sudden movement. A loose body free in a joint is capable of growth, +deriving the necessary nutriment from the surrounding fluid. The size +and number of the bodies vary widely. Single specimens have been known +to attain the size of the patella. The smaller varieties may number +considerably over a hundred. + +[Illustration: FIG. 167.--Loose Body from Knee-joint of man aet. 25. +Natural size. + +a = Convex surface. b = Concave surface.] + +In arthritis deformans a rarer type of loose body is met with, a portion +of the lipping of one of the articular margins being detached by injury. +In Charcot's disease, bodies composed of bone are formed in relation to +the capsular and other ligaments, and may be made to grate upon one +another. + +The _clinical features_ in this group are mainly those of the disease +which has given rise to the loose bodies, and it is exceptional to meet +with symptoms from impaction of the body between the articular surfaces. +Treatment is to be directed towards the primary disease in the joint, as +well as to the removal of the loose bodies. + +[Illustration: FIG. 168.--Multiple partially ossified Chondromas of +Synovial Membrane, from Shoulder-joint, the seat of arthritis deformans, +from a man aet. 35.] + +_Loose Bodies in Joints which are otherwise healthy._--It is in joints +otherwise healthy that loose bodies causing the classical symptoms and +calling for operative treatment are most frequently met with. They occur +chiefly in the knee and elbow of healthy males under the age of thirty. +The complaint may be of vague pains, of occasional cracking on moving +the joint, or of impairment of function--usually an inability to extend +or flex the joint completely. In many cases a clear account is given of +the symptoms which arise when the body is impacted between the articular +surfaces, namely, sudden onset of intense sickening pain, loss of power +in the limb and locking of the joint, followed by effusion and other +accompaniments of a severe sprain. On some particular movement, the +body is disengaged, the locking disappears, and recovery takes place. +Attacks of this kind may recur at irregular intervals, during a period +of many years. On examining the joint, it is usually found to contain +fluid, and there may be points of special tenderness corresponding to +the ligaments that have been overstretched. In cases in which there has +been recurrent attacks of locking, the ligaments become slack, the joint +is wobbly, and the quadriceps is wasted. The patient himself, or the +surgeon, may discover the loose body and feel it roll beneath his +fingers, especially if it is lodged in the supra-patellar pouch in the +knee, or on one or other side of the olecranon in the elbow. In most +instances the patient has carefully observed his own symptoms, and is +aware not only of the existence of the loose body, but of its erratic +appearance at different parts of the joint. This feature serves to +differentiate the lesions from a torn medial meniscus in which the pain +and tenderness are always in the same spot. As the body usually contains +bone, it is recognisable in a skiagram. + +[Illustration: FIG. 169.--Multiple Cartilaginous Loose Bodies from +Knee-joint.] + +There are two methods of _removing the body_; the first and simpler +method is applicable when the body can be palpated, usually in the +supra-patellar pouch; it is preferably transfixed by a needle and can +then be removed through a small incision; otherwise, the joint must be +freely opened and explored, firstly to find the body and further to +remove it. + +The characters of this type of loose body are remarkably constant. It is +usually solitary, about the size of a bean or almond, concavo-convex in +shape, the convex aspect being smooth like an articular surface, the +concave aspect uneven and nodulated and showing reparative changes, +healing over of the raw surface, and the new formation of fibrous +tissue, hyaline cartilage and bone, the necessary nutriment being +derived from the synovial fluid (Fig. 167). The body is sometimes found +to be lodged in a defect or excavation in one of the articular surfaces, +usually the medial condyle of the femur, from which it is readily +shelled out by means of an elevator. It presents on section a layer of +articular cartilage on the convex aspect and a variable thickness of +spongy bone beneath this. + +The origin of these bodies is one of the most debated questions in +surgical pathology; they obviously consist of a portion of the articular +surface of one of the bones, but how this is detached still remains a +mystery; some maintain that it is purely traumatic; Konig regards them +as portions of the articular surface which have been detached by a +morbid process which he calls "osteochondritis dessicans." + +_Multiple Chondromas and Osteomas of the Synovial Membrane._--In this +rare type of loose body, the surface of the synovial membrane is studded +with small sessile or pedunculated tumours composed of pure hyaline +cartilage, or of bone, or of transition stages between cartilage and +bone. They are pearly white in colour, pitted and nodular on the +surface, rarely larger than a pea, although when compressed they may +cake into masses of considerable size. With the movements of the joint +many of the tumours become detached and lie in the serous exudate +excited by their presence. They are found also in the diverticula of the +synovial membrane, in the shoulder in the downward prolongation along +the tendon of the biceps, in the hip in the bursal extension beneath the +psoas. + +The patient complains of increasing disability of the limb, movements of +the joint becoming more and more restricted and painful. There is +swelling corresponding to the distended capsule of the joint, and on +palpation the bodies moving under the fingers yield a sensation as of +grains of rice shifting in a bag. If the bodies are so numerous as to be +tightly packed together, the impression is that of a plastic mass having +the shape of the synovial sac. The stiffness and the cracking on +movement may suggest arthritis deformans, but the X-ray appearances make +the diagnosis an easy one. We have observed two cases of this affection +in the knee-joint of adult women, one in the shoulder-joint of an adult +male (Fig. 168), and Caird has observed one in the hip. The treatment +consists in opening the joint by free incision and removing the bodies. + +_Displacement of the menisci_ of the knee is referred to with injuries +of that joint. + + + + +INDEX + + + Abdominal aneurysm, 313 + aorta, compression of, 269 + embolus of, 93 + + Abscess, 46 + acute circumscribed, 46 + of bone, 448 + Brodie's, 448 + chronic, 139 + cold, 139 + embolic, 66 + formation of, 47 + Hilton's method of opening, 50 + pointing of, 48 + pyaemic, 287 + residual, 141 + of skin, multiple, 382 + stitch, 51 + treatment of, 49 + tuberculous, 139, 141 + peri-articular, 514, 517 + + Achillo-bursitis, 432 + + Achillo-dynia, 422 + + Acidosis, 251 + + Acromion bursa, 429 + + Actinomycosis, 126 + + Active hyperaemia, 39 + + Acupuncture in aneurysm, 308 + + Acute arthritis of infants, 440 + necrosis of bone, 439 + + Adductor longus muscle, rupture of, 408 + + Adenoma, 202 + malignant, 209 + sebaceous, 393 + of skin, 393 + varieties of, 202 + + Adiposus dolorosa, 186 + + Aerobes, 19 + + Air embolism, 265 + hunger, 276 + + Albumosuria, 195, 474, 492 + + Aleppo boil, 129 + + Alexins, 22 + + Ambrine, 13, 238 + + Amputation neuroma, 344 + + Anaerobes, 19 + + Anaesthesia, after nerve injuries, 347 + + Analgesia, 347 + + Anaphylaxis, 23 + + Anatomical tubercle, 134 + + Anatomy. _See_ Surgical Anatomy + + Anel's operation for aneurysm, 307 + + Aneurysm, 300. _See also_ Individual Arteries + abdominal, 313 + acupuncture in, 308 + amputation in, 310 + by anastomosis, 298 + Anel's operation for, 307, 310 + arterio-venous, 263 + axillary, 318 + of bone, 498 + brachial, 318 + Brasdor's operation for, 308 + cirsoid, 299 + Colt's method of wiring for, 309 + compression for, 308 + consolidated, 304, 305 + differential diagnosis of, 305 + diffused, 302 + digital compression in, 308 + excision of, 307 + of forearm and hand, 318 + fusiform, 301 + gelatin injections in, 309 + Hunter's operation for, 307 + iliac, 318 + of individual arteries, 312 + inguinal, 318 + innominate, 314 + intracranial, 316 + of leg and foot, 320 + ligation of artery for, 307 + Macewen's acupuncture for, 308 + Matas' operation for, 307 + Moore-Corradi method, 308 + natural cure of, 305 + old operation for, 307 + of ophthalmic artery, 317 + orbital, 317 + pathological, 301 + pulse in, 304 + rupture of, 306 + sacculated, 302 + suppuration in, 306 + thoracic, 312 + traumatic, 263, 310 + treatment of, 306 + varicose, 311 + Wardrop's operation for, 308 + X-rays in diagnosis of, 304 + + Aneurysmal varix, 311, 316, 318, 319, 320 + + Angioma, 284 + arterial, 299 + capillary, 294 + cavernous, 297 + racemosum venosum, 287 + venous, 294 + + Angio-neurotic oedema, 348 + sarcoma, 199 + + Angler's elbow, 406 + + Ankle, cellulitis of, 58 + + Ankylosis of joints, 503. _See also_ Individual Joints + + Anoci-association, 253 + + Anthracaemia, 121 + + Anthrax, 119 + + Anti-bacterial sera, 23 + -diphtheritic serum, 111 + -streptococcic serum, 23, 109 + -tetanic serum, 117 + + Antibodies, 22 + + Antigens, 22 + + Antiseptics, 242 + + Antitoxic sera, 23 + + Antitoxins, 22 + + Antivenin, 132 + + Aorta, abdominal, compression of, 269 + aneurysm of, 313 + embolism of, 93 + ligation of, 314 + pulsating, 305, 314 + + Arborescent lipoma, 423 + + Arseno-billon, 163 + + Arteries, anatomy of, 258 + compression of individual, 269 + contusion of, 260 + digital compression of, 269 + gangrene following ligation of, 94 + gunshot wounds of, 263 + + Arteries, ligation of, for aneurysm, 307 + punctured wounds of, 262 + repair of, 266, 268 + rupture of, 260 + wounds of, 261, 262 + + Arterio-sclerosis, 282 + + Arterio-venous aneurysm, 310 + + Arteritis, varieties of, 282 + + Arthritis, 501. _See also_ Individual Joints + acute, 506 + of infants, 440 + deformans, 524 + gonococcal, 510 + neuropathic, 532 + ossificans, 503 + pneumococcal, 509 + pyogenic, 506 + rheumatic, 523 + rheumatoid, 524 + septic, 506 + scarlatinal, 508 + trade, 525 + traumatic, 524 + tuberculous, 512 + urica, 522 + + Arthrolysis, 505 + + Arthropathies, 532 + gliomatous, 534 + + Arthroplasty, 505 + + Articular caries, 502, 514 + + Artificial hyperaemia, 39 + + Ascites, chylous, 325 + + Asepsis, 18 + + Asphyxia, local, 97 + traumatic, 254 + + Atheroma, 283 + + Avulsion of nerves, 375 + of tendons, 411 + + Axilla, cellulitis of, 58 + hygroma of, 328 + + Axillary aneurysm, 318 + artery, embolus of, 93 + lymph glands, 336 + nerve, injuries of, 363 + + + Bacilli, 19 + + Bacillus aerogenes capsulatus, 99 + anthracis, 119 + coli communis, 27 + diphtheriae 109 + drum-stick, 112 + of Ducrey, 154 + of glanders, 123 + Klebs-Loffler, 109 + of malignant oedema, 101 + mallei, 123 + pyocyaneus, 29 + of soft sore, 154 + of tetanus, 112 + tubercle, 133 + typhosus, 29, 452 + + Bacteria, death of, 21 + general characters of, 18 + pathogenic properties of, 19 + pyogenic, 24, 29 + + Bacterial intoxication, 21 + + Bacteriology, surgical, 17 + + Baker's cysts, 539 + + Bazin's disease, 74, 169 + + Beck's paste in sinuses, 145 + + Bed-sores, 73, 103 + + Bence-Jones on albumosuria, 195, 474, 492 + + Biceps, bursa under, 430 + dislocation of long tendon of, 409 + rupture of, 407 + + Bier's artificial hyperaemia, 38 + + B.I.P.P., 143 + + Birth palsies, 362 + + Biskra button, 129 + + Bismuth gauze, 247 + injections in sinuses, 145 + + Bites of animals, 223 + + Black eye, 219 + + Bleeder's joint, 531 + + Bleeders, 277 + bruises in, 218 + + Blisters, 376 + purulent, 55 + + Blocking of nerves for shock, 252 + + Blood, count, 30 + cysts, 214, 220 + transfusion of, 11, 253 + + Blood vessels. _See_ Arteries and Veins + + Bloodless state, treatment of, 276 + + Blood letting, general, 42 + + Boil, 379 + Aleppo, 129 + Delhi, 129 + + Bone. _See also_ Individual Bones + abscess of, 448 + aneurysm of, 498 + angioma of, 491 + atrophy of, 479 + bacterial diseases of, 438 + Brodie's abscess of, 448 + cancer of, secondary, 499 + caries of, 437, 438 + changes in ulcers of leg, 79 + chondroma of, 487 + cysts of, 477, 500 + diseases of, 434 + due to staphylococcus aureus, 438 + endothelioma of, 492 + exostoses of, 191, 481 + fibroma of, 491 + fragility of, 479 + grafting, 16, 436 + gumma of, 464 + hydatid disease of, 467 + hyperostosis, 435, 464 + hypertrophic pulmonary osteo-arthropathy, 480 + hypertrophy of, 435 + lipoma of, 491 + lipping of, 527 + malacia of, 473 + marrow, function of, 434 + myeloma of, 491 + myxoma of, 491 + necrosis of, 438 + neuropathic atrophy of, 479 + osteoma of, 481 + osteomalacia of, 473 + osteomyelitis of, 65, 437, 438, 451, 453, 473 + fibrosa, 476 + osteoporosis of, 437 + osteopsathyrosis, 479 + ostitis deformans, 474 + Paget's disease of, 474 + periosteum, function of, 435 + periostitis, 437 + pulsating haematoma of, 498 + pyogenic diseases of, 438 + regeneration of, 436 + rickety affections of, 468 + sarcoma of, 492 + sclerosis of, 435 + scurvy affecting, 473 + secondary tumours of, 499 + surgical anatomy of, 434 + staphylococcal diseases of, 438 + syphilitic diseases of, 461, 465 + transplantation of, 436 + tuberculous diseases of, 454 + tumours of, 480 + malignant, 492, 499 + metastatic, 499 + thyreoid, 500 + typhoid, infection of, 452 + X-ray appearances in diseases of, 445, 455, 485, 491, 496 + + Bovine tuberculosis, 136 + + Brachial aneurysm, 318 + artery, embolus of, 93 + compression of, 269 + birth-paralysis, 362 + fibrositis, 413 + neuralgia, 371 + plexus, lesions of, 360 + + Brain, joint affections in lesions of, 537 + syphilitic lesions of, 161 + + Branchial dermoids, 211 + + Brasdor's operation for aneurysm, 308 + + Brodie's abscess, 448 + + Bruises, 218 + + Bubo, 329 + bullet, 153 + of soft sores, 155 + + Bullet bubo, 153 + + Bullets, embedded, 231 + varieties of, 230 + + Burnol, 238 + + Burns, 233 + classification, of, 234 + electrical, 239 + pathology of, 233 + by X-rays, 239 + + Bursae. _See also_ Individual Bursae + adventitious, 426 + affections of, 426 + individual, 428 + diseases of, 426, 428 + haematoma of, 426 + hydrops of, 427 + hygroma of, 423 + inflammation of, 426 + injuries of, 426 + loose bodies in, 427 + syphilis of, 428 + tuberculosis of, 428 + tumours of, 427, 428 + + + Cachexia, cancerous, 207 + + Calcanean bursa, 432 + + Calcification in arteries, 282 + in muscles, 416 + in tuberculosis, 136 + + Callosities, 376 + + Callous ulcers, 79, 84 + + Cancer, 202 + arsenic, 395 + of bone, 499 + cachexia in, 207 + chimney-sweep's, 395 + colloid, 210 + columnar epithelial, 209 + contagiousness of, 205 + cystic, 210 + definition of, 202 + degeneration of, 205 + encephaloid, 210 + _en cuirasse_, 204 + glandular, 210 + glandular infection in, 203 + increase of, 207 + of lymph glands, 340 + medullary, 210 + melanotic, 210, 341, 397 + paraffin, 395 + pigmented, 210 + radium treatment of, 208 + rodent, 210, 395 + scirrhous, 210 + of skin, 394 + spread of, 204 + squamous epithelial, 208 + ulceration of, 205 + varieties of, 208 + X-ray, 208 + + Cancrum oris, 102 + + Cantharides plaster, 42 + + Capillaries, anatomy of, 258 + + Capillary angioma, 294 + loops, 3 + + Carbolic gangrene, 95 + + Carbon-dioxide snow, 297 + + Carbuncle, 380 + + Carcinoma. _See_ Cancer + + Caries, 437, 438 + of articular surfaces, 502, 514 + sicca, 438 + syphilitic, 462 + tuberculous, 455 + + Carotid aneurysm, 314 + artery, compression of, 269 + tubercle, 269 + + Carpal ganglion, 214 + + Carron oil, 238 + + Cartilage, grafting of, 16 + repair of, 7 + ulceration of, 502, 514 + + Cartilaginous exostosis, 191, 481 + + Caseation in tuberculosis, 136 + + Catalepsy, 116 + + Catgut, infection by, 51 + preparation of, 245 + + Cautery in haemorrhage, 271 + + Cavernous angioma, 298 + lymphangioma, 327 + + Cellulitis, 52 + in different situations, 58 + diffuse, 52 + + Cephalic or Kopf tetanus, 116 + + Cerebro-spinal meningitis, 115 + + Cervical adenitis, 332 + rib, 360 + + Chalk stones in gouty joints, 523 + + Chancre, concealed, 152, 153, 157 + erratic, 153 + extra-genital, 153 + hard, 151 + meatal, 152 + multiple, 152 + relapsing false indurated, 172 + soft, 154 + urethral, 152 + + Chancroid, 154 + + Charcoal poultice, 84 + + Charcot's disease, 533 + + Cheloid. _See_ Keloid + + Chemiotaxis, 32 + + Chigoe, 130 + + Chilblain, 378 + + Chimney-sweep's cancer, 395 + + Chloroma, 200 + + Chondroma, 189, 487 + multiple, 544 + + Chondromatosis, 488 + + Chondro-sarcoma, 189, 200, 487 + + Chordoma, 200 + + Choroiditis, syphilitic, 177 + + Chylorrhoea, 325 + + Chylo-thorax, 325 + + Chylous ascites, 325 + + Cicatrices, varieties of, 400 + + Cicatricial contraction, 4 + tissue, 4 + + Circumflex nerve. _See_ Axillary Nerve + + Cirsoid aneurysm, 299 + + Claw-hand, 369 + + Cloacae in bone, 443 + + Cocci, 18 + + Coeliac artery, aneurysm of, 313 + + Coley's fluid, 201 + + Collapse, 254 + + Collateral circulation, 267 + + Colles' law, 178 + + Colloid cancer, 210 + + Common peroneal nerve, 370 + + Compound palmar ganglion, 217, 423 + + Condylomata, 158, 174 + + Congenital fistulas, 60 + telangiectasis, 294 + + Connective tissue, repair of, 6 + + Contracture of joints, 502 + of muscles, 415 + paralytic, 347 + + Contusions, 218 + + Cornea, syphilitic ulceration of, 177 + + Corns, 377 + + Corpora oryzoidea, 539 + + Counter-irritants, 37, 42 + + Craniotabes, 175, 176, 465 + + Crural fibrositis, 413 + + Crutch paralysis, 351 + + Cupping dry, 39 + wet, 42 + + Cutis anserina, 36 + + Cyanosis, traumatic, 254 + + Cyst, 212 + atheromatous, 389 + Baker's, 539 + blood 214, 220 + of bone, 477, 500 + dentigerous, 193 + derma, 210 + exudation, 212 + ganglionic, 215 + haemorrhagic, 220 + hydatid, 213 + implantation, 212 + of joints, 538 + lymph, 214 + lymphatic, 219, 328 + omental, 329 + parasitic, 213 + retention, 212 + sebaceous, 212, 389 + serous, 219 + venous, 289 + + Cystic adenoma, 202 + carcinoma, 210 + hygroma of neck, 328 + lymphangioma, 327, 328 + + + Dactylitis, syphilitic, 176, 460, 466 + tuberculous, 460 + + Dancer's sprain, 406 + + Deafness, syphilitic, 178 + + Deformities. _See_ Individual Regions + + Delhi boil, 129 + + Delirium, in surgical patients, 255 + traumatic, 257 + + Delirium tremens, 256 + + Dentigerous cyst, 193 + + Dercum on adiposus dolorosa, 186 + + Derma-cysts, 210 + + Dermatitis, 239, 292 + + Dermoids, 210 + + Diabetic gangrene, 96 + + Diarsenol, 163 + + Diapedesis of red corpuscles, 32 + + Diaphysial aclasis, 483 + + Diffuse aneurysm, 302 + cellulitis, 52 + fibromatosis, 194 + lipomatosis, 187 + neuro-fibromatosis, 355 + osteoma, 485 + suppuration, 52 + + Diphtheria, 109 + antitoxin in, 111 + intubation in, 111 + + Diplococci, 19 + + Dislocation of nerves, 351, 369 + pathological, 514 + of tendons, 408 + + Double cyanide gauze, 247 + + Drainage of wounds, 222 + + Dressings, surgical, 247 + + Drill-bone, 418 + + Drop-finger, 411 + -foot, 370 + -wrist, 365 + + Drunkard's palsy, 351, 364 + + Duchenne's paralysis, 361 + + Ducrey's bacillus, 154 + + Duodenum, ulceration of, in burns, 236 + + Dwarf, rickety, 469 + syphilitic, 178 + + + Eburnation of articular surfaces, 557 + + Ecchondroses, 527 + + Ecchymosis, 218 + + Echinococcus, 213 + + Echthyma, 158 + + Eczema, varicose, 292 + + Elbow, angler's, 406 + cellulitis of, 58 + tennis, 406 + + Electricity, injuries by, 239 + + Electrolysis in angioma, 297 + + Elephantiasis, varieties of, 360, 384, 386 + + Embolism, 281 + air, 265 + + Embolism, fat, 254 + of individual arteries, 93 + + Embolus, 281 + + Emigration of leucocytes, 32 + + Emotional shock, 251 + + Emphysema, 99, 102 + + Emprosthotonos, 214 + + Empyema of joints, 501, 518 + + Encephaloid cancer, 210 + + Endarteritis obliterans, 282 + syphilitic, 161 + + Endo-aneurysmorrhaphy, 307 + + Endothelioma, 196 + of bone, 492 + + Epicritic sensibility of nerves, 343 + + Epidermis, grafting, 12 + repair of, 4 + + Epiphysial cartilage, 434 + junction, 434 + in rickets, 469 + + Epiphysiolysis, 440 + + Epiphysitis, 437 + syphilitic, 465 + + Epithelial tumours, 201 + + Epithelioma, 208 + chimney-sweep's, 395 + lupus, 384 + paraffin, 395 + in scars, 402 + sinus, 500 + of skin, 394 + trade, 395 + varieties of, 208 + X-ray, 395 + + Epithelium grafting, 12 + repair of, 6 + + Epulis, 491 + + Erb's paralysis, 361 + + Erysipelas, varieties of, 107 + + Erythema pernio, 378 + nodosum, 442 + + Evaporating lotions, 41 + + Exfoliation, 438 + + Exophthalmos, pulsating, 317 + + Exostosis, 191, 481 + bursata, 481 + cancellous, 481 + cartilaginous, 191, 481 + false, 192 + ivory, 481 + multiple, 483 + spongy, 191, 481 + subungual, 191, 404, 481 + + Explosives, wounds by, 231 + + External iliac artery, embolus of, 93 + + External popliteal nerve. _See_ Common Peroneal Nerve + + Extravasation of blood, 259 + + Exudates, varieties of, 33 + + Exudation cysts, 212 + + Eye, syphilitic lesions of, 160, 176, 177 + + + Facial artery, compression of, 269 + erysipelas, 107 + + Fainting, 249 + + Farcy, 125 + + Fascia, grafting of, 16 + + Fat embolism, 254 + grafting of, 16 + + Fatty hernia, 187 + tumours, 184 + + Feet, trench, 96 + + Femoral aneurysm, 318 + artery compression of, 269 + embolus of, 93 + lymph glands, 323 + + Fever, 35 + + Fibro-adenoma, 202 + + Fibroblasts, 3 + + Fibroid, recurrent, of Paget, 199, 392, 420 + uterine, 195 + + Fibroma, 194 + of bone, 491 + diffuse, 194 + recurrent, of Paget, 199, 392, 420 + of skin, 391 + varieties of, 194 + + Fibromatosis, diffuse, 194 + + Fibro-myoma, 195 + + Fibro-sarcoma, 199 + + Fibrositis, varieties of, 372, 412 + + Filaria Bancrofti, 326 + + Filarial disease, 326 + + Finger, chancre of, 154 + drop-, 411 + mallet-, 411 + + Fingers, gouty affections of, 523 + whitlow of, 55 + + Finsen light treatment, 138 + + Firearms, wounds by, 225, 227, 230 + + First intention, healing by, 2 + + Fistula, 60 + congenital, 60 + lymphatic, 325 + varieties of, 60 + + Fluctuation, 49 + + Fomentations, 37, 41 + + Foot, cellulitis of, 58 + drop-, 370 + Madura, 129 + perforating ulcer of, 73 + + Forci-pressure in haemorrhage, 271 + + Forearm, aneurysm of, 318 + cellulitis of, 58 + + Foreign bodies, embedded, 6, 231 + + Fracture, pathological, 444 + + Fraenkel's pneumococcus, 28 + + Fragilitas ossium, 479 + + Friedlander's pneumo-bacillus, 28 + + Frost-bite, gangrene from, 95 + + Furunculus orientalis, 129 + + + Galyl, 163 + + Ganglion, 214, 215, 217 + compound palmar, 217, 423 + + Ganglionic neuroma, 353 + + Gangrene, 86 + acute infective, 99 + emphysematous, 102 + from angio-sclerosis, 98 + bacterial varieties of, 99 + from burns and scalds, 95 + cancrum oris, 102 + carbolic, 95 + from chemical agents, 95 + clinical types of, 86 + varieties of, 88 + from constriction of vessels, 94 + diabetic, 96 + dry, 86 + embolic, 92 + from ergot, 98 + from frost-bite, 95 + gas, 102 + from interference with circulation, 86 + following ligation of arteries, 94 + line of demarcation in, 87 + malignant oedema, 101 + moist, 87 + noma, 102 + phagedaena, 153 + Raynaud's disease, 97 + senile, 88 + traumatic, 94 + from trench feet, 96 + white, 93 + from whitlow, 99 + + Gas gangrene, 102 + + Gasserian ganglion, removal of, 375 + + Gauze, varieties of, 247 + + Gauze, sterilisation of, 245 + + Gelatin, injection of, in aneurysm, 309 + in haemophilia, 280 + + Gelatinous degeneration of joints, 515 + + Giant cells, 3 + + Glanders, 123 + + Glands, lymph. _See_ Lymph Glands + + Glioma, 196 + + Gliomatous arthropathies, 534 + + Glio-sarcoma, 200 + + Gloves in surgery, 244 + + Gluteal aneurysm, 319 + fibrositis, 372, 413 + + Glycogen reaction, 30 + + Glycosuria in perforating ulcer, 73 + + Golfer's back, 405 + + Gonorrhoeal bursitis, 428 + joint lesions, 510 + lymphangitis, 325 + myositis, 416 + ophthalmia, joint lesions following, 510 + rheumatism, 510 + teno-synovitis, 423 + + Gout, joint affections in, 522 + + Gouty bursitis, 428 + joints, 522 + teno-synovitis, 422 + tophi, 523 + ulcers, 77 + + Grafting of bone, 436 + of epithelium, 12 + of mucous membrane, 16 + of skin, 11 + of tissues, 10 + + Granulation, healing by, 5 + tissue, formation of, 2 + syphilitic, 146 + tuberculous, 136 + + Granulations, 2 + + Granuloma, 42 + + Groin, cellulitis of, 59 + filarial disease in lymphatics of, 326 + + Growing pains, 451 + + Growth fever, 451 + + Gumma, 168 + of bone, 464 + peri-bursal, 521 + periosteal, 521 + peri-synovial, 521 + subcutaneous, 76 + syphilitic, 168 + + Gummatous infiltration, 168 + + Gunshot wounds, 225, 227, 230 + + + Haematemesis, 259 + post-operative, 275 + + Haematoma, 220 + bursal, 426 + pulsating, of bone, 498 + + Haematuria, 259 + + Haemophilia, 277 + + Haemophilic joint, 531 + + Haemoptysis, 259 + + Haemorrhage, 266 + arrest of, 266, 270, 272, 274 + arterial, 259 + capillary, 260 + cautery in, 271 + constitutional effects of, 275 + digital compression in, 269 + external, 259 + forci-pressure in, 271 + intermediate, 272 + internal, 259 + ligature in, 270 + in operations, 269 + prevention of, 269 + primary, 266 + reactionary, 272 + saline infusions in, 276 + secondary, 273 + styptics in, 271 + torsion in, 271 + tourniquets in, 270, 272 + toxic, 275 + from varicose veins, 292 + venous, 259 + + Haemorrhagic diathesis, 277 + + Haemostatics, 271 + + Hair, syphilitic lesions of, 159 + + Hand, claw-, 369 + + Hands, disinfection of, 244 + + Hard chancre, 151 + + Healing by blood-clot, 6 + by first intention, 2 + by granulation, 5 + by primary union, 2 + rate of, 9 + under scab, 6 + by second intention, 5 + sore, 69, 81 + ulcer, 77 + by union of granulating surfaces, 5 + + Heart, massage of, 265 + + Heberden's nodes, 529 + + Hectic fever, 62 + + Heliotherapy, 139 + + Hernia, fatty, 187 + of muscle, 408 + + Herpes, syphilitic, 156 + + Hilton's method of opening abscess, 50 + + Hodgkin's disease, 377 + + Horns, varieties of, 389, 391 + + Housemaid's knee, 426, 431 + + Hunter's operation for aneurysm, 307 + + Hutchinson's teeth, 177 + + Hydatid cysts, 213 + of bone, 467 + of muscle, 421 + thrill, 214 + + Hydrocele of neck, 328 + + Hydrophobia, 115, 118 + + Hydrops, 501, 518 + + Hygroma of axilla, 328 + bursal, 427 + of neck, 328 + + Hyperaemia, 32 + active, 39 + artificial, 36 + passive, 38 + in tuberculosis, 138 + + Hyperostosis, 435 + syphilitic, 464 + + Hypertrophic pulmonary osteo-arthropathy, 480 + + Hysterical joint affections, 537 + + + Ice-bags, 41 + + Ichthyma, syphilitic, 158 + + Igni-puncture in naevus, 297 + + Iliac aneurysm, 318 + + Immunity, 22 + + Imperial drink, 40 + + Implantation cysts, 212 + + Infantile scurvy, 473 + + Infection, accidental, 241 + by catgut, 51 + mixed, 20 + prevention of, 243 + of wounds, 241 + + Inflammation, 31 + changes in, 32 + chronic, 42 + clinical aspects of, 33 + constitutional disturbance in, 35 + general principles of treatment in, 36, 39 + + Inflammation, leucocytosis in, 36 + stages of, 32 + + Infusion of saline solution, 276 + + Ingrowing toe-nail, 403 + + Inguinal aneurysm, 318 + lymph glands, 323 + + Injuries, 218. _See also_ Individual Tissues and Regions + constitutional effects of, 249 + + Innominate aneurysm, 314 + + Inoculation tubercle, 382 + + Insects, poisoning by, 130 + + Instruments, sterilisation of, 245 + + Intercostal fibrositis, 413 + + Intermittent claudication of vessels, 98 + + Internal popliteal nerve. _See_ Tibial Nerve + + Interstitial keratitis, 177 + + Intestine, repair of, 9 + + Intoxication, bacterial, 21 + + Intracranial aneurysm, 316 + + Intra-cystic growths, 202 + + Intubation of larynx, 111 + + Involucrum, 443 + + Iodine, catgut, 246 + for disinfection of skin, 245 + reaction, 30 + + Iodoform gauze, 247 + injection of, 142 + in joint diseases, 519 + + Iritis, syphilitic, 160 + + Irrigation, continuous, 54 + + Irritable ulcers, 79 + + Ischaemic contracture of muscles, 415 + + Ischial bursa, 430 + + Ischias scoliotica, 372 + + Ivory exostosis, 481 + + + Jaws, actinomycosis of, 127 + changes in, in rickets, 470 + cystic tumours of, 193 + + Jigger, 130 + + Joints. _See also_ Individual Joints + ankylosis of, 503 + bacterial diseases of, 506 + bleeder's, 531 + Charcot's disease of, 533 + chondromata, multiple, of, 544 + contracture of, 502 + cysts of, 538 + developmental errors of, 505 + diseases of, general, 501, 506 + disorganisation of, 502 + empyema of, 501 + gelatinous degeneration of, 515 + gliomatous arthropathies, 534 + gonococcal affections of, 510 + gouty affections of, 522 + haemophilic, 531 + hydrops of, 501 + hysterical affections of, 537 + impaired mobility of, 502 + iodoform in diseases of, 519 + loose bodies in, 529, 539 + mimetic affections of, 537 + nerve lesions affecting, 532 + neuro-arthropathies, 532 + osteo-arthritis, 524 + pneumococcal infection of, 509 + pyaemic affections of, 508 + pyogenic diseases of, 506 + rheumatic affections of, 523, 524 + rigidity of, 502 + scarlet fever, infection of, in 508 + spinal diseases affecting, 532 + starting pains in, 502, 517 + synostosis, 503 + syphilitic diseases of, 521 + tuberculous diseases of, 512 + tumours of, 538 + typhoid infection of, 508 + white swelling of, 515, 518 + + Jumper's sprain, 406 + + + Keloid, 194, 401 + + Keratitis, interstitial, in syphilis, 177 + + Keratoma of nail bed, 391 + + Kharsivan, 163 + + Klapp's suction bells, 39 + + Klebs-Loffler bacillus, 109 + + Klumpke's paralysis, 361 + + Knee, cellulitis of, 58 + ganglion of, 215 + housemaid's, 426, 431 + + Kopf or cephalic tetanus, 116 + + Kyphosis, 471 + + + Labourer's back, 405 + + Larynx, syphilis of, 177 + + Leeches, 41 + + Leg ulcer, 72 + varicose veins of, 287 + + Leiter's lead tubes, 41 + + Leontiasis ossea, 485 + + Leucocytes, emigration of, 32 + varieties of, 29 + wandering, 3 + + Leucocythaemia, 340 + + Leucocytosis, 22, 29 + absence of, 30 + digestion, 30 + after haemorrhage, 30 + local, 32 + physiological, 29, 30 + post-operative, 30 + + Leucopenia, 30 + + Leucoplakia, 167 + + Lightning stroke, 240 + + Line of demarcation in gangrene, 87 + + Lingual dermoids, 211 + + Lipoma, 184 + arborescent, 423 + of bone, 187, 491 + diffuse, 187 + intra-muscular, 188 + multiple, 186 + nasi, 393 + periosteal, 187 + subcutaneous, 184, 186 + subserous, 187 + subsynovial, 187 + + Lipomatosis, diffuse, 187 + + Lipping of bone, 527 + + Liquor epispasticus, 42 + puris, 45 + + Listerian methods of wound treatment, 242 + + Locking of joints, 505 + + Lock-jaw, 113 + + Locomotor ataxia, joint lesions in, 532 + + Long thoracic nerve, injuries of, 363 + + Loose bodies in bursae, 427 + in joints, 529, 539 + in tendon sheaths, 423 + varieties of, 539 + + Lotion, evaporating, 41 + + Luargol, 163 + + Luetin, 149 + + Lumbago, 412 + + Lumbo-sacral fibrositis, 412 + + Lupus, 134, 382 + epithelioma, 384 + syphilitic, 169 + tuberculous, 382 + varieties of, 383, 393 + + Lymph, 321 + cysts, 214 + glands, cancer of, 340 + diseases of, 329 + functions of, 221 + sarcoma of, 341 + surgical anatomy of, 321 + syphilitic diseases of, 337 + tuberculosis of, 331 + tumours of, 340 + oedema, 325 + scrotum, 389 + vessels, diseases of, 325 + injuries of, 323 + + Lymphadenitis, 53, 329 + + Lymphadenoma, 337 + + Lymphangiectasis, 214, 326 + + Lymphangioma, varieties of, 327 + + Lymphangioplasty, 325, 386 + + Lymphangio-sarcoma, 199 + + Lymphangitis, 325 + septic, 53 + varieties of, 325 + + Lymphatic cyst, 328 + fistula, 324 + oedema, 325 + + Lymphatics, 321 + + Lymphocytosis, 29 + + Lymphorrhagia, 323 + + Lympho-sarcoma, 199, 340 + + + Macewen's method of compressing abdominal aorta, 269 + + Macrophages, 22 + + Madura foot, 129 + _Main en griffe_, 369 + + Malacia of bones, 473 + + Malignant adenoma, 209 + cachexia, 207 + oedema, 101 + pustule, 120 + tumours, 183 + ulcers, 77 + + Mallein test, 125 + + Mallet-finger, 411 + + Malum senile, 524 + + Marriage and syphilis, 167 + + Matas' operation for aneurysm, 307 + + Median nerve, lesions of, 367 + + Medullary cancer, 210 + + Melaena, 259 + + Melanotic cancer, 210, 397 + sarcoma, 200 + + Melon-seed bodies, 539 + + Meningitis, basal, 115 + cerebro-spinal, 115 + + Mercury in syphilis, administration of, 165 + + Metchnikoff's cream, 157 + + Michel's clips, 222 + + Micrococci, 18 + + Micrococcus tetragenus, 29 + + Micro-organisms, 18 + + Microphages, 22 + + Mimetic joint affections, 537 + + Miner's elbow, 426 + + Mitchell's operation for varicose veins, 294 + + Mixed infection, 20 + naevus, 295 + venereal infection, 156 + + Moist gangrene, 87 + + Moles, 390 + naevoid, 295 + + Molluscum fibrosum, 194, 359, 391 + + Moore-Corradi method of treating aneurysm, 308 + + Mosetig-Moorhof on filling of bone cavities, 447 + + Mother's mark, 294 + + Muco-pus, 52 + + Mucous membrane, grafting of, 16 + suppuration in, 51 + patches, 160, 174 + + Multilocular cystic tumours of jaw, 193 + + Mummification, 86 + + Muscle, affections of, 405 + atrophy of, 412 + calcification of, 416 + congenital absence of, 411 + contracture of, 415 + contusion of, 405 + diseases of, 411 + gonorrhoea of, 416 + grafting of, 16 + hernia of, 408 + hydatid cysts of, 421 + inflammation of, 415 + injuries of, 405 + ossification in, 416 + repair of, 8 + rheumatism of, 412 + rupture of, 405, 406 + sprain of, 405 + syphilis of, 416 + tuberculosis of, 416 + tumours of, 420 + wounds of, 409 + + Muscular rheumatism, 412 + + Musculo-cutaneous nerve, 364 + + Musculo-spiral nerve. _See_ Radial Nerve + + Mustard leaves, 42 + + Mycetoma, 129 + + Myelitis, syphilitic, 161 + + Myeloma, 195, 491 + of bone, 491 + of tendon sheaths, 424 + + Myoma, 195 + + Myo-sarcoma, 200 + + Myositis ossificans, 416, 418 + varieties of, 415 + + Myxo-adenoma, 202 + + Myxoma, 194 + of bone, 491 + + Myxo-sarcoma, 200 + + + Naevoid mole, 295 + + Naevus, 294 + electrolysis of, 297 + operations for, 298 + radium treatment of, 297 + varieties of, 294 + + Nail fold, whitlow of, 56 + horns, 391 + + Nails, affections of, 402 + ingrowing, 403 + regeneration of, 7 + syphilitic lesions of, 159, 402 + + Nasal bones, syphilitic disease of, 188, 462 + + Naso-pharyngeal polypus, 491 + + Natal sore, 129 + + Neck, cystic hygroma of, 328 + glands of, diseases, 332 + hydrocele of, 328 + lipomatosis of, 187 + painful stiff-, 413 + + Necrosis, acute, 439 + of bone, 438 + quiet, of Paget, 452 + syphilitic, 462 + + Neo-diarsenol, 163 + -kharsivan, 163 + -salvarsan, 163 + + Neoplasms, 181 + + Nerve of Bell. _See_ Long Thoracic Nerve + + Nerves, 342. _See also_ Individual Nerves + alcohol injections of, 374 + anatomy of, 342 + avulsion of, 375 + blocking of, 251, 252 + bullet wounds of, 346 + contusion of, 345 + crushing of, 345 + diseases of, 352 + dislocation of, 351, 369 + effects of division of, 344 + gun-shot wounds of, 346 + grafting of, 16 + implicated in scar tissue, 345 + individual, surgery of, 360 + injuries of, 344 + joint affections in lesions of, 532 + reaction of degeneration, 347 + regeneration of, 9, 346 + in scar tissue, 345 + sensibility, forms of, 343 + subcutaneous injuries of, 350 + suture of, primary, 348 + secondary, 349 + Tinel's sign, 349 + torn, 345 + tumours of, 353 + ulcers in lesions of, 73, 82 + + Neuralgia, varieties of, 371 + + Neurectomy, 375 + + Neuritis, multiple peripheral, varieties of, 352 + traumatic, 352 + + Neuro-arthropathies, 352. _See also_ Individual Joints + + Neuro-fibromatosis, 355, 359 + + Neurolysis, 345 + + Neuroma, stump, 344 + varieties of, 353 + "914," 613 + + Nodes, periosteal, 464 + Heberden's 529 + + Noma, 102 + + Nose, sebaceous adenoma of, 393 + + Novo-arseno-billon, 163 + + Nucleinate of soda, 29 + + + Odontoma, 192 + varieties of, 193 + + O'Dwyer's intubation apparatus, 111 + + Oedema, 32, 34 + angio-neurotic, 348 + lymphatic, 325 + malignant, 101 + persistent, 109 + + Olecranon bursa, 428 + + Omental cyst, 329 + + Onychia, varieties of, 402 + + Operations during shock, 252 + + Opisthotonos, 114 + + Opsonins, 22 + + Orbital aneurysm, 317 + + Orthotonos, 114 + + Ossification in muscles, tendons, and fasciae, 416 + + Ossifying junction, 434 + + Osteo-arthritis, 524 + syphilitic, 522 + + Osteo-arthropathy, pulmonary, 480 + + Osteochondritis dessicans, 544 + + Osteogenesis imperfecta, 479 + + Osteoid sarcoma, 200 + + Osteoma, 191, 481 + cancellous, 191 + compact, 192 + diffuse, 485 + ivory, 192 + multiple, 544 + in muscles and tendons, 416 + spongy, 191 + subungual, 191, 404, 481 + + Osteomalacia, varieties of, 473 + + Osteomyelitis, 65, 437 + acute, 65, 438, 451, 453 + after amputation, 453 + bipolar, 439 + fibrosa, 476 + gummatous, 462 + from infection from soft parts, 453 + pyogenic, 438 + relapsing, 448 + sequelae of, 443 + streptococcal, 451 + tuberculous, 456, 458 + in typhoid fever, 452 + + Osteophytes, 435 + + Osteoporosis, 437 + + Osteopsathyrosis, 479 + + Osteosarcoma, 200 + + Osteosclerosis, 435 + + Ostitis deformans, 474 + rarefying, 474 + + Ovarian dermoids, 211 + + Ovary, grafting of, 16 + + Ozoena, 176 + + + Pachydermatocele, 360 + + Paget's disease of bone, 474 + of nipple, 397 + recurrent fibroma, 199, 392, 420 + + Pain, starting, in joint disease, 502, 517 + varieties of, 35 + + Painful subcutaneous nodules, 354, 392 + + Palate, syphilitic lesions of, 178, 462 + + Palmar ganglion, compound, 217, 423 + + Papilloma, varieties of, 201, 392 + + Paraffin cancer, 395 + + Paralysis, brachial birth, 362 + Erb-Duchenne, 361 + Klumpke's, 361 + post-anaesthetic, 360 + pseudo, of syphilis, 174, 466 + + Parasitic bacteria, 20 + cysts, 213 + + Paronychia. _See_ Onychia + + Parotid abscess in pyaemia, 66 + lymph glands, 321 + tumours, 195 + + Parotitis, 66 + + Parrot's nodes, 175, 465 + + Passive hyperaemia, Bier's, 38 + + Pasteur's treatment for hydrophobia, 119 + + Pelvis, rickety changes in, 471 + + Perforating ulcer, 73, 82 + + Perichondritis, syphilitic, 465 + + Peri-lymphangitis, 325 + + Periosteum, function of, 434 + gumma of, 464 + in rickets, 469 + + Periostitis, 437. _See also_ Osteomyelitis + syphilitic, 461 + tuberculous, 455 + + Peripheral neuritis, 352 + + Peroneal nerve, 370 + + Peronei tendons, dislocation of, 409 + + Petrifying sarcoma, 200 + + Phagedaena, 153 + + Phagedaenic ulcers, 80, 85 + + Phagocytes, 3, 22 + + Phagocytosis, 22 + + Phimosis, with hard chancre, 152 + with soft sores, 155 + + Phlebitis, 285, 292 + + Phlegmasia alba dolens, 286 + + Picric acid, 13, 237 + + Pigeon-breast, 471 + + Plantaris, rupture of, 408 + + Pleurodynia, 413 + + Pleurosthotonos, 114 + + Pneumo-bacillus, Friedlander's bacteria, 28 + + Pneumococcal arthritis, 509 + + Pneumococcus, 28 + + Polypi, 195 + + Popliteal aneurysm, 320 + artery, embolus of, 93 + bursae, 432 + + lymph glands, 323 + nerves. _See_ Common Peroneal Nerve and Tibial Nerve + + Port-wine stain, 294 + + Post-anaesthetic paralysis, 360 + -anal dimple, 211 + + Posterior auricular lymph glands, 322 + + Post-rectal dermoids, 211 + + Potato-nose, 393 + + Poultice, 37 + charcoal, 84 + + Pre-auricular lymph glands, 322 + + Prepatellar bursa, 431 + + Pressure sores, 70, 82 + + Primary union of wounds, 2 + + Protopathic sensibility of nerves, 343 + + Proud flesh, 79 + + Psammoma, 200 + + Pseudo-leucaemia, 337 + + Pseudo-paralysis of syphilis, 174, 466 + + Psoas bursa, 430 + + Pulmonary osteo-arthropathy, 480 + + Pulsating aorta, 305, 314 + exophthalmos, 317 + haematoma of bone, 498 + + Punctured wounds, 222 + + Purpura, 280 + + Purulent blister, 55 + + Pus, 45 + varieties of, 46 + + Pyaemia, 64 + abscess in joints in, 508 + + Pyogenic bacteria, 24, 29 + + + Quadriceps extensor femoris, rupture of, 408 + + + Rabies, 118 + + Rachitis, 468 + adolescentium, 472 + + Radial nerve, lesions of, 364 + + Radium, in lupus, 385 + in cancer, 208 + in naevus, 297 + ulceration from, 239 + + Ranula, 329 + + Rarefying ostitis, 437 + + Ray fungus, 126 + + Raynaud's disease, 97 + + Reaction of degeneration, 347 + + Reactionary haemorrhage, 272 + + Recklinghausen's disease, 355 + + Recurrent fibroid of Paget, 199, 392, 420 + + Repair. _See_ Individual Tissues + conditions interfering with, 17 + after loss of tissue, 4 + modifications of, 4 + of separated parts, 5 + + Rest, 17 + + Rests, foetal, 181 + + Retention cysts, 212 + + Retro-pharyngeal lymph glands, 322 + + Reverdin's method of skin-grafting, 13 + + Rhabdomyoma, 196 + + Rheumatic arthritis, 524 + fever, 509 + gout, 524 + torticollis, 413 + + Rheumatism, acute, 509 + chronic, 523 + gonorrhoeal, 510 + muscular, 412 + scarlatinal, 508 + + Rheumatoid arthritis, 524 + + Rhinophyma, 393 + + Rickets, 468 + bone lesions in, 469 + changes in skeleton in, 470 + late, 472 + scurvy, 473 + + Rickety, dwarf, 469 + pelvis, 471 + rosary, 469 + scoliosis, 471 + + Rider's bone, 418 + sprain, 407 + + Rigidity of joints, 502 + + Rigor, 36 + + Risus sardonicus, 114 + + Rodent cancer, 210, 395 + ulcer, 210, 395 + + Rontgen rays. _See_ X-rays + + Rose or erysipelas, 107 + + Roseola, syphilitic, 158 + + Rupia, syphilitic, 158 + + + Sabre-blade deformity of tibia, 466 + + Sacculated aneurysm, 302 + + Saddle-nose deformity, 174 + + Saline infusions in haemorrhage, 276 + + Salvarsan in syphilis, 162 + + Sapraemia, 60 + chronic, 62 + + Saprophytic bacteria, 20 + + Sarcoma, 197 + of bone, 492 + inoperable, 201 + of joints, 538 + of lymph glands, 341 + melanotic, 200 + periosteal, 493 + of skin, 398 + of synovial membrane, 538 + of tendon sheaths, 424 + varieties, 199 + + Scab, healing under, 6 + + Scalds, 233 + + Scapula, winged, 363 + + Scarlet fever, joint lesions in, 508 + + Scars. _See_ Cicatrices + + Sciatic nerve, lesions of, 370 + + Sciatica, 371 + + Scirrhous cancer, 210 + + Sclavo's serum, 123 + + Scoliosis, rickety, 471 + in sciatica, 372 + + Scorbutic ulcers, 77 + + Scrotum, elephantiasis of, 389 + + Sculler's sprain, 406 + + Scurvy, 473 + rickets, 473 + + Sebaceous adenoma, 393 + cysts, 389 + horns, 389 + + Secondary haemorrhage, 273 + syphilis, 151, 147 + + Selenium in malignant tumours, 201, 208 + + Semilunar ganglion, 375 + + Semi-membranosus bursa, 432 + + Sepsis, 18 + + Septicaemia, 53, 63 + + Sequestrectomy, 446 + + Sequestrum of bone, 438 + + Serratus anterior muscle, paralysis of, 363 + + Serum, anti-diphtheritic, 109 + anti-bacterial, 23 + anti-tetanic, 117 + disease, 23 + in haemophilia, 280 + polyvalent, 23 + Sclavo's, for anthrax, 123 + treatment, 23 + + Seton, 217 + + Shell wounds, 231 + + Shock, 250 + delayed, 252 + + Shoulder, fibrositis of, 413 + + Sinus, 59 + epithelioma, 500 + tuberculous, 143 + + "606," 162 + + Skewers for prevention of haemorrhage, 270 + + Skin, 376 + abscesses of, 382 + actinomycosis of, 126 + cancer of, 394, 398 + dermoids, 210 + grafting of, 11, 14 + preparation of, for operation, 244 + repair of, 6 + sporotrichosis of, 385 + structure of, 376 + syphilitic lesions of, 157, 166 + tuberculosis of, 382, 385 + tumours of, 391 + + Skull, bossing of, 465 + craniotabes of, 175, 176, 465 + diffuse osteoma of, 485 + natiform, 176 + Parrot's nodes, 465 + syphilitic disease of, 462 + unilateral hypertrophy of, 487 + + Slough, 86 + + Snake-bites, 131 + + Snuffles, 173 + + Soft chancre, 154 + corns, 377 + sore, 154 + + Spas, 531 + + Spasmodic tic, 373 + + Sphagnum moss, 247 + + Spinal arthropathies, 532 + cord, joint affections in lesions of, 532 + repair of, 9 + syphilis of, 161 + + Spine, changes in rickets, 471 + + Spirilla, 19 + + Spirochaete pallida, 147 + + Spironema pallidum, 147 + + Splenic fever, 119 + + Spores, 18 + + Sporotrichosis, 385 + + Sprain of muscle, 405, 407 + + Sprinter's sprain, 406 + + Staphylococci, 19, 24, 438 + + Staphylococcus albus, 26 + aureus, 25 + + Starting pains in joints, 502, 517 + + Stasis, 32 + + Sterilisation, surgical, 243 + + Sterno-mastoid lymph glands, 322 + + Stitch abscess, 51 + + Stitches. _See_ Sutures + + Streptococci, 19, 24 + + Streptococcus pyogenes, 26 + + Streptothrix actinomyces, 126 + + Strychnin poisoning, 115 + + Stump neuroma, 344 + + Styptics, 271 + + Sub-acromial bursa, 429 + + Sub-calcanean bursa, 433 + + Subclavian aneurysm, 317 + + Sub-crural bursa, 430 + + Sub-deltoid bursa, 429 + + Submaxillary lymph glands, 322 + + Submental lymph glands, 322 + + Sub-patellar bursa, 431 + + Subscapularis bursa, 430 + + Subungual exostosis, 191, 404, 481 + + Suction bells, 39 + + Suppuration, 45 + chronic, 59 + diffuse, 52 + in mucous membranes, 52 + in wounds, 50 + + Supra-clavicular lymph glands, 322 + + Supra-hyoid lymph glands, 322 + + Supra-scapular nerve, lesions of, 364 + + Surgery, definition of, 1 + Listerian, 242 + + Surgical anatomy of blood vessels, 258 + of bone, 434 + of epiphyses, 434 + of lymphatics, 321 + of nerves, 342 + of skin, 376 + + Surgical bacteriology, 17, 18 + shock, 250 + + Sutures, 221 + sterilisation of, 245 + + Sweat-glands, tumours of, 393 + + Syncope, 249 + local, 97 + + Synostosis, 503 + + Synovial membrane, tumours of, 538 + + Synovitis, 501, 506 + gonococcal, 510 + septic, 506 + serous, 506, 507 + suppurative, 507 + syphilitic, 521 + + Syphilis, 147. _See also_ Individual Tissues and Organs + + Syphilis, acquired, 146, 149 + in infants, 179 + arsenical preparations in, 162 + arteritis in, 282 + bones, lesions in, 461, 465 + brain, lesions in, 161 + of bursae, 428 + cirrhosis in, 168 + Colles' law, 178 + contracture of muscle in, 416 + dactylitis in, 176, 460, 466 + epiphysitis of infants, 465 + extra-genital, 153 + in female, 152, 164 + gumma, 168, 462 + hydrops in, 521 + incubation of, 151 + in infants, 179 + inherited, 146, 172 + contagiousness of, 178 + diagnosis of, 178 + facies of, 174, 175 + lesions of bone in, 465 + eyes in, 176, 177 + joints in, 522 + skin in, 173, 174 + teeth in, 177 + treatment of, 179 + insontium, 153 + intermediate stage of, 167 + interstitial keratitis in, 177 + iodides in, 171 + iritis in, 166 + joint lesions in, 521 + of larynx, 177 + lupus, 169 + lymphadenitis, 153, 337 + lymphangitis, 326 + in male, 152 + malignant, 161 + and marriage, 167 + mercury in, 164 + mixed infection, 156 + of mouth, 166 + of mucous membranes, 160, 173, 174 + mucous patches, 160, 174 + of muscle, 416 + of nails, 159 + of nose, 188 + onychia in, 403 + osteo-arthritis, 522 + of palate, 178, 462 + phagedaena, 153 + phimosis in, 152 + in pregnant women, 164 + primary, 151 + diagnosis of, 155 + lesion of, 146, 151 + treatment of, 163 + prophylaxis of, 149 + pseudo-paralysis of, 174, 466 + reminders, 167 + second attacks of, 172 + secondary, 151, 157 + diagnosis of, 161 + lesions of eye in, 160 + hair in, 159 + nails in, 159, 402 + skin in, 162 + treatment of, 162 + serum diagnosis, 149 + skin affections in, 157, 166 + skull, lesions of, 462 + spirochaete pallida in, 147 + stages of, 150 + stomatitis, 174 + synovitis, 521 + teeth in, 177 + of tendon sheaths, 424 + tertiary, 151, 167 + diagnosis of, 167 + general manifestations of, 167 + lesions of mucous membrane in, 171 + skin in, 168, 169 + treatment of, 171 + ulcer, 169 + ulcers in, 76, 83, 169 + virus of, 147 + Wassermann reaction in, 156 + + Syphiloma, 168 + + Syringomyelia, joint lesions in, 534 + + + Tabes dorsales, joint lesions in, 532 + + Taenia echinococcus, 213 + + Tailor's ankle, 432 + + Tailor's bottom, 426, 430 + + Tarsal ganglion, 215 + + Tarsus, tuberculosis of, 459 + + Teeth in inherited syphilis, 177 + + Telangiectasis, congenital, 294 + + Temperature in surgical diseases, 35, 40 + + Temporal artery, compression of, 269 + + Tenderness, 34 + + Tendinitis, 416 + + Tendon sheaths, affections of, 421 + syphilitic affections of, 424 + tuberculosis of, 423, 424 + tumours of, 424 + whitlow of, 57 + + Tendons. _See also_ Individual Tendons + avulsion of, 411 + calcification in, 416 + diseases of, 411 + dislocation of, 408 + ganglion of, 217 + grafting of, 16 + inflammation of, 416 + ossification of, 416 + repair of, 8 + rupture of, 406, 408 + tumours of, 420 + wounds of, 409 + + Tennis-player's elbow, 406 + + Teno-synovitis, varieties of, 421 + + Teratoma, 212 + + Tertiary syphilis, 151, 167 + + Tetanus, varieties of, 112 + + Tetany, 116 + + Thiersch's method of skin-grafting, 12 + + Thirst, treatment of, 40 + + Thoracic aneurysm, 312 + duct, subcutaneous rupture of, 325 + surgical anatomy of, 324 + wounds of, 325 + + Thorax, rickety changes in, 469 + + Thrombo-phlebitis, 285 + + Thrombosis, 32, 281, 285, 292 + + Thyreoid gland, grafting of, 16 + secondary tumours derived from, 500 + + Tibia, sabre-blade deformity of, 466 + + Tibial nerve, lesions of, 371 + + Tic, spasmodic, 373 + + Tinel's sign, 349 + + Toe-nail, ingrowing, 403 + + Toes, gouty affections of, 522 + syphilitic dactylitis of, 176, 460, 466 + tuberculous dactylitis, 460 + + Tomato tumour, 393 + + Tophi, gouty, 523 + + Torsion of blood vessels, 271 + + Torticollis, rheumatic, 413 + + Tourniquet, varieties of, 270, 272 + + Toxaemia, 21 + + Toxins, 21, 33 + + Tracheal tug in aneurysm, 312 + + Tracheotomy, 111 + + Trade arthritis, 525 + bursitis, 426 + epithelionia, 395 + + Transfusion of blood, 276 + + Transplantation of tissues, 10 + + Trench feet, 96 + + Trendelenburg's operation for varicose veins, 293 + + Treponema pallidum, 147 + + Trifacial neuralgia, 373 + + Trigeminal neuralgia, 373 + + Trismus, 117 + + Trochanteric bursa, 430 + + Trophic changes after nerve injuries, 348 + ulcer, 73 + + Tropical elephantiasis, 386 + + Trunk neuroma, 354 + + Tubercle, anatomical, 134 + bacillus, 133 + + Tuberculin, 138 + + Tuberculosis, 133. _See also_ Individual Tissues and Organs + bacillus of, 133 + of bone, 454, 456, 458 + bovine, 136 + of bursae, 428 + calcification in, 136 + caseation in, 136 + general, 135 + human, 136 + of joints, 512 + of lymph glands, 331 + of lymph vessels, 326 + modes of infection, 136 + of muscle, 416 + of nails, 403 + open-air treatment of, 137 + passive hyperaemia in, 138 + principles of treatment of, 137 + of skin, 382, 385 + of tendon sheaths, 423, 424 + trauma in causation of, 135 + vaccine treatment in, 138 + + Tuberculous abscess, 139 + arthritic fever, 516 + dactylitis, 460 + granulation tissue, 136 + lupus, 382 + lymphadenitis, 331 + lymphangitis, 326 + onychia, 403 + sinus, 143 + + Tuberculous ulcers, 73, 83 + + Tubulo-dermoids, 211 + + Tumor albus, 518 + + Tumours, 181. _See also_ Individual Tumours and Tissues + + Typhoid, joint lesions in, 508 + osteomyelitis in, 452 + + + Ulceration, of cartilage, 502, 514 + definition of, 68 + + Ulcers, 68 + ambulatory treatment of, 85 + Bazin's disease, 74, 169 + bone changes in, 79 + callous, 79, 84 + cancerous, 205 + classification of, 70 + clinical examination of, 68 + conditions of, 77 + crateriform, 395 + duodenal, in burns, 236 + epithelioma in, 500 + healing, 77 + gouty, 77 + due to imperfect circulation, 71, 82 + due to imperfect nerve-supply, 73, 82 + inflamed, 79, 85 + irritable, 79, 85 + leg, 72, 169 + malignant, 77 + perforating, 73, 82 + phagedaenic, 80, 85 + pressure, 70 + from radium, 70 + rodent, 395 + from Rontgen rays, 70 + scorbutic, 77 + skin-grafting, 14 + spreading, 79 + syphilitic, 76, 83, 158, 160, 169 + traumatic, 70, 81 + treatment of, 80 + trophic, 73 + tuberculous, 73, 83 + varicose, 72 + weak, 77, 83 + + Ulnar nerve, lesions of, 368 + + Uterine fibroids, 195 + + + Vaccine treatment, 23, 40 + + Varicose aneurysm, 311 + eczema, 292 + ulcer, 72 + veins, 287 + + Varix, 287 + + Veins, anatomy of, 258 + entrance of air into, 265 + injuries of, 264 + repair of, 269 + rupture of, 264 + thrombosis of, 281 + varicose, 287 + wounds of, 264 + + Veldt sores, 382 + + Venereal disease. _See_ Syphilis + soft sore, 154 + + Venesection, 42 + + Venous cysts, 289 + + Verruca, 392 + + Vibrion septique, 101 + + Villous papilloma, 201 + + Volkmann's ischaemic contracture, 415 + + Vulva, diphtheria of, 111 + + + Wardrop's operation for aneurysm, 308 + + Wart, 201, 392 + venereal, 393 + X-ray, 239 + + Wassermann's reaction, 156, 162 + + Weaver's bottom, 426, 430 + + Weir-Mitchell treatment in hysterical joint affections, 538 + + Wens, 389 + + Wet-cupping, 42 + + White swelling of joints, 515, 518 + + Whitlow, 55 + gangrene from, 99 + at nail fold, 56 + purulent blister, 55 + subcutaneous, 56 + subperiosteal, 58 + of tendon sheaths, 57 + thecal, 57 + + Whitlow, of toes, 55 + varieties of, 55 + + Winged scapula, 363 + + Wool-sorter's disease, 121 + + Wounds, 220. _See also_ Individual Tissues and Regions + acute suppuration in, 50 + bullet, 229 + contused, 218, 223 + drainage of, 222 + by electricity, 239 + by explosives, 231 + by firearms, 225, 227, 230 + incised, 221 + infection of, 107 + lacerated, 223 + open method of treating, 247, 248 + pistol-shot, 226 + punctured, 222 + shell, 231 + treatment, 241 + in warfare, 225, 230 + + Wrist, drop-, 365 + + Wry-neck, rheumatic, 413 + + + Xanthoma, 188 + + X-rays, burns by, 239 + cancer from, 395 + dermatitis from, 239 + ulcers from, 239 + warts from, 239 + in diagnosis of aneurysm, 304 + arthritis deformans, 530 + bone diseases, 445 + tumours, 485, 491, 496 + tuberculosis, 455 + foreign bodies, 233 + joint tuberculosis, 516 + in treatment of cancer, 208 + lupus, 385 + sarcoma, 201 + tuberculosis, 138 + + + + + +End of the Project Gutenberg EBook of Manual of Surgery, by +Alexis Thomson and Alexander Miles + +*** END OF THIS PROJECT GUTENBERG EBOOK MANUAL OF SURGERY *** + +***** This file should be named 17921-8.txt or 17921-8.zip ***** +This and all associated files of various formats will be found in: + http://www.gutenberg.org/1/7/9/2/17921/ + +Produced by Jonathan Ingram, Laura Wisewell and the Online +Distributed Proofreading Team at http://www.pgdp.net + + +Updated editions will replace the previous one--the old editions +will be renamed. + +Creating the works from public domain print editions means that no +one owns a United States copyright in these works, so the Foundation +(and you!) can copy and distribute it in the United States without +permission and without paying copyright royalties. Special rules, +set forth in the General Terms of Use part of this license, apply to +copying and distributing Project Gutenberg-tm electronic works to +protect the PROJECT GUTENBERG-tm concept and trademark. Project +Gutenberg is a registered trademark, and may not be used if you +charge for the eBooks, unless you receive specific permission. If you +do not charge anything for copies of this eBook, complying with the +rules is very easy. You may use this eBook for nearly any purpose +such as creation of derivative works, reports, performances and +research. They may be modified and printed and given away--you may do +practically ANYTHING with public domain eBooks. Redistribution is +subject to the trademark license, especially commercial +redistribution. + + + +*** START: FULL LICENSE *** + +THE FULL PROJECT GUTENBERG LICENSE +PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK + +To protect the Project Gutenberg-tm mission of promoting the free +distribution of electronic works, by using or distributing this work +(or any other work associated in any way with the phrase "Project +Gutenberg"), you agree to comply with all the terms of the Full Project +Gutenberg-tm License (available with this file or online at +http://gutenberg.org/license). + + +Section 1. General Terms of Use and Redistributing Project Gutenberg-tm +electronic works + +1.A. By reading or using any part of this Project Gutenberg-tm +electronic work, you indicate that you have read, understand, agree to +and accept all the terms of this license and intellectual property +(trademark/copyright) agreement. If you do not agree to abide by all +the terms of this agreement, you must cease using and return or destroy +all copies of Project Gutenberg-tm electronic works in your possession. +If you paid a fee for obtaining a copy of or access to a Project +Gutenberg-tm electronic work and you do not agree to be bound by the +terms of this agreement, you may obtain a refund from the person or +entity to whom you paid the fee as set forth in paragraph 1.E.8. + +1.B. "Project Gutenberg" is a registered trademark. It may only be +used on or associated in any way with an electronic work by people who +agree to be bound by the terms of this agreement. There are a few +things that you can do with most Project Gutenberg-tm electronic works +even without complying with the full terms of this agreement. See +paragraph 1.C below. There are a lot of things you can do with Project +Gutenberg-tm electronic works if you follow the terms of this agreement +and help preserve free future access to Project Gutenberg-tm electronic +works. See paragraph 1.E below. + +1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" +or PGLAF), owns a compilation copyright in the collection of Project +Gutenberg-tm electronic works. Nearly all the individual works in the +collection are in the public domain in the United States. If an +individual work is in the public domain in the United States and you are +located in the United States, we do not claim a right to prevent you from +copying, distributing, performing, displaying or creating derivative +works based on the work as long as all references to Project Gutenberg +are removed. Of course, we hope that you will support the Project +Gutenberg-tm mission of promoting free access to electronic works by +freely sharing Project Gutenberg-tm works in compliance with the terms of +this agreement for keeping the Project Gutenberg-tm name associated with +the work. You can easily comply with the terms of this agreement by +keeping this work in the same format with its attached full Project +Gutenberg-tm License when you share it without charge with others. + +1.D. The copyright laws of the place where you are located also govern +what you can do with this work. Copyright laws in most countries are in +a constant state of change. If you are outside the United States, check +the laws of your country in addition to the terms of this agreement +before downloading, copying, displaying, performing, distributing or +creating derivative works based on this work or any other Project +Gutenberg-tm work. The Foundation makes no representations concerning +the copyright status of any work in any country outside the United +States. + +1.E. Unless you have removed all references to Project Gutenberg: + +1.E.1. The following sentence, with active links to, or other immediate +access to, the full Project Gutenberg-tm License must appear prominently +whenever any copy of a Project Gutenberg-tm work (any work on which the +phrase "Project Gutenberg" appears, or with which the phrase "Project +Gutenberg" is associated) is accessed, displayed, performed, viewed, +copied or distributed: + +This eBook is for the use of anyone anywhere at no cost and with +almost no restrictions whatsoever. You may copy it, give it away or +re-use it under the terms of the Project Gutenberg License included +with this eBook or online at www.gutenberg.org + +1.E.2. If an individual Project Gutenberg-tm electronic work is derived +from the public domain (does not contain a notice indicating that it is +posted with permission of the copyright holder), the work can be copied +and distributed to anyone in the United States without paying any fees +or charges. If you are redistributing or providing access to a work +with the phrase "Project Gutenberg" associated with or appearing on the +work, you must comply either with the requirements of paragraphs 1.E.1 +through 1.E.7 or obtain permission for the use of the work and the +Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or +1.E.9. + +1.E.3. If an individual Project Gutenberg-tm electronic work is posted +with the permission of the copyright holder, your use and distribution +must comply with both paragraphs 1.E.1 through 1.E.7 and any additional +terms imposed by the copyright holder. Additional terms will be linked +to the Project Gutenberg-tm License for all works posted with the +permission of the copyright holder found at the beginning of this work. + +1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm +License terms from this work, or any files containing a part of this +work or any other work associated with Project Gutenberg-tm. + +1.E.5. Do not copy, display, perform, distribute or redistribute this +electronic work, or any part of this electronic work, without +prominently displaying the sentence set forth in paragraph 1.E.1 with +active links or immediate access to the full terms of the Project +Gutenberg-tm License. + +1.E.6. You may convert to and distribute this work in any binary, +compressed, marked up, nonproprietary or proprietary form, including any +word processing or hypertext form. However, if you provide access to or +distribute copies of a Project Gutenberg-tm work in a format other than +"Plain Vanilla ASCII" or other format used in the official version +posted on the official Project Gutenberg-tm web site (www.gutenberg.org), +you must, at no additional cost, fee or expense to the user, provide a +copy, a means of exporting a copy, or a means of obtaining a copy upon +request, of the work in its original "Plain Vanilla ASCII" or other +form. Any alternate format must include the full Project Gutenberg-tm +License as specified in paragraph 1.E.1. + +1.E.7. Do not charge a fee for access to, viewing, displaying, +performing, copying or distributing any Project Gutenberg-tm works +unless you comply with paragraph 1.E.8 or 1.E.9. + +1.E.8. You may charge a reasonable fee for copies of or providing +access to or distributing Project Gutenberg-tm electronic works provided +that + +- You pay a royalty fee of 20% of the gross profits you derive from + the use of Project Gutenberg-tm works calculated using the method + you already use to calculate your applicable taxes. The fee is + owed to the owner of the Project Gutenberg-tm trademark, but he + has agreed to donate royalties under this paragraph to the + Project Gutenberg Literary Archive Foundation. Royalty payments + must be paid within 60 days following each date on which you + prepare (or are legally required to prepare) your periodic tax + returns. Royalty payments should be clearly marked as such and + sent to the Project Gutenberg Literary Archive Foundation at the + address specified in Section 4, "Information about donations to + the Project Gutenberg Literary Archive Foundation." + +- You provide a full refund of any money paid by a user who notifies + you in writing (or by e-mail) within 30 days of receipt that s/he + does not agree to the terms of the full Project Gutenberg-tm + License. You must require such a user to return or + destroy all copies of the works possessed in a physical medium + and discontinue all use of and all access to other copies of + Project Gutenberg-tm works. + +- You provide, in accordance with paragraph 1.F.3, a full refund of any + money paid for a work or a replacement copy, if a defect in the + electronic work is discovered and reported to you within 90 days + of receipt of the work. + +- You comply with all other terms of this agreement for free + distribution of Project Gutenberg-tm works. + +1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm +electronic work or group of works on different terms than are set +forth in this agreement, you must obtain permission in writing from +both the Project Gutenberg Literary Archive Foundation and Michael +Hart, the owner of the Project Gutenberg-tm trademark. Contact the +Foundation as set forth in Section 3 below. + +1.F. + +1.F.1. Project Gutenberg volunteers and employees expend considerable +effort to identify, do copyright research on, transcribe and proofread +public domain works in creating the Project Gutenberg-tm +collection. Despite these efforts, Project Gutenberg-tm electronic +works, and the medium on which they may be stored, may contain +"Defects," such as, but not limited to, incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other intellectual +property infringement, a defective or damaged disk or other medium, a +computer virus, or computer codes that damage or cannot be read by +your equipment. + +1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right +of Replacement or Refund" described in paragraph 1.F.3, the Project +Gutenberg Literary Archive Foundation, the owner of the Project +Gutenberg-tm trademark, and any other party distributing a Project +Gutenberg-tm electronic work under this agreement, disclaim all +liability to you for damages, costs and expenses, including legal +fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT +LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE +PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE +TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE +LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR +INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH +DAMAGE. + +1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a +defect in this electronic work within 90 days of receiving it, you can +receive a refund of the money (if any) you paid for it by sending a +written explanation to the person you received the work from. If you +received the work on a physical medium, you must return the medium with +your written explanation. The person or entity that provided you with +the defective work may elect to provide a replacement copy in lieu of a +refund. If you received the work electronically, the person or entity +providing it to you may choose to give you a second opportunity to +receive the work electronically in lieu of a refund. If the second copy +is also defective, you may demand a refund in writing without further +opportunities to fix the problem. + +1.F.4. Except for the limited right of replacement or refund set forth +in paragraph 1.F.3, this work is provided to you 'AS-IS', WITH NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO +WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. + +1.F.5. Some states do not allow disclaimers of certain implied +warranties or the exclusion or limitation of certain types of damages. +If any disclaimer or limitation set forth in this agreement violates the +law of the state applicable to this agreement, the agreement shall be +interpreted to make the maximum disclaimer or limitation permitted by +the applicable state law. The invalidity or unenforceability of any +provision of this agreement shall not void the remaining provisions. + +1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the +trademark owner, any agent or employee of the Foundation, anyone +providing copies of Project Gutenberg-tm electronic works in accordance +with this agreement, and any volunteers associated with the production, +promotion and distribution of Project Gutenberg-tm electronic works, +harmless from all liability, costs and expenses, including legal fees, +that arise directly or indirectly from any of the following which you do +or cause to occur: (a) distribution of this or any Project Gutenberg-tm +work, (b) alteration, modification, or additions or deletions to any +Project Gutenberg-tm work, and (c) any Defect you cause. + + +Section 2. Information about the Mission of Project Gutenberg-tm + +Project Gutenberg-tm is synonymous with the free distribution of +electronic works in formats readable by the widest variety of computers +including obsolete, old, middle-aged and new computers. It exists +because of the efforts of hundreds of volunteers and donations from +people in all walks of life. + +Volunteers and financial support to provide volunteers with the +assistance they need, is critical to reaching Project Gutenberg-tm's +goals and ensuring that the Project Gutenberg-tm collection will +remain freely available for generations to come. In 2001, the Project +Gutenberg Literary Archive Foundation was created to provide a secure +and permanent future for Project Gutenberg-tm and future generations. +To learn more about the Project Gutenberg Literary Archive Foundation +and how your efforts and donations can help, see Sections 3 and 4 +and the Foundation web page at http://www.pglaf.org. + + +Section 3. Information about the Project Gutenberg Literary Archive +Foundation + +The Project Gutenberg Literary Archive Foundation is a non profit +501(c)(3) educational corporation organized under the laws of the +state of Mississippi and granted tax exempt status by the Internal +Revenue Service. The Foundation's EIN or federal tax identification +number is 64-6221541. Its 501(c)(3) letter is posted at +http://pglaf.org/fundraising. Contributions to the Project Gutenberg +Literary Archive Foundation are tax deductible to the full extent +permitted by U.S. federal laws and your state's laws. + +The Foundation's principal office is located at 4557 Melan Dr. S. +Fairbanks, AK, 99712., but its volunteers and employees are scattered +throughout numerous locations. Its business office is located at +809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email +business@pglaf.org. Email contact links and up to date contact +information can be found at the Foundation's web site and official +page at http://pglaf.org + +For additional contact information: + Dr. Gregory B. Newby + Chief Executive and Director + gbnewby@pglaf.org + +Section 4. Information about Donations to the Project Gutenberg +Literary Archive Foundation + +Project Gutenberg-tm depends upon and cannot survive without wide +spread public support and donations to carry out its mission of +increasing the number of public domain and licensed works that can be +freely distributed in machine readable form accessible by the widest +array of equipment including outdated equipment. Many small donations +($1 to $5,000) are particularly important to maintaining tax exempt +status with the IRS. + +The Foundation is committed to complying with the laws regulating +charities and charitable donations in all 50 states of the United +States. Compliance requirements are not uniform and it takes a +considerable effort, much paperwork and many fees to meet and keep up +with these requirements. We do not solicit donations in locations +where we have not received written confirmation of compliance. To +SEND DONATIONS or determine the status of compliance for any +particular state visit http://pglaf.org + +While we cannot and do not solicit contributions from states where we +have not met the solicitation requirements, we know of no prohibition +against accepting unsolicited donations from donors in such states who +approach us with offers to donate. + +International donations are gratefully accepted, but we cannot make +any statements concerning tax treatment of donations received from +outside the United States. U.S. laws alone swamp our small staff. + +Please check the Project Gutenberg Web pages for current donation +methods and addresses. Donations are accepted in a number of other +ways including checks, online payments and credit card donations. +To donate, please visit: http://pglaf.org/donate + + +Section 5. General Information About Project Gutenberg-tm electronic +works. + +Professor Michael S. Hart is the originator of the Project Gutenberg-tm +concept of a library of electronic works that could be freely shared +with anyone. For thirty years, he produced and distributed Project +Gutenberg-tm eBooks with only a loose network of volunteer support. + +Project Gutenberg-tm eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the U.S. +unless a copyright notice is included. Thus, we do not necessarily +keep eBooks in compliance with any particular paper edition. + +Most people start at our Web site which has the main PG search facility: + + http://www.gutenberg.org + +This Web site includes information about Project Gutenberg-tm, +including how to make donations to the Project Gutenberg Literary +Archive Foundation, how to help produce our new eBooks, and how to +subscribe to our email newsletter to hear about new eBooks. + +*** END: FULL LICENSE *** + +The Project Gutenberg EBook of War and Peace, by Leo Tolstoy +(#9 in our series by Leo Tolstoy) + +Copyright laws are changing all over the world. Be sure to check the +copyright laws for your country before downloading or redistributing +this or any other Project Gutenberg eBook. + +This header should be the first thing seen when viewing this Project +Gutenberg file. Please do not remove it. Do not change or edit the +header without written permission. + +Please read the "legal small print," and other information about the +eBook and Project Gutenberg at the bottom of this file. Included is +important information about your specific rights and restrictions in +how the file may be used. You can also find out about how to make a +donation to Project Gutenberg, and how to get involved. + + +**Welcome To The World of Free Plain Vanilla Electronic Texts** + +**eBooks Readable By Both Humans and By Computers, Since 1971** + +*****These eBooks Were Prepared By Thousands of Volunteers!***** + + +Title: War and Peace + +Author: Leo Tolstoy + +Translator: Louise and Aylmer Maude + +Release Date: April, 2001 [EBook #2600] +[This file was first posted on October 7, 2003] +[Most recently updated: May 21, 2006] + +Edition: 11 + +Language: English + +Character set encoding: US-ASCII + +*** START OF THE PROJECT GUTENBERG EBOOK, WAR AND PEACE *** + + + + + + + + + + +War and Peace + +by Leo Tolstoy/Tolstoi + + + + +BOOK ONE: 1805 + + + + +CHAPTER I + + +"Well, Prince, so Genoa and Lucca are now just family estates of the +Buonapartes. But I warn you, if you don't tell me that this means war, +if you still try to defend the infamies and horrors perpetrated by +that Antichrist--I really believe he is Antichrist--I will have +nothing more to do with you and you are no longer my friend, no longer +my 'faithful slave,' as you call yourself! But how do you do? I see +I have frightened you--sit down and tell me all the news." + +It was in July, 1805, and the speaker was the well-known Anna +Pavlovna Scherer, maid of honor and favorite of the Empress Marya +Fedorovna. With these words she greeted Prince Vasili Kuragin, a man +of high rank and importance, who was the first to arrive at her +reception. Anna Pavlovna had had a cough for some days. She was, as +she said, suffering from la grippe; grippe being then a new word in +St. Petersburg, used only by the elite. + +All her invitations without exception, written in French, and +delivered by a scarlet-liveried footman that morning, ran as follows: + +"If you have nothing better to do, Count [or Prince], and if the +prospect of spending an evening with a poor invalid is not too +terrible, I shall be very charmed to see you tonight between 7 and 10- +Annette Scherer." + +"Heavens! what a virulent attack!" replied the prince, not in the +least disconcerted by this reception. He had just entered, wearing +an embroidered court uniform, knee breeches, and shoes, and had +stars on his breast and a serene expression on his flat face. He spoke +in that refined French in which our grandfathers not only spoke but +thought, and with the gentle, patronizing intonation natural to a +man of importance who had grown old in society and at court. He went +up to Anna Pavlovna, kissed her hand, presenting to her his bald, +scented, and shining head, and complacently seated himself on the +sofa. + +"First of all, dear friend, tell me how you are. Set your friend's +mind at rest," said he without altering his tone, beneath the +politeness and affected sympathy of which indifference and even +irony could be discerned. + +"Can one be well while suffering morally? Can one be calm in times +like these if one has any feeling?" said Anna Pavlovna. "You are +staying the whole evening, I hope?" + +"And the fete at the English ambassador's? Today is Wednesday. I +must put in an appearance there," said the prince. "My daughter is +coming for me to take me there." + +"I thought today's fete had been canceled. I confess all these +festivities and fireworks are becoming wearisome." + +"If they had known that you wished it, the entertainment would +have been put off," said the prince, who, like a wound-up clock, by +force of habit said things he did not even wish to be believed. + +"Don't tease! Well, and what has been decided about Novosiltsev's +dispatch? You know everything." + +"What can one say about it?" replied the prince in a cold, +listless tone. "What has been decided? They have decided that +Buonaparte has burnt his boats, and I believe that we are ready to +burn ours." + +Prince Vasili always spoke languidly, like an actor repeating a +stale part. Anna Pavlovna Scherer on the contrary, despite her forty +years, overflowed with animation and impulsiveness. To be an +enthusiast had become her social vocation and, sometimes even when she +did not feel like it, she became enthusiastic in order not to +disappoint the expectations of those who knew her. The subdued smile +which, though it did not suit her faded features, always played +round her lips expressed, as in a spoiled child, a continual +consciousness of her charming defect, which she neither wished, nor +could, nor considered it necessary, to correct. + +In the midst of a conversation on political matters Anna Pavlovna +burst out: + +"Oh, don't speak to me of Austria. Perhaps I don't understand +things, but Austria never has wished, and does not wish, for war. +She is betraying us! Russia alone must save Europe. Our gracious +sovereign recognizes his high vocation and will be true to it. That is +the one thing I have faith in! Our good and wonderful sovereign has to +perform the noblest role on earth, and he is so virtuous and noble +that God will not forsake him. He will fulfill his vocation and +crush the hydra of revolution, which has become more terrible than +ever in the person of this murderer and villain! We alone must +avenge the blood of the just one.... Whom, I ask you, can we rely +on?... England with her commercial spirit will not and cannot +understand the Emperor Alexander's loftiness of soul. She has +refused to evacuate Malta. She wanted to find, and still seeks, some +secret motive in our actions. What answer did Novosiltsev get? None. +The English have not understood and cannot understand the +self-abnegation of our Emperor who wants nothing for himself, but only +desires the good of mankind. And what have they promised? Nothing! And +what little they have promised they will not perform! Prussia has +always declared that Buonaparte is invincible, and that all Europe +is powerless before him.... And I don't believe a word that Hardenburg +says, or Haugwitz either. This famous Prussian neutrality is just a +trap. I have faith only in God and the lofty destiny of our adored +monarch. He will save Europe!" + +She suddenly paused, smiling at her own impetuosity. + +"I think," said the prince with a smile, "that if you had been +sent instead of our dear Wintzingerode you would have captured the +King of Prussia's consent by assault. You are so eloquent. Will you +give me a cup of tea?" + +"In a moment. A propos," she added, becoming calm again, "I am +expecting two very interesting men tonight, le Vicomte de Mortemart, +who is connected with the Montmorencys through the Rohans, one of +the best French families. He is one of the genuine emigres, the good +ones. And also the Abbe Morio. Do you know that profound thinker? He +has been received by the Emperor. Had you heard?" + +"I shall be delighted to meet them," said the prince. "But tell me," +he added with studied carelessness as if it had only just occurred +to him, though the question he was about to ask was the chief motive +of his visit, "is it true that the Dowager Empress wants Baron Funke +to be appointed first secretary at Vienna? The baron by all accounts +is a poor creature." + +Prince Vasili wished to obtain this post for his son, but others +were trying through the Dowager Empress Marya Fedorovna to secure it +for the baron. + +Anna Pavlovna almost closed her eyes to indicate that neither she +nor anyone else had a right to criticize what the Empress desired or +was pleased with. + +"Baron Funke has been recommended to the Dowager Empress by her +sister," was all she said, in a dry and mournful tone. + +As she named the Empress, Anna Pavlovna's face suddenly assumed an +expression of profound and sincere devotion and respect mingled with +sadness, and this occurred every time she mentioned her illustrious +patroness. She added that Her Majesty had deigned to show Baron +Funke beaucoup d'estime, and again her face clouded over with sadness. + +The prince was silent and looked indifferent. But, with the +womanly and courtierlike quickness and tact habitual to her, Anna +Pavlovna wished both to rebuke him (for daring to speak he had done of +a man recommended to the Empress) and at the same time to console him, +so she said: + +"Now about your family. Do you know that since your daughter came +out everyone has been enraptured by her? They say she is amazingly +beautiful." + +The prince bowed to signify his respect and gratitude. + +"I often think," she continued after a short pause, drawing nearer +to the prince and smiling amiably at him as if to show that +political and social topics were ended and the time had come for +intimate conversation--"I often think how unfairly sometimes the +joys of life are distributed. Why has fate given you two such splendid +children? I don't speak of Anatole, your youngest. I don't like +him," she added in a tone admitting of no rejoinder and raising her +eyebrows. "Two such charming children. And really you appreciate +them less than anyone, and so you don't deserve to have them." + +And she smiled her ecstatic smile. + +"I can't help it," said the prince. "Lavater would have said I +lack the bump of paternity." + +"Don't joke; I mean to have a serious talk with you. Do you know I +am dissatisfied with your younger son? Between ourselves" (and her +face assumed its melancholy expression), "he was mentioned at Her +Majesty's and you were pitied...." + +The prince answered nothing, but she looked at him significantly, +awaiting a reply. He frowned. + +"What would you have me do?" he said at last. "You know I did all +a father could for their education, and they have both turned out +fools. Hippolyte is at least a quiet fool, but Anatole is an active +one. That is the only difference between them." He said this smiling +in a way more natural and animated than usual, so that the wrinkles +round his mouth very clearly revealed something unexpectedly coarse +and unpleasant. + +"And why are children born to such men as you? If you were not a +father there would be nothing I could reproach you with," said Anna +Pavlovna, looking up pensively. + +"I am your faithful slave and to you alone I can confess that my +children are the bane of my life. It is the cross I have to bear. That +is how I explain it to myself. It can't be helped!" + +He said no more, but expressed his resignation to cruel fate by a +gesture. Anna Pavlovna meditated. + +"Have you never thought of marrying your prodigal son Anatole?" +she asked. "They say old maids have a mania for matchmaking, and +though I don't feel that weakness in myself as yet, I know a little +person who is very unhappy with her father. She is a relation of +yours, Princess Mary Bolkonskaya." + +Prince Vasili did not reply, though, with the quickness of memory +and perception befitting a man of the world, he indicated by a +movement of the head that he was considering this information. + +"Do you know," he said at last, evidently unable to check the sad +current of his thoughts, "that Anatole is costing me forty thousand +rubles a year? And," he went on after a pause, "what will it be in +five years, if he goes on like this?" Presently he added: "That's what +we fathers have to put up with.... Is this princess of yours rich?" + +"Her father is very rich and stingy. He lives in the country. He +is the well-known Prince Bolkonski who had to retire from the army +under the late Emperor, and was nicknamed 'the King of Prussia.' He is +very clever but eccentric, and a bore. The poor girl is very +unhappy. She has a brother; I think you know him, he married Lise +Meinen lately. He is an aide-de-camp of Kutuzov's and will be here +tonight." + +"Listen, dear Annette," said the prince, suddenly taking Anna +Pavlovna's hand and for some reason drawing it downwards. "Arrange +that affair for me and I shall always be your most devoted slave- +slafe with an f, as a village elder of mine writes in his reports. +She is rich and of good family and that's all I want." + +And with the familiarity and easy grace peculiar to him, he raised +the maid of honor's hand to his lips, kissed it, and swung it to and +fro as he lay back in his armchair, looking in another direction. + +"Attendez," said Anna Pavlovna, reflecting, "I'll speak to Lise, +young Bolkonski's wife, this very evening, and perhaps the thing can +be arranged. It shall be on your family's behalf that I'll start my +apprenticeship as old maid." + + + + + +CHAPTER II + + +Anna Pavlovna's drawing room was gradually filling. The highest +Petersburg society was assembled there: people differing widely in age +and character but alike in the social circle to which they belonged. +Prince Vasili's daughter, the beautiful Helene, came to take her +father to the ambassador's entertainment; she wore a ball dress and +her badge as maid of honor. The youthful little Princess +Bolkonskaya, known as la femme la plus seduisante de Petersbourg,* was +also there. She had been married during the previous winter, and being +pregnant did not go to any large gatherings, but only to small +receptions. Prince Vasili's son, Hippolyte, had come with Mortemart, +whom he introduced. The Abbe Morio and many others had also come. + + +*The most fascinating woman in Petersburg. + + +To each new arrival Anna Pavlovna said, "You have not yet seen my +aunt," or "You do not know my aunt?" and very gravely conducted him or +her to a little old lady, wearing large bows of ribbon in her cap, who +had come sailing in from another room as soon as the guests began to +arrive; and slowly turning her eyes from the visitor to her aunt, Anna +Pavlovna mentioned each one's name and then left them. + +Each visitor performed the ceremony of greeting this old aunt whom +not one of them knew, not one of them wanted to know, and not one of +them cared about; Anna Pavlovna observed these greetings with mournful +and solemn interest and silent approval. The aunt spoke to each of +them in the same words, about their health and her own, and the health +of Her Majesty, "who, thank God, was better today." And each +visitor, though politeness prevented his showing impatience, left +the old woman with a sense of relief at having performed a vexatious +duty and did not return to her the whole evening. + +The young Princess Bolkonskaya had brought some work in a +gold-embroidered velvet bag. Her pretty little upper lip, on which a +delicate dark down was just perceptible, was too short for her +teeth, but it lifted all the more sweetly, and was especially charming +when she occasionally drew it down to meet the lower lip. As is always +the case with a thoroughly attractive woman, her defect--the shortness +of her upper lip and her half-open mouth--seemed to be her own special +and peculiar form of beauty. Everyone brightened at the sight of +this pretty young woman, so soon to become a mother, so full of life +and health, and carrying her burden so lightly. Old men and dull +dispirited young ones who looked at her, after being in her company +and talking to her a little while, felt as if they too were +becoming, like her, full of life and health. All who talked to her, +and at each word saw her bright smile and the constant gleam of her +white teeth, thought that they were in a specially amiable mood that +day. + +The little princess went round the table with quick, short, +swaying steps, her workbag on her arm, and gaily spreading out her +dress sat down on a sofa near the silver samovar, as if all she was +doing was a pleasure to herself and to all around her. "I have brought +my work," said she in French, displaying her bag and addressing all +present. "Mind, Annette, I hope you have not played a wicked trick +on me," she added, turning to her hostess. "You wrote that it was to +be quite a small reception, and just see how badly I am dressed." +And she spread out her arms to show her short-waisted, lace-trimmed, +dainty gray dress, girdled with a broad ribbon just below the breast. + +"Soyez tranquille, Lise, you will always be prettier than anyone +else," replied Anna Pavlovna. + +"You know," said the princess in the same tone of voice and still in +French, turning to a general, "my husband is deserting me? He is going +to get himself killed. Tell me what this wretched war is for?" she +added, addressing Prince Vasili, and without waiting for an answer she +turned to speak to his daughter, the beautiful Helene. + +"What a delightful woman this little princess is!" said Prince +Vasili to Anna Pavlovna. + +One of the next arrivals was a stout, heavily built young man with +close-cropped hair, spectacles, the light-colored breeches fashionable +at that time, a very high ruffle, and a brown dress coat. This stout +young man was an illegitimate son of Count Bezukhov, a well-known +grandee of Catherine's time who now lay dying in Moscow. The young man +had not yet entered either the military or civil service, as he had +only just returned from abroad where he had been educated, and this +was his first appearance in society. Anna Pavlovna greeted him with +the nod she accorded to the lowest hierarchy in her drawing room. +But in spite of this lowest-grade greeting, a look of anxiety and +fear, as at the sight of something too large and unsuited to the +place, came over her face when she saw Pierre enter. Though he was +certainly rather bigger than the other men in the room, her anxiety +could only have reference to the clever though shy, but observant +and natural, expression which distinguished him from everyone else +in that drawing room. + +"It is very good of you, Monsieur Pierre, to come and visit a poor +invalid," said Anna Pavlovna, exchanging an alarmed glance with her +aunt as she conducted him to her. + +Pierre murmured something unintelligible, and continued to look +round as if in search of something. On his way to the aunt he bowed to +the little princess with a pleased smile, as to an intimate +acquaintance. + +Anna Pavlovna's alarm was justified, for Pierre turned away from the +aunt without waiting to hear her speech about Her Majesty's health. +Anna Pavlovna in dismay detained him with the words: "Do you know +the Abbe Morio? He is a most interesting man." + +"Yes, I have heard of his scheme for perpetual peace, and it is very +interesting but hardly feasible." + +"You think so?" rejoined Anna Pavlovna in order to say something and +get away to attend to her duties as hostess. But Pierre now +committed a reverse act of impoliteness. First he had left a lady +before she had finished speaking to him, and now he continued to speak +to another who wished to get away. With his head bent, and his big +feet spread apart, he began explaining his reasons for thinking the +abbe's plan chimerical. + +"We will talk of it later," said Anna Pavlovna with a smile. + +And having got rid of this young man who did not know how to behave, +she resumed her duties as hostess and continued to listen and watch, +ready to help at any point where the conversation might happen to +flag. As the foreman of a spinning mill, when he has set the hands +to work, goes round and notices here a spindle that has stopped or +there one that creaks or makes more noise than it should, and +hastens to check the machine or set it in proper motion, so Anna +Pavlovna moved about her drawing room, approaching now a silent, now a +too-noisy group, and by a word or slight rearrangement kept the +conversational machine in steady, proper, and regular motion. But amid +these cares her anxiety about Pierre was evident. She kept an +anxious watch on him when he approached the group round Mortemart to +listen to what was being said there, and again when he passed to +another group whose center was the abbe. + +Pierre had been educated abroad, and this reception at Anna +Pavlovna's was the first he had attended in Russia. He knew that all +the intellectual lights of Petersburg were gathered there and, like +a child in a toyshop, did not know which way to look, afraid of +missing any clever conversation that was to be heard. Seeing the +self-confident and refined expression on the faces of those present he +was always expecting to hear something very profound. At last he +came up to Morio. Here the conversation seemed interesting and he +stood waiting for an opportunity to express his own views, as young +people are fond of doing. + + + + +CHAPTER III + + +Anna Pavlovna's reception was in full swing. The spindles hummed +steadily and ceaselessly on all sides. With the exception of the aunt, +beside whom sat only one elderly lady, who with her thin careworn face +was rather out of place in this brilliant society, the whole company +had settled into three groups. One, chiefly masculine, had formed +round the abbe. Another, of young people, was grouped round the +beautiful Princess Helene, Prince Vasili's daughter, and the little +Princess Bolkonskaya, very pretty and rosy, though rather too plump +for her age. The third group was gathered round Mortemart and Anna +Pavlovna. + +The vicomte was a nice-looking young man with soft features and +polished manners, who evidently considered himself a celebrity but out +of politeness modestly placed himself at the disposal of the circle in +which he found himself. Anna Pavlovna was obviously serving him up +as a treat to her guests. As a clever maitre d'hotel serves up as a +specially choice delicacy a piece of meat that no one who had seen +it in the kitchen would have cared to eat, so Anna Pavlovna served +up to her guests, first the vicomte and then the abbe, as peculiarly +choice morsels. The group about Mortemart immediately began discussing +the murder of the Duc d'Enghien. The vicomte said that the Duc +d'Enghien had perished by his own magnanimity, and that there were +particular reasons for Buonaparte's hatred of him. + +"Ah, yes! Do tell us all about it, Vicomte," said Anna Pavlovna, +with a pleasant feeling that there was something a la Louis XV in +the sound of that sentence: "Contez nous cela, Vicomte." + +The vicomte bowed and smiled courteously in token of his willingness +to comply. Anna Pavlovna arranged a group round him, inviting everyone +to listen to his tale. + +"The vicomte knew the duc personally," whispered Anna Pavlovna to of +the guests. "The vicomte is a wonderful raconteur," said she to +another. "How evidently he belongs to the best society," said she to a +third; and the vicomte was served up to the company in the choicest +and most advantageous style, like a well-garnished joint of roast beef +on a hot dish. + +The vicomte wished to begin his story and gave a subtle smile. + +"Come over here, Helene, dear," said Anna Pavlovna to the +beautiful young princess who was sitting some way off, the center of +another group. + +The princess smiled. She rose with the same unchanging smile with +which she had first entered the room--the smile of a perfectly +beautiful woman. With a slight rustle of her white dress trimmed +with moss and ivy, with a gleam of white shoulders, glossy hair, and +sparkling diamonds, she passed between the men who made way for her, +not looking at any of them but smiling on all, as if graciously +allowing each the privilege of admiring her beautiful figure and +shapely shoulders, back, and bosom--which in the fashion of those days +were very much exposed--and she seemed to bring the glamour of a +ballroom with her as she moved toward Anna Pavlovna. Helene was so +lovely that not only did she not show any trace of coquetry, but on +the contrary she even appeared shy of her unquestionable and all too +victorious beauty. She seemed to wish, but to be unable, to diminish +its effect. + +"How lovely!" said everyone who saw her; and the vicomte lifted +his shoulders and dropped his eyes as if startled by something +extraordinary when she took her seat opposite and beamed upon him also +with her unchanging smile. + +"Madame, I doubt my ability before such an audience," said he, +smilingly inclining his head. + +The princess rested her bare round arm on a little table and +considered a reply unnecessary. She smilingly waited. All the time the +story was being told she sat upright, glancing now at her beautiful +round arm, altered in shape by its pressure on the table, now at her +still more beautiful bosom, on which she readjusted a diamond +necklace. From time to time she smoothed the folds of her dress, and +whenever the story produced an effect she glanced at Anna Pavlovna, at +once adopted just the expression she saw on the maid of honor's +face, and again relapsed into her radiant smile. + +The little princess had also left the tea table and followed Helene. + +"Wait a moment, I'll get my work.... Now then, what are you thinking +of?" she went on, turning to Prince Hippolyte. "Fetch me my workbag." + +There was a general movement as the princess, smiling and talking +merrily to everyone at once, sat down and gaily arranged herself in +her seat. + +"Now I am all right," she said, and asking the vicomte to begin, she +took up her work. + +Prince Hippolyte, having brought the workbag, joined the circle +and moving a chair close to hers seated himself beside her. + +Le charmant Hippolyte was surprising by his extraordinary +resemblance to his beautiful sister, but yet more by the fact that +in spite of this resemblance he was exceedingly ugly. His features +were like his sister's, but while in her case everything was lit up by +a joyous, self-satisfied, youthful, and constant smile of animation, +and by the wonderful classic beauty of her figure, his face on the +contrary was dulled by imbecility and a constant expression of +sullen self-confidence, while his body was thin and weak. His eyes, +nose, and mouth all seemed puckered into a vacant, wearied grimace, +and his arms and legs always fell into unnatural positions. + +"It's not going to be a ghost story?" said he, sitting down beside +the princess and hastily adjusting his lorgnette, as if without this +instrument he could not begin to speak. + +"Why no, my dear fellow," said the astonished narrator, shrugging +his shoulders. + +"Because I hate ghost stories," said Prince Hippolyte in a tone +which showed that he only understood the meaning of his words after he +had uttered them. + +He spoke with such self-confidence that his hearers could not be +sure whether what he said was very witty or very stupid. He was +dressed in a dark-green dress coat, knee breeches of the color of +cuisse de nymphe effrayee, as he called it, shoes, and silk stockings. + +The vicomte told his tale very neatly. It was an anecdote, then +current, to the effect that the Duc d'Enghien had gone secretly to +Paris to visit Mademoiselle George; that at her house he came upon +Bonaparte, who also enjoyed the famous actress' favors, and that in +his presence Napoleon happened to fall into one of the fainting fits +to which he was subject, and was thus at the duc's mercy. The latter +spared him, and this magnanimity Bonaparte subsequently repaid by +death. + +The story was very pretty and interesting, especially at the point +where the rivals suddenly recognized one another; and the ladies +looked agitated. + +"Charming!" said Anna Pavlovna with an inquiring glance at the +little princess. + +"Charming!" whispered the little princess, sticking the needle +into her work as if to testify that the interest and fascination of +the story prevented her from going on with it. + +The vicomte appreciated this silent praise and smiling gratefully +prepared to continue, but just then Anna Pavlovna, who had kept a +watchful eye on the young man who so alarmed her, noticed that he +was talking too loudly and vehemently with the abbe, so she hurried to +the rescue. Pierre had managed to start a conversation with the abbe +about the balance of power, and the latter, evidently interested by +the young man's simple-minded eagerness, was explaining his pet +theory. Both were talking and listening too eagerly and too naturally, +which was why Anna Pavlovna disapproved. + +"The means are... the balance of power in Europe and the rights of +the people," the abbe was saying. "It is only necessary for one +powerful nation like Russia--barbaric as she is said to be--to place +herself disinterestedly at the head of an alliance having for its +object the maintenance of the balance of power of Europe, and it would +save the world!" + +"But how are you to get that balance?" Pierre was beginning. + +At that moment Anna Pavlovna came up and, looking severely at +Pierre, asked the Italian how he stood Russian climate. The +Italian's face instantly changed and assumed an offensively +affected, sugary expression, evidently habitual to him when conversing +with women. + +"I am so enchanted by the brilliancy of the wit and culture of the +society, more especially of the feminine society, in which I have +had the honor of being received, that I have not yet had time to think +of the climate," said he. + +Not letting the abbe and Pierre escape, Anna Pavlovna, the more +conveniently to keep them under observation, brought them into the +larger circle. + + + + + +CHAPTER IV + + +Just then another visitor entered the drawing room: Prince Andrew +Bolkonski, the little princess' husband. He was a very handsome +young man, of medium height, with firm, clearcut features. +Everything about him, from his weary, bored expression to his quiet, +measured step, offered a most striking contrast to his quiet, little +wife. It was evident that he not only knew everyone in the drawing +room, but had found them to be so tiresome that it wearied him to look +at or listen to them. And among all these faces that he found so +tedious, none seemed to bore him so much as that of his pretty wife. +He turned away from her with a grimace that distorted his handsome +face, kissed Anna Pavlovna's hand, and screwing up his eyes scanned +the whole company. + +"You are off to the war, Prince?" said Anna Pavlovna. + +"General Kutuzov," said Bolkonski, speaking French and stressing the +last syllable of the general's name like a Frenchman, "has been +pleased to take me as an aide-de-camp...." + +"And Lise, your wife?" + +"She will go to the country." + +"Are you not ashamed to deprive us of your charming wife?" + +"Andre," said his wife, addressing her husband in the same +coquettish manner in which she spoke to other men, "the vicomte has +been telling us such a tale about Mademoiselle George and Buonaparte!" + +Prince Andrew screwed up his eyes and turned away. Pierre, who +from the moment Prince Andrew entered the room had watched him with +glad, affectionate eyes, now came up and took his arm. Before he +looked round Prince Andrew frowned again, expressing his annoyance +with whoever was touching his arm, but when he saw Pierre's beaming +face he gave him an unexpectedly kind and pleasant smile. + +"There now!... So you, too, are in the great world?" said he to +Pierre. + +"I knew you would be here," replied Pierre. "I will come to supper +with you. May I?" he added in a low voice so as not to disturb the +vicomte who was continuing his story. + +"No, impossible!" said Prince Andrew, laughing and pressing Pierre's +hand to show that there was no need to ask the question. He wished +to say something more, but at that moment Prince Vasili and his +daughter got up to go and the two young men rose to let them pass. + +"You must excuse me, dear Vicomte," said Prince Vasili to the +Frenchman, holding him down by the sleeve in a friendly way to prevent +his rising. "This unfortunate fete at the ambassador's deprives me +of a pleasure, and obliges me to interrupt you. I am very sorry to +leave your enchanting party," said he, turning to Anna Pavlovna. + +His daughter, Princess Helene, passed between the chairs, lightly +holding up the folds of her dress, and the smile shone still more +radiantly on her beautiful face. Pierre gazed at her with rapturous, +almost frightened, eyes as she passed him. + +"Very lovely," said Prince Andrew. + +"Very," said Pierre. + +In passing Prince Vasili seized Pierre's hand and said to Anna +Pavlovna: "Educate this bear for me! He has been staying with me a +whole month and this is the first time I have seen him in society. +Nothing is so necessary for a young man as the society of clever +women." + + +Anna Pavlovna smiled and promised to take Pierre in hand. She knew +his father to be a connection of Prince Vasili's. The elderly lady who +had been sitting with the old aunt rose hurriedly and overtook +Prince Vasili in the anteroom. All the affectation of interest she had +assumed had left her kindly and tearworn face and it now expressed +only anxiety and fear. + +"How about my son Boris, Prince?" said she, hurrying after him +into the anteroom. "I can't remain any longer in Petersburg. Tell me +what news I may take back to my poor boy." + + +Although Prince Vasili listened reluctantly and not very politely to +the elderly lady, even betraying some impatience, she gave him an +ingratiating and appealing smile, and took his hand that he might +not go away. + +"What would it cost you to say a word to the Emperor, and then he +would be transferred to the Guards at once?" said she. + +"Believe me, Princess, I am ready to do all I can," answered +Prince Vasili, "but it is difficult for me to ask the Emperor. I +should advise you to appeal to Rumyantsev through Prince Golitsyn. +That would be the best way." + +The elderly lady was a Princess Drubetskaya, belonging to one of the +best families in Russia, but she was poor, and having long been out of +society had lost her former influential connections. She had now +come to Petersburg to procure an appointment in the Guards for her +only son. It was, in fact, solely to meet Prince Vasili that she had +obtained an invitation to Anna Pavlovna's reception and had sat +listening to the vicomte's story. Prince Vasili's words frightened +her, an embittered look clouded her once handsome face, but only for a +moment; then she smiled again and clutched Prince Vasili's arm more +tightly. + +"Listen to me, Prince," said she. "I have never yet asked you for +anything and I never will again, nor have I ever reminded you of my +father's friendship for you; but now I entreat you for God's sake to +do this for my son--and I shall always regard you as a benefactor," +she added hurriedly. "No, don't be angry, but promise! I have asked +Golitsyn and he has refused. Be the kindhearted man you always +were," she said, trying to smile though tears were in her eyes. + +"Papa, we shall be late," said Princess Helene, turning her +beautiful head and looking over her classically molded shoulder as she +stood waiting by the door. + +Influence in society, however, is a capital which has to be +economized if it is to last. Prince Vasili knew this, and having +once realized that if he asked on behalf of all who begged of him, +he would soon be unable to ask for himself, he became chary of using +his influence. But in Princess Drubetskaya's case he felt, after her +second appeal, something like qualms of conscience. She had reminded +him of what was quite true; he had been indebted to her father for the +first steps in his career. Moreover, he could see by her manners +that she was one of those women--mostly mothers--who, having once made +up their minds, will not rest until they have gained their end, and +are prepared if necessary to go on insisting day after day and hour +after hour, and even to make scenes. This last consideration moved +him. + +"My dear Anna Mikhaylovna," said he with his usual familiarity and +weariness of tone, "it is almost impossible for me to do what you ask; +but to prove my devotion to you and how I respect your father's +memory, I will do the impossible--your son shall be transferred to the +Guards. Here is my hand on it. Are you satisfied?" + +"My dear benefactor! This is what I expected from you--I knew your +kindness!" He turned to go. + +"Wait--just a word! When he has been transferred to the Guards..." +she faltered. "You are on good terms with Michael Ilarionovich +Kutuzov... recommend Boris to him as adjutant! Then I shall be at +rest, and then..." + +Prince Vasili smiled. + +"No, I won't promise that. You don't know how Kutuzov is pestered +since his appointment as Commander in Chief. He told me himself that +all the Moscow ladies have conspired to give him all their sons as +adjutants." + +"No, but do promise! I won't let you go! My dear benefactor..." + +"Papa," said his beautiful daughter in the same tone as before, +"we shall be late." + +"Well, au revoir! Good-by! You hear her?" + +"Then tomorrow you will speak to the Emperor?" + +"Certainly; but about Kutuzov, I don't promise." + +"Do promise, do promise, Vasili!" cried Anna Mikhaylovna as he went, +with the smile of a coquettish girl, which at one time probably came +naturally to her, but was now very ill-suited to her careworn face. + +Apparently she had forgotten her age and by force of habit +employed all the old feminine arts. But as soon as the prince had gone +her face resumed its former cold, artificial expression. She +returned to the group where the vicomte was still talking, and again +pretended to listen, while waiting till it would be time to leave. Her +task was accomplished. + + + + + +CHAPTER V + + +"And what do you think of this latest comedy, the coronation at +Milan?" asked Anna Pavlovna, "and of the comedy of the people of Genoa +and Lucca laying their petitions before Monsieur Buonaparte, and +Monsieur Buonaparte sitting on a throne and granting the petitions +of the nations? Adorable! It is enough to make one's head whirl! It is +as if the whole world had gone crazy." + +Prince Andrew looked Anna Pavlovna straight in the face with a +sarcastic smile. + +"'Dieu me la donne, gare a qui la touche!'* They say he was very +fine when he said that," he remarked, repeating the words in +Italian: "'Dio mi l'ha dato. Guai a chi la tocchi!'" + + +*God has given it to me, let him who touches it beware! + + +"I hope this will prove the last drop that will make the glass run +over," Anna Pavlovna continued. "The sovereigns will not be able to +endure this man who is a menace to everything." + +"The sovereigns? I do not speak of Russia," said the vicomte, polite +but hopeless: "The sovereigns, madame... What have they done for Louis +XVII, for the Queen, or for Madame Elizabeth? Nothing!" and he +became more animated. "And believe me, they are reaping the reward +of their betrayal of the Bourbon cause. The sovereigns! Why, they +are sending ambassadors to compliment the usurper." + +And sighing disdainfully, he again changed his position. + +Prince Hippolyte, who had been gazing at the vicomte for some time +through his lorgnette, suddenly turned completely round toward the +little princess, and having asked for a needle began tracing the Conde +coat of arms on the table. He explained this to her with as much +gravity as if she had asked him to do it. + +"Baton de gueules, engrele de gueules d' azur--maison Conde," said +he. + +The princess listened, smiling. + +"If Buonaparte remains on the throne of France a year longer," the +vicomte continued, with the air of a man who, in a matter with which +he is better acquainted than anyone else, does not listen to others +but follows the current of his own thoughts, "things will have gone +too far. By intrigues, violence, exile, and executions, French +society--I mean good French society--will have been forever destroyed, +and then..." + +He shrugged his shoulders and spread out his hands. Pierre wished to +make a remark, for the conversation interested him, but Anna Pavlovna, +who had him under observation, interrupted: + +"The Emperor Alexander," said she, with the melancholy which +always accompanied any reference of hers to the Imperial family, + +"has declared that he will leave it to the French people themselves to +choose their own form of government; and I believe that once free from +the usurper, the whole nation will certainly throw itself into the +arms of its rightful king," she concluded, trying to be amiable to the +royalist emigrant. + +"That is doubtful," said Prince Andrew. "Monsieur le Vicomte quite +rightly supposes that matters have already gone too far. I think it +will be difficult to return to the old regime." + +"From what I have heard," said Pierre, blushing and breaking into +the conversation, "almost all the aristocracy has already gone over to +Bonaparte's side." + +"It is the Buonapartists who say that," replied the vicomte +without looking at Pierre. "At the present time it is difficult to +know the real state of French public opinion." + +"Bonaparte has said so," remarked Prince Andrew with a sarcastic +smile. + +It was evident that he did not like the vicomte and was aiming his +remarks at him, though without looking at him. + +"'I showed them the path to glory, but they did not follow it,'" +Prince Andrew continued after a short silence, again quoting +Napoleon's words. "'I opened my antechambers and they crowded in.' I +do not know how far he was justified in saying so." + +"Not in the least," replied the vicomte. "After the murder of the +duc even the most partial ceased to regard him as a hero. If to some +people," he went on, turning to Anna Pavlovna, "he ever was a hero, +after the murder of the duc there was one martyr more in heaven and +one hero less on earth." + +Before Anna Pavlovna and the others had time to smile their +appreciation of the vicomte's epigram, Pierre again broke into the +conversation, and though Anna Pavlovna felt sure he would say +something inappropriate, she was unable to stop him. + +"The execution of the Duc d'Enghien," declared Monsieur Pierre, "was +a political necessity, and it seems to me that Napoleon showed +greatness of soul by not fearing to take on himself the whole +responsibility of that deed." + +"Dieu! Mon Dieu!" muttered Anna Pavlovna in a terrified whisper. + +"What, Monsieur Pierre... Do you consider that assassination shows +greatness of soul?" said the little princess, smiling and drawing +her work nearer to her. + +"Oh! Oh!" exclaimed several voices. + +"Capital!" said Prince Hippolyte in English, and began slapping +his knee with the palm of his hand. + +The vicomte merely shrugged his shoulders. Pierre looked solemnly at +his audience over his spectacles and continued. + +"I say so," he continued desperately, "because the Bourbons fled +from the Revolution leaving the people to anarchy, and Napoleon +alone understood the Revolution and quelled it, and so for the general +good, he could not stop short for the sake of one man's life." + +"Won't you come over to the other table?" suggested Anna Pavlovna. + +But Pierre continued his speech without heeding her. + +"No," cried he, becoming more and more eager, "Napoleon is great +because he rose superior to the Revolution, suppressed its abuses, +preserved all that was good in it--equality of citizenship and freedom +of speech and of the press--and only for that reason did he obtain +power." + +"Yes, if having obtained power, without availing himself of it to +commit murder he had restored it to the rightful king, I should have +called him a great man," remarked the vicomte. + +"He could not do that. The people only gave him power that he +might rid them of the Bourbons and because they saw that he was a +great man. The Revolution was a grand thing!" continued Monsieur +Pierre, betraying by this desperate and provocative proposition his +extreme youth and his wish to express all that was in his mind. + +"What? Revolution and regicide a grand thing?... Well, after that... +But won't you come to this other table?" repeated Anna Pavlovna. + +"Rousseau's Contrat social," said the vicomte with a tolerant smile. + +"I am not speaking of regicide, I am speaking about ideas." + +"Yes: ideas of robbery, murder, and regicide," again interjected +an ironical voice. + +"Those were extremes, no doubt, but they are not what is most +important. What is important are the rights of man, emancipation +from prejudices, and equality of citizenship, and all these ideas +Napoleon has retained in full force." + +"Liberty and equality," said the vicomte contemptuously, as if at +last deciding seriously to prove to this youth how foolish his words +were, "high-sounding words which have long been discredited. Who +does not love liberty and equality? Even our Saviour preached +liberty and equality. Have people since the Revolution become happier? +On the contrary. We wanted liberty, but Buonaparte has destroyed it." + +Prince Andrew kept looking with an amused smile from Pierre to the +vicomte and from the vicomte to their hostess. In the first moment +of Pierre's outburst Anna Pavlovna, despite her social experience, was +horror-struck. But when she saw that Pierre's sacrilegious words had +not exasperated the vicomte, and had convinced herself that it was +impossible to stop him, she rallied her forces and joined the +vicomte in a vigorous attack on the orator. + +"But, my dear Monsieur Pierre," said she, "how do you explain the +fact of a great man executing a duc--or even an ordinary man who--is +innocent and untried?" + +"I should like," said the vicomte, "to ask how monsieur explains the +18th Brumaire; was not that an imposture? It was a swindle, and not at +all like the conduct of a great man!" + +"And the prisoners he killed in Africa? That was horrible!" said the +little princess, shrugging her shoulders. + +"He's a low fellow, say what you will," remarked Prince Hippolyte. + +Pierre, not knowing whom to answer, looked at them all and smiled. +His smile was unlike the half-smile of other people. When he smiled, +his grave, even rather gloomy, look was instantaneously replaced by +another--a childlike, kindly, even rather silly look, which seemed +to ask forgiveness. + +The vicomte who was meeting him for the first time saw clearly +that this young Jacobin was not so terrible as his words suggested. +All were silent. + +"How do you expect him to answer you all at once?" said Prince +Andrew. "Besides, in the actions of a statesman one has to distinguish +between his acts as a private person, as a general, and as an emperor. +So it seems to me." + +"Yes, yes, of course!" Pierre chimed in, pleased at the arrival of +this reinforcement. + +"One must admit," continued Prince Andrew, "that Napoleon as a man +was great on the bridge of Arcola, and in the hospital at Jaffa +where he gave his hand to the plague-stricken; but... but there are +other acts which it is difficult to justify." + +Prince Andrew, who had evidently wished to tone down the awkwardness +of Pierre's remarks, rose and made a sign to his wife that it was time +to go. + + +Suddenly Prince Hippolyte started up making signs to everyone to +attend, and asking them all to be seated began: + +"I was told a charming Moscow story today and must treat you to +it. Excuse me, Vicomte--I must tell it in Russian or the point will be +lost...." And Prince Hippolyte began to tell his story in such Russian +as a Frenchman would speak after spending about a year in Russia. +Everyone waited, so emphatically and eagerly did he demand their +attention to his story. + +"There is in Moscow a lady, une dame, and she is very stingy. She +must have two footmen behind her carriage, and very big ones. That was +her taste. And she had a lady's maid, also big. She said..." + +Here Prince Hippolyte paused, evidently collecting his ideas with +difficulty. + +"She said... Oh yes! She said, 'Girl,' to the maid, 'put on a +livery, get up behind the carriage, and come with me while I make some +calls.'" + +Here Prince Hippolyte spluttered and burst out laughing long +before his audience, which produced an effect unfavorable to the +narrator. Several persons, among them the elderly lady and Anna +Pavlovna, did however smile. + +"She went. Suddenly there was a great wind. The girl lost her hat +and her long hair came down...." Here he could contain himself no +longer and went on, between gasps of laughter: "And the whole world +knew...." + +And so the anecdote ended. Though it was unintelligible why he had +told it, or why it had to be told in Russian, still Anna Pavlovna +and the others appreciated Prince Hippolyte's social tact in so +agreeably ending Pierre's unpleasant and unamiable outburst. After the +anecdote the conversation broke up into insignificant small talk about +the last and next balls, about theatricals, and who would meet whom, +and when and where. + + + + + +CHAPTER VI + + +Having thanked Anna Pavlovna for her charming soiree, the guests +began to take their leave. + +Pierre was ungainly. Stout, about the average height, broad, with +huge red hands; he did not know, as the saying is, how to enter a +drawing room and still less how to leave one; that is, how to say +something particularly agreeable before going away. Besides this he +was absent-minded. When he rose to go, he took up instead of his +own, the general's three-cornered hat, and held it, pulling at the +plume, till the general asked him to restore it. All his +absent-mindedness and inability to enter a room and converse in it +was, however, redeemed by his kindly, simple, and modest expression. +Anna Pavlovna turned toward him and, with a Christian mildness that +expressed forgiveness of his indiscretion, nodded and said: "I hope to +see you again, but I also hope you will change your opinions, my +dear Monsieur Pierre." + +When she said this, he did not reply and only bowed, but again +everybody saw his smile, which said nothing, unless perhaps, "Opinions +are opinions, but you see what a capital, good-natured fellow I am." +And everyone, including Anna Pavlovna, felt this. + +Prince Andrew had gone out into the hall, and, turning his shoulders +to the footman who was helping him on with his cloak, listened +indifferently to his wife's chatter with Prince Hippolyte who had also +come into the hall. Prince Hippolyte stood close to the pretty, +pregnant princess, and stared fixedly at her through his eyeglass. + +"Go in, Annette, or you will catch cold," said the little +princess, taking leave of Anna Pavlovna. "It is settled," she added in +a low voice. + +Anna Pavlovna had already managed to speak to Lise about the match +she contemplated between Anatole and the little princess' +sister-in-law. + +"I rely on you, my dear," said Anna Pavlovna, also in a low tone. +"Write to her and let me know how her father looks at the matter. Au +revoir!"--and she left the hall. + +Prince Hippolyte approached the little princess and, bending his +face close to her, began to whisper something. + +Two footmen, the princess' and his own, stood holding a shawl and +a cloak, waiting for the conversation to finish. They listened to +the French sentences which to them were meaningless, with an air of +understanding but not wishing to appear to do so. The princess as +usual spoke smilingly and listened with a laugh. + +"I am very glad I did not go to the ambassador's," said Prince +Hippolyte "-so dull-. It has been a delightful evening, has it not? +Delightful!" + +"They say the ball will be very good," replied the princess, drawing +up her downy little lip. "All the pretty women in society will be +there." + +"Not all, for you will not be there; not all," said Prince Hippolyte +smiling joyfully; and snatching the shawl from the footman, whom he +even pushed aside, he began wrapping it round the princess. Either +from awkwardness or intentionally (no one could have said which) after +the shawl had been adjusted he kept his arm around her for a long +time, as though embracing her. + +Still smiling, she gracefully moved away, turning and glancing at +her husband. Prince Andrew's eyes were closed, so weary and sleepy did +he seem. + +"Are you ready?" he asked his wife, looking past her. + +Prince Hippolyte hurriedly put on his cloak, which in the latest +fashion reached to his very heels, and, stumbling in it, ran out +into the porch following the princess, whom a footman was helping into +the carriage. + +"Princesse, au revoir," cried he, stumbling with his tongue as +well as with his feet. + +The princess, picking up her dress, was taking her seat in the +dark carriage, her husband was adjusting his saber; Prince +Hippolyte, under pretense of helping, was in everyone's way. + +"Allow me, sir," said Prince Andrew in Russian in a cold, +disagreeable tone to Prince Hippolyte who was blocking his path. + +"I am expecting you, Pierre," said the same voice, but gently and +affectionately. + +The postilion started, the carriage wheels rattled. Prince Hippolyte +laughed spasmodically as he stood in the porch waiting for the vicomte +whom he had promised to take home. + +"Well, mon cher," said the vicomte, having seated himself beside +Hippolyte in the carriage, "your little princess is very nice, very +nice indeed, quite French," and he kissed the tips of his fingers. +Hippolyte burst out laughing. + +"Do you know, you are a terrible chap for all your innocent airs," +continued the vicomte. "I pity the poor husband, that little officer +who gives himself the airs of a monarch." + +Hippolyte spluttered again, and amid his laughter said, "And you +were saying that the Russian ladies are not equal to the French? One +has to know how to deal with them." + + +Pierre reaching the house first went into Prince Andrew's study like +one quite at home, and from habit immediately lay down on the sofa, +took from the shelf the first book that came to his hand (it was +Caesar's Commentaries), and resting on his elbow, began reading it +in the middle. + +"What have you done to Mlle Scherer? She will be quite ill now," +said Prince Andrew, as he entered the study, rubbing his small white +hands. + +Pierre turned his whole body, making the sofa creak. He lifted his +eager face to Prince Andrew, smiled, and waved his hand. + +"That abbe is very interesting but he does not see the thing in +the right light.... In my opinion perpetual peace is possible but--I +do not know how to express it... not by a balance of political +power...." + +It was evident that Prince Andrew was not interested in such +abstract conversation. + +"One can't everywhere say all one thinks, mon cher. Well, have you +at last decided on anything? Are you going to be a guardsman or a +diplomatist?" asked Prince Andrew after a momentary silence. + +Pierre sat up on the sofa, with his legs tucked under him. + +"Really, I don't yet know. I don't like either the one or the +other." + +"But you must decide on something! Your father expects it." + +Pierre at the age of ten had been sent abroad with an abbe as tutor, +and had remained away till he was twenty. When he returned to Moscow +his father dismissed the abbe and said to the young man, "Now go to +Petersburg, look round, and choose your profession. I will agree to +anything. Here is a letter to Prince Vasili, and here is money. +Write to me all about it, and I will help you in everything." Pierre +had already been choosing a career for three months, and had not +decided on anything. It was about this choice that Prince Andrew was +speaking. Pierre rubbed his forehead. + +"But he must be a Freemason," said he, referring to the abbe whom he +had met that evening. + +"That is all nonsense." Prince Andrew again interrupted him, "let us +talk business. Have you been to the Horse Guards?" + +"No, I have not; but this is what I have been thinking and wanted to +tell you. There is a war now against Napoleon. If it were a war for +freedom I could understand it and should be the first to enter the +army; but to help England and Austria against the greatest man in +the world is not right." + +Prince Andrew only shrugged his shoulders at Pierre's childish +words. He put on the air of one who finds it impossible to reply to +such nonsense, but it would in fact have been difficult to give any +other answer than the one Prince Andrew gave to this naive question. + +"If no one fought except on his own conviction, there would be no +wars," he said. + +"And that would be splendid," said Pierre. + +Prince Andrew smiled ironically. + +"Very likely it would be splendid, but it will never come about..." + +"Well, why are you going to the war?" asked Pierre. + +"What for? I don't know. I must. Besides that I am going..." He +paused. "I am going because the life I am leading here does not suit +me!" + + + + + +CHAPTER VII + + +The rustle of a woman's dress was heard in the next room. Prince +Andrew shook himself as if waking up, and his face assumed the look it +had had in Anna Pavlovna's drawing room. Pierre removed his feet +from the sofa. The princess came in. She had changed her gown for a +house dress as fresh and elegant as the other. Prince Andrew rose +and politely placed a chair for her. + +"How is it," she began, as usual in French, settling down briskly +and fussily in the easy chair, "how is it Annette never got married? +How stupid you men all are not to have married her! Excuse me for +saying so, but you have no sense about women. What an argumentative +fellow you are, Monsieur Pierre!" + +"And I am still arguing with your husband. I can't understand why he +wants to go to the war," replied Pierre, addressing the princess +with none of the embarrassment so commonly shown by young men in their +intercourse with young women. + +The princess started. Evidently Pierre's words touched her to the +quick. + +"Ah, that is just what I tell him!" said she. "I don't understand +it; I don't in the least understand why men can't live without wars. +How is it that we women don't want anything of the kind, don't need +it? Now you shall judge between us. I always tell him: Here he is +Uncle's aide-de-camp, a most brilliant position. He is so well +known, so much appreciated by everyone. The other day at the +Apraksins' I heard a lady asking, 'Is that the famous Prince +Andrew?' I did indeed." She laughed. "He is so well received +everywhere. He might easily become aide-de-camp to the Emperor. You +know the Emperor spoke to him most graciously. Annette and I were +speaking of how to arrange it. What do you think?" + +Pierre looked at his friend and, noticing that he did not like the +conversation, gave no reply. + +"When are you starting?" he asked. + +"Oh, don't speak of his going, don't! I won't hear it spoken of," +said the princess in the same petulantly playful tone in which she had +spoken to Hippolyte in the drawing room and which was so plainly +ill-suited to the family circle of which Pierre was almost a member. +"Today when I remembered that all these delightful associations must +be broken off... and then you know, Andre..." (she looked +significantly at her husband) "I'm afraid, I'm afraid!" she whispered, +and a shudder ran down her back. + +Her husband looked at her as if surprised to notice that someone +besides Pierre and himself was in the room, and addressed her in a +tone of frigid politeness. + +"What is it you are afraid of, Lise? I don't understand," said he. + +"There, what egotists men all are: all, all egotists! Just for a +whim of his own, goodness only knows why, he leaves me and locks me up +alone in the country." + +"With my father and sister, remember," said Prince Andrew gently. + +"Alone all the same, without my friends.... And he expects me not to +be afraid." + +Her tone was now querulous and her lip drawn up, giving her not a +joyful, but an animal, squirrel-like expression. She paused as if +she felt it indecorous to speak of her pregnancy before Pierre, though +the gist of the matter lay in that. + +"I still can't understand what you are afraid of," said Prince +Andrew slowly, not taking his eyes off his wife. + +The princess blushed, and raised her arms with a gesture of despair. + +"No, Andrew, I must say you have changed. Oh, how you have..." + +"Your doctor tells you to go to bed earlier," said Prince Andrew. +"You had better go." + +The princess said nothing, but suddenly her short downy lip +quivered. Prince Andrew rose, shrugged his shoulders, and walked about +the room. + +Pierre looked over his spectacles with naive surprise, now at him +and now at her, moved as if about to rise too, but changed his mind. + +"Why should I mind Monsieur Pierre being here?" exclaimed the little +princess suddenly, her pretty face all at once distorted by a +tearful grimace. "I have long wanted to ask you, Andrew, why you +have changed so to me? What have I done to you? You are going to the +war and have no pity for me. Why is it?" + +"Lise!" was all Prince Andrew said. But that one word expressed an +entreaty, a threat, and above all conviction that she would herself +regret her words. But she went on hurriedly: + +"You treat me like an invalid or a child. I see it all! Did you +behave like that six months ago?" + +"Lise, I beg you to desist," said Prince Andrew still more +emphatically. + +Pierre, who had been growing more and more agitated as he listened +to all this, rose and approached the princess. He seemed unable to +bear the sight of tears and was ready to cry himself. + +"Calm yourself, Princess! It seems so to you because... I assure you +I myself have experienced... and so... because... No, excuse me! An +outsider is out of place here... No, don't distress yourself... +Good-by!" + +Prince Andrew caught him by the hand. + +"No, wait, Pierre! The princess is too kind to wish to deprive me of +the pleasure of spending the evening with you." + +"No, he thinks only of himself," muttered the princess without +restraining her angry tears. + +"Lise!" said Prince Andrew dryly, raising his voice to the pitch +which indicates that patience is exhausted. + +Suddenly the angry, squirrel-like expression of the princess' pretty +face changed into a winning and piteous look of fear. Her beautiful +eyes glanced askance at her husband's face, and her own assumed the +timid, deprecating expression of a dog when it rapidly but feebly wags +its drooping tail. + +"Mon Dieu, mon Dieu!" she muttered, and lifting her dress with one +hand she went up to her husband and kissed him on the forehead. + +"Good night, Lise," said he, rising and courteously kissing her hand +as he would have done to a stranger. + + + + + +CHAPTER VIII + + +The friends were silent. Neither cared to begin talking. Pierre +continually glanced at Prince Andrew; Prince Andrew rubbed his +forehead with his small hand. + +"Let us go and have supper," he said with a sigh, going to the door. + +They entered the elegant, newly decorated, and luxurious dining +room. Everything from the table napkins to the silver, china, and +glass bore that imprint of newness found in the households of the +newly married. Halfway through supper Prince Andrew leaned his +elbows on the table and, with a look of nervous agitation such as +Pierre had never before seen on his face, began to talk--as one who +has long had something on his mind and suddenly determines to speak +out. + +"Never, never marry, my dear fellow! That's my advice: never marry +till you can say to yourself that you have done all you are capable +of, and until you have ceased to love the woman of your choice and +have seen her plainly as she is, or else you will make a cruel and +irrevocable mistake. Marry when you are old and good for nothing--or +all that is good and noble in you will be lost. It will all be +wasted on trifles. Yes! Yes! Yes! Don't look at me with such surprise. +If you marry expecting anything from yourself in the future, you +will feel at every step that for you all is ended, all is closed +except the drawing room, where you will be ranged side by side with +a court lackey and an idiot!... But what's the good?..." and he +waved his arm. + +Pierre took off his spectacles, which made his face seem different +and the good-natured expression still more apparent, and gazed at +his friend in amazement. + +"My wife," continued Prince Andrew, "is an excellent woman, one of +those rare women with whom a man's honor is safe; but, O God, what +would I not give now to be unmarried! You are the first and only one +to whom I mention this, because I like you." + +As he said this Prince Andrew was less than ever like that Bolkonski +who had lolled in Anna Pavlovna's easy chairs and with half-closed +eyes had uttered French phrases between his teeth. Every muscle of his +thin face was now quivering with nervous excitement; his eyes, in +which the fire of life had seemed extinguished, now flashed with +brilliant light. It was evident that the more lifeless he seemed at +ordinary times, the more impassioned he became in these moments of +almost morbid irritation. + +"You don't understand why I say this," he continued, "but it is +the whole story of life. You talk of Bonaparte and his career," said +he (though Pierre had not mentioned Bonaparte), "but Bonaparte when he +worked went step by step toward his goal. He was free, he had +nothing but his aim to consider, and he reached it. But tie yourself +up with a woman and, like a chained convict, you lose all freedom! And +all you have of hope and strength merely weighs you down and +torments you with regret. Drawing rooms, gossip, balls, vanity, and +triviality--these are the enchanted circle I cannot escape from. I +am now going to the war, the greatest war there ever was, and I know +nothing and am fit for nothing. I am very amiable and have a caustic +wit," continued Prince Andrew, "and at Anna Pavlovna's they listen +to me. And that stupid set without whom my wife cannot exist, and +those women... If you only knew what those society women are, and +women in general! My father is right. Selfish, vain, stupid, trivial +in everything--that's what women are when you see them in their true +colors! When you meet them in society it seems as if there were +something in them, but there's nothing, nothing, nothing! No, don't +marry, my dear fellow; don't marry!" concluded Prince Andrew. + +"It seems funny to me," said Pierre, "that you, you should +consider yourself incapable and your life a spoiled life. You have +everything before you, everything. And you..." + +He did not finish his sentence, but his tone showed how highly he +thought of his friend and how much he expected of him in the future. + +"How can he talk like that?" thought Pierre. He considered his +friend a model of perfection because Prince Andrew possessed in the +highest degree just the very qualities Pierre lacked, and which +might be best described as strength of will. Pierre was always +astonished at Prince Andrew's calm manner of treating everybody, his +extraordinary memory, his extensive reading (he had read everything, +knew everything, and had an opinion about everything), but above all +at his capacity for work and study. And if Pierre was often struck +by Andrew's lack of capacity for philosophical meditation (to which he +himself was particularly addicted), he regarded even this not as a +defect but as a sign of strength. + +Even in the best, most friendly and simplest relations of life, +praise and commendation are essential, just as grease is necessary +to wheels that they may run smoothly. + +"My part is played out," said Prince Andrew. "What's the use of +talking about me? Let us talk about you," he added after a silence, +smiling at his reassuring thoughts. + +That smile was immediately reflected on Pierre's face. + +"But what is there to say about me?" said Pierre, his face +relaxing into a careless, merry smile. "What am I? An illegitimate +son!" He suddenly blushed crimson, and it was plain that he had made a +great effort to say this. "Without a name and without means... And +it really..." But he did not say what "it really" was. "For the +present I am free and am all right. Only I haven't the least idea what +I am to do; I wanted to consult you seriously." + +Prince Andrew looked kindly at him, yet his glance--friendly and +affectionate as it was--expressed a sense of his own superiority. + +"I am fond of you, especially as you are the one live man among +our whole set. Yes, you're all right! Choose what you will; it's all +the same. You'll be all right anywhere. But look here: give up +visiting those Kuragins and leading that sort of life. It suits you so +badly--all this debauchery, dissipation, and the rest of it!" + +"What would you have, my dear fellow?" answered Pierre, shrugging +his shoulders. "Women, my dear fellow; women!" + +"I don't understand it," replied Prince Andrew. "Women who are comme +il faut, that's a different matter; but the Kuragins' set of women, +'women and wine' I don't understand!" + +Pierre was staying at Prince Vasili Kuragin's and sharing the +dissipated life of his son Anatole, the son whom they were planning to +reform by marrying him to Prince Andrew's sister. + +"Do you know?" said Pierre, as if suddenly struck by a happy +thought, "seriously, I have long been thinking of it.... Leading +such a life I can't decide or think properly about anything. One's +head aches, and one spends all one's money. He asked me for tonight, +but I won't go." + +"You give me your word of honor not to go?" + +"On my honor!" + + + + + +CHAPTER IX + + +It was past one o'clock when Pierre left his friend. It was a +cloudless, northern, summer night. Pierre took an open cab intending +to drive straight home. But the nearer he drew to the house the more +he felt the impossibility of going to sleep on such a night. It was +light enough to see a long way in the deserted street and it seemed +more like morning or evening than night. On the way Pierre +remembered that Anatole Kuragin was expecting the usual set for +cards that evening, after which there was generally a drinking bout, +finishing with visits of a kind Pierre was very fond of. + +"I should like to go to Kuragin's," thought he. + +But he immediately recalled his promise to Prince Andrew not to go +there. Then, as happens to people of weak character, he desired so +passionately once more to enjoy that dissipation he was so +accustomed to that he decided to go. The thought immediately +occurred to him that his promise to Prince Andrew was of no account, +because before he gave it he had already promised Prince Anatole to +come to his gathering; "besides," thought he, "all such 'words of +honor' are conventional things with no definite meaning, especially if +one considers that by tomorrow one may be dead, or something so +extraordinary may happen to one that honor and dishonor will be all +the same!" Pierre often indulged in reflections of this sort, +nullifying all his decisions and intentions. He went to Kuragin's. + +Reaching the large house near the Horse Guards' barracks, in which +Anatole lived, Pierre entered the lighted porch, ascended the +stairs, and went in at the open door. There was no one in the +anteroom; empty bottles, cloaks, and overshoes were lying about; there +was a smell of alcohol, and sounds of voices and shouting in the +distance. + +Cards and supper were over, but the visitors had not yet +dispersed. Pierre threw off his cloak and entered the first room, in +which were the remains of supper. A footman, thinking no one saw +him, was drinking on the sly what was left in the glasses. From the +third room came sounds of laughter, the shouting of familiar voices, +the growling of a bear, and general commotion. Some eight or nine +young men were crowding anxiously round an open window. Three others +were romping with a young bear, one pulling him by the chain and +trying to set him at the others. + +"I bet a hundred on Stevens!" shouted one. + +"Mind, no holding on!" cried another. + +"I bet on Dolokhov!" cried a third. "Kuragin, you part our hands." + +"There, leave Bruin alone; here's a bet on." + +"At one draught, or he loses!" shouted a fourth. + +"Jacob, bring a bottle!" shouted the host, a tall, handsome fellow +who stood in the midst of the group, without a coat, and with his fine +linen shirt unfastened in front. "Wait a bit, you fellows.... Here +is Petya! Good man!" cried he, addressing Pierre. + +Another voice, from a man of medium height with clear blue eyes, +particularly striking among all these drunken voices by its sober +ring, cried from the window: "Come here; part the bets!" This was +Dolokhov, an officer of the Semenov regiment, a notorious gambler +and duelist, who was living with Anatole. Pierre smiled, looking about +him merrily. + +"I don't understand. What's it all about?" + +"Wait a bit, he is not drunk yet! A bottle here," said Anatole, +taking a glass from the table he went up to Pierre. + +"First of all you must drink!" + +Pierre drank one glass after another, looking from under his brows +at the tipsy guests who were again crowding round the window, and +listening to their chatter. Anatole kept on refilling Pierre's glass +while explaining that Dolokhov was betting with Stevens, an English +naval officer, that he would drink a bottle of rum sitting on the +outer ledge of the third floor window with his legs hanging out. + +"Go on, you must drink it all," said Anatole, giving Pierre the last +glass, "or I won't let you go!" + +"No, I won't," said Pierre, pushing Anatole aside, and he went up to +the window. + +Dolokhov was holding the Englishman's hand and clearly and +distinctly repeating the terms of the bet, addressing himself +particularly to Anatole and Pierre. + +Dolokhov was of medium height, with curly hair and light-blue +eyes. He was about twenty-five. Like all infantry officers he wore +no mustache, so that his mouth, the most striking feature of his face, +was clearly seen. The lines of that mouth were remarkably finely +curved. The middle of the upper lip formed a sharp wedge and closed +firmly on the firm lower one, and something like two distinct smiles +played continually round the two corners of the mouth; this, +together with the resolute, insolent intelligence of his eyes, +produced an effect which made it impossible not to notice his face. +Dolokhov was a man of small means and no connections. Yet, though +Anatole spent tens of thousands of rubles, Dolokhov lived with him and +had placed himself on such a footing that all who knew them, including +Anatole himself, respected him more than they did Anatole. Dolokhov +could play all games and nearly always won. However much he drank, +he never lost his clearheadedness. Both Kuragin and Dolokhov were at +that time notorious among the rakes and scapegraces of Petersburg. + +The bottle of rum was brought. The window frame which prevented +anyone from sitting on the outer sill was being forced out by two +footmen, who were evidently flurried and intimidated by the directions +and shouts of the gentlemen around. + +Anatole with his swaggering air strode up to the window. He wanted +to smash something. Pushing away the footmen he tugged at the frame, +but could not move it. He smashed a pane. + +"You have a try, Hercules," said he, turning to Pierre. + +Pierre seized the crossbeam, tugged, and wrenched the oak frame +out with a crash. + +"Take it right out, or they'll think I'm holding on," said Dolokhov. + +"Is the Englishman bragging?... Eh? Is it all right?" said Anatole. + +"First-rate," said Pierre, looking at Dolokhov, who with a bottle of +rum in his hand was approaching the window, from which the light of +the sky, the dawn merging with the afterglow of sunset, was visible. + +Dolokhov, the bottle of rum still in his hand, jumped onto the +window sill. "Listen!" cried he, standing there and addressing those +in the room. All were silent. + +"I bet fifty imperials"--he spoke French that the Englishman might +understand him, but he did, not speak it very well--"I bet fifty +imperials... or do you wish to make it a hundred?" added he, +addressing the Englishman. + +"No, fifty," replied the latter. + +"All right. Fifty imperials... that I will drink a whole bottle of +rum without taking it from my mouth, sitting outside the window on +this spot" (he stooped and pointed to the sloping ledge outside the +window) "and without holding on to anything. Is that right?" + +"Quite right," said the Englishman. + +Anatole turned to the Englishman and taking him by one of the +buttons of his coat and looking down at him--the Englishman was short- +began repeating the terms of the wager to him in English. + +"Wait!" cried Dolokhov, hammering with the bottle on the window sill +to attract attention. "Wait a bit, Kuragin. Listen! If anyone else +does the same, I will pay him a hundred imperials. Do you understand?" + +The Englishman nodded, but gave no indication whether he intended to +accept this challenge or not. Anatole did not release him, and +though he kept nodding to show that he understood, Anatole went on +translating Dolokhov's words into English. A thin young lad, an hussar +of the Life Guards, who had been losing that evening, climbed on the +window sill, leaned over, and looked down. + +"Oh! Oh! Oh!" he muttered, looking down from the window at the +stones of the pavement. + +"Shut up!" cried Dolokhov, pushing him away from the window. The lad +jumped awkwardly back into the room, tripping over his spurs. + +Placing the bottle on the window sill where he could reach it +easily, Dolokhov climbed carefully and slowly through the window and +lowered his legs. Pressing against both sides of the window, he +adjusted himself on his seat, lowered his hands, moved a little to the +right and then to the left, and took up the bottle. Anatole brought +two candles and placed them on the window sill, though it was +already quite light. Dolokhov's back in his white shirt, and his curly +head, were lit up from both sides. Everyone crowded to the window, the +Englishman in front. Pierre stood smiling but silent. One man, older +than the others present, suddenly pushed forward with a scared and +angry look and wanted to seize hold of Dolokhov's shirt. + +"I say, this is folly! He'll be killed," said this more sensible +man. + +Anatole stopped him. + +"Don't touch him! You'll startle him and then he'll be killed. +Eh?... What then?... Eh?" + +Dolokhov turned round and, again holding on with both hands, +arranged himself on his seat. + +"If anyone comes meddling again," said he, emitting the words +separately through his thin compressed lips, "I will throw him down +there. Now then!" + +Saying this he again turned round, dropped his hands, took the +bottle and lifted it to his lips, threw back his head, and raised +his free hand to balance himself. One of the footmen who had stooped +to pick up some broken glass remained in that position without +taking his eyes from the window and from Dolokhov's back. Anatole +stood erect with staring eyes. The Englishman looked on sideways, +pursing up his lips. The man who had wished to stop the affair ran +to a corner of the room and threw himself on a sofa with his face to +the wall. Pierre hid his face, from which a faint smile forgot to fade +though his features now expressed horror and fear. All were still. +Pierre took his hands from his eyes. Dolokhov still sat in the same +position, only his head was thrown further back till his curly hair +touched his shirt collar, and the hand holding the bottle was lifted +higher and higher and trembled with the effort. The bottle was +emptying perceptibly and rising still higher and his head tilting +yet further back. "Why is it so long?" thought Pierre. It seemed to +him that more than half an hour had elapsed. Suddenly Dolokhov made +a backward movement with his spine, and his arm trembled nervously; +this was sufficient to cause his whole body to slip as he sat on the +sloping ledge. As he began slipping down, his head and arm wavered +still more with the strain. One hand moved as if to clutch the +window sill, but refrained from touching it. Pierre again covered +his eyes and thought he would never never them again. Suddenly he +was aware of a stir all around. He looked up: Dolokhov was standing on +the window sill, with a pale but radiant face. + +"It's empty." + +He threw the bottle to the Englishman, who caught it neatly. +Dolokhov jumped down. He smelt strongly of rum. + +"Well done!... Fine fellow!... There's a bet for you!... Devil +take you!" came from different sides. + +The Englishman took out his purse and began counting out the +money. Dolokhov stood frowning and did not speak. Pierre jumped upon +the window sill. + +"Gentlemen, who wishes to bet with me? I'll do the same thing!" he +suddenly cried. "Even without a bet, there! Tell them to bring me a +bottle. I'll do it.... Bring a bottle!" + +"Let him do it, let him do it," said Dolokhov, smiling. + +"What next? Have you gone mad?... No one would let you!... Why, +you go giddy even on a staircase," exclaimed several voices. + +"I'll drink it! Let's have a bottle of rum!" shouted Pierre, banging +the table with a determined and drunken gesture and preparing to climb +out of the window. + +They seized him by his arms; but he was so strong that everyone +who touched him was sent flying. + +"No, you'll never manage him that way," said Anatole. "Wait a bit +and I'll get round him.... Listen! I'll take your bet tomorrow, but +now we are all going to ----'s." + +"Come on then," cried Pierre. "Come on!... And we'll take Bruin with +us." + +And he caught the bear, took it in his arms, lifted it from the +ground, and began dancing round the room with it. + + + + + +CHAPTER X + + +Prince Vasili kept the promise he had given to Princess +Drubetskaya who had spoken to him on behalf of her only son Boris on +the evening of Anna Pavlovna's soiree. The matter was mentioned to the +Emperor, an exception made, and Boris transferred into the regiment of +Semenov Guards with the rank of cornet. He received, however, no +appointment to Kutuzov's staff despite all Anna Mikhaylovna's +endeavors and entreaties. Soon after Anna Pavlovna's reception Anna +Mikhaylovna returned to Moscow and went straight to her rich +relations, the Rostovs, with whom she stayed when in the town and +where her darling Bory, who had only just entered a regiment +of the line and was being at once transferred to the Guards as a +cornet, had been educated from childhood and lived for years at a +time. The Guards had already left Petersburg on the tenth of August, +and her son, who had remained in Moscow for his equipment, was to join +them on the march to Radzivilov. + +It was St. Natalia's day and the name day of two of the Rostovs--the +mother and the youngest daughter--both named Nataly. Ever since the +morning, carriages with six horses had been coming and going +continually, bringing visitors to the Countess Rostova's big house +on the Povarskaya, so well known to all Moscow. The countess herself +and her handsome eldest daughter were in the drawing-room with the +visitors who came to congratulate, and who constantly succeeded one +another in relays. + +The countess was a woman of about forty-five, with a thin Oriental +type of face, evidently worn out with childbearing--she had had +twelve. A languor of motion and speech, resulting from weakness, +gave her a distinguished air which inspired respect. Princess Anna + +Mikhaylovna Drubetskaya, who as a member of the household was also +seated in the drawing room, helped to receive and entertain the +visitors. The young people were in one of the inner rooms, not +considering it necessary to take part in receiving the visitors. The +count met the guests and saw them off, inviting them all to dinner. + +"I am very, very grateful to you, mon cher," or "ma chere"--he +called everyone without exception and without the slightest +variation in his tone, "my dear," whether they were above or below him +in rank--"I thank you for myself and for our two dear ones whose +name day we are keeping. But mind you come to dinner or I shall be +offended, ma chere! On behalf of the whole family I beg you to come, +mon cher!" These words he repeated to everyone without exception or +variation, and with the same expression on his full, cheerful, +clean-shaven face, the same firm pressure of the hand and the same +quick, repeated bows. As soon as he had seen a visitor off he returned +to one of those who were still in the drawing room, drew a chair +toward him or her, and jauntily spreading out his legs and putting his +hands on his knees with the air of a man who enjoys life and knows how +to live, he swayed to and fro with dignity, offered surmises about the +weather, or touched on questions of health, sometimes in Russian and +sometimes in very bad but self-confident French; then again, like a +man weary but unflinching in the fulfillment of duty, he rose to see +some visitors off and, stroking his scanty gray hairs over his bald +patch, also asked them to dinner. Sometimes on his way back from the +anteroom he would pass through the conservatory and pantry into the +large marble dining hall, where tables were being set out for eighty +people; and looking at the footmen, who were bringing in silver and +china, moving tables, and unfolding damask table linen, he would +call Dmitri Vasilevich, a man of good family and the manager of all +his affairs, and while looking with pleasure at the enormous table +would say: "Well, Dmitri, you'll see that things are all as they +should be? That's right! The great thing is the serving, that's it." +And with a complacent sigh he would return to the drawing room. + +"Marya Lvovna Karagina and her daughter!" announced the countess' +gigantic footman in his bass voice, entering the drawing room. The +countess reflected a moment and took a pinch from a gold snuffbox with +her husband's portrait on it. + +"I'm quite worn out by these callers. However, I'll see her and no +more. She is so affected. Ask her in," she said to the footman in a +sad voice, as if saying: "Very well, finish me off." + +A tall, stout, and proud-looking woman, with a round-faced smiling +daughter, entered the drawing room, their dresses rustling. + +"Dear Countess, what an age... She has been laid up, poor child... +at the Razumovski's ball... and Countess Apraksina... I was so +delighted..." came the sounds of animated feminine voices, +interrupting one another and mingling with the rustling of dresses and +the scraping of chairs. Then one of those conversations began which +last out until, at the first pause, the guests rise with a rustle of +dresses and say, "I am so delighted... Mamma's health... and +Countess Apraksina..." and then, again rustling, pass into the +anteroom, put on cloaks or mantles, and drive away. The conversation +was on the chief topic of the day: the illness of the wealthy and +celebrated beau of Catherine's day, Count Bezukhov, and about his +illegitimate son Pierre, the one who had behaved so improperly at Anna +Pavlovna's reception. + +"I am so sorry for the poor count," said the visitor. "He is in such +bad health, and now this vexation about his son is enough to kill +him!" + +"What is that?" asked the countess as if she did not know what the +visitor alluded to, though she had already heard about the cause of +Count Bezukhov's distress some fifteen times. + +"That's what comes of a modern education," exclaimed the visitor. +"It seems that while he was abroad this young man was allowed to do as +he liked, now in Petersburg I hear he has been doing such terrible +things that he has been expelled by the police." + +"You don't say so!" replied the countess. + +"He chose his friends badly," interposed Anna Mikhaylovna. "Prince +Vasili's son, he, and a certain Dolokhov have, it is said, been up +to heaven only knows what! And they have had to suffer for it. +Dolokhov has been degraded to the ranks and Bezukhov's son sent back +to Moscow. Anatole Kuragin's father managed somehow to get his son's +affair hushed up, but even he was ordered out of Petersburg." + +"But what have they been up to?" asked the countess. + +"They are regular brigands, especially Dolokhov," replied the +visitor. "He is a son of Marya Ivanovna Dolokhova, such a worthy +woman, but there, just fancy! Those three got hold of a bear +somewhere, put it in a carriage, and set off with it to visit some +actresses! The police tried to interfere, and what did the young men +do? They tied a policeman and the bear back to back and put the bear +into the Moyka Canal. And there was the bear swimming about with the +policeman on his back!" + +"What a nice figure the policeman must have cut, my dear!" shouted +the count, dying with laughter. + +"Oh, how dreadful! How can you laugh at it, Count?" + +Yet the ladies themselves could not help laughing. + +"It was all they could do to rescue the poor man," continued the +visitor. "And to think it is Cyril Vladimirovich Bezukhov's son who +amuses himself in this sensible manner! And he was said to be so +well educated and clever. This is all that his foreign education has +done for him! I hope that here in Moscow no one will receive him, in +spite of his money. They wanted to introduce him to me, but I quite +declined: I have my daughters to consider." + +"Why do you say this young man is so rich?" asked the countess, +turning away from the girls, who at once assumed an air of +inattention. "His children are all illegitimate. I think Pierre also +is illegitimate." + +The visitor made a gesture with her hand. + +"I should think he has a score of them." + +Princess Anna Mikhaylovna intervened in the conversation, +evidently wishing to show her connections and knowledge of what went +on in society. + +"The fact of the matter is," said she significantly, and also in a +half whisper, "everyone knows Count Cyril's reputation.... He has lost +count of his children, but this Pierre was his favorite." + +"How handsome the old man still was only a year ago!" remarked the +countess. "I have never seen a handsomer man." + +"He is very much altered now," said Anna Mikhaylovna. "Well, as I +was saying, Prince Vasili is the next heir through his wife, but the +count is very fond of Pierre, looked after his education, and wrote to +the Emperor about him; so that in the case of his death--and he is +so ill that he may die at any moment, and Dr. Lorrain has come from +Petersburg--no one knows who will inherit his immense fortune, +Pierre or Prince Vasili. Forty thousand serfs and millions of +rubles! I know it all very well for Prince Vasili told me himself. +Besides, Cyril Vladimirovich is my mother's second cousin. He's also +my Bory's godfather," she added, as if she attached no importance at +all to the fact. + +"Prince Vasili arrived in Moscow yesterday. I hear he has come on +some inspection business," remarked the visitor. + +"Yes, but between ourselves," said the princess, "that is a +pretext. The fact is he has come to see Count Cyril Vladimirovich, +hearing how ill he is." + +"But do you know, my dear, that was a capital joke," said the count; +and seeing that the elder visitor was not listening, he turned to +the young ladies. "I can just imagine what a funny figure that +policeman cut!" + +And as he waved his arms to impersonate the policeman, his portly +form again shook with a deep ringing laugh, the laugh of one who +always eats well and, in particular, drinks well. "So do come and dine +with us!" he said. + + + + + +CHAPTER XI + + +Silence ensued. The countess looked at her callers, smiling affably, +but not concealing the fact that she would not be distressed if they +now rose and took their leave. The visitor's daughter was already +smoothing down her dress with an inquiring look at her mother, when +suddenly from the next room were heard the footsteps of boys and girls +running to the door and the noise of a chair falling over, and a +girl of thirteen, hiding something in the folds of her short muslin +frock, darted in and stopped short in the middle of the room. It was +evident that she had not intended her flight to bring her so far. +Behind her in the doorway appeared a student with a crimson coat +collar, an officer of the Guards, a girl of fifteen, and a plump +rosy-faced boy in a short jacket. + +The count jumped up and, swaying from side to side, spread his +arms wide and threw them round the little girl who had run in. + +"Ah, here she is!" he exclaimed laughing. "My pet, whose name day it +is. My dear pet!" + +"Ma chere, there is a time for everything," said the countess with +feigned severity. "You spoil her, Ilya," she added, turning to her +husband. + +"How do you do, my dear? I wish you many happy returns of your +name day," said the visitor. "What a charming child," she added, +addressing the mother. + +This black-eyed, wide-mouthed girl, not pretty but full of life- +with childish bare shoulders which after her run heaved and shook +her bodice, with black curls tossed backward, thin bare arms, little +legs in lace-frilled drawers, and feet in low slippers--was just at +that charming age when a girl is no longer a child, though the child +is not yet a young woman. Escaping from her father she ran to hide her +flushed face in the lace of her mother's mantilla--not paying the +least attention to her severe remark--and began to laugh. She laughed, +and in fragmentary sentences tried to explain about a doll which she +produced from the folds of her frock. + +"Do you see?... My doll... Mimi... You see..." was all Natasha +managed to utter (to her everything seemed funny). She leaned +against her mother and burst into such a loud, ringing fit of laughter +that even the prim visitor could not help joining in. + +"Now then, go away and take your monstrosity with you," said the +mother, pushing away her daughter with pretended sternness, and +turning to the visitor she added: "She is my youngest girl." + +Natasha, raising her face for a moment from her mother's mantilla, +glanced up at her through tears of laughter, and again hid her face. + +The visitor, compelled to look on at this family scene, thought it +necessary to take some part in it. + +"Tell me, my dear," said she to Natasha, "is Mimi a relation of +yours? A daughter, I suppose?" + +Natasha did not like the visitor's tone of condescension to childish +things. She did not reply, but looked at her seriously. + +Meanwhile the younger generation: Boris, the officer, Anna +Mikhaylovna's son; Nicholas, the undergraduate, the count's eldest +son; Sonya, the count's fifteen-year-old niece, and little Petya, +his youngest boy, had all settled down in the drawing room and were +obviously trying to restrain within the bounds of decorum the +excitement and mirth that shone in all their faces. Evidently in the +back rooms, from which they had dashed out so impetuously, the +conversation had been more amusing than the drawing-room talk of +society scandals, the weather, and Countess Apraksina. Now and then +they glanced at one another, hardly able to suppress their laughter. + +The two young men, the student and the officer, friends from +childhood, were of the same age and both handsome fellows, though +not alike. Boris was tall and fair, and his calm and handsome face had +regular, delicate features. Nicholas was short with curly hair and +an open expression. Dark hairs were already showing on his upper +lip, and his whole face expressed impetuosity and enthusiasm. Nicholas +blushed when he entered the drawing room. He evidently tried to find +something to say, but failed. Boris on the contrary at once found +his footing, and related quietly and humorously how he had know that +doll Mimi when she was still quite a young lady, before her nose was +broken; how she had aged during the five years he had known her, and +how her head had cracked right across the skull. Having said this he +glanced at Natasha. She turned away from him and glanced at her +younger brother, who was screwing up his eyes and shaking with +suppressed laughter, and unable to control herself any longer, she +jumped up and rushed from the room as fast as her nimble little feet +would carry her. Boris did not laugh. + +"You were meaning to go out, weren't you, Mamma? Do you want the +carriage?" he asked his mother with a smile. + +"Yes, yes, go and tell them to get it ready," she answered, +returning his smile. + +Boris quietly left the room and went in search of Natasha. The plump +boy ran after them angrily, as if vexed that their program had been +disturbed. + + + + + +CHAPTER XII + + +The only young people remaining in the drawing room, not counting +the young lady visitor and the countess' eldest daughter (who was four +years older than her sister and behaved already like a grown-up +person), were Nicholas and Sonya, the niece. Sonya was a slender +little brunette with a tender look in her eyes which were veiled by +long lashes, thick black plaits coiling twice round her head, and a +tawny tint in her complexion and especially in the color of her +slender but graceful and muscular arms and neck. By the grace of her +movements, by the softness and flexibility of her small limbs, and +by a certain coyness and reserve of manner, she reminded one of a +pretty, half-grown kitten which promises to become a beautiful +little cat. She evidently considered it proper to show an interest +in the general conversation by smiling, but in spite of herself her +eyes under their thick long lashes watched her cousin who was going to +join the army, with such passionate girlish adoration that her smile +could not for a single instant impose upon anyone, and it was clear +that the kitten had settled down only to spring up with more energy +and again play with her cousin as soon as they too could, like Natasha +and Boris, escape from the drawing room. + +"Ah yes, my dear," said the count, addressing the visitor and +pointing to Nicholas, "his friend Boris has become an officer, and +so for friendship's sake he is leaving the university and me, his +old father, and entering the military service, my dear. And there +was a place and everything waiting for him in the Archives Department! +Isn't that friendship?" remarked the count in an inquiring tone. + +"But they say that war has been declared," replied the visitor. + +"They've been saying so a long while," said the count, "and +they'll say so again and again, and that will be the end of it. My +dear, there's friendship for you," he repeated. "He's joining the +hussars." + +The visitor, not knowing what to say, shook her head. + +"It's not at all from friendship," declared Nicholas, flaring up and +turning away as if from a shameful aspersion. "It is not from +friendship at all; I simply feel that the army is my vocation." + +He glanced at his cousin and the young lady visitor; and they were +both regarding him with a smile of approbation. + +"Schubert, the colonel of the Pavlograd Hussars, is dining with us +today. He has been here on leave and is taking Nicholas back with him. +It can't be helped!" said the count, shrugging his shoulders and +speaking playfully of a matter that evidently distressed him. + +"I have already told you, Papa," said his son, "that if you don't +wish to let me go, I'll stay. But I know I am no use anywhere except +in the army; I am not a diplomat or a government clerk.--I don't +know how to hide what I feel." As he spoke he kept glancing with the +flirtatiousness of a handsome youth at Sonya and the young lady +visitor. + +The little kitten, feasting her eyes on him, seemed ready at any +moment to start her gambols again and display her kittenish nature. + +"All right, all right!" said the old count. "He always flares up! +This Buonaparte has turned all their heads; they all think of how he +rose from an ensign and became Emperor. Well, well, God grant it," +he added, not noticing his visitor's sarcastic smile. + +The elders began talking about Bonaparte. Julie Karagina turned to +young Rostov. + +"What a pity you weren't at the Arkharovs' on Thursday. It was so +dull without you," said she, giving him a tender smile. + +The young man, flattered, sat down nearer to her with a coquettish +smile, and engaged the smiling Julie in a confidential conversation +without at all noticing that his involuntary smile had stabbed the +heart of Sonya, who blushed and smiled unnaturally. In the midst of +his talk he glanced round at her. She gave him a passionately angry +glance, and hardly able to restrain her tears and maintain the +artificial smile on her lips, she got up and left the room. All +Nicholas' animation vanished. He waited for the first pause in the +conversation, and then with a distressed face left the room to find +Sonya. + +"How plainly all these young people wear their hearts on their +sleeves!" said Anna Mikhaylovna, pointing to Nicholas as he went +out. "Cousinage--dangereux voisinage;"* she added. + + +*Cousinhood is a dangerous neighborhood. + + +"Yes," said the countess when the brightness these young people +had brought into the room had vanished; and as if answering a question +no one had put but which was always in her mind, "and how much +suffering, how much anxiety one has had to go through that we might +rejoice in them now! And yet really the anxiety is greater now than +the joy. One is always, always anxious! Especially just at this age, +so dangerous both for girls and boys." + +"It all depends on the bringing up," remarked the visitor. + +"Yes, you're quite right," continued the countess. "Till now I +have always, thank God, been my children's friend and had their full +confidence," said she, repeating the mistake of so many parents who +imagine that their children have no secrets from them. "I know I shall +always be my daughters' first confidante, and that if Nicholas, with +his impulsive nature, does get into mischief (a boy can't help it), he +will all the same never be like those Petersburg young men." + +"Yes, they are splendid, splendid youngsters," chimed in the +count, who always solved questions that seemed to him perplexing by +deciding that everything was splendid. "Just fancy: wants to be an +hussar. What's one to do, my dear?" + +"What a charming creature your younger girl is," said the visitor; +"a little volcano!" + +"Yes, a regular volcano," said the count. "Takes after me! And +what a voice she has; though she's my daughter, I tell the truth +when I say she'll be a singer, a second Salomoni! We have engaged an +Italian to give her lessons." + +"Isn't she too young? I have heard that it harms the voice to +train it at that age." + +"Oh no, not at all too young!" replied the count. "Why, our +mothers used to be married at twelve or thirteen." + +"And she's in love with Boris already. Just fancy!" said the +countess with a gentle smile, looking at Boris' and went on, evidently +concerned with a thought that always occupied her: "Now you see if I +were to be severe with her and to forbid it... goodness knows what +they might be up to on the sly" (she meant that they would be +kissing), "but as it is, I know every word she utters. She will come +running to me of her own accord in the evening and tell me everything. +Perhaps I spoil her, but really that seems the best plan. With her +elder sister I was stricter." + +"Yes, I was brought up quite differently," remarked the handsome +elder daughter, Countess Vera, with a smile. + +But the smile did not enhance Vera's beauty as smiles generally +do; on the contrary it gave her an unnatural, and therefore +unpleasant, expression. Vera was good-looking, not at all stupid, +quick at learning, was well brought up, and had a pleasant voice; what +she said was true and appropriate, yet, strange to say, everyone- +the visitors and countess alike--turned to look at her as if wondering +why she had said it, and they all felt awkward. + +"People are always too clever with their eldest children and try +to make something exceptional of them," said the visitor. + +"What's the good of denying it, my dear? Our dear countess was too +clever with Vera," said the count. "Well, what of that? She's turned +out splendidly all the same," he added, winking at Vera. + +The guests got up and took their leave, promising to return to +dinner. + +"What manners! I thought they would never go," said the countess, +when she had seen her guests out. + + + + + +CHAPTER XIII + + +When Natasha ran out of the drawing room she only went as far as the +conservatory. There she paused and stood listening to the conversation +in the drawing room, waiting for Boris to come out. She was already +growing impatient, and stamped her foot, ready to cry at his not +coming at once, when she heard the young man's discreet steps +approaching neither quickly nor slowly. At this Natasha dashed swiftly +among the flower tubs and hid there. + +Boris paused in the middle of the room, looked round, brushed a +little dust from the sleeve of his uniform, and going up to a mirror +examined his handsome face. Natasha, very still, peered out from her +ambush, waiting to see what he would do. He stood a little while +before the glass, smiled, and walked toward the other door. Natasha +was about to call him but changed her mind. "Let him look for me," +thought she. Hardly had Boris gone than Sonya, flushed, in tears, +and muttering angrily, came in at the other door. Natasha checked +her first impulse to run out to her, and remained in her hiding place, +watching--as under an invisible cap--to see what went on in the world. +She was experiencing a new and peculiar pleasure. Sonya, muttering +to herself, kept looking round toward the drawing-room door. It opened +and Nicholas came in. + +"Sonya, what is the matter with you? How can you?" said he, +running up to her. + +"It's nothing, nothing; leave me alone!" sobbed Sonya. + +"Ah, I know what it is." + +"Well, if you do, so much the better, and you can go back to her!" + +"So-o-onya! Look here! How can you torture me and yourself like +that, for a mere fancy?" said Nicholas taking her hand. + +Sonya did not pull it away, and left off crying. Natasha, not +stirring and scarcely breathing, watched from her ambush with +sparkling eyes. "What will happen now?" thought she. + +"Sonya! What is anyone in the world to me? You alone are +everything!" said Nicholas. "And I will prove it to you." + +"I don't like you to talk like that." + +"Well, then, I won't; only forgive me, Sonya!" He drew her to him +and kissed her. + +"Oh, how nice," thought Natasha; and when Sonya and Nicholas had +gone out of the conservatory she followed and called Boris to her. + +"Boris, come here," said she with a sly and significant look. "I +have something to tell you. Here, here!" and she led him into the +conservatory to the place among the tubs where she had been hiding. + +Boris followed her, smiling. + +"What is the something?" asked he. + +She grew confused, glanced round, and, seeing the doll she had +thrown down on one of the tubs, picked it up. + +"Kiss the doll," said she. + +Boris looked attentively and kindly at her eager face, but did not +reply. + +"Don't you want to? Well, then, come here," said she, and went +further in among the plants and threw down the doll. "Closer, closer!" +she whispered. + +She caught the young officer by his cuffs, and a look of solemnity +and fear appeared on her flushed face. + +"And me? Would you like to kiss me?" she whispered almost inaudibly, +glancing up at him from under her brows, smiling, and almost crying +from excitement. + +Boris blushed. + +"How funny you are!" he said, bending down to her and blushing still +more, but he waited and did nothing. + +Suddenly she jumped up onto a tub to be higher than he, embraced him +so that both her slender bare arms clasped him above his neck, and, +tossing back her hair, kissed him full on the lips. + +Then she slipped down among the flowerpots on the other side of +the tubs and stood, hanging her head. + +"Natasha," he said, "you know that I love you, but..." + +"You are in love with me?" Natasha broke in. + +"Yes, I am, but please don't let us do like that.... In another four +years... then I will ask for your hand." + +Natasha considered. + +"Thirteen, fourteen, fifteen, sixteen," she counted on her slender +little fingers. "All right! Then it's settled?" + +A smile of joy and satisfaction lit up her eager face. + +"Settled!" replied Boris. + +"Forever?" said the little girl. "Till death itself?" + +She took his arm and with a happy face went with him into the +adjoining sitting room. + + + + + +CHAPTER XIV + + +After receiving her visitors, the countess was so tired that she +gave orders to admit no more, but the porter was told to be sure to +invite to dinner all who came "to congratulate." The countess wished +to have a tete-a-tete talk with the friend of her childhood, +Princess Anna Mikhaylovna, whom she had not seen properly since she +returned from Petersburg. Anna Mikhaylovna, with her tear-worn but +pleasant face, drew her chair nearer to that of the countess. + +"With you I will be quite frank," said Anna Mikhaylovna. "There +are not many left of us old friends! That's why I so value your +friendship." + +Anna Mikhaylovna looked at Vera and paused. The countess pressed her +friend's hand. + +"Vera," she said to her eldest daughter who was evidently not a +favorite, "how is it you have so little tact? Don't you see you are +not wanted here? Go to the other girls, or..." + +The handsome Vera smiled contemptuously but did not seem at all +hurt. + +"If you had told me sooner, Mamma, I would have gone," she replied +as she rose to go to her own room. + +But as she passed the sitting room she noticed two couples +sitting, one pair at each window. She stopped and smiled scornfully. +Sonya was sitting close to Nicholas who was copying out some verses +for her, the first he had ever written. Boris and Natasha were at +the other window and ceased talking when Vera entered. Sonya and +Natasha looked at Vera with guilty, happy faces. + +It was pleasant and touching to see these little girls in love; +but apparently the sight of them roused no pleasant feeling in Vera. + +"How often have I asked you not to take my things?" she said. "You +have a room of your own," and she took the inkstand from Nicholas. + +"In a minute, in a minute," he said, dipping his pen. + +"You always manage to do things at the wrong time," continued +Vera. "You came rushing into the drawing room so that everyone felt +ashamed of you." + +Though what she said was quite just, perhaps for that very reason no +one replied, and the four simply looked at one another. She lingered +in the room with the inkstand in her hand. + +"And at your age what secrets can there be between Natasha and +Boris, or between you two? It's all nonsense!" + +"Now, Vera, what does it matter to you?" said Natasha in defense, +speaking very gently. + +She seemed that day to be more than ever kind and affectionate to +everyone. + +"Very silly," said Vera. "I am ashamed of you. Secrets indeed!" + +"All have secrets of their own," answered Natasha, getting warmer. +"We don't interfere with you and Berg." + +"I should think not," said Vera, "because there can never be +anything wrong in my behavior. But I'll just tell Mamma how you are +behaving with Boris." + +"Natalya Ilynichna behaves very well to me," remarked Boris. "I have +nothing to complain of." + +"Don't, Boris! You are such a diplomat that it is really +tiresome," said Natasha in a mortified voice that trembled slightly. +(She used the word "diplomat," which was just then much in vogue among +the children, in the special sense they attached to it.) "Why does she +bother me?" And she added, turning to Vera, "You'll never understand +it, because you've never loved anyone. You have no heart! You are a +Madame de Genlis and nothing more" (this nickname, bestowed on Vera by +Nicholas, was considered very stinging), "and your greatest pleasure +is to be unpleasant to people! Go and flirt with Berg as much as you +please," she finished quickly. + +"I shall at any rate not run after a young man before visitors..." + +"Well, now you've done what you wanted," put in Nicholas--"said +unpleasant things to everyone and upset them. Let's go to the +nursery." + +All four, like a flock of scared birds, got up and left the room. + +"The unpleasant things were said to me," remarked Vera, "I said none +to anyone." + +"Madame de Genlis! Madame de Genlis!" shouted laughing voices +through the door. + +The handsome Vera, who produced such an irritating and unpleasant +effect on everyone, smiled and, evidently unmoved by what had been +said to her, went to the looking glass and arranged her hair and +scarf. Looking at her own handsome face she seemed to become still +colder and calmer. + + +In the drawing room the conversation was still going on. + +"Ah, my dear," said the countess, "my life is not all roses +either. Don't I know that at the rate we are living our means won't +last long? It's all the Club and his easygoing nature. Even in the +country do we get any rest? Theatricals, hunting, and heaven knows +what besides! But don't let's talk about me; tell me how you managed +everything. I often wonder at you, Annette--how at your age you can +rush off alone in a carriage to Moscow, to Petersburg, to those +ministers and great people, and know how to deal with them all! It's +quite astonishing. How did you get things settled? I couldn't possibly +do it." + +"Ah, my love," answered Anna Mikhaylovna, "God grant you never +know what it is to be left a widow without means and with a son you +love to distraction! One learns many things then," she added with a +certain pride. "That lawsuit taught me much. When I want to see one of +those big people I write a note: 'Princess So-and-So desires an +interview with So and-So,' and then I take a cab and go myself two, +three, or four times--till I get what I want. I don't mind what they +think of me." + +"Well, and to whom did you apply about Bory?" asked the countess. +"You see yours is already an officer in the Guards, while my +Nicholas is going as a cadet. There's no one to interest himself for +him. To whom did you apply?" + +"To Prince Vasili. He was so kind. He at once agreed to +everything, and put the matter before the Emperor," said Princess Anna +Mikhaylovna enthusiastically, quite forgetting all the humiliation she +had endured to gain her end. + +"Has Prince Vasili aged much?" asked the countess. "I have not +seen him since we acted together at the Rumyantsovs' theatricals. I +expect he has forgotten me. He paid me attentions in those days," said +the countess, with a smile. + +"He is just the same as ever," replied Anna Mikhaylovna, +"overflowing with amiability. His position has not turned his head +at all. He said to me, 'I am sorry I can do so little for you, dear +Princess. I am at your command.' Yes, he is a fine fellow and a very +kind relation. But, Nataly, you know my love for my son: I would do +anything for his happiness! And my affairs are in such a bad way +that my position is now a terrible one," continued Anna Mikhaylovna, +sadly, dropping her voice. "My wretched lawsuit takes all I have and +makes no progress. Would you believe it, I have literally not a +penny and don't know how to equip Boris." She took out her +handkerchief and began to cry. "I need five hundred rubles, and have +only one twenty-five-ruble note. I am in such a state.... My only hope +now is in Count Cyril Vladimirovich Bezukhov. If he will not assist +his godson--you know he is Bory's godfather--and allow him something +for his maintenance, all my trouble will have been thrown away.... I +shall not be able to equip him." + +The countess' eyes filled with tears and she pondered in silence. + +"I often think, though, perhaps it's a sin," said the princess, +"that here lives Count Cyril Vladimirovich Bezukhov so rich, all +alone... that tremendous fortune... and what is his life worth? It's a +burden to him, and Bory's life is only just beginning...." + +"Surely he will leave something to Boris," said the countess. + +"Heaven only knows, my dear! These rich grandees are so selfish. +Still, I will take Boris and go to see him at once, and I shall +speak to him straight out. Let people think what they will of me, it's +really all the same to me when my son's fate is at stake." The +princess rose. "It's now two o'clock and you dine at four. There +will just be time." + +And like a practical Petersburg lady who knows how to make the +most of time, Anna Mikhaylovna sent someone to call her son, and +went into the anteroom with him. + +"Good-by, my dear," said she to the countess who saw her to the +door, and added in a whisper so that her son should not hear, "Wish me +good luck." + +"Are you going to Count Cyril Vladimirovich, my dear?" said the +count coming out from the dining hall into the anteroom, and he added: +"If he is better, ask Pierre to dine with us. He has been to the +house, you know, and danced with the children. Be sure to invite +him, my dear. We will see how Taras distinguishes himself today. He +says Count Orlov never gave such a dinner as ours will be!" + + + + + +CHAPTER XV + +"My dear Boris," said Princess Anna Mikhaylovna to her son as +Countess Rostova's carriage in which they were seated drove over the +straw covered street and turned into the wide courtyard of Count Cyril +Vladimirovich Bezukhov's house. "My dear Boris," said the mother, +drawing her hand from beneath her old mantle and laying it timidly and +tenderly on her son's arm, "be affectionate and attentive to him. +Count Cyril Vladimirovich is your godfather after all, your future +depends on him. Remember that, my dear, and be nice to him, as you +so well know how to be." + +"If only I knew that anything besides humiliation would come of +it..." answered her son coldly. "But I have promised and will do it +for your sake." + +Although the hall porter saw someone's carriage standing at the +entrance, after scrutinizing the mother and son (who without asking to +be announced had passed straight through the glass porch between the +rows of statues in niches) and looking significantly at the lady's old +cloak, he asked whether they wanted the count or the princesses, +and, hearing that they wished to see the count, said his excellency +was worse today, and that his excellency was not receiving anyone. + +"We may as well go back," said the son in French. + +"My dear!" exclaimed his mother imploringly, again laying her hand +on his arm as if that touch might soothe or rouse him. + +Boris said no more, but looked inquiringly at his mother without +taking off his cloak. + +"My friend," said Anna Mikhaylovna in gentle tones, addressing the +hall porter, "I know Count Cyril Vladimirovich is very ill... that's +why I have come... I am a relation. I shall not disturb him, my +friend... I only need see Prince Vasili Sergeevich: he is staying +here, is he not? Please announce me." + +The hall porter sullenly pulled a bell that rang upstairs, and +turned away. + +"Princess Drubetskaya to see Prince Vasili Sergeevich," he called to +a footman dressed in knee breeches, shoes, and a swallow-tail coat, +who ran downstairs and looked over from the halfway landing. + +The mother smoothed the folds of her dyed silk dress before a +large Venetian mirror in the wall, and in her trodden-down shoes +briskly ascended the carpeted stairs. + +"My dear," she said to her son, once more stimulating him by a +touch, "you promised me!" + +The son, lowering his eyes, followed her quietly. + +They entered the large hall, from which one of the doors led to +the apartments assigned to Prince Vasili. + +Just as the mother and son, having reached the middle of the hall, +were about to ask their way of an elderly footman who had sprung up as +they entered, the bronze handle of one of the doors turned and +Prince Vasili came out--wearing a velvet coat with a single star on +his breast, as was his custom when at home--taking leave of a +good-looking, dark-haired man. This was the celebrated Petersburg +doctor, Lorrain. + +"Then it is certain?" said the prince. + +"Prince, humanum est errare,* but..." replied the doctor, swallowing +his r's, and pronouncing the Latin words with a French accent. + + +*To err is human. + + +"Very well, very well..." + +Seeing Anna Mikhaylovna and her son, Prince Vasili dismissed the +doctor with a bow and approached them silently and with a look of +inquiry. The son noticed that an expression of profound sorrow +suddenly clouded his mother's face, and he smiled slightly. + +"Ah, Prince! In what sad circumstances we meet again! And how is our +dear invalid?" said she, as though unaware of the cold offensive +look fixed on her. + +Prince Vasili stared at her and at Boris questioningly and +perplexed. Boris bowed politely. Prince Vasili without acknowledging +the bow turned to Anna Mikhaylovna, answering her query by a +movement of the head and lips indicating very little hope for the +patient. + +"Is it possible?" exclaimed Anna Mikhaylovna. "Oh, how awful! It +is terrible to think.... This is my son," she added, indicating Boris. +"He wanted to thank you himself." + +Boris bowed again politely. + +"Believe me, Prince, a mother's heart will never forget what you +have done for us." + +"I am glad I was able to do you a service, my dear Anna +Mikhaylovna," said Prince Vasili, arranging his lace frill, and in +tone and manner, here in Moscow to Anna Mikhaylovna whom he had placed +under an obligation, assuming an air of much greater importance than +he had done in Petersburg at Anna Scherer's reception. + +"Try to serve well and show yourself worthy," added he, addressing +Boris with severity. "I am glad.... Are you here on leave?" he went on +in his usual tone of indifference. + +"I am awaiting orders to join my new regiment, your excellency," +replied Boris, betraying neither annoyance at the prince's brusque +manner nor a desire to enter into conversation, but speaking so +quietly and respectfully that the prince gave him a searching glance. + +"Are you living with your mother?" + +"I am living at Countess Rostova's," replied Boris, again adding, +"your excellency." + +"That is, with Ilya Rostov who married Nataly Shinshina," said +Anna Mikhaylovna. + +"I know, I know," answered Prince Vasili in his monotonous voice. "I +never could understand how Nataly made up her mind to marry that +unlicked bear! A perfectly absurd and stupid fellow, and a gambler +too, I am told." + +"But a very kind man, Prince," said Anna Mikhaylovna with a pathetic +smile, as though she too knew that Count Rostov deserved this censure, +but asked him not to be too hard on the poor old man. "What do the +doctors say?" asked the princess after a pause, her worn face again +expressing deep sorrow. + +"They give little hope," replied the prince. + +"And I should so like to thank Uncle once for all his kindness to me +and Boris. He is his godson," she added, her tone suggesting that this +fact ought to give Prince Vasili much satisfaction. + +Prince Vasili became thoughtful and frowned. Anna Mikhaylovna saw +that he was afraid of finding in her a rival for Count Bezukhov's +fortune, and hastened to reassure him. + +"If it were not for my sincere affection and devotion to Uncle," +said she, uttering the word with peculiar assurance and unconcern, +"I know his character: noble, upright... but you see he has no one +with him except the young princesses.... They are still young...." She +bent her head and continued in a whisper: "Has he performed his +final duty, Prince? How priceless are those last moments! It can +make things no worse, and it is absolutely necessary to prepare him if +he is so ill. We women, Prince," and she smiled tenderly, "always know +how to say these things. I absolutely must see him, however painful it +may be for me. I am used to suffering." + +Evidently the prince understood her, and also understood, as he +had done at Anna Pavlovna's, that it would be difficult to get rid +of Anna Mikhaylovna. + +"Would not such a meeting be too trying for him, dear Anna +Mikhaylovna?" said he. "Let us wait until evening. The doctors are +expecting a crisis." + +"But one cannot delay, Prince, at such a moment! Consider that the +welfare of his soul is at stake. Ah, it is awful: the duties of a +Christian..." + +A door of one of the inner rooms opened and one of the princesses, +the count's niece, entered with a cold, stern face. The length of +her body was strikingly out of proportion to her short legs. Prince +Vasili turned to her. + +"Well, how is he?" + +"Still the same; but what can you expect, this noise..." said the +princess, looking at Anna Mikhaylovna as at a stranger. + +"Ah, my dear, I hardly knew you," said Anna Mikhaylovna with a happy +smile, ambling lightly up to the count's niece. "I have come, and am +at your service to help you nurse my uncle. I imagine what you have +gone through," and she sympathetically turned up her eyes. + +The princess gave no reply and did not even smile, but left the room +as Anna Mikhaylovna took off her gloves and, occupying the position +she had conquered, settled down in an armchair, inviting Prince Vasili +to take a seat beside her. + +"Boris," she said to her son with a smile, "I shall go in to see the +count, my uncle; but you, my dear, had better go to Pierre meanwhile +and don't forget to give him the Rostovs' invitation. They ask him +to dinner. I suppose he won't go?" she continued, turning to the +prince. + +"On the contrary," replied the prince, who had plainly become +depressed, "I shall be only too glad if you relieve me of that young +man.... Here he is, and the count has not once asked for him." + +He shrugged his shoulders. A footman conducted Boris down one flight +of stairs and up another, to Pierre's rooms. + + + + + +CHAPTER XVI + + +Pierre, after all, had not managed to choose a career for himself in +Petersburg, and had been expelled from there for riotous conduct and +sent to Moscow. The story told about him at Count Rostov's was true. +Pierre had taken part in tying a policeman to a bear. He had now +been for some days in Moscow and was staying as usual at his +father's house. Though he expected that the story of his escapade +would be already known in Moscow and that the ladies about his father- +who were never favorably disposed toward him--would have used it to +turn the count against him, he nevertheless on the day of his +arrival went to his father's part of the house. Entering the drawing +room, where the princesses spent most of their time, he greeted the +ladies, two of whom were sitting at embroidery frames while a third +read aloud. It was the eldest who was reading--the one who had met +Anna Mikhaylovna. The two younger ones were embroidering: both were +rosy and pretty and they differed only in that one had a little mole +on her lip which made her much prettier. Pierre was received as if +he were a corpse or a leper. The eldest princess paused in her reading +and silently stared at him with frightened eyes; the second assumed +precisely the same expression; while the youngest, the one with the +mole, who was of a cheerful and lively disposition, bent over her +frame to hide a smile probably evoked by the amusing scene she +foresaw. She drew her wool down through the canvas and, scarcely +able to refrain from laughing, stooped as if trying to make out the +pattern. + +"How do you do, cousin?" said Pierre. "You don't recognize me?" + +"I recognize you only too well, too well." + +"How is the count? Can I see him?" asked Pierre, awkwardly as usual, +but unabashed. + +"The count is suffering physically and mentally, and apparently +you have done your best to increase his mental sufferings." + +"Can I see the count?" Pierre again asked. + +"Hm.... If you wish to kill him, to kill him outright, you can see +him... Olga, go and see whether Uncle's beef tea is ready--it is +almost time," she added, giving Pierre to understand that they were +busy, and busy making his father comfortable, while evidently he, +Pierre, was only busy causing him annoyance. + +Olga went out. Pierre stood looking at the sisters; then he bowed +and said: "Then I will go to my rooms. You will let me know when I can +see him." + +And he left the room, followed by the low but ringing laughter of +the sister with the mole. + +Next day Prince Vasili had arrived and settled in the count's house. +He sent for Pierre and said to him: "My dear fellow, if you are +going to behave here as you did in Petersburg, you will end very +badly; that is all I have to say to you. The count is very, very +ill, and you must not see him at all." + +Since then Pierre had not been disturbed and had spent the whole +time in his rooms upstairs. + +When Boris appeared at his door Pierre was pacing up and down his +room, stopping occasionally at a corner to make menacing gestures at +the wall, as if running a sword through an invisible foe, and +glaring savagely over his spectacles, and then again resuming his +walk, muttering indistinct words, shrugging his shoulders and +gesticulating. + +"England is done for," said he, scowling and pointing his finger +at someone unseen. "Mr. Pitt, as a traitor to the nation and to the +rights of man, is sentenced to..." But before Pierre--who at that +moment imagined himself to be Napoleon in person and to have just +effected the dangerous crossing of the Straits of Dover and captured +London--could pronounce Pitt's sentence, he saw a well-built and +handsome young officer entering his room. Pierre paused. He had left +Moscow when Boris was a boy of fourteen, and had quite forgotten +him, but in his usual impulsive and hearty way he took Boris by the +hand with a friendly smile. + +"Do you remember me?" asked Boris quietly with a pleasant smile. +"I have come with my mother to see the count, but it seems he is not +well." + +"Yes, it seems he is ill. People are always disturbing him," +answered Pierre, trying to remember who this young man was. + +Boris felt that Pierre did not recognize him but did not consider it +necessary to introduce himself, and without experiencing the least +embarrassment looked Pierre straight in the face. + +"Count Rostov asks you to come to dinner today," said he, after a +considerable pause which made Pierre feel uncomfortable. + +"Ah, Count Rostov!" exclaimed Pierre joyfully. "Then you are his +son, Ilya? Only fancy, I didn't know you at first. Do you remember how +we went to the Sparrow Hills with Madame Jacquot?... It's such an +age..." + +"You are mistaken," said Boris deliberately, with a bold and +slightly sarcastic smile. "I am Boris, son of Princess Anna +Mikhaylovna Drubetskaya. Rostov, the father, is Ilya, and his son is +Nicholas. I never knew any Madame Jacquot." + +Pierre shook his head and arms as if attacked by mosquitoes or bees. + +"Oh dear, what am I thinking about? I've mixed everything up. One +has so many relatives in Moscow! So you are Boris? Of course. Well, +now we know where we are. And what do you think of the Boulogne +expedition? The English will come off badly, you know, if Napoleon +gets across the Channel. I think the expedition is quite feasible. +If only Villeneuve doesn't make a mess of things!" + +Boris knew nothing about the Boulogne expedition; he did not read +the papers and it was the first time he had heard Villeneuve's name. + +"We here in Moscow are more occupied with dinner parties and scandal +than with politics," said he in his quiet ironical tone. "I know +nothing about it and have not thought about it. Moscow is chiefly busy +with gossip," he continued. "Just now they are talking about you and +your father." + +Pierre smiled in his good-natured way as if afraid for his +companion's sake that the latter might say something he would +afterwards regret. But Boris spoke distinctly, clearly, and dryly, +looking straight into Pierre's eyes. + +"Moscow has nothing else to do but gossip," Boris went on. +"Everybody is wondering to whom the count will leave his fortune, +though he may perhaps outlive us all, as I sincerely hope he will..." + +"Yes, it is all very horrid," interrupted Pierre, "very horrid." + +Pierre was still afraid that this officer might inadvertently say +something disconcerting to himself. + +"And it must seem to you," said Boris flushing slightly, but not +changing his tone or attitude, "it must seem to you that everyone is +trying to get something out of the rich man?" + +"So it does," thought Pierre. + +"But I just wish to say, to avoid misunderstandings, that you are +quite mistaken if you reckon me or my mother among such people. We are +very poor, but for my own part at any rate, for the very reason that +your father is rich, I don't regard myself as a relation of his, and +neither I nor my mother would ever ask or take anything from him." + +For a long time Pierre could not understand, but when he did, he +jumped up from the sofa, seized Boris under the elbow in his quick, +clumsy way, and, blushing far more than Boris, began to speak with a +feeling of mingled shame and vexation. + +"Well, this is strange! Do you suppose I... who could think?... I +know very well..." + +But Boris again interrupted him. + +"I am glad I have spoken out fully. Perhaps you did not like it? You +must excuse me," said he, putting Pierre at ease instead of being +put at ease by him, "but I hope I have not offended you. I always make +it a rule to speak out... Well, what answer am I to take? Will you +come to dinner at the Rostovs'?" + +And Boris, having apparently relieved himself of an onerous duty and +extricated himself from an awkward situation and placed another in it, +became quite pleasant again. + +"No, but I say," said Pierre, calming down, "you are a wonderful +fellow! What you have just said is good, very good. Of course you +don't know me. We have not met for such a long time... not since we +were children. You might think that I... I understand, quite +understand. I could not have done it myself, I should not have had the +courage, but it's splendid. I am very glad to have made your +acquaintance. It's queer," he added after a pause, "that you should +have suspected me!" He began to laugh. "Well, what of it! I hope we'll +get better acquainted," and he pressed Boris' hand. "Do you know, I +have not once been in to see the count. He has not sent for me.... I +am sorry for him as a man, but what can one do?" + +"And so you think Napoleon will manage to get an army across?" asked +Boris with a smile. + +Pierre saw that Boris wished to change the subject, and being of the +same mind he began explaining the advantages and disadvantages of +the Boulogne expedition. + +A footman came in to summon Boris--the princess was going. Pierre, +in order to make Boris' better acquaintance, promised to come to +dinner, and warmly pressing his hand looked affectionately over his +spectacles into Boris' eyes. After he had gone Pierre continued pacing +up and down the room for a long time, no longer piercing an +imaginary foe with his imaginary sword, but smiling at the remembrance +of that pleasant, intelligent, and resolute young man. + +As often happens in early youth, especially to one who leads a +lonely life, he felt an unaccountable tenderness for this young man +and made up his mind that they would be friends. + +Prince Vasili saw the princess off. She held a handkerchief to her +eyes and her face was tearful. + +"It is dreadful, dreadful!" she was saying, "but cost me what it may +I shall do my duty. I will come and spend the night. He must not be +left like this. Every moment is precious. I can't think why his nieces +put it off. Perhaps God will help me to find a way to prepare +him!... Adieu, Prince! May God support you..." + +"Adieu, ma bonne," answered Prince Vasili turning away from her. + +"Oh, he is in a dreadful state," said the mother to her son when +they were in the carriage. "He hardly recognizes anybody." + +"I don't understand, Mamma--what is his attitude to Pierre?" asked +the son. + +"The will will show that, my dear; our fate also depends on it." + +"But why do you expect that he will leave us anything?" + +"Ah, my dear! He is so rich, and we are so poor!" + +"Well, that is hardly a sufficient reason, Mamma..." + +"Oh, Heaven! How ill he is!" exclaimed the mother. + + + + + +CHAPTER XVII + +After Anna Mikhaylovna had driven off with her son to visit Count +Cyril Vladimirovich Bezukhov, Countess Rostova sat for a long time all +alone applying her handkerchief to her eyes. At last she rang. + +"What is the matter with you, my dear?" she said crossly to the maid +who kept her waiting some minutes. "Don't you wish to serve me? Then +I'll find you another place." + +The countess was upset by her friend's sorrow and humiliating +poverty, and was therefore out of sorts, a state of mind which with +her always found expression in calling her maid "my dear" and speaking +to her with exaggerated politeness. + +"I am very sorry, ma'am," answered the maid. + +"Ask the count to come to me." + +The count came waddling in to see his wife with a rather guilty look +as usual. + +"Well, little countess? What a saute of game au madere we are to +have, my dear! I tasted it. The thousand rubles I paid for Taras +were not ill-spent. He is worth it!" + +He sat down by his wife, his elbows on his knees and his hands +ruffling his gray hair. + +"What are your commands, little countess?" + +"You see, my dear... What's that mess?" she said, pointing to his +waistcoat. "It's the saute, most likely," she added with a smile. +"Well, you see, Count, I want some money." + +Her face became sad. + +"Oh, little countess!"... and the count began bustling to get out +his pocketbook. + +"I want a great deal, Count! I want five hundred rubles," and taking +out her cambric handkerchief she began wiping her husband's waistcoat. + +"Yes, immediately, immediately! Hey, who's there?" he called out +in a tone only used by persons who are certain that those they call +will rush to obey the summons. "Send Dmitri to me!" + +Dmitri, a man of good family who had been brought up in the +count's house and now managed all his affairs, stepped softly into the +room. + +"This is what I want, my dear fellow," said the count to the +deferential young man who had entered. "Bring me..." he reflected a +moment, "yes, bring me seven hundred rubles, yes! But mind, don't +bring me such tattered and dirty notes as last time, but nice clean +ones for the countess." + +"Yes, Dmitri, clean ones, please," said the countess, sighing +deeply. + +"When would you like them, your excellency?" asked Dmitri. "Allow me +to inform you... But, don't be uneasy," he added, noticing that the +count was beginning to breathe heavily and quickly which was always +a sign of approaching anger. "I was forgetting... Do you wish it +brought at once?" + +"Yes, yes; just so! Bring it. Give it to the countess." + +"What a treasure that Dmitri is," added the count with a smile +when the young man had departed. "There is never any 'impossible' +with him. That's a thing I hate! Everything is possible." + +"Ah, money, Count, money! How much sorrow it causes in the world," +said the countess. "But I am in great need of this sum." + +"You, my little countess, are a notorious spendthrift," said the +count, and having kissed his wife's hand he went back to his study. + +When Anna Mikhaylovna returned from Count Bezukhov's the money, +all in clean notes, was lying ready under a handkerchief on the +countess' little table, and Anna Mikhaylovna noticed that something +was agitating her. + +"Well, my dear?" asked the countess. + +"Oh, what a terrible state he is in! One would not know him, he is +so ill! I was only there a few moments and hardly said a word..." + +"Annette, for heaven's sake don't refuse me," the countess began, +with a blush that looked very strange on her thin, dignified, +elderly face, and she took the money from under the handkerchief. + +Anna Mikhaylovna instantly guessed her intention and stooped to be +ready to embrace the countess at the appropriate moment. + +"This is for Boris from me, for his outfit." + +Anna Mikhaylovna was already embracing her and weeping. The countess +wept too. They wept because they were friends, and because they were +kindhearted, and because they--friends from childhood--had to think +about such a base thing as money, and because their youth was over.... +But those tears were pleasant to them both. + + + + + +CHAPTER XVIII + + +Countess Rostova, with her daughters and a large number of guests, +was already seated in the drawing room. The count took the gentlemen +into his study and showed them his choice collection of Turkish pipes. +From time to time he went out to ask: "Hasn't she come yet?" They were +expecting Marya Dmitrievna Akhrosimova, known in society as le +terrible dragon, a lady distinguished not for wealth or rank, but +for common sense and frank plainness of speech. Marya Dmitrievna was +known to the Imperial family as well as to all Moscow and +Petersburg, and both cities wondered at her, laughed privately at +her rudenesses, and told good stories about her, while none the less +all without exception respected and feared her. + +In the count's room, which was full of tobacco smoke, they talked of +war that had been announced in a manifesto, and about the +recruiting. None of them had yet seen the manifesto, but they all knew +it had appeared. The count sat on the sofa between two guests who were +smoking and talking. He neither smoked nor talked, but bending his +head first to one side and then to the other watched the smokers +with evident pleasure and listened to the conversation of his two +neighbors, whom he egged on against each other. + +One of them was a sallow, clean-shaven civilian with a thin and +wrinkled face, already growing old, though he was dressed like a +most fashionable young man. He sat with his legs up on the sofa as +if quite at home and, having stuck an amber mouthpiece far into his +mouth, was inhaling the smoke spasmodically and screwing up his +eyes. This was an old bachelor, Shinshin, a cousin of the countess', a +man with "a sharp tongue" as they said in Moscow society. He seemed to +be condescending to his companion. The latter, a fresh, rosy officer +of the Guards, irreproachably washed, brushed, and buttoned, held +his pipe in the middle of his mouth and with red lips gently inhaled +the smoke, letting it escape from his handsome mouth in rings. This +was Lieutenant Berg, an officer in the Semenov regiment with whom +Boris was to travel to join the army, and about whom Natasha had, +teased her elder sister Vera, speaking of Berg as her "intended." +The count sat between them and listened attentively. His favorite +occupation when not playing boston, a card game he was very fond of, +was that of listener, especially when he succeeded in setting two +loquacious talkers at one another. + +"Well, then, old chap, mon tres honorable Alphonse Karlovich," +said Shinshin, laughing ironically and mixing the most ordinary +Russian expressions with the choicest French phrases--which was a +peculiarity of his speech. "Vous comptez vous faire des rentes sur +l'etat;* you want to make something out of your company?" + + +*You expect to make an income out of the government. + + +"No, Peter Nikolaevich; I only want to show that in the cavalry +the advantages are far less than in the infantry. Just consider my own +position now, Peter Nikolaevich..." + +Berg always spoke quietly, politely, and with great precision. His +conversation always related entirely to himself; he would remain +calm and silent when the talk related to any topic that had no +direct bearing on himself. He could remain silent for hours without +being at all put out of countenance himself or making others +uncomfortable, but as soon as the conversation concerned himself he +would begin to talk circumstantially and with evident satisfaction. + +"Consider my position, Peter Nikolaevich. Were I in the cavalry I +should get not more than two hundred rubles every four months, even +with the rank of lieutenant; but as it is I receive two hundred and +thirty," said he, looking at Shinshin and the count with a joyful, +pleasant smile, as if it were obvious to him that his success must +always be the chief desire of everyone else. + +"Besides that, Peter Nikolaevich, by exchanging into the Guards I +shall be in a more prominent position," continued Berg, "and vacancies +occur much more frequently in the Foot Guards. Then just think what +can be done with two hundred and thirty rubles! I even manage to put a +little aside and to send something to my father," he went on, emitting +a smoke ring. + +"La balance y est...* A German knows how to skin a flint, as the +proverb says," remarked Shinshin, moving his pipe to the other side of +his mouth and winking at the count. + + +*So that squares matters. + + +The count burst out laughing. The other guests seeing that +Shinshin was talking came up to listen. Berg, oblivious of irony or +indifference, continued to explain how by exchanging into the Guards +he had already gained a step on his old comrades of the Cadet Corps; +how in wartime the company commander might get killed and he, as +senior in the company, might easily succeed to the post; how popular +he was with everyone in the regiment, and how satisfied his father was +with him. Berg evidently enjoyed narrating all this, and did not +seem to suspect that others, too, might have their own interests. +But all he said was so prettily sedate, and the naivete of his +youthful egotism was so obvious, that he disarmed his hearers. + +"Well, my boy, you'll get along wherever you go--foot or horse--that +I'll warrant," said Shinshin, patting him on the shoulder and taking +his feet off the sofa. + +Berg smiled joyously. The count, by his guests, went into the +drawing room. + +It was just the moment before a big dinner when the assembled +guests, expecting the summons to zakuska,* avoid engaging in any +long conversation but think it necessary to move about and talk, in +order to show that they are not at all impatient for their food. The +host and hostess look toward the door, and now and then glance at +one another, and the visitors try to guess from these glances who, +or what, they are waiting for--some important relation who has not yet +arrived, or a dish that is not yet ready. + + +*Hors d'oeuvres. + + +Pierre had come just at dinnertime and was sitting awkwardly in +the middle of the drawing room on the first chair he had come +across, blocking the way for everyone. The countess tried to make +him talk, but he went on naively looking around through his spectacles +as if in search of somebody and answered all her questions in +monosyllables. He was in the way and was the only one who did not +notice the fact. Most of the guests, knowing of the affair with the +bear, looked with curiosity at this big, stout, quiet man, wondering +how such a clumsy, modest fellow could have played such a prank on a +policeman. + +"You have only lately arrived?" the countess asked him. + +"Oui, madame," replied he, looking around him. + +"You have not yet seen my husband?" + +"Non, madame." He smiled quite inappropriately. + +"You have been in Paris recently, I believe? I suppose it's very +interesting." + +"Very interesting." + +The countess exchanged glances with Anna Mikhaylovna. The latter +understood that she was being asked to entertain this young man, and +sitting down beside him she began to speak about his father; but he +answered her, as he had the countess, only in monosyllables. The other +guests were all conversing with one another. "The Razumovskis... It +was charming... You are very kind... Countess Apraksina..." was +heard on all sides. The countess rose and went into the ballroom. + +"Marya Dmitrievna?" came her voice from there. + +"Herself," came the answer in a rough voice, and Marya Dmitrievna +entered the room. + +All the unmarried ladies and even the married ones except the very +oldest rose. Marya Dmitrievna paused at the door. Tall and stout, +holding high her fifty-year-old head with its gray curls, she stood +surveying the guests, and leisurely arranged her wide sleeves as if +rolling them up. Marya Dmitrievna always spoke in Russian. + +"Health and happiness to her whose name day we are keeping and to +her children," she said, in her loud, full-toned voice which drowned +all others. "Well, you old sinner," she went on, turning to the +count who was kissing her hand, "you're feeling dull in Moscow, I +daresay? Nowhere to hunt with your dogs? But what is to be done, old +man? Just see how these nestlings are growing up," and she pointed +to the girls. "You must look for husbands for them whether you like it +or not...." + +"Well," said she, "how's my Cossack?" (Marya Dmitrievna always called +Natasha a Cossack) and she stroked the child's arm as she came up +fearless and gay to kiss her hand. "I know she's a scamp of a girl, +but I like her." + +She took a pair of pear-shaped ruby earrings from her huge +reticule and, having given them to the rosy Natasha, who beamed with +the pleasure of her saint's-day fete, turned away at once and +addressed herself to Pierre. + +"Eh, eh, friend! Come here a bit," said she, assuming a soft high +tone of voice. "Come here, my friend..." and she ominously tucked up +her sleeves still higher. Pierre approached, looking at her in a +childlike way through his spectacles. + +"Come nearer, come nearer, friend! I used to be the only one to tell +your father the truth when he was in favor, and in your case it's my +evident duty." She paused. All were silent, expectant of what was to +follow, for this was dearly only a prelude. + +"A fine lad! My word! A fine lad!... His father lies on his deathbed +and he amuses himself setting a policeman astride a bear! For shame, +sir, for shame! It would be better if you went to the war." + +She turned away and gave her hand to the count, who could hardly +keep from laughing. + +"Well, I suppose it is time we were at table?" said Marya +Dmitrievna. + +The count went in first with Marya Dmitrievna, the countess followed +on the arm of a colonel of hussars, a man of importance to them +because Nicholas was to go with him to the regiment; then came Anna +Mikhaylovna with Shinshin. Berg gave his arm to Vera. The smiling +Julie Karagina went in with Nicholas. After them other couples +followed, filling the whole dining hall, and last of all the children, +tutors, and governesses followed singly. The footmen began moving +about, chairs scraped, the band struck up in the gallery, and the +guests settled down in their places. Then the strains of the count's +household band were replaced by the clatter of knives and forks, the +voices of visitors, and the soft steps of the footmen. At one end of +the table sat the countess with Marya Dmitrievna on her right and Anna +Mikhaylovna on her left, the other lady visitors were farther down. At +the other end sat the count, with the hussar colonel on his left and +Shinshin and the other male visitors on his right. Midway down the +long table on one side sat the grownup young people: Vera beside Berg, +and Pierre beside Boris; and on the other side, the children, +tutors, and governesses. From behind the crystal decanters and fruit +vases the count kept glancing at his wife and her tall cap with its +light-blue ribbons, and busily filled his neighbors' glasses, not +neglecting his own. The countess in turn, without omitting her +duties as hostess, threw significant glances from behind the +pineapples at her husband whose face and bald head seemed by their +redness to contrast more than usual with his gray hair. At the ladies' +end an even chatter of voices was heard all the time, at the men's end +the voices sounded louder and louder, especially that of the colonel +of hussars who, growing more and more flushed, ate and drank so much +that the count held him up as a pattern to the other guests. Berg with +tender smiles was saying to Vera that love is not an earthly but a +heavenly feeling. Boris was telling his new friend Pierre who the +guests were and exchanging glances with Natasha, who was sitting +opposite. Pierre spoke little but examined the new faces, and ate a +great deal. Of the two soups he chose turtle with savory patties and +went on to the game without omitting a single dish or one of the +wines. These latter the butler thrust mysteriously forward, wrapped in +a napkin, from behind the next man's shoulders and whispered: "Dry +Madeira"... "Hungarian"... or "Rhine wine" as the case might be. Of +the four crystal glasses engraved with the count's monogram that stood +before his plate, Pierre held out one at random and drank with +enjoyment, gazing with ever-increasing amiability at the other guests. +Natasha, who sat opposite, was looking at Boris as girls of thirteen +look at the boy they are in love with and have just kissed for the +first time. Sometimes that same look fell on Pierre, and that funny +lively little girl's look made him inclined to laugh without knowing +why. + +Nicholas sat at some distance from Sonya, beside Julie Karagina, +to whom he was again talking with the same involuntary smile. Sonya +wore a company smile but was evidently tormented by jealousy; now +she turned pale, now blushed and strained every nerve to overhear what +Nicholas and Julie were saying to one another. The governess kept +looking round uneasily as if preparing to resent any slight that might +be put upon the children. The German tutor was trying to remember +all the dishes, wines, and kinds of dessert, in order to send a full +description of the dinner to his people in Germany; and he felt +greatly offended when the butler with a bottle wrapped in a napkin +passed him by. He frowned, trying to appear as if he did not want +any of that wine, but was mortified because no one would understand +that it was not to quench his thirst or from greediness that he wanted +it, but simply from a conscientious desire for knowledge. + + + + + +CHAPTER XIX + + +At the men's end of the table the talk grew more and more +animated. The colonel told them that the declaration of war had +already appeared in Petersburg and that a copy, which he had himself +seen, had that day been forwarded by courier to the commander in +chief. + +"And why the deuce are we going to fight Bonaparte?" remarked +Shinshin. "He has stopped Austria's cackle and I fear it will be our +turn next." + +The colonel was a stout, tall, plethoric German, evidently devoted +to the service and patriotically Russian. He resented Shinshin's +remark. + +"It is for the reasson, my goot sir," said he, speaking with a +German accent, "for the reasson zat ze Emperor knows zat. He +declares in ze manifessto zat he cannot fiew wiz indifference ze +danger vreatening Russia and zat ze safety and dignity of ze Empire as +vell as ze sanctity of its alliances..." he spoke this last word +with particular emphasis as if in it lay the gist of the matter. + +Then with the unerring official memory that characterized him he +repeated from the opening words of the manifesto: + +... and the wish, which constitutes the Emperor's sole and +absolute aim--to establish peace in Europe on firm foundations--has +now decided him to despatch part of the army abroad and to create a +new condition for the attainment of that purpose. + +"Zat, my dear sir, is vy..." he concluded, drinking a tumbler of +wine with dignity and looking to the count for approval. + +"Connaissez-vous le Proverbe:* 'Jerome, Jerome, do not roam, but +turn spindles at home!'?" said Shinshin, puckering his brows and +smiling. "Cela nous convient a merveille.*[2] Suvorov now--he knew +what he was about; yet they beat him a plate couture,*[3] and where +are we to find Suvorovs now? Je vous demande un peu,"*[4] said he, +continually changing from French to Russian. + + +*Do you know the proverb? + +*[2] That suits us down to the ground. + +*[3] Hollow. + +*[4] I just ask you that. + + +"Ve must vight to the last tr-r-op of our plood!" said the +colonel, thumping the table; "and ve must tie for our Emperor, and zen +all vill pe vell. And ve must discuss it as little as po-o-ossible"... +he dwelt particularly on the word possible... "as po-o-ossible," he +ended, again turning to the count. "Zat is how ve old hussars look +at it, and zere's an end of it! And how do you, a young man and a +young hussar, how do you judge of it?" he added, addressing +Nicholas, who when he heard that the war was being discussed had +turned from his partner with eyes and ears intent on the colonel. + +"I am quite of your opinion," replied Nicholas, flaming up, +turning his plate round and moving his wineglasses about with as +much decision and desperation as though he were at that moment +facing some great danger. "I am convinced that we Russians must die or +conquer," he concluded, conscious--as were others--after the words +were uttered that his remarks were too enthusiastic and emphatic for +the occasion and were therefore awkward. + +"What you said just now was splendid!" said his partner Julie. + +Sonya trembled all over and blushed to her ears and behind them +and down to her neck and shoulders while Nicholas was speaking. + +Pierre listened to the colonel's speech and nodded approvingly. + +"That's fine," said he. + +"The young man's a real hussar!" shouted the colonel, again thumping +the table. + +"What are you making such a noise about over there?" Marya +Dmitrievna's deep voice suddenly inquired from the other end of the +table. "What are you thumping the table for?" she demanded of the +hussar, "and why are you exciting yourself? Do you think the French +are here?" + +"I am speaking ze truce," replied the hussar with a smile. + +"It's all about the war," the count shouted down the table. "You +know my son's going, Marya Dmitrievna? My son is going." + +"I have four sons in the army but still I don't fret. It is all in +God's hands. You may die in your bed or God may spare you in a +battle," replied Marya Dmitrievna's deep voice, which easily carried +the whole length of the table. + +"That's true!" + +Once more the conversations concentrated, the ladies' at the one end +and the men's at the other. + +"You won't ask," Natasha's little brother was saying; "I know you +won't ask!" + +"I will," replied Natasha. + +Her face suddenly flushed with reckless and joyous resolution. She +half rose, by a glance inviting Pierre, who sat opposite, to listen to +what was coming, and turning to her mother: + +"Mamma!" rang out the clear contralto notes of her childish voice, +audible the whole length of the table. + +"What is it?" asked the countess, startled; but seeing by her +daughter's face that it was only mischief, she shook a finger at her +sternly with a threatening and forbidding movement of her head. + +The conversation was hushed. + +"Mamma! What sweets are we going to have?" and Natasha's voice +sounded still more firm and resolute. + +The countess tried to frown, but could not. Marya Dmitrievna shook +her fat finger. + +"Cossack!" she said threateningly. + +Most of the guests, uncertain how to regard this sally, looked at +the elders. + +"You had better take care!" said the countess. + +"Mamma! What sweets are we going to have?" Natasha again cried +boldly, with saucy gaiety, confident that her prank would be taken +in good part. + +Sonya and fat little Petya doubled up with laughter. + +"You see! I have asked," whispered Natasha to her little brother and +to Pierre, glancing at him again. + +"Ice pudding, but you won't get any," said Marya Dmitrievna. + +Natasha saw there was nothing to be afraid of and so she braved even +Marya Dmitrievna. + +"Marya Dmitrievna! What kind of ice pudding? I don't like ice +cream." + +"Carrot ices." + +"No! What kind, Marya Dmitrievna? What kind?" she almost screamed; +"I want to know!" + +Marya Dmitrievna and the countess burst out laughing, and all the +guests joined in. Everyone laughed, not at Marya Dmitrievna's answer +but at the incredible boldness and smartness of this little girl who +had dared to treat Marya Dmitrievna in this fashion. + +Natasha only desisted when she had been told that there would be +pineapple ice. Before the ices, champagne was served round. The band +again struck up, the count and countess kissed, and the guests, +leaving their seats, went up to "congratulate" the countess, and +reached across the table to clink glasses with the count, with the +children, and with one another. Again the footmen rushed about, chairs +scraped, and in the same order in which they had entered but with +redder faces, the guests returned to the drawing room and to the +count's study. + + + + + +CHAPTER XX + + +The card tables were drawn out, sets made up for boston, and the +count's visitors settled themselves, some in the two drawing rooms, +some in the sitting room, some in the library. + +The count, holding his cards fanwise, kept himself with difficulty +from dropping into his usual after-dinner nap, and laughed at +everything. The young people, at the countess' instigation, gathered +round the clavichord and harp. Julie by general request played +first. After she had played a little air with variations on the +harp, she joined the other young ladies in begging Natasha and +Nicholas, who were noted for their musical talent, to sing +something. Natasha, who was treated as though she were grown up, was +evidently very proud of this but at the same time felt shy. + +"What shall we sing?" she said. + +"'The Brook,'" suggested Nicholas. + +"Well, then, let's be quick. Boris, come here," said Natasha. "But +where is Sonya?" + +She looked round and seeing that her friend was not in the room +ran to look for her. + +Running into Sonya's room and not finding her there, Natasha ran +to the nursery, but Sonya was not there either. Natasha concluded that +she must be on the chest in the passage. The chest in the passage +was the place of mourning for the younger female generation in the +Rostov household. And there in fact was Sonya lying face downward on +Nurse's dirty feather bed on the top of the chest, crumpling her gauzy +pink dress under her, hiding her face with her slender fingers, and +sobbing so convulsively that her bare little shoulders shook. +Natasha's face, which had been so radiantly happy all that saint's +day, suddenly changed: her eyes became fixed, and then a shiver passed +down her broad neck and the corners of her mouth drooped. + +"Sonya! What is it? What is the matter?... Oo... Oo... Oo...!" And +Natasha's large mouth widened, making her look quite ugly, and she +began to wail like a baby without knowing why, except that Sonya was +crying. Sonya tried to lift her head to answer but could not, and +hid her face still deeper in the bed. Natasha wept, sitting on the +blue-striped feather bed and hugging her friend. With an effort +Sonya sat up and began wiping her eyes and explaining. + +"Nicholas is going away in a week's time, his... papers... have +come... he told me himself... but still I should not cry," and she +showed a paper she held in her hand--with the verses Nicholas had +written, "still, I should not cry, but you can't... no one can +understand... what a soul he has!" + +And she began to cry again because he had such a noble soul. + +"It's all very well for you... I am not envious... I love you and +Boris also," she went on, gaining a little strength; "he is nice... +there are no difficulties in your way.... But Nicholas is my cousin... +one would have to... the Metropolitan himself... and even then it +can't be done. And besides, if she tells Mamma" (Sonya looked upon the +countess as her mother and called her so) "that I am spoiling +Nicholas' career and am heartless and ungrateful, while truly... God +is my witness," and she made the sign of the cross, "I love her so +much, and all of you, only Vera... And what for? What have I done to +her? I am so grateful to you that I would willingly sacrifice +everything, only I have nothing...." + +Sonya could not continue, and again hid her face in her hands and in +the feather bed. Natasha began consoling her, but her face showed that + +she understood all the gravity of her friend's trouble. + +"Sonya," she suddenly exclaimed, as if she had guessed the true +reason of her friend's sorrow, "I'm sure Vera has said something to +you since dinner? Hasn't she?" + +"Yes, these verses Nicholas wrote himself and I copied some +others, and she found them on my table and said she'd show them to +Mamma, and that I was ungrateful, and that Mamma would never allow him +to marry me, but that he'll marry Julie. You see how he's been with +her all day... Natasha, what have I done to deserve it?..." + +And again she began to sob, more bitterly than before. Natasha +lifted her up, hugged her, and, smiling through her tears, began +comforting her. + +"Sonya, don't believe her, darling! Don't believe her! Do you +remember how we and Nicholas, all three of us, talked in the sitting +room after supper? Why, we settled how everything was to be. I don't +quite remember how, but don't you remember that it could all be +arranged and how nice it all was? There's Uncle Shinshin's brother has +married his first cousin. And we are only second cousins, you know. +And Boris says it is quite possible. You know I have told him all +about it. And he is so clever and so good!" said Natasha. "Don't you +cry, Sonya, dear love, darling Sonya!" and she kissed her and laughed. +"Vera's spiteful; never mind her! And all will come right and she +won't say anything to Mamma. Nicholas will tell her himself, and he +doesn't care at all for Julie." + +Natasha kissed her on the hair. + +Sonya sat up. The little kitten brightened, its eyes shone, and it +seemed ready to lift its tail, jump down on its soft paws, and begin +playing with the ball of worsted as a kitten should. + +"Do you think so?... Really? Truly?" she said, quickly smoothing her +frock and hair. + +"Really, truly!" answered Natasha, pushing in a crisp lock that +had strayed from under her friend's plaits. + +Both laughed. + +"Well, let's go and sing 'The Brook.'" + +"Come along!" + +"Do you know, that fat Pierre who sat opposite me is so funny!" said +Natasha, stopping suddenly. "I feel so happy!" + +And she set off at a run along the passage. + +Sonya, shaking off some down which clung to her and tucking away the +verses in the bosom of her dress close to her bony little chest, ran +after Natasha down the passage into the sitting room with flushed face +and light, joyous steps. At the visitors' request the young people +sang the quartette, "The Brook," with which everyone was delighted. +Then Nicholas sang a song he had just learned: + + + At nighttime in the moon's fair glow + How sweet, as fancies wander free, + To feel that in this world there's one + Who still is thinking but of thee! + + That while her fingers touch the harp + Wafting sweet music music the lea, + It is for thee thus swells her heart, + Sighing its message out to thee... + + A day or two, then bliss unspoilt, + But oh! till then I cannot live!... + + +He had not finished the last verse before the young people began +to get ready to dance in the large hall, and the sound of the feet and +the coughing of the musicians were heard from the gallery. + + +Pierre was sitting in the drawing-room where Shinshin had engaged +him, as a man recently returned from abroad, in a political +conversation in which several others joined but which bored Pierre. +When the music began Natasha came in and walking straight up to Pierre +said, laughing and blushing: + +"Mamma told me to ask you to join the dancers." + +"I am afraid of mixing the figures," Pierre replied; "but if you +will be my teacher..." And lowering his big arm he offered it to the +slender little girl. + +While the couples were arranging themselves and the musicians tuning +up, Pierre sat down with his little partner. Natasha was perfectly +happy; she was dancing with a grown-up man, who had been abroad. She +was sitting in a conspicuous place and talking to him like a +grown-up lady. She had a fan in her hand that one of the ladies had +given her to hold. Assuming quite the pose of a society woman +(heaven knows when and where she had learned it) she talked with her +partner, fanning herself and smiling over the fan. + +"Dear, dear! Just look at her!" exclaimed the countess as she +crossed the ballroom, pointing to Natasha. + +Natasha blushed and laughed. + +"Well, really, Mamma! Why should you? What is there to be +surprised at?" + + +In the midst of the third ecossaise there was a clatter of chairs +being pushed back in the sitting room where the count and Marya +Dmitrievna had been playing cards with the majority of the more +distinguished and older visitors. They now, stretching themselves +after sitting so long, and replacing their purses and pocketbooks, +entered the ballroom. First came Marya Dmitrievna and the count, +both with merry countenances. The count, with playful ceremony +somewhat in ballet style, offered his bent arm to Marya Dmitrievna. He +drew himself up, a smile of debonair gallantry lit up his face and +as soon as the last figure of the ecossaise was ended, he clapped +his hands to the musicians and shouted up to their gallery, addressing +the first violin: + +"Semen! Do you know the Daniel Cooper?" + +This was the count's favorite dance, which he had danced in his +youth. (Strictly speaking, Daniel Cooper was one figure of the +anglaise.) + +"Look at Papa!" shouted Natasha to the whole company, and quite +forgetting that she was dancing with a grown-up partner she bent her +curly head to her knees and made the whole room ring with her +laughter. + +And indeed everybody in the room looked with a smile of pleasure +at the jovial old gentleman, who standing beside his tall and stout +partner, Marya Dmitrievna, curved his arms, beat time, straightened +his shoulders, turned out his toes, tapped gently with his foot, +and, by a smile that broadened his round face more and more, +prepared the onlookers for what was to follow. As soon as the +provocatively gay strains of Daniel Cooper (somewhat resembling +those of a merry peasant dance) began to sound, all the doorways of +the ballroom were suddenly filled by the domestic serfs--the men on +one side and the women on the other--who with beaming faces had come +to see their master making merry. + +"Just look at the master! A regular eagle he is!" loudly remarked +the nurse, as she stood in one of the doorways. + +The count danced well and knew it. But his partner could not and did +not want to dance well. Her enormous figure stood erect, her +powerful arms hanging down (she had handed her reticule to the +countess), and only her stern but handsome face really joined in the +dance. What was expressed by the whole of the count's plump figure, in +Marya Dmitrievna found expression only in her more and more beaming +face and quivering nose. But if the count, getting more and more +into the swing of it, charmed the spectators by the unexpectedness +of his adroit maneuvers and the agility with which he capered about on +his light feet, Marya Dmitrievna produced no less impression by slight +exertions--the least effort to move her shoulders or bend her arms +when turning, or stamp her foot--which everyone appreciated in view of +her size and habitual severity. The dance grew livelier and +livelier. The other couples could not attract a moment's attention +to their own evolutions and did not even try to do so. All were +watching the count and Marya Dmitrievna. Natasha kept pulling everyone +by sleeve or dress, urging them to "look at Papa!" though as it was +they never took their eyes off the couple. In the intervals of the +dance the count, breathing deeply, waved and shouted to the +musicians to play faster. Faster, faster, and faster; lightly, more +lightly, and yet more lightly whirled the count, flying round Marya +Dmitrievna, now on his toes, now on his heels; until, turning his +partner round to her seat, he executed the final pas, raising his soft +foot backwards, bowing his perspiring head, smiling and making a +wide sweep with his arm, amid a thunder of applause and laughter led +by Natasha. Both partners stood still, breathing heavily and wiping +their faces with their cambric handkerchiefs. + +"That's how we used to dance in our time, ma chere," said the count. + +"That was a Daniel Cooper!" exclaimed Marya Dmitrievna, tucking up +her sleeves and puffing heavily. + + + + + +CHAPTER XXI + + +While in the Rostovs' ballroom the sixth anglaise was being +danced, to a tune in which the weary musicians blundered, and while +tired footmen and cooks were getting the supper, Count Bezukhov had +a sixth stroke. The doctors pronounced recovery impossible. After a +mute confession, communion was administered to the dying man, +preparations made for the sacrament of unction, and in his house there +was the bustle and thrill of suspense usual at such moments. Outside +the house, beyond the gates, a group of undertakers, who hid +whenever a carriage drove up, waited in expectation of an important +order for an expensive funeral. The Military Governor of Moscow, who +had been assiduous in sending aides-de-camp to inquire after the +count's health, came himself that evening to bid a last farewell to +the celebrated grandee of Catherine's court, Count Bezukhov. + +The magnificent reception room was crowded. Everyone stood up +respectfully when the Military Governor, having stayed about half an +hour alone with the dying man, passed out, slightly acknowledging +their bows and trying to escape as quickly as from the glances fixed +on him by the doctors, clergy, and relatives of the family. Prince +Vasili, who had grown thinner and paler during the last few days, +escorted him to the door, repeating something to him several times +in low tones. + +When the Military Governor had gone, Prince Vasili sat down all +alone on a chair in the ballroom, crossing one leg high over the +other, leaning his elbow on his knee and covering his face with his +hand. After sitting so for a while he rose, and, looking about him +with frightened eyes, went with unusually hurried steps down the +long corridor leading to the back of the house, to the room of the +eldest princess. + +Those who were in the dimly lit reception room spoke in nervous +whispers, and, whenever anyone went into or came from the dying +man's room, grew silent and gazed with eyes full of curiosity or +expectancy at his door, which creaked slightly when opened. + +"The limits of human life... are fixed and may not be o'erpassed," +said an old priest to a lady who had taken a seat beside him and was +listening naively to his words. + +"I wonder, is it not too late to administer unction?" asked the +lady, adding the priest's clerical title, as if she had no opinion +of her own on the subject. + +"Ah, madam, it is a great sacrament," replied the priest, passing +his hand over the thin grizzled strands of hair combed back across his +bald head. + +"Who was that? The Military Governor himself?" was being asked at +the other side of the room. "How young-looking he is!" + +"Yes, and he is over sixty. I hear the count no longer recognizes +anyone. They wished to administer the sacrament of unction." + +"I knew someone who received that sacrament seven times." + +The second princess had just come from the sickroom with her eyes +red from weeping and sat down beside Dr. Lorrain, who was sitting in a +graceful pose under a portrait of Catherine, leaning his elbow on a +table. + +"Beautiful," said the doctor in answer to a remark about the +weather. "The weather is beautiful, Princess; and besides, in Moscow +one feels as if one were in the country." + +"Yes, indeed," replied the princess with a sigh. "So he may have +something to drink?" + +Lorrain considered. + +"Has he taken his medicine?" + +"Yes." + +The doctor glanced at his watch. + +"Take a glass of boiled water and put a pinch of cream of tartar," +and he indicated with his delicate fingers what he meant by a pinch. + +"Dere has neffer been a gase," a German doctor was saying to an +aide-de-camp, "dat one liffs after de sird stroke." + +"And what a well-preserved man he was!" remarked the aide-de-camp. +"And who will inherit his wealth?" he added in a whisper. + +"It von't go begging," replied the German with a smile. + +Everyone again looked toward the door, which creaked as the second +princess went in with the drink she had prepared according to +Lorrain's instructions. The German doctor went up to Lorrain. + +"Do you think he can last till morning?" asked the German, +addressing Lorrain in French which he pronounced badly. + +Lorrain, pursing up his lips, waved a severely negative finger +before his nose. + +"Tonight, not later," said he in a low voice, and he moved away with +a decorous smile of self-satisfaction at being able clearly to +understand and state the patient's condition. + + +Meanwhile Prince Vasili had opened the door into the princess' room. + +In this room it was almost dark; only two tiny lamps were burning +before the icons and there was a pleasant scent of flowers and burnt +pastilles. The room was crowded with small pieces of furniture, +whatnots, cupboards, and little tables. The quilt of a high, white +feather bed was just visible behind a screen. A small dog began to +bark. + +"Ah, is it you, cousin?" + +She rose and smoothed her hair, which was as usual so extremely +smooth that it seemed to be made of one piece with her head and +covered with varnish. + +"Has anything happened?" she asked. "I am so terrified." + +"No, there is no change. I only came to have a talk about +business, Catiche,"* muttered the prince, seating himself wearily on +the chair she had just vacated. "You have made the place warm, I +must say," he remarked. "Well, sit down: let's have a talk." + + +*Catherine. + + +"I thought perhaps something had happened," she said with her +unchanging stonily severe expression; and, sitting down opposite the +prince, she prepared to listen. + +"I wished to get a nap, mon cousin, but I can't." + +"Well, my dear?" said Prince Vasili, taking her hand and bending +it downwards as was his habit. + +It was plain that this "well?" referred to much that they both +understood without naming. + +The princess, who had a straight, rigid body, abnormally long for +her legs, looked directly at Prince Vasili with no sign of emotion +in her prominent gray eyes. Then she shook her head and glanced up +at the icons with a sigh. This might have been taken as an +expression of sorrow and devotion, or of weariness and hope of resting +before long. Prince Vasili understood it as an expression of +weariness. + +"And I?" he said; "do you think it is easier for me? I am as worn +out as a post horse, but still I must have a talk with you, Catiche, a +very serious talk." + +Prince Vasili said no more and his cheeks began to twitch nervously, +now on one side, now on the other, giving his face an unpleasant +expression which was never to be seen on it in a drawing room. His +eyes too seemed strange; at one moment they looked impudently sly +and at the next glanced round in alarm. + +The princess, holding her little dog on her lap with her thin bony +hands, looked attentively into Prince Vasili's eyes evidently resolved +not to be the first to break silence, if she had to wait till morning. + +"Well, you see, my dear princess and cousin, Catherine Semenovna," +continued Prince Vasili, returning to his theme, apparently not +without an inner struggle; "at such a moment as this one must think of +everything. One must think of the future, of all of you... I love +you all, like children of my own, as you know." + +The princess continued to look at him without moving, and with the +same dull expression. + +"And then of course my family has also to be considered," Prince +Vasili went on, testily pushing away a little table without looking at +her. "You know, Catiche, that we--you three sisters, Mamontov, and +my wife--are the count's only direct heirs. I know, I know how hard it +is for you to talk or think of such matters. It is no easier for me; +but, my dear, I am getting on for sixty and must be prepared for +anything. Do you know I have sent for Pierre? The count," pointing +to his portrait, "definitely demanded that he should be called." + +Prince Vasili looked questioningly at the princess, but could not +make out whether she was considering what he had just said or +whether she was simply looking at him. + +"There is one thing I constantly pray God to grant, mon cousin," she +replied, "and it is that He would be merciful to him and would allow +his noble soul peacefully to leave this..." + +"Yes, yes, of course," interrupted Prince Vasili impatiently, +rubbing his bald head and angrily pulling back toward him the little +table that he had pushed away. "But... in short, the fact is... you +know yourself that last winter the count made a will by which he +left all his property, not to us his direct heirs, but to Pierre." + +"He has made wills enough!" quietly remarked the princess. "But he +cannot leave the estate to Pierre. Pierre is illegitimate." + +"But, my dear," said Prince Vasili suddenly, clutching the little +table and becoming more animated and talking more rapidly: "what if +a letter has been written to the Emperor in which the count asks for +Pierre's legitimation? Do you understand that in consideration of +the count's services, his request would be granted?..." + +The princess smiled as people do who think they know more about +the subject under discussion than those they are talking with. + +"I can tell you more," continued Prince Vasili, seizing her hand, +"that letter was written, though it was not sent, and the Emperor knew +of it. The only question is, has it been destroyed or not? If not, +then as soon as all is over," and Prince Vasili sighed to intimate +what he meant by the words all is over, "and the count's papers are +opened, the will and letter will be delivered to the Emperor, and +the petition will certainly be granted. Pierre will get everything +as the legitimate son." + +"And our share?" asked the princess smiling ironically, as if +anything might happen, only not that. + +"But, my poor Catiche, it is as clear as daylight! He will then be +the legal heir to everything and you won't get anything. You must +know, my dear, whether the will and letter were written, and whether +they have been destroyed or not. And if they have somehow been +overlooked, you ought to know where they are, and must find them, +because..." + +"What next?" the princess interrupted, smiling sardonically and +not changing the expression of her eyes. "I am a woman, and you +think we are all stupid; but I know this: an illegitimate son cannot +inherit... un batard!"* she added, as if supposing that this +translation of the word would effectively prove to Prince Vasili the +invalidity of his contention. + + +*A bastard. + + +"Well, really, Catiche! Can't you understand! You are so +intelligent, how is it you don't see that if the count has written a +letter to the Emperor begging him to recognize Pierre as legitimate, +it follows that Pierre will not be Pierre but will become Count +Bezukhov, and will then inherit everything under the will? And if +the will and letter are not destroyed, then you will have nothing +but the consolation of having been dutiful et tout ce qui s'ensuit!* +That's certain." + + +*And all that follows therefrom. + + +"I know the will was made, but I also know that it is invalid; and +you, mon cousin, seem to consider me a perfect fool," said the +princess with the expression women assume when they suppose they are +saying something witty and stinging. + +"My dear Princess Catherine Semenovna," began Prince Vasili +impatiently, "I came here not to wrangle with you, but to talk about +your interests as with a kinswoman, a good, kind, true relation. And I +tell you for the tenth time that if the letter to the Emperor and +the will in Pierre's favor are among the count's papers, then, my dear +girl, you and your sisters are not heiresses! If you don't believe me, +then believe an expert. I have just been talking to Dmitri Onufrich" +(the family solicitor) "and he says the same." + +At this a sudden change evidently took place in the princess' ideas; +her thin lips grew white, though her eyes did not change, and her +voice when she began to speak passed through such transitions as she +herself evidently did not expect. + +"That would be a fine thing!" said she. "I never wanted anything and +I don't now." + +She pushed the little dog off her lap and smoothed her dress. + +"And this is gratitude--this is recognition for those who have +sacrificed everything for his sake!" she cried. "It's splendid! +Fine! I don't want anything, Prince." + +"Yes, but you are not the only one. There are your sisters..." +replied Prince Vasili. + +But the princess did not listen to him. + +"Yes, I knew it long ago but had forgotten. I knew that I could +expect nothing but meanness, deceit, envy, intrigue, and +ingratitude--the blackest ingratitude--in this house..." + +"Do you or do you not know where that will is?" insisted Prince +Vasili, his cheeks twitching more than ever. + +"Yes, I was a fool! I still believed in people, loved them, and +sacrificed myself. But only the base, the vile succeed! I know who has +been intriguing!" + +The princess wished to rise, but the prince held her by the hand. +She had the air of one who has suddenly lost faith in the whole +human race. She gave her companion an angry glance. + +"There is still time, my dear. You must remember, Catiche, that it +was all done casually in a moment of anger, of illness, and was +afterwards forgotten. Our duty, my dear, is to rectify his mistake, to +ease his last moments by not letting him commit this injustice, and +not to let him die feeling that he is rendering unhappy those who..." + +"Who sacrificed everything for him," chimed in the princess, who +would again have risen had not the prince still held her fast, "though +he never could appreciate it. No, mon cousin," she added with a +sigh, "I shall always remember that in this world one must expect no +reward, that in this world there is neither honor nor justice. In this +world one has to be cunning and cruel." + +"Now come, come! Be reasonable. I know your excellent heart." + +"No, I have a wicked heart." + +"I know your heart," repeated the prince. "I value your friendship +and wish you to have as good an opinion of me. Don't upset yourself, +and let us talk sensibly while there is still time, be it a day or +be it but an hour.... Tell me all you know about the will, and above +all where it is. You must know. We will take it at once and show it to +the count. He has, no doubt, forgotten it and will wish to destroy it. +You understand that my sole desire is conscientiously to carry out his +wishes; that is my only reason for being here. I came simply to help +him and you." + +"Now I see it all! I know who has been intriguing--I know!" cried +the princess. + +"That's not the point, my dear." + +"It's that protege of yours, that sweet Princess Drubetskaya, that +Anna Mikhaylovna whom I would not take for a housemaid... the +infamous, vile woman!" + +"Do not let us lose any time..." + +"Ah, don't talk to me! Last winter she wheedled herself in here +and told the count such vile, disgraceful things about us, +especially about Sophie--I can't repeat them--that it made the count +quite ill and he would not see us for a whole fortnight. I know it was +then he wrote this vile, infamous paper, but I thought the thing was +invalid." + +"We've got to it at last--why did you not tell me about it sooner?" + +"It's in the inlaid portfolio that he keeps under his pillow," +said the princess, ignoring his question. "Now I know! Yes; if I +have a sin, a great sin, it is hatred of that vile woman!" almost +shrieked the princess, now quite changed. "And what does she come +worming herself in here for? But I will give her a piece of my mind. +The time will come!" + + + + + +CHAPTER XXII + + +While these conversations were going on in the reception room and +the princess' room, a carriage containing Pierre (who had been sent +for) and Anna Mikhaylovna (who found it necessary to accompany him) +was driving into the court of Count Bezukhov's house. As the wheels +rolled softly over the straw beneath the windows, Anna Mikhaylovna, +having turned with words of comfort to her companion, realized that he +was asleep in his corner and woke him up. Rousing himself, Pierre +followed Anna Mikhaylovna out of the carriage, and only then began +to think of the interview with his dying father which awaited him. +He noticed that they had not come to the front entrance but to the +back door. While he was getting down from the carriage steps two +men, who looked like tradespeople, ran hurriedly from the entrance and +hid in the shadow of the wall. Pausing for a moment, Pierre noticed +several other men of the same kind hiding in the shadow of the house +on both sides. But neither Anna Mikhaylovna nor the footman nor the +coachman, who could not help seeing these people, took any notice of +them. "It seems to be all right," Pierre concluded, and followed +Anna Mikhaylovna. She hurriedly ascended the narrow dimly lit stone +staircase, calling to Pierre, who was lagging behind, to follow. +Though he did not see why it was necessary for him to go to the +count at all, still less why he had to go by the back stairs, yet +judging by Anna Mikhaylovna's air of assurance and haste, Pierre +concluded that it was all absolutely necessary. Halfway up the +stairs they were almost knocked over by some men who, carrying +pails, came running downstairs, their boots clattering. These men +pressed close to the wall to let Pierre and Anna Mikhaylovna pass +and did not evince the least surprise at seeing them there. + +"Is this the way to the princesses' apartments?" asked Anna +Mikhaylovna of one of them. + +"Yes," replied a footman in a bold loud voice, as if anything were +now permissible; "the door to the left, ma'am." + +"Perhaps the count did not ask for me," said Pierre when he +reached the landing. "I'd better go to my own room." + +Anna Mikhaylovna paused and waited for him to come up. + +"Ah, my friend!" she said, touching his arm as she had done her +son's when speaking to him that afternoon, "believe me I suffer no +less than you do, but be a man!" + +"But really, hadn't I better go away?" he asked, looking kindly at +her over his spectacles. + +"Ah, my dear friend! Forget the wrongs that may have been done +you. Think that he is your father... perhaps in the agony of death." +She sighed. "I have loved you like a son from the first. Trust +yourself to me, Pierre. I shall not forget your interests." + +Pierre did not understand a word, but the conviction that all this +had to be grew stronger, and he meekly followed Anna Mikhaylovna who +was already opening a door. + +This door led into a back anteroom. An old man, a servant of the +princesses, sat in a corner knitting a stocking. Pierre had never been +in this part of the house and did not even know of the existence of +these rooms. Anna Mikhaylovna, addressing a maid who was hurrying past +with a decanter on a tray as "my dear" and "my sweet," asked about the +princess' health and then led Pierre along a stone passage. The +first door on the left led into the princesses' apartments. The maid +with the decanter in her haste had not closed the door (everything +in the house was done in haste at that time), and Pierre and Anna +Mikhaylovna in passing instinctively glanced into the room, where +Prince Vasili and the eldest princess were sitting close together +talking. Seeing them pass, Prince Vasili drew back with obvious +impatience, while the princess jumped up and with a gesture of +desperation slammed the door with all her might. + +This action was so unlike her usual composure and the fear +depicted on Prince Vasili's face so out of keeping with his dignity +that Pierre stopped and glanced inquiringly over his spectacles at his +guide. Anna Mikhaylovna evinced no surprise, she only smiled faintly +and sighed, as if to say that this was no more than she had expected. + +"Be a man, my friend. I will look after your interests," said she in +reply to his look, and went still faster along the passage. + +Pierre could not make out what it was all about, and still less what +"watching over his interests" meant, but he decided that all these +things had to be. From the passage they went into a large, dimly lit +room adjoining the count's reception room. It was one of those +sumptuous but cold apartments known to Pierre only from the front +approach, but even in this room there now stood an empty bath, and +water had been spilled on the carpet. They were met by a deacon with a +censer and by a servant who passed out on tiptoe without heeding them. +They went into the reception room familiar to Pierre, with two Italian +windows opening into the conservatory, with its large bust and full +length portrait of Catherine the Great. The same people were still +sitting here in almost the same positions as before, whispering to one +another. All became silent and turned to look at the pale tear-worn +Anna Mikhaylovna as she entered, and at the big stout figure of Pierre +who, hanging his head, meekly followed her. + +Anna Mikhaylovna's face expressed a consciousness that the +decisive moment had arrived. With the air of a practical Petersburg +lady she now, keeping Pierre close beside her, entered the room even +more boldly than that afternoon. She felt that as she brought with her +the person the dying man wished to see, her own admission was assured. +Casting a rapid glance at all those in the room and noticing the +count's confessor there, she glided up to him with a sort of amble, +not exactly bowing yet seeming to grow suddenly smaller, and +respectfully received the blessing first of one and then of another +priest. + +"God be thanked that you are in time," said she to one of the +priests; "all we relatives have been in such anxiety. This young man +is the count's son," she added more softly. "What a terrible moment!" + +Having said this she went up to the doctor. + +"Dear doctor," said she, "this young man is the count's son. Is +there any hope?" + +The doctor cast a rapid glance upwards and silently shrugged his +shoulders. Anna Mikhaylovna with just the same movement raised her +shoulders and eyes, almost closing the latter, sighed, and moved +away from the doctor to Pierre. To him, in a particularly respectful +and tenderly sad voice, she said: + +"Trust in His mercy!" and pointing out a small sofa for him to sit +and wait for her, she went silently toward the door that everyone +was watching and it creaked very slightly as she disappeared behind +it. + +Pierre, having made up his mind to obey his monitress implicitly, +moved toward the sofa she had indicated. As soon as Anna Mikhaylovna +had disappeared he noticed that the eyes of all in the room turned +to him with something more than curiosity and sympathy. He noticed +that they whispered to one another, casting significant looks at him +with a kind of awe and even servility. A deference such as he had +never before received was shown him. A strange lady, the one who had +been talking to the priests, rose and offered him her seat; an +aide-de-camp picked up and returned a glove Pierre had dropped; the +doctors became respectfully silent as he passed by, and moved to +make way for him. At first Pierre wished to take another seat so as +not to trouble the lady, and also to pick up the glove himself and +to pass round the doctors who were not even in his way; but all at +once he felt that this would not do, and that tonight he was a +person obliged to perform some sort of awful rite which everyone +expected of him, and that he was therefore bound to accept their +services. He took the glove in silence from the aide-de-camp, and +sat down in the lady's chair, placing his huge hands symmetrically +on his knees in the naive attitude of an Egyptian statue, and +decided in his own mind that all was as it should be, and that in +order not to lose his head and do foolish things he must not act on +his own ideas tonight, but must yield himself up entirely to the +will of those who were guiding him. + +Not two minutes had passed before Prince Vasili with head erect +majestically entered the room. He was wearing his long coat with three +stars on his breast. He seemed to have grown thinner since the +morning; his eyes seemed larger than usual when he glanced round and +noticed Pierre. He went up to him, took his hand (a thing he never +used to do), and drew it downwards as if wishing to ascertain +whether it was firmly fixed on. + +"Courage, courage, my friend! He has asked to see you. That is +well!" and he turned to go. + +But Pierre thought it necessary to ask: "How is..." and hesitated, +not knowing whether it would be proper to call the dying man "the +count," yet ashamed to call him "father." + +"He had another stroke about half an hour ago. Courage, my +friend..." + +Pierre's mind was in such a confused state that the word "stroke" +suggested to him a blow from something. He looked at Prince Vasili +in perplexity, and only later grasped that a stroke was an attack of +illness. Prince Vasili said something to Lorrain in passing and went +through the door on tiptoe. He could not walk well on tiptoe and his +whole body jerked at each step. The eldest princess followed him, +and the priests and deacons and some servants also went in at the +door. Through that door was heard a noise of things being moved about, +and at last Anna Mikhaylovna, still with the same expression, pale but +resolute in the discharge of duty, ran out and touching Pierre lightly +on the arm said: + +"The divine mercy is inexhaustible! Unction is about to be +administered. Come." + +Pierre went in at the door, stepping on the soft carpet, and noticed +that the strange lady, the aide-de-camp, and some of the servants, all +followed him in, as if there were now no further need for permission +to enter that room. + + + + + +CHAPTER XXIII + + +Pierre well knew this large room divided by columns and an arch, its +walls hung round with Persian carpets. The part of the room behind the +columns, with a high silk-curtained mahogany bedstead on one side +and on the other an immense case containing icons, was brightly +illuminated with red light like a Russian church during evening +service. Under the gleaming icons stood a long invalid chair, and in +that chair on snowy-white smooth pillows, evidently freshly changed, +Pierre saw--covered to the waist by a bright green quilt--the +familiar, majestic figure of his father, Count Bezukhov, with that +gray mane of hair above his broad forehead which reminded one of a +lion, and the deep characteristically noble wrinkles of his +handsome, ruddy face. He lay just under the icons; his large thick +hands outside the quilt. Into the right hand, which was lying palm +downwards, a wax taper had been thrust between forefinger and thumb, +and an old servant, bending over from behind the chair, held it in +position. By the chair stood the priests, their long hair falling over +their magnificent glittering vestments, with lighted tapers in their +hands, slowly and solemnly conducting the service. A little behind +them stood the two younger princesses holding handkerchiefs to their +eyes, and just in front of them their eldest sister, Catiche, with a +vicious and determined look steadily fixed on the icons, as though +declaring to all that she could not answer for herself should she +glance round. Anna Mikhaylovna, with a meek, sorrowful, and +all-forgiving expression on her face, stood by the door near the +strange lady. Prince Vasili in front of the door, near the invalid +chair, a wax taper in his left hand, was leaning his left arm on the +carved back of a velvet chair he had turned round for the purpose, and +was crossing himself with his right hand, turning his eyes upward each +time he touched his forehead. His face wore a calm look of piety and +resignation to the will of God. "If you do not understand these +sentiments," he seemed to be saying, "so much the worse for you!" + +Behind him stood the aide-de-camp, the doctors, and the menservants; +the men and women had separated as in church. All were silently +crossing themselves, and the reading of the church service, the +subdued chanting of deep bass voices, and in the intervals sighs and +the shuffling of feet were the only sounds that could be heard. Anna +Mikhaylovna, with an air of importance that showed that she felt she +quite knew what she was about, went across the room to where Pierre +was standing and gave him a taper. He lit it and, distracted by +observing those around him, began crossing himself with the hand +that held the taper. + +Sophie, the rosy, laughter-loving, youngest princess with the +mole, watched him. She smiled, hid her face in her handkerchief, and +remained with it hidden for awhile; then looking up and seeing +Pierre she again began to laugh. She evidently felt unable to look +at him without laughing, but could not resist looking at him: so to be +out of temptation she slipped quietly behind one of the columns. In +the midst of the service the voices of the priests suddenly ceased, +they whispered to one another, and the old servant who was holding the +count's hand got up and said something to the ladies. Anna Mikhaylovna +stepped forward and, stooping over the dying man, beckoned to +Lorrain from behind her back. The French doctor held no taper; he +was leaning against one of the columns in a respectful attitude +implying that he, a foreigner, in spite of all differences of faith, +understood the full importance of the rite now being performed and +even approved of it. He now approached the sick man with the noiseless +step of one in full vigor of life, with his delicate white fingers +raised from the green quilt the hand that was free, and turning +sideways felt the pulse and reflected a moment. The sick man was given +something to drink, there was a stir around him, then the people +resumed their places and the service continued. During this interval +Pierre noticed that Prince Vasili left the chair on which he had +been leaning, and--with air which intimated that he knew what he was +about and if others did not understand him it was so much the worse +for them--did not go up to the dying man, but passed by him, joined +the eldest princess, and moved with her to the side of the room +where stood the high bedstead with its silken hangings. On leaving the +bed both Prince Vasili and the princess passed out by a back door, but +returned to their places one after the other before the service was +concluded. Pierre paid no more attention to this occurrence than to +the rest of what went on, having made up his mind once for all that +what he saw happening around him that evening was in some way +essential. + +The chanting of the service ceased, and the voice of the priest +was heard respectfully congratulating the dying man on having received +the sacrament. The dying man lay as lifeless and immovable as +before. Around him everyone began to stir: steps were audible and +whispers, among which Anna Mikhaylovna's was the most distinct. + +Pierre heard her say: + +"Certainly he must be moved onto the bed; here it will be +impossible..." + +The sick man was so surrounded by doctors, princesses, and +servants that Pierre could no longer see the reddish-yellow face +with its gray mane--which, though he saw other faces as well, he had +not lost sight of for a single moment during the whole service. He +judged by the cautious movements of those who crowded round the +invalid chair that they had lifted the dying man and were moving him. + +"Catch hold of my arm or you'll drop him!" he heard one of the +servants say in a frightened whisper. "Catch hold from underneath. +Here!" exclaimed different voices; and the heavy breathing of the +bearers and the shuffling of their feet grew more hurried, as if the +weight they were carrying were too much for them. + +As the bearers, among whom was Anna Mikhaylovna, passed the young +man he caught a momentary glimpse between their heads and backs of the +dying man's high, stout, uncovered chest and powerful shoulders, +raised by those who were holding him under the armpits, and of his +gray, curly, leonine head. This head, with its remarkably broad brow +and cheekbones, its handsome, sensual mouth, and its cold, majestic +expression, was not disfigured by the approach of death. It was the +same as Pierre remembered it three months before, when the count had +sent him to Petersburg. But now this head was swaying helplessly +with the uneven movements of the bearers, and the cold listless gaze +fixed itself upon nothing. + +After a few minutes' bustle beside the high bedstead, those who +had carried the sick man dispersed. Anna Mikhaylovna touched +Pierre's hand and said, "Come." Pierre went with her to the bed on +which the sick man had been laid in a stately pose in keeping with the +ceremony just completed. He lay with his head propped high on the +pillows. His hands were symmetrically placed on the green silk +quilt, the palms downward. When Pierre came up the count was gazing +straight at him, but with a look the significance of which could not +be understood by mortal man. Either this look meant nothing but that +as long as one has eyes they must look somewhere, or it meant too +much. Pierre hesitated, not knowing what to do, and glanced +inquiringly at his guide. Anna Mikhaylovna made a hurried sign with +her eyes, glancing at the sick man's hand and moving her lips as if to +send it a kiss. Pierre, carefully stretching his neck so as not to +touch the quilt, followed her suggestion and pressed his lips to the +large boned, fleshy hand. Neither the hand nor a single muscle of +the count's face stirred. Once more Pierre looked questioningly at +Anna Mikhaylovna to see what he was to do next. Anna Mikhaylovna +with her eyes indicated a chair that stood beside the bed. Pierre +obediently sat down, his eyes asking if he were doing right. Anna +Mikhaylovna nodded approvingly. Again Pierre fell into the naively +symmetrical pose of an Egyptian statue, evidently distressed that +his stout and clumsy body took up so much room and doing his utmost to +look as small as possible. He looked at the count, who still gazed +at the spot where Pierre's face had been before he sat down. Anna +Mikhaylovna indicated by her attitude her consciousness of the +pathetic importance of these last moments of meeting between the +father and son. This lasted about two minutes, which to Pierre +seemed an hour. Suddenly the broad muscles and lines of the count's +face began to twitch. The twitching increased, the handsome mouth +was drawn to one side (only now did Pierre realize how near death +his father was), and from that distorted mouth issued an indistinct, +hoarse sound. Anna Mikhaylovna looked attentively at the sick man's +eyes, trying to guess what he wanted; she pointed first to Pierre, +then to some drink, then named Prince Vasili in an inquiring +whisper, then pointed to the quilt. The eyes and face of the sick +man showed impatience. He made an effort to look at the servant who +stood constantly at the head of the bed. + +"Wants to turn on the other side," whispered the servant, and got up +to turn the count's heavy body toward the wall. + +Pierre rose to help him. + +While the count was being turned over, one of his arms fell back +helplessly and he made a fruitless effort to pull it forward. +Whether he noticed the look of terror with which Pierre regarded +that lifeless arm, or whether some other thought flitted across his +dying brain, at any rate he glanced at the refractory arm, at Pierre's +terror-stricken face, and again at the arm, and on his face a +feeble, piteous smile appeared, quite out of keeping with his +features, that seemed to deride his own helplessness. At sight of this +smile Pierre felt an unexpected quivering in his breast and a tickling +in his nose, and tears dimmed his eyes. The sick man was turned on +to his side with his face to the wall. He sighed. + +"He is dozing," said Anna Mikhaylovna, observing that one of the +princesses was coming to take her turn at watching. "Let us go." + +Pierre went out. + + + + + +CHAPTER XXIV + + +There was now no one in the reception room except Prince Vasili +and the eldest princess, who were sitting under the portrait of +Catherine the Great and talking eagerly. As soon as they saw Pierre +and his companion they became silent, and Pierre thought he saw the +princess hide something as she whispered: + +"I can't bear the sight of that woman." + +"Catiche has had tea served in the small drawing room," said +Prince Vasili to Anna Mikhaylovna. "Go and take something, my poor +Anna Mikhaylovna, or you will not hold out." + +To Pierre he said nothing, merely giving his arm a sympathetic +squeeze below the shoulder. Pierre went with Anna Mikhaylovna into the +small drawing room. + +"There is nothing so refreshing after a sleepless night as a cup +of this delicious Russian tea," Lorrain was saying with an air of +restrained animation as he stood sipping tea from a delicate Chinese +handleless cup before a table on which tea and a cold supper were laid +in the small circular room. Around the table all who were at Count +Bezukhov's house that night had gathered to fortify themselves. Pierre +well remembered this small circular drawing room with its mirrors +and little tables. During balls given at the house Pierre, who did not +know how to dance, had liked sitting in this room to watch the +ladies who, as they passed through in their ball dresses with diamonds +and pearls on their bare shoulders, looked at themselves in the +brilliantly lighted mirrors which repeated their reflections several +times. Now this same room was dimly lighted by two candles. On one +small table tea things and supper dishes stood in disorder, and in the +middle of the night a motley throng of people sat there, not +merrymaking, but somberly whispering, and betraying by every word +and movement that they none of them forgot what was happening and what +was about to happen in the bedroom. Pierre did not eat anything though +he would very much have liked to. He looked inquiringly at his +monitress and saw that she was again going on tiptoe to the +reception room where they had left Prince Vasili and the eldest +princess. Pierre concluded that this also was essential, and after a +short interval followed her. Anna Mikhaylovna was standing beside +the princess, and they were both speaking in excited whispers. + +"Permit me, Princess, to know what is necessary and what is not +necessary," said the younger of the two speakers, evidently in the +same state of excitement as when she had slammed the door of her room. + +"But, my dear princess," answered Anna Mikhaylovna blandly but +impressively, blocking the way to the bedroom and preventing the other +from passing, "won't this be too much for poor Uncle at a moment +when he needs repose? Worldly conversation at a moment when his soul +is already prepared..." + +Prince Vasili was seated in an easy chair in his familiar +attitude, with one leg crossed high above the other. His cheeks, which +were so flabby that they looked heavier below, were twitching +violently; but he wore the air of a man little concerned in what the +two ladies were saying. + +"Come, my dear Anna Mikhaylovna, let Catiche do as she pleases. +You know how fond the count is of her." + +"I don't even know what is in this paper," said the younger of the +two ladies, addressing Prince Vasili and pointing to an inlaid +portfolio she held in her hand. "All I know is that his real will is +in his writing table, and this is a paper he has forgotten...." + +She tried to pass Anna Mikhaylovna, but the latter sprang so as to +bar her path. + +"I know, my dear, kind princess," said Anna Mikhaylovna, seizing the +portfolio so firmly that it was plain she would not let go easily. +"Dear princess, I beg and implore you, have some pity on him! Je +vous en conjure..." + +The princess did not reply. Their efforts in the struggle for the +portfolio were the only sounds audible, but it was evident that if the +princess did speak, her words would not be flattering to Anna +Mikhaylovna. Though the latter held on tenaciously, her voice lost +none of its honeyed firmness and softness. + +"Pierre, my dear, come here. I think he will not be out of place +in a family consultation; is it not so, Prince?" + +"Why don't you speak, cousin?" suddenly shrieked the princess so +loud that those in the drawing room heard her and were startled. +"Why do you remain silent when heaven knows who permits herself to +interfere, making a scene on the very threshold of a dying man's room? +Intriguer!" she hissed viciously, and tugged with all her might at the +portfolio. + +But Anna Mikhaylovna went forward a step or two to keep her hold +on the portfolio, and changed her grip. + +Prince Vasili rose. "Oh!" said he with reproach and surprise, +"this is absurd! Come, let go I tell you." + +The princess let go. + +"And you too!" + +But Anna Mikhaylovna did not obey him. + +"Let go, I tell you! I will take the responsibility. I myself will +go and ask him, I!... does that satisfy you?" + +"But, Prince," said Anna Mikhaylovna, "after such a solemn +sacrament, allow him a moment's peace! Here, Pierre, tell them your +opinion," said she, turning to the young man who, having come quite +close, was gazing with astonishment at the angry face of the +princess which had lost all dignity, and at the twitching cheeks of +Prince Vasili. + +"Remember that you will answer for the consequences," said Prince +Vasili severely. "You don't know what you are doing." + +"Vile woman!" shouted the princess, darting unexpectedly at Anna +Mikhaylovna and snatching the portfolio from her. + +Prince Vasili bent his head and spread out his hands. + +At this moment that terrible door, which Pierre had watched so +long and which had always opened so quietly, burst noisily open and +banged against the wall, and the second of the three sisters rushed +out wringing her hands. + +"What are you doing!" she cried vehemently. "He is dying and you +leave me alone with him!" + +Her sister dropped the portfolio. Anna Mikhaylovna, stooping, +quickly caught up the object of contention and ran into the bedroom. +The eldest princess and Prince Vasili, recovering themselves, followed +her. A few minutes later the eldest sister came out with a pale hard +face, again biting her underlip. At sight of Pierre her expression +showed an irrepressible hatred. + +"Yes, now you may be glad!" said she; "this is what you have been +waiting for." And bursting into tears she hid her face in her +handkerchief and rushed from the room. + +Prince Vasili came next. He staggered to the sofa on which Pierre +was sitting and dropped onto it, covering his face with his hand. +Pierre noticed that he was pale and that his jaw quivered and shook as +if in an ague. + +"Ah, my friend!" said he, taking Pierre by the elbow; and there +was in his voice a sincerity and weakness Pierre had never observed in +it before. "How often we sin, how much we deceive, and all for what? I +am near sixty, dear friend... I too... All will end in death, all! +Death is awful..." and he burst into tears. + +Anna Mikhaylovna came out last. She approached Pierre with slow, +quiet steps. + +"Pierre!" she said. + +Pierre gave her an inquiring look. She kissed the young man on his +forehead, wetting him with her tears. Then after a pause she said: + +"He is no more...." + +Pierre looked at her over his spectacles. + +"Come, I will go with you. Try to weep, nothing gives such relief as +tears." + +She led him into the dark drawing room and Pierre was glad no one +could see his face. Anna Mikhaylovna left him, and when she returned +he was fast asleep with his head on his arm. + +In the morning Anna Mikhaylovna said to Pierre: + +"Yes, my dear, this is a great loss for us all, not to speak of you. +But God will support you: you are young, and are now, I hope, in +command of an immense fortune. The will has not yet been opened. I +know you well enough to be sure that this will not turn your head, but +it imposes duties on you, and you must be a man." + +Pierre was silent. + +"Perhaps later on I may tell you, my dear boy, that if I had not +been there, God only knows what would have happened! You know, Uncle +promised me only the day before yesterday not to forget Boris. But +he had no time. I hope, my dear friend, you will carry out your +father's wish?" + +Pierre understood nothing of all this and coloring shyly looked in +silence at Princess Anna Mikhaylovna. After her talk with Pierre, Anna +Mikhaylovna returned to the Rostovs' and went to bed. On waking in the +morning she told the Rostovs and all her acquaintances the details +of Count Bezukhov's death. She said the count had died as she would +herself wish to die, that his end was not only touching but +edifying. As to the last meeting between father and son, it was so +touching that she could not think of it without tears, and did not +know which had behaved better during those awful moments--the father +who so remembered everything and everybody at last and had +spoken such pathetic words to the son, or Pierre, whom it had been +pitiful to see, so stricken was he with grief, though he tried hard to +hide it in order not to sadden his dying father. "It is painful, but +it does one good. It uplifts the soul to see such men as the old count +and his worthy son," said she. Of the behavior of the eldest +princess and Prince Vasili she spoke disapprovingly, but in whispers +and as a great secret. + + + + + +CHAPTER XXV + + +At Bald Hills, Prince Nicholas Andreevich Bolkonski's estate, the +arrival of young Prince Andrew and his wife was daily expected, but +this expectation did not upset the regular routine of life in the +old prince's household. General in Chief Prince Nicholas Andreevich +(nicknamed in society, "the King of Prussia") ever since the Emperor +Paul had exiled him to his country estate had lived there continuously +with his daughter, Princess Mary, and her companion, Mademoiselle +Bourienne. Though in the new reign he was free to return to the +capitals, he still continued to live in the country, remarking that +anyone who wanted to see him could come the hundred miles from +Moscow to Bald Hills, while he himself needed no one and nothing. He +used to say that there are only two sources of human vice--idleness +and superstition, and only two virtues--activity and intelligence. +He himself undertook his daughter's education, and to develop these +two cardinal virtues in her gave her lessons in algebra and geometry +till she was twenty, and arranged her life so that her whole time +was occupied. He was himself always occupied: writing his memoirs, +solving problems in higher mathematics, turning snuffboxes on a lathe, +working in the garden, or superintending the building that was +always going on at his estate. As regularity is a prime condition +facilitating activity, regularity in his household was carried to +the highest point of exactitude. He always came to table under +precisely the same conditions, and not only at the same hour but at +the same minute. With those about him, from his daughter to his serfs, +the prince was sharp and invariably exacting, so that without being +a hardhearted man he inspired such fear and respect as few hardhearted +men would have aroused. Although he was in retirement and had now no +influence in political affairs, every high official appointed to the +province in which the prince's estate lay considered it his duty to +visit him and waited in the lofty antechamber ante chamber just as the +architect, gardener, or Princess Mary did, till the prince appeared +punctually to the appointed hour. Everyone sitting in this antechamber +experienced the same feeling of respect and even fear when the +enormously high study door opened and showed the figure of a rather +small old man, with powdered wig, small withered hands, and bushy gray +eyebrows which, when he frowned, sometimes hid the gleam of his +shrewd, youthfully glittering eyes. + +On the morning of the day that the young couple were to arrive, +Princess Mary entered the antechamber as usual at the time appointed +for the morning greeting, crossing herself with trepidation and +repeating a silent prayer. Every morning she came in like that, and +every morning prayed that the daily interview might pass off well. + +An old powdered manservant who was sitting in the antechamber rose +quietly and said in a whisper: "Please walk in." + +Through the door came the regular hum of a lathe. The princess +timidly opened the door which moved noiselessly and easily. She paused +at the entrance. The prince was working at the lathe and after +glancing round continued his work. + +The enormous study was full of things evidently in constant use. The +large table covered with books and plans, the tall glass-fronted +bookcases with keys in the locks, the high desk for writing while +standing up, on which lay an open exercise book, and the lathe with +tools laid ready to hand and shavings scattered around--all +indicated continuous, varied, and orderly activity. The motion of +the small foot shod in a Tartar boot embroidered with silver, and +the firm pressure of the lean sinewy hand, showed that the prince +still possessed the tenacious endurance and vigor of hardy old age. +After a few more turns of the lathe he removed his foot from the +pedal, wiped his chisel, dropped it into a leather pouch attached to +the lathe, and, approaching the table, summoned his daughter. He never +gave his children a blessing, so he simply held out his bristly +cheek (as yet unshaven) and, regarding her tenderly and attentively, +said severely: + +"Quite well? All right then, sit down." He took the exercise book +containing lessons in geometry written by himself and drew up a +chair with his foot. + +"For tomorrow!" said he, quickly finding the page and making a +scratch from one paragraph to another with his hard nail. + +The princess bent over the exercise book on the table. + +"Wait a bit, here's a letter for you," said the old man suddenly, +taking a letter addressed in a woman's hand from a bag hanging above +the table, onto which he threw it. + +At the sight of the letter red patches showed themselves on the +princess' face. She took it quickly and bent her head over it. + +"From Heloise?" asked the prince with a cold smile that showed his +still sound, yellowish teeth. + +"Yes, it's from Julie," replied the princess with a timid glance and +a timid smile. + +"I'll let two more letters pass, but the third I'll read," said +the prince sternly; "I'm afraid you write much nonsense. I'll read the +third!" + +"Read this if you like, Father," said the princess, blushing still +more and holding out the letter. + +"The third, I said the third!" cried the prince abruptly, pushing +the letter away, and leaning his elbows on the table he drew toward +him the exercise book containing geometrical figures. + +"Well, madam," he began, stooping over the book close to his +daughter and placing an arm on the back of the chair on which she sat, +so that she felt herself surrounded on all sides by the acrid scent of +old age and tobacco, which she had known so long. "Now, madam, these +triangles are equal; please note that the angle ABC..." + +The princess looked in a scared way at her father's eyes +glittering close to her; the red patches on her face came and went, +and it was plain that she understood nothing and was so frightened +that her fear would prevent her understanding any of her father's +further explanations, however clear they might be. Whether it was +the teacher's fault or the pupil's, this same thing happened every +day: the princess' eyes grew dim, she could not see and could not hear +anything, but was only conscious of her stern father's withered face +close to her, of his breath and the smell of him, and could think only +of how to get away quickly to her own room to make out the problem +in peace. The old man was beside himself: moved the chair on which +he was sitting noisily backward and forward, made efforts to control +himself and not become vehement, but almost always did become +vehement, scolded, and sometimes flung the exercise book away. + +The princess gave a wrong answer. + +"Well now, isn't she a fool!" shouted the prince, pushing the book +aside and turning sharply away; but rising immediately, he paced up +and down, lightly touched his daughter's hair and sat down again. + +He drew up his chair, and continued to explain. + +"This won't do, Princess; it won't do," said he, when Princess Mary, +having taken and closed the exercise book with the next day's +lesson, was about to leave: "Mathematics are most important, madam! +I don't want to have you like our silly ladies. Get used to it and +you'll like it," and he patted her cheek. "It will drive all the +nonsense out of your head." + +She turned to go, but he stopped her with a gesture and took an +uncut book from the high desk. + +"Here is some sort of Key to the Mysteries that your Heloise has +sent you. Religious! I don't interfere with anyone's belief... I +have looked at it. Take it. Well, now go. Go." + +He patted her on the shoulder and himself closed the door after her. + +Princess Mary went back to her room with the sad, scared +expression that rarely left her and which made her plain, sickly +face yet plainer. She sat down at her writing table, on which stood +miniature portraits and which was littered with books and papers. +The princess was as untidy as her father was tidy. She put down the +geometry book and eagerly broke the seal of her letter. It was from +her most intimate friend from childhood; that same Julie Karagina +who had been at the Rostovs' name-day party. + +Julie wrote in French: + + +Dear and precious Friend, How terrible and frightful a thing is +separation! Though I tell myself that half my life and half my +happiness are wrapped up in you, and that in spite of the distance +separating us our hearts are united by indissoluble bonds, my heart +rebels against fate and in spite of the pleasures and distractions +around me I cannot overcome a certain secret sorrow that has been in +my heart ever since we parted. Why are we not together as we were last +summer, in your big study, on the blue sofa, the confidential sofa? +Why cannot I now, as three months ago, draw fresh moral strength +from your look, so gentle, calm, and penetrating, a look I loved so +well and seem to see before me as I write? + + +Having read thus far, Princess Mary sighed and glanced into the +mirror which stood on her right. It reflected a weak, ungraceful +figure and thin face. Her eyes, always sad, now looked with particular +hopelessness at her reflection in the glass. "She flatters me," +thought the princess, turning away and continuing to read. But Julie +did not flatter her friend, the princess' eyes--large, deep and +luminous (it seemed as if at times there radiated from them shafts +of warm light)--were so beautiful that very often in spite of the +plainness of her face they gave her an attraction more powerful than +that of beauty. But the princess never saw the beautiful expression of +her own eyes--the look they had when she was not thinking of +herself. As with everyone, her face assumed a forced unnatural +expression as soon as she looked in a glass. She went on reading: + + +All Moscow talks of nothing but war. One of my two brothers is +already abroad, the other is with the Guards, who are starting on +their march to the frontier. Our dear Emperor has left Petersburg +and it is thought intends to expose his precious person to the chances +of war. God grant that the Corsican monster who is destroying the +peace of Europe may be overthrown by the angel whom it has pleased the +Almighty, in His goodness, to give us as sovereign! To say nothing +of my brothers, this war has deprived me of one of the associations +nearest my heart. I mean young Nicholas Rostov, who with his +enthusiasm could not bear to remain inactive and has left the +university to join the army. I will confess to you, dear Mary, that in +spite of his extreme youth his departure for the army was a great +grief to me. This young man, of whom I spoke to you last summer, is so +noble-minded and full of that real youthfulness which one seldom finds +nowadays among our old men of twenty and, particularly, he is so frank +and has so much heart. He is so pure and poetic that my relations with +him, transient as they were, have been one of the sweetest comforts to +my poor heart, which has already suffered so much. Someday I will tell +you about our parting and all that was said then. That is still too +fresh. Ah, dear friend, you are happy not to know these poignant +joys and sorrows. You are fortunate, for the latter are generally +the stronger! I know very well that Count Nicholas is too young ever +to be more to me than a friend, but this sweet friendship, this poetic +and pure intimacy, were what my heart needed. But enough of this! +The chief news, about which all Moscow gossips, is the death of old +Count Bezukhov, and his inheritance. Fancy! The three princesses +have received very little, Prince Vasili nothing, and it is Monsieur +Pierre who has inherited all the property and has besides been +recognized as legitimate; so that he is now Count Bezukhov and +possessor of the finest fortune in Russia. It is rumored that Prince +Vasili played a very despicable part in this affair and that he +returned to Petersburg quite crestfallen. + +I confess I understand very little about all these matters of +wills and inheritance; but I do know that since this young man, whom +we all used to know as plain Monsieur Pierre, has become Count +Bezukhov and the owner of one of the largest fortunes in Russia, I +am much amused to watch the change in the tone and manners of the +mammas burdened by marriageable daughters, and of the young ladies +themselves, toward him, though, between you and me, he always seemed +to me a poor sort of fellow. As for the past two years people have +amused themselves by finding husbands for me (most of whom I don't +even know), the matchmaking chronicles of Moscow now speak of me as +the future Countess Bezukhova. But you will understand that I have +no desire for the post. A propos of marriages: do you know that a +while ago that universal auntie Anna Mikhaylovna told me, under the +seal of strict secrecy, of a plan of marriage for you. It is neither +more nor less than with Prince Vasili's son Anatole, whom they wish to +reform by marrying him to someone rich and distinguee, and it is on +you that his relations' choice has fallen. I don't know what you +will think of it, but I consider it my duty to let you know of it. +He is said to be very handsome and a terrible scapegrace. That is +all I have been able to find out about him. + +But enough of gossip. I am at the end of my second sheet of paper, +and Mamma has sent for me to go and dine at the Apraksins'. Read the +mystical book I am sending you; it has an enormous success here. +Though there are things in it difficult for the feeble human mind to +grasp, it is an admirable book which calms and elevates the soul. +Adieu! Give my respects to monsieur your father and my compliments +to Mademoiselle Bourienne. I embrace you as I love you. + +JULIE + +P.S. Let me have news of your brother and his charming little wife. + + +The princess pondered awhile with a thoughtful smile and her +luminous eyes lit up so that her face was entirely transformed. Then +she suddenly rose and with her heavy tread went up to the table. She +took a sheet of paper and her hand moved rapidly over it. This is +the reply she wrote, also in French: + + +Dear and precious Friend, Your letter of the 13th has given me great +delight. So you still love me, my romantic Julie? Separation, of which +you say so much that is bad, does not seem to have had its usual +effect on you. You complain of our separation. What then should I say, +if I dared complain, I who am deprived of all who are dear to me? +Ah, if we had not religion to console us life would be very sad. Why +do you suppose that I should look severely on your affection for +that young man? On such matters I am only severe with myself. I +understand such feelings in others, and if never having felt them I +cannot approve of them, neither do I condemn them. Only it seems to me +that Christian love, love of one's neighbor, love of one's enemy, is +worthier, sweeter, and better than the feelings which the beautiful +eyes of a young man can inspire in a romantic and loving young girl +like yourself. + +The news of Count Bezukhov's death reached us before your letter and +my father was much affected by it. He says the count was the last +representative but one of the great century, and that it is his own +turn now, but that he will do all he can to let his turn come as +late as possible. God preserve us from that terrible misfortune! + +I cannot agree with you about Pierre, whom I knew as a child. He +always seemed to me to have an excellent heart, and that is the +quality I value most in people. As to his inheritance and the part +played by Prince Vasili, it is very sad for both. Ah, my dear +friend, our divine Saviour's words, that it is easier for a camel to +go through the eye of a needle than for a rich man to enter the +Kingdom of God, are terribly true. I pity Prince Vasili but am still +more sorry for Pierre. So young, and burdened with such riches--to +what temptations he will be exposed! If I were asked what I desire +most on earth, it would be to be poorer than the poorest beggar. A +thousand thanks, dear friend, for the volume you have sent me and +which has such success in Moscow. Yet since you tell me that among +some good things it contains others which our weak human understanding +cannot grasp, it seems to me rather useless to spend time in reading +what is unintelligible and can therefore bear no fruit. I never +could understand the fondness some people have for confusing their +minds by dwelling on mystical books that merely awaken their doubts +and excite their imagination, giving them a bent for exaggeration +quite contrary to Christian simplicity. Let us rather read the +Epistles and Gospels. Let us not seek to penetrate what mysteries they +contain; for how can we, miserable sinners that we are, know the +terrible and holy secrets of Providence while we remain in this +flesh which forms an impenetrable veil between us and the Eternal? Let +us rather confine ourselves to studying those sublime rules which +our divine Saviour has left for our guidance here below. Let us try to +conform to them and follow them, and let us be persuaded that the less +we let our feeble human minds roam, the better we shall please God, +who rejects all knowledge that does not come from Him; and the less we +seek to fathom what He has been pleased to conceal from us, the sooner +will He vouchsafe its revelation to us through His divine Spirit. + +My father has not spoken to me of a suitor, but has only told me +that he has received a letter and is expecting a visit from Prince +Vasili. In regard to this project of marriage for me, I will tell you, +dear sweet friend, that I look on marriage as a divine institution +to which we must conform. However painful it may be to me, should +the Almighty lay the duties of wife and mother upon me I +shall try to perform them as faithfully as I can, without +disquieting myself by examining my feelings toward him whom He may +give me for husband. + +I have had a letter from my brother, who announces his speedy +arrival at Bald Hills with his wife. This pleasure will be but a brief +one, however, for he will leave, us again to take part in this unhappy +war into which we have been drawn, God knows how or why. Not only +where you are--at the heart of affairs and of the world--is the talk +all of war, even here amid fieldwork and the calm of nature--which +townsfolk consider characteristic of the country--rumors of war are +heard and painfully felt. My father talks of nothing but marches and +countermarches, things of which I understand nothing; and the day +before yesterday during my daily walk through the village I +witnessed a heartrending scene.... It was a convoy of conscripts +enrolled from our people and starting to join the army. You should +have seen the state of the mothers, wives, and children of the men who +were going and should have heard the sobs. It seems as though +mankind has forgotten the laws of its divine Saviour, Who preached +love and forgiveness of injuries--and that men attribute the +greatest merit to skill in killing one another. + +Adieu, dear and kind friend; may our divine Saviour and His most +Holy Mother keep you in their holy and all-powerful care! + +MARY + + +"Ah, you are sending off a letter, Princess? I have already +dispatched mine. I have written to my poor mother," said the smiling +Mademoiselle Bourienne rapidly, in her pleasant mellow tones and +with guttural r's. She brought into Princess Mary's strenuous, +mournful, and gloomy world a quite different atmosphere, careless, +lighthearted, and self-satisfied. + +"Princess, I must warn you," she added, lowering her voice and +evidently listening to herself with pleasure, and speaking with +exaggerated grasseyement, "the prince has been scolding Michael +Ivanovich. He is in a very bad humor, very morose. Be prepared." + +"Ah, dear friend," replied Princess Mary, "I have asked you never to +warn me of the humor my father is in. I do not allow myself to judge +him and would not have others do so." + +The princess glanced at her watch and, seeing that she was five +minutes late in starting her practice on the clavichord, went into the +sitting room with a look of alarm. Between twelve and two o'clock, +as the day was mapped out, the prince rested and the princess played +the clavichord. + + + + + +CHAPTER XXVI + + +The gray-haired valet was sitting drowsily listening to the +snoring of the prince, who was in his large study. From the far side +of the house through the closed doors came the sound of difficult +passages--twenty times repeated--of a sonata by Dussek. + +Just then a closed carriage and another with a hood drove up to +the porch. Prince Andrew got out of the carriage, helped his little +wife to alight, and let her pass into the house before him. Old +Tikhon, wearing a wig, put his head out of the door of the +antechamber, reported in a whisper that the prince was sleeping, and +hastily closed the door. Tikhon knew that neither the son's arrival +nor any other unusual event must be allowed to disturb the appointed +order of the day. Prince Andrew apparently knew this as well as +Tikhon; he looked at his watch as if to ascertain whether his father's +habits had changed since he was at home last, and, having assured +himself that they had not, he turned to his wife. + +"He will get up in twenty minutes. Let us go across to Mary's room," +he said. + +The little princess had grown stouter during this time, but her eyes +and her short, downy, smiling lip lifted when she began to speak +just as merrily and prettily as ever. + +"Why, this is a palace!" she said to her husband, looking around +with the expression with which people compliment their host at a ball. +"Let's come, quick, quick!" And with a glance round, she smiled at +Tikhon, at her husband, and at the footman who accompanied them. + +"Is that Mary practicing? Let's go quietly and take her by +surprise." + +Prince Andrew followed her with a courteous but sad expression. + +"You've grown older, Tikhon," he said in passing to the old man, who +kissed his hand. + +Before they reached the room from which the sounds of the clavichord +came, the pretty, fair haired Frenchwoman, Mademoiselle Bourienne, +rushed out apparently beside herself with delight. + +"Ah! what joy for the princess!" exclaimed she: "At last! I must let +her know." + +"No, no, please not... You are Mademoiselle Bourienne," said the +little princess, kissing her. "I know you already through my +sister-in-law's friendship for you. She was not expecting us?" + +They went up to the door of the sitting room from which came the +sound of the oft-repeated passage of the sonata. Prince Andrew stopped +and made a grimace, as if expecting something unpleasant. + +The little princess entered the room. The passage broke off in the +middle, a cry was heard, then Princess Mary's heavy tread and the +sound of kissing. When Prince Andrew went in the two princesses, who +had only met once before for a short time at his wedding, were in each +other's arms warmly pressing their lips to whatever place they +happened to touch. Mademoiselle Bourienne stood near them pressing her +hand to her heart, with a beatific smile and obviously equally ready +to cry or to laugh. Prince Andrew shrugged his shoulders and +frowned, as lovers of music do when they hear a false note. The two +women let go of one another, and then, as if afraid of being too late, +seized each other's hands, kissing them and pulling them away, and +again began kissing each other on the face, and then to Prince +Andrew's surprise both began to cry and kissed again. Mademoiselle +Bourienne also began to cry. Prince Andrew evidently felt ill at ease, +but to the two women it seemed quite natural that they should cry, and +apparently it never entered their heads that it could have been +otherwise at this meeting. + +"Ah! my dear!... Ah! Mary!" they suddenly exclaimed, and then +laughed. "I dreamed last night..."--"You were not expecting us?..."- +"Ah! Mary, you have got thinner?..." "And you have grown stouter!..." + +"I knew the princess at once," put in Mademoiselle Bourienne. + +"And I had no idea!..." exclaimed Princess Mary. "Ah, Andrew, I +did not see you." + +Prince Andrew and his sister, hand in hand, kissed one another, +and he told her she was still the same crybaby as ever. Princess +Mary had turned toward her brother, and through her tears the +loving, warm, gentle look of her large luminous eyes, very beautiful +at that moment, rested on Prince Andrew's face. + +The little princess talked incessantly, her short, downy upper lip +continually and rapidly touching her rosy nether lip when necessary +and drawing up again next moment when her face broke into a smile of +glittering teeth and sparkling eyes. She told of an accident they +had had on the Spasski Hill which might have been serious for her in +her condition, and immediately after that informed them that she had +left all her clothes in Petersburg and that heaven knew what she would +have to dress in here; and that Andrew had quite changed, and that +Kitty Odyntsova had married an old man, and that there was a suitor +for Mary, a real one, but that they would talk of that later. Princess +Mary was still looking silently at her brother and her beautiful +eyes were full of love and sadness. It was plain that she was +following a train of thought independent of her sister-in-law's words. +In the midst of a description of the last Petersburg fete she +addressed her brother: + +"So you are really going to the war, Andrew?" she said sighing. + +Lise sighed too. + +"Yes, and even tomorrow," replied her brother. + +"He is leaving me here, God knows why, when he might have had +promotion..." + +Princess Mary did not listen to the end, but continuing her train of +thought turned to her sister-in-law with a tender glance at her +figure. + +"Is it certain?" she said. + +The face of the little princess changed. She sighed and said: +"Yes, quite certain. Ah! it is very dreadful..." + +Her lip descended. She brought her face close to her sister-in-law's +and unexpectedly again began to cry. + +"She needs rest," said Prince Andrew with a frown. "Don't you, Lise? +Take her to your room and I'll go to Father. How is he? Just the +same?" + +"Yes, just the same. Though I don't know what your opinion will be," +answered the princess joyfully. + +"And are the hours the same? And the walks in the avenues? And the +lathe?" asked Prince Andrew with a scarcely perceptible smile which +showed that, in spite of all his love and respect for his father, he +was aware of his weaknesses. + +"The hours are the same, and the lathe, and also the mathematics and +my geometry lessons," said Princess Mary gleefully, as if her +lessons in geometry were among the greatest delights of her life. + +When the twenty minutes had elapsed and the time had come for the +old prince to get up, Tikhon came to call the young prince to his +father. The old man made a departure from his usual routine in honor +of his son's arrival: he gave orders to admit him to his apartments +while he dressed for dinner. The old prince always dressed in +old-fashioned style, wearing an antique coat and powdered hair; and +when Prince Andrew entered his father's dressing room (not with the +contemptuous look and manner he wore in drawing rooms, but with the +animated face with which he talked to Pierre), the old man was sitting +on a large leather-covered chair, wrapped in a powdering mantle, +entrusting his head to Tikhon. + +"Ah! here's the warrior! Wants to vanquish Buonaparte?" said the old +man, shaking his powdered head as much as the tail, which Tikhon was +holding fast to plait, would allow. + +"You at least must tackle him properly, or else if he goes on like +this he'll soon have us, too, for his subjects! How are you?" And he +held out his cheek. + +The old man was in a good temper after his nap before dinner. (He +used to say that a nap "after dinner was silver--before dinner, +golden.") He cast happy, sidelong glances at his son from under his +thick, bushy eyebrows. Prince Andrew went up and kissed his father +on the spot indicated to him. He made no reply on his father's +favorite topic--making fun of the military men of the day, and more +particularly of Bonaparte. + +"Yes, Father, I have come come to you and brought my wife who is +pregnant," said Prince Andrew, following every movement of his +father's face with an eager and respectful look. "How is your health?" + +"Only fools and rakes fall ill, my boy. You know me: I am busy +from morning till night and abstemious, so of course I am well." + +"Thank God," said his son smiling. + +"God has nothing to do with it! Well, go on," he continued, +returning to his hobby; "tell me how the Germans have taught you to +fight Bonaparte by this new science you call 'strategy.'" + +Prince Andrew smiled. + +"Give me time to collect my wits, Father," said he, with a smile +that showed that his father's foibles did not prevent his son from +loving and honoring him. "Why, I have not yet had time to settle +down!" + +"Nonsense, nonsense!" cried the old man, shaking his pigtail to +see whether it was firmly plaited, and grasping his by the hand. +"The house for your wife is ready. Princess Mary will take her there +and show her over, and they'll talk nineteen to the dozen. That's +their woman's way! I am glad to have her. Sit down and talk. About +Mikhelson's army I understand--Tolstoy's too... a simultaneous +expedition.... But what's the southern army to do? Prussia is +neutral... I know that. What about Austria?" said he, rising from +his chair and pacing up and down the room followed by Tikhon, who +ran after him, handing him different articles of clothing. "What of +Sweden? How will they cross Pomerania?" + +Prince Andrew, seeing that his father insisted, began--at first +reluctantly, but gradually with more and more animation, and from +habit changing unconsciously from Russian to French as he went on- +to explain the plan of operation for the coming campaign. He explained +how an army, ninety thousand strong, was to threaten Prussia so as +to bring her out of her neutrality and draw her into the war; how part +of that army was to join some Swedish forces at Stralsund; how two +hundred and twenty thousand Austrians, with a hundred thousand +Russians, were to operate in Italy and on the Rhine; how fifty +thousand Russians and as many English were to land at Naples, and +how a total force of five hundred thousand men was to attack the +French from different sides. The old prince did not evince the least +interest during this explanation, but as if he were not listening to +it continued to dress while walking about, and three times +unexpectedly interrupted. Once he stopped it by shouting: "The white +one, the white one!" + +This meant that Tikhon was not handing him the waistcoat he +wanted. Another time he interrupted, saying: + +"And will she soon be confined?" and shaking his head +reproachfully said: "That's bad! Go on, go on." + +The third interruption came when Prince Andrew was finishing his +description. The old man began to sing, in the cracked voice of old +age: "Malbrook s'en va-t-en guerre. Dieu sait quand reviendra."* + + +*"Marlborough is going to the wars; God knows when he'll return." + + +His son only smiled. + +"I don't say it's a plan I approve of," said the son; "I am only +telling you what it is. Napoleon has also formed his plan by now, +not worse than this one." + +"Well, you've told me nothing new," and the old man repeated, +meditatively and rapidly: + +"Dieu sait quand reviendra. Go to the dining room." + + + + + +CHAPTER XXVII + + +At the appointed hour the prince, powdered and shaven, entered the +dining room where his daughter-in-law, Princess Mary, and Mademoiselle +Bourienne were already awaiting him together with his architect, who +by a strange caprice of his employer's was admitted to table though +the position of that insignificant individual was such as could +certainly not have caused him to expect that honor. The prince, who +generally kept very strictly to social distinctions and rarely +admitted even important government officials to his table, had +unexpectedly selected Michael Ivanovich (who always went into a corner +to blow his nose on his checked handkerchief) to illustrate the theory +that all men are equals, and had more than once impressed on his +daughter that Michael Ivanovich was "not a whit worse than you or +I." At dinner the prince usually spoke to the taciturn Michael +Ivanovich more often than to anyone else. + +In the dining room, which like all the rooms in the house was +exceedingly lofty, the members of the household and the footmen--one +behind each chair--stood waiting for the prince to enter. The head +butler, napkin on arm, was scanning the setting of the table, making +signs to the footmen, and anxiously glancing from the clock to the +door by which the prince was to enter. Prince Andrew was looking at +a large gilt frame, new to him, containing the genealogical tree of +the Princes Bolkonski, opposite which hung another such frame with a +badly painted portrait (evidently by the hand of the artist +belonging to the estate) of a ruling prince, in a crown--an alleged +descendant of Rurik and ancestor of the Bolkonskis. Prince Andrew, +looking again at that genealogical tree, shook his head, laughing as a +man laughs who looks at a portrait so characteristic of the original +as to be amusing. + +"How thoroughly like him that is!" he said to Princess Mary, who had +come up to him. + +Princess Mary looked at her brother in surprise. She did not +understand what he was laughing at. Everything her father did inspired +her with reverence and was beyond question. + +"Everyone has his Achilles' heel," continued Prince Andrew. +"Fancy, with his powerful mind, indulging in such nonsense!" + +Princess Mary could not understand the boldness of her brother's +criticism and was about to reply, when the expected footsteps were +heard coming from the study. The prince walked in quickly and jauntily +as was his wont, as if intentionally contrasting the briskness of +his manners with the strict formality of his house. At that moment the +great clock struck two and another with a shrill tone joined in from +the drawing room. The prince stood still; his lively glittering eyes +from under their thick, bushy eyebrows sternly scanned all present and +rested on the little princess. She felt, as courtiers do when the Tsar +enters, the sensation of fear and respect which the old man inspired +in all around him. He stroked her hair and then patted her awkwardly +on the back of her neck. + +"I'm glad, glad, to see you," he said, looking attentively into +her eyes, and then quickly went to his place and sat down. "Sit +down, sit down! Sit down, Michael Ianovich!" + +He indicated a place beside him to his daughter-in-law. A footman +moved the chair for her. + +"Ho, ho!" said the old man, casting his eyes on her rounded +figure. "You've been in a hurry. That's bad!" + +He laughed in his usual dry, cold, unpleasant way, with his lips +only and not with his eyes. + +"You must walk, walk as much as possible, as much as possible," he +said. + +The little princess did not, or did not wish to, hear his words. She +was silent and seemed confused. The prince asked her about her father, +and she began to smile and talk. He asked about mutual +acquaintances, and she became still more animated and chattered away +giving him greetings from various people and retailing the town +gossip. + +"Countess Apraksina, poor thing, has lost her husband and she has +cried her eyes out," she said, growing more and more lively. + +As she became animated the prince looked at her more and more +sternly, and suddenly, as if he had studied her sufficiently and had +formed a definite idea of her, he turned away and addressed Michael +Ivanovich. + +"Well, Michael Ivanovich, our Bonaparte will be having a bad time of +it. Prince Andrew" (he always spoke thus of his son) "has been telling +me what forces are being collected against him! While you and I +never thought much of him." + +Michael Ivanovich did not at all know when "you and I" had said such +things about Bonaparte, but understanding that he was wanted as a +peg on which to hang the prince's favorite topic, he looked +inquiringly at the young prince, wondering what would follow. + +"He is a great tactician!" said the prince to his son, pointing to +the architect. + +And the conversation again turned on the war, on Bonaparte, and +the generals and statesmen of the day. The old prince seemed convinced +not only that all the men of the day were mere babies who did not know +the A B C of war or of politics, and that Bonaparte was an +insignificant little Frenchy, successful only because there were no +longer any Potemkins or Suvorovs left to oppose him; but he was also +convinced that there were no political difficulties in Europe and no +real war, but only a sort of puppet show at which the men of the day +were playing, pretending to do something real. Prince Andrew gaily +bore with his father's ridicule of the new men, and drew him on and +listened to him with evident pleasure. + +"The past always seems good," said he, "but did not Suvorov +himself fall into a trap Moreau set him, and from which he did not +know how to escape?" + +"Who told you that? Who?" cried the prince. "Suvorov!" And he jerked +away his plate, which Tikhon briskly caught. "Suvorov!... Consider, +Prince Andrew. Two... Frederick and Suvorov; Moreau!... Moreau would +have been a prisoner if Suvorov had had a free hand; but he had the +Hofs-kriegs-wurst-schnapps-Rath on his hands. It would have puzzled +the devil himself! When you get there you'll find out what those +Hofs-kriegs-wurst-Raths are! Suvorov couldn't manage them so what +chance has Michael Kutuzov? No, my dear boy," he continued, "you and +your generals won't get on against Buonaparte; you'll have to call +in the French, so that birds of a feather may fight together. The +German, Pahlen, has been sent to New York in America, to fetch the +Frenchman, Moreau," he said, alluding to the invitation made that year +to Moreau to enter the Russian service.... "Wonderful!... Were the +Potemkins, Suvorovs, and Orlovs Germans? No, lad, either you fellows +have all lost your wits, or I have outlived mine. May God help you, +but we'll see what will happen. Buonaparte has become a great +commander among them! Hm!..." + +"I don't at all say that all the plans are good," said Prince +Andrew, "I am only surprised at your opinion of Bonaparte. You may +laugh as much as you like, but all the same Bonaparte is a great +general!" + +"Michael Ivanovich!" cried the old prince to the architect who, busy +with his roast meat, hoped he had been forgotten: "Didn't I tell you +Buonaparte was a great tactician? Here, he says the same thing." + +"To be sure, your excellency." replied the architect. + +The prince again laughed his frigid laugh. + +"Buonaparte was born with a silver spoon in his mouth. He has got +splendid soldiers. Besides he began by attacking Germans. And only +idlers have failed to beat the Germans. Since the world began +everybody has beaten the Germans. They beat no one--except one +another. He made his reputation fighting them." + +And the prince began explaining all the blunders which, according to +him, Bonaparte had made in his campaigns and even in politics. His son +made no rejoinder, but it was evident that whatever arguments were +presented he was as little able as his father to change his opinion. +He listened, refraining from a reply, and involuntarily wondered how +this old man, living alone in the country for so many years, could +know and discuss so minutely and acutely all the recent European +military and political events. + +"You think I'm an old man and don't understand the present state +of affairs?" concluded his father. "But it troubles me. I don't +sleep at night. Come now, where has this great commander of yours +shown his skill?" he concluded. + +"That would take too long to tell," answered the son. + +"Well, then go to your Buonaparte! Mademoiselle Bourienne, here's +another admirer of that powder-monkey emperor of yours," he +exclaimed in excellent French. + +"You know, Prince, I am not a Bonapartist!" + +"Dieu sait quand reviendra..." hummed the prince out of tune and, +with a laugh still more so, he quitted the table. + +The little princess during the whole discussion and the rest of +the dinner sat silent, glancing with a frightened look now at her +father-in-law and now at Princess Mary. When they left the table she +took her sister-in-law's arm and drew her into another room. + +"What a clever man your father is," said she; "perhaps that is why I +am afraid of him." + +"Oh, he is so kind!" answered Princess Mary. + + + + + +CHAPTER XXVIII + + +Prince Andrew was to leave next evening. The old prince, not +altering his routine, retired as usual after dinner. The little +princess was in her sister-in-law's room. Prince Andrew in a traveling +coat without epaulettes had been packing with his valet in the rooms +assigned to him. After inspecting the carriage himself and seeing +the trunks put in, he ordered the horses to be harnessed. Only those +things he always kept with him remained in his room; a small box, a +large canteen fitted with silver plate, two Turkish pistols and a +saber--a present from his father who had brought it from the siege +of Ochakov. All these traveling effects of Prince Andrew's were in +very good order: new, clean, and in cloth covers carefully tied with +tapes. + +When starting on a journey or changing their mode of life, men +capable of reflection are generally in a serious frame of mind. At +such moments one reviews the past and plans for the future. Prince +Andrew's face looked very thoughtful and tender. With his hands behind +him he paced briskly from corner to corner of the room, looking +straight before him and thoughtfully shaking his head. Did he fear +going to the war, or was he sad at leaving his wife?--perhaps both, +but evidently he did not wish to be seen in that mood, for hearing +footsteps in the passage he hurriedly unclasped his hands, stopped +at a table as if tying the cover of the small box, and assumed his +usual tranquil and impenetrable expression. It was the heavy tread +of Princess Mary that he heard. + +"I hear you have given orders to harness," she cried, panting (she +had apparently been running), "and I did so wish to have another +talk with you alone! God knows how long we may again be parted. You +are not angry with me for coming? You have changed so, Andrusha," +she added, as if to explain such a question. + +She smiled as she uttered his pet name, "Andrusha." It was obviously +strange to her to think that this stern handsome man should be +Andrusha--the slender mischievous boy who had been her playfellow in +childhood. + +"And where is Lise?" he asked, answering her question only by a +smile. + +"She was so tired that she has fallen asleep on the sofa in my room. +Oh, Andrew! What a treasure of a wife you have," said she, sitting +down on the sofa, facing her brother. "She is quite a child: such a +dear, merry child. I have grown so fond of her." + +Prince Andrew was silent, but the princess noticed the ironical +and contemptuous look that showed itself on his face. + +"One must be indulgent to little weaknesses; who is free from +them, Andrew? Don't forget that she has grown up and been educated +in society, and so her position now is not a rosy one. We should enter +into everyone's situation. Tout comprendre, c'est tout pardonner.* +Think it must be for her, poor thing, after what she has been used to, +to be parted from her husband and be left alone in the country, in her +condition! It's very hard." + + +*To understand all is to forgive all. + + +Prince Andrew smiled as he looked at his sister, as we smile at +those we think we thoroughly understand. + +"You live in the country and don't think the life terrible," he +replied. + +"I... that's different. Why speak of me? I don't want any other +life, and can't, for I know no other. But think, Andrew: for a young +society woman to be buried in the country during the best years of her +life, all alone--for Papa is always busy, and I... well, you know what +poor resources I have for entertaining a woman used to the best +society. There is only Mademoiselle Bourienne...." + +"I don't like your Mademoiselle Bourienne at all," said Prince +Andrew. + +"No? She is very nice and kind and, above all, she's much to be +pitied. She has no one, no one. To tell the truth, I don't need her, +and she's even in my way. You know I always was a savage, and now am +even more so. I like being alone.... Father likes her very much. She +and Michael Ivanovich are the two people to whom he is always gentle +and kind, because he has been a benefactor to them both. As Sterne +says: 'We don't love people so much for the good they have done us, as +for the good we have done them.' Father took her when she was homeless +after losing her own father. She is very good-natured, and my father +likes her way of reading. She reads to him in the evenings and reads +splendidly." + +"To be quite frank, Mary, I expect Father's character sometimes +makes things trying for you, doesn't it?" Prince Andrew asked +suddenly. + +Princess Mary was first surprised and then aghast at this question. + +"For me? For me?... Trying for me!..." said she. + +"He always was rather harsh; and now I should think he's getting +very trying," said Prince Andrew, apparently speaking lightly of their +father in order to puzzle or test his sister. + +"You are good in every way, Andrew, but you have a kind of +intellectual pride," said the princess, following the train of her own +thoughts rather than the trend of the conversation--"and that's a +great sin. How can one judge Father? But even if one might, what +feeling except veneration could such a man as my father evoke? And I +am so contented and happy with him. I only wish you were all as +happy as I am." + +Her brother shook his head incredulously. + +"The only thing that is hard for me... I will tell you the truth, +Andrew... is Father's way of treating religious subjects. I don't +understand how a man of his immense intellect can fail to see what +is as clear as day, and can go so far astray. That is the only thing +that makes me unhappy. But even in this I can see lately a shade of +improvement. His satire has been less bitter of late, and there was +a monk he received and had a long talk with." + +"Ah! my dear, I am afraid you and your monk are wasting your +powder," said Prince Andrew banteringly yet tenderly. + +"Ah! mon ami, I only pray, and hope that God will hear me. +Andrew..." she said timidly after a moment's silence, "I have a +great favor to ask of you." + +"What is it, dear?" + +"No--promise that you will not refuse! It will give you no trouble +and is nothing unworthy of you, but it will comfort me. Promise, +Andrusha!..." said she, putting her hand in her reticule but not yet +taking out what she was holding inside it, as if what she held were +the subject of her request and must not be shown before the request +was granted. + +She looked timidly at her brother. + +"Even if it were a great deal of trouble..." answered Prince Andrew, +as if guessing what it was about. + +"Think what you please! I know you are just like Father. Think as +you please, but do this for my sake! Please do! Father's father, our +grandfather, wore it in all his wars." (She still did not take out +what she was holding in her reticule.) "So you promise?" + +"Of course. What is it?" + +"Andrew, I bless you with this icon and you must promise me you will +never take it off. Do you promise?" + +"If it does not weigh a hundredweight and won't break my neck... +To please you..." said Prince Andrew. But immediately, noticing the +pained expression his joke had brought to his sister's face, he +repented and added: "I am glad; really, dear, I am very glad." + +"Against your will He will save and have mercy on you and bring +you to Himself, for in Him alone is truth and peace," said she in a +voice trembling with emotion, solemnly holding up in both hands before +her brother a small, oval, antique, dark-faced icon of the Saviour +in a gold setting, on a finely wrought silver chain. + +She crossed herself, kissed the icon, and handed it to Andrew. + +"Please, Andrew, for my sake!..." + +Rays of gentle light shone from her large, timid eyes. Those eyes +lit up the whole of her thin, sickly face and made it beautiful. Her +brother would have taken the icon, but she stopped him. Andrew +understood, crossed himself and kissed the icon. There was a look of +tenderness, for he was touched, but also a gleam of irony on his face. + +"Thank you, my dear." She kissed him on the forehead and sat down +again on the sofa. They were silent for a while. + +"As I was saying to you, Andrew, be kind and generous as you +always used to be. Don't judge Lise harshly," she began. "She is so +sweet, so good-natured, and her position now is a very hard one." + +"I do not think I have complained of my wife to you, Masha, or +blamed her. Why do you say all this to me?" + +Red patches appeared on Princess Mary's face and she was silent as +if she felt guilty. + +"I have said nothing to you, but you have already been talked to. +And I am sorry for that," he went on. + +The patches grew deeper on her forehead, neck, and cheeks. She tried +to say something but could not. Her brother had guessed right: the +little princess had been crying after dinner and had spoken of her +forebodings about her confinement, and how she dreaded it, and had +complained of her fate, her father-in-law, and her husband. After +crying she had fallen asleep. Prince Andrew felt sorry for his sister. + +"Know this, Masha: I can't reproach, have not reproached, and +never shall reproach my wife with anything, and I cannot reproach +myself with anything in regard to her; and that always will be so in +whatever circumstances I may be placed. But if you want to know the +truth... if you want to know whether I am happy? No! Is she happy? No! +But why this is so I don't know..." + +As he said this he rose, went to his sister, and, stooping, kissed +her forehead. His fine eyes lit up with a thoughtful, kindly, and +unaccustomed brightness, but he was looking not at his sister but over +her head toward the darkness of the open doorway. + +"Let us go to her, I must say good-by. Or--go and wake and I'll come +in a moment. Petrushka!" he called to his valet: "Come here, take +these away. Put this on the seat and this to the right." + +Princess Mary rose and moved to the door, then stopped and said: +"Andrew, if you had faith you would have turned to God and asked Him +to give you the love you do not feel, and your prayer would have +been answered." + +"Well, may be!" said Prince Andrew. "Go, Masha; I'll come +immediately." + +On the way to his sister's room, in the passage which connected +one wing with the other, Prince Andrew met Mademoiselle Bourienne +smiling sweetly. It was the third time that day that, with an ecstatic +and artless smile, she had met him in secluded passages. + +"Oh! I thought you were in your room," she said, for some reason +blushing and dropping her eyes. + +Prince Andrew looked sternly at her and an expression of anger +suddenly came over his face. He said nothing to her but looked at +her forehead and hair, without looking at her eyes, with such contempt +that the Frenchwoman blushed and went away without a word. When he +reached his sister's room his wife was already awake and her merry +voice, hurrying one word after another, came through the open door. +She was speaking as usual in French, and as if after long +self-restraint she wished to make up for lost time. + +"No, but imagine the old Countess Zubova, with false curls and her +mouth full of false teeth, as if she were trying to cheat old +age.... Ha, ha, ha! Mary!" + +This very sentence about Countess Zubova and this same laugh +Prince Andrew had already heard from his wife in the presence of +others some five times. He entered the room softly. The little +princess, plump and rosy, was sitting in an easy chair with her work +in her hands, talking incessantly, repeating Petersburg +reminiscences and even phrases. Prince Andrew came up, stroked her +hair, and asked if she felt rested after their journey. She answered +him and continued her chatter. + +The coach with six horses was waiting at the porch. It was an autumn +night, so dark that the coachman could not see the carriage pole. +Servants with lanterns were bustling about in the porch. The immense +house was brilliant with lights shining through its lofty windows. The +domestic serfs were crowding in the hall, waiting to bid good-by to +the young prince. The members of the household were all gathered in +the reception hall: Michael Ivanovich, Mademoiselle Bourienne, +Princess Mary, and the little princess. Prince Andrew had been +called to his father's study as the latter wished to say good-by to +him alone. All were waiting for them to come out. + +When Prince Andrew entered the study the old man in his old-age +spectacles and white dressing gown, in which he received no one but +his son, sat at the table writing. He glanced round. + +"Going?" And he went on writing. + +"I've come to say good-by." + +"Kiss me here," and he touched his cheek: "Thanks, thanks!" + +"What do you thank me for?" + +"For not dilly-dallying and not hanging to a woman's apron +strings. The Service before everything. Thanks, thanks!" And he went +on writing, so that his quill spluttered and squeaked. "If you have +anything to say, say it. These two things can be done together," he +added. + +"About my wife... I am ashamed as it is to leave her on your +hands..." + +"Why talk nonsense? Say what you want." + +"When her confinement is due, send to Moscow for an accoucheur.... +Let him be here...." + +The old prince stopped writing and, as if not understanding, fixed +his stern eyes on his son. + +"I know that no one can help if nature does not do her work," said +Prince Andrew, evidently confused. "I know that out of a million cases +only one goes wrong, but it is her fancy and mine. They have been +telling her things. She has had a dream and is frightened." + +"Hm... Hm..." muttered the old prince to himself, finishing what +he was writing. "I'll do it." + +He signed with a flourish and suddenly turning to his son began to +laugh. + +"It's a bad business, eh?" + +"What is bad, Father?" + +"The wife!" said the old prince, briefly and significantly. + +"I don't understand!" said Prince Andrew. + +"No, it can't be helped, lad," said the prince. "They're all like +that; one can't unmarry. Don't be afraid; I won't tell anyone, but you +know it yourself." + +He seized his son by the hand with small bony fingers, shook it, +looked straight into his son's face with keen eyes which seemed to see +through him, and again laughed his frigid laugh. + +The son sighed, thus admitting that his father had understood him. +The old man continued to fold and seal his letter, snatching up and +throwing down the wax, the seal, and the paper, with his accustomed +rapidity. + +"What's to be done? She's pretty! I will do everything. Make your +mind easy," said he in abrupt sentences while sealing his letter. + +Andrew did not speak; he was both pleased and displeased that his +father understood him. The old man got up and gave the letter to his +son. + +"Listen!" said he; "don't worry about your wife: what can be done +shall be. Now listen! Give this letter to Michael Ilarionovich.* I +have written that he should make use of you in proper places and not +keep you long as an adjutant: a bad position! Tell him I remember +and like him. Write and tell me how he receives you. If he is all +right--serve him. Nicholas Bolkonski's son need not serve under anyone +if he is in disfavor. Now come here." + + +*Kutuzov. + + +He spoke so rapidly that he did not finish half his words, but his +son was accustomed to understand him. He led him to the desk, raised +the lid, drew out a drawer, and took out an exercise book filled +with his bold, tall, close handwriting. + +"I shall probably die before you. So remember, these are my memoirs; +hand them to the Emperor after my death. Now here is a Lombard bond +and a letter; it is a premium for the man who writes a history of +Suvorov's wars. Send it to the Academy. Here are some jottings for you +to read when I am gone. You will find them useful." + +Andrew did not tell his father that he would no doubt live a long +time yet. He felt that he must not say it. + +"I will do it all, Father," he said. + +"Well, now, good-by!" He gave his son his hand to kiss, and embraced +him. "Remember this, Prince Andrew, if they kill you it will hurt +me, your old father..." he paused unexpectedly, and then in a +querulous voice suddenly shrieked: "but if I hear that you have not +behaved like a son of Nicholas Bolkonski, I shall be ashamed!" + +"You need not have said that to me, Father," said the son with a +smile. + +The old man was silent. + +"I also wanted to ask you," continued Prince Andrew, "if I'm +killed and if I have a son, do not let him be taken away from you- +as I said yesterday... let him grow up with you.... Please." + +"Not let the wife have him?" said the old man, and laughed. + +They stood silent, facing one another. The old man's sharp eyes were +fixed straight on his son's. Something twitched in the lower part of +the old prince's face. + +"We've said good-by. Go!" he suddenly shouted in a loud, angry +voice, opening his door. + +"What is it? What?" asked both princesses when they saw for a moment +at the door Prince Andrew and the figure of the old man in a white +dressing gown, spectacled and wigless, shouting in an angry voice. + +Prince Andrew sighed and made no reply. + +"Well!" he said, turning to his wife. + +And this "Well!" sounded coldly ironic, as if he were saying,: +"Now go through your performance." + +"Andrew, already!" said the little princess, turning pale and +looking with dismay at her husband. + +He embraced her. She screamed and fell unconscious on his shoulder. + +He cautiously released the shoulder she leaned on, looked into her +face, and carefully placed her in an easy chair. + +"Adieu, Mary," said he gently to his sister, taking her by the +hand and kissing her, and then he left the room with rapid steps. + +The little princess lay in the armchair, Mademoiselle Bourienne +chafing her temples. Princess Mary, supporting her sister-in-law, +still looked with her beautiful eyes full of tears at the door through +which Prince Andrew had gone and made the sign of the cross in his +direction. From the study, like pistol shots, came the frequent +sound of the old man angrily blowing his nose. Hardly had Prince +Andrew gone when the study door opened quickly and the stern figure of +the old man in the white dressing gown looked out. + +"Gone? That's all right!" said he; and looking angrily at the +unconscious little princess, he shook his head reprovingly and slammed +the door. + + + + + +BOOK TWO: 1805 + + + + + +CHAPTER I + + +In October, 1805, a Russian army was occupying the villages and +towns of the Archduchy of Austria, and yet other regiments freshly +arriving from Russia were settling near the fortress of Braunau and +burdening the inhabitants on whom they were quartered. Braunau was the +headquarters of the commander-in-chief, Kutuzov. + +On October 11, 1805, one of the infantry regiments that had just +reached Braunau had halted half a mile from the town, waiting to be +inspected by the commander in chief. Despite the un-Russian appearance +of the locality and surroundings--fruit gardens, stone fences, tiled +roofs, and hills in the distance--and despite the fact that the +inhabitants (who gazed with curiosity at the soldiers) were not +Russians, the regiment had just the appearance of any Russian regiment +preparing for an inspection anywhere in the heart of Russia. + +On the evening of the last day's march an order had been received +that the commander in chief would inspect the regiment on the march. +Though the words of the order were not clear to the regimental +commander, and the question arose whether the troops were to be in +marching order or not, it was decided at a consultation between the +battalion commanders to present the regiment in parade order, on the +principle that it is always better to "bow too low than not bow low +enough." So the soldiers, after a twenty-mile march, were kept mending +and cleaning all night long without closing their eyes, while the +adjutants and company commanders calculated and reckoned, and by +morning the regiment--instead of the straggling, disorderly crowd it +had been on its last march the day before--presented a well-ordered +array of two thousand men each of whom knew his place and his duty, +had every button and every strap in place, and shone with cleanliness. +And not only externally was all in order, but had it pleased the +commander in chief to look under the uniforms he would have found on +every man a clean shirt, and in every knapsack the appointed number of +articles, "awl, soap, and all," as the soldiers say. There was only +one circumstance concerning which no one could be at ease. It was +the state of the soldiers' boots. More than half the men's boots +were in holes. But this defect was not due to any fault of the +regimental commander, for in spite of repeated demands boots had not +been issued by the Austrian commissariat, and the regiment had marched +some seven hundred miles. + +The commander of the regiment was an elderly, choleric, stout, and +thick-set general with grizzled eyebrows and whiskers, and wider +from chest to back than across the shoulders. He had on a brand-new +uniform showing the creases where it had been folded and thick gold +epaulettes which seemed to stand rather than lie down on his massive +shoulders. He had the air of a man happily performing one of the +most solemn duties of his life. He walked about in front of the line +and at every step pulled himself up, slightly arching his back. It was +plain that the commander admired his regiment, rejoiced in it, and +that his whole mind was engrossed by it, yet his strut seemed to +indicate that, besides military matters, social interests and the fair +sex occupied no small part of his thoughts. + +"Well, Michael Mitrich, sir?" he said, addressing one of the +battalion commanders who smilingly pressed forward (it was plain +that they both felt happy). "We had our hands full last night. +However, I think the regiment is not a bad one, eh?" + +The battalion commander perceived the jovial irony and laughed. + +"It would not be turned off the field even on the Tsaritsin Meadow." + +"What?" asked the commander. + +At that moment, on the road from the town on which signalers had +been posted, two men appeared on horse back. They were an +aide-de-camp followed by a Cossack. + +The aide-de-camp was sent to confirm the order which had not been +clearly worded the day before, namely, that the commander in chief +wished to see the regiment just in the state in which it had been on +the march: in their greatcoats, and packs, and without any preparation +whatever. + +A member of the Hofkriegsrath from Vienna had come to Kutuzov the +day before with proposals and demands for him to join up with the army +of the Archduke Ferdinand and Mack, and Kutuzov, not considering +this junction advisable, meant, among other arguments in support of +his view, to show the Austrian general the wretched state in which the +troops arrived from Russia. With this object he intended to meet the +regiment; so the worse the condition it was in, the better pleased the +commander in chief would be. Though the aide-de-camp did not know +these circumstances, he nevertheless delivered the definite order that +the men should be in their greatcoats and in marching order, and +that the commander in chief would otherwise be dissatisfied. On +hearing this the regimental commander hung his head, silently shrugged +his shoulders, and spread out his arms with a choleric gesture. + +"A fine mess we've made of it!" he remarked. + +"There now! Didn't I tell you, Michael Mitrich, that if it was +said 'on the march' it meant in greatcoats?" said he reproachfully +to the battalion commander. "Oh, my God!" he added, stepping +resolutely forward. "Company commanders!" he shouted in a voice +accustomed to command. "Sergeants major!... How soon will he be here?" +he asked the aide-de-camp with a respectful politeness evidently +relating to the personage he was referring to. + +"In an hour's time, I should say." + +"Shall we have time to change clothes?" + +"I don't know, General...." + +The regimental commander, going up to the line himself, ordered +the soldiers to change into their greatcoats. The company commanders +ran off to their companies, the sergeants major began bustling (the +greatcoats were not in very good condition), and instantly the squares +that had up to then been in regular order and silent began to sway and +stretch and hum with voices. On all sides soldiers were running to and +fro, throwing up their knapsacks with a jerk of their shoulders and +pulling the straps over their heads, unstrapping their overcoats and +drawing the sleeves on with upraised arms. + +In half an hour all was again in order, only the squares had +become gray instead of black. The regimental commander walked with his +jerky steps to the front of the regiment and examined it from a +distance. + +"Whatever is this? This!" he shouted and stood still. "Commander +of the third company!" + +"Commander of the third company wanted by the general!... +commander to the general... third company to the commander." The words +passed along the lines and an adjutant ran to look for the missing +officer. + +When the eager but misrepeated words had reached their destination +in a cry of: "The general to the third company," the missing officer +appeared from behind his company and, though he was a middle-aged +man and not in the habit of running, trotted awkwardly stumbling on +his toes toward the general. The captain's face showed the +uneasiness of a schoolboy who is told to repeat a lesson he has not +learned. Spots appeared on his nose, the redness of which was +evidently due to intemperance, and his mouth twitched nervously. The +general looked the captain up and down as he came up panting, +slackening his pace as he approached. + +"You will soon be dressing your men in petticoats! What is this?" +shouted the regimental commander, thrusting forward his jaw and +pointing at a soldier in the ranks of the third company in a greatcoat +of bluish cloth, which contrasted with the others. "What have you been +after? The commander in chief is expected and you leave your place? +Eh? I'll teach you to dress the men in fancy coats for a parade.... +Eh...?" + +The commander of the company, with his eyes fixed on his superior, +pressed two fingers more and more rigidly to his cap, as if in this +pressure lay his only hope of salvation. + +"Well, why don't you speak? Whom have you got there dressed up as +a Hungarian?" said the commander with an austere gibe. + +"Your excellency..." + +"Well, your excellency, what? Your excellency! But what about your +excellency?... nobody knows." + +"Your excellency, it's the officer Dolokhov, who has been reduced to +the ranks," said the captain softly. + +"Well? Has he been degraded into a field marshal, or into a soldier? +If a soldier, he should be dressed in regulation uniform like the +others." + +"Your excellency, you gave him leave yourself, on the march." + +"Gave him leave? Leave? That's just like you young men," said the +regimental commander cooling down a little. "Leave indeed.... One says +a word to you and you... What?" he added with renewed irritation, "I +beg you to dress your men decently." + +And the commander, turning to look at the adjutant, directed his +jerky steps down the line. He was evidently pleased at his own display +of anger and walking up to the regiment wished to find a further +excuse for wrath. Having snapped at an officer for an unpolished +badge, at another because his line was not straight, he reached the +third company. + +"H-o-o-w are you standing? Where's your leg? Your leg?" shouted +the commander with a tone of suffering in his voice, while there +were still five men between him and Dolokhov with his bluish-gray +uniform. + +Dolokhov slowly straightened his bent knee, looking straight with +his clear, insolent eyes in the general's face. + +"Why a blue coat? Off with it... Sergeant major! Change his +coat... the ras..." he did not finish. + +"General, I must obey orders, but I am not bound to endure..." +Dolokhov hurriedly interrupted. + +"No talking in the ranks!... No talking, no talking!" + +"Not bound to endure insults," Dolokhov concluded in loud, ringing +tones. + +The eyes of the general and the soldier met. The general became +silent, angrily pulling down his tight scarf. + +"I request you to have the goodness to change your coat," he said as +he turned away. + + + + + +CHAPTER II + + +"He's coming!" shouted the signaler at that moment. + +The regimental commander, flushing, ran to his horse, seized the +stirrup with trembling hands, threw his body across the saddle, +righted himself, drew his saber, and with a happy and resolute +countenance, opening his mouth awry, prepared to shout. The regiment +fluttered like a bird preening its plumage and became motionless. + +"Att-ention!" shouted the regimental commander in a soul-shaking +voice which expressed joy for himself, severity for the regiment, +and welcome for the approaching chief. + +Along the broad country road, edged on both sides by trees, came a +high, light blue Viennese caleche, slightly creaking on its springs +and drawn by six horses at a smart trot. Behind the caleche galloped +the suite and a convoy of Croats. Beside Kutuzov sat an Austrian +general, in a white uniform that looked strange among the Russian +black ones. The caleche stopped in front of the regiment. Kutuzov +and the Austrian general were talking in low voices and Kutuzov smiled +slightly as treading heavily he stepped down from the carriage just as +if those two thousand men breathlessly gazing at him and the +regimental commander did not exist. + +The word of command rang out, and again the regiment quivered, as +with a jingling sound it presented arms. Then amidst a dead silence +the feeble voice of the commander in chief was heard. The regiment +roared, "Health to your ex... len... len... lency!" and again all +became silent. At first Kutuzov stood still while the regiment +moved; then he and the general in white, accompanied by the suite, +walked between the ranks. + +From the way the regimental commander saluted the commander in chief +and devoured him with his eyes, drawing himself up obsequiously, and +from the way he walked through the ranks behind the generals, +bending forward and hardly able to restrain his jerky movements, and +from the way he darted forward at every word or gesture of the +commander in chief, it was evident that he performed his duty as a +subordinate with even greater zeal than his duty as a commander. +Thanks to the strictness and assiduity of its commander the +regiment, in comparison with others that had reached Braunau at the +same time, was in splendid condition. There were only 217 sick and +stragglers. Everything was in good order except the boots. + +Kutuzov walked through the ranks, sometimes stopping to say a few +friendly words to officers he had known in the Turkish war, +sometimes also to the soldiers. Looking at their boots he several +times shook his head sadly, pointing them out to the Austrian +general with an expression which seemed to say that he was not blaming +anyone, but could not help noticing what a bad state of things it was. +The regimental commander ran forward on each such occasion, fearing to +miss a single word of the commander in chief's regarding the regiment. +Behind Kutuzov, at a distance that allowed every softly spoken word to +be heard, followed some twenty men of his suite. These gentlemen +talked among themselves and sometimes laughed. Nearest of all to the +commander in chief walked a handsome adjutant. This was Prince +Bolkonski. Beside him was his comrade Nesvitski, a tall staff officer, +extremely stout, with a kindly, smiling, handsome face and moist eyes. +Nesvitski could hardly keep from laughter provoked by a swarthy hussar +officer who walked beside him. This hussar, with a grave face and +without a smile or a change in the expression of his fixed eyes, +watched the regimental commander's back and mimicked his every +movement. Each time the commander started and bent forward, the hussar +started and bent forward in exactly the same manner. Nesvitski laughed +and nudged the others to make them look at the wag. + +Kutuzov walked slowly and languidly past thousands of eyes which +were starting from their sockets to watch their chief. On reaching the +third company he suddenly stopped. His suite, not having expected +this, involuntarily came closer to him. + +"Ah, Timokhin!" said he, recognizing the red-nosed captain who had +been reprimanded on account of the blue greatcoat. + +One would have thought it impossible for a man to stretch himself +more than Timokhin had done when he was reprimanded by the +regimental commander, but now that the commander in chief addressed +him he drew himself up to such an extent that it seemed he could not +have sustained it had the commander in chief continued to look at him, +and so Kutuzov, who evidently understood his case and wished him +nothing but good, quickly turned away, a scarcely perceptible smile +flitting over his scarred and puffy face. + +"Another Ismail comrade," said he. "A brave officer! Are you +satisfied with him?" he asked the regimental commander. + +And the latter--unconscious that he was being reflected in the +hussar officer as in a looking glass--started, moved forward, and +answered: "Highly satisfied, your excellency!" + +"We all have our weaknesses," said Kutuzov smiling and walking +away from him. "He used to have a predilection for Bacchus." + +The regimental commander was afraid he might be blamed for this +and did not answer. The hussar at that moment noticed the face of +the red-nosed captain and his drawn-in stomach, and mimicked his +expression and pose with such exactitude that Nesvitski could not help +laughing. Kutuzov turned round. The officer evidently had complete +control of his face, and while Kutuzov was turning managed to make a +grimace and then assume a most serious, deferential, and innocent +expression. + +The third company was the last, and Kutuzov pondered, apparently +trying to recollect something. Prince Andrew stepped forward from +among the suite and said in French: + +"You told me to remind you of the officer Dolokhov, reduced to the +ranks in this regiment." + +"Where is Dolokhov?" asked Kutuzov. + +Dolokhov, who had already changed into a soldier's gray greatcoat, +did not wait to be called. The shapely figure of the fair-haired +soldier, with his clear blue eyes, stepped forward from the ranks, +went up to the commander in chief, and presented arms. + +"Have you a complaint to make?" Kutuzov asked with a slight frown. + +"This is Dolokhov," said Prince Andrew. + +"Ah!" said Kutuzov. "I hope this will be a lesson to you. Do your +duty. The Emperor is gracious, and I shan't forget you if you +deserve well." + +The clear blue eyes looked at the commander in chief just as +boldly as they had looked at the regimental commander, seeming by +their expression to tear open the veil of convention that separates +a commander in chief so widely from a private. + +"One thing I ask of your excellency," Dolokhov said in his firm, +ringing, deliberate voice. "I ask an opportunity to atone for my fault +and prove my devotion to His Majesty the Emperor and to Russia!" + +Kutuzov turned away. The same smile of the eyes with which he had +turned from Captain Timokhin again flitted over his face. He turned +away with a grimace as if to say that everything Dolokhov had said +to him and everything he could say had long been known to him, that he +was weary of it and it was not at all what he wanted. He turned away +and went to the carriage. + +The regiment broke up into companies, which went to their +appointed quarters near Braunau, where they hoped to receive boots and +clothes and to rest after their hard marches. + +"You won't bear me a grudge, Prokhor Ignatych?" said the +regimental commander, overtaking the third company on its way to its +quarters and riding up to Captain Timokhin who was walking in front. +(The regimental commander's face now that the inspection was happily +over beamed with irrepressible delight.) "It's in the Emperor's +service... it can't be helped... one is sometimes a bit hasty on +parade... I am the first to apologize, you know me!... He was very +pleased!" And he held out his hand to the captain. + +"Don't mention it, General, as if I'd be so bold!" replied the +captain, his nose growing redder as he gave a smile which showed where +two front teeth were missing that had been knocked out by the butt end +of a gun at Ismail. + +"And tell Mr. Dolokhov that I won't forget him--he may be quite +easy. And tell me, please--I've been meaning to ask--how is to ask- +how is he behaving himself, and in general..." + +"As far as the service goes he is quite punctilious, your +excellency; but his character..." said Timokhin. + +"And what about his character?" asked the regimental commander. + +"It's different on different days," answered the captain. "One day +he is sensible, well educated, and good-natured, and the next he's a +wild beast.... In Poland, if you please, he nearly killed a Jew." + +"Oh, well, well!" remarked the regimental commander. "Still, one +must have pity on a young man in misfortune. You know he has important +connections... Well, then, you just..." + +"I will, your excellency," said Timokhin, showing by his smile +that he understood his commander's wish. + +"Well, of course, of course!" + +The regimental commander sought out Dolokhov in the ranks and, +reining in his horse, said to him: + +"After the next affair... epaulettes." + +Dolokhov looked round but did not say anything, nor did the +mocking smile on his lips change. + +"Well, that's all right," continued the regimental commander. "A cup +of vodka for the men from me," he added so that the soldiers could +hear. "I thank you all! God be praised!" and he rode past that company +and overtook the next one. + +"Well, he's really a good fellow, one can serve under him," said +Timokhin to the subaltern beside him. + +"In a word, a hearty one..." said the subaltern, laughing (the +regimental commander was nicknamed King of Hearts). + +The cheerful mood of their officers after the inspection infected +the soldiers. The company marched on gaily. The soldiers' voices could +be heard on every side. + +"And they said Kutuzov was blind of one eye?" + +"And so he is! Quite blind!" + +"No, friend, he is sharper-eyed than you are. Boots and leg bands... +he noticed everything..." + +"When he looked at my feet, friend... well, thinks I..." + +"And that other one with him, the Austrian, looked as if he were +smeared with chalk--as white as flour! I suppose they polish him up as +they do the guns." + +"I say, Fedeshon!... Did he say when the battles are to begin? You +were near him. Everybody said that Buonaparte himself was at Braunau." + +"Buonaparte himself!... Just listen to the fool, what he doesn't +know! The Prussians are up in arms now. The Austrians, you see, are +putting them down. When they've been put down, the war with Buonaparte +will begin. And he says Buonaparte is in Braunau! Shows you're a fool. +You'd better listen more carefully!" + +"What devils these quartermasters are! See, the fifth company is +turning into the village already... they will have their buckwheat +cooked before we reach our quarters." + +"Give me a biscuit, you devil!" + +"And did you give me tobacco yesterday? That's just it, friend! +Ah, well, never mind, here you are." + +"They might call a halt here or we'll have to do another four +miles without eating." + +"Wasn't it fine when those Germans gave us lifts! You just sit still +and are drawn along." + +"And here, friend, the people are quite beggarly. There they all +seemed to be Poles--all under the Russian crown--but here they're +all regular Germans." + +"Singers to the front " came the captain's order. + +And from the different ranks some twenty men ran to the front. A +drummer, their leader, turned round facing the singers, and +flourishing his arm, began a long-drawn-out soldiers' song, commencing +with the words: "Morning dawned, the sun was rising," and +concluding: "On then, brothers, on to glory, led by Father + +Kamenski." This song had been composed in the Turkish campaign and now +being sung in Austria, the only change being that the words "Father +Kamenski" were replaced by "Father Kutuzov." + +Having jerked out these last words as soldiers do and waved his arms +as if flinging something to the ground, the drummer--a lean, +handsome soldier of forty--looked sternly at the singers and screwed +up his eyes. Then having satisfied himself that all eyes were fixed on +him, he raised both arms as if carefully lifting some invisible but +precious object above his head and, holding it there for some seconds, +suddenly flung it down and began: + +"Oh, my bower, oh, my bower...!" + +"Oh, my bower new...!" chimed in twenty voices, and the castanet +player, in spite of the burden of his equipment, rushed out to the +front and, walking backwards before the company, jerked his +shoulders and flourished his castanets as if threatening someone. +The soldiers, swinging their arms and keeping time spontaneously, +marched with long steps. Behind the company the sound of wheels, the +creaking of springs, and the tramp of horses' hoofs were heard. +Kutuzov and his suite were returning to the town. The commander in +chief made a sign that the men should continue to march at ease, and +he and all his suite showed pleasure at the sound of the singing and +the sight of the dancing soldier and the gay and smartly marching men. +In the second file from the right flank, beside which the carriage +passed the company, a blue-eyed soldier involuntarily attracted +notice. It was Dolokhov marching with particular grace and boldness in +time to the song and looking at those driving past as if he pitied all +who were not at that moment marching with the company. The hussar +cornet of Kutuzov's suite who had mimicked the regimental commander, +fell back from the carriage and rode up to Dolokhov. + +Hussar cornet Zherkov had at one time, in Petersburg, belonged to +the wild set led by Dolokhov. Zherkov had met Dolokhov abroad as a +private and had not seen fit to recognize him. But now that Kutuzov +had spoken to the gentleman ranker, he addressed him with the +cordiality of an old friend. + +"My dear fellow, how are you?" said he through the singing, making +his horse keep pace with the company. + +"How am I?" Dolokhov answered coldly. "I am as you see." + +The lively song gave a special flavor to the tone of free and easy +gaiety with which Zherkov spoke, and to the intentional coldness of +Dolokhov's reply. + +"And how do you get on with the officers?" inquired Zherkov. + +"All right. They are good fellows. And how have you wriggled onto +the staff?" + +"I was attached; I'm on duty." + +Both were silent. + +"She let the hawk fly upward from her wide right sleeve," went the +song, arousing an involuntary sensation of courage and cheerfulness. +Their conversation would probably have been different but for the +effect of that song. + +"Is it true that Austrians have been beaten?" asked Dolokhov. + +"The devil only knows! They say so." + +"I'm glad," answered Dolokhov briefly and clearly, as the song +demanded. + +"I say, come round some evening and we'll have a game of faro!" said +Zherkov. + +"Why, have you too much money?" + +"Do come." + +"I can't. I've sworn not to. I won't drink and won't play till I get +reinstated." + +"Well, that's only till the first engagement." + +"We shall see." + +They were again silent. + +"Come if you need anything. One can at least be of use on the +staff..." + +Dolokhov smiled. "Don't trouble. If I want anything, I won't beg- +I'll take it!" + +"Well, never mind; I only..." + +"And I only..." + +"Good-by." + +"Good health..." + + "It's a long, long way. + To my native land..." + + +Zherkov touched his horse with the spurs; it pranced excitedly +from foot to foot uncertain with which to start, then settled down, +galloped past the company, and overtook the carriage, still keeping +time to the song. + + + + + +CHAPTER III + + +On returning from the review, Kutuzov took the Austrian general into +his private room and, calling his adjutant, asked for some papers +relating to the condition of the troops on their arrival, and the +letters that had come from the Archduke Ferdinand, who was in +command of the advanced army. Prince Andrew Bolkonski came into the +room with the required papers. Kutuzov and the Austrian member of +the Hofkriegsrath were sitting at the table on which a plan was spread +out. + +"Ah!..." said Kutuzov glancing at Bolkonski as if by this +exclamation he was asking the adjutant to wait, and he went on with +the conversation in French. + +"All I can say, General," said he with a pleasant elegance of +expression and intonation that obliged one to listen to each +deliberately spoken word. It was evident that Kutuzov himself listened +with pleasure to his own voice. "All I can say, General, is that if +the matter depended on my personal wishes, the will of His Majesty the +Emperor Francis would have been fulfilled long ago. I should long +ago have joined the archduke. And believe me on my honour that to me +personally it would be a pleasure to hand over the supreme command +of the army into the hands of a better informed and more skillful +general--of whom Austria has so many--and to lay down all this heavy +responsibility. But circumstances are sometimes too strong for us, +General." + +And Kutuzov smiled in a way that seemed to say, "You are quite at +liberty not to believe me and I don't even care whether you do or not, +but you have no grounds for telling me so. And that is the whole +point." + +The Austrian general looked dissatisfied, but had no option but to +reply in the same tone. + +"On the contrary," he said, in a querulous and angry tone that +contrasted with his flattering words, "on the contrary, your +excellency's participation in the common action is highly valued by +His Majesty; but we think the present delay is depriving the +splendid Russian troops and their commander of the laurels they have +been accustomed to win in their battles," he concluded his evidently +prearranged sentence. + +Kutuzov bowed with the same smile. + +"But that is my conviction, and judging by the last letter with +which His Highness the Archduke Ferdinand has honored me, I imagine +that the Austrian troops, under the direction of so skillful a +leader as General Mack, have by now already gained a decisive +victory and no longer need our aid," said Kutuzov. + +The general frowned. Though there was no definite news of an +Austrian defeat, there were many circumstances confirming the +unfavorable rumors that were afloat, and so Kutuzov's suggestion of an +Austrian victory sounded much like irony. But Kutuzov went on +blandly smiling with the same expression, which seemed to say that +he had a right to suppose so. And, in fact, the last letter he had +received from Mack's army informed him of a victory and stated +strategically the position of the army was very favorable. + +"Give me that letter," said Kutuzov turning to Prince Andrew. +"Please have a look at it"--and Kutuzov with an ironical smile about +the corners of his mouth read to the Austrian general the following +passage, in German, from the Archduke Ferdinand's letter: + + +We have fully concentrated forces of nearly seventy thousand men +with which to attack and defeat the enemy should he cross the Lech. +Also, as we are masters of Ulm, we cannot be deprived of the advantage +of commanding both sides of the Danube, so that should the enemy not +cross the Lech, we can cross the Danube, throw ourselves on his line +of communications, recross the river lower down, and frustrate his +intention should he try to direct his whole force against our faithful +ally. We shall therefore confidently await the moment when the +Imperial Russian army will be fully equipped, and shall then, in +conjunction with it, easily find a way to prepare for the enemy the +fate he deserves. + + +Kutuzov sighed deeply on finishing this paragraph and looked at +the member of the Hofkriegsrath mildly and attentively. + +"But you know the wise maxim your excellency, advising one to expect +the worst," said the Austrian general, evidently wishing to have +done with jests and to come to business. He involuntarily looked round +at the aide-de-camp. + +"Excuse me, General," interrupted Kutuzov, also turning to Prince +Andrew. "Look here, my dear fellow, get from Kozlovski all the reports +from our scouts. Here are two letters from Count Nostitz and here is +one from His Highness the Archduke Ferdinand and here are these," he +said, handing him several papers, "make a neat memorandum in French +out of all this, showing all the news we have had of the movements +of the Austrian army, and then give it to his excellency." + +Prince Andrew bowed his head in token of having understood from +the first not only what had been said but also what Kutuzov would have +liked to tell him. He gathered up the papers and with a bow to both, +stepped softly over the carpet and went out into the waiting room. + +Though not much time had passed since Prince Andrew had left Russia, +he had changed greatly during that period. In the expression of his +face, in his movements, in his walk, scarcely a trace was left of +his former affected languor and indolence. He now looked like a man +who has time to think of the impression he makes on others, but is +occupied with agreeable and interesting work. His face expressed +more satisfaction with himself and those around him, his smile and +glance were brighter and more attractive. + +Kutuzov, whom he had overtaken in Poland, had received him very +kindly, promised not to forget him, distinguished him above the +other adjutants, and had taken him to Vienna and given him the more +serious commissions. From Vienna Kutuzov wrote to his old comrade, +Prince Andrew's father. + + +Your son bids fair to become an officer distinguished by his +industry, firmness, and expedition. I consider myself fortunate to +have such a subordinate by me. + + +On Kutuzov's staff, among his fellow officers and in the army +generally, Prince Andrew had, as he had had in Petersburg society, two +quite opposite reputations. Some, a minority, acknowledged him to be +different from themselves and from everyone else, expected great +things of him, listened to him, admired, and imitated him, and with +them Prince Andrew was natural and pleasant. Others, the majority, +disliked him and considered him conceited, cold, and disagreeable. But +among these people Prince Andrew knew how to take his stand so that +they respected and even feared him. + +Coming out of Kutuzov's room into the waiting room with the papers +in his hand Prince Andrew came up to his comrade, the aide-de-camp +on duty, Kozlovski, who was sitting at the window with a book. + +"Well, Prince?" asked Kozlovski. + +"I am ordered to write a memorandum explaining why we are not +advancing." + +"And why is it?" + +Prince Andrew shrugged his shoulders. + +"Any news from Mack?" + +"No." + +"If it were true that he has been beaten, news would have come." + +"Probably," said Prince Andrew moving toward the outer door. + +But at that instant a tall Austrian general in a greatcoat, with the +order of Maria Theresa on his neck and a black bandage round his head, +who had evidently just arrived, entered quickly, slamming the door. +Prince Andrew stopped short. + +"Commander in Chief Kutuzov?" said the newly arrived general +speaking quickly with a harsh German accent, looking to both sides and +advancing straight toward the inner door. + +"The commander in chief is engaged," said Kozlovski, going hurriedly +up to the unknown general and blocking his way to the door. "Whom +shall I announce?" + +The unknown general looked disdainfully down at Kozlovski, who was +rather short, as if surprised that anyone should not know him. + +"The commander in chief is engaged," repeated Kozlovski calmly. + +The general's face clouded, his lips quivered and trembled. He +took out a notebook, hurriedly scribbled something in pencil, tore out +the leaf, gave it to Kozlovski, stepped quickly to the window, and +threw himself into a chair, gazing at those in the room as if +asking, "Why do they look at me?" Then he lifted his head, stretched +his neck as if he intended to say something, but immediately, with +affected indifference, began to hum to himself, producing a queer +sound which immediately broke off. The door of the private room opened +and Kutuzov appeared in the doorway. The general with the bandaged +head bent forward as though running away from some danger, and, making +long, quick strides with his thin legs, went up to Kutuzov. + +"Vous voyez le malheureux Mack," he uttered in a broken voice. + +Kutuzov's face as he stood in the open doorway remained perfectly +immobile for a few moments. Then wrinkles ran over his face like a +wave and his forehead became smooth again, he bowed his head +respectfully, closed his eyes, silently let Mack enter his room before +him, and closed the door himself behind him. + +The report which had been circulated that the Austrians had been +beaten and that the whole army had surrendered at Ulm proved to be +correct. Within half an hour adjutants had been sent in various +directions with orders which showed that the Russian troops, who had +hitherto been inactive, would also soon have to meet the enemy. + +Prince Andrew was one of those rare staff officers whose chief +interest lay in the general progress of the war. When he saw Mack +and heard the details of his disaster he understood that half the +campaign was lost, understood all the difficulties of the Russian +army's position, and vividly imagined what awaited it and the part +he would have to play. Involuntarily he felt a joyful agitation at the +thought of the humiliation of arrogant Austria and that in a week's +time he might, perhaps, see and take part in the first Russian +encounter with the French since Suvorov met them. He feared that +Bonaparte's genius might outweigh all the courage of the Russian +troops, and at the same time could not admit the idea of his hero +being disgraced. + +Excited and irritated by these thoughts Prince Andrew went toward +his room to write to his father, to whom he wrote every day. In the +corridor he met Nesvitski, with whom he shared a room, and the wag +Zherkov; they were as usual laughing. + +"Why are you so glum?" asked Nesvitski noticing Prince Andrew's pale +face and glittering eyes. + +"There's nothing to be gay about," answered Bolkonski. + +Just as Prince Andrew met Nesvitski and Zherkov, there came toward +them from the other end of the corridor, Strauch, an Austrian +general who on Kutuzov's staff in charge of the provisioning of the +Russian army, and the member of the Hofkriegsrath who had arrived +the previous evening. There was room enough in the wide corridor for +the generals to pass the three officers quite easily, but Zherkov, +pushing Nesvitski aside with his arm, said in a breathless voice, + +"They're coming!... they're coming!... Stand aside, make way, please +make way!" + +The generals were passing by, looking as if they wished to avoid +embarrassing attentions. On the face of the wag Zherkov there suddenly +appeared a stupid smile of glee which he seemed unable to suppress. + +"Your excellency," said he in German, stepping forward and +addressing the Austrian general, "I have the honor to congratulate +you." + +He bowed his head and scraped first with one foot and then with +the other, awkwardly, like a child at a dancing lesson. + +The member of the Hofkriegsrath looked at him severely but, seeing +the seriousness of his stupid smile, could not but give him a moment's +attention. He screwed up his eyes showing that he was listening. + +"I have the honor to congratulate you. General Mack has arrived, +quite well, only a little bruised just here," he added, pointing +with a beaming smile to his head. + +The general frowned, turned away, and went on. + +"Gott, wie naiv!"* said he angrily, after he had gone a few steps. + +*"Good God, what simplicity!" + + +Nesvitski with a laugh threw his arms round Prince Andrew, but +Bolkonski, turning still paler, pushed him away with an angry look and +turned to Zherkov. The nervous irritation aroused by the appearance of +Mack, the news of his defeat, and the thought of what lay before the +Russian army found vent in anger at Zherkov's untimely jest. + +"If you, sir, choose to make a buffoon of yourself," he said +sharply, with a slight trembling of the lower jaw, "I can't prevent +your doing so; but I warn you that if you dare to play the fool in +my presence, I will teach you to behave yourself." + +Nesvitski and Zherkov were so surprised by this outburst that they +gazed at Bolkonski silently with wide-open eyes. + +"What's the matter? I only congratulated them," said Zherkov. + +"I am not jesting with you; please be silent!" cried Bolkonski, +and taking Nesvitski's arm he left Zherkov, who did not know what to +say. + +"Come, what's the matter, old fellow?" said Nesvitski trying to +soothe him. + +"What's the matter?" exclaimed Prince Andrew standing still in his +excitement. "Don't you understand that either we are officers +serving our Tsar and our country, rejoicing in the successes and +grieving at the misfortunes of our common cause, or we are merely +lackeys who care nothing for their master's business. Quarante mille +hommes massacres et l'armee de nos allies detruite, et vous trouvez la +le mot pour rire,"* he said, as if strengthening his views by this +French sentence. "C'est bien pour un garcon de rein comme cet +individu dont vous avez fait un ami, mais pas pour vous, pas pour +vous.*[2] Only a hobbledehoy could amuse himself in this way," he +added in Russian--but pronouncing the word with a French accent- +having noticed that Zherkov could still hear him. + + +*"Forty thousand men massacred and the army of our allies destroyed, +and you find that a cause for jesting!" + +*[2] "It is all very well for that good-for-nothing fellow of whom +you have made a friend, but not for you, not for you." + + +He waited a moment to see whether the cornet would answer, but he +turned and went out of the corridor. + + + + + +CHAPTER IV + + +The Pavlograd Hussars were stationed two miles from Braunau. The +squadron in which Nicholas Rostov served as a cadet was quartered in +the German village of Salzeneck. The best quarters in the village were +assigned to cavalry-captain Denisov, the squadron commander, known +throughout the whole cavalry division as Vaska Denisov. Cadet +Rostov, ever since he had overtaken the regiment in Poland, had +lived with the squadron commander. + +On October 11, the day when all was astir at headquarters over the +news of Mack's defeat, the camp life of the officers of this +squadron was proceeding as usual. Denisov, who had been losing at +cards all night, had not yet come home when Rostov rode back early +in the morning from a foraging expedition. Rostov in his cadet +uniform, with a jerk to his horse, rode up to the porch, swung his leg +over the saddle with a supple youthful movement, stood for a moment in +the stirrup as if loathe to part from his horse, and at last sprang +down and called to his orderly. + +"Ah, Bondarenko, dear friend!" said he to the hussar who rushed up +headlong to the horse. "Walk him up and down, my dear fellow," he +continued, with that gay brotherly cordiality which goodhearted +young people show to everyone when they are happy. + +"Yes, your excellency," answered the Ukrainian gaily, tossing his +head. + +"Mind, walk him up and down well!" + +Another hussar also rushed toward the horse, but Bondarenko had +already thrown the reins of the snaffle bridle over the horse's +head. It was evident that the cadet was liberal with his tips and that +it paid to serve him. Rostov patted the horse's neck and then his +flank, and lingered for a moment. + +"Splendid! What a horse he will be!" he thought with a smile, and +holding up his saber, his spurs jingling, he ran up the steps of the +porch. His landlord, who in a waistcoat and a pointed cap, pitchfork +in hand, was clearing manure from the cowhouse, looked out, and his +face immediately brightened on seeing Rostov. "Schon gut Morgen! Schon +gut Morgen!"* he said winking with a merry smile, evidently pleased to +greet the young man. + + +*"A very good morning! A very good morning!" + + +"Schon fleissig?"* said Rostov with the same gay brotherly smile +which did not leave his eager face. "Hoch Oestreicher! Hoch Russen! +Kaiser Alexander hoch!"*[2] said he, quoting words often repeated by +the German landlord. + + +*"Busy already?" + +*[2] "Hurrah for the Austrians! Hurrah for the Russians! Hurrah +for Emperor Alexander!" + + +The German laughed, came out of the cowshed, pulled off his cap, and +waving it above his head cried: + +"Und die ganze Welt hoch!"* + + +*"And hurrah for the whole world!" + + +Rostov waved his cap above his head like the German and cried +laughing, "Und vivat die ganze Welt!" Though neither the German +cleaning his cowshed nor Rostov back with his platoon from foraging +for hay had any reason for rejoicing, they looked at each other with +joyful delight and brotherly love, wagged their heads in token of +their mutual affection, and parted smiling, the German returning to +his cowshed and Rostov going to the cottage he occupied with Denisov. + +"What about your master?" he asked Lavrushka, Denisov's orderly, +whom all the regiment knew for a rogue. + +"Hasn't been in since the evening. Must have been losing," +answered Lavrushka. "I know by now, if he wins he comes back early +to brag about it, but if he stays out till morning it means he's +lost and will come back in a rage. Will you have coffee?" + +"Yes, bring some." + +Ten minutes later Lavrushka brought the coffee. "He's coming!" +said he. "Now for trouble!" Rostov looked out of the window and saw +Denisov coming home. Denisov was a small man with a red face, +sparkling black eyes, and black tousled mustache and hair. He wore +an unfastened cloak, wide breeches hanging down in creases, and a +crumpled shako on the back of his head. He came up to the porch +gloomily, hanging his head. + +"Lavwuska!" he shouted loudly and angrily, "take it off, blockhead!" + +"Well, I am taking it off," replied Lavrushka's voice. + +"Ah, you're up already," said Denisov, entering the room. + +"Long ago," answered Rostov, "I have already been for the hay, and +have seen Fraulein Mathilde." + +"Weally! And I've been losing, bwother. I lost yesterday like a +damned fool!" cried Denisov, not pronouncing his r's. "Such ill +luck! Such ill luck. As soon as you left, it began and went on. +Hullo there! Tea!" + +Puckering up his face though smiling, and showing his short strong +teeth, he began with stubby fingers of both hands to ruffle up his +thick tangled black hair. + +"And what devil made me go to that wat?" (an officer nicknamed +"the rat") he said, rubbing his forehead and whole face with both +hands. "Just fancy, he didn't let me win a single cahd, not one cahd." + +He took the lighted pipe that was offered to him, gripped it in +his fist, and tapped it on the floor, making the sparks fly, while +he continued to shout. + +"He lets one win the singles and collahs it as soon as one doubles +it; gives the singles and snatches the doubles!" + +He scattered the burning tobacco, smashed the pipe, and threw it +away. Then he remained silent for a while, and all at once looked +cheerfully with his glittering, black eyes at Rostov. + +"If at least we had some women here; but there's nothing foh one +to do but dwink. If we could only get to fighting soon. Hullo, who's +there?" he said, turning to the door as he heard a tread of heavy +boots and the clinking of spurs that came to a stop, and a +respectful cough. + +"The squadron quartermaster!" said Lavrushka. + +Denisov's face puckered still more. + +"Wetched!" he muttered, throwing down a purse with some gold in +it. "Wostov, deah fellow, just see how much there is left and shove +the purse undah the pillow," he said, and went out to the +quartermaster. + +Rostov took the money and, mechanically arranging the old and new +coins in separate piles, began counting them. + +"Ah! Telyanin! How d'ye do? They plucked me last night," came +Denisov's voice from the next room. + +"Where? At Bykov's, at the rat's... I knew it," replied a piping +voice, and Lieutenant Telyanin, a small officer of the same +squadron, entered the room. + +Rostov thrust the purse under the pillow and shook the damp little +hand which was offered him. Telyanin for some reason had been +transferred from the Guards just before this campaign. He behaved very +well in the regiment but was not liked; Rostov especially detested him +and was unable to overcome or conceal his groundless antipathy to +the man. + +"Well, young cavalryman, how is my Rook behaving?" he asked. (Rook +was a young horse Telyanin had sold to Rostov.) + +The lieutenant never looked the man he was speaking to straight in +the face; his eyes continually wandered from one object to another. + +"I saw you riding this morning..." he added. + +"Oh, he's all right, a good horse," answered Rostov, though the +horse for which he had paid seven hundred rubbles was not worth half +that sum. "He's begun to go a little lame on the left foreleg," he +added. + +"The hoof's cracked! That's nothing. I'll teach you what to do and +show you what kind of rivet to use." + +"Yes, please do," said Rostov. + +"I'll show you, I'll show you! It's not a secret. And it's a horse +you'll thank me for." + +"Then I'll have it brought round," said Rostov wishing to avoid +Telyanin, and he went out to give the order. + +In the passage Denisov, with a pipe, was squatting on the +threshold facing the quartermaster who was reporting to him. On seeing +Rostov, Denisov screwed up his face and pointing over his shoulder +with his thumb to the room where Telyanin was sitting, he frowned +and gave a shudder of disgust. + +"Ugh! I don't like that fellow," he said, regardless of the +quartermaster's presence. + +Rostov shrugged his shoulders as much as to say: "Nor do I, but +what's one to do?" and, having given his order, he returned to +Telyanin. + +Telyanin was sitting in the same indolent pose in which Rostov had +left him, rubbing his small white hands. + +"Well there certainly are disgusting people," thought Rostov as he +entered. + +"Have you told them to bring the horse?" asked Telyanin, getting +up and looking carelessly about him. + +"I have." + +"Let us go ourselves. I only came round to ask Denisov about +yesterday's order. Have you got it, Denisov?" + +"Not yet. But where are you off to?" + +"I want to teach this young man how to shoe a horse," said Telyanin. + +They went through the porch and into the stable. The lieutenant +explained how to rivet the hoof and went away to his own quarters. + +When Rostov went back there was a bottle of vodka and a sausage on +the table. Denisov was sitting there scratching with his pen on a +sheet of paper. He looked gloomily in Rostov's face and said: "I am +witing to her." + +He leaned his elbows on the table with his pen in his hand and, +evidently glad of a chance to say quicker in words what he wanted to +write, told Rostov the contents of his letter. + +"You see, my fwiend," he said, "we sleep when we don't love. We +are childwen of the dust... but one falls in love and one is a God, +one is pua' as on the first day of cweation... Who's that now? Send +him to the devil, I'm busy!" he shouted to Lavrushka, who went up to +him not in the least abashed. + +"Who should it be? You yourself told him to come. It's the +quartermaster for the money." + +Denisov frowned and was about to shout some reply but stopped. + +"Wetched business," he muttered to himself. "How much is left in the +puhse?" he asked, turning to Rostov. + +"Seven new and three old imperials." + +"Oh, it's wetched! Well, what are you standing there for, you +sca'cwow? Call the quahtehmasteh," he shouted to Lavrushka. + +"Please, Denisov, let me lend you some: I have some, you know," said +Rostov, blushing. + +"Don't like bowwowing from my own fellows, I don't," growled +Denisov. + +"But if you won't accept money from me like a comrade, you will +offend me. Really I have some," Rostov repeated. + +"No, I tell you." + +And Denisov went to the bed to get the purse from under the pillow. + +"Where have you put it, Wostov?" + +"Under the lower pillow." + +"It's not there." + +Denisov threw both pillows on the floor. The purse was not there. + +"That's a miwacle." + +"Wait, haven't you dropped it?" said Rostov, picking up the +pillows one at a time and shaking them. + +He pulled off the quilt and shook it. The purse was not there. + +"Dear me, can I have forgotten? No, I remember thinking that you +kept it under your head like a treasure," said Rostov. "I put it +just here. Where is it?" he asked, turning to Lavrushka. + +"I haven't been in the room. It must be where you put it." + +"But it isn't?..." + +"You're always like that; you thwow a thing down anywhere and forget +it. Feel in your pockets." + +"No, if I hadn't thought of it being a treasure," said Rostov, +"but I remember putting it there." + +Lavrushka turned all the bedding over, looked under the bed and +under the table, searched everywhere, and stood still in the middle of +the room. Denisov silently watched Lavrushka's movements, and when the +latter threw up his arms in surprise saying it was nowhere to be found +Denisov glanced at Rostov. + +"Wostov, you've not been playing schoolboy twicks..." + +Rostov felt Denisov's gaze fixed on him, raised his eyes, and +instantly dropped them again. All the blood which had seemed congested +somewhere below his throat rushed to his face and eyes. He could not +draw breath. + +"And there hasn't been anyone in the room except the lieutenant +and yourselves. It must be here somewhere," said Lavrushka. + +"Now then, you devil's puppet, look alive and hunt for it!" +shouted Denisov, suddenly, turning purple and rushing at the man +with a threatening gesture. "If the purse isn't found I'll flog you, +I'll flog you all." + +Rostov, his eyes avoiding Denisov, began buttoning his coat, buckled +on his saber, and put on his cap. + +"I must have that purse, I tell you," shouted Denisov, shaking his +orderly by the shoulders and knocking him against the wall. + +"Denisov, let him alone, I know who has taken it," said Rostov, +going toward the door without raising his eyes. Denisov paused, +thought a moment, and, evidently understanding what Rostov hinted +at, seized his arm. + +"Nonsense!" he cried, and the veins on his forehead and neck stood +out like cords. "You are mad, I tell you. I won't allow it. The +purse is here! I'll flay this scoundwel alive, and it will be found." + +"I know who has taken it," repeated Rostov in an unsteady voice, and +went to the door. + +"And I tell you, don't you dahe to do it!" shouted Denisov, +rushing at the cadet to restrain him. + +But Rostov pulled away his arm and, with as much anger as though +Denisov were his worst enemy, firmly fixed his eyes directly on his +face. + +"Do you understand what you're saying?" he said in a trembling +voice. "There was no one else in the room except myself. So that if it +is not so, then..." + +He could not finish, and ran out of the room. + +"Ah, may the devil take you and evewybody," were the last words +Rostov heard. + +Rostov went to Telyanin's quarters. + +"The master is not in, he's gone to headquarters," said Telyanin's +orderly. "Has something happened?" he added, surprised at the +cadet's troubled face. + +"No, nothing." + +"You've only just missed him," said the orderly. + +The headquarters were situated two miles away from Salzeneck, and +Rostov, without returning home, took a horse and rode there. There was +an inn in the village which the officers frequented. Rostov rode up to +it and saw Telyanin's horse at the porch. + +In the second room of the inn the lieutenant was sitting over a dish +of sausages and a bottle of wine. + +"Ah, you've come here too, young man!" he said, smiling and +raising his eyebrows. + +"Yes," said Rostov as if it cost him a great deal to utter the word; +and he sat down at the nearest table. + +Both were silent. There were two Germans and a Russian officer in +the room. No one spoke and the only sounds heard were the clatter of +knives and the munching of the lieutenant. + +When Telyanin had finished his lunch he took out of his pocket a +double purse and, drawing its rings aside with his small, white, +turned-up fingers, drew out a gold imperial, and lifting his +eyebrows gave it to the waiter. + +"Please be quick," he said. + +The coin was a new one. Rostov rose and went up to Telyanin. + +"Allow me to look at your purse," he said in a low, almost +inaudible, voice. + +With shifting eyes but eyebrows still raised, Telyanin handed him +the purse. + +"Yes, it's a nice purse. Yes, yes," he said, growing suddenly +pale, and added, "Look at it, young man." + +Rostov took the purse in his hand, examined it and the money in +it, and looked at Telyanin. The lieutenant was looking about in his +usual way and suddenly seemed to grow very merry. + +"If we get to Vienna I'll get rid of it there but in these +wretched little towns there's nowhere to spend it," said he. "Well, +let me have it, young man, I'm going." + +Rostov did not speak. + +"And you? Are you going to have lunch too? They feed you quite +decently here," continued Telyanin. "Now then, let me have it." + +He stretched out his hand to take hold of the purse. Rostov let go +of it. Telyanin took the purse and began carelessly slipping it into +the pocket of his riding breeches, with his eyebrows lifted and his +mouth slightly open, as if to say, "Yes, yes, I am putting my purse in +my pocket and that's quite simple and is no else's business." + +"Well, young man?" he said with a sigh, and from under his lifted +brows he glanced into Rostov's eyes. + +Some flash as of an electric spark shot from Telyanin's eyes to +Rostov's and back, and back again and again in an instant. + +"Come here," said Rostov, catching hold of Telyanin's arm and almost +dragging him to the window. "That money is Denisov's; you took +it..." he whispered just above Telyanin's ear. + +"What? What? How dare you? What?" said Telyanin. + +But these words came like a piteous, despairing cry and an +entreaty for pardon. As soon as Rostov heard them, an enormous load of +doubt fell from him. He was glad, and at the same instant began to +pity the miserable man who stood before him, but the task he had begun +had to be completed. + +"Heaven only knows what the people here may imagine," muttered +Telyanin, taking up his cap and moving toward a small empty room. +"We must have an explanation..." + +"I know it and shall prove it," said Rostov. + +"I..." + +Every muscle of Telyanin's pale, terrified face began to quiver, his +eyes still shifted from side to side but with a downward look not +rising to Rostov's face, and his sobs were audible. + +"Count!... Don't ruin a young fellow... here is this wretched money, +take it..." He threw it on the table. "I have an old father and +mother!..." + +Rostov took the money, avoiding Telyanin's eyes, and went out of the +room without a word. But at the door he stopped and then retraced +his steps. "O God," he said with tears in his eyes, "how could you +do it?" + +"Count..." said Telyanin drawing nearer to him. + +"Don't touch me," said Rostov, drawing back. "If you need it, take +the money," and he threw the purse to him and ran out of the inn. + + + + + +CHAPTER V + + +That same evening there was an animated discussion among the +squadron's officers in Denisov's quarters. + +"And I tell you, Rostov, that you must apologize to the colonel!" +said a tall, grizzly-haired staff captain, with enormous mustaches and +many wrinkles on his large features, to Rostov who was crimson with +excitement. + +The staff captain, Kirsten, had twice been reduced to the ranks +for affairs of honor and had twice regained his commission. + +"I will allow no one to call me a liar!" cried Rostov. "He told me I +lied, and I told him he lied. And there it rests. He may keep me on +duty every day, or may place me under arrest, but no one can make me +apologize, because if he, as commander of this regiment, thinks it +beneath his dignity to give me satisfaction, then..." + +"You just wait a moment, my dear fellow, and listen," interrupted +the staff captain in his deep bass, calmly stroking his long mustache. +"You tell the colonel in the presence of other officers that an +officer has stolen..." + +"I'm not to blame that the conversation began in the presence of +other officers. Perhaps I ought not to have spoken before them, but +I am not a diplomatist. That's why I joined the hussars, thinking that +here one would not need finesse; and he tells me that I am lying--so +let him give me satisfaction..." + +"That's all right. No one thinks you a coward, but that's not the +point. Ask Denisov whether it is not out of the question for a cadet +to demand satisfaction of his regimental commander?" + +Denisov sat gloomily biting his mustache and listening to the +conversation, evidently with no wish to take part in it. He answered +the staff captain's question by a disapproving shake of his head. + +"You speak to the colonel about this nasty business before other +officers," continued the staff captain, "and Bogdanich" (the colonel +was called Bogdanich) "shuts you up." + +"He did not shut me up, he said I was telling an untruth." + +"Well, have it so, and you talked a lot of nonsense to him and +must apologize." + +"Not on any account!" exclaimed Rostov. + +"I did not expect this of you," said the staff captain seriously and +severely. "You don't wish to apologize, but, man, it's not only to him +but to the whole regiment--all of us--you're to blame all round. The +case is this: you ought to have thought the matter over and taken +advice; but no, you go and blurt it all straight out before the +officers. Now what was the colonel to do? Have the officer tried and +disgrace the whole regiment? Disgrace the whole regiment because of +one scoundrel? Is that how you look at it? We don't see it like +that. And Bogdanich was a brick: he told you you were saying what +was not true. It's not pleasant, but what's to be done, my dear +fellow? You landed yourself in it. And now, when one wants to smooth +the thing over, some conceit prevents your apologizing, and you wish +to make the whole affair public. You are offended at being put on duty +a bit, but why not apologize to an old and honorable officer? Whatever +Bogdanich may be, anyway he is an honorable and brave old colonel! +You're quick at taking offense, but you don't mind disgracing the +whole regiment!" The staff captain's voice began to tremble. "You have +been in the regiment next to no time, my lad, you're here today and +tomorrow you'll be appointed adjutant somewhere and can snap your +fingers when it is said 'There are thieves among the Pavlograd +officers!' But it's not all the same to us! Am I not right, Denisov? +It's not the same!" + +Denisov remained silent and did not move, but occasionally looked +with his glittering black eyes at Rostov. + +"You value your own pride and don't wish to apologize," continued +the staff captain, "but we old fellows, who have grown up in and, +God willing, are going to die in the regiment, we prize the honor of +the regiment, and Bogdanich knows it. Oh, we do prize it, old +fellow! And all this is not right, it's not right! You may take +offense or not but I always stick to mother truth. It's not right!" + +And the staff captain rose and turned away from Rostov. + +"That's twue, devil take it!" shouted Denisov, jumping up. "Now then, +Wostov, now then!" + + Rostov, growing red and pale alternately, looked first at one +officer and then at the other. + +"No, gentlemen, no... you mustn't think... I quite understand. +You're wrong to think that of me... I... for me... for the honor of +the regiment I'd... Ah well, I'll show that in action, and for me +the honor of the flag... Well, never mind, it's true I'm to blame, +to blame all round. Well, what else do you want?..." + +"Come, that's right, Count!" cried the staff captain, turning +round and clapping Rostov on the shoulder with his big hand. + +"I tell you," shouted Denisov, "he's a fine fellow." + +"That's better, Count," said the staff captain, beginning to address +Rostov by his title, as if in recognition of his confession. "Go and +apologize, your excellency. Yes, go!" + +"Gentlemen, I'll do anything. No one shall hear a word from me," +said Rostov in an imploring voice, "but I can't apologize, by God I +can't, do what you will! How can I go and apologize like a little +boy asking forgiveness?" + +Denisov began to laugh. + +"It'll be worse for you. Bogdanich is vindictive and you'll pay +for your obstinacy," said Kirsten. + +"No, on my word it's not obstinacy! I can't describe the feeling. +I can't..." + +"Well, it's as you like," said the staff captain. "And what has +become of that scoundrel?" he asked Denisov. + +"He has weported himself sick, he's to be stwuck off the list +tomowwow," muttered Denisov. + +"It is an illness, there's no other way of explaining it," said +the staff captain. + +"Illness or not, he'd better not cwoss my path. I'd kill him!" +shouted Denisov in a bloodthirsty tone. + +Just then Zherkov entered the room. + +"What brings you here?" cried the officers turning to the newcomer. + +"We're to go into action, gentlemen! Mack has surrendered with his +whole army." + +"It's not true!" + +"I've seen him myself!" + +"What? Saw the real Mack? With hands and feet?" + +"Into action! Into action! Bring him a bottle for such news! But how +did you come here?" + +"I've been sent back to the regiment all on account of that devil, +Mack. An Austrian general complained of me. I congratulated him on +Mack's arrival... What's the matter, Rostov? You look as if you'd just +come out of a hot bath." + +"Oh, my dear fellow, we're in such a stew here these last two days." + +The regimental adjutant came in and confirmed the news brought by +Zherkov. They were under orders to advance next day. + +"We're going into action, gentlemen!" + +"Well, thank God! We've been sitting here too long!" + + + + + +CHAPTER VI + + +Kutuzov fell back toward Vienna, destroying behind him the bridges +over the rivers Inn (at Braunau) and Traun (near Linz). On October +23 the Russian troops were crossing the river Enns. At midday the +Russian baggage train, the artillery, and columns of troops were +defiling through the town of Enns on both sides of the bridge. + +It was a warm, rainy, autumnal day. The wide expanse that opened out +before the heights on which the Russian batteries stood guarding the +bridge was at times veiled by a diaphanous curtain of slanting rain, +and then, suddenly spread out in the sunlight, far-distant objects +could be clearly seen glittering as though freshly varnished. Down +below, the little town could be seen with its white, red-roofed +houses, its cathedral, and its bridge, on both sides of which streamed +jostling masses of Russian troops. At the bend of the Danube, vessels, +an island, and a castle with a park surrounded by the waters of the +confluence of the Enns and the Danube became visible, and the rocky +left bank of the Danube covered with pine forests, with a mystic +background of green treetops and bluish gorges. The turrets of a +convent stood out beyond a wild virgin pine forest, and far away on +the other side of the Enns the enemy's horse patrols could be +discerned. + +Among the field guns on the brow of the hill the general in +command of the rearguard stood with a staff officer, scanning the +country through his fieldglass. A little behind them Nesvitski, who +had been sent to the rearguard by the commander in chief, was +sitting on the trail of a gun carriage. A Cossack who accompanied +him had handed him a knapsack and a flask, and Nesvitski was +treating some officers to pies and real doppelkummel. The officers +gladly gathered round him, some on their knees, some squatting Turkish +fashion on the wet grass. + +"Yes, the Austrian prince who built that castle was no fool. It's +a fine place! Why are you not eating anything, gentlemen?" Nesvitski +was saying. + +"Thank you very much, Prince," answered one of the officers, pleased +to be talking to a staff officer of such importance. "It's a lovely +place! We passed close to the park and saw two deer... and what a +splendid house!" + +"Look, Prince," said another, who would have dearly liked to take +another pie but felt shy, and therefore pretended to be examining +the countryside--"See, our infantrymen have already got there. Look +there in the meadow behind the village, three of them are dragging +something. They'll ransack that castle," he remarked with evident +approval. + +"So they will," said Nesvitski. "No, but what I should like," +added he, munching a pie in his moist-lipped handsome mouth, "would be +to slip in over there." + +He pointed with a smile to a turreted nunnery, and his eyes narrowed +and gleamed. + +"That would be fine, gentlemen!" + +The officers laughed. + +"Just to flutter the nuns a bit. They say there are Italian girls +among them. On my word I'd give five years of my life for it!" + +"They must be feeling dull, too," said one of the bolder officers, +laughing. + +Meanwhile the staff officer standing in front pointed out +something to the general, who looked through his field glass. + +"Yes, so it is, so it is," said the general angrily, lowering the +field glass and shrugging his shoulders, "so it is! They'll be fired +on at the crossing. And why are they dawdling there?" + +On the opposite side the enemy could be seen by the naked eye, and +from their battery a milk-white cloud arose. Then came the distant +report of a shot, and our troops could be seen hurrying to the +crossing. + +Nesvitski rose, puffing, and went up to the general, smiling. + +"Would not your excellency like a little refreshment?" he said. + +"It's a bad business," said the general without answering him, +"our men have been wasting time." + +"Hadn't I better ride over, your excellency?" asked Nesvitski. + +"Yes, please do," answered the general, and he repeated the order +that had already once been given in detail: "and tell the hussars that +they are to cross last and to fire the bridge as I ordered; and the +inflammable material on the bridge must be reinspected." + +"Very good," answered Nesvitski. + +He called the Cossack with his horse, told him to put away the +knapsack and flask, and swung his heavy person easily into the saddle. + +"I'll really call in on the nuns," he said to the officers who +watched him smilingly, and he rode off by the winding path down the +hill. + +"Now then, let's see how far it will carry, Captain. Just try!" said +the general, turning to an artillery officer. "Have a little fun to +pass the time." + +"Crew, to your guns!" commanded the officer. + +In a moment the men came running gaily from their campfires and +began loading. + +"One!" came the command. + +Number one jumped briskly aside. The gun rang out with a deafening +metallic roar, and a whistling grenade flew above the heads of our +troops below the hill and fell far short of the enemy, a little +smoke showing the spot where it burst. + +The faces of officers and men brightened up at the sound. Everyone +got up and began watching the movements of our troops below, as +plainly visible as if but a stone's throw away, and the movements of +the approaching enemy farther off. At the same instant the sun came +fully out from behind the clouds, and the clear sound of the +solitary shot and the brilliance of the bright sunshine merged in a +single joyous and spirited impression. + + + + + +CHAPTER VII + + +Two of the enemy's shots had already flown across the bridge, +where there was a crush. Halfway across stood Prince Nesvitski, who +had alighted from his horse and whose big body was jammed +against the railings. He looked back laughing to the Cossack who stood +a few steps behind him holding two horses by their bridles. Each +time Prince Nesvitski tried to move on, soldiers and carts pushed +him back again and pressed him against the railings, and all he +could do was to smile. + +"What a fine fellow you are, friend!" said the Cossack to a convoy +soldier with a wagon, who was pressing onto the infantrymen who were +crowded together close to his wheels and his horses. "What a fellow! +You can't wait a moment! Don't you see the general wants to pass?" + +But the convoyman took no notice of the word "general" and shouted +at the soldiers who were blocking his way. "Hi there, boys! Keep to +the left! Wait a bit." But the soldiers, crowded together shoulder +to shoulder, their bayonets interlocking, moved over the bridge in a +dense mass. Looking down over the rails Prince Nesvitski saw the +rapid, noisy little waves of the Enns, which rippling and eddying +round the piles of the bridge chased each other along. Looking on +the bridge he saw equally uniform living waves of soldiers, shoulder +straps, covered shakos, knapsacks, bayonets, long muskets, and, +under the shakos, faces with broad cheekbones, sunken cheeks, and +listless tired expressions, and feet that moved through the sticky mud +that covered the planks of the bridge. Sometimes through the +monotonous waves of men, like a fleck of white foam on the waves of +the Enns, an officer, in a cloak and with a type of face different +from that of the men, squeezed his way along; sometimes like a chip of +wood whirling in the river, an hussar on foot, an orderly, or a +townsman was carried through the waves of infantry; and sometimes like +a log floating down the river, an officers' or company's baggage +wagon, piled high, leather covered, and hemmed in on all sides, +moved across the bridge. + +"It's as if a dam had burst," said the Cossack hopelessly. "Are +there many more of you to come?" + +"A million all but one!" replied a waggish soldier in a torn coat, +with a wink, and passed on followed by another, an old man. + +"If he" (he meant the enemy) "begins popping at the bridge now," +said the old soldier dismally to a comrade, "you'll forget to +scratch yourself." + +That soldier passed on, and after him came another sitting on a +cart. + +"Where the devil have the leg bands been shoved to?" said an +orderly, running behind the cart and fumbling in the back of it. + +And he also passed on with the wagon. Then came some merry +soldiers who had evidently been drinking. + +"And then, old fellow, he gives him one in the teeth with the butt +end of his gun..." a soldier whose greatcoat was well tucked up said +gaily, with a wide swing of his arm. + +"Yes, the ham was just delicious..." answered another with a loud +laugh. And they, too, passed on, so that Nesvitski did not learn who +had been struck on the teeth, or what the ham had to do with it. + +"Bah! How they scurry. He just sends a ball and they think they'll +all be killed," a sergeant was saying angrily and reproachfully. + +"As it flies past me, Daddy, the ball I mean," said a young +soldier with an enormous mouth, hardly refraining from laughing, "I +felt like dying of fright. I did, 'pon my word, I got that +frightened!" said he, as if bragging of having been frightened. + +That one also passed. Then followed a cart unlike any that had +gone before. It was a German cart with a pair of horses led by a +German, and seemed loaded with a whole houseful of effects. A fine +brindled cow with a large udder was attached to the cart behind. A +woman with an unweaned baby, an old woman, and a healthy German girl +with bright red cheeks were sitting on some feather beds. Evidently +these fugitives were allowed to pass by special permission. The eyes +of all the soldiers turned toward the women, and while the vehicle was +passing at foot pace all the soldiers' remarks related to the two +young ones. Every face bore almost the same smile, expressing unseemly +thoughts about the women. + +"Just see, the German sausage is making tracks, too!" + +"Sell me the missis," said another soldier, addressing the German, +who, angry and frightened, strode energetically along with downcast +eyes. + +"See how smart she's made herself! Oh, the devils!" + +"There, Fedotov, you should be quartered on them!" + +"I have seen as much before now, mate!" + +"Where are you going?" asked an infantry officer who was eating an +apple, also half smiling as he looked at the handsome girl. + +The German closed his eyes, signifying that he did not understand. + +"Take it if you like," said the officer, giving the girl an apple. + +The girl smiled and took it. Nesvitski like the rest of the men on +the bridge did not take his eyes off the women till they had passed. +When they had gone by, the same stream of soldiers followed, with +the same kind of talk, and at last all stopped. As often happens, +the horses of a convoy wagon became restive at the end of the +bridge, and the whole crowd had to wait. + +"And why are they stopping? There's no proper order!" said the +soldiers. "Where are you shoving to? Devil take you! Can't you wait? +It'll be worse if he fires the bridge. See, here's an officer jammed +in too"--different voices were saying in the crowd, as the men +looked at one another, and all pressed toward the exit from the +bridge. + +Looking down at the waters of the Enns under the bridge, Nesvitski +suddenly heard a sound new to him, of something swiftly approaching... +something big, that splashed into the water. + +"Just see where it carries to!" a soldier near by said sternly, +looking round at the sound. + +"Encouraging us to get along quicker," said another uneasily. + +The crowd moved on again. Nesvitski realized that it was a cannon +ball. + +"Hey, Cossack, my horse!" he said. "Now, then, you there! get out of +the way! Make way!" + +With great difficulty he managed to get to his horse, and shouting +continually he moved on. The soldiers squeezed themselves to make +way for him, but again pressed on him so that they jammed his leg, and +those nearest him were not to blame for they were themselves pressed +still harder from behind. + +"Nesvitski, Nesvitski! you numskull!" came a hoarse voice from +behind him. + +Nesvitski looked round and saw, some fifteen paces away but +separated by the living mass of moving infantry, Vaska Denisov, red +and shaggy, with his cap on the back of his black head and a cloak +hanging jauntily over his shoulder. + +"Tell these devils, these fiends, to let me pass!" shouted Denisov +evidently in a fit of rage, his coal-black eyes with their bloodshot +whites glittering and rolling as he waved his sheathed saber in a +small bare hand as red as his face. + +"Ah, Vaska!" joyfully replied Nesvitski. "What's up with you?" + +"The squadwon can't pass," shouted Vaska Denisov, showing his +white teeth fiercely and spurring his black thoroughbred Arab, which +twitched its ears as the bayonets touched it, and snorted, spurting +white foam from his bit, tramping the planks of the bridge with his +hoofs, and apparently ready to jump over the railings had his rider +let him. "What is this? They're like sheep! Just like sheep! Out of +the way!... Let us pass!... Stop there, you devil with the cart! +I'll hack you with my saber!" he shouted, actually drawing his saber +from its scabbard and flourishing it. + +The soldiers crowded against one another with terrified faces, and +Denisov joined Nesvitski. + +"How's it you're not drunk today?" said Nesvitski when the other had +ridden up to him. + +"They don't even give one time to dwink!" answered Vaska Denisov. +"They keep dwagging the wegiment to and fwo all day. If they mean to +fight, let's fight. But the devil knows what this is." + +"What a dandy you are today!" said Nesvitski, looking at Denisov's +new cloak and saddlecloth. + +Denisov smiled, took out of his sabretache a handkerchief that +diffused a smell of perfume, and put it to Nesvitski's nose. + +"Of course. I'm going into action! I've shaved, bwushed my teeth, +and scented myself." + +The imposing figure of Nesvitski followed by his Cossack, and the +determination of Denisov who flourished his sword and shouted +frantically, had such an effect that they managed to squeeze through +to the farther side of the bridge and stopped the infantry. Beside the +bridge Nesvitski found the colonel to whom he had to deliver the +order, and having done this he rode back. + +Having cleared the way Denisov stopped at the end of the bridge. +Carelessly holding in his stallion that was neighing and pawing the +ground, eager to rejoin its fellows, he watched his squadron draw +nearer. Then the clang of hoofs, as of several horses galloping, +resounded on the planks of the bridge, and the squadron, officers in +front and men four abreast, spread across the bridge and began to +emerge on his side of it. + +The infantry who had been stopped crowded near the bridge in the +trampled mud and gazed with that particular feeling of ill-will, +estrangement, and ridicule with which troops of different arms usually +encounter one another at the clean, smart hussars who moved past +them in regular order. + +"Smart lads! Only fit for a fair!" said one. + +"What good are they? They're led about just for show!" remarked +another. + +"Don't kick up the dust, you infantry!" jested an hussar whose +prancing horse had splashed mud over some foot soldiers. + +"I'd like to put you on a two days' march with a knapsack! Your fine +cords would soon get a bit rubbed," said an infantryman, wiping the +mud off his face with his sleeve. "Perched up there, you're more +like a bird than a man." + +"There now, Zikin, they ought to put you on a horse. You'd look +fine," said a corporal, chaffing a thin little soldier who bent +under the weight of his knapsack. + +"Take a stick between your legs, that'll suit you for a horse!" +the hussar shouted back. + + + + + +CHAPTER VIII + + +The last of the infantry hurriedly crossed the bridge, squeezing +together as they approached it as if passing through a funnel. At last +the baggage wagons had all crossed, the crush was less, and the last +battalion came onto the bridge. Only Denisov's squadron of hussars +remained on the farther side of the bridge facing the enemy, who could +be seen from the hill on the opposite bank but was not yet visible +from the bridge, for the horizon as seen from the valley through which +the river flowed was formed by the rising ground only half a mile +away. At the foot of the hill lay wasteland over which a few groups of +our Cossack scouts were moving. Suddenly on the road at the top of the +high ground, artillery and troops in blue uniform were seen. These +were the French. A group of Cossack scouts retired down the hill at +a trot. All the officers and men of Denisov's squadron, though they +tried to talk of other things and to look in other directions, thought +only of what was there on the hilltop, and kept constantly looking +at the patches appearing on the skyline, which they knew to be the +enemy's troops. The weather had cleared again since noon and the sun +was descending brightly upon the Danube and the dark hills around +it. It was calm, and at intervals the bugle calls and the shouts of +the enemy could be heard from the hill. There was no one now between +the squadron and the enemy except a few scattered skirmishers. An +empty space of some seven hundred yards was all that separated them. +The enemy ceased firing, and that stern, threatening, inaccessible, +and intangible line which separates two hostile armies was all the +more clearly felt. + +"One step beyond that boundary line which resembles the line +dividing the living from the dead lies uncertainty, suffering, and +death. And what is there? Who is there?--there beyond that field, that +tree, that roof lit up by the sun? No one knows, but one wants to +know. You fear and yet long to cross that line, and know that sooner +or later it must be crossed and you will have to find out what is +there, just as you will inevitably have to learn what lies the other +side of death. But you are strong, healthy, cheerful, and excited, and +are surrounded by other such excitedly animated and healthy men." So +thinks, or at any rate feels, anyone who comes in sight of the +enemy, and that feeling gives a particular glamour and glad keenness +of impression to everything that takes place at such moments. + +On the high ground where the enemy was, the smoke of a cannon +rose, and a ball flew whistling over the heads of the hussar squadron. +The officers who had been standing together rode off to their +places. The hussars began carefully aligning their horses. Silence +fell on the whole squadron. All were looking at the enemy in front and +at the squadron commander, awaiting the word of command. A second +and a third cannon ball flew past. Evidently they were firing at the +hussars, but the balls with rapid rhythmic whistle flew over the heads +of the horsemen and fell somewhere beyond them. The hussars did not +look round, but at the sound of each shot, as at the word of +command, the whole squadron with its rows of faces so alike yet so +different, holding its breath while the ball flew past, rose in the +stirrups and sank back again. The soldiers without turning their heads +glanced at one another, curious to see their comrades' impression. +Every face, from Denisov's to that of the bugler, showed one common +expression of conflict, irritation, and excitement, around chin and +mouth. The quartermaster frowned, looking at the soldiers as if +threatening to punish them. Cadet Mironov ducked every time a ball +flew past. Rostov on the left flank, mounted on his Rook--a handsome +horse despite its game leg--had the happy air of a schoolboy called up +before a large audience for an examination in which he feels sure he +will distinguish himself. He was glancing at everyone with a clear, +bright expression, as if asking them to notice how calmly he sat under +fire. But despite himself, on his face too that same indication of +something new and stern showed round the mouth. + +"Who's that curtseying there? Cadet Miwonov! That's not wight! +Look at me," cried Denisov who, unable to keep still on one spot, kept +turning his horse in front of the squadron. + +The black, hairy, snub-nosed face of Vaska Denisov, and his whole +short sturdy figure with the sinewy hairy hand and stumpy fingers in +which he held the hilt of his naked saber, looked just as it usually +did, especially toward evening when he had emptied his second +bottle; he was only redder than usual. With his shaggy head thrown +back like birds when they drink, pressing his spurs mercilessly into +the sides of his good horse, Bedouin, and sitting as though falling +backwards in the saddle, he galloped to the other flank of the +squadron and shouted in a hoarse voice to the men to look to their +pistols. He rode up to Kirsten. The staff captain on his broad-backed, +steady mare came at a walk to meet him. His face with its long +mustache was serious as always, only his eyes were brighter than +usual. + +"Well, what about it?" said he to Denisov. "It won't come to a +fight. You'll see--we shall retire." + +"The devil only knows what they're about!" muttered Denisov. "Ah, +Wostov," he cried noticing the cadet's bright face, "you've got it +at last." + +And he smiled approvingly, evidently pleased with the cadet. +Rostov felt perfectly happy. Just then the commander appeared on the +bridge. Denisov galloped up to him. + +"Your excellency! Let us attack them! I'll dwive them off." + +"Attack indeed!" said the colonel in a bored voice, puckering up his +face as if driving off a troublesome fly. "And why are you stopping +here? Don't you see the skirmishers are retreating? Lead the +squadron back." + +The squadron crossed the bridge and drew out of range of fire +without having lost a single man. The second squadron that had been in +the front line followed them across and the last Cossacks quitted +the farther side of the river. + +The two Pavlograd squadrons, having crossed the bridge, retired up +the hill one after the other. Their colonel, Karl Bogdanich +Schubert, came up to Denisov's squadron and rode at a footpace not far +from Rostov, without taking any notice of him although they were now +meeting for the first time since their encounter concerning +Telyanin. Rostov, feeling that he was at the front and in the power of +a man toward whom he now admitted that he had been to blame, did not +lift his eyes from the colonel's athletic back, his nape covered +with light hair, and his red neck. It seemed to Rostov that +Bogdanich was only pretending not to notice him, and that his whole +aim now was to test the cadet's courage, so he drew himself up and +looked around him merrily; then it seemed to him that Bogdanich rode +so near in order to show him his courage. Next he thought that his +enemy would send the squadron on a desperate attack just to punish +him--Rostov. Then he imagined how, after the attack, Bogdanich would +come up to him as he lay wounded and would magnanimously extend the +hand of reconciliation. + +The high-shouldered figure of Zherkov, familiar to the Pavlograds as +he had but recently left their regiment, rode up to the colonel. After +his dismissal from headquarters Zherkov had not remained in the +regiment, saying he was not such a fool as to slave at the front +when he could get more rewards by doing nothing on the staff, and +had succeeded in attaching himself as an orderly officer to Prince +Bagration. He now came to his former chief with an order from the +commander of the rear guard. + +"Colonel," he said, addressing Rostov's enemy with an air of +gloomy gravity and glancing round at his comrades, "there is an +order to stop and fire the bridge." + +"An order to who?" asked the colonel morosely. + +"I don't myself know 'to who,'" replied the cornet in a serious +tone, "but the prince told me to 'go and tell the colonel that the +hussars must return quickly and fire the bridge.'" + +Zherkov was followed by an officer of the suite who rode up to the +colonel of hussars with the same order. After him the stout +Nesvitski came galloping up on a Cossack horse that could scarcely +carry his weight. + +"How's this, Colonel?" he shouted as he approached. "I told you to +fire the bridge, and now someone has gone and blundered; they are +all beside themselves over there and one can't make anything out." + +The colonel deliberately stopped the regiment and turned to +Nesvitski. + +"You spoke to me of inflammable material," said he, "but you said +nothing about firing it." + +"But, my dear sir," said Nesvitski as he drew up, taking off his cap +and smoothing his hair wet with perspiration with his plump hand, +"wasn't I telling you to fire the bridge, when inflammable material +had been put in position?" + +"I am not your 'dear sir,' Mr. Staff Officer, and you did not tell +me to burn the bridge! I know the service, and it is my habit orders +strictly to obey. You said the bridge would be burned, but who would +it burn, I could not know by the holy spirit!" + +"Ah, that's always the way!" said Nesvitski with a wave of the hand. +"How did you get here?" said he, turning to Zherkov. + +"On the same business. But you are damp! Let me wring you out!" + +"You were saying, Mr. Staff Officer..." continued the colonel in +an offended tone. + +"Colonel," interrupted the officer of the suite, "You must be +quick or the enemy will bring up his guns to use grapeshot." + +The colonel looked silently at the officer of the suite, at the +stout staff officer, and at Zherkov, and he frowned. + +"I will the bridge fire," he said in a solemn tone as if to announce +that in spite of all the unpleasantness he had to endure he would +still do the right thing. + +Striking his horse with his long muscular legs as if it were to +blame for everything, the colonel moved forward and ordered the second +squadron, that in which Rostov was serving under Denisov, to return to +the bridge. + +"There, it's just as I thought," said Rostov to himself. "He +wishes to test me!" His heart contracted and the blood rushed to his +face. "Let him see whether I am a coward!" he thought. + +Again on all the bright faces of the squadron the serious expression +appeared that they had worn when under fire. Rostov watched his enemy, +the colonel, closely--to find in his face confirmation of his own +conjecture, but the colonel did not once glance at Rostov, and +looked as he always did when at the front, solemn and stern. Then came +the word of command. + +"Look sharp! Look sharp!" several voices repeated around him. + +Their sabers catching in the bridles and their spurs jingling, the +hussars hastily dismounted, not knowing what they were to do. The +men were crossing themselves. Rostov no longer looked at the +colonel, he had no time. He was afraid of falling behind the +hussars, so much afraid that his heart stood still. His hand +trembled as he gave his horse into an orderly's charge, and he felt +the blood rush to his heart with a thud. Denisov rode past him, +leaning back and shouting something. Rostov saw nothing but the +hussars running all around him, their spurs catching and their +sabers clattering. + +"Stretchers!" shouted someone behind him. + +Rostov did not think what this call for stretchers meant; he ran on, +trying only to be ahead of the others; but just at the bridge, not +looking at the ground, he came on some sticky, trodden mud, +stumbled, and fell on his hands. The others outstripped him. + +"At boss zides, Captain," he heard the voice of the colonel, who, +having ridden ahead, had pulled up his horse near the bridge, with a +triumphant, cheerful face. + +Rostov wiping his muddy hands on his breeches looked at his enemy +and was about to run on, thinking that the farther he went to the +front the better. But Bogdanich, without looking at or recognizing +Rostov, shouted to him: + +"Who's that running on the middle of the bridge? To the right! +Come back, Cadet!" he cried angrily; and turning to Denisov, who, +showing off his courage, had ridden on to the planks of the bridge: + +"Why run risks, Captain? You should dismount," he said. + +"Oh, every bullet has its billet," answered Vaska Denisov, turning +in his saddle. + + +Meanwhile Nesvitski, Zherkov, and the officer of the suite were +standing together out of range of the shots, watching, now the small +group of men with yellow shakos, dark-green jackets braided with cord, +and blue riding breeches, who were swarming near the bridge, and +then at what was approaching in the distance from the opposite side- +the blue uniforms and groups with horses, easily recognizable as +artillery. + +"Will they burn the bridge or not? Who'll get there first? Will they +get there and fire the bridge or will the French get within +grapeshot range and wipe them out?" These were the questions each +man of the troops on the high ground above the bridge involuntarily +asked himself with a sinking heart--watching the bridge and the +hussars in the bright evening light and the blue tunics advancing from +the other side with their bayonets and guns. + +"Ugh. The hussars will get it hot!" said Nesvitski; "they are within +grapeshot range now." + +"He shouldn't have taken so many men," said the officer of the +suite. + +"True enough," answered Nesvitski; "two smart fellows could have +done the job just as well." + +"Ah, your excellency," put in Zherkov, his eyes fixed on the +hussars, but still with that naive air that made it impossible to know +whether he was speaking in jest or in earnest. "Ah, your excellency! +How you look at things! Send two men? And who then would give us the +Vladimir medal and ribbon? But now, even if they do get peppered, +the squadron may be recommended for honors and he may get a ribbon. +Our Bogdanich knows how things are done." + +"There now!" said the officer of the suite, "that's grapeshot." + +He pointed to the French guns, the limbers of which were being +detached and hurriedly removed. + +On the French side, amid the groups with cannon, a cloud of smoke +appeared, then a second and a third almost simultaneously, and at +the moment when the first report was heard a fourth was seen. Then two +reports one after another, and a third. + +"Oh! Oh!" groaned Nesvitski as if in fierce pain, seizing the +officer of the suite by the arm. "Look! A man has fallen! Fallen, +fallen!" + +"Two, I think." + +"If I were Tsar I would never go to war," said Nesvitski, turning +away. + +The French guns were hastily reloaded. The infantry in their blue +uniforms advanced toward the bridge at a run. Smoke appeared again but +at irregular intervals, and grapeshot cracked and rattled onto the +bridge. But this time Nesvitski could not see what was happening +there, as a dense cloud of smoke arose from it. The hussars had +succeeded in setting it on fire and the French batteries were now +firing at them, no longer to hinder them but because the guns were +trained and there was someone to fire at. + +The French had time to fire three rounds of grapeshot before the +hussars got back to their horses. Two were misdirected and the shot +went too high, but the last round fell in the midst of a group of +hussars and knocked three of them over. + +Rostov, absorbed by his relations with Bogdanich, had paused on +the bridge not knowing what to do. There was no one to hew down (as he +had always imagined battles to himself), nor could he help to fire the +bridge because he had not brought any burning straw with him like +the other soldiers. He stood looking about him, when suddenly he heard +a rattle on the bridge as if nuts were being spilt, and the hussar +nearest to him fell against the rails with a groan. Rostov ran up to +him with the others. Again someone shouted, "Stretchers!" Four men +seized the hussar and began lifting him. + +"Oooh! For Christ's sake let me alone!" cried the wounded man, but +still he was lifted and laid on the stretcher. + +Nicholas Rostov turned away and, as if searching for something, +gazed into the distance, at the waters of the Danube, at the sky, +and at the sun. How beautiful the sky looked; how blue, how calm, +and how deep! How bright and glorious was the setting sun! With what +soft glitter the waters of the distant Danube shone. And fairer +still were the faraway blue mountains beyond the river, the nunnery, +the mysterious gorges, and the pine forests veiled in the mist of +their summits... There was peace and happiness... "I should wishing +for nothing else, nothing, if only I were there," thought Rostov. +"In myself alone and in that sunshine there is so much happiness; +but here... groans, suffering, fear, and this uncertainty and hurry... +There--they are shouting again, and again are all running back +somewhere, and I shall run with them, and it, death, is here above +me and around... Another instant and I shall never again see the +sun, this water, that gorge!..." + +At that instant the sun began to hide behind the clouds, and other +stretchers came into view before Rostov. And the fear of death and +of the stretchers, and love of the sun and of life, all merged into +one feeling of sickening agitation. + +"O Lord God! Thou who art in that heaven, save, forgive, and protect +me!" Rostov whispered. + +The hussars ran back to the men who held their horses; their +voices sounded louder and calmer, the stretchers disappeared from +sight. + +"Well, fwiend? So you've smelt powdah!" shouted Vaska Denisov just +above his ear. + +"It's all over; but I am a coward--yes, a coward!" thought Rostov, +and sighing deeply he took Rook, his horse, which stood resting one +foot, from the orderly and began to mount. + +"Was that grapeshot?" he asked Denisov. + +"Yes and no mistake!" cried Denisov. "You worked like wegular bwicks +and it's nasty work! An attack's pleasant work! Hacking away at the +dogs! But this sort of thing is the very devil, with them shooting +at you like a target." + +And Denisov rode up to a group that had stopped near Rostov, +composed of the colonel, Nesvitski, Zherkov, and the officer from +the suite. + +"Well, it seems that no one has noticed," thought Rostov. And this +was true. No one had taken any notice, for everyone knew the sensation +which the cadet under fire for the first time had experienced. + +"Here's something for you to report," said Zherkov. "See if I +don't get promoted to a sublieutenancy." + +"Inform the prince that I the bridge fired!" said the colonel +triumphantly and gaily. + +"And if he asks about the losses?" + +"A trifle," said the colonel in his bass voice: "two hussars +wounded, and one knocked out," he added, unable to restrain a happy +smile, and pronouncing the phrase "knocked out" with ringing +distinctness. + + + + + +CHAPTER IX + + +Pursued by the French army of a hundred thousand men under the +command of Bonaparte, encountering a population that was unfriendly to +it, losing confidence in its allies, suffering from shortness of +supplies, and compelled to act under conditions of war unlike anything +that had been foreseen, the Russian army of thirty-five thousand men +commanded by Kutuzov was hurriedly retreating along the Danube, +stopping where overtaken by the enemy and fighting rearguard actions +only as far as necessary to enable it to retreat without losing its +heavy equipment. There had been actions at Lambach, Amstetten, and +Melk; but despite the courage and endurance--acknowledged even by +the enemy--with which the Russians fought, the only consequence of +these actions was a yet more rapid retreat. Austrian troops that had +escaped capture at Ulm and had joined Kutuzov at Braunau now separated +from the Russian army, and Kutuzov was left with only his own weak and +exhausted forces. The defense of Vienna was no longer to be thought +of. Instead of an offensive, the plan of which, carefully prepared +in accord with the modern science of strategics, had been handed to +Kutuzov when he was in Vienna by the Austrian Hofkriegsrath, the +sole and almost unattainable aim remaining for him was to effect a +junction with the forces that were advancing from Russia, without +losing his army as Mack had done at Ulm. + +On the twenty-eighth of October Kutuzov with his army crossed to the +left bank of the Danube and took up a position for the first time with +the river between himself and the main body of the French. On the +thirtieth he attacked Mortier's division, which was on the left +bank, and broke it up. In this action for the first time trophies were +taken: banners, cannon, and two enemy generals. For the first time, +after a fortnight's retreat, the Russian troops had halted and after a +fight had not only held the field but had repulsed the French. +Though the troops were ill-clad, exhausted, and had lost a third of +their number in killed, wounded, sick, and stragglers; though a number +of sick and wounded had been abandoned on the other side of the Danube +with a letter in which Kutuzov entrusted them to the humanity of the +enemy; and though the big hospitals and the houses in Krems +converted into military hospitals could no longer accommodate all +the sick and wounded, yet the stand made at Krems and the victory over +Mortier raised the spirits of the army considerably. Throughout the +whole army and at headquarters most joyful though erroneous rumors +were rife of the imaginary approach of columns from Russia, of some +victory gained by the Austrians, and of the retreat of the +frightened Bonaparte. + +Prince Andrew during the battle had been in attendance on the +Austrian General Schmidt, who was killed in the action. His horse +had been wounded under him and his own arm slightly grazed by a +bullet. As a mark of the commander in chief's special favor he was +sent with the news of this victory to the Austrian court, now no +longer at Vienna (which was threatened by the French) but at Brunn. +Despite his apparently delicate build Prince Andrew could endure +physical fatigue far better than many very muscular men, and on the +night of the battle, having arrived at Krems excited but not weary, +with dispatches from Dokhturov to Kutuzov, he was sent immediately +with a special dispatch to Brunn. To be so sent meant not only a +reward but an important step toward promotion. + +The night was dark but starry, the road showed black in the snow +that had fallen the previous day--the day of the battle. Reviewing his +impressions of the recent battle, picturing pleasantly to himself +the impression his news of a victory would create, or recalling the +send-off given him by the commander in chief and his fellow +officers, Prince Andrew was galloping along in a post chaise +enjoying the feelings of a man who has at length begun to attain a +long-desired happiness. As soon as he closed his eyes his ears +seemed filled with the rattle of the wheels and the sensation of +victory. Then he began to imagine that the Russians were running +away and that he himself was killed, but he quickly roused himself +with a feeling of joy, as if learning afresh that this was not so +but that on the contrary the French had run away. He again recalled +all the details of the victory and his own calm courage during the +battle, and feeling reassured he dozed off.... The dark starry night +was followed by a bright cheerful morning. The snow was thawing in the +sunshine, the horses galloped quickly, and on both sides of the road +were forests of different kinds, fields, and villages. + +At one of the post stations he overtook a convoy of Russian wounded. +The Russian officer in charge of the transport lolled back in the +front cart, shouting and scolding a soldier with coarse abuse. In each +of the long German carts six or more pale, dirty, bandaged men were +being jolted over the stony road. Some of them were talking (he +heard Russian words), others were eating bread; the more severely +wounded looked silently, with the languid interest of sick children, +at the envoy hurrying past them. + +Prince Andrew told his driver to stop, and asked a soldier in what +action they had been wounded. "Day before yesterday, on the Danube," +answered the soldier. Prince Andrew took out his purse and gave the +soldier three gold pieces. + +"That's for them all," he said to the officer who came up. + +"Get well soon, lads!" he continued, turning to the soldiers. +"There's plenty to do still." + +"What news, sir?" asked the officer, evidently anxious to start a +conversation. + +"Good news!... Go on!" he shouted to the driver, and they galloped +on. + +It was already quite dark when Prince Andrew rattled over the +paved streets of Brunn and found himself surrounded by high buildings, +the lights of shops, houses, and street lamps, fine carriages, and all +that atmosphere of a large and active town which is always so +attractive to a soldier after camp life. Despite his rapid journey and +sleepless night, Prince Andrew when he drove up to the palace felt +even more vigorous and alert than he had done the day before. Only his +eyes gleamed feverishly and his thoughts followed one another with +extraordinary clearness and rapidity. He again vividly recalled the +details of the battle, no longer dim, but definite and in the +concise form in which he imagined himself stating them to +the Emperor Francis. He vividly imagined the casual questions that +might be put to him and the answers he would give. He expected to be +at once presented to the Emperor. At the chief entrance to the palace, +however, an official came running out to meet him, and learning that +he was a special messenger led him to another entrance. + +"To the right from the corridor, Euer Hochgeboren! There you will +find the adjutant on duty," said the official. "He will conduct you to +the Minister of War." + +The adjutant on duty, meeting Prince Andrew, asked him to wait, +and went in to the Minister of War. Five minutes later he returned and +bowing with particular courtesy ushered Prince Andrew before him along +a corridor to the cabinet where the Minister of War was at work. The +adjutant by his elaborate courtesy appeared to wish to ward off any +attempt at familiarity on the part of the Russian messenger. + +Prince Andrew's joyous feeling was considerably weakened as he +approached the door of the minister's room. He felt offended, and +without his noticing it the feeling of offense immediately turned into +one of disdain which was quite uncalled for. His fertile mind +instantly suggested to him a point of view which gave him a right to +despise the adjutant and the minister. "Away from the smell of powder, +they probably think it easy to gain victories!" he thought. His eyes +narrowed disdainfully, he entered the room of the Minister of War with +peculiarly deliberate steps. This feeling of disdain was heightened +when he saw the minister seated at a large table reading some papers +and making pencil notes on them, and for the first two or three +minutes taking no notice of his arrival. A wax candle stood at each +side of the minister's bent bald head with its gray temples. He went +on reading to the end, without raising his eyes at the opening of +the door and the sound of footsteps. + +"Take this and deliver it," said he to his adjutant, handing him the +papers and still taking no notice of the special messenger. + +Prince Andrew felt that either the actions of Kutuzov's army +interested the Minister of War less than any of the other matters he +was concerned with, or he wanted to give the Russian special messenger +that impression. "But that is a matter of perfect indifference to me," +he thought. The minister drew the remaining papers together, +arranged them evenly, and then raised his head. He had an intellectual +and distinctive head, but the instant he turned to Prince Andrew the +firm, intelligent expression on his face changed in a way evidently +deliberate and habitual to him. His face took on the stupid artificial +smile (which does not even attempt to hide its artificiality) of a man +who is continually receiving many petitioners one after another. + +"From General Field Marshal Kutuzov?" he asked. "I hope it is good +news? There has been an encounter with Mortier? A victory? It was high +time!" + +He took the dispatch which was addressed to him and began to read it +with a mournful expression. + +"Oh, my God! My God! Schmidt!" he exclaimed in German. "What a +calamity! What a calamity!" + +Having glanced through the dispatch he laid it on the table and +looked at Prince Andrew, evidently considering something. + +"Ah what a calamity! You say the affair was decisive? But Mortier is +not captured." Again he pondered. "I am very glad you have brought +good news, though Schmidt's death is a heavy price to pay for the +victory. His Majesty will no doubt wish to see you, but not today. I +thank you! You must have a rest. Be at the levee tomorrow after the +parade. However, I will let you know." + +The stupid smile, which had left his face while he was speaking, +reappeared. + +"Au revoir! Thank you very much. His Majesty will probably desire to +see you," he added, bowing his head. + +When Prince Andrew left the palace he felt that all the interest and +happiness the victory had afforded him had been now left in the +indifferent hands of the Minister of War and the polite adjutant. +The whole tenor of his thoughts instantaneously changed; the battle +seemed the memory of a remote event long past. + + + + + +CHAPTER X + + +Prince Andrew stayed at Brunn with Bilibin, a Russian acquaintance +of his in the diplomatic service. + +"Ah, my dear prince! I could not have a more welcome visitor," +said Bilibin as he came out to meet Prince Andrew. "Franz, put the +prince's things in my bedroom," said he to the servant who was +ushering Bolkonski in. "So you're a messenger of victory, eh? +Splendid! And I am sitting here ill, as you see." + +After washing and dressing, Prince Andrew came into the diplomat's +luxurious study and sat down to the dinner prepared for him. Bilibin +settled down comfortably beside the fire. + +After his journey and the campaign during which he had been deprived +of all the comforts of cleanliness and all the refinements of life, +Prince Andrew felt a pleasant sense of repose among luxurious +surroundings such as he had been accustomed to from childhood. Besides +it was pleasant, after his reception by the Austrians, to speak if not +in Russian (for they were speaking French) at least with a Russian who +would, he supposed, share the general Russian antipathy to the +Austrians which was then particularly strong. + +Bilibin was a man of thirty-five, a bachelor, and of the same circle +as Prince Andrew. They had known each other previously in +Petersburg, but had become more intimate when Prince Andrew was in +Vienna with Kutuzov. Just as Prince Andrew was a young man who gave +promise of rising high in the military profession, so to an even +greater extent Bilibin gave promise of rising in his diplomatic +career. He still a young man but no longer a young diplomat, as he had +entered the service at the age of sixteen, had been in Paris and +Copenhagen, and now held a rather important post in Vienna. Both the +foreign minister and our ambassador in Vienna knew him and valued him. +He was not one of those many diplomats who are esteemed because they +have certain negative qualities, avoid doing certain things, and speak +French. He was one of those, who, liking work, knew how to do it, +and despite his indolence would sometimes spend a whole night at his +writing table. He worked well whatever the import of his work. It +was not the question "What for?" but the question "How?" that +interested him. What the diplomatic matter might be he did not care, +but it gave him great pleasure to prepare a circular, memorandum, or +report, skillfully, pointedly, and elegantly. Bilibin's services +were valued not only for what he wrote, but also for his skill in +dealing and conversing with those in the highest spheres. + +Bilibin liked conversation as he liked work, only when it could be +made elegantly witty. In society he always awaited an opportunity to +say something striking and took part in a conversation only when +that was possible. His conversation was always sprinkled with +wittily original, finished phrases of general interest. These +sayings were prepared in the inner laboratory of his mind in a +portable form as if intentionally, so that insignificant society +people might carry them from drawing room to drawing room. And, in +fact, Bilibin's witticisms were hawked about in the Viennese drawing +rooms and often had an influence on matters considered important. + +His thin, worn, sallow face was covered with deep wrinkles, which +always looked as clean and well washed as the tips of one's fingers +after a Russian bath. The movement of these wrinkles formed the +principal play of expression on his face. Now his forehead would +pucker into deep folds and his eyebrows were lifted, then his eyebrows +would descend and deep wrinkles would crease his cheeks. His small, +deep-set eyes always twinkled and looked out straight. + +"Well, now tell me about your exploits," said he. + +Bolkonski, very modestly without once mentioning himself, +described the engagement and his reception by the Minister of War. + +"They received me and my news as one receives a dog in a game of +skittles," said he in conclusion. + +Bilibin smiled and the wrinkles on his face disappeared. + +"Cependant, mon cher," he remarked, examining his nails from a +distance and puckering the skin above his left eye, "malgre la haute +estime que je professe pour the Orthodox Russian army, j'avoue que +votre victoire n'est pas des plus victorieuses."* + + +*"But my dear fellow, with all my respect for the Orthodox Russian +army, I must say that your victory was not particularly victorious." + + +He went on talking in this way in French, uttering only those +words in Russian on which he wished to put a contemptuous emphasis. + +"Come now! You with all your forces fall on the unfortunate +Mortier and his one division, and even then Mortier slips through your +fingers! Where's the victory?" + +"But seriously," said Prince Andrew, "we can at any rate say without +boasting that it was a little better than at Ulm..." + +"Why didn't you capture one, just one, marshal for us?" + +"Because not everything happens as one expects or with the +smoothness of a parade. We had expected, as I told you, to get at +their rear by seven in the morning but had not reached it by five in +the afternoon." + +"And why didn't you do it at seven in the morning? You ought to have +been there at seven in the morning," returned Bilibin with a smile. +"You ought to have been there at seven in the morning." + +"Why did you not succeed in impressing on Bonaparte by diplomatic +methods that he had better leave Genoa alone?" retorted Prince +Andrew in the same tone. + +"I know," interrupted Bilibin, "you're thinking it's very easy to +take marshals, sitting on a sofa by the fire! That is true, but +still why didn't you capture him? So don't be surprised if not only +the Minister of War but also his Most August Majesty the Emperor and +King Francis is not much delighted by your victory. Even I, a poor +secretary of the Russian Embassy, do not feel any need in token of +my joy to give my Franz a thaler, or let him go with his Liebchen to +the Prater... True, we have no Prater here..." + +He looked straight at Prince Andrew and suddenly unwrinkled his +forehead. + +"It is now my turn to ask you 'why?' mon cher," said Bolkonski. "I +confess I do not understand: perhaps there are diplomatic subtleties +here beyond my feeble intelligence, but I can't make it out. Mack +loses a whole army, the Archduke Ferdinand and the Archduke Karl +give no signs of life and make blunder after blunder. Kutuzov alone at +last gains a real victory, destroying the spell of the invincibility +of the French, and the Minister of War does not even care to hear +the details." + +"That's just it, my dear fellow. You see it's hurrah for the Tsar, +for Russia, for the Orthodox Greek faith! All that is beautiful, but +what do we, I mean the Austrian court, care for your victories? +Bring us nice news of a victory by the Archduke Karl or Ferdinand (one +archduke's as good as another, as you know) and even if it is only +over a fire brigade of Bonaparte's, that will be another story and +we'll fire off some cannon! But this sort of thing seems done on +purpose to vex us. The Archduke Karl does nothing, the Archduke +Ferdinand disgraces himself. You abandon Vienna, give up its +defense--as much as to say: 'Heaven is with us, but heaven help you +and your capital!' The one general whom we all loved, Schmidt, you +expose to a bullet, and then you congratulate us on the victory! Admit +that more irritating news than yours could not have been conceived. +It's as if it had been done on purpose, on purpose. Besides, suppose +you did gain a brilliant victory, if even the Archduke Karl gained a +victory, what effect would that have on the general course of +events? It's too late now when Vienna is occupied by the French army!" + +"What? Occupied? Vienna occupied?" + +"Not only occupied, but Bonaparte is at Schonbrunn, and the count, +our dear Count Vrbna, goes to him for orders." + +After the fatigues and impressions of the journey, his reception, +and especially after having dined, Bolkonski felt that he could not +take in the full significance of the words he heard. + +"Count Lichtenfels was here this morning," Bilibin continued, "and +showed me a letter in which the parade of the French in Vienna was +fully described: Prince Murat et tout le tremblement... You see that +your victory is not a matter for great rejoicing and that you can't be +received as a savior." + +"Really I don't care about that, I don't care at all," said Prince +Andrew, beginning to understand that his news of the battle before +Krems was really of small importance in view of such events as the +fall of Austria's capital. "How is it Vienna was taken? What of the +bridge and its celebrated bridgehead and Prince Auersperg? We heard +reports that Prince Auersperg was defending Vienna?" he said. + +"Prince Auersperg is on this, on our side of the river, and is +defending us--doing it very badly, I think, but still he is +defending us. But Vienna is on the other side. No, the bridge has +not yet been taken and I hope it will not be, for it is mined and +orders have been given to blow it up. Otherwise we should long ago +have been in the mountains of Bohemia, and you and your army would +have spent a bad quarter of an hour between two fires." + +"But still this does not mean that the campaign is over," said +Prince Andrew. + +"Well, I think it is. The bigwigs here think so too, but they +daren't say so. It will be as I said at the beginning of the campaign, +it won't be your skirmishing at Durrenstein, or gunpowder at all, that +will decide the matter, but those who devised it," said Bilibin +quoting one of his own mots, releasing the wrinkles on his forehead, +and pausing. "The only question is what will come of the meeting +between the Emperor Alexander and the King of Prussia in Berlin? If +Prussia joins the Allies, Austria's hand will be forced and there will +be war. If not it is merely a question of settling where the +preliminaries of the new Campo Formio are to be drawn up." + +"What an extraordinary genius!" Prince Andrew suddenly exclaimed, +clenching his small hand and striking the table with it, "and what +luck the man has!" + +"Buonaparte?" said Bilibin inquiringly, puckering up his forehead to +indicate that he was about to say something witty. "Buonaparte?" he +repeated, accentuating the u: "I think, however, now that he lays down +laws for Austria at Schonbrunn, il faut lui faire grace de l'u!* I +shall certainly adopt an innovation and call him simply Bonaparte!" + + +*"We must let him off the u!" + + +"But joking apart," said Prince Andrew, "do you really think the +campaign is over?" + +"This is what I think. Austria has been made a fool of, and she is +not used to it. She will retaliate. And she has been fooled in the +first place because her provinces have been pillaged--they say the +Holy Russian army loots terribly--her army is destroyed, her capital +taken, and all this for the beaux yeux* of His Sardinian Majesty. +And therefore--this is between ourselves--I instinctively feel that we +are being deceived, my instinct tells me of negotiations with France +and projects for peace, a secret peace concluded separately." + + +*Fine eyes. + + +"Impossible!" cried Prince Andrew. "That would be too base." + +"If we live we shall see," replied Bilibin, his face again +becoming smooth as a sign that the conversation was at an end. + +When Prince Andrew reached the room prepared for him and lay down in +a clean shirt on the feather bed with its warmed and fragrant pillows, +he felt that the battle of which he had brought tidings was far, far +away from him. The alliance with Prussia, Austria's treachery, +Bonaparte's new triumph, tomorrow's levee and parade, and the audience +with the Emperor Francis occupied his thoughts. + +He closed his eyes, and immediately a sound of cannonading, of +musketry and the rattling of carriage wheels seemed to fill his +ears, and now again drawn out in a thin line the musketeers were +descending the hill, the French were firing, and he felt his heart +palpitating as he rode forward beside Schmidt with the bullets merrily +whistling all around, and he experienced tenfold the joy of living, as +he had not done since childhood. + +He woke up... + +"Yes, that all happened!" he said, and, smiling happily to himself +like a child, he fell into a deep, youthful slumber. + + + + + +CHAPTER XI + + +Next day he woke late. Recalling his recent impressions, the first +thought that came into his mind was that today he had to be +presented to the Emperor Francis; he remembered the Minister of War, +the polite Austrian adjutant, Bilibin, and last night's +conversation. Having dressed for his attendance at court in full +parade uniform, which he had not worn for a long time, he went into +Bilibin's study fresh, animated, and handsome, with his hand bandaged. +In the study were four gentlemen of the diplomatic corps. With +Prince Hippolyte Kuragin, who was a secretary to the embassy, +Bolkonski was already acquainted. Bilibin introduced him to the +others. + +The gentlemen assembled at Bilibin's were young, wealthy, gay +society men, who here, as in Vienna, formed a special set which +Bilibin, their leader, called les notres.* This set, consisting almost +exclusively of diplomats, evidently had its own interests which had +nothing to do with war or politics but related to high society, to +certain women, and to the official side of the service. These +gentlemen received Prince Andrew as one of themselves, an honor they +did not extend to many. From politeness and to start conversation, +they asked him a few questions about the army and the battle, and then +the talk went off into merry jests and gossip. + + +*Ours. + + +"But the best of it was," said one, telling of the misfortune of a +fellow diplomat, "that the Chancellor told him flatly that his +appointment to London was a promotion and that he was so to regard it. +Can you fancy the figure he cut?..." + +"But the worst of it, gentlemen--I am giving Kuragin away to you--is +that that man suffers, and this Don Juan, wicked fellow, is taking +advantage of it!" + +Prince Hippolyte was lolling in a lounge chair with his legs over +its arm. He began to laugh. + +"Tell me about that!" he said. + +"Oh, you Don Juan! You serpent!" cried several voices. + +"You, Bolkonski, don't know," said Bilibin turning to Prince Andrew, +"that all the atrocities of the French army (I nearly said of the +Russian army) are nothing compared to what this man has been doing +among the women!" + +"La femme est la compagne de l'homme,"* announced Prince +Hippolyte, and began looking through a lorgnette at his elevated legs. + + +*"Woman is man's companion." + + +Bilibin and the rest of "ours" burst out laughing in Hippolyte's +face, and Prince Andrew saw that Hippolyte, of whom--he had to +admit--he had almost been jealous on his wife's account, was the +butt of this set. + +"Oh, I must give you a treat," Bilibin whispered to Bolkonski. +"Kuragin is exquisite when he discusses politics--you should see his +gravity!" + +He sat down beside Hippolyte and wrinkling his forehead began +talking to him about politics. Prince Andrew and the others gathered +round these two. + +"The Berlin cabinet cannot express a feeling of alliance," began +Hippolyte gazing round with importance at the others, "without +expressing... as in its last note... you understand... Besides, unless +His Majesty the Emperor derogates from the principle of our +alliance... + +"Wait, I have not finished..." he said to Prince Andrew, seizing him +by the arm, "I believe that intervention will be stronger than +nonintervention. And..." he paused. "Finally one cannot impute the +nonreceipt of our dispatch of November 18. That is how it will end." +And he released Bolkonski's arm to indicate that he had now quite +finished. + +"Demosthenes, I know thee by the pebble thou secretest in thy golden +mouth!" said Bilibin, and the mop of hair on his head moved with +satisfaction. + +Everybody laughed, and Hippolyte louder than anyone. He was +evidently distressed, and breathed painfully, but could not restrain +the wild laughter that convulsed his usually impassive features. + +"Well now, gentlemen," said Bilibin, "Bolkonski is my guest in +this house and in Brunn itself. I want to entertain him as far as I +can, with all the pleasures of life here. If we were in Vienna it +would be easy, but here, in this wretched Moravian hole, it is more +difficult, and I beg you all to help me. Brunn's attractions must be +shown him. You can undertake the theater, I society, and you, +Hippolyte, of course the women." + +"We must let him see Amelie, she's exquisite!" said one of "ours," +kissing his finger tips. + +"In general we must turn this bloodthirsty soldier to more humane +interests," said Bilibin. + +"I shall scarcely be able to avail myself of your hospitality, +gentlemen, it is already time for me to go," replied Prince Andrew +looking at his watch. + +"Where to?" + +"To the Emperor." + +"Oh! Oh! Oh! Well, au revoir, Bolkonski! Au revoir, Prince! Come +back early to dinner," cried several voices. "We'll take you in hand." + +"When speaking to the Emperor, try as far as you can to praise the +way that provisions are supplied and the routes indicated," said +Bilibin, accompanying him to the hall. + +"I should like to speak well of them, but as far as I the facts, I +can't," replied Bolkonski, smiling. + +"Well, talk as much as you can, anyway. He has a passion for +giving audiences, but he does not like talking himself and can't do +it, as you will see." + + + + + +CHAPTER XII + + +At the levee Prince Andrew stood among the Austrian officers as he +had been told to, and the Emperor Francis merely looked fixedly into +his face and just nodded to him with to him with his long head. But +after it was over, the adjutant he had seen the previous day +ceremoniously informed Bolkonski that the Emperor desired to give +him an audience. The Emperor Francis received him standing in the +middle of the room. Before the conversation began Prince Andrew was +struck by the fact that the Emperor seemed confused and blushed as +if not knowing what to say. + +"Tell me, when did the battle begin?" he asked hurriedly. + +Prince Andrew replied. Then followed other questions just as simple: +"Was Kutuzov well? When had he left Krems?" and so on. The Emperor +spoke as if his sole aim were to put a given number of questions- +the answers to these questions, as was only too evident, did not +interest him. + +"At what o'clock did the battle begin?" asked the Emperor. + +"I cannot inform Your Majesty at what o'clock the battle began at +the front, but at Durrenstein, where I was, our attack began after +five in the afternoon," replied Bolkonski growing more animated and +expecting that he would have a chance to give a reliable account, +which he had ready in his mind, of all he knew and had seen. But the +Emperor smiled and interrupted him. + +"How many miles?" + +"From where to where, Your Majesty?" + +"From Durrenstein to Krems." + +"Three and a half miles, Your Majesty." + +"The French have abandoned the left bank?" + +"According to the scouts the last of them crossed on rafts during +the night." + +"Is there sufficient forage in Krems?" + +"Forage has not been supplied to the extent..." + +The Emperor interrupted him. + +"At what o'clock was General Schmidt killed?" + +"At seven o'clock, I believe." + +"At seven o'clock? It's very sad, very sad!" + +The Emperor thanked Prince Andrew and bowed. Prince Andrew +withdrew and was immediately surrounded by courtiers on all sides. +Everywhere he saw friendly looks and heard friendly words. Yesterday's +adjutant reproached him for not having stayed at the palace, and +offered him his own house. The Minister of War came up and +congratulated him on the Maria Theresa Order of the third grade, which +the Emperor was conferring on him. The Empress' chamberlain invited +him to see Her Majesty. The archduchess also wished to see him. He did +not know whom to answer, and for a few seconds collected his thoughts. +Then the Russian ambassador took him by the shoulder, led him to the +window, and began to talk to him. + +Contrary to Bilibin's forecast the news he had brought was +joyfully received. A thanksgiving service was arranged, Kutuzov was +awarded the Grand Cross of Maria Theresa, and the whole army +received rewards. Bolkonski was invited everywhere, and had to spend +the whole morning calling on the principal Austrian dignitaries. +Between four and five in the afternoon, having made all his calls, +he was returning to Bilibin's house thinking out a letter to his +father about the battle and his visit to Brunn. At the door he found a +vehicle half full of luggage. Franz, Bilibin's man, was dragging a +portmanteau with some difficulty out of the front door. + +Before returning to Bilibin's Prince Andrew had gone to bookshop +to provide himself with some books for the campaign, and had spent +some time in the shop. + +"What is it?" he asked. + +"Oh, your excellency!" said Franz, with difficulty rolling the +portmanteau into the vehicle, "we are to move on still farther. The +scoundrel is again at our heels!" + +"Eh? What?" asked Prince Andrew. + +Bilibin came out to meet him. His usually calm face showed +excitement. + +"There now! Confess that this is delightful," said he. "This +affair of the Thabor Bridge, at Vienna.... They have crossed without +striking a blow!" + +Prince Andrew could not understand. + +"But where do you come from not to know what every coachman in the +town knows?" + +"I come from the archduchess'. I heard nothing there." + +"And you didn't see that everybody is packing up?" + +"I did not... What is it all about?" inquired Prince Andrew +impatiently. + +"What's it all about? Why, the French have crossed the bridge that +Auersperg was defending, and the bridge was not blown up: so Murat +is now rushing along the road to Brunn and will be here in a day or +two." + +"What? Here? But why did they not blow up the bridge, if it was +mined?" + +"That is what I ask you. No one, not even Bonaparte, knows why." + +Bolkonski shrugged his shoulders. + +"But if the bridge is crossed it means that the army too is lost? It +will be cut off," said he. + +"That's just it," answered Bilibin. "Listen! The French entered +Vienna as I told you. Very well. Next day, which was yesterday, +those gentlemen, messieurs les marechaux,* Murat, Lannes,and Belliard, +mount and ride to bridge. (Observe that all three are Gascons.) +'Gentlemen,' says one of them, 'you know the Thabor Bridge is mined +and doubly mined and that there are menacing fortifications at its +head and an army of fifteen thousand men has been ordered to blow up +the bridge and not let us cross? But it will please our sovereign +the Emperor Napoleon if we take this bridge, so let us three go and +take it!' 'Yes, let's!' say the others. And off they go and take the +bridge, cross it, and now with their whole army are on this side of +the Danube, marching on us, you, and your lines of communication." + + +*The marshalls. + + +"Stop jesting," said Prince Andrew sadly and seriously. This news +grieved him and yet he was pleased. + +As soon as he learned that the Russian army was in such a hopeless +situation it occurred to him that it was he who was destined to lead +it out of this position; that here was the Toulon that would lift +him from the ranks of obscure officers and offer him the first step to +fame! Listening to Bilibin he was already imagining how on reaching +the army he would give an opinion at the war council which would be +the only one that could save the army, and how he alone would be +entrusted with the executing of the plan. + +"Stop this jesting," he said + +"I am not jesting," Bilibin went on. "Nothing is truer or sadder. +These gentlemen ride onto the bridge alone and wave white +handkerchiefs; they assure the officer on duty that they, the +marshals, are on their way to negotiate with Prince Auersperg. He lets +them enter the tete-de-pont.* They spin him a thousand gasconades, +saying that the war is over, that the Emperor Francis is arranging a +meeting with Bonaparte, that they desire to see Prince Auersperg, +and so on. The officer sends for Auersperg; these gentlemen embrace +the officers, crack jokes, sit on the cannon, and meanwhile a French +battalion gets to the bridge unobserved, flings the bags of incendiary +material into the water, and approaches the tete-de-pont. At length +appears the lieutenant general, our dear Prince Auersperg von +Mautern himself. 'Dearest foe! Flower of the Austrian army, hero of +the Turkish wars Hostilities are ended, we can shake one another's +hand.... The Emperor Napoleon burns with impatience to make Prince +Auersperg's acquaintance.' In a word, those gentlemen, Gascons indeed, +so bewildered him with fine words, and he is so flattered by his +rapidly established intimacy with the French marshals, and so +dazzled by the sight of Murat's mantle and ostrich plumes, qu'il n'y +voit que du feu, et oublie celui qu'il devait faire faire sur +l'ennemi!"*[2] In spite of the animation of his speech, Bilibin did +not forget to pause after this mot to give time for its due +appreciation. "The French battalion rushes to the bridgehead, spikes +the guns, and the bridge is taken! But what is best of all," he went +on, his excitement subsiding under the delightful interest of his +own story, "is that the sergeant in charge of the cannon which was +to give the signal to fire the mines and blow up the bridge, this +sergeant, seeing that the French troops were running onto the +bridge, was about to fire, but Lannes stayed his hand. The sergeant, +who was evidently wiser than his general, goes up to Auersperg and +says: 'Prince, you are being deceived, here are the French!' Murat, +seeing that all is lost if the sergeant is allowed to speak, turns +to Auersperg with feigned astonishment (he is a true Gascon) and says: +'I don't recognize the world-famous Austrian discipline, if you +allow a subordinate to address you like that!' It was a stroke of +genius. Prince Auersperg feels his dignity at stake and orders the +sergeant to be arrested. Come, you must own that this affair of the +Thabor Bridge is delightful! It is not exactly stupidity, nor +rascality...." + + +*Bridgehead. + +*[2] That their fire gets into his eyes and he forgets that he ought +to be firing at the enemy. + + +"It may be treachery," said Prince Andrew, vividly imagining the +gray overcoats, wounds, the smoke of gunpowder, the sounds of +firing, and the glory that awaited him. + +"Not that either. That puts the court in too bad a light," replied +Bilibin. "It's not treachery nor rascality nor stupidity: it is just as +at Ulm... it is..."--he seemed to be trying to find the right +expression. "C'est... c'est du Mack. Nous sommes mackes [It is... it +is a bit of Mack. We are Macked]," he concluded, feeling that he had +produced a good epigram, a fresh one that would be repeated. His +hitherto puckered brow became smooth as a sign of pleasure, and with a +slight smile he began to examine his nails. + +"Where are you off to?" he said suddenly to Prince Andrew who had +risen and was going toward his room. + +"I am going away." + +"Where to?" + +"To the army." + +"But you meant to stay another two days?" + +"But now I am off at once." + +And Prince Andrew after giving directions about his departure went +to his room. + +"Do you know, mon cher," said Bilibin following him, "I have been +thinking about you. Why are you going?" + +And in proof of the conclusiveness of his opinion all the wrinkles +vanished from his face. + +Prince Andrew looked inquiringly at him and gave no reply. + +"Why are you going? I know you think it your duty to gallop back +to the army now that it is in danger. I understand that. Mon cher, +it is heroism!" + +"Not at all," said Prince Andrew. + +"But as you are a philosopher, be a consistent one, look at the +other side of the question and you will see that your duty, on the +contrary, is to take care of yourself. Leave it to those who are no +longer fit for anything else.... You have not been ordered to return +and have not been dismissed from here; therefore, you can stay and +go with us wherever our ill luck takes us. They say we are going to +Olmutz, and Olmutz is a very decent town. You and I will travel +comfortably in my caleche." + +"Do stop joking, Bilibin," cried Bolkonski. + +"I am speaking sincerely as a friend! Consider! Where and why are +you going, when you might remain here? You are faced by one of two +things," and the skin over his left temple puckered, "either you +will not reach your regiment before peace is concluded, or you will +share defeat and disgrace with Kutuzov's whole army." + +And Bilibin unwrinkled his temple, feeling that the dilemma was +insoluble. + +"I cannot argue about it," replied Prince Andrew coldly, but he +thought: "I am going to save the army." + +"My dear fellow, you are a hero!" said Bilibin. + + + + + +CHAPTER XIII + + +That same night, having taken leave of the Minister of War, +Bolkonski set off to rejoin the army, not knowing where he would +find it and fearing to be captured by the French on the way to Krems. + +In Brunn everybody attached to the court was packing up, and the +heavy baggage was already being dispatched to Olmutz. Near Hetzelsdorf +Prince Andrew struck the high road along which the Russian army was +moving with great haste and in the greatest disorder. The road was +so obstructed with carts that it was impossible to get by in a +carriage. Prince Andrew took a horse and a Cossack from a Cossack +commander, and hungry and weary, making his way past the baggage +wagons, rode in search of the commander in chief and of his own +luggage. Very sinister reports of the position of the army reached him +as he went along, and the appearance of the troops in their disorderly +flight confirmed these rumors. + +"Cette armee russe que l'or de l'Angleterre a transportee des +extremites de l'univers, nous allons lui faire eprouver le meme +sort--(le sort de l'armee d'Ulm)."* He remembered these words in +Bonaparte's address to his army at the beginning of the campaign, +and they awoke in him astonishment at the genius of his hero, a +feeling of wounded pride, and a hope of glory. "And should there be +nothing left but to die?" he thought. "Well, if need be, I shall do it +no worse than others." + + +*"That Russian army which has been brought from the ends of the +earth by English gold, we shall cause to share the same fate--(the +fate of the army at Ulm)." + + +He looked with disdain at the endless confused mass of +detachments, carts, guns, artillery, and again baggage wagons and +vehicles of all kinds overtaking one another and blocking the muddy +road, three and sometimes four abreast. From all sides, behind and +before, as far as ear could reach, there were the rattle of wheels, +the creaking of carts and gun carriages, the tramp of horses, the +crack of whips, shouts, the urging of horses, and the swearing of +soldiers, orderlies, and officers. All along the sides of the road +fallen horses were to be seen, some flayed, some not, and +broken-down carts beside which solitary soldiers sat waiting for +something, and again soldiers straggling from their companies, +crowds of whom set off to the neighboring villages, or returned from +them dragging sheep, fowls, hay, and bulging sacks. At each ascent +or descent of the road the crowds were yet denser and the din of +shouting more incessant. Soldiers floundering knee-deep in mud +pushed the guns and wagons themselves. Whips cracked, hoofs slipped, +traces broke, and lungs were strained with shouting. The officers +directing the march rode backward and forward between the carts. Their +voices were but feebly heard amid the uproar and one saw by their +faces that they despaired of the possibility of checking this +disorder. + +"Here is our dear Orthodox Russian army," thought Bolkonski, +recalling Bilibin's words. + +Wishing to find out where the commander in chief was, he rode up +to a convoy. Directly opposite to him came a strange one-horse +vehicle, evidently rigged up by soldiers out of any available +materials and looking like something between a cart, a cabriolet, +and a caleche. A soldier was driving, and a woman enveloped in +shawls sat behind the apron under the leather hood of the vehicle. +Prince Andrew rode up and was just putting his question to a soldier +when his attention was diverted by the desperate shrieks of the +woman in the vehicle. An officer in charge of transport was beating +the soldier who was driving the woman's vehicle for trying to get +ahead of others, and the strokes of his whip fell on the apron of +the equipage. The woman screamed piercingly. Seeing Prince Andrew +she leaned out from behind the apron and, waving her thin arms from +under the woolen shawl, cried: + +"Mr. Aide-de-camp! Mr. Aide-de-camp!... For heaven's sake... Protect +me! What will become of us? I am the wife of the doctor of the Seventh +Chasseurs.... They won't let us pass, we are left behind and have lost +our people..." + +"I'll flatten you into a pancake!" shouted the angry officer to +the soldier. "Turn back with your slut!" + +"Mr. Aide-de-camp! Help me!... What does it all mean?" screamed +the doctor's wife. + +"Kindly let this cart pass. Don't you see it's a woman?" said Prince +Andrew riding up to the officer. + +The officer glanced at him, and without replying turned again to the +soldier. "I'll teach you to push on!... Back!" + +"Let them pass, I tell you!" repeated Prince Andrew, compressing his +lips. + +"And who are you?" cried the officer, turning on him with tipsy +rage, "who are you? Are you in command here? Eh? I am commander +here, not you! Go back or I'll flatten you into a pancake," repeated +he. This expression evidently pleased him. + +"That was a nice snub for the little aide-de-camp," came a voice +from behind. + +Prince Andrew saw that the officer was in that state of senseless, +tipsy rage when a man does not know what he is saying. He saw that his +championship of the doctor's wife in her queer trap might expose him +to what he dreaded more than anything in the world--to ridicule; but +his instinct urged him on. Before the officer finished his sentence +Prince Andrew, his face distorted with fury, rode up to him and raised +his riding whip. + +"Kind...ly let--them--pass!" + +The officer flourished his arm and hastily rode away. + +"It's all the fault of these fellows on the staff that there's +this disorder," he muttered. "Do as you like." + +Prince Andrew without lifting his eyes rode hastily away from the +doctor's wife, who was calling him her deliverer, and recalling with a +sense of disgust the minutest details of this humiliating scene he +galloped on to the village where he was told that the commander in +chief was. + +On reaching the village he dismounted and went to the nearest house, +intending to rest if but for a moment, eat something, and try to +sort out the stinging and tormenting thoughts that confused his +mind. "This is a mob of scoundrels and not an army," he was thinking +as he went up to the window of the first house, when a familiar +voice called him by name. + +He turned round. Nesvitski's handsome face looked out of the +little window. Nesvitski, moving his moist lips as he chewed +something, and flourishing his arm, called him to enter. + +"Bolkonski! Bolkonski!... Don't you hear? Eh? Come quick..." he +shouted. + +Entering the house, Prince Andrew saw Nesvitski and another adjutant +having something to eat. They hastily turned round to him asking if he +had any news. On their familiar faces he read agitation and alarm. +This was particularly noticeable on Nesvitski's usually laughing +countenance. + +"Where is the commander in chief?" asked Bolkonski. + +"Here, in that house," answered the adjutant. + +"Well, is it true that it's peace and capitulation?" asked +Nesvitski. + +"I was going to ask you. I know nothing except that it was all I +could do to get here." + +"And we, my dear boy! It's terrible! I was wrong to laugh at Mack, +we're getting it still worse," said Nesvitski. "But sit down and +have something to eat." + +"You won't be able to find either your baggage or anything else now, +Prince. And God only knows where your man Peter is," said the other +adjutant. + +"Where are headquarters?" + +"We are to spend the night in Znaim." + +"Well, I have got all I need into packs for two horses," said +Nesvitski. "They've made up splendid packs for me--fit to cross the +Bohemian mountains with. It's a bad lookout, old fellow! But what's +the matter with you? You must be ill to shiver like that," he added, +noticing that Prince Andrew winced as at an electric shock. + +"It's nothing," replied Prince Andrew. + +He had just remembered his recent encounter with the doctor's wife +and the convoy officer. + +"What is the commander in chief doing here?" he asked. + +"I can't make out at all," said Nesvitski. + +"Well, all I can make out is that everything is abominable, +abominable, quite abominable!" said Prince Andrew, and he went off +to the house where the commander in chief was. + +Passing by Kutuzov's carriage and the exhausted saddle horses of his +suite, with their Cossacks who were talking loudly together, Prince +Andrew entered the passage. Kutuzov himself, he was told, was in the +house with Prince Bagration and Weyrother. Weyrother was the +Austrian general who had succeeded Schmidt. In the passage little +Kozlovski was squatting on his heels in front of a clerk. The clerk, +with cuffs turned up, was hastily writing at a tub turned bottom +upwards. Kozlovski's face looked worn--he too had evidently not +slept all night. He glanced at Prince Andrew and did not even nod to +him. + +"Second line... have you written it?" he continued dictating to +the clerk. "The Kiev Grenadiers, Podolian..." + +"One can't write so fast, your honor," said the clerk, glancing +angrily and disrespectfully at Kozlovski. + +Through the door came the sounds of Kutuzov's voice, excited and +dissatisfied, interrupted by another, an unfamiliar voice. From the +sound of these voices, the inattentive way Kozlovski looked at him, +the disrespectful manner of the exhausted clerk, the fact that the +clerk and Kozlovski were squatting on the floor by a tub so near to +the commander in chief, and from the noisy laughter of the Cossacks +holding the horses near the window, Prince Andrew felt that +something important and disastrous was about to happen. + +He turned to Kozlovski with urgent questions. + +"Immediately, Prince," said Kozlovski. "Dispositions for Bagration." + +"What about capitulation?" + +"Nothing of the sort. Orders are issued for a battle." + +Prince Andrew moved toward the door from whence voices were heard. +Just as he was going to open it the sounds ceased, the door opened, +and Kutuzov with his eagle nose and puffy face appeared in the +doorway. Prince Andrew stood right in front of Kutuzov but the +expression of the commander in chief's one sound eye showed him to +be so preoccupied with thoughts and anxieties as to be oblivious of +his presence. He looked straight at his adjutant's face without +recognizing him. + +"Well, have you finished?" said he to Kozlovski. + +"One moment, your excellency." + +Bagration, a gaunt middle-aged man of medium height with a firm, +impassive face of Oriental type, came out after the commander in +chief. + +"I have the honor to present myself," repeated Prince Andrew +rather loudly, handing Kutuzov an envelope. + +"Ah, from Vienna? Very good. Later, later!" + +Kutuzov went out into the porch with Bagration. + +"Well, good-by, Prince," said he to Bagration. "My blessing, and may +Christ be with you in your great endeavor!" + +His face suddenly softened and tears came into his eyes. With his +left hand he drew Bagration toward him, and with his right, on which +he wore a ring, he made the sign of the cross over him with a +gesture evidently habitual, offering his puffy cheek, but Bagration +kissed him on the neck instead. + +"Christ be with you!" Kutuzov repeated and went toward his carriage. +"Get in with me," said he to Bolkonski. + +"Your excellency, I should like to be of use here. Allow me to +remain with Prince Bagration's detachment." + +"Get in," said Kutuzov, and noticing that Bolkonski still delayed, +he added: "I need good officers myself, need them myself!" + +They got into the carriage and drove for a few minutes in silence. + +"There is still much, much before us," he said, as if with an old +man's penetration he understood all that was passing in Bolkonski's +mind. "If a tenth part of his detachment returns I shall thank God," +he added as if speaking to himself. + +Prince Andrew glanced at Kutuzov's face only a foot distant from him +and involuntarily noticed the carefully washed seams of the scar +near his temple, where an Ismail bullet had pierced his skull, and the +empty eye socket. "Yes, he has a right to speak so calmly of those +men's death," thought Bolkonski. + +"That is why I beg to be sent to that detachment," he said. + +Kutuzov did not reply. He seemed to have forgotten what he had +been saying, and sat plunged in thought. Five minutes later, gently +swaying on the soft springs of the carriage, he turned to Prince +Andrew. There was not a trace of agitation on his face. With +delicate irony he questioned Prince Andrew about the details of his +interview with the Emperor, about the remarks he had heard at court +concerning the Krems affair, and about some ladies they both knew. + + + + + +CHAPTER XIV + + +On November 1 Kutuzov had received, through a spy, news that the +army he commanded was in an almost hopeless position. The spy reported +that the French, after crossing the bridge at Vienna, were advancing +in immense force upon Kutuzov's line of communication with the +troops that were arriving from Russia. If Kutuzov decided to remain at +Krems, Napoleon's army of one hundred and fifty thousand men would cut +him off completely and surround his exhausted army of forty +thousand, and he would find himself in the position of Mack at Ulm. If +Kutuzov decided to abandon the road connecting him with the troops +arriving from Russia, he would have to march with no road into unknown +parts of the Bohemian mountains, defending himself against superior +forces of the enemy and abandoning all hope of a junction with +Buxhowden. If Kutuzov decided to retreat along the road from Krems +to Olmutz, to unite with the troops arriving from Russia, he risked +being forestalled on that road by the French who had crossed the +Vienna bridge, and encumbered by his baggage and transport, having +to accept battle on the march against an enemy three times as +strong, who would hem him in from two sides. + +Kutuzov chose this latter course. + +The French, the spy reported, having crossed the Vienna bridge, were +advancing by forced marches toward Znaim, which lay sixty-six miles +off on the line of Kutuzov's retreat. If he reached Znaim before the +French, there would be great hope of saving the army; to let the +French forestall him at Znaim meant the exposure of his whole army +to a disgrace such as that of Ulm, or to utter destruction. But to +forestall the French with his whole army was impossible. The road +for the French from Vienna to Znaim was shorter and better than the +road for the Russians from Krems to Znaim. + +The night he received the news, Kutuzov sent Bagration's vanguard, +four thousand strong, to the right across the hills from the +Krems-Znaim to the Vienna-Znaim road. Bagration was to make this march +without resting, and to halt facing Vienna with Znaim to his rear, and +if he succeeded in forestalling the French he was to delay them as +long as possible. Kutuzov himself with all his transport took the road +to Znaim. + +Marching thirty miles that stormy night across roadless hills, +with his hungry, ill-shod soldiers, and losing a third of his men as +stragglers by the way, Bagration came out on the Vienna-Znaim road +at Hollabrunn a few hours ahead of the French who were approaching +Hollabrunn from Vienna. Kutuzov with his transport had still to +march for some days before he could reach Znaim. Hence Bagration +with his four thousand hungry, exhausted men would have to detain +for days the whole enemy army that came upon him at Hollabrunn, +which was clearly impossible. But a freak of fate made the +impossible possible. The success of the trick that had placed the + +Vienna bridge in the hands of the French without a fight led Murat +to try to deceive Kutuzov in a similar way. Meeting Bagration's weak +detachment on the Znaim road he supposed it to be Kutuzov's whole +army. To be able to crush it absolutely he awaited the arrival of +the rest of the troops who were on their way from Vienna, and with +this object offered a three days' truce on condition that both +armies should remain in position without moving. Murat declared that +negotiations for peace were already proceeding, and that he +therefore offered this truce to avoid unnecessary bloodshed. Count +Nostitz, the Austrian general occupying the advanced posts, believed +Murat's emissary and retired, leaving Bagration's division exposed. +Another emissary rode to the Russian line to announce the peace +negotiations and to offer the Russian army the three days' truce. +Bagration replied that he was not authorized either to accept or +refuse a truce and sent his adjutant to Kutuzov to report the offer he +had received. + +A truce was Kutuzov's sole chance of gaining time, giving +Bagration's exhausted troops some rest, and letting the transport +and heavy convoys (whose movements were concealed from the French) +advance if but one stage nearer Znaim. The offer of a truce gave the +only, and a quite unexpected, chance of saving the army. On +receiving the news he immediately dispatched Adjutant General +Wintzingerode, who was in attendance on him, to the enemy camp. +Wintzingerode was not merely to agree to the truce but also to offer +terms of capitulation, and meanwhile Kutuzov sent his adjutants back +to hasten to the utmost the movements of the baggage trains of the +entire army along the Krems-Znaim road. Bagration's exhausted and +hungry detachment, which alone covered this movement of the +transport and of the whole army, had to remain stationary in face of +an enemy eight times as strong as itself. + +Kutuzov's expectations that the proposals of capitulation (which +were in no way binding) might give time for part of the transport to +pass, and also that Murat's mistake would very soon be discovered, +proved correct. As soon as Bonaparte (who was at Schonbrunn, sixteen +miles from Hollabrunn) received Murat's dispatch with the proposal +of a truce and a capitulation, he detected a ruse and wrote the +following letter to Murat: + + +Schonbrunn, 25th Brumaire, 1805, + +at eight o'clock in the morning + +To PRINCE MURAT, + +I cannot find words to express to you my displeasure. You command +only my advance guard, and have no right to arrange an armistice +without my order. You are causing me to lose the fruits of a campaign. +Break the armistice immediately and march on the enemy. Inform him +that the general who signed that capitulation had no right to do so, +and that no one but the Emperor of Russia has that right. + +If, however, the Emperor of Russia ratifies that convention, I +will ratify it; but it is only a trick. March on, destroy the +Russian army.... You are in a position to seize its baggage and +artillery. + +The Russian Emperor's aide-de-camp is an impostor. Officers are +nothing when they have no powers; this one had none.... The +Austrians let themselves be tricked at the crossing of the Vienna +bridge, you are letting yourself be tricked by an aide-de-camp of +the Emperor. + +NAPOLEON + + +Bonaparte's adjutant rode full gallop with this menacing letter to +Murat. Bonaparte himself, not trusting to his generals, moved with all +the Guards to the field of battle, afraid of letting a ready victim +escape, and Bagration's four thousand men merrily lighted campfires, +dried and warmed themselves, cooked their porridge for the first +time for three days, and not one of them knew or imagined what was +in store for him. + + + + + +CHAPTER XV + + +Between three and four o'clock in the afternoon Prince Andrew, who +had persisted in his request to Kutuzov, arrived at Grunth and +reported himself to Bagration. Bonaparte's adjutant had not yet +reached Murat's detachment and the battle had not yet begun. In +Bagration's detachment no one knew anything of the general position of +affairs. They talked of peace but did not believe in its +possibility; others talked of a battle but also disbelieved in the +nearness of an engagement. Bagration, knowing Bolkonski to be a +favorite and trusted adjutant, received him with distinction and +special marks of favor, explaining to him that there would probably be +an engagement that day or the next, and giving him full liberty to +remain with him during the battle or to join the rearguard and have an +eye on the order of retreat, "which is also very important." + +"However, there will hardly be an engagement today," said +Bagration as if to reassure Prince Andrew. + +"If he is one of the ordinary little staff dandies sent to earn a +medal he can get his reward just as well in the rearguard, but if he +wishes to stay with me, let him... he'll be of use here if he's a +brave officer," thought Bagration. Prince Andrew, without replying, +asked the prince's permission to ride round the position to see the +disposition of the forces, so as to know his bearings should he be +sent to execute an order. The officer on duty, a handsome, elegantly +dressed man with a diamond ring on his forefinger, who was fond of +speaking French though he spoke it badly, offered to conduct Prince +Andrew. + +On all sides they saw rain-soaked officers with dejected faces who +seemed to be seeking something, and soldiers dragging doors, +benches, and fencing from the village. + +"There now, Prince! We can't stop those fellows," said the staff +officer pointing to the soldiers. "The officers don't keep them in +hand. And there," he pointed to a sutler's tent, "they crowd in and +sit. This morning I turned them all out and now look, it's full again. +I must go there, Prince, and scare them a bit. It won't take a +moment." + +"Yes, let's go in and I will get myself a roll and some cheese," +said Prince Andrew who had not yet had time to eat anything. + +"Why didn't you mention it, Prince? I would have offered you +something." + +They dismounted and entered the tent. Several officers, with flushed +and weary faces, were sitting at the table eating and drinking. + +"Now what does this mean, gentlemen?" said the staff officer, in the +reproachful tone of a man who has repeated the same thing more than +once. "You know it won't do to leave your posts like this. The +prince gave orders that no one should leave his post. Now you, +Captain," and he turned to a thin, dirty little artillery officer +who without his boots (he had given them to the canteen keeper to +dry), in only his stockings, rose when they entered, smiling not +altogether comfortably. + +"Well, aren't you ashamed of yourself, Captain Tushin?" he +continued. "One would think that as an artillery officer you would set +a good example, yet here you are without your boots! The alarm will be +sounded and you'll be in a pretty position without your boots!" (The +staff officer smiled.) "Kindly return to your posts, gentlemen, all of +you, all!" he added in a tone of command. + +Prince Andrew smiled involuntarily as he looked at the artillery +officer Tushin, who silent and smiling, shifting from one stockinged +foot to the other, glanced inquiringly with his large, intelligent, +kindly eyes from Prince Andrew to the staff officer. + +"The soldiers say it feels easier without boots," said Captain +Tushin smiling shyly in his uncomfortable position, evidently +wishing to adopt a jocular tone. But before he had finished he felt +that his jest was unacceptable and had not come off. He grew confused. + +"Kindly return to your posts," said the staff officer trying to +preserve his gravity. + +Prince Andrew glanced again at the artillery officer's small figure. +There was something peculiar about it, quite unsoldierly, rather +comic, but extremely attractive. + +The staff officer and Prince Andrew mounted their horses and rode +on. + +Having ridden beyond the village, continually meeting and overtaking +soldiers and officers of various regiments, they saw on their left +some entrenchments being thrown up, the freshly dug clay of which +showed up red. Several battalions of soldiers, in their shirt +sleeves despite the cold wind, swarmed in these earthworks like a host +of white ants; spadefuls of red clay were continually being thrown +up from behind the bank by unseen hands. Prince Andrew and the officer +rode up, looked at the entrenchment, and went on again. Just behind it +they came upon some dozens of soldiers, continually replaced by +others, who ran from the entrenchment. They had to hold their noses +and put their horses to a trot to escape from the poisoned +atmosphere of these latrines. + +"Voila l'agrement des camps, monsieur le Prince,"* said the staff +officer. + + +*"This is a pleasure one gets in camp, Prince." + + +They rode up the opposite hill. From there the French could +already be seen. Prince Andrew stopped and began examining the +position. + +"That's our battery," said the staff officer indicating the +highest point. "It's in charge of the queer fellow we saw without +his boots. You can see everything from there; let's go there, Prince." + +"Thank you very much, I will go on alone," said Prince Andrew, +wishing to rid himself of this staff officer's company, "please +don't trouble yourself further." + +The staff officer remained behind and Prince Andrew rode on alone. + +The farther forward and nearer the enemy he went, the more orderly +and cheerful were the troops. The greatest disorder and depression had +been in the baggage train he had passed that morning on the Znaim road +seven miles away from the French. At Grunth also some apprehension and +alarm could be felt, but the nearer Prince Andrew came to the French +lines the more confident was the appearance of our troops. The +soldiers in their greatcoats were ranged in lines, the sergeants major +and company officers were counting the men, poking the last man in +each section in the ribs and telling him to hold his hand up. Soldiers +scattered over the whole place were dragging logs and brushwood and +were building shelters with merry chatter and laughter; around the +fires sat others, dressed and undressed, drying their shirts and leg +bands or mending boots or overcoats and crowding round the boilers and +porridge cookers. In one company dinner was ready, and the soldiers +were gazing eagerly at the steaming boiler, waiting till the sample, +which a quartermaster sergeant was carrying in a wooden bowl to an +officer who sat on a log before his shelter, had been tasted. + +Another company, a lucky one for not all the companies had vodka, +crowded round a pock-marked, broad-shouldered sergeant major who, +tilting a keg, filled one after another the canteen lids held out to +him. The soldiers lifted the canteen lids to their lips with +reverential faces, emptied them, rolling the vodka in their mouths, +and walked away from the sergeant major with brightened expressions, +licking their lips and wiping them on the sleeves of their greatcoats. +All their faces were as serene as if all this were happening at home +awaiting peaceful encampment, and not within sight of the enemy before +an action in which at least half of them would be left on the field. +After passing a chasseur regiment and in the lines of the Kiev +grenadiers--fine fellows busy with similar peaceful affairs--near +the shelter of the regimental commander, higher than and different +from the others, Prince Andrew came out in front of a platoon of +grenadiers before whom lay a naked man. Two soldiers held him while +two others were flourishing their switches and striking him +regularly on his bare back. The man shrieked unnaturally. A stout +major was pacing up and down the line, and regardless of the screams +kept repeating: + +"It's a shame for a soldier to steal; a soldier must be honest, +honorable, and brave, but if he robs his fellows there is no honor +in him, he's a scoundrel. Go on! Go on!" + +So the swishing sound of the strokes, and the desperate but +unnatural screams, continued. + +"Go on, go on!" said the major. + +A young officer with a bewildered and pained expression on his +face stepped away from the man and looked round inquiringly at the +adjutant as he rode by. + +Prince Andrew, having reached the front line, rode along it. Our +front line and that of the enemy were far apart on the right and +left flanks, but in the center where the men with a flag of truce +had passed that morning, the lines were so near together that the +men could see one another's faces and speak to one another. Besides +the soldiers who formed the picket line on either side, there were +many curious onlookers who, jesting and laughing, stared at their +strange foreign enemies. + +Since early morning--despite an injunction not to approach the +picket line--the officers had been unable to keep sight-seers away. +The soldiers forming the picket line, like showmen exhibiting a +curiosity, no longer looked at the French but paid attention to the +sight-seers and grew weary waiting to be relieved. Prince Andrew +halted to have a look at the French. + +"Look! Look there!" one soldier was saying to another, pointing to a +Russian musketeer who had gone up to the picket line with an officer +and was rapidly and excitedly talking to a French grenadier. "Hark +to him jabbering! Fine, isn't it? It's all the Frenchy can do to +keep up with him. There now, Sidorov!" + +"Wait a bit and listen. It's fine!" answered Sidorov, who was +considered an adept at French. + +The soldier to whom the laughers referred was Dolokhov. Prince +Andrew recognized him and stopped to listen to what he was saying. +Dolokhov had come from the left flank where their regiment was +stationed, with his captain. + +"Now then, go on, go on!" incited the officer, bending forward and +trying not to lose a word of the speech which was incomprehensible +to him. "More, please: more! What's he saying?" + +Dolokhov did not answer the captain; he had been drawn into a hot +dispute with the French grenadier. They were naturally talking about +the campaign. The Frenchman, confusing the Austrians with the +Russians, was trying to prove that the Russians had surrendered and +had fled all the way from Ulm, while Dolokhov maintained that the +Russians had not surrendered but had beaten the French. + +"We have orders to drive you off here, and we shall drive you +off," said Dolokhov. + +"Only take care you and your Cossacks are not all captured!" said +the French grenadier. + +The French onlookers and listeners laughed. + +"We'll make you dance as we did under Suvorov...,"* said Dolokhov. + + +*"On vous fera danser." + + +"Qu' est-ce qu'il chante?"* asked a Frenchman. + + +*"What's he singing about?" + + +"It's ancient history," said another, guessing that it referred to a +former war. "The Emperor will teach your Suvara as he has taught the +others..." + +"Bonaparte..." began Dolokhov, but the Frenchman interrupted him. + +"Not Bonaparte. He is the Emperor! Sacre nom...!" cried he angrily. + +"The devil skin your Emperor." + +And Dolokhov swore at him in coarse soldier's Russian and +shouldering his musket walked away. + +"Let us go, Ivan Lukich," he said to the captain. + +"Ah, that's the way to talk French," said the picket soldiers. "Now, +Sidorov, you have a try!" + +Sidorov, turning to the French, winked, and began to jabber +meaningless sounds very fast: "Kari, mala, tafa, safi, muter, +Kaska," he said, trying to give an expressive intonation to his voice. + +"Ho! ho! ho! Ha! ha! ha! ha! Ouh! ouh!" came peals of such healthy +and good-humored laughter from the soldiers that it infected the +French involuntarily, so much so that the only thing left to do seemed +to be to unload the muskets, muskets, explode the ammunition, and +all return home as quickly as possible. + +But the guns remained loaded, the loopholes in blockhouses and +entrenchments looked out just as menacingly, and the unlimbered cannon +confronted one another as before. + + + + + +CHAPTER XVI + + +Having ridden round the whole line from right flank to left, +Prince Andrew made his way up to the battery from which the staff +officer had told him the whole field could be seen. Here he +dismounted, and stopped beside the farthest of the four unlimbered +cannon. Before the guns an artillery sentry was pacing up and down; he +stood at attention when the officer arrived, but at a sign resumed his +measured, monotonous pacing. Behind the guns were their limbers and +still farther back picket ropes and artillerymen's bonfires. To the +left, not far from the farthest cannon, was a small, newly constructed +wattle shed from which came the sound of officers' voices in eager +conversation. + +It was true that a view over nearly the whole Russian position and +the greater part of the enemy's opened out from this battery. Just +facing it, on the crest of the opposite hill, the village of Schon +Grabern could be seen, and in three places to left and right the +French troops amid the smoke of their campfires, the greater part of +whom were evidently in the village itself and behind the hill. To +the left from that village, amid the smoke, was something resembling a +battery, but it was impossible to see it clearly with the naked eye. +Our right flank was posted on a rather steep incline which dominated +the French position. Our infantry were stationed there, and at the +farthest point the dragoons. In the center, where Tushin's battery +stood and from which Prince Andrew was surveying the position, was the +easiest and most direct descent and ascent to the brook separating +us from Schon Grabern. On the left our troops were close to a copse, +in which smoked the bonfires of our infantry who were felling wood. +The French line was wider than ours, and it was plain that they +could easily outflank us on both sides. Behind our position was a +steep and deep dip, making it difficult for artillery and cavalry to +retire. Prince Andrew took out his notebook and, leaning on the +cannon, sketched a plan of the position. He made some notes on two +points, intending to mention them to Bagration. His idea was, first, +to concentrate all the artillery in the center, and secondly, to +withdraw the cavalry to the other side of the dip. Prince Andrew, +being always near the commander in chief, closely following the mass +movements and general orders, and constantly studying historical +accounts of battles, involuntarily pictured to himself the course of +events in the forthcoming action in broad outline. He imagined only +important possibilities: "If the enemy attacks the right flank," he +said to himself, "the Kiev grenadiers and the Podolsk chasseurs must +hold their position till reserves from the center come up. In that +case the dragoons could successfully make a flank counterattack. If +they attack our center we, having the center battery on this high +ground, shall withdraw the left flank under its cover, and retreat +to the dip by echelons." So he reasoned.... All the time he had been +beside the gun, he had heard the voices of the officers distinctly, +but as often happens had not understood a word of what they were +saying. Suddenly, however, he was struck by a voice coming from the +shed, and its tone was so sincere that he could not but listen. + +"No, friend," said a pleasant and, as it seemed to Prince Andrew, +a familiar voice, "what I say is that if it were possible to know what +is beyond death, none of us would be afraid of it. That's so, friend." + +Another, a younger voice, interrupted him: "Afraid or not, you can't +escape it anyhow." + +"All the same, one is afraid! Oh, you clever people," said a third +manly voice interrupting them both. "Of course you artillery men are +very wise, because you can take everything along with you--vodka and +snacks." + +And the owner of the manly voice, evidently an infantry officer, +laughed. + +"Yes, one is afraid," continued the first speaker, he of the +familiar voice. "One is afraid of the unknown, that's what it is. +Whatever we may say about the soul going to the sky... we know there +is no sky but only an atmosphere." + +The manly voice again interrupted the artillery officer. + +"Well, stand us some of your herb vodka, Tushin," it said. + +"Why," thought Prince Andrew, "that's the captain who stood up in +the sutler's hut without his boots." He recognized the agreeable, +philosophizing voice with pleasure. + +"Some herb vodka? Certainly!" said Tushin. "But still, to conceive a +future life..." + +He did not finish. Just then there was a whistle in the air; +nearer and nearer, faster and louder, louder and faster, a cannon +ball, as if it had not finished saying what was necessary, thudded +into the ground near the shed with super human force, throwing up a +mass of earth. The ground seemed to groan at the terrible impact. + +And immediately Tushin, with a short pipe in the corner of his mouth +and his kind, intelligent face rather pale, rushed out of the shed +followed by the owner of the manly voice, a dashing infantry officer +who hurried off to his company, buttoning up his coat as he ran. + + + + + +CHAPTER XVII + + +Mounting his horse again Prince Andrew lingered with the battery, +looking at the puff from the gun that had sent the ball. His eyes +ran rapidly over the wide space, but he only saw that the hitherto +motionless masses of the French now swayed and that there really was a +battery to their left. The smoke above it had not yet dispersed. Two +mounted Frenchmen, probably adjutants, were galloping up the hill. A +small but distinctly visible enemy column was moving down the hill, +probably to strengthen the front line. The smoke of the first shot had +not yet dispersed before another puff appeared, followed by a +report. The battle had begun! Prince Andrew turned his horse and +galloped back to Grunth to find Prince Bagration. He heard the +cannonade behind him growing louder and more frequent. Evidently our +guns had begun to reply. From the bottom of the slope, where the +parleys had taken place, came the report of musketry. + +Lemarrois had just arrived at a gallop with Bonaparte's stern +letter, and Murat, humiliated and anxious to expiate his fault, had at +once moved his forces to attack the center and outflank both the +Russian wings, hoping before evening and before the arrival of the +Emperor to crush the contemptible detachment that stood before him. + +"It has begun. Here it is!" thought Prince Andrew, feeling the blood +rush to his heart. "But where and how will my Toulon present itself?" + +Passing between the companies that had been eating porridge and +drinking vodka a quarter of an hour before, he saw everywhere the same +rapid movement of soldiers forming ranks and getting their muskets +ready, and on all their faces he recognized the same eagerness that +filled his heart. "It has begun! Here it is, dreadful but +enjoyable!" was what the face of each soldier and each officer +seemed to say. + +Before he had reached the embankments that were being thrown up, +he saw, in the light of the dull autumn evening, mounted men coming +toward him. The foremost, wearing a Cossack cloak and lambskin cap and +riding a white horse, was Prince Bagration. Prince Andrew stopped, +waiting for him to come up; Prince Bagration reined in his horse and +recognizing Prince Andrew nodded to him. He still looked ahead while +Prince Andrew told him what he had seen. + +The feeling, "It has begun! Here it is!" was seen even on Prince +Bagration's hard brown face with its half-closed, dull, sleepy eyes. +Prince Andrew gazed with anxious curiosity at that impassive face +and wished he could tell what, if anything, this man was thinking +and feeling at that moment. "Is there anything at all behind that +impassive face?" Prince Andrew asked himself as he looked. Prince +Bagration bent his head in sign of agreement with what Prince Andrew +told him, and said, "Very good!" in a tone that seemed to imply that +everything that took place and was reported to him was exactly what he +had foreseen. Prince Andrew, out of breath with his rapid ride, +spoke quickly. Prince Bagration, uttering his words with an Oriental +accent, spoke particularly slowly, as if to impress the fact that +there was no need to hurry. However, he put his horse to a trot in the +direction of Tushin's battery. Prince Andrew followed with the +suite. Behind Prince Bagration rode an officer of the suite, the +prince's personal adjutant, Zherkov, an orderly officer, the staff +officer on duty, riding a fine bobtailed horse, and a civilian--an +accountant who had asked permission to be present at the battle out of +curiosity. The accountant, a stout, full-faced man, looked around +him with a naive smile of satisfaction and presented a strange +appearance among the hussars, Cossacks, and adjutants, in his camlet +coat, as he jolted on his horse with a convoy officer's saddle. + +"He wants to see a battle," said Zherkov to Bolkonski, pointing to +the accountant, "but he feels a pain in the pit of his stomach +already." + +"Oh, leave off!" said the accountant with a beaming but rather +cunning smile, as if flattered at being made the subject of +Zherkov's joke, and purposely trying to appear stupider than he really +was. + +"It is very strange, mon Monsieur Prince," said the staff officer. +(He remembered that in French there is some peculiar way of addressing +a prince, but could not get it quite right.) + +By this time they were all approaching Tushin's battery, and a +ball struck the ground in front of them. + +"What's that that has fallen?" asked the accountant with a naive +smile. + +"A French pancake," answered Zherkov. + +"So that's what they hit with?" asked the accountant. "How awful!" + +He seemed to swell with satisfaction. He had hardly finished +speaking when they again heard an unexpectedly violent whistling which +suddenly ended with a thud into something soft... f-f-flop! and a +Cossack, riding a little to their right and behind the accountant, +crashed to earth with his horse. Zherkov and the staff officer bent +over their saddles and turned their horses away. The accountant +stopped, facing the Cossack, and examined him with attentive +curiosity. The Cossack was dead, but the horse still struggled. + +Prince Bagration screwed up his eyes, looked round, and, seeing +the cause of the confusion, turned away with indifference, as if to +say, "Is it worth while noticing trifles?" He reined in his horse with +the case of a skillful rider and, slightly bending over, disengaged +his saber which had caught in his cloak. It was an old-fashioned saber +of a kind no longer in general use. Prince Andrew remembered the story +of Suvorov giving his saber to Bagration in Italy, and the +recollection was particularly pleasant at that moment. They had +reached the battery at which Prince Andrew had been when he examined +the battlefield. + +"Whose company?" asked Prince Bagration of an artilleryman +standing by the ammunition wagon. + +He asked, "Whose company?" but he really meant, "Are you +frightened here?" and the artilleryman understood him. + +"Captain Tushin's, your excellency!" shouted the red-haired, +freckled gunner in a merry voice, standing to attention. + +"Yes, yes," muttered Bagration as if considering something, and he +rode past the limbers to the farthest cannon. + +As he approached, a ringing shot issued from it deafening him and +his suite, and in the smoke that suddenly surrounded the gun they +could see the gunners who had seized it straining to roll it quickly +back to its former position. A huge, broad-shouldered gunner, Number +One, holding a mop, his legs far apart, sprang to the wheel; while +Number Two with a trembling hand placed a charge in the cannon's +mouth. The short, round-shouldered Captain Tushin, stumbling over +the tail of the gun carriage, moved forward and, not noticing the +general, looked out shading his eyes with his small hand. + +"Lift it two lines more and it will be just right," cried he in a +feeble voice to which he tried to impart a dashing note, ill suited to +his weak figure. "Number Two!" he squeaked. "Fire, Medvedev!" + +Bagration called to him, and Tushin, raising three fingers to his +cap with a bashful and awkward gesture not at all like a military +salute but like a priest's benediction, approached the general. Though +Tushin's guns had been intended to cannonade the valley, he was firing +incendiary balls at the village of Schon Grabern visible just +opposite, in front of which large masses of French were advancing. + +No one had given Tushin orders where and at what to fire, but +after consulting his sergeant major, Zakharchenko, for whom he had +great respect, he had decided that it would be a good thing to set +fire to the village. "Very good!" said Bagration in reply to the +officer's report, and began deliberately to examine the whole +battlefield extended before him. The French had advanced nearest on +our right. Below the height on which the Kiev regiment was +stationed, in the hollow where the rivulet flowed, the soul-stirring +rolling and crackling of musketry was heard, and much farther to the +right beyond the dragoons, the officer of the suite pointed out to +Bagration a French column that was outflanking us. To the left the +horizon bounded by the adjacent wood. Prince Bagration ordered two +battalions from the center to be sent to reinforce the right flank. +The officer of the suite ventured to remark to the prince that if +these battalions went away, the guns would remain without support. +Prince Bagration turned to the officer and with his dull eyes looked +at him in silence. It seemed to Prince Andrew that the officer's +remark was just and that really no answer could be made to it. But +at that moment an adjutant galloped up with a message from the +commander of the regiment in the hollow and news that immense masses +of the French were coming down upon them and that his regiment was +in disorder and was retreating upon the Kiev grenadiers. Prince +Bagration bowed his head in sign of assent and approval. He rode off +at a walk to the right and sent an adjutant to the dragoons with +orders to attack the French. But this adjutant returned half an hour +later with the news that the commander of the dragoons had already +retreated beyond the dip in the ground, as a heavy fire had been +opened on him and he was losing men uselessly, and so had hastened +to throw some sharpshooters into the wood. + +"Very good!" said Bagration. + +As he was leaving the battery, firing was heard on the left also, +and as it was too far to the left flank for him to have time to go +there himself, Prince Bagration sent Zherkov to tell the general in +command (the one who had paraded his regiment before Kutuzov at +Braunau) that he must retreat as quickly as possible behind the hollow +in the rear, as the right flank would probably not be able to +withstand the enemy's attack very long. About Tushin and the battalion +that had been in support of his battery all was forgotten. Prince +Andrew listened attentively to Bagration's colloquies with the +commanding officers and the orders he gave them and, to his +surprise, found that no orders were really given, but that Prince +Bagration tried to make it appear that everything done by necessity, +by accident, or by the will of subordinate commanders was done, if not +by his direct command, at least in accord with his intentions. +Prince Andrew noticed, however, that though what happened was due to +chance and was independent of the commander's will, owing to the +tact Bagration showed, his presence was very valuable. Officers who +approached him with disturbed countenances became calm; soldiers and +officers greeted him gaily, grew more cheerful in his presence, and +were evidently anxious to display their courage before him. + + + + + +CHAPTER XVIII + + +Prince Bagration, having reached the highest point of our right +flank, began riding downhill to where the roll of musketry was heard +but where on account of the smoke nothing could be seen. The nearer +they got to the hollow the less they could see but the more they +felt the nearness of the actual battlefield. They began to meet +wounded men. One with a bleeding head and no cap was being dragged +along by two soldiers who supported him under the arms. There was a +gurgle in his throat and he was spitting blood. A bullet had evidently +hit him in the throat or mouth. Another was walking sturdily by +himself but without his musket, groaning aloud and swinging his arm +which had just been hurt, while blood from it was streaming over his +greatcoat as from a bottle. He had that moment been wounded and his +face showed fear rather than suffering. Crossing a road they descended +a steep incline and saw several men lying on the ground; they also met +a crowd of soldiers some of whom were unwounded. The soldiers were +ascending the hill breathing heavily, and despite the general's +presence were talking loudly and gesticulating. In front of them +rows of gray cloaks were already visible through the smoke, and an +officer catching sight of Bagration rushed shouting after the crowd of +retreating soldiers, ordering them back. Bagration rode up to the +ranks along which shots crackled now here and now there, drowning +the sound of voices and the shouts of command. The whole air reeked +with smoke. The excited faces of the soldiers were blackened with +it. Some were using their ramrods, others putting powder on the +touchpans or taking charges from their pouches, while others were +firing, though who they were firing at could not be seen for the smoke +which there was no wind to carry away. A pleasant humming and +whistling of bullets were often heard. "What is this?" thought +Prince Andrew approaching the crowd of soldiers. "It can't be an +attack, for they are not moving; it can't be a square--for they are +not drawn up for that." + +The commander of the regiment, a thin, feeble-looking old man with a +pleasant smile--his eyelids drooping more than half over his old eyes, +giving him a mild expression, rode up to Bagration and welcomed him as +a host welcomes an honored guest. He reported that his regiment had +been attacked by French cavalry and that, though the attack had been +repulsed, he had lost more than half his men. He said the attack had +been repulsed, employing this military term to describe what had +occurred to his regiment, but in reality he did not himself know +what had happened during that half-hour to the troops entrusted to +him, and could not say with certainty whether the attack had been +repulsed or his regiment had been broken up. All he knew was that at +the commencement of the action balls and shells began flying all +over his regiment and hitting men and that afterwards someone had +shouted "Cavalry!" and our men had begun firing. They were still +firing, not at the cavalry which had disappeared, but at French +infantry who had come into the hollow and were firing at our men. +Prince Bagration bowed his head as a sign that this was exactly what +he had desired and expected. Turning to his adjutant he ordered him to +bring down the two battalions of the Sixth Chasseurs whom they had +just passed. Prince Andrew was struck by the changed expression on +Prince Bagration's face at this moment. It expressed the +concentrated and happy resolution you see on the face of a man who +on a hot day takes a final run before plunging into the water. The +dull, sleepy expression was no longer there, nor the affectation of +profound thought. The round, steady, hawk's eyes looked before him +eagerly and rather disdainfully, not resting on anything although +his movements were still slow and measured. + +The commander of the regiment turned to Prince Bagration, entreating +him to go back as it was too dangerous to remain where they were. +"Please, your excellency, for God's sake!" he kept saying, glancing +for support at an officer of the suite who turned away from him. +"There, you see!" and he drew attention to the bullets whistling, +singing, and hissing continually around them. He spoke in the tone +of entreaty and reproach that a carpenter uses to a gentleman who +has picked up an ax: "We are used to it, but you, sir, will blister +your hands." He spoke as if those bullets could not kill him, and +his half-closed eyes gave still more persuasiveness to his words. +The staff officer joined in the colonel's appeals, but Bagration did +not reply; he only gave an order to cease firing and re-form, so as to +give room for the two approaching battalions. While he was speaking, +the curtain of smoke that had concealed the hollow, driven by a rising +wind, began to move from right to left as if drawn by an invisible +hand, and the hill opposite, with the French moving about on it, +opened out before them. All eyes fastened involuntarily on this French +column advancing against them and winding down over the uneven ground. +One could already see the soldiers' shaggy caps, distinguish the +officers from the men, and see the standard flapping against its +staff. + +"They march splendidly," remarked someone in Bagration's suite. + +The head of the column had already descended into the hollow. The +clash would take place on this side of it... + +The remains of our regiment which had been in action rapidly +formed up and moved to the right; from behind it, dispersing the +laggards, came two battalions of the Sixth Chasseurs in fine order. +Before they had reached Bagration, the weighty tread of the mass of +men marching in step could be heard. On their left flank, nearest to +Bagration, marched a company commander, a fine round-faced man, with a +stupid and happy expression--the same man who had rushed out of the +wattle shed. At that moment he was clearly thinking of nothing but how +dashing a fellow he would appear as he passed the commander. + +With the self-satisfaction of a man on parade, he stepped lightly +with his muscular legs as if sailing along, stretching himself to +his full height without the smallest effort, his ease contrasting with +the heavy tread of the soldiers who were keeping step with him. He +carried close to his leg a narrow unsheathed sword (small, curved, and +not like a real weapon) and looked now at the superior officers and +now back at the men without losing step, his whole powerful body +turning flexibly. It was as if all the powers of his soul were +concentrated on passing the commander in the best possible manner, and +feeling that he was doing it well he was happy. "Left... left... +left..." he seemed to repeat to himself at each alternate step; and in +time to this, with stern but varied faces, the wall of soldiers +burdened with knapsacks and muskets marched in step, and each one of +these hundreds of soldiers seemed to be repeating to himself at each +alternate step, "Left... left... left..." A fat major skirted a +bush, puffing and falling out of step; a soldier who had fallen +behind, his face showing alarm at his defection, ran at a trot, +panting to catch up with his company. A cannon ball, cleaving the air, +flew over the heads of Bagration and his suite, and fell into the +column to the measure of "Left... left!" "Close up!" came the +company commander's voice in jaunty tones. The soldiers passed in a +semicircle round something where the ball had fallen, and an old +trooper on the flank, a noncommissioned officer who had stopped beside +the dead men, ran to catch up his line and, falling into step with a +hop, looked back angrily, and through the ominous silence and the +regular tramp of feet beating the ground in unison, one seemed to hear +left... left... left. + +"Well done, lads!" said Prince Bagration. + +"Glad to do our best, your ex'len-lency!" came a confused shout from +the ranks. A morose soldier marching on the left turned his eyes on +Bagration as he shouted, with an expression that seemed to say: "We +know that ourselves!" Another, without looking round, as though +fearing to relax, shouted with his mouth wide open and passed on. + +The order was given to halt and down knapsacks. + +Bagration rode round the ranks that had marched past him and +dismounted. He gave the reins to a Cossack, took off and handed over +his felt coat, stretched his legs, and set his cap straight. The +head of the French column, with its officers leading, appeared from +below the hill. + +"Forward, with God!" said Bagration, in a resolute, sonorous +voice, turning for a moment to the front line, and slightly swinging +his arms, he went forward uneasily over the rough field with the +awkward gait of a cavalryman. Prince Andrew felt that an invisible +power was leading him forward, and experienced great happiness. + +The French were already near. Prince Andrew, walking beside +Bagration, could clearly distinguish their bandoliers, red epaulets, +and even their faces. (He distinctly saw an old French officer who, +with gaitered legs and turned-out toes, climbed the hill with +difficulty.) Prince Bagration gave no further orders and silently +continued to walk on in front of the ranks. Suddenly one shot after +another rang out from the French, smoke appeared all along their +uneven ranks, and musket shots sounded. Several of our men fell, among +them the round-faced officer who had marched so gaily and +complacently. But at the moment the first report was heard, +Bagration looked round and shouted, "Hurrah!" + +"Hurrah--ah!--ah!" rang a long-drawn shout from our ranks, and +passing Bagration and racing one another they rushed in an irregular +but joyous and eager crowd down the hill at their disordered foe. + + + + + +CHAPTER XIX + + +The attack of the Sixth Chasseurs secured the retreat of our right +flank. In the center Tushin's forgotten battery, which had managed +to set fire to the Schon Grabern village, delayed the French +advance. The French were putting out the fire which the wind was +spreading, and thus gave us time to retreat. The retirement of the +center to the other side of the dip in the ground at the rear was +hurried and noisy, but the different companies did not get mixed. +But our left--which consisted of the Azov and Podolsk infantry and the +Pavlograd hussars--was simultaneously attacked and outflanked by +superior French forces under Lannes and was thrown into confusion. +Bagration had sent Zherkov to the general commanding that left flank +with orders to retreat immediately. + +Zherkov, not removing his hand from his cap, turned his horse +about and galloped off. But no sooner had he left Bagration than his +courage failed him. He was seized by panic and could not go where it +was dangerous. + +Having reached the left flank, instead of going to the front where +the firing was, he began to look for the general and his staff where +they could not possibly be, and so did not deliver the order. + +The command of the left flank belonged by seniority to the commander +of the regiment Kutuzov had reviewed at Braunau and in which +Dolokhov was serving as a private. But the command of the extreme left +flank had been assigned to the commander of the Pavlograd regiment +in which Rostov was serving, and a misunderstanding arose. The two +commanders were much exasperated with one another and, long after +the action had begun on the right flank and the French were already +advancing, were engaged in discussion with the sole object of +offending one another. But the regiments, both cavalry and infantry, +were by no means ready for the impending action. From privates to +general they were not expecting a battle and were engaged in +peaceful occupations, the cavalry feeding the horses and the +infantry collecting wood. + +"He higher iss dan I in rank," said the German colonel of the +hussars, flushing and addressing an adjutant who had ridden up, "so +let him do what he vill, but I cannot sacrifice my hussars... +Bugler, sount ze retreat!" + +But haste was becoming imperative. Cannon and musketry, mingling +together, thundered on the right and in the center, while the +capotes of Lannes' sharpshooters were already seen crossing the +milldam and forming up within twice the range of a musket shot. The +general in command of the infantry went toward his horse with jerky +steps, and having mounted drew himself up very straight and tall and +rode to the Pavlograd commander. The commanders met with polite bows +but with secret malevolence in their hearts. + +"Once again, Colonel," said the general, "I can't leave half my +men in the wood. I beg of you, I beg of you," he repeated, "to +occupy the position and prepare for an attack." + +"I peg of you yourself not to mix in vot is not your business!" +suddenly replied the irate colonel. "If you vere in the cavalry..." + +"I am not in the cavalry, Colonel, but I am a Russian general and if +you are not aware of the fact..." + +"Quite avare, your excellency," suddenly shouted the colonel, +touching his horse and turning purple in the face. "Vill you be so +goot to come to ze front and see dat zis position iss no goot? I don't +vish to destroy my men for your pleasure!" + +"You forget yourself, Colonel. I am not considering my own +pleasure and I won't allow it to be said!" + +Taking the colonel's outburst as a challenge to his courage, the +general expanded his chest and rode, frowning, beside him to the front +line, as if their differences would be settled there amongst the +bullets. They reached the front, several bullets sped over them, and +they halted in silence. There was nothing fresh to be seen from the +line, for from where they had been before it had been evident that +it was impossible for cavalry to act among the bushes and broken +ground, as well as that the French were outflanking our left. The +general and colonel looked sternly and significantly at one another +like two fighting cocks preparing for battle, each vainly trying to +detect signs of cowardice in the other. Both passed the examination +successfully. As there was nothing to said, and neither wished to give +occasion for it to be alleged that he had been the first to leave +the range of fire, they would have remained there for a long time +testing each other's courage had it not been that just then they heard +the rattle of musketry and a muffled shout almost behind them in the +wood. The French had attacked the men collecting wood in the copse. It +was no longer possible for the hussars to retreat with the infantry. +They were cut off from the line of retreat on the left by the +French. However inconvenient the position, it was now necessary to +attack in order to cut away through for themselves. + +The squadron in which Rostov was serving had scarcely time to +mount before it was halted facing the enemy. Again, as at the Enns +bridge, there was nothing between the squadron and the enemy, and +again that terrible dividing line of uncertainty and fear- +resembling the line separating the living from the dead--lay between +them. All were conscious of this unseen line, and the question whether +they would cross it or not, and how they would cross it, +agitated them all. + +The colonel rode to the front, angrily gave some reply to +questions put to him by the officers, and, like a man desperately +insisting on having his own way, gave an order. No one said anything +definite, but the rumor of an attack spread through the squadron. +The command to form up rang out and the sabers whizzed as they were +drawn from their scabbards. Still no one moved. The troops of the left +flank, infantry and hussars alike, felt that the commander did not +himself know what to do, and this irresolution communicated itself +to the men. + +"If only they would be quick!" thought Rostov, feeling that at +last the time had come to experience the joy of an attack of which +he had so often heard from his fellow hussars. + +"Fo'ward, with God, lads!" rang out Denisov's voice. "At a twot +fo'ward!" + +The horses' croups began to sway in the front line. Rook pulled at +the reins and started of his own accord. + +Before him, on the right, Rostov saw the front lines of his +hussars and still farther ahead a dark line which he could not see +distinctly but took to be the enemy. Shots could be heard, but some +way off. + +"Faster!" came the word of command, and Rostov felt Rook's flanks +drooping as he broke into a gallop. + +Rostov anticipated his horse's movements and became more and more +elated. He had noticed a solitary tree ahead of him. This tree had +been in the middle of the line that had seemed so terrible--and now he +had crossed that line and not only was there nothing terrible, but +everything was becoming more and more happy and animated. "Oh, how I +will slash at him!" thought Rostov, gripping the hilt of his saber. + +"Hur-a-a-a-ah!" came a roar of voices. "Let anyone come my way now," +thought Rostov driving his spurs into Rook and letting him go at a +full gallop so that he outstripped the others. Ahead, the enemy was +already visible. Suddenly something like a birch broom seemed to sweep +over the squadron. Rostov raised his saber, ready to strike, but at +that instant the trooper Nikitenko, who was galloping ahead, shot away +from him, and Rostov felt as in a dream that he continued to be +carried forward with unnatural speed but yet stayed on the same +spot. From behind him Bondarchuk, an hussar he knew, jolted against +him and looked angrily at him. Bondarchuk's horse swerved and galloped +past. + +"How is it I am not moving? I have fallen, I am killed!" Rostov +asked and answered at the same instant. He was alone in the middle +of a field. Instead of the moving horses and hussars' backs, he saw +nothing before him but the motionless earth and the stubble around +him. There was warm blood under his arm. "No, I am wounded and the +horse is killed." Rook tried to rise on his forelegs but fell back, +pinning his rider's leg. Blood was flowing from his head; he struggled +but could not rise. Rostov also tried to rise but fell back, his +sabretache having become entangled in the saddle. Where our men +were, and where the French, he did not know. There was no one near. + +Having disentangled his leg, he rose. "Where, on which side, was now +the line that had so sharply divided the two armies?" he asked himself +and could not answer. "Can something bad have happened to me?" he +wondered as he got up: and at that moment he felt that something +superfluous was hanging on his benumbed left arm. The wrist felt as if +it were not his. He examined his hand carefully, vainly trying to find +blood on it. "Ah, here are people coming," he thought joyfully, seeing +some men running toward him. "They will help me!" In front came a +man wearing a strange shako and a blue cloak, swarthy, sunburned, +and with a hooked nose. Then came two more, and many more running +behind. One of them said something strange, not in Russian. In among +the hindmost of these men wearing similar shakos was a Russian hussar. +He was being held by the arms and his horse was being led behind him. + +"It must be one of ours, a prisoner. Yes. Can it be that they will +take me too? Who are these men?" thought Rostov, scarcely believing +his eyes. "Can they be French?" He looked at the approaching +Frenchmen, and though but a moment before he had been galloping to get +at them and hack them to pieces, their proximity now seemed so awful +that he could not believe his eyes. "Who are they? Why are they +running? Can they be coming at me? And why? To kill me? Me whom +everyone is so fond of?" He remembered his mother's love for him, +and his family's, and his friends', and the enemy's intention to +kill him seemed impossible. "But perhaps they may do it!" For more +than ten seconds he stood not moving from the spot or realizing the +situation. The foremost Frenchman, the one with the hooked nose, was +already so close that the expression of his face could be seen. And +the excited, alien face of that man, his bayonet hanging down, holding +his breath, and running so lightly, frightened Rostov. He seized his +pistol and, instead of firing it, flung it at the Frenchman and ran +with all his might toward the bushes. He did not now run with the +feeling of doubt and conflict with which he had trodden the Enns +bridge, but with the feeling of a hare fleeing from the hounds. One +single sentiment, that of fear for his young and happy life, possessed +his whole being. Rapidly leaping the furrows, he fled across the field +with the impetuosity he used to show at catchplay, now and then +turning his good-natured, pale, young face to look back. A shudder +of terror went through him: "No, better not look," he thought, but +having reached the bushes he glanced round once more. The French had +fallen behind, and just as he looked round the first man changed his +run to a walk and, turning, shouted something loudly to a comrade +farther back. Rostov paused. "No, there's some mistake," thought he. +"They can't have wanted to kill me." But at the same time, his left +arm felt as heavy as if a seventy-pound weight were tied to it. He +could run no more. The Frenchman also stopped and took aim. Rostov +closed his eyes and stooped down. One bullet and then another whistled +past him. He mustered his last remaining strength, took hold of his +left hand with his right, and reached the bushes. Behind these were +some Russian sharpshooters. + + + + + +CHAPTER XX + + +The infantry regiments that had been caught unawares in the +outskirts of the wood ran out of it, the different companies getting +mixed, and retreated as a disorderly crowd. One soldier, in his +fear, uttered the senseless cry, "Cut off!" that is so terrible in +battle, and that word infected the whole crowd with a feeling of +panic. + +"Surrounded! Cut off? We're lost!" shouted the fugitives. + +The moment he heard the firing and the cry from behind, the +general realized that something dreadful had happened to his regiment, +and the thought that he, an exemplary officer of many years' service +who had never been to blame, might be held responsible at headquarters +for negligence or inefficiency so staggered him that, forgetting the +recalcitrant cavalry colonel, his own dignity as a general, and +above all quite forgetting the danger and all regard for +self-preservation, he clutched the crupper of his saddle and, spurring +his horse, galloped to the regiment under a hail of bullets which fell +around, but fortunately missed him. His one desire was to know what +was happening and at any cost correct, or remedy, the mistake if he +had made one, so that he, an exemplary officer of twenty-two years' +service, who had never been censured, should not be held to blame. + +Having galloped safely through the French, he reached a field behind +the copse across which our men, regardless of orders, were running and +descending the valley. That moment of moral hesitation which decides +the fate of battles had arrived. Would this disorderly crowd of +soldiers attend to the voice of their commander, or would they, +disregarding him, continue their flight? Despite his desperate +shouts that used to seem so terrible to the soldiers, despite his +furious purple countenance distorted out of all likeness to his former +self, and the flourishing of his saber, the soldiers all continued +to run, talking, firing into the air, and disobeying orders. The moral +hesitation which decided the fate of battles was evidently culminating +in a panic. + +The general had a fit of coughing as a result of shouting and of the +powder smoke and stopped in despair. Everything seemed lost. But at +that moment the French who were attacking, suddenly and without any +apparent reason, ran back and disappeared from the outskirts, and +Russian sharpshooters showed themselves in the copse. It was +Timokhin's company, which alone had maintained its order in the wood +and, having lain in ambush in a ditch, now attacked the French +unexpectedly. Timokhin, armed only with a sword, had rushed at the +enemy with such a desperate cry and such mad, drunken determination +that, taken by surprise, the French had thrown down their muskets +and run. Dolokhov, running beside Timokhin, killed a Frenchman at +close quarters and was the first to seize the surrendering French +officer by his collar. Our fugitives returned, the battalions +re-formed, and the French who had nearly cut our left flank in half +were for the moment repulsed. Our reserve units were able to join +up, and the fight was at an end. The regimental commander and Major +Ekonomov had stopped beside a bridge, letting the retreating companies +pass by them, when a soldier came up and took hold of the +commander's stirrup, almost leaning against him. The man was wearing a +bluish coat of broadcloth, he had no knapsack or cap, his head was +bandaged, and over his shoulder a French munition pouch was slung. +He had an officer's sword in his hand. The soldier was pale, his +blue eyes looked impudently into the commander's face, and his lips +were smiling. Though the commander was occupied in giving instructions +to Major Ekonomov, he could not help taking notice of the soldier. + +"Your excellency, here are two trophies," said Dolokhov, pointing to +the French sword and pouch. "I have taken an officer prisoner. I +stopped the company." Dolokhov breathed heavily from weariness and +spoke in abrupt sentences. "The whole company can bear witness. I +beg you will remember this, your excellency!" + +"All right, all right," replied the commander, and turned to Major +Ekonomov. + +But Dolokhov did not go away; he untied the handkerchief around +his head, pulled it off, and showed the blood congealed on his hair. + +"A bayonet wound. I remained at the front. Remember, your +excellency!" + + +Tushin's battery had been forgotten and only at the very end of +the action did Prince Bagration, still hearing the cannonade in the +center, send his orderly staff officer, and later Prince Andrew +also, to order the battery to retire as quickly as possible. When +the supports attached to Tushin's battery had been moved away in the +middle of the action by someone's order, the battery had continued +firing and was only not captured by the French because the enemy could +not surmise that anyone could have the effrontery to continue firing +from four quite undefended guns. On the contrary, the energetic action +of that battery led the French to suppose that here--in the center- +the main Russian forces were concentrated. Twice they had attempted to +attack this point, but on each occasion had been driven back by +grapeshot from the four isolated guns on the hillock. + +Soon after Prince Bagration had left him, Tushin had succeeded in +setting fire to Schon Grabern. + +"Look at them scurrying! It's burning! Just see the smoke! Fine! +Grand! Look at the smoke, the smoke!" exclaimed the artillerymen, +brightening up. + +All the guns, without waiting for orders, were being fired in the +direction of the conflagration. As if urging each other on, the +soldiers cried at each shot: "Fine! That's good! Look at it... Grand!" +The fire, fanned by the breeze, was rapidly spreading. The French +columns that had advanced beyond the village went back; but as +though in revenge for this failure, the enemy placed ten guns to the +right of the village and began firing them at Tushin's battery. + +In their childlike glee, aroused by the fire and their luck in +successfully cannonading the French, our artillerymen only noticed +this battery when two balls, and then four more, fell among our +guns, one knocking over two horses and another tearing off a +munition-wagon driver's leg. Their spirits once roused were, +however, not diminished, but only changed character. The horses were +replaced by others from a reserve gun carriage, the wounded were +carried away, and the four guns were turned against the ten-gun +battery. Tushin's companion officer had been killed at the beginning +of the engagement and within an hour seventeen of the forty men of the +guns' crews had been disabled, but the artillerymen were still as +merry and lively as ever. Twice they noticed the French appearing +below them, and then they fired grapeshot at them. + +Little Tushin, moving feebly and awkwardly, kept telling his orderly +to "refill my pipe for that one!" and then, scattering sparks from it, +ran forward shading his eyes with his small hand to look at the +French. + +"Smack at 'em, lads!" he kept saying, seizing the guns by the wheels +and working the screws himself. + +Amid the smoke, deafened by the incessant reports which always +made him jump, Tushin not taking his pipe from his mouth ran from +gun to gun, now aiming, now counting the charges, now giving orders +about replacing dead or wounded horses and harnessing fresh ones, +and shouting in his feeble voice, so high pitched and irresolute. +His face grew more and more animated. Only when a man was killed or +wounded did he frown and turn away from the sight, shouting angrily at +the men who, as is always the case, hesitated about lifting the +injured or dead. The soldiers, for the most part handsome fellows and, +as is always the case in an artillery company, a head and shoulders +taller and twice as broad as their officer--all looked at their +commander like children in an embarrassing situation, and the +expression on his face was invariably reflected on theirs. + +Owing to the terrible uproar and the necessity for concentration and +activity, Tushin did not experience the slightest unpleasant sense +of fear, and the thought that he might be killed or badly wounded +never occurred to him. On the contrary, he became more and more +elated. It seemed to him that it was a very long time ago, almost a +day, since he had first seen the enemy and fired the first shot, and +that the corner of the field he stood on was well-known and familiar +ground. Though he thought of everything, considered everything, and +did everything the best of officers could do in his position, he was +in a state akin to feverish delirium or drunkenness. + +From the deafening sounds of his own guns around him, the whistle +and thud of the enemy's cannon balls, from the flushed and +perspiring faces of the crew bustling round the guns, from the sight +of the blood of men and horses, from the little puffs of smoke on +the enemy's side (always followed by a ball flying past and striking +the earth, a man, a gun, a horse), from the sight of all these +things a fantastic world of his own had taken possession of his +brain and at that moment afforded him pleasure. The enemy's guns +were in his fancy not guns but pipes from which occasional puffs +were blown by an invisible smoker. + +"There... he's puffing again," muttered Tushin to himself, as a +small cloud rose from the hill and was borne in a streak to the left +by the wind. + +"Now look out for the ball... we'll throw it back." + +"What do you want, your honor?" asked an artilleryman, standing +close by, who heard him muttering. + +"Nothing... only a shell..." he answered. + +"Come along, our Matvevna!" he said to himself. "Matvevna"* was +the name his fancy gave to the farthest gun of the battery, which +was large and of an old pattern. The French swarming round their +guns seemed to him like ants. In that world, the handsome drunkard +Number One of the second gun's crew was "uncle"; Tushin looked at +him more often than at anyone else and took delight in his every +movement. The sound of musketry at the foot of the hill, now +diminishing, now increasing, seemed like someone's breathing. He +listened intently to the ebb and flow of these sounds. + + +*Daughter of Matthew. + + +"Ah! Breathing again, breathing!" he muttered to himself. + +He imagined himself as an enormously tall, powerful man who was +throwing cannon balls at the French with both hands. + +"Now then, Matvevna, dear old lady, don't let me down!" he was +saying as he moved from the gun, when a strange, unfamiliar voice +called above his head: "Captain Tushin! Captain!" + +Tushin turned round in dismay. It was the staff officer who had +turned him out of the booth at Grunth. He was shouting in a gasping +voice: + +"Are you mad? You have twice been ordered to retreat, and you..." + +"Why are they down on me?" thought Tushin, looking in alarm at his +superior. + +"I... don't..." he muttered, holding up two fingers to his cap. +"I..." + +But the staff officer did not finish what he wanted to say. A cannon +ball, flying close to him, caused him to duck and bend over his horse. +He paused, and just as he was about to say something more, another +ball stopped him. He turned his horse and galloped off. + +"Retire! All to retire!" he shouted from a distance. + +The soldiers laughed. A moment later, an adjutant arrived with the +same order. + +It was Prince Andrew. The first thing he saw on riding up to the +space where Tushin's guns were stationed was an unharnessed horse with +a broken leg, that lay screaming piteously beside the harnessed +horses. Blood was gushing from its leg as from a spring. Among the +limbers lay several dead men. One ball after another passed over as he +approached and he felt a nervous shudder run down his spine. But the +mere thought of being afraid roused him again. "I cannot be afraid," +thought he, and dismounted slowly among the guns. He delivered the +order and did not leave the battery. He decided to have the guns +removed from their positions and withdrawn in his presence. Together +with Tushin, stepping across the bodies and under a terrible fire from +the French, he attended to the removal of the guns. + +"A staff officer was here a minute ago, but skipped off," said an +artilleryman to Prince Andrew. "Not like your honor!" + +Prince Andrew said nothing to Tushin. They were both so busy as to +seem not to notice one another. When having limbered up the only two +cannon that remained uninjured out of the four, they began moving down +the hill (one shattered gun and one unicorn were left behind), +Prince Andrew rode up to Tushin. + +"Well, till we meet again..." he said, holding out his hand to +Tushin. + +"Good-by, my dear fellow," said Tushin. "Dear soul! Good-by, my dear +fellow!" and for some unknown reason tears suddenly filled his eyes. + + + + + +CHAPTER XXI + + +The wind had fallen and black clouds, merging with the powder smoke, +hung low over the field of battle on the horizon. It was growing +dark and the glow of two conflagrations was the more conspicuous. +The cannonade was dying down, but the rattle of musketry behind and on +the right sounded oftener and nearer. As soon as Tushin with his guns, +continually driving round or coming upon wounded men, was out of range +of fire and had descended into the dip, he was met by some of the +staff, among them the staff officer and Zherkov, who had been twice +sent to Tushin's battery but had never reached it. Interrupting one +another, they all gave, and transmitted, orders as to how to +proceed, reprimanding and reproaching him. Tushin gave no orders, and, +silently--fearing to speak because at every word he felt ready to weep +without knowing why--rode behind on his artillery nag. Though the +orders were to abandon the wounded, many of them dragged themselves +after troops and begged for seats on the gun carriages. The jaunty +infantry officer who just before the battle had rushed out of Tushin's +wattle shed was laid, with a bullet in his stomach, on "Matvevna's" +carriage. At the foot of the hill, a pale hussar cadet, supporting one +hand with the other, came up to Tushin and asked for a seat. + +"Captain, for God's sake! I've hurt my arm," he said timidly. "For +God's sake... I can't walk. For God's sake!" + +It was plain that this cadet had already repeatedly asked for a lift +and been refused. He asked in a hesitating, piteous voice. + +"Tell them to give me a seat, for God's sake!" + +"Give him a seat," said Tushin. "Lay a cloak for him to sit on, +lad," he said, addressing his favorite soldier. "And where is the +wounded officer?" + +"He has been set down. He died," replied someone. + +"Help him up. Sit down, dear fellow, sit down! Spread out the cloak, +Antonov." + +The cadet was Rostov. With one hand he supported the other; he was +pale and his jaw trembled, shivering feverishly. He was placed on +"Matvevna," the gun from which they had removed the dead officer. +The cloak they spread under him was wet with blood which stained his +breeches and arm. + +"What, are you wounded, my lad?" said Tushin, approaching the gun on +which Rostov sat. + +"No, it's a sprain." + +"Then what is this blood on the gun carriage?" inquired Tushin. + +"It was the officer, your honor, stained it," answered the +artilleryman, wiping away the blood with his coat sleeve, as if +apologizing for the state of his gun. + +It was all that they could do to get the guns up the rise aided by +the infantry, and having reached the village of Gruntersdorf they +halted. It had grown so dark that one could not distinguish the +uniforms ten paces off, and the firing had begun to subside. Suddenly, +near by on the right, shouting and firing were again heard. Flashes of +shot gleamed in the darkness. This was the last French attack and +was met by soldiers who had sheltered in the village houses. They +all rushed out of the village again, but Tushin's guns could not move, +and the artillerymen, Tushin, and the cadet exchanged silent glances +as they awaited their fate. The firing died down and soldiers, talking +eagerly, streamed out of a side street. + +"Not hurt, Petrov?" asked one. + +"We've given it 'em hot, mate! They won't make another push now," +said another. + +"You couldn't see a thing. How they shot at their own fellows! +Nothing could be seen. Pitch-dark, brother! Isn't there something to +drink?" + +The French had been repulsed for the last time. And again and +again in the complete darkness Tushin's guns moved forward, surrounded +by the humming infantry as by a frame. + +In the darkness, it seemed as though a gloomy unseen river was +flowing always in one direction, humming with whispers and talk and +the sound of hoofs and wheels. Amid the general rumble, the groans and +voices of the wounded were more distinctly heard than any other +sound in the darkness of the night. The gloom that enveloped the +army was filled with their groans, which seemed to melt into one +with the darkness of the night. After a while the moving mass became +agitated, someone rode past on a white horse followed by his suite, +and said something in passing: "What did he say? Where to, now? +Halt, is it? Did he thank us?" came eager questions from all sides. +The whole moving mass began pressing closer together and a report +spread that they were ordered to halt: evidently those in front had +halted. All remained where they were in the middle of the muddy road. + +Fires were lighted and the talk became more audible. Captain Tushin, +having given orders to his company, sent a soldier to find a +dressing station or a doctor for the cadet, and sat down by a +bonfire the soldiers had kindled on the road. Rostov, too, dragged +himself to the fire. From pain, cold, and damp, a feverish shivering +shook his whole body. Drowsiness was irresistibly mastering him, but +he kept awake by an excruciating pain in his arm, for which +he could find no satisfactory position. He kept closing his eyes and +then again looking at the fire, which seemed to him dazzlingly red, +and at the feeble, round-shouldered figure of Tushin who was sitting +cross-legged like a Turk beside him. Tushin's large, kind, intelligent +eyes were fixed with sympathy and commiseration on Rostov, who saw +that Tushin with his whole heart wished to help him but could not. + +From all sides were heard the footsteps and talk of the infantry, +who were walking, driving past, and settling down all around. The +sound of voices, the tramping feet, the horses' hoofs moving in mud, +the crackling of wood fires near and afar, merged into one tremulous +rumble. + +It was no longer, as before, a dark, unseen river flowing through +the gloom, but a dark sea swelling and gradually subsiding after a +storm. Rostov looked at and listened listlessly to what passed +before and around him. An infantryman came to the fire, squatted on +his heels, held his hands to the blaze, and turned away his face. + +"You don't mind your honor?" he asked Tushin. "I've lost my company, +your honor. I don't know where... such bad luck!" + +With the soldier, an infantry officer with a bandaged cheek came +up to the bonfire, and addressing Tushin asked him to have the guns +moved a trifle to let a wagon go past. After he had gone, two soldiers +rushed to the campfire. They were quarreling and fighting desperately, +each trying to snatch from the other a boot they were both holding +on to. + +"You picked it up?... I dare say! You're very smart!" one of them +shouted hoarsely. + +Then a thin, pale soldier, his neck bandaged with a bloodstained leg +band, came up and in angry tones asked the artillerymen for water. + +"Must one die like a dog?" said he. + +Tushin told them to give the man some water. Then a cheerful soldier +ran up, begging a little fire for the infantry. + +"A nice little hot torch for the infantry! Good luck to you, +fellow countrymen. Thanks for the fire--we'll return it with +interest," said he, carrying away into the darkness a glowing stick. + +Next came four soldiers, carrying something heavy on a cloak, and +passed by the fire. One of them stumbled. + +"Who the devil has put the logs on the road?" snarled he. + +"He's dead--why carry him?" said another. + +"Shut up!" + +And they disappeared into the darkness with with their load. + +"Still aching?" Tushin asked Rostov in a whisper. + +"Yes." + +"Your honor, you're wanted by the general. He is in the hut here," +said a gunner, coming up to Tushin. + +"Coming, friend." + +Tushin rose and, buttoning his greatcoat and pulling it straight, +walked away from the fire. + +Not far from the artillery campfire, in a hut that had been prepared +for him, Prince Bagration sat at dinner, talking with some +commanding officers who had gathered at his quarters. The little old +man with the half-closed eyes was there greedily gnawing a mutton +bone, and the general who had served blamelessly for twenty-two years, +flushed by a glass of vodka and the dinner; and the staff officer with +the signet ring, and Zherkov, uneasily glancing at them all, and +Prince Andrew, pale, with compressed lips and feverishly glittering +eyes. + +In a corner of the hut stood a standard captured from the French, +and the accountant with the naive face was feeling its texture, +shaking his head in perplexity--perhaps because the banner really +interested him, perhaps because it was hard for him, hungry as he was, +to look on at a dinner where there was no place for him. In the next +hut there was a French colonel who had been taken prisoner by our +dragoons. Our officers were flocking in to look at him. Prince +Bagration was thanking the individual commanders and inquiring into +details of the action and our losses. The general whose regiment had +been inspected at Braunau was informing the prince that as soon as the +action began he had withdrawn from the wood, mustered the men who were +woodcutting, and, allowing the French to pass him, had made a +bayonet charge with two battalions and had broken up the French +troops. + +"When I saw, your excellency, that their first battalion was +disorganized, I stopped in the road and thought: 'I'll let them come +on and will meet them with the fire of the whole battalion'--and +that's what I did." + +The general had so wished to do this and was so sorry he had not +managed to do it that it seemed to him as if it had really happened. +Perhaps it might really have been so? Could one possibly make out amid +all that confusion what did or did not happen? + +"By the way, your excellency, I should inform you," he continued- +remembering Dolokhov's conversation with Kutuzov and his last +interview with the gentleman-ranker--"that Private Dolokhov, who was +reduced to the ranks, took a French officer prisoner in my presence +and particularly distinguished himself." + +"I saw the Pavlograd hussars attack there, your excellency," +chimed in Zherkov, looking uneasily around. He had not seen the +hussars all that day, but had heard about them from an infantry +officer. "They broke up two squares, your excellency." + +Several of those present smiled at Zherkov's words, expecting one of +his usual jokes, but noticing that what he was saying redounded to the +glory of our arms and of the day's work, they assumed a serious +expression, though many of them knew that what he was saying was a lie +devoid of any foundation. Prince Bagration turned to the old colonel: + +"Gentlemen, I thank you all; all arms have behaved heroically: +infantry, cavalry, and artillery. How was it that two guns were +abandoned in the center?" he inquired, searching with his eyes for +someone. (Prince Bagration did not ask about the guns on the left +flank; he knew that all the guns there had been abandoned at the +very beginning of the action.) "I think I sent you?" he added, turning +to the staff officer on duty. + +"One was damaged," answered the staff officer, "and the other I +can't understand. I was there all the time giving orders and had +only just left.... It is true that it was hot there," he added, +modestly. + +Someone mentioned that Captain Tushin was bivouacking close to the +village and had already been sent for. + +"Oh, but you were there?" said Prince Bagration, addressing Prince +Andrew. + +"Of course, we only just missed one another," said the staff +officer, with a smile to Bolkonski. + +"I had not the pleasure of seeing you," said Prince Andrew, coldly +and abruptly. + +All were silent. Tushin appeared at the threshold and made his way +timidly from behind the backs of the generals. As he stepped past +the generals in the crowded hut, feeling embarrassed as he always +was by the sight of his superiors, he did not notice the staff of +the banner and stumbled over it. Several of those present laughed. + +"How was it a gun was abandoned?" asked Bagration, frowning, not +so much at the captain as at those who were laughing, among whom +Zherkov laughed loudest. + +Only now, when he was confronted by the stern authorities, did his +guilt and the disgrace of having lost two guns and yet remaining alive +present themselves to Tushin in all their horror. He had been so +excited that he had not thought about it until that moment. The +officers' laughter confused him still more. He stood before +Bagration with his lower jaw trembling and was hardly able to +mutter: "I don't know... your excellency... I had no men... your +excellency." + +"You might have taken some from the covering troops." + +Tushin did not say that there were no covering troops, though that +was perfectly true. He was afraid of getting some other officer into +trouble, and silently fixed his eyes on Bagration as a schoolboy who +has blundered looks at an examiner. + +The silence lasted some time. Prince Bagration, apparently not +wishing to be severe, found nothing to say; the others did not venture +to intervene. Prince Andrew looked at Tushin from under his brows +and his fingers twitched nervously. + +"Your excellency!" Prince Andrew broke the silence with his abrupt +voice," you were pleased to send me to Captain Tushin's battery. I +went there and found two thirds of the men and horses knocked out, two +guns smashed, and no supports at all." + +Prince Bagration and Tushin looked with equal intentness at +Bolkonski, who spoke with suppressed agitation. + +"And, if your excellency will allow me to express my opinion," he +continued, "we owe today's success chiefly to the action of that +battery and the heroic endurance of Captain Tushin and his company," +and without awaiting a reply, Prince Andrew rose and left the table. + +Prince Bagration looked at Tushin, evidently reluctant to show +distrust in Bolkonski's emphatic opinion yet not feeling able fully to +credit it, bent his head, and told Tushin that he could go. Prince +Andrew went out with him. + +"Thank you; you saved me, my dear fellow!" said Tushin. + +Prince Andrew gave him a look, but said nothing and went away. He +felt sad and depressed. It was all so strange, so unlike what he had +hoped. + + +"Who are they? Why are they here? What do they want? And when will +all this end?" thought Rostov, looking at the changing shadows +before him. The pain in his arm became more and more intense. +Irresistible drowsiness overpowered him, red rings danced before his +eyes, and the impression of those voices and faces and a sense of +loneliness merged with the physical pain. It was they, these soldiers- +wounded and unwounded--it was they who were crushing, weighing down, +and twisting the sinews and scorching the flesh of his sprained arm +and shoulder. To rid himself of them he closed his eyes. + +For a moment he dozed, but in that short interval innumerable things +appeared to him in a dream: his mother and her large white hand, +Sonya's thin little shoulders, Natasha's eyes and laughter, Denisov +with his voice and mustache, and Telyanin and all that affair with +Telyanin and Bogdanich. That affair was the same thing as this soldier +with the harsh voice, and it was that affair and this soldier that +were so agonizingly, incessantly pulling and pressing his arm and +always dragging it in one direction. He tried to get away from them, +but they would not for an instant let his shoulder move a hair's +breadth. It would not ache--it would be well--if only they did not +pull it, but it was impossible to get rid of them. + +He opened his eyes and looked up. The black canopy of night hung +less than a yard above the glow of the charcoal. Flakes of falling +snow were fluttering in that light. Tushin had not returned, the +doctor had not come. He was alone now, except for a soldier who was +sitting naked at the other side of the fire, warming his thin yellow +body. + +"Nobody wants me!" thought Rostov. "There is no one to help me or +pity me. Yet I was once at home, strong, happy, and loved." He +sighed and, doing so, groaned involuntarily. + +"Eh, is anything hurting you?" asked the soldier, shaking his +shirt out over the fire, and not waiting for an answer he gave a grunt +and added: "What a lot of men have been crippled today--frightful!" + +Rostov did not listen to the soldier. He looked at the snowflakes +fluttering above the fire and remembered a Russian winter at his warm, +bright home, his fluffy fur coat, his quickly gliding sleigh, his +healthy body, and all the affection and care of his family. "And why +did I come here?" he wondered. + +Next day the French army did not renew their attack, and the remnant +of Bagration's detachment was reunited to Kutuzov's army. + + + + +BOOK THREE: 1805 + + + + + +CHAPTER I + + +Prince Vasili was not a man who deliberately thought out his +plans. Still less did he think of injuring anyone for his own +advantage. He was merely a man of the world who had got on and to whom +getting on had become a habit. Schemes and devices for which he +never rightly accounted to himself, but which formed the whole +interest of his life, were constantly shaping themselves in his +mind, arising from the circumstances and persons he met. Of these +plans he had not merely one or two in his head but dozens, some only +beginning to form themselves, some approaching achievement, and some +in course of disintegration. He did not, for instance, say to himself: +"This man now has influence, I must gain his confidence and friendship +and through him obtain a special grant." Nor did he say to himself: +"Pierre is a rich man, I must entice him to marry my daughter and lend +me the forty thousand rubles I need." But when he came across +a man of position his instinct immediately told him that this +man could be useful, and without any premeditation Prince Vasili +took the first opportunity to gain his confidence, flatter him, become +intimate with him, and finally make his request. + +He had Pierre at hand in Moscow and procured for him an +appointment as Gentleman of the Bedchamber, which at that time +conferred the status of Councilor of State, and insisted on the +young man accompanying him to Petersburg and staying at his house. +With apparent absent-mindedness, yet with unhesitating assurance +that he was doing the right thing, Prince Vasili did everything to get +Pierre to marry his daughter. Had he thought out his plans +beforehand he could not have been so natural and shown such unaffected +familiarity in intercourse with everybody both above and below him +in social standing. Something always drew him toward those richer +and more powerful than himself and he had rare skill in seizing the +most opportune moment for making use of people. + +Pierre, on unexpectedly becoming Count Bezukhov and a rich man, felt +himself after his recent loneliness and freedom from cares so beset +and preoccupied that only in bed was he able to be by himself. He +had to sign papers, to present himself at government offices, the +purpose of which was not clear to him, to question his chief +steward, to visit his estate near Moscow, and to receive many people +who formerly did not even wish to know of his existence but would +now have been offended and grieved had he chosen not to see them. +These different people--businessmen, relations, and acquaintances +alike--were all disposed to treat the young heir in the most +friendly and flattering manner: they were all evidently firmly +convinced of Pierre's noble qualities. He was always hearing such +words as: "With your remarkable kindness," or, "With your excellent +heart," "You are yourself so honorable Count," or, "Were he as +clever as you," and so on, till he began sincerely to believe in his +own exceptional kindness and extraordinary intelligence, the more so +as in the depth of his heart it had always seemed to him that he +really was very kind and intelligent. Even people who had formerly +been spiteful toward him and evidently unfriendly now became gentle +and affectionate. The angry eldest princess, with the long waist and +hair plastered down like a doll's, had come into Pierre's room after +the funeral. With drooping eyes and frequent blushes she told him +she was very sorry about their past misunderstandings and did not +now feel she had a right to ask him for anything, except only for +permission, after the blow she had received, to remain for a few weeks +longer in the house she so loved and where she had sacrificed so much. +She could not refrain from weeping at these words. Touched that this +statuesque princess could so change, Pierre took her hand and begged +her forgiveness, without knowing what for. From that day the eldest +princess quite changed toward Pierre and began knitting a striped +scarf for him. + +"Do this for my sake, mon cher; after all, she had to put up with +a great deal from the deceased," said Prince Vasili to him, handing +him a deed to sign for the princess' benefit. + +Prince Vasili had come to the conclusion that it was necessary to +throw this bone--a bill for thirty thousand rubles--to the poor +princess that it might not occur to her to speak of his share in the +affair of the inlaid portfolio. Pierre signed the deed and after +that the princess grew still kinder. The younger sisters also became +affectionate to him, especially the youngest, the pretty one with +the mole, who often made him feel confused by her smiles and her own +confusion when meeting him. + +It seemed so natural to Pierre that everyone should like him, and it +would have seemed so unnatural had anyone disliked him, that he +could not but believe in the sincerity of those around him. Besides, +he had no time to ask himself whether these people were sincere or +not. He was always busy and always felt in a state of mild and +cheerful intoxication. He felt as though he were the center of some +important and general movement; that something was constantly expected +of him, that if he did not do it he would grieve and disappoint many +people, but if he did this and that, all would be well; and he did +what was demanded of him, but still that happy result always +remained in the future. + +More than anyone else, Prince Vasili took possession of Pierre's +affairs and of Pierre himself in those early days. From the death of +Count Bezukhov he did not let go his hold of the lad. He had the air +of a man oppressed by business, weary and suffering, who yet would +not, for pity's sake, leave this helpless youth who, after all, was +the son of his old friend and the possessor of such enormous wealth, +to the caprice of fate and the designs of rogues. During the few +days he spent in Moscow after the death of Count Bezukhov, he would +call Pierre, or go to him himself, and tell him what ought to be +done in a tone of weariness and assurance, as if he were adding +every time: "You know I am overwhelmed with business and it is +purely out of charity that I trouble myself about you, and you also +know quite well that what I propose is the only thing possible." + +"Well, my dear fellow, tomorrow we are off at last," said Prince +Vasili one day, closing his eyes and fingering Pierre's elbow, +speaking as if he were saying something which had long since been +agreed upon and could not now be altered. "We start tomorrow and I'm +giving you a place in my carriage. I am very glad. All our important +business here is now settled, and I ought to have been off long ago. +Here is something I have received from the chancellor. I asked him for +you, and you have been entered in the diplomatic corps and made a +Gentleman of the Bedchamber. The diplomatic career now lies open +before you." + +Notwithstanding the tone of wearied assurance with which these words +were pronounced, Pierre, who had so long been considering his +career, wished to make some suggestion. But Prince Vasili +interrupted him in the special deep cooing tone, precluding the +possibility of interrupting his speech, which he used in extreme cases +when special persuasion was needed. + +"Mais, mon cher, I did this for my own sake, to satisfy my +conscience, and there is nothing to thank me for. No one has ever +complained yet of being too much loved; and besides, you are free, you +could throw it up tomorrow. But you will see everything for yourself +when you get to Petersburg. It is high time for you to get away from +these terrible recollections." Prince Vasili sighed. "Yes, yes, my +boy. And my valet can go in your carriage. Ah! I was nearly +forgetting," he added. "You know, mon cher, your father and I had some +accounts to settle, so I have received what was due from the Ryazan +estate and will keep it; you won't require it. We'll go into the +accounts later." + +By "what was due from the Ryazan estate" Prince Vasili meant several +thousand rubles quitrent received from Pierre's peasants, which the +prince had retained for himself. + +In Petersburg, as in Moscow, Pierre found the same atmosphere of +gentleness and affection. He could not refuse the post, or rather +the rank (for he did nothing), that Prince Vasili had procured for +him, and acquaintances, invitations, and social occupations were so +numerous that, even more than in Moscow, he felt a sense of +bewilderment, bustle, and continual expectation of some good, always +in front of him but never attained. + +Of his former bachelor acquaintances many were no longer in +Petersburg. The Guards had gone to the front; Dolokhov had been +reduced to the ranks; Anatole was in the army somewhere in the +provinces; Prince Andrew was abroad; so Pierre had not the opportunity +to spend his nights as he used to like to spend them, or to open his +mind by intimate talks with a friend older than himself and whom he +respected. His whole time was taken up with dinners and balls and +was spent chiefly at Prince Vasili's house in the company of the stout +princess, his wife, and his beautiful daughter Helene. + +Like the others, Anna Pavlovna Scherer showed Pierre the change of +attitude toward him that had taken place in society. + +Formerly in Anna Pavlovna's presence, Pierre had always felt that +what he was saying was out of place, tactless and unsuitable, that +remarks which seemed to him clever while they formed in his mind +became foolish as soon as he uttered them, while on the contrary +Hippolyte's stupidest remarks came out clever and apt. Now +everything Pierre said was charmant. Even if Anna Pavlovna did not say +so, he could see that she wished to and only refrained out of regard +for his modesty. + +In the beginning of the winter of 1805-6 Pierre received one of Anna +Pavlovna's usual pink notes with an invitation to which was added: +"You will find the beautiful Helene here, whom it is always delightful +to see." + +When he read that sentence, Pierre felt for the first time that some +link which other people recognized had grown up between himself and +Helene, and that thought both alarmed him, as if some obligation +were being imposed on him which he could not fulfill, and pleased +him as an entertaining supposition. + +Anna Pavlovna's "At Home" was like the former one, only the +novelty she offered her guests this time was not Mortemart, but a +diplomatist fresh from Berlin with the very latest details of the +Emperor Alexander's visit to Potsdam, and of how the two august +friends had pledged themselves in an indissoluble alliance to uphold +the cause of justice against the enemy of the human race. Anna +Pavlovna received Pierre with a shade of melancholy, evidently +relating to the young man's recent loss by the death of Count Bezukhov +(everyone constantly considered it a duty to assure Pierre that he was +greatly afflicted by the death of the father he had hardly known), and +her melancholy was just like the august melancholy she showed at the +mention of her most august Majesty the Empress Marya Fedorovna. Pierre +felt flattered by this. Anna Pavlovna arranged the different groups in +her drawing room with her habitual skill. The large group, in which +were Prince Vasili and the generals, had the benefit of the +diplomat. Another group was at the tea table. Pierre wished to join +the former, but Anna Pavlovna--who was in the excited condition of a +commander on a battlefield to whom thousands of new and brilliant +ideas occur which there is hardly time to put in action--seeing +Pierre, touched his sleeve with her finger, saying: + +"Wait a bit, I have something in view for you this evening." (She +glanced at Helene and smiled at her.) "My dear Helene, be charitable +to my poor aunt who adores you. Go and keep her company for ten +minutes. And that it will not be too dull, here is the dear count +who will not refuse to accompany you." + +The beauty went to the aunt, but Anna Pavlovna detained Pierre, +looking as if she had to give some final necessary instructions. + +"Isn't she exquisite?" she said to Pierre, pointing to the stately +beauty as she glided away. "And how she carries herself! For so +young a girl, such tact, such masterly perfection of manner! It +comes from her heart. Happy the man who wins her! With her the least +worldly of men would occupy a most brilliant position in society. +Don't you think so? I only wanted to know your opinion," and Anna +Pavlovna let Pierre go. + +Pierre, in reply, sincerely agreed with her as to Helene's +perfection of manner. If he ever thought of Helene, it was just of her +beauty and her remarkable skill in appearing silently dignified in +society. + +The old aunt received the two young people in her corner, but seemed +desirous of hiding her adoration for Helene and inclined rather to +show her fear of Anna Pavlovna. She looked at her niece, as if +inquiring what she was to do with these people. On leaving them, +Anna Pavlovna again touched Pierre's sleeve, saying: "I hope you won't +say that it is dull in my house again," and she glanced at Helene. + +Helene smiled, with a look implying that she did not admit the +possibility of anyone seeing her without being enchanted. The aunt +coughed, swallowed, and said in French that she was very pleased to +see Helene, then she turned to Pierre with the same words of welcome +and the same look. In the middle of a dull and halting conversation, +Helene turned to Pierre with the beautiful bright smile that she +gave to everyone. Pierre was so used to that smile, and it had so +little meaning for him, that he paid no attention to it. The aunt +was just speaking of a collection of snuffboxes that had belonged to +Pierre's father, Count Bezukhov, and showed them her own box. Princess +Helene asked to see the portrait of the aunt's husband on the box lid. + +"That is probably the work of Vinesse," said Pierre, mentioning a +celebrated miniaturist, and he leaned over the table to take the +snuffbox while trying to hear what was being said at the other table. + +He half rose, meaning to go round, but the aunt handed him the +snuffbox, passing it across Helene's back. Helene stooped forward to +make room, and looked round with a smile. She was, as always at +evening parties, wearing a dress such as was then fashionable, cut +very low at front and back. Her bust, which had always seemed like +marble to Pierre, was so close to him that his shortsighted eyes could +not but perceive the living charm of her neck and shoulders, so near +to his lips that he need only have bent his head a little to have +touched them. He was conscious of the warmth of her body, the scent of +perfume, and the creaking of her corset as she moved. He did not see +her marble beauty forming a complete whole with her dress, but all the +charm of her body only covered by her garments. And having once seen +this he could not help being aware it, just as we cannot renew an +illusion we have once seen through. + +"So you have never noticed before how beautiful I am?" Helene seemed +to say. "You had not noticed that I am a woman? Yes, I am a woman +who may belong to anyone--to you too," said her glance. And at that +moment Pierre felt that Helene not only could, but must, be his +wife, and that it could not be otherwise. + +He knew this at that moment as surely as if he had been standing +at the altar with her. How and when this would be he did not know, +he did not even know if it would be a good thing (he even felt, he +knew not why, that it would be a bad thing), but he knew it would +happen. + +Pierre dropped his eyes, lifted them again, and wished once more +to see her as a distant beauty far removed from him, as he had seen +her every day until then, but he could no longer do it. He could +not, any more than a man who has been looking at a tuft of steppe +grass through the mist and taking it for a tree can again take it +for a tree after he has once recognized it to be a tuft of grass. +She was terribly close to him. She already had power over him, and +between them there was no longer any barrier except the barrier of his +own will. + +"Well, I will leave you in your little corner," came Anna Pavlovna's +voice, "I see you are all right there." + +And Pierre, anxiously trying to remember whether he had done +anything reprehensible, looked round with a blush. It seemed to him +that everyone knew what had happened to him as he knew it himself. + +A little later when he went up to the large circle, Anna Pavlovna +said to him: "I hear you are refitting your Petersburg house?" + +This was true. The architect had told him that it was necessary, and +Pierre, without knowing why, was having his enormous Petersburg +house done up. + +"That's a good thing, but don't move from Prince Vasili's. It is +good to have a friend like the prince," she said, smiling at Prince +Vasili. "I know something about that. Don't I? And you are still so +young. You need advice. Don't be angry with me for exercising an old +woman's privilege." + +She paused, as women always do, expecting something after they +have mentioned their age. "If you marry it will be a different thing," +she continued, uniting them both in one glance. Pierre did not look at +Helene nor she at him. But she was just as terribly close to him. He +muttered something and colored. + +When he got home he could not sleep for a long time for thinking +of what had happened. What had happened? Nothing. He had merely +understood that the woman he had known as a child, of whom when her +beauty was mentioned he had said absent-mindedly: "Yes, she's good +looking," he had understood that this woman might belong to him. + +"But she's stupid. I have myself said she is stupid," he thought. +"There is something nasty, something wrong, in the feeling she excites +in me. I have been told that her brother Anatole was in love with +her and she with him, that there was quite a scandal and that that's +why he was sent away. Hippolyte is her brother... Prince Vasili is her +father... It's bad...." he reflected, but while he was thinking this +(the reflection was still incomplete), he caught himself smiling and +was conscious that another line of thought had sprung up, and while +thinking of her worthlessness he was also dreaming of how she would be +his wife, how she would love him become quite different, and how all +he had thought and heard of her might be false. And he again saw her +not as the daughter of Prince Vasili, but visualized her whole body +only veiled by its gray dress. "But no! Why did this thought never +occur to me before?" and again he told himself that it was impossible, +that there would be something unnatural, and as it seemed to him +dishonorable, in this marriage. He recalled her former words and looks +and the words and looks of those who had seen them together. He +recalled Anna Pavlovna's words and looks when she spoke to him about +his house, recalled thousands of such hints from Prince Vasili and +others, and was seized by terror lest he had already, in some way, +bound himself to do something that was evidently wrong and that he +ought not to do. But at the very time he was expressing this +conviction to himself, in another part of his mind her image rose in +all its womanly beauty. + + + + + +CHAPTER II + +In November, 1805, Prince Vasili had to go on a tour of inspection +in four different provinces. He had arranged this for himself so as to +visit his neglected estates at the same time and pick up his son +Anatole where his regiment was stationed, and take him to visit Prince +Nicholas Bolkonski in order to arrange a match for him with the +daughter of that rich old man. But before leaving home and undertaking +these new affairs, Prince Vasili had to settle matters with Pierre, +who, it is true, had latterly spent whole days at home, that is, in +Prince Vasili's house where he was staying, and had been absurd, +excited, and foolish in Helene's presence (as a lover should be), +but had not yet proposed to her. + +"This is all very fine, but things must be settled," said Prince +Vasili to himself, with a sorrowful sigh, one morning, feeling that +Pierre who was under such obligations to him ("But never mind that") +was not behaving very well in this matter. "Youth, frivolity... +well, God be with him," thought he, relishing his own goodness of +heart, "but it must be brought to a head. The day after tomorrow +will be Lelya's name day. I will invite two or three people, and if he +does not understand what he ought to do then it will be my affair- +yes, my affair. I am her father." + +Six weeks after Anna Pavlovna's "At Home" and after the sleepless +night when he had decided that to marry Helene would be a calamity and +that he ought to avoid her and go away, Pierre, despite that decision, +had not left Prince Vasili's and felt with terror that in people's +eyes he was every day more and more connected with her, that it was +impossible for him to return to his former conception of her, that +he could not break away from her, and that though it would be a +terrible thing he would have to unite his fate with hers. He might +perhaps have been able to free himself but that Prince Vasili (who had +rarely before given receptions) now hardly let a day go by without +having an evening party at which Pierre had to be present unless he +wished to spoil the general pleasure and disappoint everyone's +expectation. Prince Vasili, in the rare moments when he was at home, +would take Pierre's hand in passing and draw it downwards, or +absent-mindedly hold out his wrinkled, clean-shaven cheek for Pierre +to kiss and would say: "Till tomorrow," or, "Be in to dinner or I +shall not see you," or, "I am staying in for your sake," and so on. +And though Prince Vasili, when he stayed in (as he said) for +Pierre's sake, hardly exchanged a couple of words with him, Pierre +felt unable to disappoint him. Every day he said to himself one and +the same thing: "It is time I understood her and made up my mind +what she really is. Was I mistaken before, or am I mistaken now? No, +she is not stupid, she is an excellent girl," he sometimes said to +himself "she never makes a mistake, never says anything stupid. She +says little, but what she does say is always clear and simple, so +she is not stupid. She never was abashed and is not abashed now, so +she cannot be a bad woman!" He had often begun to make reflections +or think aloud in her company, and she had always answered him +either by a brief but appropriate remark--showing that it did not +interest her--or by a silent look and smile which more palpably than +anything else showed Pierre her superiority. She was right in +regarding all arguments as nonsense in comparison with that smile. + +She always addressed him with a radiantly confiding smile meant +for him alone, in which there was something more significant than in +the general smile that usually brightened her face. Pierre knew that +everyone was waiting for him to say a word and cross a certain line, +and he knew that sooner or later he would step across it, but an +incomprehensible terror seized him at the thought of that dreadful +step. A thousand times during that month and a half while he felt +himself drawn nearer and nearer to that dreadful abyss, Pierre said to +himself: "What am I doing? I need resolution. Can it be that I have +none?" + +He wished to take a decision, but felt with dismay that in this +matter he lacked that strength of will which he had known in himself +and really possessed. Pierre was one of those who are only strong when +they feel themselves quite innocent, and since that day when he was +overpowered by a feeling of desire while stooping over the snuffbox at +Anna Pavlovna's, an unacknowledged sense of the guilt of that desire +paralyzed his will. + +On Helene's name day, a small party of just their own people--as his +wife said--met for supper at Prince Vasili's. All these friends and +relations had been given to understand that the fate of the young girl +would be decided that evening. The visitors were seated at supper. +Princess Kuragina, a portly imposing woman who had once been handsome, +was sitting at the head of the table. On either side of her sat the +more important guests--an old general and his wife, and Anna +Pavlovna Scherer. At the other end sat the younger and less +important guests, and there too sat the members of the family, and +Pierre and Helene, side by side. Prince Vasili was not having any +supper: he went round the table in a merry mood, sitting down now by +one, now by another, of the guests. To each of them he made some +careless and agreeable remark except to Pierre and Helene, whose +presence he seemed not to notice. He enlivened the whole party. The +wax candles burned brightly, the silver and crystal gleamed, so did +the ladies' toilets and the gold and silver of the men's epaulets; +servants in scarlet liveries moved round the table, the clatter of +plates, knives, and glasses mingled with the animated hum of several +conversations. At one end of the table, the old chamberlain was +heard assuring an old baroness that he loved her passionately, at +which she laughed; at the other could be heard the story of the +misfortunes of some Mary Viktorovna or other. At the center of the +table, Prince Vasili attracted everybody's attention. With a facetious +smile on his face, he was telling the ladies about last Wednesday's +meeting of the Imperial Council, at which Sergey Kuzmich +Vyazmitinov, the new military governor general of Petersburg, had +received and read the then famous rescript of the Emperor Alexander +from the army to Sergey Kuzmich, in which the Emperor said that he was +receiving from all sides declarations of the people's loyalty, that +the declaration from Petersburg gave him particular pleasure, and that +he was proud to be at the head of such a nation and would endeavor +to be worthy of it. This rescript began with the words: "Sergey +Kuzmich, From all sides reports reach me," etc. + +"Well, and so he never got farther than: 'Sergey Kuzmich'?" asked +one of the ladies. + +"Exactly, not a hair's breadth farther," answered Prince Vasili, +laughing, "'Sergey Kuzmich... From all sides... From all sides... +Sergey Kuzmich...' Poor Vyazmitinov could not get any farther! He +began the rescript again and again, but as soon as he uttered 'Sergey' +he sobbed, 'Kuz-mi-ch,' tears, and 'From all sides' was smothered in +sobs and he could get no farther. And again his handkerchief, and +again: 'Sergey Kuzmich, From all sides,'... and tears, till at last +somebody else was asked to read it." + +"Kuzmich... From all sides... and then tears," someone repeated +laughing. + +"Don't be unkind," cried Anna Pavlovna from her end of the table +holding up a threatening finger. "He is such a worthy and excellent +man, our dear Vyazmitinov...." + +Everybody laughed a great deal. At the head of the table, where +the honored guests sat, everyone seemed to be in high spirits and +under the influence of a variety of exciting sensations. Only Pierre +and Helene sat silently side by side almost at the bottom of the +table, a suppressed smile brightening both their faces, a smile that +had nothing to do with Sergey Kuzmich--a smile of bashfulness at their +own feelings. But much as all the rest laughed, talked, and joked, +much as they enjoyed their Rhine wine, saute, and ices, and however +they avoided looking at the young couple, and heedless and unobservant +as they seemed of them, one could feel by the occasional glances +they gave that the story about Sergey Kuzmich, the laughter, and the +food were all a pretense, and that the whole attention of that company +was directed to--Pierre and Helene. Prince Vasili mimicked the sobbing +of Sergey Kuzmich and at the same time his eyes glanced toward his +daughter, and while he laughed the expression on his face clearly +said: "Yes... it's getting on, it will all be settled today." Anna +Pavlovna threatened him on behalf of "our dear Vyazmitinov," and in +her eyes, which, for an instant, glanced at Pierre, Prince Vasili read +a congratulation on his future son-in-law and on his daughter's +happiness. The old princess sighed sadly as she offered some wine to +the old lady next to her and glanced angrily at her daughter, and +her sigh seemed to say: "Yes, there's nothing left for you and me +but to sip sweet wine, my dear, now that the time has come for these +young ones to be thus boldly, provocatively happy." "And what nonsense +all this is that I am saying!" thought a diplomatist, glancing at +the happy faces of the lovers. "That's happiness!" + +Into the insignificant, trifling, and artificial interests uniting +that society had entered the simple feeling of the attraction of a +healthy and handsome young man and woman for one another. And this +human feeling dominated everything else and soared above all their +affected chatter. Jests fell flat, news was not interesting, and the +animation was evidently forced. Not only the guests but even the +footmen waiting at table seemed to feel this, and they forgot their +duties as they looked at the beautiful Helene with her radiant face +and at the red, broad, and happy though uneasy face of Pierre. It +seemed as if the very light of the candles was focused on those two +happy faces alone. + +Pierre felt that he was the center of it all, and this both pleased +and embarrassed him. He was like a man entirely absorbed in some +occupation. He did not see, hear, or understand anything clearly. Only +now and then detached ideas and impressions from the world of +reality shot unexpectedly through his mind. + +"So it is all finished!" he thought. "And how has it all happened? +How quickly! Now I know that not because of her alone, nor of myself +alone, but because of everyone, it must inevitably come about. They +are all expecting it, they are so sure that it will happen that I +cannot, I cannot, disappoint them. But how will it be? I do not +know, but it will certainly happen!" thought Pierre, glancing at those +dazzling shoulders close to his eyes. + +Or he would suddenly feel ashamed of he knew not what. He felt it +awkward to attract everyone's attention and to be considered a lucky +man and, with his plain face, to be looked on as a sort of Paris +possessed of a Helen. "But no doubt it always is and must be so!" he +consoled himself. "And besides, what have I done to bring it about? +How did it begin? I traveled from Moscow with Prince Vasili. Then +there was nothing. So why should I not stay at his house? Then I +played cards with her and picked up her reticule and drove out with +her. How did it begin, when did it all come about?" And here he was +sitting by her side as her betrothed, seeing, hearing, feeling her +nearness, her breathing, her movements, her beauty. Then it would +suddenly seem to him that it was not she but he was so unusually +beautiful, and that that was why they all looked so at him, and +flattered by this general admiration he would expand his chest, +raise his head, and rejoice at his good fortune. Suddenly he heard a +familiar voice repeating something to him a second time. But Pierre +was so absorbed that he did not understand what was said. + +"I am asking you when you last heard from Bolkonski," repeated +Prince Vasili a third time. "How absent-minded you are, my dear +fellow." + +Prince Vasili smiled, and Pierre noticed that everyone was smiling +at him and Helene. "Well, what of it, if you all know it?" thought +Pierre. "What of it? It's the truth!" and he himself smiled his gentle +childlike smile, and Helene smiled too. + +"When did you get the letter? Was it from Olmutz?" repeated Prince +Vasili, who pretended to want to know this in order to settle a +dispute. + +"How can one talk or think of such trifles?" thought Pierre. + +"Yes, from Olmutz," he answered, with a sigh. + +After supper Pierre with his partner followed the others into the +drawing room. The guests began to disperse, some without taking +leave of Helene. Some, as if unwilling to distract her from an +important occupation, came up to her for a moment and made haste to go +away, refusing to let her see them off. The diplomatist preserved a +mournful silence as he left the drawing room. He pictured the vanity +of his diplomatic career in comparison with Pierre's happiness. The +old general grumbled at his wife when she asked how his leg was. +"Oh, the old fool," he thought. "That Princess Helene will be +beautiful still when she's fifty." + +"I think I may congratulate you," whispered Anna Pavlovna to the old +princess, kissing her soundly. "If I hadn't this headache I'd have +stayed longer." + +The old princess did not reply, she was tormented by jealousy of her +daughter's happiness. + +While the guests were taking their leave Pierre remained for a +long time alone with Helene in the little drawing room where they were +sitting. He had often before, during the last six weeks, remained +alone with her, but had never spoken to her of love. Now he felt +that it was inevitable, but he could not make up his mind to take +the final step. He felt ashamed; he felt that he was occupying someone +else's place here beside Helene. "This happiness is not for you," some +inner voice whispered to him. "This happiness is for those who have +not in them what there is in you." + +But, as he had to say something, he began by asking her whether +she was satisfied with the party. She replied in her usual simple +manner that this name day of hers had been one of the pleasantest +she had ever had. + +Some of the nearest relatives had not yet left. They were sitting in +the large drawing room. Prince Vasili came up to Pierre with languid +footsteps. Pierre rose and said it was getting late. Prince Vasili +gave him a look of stern inquiry, as though what Pierre had just +said was so strange that one could not take it in. But then the +expression of severity changed, and he drew Pierre's hand downwards, +made him sit down, and smiled affectionately. + +"Well, Lelya?" he asked, turning instantly to his daughter and +addressing her with the careless tone of habitual tenderness natural +to parents who have petted their children from babyhood, but which +Prince Vasili had only acquired by imitating other parents. + +And he again turned to Pierre. + +"Sergey Kuzmich--From all sides-" he said, unbuttoning the top +button of his waistcoat. + +Pierre smiled, but his smile showed that he knew it was not the +story about Sergey Kuzmich that interested Prince Vasili just then, +and Prince Vasili saw that Pierre knew this. He suddenly muttered +something and went away. It seemed to Pierre that even the prince +was disconcerted. The sight of the discomposure of that old man of the +world touched Pierre: he looked at Helene and she too seemed +disconcerted, and her look seemed to say: "Well, it is your own +fault." + +"The step must be taken but I cannot, I cannot!" thought Pierre, and +he again began speaking about indifferent matters, about Sergey +Kuzmich, asking what the point of the story was as he had not heard it +properly. Helene answered with a smile that she too had missed it. + +When Prince Vasili returned to the drawing room, the princess, his +wife, was talking in low tones to the elderly lady about Pierre. + +"Of course, it is a very brilliant match, but happiness, my dear..." + +"Marriages are made in heaven," replied the elderly lady. + +Prince Vasili passed by, seeming not to hear the ladies, and sat +down on a sofa in a far corner of the room. He closed his eyes and +seemed to be dozing. His head sank forward and then he roused himself. + +"Aline," he said to his wife, "go and see what they are about." + +The princess went up to the door, passed by it with a dignified +and indifferent air, and glanced into the little drawing room. +Pierre and Helene still sat talking just as before. + +"Still the same," she said to her husband. + +Prince Vasili frowned, twisting his mouth, his cheeks quivered and +his face assumed the coarse, unpleasant expression peculiar to him. +Shaking himself, he rose, threw back his head, and with resolute steps +went past the ladies into the little drawing room. With quick steps he +went joyfully up to Pierre. His face was so unusually triumphant +that Pierre rose in alarm on seeing it. + +"Thank God!" said Prince Vasili. "My wife has told me everything!" +(He put one arm around Pierre and the other around his daughter.)--"My +dear boy... Lelya... I am very pleased." (His voice trembled.) "I +loved your father... and she will make you a good wife... God bless +you!..." + +He embraced his daughter, and then again Pierre, and kissed him with +his malodorous mouth. Tears actually moistened his cheeks. + +"Princess, come here!" he shouted. + +The old princess came in and also wept. The elderly lady was using +her handkerchief too. Pierre was kissed, and he kissed the beautiful +Helene's hand several times. After a while they were left alone again. + +"All this had to be and could not be otherwise," thought Pierre, "so +it is useless to ask whether it is good or bad. It is good because +it's definite and one is rid of the old tormenting doubt." Pierre held +the hand of his betrothed in silence, looking at her beautiful bosom +as it rose and fell. + +"Helene!" he said aloud and paused. + +"Something special is always said in such cases," he thought, but +could not remember what it was that people say. He looked at her face. +She drew nearer to him. Her face flushed. + +"Oh, take those off... those..." she said, pointing to his +spectacles. + +Pierre took them off, and his eyes, besides the strange look eyes +have from which spectacles have just been removed, had also a +frightened and inquiring look. He was about to stoop over her hand and +kiss it, but with a rapid, almost brutal movement of her head, she +intercepted his lips and met them with her own. Her face struck +Pierre, by its altered, unpleasantly excited expression. + +"It is too late now, it's done; besides I love her," thought Pierre. + +"Je vous aime!"* he said, remembering what has to be said at such +moments: but his words sounded so weak that he felt ashamed of +himself. + + +*"I love you." + + +Six weeks later he was married, and settled in Count Bezukhov's +large, newly furnished Petersburg house, the happy possessor, as +people said, of a wife who was a celebrated beauty and of millions +of money. + + + + + +CHAPTER III + + +Old Prince Nicholas Bolkonski received a letter from Prince Vasili +in November, 1805, announcing that he and his son would be paying +him a visit. "I am starting on a journey of inspection, and of +course I shall think nothing of an extra seventy miles to come and see +you at the same time, my honored benefactor," wrote Prince Vasili. "My +son Anatole is accompanying me on his way to the army, so I hope you +will allow him personally to express the deep respect that, +emulating his father, he feels for you." + +"It seems that there will be no need to bring Mary out, suitors +are coming to us of their own accord," incautiously remarked the +little princess on hearing the news. + +Prince Nicholas frowned, but said nothing. + +A fortnight after the letter Prince Vasili's servants came one +evening in advance of him, and he and his son arrived next day. + +Old Bolkonski had always had a poor opinion of Prince Vasili's +character, but more so recently, since in the new reigns of Paul and +Alexander Prince Vasili had risen to high position and honors. And +now, from the hints contained in his letter and given by the little +princess, he saw which way the wind was blowing, and his low opinion +changed into a feeling of contemptuous ill will. He snorted whenever +he mentioned him. On the day of Prince Vasili's arrival, Prince +Bolkonski was particularly discontented and out of temper. Whether +he was in a bad temper because Prince Vasili was coming, or whether +his being in a bad temper made him specially annoyed at Prince +Vasili's visit, he was in a bad temper, and in the morning Tikhon +had already advised the architect not to go to the prince with his +report. + +"Do you hear how he's walking?" said Tikhon, drawing the architect's +attention to the sound of the prince's footsteps. "Stepping flat on +his heels--we know what that means...." + +However, at nine o'clock the prince, in his velvet coat with a sable +collar and cap, went out for his usual walk. It had snowed the day +before and the path to the hothouse, along which the prince was in the +habit of walking, had been swept: the marks of the broom were still +visible in the snow and a shovel had been left sticking in one of +the soft snowbanks that bordered both sides of the path. The prince +went through the conservatories, the serfs' quarters, and the +outbuildings, frowning and silent. + +"Can a sleigh pass?" he asked his overseer, a venerable man, +resembling his master in manners and looks, who was accompanying him +back to the house. + +"The snow is deep. I am having the avenue swept, your honor." + +The prince bowed his head and went up to the porch. "God be +thanked," thought the overseer, "the storm has blown over!" + +"It would have been hard to drive up, your honor," he added. "I +heard, your honor, that a minister is coming to visit your honor." + +The prince turned round to the overseer and fixed his eyes on him, +frowning. + +"What? A minister? What minister? Who gave orders?" he said in his +shrill, harsh voice. "The road is not swept for the princess my +daughter, but for a minister! For me, there are no ministers!" + +"Your honor, I thought..." + +"You thought!" shouted the prince, his words coming more and more +rapidly and indistinctly. "You thought!... Rascals! Blackgaurds!... +I'll teach you to think!" and lifting his stick he swung it and +would have hit Alpatych, the overseer, had not the latter +instinctively avoided the blow. "Thought... Blackguards..." shouted +the prince rapidly. + +But although Alpatych, frightened at his own temerity in avoiding +the stroke, came up to the prince, bowing his bald head resignedly +before him, or perhaps for that very reason, the prince, though he +continued to shout: "Blackgaurds!... Throw the snow back on the road!" +did not lift his stick again but hurried into the house. + +Before dinner, Princess Mary and Mademoiselle Bourienne, who knew +that the prince was in a bad humor, stood awaiting him; Mademoiselle +Bourienne with a radiant face that said: "I know nothing, I am the +same as usual," and Princess Mary pale, frightened, and with +downcast eyes. What she found hardest to bear was to know that on such +occasions she ought to behave like Mademoiselle Bourienne, but could +not. She thought: "If I seem not to notice he will think that I do not +sympathize with him; if I seem sad and out of spirits myself, he +will say (as he has done before) that I'm in the dumps." + +The prince looked at his daughter's frightened face and snorted. + +"Fool... or dummy!" he muttered. + +"And the other one is not here. They've been telling tales," he +thought--referring to the little princess who was not in the dining +room. + +"Where is the princess?" he asked. "Hiding?" + +"She is not very well," answered Mademoiselle Bourienne with a +bright smile, "so she won't come down. It is natural in her state." + +"Hm! Hm!" muttered the prince, sitting down. + +His plate seemed to him not quite clean, and pointing to a spot he +flung it away. Tikhon caught it and handed it to a footman. The little +princess was not unwell, but had such an overpowering fear of the +prince that, hearing he was in a bad humor, she had decided not to +appear. + +"I am afraid for the baby," she said to Mademoiselle Bourienne: +"Heaven knows what a fright might do." + +In general at Bald Hills the little princess lived in constant fear, +and with a sense of antipathy to the old prince which she did not +realize because the fear was so much the stronger feeling. The +prince reciprocated this antipathy, but it was overpowered by his +contempt for her. When the little princess had grown accustomed to +life at Bald Hills, she took a special fancy to Mademoiselle +Bourienne, spent whole days with her, asked her to sleep in her +room, and often talked with her about the old prince and criticized +him. + +"So we are to have visitors, mon prince?" remarked Mademoiselle +Bourienne, unfolding her white napkin with her rosy fingers. "His +Excellency Prince Vasili Kuragin and his son, I understand?" she +said inquiringly. + +"Hm!--his excellency is a puppy.... I got him his appointment in the +service," said the prince disdainfully. "Why his son is coming I don't +understand. Perhaps Princess Elizabeth and Princess Mary know. I don't +want him." (He looked at his blushing daughter.) "Are you unwell +today? Eh? Afraid of the 'minister' as that idiot Alpatych called +him this morning?" + +"No, mon pere." + +Though Mademoiselle Bourienne had been so unsuccessful in her choice +of a subject, she did not stop talking, but chattered about the +conservatories and the beauty of a flower that had just opened, and +after the soup the prince became more genial. + +After dinner, he went to see his daughter-in-law. The little +princess was sitting at a small table, chattering with Masha, her +maid. She grew pale on seeing her father-in-law. + +She was much altered. She was now plain rather than pretty. Her +cheeks had sunk, her lip was drawn up, and her eyes drawn down. + +"Yes, I feel a kind of oppression," she said in reply to the +prince's question as to how she felt. + +"Do you want anything?" + +"No, merci, mon pere." + +"Well, all right, all right." + +He left the room and went to the waiting room where Alpatych stood +with bowed head. + +"Has the snow been shoveled back?" + +"Yes, your excellency. Forgive me for heaven's sake... It was only +my stupidity." + +"All right, all right," interrupted the prince, and laughing his +unnatural way, he stretched out his hand for Alpatych to kiss, and +then proceeded to his study. + +Prince Vasili arrived that evening. He was met in the avenue by +coachmen and footmen, who, with loud shouts, dragged his sleighs up to +one of the lodges over the road purposely laden with snow. + +Prince Vasili and Anatole had separate rooms assigned to them. + +Anatole, having taken off his overcoat, sat with arms akimbo +before a table on a corner of which he smilingly and absent-mindedly +fixed his large and handsome eyes. He regarded his whole life as a +continual round of amusement which someone for some reason had to +provide for him. And he looked on this visit to a churlish old man and +a rich and ugly heiress in the same way. All this might, he thought, +turn out very well and amusingly. "And why not marry her if she really +has so much money? That never does any harm," thought Anatole. + +He shaved and scented himself with the care and elegance which had +become habitual to him and, his handsome head held high, entered his +father's room with the good-humored and victorious air natural to him. +Prince Vasili's two valets were busy dressing him, and he looked round +with much animation and cheerfully nodded to his son as the latter +entered, as if to say: "Yes, that's how I want you to look." + +"I say, Father, joking apart, is she very hideous?" Anatole asked, +as if continuing a conversation the subject of which had often been +mentioned during the journey. + +"Enough! What nonsense! Above all, try to be respectful and cautious +with the old prince." + +"If he starts a row I'll go away," said Prince Anatole. "I can't +bear those old men! Eh?" + +"Remember, for you everything depends on this." + +In the meantime, not only was it known in the maidservants' rooms +that the minister and his son had arrived, but the appearance of +both had been minutely described. Princess Mary was sitting alone in +her room, vainly trying to master her agitation. + +"Why did they write, why did Lise tell me about it? It can never +happen!" she said, looking at herself in the glass. "How shall I enter +the drawing room? Even if I like him I can't now be myself with +him." The mere thought of her father's look filled her with terror. +The little princess and Mademoiselle Bourienne had already received +from Masha, the lady's maid, the necessary report of how handsome +the minister's son was, with his rosy cheeks and dark eyebrows, and +with what difficulty the father had dragged his legs upstairs while +the son had followed him like an eagle, three steps at a time. +Having received this information, the little princess and Mademoiselle +Bourienne, whose chattering voices had reached her from the +corridor, went into Princess Mary's room. + +"You know they've come, Marie?" said the little princess, waddling +in, and sinking heavily into an armchair. + +She was no longer in the loose gown she generally wore in the +morning, but had on one of her best dresses. Her hair was carefully +done and her face was animated, which, however, did not conceal its +sunken and faded outlines. Dressed as she used to be in Petersburg +society, it was still more noticeable how much plainer she had become. +Some unobtrusive touch had been added to Mademoiselle Bourienne's +toilet which rendered her fresh and pretty face yet more attractive. + +"What! Are you going to remain as you are, dear princess?" she +began. "They'll be announcing that the gentlemen are in the drawing +room and we shall have to go down, and you have not smartened yourself +up at all!" + +The little princess got up, rang for the maid, and hurriedly and +merrily began to devise and carry out a plan of how Princess Mary +should be dressed. Princess Mary's self-esteem was wounded by the fact +that the arrival of a suitor agitated her, and still more so by both +her companions' not having the least conception that it could be +otherwise. To tell them that she felt ashamed for herself and for them +would be to betray her agitation, while to decline their offers to +dress her would prolong their banter and insistence. She flushed, +her beautiful eyes grew dim, red blotches came on her face, and it +took on the unattractive martyrlike expression it so often wore, as +she submitted herself to Mademoiselle Bourienne and Lise. Both these +women quite sincerely tried to make her look pretty. She was so +plain that neither of them could think of her as a rival, so they +began dressing her with perfect sincerity, and with the naive and firm +conviction women have that dress can make a face pretty. + +"No really, my dear, this dress is not pretty," said Lise, looking +sideways at Princess Mary from a little distance. "You have a maroon +dress, have it fetched. Really! You know the fate of your whole life +may be at stake. But this one is too light, it's not becoming!" + +It was not the dress, but the face and whole figure of Princess Mary +that was not pretty, but neither Mademoiselle Bourienne nor the little +princess felt this; they still thought that if a blue ribbon were +placed in the hair, the hair combed up, and the blue scarf arranged +lower on the best maroon dress, and so on, all would be well. They +forgot that the frightened face and the figure could not be altered, +and that however they might change the setting and adornment of that +face, it would still remain piteous and plain. After two or three +changes to which Princess Mary meekly submitted, just as her hair +had been arranged on the top of her head (a style that quite altered +and spoiled her looks) and she had put on a maroon dress with a +pale-blue scarf, the little princess walked twice round her, now +adjusting a fold of the dress with her little hand, now arranging +the scarf and looking at her with her head bent first on one side +and then on the other. + +"No, it will not do," she said decidedly, clasping her hands. "No, +Mary, really this dress does not suit you. I prefer you in your little +gray everyday dress. Now please, do it for my sake. Katie," she said +to the maid, "bring the princess her gray dress, and you'll see, +Mademoiselle Bourienne, how I shall arrange it," she added, smiling +with a foretaste of artistic pleasure. + +But when Katie brought the required dress, Princess Mary remained +sitting motionless before the glass, looking at her face, and saw in +the mirror her eyes full of tears and her mouth quivering, ready to +burst into sobs. + +"Come, dear princess," said Mademoiselle Bourienne, "just one more +little effort." + +The little princess, taking the dress from the maid, came up to +Princess Mary. + +"Well, now we'll arrange something quite simple and becoming," she +said. + +The three voices, hers, Mademoiselle Bourienne's, and Katie's, who +was laughing at something, mingled in a merry sound, like the chirping +of birds. + +"No, leave me alone," said Princess Mary. + +Her voice sounded so serious and so sad that the chirping of the +birds was silenced at once. They looked at the beautiful, large, +thoughtful eyes full of tears and of thoughts, gazing shiningly and +imploringly at them, and understood that it was useless and even cruel +to insist. + +"At least, change your coiffure," said the little princess. +"Didn't I tell you," she went on, turning reproachfully to +Mademoiselle Bourienne, "Mary's is a face which such a coiffure does +not suit in the least. Not in the least! Please change it." + +"Leave me alone, please leave me alone! It is all quite the same +to me," answered a voice struggling with tears. + +Mademoiselle Bourienne and the little princess had to own to +themselves that Princess Mary in this guise looked very plain, worse +than usual, but it was too late. She was looking at them with an +expression they both knew, an expression thoughtful and sad. This +expression in Princess Mary did not frighten them (she never +inspired fear in anyone), but they knew that when it appeared on her +face, she became mute and was not to be shaken in her determination. + +"You will change it, won't you?" said Lise. And as Princess Mary +gave no answer, she left the room. + +Princess Mary was left alone. She did not comply with Lise's +request, she not only left her hair as it was, but did not even look +in her glass. Letting her arms fall helplessly, she sat with +downcast eyes and pondered. A husband, a man, a strong dominant and +strangely attractive being rose in her imagination, and carried her +into a totally different happy world of his own. She fancied a +child, her own--such as she had seen the day before in the arms of her +nurse's daughter--at her own breast, the husband standing by and +gazing tenderly at her and the child. "But no, it is impossible, I +am too ugly," she thought. + +"Please come to tea. The prince will be out in a moment," came the +maid's voice at the door. + +She roused herself, and felt appalled at what she had been thinking, +and before going down she went into the room where the icons hung and, +her eyes fixed on the dark face of a large icon of the Saviour lit +by a lamp, she stood before it with folded hands for a few moments. +A painful doubt filled her soul. Could the joy of love, of earthly +love for a man, be for her? In her thoughts of marriage Princess +Mary dreamed of happiness and of children, but her strongest, most +deeply hidden longing was for earthly love. The more she tried to hide +this feeling from others and even from herself, the stronger it +grew. "O God," she said, "how am I to stifle in my heart these +temptations of the devil? How am I to renounce forever these vile +fancies, so as peacefully to fulfill Thy will?" And scarcely had she +put that question than God gave her the answer in her own heart. +"Desire nothing for thyself, seek nothing, be not anxious or +envious. Man's future and thy own fate must remain hidden from thee, +but live so that thou mayest be ready for anything. If it be God's +will to prove thee in the duties of marriage, be ready to fulfill +His will." With this consoling thought (but yet with a hope for the +fulfillment of her forbidden earthly longing) Princess Mary sighed, +and having crossed herself went down, thinking neither of her gown and +coiffure nor of how she would go in nor of what she would say. What +could all that matter in comparison with the will of God, without +Whose care not a hair of man's head can fall? + + + + + +CHAPTER IV + + +When Princess Mary came down, Prince Vasili and his son were already +in the drawing room, talking to the little princess and Mademoiselle +Bourienne. When she entered with her heavy step, treading on her +heels, the gentlemen and Mademoiselle Bourienne rose and the little +princess, indicating her to the gentlemen, said: "Voila Marie!" +Princess Mary saw them all and saw them in detail. She saw Prince +Vasili's face, serious for an instant at the sight of her, but +immediately smiling again, and the little princess curiously noting +the impression "Marie" produced on the visitors. And she saw +Mademoiselle Bourienne, with her ribbon and pretty face, and her +unusually animated look which was fixed on him, but him she could +not see, she only saw something large, brilliant, and handsome +moving toward her as she entered the room. Prince Vasili approached +first, and she kissed the bold forehead that bent over her hand and +answered his question by saying that, on the contrary, she +remembered him quite well. Then Anatole came up to her. She still +could not see him. She only felt a soft hand taking hers firmly, and +she touched with her lips a white forehead, over which was beautiful +light-brown hair smelling of pomade. When she looked up at him she was +struck by his beauty. Anatole stood with his right thumb under a +button of his uniform, his chest expanded and his back drawn in, +slightly swinging one foot, and, with his head a little bent, looked +with beaming face at the princess without speaking and evidently not +thinking about her at all. Anatole was not quick-witted, nor ready +or eloquent in conversation, but he had the faculty, so invaluable +in society, of composure and imperturbable self-possession. If a man +lacking in self-confidence remains dumb on a first introduction and +betrays a consciousness of the impropriety of such silence and an +anxiety to find something to say, the effect is bad. But Anatole was +dumb, swung his foot, and smilingly examined the princess' hair. It +was evident that he could be silent in this way for a very long +time. "If anyone finds this silence inconvenient, let him talk, but +I don't want to," he seemed to say. Besides this, in his behavior to +women Anatole had a manner which particularly inspires in them +curiosity, awe, and even love--a supercilious consciousness of his own +superiority. It was was as if he said to them: "I know you, I know +you, but why should I bother about you? You'd be only too glad, of +course." Perhaps he did not really think this when he met women- +even probably he did not, for in general he thought very little--but +his looks and manner gave that impression. The princess felt this, and +as if wishing to show him that she did not even dare expect to +interest him, she turned to his father. The conversation was general +and animated, thanks to Princess Lise's voice and little downy lip +that lifted over her white teeth. She met Prince Vasili with that +playful manner often employed by lively chatty people, and +consisting in the assumption that between the person they so address +and themselves there are some semi-private, long-established jokes and +amusing reminiscences, though no such reminiscences really exist--just +as none existed in this case. Prince Vasili readily adopted her tone +and the little princess also drew Anatole, whom she hardly knew, +into these amusing recollections of things that had never occurred. +Mademoiselle Bourienne also shared them and even Princess Mary felt +herself pleasantly made to share in these merry reminiscences. + +"Here at least we shall have the benefit of your company all to +ourselves, dear prince," said the little princess (of course, in +French) to Prince Vasili. "It's not as at Annette's* receptions +where you always ran away; you remember cette chere Annette!" + + +*Anna Pavlovna. + +"Ah, but you won't talk politics to me like Annette!" + +"And our little tea table?" + +"Oh, yes!" + +"Why is it you were never at Annette's?" the little princess asked +Anatole. "Ah, I know, I know," she said with a sly glance, "your +brother Hippolyte told me about your goings on. Oh!" and she shook her +finger at him, "I have even heard of your doings in Paris!" + +"And didn't Hippolyte tell you?" asked Prince Vasili, turning to his +son and seizing the little princess' arm as if she would have run away +and he had just managed to catch her, "didn't he tell you how he +himself was pining for the dear princess, and how she showed him the +door? Oh, she is a pearl among women, Princess," he added, turning +to Princess Mary. + +When Paris was mentioned, Mademoiselle Bourienne for her part seized +the opportunity of joining in the general current of recollections. + +She took the liberty of inquiring whether it was long since +Anatole had left Paris and how he had liked that city. Anatole +answered the Frenchwoman very readily and, looking at her with a +smile, talked to her about her native land. When he saw the pretty +little Bourienne, Anatole came to the conclusion that he would not +find Bald Hills dull either. "Not at all bad!" he thought, examining +her, "not at all bad, that little companion! I hope she will bring her +along with her when we're married, la petite est gentille."* + + +*The little one is charming. + + +The old prince dressed leisurely in his study, frowning and +considering what he was to do. The coming of these visitors annoyed +him. "What are Prince Vasili and that son of his to me? Prince +Vasili is a shallow braggart and his son, no doubt, is a fine +specimen," he grumbled to himself. What angered him was that the +coming of these visitors revived in his mind an unsettled question +he always tried to stifle, one about which he always deceived himself. +The question was whether he could ever bring himself to part from +his daughter and give her to a husband. The prince never directly +asked himself that question, knowing beforehand that he would have +to answer it justly, and justice clashed not only with his feelings +but with the very possibility of life. Life without Princess Mary, +little as he seemed to value her, was unthinkable to him. "And why +should she marry?" he thought. "To be unhappy for certain. There's +Lise, married to Andrew--a better husband one would think could hardly +be found nowadays--but is she contented with her lot? And who would +marry Marie for love? Plain and awkward! They'll take her for her +connections and wealth. Are there no women living unmarried, and +even the happier for it?" So thought Prince Bolkonski while +dressing, and yet the question he was always putting off demanded an +immediate answer. Prince Vasili had brought his son with the evident +intention of proposing, and today or tomorrow he would probably ask +for an answer. His birth and position in society were not bad. +"Well, I've nothing against it," the prince said to himself, "but he +must be worthy of her. And that is what we shall see." + +"That is what we shall see! That is what we shall see!" he added +aloud. + +He entered the drawing room with his usual alert step, glancing +rapidly round the company. He noticed the change in the little +princess' dress, Mademoiselle Bourienne's ribbon, Princess Mary's +unbecoming coiffure, Mademoiselle Bourienne's and Anatole's smiles, +and the loneliness of his daughter amid the general conversation. "Got +herself up like a fool!" he thought, looking irritably at her. "She is +shameless, and he ignores her!" + +He went straight up to Prince Vasili. + +"Well! How d'ye do? How d'ye do? Glad to see you!" + +"Friendship laughs at distance," began Prince Vasili in his usual +rapid, self-confident, familiar tone. "Here is my second son; please +love and befriend him." + +Prince Bolkonski surveyed Anatole. + +"Fine young fellow! Fine young fellow!" he said. "Well, come and +kiss me," and he offered his cheek. + +Anatole kissed the old man, and looked at him with curiosity and +perfect composure, waiting for a display of the eccentricities his +father had told him to expect. + +Prince Bolkonski sat down in his usual place in the corner of the +sofa and, drawing up an armchair for Prince Vasili, pointed to it +and began questioning him about political affairs and news. He +seemed to listen attentively to what Prince Vasili said, but kept +glancing at Princess Mary. + +"And so they are writing from Potsdam already?" he said, repeating +Prince Vasili's last words. Then rising, he suddenly went up to his +daughter. + +"Is it for visitors you've got yourself up like that, eh?" said +he. "Fine, very fine! You have done up your hair in this new way for +the visitors, and before the visitors I tell you that in future you +are never to dare to change your way of dress without my consent." + +"It was my fault, mon pere," interceded the little princess, with +a blush. + +"You must do as you please," said Prince Bolkonski, bowing to his +daughter-in-law, "but she need not make a fool of herself, she's plain +enough as it is." + +And he sat down again, paying no more attention to his daughter, who +was reduced to tears. + +"On the contrary, that coiffure suits the princess very well," +said Prince Vasili. + +"Now you, young prince, what's your name?" said Prince Bolkonski, +turning to Anatole, "come here, let us talk and get acquainted." + +"Now the fun begins," thought Anatole, sitting down with a smile +beside the old prince. + +"Well, my dear boy, I hear you've been educated abroad, not taught +to read and write by the deacon, like your father and me. Now tell me, +my dear boy, are you serving in the Horse Guards?" asked the old +man, scrutinizing Anatole closely and intently. + +"No, I have been transferred to the line," said Anatole, hardly able +to restrain his laughter. + +"Ah! That's a good thing. So, my dear boy, you wish to serve the +Tsar and the country? It is wartime. Such a fine fellow must serve. +Well, are you off to the front?" + +"No, Prince, our regiment has gone to the front, but I am +attached... what is it I am attached to, Papa?" said Anatole, +turning to his father with a laugh. + +"A splendid soldier, splendid! 'What am I attached to!' Ha, ha, ha!" +laughed Prince Bolkonski, and Anatole laughed still louder. Suddenly +Prince Bolkonski frowned. + +"You may go," he said to Anatole. + +Anatole returned smiling to the ladies. + +"And so you've had him educated abroad, Prince Vasili, haven't you?" +said the old prince to Prince Vasili. + +"I have done my best for him, and I can assure you the education +there is much better than ours." + +"Yes, everything is different nowadays, everything is changed. The +lad's a fine fellow, a fine fellow! Well, come with me now." He took +Prince Vasili's arm and led him to his study. As soon as they were +alone together, Prince Vasili announced his hopes and wishes to the +old prince. + +"Well, do you think I shall prevent her, that I can't part from +her?" said the old prince angrily. "What an idea! I'm ready for it +tomorrow! Only let me tell you, I want to know my son-in-law better. +You know my principles--everything aboveboard? I will ask her tomorrow +in your presence; if she is willing, then he can stay on. He can +stay and I'll see." The old prince snorted. "Let her marry, it's all +the same to me!" he screamed in the same piercing tone as when parting +from his son. + +"I will tell you frankly," said Prince Vasili in the tone of a +crafty man convinced of the futility of being cunning with so +keen-sighted companion. "You know, you see right through people. +Anatole is no genius, but he is an honest, goodhearted lad; an +excellent son or kinsman." + +"All right, all right, we'll see!" + +As always happens when women lead lonely lives for any length of +time without male society, on Anatole's appearance all the three women +of Prince Bolkonski's household felt that their life had not been real +till then. Their powers of reasoning, feeling, and observing +immediately increased tenfold, and their life, which seemed to have +been passed in darkness, was suddenly lit up by a new brightness, full +of significance. + +Princess Mary grew quite unconscious of her face and coiffure. The +handsome open face of the man who might perhaps be her husband +absorbed all her attention. He seemed to her kind, brave, +determined, manly, and magnanimous. She felt convinced of that. +Thousands of dreams of a future family life continually rose in her +imagination. She drove them away and tried to conceal them. + +"But am I not too cold with him?" thought the princess. "I try to be +reserved because in the depth of my soul I feel too near to him +already, but then he cannot know what I think of him and may imagine +that I do not like him." + +And Princess Mary tried, but could not manage, to be cordial to +her new guest. "Poor girl, she's devilish ugly!" thought Anatole. + +Mademoiselle Bourienne, also roused to great excitement by Anatole's +arrival, thought in another way. Of course, she, a handsome young +woman without any definite position, without relations or even a +country, did not intend to devote her life to serving Prince +Bolkonski, to reading aloud to him and being friends with Princess +Mary. Mademoiselle Bourienne had long been waiting for a Russian +prince who, able to appreciate at a glance her superiority to the +plain, badly dressed, ungainly Russian princesses, would fall in +love with her and carry her off; and here at last was a Russian +prince. Mademoiselle Bourienne knew a story, heard from her aunt but +finished in her own way, which she liked to repeat to herself. It +was the story of a girl who had been seduced, and to whom her poor +mother (sa pauvre mere) appeared, and reproached her for yielding to a +man without being married. Mademoiselle Bourienne was often touched to +tears as in imagination she told this story to him, her seducer. And +now he, a real Russian prince, had appeared. He would carry her away +and then sa pauvre mere would appear and he would marry her. So her +future shaped itself in Mademoiselle Bourienne's head at the very time +she was talking to Anatole about Paris. It was not calculation that +guided her (she did not even for a moment consider what she should +do), but all this had long been familiar to her, and now that +Anatole had appeared it just grouped itself around him and she +wished and tried to please him as much as possible. + +The little princess, like an old war horse that hears the trumpet, +unconsciously and quite forgetting her condition, prepared for the +familiar gallop of coquetry, without any ulterior motive or any +struggle, but with naive and lighthearted gaiety. + +Although in female society Anatole usually assumed the role of a man +tired of being run after by women, his vanity was flattered by the +spectacle of his power over these three women. Besides that, he was +beginning to feel for the pretty and provocative Mademoiselle +Bourienne that passionate animal feeling which was apt to master him +with great suddenness and prompt him to the coarsest and most reckless +actions. + +After tea, the company went into the sitting room and Princess +Mary was asked to play on the clavichord. Anatole, laughing and in +high spirits, came and leaned on his elbows, facing her and beside +Mademoiselle Bourienne. Princess Mary felt his look with a painfully +joyous emotion. Her favorite sonata bore her into a most intimately +poetic world and the look she felt upon her made that world still more +poetic. But Anatole's expression, though his eyes were fixed on her, +referred not to her but to the movements of Mademoiselle Bourienne's +little foot, which he was then touching with his own under the +clavichord. Mademoiselle Bourienne was also looking at Princess +Mary, and in her lovely eyes there was a look of fearful joy and +hope that was also new to the princess. + +"How she loves me!" thought Princess Mary. "How happy I am now, +and how happy I may be with such a friend and such a husband! Husband? +Can it be possible?" she thought, not daring to look at his face, +but still feeling his eyes gazing at her. + +In the evening, after supper, when all were about to retire, Anatole +kissed Princess Mary's hand. She did not know how she found the +courage, but she looked straight into his handsome face as it came +near to her shortsighted eyes. Turning from Princess Mary he went up +and kissed Mademoiselle Bourienne's hand. (This was not etiquette, but +then he did everything so simply and with such assurance!) +Mademoiselle Bourienne flushed, and gave the princess a frightened +look. + +"What delicacy!" thought the princess. "Is it possible that Amelie" +(Mademoiselle Bourienne) "thinks I could be jealous of her, and not +value her pure affection and devotion to me?" She went up to her and +kissed her warmly. Anatole went up to kiss the little princess' hand. + +"No! No! No! When your father writes to tell me that you are +behaving well I will give you my hand to kiss. Not till then!" she +said. And smilingly raising a finger at him, she left the room. + + + + +CHAPTER V + + +They all separated, but, except Anatole who fell asleep as soon as +he got into bed, all kept awake a long time that night. + +"Is he really to be my husband, this stranger who is so kind--yes, +kind, that is the chief thing," thought Princess Mary; and fear, which +she had seldom experienced, came upon her. She feared to look round, +it seemed to her that someone was there standing behind the screen +in the dark corner. And this someone was he--the devil--and he was +also this man with the white forehead, black eyebrows, and red lips. + +She rang for her maid and asked her to sleep in her room. + +Mademoiselle Bourienne walked up and down the conservatory for a +long time that evening, vainly expecting someone, now smiling at +someone, now working herself up to tears with the imaginary words of +her pauvre mere rebuking her for her fall. + +The little princess grumbled to her maid that her bed was badly +made. She could not lie either on her face or on her side. Every +position was awkward and uncomfortable, and her burden oppressed her +now more than ever because Anatole's presence had vividly recalled +to her the time when she was not like that and when everything was +light and gay. She sat in an armchair in her dressing jacket and +nightcap and Katie, sleepy and disheveled, beat and turned the heavy +feather bed for the third time, muttering to herself. + +"I told you it was all lumps and holes!" the little princess +repeated. "I should be glad enough to fall asleep, so it's not my +fault!" and her voice quivered like that of a child about to cry. + +The old prince did not sleep either. Tikhon, half asleep, heard +him pacing angrily about and snorting. The old prince felt as though +he had been insulted through his daughter. The insult was the more +pointed because it concerned not himself but another, his daughter, +whom he loved more than himself. He kept telling himself that he would +consider the whole matter and decide what was right and how he +should act, but instead of that he only excited himself more and more. + +"The first man that turns up--she forgets her father and +everything else, runs upstairs and does up her hair and wags her +tail and is unlike herself! Glad to throw her father over! And she +knew I should notice it. Fr... fr... fr! And don't I see that that +idiot had eyes only for Bourienne--I shall have to get rid of her. And +how is it she has not pride enough to see it? If she has no pride +for herself she might at least have some for my sake! She must be +shown that the blockhead thinks nothing of her and looks only at +Bourienne. No, she has no pride... but I'll let her see...." + +The old prince knew that if he told his daughter she was making a +mistake and that Anatole meant to flirt with Mademoiselle Bourienne, +Princess Mary's self-esteem would be wounded and his point (not to +be parted from her) would be gained, so pacifying himself with this +thought, he called Tikhon and began to undress. + +"What devil brought them here?" thought he, while Tikhon was putting +the nightshirt over his dried-up old body and gray-haired chest. "I +never invited them. They came to disturb my life--and there is not +much of it left." + +"Devil take 'em!" he muttered, while his head was still covered by +the shirt. + +Tikhon knew his master's habit of sometimes thinking aloud, and +therefore met with unaltered looks the angrily inquisitive +expression of the face that emerged from the shirt. + +"Gone to bed?" asked the prince. + +Tikhon, like all good valets, instinctively knew the direction of +his master's thoughts. He guessed that the question referred to Prince +Vasili and his son. + +"They have gone to bed and put out their lights, your excellency." + +"No good... no good..." said the prince rapidly, and thrusting his +feet into his slippers and his arms into the sleeves of his dressing +gown, he went to the couch on which he slept. + +Though no words had passed between Anatole and Mademoiselle +Bourienne, they quite understood one another as to the first part of +their romance, up to the appearance of the pauvre mere; they +understood that they had much to say to one another in private and +so they had been seeking an opportunity since morning to meet one +another alone. When Princess Mary went to her father's room at the +usual hour, Mademoiselle Bourienne and Anatole met in the +conservatory. + +Princess Mary went to the door of the study with special +trepidation. It seemed to her that not only did everybody know that +her fate would be decided that day, but that they also knew what she +thought about it. She read this in Tikhon's face and in that of Prince +Vasili's valet, who made her a low bow when she met him in the +corridor carrying hot water. + +The old prince was very affectionate and careful in his treatment of +his daughter that morning. Princess Mary well knew this painstaking +expression of her father's. His face wore that expression when his dry +hands clenched with vexation at her not understanding a sum in +arithmetic, when rising from his chair he would walk away from her, +repeating in a low voice the same words several times over. + +He came to the point at once, treating her ceremoniously. + +"I have had a proposition made me concerning you," he said with an +unnatural smile. "I expect you have guessed that Prince Vasili has not +come and brought his pupil with him" (for some reason Prince Bolkonski +referred to Anatole as a "pupil") "for the sake of my beautiful +eyes. Last night a proposition was made me on your account and, as you +know my principles, I refer it to you." + +"How am I to understand you, mon pere?" said the princess, growing +pale and then blushing. + +"How understand me!" cried her father angrily. "Prince Vasili +finds you to his taste as a daughter-in-law and makes a proposal to +you on his pupil's behalf. That's how it's to be understood! 'How +understand it'!... And I ask you!" + +"I do not know what you think, Father," whispered the princess. + +"I? I? What of me? Leave me out of the question. I'm not going to +get married. What about you? That's what I want to know." + +The princess saw that her father regarded the matter with +disapproval, but at that moment the thought occurred to her that her +fate would be decided now or never. She lowered her eyes so as not +to see the gaze under which she felt that she could not think, but +would only be able to submit from habit, and she said: "I wish only to +do your will, but if I had to express my own desire..." She had no +time to finish. The old prince interrupted her. + +"That's admirable!" he shouted. "He will take you with your dowry +and take Mademoiselle Bourienne into the bargain. She'll be the +wife, while you..." + +The prince stopped. He saw the effect these words had produced on +his daughter. She lowered her head and was ready to burst into tears. + +"Now then, now then, I'm only joking!" he said. "Remember this, +Princess, I hold to the principle that a maiden has a full right to +choose. I give you freedom. Only remember that your life's happiness +depends on your decision. Never mind me!" + +"But I do not know, Father!" + +"There's no need to talk! He receives his orders and will marry +you or anybody; but you are free to choose.... Go to your room, +think it over, and come back in an hour and tell me in his presence: +yes or no. I know you will pray over it. Well, pray if you like, but +you had better think it over. Go! Yes or no, yes or no, yes or no!" he +still shouted when the princess, as if lost in a fog, had already +staggered out of the study. + +Her fate was decided and happily decided. But what her father had +said about Mademoiselle Bourienne was dreadful. It was untrue to be +sure, but still it was terrible, and she could not help thinking of +it. She was going straight on through the conservatory, neither seeing +nor hearing anything, when suddenly the well-known whispering of +Mademoiselle Bourienne aroused her. She raised her eyes, and two steps +away saw Anatole embracing the Frenchwoman and whispering something to +her. With a horrified expression on his handsome face, Anatole +looked at Princess Mary, but did not at once take his arm from the +waist of Mademoiselle Bourienne who had not yet seen her. + +"Who's that? Why? Wait a moment!" Anatole's face seemed to say. +Princess Mary looked at them in silence. She could not understand +it. At last Mademoiselle Bourienne gave a scream and ran away. Anatole +bowed to Princess Mary with a gay smile, as if inviting her to join in +a laugh at this strange incident, and then shrugging his shoulders +went to the door that led to his own apartments. + +An hour later, Tikhon came to call Princess Mary to the old +prince; he added that Prince Vasili was also there. When Tikhon came +to her Princess Mary was sitting on the sofa in her room, holding +the weeping Mademoiselle Bourienne in her arms and gently stroking her +hair. The princess' beautiful eyes with all their former calm radiance +were looking with tender affection and pity at Mademoiselle +Bourienne's pretty face. + +"No, Princess, I have lost your affection forever!" said +Mademoiselle Bourienne. + +"Why? I love you more than ever," said Princess Mary, "and I will +try to do all I can for your happiness." + +"But you despise me. You who are so pure can never understand +being so carried away by passion. Oh, only my poor mother..." + +"I quite understand," answered Princess Mary, with a sad smile. +"Calm yourself, my dear. I will go to my father," she said, and went +out. + +Prince Vasili, with one leg thrown high over the other and a +snuffbox in his hand, was sitting there with a smile of deep emotion +on his face, as if stirred to his heart's core and himself +regretting and laughing at his own sensibility, when Princess Mary +entered. He hurriedly took a pinch of snuff. + +"Ah, my dear, my dear!" he began, rising and taking her by both +hands. Then, sighing, he added: "My son's fate is in your hands. +Decide, my dear, good, gentle Marie, whom I have always loved as a +daughter!" + +He drew back and a real tear appeared in his eye. + +"Fr... fr..." snorted Prince Bolkonski. "The prince is making a +proposition to you in his pupil's--I mean, his son's--name. Do you +wish or not to be Prince Anatole Kuragin's wife? Reply: yes or no," he +shouted, "and then I shall reserve the right to state my opinion also. +Yes, my opinion, and only my opinion," added Prince Bolkonski, turning +to Prince Vasili and answering his imploring look. "Yes, or no?" + +"My desire is never to leave you, Father, never to separate my +life from yours. I don't wish to marry," she answered positively, +glancing at Prince Vasili and at her father with her beautiful eyes. + +"Humbug! Nonsense! Humbug, humbug, humbug!" cried Prince +Bolkonski, frowning and taking his daughter's hand; he did not kiss +her, but only bending his forehead to hers just touched it, and +pressed her hand so that she winced and uttered a cry. + +Prince Vasili rose. + +"My dear, I must tell you that this is a moment I shall never, never +forget. But, my dear, will you not give us a little hope of touching +this heart, so kind and generous? Say 'perhaps'... The future is so +long. Say 'perhaps.'" + +"Prince, what I have said is all there is in my heart. I thank you +for the honor, but I shall never be your son's wife." + +"Well, so that's finished, my dear fellow! I am very glad to have +seen you. Very glad! Go back to your rooms, Princess. Go!" said the +old prince. "Very, very glad to have seen you," repeated he, +embracing Prince Vasili. + +"My vocation is a different one," thought Princess Mary. "My +vocation is to be happy with another kind of happiness, the +happiness of love and self-sacrifice. And cost what it may, I will +arrange poor Amelie's happiness, she loves him so passionately, and so +passionately repents. I will do all I can to arrange the match between +them. If he is not rich I will give her the means; I will ask my +father and Andrew. I shall be so happy when she is his wife. She is so +unfortunate, a stranger, alone, helpless! And, oh God, how +passionately she must love him if she could so far forget herself! +Perhaps I might have done the same!..." thought Princess Mary. + + + + + +CHAPTER VI + + +It was long since the Rostovs had news of Nicholas. Not till +midwinter was the count at last handed a letter addressed in his son's +handwriting. On receiving it, he ran on tiptoe to his study in alarm +and haste, trying to escape notice, closed the door, and began to read +the letter. + +Anna Mikhaylovna, who always knew everything that passed in the +house, on hearing of the arrival of the letter went softly into the +room and found the count with it in his hand, sobbing and laughing +at the same time. + +Anna Mikhaylovna, though her circumstances had improved, was still +living with the Rostovs. + +"My dear friend?" said she, in a tone of pathetic inquiry, +prepared to sympathize in any way. + +The count sobbed yet more. + +"Nikolenka... a letter... wa... a... s... wounded... my darling +boy... the countess... promoted to be an officer... thank God... How +tell the little countess!" + +Anna Mikhaylovna sat down beside him, with her own handkerchief +wiped the tears from his eyes and from the letter, then having dried +her own eyes she comforted the count, and decided that at dinner and +till teatime she would prepare the countess, and after tea, with God's +help, would inform her. + +At dinner Anna Mikhaylovna talked the whole time about the war +news and about Nikolenka, twice asked when the last letter had been +received from him, though she knew that already, and remarked that +they might very likely be getting a letter from him that day. Each +time that these hints began to make the countess anxious and she +glanced uneasily at the count and at Anna Mikhaylovna, the latter very +adroitly turned the conversation to insignificant matters. Natasha, +who, of the whole family, was the most gifted with a capacity to +feel any shades of intonation, look, and expression, pricked up her +ears from the beginning of the meal and was certain that there was +some secret between her father and Anna Mikhaylovna, that it had +something to do with her brother, and that Anna Mikhaylovna was +preparing them for it. Bold as she was, Natasha, who knew how +sensitive her mother was to anything relating to Nikolenka, did not +venture to ask any questions at dinner, but she was too excited to eat +anything and kept wriggling about on her chair regardless of her +governess' remarks. After dinner, she rushed head long after Anna +Mikhaylovna and, dashing at her, flung herself on her neck as soon +as she overtook her in the sitting room. + +"Auntie, darling, do tell me what it is!" + +"Nothing, my dear." + +"No, dearest, sweet one, honey, I won't give up--I know you know +something." + +Anna Mikhaylovna shook her head. + +"You are a little slyboots," she said. + +"A letter from Nikolenka! I'm sure of it!" exclaimed Natasha, +reading confirmation in Anna Mikhaylovna's face. + +"But for God's sake, be careful, you know how it may affect your +mamma." + +"I will, I will, only tell me! You won't? Then I will go and tell at +once." + +Anna Mikhaylovna, in a few words, told her the contents of the +letter, on condition that she should tell no one. + +"No, on my true word of honor," said Natasha, crossing herself, +"I won't tell anyone!" and she ran off at once to Sonya. + +"Nikolenka... wounded... a letter," she announced in gleeful +triumph. + +"Nicholas!" was all Sonya said, instantly turning white. + +Natasha, seeing the impression the of her brother's wound produced +on Sonya, felt for the first time the sorrowful side of the news. + +She rushed to Sonya, hugged her, and began to cry. + +"A little wound, but he has been made an officer; he is well now, he +wrote himself," said she through her tears. + +"There now! It's true that all you women are crybabies," remarked +Petya, pacing the room with large, resolute strides. "Now I'm very +glad, very glad indeed, that my brother has distinguished himself +so. You are all blubberers and understand nothing." + +Natasha smiled through her tears. + +"You haven't read the letter?" asked Sonya. + +"No, but she said that it was all over and that he's now an +officer." + +"Thank God!" said Sonya, crossing herself. "But perhaps she deceived +you. Let us go to Mamma." + +Petya paced the room in silence for a time. + +"If I'd been in Nikolenka's place I would have killed even more of +those Frenchmen," he said. "What nasty brutes they are! I'd have +killed so many that there'd have been a heap of them." + +"Hold your tongue, Petya, what a goose you are!" + +"I'm not a goose, but they are who cry about trifles," said Petya. + +"Do you remember him?" Natasha suddenly asked, after a moment's +silence. + +Sonya smiled. + +"Do I remember Nicholas?" + +"No, Sonya, but do you remember so that you remember him +perfectly, remember everything?" said Natasha, with an expressive +gesture, evidently wishing to give her words a very definite +meaning. "I remember Nikolenka too, I remember him well," she said. +"But I don't remember Boris. I don't remember him a bit." + +"What! You don't remember Boris?" asked Sonya in surprise. + +"It's not that I don't remember--I know what he is like, but not +as I remember Nikolenka. Him--I just shut my eyes and remember, but +Boris... No!" (She shut her eyes.)"No! there's nothing at all." + +"Oh, Natasha!" said Sonya, looking ecstatically and earnestly at her +friend as if she did not consider her worthy to hear what she meant to +say and as if she were saying it to someone else, with whom joking was +out of the question, "I am in love with your brother once for all and, +whatever may happen to him or to me, shall never cease to love him +as long as I live." + +Natasha looked at Sonya with wondering and inquisitive eyes, and +said nothing. She felt that Sonya was speaking the truth, that there +was such love as Sonya was speaking of. But Natasha had not yet felt +anything like it. She believed it could be, but did not understand it. + +"Shall you write to him?" she asked. + +Sonya became thoughtful. The question of how to write to Nicholas, +and whether she ought to write, tormented her. Now that he was already +an officer and a wounded hero, would it be right to remind him of +herself and, as it might seem, of the obligations to her he had +taken on himself? + +"I don't know. I think if he writes, I will write too," she said, +blushing. + +"And you won't feel ashamed to write to him?" + +Sonya smiled. + +"No." + +"And I should be ashamed to write to Boris. I'm not going to." + +"Why should you be ashamed?" + +"Well, I don't know. It's awkward and would make me ashamed." + +"And I know why she'd be ashamed," said Petya, offended by Natasha's +previous remark. "It's because she was in love with that fat one in +spectacles" (that was how Petya described his namesake, the new +Count Bezukhov) "and now she's in love with that singer" (he meant +Natasha's Italian singing master), "that's why she's ashamed!" + +"Petya, you're a stupid!" said Natasha. + +"Not more stupid than you, madam," said the nine-year-old Petya, +with the air of an old brigadier. + +The countess had been prepared by Anna Mikhaylovna's hints at +dinner. On retiring to her own room, she sat in an armchair, her +eyes fixed on a miniature portrait of her son on the lid of a +snuffbox, while the tears kept coming into her eyes. Anna Mikhaylovna, +with the letter, came on tiptoe to the countess' door and paused. + +"Don't come in," she said to the old count who was following her. +"Come later." And she went in, closing the door behind her. + +The count put his ear to the keyhole and listened. + +At first he heard the sound of indifferent voices, then Anna +Mikhaylovna's voice alone in a long speech, then a cry, then +silence, then both voices together with glad intonations, and then +footsteps. Anna Mikhaylovna opened the door. Her face wore the proud +expression of a surgeon who has just performed a difficult operation +and admits the public to appreciate his skill. + +"It is done!" she said to the count, pointing triumphantly to the +countess, who sat holding in one hand the snuffbox with its portrait +and in the other the letter, and pressing them alternately to her +lips. + +When she saw the count, she stretched out her arms to him, +embraced his bald head, over which she again looked at the letter +and the portrait, and in order to press them again to her lips, she +slightly pushed away the bald head. Vera, Natasha, Sonya, and Petya +now entered the room, and the reading of the letter began. After a +brief description of the campaign and the two battles in which he +had taken part, and his promotion, Nicholas said that he kissed his +father's and mother's hands asking for their blessing, and that he +kissed Vera, Natasha, and Petya. Besides that, he sent greetings to +Monsieur Schelling, Madame Schoss, and his old nurse, and asked them +to kiss for him "dear Sonya, whom he loved and thought of just the +same as ever." When she heard this Sonya blushed so that tears came +into her eyes and, unable to bear the looks turned upon her, ran +away into the dancing hall, whirled round it at full speed with her +dress puffed out like a balloon, and, flushed and smiling, plumped +down on the floor. The countess was crying. + +"Why are you crying, Mamma?" asked Vera. "From all he says one +should be glad and not cry." + +This was quite true, but the count, the countess, and Natasha looked +at her reproachfully. "And who is it she takes after?" thought the +countess. + +Nicholas' letter was read over hundreds of times, and those who were +considered worthy to hear it had to come to the countess, for she +did not let it out of her hands. The tutors came, and the nurses, +and Dmitri, and several acquaintances, and the countess reread the +letter each time with fresh pleasure and each time discovered in it +fresh proofs of Nikolenka's virtues. How strange, how extraordinary, +how joyful it seemed, that her son, the scarcely perceptible motion of +whose tiny limbs she had felt twenty years ago within her, that son +about whom she used to have quarrels with the too indulgent count, +that son who had first learned to say "pear" and then "granny," that +this son should now be away in a foreign land amid strange +surroundings, a manly warrior doing some kind of man's work of his +own, without help or guidance. The universal experience of ages, +showing that children do grow imperceptibly from the cradle to +manhood, did not exist for the countess. Her son's growth toward +manhood, at each of its stages, had seemed as extraordinary to her +as if there had never existed the millions of human beings who grew up +in the same way. As twenty years before, it seemed impossible that the +little creature who lived somewhere under her heart would ever cry, +suck her breast, and begin to speak, so now she could not believe that +that little creature could be this strong, brave man, this model son +and officer that, judging by this letter, he now was. + +"What a style! How charmingly he describes!" said she, reading the +descriptive part of the letter. "And what a soul! Not a word about +himself.... Not a word! About some Denisov or other, though he +himself, I dare say, is braver than any of them. He says nothing about +his sufferings. What a heart! How like him it is! And how he has +remembered everybody! Not forgetting anyone. I always said when he was +only so high--I always said...." + +For more than a week preparations were being made, rough drafts of +letters to Nicholas from all the household were written and copied +out, while under the supervision of the countess and the solicitude of +the count, money and all things necessary for the uniform and +equipment of the newly commissioned officer were collected. Anna +Mikhaylovna, practical woman that she was, had even managed by favor +with army authorities to secure advantageous means of communication +for herself and her son. She had opportunities of sending her +letters to the Grand Duke Constantine Pavlovich, who commanded the +Guards. The Rostovs supposed that The Russian Guards, Abroad, was +quite a definite address, and that if a letter reached the Grand +Duke in command of the Guards there was no reason why it should not +reach the Pavlograd regiment, which was presumably somewhere in the +same neighborhood. And so it was decided to send the letters and money +by the Grand Duke's courier to Boris and Boris was to forward them +to Nicholas. The letters were from the old count, the countess, Petya, +Vera, Natasha, and Sonya, and finally there were six thousand rubles +for his outfit and various other things the old count sent to his son. + + + + + +CHAPTER VII + + +On the twelfth of November, Kutuzov's active army, in camp before +Olmutz, was preparing to be reviewed next day by the two Emperors--the +Russian and the Austrian. The Guards, just arrived from Russia, +spent the night ten miles from Olmutz and next morning were to come +straight to the review, reaching the field at Olmutz by ten o'clock. + +That day Nicholas Rostov received a letter from Boris, telling him +that the Ismaylov regiment was quartered for the night ten miles +from Olmutz and that he wanted to see him as he had a letter and money +for him. Rostov was particularly in need of money now that the troops, +after their active service, were stationed near Olmutz and the camp +swarmed with well-provisioned sutlers and Austrian Jews offering all +sorts of tempting wares. The Pavlograds held feast after feast, +celebrating awards they had received for the campaign, and made +expeditions to Olmutz to visit a certain Caroline the Hungarian, who +had recently opened a restaurant there with girls as waitresses. +Rostov, who had just celebrated his promotion to a cornetcy and bought +Denisov's horse, Bedouin, was in debt all round, to his comrades and +the sutlers. On receiving Boris' letter he rode with a fellow +officer to Olmutz, dined there, drank a bottle of wine, and then set +off alone to the Guards' camp to find his old playmate. Rostov had not +yet had time to get his uniform. He had on a shabby cadet jacket, +decorated with a soldier's cross, equally shabby cadet's riding +breeches lined with worn leather, and an officer's saber with a +sword knot. The Don horse he was riding was one he had bought from a +Cossack during the campaign, and he wore a crumpled hussar cap stuck +jauntily back on one side of his head. As he rode up to the camp he +thought how he would impress Boris and all his comrades of the +Guards by his appearance--that of a fighting hussar who had been under +fire. + +The Guards had made their whole march as if on a pleasure trip, +parading their cleanliness and discipline. They had come by easy +stages, their knapsacks conveyed on carts, and the Austrian +authorities had provided excellent dinners for the officers at every +halting place. The regiments had entered and left the town with +their bands playing, and by the Grand Duke's orders the men had +marched all the way in step (a practice on which the Guards prided +themselves), the officers on foot and at their proper posts. Boris had +been quartered, and had marched all the way, with Berg who was already +in command of a company. Berg, who had obtained his captaincy during +the campaign, had gained the confidence of his superiors by his +promptitude and accuracy and had arranged his money matters very +satisfactorily. Boris, during the campaign, had made the +acquaintance of many persons who might prove useful to him, and by a +letter of recommendation he had brought from Pierre had become +acquainted with Prince Andrew Bolkonski, through whom he hoped to +obtain a post on the commander in chief's staff. Berg and Boris, +having rested after yesterday's march, were sitting, clean and +neatly dressed, at a round table in the clean quarters allotted to +them, playing chess. Berg held a smoking pipe between his knees. +Boris, in the accurate way characteristic of him, was building a +little pyramid of chessmen with his delicate white fingers while +awaiting Berg's move, and watched his opponent's face, evidently +thinking about the game as he always thought only of whatever he was +engaged on. + +"Well, how are you going to get out of that?" he remarked. + +"We'll try to," replied Berg, touching a pawn and then removing +his hand. + +At that moment the door opened. + +"Here he is at last!" shouted Rostov. "And Berg too! Oh, you +petisenfans, allay cushay dormir!" he exclaimed, imitating his Russian +nurse's French, at which he and Boris used to laugh long ago. + +"Dear me, how you have changed!" + +Boris rose to meet Rostov, but in doing so did not omit to steady +and replace some chessmen that were falling. He was about to embrace +his friend, but Nicholas avoided him. With that peculiar feeling of +youth, that dread of beaten tracks, and wish to express itself in a +manner different from that of its elders which is often insincere, +Nicholas wished to do something special on meeting his friend. He +wanted to pinch him, push him, do anything but kiss him--a thing +everybody did. But notwithstanding this, Boris embraced him in a +quiet, friendly way and kissed him three times. + +They had not met for nearly half a year and, being at the age when +young men take their first steps on life's road, each saw immense +changes in the other, quite a new reflection of the society in which +they had taken those first steps. Both had changed greatly since +they last met and both were in a hurry to show the changes that had +taken place in them. + +"Oh, you damned dandies! Clean and fresh as if you'd been to a fete, +not like us sinners of the line," cried Rostov, with martial swagger +and with baritone notes in his voice, new to Boris, pointing to his +own mud-bespattered breeches. The German landlady, hearing Rostov's +loud voice, popped her head in at the door. + +"Eh, is she pretty?" he asked with a wink. + +"Why do you shout so? You'll frighten them!" said Boris. "I did +not expect you today," he added. "I only sent you the note yesterday +by Bolkonski--an adjutant of Kutuzov's, who's a friend of mine. I +did not think he would get it to you so quickly.... Well, how are you? +Been under fire already?" asked Boris. + +Without answering, Rostov shook the soldier's Cross of St. George +fastened to the cording of his uniform and, indicating a bandaged arm, +glanced at Berg with a smile. + +"As you see," he said. + +"Indeed? Yes, yes!" said Boris, with a smile. "And we too have had a +splendid march. You know, of course, that His Imperial Highness rode +with our regiment all the time, so that we had every comfort and every +advantage. What receptions we had in Poland! What dinners and balls! I +can't tell you. And the Tsarevich was very gracious to all our +officers." + +And the two friends told each other of their doings, the one of +his hussar revels and life in the fighting line, the other of the +pleasures and advantages of service under members of the Imperial +family. + +"Oh, you Guards!" said Rostov. "I say, send for some wine." + +Boris made a grimace. + +"If you really want it," said he. + +He went to his bed, drew a purse from under the clean pillow, and +sent for wine. + +"Yes, and I have some money and a letter to give you," he added. + +Rostov took the letter and, throwing the money on the sofa, put both +arms on the table and began to read. After reading a few lines, he +glanced angrily at Berg, then, meeting his eyes, hid his face behind +the letter. + +"Well, they've sent you a tidy sum," said Berg, eying the heavy +purse that sank into the sofa. "As for us, Count, we get along on +our pay. I can tell you for myself..." + +"I say, Berg, my dear fellow," said Rostov, "when you get a letter +from home and meet one of your own people whom you want to talk +everything over with, and I happen to be there, I'll go at once, to be +out of your way! Do go somewhere, anywhere... to the devil!" he +exclaimed, and immediately seizing him by the shoulder and looking +amiably into his face, evidently wishing to soften the rudeness of his +words, he added, "Don't be hurt, my dear fellow; you know I speak from +my heart as to an old acquaintance." + +"Oh, don't mention it, Count! I quite understand," said Berg, +getting up and speaking in a muffled and guttural voice. + +"Go across to our hosts: they invited you," added Boris. + +Berg put on the cleanest of coats, without a spot or speck of +dust, stood before a looking glass and brushed the hair on his temples +upwards, in the way affected by the Emperor Alexander, and, having +assured himself from the way Rostov looked at it that his coat had +been noticed, left the room with a pleasant smile. + +"Oh dear, what a beast I am!" muttered Rostov, as he read the +letter. + +"Why?" + +"Oh, what a pig I am, not to have written and to have given them +such a fright! Oh, what a pig I am!" he repeated, flushing suddenly. +"Well, have you sent Gabriel for some wine? All right let's have +some!" + +In the letter from his parents was enclosed a letter of +recommendation to Bagration which the old countess at Anna +Mikhaylovna's advice had obtained through an acquaintance and sent +to her son, asking him to take it to its destination and make use of +it. + +"What nonsense! Much I need it!" said Rostov, throwing the letter +under the table. + +"Why have you thrown that away?" asked Boris. + +"It is some letter of recommendation... what the devil do I want +it for!" + +"Why 'What the devil'?" said Boris, picking it up and reading the +address. "This letter would be of great use to you." + +"I want nothing, and I won't be anyone's adjutant." + +"Why not?" inquired Boris. + +"It's a lackey's job!" + +"You are still the same dreamer, I see," remarked Boris, shaking his +head. + +"And you're still the same diplomatist! But that's not the +point... Come, how are you?" asked Rostov. + +"Well, as you see. So far everything's all right, but I confess I +should much like to be an adjutant and not remain at the front." + +"Why?" + +"Because when once a man starts on military service, he should try +to make as successful a career of it as possible." + +"Oh, that's it!" said Rostov, evidently thinking of something else. + +He looked intently and inquiringly into his friend's eyes, evidently +trying in vain to find the answer to some question. + +Old Gabriel brought in the wine. + +"Shouldn't we now send for Berg?" asked Boris. "He would drink +with you. I can't." + +"Well, send for him... and how do you get on with that German?" +asked Rostov, with a contemptuous smile. + +"He is a very, very nice, honest, and pleasant fellow," answered +Boris. + +Again Rostov looked intently into Boris' eyes and sighed. Berg +returned, and over the bottle of wine conversation between the three +officers became animated. The Guardsmen told Rostov of their march and +how they had been made much of in Russia, Poland, and abroad. They +spoke of the sayings and doings of their commander, the Grand Duke, +and told stories of his kindness and irascibility. Berg, as usual, +kept silent when the subject did not relate to himself, but in +connection with the stories of the Grand Duke's quick temper he +related with gusto how in Galicia he had managed to deal with the +Grand Duke when the latter made a tour of the regiments and was +annoyed at the irregularity of a movement. With a pleasant smile +Berg related how the Grand Duke had ridden up to him in a violent +passion, shouting: "Arnauts!" ("Arnauts" was the Tsarevich's +favorite expression when he was in a rage) and called for the +company commander. + +"Would you believe it, Count, I was not at all alarmed, because I +knew I was right. Without boasting, you know, I may say that I know +the Army Orders by heart and know the Regulations as well as I do +the Lord's Prayer. So, Count, there never is any negligence in my +company, and so my conscience was at ease. I came forward...." (Berg +stood up and showed how he presented himself, with his hand to his +cap, and really it would have been difficult for a face to express +greater respect and self-complacency than his did.) "Well, he +stormed at me, as the saying is, stormed and stormed and stormed! It +was not a matter of life but rather of death, as the saying is. +'Albanians!' and 'devils!' and 'To Siberia!'" said Berg with a +sagacious smile. "I knew I was in the right so I kept silent; was +not that best, Count?... 'Hey, are you dumb?' he shouted. Still I +remained silent. And what do you think, Count? The next day it was not +even mentioned in the Orders of the Day. That's what keeping one's +head means. That's the way, Count," said Berg, lighting his pipe and +emitting rings of smoke. + +"Yes, that was fine," said Rostov, smiling. + +But Boris noticed that he was preparing to make fun of Berg, and +skillfully changed the subject. He asked him to tell them how and +where he got his wound. This pleased Rostov and he began talking about +it, and as he went on became more and more animated. He told them of +his Schon Grabern affair, just as those who have taken part in a +battle generally do describe it, that is, as they would like it to +have been, as they have heard it described by others, and as sounds +well, but not at all as it really was. Rostov was a truthful young man +and would on no account have told a deliberate lie. He began his story +meaning to tell everything just as it happened, but imperceptibly, +involuntarily, and inevitably he lapsed into falsehood. If he had told +the truth to his hearers--who like himself had often heard stories +of attacks and had formed a definite idea of what an attack was and +were expecting to hear just such a story--they would either not have +believed him or, still worse, would have thought that Rostov was +himself to blame since what generally happens to the narrators of +cavalry attacks had not happened to him. He could not tell them simply +that everyone went at a trot and that he fell off his horse and +sprained his arm and then ran as hard as he could from a Frenchman +into the wood. Besides, to tell everything as it really happened, it +would have been necessary to make an effort of will to tell only +what happened. It is very difficult to tell the truth, and young +people are rarely capable of it. His hearers expected a story of how +beside himself and all aflame with excitement, he had flown like a +storm at the square, cut his way in, slashed right and left, how his +saber had tasted flesh and he had fallen exhausted, and so on. And +so he told them all that. + +In the middle of his story, just as he was saying: "You cannot +imagine what a strange frenzy one experiences during an attack," +Prince Andrew, whom Boris was expecting, entered the room. Prince +Andrew, who liked to help young men, was flattered by being asked +for his assistance and being well disposed toward Boris, who had +managed to please him the day before, he wished to do what the young +man wanted. Having been sent with papers from Kutuzov to the +Tsarevich, he looked in on Boris, hoping to find him alone. When he +came in and saw an hussar of the line recounting his military exploits +(Prince Andrew could not endure that sort of man), he gave Boris a +pleasant smile, frowned as with half-closed eyes he looked at +Rostov, bowed slightly and wearily, and sat down languidly on the +sofa: he felt it unpleasant to have dropped in on bad company. +Rostov flushed up on noticing this, but he did not care, this was a +mere stranger. Glancing, however, at Boris, he saw that he too +seemed ashamed of the hussar of the line. + +In spite of Prince Andrew's disagreeable, ironical tone, in spite of +the contempt with which Rostov, from his fighting army point of +view, regarded all these little adjutants on the staff of whom the +newcomer was evidently one, Rostov felt confused, blushed, and +became silent. Boris inquired what news there might be on the staff, +and what, without indiscretion, one might ask about our plans. + +"We shall probably advance," replied Bolkonski, evidently +reluctant to say more in the presence of a stranger. + +Berg took the opportunity to ask, with great politeness, whether, as +was rumored, the allowance of forage money to captains of companies +would be doubled. To this Prince Andrew answered with a smile that +he could give no opinion on such an important government order, and +Berg laughed gaily. + +"As to your business," Prince Andrew continued, addressing Boris, +"we will talk of it later" (and he looked round at Rostov). "Come to +me after the review and we will do what is possible." + +And, having glanced round the room, Prince Andrew turned to +Rostov, whose state of unconquerable childish embarrassment now +changing to anger he did not condescend to notice, and said: "I +think you were talking of the Schon Grabern affair? Were you there?" + +"I was there," said Rostov angrily, as if intending to insult the +aide-de-camp. + +Bolkonski noticed the hussar's state of mind, and it amused him. +With a slightly contemptuous smile, he said: "Yes, there are many +stories now told about that affair!" + +"Yes, stories!" repeated Rostov loudly, looking with eyes suddenly +grown furious, now at Boris, now at Bolkonski. "Yes, many stories! But +our stories are the stories of men who have been under the enemy's +fire! Our stories have some weight, not like the stories of those +fellows on the staff who get rewards without doing anything!" + +"Of whom you imagine me to be one?" said Prince Andrew, with a quiet +and particularly amiable smile. + +A strange feeling of exasperation and yet of respect for this +man's self-possession mingled at that moment in Rostov's soul. + +"I am not talking about you," he said, "I don't know you and, +frankly, I don't want to. I am speaking of the staff in general." + +"And I will tell you this," Prince Andrew interrupted in a tone of +quiet authority, "you wish to insult me, and I am ready to agree +with you that it would be very easy to do so if you haven't sufficient +self-respect, but admit that the time and place are very badly chosen. +In a day or two we shall all have to take part in a greater and more +serious duel, and besides, Drubetskoy, who says he is an old friend of +yours, is not at all to blame that my face has the misfortune to +displease you. However," he added rising, "you know my name and +where to find me, but don't forget that I do not regard either +myself or you as having been at all insulted, and as a man older +than you, my advice is to let the matter drop. Well then, on Friday +after the review I shall expect you, Drubetskoy. Au revoir!" exclaimed +Prince Andrew, and with a bow to them both he went out. + +Only when Prince Andrew was gone did Rostov think of what he ought +to have said. And he was still more angry at having omitted to say it. +He ordered his horse at once and, coldly taking leave of Boris, rode +home. Should he go to headquarters next day and challenge that +affected adjutant, or really let the matter drop, was the question +that worried him all the way. He thought angrily of the pleasure he +would have at seeing the fright of that small and frail but proud +man when covered by his pistol, and then he felt with surprise that of +all the men he knew there was none he would so much like to have for a +friend as that very adjutant whom he so hated. + + + + + +CHAPTER VIII + + +The day after Rostov had been to see Boris, a review was held of the +Austrian and Russian troops, both those freshly arrived from Russia +and those who had been campaigning under Kutuzov. The two Emperors, +the Russian with his heir the Tsarevich, and the Austrian with the +Archduke, inspected the allied army of eighty thousand men. + +From early morning the smart clean troops were on the move, +forming up on the field before the fortress. Now thousands of feet and +bayonets moved and halted at the officers' command, turned with +banners flying, formed up at intervals, and wheeled round other +similar masses of infantry in different uniforms; now was heard the +rhythmic beat of hoofs and the jingling of showy cavalry in blue, red, +and green braided uniforms, with smartly dressed bandsmen in front +mounted on black, roan, or gray horses; then again, spreading out with +the brazen clatter of the polished shining cannon that quivered on the +gun carriages and with the smell of linstocks, came the artillery +which crawled between the infantry and cavalry and took up its +appointed position. Not only the generals in full parade uniforms, +with their thin or thick waists drawn in to the utmost, their red +necks squeezed into their stiff collars, and wearing scarves and all +their decorations, not only the elegant, pomaded officers, but every +soldier with his freshly washed and shaven face and his weapons +clean and polished to the utmost, and every horse groomed till its +coat shone like satin and every hair of its wetted mane lay smooth- +felt that no small matter was happening, but an important and solemn +affair. Every general and every soldier was conscious of his own +insignificance, aware of being but a drop in that ocean of men, and +yet at the same time was conscious of his strength as a part of that +enormous whole. + +From early morning strenuous activities and efforts had begun and by +ten o'clock all had been brought into due order. The ranks were +drown up on the vast field. The whole army was extended in three +lines: the cavalry in front, behind it the artillery, and behind +that again the infantry. + +A space like a street was left between each two lines of troops. The +three parts of that army were sharply distinguished: Kutuzov's +fighting army (with the Pavlograds on the right flank of the front); +those recently arrived from Russia, both Guards and regiments of the +line; and the Austrian troops. But they all stood in the same lines, +under one command, and in a like order. + +Like wind over leaves ran an excited whisper: "They're coming! +They're coming!" Alarmed voices were heard, and a stir of final +preparation swept over all the troops. + +From the direction of Olmutz in front of them, a group was seen +approaching. And at that moment, though the day was still, a light +gust of wind blowing over the army slightly stirred the streamers on +the lances and the unfolded standards fluttered against their +staffs. It looked as if by that slight motion the army itself was +expressing its joy at the approach of the Emperors. One voice was +heard shouting: "Eyes front!" Then, like the crowing of cocks at +sunrise, this was repeated by others from various sides and all became +silent. + +In the deathlike stillness only the tramp of horses was heard. +This was the Emperors' suites. The Emperors rode up to the flank, +and the trumpets of the first cavalry regiment played the general +march. It seemed as though not the trumpeters were playing, but as +if the army itself, rejoicing at the Emperors' approach, had naturally +burst into music. Amid these sounds, only the youthful kindly voice of +the Emperor Alexander was clearly heard. He gave the words of +greeting, and the first regiment roared "Hurrah!" so deafeningly, +continuously, and joyfully that the men themselves were awed by +their multitude and the immensity of the power they constituted. + +Rostov, standing in the front lines of Kutuzov's army which the Tsar +approached first, experienced the same feeling as every other man in +that army: a feeling of self-forgetfulness, a proud consciousness of +might, and a passionate attraction to him who was the cause of this +triumph. + +He felt that at a single word from that man all this vast mass +(and he himself an insignificant atom in it) would go through fire and +water, commit crime, die, or perform deeds of highest heroism, and +so he could not but tremble and his heart stand still at the imminence +of that word. + +"Hurrah! Hurrah! Hurrah!" thundered from all sides, one regiment +after another greeting the Tsar with the strains of the march, and +then "Hurrah!"... Then the general march, and again "Hurrah! +Hurrah!" growing ever stronger and fuller and merging into a deafening +roar. + +Till the Tsar reached it, each regiment in its silence and +immobility seemed like a lifeless body, but as soon as he came up it +became alive, its thunder joining the roar of the whole line along +which he had already passed. Through the terrible and deafening roar +of those voices, amid the square masses of troops standing +motionless as if turned to stone, hundreds of riders composing the +suites moved carelessly but symmetrically and above all freely, and in +front of them two men--the Emperors. Upon them the undivided, +tensely passionate attention of that whole mass of men was +concentrated. + +The handsome young Emperor Alexander, in the uniform of the Horse +Guards, wearing a cocked hat with its peaks front and back, with his +pleasant face and resonant though not loud voice, attracted everyone's +attention. + +Rostov was not far from the trumpeters, and with his keen sight +had recognized the Tsar and watched his approach. When he was within +twenty paces, and Nicholas could clearly distinguish every detail of +his handsome, happy young face, he experienced a feeling tenderness +and ecstasy such as he had never before known. Every trait and every +movement of the Tsar's seemed to him enchanting. + +Stopping in front of the Pavlograds, the Tsar said something in +French to the Austrian Emperor and smiled. + +Seeing that smile, Rostov involuntarily smiled himself and felt a +still stronger flow of love for his sovereign. He longed to show +that love in some way and knowing that this was impossible was ready +to cry. The Tsar called the colonel of the regiment and said a few +words to him. + +"Oh God, what would happen to me if the Emperor spoke to me?" +thought Rostov. "I should die of happiness!" + +The Tsar addressed the officers also: "I thank you all, gentlemen, I +thank you with my whole heart." To Rostov every word sounded like a +voice from heaven. How gladly would he have died at once for his Tsar! + +"You have earned the St. George's standards and will be worthy of +them." + +"Oh, to die, to die for him," thought Rostov. + +The Tsar said something more which Rostov did not hear, and the +soldiers, straining their lungs, shouted "Hurrah!" + +Rostov too, bending over his saddle, shouted "Hurrah!" with all +his might, feeling that he would like to injure himself by that shout, +if only to express his rapture fully. + +The Tsar stopped a few minutes in front of the hussars as if +undecided. + +"How can the Emperor be undecided?" thought Rostov, but then even +this indecision appeared to him majestic and enchanting, like +everything else the Tsar did. + +That hesitation lasted only an instant. The Tsar's foot, in the +narrow pointed boot then fashionable, touched the groin of the +bobtailed bay mare he rode, his hand in a white glove gathered up +the reins, and he moved off accompanied by an irregularly swaying +sea of aides-de-camp. Farther and farther he rode away, stopping at +other regiments, till at last only his white plumes were visible to +Rostov from amid the suites that surrounded the Emperors. + +Among the gentlemen of the suite, Rostov noticed Bolkonski, +sitting his horse indolently and carelessly. Rostov recalled their +quarrel of yesterday and the question presented itself whether he +ought or ought not to challenge Bolkonski. "Of course not!" he now +thought. "Is it worth thinking or speaking of it at such a moment? +At a time of such love, such rapture, and such self-sacrifice, what do +any of our quarrels and affronts matter? I love and forgive +everybody now." + +When the Emperor had passed nearly all the regiments, the troops +began a ceremonial march past him, and Rostov on Bedouin, recently +purchased from Denisov, rode past too, at the rear of his squadron- +that is, alone and in full view of the Emperor. + +Before he reached him, Rostov, who was a splendid horseman, +spurred Bedouin twice and successfully put him to the showy trot in +which the animal went when excited. Bending his foaming muzzle to +his chest, his tail extended, Bedouin, as if also conscious of the +Emperor's eye upon him, passed splendidly, lifting his feet with a +high and graceful action, as if flying through the air without +touching the ground. + +Rostov himself, his legs well back and his stomach drawn in and +feeling himself one with his horse, rode past the Emperor with a +frowning but blissful face "like a vewy devil," as Denisov expressed +it. + +"Fine fellows, the Pavlograds!" remarked the Emperor. + +"My God, how happy I should be if he ordered me to leap into the +fire this instant!" thought Rostov. + +When the review was over, the newly arrived officers, and also +Kutuzov's, collected in groups and began to talk about the awards, +about the Austrians and their uniforms, about their lines, about +Bonaparte, and how badly the latter would fare now, especially if +the Essen corps arrived and Prussia took our side. + +But the talk in every group was chiefly about the Emperor Alexander. +His every word and movement was described with ecstasy. + +They all had but one wish: to advance as soon as possible against +the enemy under the Emperor's command. Commanded by the Emperor +himself they could not fail to vanquish anyone, be it whom it might: +so thought Rostov and most of the officers after the review. + +All were then more confident of victory than the winning of two +battles would have made them. + + + + + +CHAPTER IX + + +The day after the review, Boris, in his best uniform and with his +comrade Berg's best wishes for success, rode to Olmutz to see +Bolkonski, wishing to profit by his friendliness and obtain for +himself the best post he could--preferably that of adjutant to some +important personage, a position in the army which seemed to him most +attractive. "It is all very well for Rostov, whose father sends him +ten thousand rubles at a time, to talk about not wishing to cringe +to anybody and not be anyone's lackey, but I who have nothing but my +brains have to make a career and must not miss opportunities, but must +avail myself of them!" he reflected. + +He did not find Prince Andrew in Olmutz that day, but the appearance +of the town where the headquarters and the diplomatic corps were +stationed and the two Emperors were living with their suites, +households, and courts only strengthened his desire to belong to +that higher world. + +He knew no one, and despite his smart Guardsman's uniform, all these +exalted personages passing in the streets in their elegant carriages +with their plumes, ribbons, and medals, both courtiers and military +men, seemed so immeasurably above him, an insignificant officer of the +Guards, that they not only did not wish to, but simply could not, be +aware of his existence. At the quarters of the commander in chief, +Kutuzov, where he inquired for Bolkonski, all the adjutants and even +the orderlies looked at him as if they wished to impress on him that a +great many officers like him were always coming there and that +everybody was heartily sick of them. In spite of this, or rather +because of it, next day, November 15, after dinner he again went to +Olmutz and, entering the house occupied by Kutuzov, asked for +Bolkonski. Prince Andrew was in and Boris was shown into a large +hall probably formerly used for dancing, but in which five beds now +stood, and furniture of various kinds: a table, chairs, and a +clavichord. One adjutant, nearest the door, was sitting at the table +in a Persian dressing gown, writing. Another, the red, stout +Nesvitski, lay on a bed with his arms under his head, laughing with an +officer who had sat down beside him. A third was playing a Viennese +waltz on the clavichord, while a fourth, lying on the clavichord, sang +the tune. Bolkonski was not there. None of these gentlemen changed his +position on seeing Boris. The one who was writing and whom Boris +addressed turned round crossly and told him Bolkonski was on duty +and that he should go through the door on the left into the +reception room if he wished to see him. Boris thanked him and went +to the reception room, where he found some ten officers and generals. + +When he entered, Prince Andrew, his eyes drooping contemptuously +(with that peculiar expression of polite weariness which plainly says, +"If it were not my duty I would not talk to you for a moment"), was +listening to an old Russian general with decorations, who stood very +erect, almost on tiptoe, with a soldier's obsequious expression on his +purple face, reporting something. + +"Very well, then, be so good as to wait," said Prince Andrew to +the general, in Russian, speaking with the French intonation he +affected when he wished to speak contemptuously, and noticing Boris, +Prince Andrew, paying no more heed to the general who ran after him +imploring him to hear something more, nodded and turned to him with +a cheerful smile. + +At that moment Boris clearly realized what he had before surmised, +that in the army, besides the subordination and discipline +prescribed in the military code, which he and the others knew in the +regiment, there was another, more important, subordination, which made +this tight-laced, purple-faced general wait respectfully while Captain +Prince Andrew, for his own pleasure, chose to chat with Lieutenant +Drubetskoy. More than ever was Boris resolved to serve in future not +according to the written code, but under this unwritten law. He felt +now that merely by having been recommended to Prince Andrew he had +already risen above the general who at the front had the power to +annihilate him, a lieutenant of the Guards. Prince Andrew came up to +him and took his hand. + + +"I am very sorry you did not find me in yesterday. I was fussing +about with Germans all day. We went with Weyrother to survey the +dispositions. When Germans start being accurate, there's no end to +it!" + +Boris smiled, as if he understood what Prince Andrew was alluding to +as something generally known. But it the first time he had heard +Weyrother's name, or even the term "dispositions." + +"Well, my dear fellow, so you still want to be an adjutant? I have +been thinking about you." + +"Yes, I was thinking"--for some reason Boris could not help +blushing--"of asking the commander in chief. He has had a letter +from Prince Kuragin about me. I only wanted to ask because I fear +the Guards won't be in action," he added as if in apology. + +"All right, all right. We'll talk it over," replied Prince Andrew. +"Only let me report this gentleman's business, and I shall be at +your disposal." + +While Prince Andrew went to report about the purple-faced general, +that gentleman--evidently not sharing Boris' conception of the +advantages of the unwritten code of subordination--looked so fixedly +at the presumptuous lieutenant who had prevented his finishing what he +had to say to the adjutant that Boris felt uncomfortable. He turned +away and waited impatiently for Prince Andrew's return from the +commander in chief's room. + +"You see, my dear fellow, I have been thinking about you," said +Prince Andrew when they had gone into the large room where the +clavichord was. "It's no use your going to the commander in chief. +He would say a lot of pleasant things, ask you to dinner" ("That would +not be bad as regards the unwritten code," thought Boris), "but +nothing more would come of it. There will soon be a battalion of us +aides-de-camp and adjutants! But this is what we'll do: I have a +good friend, an adjutant general and an excellent fellow, Prince +Dolgorukov; and though you may not know it, the fact is that now +Kutuzov with his staff and all of us count for nothing. Everything +is now centered round the Emperor. So we will go to Dolgorukov; I have +to go there anyhow and I have already spoken to him about you. We +shall see whether he cannot attach you to himself or find a place +for you somewhere nearer the sun." + +Prince Andrew always became specially keen when he had to guide a +young man and help him to worldly success. Under cover of obtaining +help of this kind for another, which from pride he would never +accept for himself, he kept in touch with the circle which confers +success and which attracted him. He very readily took up Boris' +cause and went with him to Dolgorukov. + +It was late in the evening when they entered the palace at Olmutz +occupied by the Emperors and their retinues. + +That same day a council of war had been held in which all the +members of the Hofkriegsrath and both Emperors took part. At that +council, contrary to the views of the old generals Kutuzov and +Prince Schwartzenberg, it had been decided to advance immediately +and give battle to Bonaparte. The council of war was just over when +Prince Andrew accompanied by Boris arrived at the palace to find +Dolgorukov. Everyone at headquarters was still under the spell of +the day's council, at which the party of the young had triumphed. +The voices of those who counseled delay and advised waiting for +something else before advancing had been so completely silenced and +their arguments confuted by such conclusive evidence of the advantages +of attacking that what had been discussed at the council--the coming +battle and the victory that would certainly result from it--no +longer seemed to be in the future but in the past. All the +advantages were on our side. Our enormous forces, undoubtedly superior +to Napoleon's, were concentrated in one place, the troops inspired +by the Emperors' presence were eager for action. The strategic +position where the operations would take place was familiar in all its +details to the Austrian General Weyrother: a lucky accident had +ordained that the Austrian army should maneuver the previous year on +the very fields where the French had now to be fought; the adjacent +locality was known and shown in every detail on the maps, and +Bonaparte, evidently weakened, was undertaking nothing. + +Dolgorukov, one of the warmest advocates of an attack, had just +returned from the council, tired and exhausted but eager and proud +of the victory that had been gained. Prince Andrew introduced his +protege, but Prince Dolgorukov politely and firmly pressing his hand +said nothing to Boris and, evidently unable to suppress the thoughts +which were uppermost in his mind at that moment, addressed Prince +Andrew in French. + +"Ah, my dear fellow, what a battle we have gained! God grant that +the one that will result from it will be as victorious! However, +dear fellow," he said abruptly and eagerly, "I must confess to +having been unjust to the Austrians and especially to Weyrother. +What exactitude, what minuteness, what knowledge of the locality, what +foresight for every eventuality, every possibility even to the +smallest detail! No, my dear fellow, no conditions better than our +present ones could have been devised. This combination of Austrian +precision with Russian valor--what more could be wished for?" + +"So the attack is definitely resolved on?" asked Bolkonski. + +"And do you know, my dear fellow, it seems to me that Bonaparte +has decidedly lost bearings, you know that a letter was received +from him today for the Emperor." Dolgorukov smiled significantly. + +"Is that so? And what did he say?" inquired Bolkonski. + +"What can he say? Tra-di-ri-di-ra and so on... merely to gain +time. I tell you he is in our hands, that's certain! But what was most +amusing," he continued, with a sudden, good-natured laugh, "was that +we could not think how to address the reply! If not as 'Consul' and of +course not as 'Emperor,' it seemed to me it should be to 'General +Bonaparte.'" + +"But between not recognizing him as Emperor and calling him +General Bonaparte, there is a difference," remarked Bolkonski. + +"That's just it," interrupted Dolgorukov quickly, laughing. "You +know Bilibin--he's a very clever fellow. He suggested addressing him +as 'Usurper and Enemy of Mankind.'" + +Dolgorukov laughed merrily. + +"Only that?" said Bolkonski. + +"All the same, it was Bilibin who found a suitable form for the +address. He is a wise and clever fellow." + +"What was it?" + +"To the Head of the French Government... Au chef du gouvernement +francais," said Dolgorukov, with grave satisfaction. "Good, wasn't +it?" + +"Yes, but he will dislike it extremely," said Bolkonski. + +"Oh yes, very much! My brother knows him, he's dined with him--the +present Emperor--more than once in Paris, and tells me he never met +a more cunning or subtle diplomatist--you know, a combination of +French adroitness and Italian play-acting! Do you know the tale +about him and Count Markov? Count Markov was the only man who knew how +to handle him. You know the story of the handkerchief? It is +delightful!" + +And the talkative Dolgorukov, turning now to Boris, now to Prince +Andrew, told how Bonaparte wishing to test Markov, our ambassador, +purposely dropped a handkerchief in front of him and stood looking +at Markov, probably expecting Markov to pick it up for him, and how +Markov immediately dropped his own beside it and picked it up +without touching Bonaparte's. + +"Delightful!" said Bolkonski. "But I have come to you, Prince, as +a petitioner on behalf of this young man. You see..." but before +Prince Andrew could finish, an aide-de-camp came in to summon +Dolgorukov to the Emperor. + +"Oh, what a nuisance," said Dolgorukov, getting up hurriedly and +pressing the hands of Prince Andrew and Boris. "You know I should be +very glad to do all in my power both for you and for this dear young +man." Again he pressed the hand of the latter with an expression of +good-natured, sincere, and animated levity. "But you see... another +time!" + +Boris was excited by the thought of being so close to the higher +powers as he felt himself to be at that moment. He was conscious +that here he was in contact with the springs that set in motion the +enormous movements of the mass of which in his regiment he felt +himself a tiny, obedient, and insignificant atom. They followed Prince +Dolgorukov out into the corridor and met--coming out of the door of +the Emperor's room by which Dolgorukov had entered--a short man in +civilian clothes with a clever face and sharply projecting jaw +which, without spoiling his face, gave him a peculiar vivacity and +shiftiness of expression. This short man nodded to Dolgorukov as to an +intimate friend and stared at Prince Andrew with cool intensity, +walking straight toward him and evidently expecting him to bow or to +step out of his way. Prince Andrew did neither: a look of animosity +appeared on his face and the other turned away and went down the +side of the corridor. + +"Who was that?" asked Boris. + +"He is one of the most remarkable, but to me most unpleasant of men- +the Minister of Foreign Affairs, Prince Adam Czartoryski.... It is +such men as he who decide the fate of nations," added Bolkonski with a +sigh he could not suppress, as they passed out of the palace. + +Next day, the army began its campaign, and up to the very battle +of Austerlitz, Boris was unable to see either Prince Andrew or +Dolgorukov again and remained for a while with the Ismaylov regiment. + + + + + +CHAPTER X + + +At dawn on the sixteenth of November, Denisov's squadron, in which +Nicholas Rostov served and which was in Prince Bagration's detachment, +moved from the place where it had spent the night, advancing into +action as arranged, and after going behind other columns for about two +thirds of a mile was stopped on the highroad. Rostov saw the +Cossacks and then the first and second squadrons of hussars and +infantry battalions and artillery pass by and go forward and then +Generals Bagration and Dolgorukov ride past with their adjutants. +All the fear before action which he had experienced as previously, all +the inner struggle to conquer that fear, all his dreams of +distinguishing himself as a true hussar in this battle, had been +wasted. Their squadron remained in reserve and Nicholas Rostov spent +that day in a dull and wretched mood. At nine in the morning, he heard +firing in front and shouts of hurrah, and saw wounded being brought +back (there were not many of them), and at last he saw how a whole +detachment of French cavalry was brought in, convoyed by a sontnya +of Cossacks. Evidently the affair was over and, though not big, had +been a successful engagement. The men and officers returning spoke +of a brilliant victory, of the occupation of the town of Wischau and +the capture of a whole French squadron. The day was bright and sunny +after a sharp night frost, and the cheerful glitter of that autumn day +was in keeping with the news of victory which was conveyed, not only +by the tales of those who had taken part in it, but also by the joyful +expression on the faces of soldiers, officers, generals, and +adjutants, as they passed Rostov going or coming. And Nicholas, who +had vainly suffered all the dread that precedes a battle and had spent +that happy day in inactivity, was all the more depressed. + +"Come here, Wostov. Let's dwink to dwown our gwief!" shouted +Denisov, who had settled down by the roadside with a flask and some +food. + +The officers gathered round Denisov's canteen, eating and talking. + +"There! They are bringing another!" cried one of the officers, +indicating a captive French dragoon who was being brought in on foot +by two Cossacks. + +One of them was leading by the bridle a fine large French horse he +had taken from the prisoner. + +"Sell us that horse!" Denisov called out to the Cossacks. + +"If you like, your honor!" + +The officers got up and stood round the Cossacks and their prisoner. +The French dragoon was a young Alsatian who spoke French with a German +accent. He was breathless with agitation, his face was red, and when +he heard some French spoken he at once began speaking to the officers, +addressing first one, then another. He said he would not have been +taken, it was not his fault but the corporal's who had sent him to +seize some horsecloths, though he had told him the Russians were +there. And at every word he added: "But don't hurt my little horse!" +and stroked the animal. It was plain that he did not quite grasp where +he was. Now he excused himself for having been taken prisoner and now, +imagining himself before his own officers, insisted on his soldierly +discipline and zeal in the service. He brought with him into our +rearguard all the freshness of atmosphere of the French army, which +was so alien to us. + +The Cossacks sold the horse for two gold pieces, and Rostov, being +the richest of the officers now that he had received his money, bought +it. + +"But don't hurt my little horse!" said the Alsatian good-naturedly +to Rostov when the animal was handed over to the hussar. + +Rostov smilingly reassured the dragoon and gave him money. + +"Alley! Alley!" said the Cossack, touching the prisoner's arm to +make him go on. + +"The Emperor! The Emperor!" was suddenly heard among the hussars. + +All began to run and bustle, and Rostov saw coming up the road +behind him several riders with white plumes in their hats. In a moment +everyone was in his place, waiting. + +Rostov did not know or remember how he ran to his place and mounted. +Instantly his regret at not having been in action and his dejected +mood amid people of whom he was weary had gone, instantly every +thought of himself had vanished. He was filled with happiness at his +nearness to the Emperor. He felt that this nearness by itself made +up to him for the day he had lost. He was happy as a lover when the +longed-for moment of meeting arrives. Not daring to look round and +without looking round, he was ecstatically conscious of his +approach. He felt it not only from the sound of the hoofs of the +approaching cavalcade, but because as he drew near everything grew +brighter, more joyful, more significant, and more festive around +him. Nearer and nearer to Rostov came that sun shedding beams of +mild and majestic light around, and already he felt himself +enveloped in those beams, he heard his voice, that kindly, calm, and +majestic voice that was yet so simple! And as if in accord with +Rostov's feeling, there was a deathly stillness amid which was heard +the Emperor's voice. + +"The Pavlograd hussars?" he inquired. + +"The reserves, sire!" replied a voice, a very human one compared +to that which had said: "The Pavlograd hussars?" + +The Emperor drew level with Rostov and halted. Alexander's face +was even more beautiful than it had been three days before at the +review. It shone with such gaiety and youth, such innocent youth, that +it suggested the liveliness of a fourteen-year-old boy, and yet it was +the face of the majestic Emperor. Casually, while surveying the +squadron, the Emperor's eyes met Rostov's and rested on them for not +more than two seconds. Whether or no the Emperor understood what was +going on in Rostov's soul (it seemed to Rostov that he understood +everything), at any rate his light-blue eyes gazed for about two +seconds into Rostov's face. A gentle, mild light poured from them. +Then all at once he raised his eyebrows, abruptly touched his horse +with his left foot, and galloped on. + +The younger Emperor could not restrain his wish to be present at the +battle and, in spite of the remonstrances of his courtiers, at +twelve o'clock left the third column with which he had been and +galloped toward the vanguard. Before he came up with the hussars, +several adjutants met him with news of the successful result of the +action. + +This battle, which consisted in the capture of a French squadron, +was represented as a brilliant victory over the French, and so the +Emperor and the whole army, especially while the smoke hung over the +battlefield, believed that the French had been defeated and were +retreating against their will. A few minutes after the Emperor had +passed, the Pavlograd division was ordered to advance. In Wischau +itself, a petty German town, Rostov saw the Emperor again. In the +market place, where there had been some rather heavy firing before the +Emperor's arrival, lay several killed and wounded soldiers whom +there had not been time to move. The Emperor, surrounded by his +suite of officers and courtiers, was riding a bobtailed chestnut mare, +a different one from that which he had ridden at the review, and +bending to one side he gracefully held a gold lorgnette to his eyes +and looked at a soldier who lay prone, with blood on his uncovered +head. The wounded soldier was so dirty, coarse, and revolting that his +proximity to the Emperor shocked Rostov. Rostov saw how the +Emperor's rather round shoulders shuddered as if a cold shiver had run +down them, how his left foot began convulsively tapping the horse's +side with the spur, and how the well-trained horse looked round +unconcerned and did not stir. An adjutant, dismounting, lifted the +soldier under the arms to place him on a stretcher that had been +brought. The soldier groaned. + +"Gently, gently! Can't you do it more gently?" said the Emperor +apparently suffering more than the dying soldier, and he rode away. + +Rostov saw tears filling the Emperor's eyes and heard him, as he was +riding away, say to Czartoryski: "What a terrible thing war is: what a +terrible thing! Quelle terrible chose que la guerre!" + +The troops of the vanguard were stationed before Wischau, within +sight of the enemy's lines, which all day long had yielded ground to +us at the least firing. The Emperor's gratitude was announced to the +vanguard, rewards were promised, and the men received a double +ration of vodka. The campfires crackled and the soldiers' songs +resounded even more merrily than on the previous night. Denisov +celebrated his promotion to the rank of major, and Rostov, who had +already drunk enough, at the end of the feast proposed the Emperor's +health. "Not 'our Sovereign, the Emperor,' as they say at official +dinners," said he, "but the health of our Sovereign, that good, +enchanting, and great man! Let us drink to his health and to the +certain defeat of the French!" + +"If we fought before," he said, "not letting the French pass, as +at Schon Grabern, what shall we not do now when he is at the front? We +will all die for him gladly! Is it not so, gentlemen? Perhaps I am not +saying it right, I have drunk a good deal--but that is how I feel, and +so do you too! To the health of Alexander the First! Hurrah!" + +"Hurrah!" rang the enthusiastic voices of the officers. + +And the old cavalry captain, Kirsten, shouted enthusiastically and +no less sincerely than the twenty-year-old Rostov. + +When the officers had emptied and smashed their glasses, Kirsten +filled others and, in shirt sleeves and breeches, went glass in hand +to the soldiers' bonfires and with his long gray mustache, his white +chest showing under his open shirt, he stood in a majestic pose in the +light of the campfire, waving his uplifted arm. + +"Lads! here's to our Sovereign, the Emperor, and victory over our +enemies! Hurrah!" he exclaimed in his dashing, old, hussar's baritone. + +The hussars crowded round and responded heartily with loud shouts. + +Late that night, when all had separated, Denisov with his short hand +patted his favorite, Rostov, on the shoulder. + +"As there's no one to fall in love with on campaign, he's fallen +in love with the Tsar," he said. + +"Denisov, don't make fun of it!" cried Rostov. "It is such a +lofty, beautiful feeling, such a..." + +"I believe it, I believe it, fwiend, and I share and appwove..." + +"No, you don't understand!" + +And Rostov got up and went wandering among the campfires, dreaming +of what happiness it would be to die--not in saving the Emperor's life +(he did not even dare to dream of that), but simply to die before +his eyes. He really was in love with the Tsar and the glory of the +Russian arms and the hope of future triumph. And he was not the only +man to experience that feeling during those memorable days preceding +the battle of Austerlitz: nine tenths of the men in the Russian army +were then in love, though less ecstatically, with their Tsar and the +glory of the Russian arms. + + + + + +CHAPTER XI + + +The next day the Emperor stopped at Wischau, and Villier, his +physician, was repeatedly summoned to see him. At headquarters and +among the troops near by the news spread that the Emperor was +unwell. He ate nothing and had slept badly that night, those around +him reported. The cause of this indisposition was the strong +impression made on his sensitive mind by the sight of the killed and +wounded. + +At daybreak on the seventeenth, a French officer who had come with a +flag of truce, demanding an audience with the Russian Emperor, was +brought into Wischau from our outposts. This officer was Savary. The +Emperor had only just fallen asleep and so Savary had to wait. At +midday he was admitted to the Emperor, and an hour later he rode off +with Prince Dolgorukov to the advanced post of the French army. + +It was rumored that Savary had been sent to propose to Alexander a +meeting with Napoleon. To the joy and pride of the whole army, a +personal interview was refused, and instead of the Sovereign, Prince +Dolgorukov, the victor at Wischau, was sent with Savary to negotiate +with Napoleon if, contrary to expectations, these negotiations were +actuated by a real desire for peace. + +Toward evening Dolgorukov came back, went straight to the Tsar, +and remained alone with him for a long time. + +On the eighteenth and nineteenth of November, the army advanced +two days' march and the enemy's outposts after a brief interchange +of shots retreated. In the highest army circles from midday on the +nineteenth, a great, excitedly bustling activity began which lasted +till the morning of the twentieth, when the memorable battle of +Austerlitz was fought. + +Till midday on the nineteenth, the activity--the eager talk, running +to and fro, and dispatching of adjutants--was confined to the +Emperor's headquarters. But on the afternoon of that day, this +activity reached Kutuzov's headquarters and the staffs of the +commanders of columns. By evening, the adjutants had spread it to +all ends and parts of the army, and in the night from the nineteenth +to the twentieth, the whole eighty thousand allied troops rose from +their bivouacs to the hum of voices, and the army swayed and started +in one enormous mass six miles long. + +The concentrated activity which had begun at the Emperor's +headquarters in the morning and had started the whole movement that +followed was like the first movement of the main wheel of a large +tower clock. One wheel slowly moved, another was set in motion, and +a third, and wheels began to revolve faster and faster, levers and +cogwheels to work, chimes to play, figures to pop out, and the hands +to advance with regular motion as a result of all that activity. + +Just as in the mechanism of a clock, so in the mechanism of the +military machine, an impulse once given leads to the final result; and +just as indifferently quiescent till the moment when motion is +transmitted to them are the parts of the mechanism which the impulse +has not yet reached. Wheels creak on their axles as the cogs engage +one another and the revolving pulleys whirr with the rapidity of their +movement, but a neighboring wheel is as quiet and motionless as though +it were prepared to remain so for a hundred years; but the moment +comes when the lever catches it and obeying the impulse that wheel +begins to creak and joins in the common motion the result and aim of +which are beyond its ken. + +Just as in a clock, the result of the complicated motion of +innumerable wheels and pulleys is merely a slow and regular movement +of the hands which show the time, so the result of all the complicated +human activities of 160,000 Russians and French--all their passions, +desires, remorse, humiliations, sufferings, outbursts of pride, +fear, and enthusiasm--was only the loss of the battle of Austerlitz, +the so-called battle of the three Emperors--that is to say, a slow +movement of the hand on the dial of human history. + +Prince Andrew was on duty that day and in constant attendance on the +commander in chief. + +At six in the evening, Kutuzov went to the Emperor's headquarters +and after staying but a short time with the Tsar went to see the grand +marshal of the court, Count Tolstoy. + +Bolkonski took the opportunity to go in to get some details of the +coming action from Dolgorukov. He felt that Kutuzov was upset and +dissatisfied about something and that at headquarters they were +dissatisfied with him, and also that at the Emperor's headquarters +everyone adopted toward him the tone of men who know something +others do not know: he therefore wished to speak to Dolgorukov. + +"Well, how d'you do, my dear fellow?" said Dolgorukov, who was +sitting at tea with Bilibin. "The fete is for tomorrow. How is your +old fellow? Out of sorts?" + +"I won't say he is out of sorts, but I fancy he would like to be +heard." + +"But they heard him at the council of war and will hear him when +he talks sense, but to temporize and wait for something now when +Bonaparte fears nothing so much as a general battle is impossible." + +"Yes, you have seen him?" said Prince Andrew. "Well, what is +Bonaparte like? How did he impress you?" + +"Yes, I saw him, and am convinced that he fears nothing so much as a +general engagement," repeated Dolgorukov, evidently prizing this +general conclusion which he had arrived at from his interview with +Napoleon. "If he weren't afraid of a battle why did he ask for that +interview? Why negotiate, and above all why retreat, when to retreat +is so contrary to his method of conducting war? Believe me, he is +afraid, afraid of a general battle. His hour has come! Mark my words!" + +"But tell me, what is he like, eh?" said Prince Andrew again. + +"He is a man in a gray overcoat, very anxious that I should call him +'Your Majesty,' but who, to his chagrin, got no title from me! +That's the sort of man he is, and nothing more," replied Dolgorukov, +looking round at Bilibin with a smile. + +"Despite my great respect for old Kutuzov," he continued, "we should +be a nice set of fellows if we were to wait about and so give him a +chance to escape, or to trick us, now that we certainly have him in +our hands! No, we mustn't forget Suvorov and his rule--not to put +yourself in a position to be attacked, but yourself to attack. Believe +me in war the energy of young men often shows the way better than +all the experience of old Cunctators." + +"But in what position are we going to attack him? I have been at the +outposts today and it is impossible to say where his chief forces +are situated," said Prince Andrew. + +He wished to explain to Dolgorukov a plan of attack he had himself +formed. + +"Oh, that is all the same," Dolgorukov said quickly, and getting +up he spread a map on the table. "All eventualities have been +foreseen. If he is standing before Brunn..." + +And Prince Dolgorukov rapidly but indistinctly explained Weyrother's +plan of a flanking movement. + +Prince Andrew began to reply and to state his own plan, which +might have been as good as Weyrother's, but for the disadvantage +that Weyrother's had already been approved. As soon as Prince Andrew +began to demonstrate the defects of the latter and the merits of his +own plan, Prince Dolgorukov ceased to listen to him and gazed +absent-mindedly not at the map, but at Prince Andrew's face. + +"There will be a council of war at Kutuzov's tonight, though; you +can say all this there," remarked Dolgorukov. + +"I will do so," said Prince Andrew, moving away from the map. + +"Whatever are you bothering about, gentlemen?" said Bilibin, who, +till then, had listened with an amused smile to their conversation and +now was evidently ready with a joke. "Whether tomorrow brings +victory or defeat, the glory of our Russian arms is secure. Except +your Kutuzov, there is not a single Russian in command of a column! +The commanders are: Herr General Wimpfen, le Comte de Langeron, le +Prince de Lichtenstein, le Prince, de Hohenlohe, and finally +Prishprish, and so on like all those Polish names." + +"Be quiet, backbiter!" said Dolgorukov. "It is not true; there are +now two Russians, Miloradovich, and Dokhturov, and there would be a +third, Count Arakcheev, if his nerves were not too weak." + +"However, I think General Kutuzov has come out," said Prince Andrew. +"I wish you good luck and success, gentlemen!" he added and went out +after shaking hands with Dolgorukov and Bilibin. + +On the way home, Prince Andrew could not refrain from asking +Kutuzov, who was sitting silently beside him, what he thought of +tomorrow's battle. + +Kutuzov looked sternly at his adjutant and, after a pause, +replied: "I think the battle will be lost, and so I told Count Tolstoy +and asked him to tell the Emperor. What do you think he replied? 'But, +my dear general, I am engaged with rice and cutlets, look after +military matters yourself!' Yes... That was the answer I got!" + + + + + +CHAPTER XII + + +Shortly after nine o'clock that evening, Weyrother drove with his +plans to Kutuzov's quarters where the council of war was to be held. +All the commanders of columns were summoned to the commander in +chief's and with the exception of Prince Bagration, who declined to +come, were all there at the appointed time. + +Weyrother, who was in full control of the proposed battle, by his +eagerness and briskness presented a marked contrast to the +dissatisfied and drowsy Kutuzov, who reluctantly played the part of +chairman and president of the council of war. Weyrother evidently felt +himself to be at the head of a movement that had already become +unrestrainable. He was like a horse running downhill harnessed to a +heavy cart. Whether he was pulling it or being pushed by it he did not +know, but rushed along at headlong speed with no time to consider what +this movement might lead to. Weyrother had been twice that evening +to the enemy's picket line to reconnoiter personally, and twice to the +Emperors, Russian and Austrian, to report and explain, and to his +headquarters where he had dictated the dispositions in German, and +now, much exhausted, he arrived at Kutuzov's. + +He was evidently so busy that he even forgot to be polite to the +commander in chief. He interrupted him, talked rapidly and +indistinctly, without looking at the man he was addressing, and did +not reply to questions put to him. He was bespattered with mud and had +a pitiful, weary, and distracted air, though at the same time he was +haughty and self-confident. + +Kutuzov was occupying a nobleman's castle of modest dimensions +near Ostralitz. In the large drawing room which had become the +commander in chief's office were gathered Kutuzov himself, +Weyrother, and the members of the council of war. They were drinking +tea, and only awaited Prince Bagration to begin the council. At last +Bagration's orderly came with the news that the prince could not +attend. Prince Andrew came in to inform the commander in chief of this +and, availing himself of permission previously given him by Kutuzov to +be present at the council, he remained in the room. + +"Since Prince Bagration is not coming, we may begin," said +Weyrother, hurriedly rising from his seat and going up to the table on +which an enormous map of the environs of Brunn was spread out. + +Kutuzov, with his uniform unbuttoned so that his fat neck bulged +over his collar as if escaping, was sitting almost asleep in a low +chair, with his podgy old hands resting symmetrically on its arms. +At the sound of Weyrother's voice, he opened his one eye with an +effort. + + +"Yes, yes, if you please! It is already late," said he, and +nodding his head he let it droop and again closed his eye. + +If at first the members of the council thought that Kutuzov was +pretending to sleep, the sounds his nose emitted during the reading +that followed proved that the commander in chief at that moment was +absorbed by a far more serious matter than a desire to show his +contempt for the dispositions or anything else--he was engaged in +satisfying the irresistible human need for sleep. He really was +asleep. Weyrother, with the gesture of a man too busy to lose a +moment, glanced at Kutuzov and, having convinced himself that he was +asleep, took up a paper and in a loud, monotonous voice began to +read out the dispositions for the impending battle, under a heading +which he also read out: + +"Dispositions for an attack on the enemy position behind Kobelnitz +and Sokolnitz, November 30, 1805." + +The dispositions were very complicated and difficult. They began +as follows: + +"As the enemy's left wing rests on wooded hills and his right +extends along Kobelnitz and Sokolnitz behind the ponds that are there, +while we, on the other hand, with our left wing by far outflank his +right, it is advantageous to attack the enemy's latter wing especially +if we occupy the villages of Sokolnitz and Kobelnitz, whereby we can +both fall on his flank and pursue him over the plain between +Schlappanitz and the Thuerassa forest, avoiding the defiles of +Schlappanitz and Bellowitz which cover the enemy's front. For this +object it is necessary that... The first column marches... The +second column marches... The third column marches..." and so on, +read Weyrother. + +The generals seemed to listen reluctantly to the difficult +dispositions. The tall, fair-haired General Buxhowden stood, leaning +his back against the wall, his eyes fixed on a burning candle, and +seemed not to listen or even to wish to be thought to listen. +Exactly opposite Weyrother, with his glistening wide-open eyes fixed +upon him and his mustache twisted upwards, sat the ruddy +Miloradovich in a military pose, his elbows turned outwards, his hands +on his knees, and his shoulders raised. He remained stubbornly silent, +gazing at Weyrother's face, and only turned away his eyes when the +Austrian chief of staff finished reading. Then Miloradovich looked +round significantly at the other generals. But one could not tell from +that significant look whether he agreed or disagreed and was satisfied +or not with the arrangements. Next to Weyrother sat Count Langeron +who, with a subtle smile that never left his typically southern French +face during the whole time of the reading, gazed at his delicate +fingers which rapidly twirled by its corners a gold snuffbox on +which was a portrait. In the middle of one of the longest sentences, +he stopped the rotary motion of the snuffbox, raised his head, and +with inimical politeness lurking in the corners of his thin lips +interrupted Weyrother, wishing to say something. But the Austrian +general, continuing to read, frowned angrily and jerked his elbows, as +if to say: "You can tell me your views later, but now be so good as to +look at the map and listen." Langeron lifted his eyes with an +expression of perplexity, turned round to Miloradovich as if seeking +an explanation, but meeting the latter's impressive but meaningless +gaze drooped his eyes sadly and again took to twirling his snuffbox. + +"A geography lesson!" he muttered as if to himself, but loud +enough to be heard. + +Przebyszewski, with respectful but dignified politeness, held his +hand to his ear toward Weyrother, with the air of a man absorbed in +attention. Dohkturov, a little man, sat opposite Weyrother, with an +assiduous and modest mien, and stooping over the outspread map +conscientiously studied the dispositions and the unfamiliar +locality. He asked Weyrother several times to repeat words he had +not clearly heard and the difficult names of villages. Weyrother +complied and Dohkturov noted them down. + +When the reading which lasted more than an hour was over, Langeron +again brought his snuffbox to rest and, without looking at Weyrother +or at anyone in particular, began to say how difficult it was to carry +out such a plan in which the enemy's position was assumed to be known, +whereas it was perhaps not known, since the enemy was in movement. +Langeron's objections were valid but it was obvious that their chief +aim was to show General Weyrother--who had read his dispositions +with as much self-confidence as if he were addressing school children- +that he had to do, not with fools, but with men who could teach him +something in military matters. + +When the monotonous sound of Weyrother's voice ceased, Kutuzov +opened his eye as a miller wakes up when the soporific drone of the +mill wheel is interrupted. He listened to what Langeron said, as if +remarking, "So you are still at that silly business!" quickly closed +his eye again, and let his head sink still lower. + +Langeron, trying as virulently as possible to sting Weyrother's +vanity as author of the military plan, argued that Bonaparte might +easily attack instead of being attacked, and so render the whole of +this plan perfectly worthless. Weyrother met all objections with a +firm and contemptuous smile, evidently prepared beforehand to meet all +objections be they what they might. + +"If he could attack us, he would have done so today," said he. + +"So you think he is powerless?" said Langeron. + +"He has forty thousand men at most," replied Weyrother, with the +smile of a doctor to whom an old wife wishes to explain the +treatment of a case. + +"In that case he is inviting his doom by awaiting our attack," +said Langeron, with a subtly ironical smile, again glancing round +for support to Miloradovich who was near him. + +But Miloradovich was at that moment evidently thinking of anything +rather than of what the generals were disputing about. + +"Ma foi!" said he, "tomorrow we shall see all that on the +battlefield." + +Weyrother again gave that smile which seemed to say that to him it +was strange and ridiculous to meet objections from Russian generals +and to have to prove to them what he had not merely convinced +himself of, but had also convinced the sovereign Emperors of. + +"The enemy has quenched his fires and a continual noise is heard +from his camp," said he. "What does that mean? Either he is +retreating, which is the only thing we need fear, or he is changing +his position." (He smiled ironically.) "But even if he also took up +a position in the Thuerassa, he merely saves us a great deal of +trouble and all our arrangements to the minutest detail remain the +same." + +"How is that?..." began Prince Andrew, who had for long been waiting +an opportunity to express his doubts. + +Kutuzov here woke up, coughed heavily, and looked round at the +generals. + +"Gentlemen, the dispositions for tomorrow--or rather for today, +for it is past midnight--cannot now be altered," said he. "You have +heard them, and we shall all do our duty. But before a battle, there +is nothing more important..." he paused, "than to have a good sleep." + +He moved as if to rise. The generals bowed and retired. It was +past midnight. Prince Andrew went out. + + +The council of war, at which Prince Andrew had not been able to +express his opinion as he had hoped to, left on him a vague and uneasy +impression. Whether Dolgorukov and Weyrother, or Kutuzov, Langeron, +and the others who did not approve of the plan of attack, were +right--he did not know. "But was it really not possible for Kutuzov to +state his views plainly to the Emperor? Is it possible that on account +of court and personal considerations tens of thousands of lives, and +my life, my life," he thought, "must be risked?" + +"Yes, it is very likely that I shall be killed tomorrow," he +thought. And suddenly, at this thought of death, a whole series of +most distant, most intimate, memories rose in his imagination: he +remembered his last parting from his father and his wife; he +remembered the days when he first loved her. He thought of her +pregnancy and felt sorry for her and for himself, and in a nervously +emotional and softened mood he went out of the hut in which he was +billeted with Nesvitski and began to walk up and down before it. + +The night was foggy and through the fog the moonlight gleamed +mysteriously. "Yes, tomorrow, tomorrow!" he thought. "Tomorrow +everything may be over for me! All these memories will be no more, +none of them will have any meaning for me. Tomorrow perhaps, even +certainly, I have a presentiment that for the first time I shall +have to show all I can do." And his fancy pictured the battle, its +loss, the concentration of fighting at one point, and the hesitation +of all the commanders. And then that happy moment, that Toulon for +which he had so long waited, presents itself to him at last. He firmly +and clearly expresses his opinion to Kutuzov, to Weyrother, and to the +Emperors. All are struck by the justness of his views, but no one +undertakes to carry them out, so he takes a regiment, a division- +stipulates that no one is to interfere with his arrangements--leads +his division to the decisive point, and gains the victory alone. +"But death and suffering?" suggested another voice. Prince Andrew, +however, did not answer that voice and went on dreaming of his +triumphs. The dispositions for the next battle are planned by him +alone. Nominally he is only an adjutant on Kutuzov's staff, but he +does everything alone. The next battle is won by him alone. Kutuzov is +removed and he is appointed... "Well and then?" asked the other voice. +"If before that you are not ten times wounded, killed, or betrayed, +well... what then?..." "Well then," Prince Andrew answered himself, "I +don't know what will happen and don't want to know, and can't, but +if I want this--want glory, want to be known to men, want to be +loved by them, it is not my fault that I want it and want nothing +but that and live only for that. Yes, for that alone! I shall never +tell anyone, but, oh God! what am I to do if I love nothing but fame +and men's esteem? Death, wounds, the loss of family--I fear nothing. +And precious and dear as many persons are to me--father, sister, wife- +those dearest to me--yet dreadful and unnatural as it seems, I would +give them all at once for a moment of glory, of triumph over men, of +love from men I don't know and never shall know, for the love of these +men here," he thought, as he listened to voices in Kutuzov's +courtyard. The voices were those of the orderlies who were packing up; +one voice, probably a coachman's, was teasing Kutuzov's old cook +whom Prince Andrew knew, and who was called Tit. He was saying, +"Tit, I say, Tit!" + +"Well?" returned the old man. + +"Go, Tit, thresh a bit!" said the wag. + +"Oh, go to the devil!" called out a voice, drowned by the laughter +of the orderlies and servants. + +"All the same, I love and value nothing but triumph over them all, I +value this mystic power and glory that is floating here above me in +this mist!" + + + + + +CHAPTER XIII + + +That same night, Rostov was with a platoon on skirmishing duty in +front of Bagration's detachment. His hussars were placed along the +line in couples and he himself rode along the line trying to master +the sleepiness that kept coming over him. An enormous space, with +our army's campfires dimly glowing in the fog, could be seen behind +him; in front of him was misty darkness. Rostov could see nothing, +peer as he would into that foggy distance: now something gleamed gray, +now there was something black, now little lights seemed to glimmer +where the enemy ought to be, now he fancied it was only something in +his own eyes. His eyes kept closing, and in his fancy appeared--now +the Emperor, now Denisov, and now Moscow memories--and he again +hurriedly opened his eyes and saw close before him the head and ears +of the horse he was riding, and sometimes, when he came within six +paces of them, the black figures of hussars, but in the distance was +still the same misty darkness. "Why not?... It might easily happen," +thought Rostov, "that the Emperor will meet me and give me an order as +he would to any other officer; he'll say: 'Go and find out what's +there.' There are many stories of his getting to know an officer in +just such a chance way and attaching him to himself! What if he gave +me a place near him? Oh, how I would guard him, how I would tell him +the truth, how I would unmask his deceivers!" And in order to +realize vividly his love devotion to the sovereign, Rostov pictured to +himself an enemy or a deceitful German, whom he would not only kill +with pleasure but whom he would slap in the face before the Emperor. +Suddenly a distant shout aroused him. He started and opened his eyes. + +"Where am I? Oh yes, in the skirmishing line... pass and +watchword--shaft, Olmutz. What a nuisance that our squadron will be in +reserve tomorrow," he thought. "I'll ask leave to go to the front, +this may be my only chance of seeing the Emperor. It won't be long now +before I am off duty. I'll take another turn and when I get back +I'll go to the general and ask him." He readjusted himself in the +saddle and touched up his horse to ride once more round his hussars. +It seemed to him that it was getting lighter. To the left he saw a +sloping descent lit up, and facing it a black knoll that seemed as +steep as a wall. On this knoll there was a white patch that Rostov +could not at all make out: was it a glade in the wood lit up by the +moon, or some unmelted snow, or some white houses? He even thought +something moved on that white spot. "I expect it's snow... that +spot... a spot--une tache," he thought. "There now... it's not a +tache... Natasha... sister, black eyes... Na... tasha... (Won't she be +surprised when I tell her how I've seen the Emperor?) Natasha... +take my sabretache..."--"Keep to the right, your honor, there are +bushes here," came the voice of an hussar, past whom Rostov was riding +in the act of falling asleep. Rostov lifted his head that had sunk +almost to his horse's mane and pulled up beside the hussar. He was +succumbing to irresistible, youthful, childish drowsiness. "But what +was I thinking? I mustn't forget. How shall I speak to the Emperor? +No, that's not it--that's tomorrow. Oh yes! Natasha... sabretache... +saber them...Whom? The hussars... Ah, the hussars with mustaches. +Along the Tverskaya Street rode the hussar with mustaches... I thought +about him too, just opposite Guryev's house... Old Guryev.... Oh, +but Denisov's a fine fellow. But that's all nonsense. The chief +thing is that the Emperor is here. How he looked at me and wished to +say something, but dared not.... No, it was I who dared not. But +that's nonsense, the chief thing is not to forget the important +thing I was thinking of. Yes, Na-tasha, sabretache, oh, yes, yes! +That's right!" And his head once more sank to his horse's neck. All at +once it seemed to him that he was being fired at. "What? What? +What?... Cut them down! What?..." said Rostov, waking up. At the +moment he opened his eyes he heard in front of him, where the +enemy was, the long-drawn shouts of thousands of voices. His horse and +the horse of the hussar near him pricked their ears at these shouts. +Over there, where the shouting came from, a fire flared up and went +out again, then another, and all along the French line on the hill +fires flared up and the shouting grew louder and louder. Rostov +could hear the sound of French words but could not distinguish them. +The din of many voices was too great; all he could hear was: "ahahah!" +and "rrrr!" + +"What's that? What do you make of it?" said Rostov to the hussar +beside him. "That must be the enemy's camp!" + +The hussar did not reply. + +"Why, don't you hear it?" Rostov asked again, after waiting for a +reply. + +"Who can tell, your honor?" replied the hussar reluctantly. + +"From the direction, it must be the enemy," repeated Rostov. + +"It may be he or it may be nothing," muttered the hussar. "It's +dark... Steady!" he cried to his fidgeting horse. + +Rostov's horse was also getting restive: it pawed the frozen ground, +pricking its ears at the noise and looking at the lights. The shouting +grew still louder and merged into a general roar that only an army +of several thousand men could produce. The lights spread farther and +farther, probably along the line of the French camp. Rostov no +longer wanted to sleep. The gay triumphant shouting of the enemy +army had a stimulating effect on him. "Vive l'Empereur! L'Empereur!" +he now heard distinctly. + +"They can't be far off, probably just beyond the stream," he said to +the hussar beside him. + +The hussar only sighed without replying and coughed angrily. The +sound of horse's hoofs approaching at a trot along the line of hussars +was heard, and out of the foggy darkness the figure of a sergeant of +hussars suddenly appeared, looming huge as an elephant. + +"Your honor, the generals!" said the sergeant, riding up to Rostov. + +Rostov, still looking round toward the fires and the shouts, rode +with the sergeant to meet some mounted men who were riding along the +line. One was on a white horse. Prince Bagration and Prince Dolgorukov +with their adjutants had come to witness the curious phenomenon of the +lights and shouts in the enemy's camp. Rostov rode up to Bagration, +reported to him, and then joined the adjutants listening to what the +generals were saying. + +"Believe me," said Prince Dolgorukov, addressing Bagration, "it is +nothing but a trick! He has retreated and ordered the rearguard to +kindle fires and make a noise to deceive us." + +"Hardly," said Bagration. "I saw them this evening on that knoll; if +they had retreated they would have withdrawn from that too.... +Officer!" said Bagration to Rostov, "are the enemy's skirmishers still +there?" + +"They were there this evening, but now I don't know, your +excellency. Shall I go with some of my hussars to see?" replied +Rostov. + +Bagration stopped and, before replying, tried to see Rostov's face +in the mist. + +"Well, go and see," he said, after a pause. + +"Yes, sir." + +Rostov spurred his horse, called to Sergeant Fedchenko and two other +hussars, told them to follow him, and trotted downhill in the +direction from which the shouting came. He felt both frightened and +pleased to be riding alone with three hussars into that mysterious and +dangerous misty distance where no one had been before him. Bagration +called to him from the hill not to go beyond the stream, but Rostov +pretended not to hear him and did not stop but rode on and on, +continually mistaking bushes for trees and gullies for men and +continually discovering his mistakes. Having descended the hill at a +trot, he no longer saw either our own or the enemy's fires, but +heard the shouting of the French more loudly and distinctly. In the +valley he saw before him something like a river, but when he reached +it he found it was a road. Having come out onto the road he reined +in his horse, hesitating whether to ride along it or cross it and ride +over the black field up the hillside. To keep to the road which +gleamed white in the mist would have been safer because it would be +easier to see people coming along it. "Follow me!" said he, crossed +the road, and began riding up the hill at a gallop toward the point +where the French pickets had been standing that evening. + +"Your honor, there he is!" cried one of the hussars behind him. +And before Rostov had time to make out what the black thing was that +had suddenly appeared in the fog, there was a flash, followed by a +report, and a bullet whizzing high up in the mist with a plaintive +sound passed out of hearing. Another musket missed fire but flashed in +the pan. Rostov turned his horse and galloped back. Four more +reports followed at intervals, and the bullets passed somewhere in the +fog singing in different tones. Rostov reined in his horse, whose +spirits had risen, like his own, at the firing, and went back at a +footpace. "Well, some more! Some more!" a merry voice was saying in +his soul. But no more shots came. + +Only when approaching Bagration did Rostov let his horse gallop +again, and with his hand at the salute rode up to the general. + +Dolgorukov was still insisting that the French had retreated and had +only lit fires to deceive us. + +"What does that prove?" he was saying as Rostov rode up. "They might +retreat and leave the pickets." + +"It's plain that they have not all gone yet, Prince," said +Bagration. "Wait till tomorrow morning, we'll find out everything +tomorrow." + +"The picket is still on the hill, your excellency, just where it was +in the evening," reported Rostov, stooping forward with his hand at +the salute and unable to repress the smile of delight induced by his +ride and especially by the sound of the bullets. + +"Very good, very good," said Bagration. "Thank you, officer." + +"Your excellency," said Rostov, "may I ask a favor?" + +"What is it?" + +"Tomorrow our squadron is to be in reserve. May I ask to be attached +to the first squadron?" + +"What's your name?" + +"Count Rostov." + +"Oh, very well, you may stay in attendance on me." + +"Count Ilya Rostov's son?" asked Dolgorukov. + +But Rostov did not reply. + +"Then I may reckon on it, your excellency?" + +"I will give the order." + +"Tomorrow very likely I may be sent with some message to the +Emperor," thought Rostov. + +"Thank God!" + + +The fires and shouting in the enemy's army were occasioned by the +fact that while Napoleon's proclamation was being read to the troops +the Emperor himself rode round his bivouacs. The soldiers, on seeing +him, lit wisps of straw and ran after him, shouting, "Vive +l'Empereur!" Napoleon's proclamation was as follows: + + +Soldiers! The Russian army is advancing against you to avenge the +Austrian army of Ulm. They are the same battalions you broke at +Hollabrunn and have pursued ever since to this place. The position +we occupy is a strong one, and while they are marching to go round +me on the right they will expose a flank to me. Soldiers! I will +myself direct your battalions. I will keep out of fire if you with +your habitual valor carry disorder and confusion into the enemy's +ranks, but should victory be in doubt, even for a moment, you will see +your Emperor exposing himself to the first blows of the enemy, for +there must be no doubt of victory, especially on this day when what is +at stake is the honor of the French infantry, so necessary to the +honor of our nation. + +Do not break your ranks on the plea of removing the wounded! Let +every man be fully imbued with the thought that we must defeat these +hirelings of England, inspired by such hatred of our nation! This +victory will conclude our campaign and we can return to winter +quarters, where fresh French troops who are being raised in France +will join us, and the peace I shall conclude will be worthy of my +people, of you, and of myself. + +NAPOLEON + + + + + +CHAPTER XIV + + +At five in the morning it was still quite dark. The troops of the +center, the reserves, and Bagration's right flank had not yet moved, +but on the left flank the columns of infantry, cavalry, and artillery, +which were to be the first to descend the heights to attack the French +right flank and drive it into the Bohemian mountains according to +plan, were already up and astir. The smoke of the campfires, into +which they were throwing everything superfluous, made the eyes +smart. It was cold and dark. The officers were hurriedly drinking +tea and breakfasting, the soldiers, munching biscuit and beating a +tattoo with their feet to warm themselves, gathering round the fires +throwing into the flames the remains of sheds, chairs, tables, wheels, +tubs, and everything that they did not want or could not carry away +with them. Austrian column guides were moving in and out among the +Russian troops and served as heralds of the advance. As soon as an +Austrian officer showed himself near a commanding officer's +quarters, the regiment began to move: the soldiers ran from the fires, +thrust their pipes into their boots, their bags into the carts, got +their muskets ready, and formed rank. The officers buttoned up their +coats, buckled on their swords and pouches, and moved along the +ranks shouting. The train drivers and orderlies harnessed and packed +the wagons and tied on the loads. The adjutants and battalion and +regimental commanders mounted, crossed themselves, gave final +instructions, orders, and commissions to the baggage men who +remained behind, and the monotonous tramp of thousands of feet +resounded. The column moved forward without knowing where and +unable, from the masses around them, the smoke and the increasing fog, +to see either the place they were leaving or that to which they were +going. + +A soldier on the march is hemmed in and borne along by his +regiment as much as a sailor is by his ship. However far he has +walked, whatever strange, unknown, and dangerous places he reaches, +just as a sailor is always surrounded by the same decks, masts, and +rigging of his ship, so the soldier always has around him the same +comrades, the same ranks, the same sergeant major Ivan Mitrich, the +same company dog Jack, and the same commanders. The sailor rarely +cares to know the latitude in which his ship is sailing, but on the +day of battle--heaven knows how and whence--a stern note of which +all are conscious sounds in the moral atmosphere of an army, +announcing the approach of something decisive and solemn, and +awakening in the men an unusual curiosity. On the day of battle the +soldiers excitedly try to get beyond the interests of their +regiment, they listen intently, look about, and eagerly ask concerning +what is going on around them. + +The fog had grown so dense that though it was growing light they +could not see ten paces ahead. Bushes looked like gigantic trees and +level ground like cliffs and slopes. Anywhere, on any side, one +might encounter an enemy invisible ten paces off. But the columns +advanced for a long time, always in the same fog, descending and +ascending hills, avoiding gardens and enclosures, going over new and +unknown ground, and nowhere encountering the enemy. On the contrary, +the soldiers became aware that in front, behind, and on all sides, +other Russian columns were moving in the same direction. Every soldier +felt glad to know that to the unknown place where he was going, many +more of our men were going too. + +"There now, the Kurskies have also gone past," was being said in the +ranks. + +"It's wonderful what a lot of our troops have gathered, lads! Last +night I looked at the campfires and there was no end of them. A +regular Moscow!" + +Though none of the column commanders rode up to the ranks or +talked to the men (the commanders, as we saw at the council of war, +were out of humor and dissatisfied with the affair, and so did not +exert themselves to cheer the men but merely carried out the +orders), yet the troops marched gaily, as they always do when going +into action, especially to an attack. But when they had marched for +about an hour in the dense fog, the greater part of the men had to +halt and an unpleasant consciousness of some dislocation and blunder +spread through the ranks. How such a consciousness is communicated +is very difficult to define, but it certainly is communicated very +surely, and flows rapidly, imperceptibly, and irrepressibly, as +water does in a creek. Had the Russian army been alone without any +allies, it might perhaps have been a long time before this +consciousness of mismanagement became a general conviction, but as +it was, the disorder was readily and naturally attributed to the +stupid Germans, and everyone was convinced that a dangerous muddle had +been occasioned by the sausage eaters. + +"Why have we stopped? Is the way blocked? Or have we already come up +against the French?" + +"No, one can't hear them. They'd be firing if we had." + +"They were in a hurry enough to start us, and now here we stand in +the middle of a field without rhyme or reason. It's all those damned +Germans' muddling! What stupid devils!" + +"Yes, I'd send them on in front, but no fear, they're crowding up +behind. And now here we stand hungry." + +"I say, shall we soon be clear? They say the cavalry are blocking +the way," said an officer. + +"Ah, those damned Germans! They don't know their own country!" +said another. + +"What division are you?" shouted an adjutant, riding up. + +"The Eighteenth." + +"Then why are you here? You should have gone on long ago, now you +won't get there till evening." + +"What stupid orders! They don't themselves know what they are +doing!" said the officer and rode off. + +Then a general rode past shouting something angrily, not in Russian. + +"Tafa-lafa! But what he's jabbering no one can make out," said a +soldier, mimicking the general who had ridden away. "I'd shoot them, +the scoundrels!" + +"We were ordered to be at the place before nine, but we haven't +got halfway. Fine orders!" was being repeated on different sides. + +And the feeling of energy with which the troops had started began to +turn into vexation and anger at the stupid arrangements and at the +Germans. + +The cause of the confusion was that while the Austrian cavalry was +moving toward our left flank, the higher command found that our center +was too far separated from our right flank and the cavalry were all +ordered to turn back to the right. Several thousand cavalry crossed in +front of the infantry, who had to wait. + +At the front an altercation occurred between an Austrian guide and a +Russian general. The general shouted a demand that the cavalry +should be halted, the Austrian argued that not he, but the higher +command, was to blame. The troops meanwhile stood growing listless and +dispirited. After an hour's delay they at last moved on, descending +the hill. The fog that was dispersing on the hill lay still more +densely below, where they were descending. In front in the fog a +shot was heard and then another, at first irregularly at varying +intervals--trata... tat--and then more and more regularly and rapidly, +and the action at the Goldbach Stream began. + +Not expecting to come on the enemy down by the stream, and having +stumbled on him in the fog, hearing no encouraging word from their +commanders, and with a consciousness of being too late spreading +through the ranks, and above all being unable to see anything in front +or around them in the thick fog, the Russians exchanged shots with the +enemy lazily and advanced and again halted, receiving no timely orders +from the officers or adjutants who wandered about in the fog in +those unknown surroundings unable to find their own regiments. In this +way the action began for the first, second, and third columns, which +had gone down into the valley. The fourth column, with which Kutuzov +was, stood on the Pratzen Heights. + +Below, where the fight was beginning, there was still thick fog; +on the higher ground it was clearing, but nothing could be seen of +what was going on in front. Whether all the enemy forces were, as we +supposed, six miles away, or whether they were near by in that sea +of mist, no one knew till after eight o'clock. + +It was nine o'clock in the morning. The fog lay unbroken like a +sea down below, but higher up at the village of Schlappanitz where +Napoleon stood with his marshals around him, it was quite light. Above +him was a clear blue sky, and the sun's vast orb quivered like a +huge hollow, crimson float on the surface of that milky sea of mist. +The whole French army, and even Napoleon himself with his staff, +were not on the far side of the streams and hollows of Sokolnitz and +Schlappanitz beyond which we intended to take up our position and +begin the action, but were on this side, so close to our own forces +that Napoleon with the naked eye could distinguish a mounted man +from one on foot. Napoleon, in the blue cloak which he had worn on his +Italian campaign, sat on his small gray Arab horse a little in front +of his marshals. He gazed silently at the hills which seemed to rise +out of the sea of mist and on which the Russian troops were moving +in the distance, and he listened to the sounds of firing in the +valley. Not a single muscle of his face--which in those days was still +thin--moved. His gleaming eyes were fixed intently on one spot. His +predictions were being justified. Part of the Russian force had +already descended into the valley toward the ponds and lakes and +part were leaving these Pratzen Heights which he intended to attack +and regarded as the key to the position. He saw over the mist that +in a hollow between two hills near the village of Pratzen, the Russian +columns, their bayonets glittering, were moving continuously in one +direction toward the valley and disappearing one after another into +the mist. From information he had received the evening before, from +the sound of wheels and footsteps heard by the outposts during the +night, by the disorderly movement of the Russian columns, and from all +indications, he saw clearly that the allies believed him to be far +away in front of them, and that the columns moving near Pratzen +constituted the center of the Russian army, and that that center was +already sufficiently weakened to be successfully attacked. But still +he did not begin the engagement. + +Today was a great day for him--the anniversary of his coronation. +Before dawn he had slept for a few hours, and refreshed, vigorous, and +in good spirits, he mounted his horse and rode out into the field in +that happy mood in which everything seems possible and everything +succeeds. He sat motionless, looking at the heights visible above +the mist, and his cold face wore that special look of confident, +self-complacent happiness that one sees on the face of a boy happily +in love. The marshals stood behind him not venturing to distract his +attention. He looked now at the Pratzen Heights, now at the sun +floating up out of the mist. + +When the sun had entirely emerged from the fog, and fields and +mist were aglow with dazzling light--as if he had only awaited this to +begin the action--he drew the glove from his shapely white hand, +made a sign with it to the marshals, and ordered the action to +begin. The marshals, accompanied by adjutants, galloped off in +different directions, and a few minutes later the chief forces of +the French army moved rapidly toward those Pratzen Heights which +were being more and more denuded by Russian troops moving down the +valley to their left. + + + + + +CHAPTER XV + + +At eight o'clock Kutuzov rode to Pratzen at the head of the fourth +column, Miloradovich's, the one that was to take the place of +Przebyszewski's and Langeron's columns which had already gone down +into the valley. He greeted the men of the foremost regiment and +gave them the order to march, thereby indicating that he intended to +lead that column himself. When he had reached the village of Pratzen +he halted. Prince Andrew was behind, among the immense number +forming the commander in chief's suite. He was in a state of +suppressed excitement and irritation, though controlledly calm as a +man is at the approach of a long-awaited moment. He was firmly +convinced that this was the day of his Toulon, or his bridge of +Arcola. How it would come about he did not know, but he felt sure it +would do so. The locality and the position of our troops were known to +him as far as they could be known to anyone in our army. His own +strategic plan, which obviously could not now be carried out, was +forgotten. Now, entering into Weyrother's plan, Prince Andrew +considered possible contingencies and formed new projects such as +might call for his rapidity of perception and decision. + +To the left down below in the mist, the musketry fire of unseen +forces could be heard. It was there Prince Andrew thought the fight +would concentrate. "There we shall encounter difficulties, and there," +thought he, "I shall be sent with a brigade or division, and there, +standard in hand, I shall go forward and break whatever is in front of +me." + +He could not look calmly at the standards of the passing battalions. +Seeing them he kept thinking, "That may be the very standard with +which I shall lead the army." + +In the morning all that was left of the night mist on the heights +was a hoar frost now turning to dew, but in the valleys it still lay +like a milk-white sea. Nothing was visible in the valley to the left +into which our troops had descended and from whence came the sounds of +firing. Above the heights was the dark clear sky, and to the right the +vast orb of the sun. In front, far off on the farther shore of that +sea of mist, some wooded hills were discernible, and it was there +the enemy probably was, for something could be descried. On the +right the Guards were entering the misty region with a sound of +hoofs and wheels and now and then a gleam of bayonets; to the left +beyond the village similar masses of cavalry came up and disappeared +in the sea of mist. In front and behind moved infantry. The +commander in chief was standing at the end of the village letting +the troops pass by him. That morning Kutuzov seemed worn and +irritable. The infantry passing before him came to a halt without +any command being given, apparently obstructed by something in front. + +"Do order them to form into battalion columns and go round the +village!" he said angrily to a general who had ridden up. "Don't you +understand, your excellency, my dear sir, that you must not defile +through narrow village streets when we are marching against the +enemy?" + +"I intended to re-form them beyond the village, your excellency," +answered the general. + +Kutuzov laughed bitterly. + +"You'll make a fine thing of it, deploying in sight of the enemy! +Very fine!" + +"The enemy is still far away, your excellency. According to the +dispositions..." + +"The dispositions!" exclaimed Kutuzov bitterly. "Who told you +that?... Kindly do as you are ordered." + +"Yes, sir." + +"My dear fellow," Nesvitski whispered to Prince Andrew, "the old man +is as surly as a dog." + +An Austrian officer in a white uniform with green plumes in his +hat galloped up to Kutuzov and asked in the Emperor's name had the +fourth column advanced into action. + +Kutuzov turned round without answering and his eye happened to +fall upon Prince Andrew, who was beside him. Seeing him, Kutuzov's +malevolent and caustic expression softened, as if admitting that +what was being done was not his adjutant's fault, and still not +answering the Austrian adjutant, he addressed Bolkonski. + +"Go, my dear fellow, and see whether the third division has passed +the village. Tell it to stop and await my orders." + +Hardly had Prince Andrew started than he stopped him. + +"And ask whether sharpshooters have been posted," he added. "What +are they doing? What are they doing?" he murmured to himself, still +not replying to the Austrian. + +Prince Andrew galloped off to execute the order. + +Overtaking the battalions that continued to advance, he stopped +the third division and convinced himself that there really were no +sharpshooters in front of our columns. The colonel at the head of +the regiment was much surprised at the commander in chief's order to +throw out skirmishers. He had felt perfectly sure that there were +other troops in front of him and that the enemy must be at least six +miles away. There was really nothing to be seen in front except a +barren descent hidden by dense mist. Having given orders in the +commander in chief's name to rectify this omission, Prince Andrew +galloped back. Kutuzov still in the same place, his stout body resting +heavily in the saddle with the lassitude of age, sat yawning wearily +with closed eyes. The troops were no longer moving, but stood with the +butts of their muskets on the ground. + +"All right, all right!" he said to Prince Andrew, and turned to a +general who, watch in hand, was saying it was time they started as all +the left-flank columns had already descended. + +"Plenty of time, your excellency," muttered Kutuzov in the midst +of a yawn. "Plenty of time," he repeated. + +Just then at a distance behind Kutuzov was heard the sound of +regiments saluting, and this sound rapidly came nearer along the whole +extended line of the advancing Russian columns. Evidently the person +they were greeting was riding quickly. When the soldiers of the +regiment in front of which Kutuzov was standing began to shout, he +rode a little to one side and looked round with a frown. Along the +road from Pratzen galloped what looked like a squadron of horsemen +in various uniforms. Two of them rode side by side in front, at full +gallop. One in a black uniform with white plumes in his hat rode a +bobtailed chestnut horse, the other who was in a white uniform rode +a black one. These were the two Emperors followed by their suites. +Kutuzov, affecting the manners of an old soldier at the front, gave +the command "Attention!" and rode up to the Emperors with a salute. +His whole appearance and manner were suddenly transformed. He put on +the air of a subordinate who obeys without reasoning. With an +affectation of respect which evidently struck Alexander +unpleasantly, he rode up and saluted. + +This unpleasant impression merely flitted over the young and happy +face of the Emperor like a cloud of haze across a clear sky and +vanished. After his illness he looked rather thinner that day than +on the field of Olmutz where Bolkonski had seen him for the first time +abroad, but there was still the same bewitching combination of majesty +and mildness in his fine gray eyes, and on his delicate lips the +same capacity for varying expression and the same prevalent appearance +of goodhearted innocent youth. + +At the Olmutz review he had seemed more majestic; here he seemed +brighter and more energetic. He was slightly flushed after galloping +two miles, and reining in his horse he sighed restfully and looked +round at the faces of his suite, young and animated as his own. +Czartoryski, Novosiltsev, Prince Volkonsky, Strogonov, and the others, +all richly dressed gay young men on splendid, well-groomed, fresh, +only slightly heated horses, exchanging remarks and smiling, had +stopped behind the Emperor. The Emperor Francis, a rosy, long faced +young man, sat very erect on his handsome black horse, looking about +him in a leisurely and preoccupied manner. He beckoned to one of his +white adjutants and asked some question--"Most likely he is asking +at what o'clock they started," thought Prince Andrew, watching his old +acquaintance with a smile he could not repress as he recalled his +reception at Brunn. In the Emperors' suite were the picked young +orderly officers of the Guard and line regiments, Russian and +Austrian. Among them were grooms leading the Tsar's beautiful relay +horses covered with embroidered cloths. + +As when a window is opened a whiff of fresh air from the fields +enters a stuffy room, so a whiff of youthfulness, energy, and +confidence of success reached Kutuzov's cheerless staff with the +galloping advent of all these brilliant young men. + +"Why aren't you beginning, Michael Ilarionovich?" said the Emperor +Alexander hurriedly to Kutuzov, glancing courteously at the same +time at the Emperor Francis. + +"I am waiting, Your Majesty," answered Kutuzov, bending forward +respectfully. + +The Emperor, frowning slightly, bent his ear forward as if he had +not quite heard. + +"Waiting, Your Majesty," repeated Kutuzov. (Prince Andrew noted that +Kutuzov's upper lip twitched unnaturally as he said the word +"waiting.") "Not all the columns have formed up yet, Your Majesty." + +The Tsar heard but obviously did not like the reply; he shrugged his +rather round shoulders and glanced at Novosiltsev who was near him, as +if complaining of Kutuzov. + +"You know, Michael Ilarionovich, we are not on the +Empress' Field where a parade does not begin till all the troops are +assembled," said the Tsar with another glance at the Emperor +Francis, as if inviting him if not to join in at least to listen to +what he was saying. But the Emperor Francis continued to look about +him and did not listen. + +"That is just why I do not begin, sire," said Kutuzov in a +resounding voice, apparently to preclude the possibility of not +being heard, and again something in his face twitched--"That is just +why I do not begin, sire, because we are not on parade and not on +the Empress' Field." said clearly and distinctly. + +In the Emperor's suite all exchanged rapid looks that expressed +dissatisfaction and reproach. "Old though he may be, he should not, he +certainly should not, speak like that," their glances seemed to say. + +The Tsar looked intently and observantly into Kutuzov's eye +waiting to hear whether he would say anything more. But Kutuzov, +with respectfully bowed head, seemed also to be waiting. The silence +lasted for about a minute. + +"However, if you command it, Your Majesty," said Kutuzov, lifting +his head and again assuming his former tone of a dull, unreasoning, +but submissive general. + +He touched his horse and having called Miloradovich, the commander +of the column, gave him the order to advance. + +The troops again began to move, and two battalions of the Novgorod +and one of the Apsheron regiment went forward past the Emperor. + +As this Apsheron battalion marched by, the red-faced Miloradovich, +without his greatcoat, with his Orders on his breast and an enormous +tuft of plumes in his cocked hat worn on one side with its corners +front and back, galloped strenuously forward, and with a dashing +salute reined in his horse before the Emperor. + +"God be with you, general!" said the Emperor. + +"Ma foi, sire, nous ferons ce qui sera dans notre possibilite, +sire,"* he answered gaily, raising nevertheless ironic smiles among +the gentlemen of the Tsar's suite by his poor French. + + +*"Indeed, Sire, we shall do everything it is possible to do, Sire." + + +Miloradovich wheeled his horse sharply and stationed himself a +little behind the Emperor. The Apsheron men, excited by the Tsar's +presence, passed in step before the Emperors and their suites at a +bold, brisk pace. + +"Lads!" shouted Miloradovich in a loud, self-confident, and cheery +voice, obviously so elated by the sound of firing, by the prospect +of battle, and by the sight of the gallant Apsherons, his comrades +in Suvorov's time, now passing so gallantly before the Emperors, +that he forgot the sovereigns' presence. "Lads, it's not the first +village you've had to take," cried he. + +"Glad to do our best!" shouted the soldiers. + +The Emperor's horse started at the sudden cry. This horse that had +carried the sovereign at reviews in Russia bore him also here on the +field of Austerlitz, enduring the heedless blows of his left foot +and pricking its ears at the sound of shots just as it had done on the +Empress' Field, not understanding the significance of the firing, +nor of the nearness of the Emperor Francis' black cob, nor of all that +was being said, thought, and felt that day by its rider. + +The Emperor turned with a smile to one of his followers and made a +remark to him, pointing to the gallant Apsherons. + + + + + +CHAPTER XVI + + +Kutuzov accompanied by his adjutants rode at a walking pace behind +the carabineers. + +When he had gone less than half a mile in the rear of the column +he stopped at a solitary, deserted house that had probably once been +an inn, where two roads parted. Both of them led downhill and troops +were marching along both. + +The fog had begun to clear and enemy troops were already dimly +visible about a mile and a half off on the opposite heights. Down +below, on the left, the firing became more distinct. Kutuzov had +stopped and was speaking to an Austrian general. Prince Andrew, who +was a little behind looking at them, turned to an adjutant to ask +him for a field glass. + +"Look, look!" said this adjutant, looking not at the troops in the +distance, but down the hill before him. "It's the French!" + +The two generals and the adjutant took hold of the field glass, +trying to snatch it from one another. The expression on all their +faces suddenly changed to one of horror. The French were supposed to +be a mile and a half away, but had suddenly and unexpectedly +appeared just in front of us. + +"It's the enemy?... No!... Yes, see it is!... for certain.... But +how is that?" said different voices. + +With the naked eye Prince Andrew saw below them to the right, not +more than five hundred paces from where Kutuzov was standing, a +dense French column coming up to meet the Apsherons. + +"Here it is! The decisive moment has arrived. My turn has come," +thought Prince Andrew, and striking his horse he rode up to Kutuzov. + +"The Apsherons must be stopped, your excellency," cried he. But at +that very instant a cloud of smoke spread all round, firing was +heard quite close at hand, and a voice of naive terror barely two +steps from Prince Andrew shouted, "Brothers! All's lost!" And at +this as if at a command, everyone began to run. + +Confused and ever-increasing crowds were running back to where +five minutes before the troops had passed the Emperors. Not only would +it have been difficult to stop that crowd, it was even impossible +not to be carried back with it oneself. Bolkonski only tried not to +lose touch with it, and looked around bewildered and unable to grasp +what was happening in front of him. Nesvitski with an angry face, +red and unlike himself, was shouting to Kutuzov that if he did not +ride away at once he would certainly be taken prisoner. Kutuzov +remained in the same place and without answering drew out a +handkerchief. Blood was flowing from his cheek. Prince Andrew forced +his way to him. + +"You are wounded?" he asked, hardly able to master the trembling +of his lower jaw. + +"The wound is not here, it is there!" said Kutuzov, pressing the +handkerchief to his wounded cheek and pointing to the fleeing +soldiers. "Stop them!" he shouted, and at the same moment, probably +realizing that it was impossible to stop them, spurred his horse and +rode to the right. + +A fresh wave of the flying mob caught him and bore him back with it. + +The troops were running in such a dense mass that once surrounded by +them it was difficult to get out again. One was shouting, "Get on! Why +are you hindering us?" Another in the same place turned round and +fired in the air; a third was striking the horse Kutuzov himself rode. +Having by a great effort got away to the left from that flood of +men, Kutuzov, with his suite diminished by more than half, rode toward +a sound of artillery fire near by. Having forced his way out of the +crowd of fugitives, Prince Andrew, trying to keep near Kutuzov, saw on +the slope of the hill amid the smoke a Russian battery that was +still firing and Frenchmen running toward it. Higher up stood some +Russian infantry, neither moving forward to protect the battery nor +backward with the fleeing crowd. A mounted general separated himself +from the infantry and approached Kutuzov. Of Kutuzov's suite only four +remained. They were all pale and exchanged looks in silence. + +"Stop those wretches!" gasped Kutuzov to the regimental commander, +pointing to the flying soldiers; but at that instant, as if to +punish him for those words, bullets flew hissing across the regiment +and across Kutuzov's suite like a flock of little birds. + +The French had attacked the battery and, seeing Kutuzov, were firing +at him. After this volley the regimental commander clutched at his +leg; several soldiers fell, and a second lieutenant who was holding +the flag let it fall from his hands. It swayed and fell, but caught on +the muskets of the nearest soldiers. The soldiers started firing +without orders. + +"Oh! Oh! Oh!" groaned Kutuzov despairingly and looked around.... +"Bolkonski!" he whispered, his voice trembling from a consciousness of +the feebleness of age, "Bolkonski!" he whispered, pointing to the +disordered battalion and at the enemy, "what's that?" + +But before he had finished speaking, Prince Andrew, feeling tears of +shame and anger choking him, had already leapt from his horse and +run to the standard. + +"Forward, lads!" he shouted in a voice piercing as a child's. + +"Here it is!" thought he, seizing the staff of the standard and +hearing with pleasure the whistle of bullets evidently aimed at him. +Several soldiers fell. + +"Hurrah!" shouted Prince Andrew, and, scarcely able to hold up the +heavy standard, he ran forward with full confidence that the whole +battalion would follow him. + +And really he only ran a few steps alone. One soldier moved and then +another and soon the whole battalion ran forward shouting "Hurrah!" +and overtook him. A sergeant of the battalion ran up and took the flag +that was swaying from its weight in Prince Andrew's hands, but he +was immediately killed. Prince Andrew again seized the standard and, +dragging it by the staff, ran on with the battalion. In front he saw +our artillerymen, some of whom were fighting, while others, having +abandoned their guns, were running toward him. He also saw French +infantry soldiers who were seizing the artillery horses and turning +the guns round. Prince Andrew and the battalion were already within +twenty paces of the cannon. He heard the whistle of bullets above +him unceasingly and to right and left of him soldiers continually +groaned and dropped. But he did not look at them: he looked only at +what was going on in front of him--at the battery. He now saw +clearly the figure of a red-haired gunner with his shako knocked awry, +pulling one end of a mop while a French soldier tugged at the other. +He could distinctly see the distraught yet angry expression on the +faces of these two men, who evidently did not realize what they were +doing. + +"What are they about?" thought Prince Andrew as he gazed at them. +"Why doesn't the red-haired gunner run away as he is unarmed? Why +doesn't the Frenchman stab him? He will not get away before the +Frenchman remembers his bayonet and stabs him...." + +And really another French soldier, trailing his musket, ran up to +the struggling men, and the fate of the red-haired gunner, who had +triumphantly secured the mop and still did not realize what awaited +him, was about to be decided. But Prince Andrew did not see how it +ended. It seemed to him as though one of the soldiers near him hit him +on the head with the full swing of a bludgeon. It hurt a little, but +the worst of it was that the pain distracted him and prevented his +seeing what he had been looking at. + +"What's this? Am I falling? My legs are giving way," thought he, and +fell on his back. He opened his eyes, hoping to see how the struggle +of the Frenchmen with the gunners ended, whether the red-haired gunner +had been killed or not and whether the cannon had been captured or +saved. But he saw nothing. Above him there was now nothing but the +sky--the lofty sky, not clear yet still immeasurably lofty, with +gray clouds gliding slowly across it. "How quiet, peaceful, and +solemn; not at all as I ran," thought Prince Andrew--"not as we ran, +shouting and fighting, not at all as the gunner and the Frenchman with +frightened and angry faces struggled for the mop: how differently do +those clouds glide across that lofty infinite sky! How was it I did +not see that lofty sky before? And how happy I am to have found it +at last! Yes! All is vanity, all falsehood, except that infinite +sky. There is nothing, nothing, but that. But even it does not +exist, there is nothing but quiet and peace. Thank God!..." + + + + + +CHAPTER XVII + + +On our right flank commanded by Bagration, at nine o'clock the +battle had not yet begun. Not wishing to agree to Dolgorukov's +demand to commence the action, and wishing to avert responsibility +from himself, Prince Bagration proposed to Dolgorukov to send to +inquire of the commander in chief. Bagration knew that as the distance +between the two flanks was more than six miles, even if the +messenger were not killed (which he very likely would be), and found +the commander in chief (which would be very difficult), he would not +be able to get back before evening. + +Bagration cast his large, expressionless, sleepy eyes round his +suite, and the boyish face Rostov, breathless with excitement and +hope, was the first to catch his eye. He sent him. + +"And if I should meet His Majesty before I meet the commander in +chief, your excellency?" said Rostov, with his hand to his cap. + +"You can give the message to His Majesty," said Dolgorukov, +hurriedly interrupting Bagration. + +On being relieved from picket duty Rostov had managed to get a few +hours' sleep before morning and felt cheerful, bold, and resolute, +with elasticity of movement, faith in his good fortune, and +generally in that state of mind which makes everything seem +possible, pleasant, and easy. + +All his wishes were being fulfilled that morning: there was to be +a general engagement in which he was taking part, more than that, he +was orderly to the bravest general, and still more, he was going +with a message to Kutuzov, perhaps even to the sovereign himself. +The morning was bright, he had a good horse under him, and his heart +was full of joy and happiness. On receiving the order he gave his +horse the rein and galloped along the line. At first he rode along the +line of Bagration's troops, which had not yet advanced into action but +were standing motionless; then he came to the region occupied by +Uvarov's cavalry and here he noticed a stir and signs of preparation +for battle; having passed Uvarov's cavalry he clearly heard the +sound of cannon and musketry ahead of him. The firing grew louder +and louder. + +In the fresh morning air were now heard, not two or three musket +shots at irregular intervals as before, followed by one or two +cannon shots, but a roll of volleys of musketry from the slopes of the +hill before Pratzen, interrupted by such frequent reports of cannon +that sometimes several of them were not separated from one another but +merged into a general roar. + +He could see puffs of musketry smoke that seemed to chase one +another down the hillsides, and clouds of cannon smoke rolling, +spreading, and mingling with one another. He could also, by the +gleam of bayonets visible through the smoke, make out moving masses of +infantry and narrow lines of artillery with green caissons. + +Rostov stopped his horse for a moment on a hillock to see what was +going on, but strain his attention as he would he could not understand +or make out anything of what was happening: there in the smoke men +of some sort were moving about, in front and behind moved lines of +troops; but why, whither, and who they were, it was impossible to make +out. These sights and sounds had no depressing or intimidating +effect on him; on the contrary, they stimulated his energy and +determination. + +"Go on! Go on! Give it them!" he mentally exclaimed at these sounds, +and again proceeded to gallop along the line, penetrating farther +and farther into the region where the army was already in action. + +"How it will be there I don't know, but all will be well!" thought +Rostov. + +After passing some Austrian troops he noticed that the next part +of the line (the Guards) was already in action. + +"So much the better! I shall see it close," he thought. + +He was riding almost along the front line. A handful of men came +galloping toward him. They were our Uhlans who with disordered ranks +were returning from the attack. Rostov got out of their way, +involuntarily noticed that one of them was bleeding, and galloped on. + +"That is no business of mine," he thought. He had not ridden many +hundred yards after that before he saw to his left, across the whole +width of the field, an enormous mass of cavalry in brilliant white +uniforms, mounted on black horses, trotting straight toward him and +across his path. Rostov put his horse to full gallop to get out of the +way of these men, and he would have got clear had they continued at +the same speed, but they kept increasing their pace, so that some of +the horses were already galloping. Rostov heard the thud of their +hoofs and the jingle of their weapons and saw their horses, their +figures, and even their faces, more and more distinctly. They were our +Horse Guards, advancing to attack the French cavalry that was coming +to meet them. + +The Horse Guards were galloping, but still holding in their +horses. Rostov could already see their faces and heard the command: +"Charge!" shouted by an officer who was urging his thoroughbred to +full speed. Rostov, fearing to be crushed or swept into the attack +on the French, galloped along the front as hard as his horse could go, +but still was not in time to avoid them. + +The last of the Horse Guards, a huge pockmarked fellow, frowned +angrily on seeing Rostov before him, with whom he would inevitably +collide. This Guardsman would certainly have bowled Rostov and his +Bedouin over (Rostov felt himself quite tiny and weak compared to +these gigantic men and horses) had it not occurred to Rostov to +flourish his whip before the eyes of the Guardsman's horse. The +heavy black horse, sixteen hands high, shied, throwing back its +ears; but the pockmarked Guardsman drove his huge spurs in +violently, and the horse, flourishing its tail and extending its neck, +galloped on yet faster. Hardly had the Horse Guards passed Rostov +before he heard them shout, "Hurrah!" and looking back saw that +their foremost ranks were mixed up with some foreign cavalry with +red epaulets, probably French. He could see nothing more, for +immediately afterwards cannon began firing from somewhere and smoke +enveloped everything. + +At that moment, as the Horse Guards, having passed him, +disappeared in the smoke, Rostov hesitated whether to gallop after +them or to go where he was sent. This was the brilliant charge of +the Horse Guards that amazed the French themselves. Rostov was +horrified to hear later that of all that mass of huge and handsome +men, of all those brilliant, rich youths, officers and cadets, who had +galloped past him on their thousand-ruble horses, only eighteen were +left after the charge. + +"Why should I envy them? My chance is not lost, and maybe I shall +see the Emperor immediately!" thought Rostov and galloped on. + +When he came level with the Foot Guards he noticed that about them +and around them cannon balls were flying, of which he was aware not so +much because he heard their sound as because he saw uneasiness on +the soldiers' faces and unnatural warlike solemnity on those of the +officers. + +Passing behind one of the lines of a regiment of Foot Guards he +heard a voice calling him by name. + +"Rostov!" + +"What?" he answered, not recognizing Boris. + +"I say, we've been in the front line! Our regiment attacked!" said +Boris with the happy smile seen on the faces of young men who have +been under fire for the first time. + +Rostov stopped. + +"Have you?" he said. "Well, how did it go?" + +"We drove them back!" said Boris with animation, growing +talkative. "Can you imagine it?" and he began describing how the +Guards, having taken up their position and seeing troops before +them, thought they were Austrians, and all at once discovered from the +cannon balls discharged by those troops that they were themselves in +the front line and had unexpectedly to go into action. Rostov +without hearing Boris to the end spurred his horse. + +"Where are you off to?" asked Boris. + +"With a message to His Majesty." + +"There he is!" said Boris, thinking Rostov had said "His +Highness," and pointing to the Grand Duke who with his high +shoulders and frowning brows stood a hundred paces away from them in +his helmet and Horse Guards' jacket, shouting something to a pale, +white uniformed Austrian officer. + +"But that's the Grand Duke, and I want the commander in chief or the +Emperor," said Rostov, and was about to spur his horse. + +"Count! Count!" shouted Berg who ran up from the other side as eager +as Boris. "Count! I am wounded in my right hand" (and he showed his +bleeding hand with a handkerchief tied round it) "and I remained at +the front. I held my sword in my left hand, Count. All our family--the +von Bergs--have been knights!" + +He said something more, but Rostov did not wait to hear it and +rode away. + +Having passed the Guards and traversed an empty space, Rostov, to +avoid again getting in front of the first line as he had done when the +Horse Guards charged, followed the line of reserves, going far round +the place where the hottest musket fire and cannonade were heard. +Suddenly he heard musket fire quite close in front of him and behind +our troops, where he could never have expected the enemy to be. + +"What can it be?" he thought. "The enemy in the rear of our army? +Impossible!" And suddenly he was seized by a panic of fear for himself +and for the issue of the whole battle. "But be that what it may," he +reflected, "there is no riding round it now. I must look for the +commander in chief here, and if all is lost it is for me to perish +with the rest." + +The foreboding of evil that had suddenly come over Rostov was more +and more confirmed the farther he rode into the region behind the +village of Pratzen, which was full of troops of all kinds. + +"What does it mean? What is it? Whom are they firing at? Who is +firing?" Rostov kept asking as he came up to Russian and Austrian +soldiers running in confused crowds across his path. + +"The devil knows! They've killed everybody! It's all up now!" he was +told in Russian, German, and Czech by the crowd of fugitives who +understood what was happening as little as he did. + +"Kill the Germans!" shouted one. + +"May the devil take them--the traitors!" + +"Zum Henker diese Russen!"* muttered a German. + + +*"Hang these Russians!" + + +Several wounded men passed along the road, and words of abuse, +screams, and groans mingled in a general hubbub, then the firing +died down. Rostov learned later that Russian and Austrian soldiers had +been firing at one another. + +"My God! What does it all mean?" thought he. "And here, where at any +moment the Emperor may see them.... But no, these must be only a +handful of scoundrels. It will soon be over, it can't be that, it +can't be! Only to get past them quicker, quicker!" + +The idea of defeat and flight could not enter Rostov's head. +Though he saw French cannon and French troops on the Pratzen Heights +just where he had been ordered to look for the commander in chief, +he could not, did not wish to, believe that. + + + + + +CHAPTER XVIII + + +Rostov had been ordered to look for Kutuzov and the Emperor near the +village of Pratzen. But neither they nor a single commanding officer +were there, only disorganized crowds of troops of various kinds. He +urged on his already weary horse to get quickly past these crowds, but +the farther he went the more disorganized they were. The highroad on +which he had come out was thronged with caleches, carriages of all +sorts, and Russian and Austrian soldiers of all arms, some wounded and +some not. This whole mass droned and jostled in confusion under the +dismal influence of cannon balls flying from the French batteries +stationed on the Pratzen Heights. + +"Where is the Emperor? Where is Kutuzov?" Rostov kept asking +everyone he could stop, but got no answer from anyone. + +At last seizing a soldier by his collar he forced him to answer. + +"Eh, brother! They've all bolted long ago!" said the soldier, +laughing for some reason and shaking himself free. + +Having left that soldier who was evidently drunk, Rostov stopped the +horse of a batman or groom of some important personage and began to +question him. The man announced that the Tsar had been driven in a +carriage at full speed about an hour before along that very road and +that he was dangerously wounded. + +"It can't be!" said Rostov. "It must have been someone else." + +"I saw him myself." replied the man with a self-confident smile of +derision. "I ought to know the Emperor by now, after the times I've +seen him in Petersburg. I saw him just as I see you.... There he sat +in the carriage as pale as anything. How they made the four black +horses fly! Gracious me, they did rattle past! It's time I knew the +Imperial horses and Ilya Ivanych. I don't think Ilya drives anyone +except the Tsar!" + +Rostov let go of the horse and was about to ride on, when a +wounded officer passing by addressed him: + +"Who is it you want?" he asked. "The commander in chief? He was +killed by a cannon ball--struck in the breast before our regiment." + +"Not killed--wounded!" another officer corrected him. + +"Who? Kutuzov?" asked Rostov. + +"Not Kutuzov, but what's his name--well, never mind... there are not +many left alive. Go that way, to that village, all the commanders +are there," said the officer, pointing to the village of Hosjeradek, +and he walked on. + +Rostov rode on at a footpace not knowing why or to whom he was now +going. The Emperor was wounded, the battle lost. It was impossible +to doubt it now. Rostov rode in the direction pointed out to him, in +which he saw turrets and a church. What need to hurry? What was he now +to say to the Tsar or to Kutuzov, even if they were alive and +unwounded? + +"Take this road, your honor, that way you will be killed at once!" a +soldier shouted to him. "They'd kill you there!" + +"Oh, what are you talking about?" said another. "Where is he to +go? That way is nearer." + +Rostov considered, and then went in the direction where they said he +would be killed. + +"It's all the same now. If the Emperor is wounded, am I to try to +save myself?" he thought. He rode on to the region where the +greatest number of men had perished in fleeing from Pratzen. The +French had not yet occupied that region, and the Russians--the +uninjured and slightly wounded--had left it long ago. All about the +field, like heaps of manure on well-kept plowland, lay from ten to +fifteen dead and wounded to each couple of acres. The wounded crept +together in twos and threes and one could hear their distressing +screams and groans, sometimes feigned--or so it seemed to Rostov. He +put his horse to a trot to avoid seeing all these suffering men, and +he felt afraid--afraid not for his life, but for the courage he needed +and which he knew would not stand the sight of these unfortunates. + +The French, who had ceased firing at this field strewn with dead and +wounded where there was no one left to fire at, on seeing an +adjutant riding over it trained a gun on him and fired several +shots. The sensation of those terrible whistling sounds and of the +corpses around him merged in Rostov's mind into a single feeling of +terror and pity for himself. He remembered his mother's last letter. +"What would she feel," thought he, "if she saw me here now on this +field with the cannon aimed at me?" + +In the village of Hosjeradek there were Russian troops retiring from +the field of battle, who though still in some confusion were less +disordered. The French cannon did not reach there and the musketry +fire sounded far away. Here everyone clearly saw and said that the +battle was lost. No one whom Rostov asked could tell him where the +Emperor or Kutuzov was. Some said the report that the Emperor was +wounded was correct, others that it was not, and explained the false +rumor that had spread by the fact that the Emperor's carriage had +really galloped from the field of battle with the pale and terrified +Ober-Hofmarschal Count Tolstoy, who had ridden out to the +battlefield with others in the Emperor's suite. One officer told +Rostov that he had seen someone from headquarters behind the village +to the left, and thither Rostov rode, not hoping to find anyone but +merely to ease his conscience. When he had ridden about two miles +and had passed the last of the Russian troops, he saw, near a +kitchen garden with a ditch round it, two men on horseback facing +the ditch. One with a white plume in his hat seemed familiar to +Rostov; the other on a beautiful chestnut horse (which Rostov +fancied he had seen before) rode up to the ditch, struck his horse +with his spurs, and giving it the rein leaped lightly over. Only a +little earth crumbled from the bank under the horse's hind hoofs. +Turning the horse sharply, he again jumped the ditch, and +deferentially addressed the horseman with the white plumes, +evidently suggesting that he should do the same. The rider, whose +figure seemed familiar to Rostov and involuntarily riveted his +attention, made a gesture of refusal with his head and hand and by +that gesture Rostov instantly recognized his lamented and adored +monarch. + +"But it can't be he, alone in the midst of this empty field!" +thought Rostov. At that moment Alexander turned his head and Rostov +saw the beloved features that were so deeply engraved on his memory. +The Emperor was pale, his cheeks sunken and his eyes hollow, but the +charm, the mildness of his features, was all the greater. Rostov was +happy in the assurance that the rumors about the Emperor being wounded +were false. He was happy to be seeing him. He knew that he might and +even ought to go straight to him and give the message Dolgorukov had +ordered him to deliver. + +But as a youth in love trembles, is unnerved, and dares not utter +the thoughts he has dreamed of for nights, but looks around for help +or a chance of delay and flight when the longed-for moment comes and +he is alone with her, so Rostov, now that he had attained what he +had longed for more than anything else in the world, did not know +how to approach the Emperor, and a thousand reasons occurred to him +why it would be inconvenient, unseemly, and impossible to do so. + +"What! It is as if I were glad of a chance to take advantage of +his being alone and despondent! A strange face may seem unpleasant +or painful to him at this moment of sorrow; besides, what can I say to +him now, when my heart fails me and my mouth feels dry at the mere +sight of him?" Not one of the innumerable speeches addressed to the +Emperor that he had composed in his imagination could he now recall. +Those speeches were intended for quite other conditions, they were for +the most part to be spoken at a moment of victory and triumph, +generally when he was dying of wounds and the sovereign had thanked +him for heroic deeds, and while dying he expressed the love his +actions had proved. + +"Besides how can I ask the Emperor for his instructions for the +right flank now that it is nearly four o'clock and the battle is lost? +No, certainly I must not approach him, I must not intrude on his +reflections. Better die a thousand times than risk receiving an unkind +look or bad opinion from him," Rostov decided; and sorrowfully and +with a heart full despair he rode away, continually looking back at +the Tsar, who still remained in the same attitude of indecision. + +While Rostov was thus arguing with himself and riding sadly away, +Captain von Toll chanced to ride to the same spot, and seeing the +Emperor at once rode up to him, offered his services, and assisted him +to cross the ditch on foot. The Emperor, wishing to rest and feeling +unwell, sat down under an apple tree and von Toll remained beside him. +Rostov from a distance saw with envy and remorse how von Toll spoke +long and warmly to the Emperor and how the Emperor, evidently weeping, +covered his eyes with his hand and pressed von Toll's hand. + +"And I might have been in his place!" thought Rostov, and hardly +restraining his tears of pity for the Emperor, he rode on in utter +despair, not knowing where to or why he was now riding. + +His despair was all the greater from feeling that his own weakness +was the cause his grief. + +He might... not only might but should, have gone up to the +sovereign. It was a unique chance to show his devotion to the +Emperor and he had not made use of it.... "What have I done?" +thought he. And he turned round and galloped back to the place where +he had seen the Emperor, but there was no one beyond the ditch now. +Only some carts and carriages were passing by. From one of the drivers +he learned that Kutuzov's staff were not far off, in the village the +vehicles were going to. Rostov followed them. In front of him walked +Kutuzov's groom leading horses in horsecloths. Then came a cart, and +behind that walked an old, bandy-legged domestic serf in a peaked +cap and sheepskin coat. + +"Tit! I say, Tit!" said the groom. + +"What?" answered the old man absent-mindedly. + +"Go, Tit! Thresh a bit!" + +"Oh, you fool!" said the old man, spitting angrily. Some time passed +in silence, and then the same joke was repeated. + + +Before five in the evening the battle had been lost at all points. +More than a hundred cannon were already in the hands of the French. + +Przebyszewski and his corps had laid down their arms. Other +columns after losing half their men were retreating in disorderly +confused masses. + +The remains of Langeron's and Dokhturov's mingled forces were +crowding around the dams and banks of the ponds near the village of +Augesd. + +After five o'clock it was only at the Augesd Dam that a hot +cannonade (delivered by the French alone) was still to be heard from +numerous batteries ranged on the slopes of the Pratzen Heights, +directed at our retreating forces. + +In the rearguard, Dokhturov and others rallying some battalions kept +up a musketry fire at the French cavalry that was pursuing our troops. +It was growing dusk. On the narrow Augesd Dam where for so many +years the old miller had been accustomed to sit in his tasseled cap +peacefully angling, while his grandson, with shirt sleeves rolled +up, handled the floundering silvery fish in the watering can, on +that dam over which for so many years Moravians in shaggy caps and +blue jackets had peacefully driven their two-horse carts loaded with +wheat and had returned dusty with flour whitening their carts--on that +narrow dam amid the wagons and the cannon, under the horses' hoofs and +between the wagon wheels, men disfigured by fear of death now +crowded together, crushing one another, dying, stepping over the dying +and killing one another, only to move on a few steps and be killed +themselves in the same way. + +Every ten seconds a cannon ball flew compressing the air around, +or a shell burst in the midst of that dense throng, killing some and +splashing with blood those near them. + +Dolokhov--now an officer--wounded in the arm, and on foot, with +the regimental commander on horseback and some ten men of his company, +represented all that was left of that whole regiment. Impelled by +the crowd, they had got wedged in at the approach to the dam and, +jammed in on all sides, had stopped because a horse in front had +fallen under a cannon and the crowd were dragging it out. A cannon +ball killed someone behind them, another fell in front and splashed +Dolokhov with blood. The crowd, pushing forward desperately, +squeezed together, moved a few steps, and again stopped. + +"Move on a hundred yards and we are certainly saved, remain here +another two minutes and it is certain death," thought each one. + +Dolokhov who was in the midst of the crowd forced his way to the +edge of the dam, throwing two soldiers off their feet, and ran onto +the slippery ice that covered the millpool. + +"Turn this way!" he shouted, jumping over the ice which creaked +under him; "turn this way!" he shouted to those with the gun. "It +bears!..." + +The ice bore him but it swayed and creaked, and it was plain that it +would give way not only under a cannon or a crowd, but very soon +even under his weight alone. The men looked at him and pressed to +the bank, hesitating to step onto the ice. The general on horseback at +the entrance to the dam raised his hand and opened his mouth to +address Dolokhov. Suddenly a cannon ball hissed so low above the crowd +that everyone ducked. It flopped into something moist, and the general +fell from his horse in a pool of blood. Nobody gave him a look or +thought of raising him. + +"Get onto the ice, over the ice! Go on! Turn! Don't you hear? Go +on!" innumerable voices suddenly shouted after the ball had struck the +general, the men themselves not knowing what, or why, they were +shouting. + +One of the hindmost guns that was going onto the dam turned off onto +the ice. Crowds of soldiers from the dam began running onto the frozen +pond. The ice gave way under one of the foremost soldiers, and one leg +slipped into the water. He tried to right himself but fell in up to +his waist. The nearest soldiers shrank back, the gun driver stopped +his horse, but from behind still came the shouts: "Onto the ice, why +do you stop? Go on! Go on!" And cries of horror were heard in the +crowd. The soldiers near the gun waved their arms and beat the +horses to make them turn and move on. The horses moved off the bank. +The ice, that had held under those on foot, collapsed in a great mass, +and some forty men who were on it dashed, some forward and some +back, drowning one another. + +Still the cannon balls continued regularly to whistle and flop +onto the ice and into the water and oftenest of all among the crowd +that covered the dam, the pond, and the bank. + + + + + +CHAPTER XIX + + +On the Pratzen Heights, where he had fallen with the flagstaff in +his hand, lay Prince Andrew Bolkonski bleeding profusely and +unconsciously uttering a gentle, piteous, and childlike moan. + +Toward evening he ceased moaning and became quite still. He did +not know how long his unconsciousness lasted. Suddenly he again felt +that he was alive and suffering from a burning, lacerating pain in his +head. + +"Where is it, that lofty sky that I did not know till now, but saw +today?" was his first thought. "And I did not know this suffering +either," he thought. "Yes, I did not know anything, anything at all +till now. But where am I?" + +He listened and heard the sound of approaching horses, and voices +speaking French. He opened his eyes. Above him again was the same +lofty sky with clouds that had risen and were floating still higher, +and between them gleamed blue infinity. He did not turn his head and +did not see those who, judging by the sound of hoofs and voices, had +ridden up and stopped near him. + +It was Napoleon accompanied by two aides-de-camp. Bonaparte riding +over the battlefield had given final orders to strengthen the +batteries firing at the Augesd Dam and was looking at the killed and +wounded left on the field. + +"Fine men!" remarked Napoleon, looking at a dead Russian +grenadier, who, with his face buried in the ground and a blackened +nape, lay on his stomach with an already stiffened arm flung wide. + +"The ammunition for the guns in position is exhausted, Your +Majesty," said an adjutant who had come from the batteries that were +firing at Augesd. + +"Have some brought from the reserve," said Napoleon, and having gone +on a few steps he stopped before Prince Andrew, who lay on his back +with the flagstaff that had been dropped beside him. (The flag had +already been taken by the French as a trophy.) + +"That's a fine death!" said Napoleon as he gazed at Bolkonski. + +Prince Andrew understood that this was said of him and that it was +Napoleon who said it. He heard the speaker addressed as Sire. But he +heard the words as he might have heard the buzzing of a fly. Not +only did they not interest him, but he took no notice of them and at +once forgot them. His head was burning, he felt himself bleeding to +death, and he saw above him the remote, lofty, and everlasting sky. He +knew it was Napoleon--his hero--but at that moment Napoleon seemed +to him such a small, insignificant creature compared with what was +passing now between himself and that lofty infinite sky with the +clouds flying over it. At that moment it meant nothing to him who +might be standing over him, or what was said of him; he was only +glad that people were standing near him and only wished that they +would help him and bring him back to life, which seemed to him so +beautiful now that he had today learned to understand it so +differently. He collected all his strength, to stir and utter a sound. +He feebly moved his leg and uttered a weak, sickly groan which aroused +his own pity. + +"Ah! He is alive," said Napoleon. "Lift this young man up and +carry him to the dressing station." + +Having said this, Napoleon rode on to meet Marshal Lannes, who, +hat in hand, rode up smiling to the Emperor to congratulate him on the +victory. + +Prince Andrew remembered nothing more: he lost consciousness from +the terrible pain of being lifted onto the stretcher, the jolting +while being moved, and the probing of his wound at the dressing +station. He did not regain consciousness till late in the day, when +with other wounded and captured Russian officers he was carried to the +hospital. During this transfer he felt a little stronger and was +able to look about him and even speak. + +The first words he heard on coming to his senses were those of a +French convoy officer, who said rapidly: "We must halt here: the +Emperor will pass here immediately; it will please him to see these +gentlemen prisoners." + +"There are so many prisoners today, nearly the whole Russian army, +that he is probably tired of them," said another officer. + +"All the same! They say this one is the commander of all the Emperor +Alexander's Guards," said the first one, indicating a Russian +officer in the white uniform of the Horse Guards. + +Bolkonski recognized Prince Repnin whom he had met in Petersburg +society. Beside him stood a lad of nineteen, also a wounded officer of +the Horse Guards. + +Bonaparte, having come up at a gallop, stopped his horse. + +"Which is the senior?" he asked, on seeing the prisoners. + +They named the colonel, Prince Repnin. + +"You are the commander of the Emperor Alexander's regiment of +Horse Guards?" asked Napoleon. + +"I commanded a squadron," replied Repnin. + +"Your regiment fulfilled its duty honorably," said Napoleon. + +"The praise of a great commander is a soldier's highest reward," +said Repnin. + +"I bestow it with pleasure," said Napoleon. "And who is that young +man beside you?" + +Prince Repnin named Lieutenant Sukhtelen. + +After looking at him Napoleon smiled. + +"He's very young to come to meddle with us." + +"Youth is no hindrance to courage," muttered Sukhtelen in a +failing voice. + +"A splendid reply!" said Napoleon. "Young man, you will go far!" + +Prince Andrew, who had also been brought forward before the +Emperor's eyes to complete the show of prisoners, could not fail to +attract his attention. Napoleon apparently remembered seeing him on +the battlefield and, addressing him, again used the epithet "young +man" that was connected in his memory with Prince Andrew. + +"Well, and you, young man," said he. "How do you feel, mon brave?" + +Though five minutes before, Prince Andrew had been able to say a few +words to the soldiers who were carrying him, now with his eyes fixed +straight on Napoleon, he was silent.... So insignificant at that +moment seemed to him all the interests that engrossed Napoleon, so +mean did his hero himself with his paltry vanity and joy in victory +appear, compared to the lofty, equitable, and kindly sky which he +had seen and understood, that he could not answer him. + +Everything seemed so futile and insignificant in comparison with the +stern and solemn train of thought that weakness from loss of blood, +suffering, and the nearness of death aroused in him. Looking into +Napoleon's eyes Prince Andrew thought of the insignificance of +greatness, the unimportance of life which no one could understand, and +the still greater unimportance of death, the meaning of which no one +alive could understand or explain. + +The Emperor without waiting for an answer turned away and said to +one of the officers as he went: "Have these gentlemen attended to +and taken to my bivouac; let my doctor, Larrey, examine their +wounds. Au revoir, Prince Repnin!" and he spurred his horse and +galloped away. + +His face shone with self-satisfaction and pleasure. + +The soldiers who had carried Prince Andrew had noticed and taken the +little gold icon Princess Mary had hung round her brother's neck, +but seeing the favor the Emperor showed the prisoners, they now +hastened to return the holy image. + +Prince Andrew did not see how and by whom it was replaced, but the +little icon with its thin gold chain suddenly appeared upon his +chest outside his uniform. + +"It would be good," thought Prince Andrew, glancing at the icon +his sister had hung round his neck with such emotion and reverence, +"it would be good if everything were as clear and simple as it seems +to Mary. How good it would be to know where to seek for help in this +life, and what to expect after it beyond the grave! How happy and calm +I should be if I could now say: 'Lord, have mercy on me!'... But to +whom should I say that? Either to a Power indefinable, +incomprehensible, which I not only cannot address but which I cannot +even express in words--the Great All or Nothing-" said he to +himself, "or to that God who has been sewn into this amulet by Mary! +There is nothing certain, nothing at all except the unimportance of +everything I understand, and the greatness of something +incomprehensible but all-important." + +The stretchers moved on. At every jolt he again felt unendurable +pain; his feverishness increased and he grew delirious. Visions of his +father, wife, sister, and future son, and the tenderness he had felt +the night before the battle, the figure of the insignificant little +Napoleon, and above all this the lofty sky, formed the chief +subjects of his delirious fancies. + +The quiet home life and peaceful happiness of Bald Hills presented +itself to him. He was already enjoying that happiness when that little +Napoleon had suddenly appeared with his unsympathizing look of +shortsighted delight at the misery of others, and doubts and +torments had followed, and only the heavens promised peace. Toward +morning all these dreams melted and merged into the chaos and darkness +of unconciousness and oblivion which in the opinion of Napoleon's +doctor, Larrey, was much more likely to end in death than in +convalescence. + +"He is a nervous, bilious subject," said Larrey, "and will not +recover." + +And Prince Andrew, with others fatally wounded, was left to the care +of the inhabitants of the district. + + + + + +BOOK FOUR: 1806 + + + +CHAPTER I + + +Early in the year 1806 Nicholas Rostov returned home on leave. +Denisov was going home to Voronezh and Rostov persuaded him to +travel with him as far as Moscow and to stay with him there. Meeting a +comrade at the last post station but one before Moscow, Denisov had +drunk three bottles of wine with him and, despite the jolting ruts +across the snow-covered road, did not once wake up on the way to +Moscow, but lay at the bottom of the sleigh beside Rostov, who grew +more and more impatient the nearer they got to Moscow. + +"How much longer? How much longer? Oh, these insufferable streets, +shops, bakers' signboards, street lamps, and sleighs!" thought Rostov, +when their leave permits had been passed at the town gate and they had +entered Moscow. + +"Denisov! We're here! He's asleep," he added, leaning forward with +his whole body as if in that position he hoped to hasten the speed +of the sleigh. + +Denisov gave no answer. + +"There's the corner at the crossroads, where the cabman, Zakhar, has +his stand, and there's Zakhar himself and still the same horse! And +here's the little shop where we used to buy gingerbread! Can't you +hurry up? Now then!" + +"Which house is it?" asked the driver. + +"Why, that one, right at the end, the big one. Don't you see? That's +our house," said Rostov. "Of course, it's our house! Denisov, Denisov! +We're almost there!" + +Denisov raised his head, coughed, and made no answer. + +"Dmitri," said Rostov to his valet on the box, "those lights are +in our house, aren't they?" + +"Yes, sir, and there's a light in your father's study." + +"Then they've not gone to bed yet? What do you think? Mind now, +don't forget to put out my new coat," added Rostov, fingering his +new mustache. "Now then, get on," he shouted to the driver. "Do wake +up, Vaska!" he went on, turning to Denisov, whose head was again +nodding. "Come, get on! You shall have three rubles for vodka--get +on!" Rostov shouted, when the sleigh was only three houses from his +door. It seemed to him the horses were not moving at all. At last +the sleigh bore to the right, drew up at an entrance, and Rostov saw +overhead the old familiar cornice with a bit of plaster broken off, +the porch, and the post by the side of the pavement. He sprang out +before the sleigh stopped, and ran into the hall. The house stood cold +and silent, as if quite regardless of who had come to it. There was no +one in the hall. "Oh God! Is everyone all right?" he thought, stopping +for a moment with a sinking heart, and then immediately starting to +run along the hall and up the warped steps of the familiar +staircase. The well-known old door handle, which always angered the +countess when it was not properly cleaned, turned as loosely as +ever. A solitary tallow candle burned in the anteroom. + +Old Michael was asleep on the chest. Prokofy, the footman, who was +so strong that he could lift the back of the carriage from behind, sat +plaiting slippers out of cloth selvedges. He looked up at the +opening door and his expression of sleepy indifference suddenly +changed to one of delighted amazement. + +"Gracious heavens! The young count!" he cried, recognizing his young +master. "Can it be? My treasure!" and Prokofy, trembling with +excitement, rushed toward the drawing-room door, probably in order +to announce him, but, changing his mind, came back and stooped to kiss +the young man's shoulder. + +"All well?" asked Rostov, drawing away his arm. + +"Yes, God be thanked! Yes! They've just finished supper. Let me have +a look at you, your excellency." + +"Is everything quite all right?" + +"The Lord be thanked, yes!" + +Rostov, who had completely forgotten Denisov, not wishing anyone +to forestall him, threw off his fur coat and ran on tiptoe through the +large dark ballroom. All was the same: there were the same old card +tables and the same chandelier with a cover over it; but someone had +already seen the young master, and, before he had reached the +drawing room, something flew out from a side door like a tornado and +began hugging and kissing him. Another and yet another creature of the +same kind sprang from a second door and a third; more hugging, more +kissing, more outcries, and tears of joy. He could not distinguish +which was Papa, which Natasha, and which Petya. Everyone shouted, +talked, and kissed him at the same time. Only his mother was not +there, he noticed that. + +"And I did not know... Nicholas... My darling!..." + +"Here he is... our own... Kolya,* dear fellow... How he has +changed!... Where are the candles?... Tea!..." + + +*Nicholas. + + +"And me, kiss me!" + +"Dearest... and me!" + +Sonya, Natasha, Petya, Anna Mikhaylovna, Vera, and the old count +were all hugging him, and the serfs, men and maids, flocked into the +room, exclaiming and oh-ing and ah-ing. + +Petya, clinging to his legs, kept shouting, "And me too!" + +Natasha, after she had pulled him down toward her and covered his +face with kisses, holding him tight by the skirt of his coat, sprang +away and pranced up and down in one place like a goat and shrieked +piercingly. + +All around were loving eyes glistening with tears of joy, and all +around were lips seeking a kiss. + +Sonya too, all rosy red, clung to his arm and, radiant with bliss, +looked eagerly toward his eyes, waiting for the look for which she +longed. Sonya now was sixteen and she was very pretty, especially at +this moment of happy, rapturous excitement. She gazed at him, not +taking her eyes off him, and smiling and holding her breath. He gave +her a grateful look, but was still expectant and looking for +someone. The old countess had not yet come. But now steps were heard +at the door, steps so rapid that they could hardly be his mother's. + +Yet it was she, dressed in a new gown which he did not know, made +since he had left. All the others let him go, and he ran to her. +When they met, she fell on his breast, sobbing. She could not lift her +face, but only pressed it to the cold braiding of his hussar's jacket. +Denisov, who had come into the room unnoticed by anyone, stood there +and wiped his eyes at the sight. + +"Vasili Denisov, your son's friend," he said, introducing himself to +the count, who was looking inquiringly at him. + +"You are most welcome! I know, I know," said the count, kissing +and embracing Denisov. "Nicholas wrote us... Natasha, Vera, look! Here +is Denisov!" + +The same happy, rapturous faces turned to the shaggy figure of +Denisov. + +"Darling Denisov!" screamed Natasha, beside herself with rapture, +springing to him, putting her arms round him, and kissing him. This +escapade made everybody feel confused. Denisov blushed too, but smiled +and, taking Natasha's hand, kissed it. + +Denisov was shown to the room prepared for him, and the Rostovs +all gathered round Nicholas in the sitting room. + +The old countess, not letting go of his hand and kissing it every +moment, sat beside him: the rest, crowding round him, watched every +movement, word, or look of his, never taking their blissfully +adoring eyes off him. His brother and sisters struggled for the places +nearest to him and disputed with one another who should bring him +his tea, handkerchief, and pipe. + +Rostov was very happy in the love they showed him; but the first +moment of meeting had been so beatific that his present joy seemed +insufficient, and he kept expecting something more, more and yet more. + +Next morning, after the fatigues of their journey, the travelers +slept till ten o'clock. + +In the room next their bedroom there was a confusion of sabers, +satchels, sabretaches, open portmanteaus, and dirty boots. Two freshly +cleaned pairs with spurs had just been placed by the wall. The +servants were bringing in jugs and basins, hot water for shaving, +and their well-brushed clothes. There was a masculine odor and a smell +of tobacco. + +"Hallo, Gwiska--my pipe!" came Vasili Denisov's husky voice. +"Wostov, get up!" + +Rostov, rubbing his eyes that seemed glued together, raised his +disheveled head from the hot pillow. + +"Why, is it late?" + +"Late! It's nearly ten o'clock," answered Natasha's voice. A +rustle of starched petticoats and the whispering and laughter of +girls' voices came from the adjoining room. The door was opened a +crack and there was a glimpse of something blue, of ribbons, black +hair, and merry faces. It was Natasha, Sonya, and Petya, who had +come to see whether they were getting up. + +"Nicholas! Get up!" Natasha's voice was again heard at the door. + +"Directly!" + +Meanwhile, Petya, having found and seized the sabers in the outer +room, with the delight boys feel at the sight of a military elder +brother, and forgetting that it was unbecoming for the girls to see +men undressed, opened the bedroom door. + +"Is this your saber?" he shouted. + +The girls sprang aside. Denisov hid his hairy legs under the +blanket, looking with a scared face at his comrade for help. The door, +having let Petya in, closed again. A sound of laughter came from +behind it. + +"Nicholas! Come out in your dressing gown!" said Natasha's voice. + +"Is this your saber?" asked Petya. "Or is it yours?" he said, +addressing the black-mustached Denisov with servile deference. + +Rostov hurriedly put something on his feet, drew on his dressing +gown, and went out. Natasha had put on one spurred boot and was just +getting her foot into the other. Sonya, when he came in, was +twirling round and was about to expand her dresses into a balloon +and sit down. They were dressed alike, in new pale-blue frocks, and +were both fresh, rosy, and bright. Sonya ran away, but Natasha, taking +her brother's arm, led him into the sitting room, where they began +talking. They hardly gave one another time to ask questions and give +replies concerning a thousand little matters which could not +interest anyone but themselves. Natasha laughed at every word he +said or that she said herself, not because what they were saying was +amusing, but because she felt happy and was unable to control her +joy which expressed itself by laughter. + +"Oh, how nice, how splendid!" she said to everything. + +Rostov felt that, under the influence of the warm rays of love, that +childlike smile which had not once appeared on his face since he +left home now for the first time after eighteen months again +brightened his soul and his face. + +"No, but listen," she said, "now you are quite a man, aren't you? +I'm awfully glad you're my brother." She touched his mustache. "I want +to know what you men are like. Are you the same as we? No?" + +"Why did Sonya run away?" asked Rostov. + +"Ah, yes! That's a whole long story! How are you going to speak to +her--thou or you?" + +"As may happen," said Rostov. + +"No, call her you, please! I'll tell you all about it some other +time. No, I'll tell you now. You know Sonya's my dearest friend. +Such a friend that I burned my arm for her sake. Look here!" + +She pulled up her muslin sleeve and showed him a red scar on her +long, slender, delicate arm, high above the elbow on that part that is +covered even by a ball dress. + +"I burned this to prove my love for her. I just heated a ruler in +the fire and pressed it there!" + +Sitting on the sofa with the little cushions on its arms, in what +used to be his old schoolroom, and looking into Natasha's wildly +bright eyes, Rostov re-entered that world of home and childhood +which had no meaning for anyone else, but gave him some of the best +joys of his life; and the burning of an arm with a ruler as a proof of +love did not seem to him senseless, he understood and was not +surprised at it. + +"Well, and is that all?" he asked. + +"We are such friends, such friends! All that ruler business was just +nonsense, but we are friends forever. She, if she loves anyone, does +it for life, but I don't understand that, I forget quickly." + +"Well, what then?" + +"Well, she loves me and you like that." + +Natasha suddenly flushed. + +"Why, you remember before you went away?... Well, she says you are +to forget all that.... She says: 'I shall love him always, but let him +be free.' Isn't that lovely and noble! Yes, very noble? Isn't it?" +asked Natasha, so seriously and excitedly that it was evident that +what she was now saying she had talked of before, with tears. + +Rostov became thoughtful. + +"I never go back on my word," he said. "Besides, Sonya is so +charming that only a fool would renounce such happiness." + +"No, no!" cried Natasha, "she and I have already talked it over. +We knew you'd say so. But it won't do, because you see, if you say +that--if you consider yourself bound by your promise--it will seem +as if she had not meant it seriously. It makes it as if you were +marrying her because you must, and that wouldn't do at all." + +Rostov saw that it had been well considered by them. Sonya had +already struck him by her beauty on the preceding day. Today, when +he had caught a glimpse of her, she seemed still more lovely. She +was a charming girl of sixteen, evidently passionately in love with +him (he did not doubt that for an instant). Why should he not love her +now, and even marry her, Rostov thought, but just now there were so +many other pleasures and interests before him! "Yes, they have taken a +wise decision," he thought, "I must remain free." + +"Well then, that's excellent," said he. "We'll talk it over later +on. Oh, how glad I am to have you!" + +"Well, and are you still true to Boris?" he continued. + +"Oh, what nonsense!" cried Natasha, laughing. "I don't think about +him or anyone else, and I don't want anything of the kind." + +"Dear me! Then what are you up now?" + +"Now?" repeated Natasha, and a happy smile lit up her face. "Have +you seen Duport?" + +"No." + +"Not seen Duport--the famous dancer? Well then, you won't +understand. That's what I'm up to." + +Curving her arms, Natasha held out her skirts as dancers do, ran +back a few steps, turned, cut a caper, brought her little feet sharply +together, and made some steps on the very tips of her toes. + +"See, I'm standing! See!" she said, but could not maintain herself +on her toes any longer. "So that's what I'm up to! I'll never marry +anyone, but will be a dancer. Only don't tell anyone." + +Rostov laughed so loud and merrily that Denisov, in his bedroom, +felt envious and Natasha could not help joining in. + +"No, but don't you think it's nice?" she kept repeating. + +"Nice! And so you no longer wish to marry Boris?" + +Natasha flared up. "I don't want to marry anyone. And I'll tell +him so when I see him!" + +"Dear me!" said Rostov. + +"But that's all rubbish," Natasha chattered on. "And is Denisov +nice?" she asked. + +"Yes, indeed!" + +"Oh, well then, good-by: go and dress. Is he very terrible, +Denisov?" + +"Why terrible?" asked Nicholas. "No, Vaska is a splendid fellow." + +"You call him Vaska? That's funny! And is he very nice?" + +"Very." + +"Well then, be quick. We'll all have breakfast together." + +And Natasha rose and went out of the room on tiptoe, like a ballet +dancer, but smiling as only happy girls of fifteen can smile. When +Rostov met Sonya in the drawing room, he reddened. He did not know how +to behave with her. The evening before, in the first happy moment of +meeting, they had kissed each other, but today they felt it could +not be done; he felt that everybody, including his mother and sisters, +was looking inquiringly at him and watching to see how he would behave +with her. He kissed her hand and addressed her not as thou but as you- +Sonya. But their eyes met and said thou, and exchanged tender +kisses. Her looks asked him to forgive her for having dared, by +Natasha's intermediacy, to remind him of his promise, and then thanked +him for his love. His looks thanked her for offering him his freedom +and told her that one way or another he would never cease to love her, +for that would be impossible. + +"How strange it is," said Vera, selecting a moment when all were +silent, "that Sonya and Nicholas now say you to one another and meet +like strangers." + +Vera's remark was correct, as her remarks always were, but, like +most of her observations, it made everyone feel uncomfortable, not +only Sonya, Nicholas, and Natasha, but even the old countess, who- +dreading this love affair which might hinder Nicholas from making a +brilliant match--blushed like a girl. + +Denisov, to Rostov's surprise, appeared in the drawing room with +pomaded hair, perfumed, and in a new uniform, looking just as smart as +he made himself when going into battle, and he was more amiable to the +ladies and gentlemen than Rostov had ever expected to see him. + + + + + +CHAPTER II + + +On his return to Moscow from the army, Nicholas Rostov was +welcomed by his home circle as the best of sons, a hero, and their +darling Nikolenka; by his relations as a charming, attractive, and +polite young man; by his acquaintances as a handsome lieutenant of +hussars, a good dancer, and one of the best matches in the city. + +The Rostovs knew everybody in Moscow. The old count had money enough +that year, as all his estates had been remortgaged, and so Nicholas, +acquiring a trotter of his own, very stylish riding breeches of the +latest cut, such as no one else yet had in Moscow, and boots of the +latest fashion, with extremely pointed toes and small silver spurs, +passed his time very gaily. After a short period of adapting himself +to the old conditions of life, Nicholas found it very pleasant to be +at home again. He felt that he had grown up and matured very much. His +despair at failing in a Scripture examination, his borrowing money +from Gavril to pay a sleigh driver, his kissing Sonya on the sly--he +now recalled all this as childishness he had left immeasurably behind. +Now he was a lieutenant of hussars, in a jacket laced with silver, and +wearing the Cross of St. George, awarded to soldiers for bravery in +action, and in the company of well-known, elderly, and respected +racing men was training a trotter of his own for a race. He knew a +lady on one of the boulevards whom he visited of an evening. He led +the mazurka at the Arkharovs' ball, talked about the war with Field +Marshal Kamenski, visited the English Club, and was on intimate +terms with a colonel of forty to whom Denisov had introduced him. + +His passion for the Emperor had cooled somewhat in Moscow. But +still, as he did not see him and had no opportunity of seeing him, +he often spoke about him and about his love for him, letting it be +understood that he had not told all and that there was something in +his feelings for the Emperor not everyone could understand, and with +his whole soul he shared the adoration then common in Moscow for the +Emperor, who was spoken of as the "angel incarnate." + +During Rostov's short stay in Moscow, before rejoining the army, +he did not draw closer to Sonya, but rather drifted away from her. She +was very pretty and sweet, and evidently deeply in love with him, +but he was at the period of youth when there seems so much to do +that there is no time for that sort of thing and a young man fears +to bind himself and prizes his freedom which he needs for so many +other things. When he thought of Sonya, during this stay in Moscow, he +said to himself, "Ah, there will be, and there are, many more such +girls somewhere whom I do not yet know. There will be time enough to +think about love when I want to, but now I have no time." Besides, +it seemed to him that the society of women was rather derogatory to +his manhood. He went to balls and into ladies' society with an +affectation of doing so against his will. The races, the English Club, +sprees with Denisov, and visits to a certain house--that was another +matter and quite the thing for a dashing young hussar! + +At the beginning of March, old Count Ilya Rostov was very busy +arranging a dinner in honor of Prince Bagration at the English Club. + +The count walked up and down the hall in his dressing gown, giving +orders to the club steward and to the famous Feoktist, the Club's head +cook, about asparagus, fresh cucumbers, strawberries, veal, and fish +for this dinner. The count had been a member and on the committee of +the Club from the day it was founded. To him the Club entrusted the +arrangement of the festival in honor of Bagration, for few men knew so +well how to arrange a feast on an open-handed, hospitable scale, and +still fewer men would be so well able and willing to make up out of +their own resources what might be needed for the success of the +fete. The club cook and the steward listened to the count's orders +with pleased faces, for they knew that under no other management could +they so easily extract a good profit for themselves from a dinner +costing several thousand rubles. + +"Well then, mind and have cocks' comb in the turtle soup, you know!" + +"Shall we have three cold dishes then?" asked the cook. + +The count considered. + +"We can't have less--yes, three... the mayonnaise, that's one," said +he, bending down a finger. + +"Then am I to order those large sterlets?" asked the steward. + +"Yes, it can't be helped if they won't take less. Ah, dear me! I was +forgetting. We must have another entree. Ah, goodness gracious!" he +clutched at his head. "Who is going to get me the flowers? Dmitri! Eh, +Dmitri! Gallop off to our Moscow estate," he said to the factotum +who appeared at his call. "Hurry off and tell Maksim, the gardener, to +set the serfs to work. Say that everything out of the hothouses must +be brought here well wrapped up in felt. I must have two hundred +pots here on Friday." + +Having given several more orders, he was about to go to his +"little countess" to have a rest, but remembering something else of +importance, he returned again, called back the cook and the club +steward, and again began giving orders. A light footstep and the +clinking of spurs were heard at the door, and the young count, +handsome, rosy, with a dark little mustache, evidently rested and made +sleeker by his easy life in Moscow, entered the room. + +"Ah, my boy, my head's in a whirl!" said the old man with a smile, +as if he felt a little confused before his son. "Now, if you would +only help a bit! I must have singers too. I shall have my own +orchestra, but shouldn't we get the gypsy singers as well? You +military men like that sort of thing." + +"Really, Papa, I believe Prince Bagration worried himself less +before the battle of Schon Grabern than you do now," said his son with +a smile. + +The old count pretended to be angry. + +"Yes, you talk, but try it yourself!" + +And the count turned to the cook, who, with a shrewd and +respectful expression, looked observantly and sympathetically at the +father and son. + +"What have the young people come to nowadays, eh, Feoktist?" said +he. "Laughing at us old fellows!" + +"That's so, your excellency, all they have to do is to eat a good +dinner, but providing it and serving it all up, that's not their +business!" + +"That's it, that's it!" exclaimed the count, and gaily seizing his +son by both hands, he cried, "Now I've got you, so take the sleigh and +pair at once, and go to Bezukhob's, and tell him 'Count Ilya has +sent you to ask for strawberries and fresh pineapples.' We can't get +them from anyone else. He's not there himself, so you'll have to go in +and ask the princesses; and from there go on to the Rasgulyay--the +coachman Ipatka knows--and look up the gypsy Ilyushka, the one who +danced at Count Orlov's, you remember, in a white Cossack coat, and +bring him along to me." + +"And am I to bring the gypsy girls along with him?" asked +Nicholas, laughing. "Dear, dear!..." + +At that moment, with noiseless footsteps and with the +businesslike, preoccupied, yet meekly Christian look which never +left her face, Anna Mikhaylovna entered the hall. Though she came upon +the count in his dressing gown every day, he invariably became +confused and begged her to excuse his costume. + +"No matter at all, my dear count," she said, meekly closing her +eyes. "But I'll go to Bezukhov's myself. Pierre has arrived, and now +we shall get anything we want from his hothouses. I have to see him in +any case. He has forwarded me a letter from Boris. Thank God, Boris is +now on the staff." + +The count was delighted at Anna Mikhaylovna's taking upon herself +one of his commissions and ordered the small closed carriage for her. + +"Tell Bezukhov to come. I'll put his name down. Is his wife with +him?" he asked. + +Anna Mikhaylovna turned up her eyes, and profound sadness was +depicted on her face. + +"Ah, my dear friend, he is very unfortunate," she said. "If what +we hear is true, it is dreadful. How little we dreamed of such a thing +when we were rejoicing at his happiness! And such a lofty angelic soul +as young Bezukhov! Yes, I pity him from my heart, and shall try to +give him what consolation I can." + +"Wh-what is the matter?" asked both the young and old Rostov. + +Anna Mikhaylovna sighed deeply. + +"Dolokhov, Mary Ivanovna's son," she said in a mysterious whisper, +"has compromised her completely, they say. Pierre took him up, invited +him to his house in Petersburg, and now... she has come here and +that daredevil after her!" said Anna Mikhaylovna, wishing to show +her sympathy for Pierre, but by involuntary intonations and a half +smile betraying her sympathy for the "daredevil," as she called +Dolokhov. "They say Pierre is quite broken by his misfortune." + +"Dear, dear! But still tell him to come to the Club--it will all +blow over. It will be a tremendous banquet." + +Next day, the third of March, soon after one o'clock, two hundred +and fifty members of the English Club and fifty guests were awaiting +the guest of honor and hero of the Austrian campaign, Prince +Bagration, to dinner. + +On the first arrival of the news of the battle of Austerlitz, Moscow +had been bewildered. At that time, the Russians were so used to +victories that on receiving news of the defeat some would simply not +believe it, while others sought some extraordinary explanation of so +strange an event. In the English Club, where all who were +distinguished, important, and well informed forgathered when the +news began to arrive in December, nothing was said about the war and +the last battle, as though all were in a conspiracy of silence. The +men who set the tone in conversation--Count Rostopchin, Prince Yuri +Dolgorukov, Valuev, Count Markov, and Prince Vyazemski--did not show +themselves at the Club, but met in private houses in intimate circles, +and the Moscovites who took their opinions from others--Ilya Rostov +among them--remained for a while without any definite opinion on the +subject of the war and without leaders. The Moscovites felt that +something was wrong and that to discuss the bad news was difficult, +and so it was best to be silent. But after a while, just as a jury +comes out of its room, the bigwigs who guided the Club's opinion +reappeared, and everybody began speaking clearly and definitely. +Reasons were found for the incredible, unheard-of, and impossible +event of a Russian defeat, everything became clear, and in all corners +of Moscow the same things began to be said. These reasons were the +treachery of the Austrians, a defective commissariat, the treachery of +the Pole Przebyszewski and of the Frenchman Langeron, Kutuzov's +incapacity, and (it was whispered) the youth and inexperience of the +sovereign, who had trusted worthless and insignificant people. But the +army, the Russian army, everyone declared, was extraordinary and had +achieved miracles of valor. The soldiers, officers, and generals were +heroes. But the hero of heroes was Prince Bagration, distinguished +by his Schon Grabern affair and by the retreat from Austerlitz, +where he alone had withdrawn his column unbroken and had all day +beaten back an enemy force twice as numerous as his own. What also +conduced to Bagration's being selected as Moscow's hero was the fact +that he had no connections in the city and was a stranger there. In +his person, honor was shown to a simple fighting Russian soldier +without connections and intrigues, and to one who was associated by +memories of the Italian campaign with the name of Suvorov. Moreover, +paying such honor to Bagration was the best way of expressing +disapproval and dislike of Kutuzov. + +"Had there been no Bagration, it would have been necessary to invent +him," said the wit Shinshin, parodying the words of Voltaire. +Kutuzov no one spoke of, except some who abused him in whispers, +calling him a court weathercock and an old satyr. + +All Moscow repeated Prince Dolgorukov's saying: "If you go on +modeling and modeling you must get smeared with clay," suggesting +consolation for our defeat by the memory of former victories; and +the words of Rostopchin, that French soldiers have to be incited to +battle by highfalutin words, and Germans by logical arguments to +show them that it is more dangerous to run away than to advance, but +that Russian soldiers only need to be restrained and held back! On all +sides, new and fresh anecdotes were heard of individual examples of +heroism shown by our officers and men at Austerlitz. One had saved a +standard, another had killed five Frenchmen, a third had loaded five +cannon singlehanded. Berg was mentioned, by those who did not know +him, as having, when wounded in the right hand, taken his sword in the +left, and gone forward. Of Bolkonski, nothing was said, and only those +who knew him intimately regretted that he had died so young, leaving a +pregnant wife with his eccentric father. + + + + + +CHAPTER III + + +On that third of March, all the rooms in the English Club were +filled with a hum of conversation, like the hum of bees swarming in +springtime. The members and guests of the Club wandered hither and +thither, sat, stood, met, and separated, some in uniform and some in +evening dress, and a few here and there with powdered hair and in +Russian kaftans. Powdered footmen, in livery with buckled shoes and +smart stockings, stood at every door anxiously noting visitors' +every movement in order to offer their services. Most of those present +were elderly, respected men with broad, self-confident faces, fat +fingers, and resolute gestures and voices. This class of guests and +members sat in certain habitual places and met in certain habitual +groups. A minority of those present were casual guests--chiefly +young men, among whom were Denisov, Rostov, and Dolokhov--who was +now again an officer in the Semenov regiment. The faces of these young +people, especially those who were militarymen, bore that expression of +condescending respect for their elders which seems to say to the older +generation, "We are prepared to respect and honor you, but all the +same remember that the future belongs to us." + +Nesvitski was there as an old member of the Club. Pierre, who at his +wife's command had let his hair grow and abandoned his spectacles, +went about the rooms fashionably dressed but looking sad and dull. +Here, as elsewhere, he was surrounded by an atmosphere of subservience +to his wealth, and being in the habit of lording it over these people, +he treated them with absent-minded contempt. + +By his age he should have belonged to the younger men, but by his +wealth and connections he belonged to the groups old and honored +guests, and so he went from one group to another. Some of the most +important old men were the center of groups which even strangers +approached respectfully to hear the voices of well-known men. The +largest circles formed round Count Rostopchin, Valuev, and +Naryshkin. Rostopchin was describing how the Russians had been +overwhelmed by flying Austrians and had had to force their way through +them with bayonets. + +Valuev was confidentially telling that Uvarov had been sent from +Petersburg to ascertain what Moscow was thinking about Austerlitz. + +In the third circle, Naryshkin was speaking of the meeting of the +Austrian Council of War at which Suvorov crowed like a cock in reply +to the nonsense talked by the Austrian generals. Shinshin, standing +close by, tried to make a joke, saying that Kutuzov had evidently +failed to learn from Suvorov even so simple a thing as the art of +crowing like a cock, but the elder members glanced severely at the +wit, making him feel that in that place and on that day, it was +improper to speak so of Kutuzov. + +Count Ilya Rostov, hurried and preoccupied, went about in his soft +boots between the dining and drawing rooms, hastily greeting the +important and unimportant, all of whom he knew, as if they were all +equals, while his eyes occasionally sought out his fine well-set-up +young son, resting on him and winking joyfully at him. Young Rostov +stood at a window with Dolokhov, whose acquaintance he had lately made +and highly valued. The old count came up to them and pressed +Dolokhov's hand. + +"Please come and visit us... you know my brave boy... been +together out there... both playing the hero... Ah, Vasili +Ignatovich... How d'ye do, old fellow?" he said, turning to an old man +who was passing, but before he had finished his greeting there was a +general stir, and a footman who had run in announced, with a +frightened face: "He's arrived!" + +Bells rang, the stewards rushed forward, and--like rye shaken +together in a shovel--the guests who had been scattered about in +different rooms came together and crowded in the large drawing room by +the door of the ballroom. + +Bagration appeared in the doorway of the anteroom without hat or +sword, which, in accord with the Club custom, he had given up to the +hall porter. He had no lambskin cap on his head, nor had he a loaded +whip over his shoulder, as when Rostov had seen him on the eve of +the battle of Austerlitz, but wore a tight new uniform with Russian +and foreign Orders, and the Star of St. George on his left breast. +Evidently just before coming to the dinner he had had his hair and +whiskers trimmed, which changed his appearance for the worse. There +was something naively festive in his air, which, in conjunction with +his firm and virile features, gave him a rather comical expression. +Bekleshev and Theodore Uvarov, who had arrived with him, paused at the +doorway to allow him, as the guest of honor, to enter first. Bagration +was embarrassed, not wishing to avail himself of their courtesy, and +this caused some delay at the doors, but after all he did at last +enter first. He walked shyly and awkwardly over the parquet floor of +the reception room, not knowing what to do with his hands; he was more +accustomed to walk over a plowed field under fire, as he had done at +the head of the Kursk regiment at Schon Grabern--and he would have +found that easier. The committeemen met him at the first door and, +expressing their delight at seeing such a highly honored guest, took +possession of him as it were, without waiting for his reply, +surrounded him, and led him to the drawing room. It was at first +impossible to enter the drawing-room door for the crowd of members and +guests jostling one another and trying to get a good look at Bagration +over each other's shoulders, as if he were some rare animal. Count +Ilya Rostov, laughing and repeating the words, "Make way, dear boy! +Make way, make way!" pushed through the crowd more energetically +than anyone, led the guests into the drawing room, and seated them +on the center sofa. The bigwigs, the most respected members of the +Club, beset the new arrivals. Count Ilya, again thrusting his way +through the crowd, went out of the drawing room and reappeared a +minute later with another committeeman, carrying a large silver salver +which he presented to Prince Bagration. On the salver lay some +verses composed and printed in the hero's honor. Bagration, on +seeing the salver, glanced around in dismay, as though seeking help. +But all eyes demanded that he should submit. Feeling himself in +their power, he resolutely took the salver with both hands and +looked sternly and reproachfully at the count who had presented it +to him. Someone obligingly took the dish from Bagration (or he +would, it seemed, have held it till evening and have gone in to dinner +with it) and drew his attention to the verses. + +"Well, I will read them, then!" Bagration seemed to say, and, fixing +his weary eyes on the paper, began to read them with a fixed and +serious expression. But the author himself took the verses and began +reading them aloud. Bagration bowed his bead and listened: + + Bring glory then to Alexander's reign + And on the throne our Titus shield. + A dreaded foe be thou, kindhearted as a man, + A Rhipheus at home, a Caesar in the field! + E'en fortunate Napoleon + Knows by experience, now, Bagration, + And dare not Herculean Russians trouble... + +But before he had finished reading, a stentorian major-domo +announced that dinner was ready! The door opened, and from the +dining room came the resounding strains of the polonaise: + + Conquest's joyful thunder waken, + Triumph, valiant Russians, now!... + +and Count Rostov, glancing angrily at the author who went on reading +his verses, bowed to Bagration. Everyone rose, feeling that dinner was +more important than verses, and Bagration, again preceding all the +rest, went in to dinner. He was seated in the place of honor between +two Alexanders--Bekleshev and Naryshkin--which was a significant +allusion to the name of the sovereign. Three hundred persons took +their seats in the dining room, according to their rank and +importance: the more important nearer to the honored guest, as +naturally as water flows deepest where the land lies lowest. + +Just before dinner, Count Ilya Rostov presented his son to +Bagration, who recognized him and said a few words to him, +disjointed and awkward, as were all the words he spoke that day, and +Count Ilya looked joyfully and proudly around while Bagration spoke to +his son. + +Nicholas Rostov, with Denisov and his new acquaintance, Dolokhov, +sat almost at the middle of the table. Facing them sat Pierre, +beside Prince Nesvitski. Count Ilya Rostov with the other members of +the committee sat facing Bagration and, as the very personification of +Moscow hospitality, did the honors to the prince. + +His efforts had not been in vain. The dinner, both the Lenten and +the other fare, was splendid, yet he could not feel quite at ease till +the end of the meal. He winked at the butler, whispered directions +to the footmen, and awaited each expected dish with some anxiety. +Everything was excellent. With the second course, a gigantic sterlet +(at sight of which Ilya Rostov blushed with self-conscious +pleasure), the footmen began popping corks and filling the champagne +glasses. After the fish, which made a certain sensation, the count +exchanged glances with the other committeemen. "There will be many +toasts, it's time to begin," he whispered, and taking up his glass, he +rose. All were silent, waiting for what he would say. + +"To the health of our Sovereign, the Emperor!" he cried, and at +the same moment his kindly eyes grew moist with tears of joy and +enthusiasm. The band immediately struck up "Conquest's joyful +thunder waken..." All rose and cried "Hurrah!" Bagration also rose and +shouted "Hurrah!" in exactly the same voice in which he had shouted it +on the field at Schon Grabern. Young Rostov's ecstatic voice could +be heard above the three hundred others. He nearly wept. "To the +health of our Sovereign, the Emperor!" he roared, "Hurrah!" and +emptying his glass at one gulp he dashed it to the floor. Many +followed his example, and the loud shouting continued for a long time. +When the voices subsided, the footmen cleared away the broken glass +and everybody sat down again, smiling at the noise they had made and +exchanging remarks. The old count rose once more, glanced at a note +lying beside his plate, and proposed a toast, "To the health of the +hero of our last campaign, Prince Peter Ivanovich Bagration!" and +again his blue eyes grew moist. "Hurrah!" cried the three hundred +voices again, but instead of the band a choir began singing a +cantata composed by Paul Ivanovich Kutuzov: + + Russians! O'er all barriers on! + Courage conquest guarantees; + Have we not Bagration? + He brings foe men to their knees,... etc. + + +As soon as the singing was over, another and another toast was +proposed and Count Ilya Rostov became more and more moved, more +glass was smashed, and the shouting grew louder. They drank to +Bekleshev, Naryshkin, Uvarov, Dolgorukov, Apraksin, Valuev, to the +committee, to all the Club members and to all the Club guests, and +finally to Count Ilya Rostov separately, as the organizer of the +banquet. At that toast, the count took out his handkerchief and, +covering his face, wept outright. + + + + + +CHAPTER IV + + +Pierre sat opposite Dolokhov and Nicholas Rostov. As usual, he ate +and drank much, and eagerly. But those who knew him intimately noticed +that some great change had come over him that day. He was silent all +through dinner and looked about, blinking and scowling, or, with fixed +eyes and a look of complete absent-mindedness, kept rubbing the bridge +of his nose. His face was depressed and gloomy. He seemed to see and +hear nothing of what was going on around him and to be absorbed by +some depressing and unsolved problem. + +The unsolved problem that tormented him was caused by hints given by +the princess, his cousin, at Moscow, concerning Dolokhov's intimacy +with his wife, and by an anonymous letter he had received that +morning, which in the mean jocular way common to anonymous letters +said that he saw badly through his spectacles, but that his wife's +connection with Dolokhov was a secret to no one but himself. Pierre +absolutely disbelieved both the princess' hints and the letter, but he +feared now to look at Dolokhov, who was sitting opposite him. Every +time he chanced to meet Dolokhov's handsome insolent eyes, Pierre felt +something terrible and monstrous rising in his soul and turned quickly +away. Involuntarily recalling his wife's past and her relations with +Dolokhov, Pierre saw clearly that what was said in the letter might be +true, or might at least seem to be true had it not referred to his +wife. He involuntarily remembered how Dolokhov, who had fully +recovered his former position after the campaign, had returned to +Petersburg and come to him. Availing himself of his friendly relations +with Pierre as a boon companion, Dolokhov had come straight to his +house, and Pierre had put him up and lent him money. Pierre recalled +how Helene had smilingly expressed disapproval of Dolokhov's living at +their house, and how cynically Dolokhov had praised his wife's +beauty to him and from that time till they came to Moscow had not left +them for a day. + +"Yes, he is very handsome," thought Pierre, "and I know him. It +would be particularly pleasant to him to dishonor my name and ridicule +me, just because I have exerted myself on his behalf, befriended +him, and helped him. I know and understand what a spice that would add +to the pleasure of deceiving me, if it really were true. Yes, if it +were true, but I do not believe it. I have no right to, and can't, +believe it." He remembered the expression Dolokhov's face assumed in +his moments of cruelty, as when tying the policeman to the bear and +dropping them into the water, or when he challenged a man to a duel +without any reason, or shot a post-boy's horse with a pistol. That +expression was often on Dolokhov's face when looking at him. "Yes, +he is a bully," thought Pierre, "to kill a man means nothing to him. +It must seem to him that everyone is afraid of him, and that must +please him. He must think that I, too, am afraid of him--and in fact I +am afraid of him," he thought, and again he felt something terrible +and monstrous rising in his soul. Dolokhov, Denisov, and Rostov were +now sitting opposite Pierre and seemed very gay. Rostov was talking +merrily to his two friends, one of whom was a dashing hussar and the +other a notorious duelist and rake, and every now and then he +glanced ironically at Pierre, whose preoccupied, absent-minded, and +massive figure was a very noticeable one at the dinner. Rostov +looked inimically at Pierre, first because Pierre appeared to his +hussar eyes as a rich civilian, the husband of a beauty, and in a +word--an old woman; and secondly because Pierre in his preoccupation +and absent-mindedness had not recognized Rostov and had not +responded to his greeting. When the Emperor's health was drunk, +Pierre, lost in thought, did not rise or lift his glass. + +"What are you about?" shouted Rostov, looking at him in an ecstasy +of exasperation. "Don't you hear it's His Majesty the Emperor's +health?" + +Pierre sighed, rose submissively, emptied his glass, and, waiting +till all were seated again, turned with his kindly smile to Rostov. + +"Why, I didn't recognize you!" he said. But Rostov was otherwise +engaged; he was shouting "Hurrah!" + +"Why don't you renew the acquaintance?" said Dolokhov to Rostov. + +"Confound him, he's a fool!" said Rostov. + +"One should make up to the husbands of pretty women," said Denisov. + +Pierre did not catch what they were saying, but knew they were +talking about him. He reddened and turned away. + +"Well, now to the health of handsome women!" said Dolokhov, and with +a serious expression, but with a smile lurking at the corners of his +mouth, he turned with his glass to Pierre. + +"Here's to the health of lovely women, Peterkin--and their +lovers!" he added. + +Pierre, with downcast eyes, drank out of his glass without looking +at Dolokhov or answering him. The footman, who was distributing +leaflets with Kutuzov's cantata, laid one before Pierre as one of +the principal guests. He was just going to take it when Dolokhov, +leaning across, snatched it from his hand and began reading it. Pierre +looked at Dolokhov and his eyes dropped, the something terrible and +monstrous that had tormented him all dinnertime rose and took +possession of him. He leaned his whole massive body across the table. + +"How dare you take it?" he shouted. + +Hearing that cry and seeing to whom it was addressed, Nesvitski +and the neighbor on his right quickly turned in alarm to Bezukhov. + +"Don't! Don't! What are you about?" whispered their frightened +voices. + +Dolokhov looked at Pierre with clear, mirthful, cruel eyes, and that +smile of his which seemed to say, "Ah! This is what I like!" + +"You shan't have it!" he said distinctly. + +Pale, with quivering lips, Pierre snatched the copy. + +"You...! you... scoundrel! I challenge you!" he ejaculated, and, +pushing back his chair, he rose from the table. + +At the very instant he did this and uttered those words, Pierre felt +that the question of his wife's guilt which had been tormenting him +the whole day was finally and indubitably answered in the affirmative. +He hated her and was forever sundered from her. Despite Denisov's +request that he would take no part in the matter, Rostov agreed to +be Dolokhov's second, and after dinner he discussed the arrangements +for the duel with Nesvitski, Bezukhov's second. Pierre went home, +but Rostov with Dolokhov and Denisov stayed on at the Club till +late, listening to the gypsies and other singers. + +"Well then, till tomorrow at Sokolniki," said Dolokhov, as he took +leave of Rostov in the Club porch. + +"And do you feel quite calm?" Rostov asked. + +Dolokhov paused. + +"Well, you see, I'll tell you the whole secret of dueling in two +words. If you are going to fight a duel, and you make a will and write +affectionate letters to your parents, and if you think you may be +killed, you are a fool and are lost for certain. But go with the +firm intention of killing your man as quickly and surely as +possible, and then all will be right, as our bear huntsman at Kostroma +used to tell me. 'Everyone fears a bear,' he says, 'but when you see +one your fear's all gone, and your only thought is not to let him +get away!' And that's how it is with me. A demain, mon cher."* + + +*Till tomorrow, my dear fellow. + + +Next day, at eight in the morning, Pierre and Nesvitski drove to the +Sokolniki forest and found Dolokhov, Denisov, and Rostov already +there. Pierre had the air of a man preoccupied with considerations +which had no connection with the matter in hand. His haggard face +was yellow. He had evidently not slept that night. He looked about +distractedly and screwed up his eyes as if dazzled by the sun. He +was entirely absorbed by two considerations: his wife's guilt, of +which after his sleepless night he had not the slightest doubt, and +the guiltlessness of Dolokhov, who had no reason to preserve the honor +of a man who was nothing to him.... "I should perhaps have done the +same thing in his place," thought Pierre. "It's even certain that I +should have done the same, then why this duel, this murder? Either I +shall kill him, or he will hit me in the head, or elbow, or knee. +Can't I go away from here, run away, bury myself somewhere?" passed +through his mind. But just at moments when such thoughts occurred to +him, he would ask in a particularly calm and absent-minded way, +which inspired the respect of the onlookers, "Will it be long? Are +things ready?" + +When all was ready, the sabers stuck in the snow to mark the +barriers, and the pistols loaded, Nesvitski went up to Pierre. + +"I should not be doing my duty, Count," he said in timid tones, "and +should not justify your confidence and the honor you have done me in +choosing me for your second, if at this grave, this very grave, moment +I did not tell you the whole truth. I think there is no sufficient +ground for this affair, or for blood to be shed over it.... You were +not right, not quite in the right, you were impetuous..." + +"Oh yes, it is horribly stupid," said Pierre. + +"Then allow me to express your regrets, and I am sure your +opponent will accept them," said Nesvitski (who like the others +concerned in the affair, and like everyone in similar cases, did not +yet believe that the affair had come to an actual duel). "You know, +Count, it is much more honorable to admit one's mistake than to let +matters become irreparable. There was no insult on either side. +Allow me to convey...." + +"No! What is there to talk about?" said Pierre. "It's all the +same.... Is everything ready?" he added. "Only tell me where to go and +where to shoot," he said with an unnaturally gentle smile. + +He took the pistol in his hand and began asking about the working of +the trigger, as he had not before held a pistol in his hand--a fact +that he did not to confess. + +"Oh yes, like that, I know, I only forgot," said he. + +"No apologies, none whatever," said Dolokhov to Denisov (who on +his side had been attempting a reconciliation), and he also went up to +the appointed place. + +The spot chosen for the duel was some eighty paces from the road, +where the sleighs had been left, in a small clearing in the pine +forest covered with melting snow, the frost having begun to break up +during the last few days. The antagonists stood forty paces apart at +the farther edge of the clearing. The seconds, measuring the paces, +left tracks in the deep wet snow between the place where they had been +standing and Nesvitski's and Dolokhov's sabers, which were stuck +intothe ground ten paces apart to mark the barrier. It was thawing and +misty; at forty paces' distance nothing could be seen. For three +minutes all had been ready, but they still delayed and all were +silent. + + + + + +CHAPTER V + + +"Well begin!" said Dolokhov. + +"All right," said Pierre, still smiling in the same way. A feeling +of dread was in the air. It was evident that the affair so lightly +begun could no longer be averted but was taking its course +independently of men's will. + +Denisov first went to the barrier and announced: "As the adve'sawies +have wefused a weconciliation, please pwoceed. Take your pistols, +and at the word thwee begin to advance. + +"O-ne! T-wo! Thwee!" he shouted angrily and stepped aside. + +The combatants advanced along the trodden tracks, nearer and +nearer to one another, beginning to see one another through the +mist. They had the right to fire when they liked as they approached +the barrier. Dolokhov walked slowly without raising his pistol, +looking intently with his bright, sparkling blue eyes into his +antagonist's face. His mouth wore its usual semblance of a smile. + +"So I can fire when I like!" said Pierre, and at the word "three," +he went quickly forward, missing the trodden path and stepping into +the deep snow. He held the pistol in his right hand at arm's length, +apparently afraid of shooting himself with it. His left hand he held +carefully back, because he wished to support his right hand with it +and knew he must not do so. Having advanced six paces and strayed +off the track into the snow, Pierre looked down at his feet, then +quickly glanced at Dolokhov and, bending his finger as he had been +shown, fired. Not at all expecting so loud a report, Pierre +shuddered at the sound and then, smiling at his own sensations, +stood still. The smoke, rendered denser by the mist, prevented him +from seeing anything for an instant, but there was no second report as +he had expected. He only heard Dolokhov's hurried steps, and his +figure came in view through the smoke. He was pressing one hand to his +left side, while the other clutched his drooping pistol. His face +was pale. Rostov ran toward him and said something. + +"No-o-o!" muttered Dolokhov through his teeth, "no, it's not +over." And after stumbling a few staggering steps right up to the +saber, he sank on the snow beside it. His left hand was bloody; he +wiped it on his coat and supported himself with it. His frowning +face was pallid and quivered. + +"Plea..." began Dolokhov, but could not at first pronounce the word. + +"Please," he uttered with an effort. + +Pierre, hardly restraining his sobs, began running toward Dolokhov +and was about to cross the space between the barriers, when Dolokhov +cried: + +"To your barrier!" and Pierre, grasping what was meant, stopped by +his saber. Only ten paces divided them. Dolokhov lowered his head to +the snow, greedily bit at it, again raised his head, adjusted himself, +drew in his legs and sat up, seeking a firm center of gravity. He +sucked and swallowed the cold snow, his lips quivered but +his eyes, still smiling, glittered with effort and exasperation as +he mustered his remaining strength. He raised his pistol and aimed. + +"Sideways! Cover yourself with your pistol!" ejaculated Nesvitski. + +"Cover yourself!" even Denisov cried to his adversary. + +Pierre, with a gentle smile of pity and remorse, his arms and legs +helplessly spread out, stood with his broad chest directly facing +Dolokhov looked sorrowfully at him. Denisov, Rostov, and Nesvitski +closed their eyes. At the same instant they heard a report and +Dolokhov's angry cry. + +"Missed!" shouted Dolokhov, and he lay helplessly, face downwards on +the snow. + +Pierre clutched his temples, and turning round went into the forest, +trampling through the deep snow, and muttering incoherent words: + +"Folly... folly! Death... lies..." he repeated, puckering his face. + +Nesvitski stopped him and took him home. + +Rostov and Denisov drove away with the wounded Dolokhov. + +The latter lay silent in the sleigh with closed eyes and did not +answer a word to the questions addressed to him. But on entering +Moscow he suddenly came to and, lifting his head with an effort, +took Rostov, who was sitting beside him, by the hand. Rostov was +struck by the totally altered and unexpectedly rapturous and tender +expression on Dolokhov's face. + +"Well? How do you feel?" he asked. + +"Bad! But it's not that, my friend-" said Dolokhov with a gasping +voice. "Where are we? In Moscow, I know. I don't matter, but I have +killed her, killed... She won't get over it! She won't survive...." + +"Who?" asked Rostov. + +"My mother! My mother, my angel, my adored angel mother," and +Dolokhov pressed Rostov's hand and burst into tears. + +When he had become a little quieter, he explained to Rostov that +he was living with his mother, who, if she saw him dying, would not +survive it. He implored Rostov to go on and prepare her. + +Rostov went on ahead to do what was asked, and to his great surprise +learned that Dolokhov the brawler, Dolokhov the bully, lived in Moscow +with an old mother and a hunchback sister, and was the most +affectionate of sons and brothers. + + + + + +CHAPTER VI + + +Pierre had of late rarely seen his wife alone. Both in Petersburg +and in Moscow their house was always full of visitors. The night after +the duel he did not go to his bedroom but, as he often did, remained +in his father's room, that huge room in which Count Bezukhov had died. + +He lay down on the sofa meaning to fall asleep and forget all that +had happened to him, but could not do so. Such a storm of feelings, +thoughts, and memories suddenly arose within him that he could not +fall asleep, nor even remain in one place, but had to jump up and pace +the room with rapid steps. Now he seemed to see her in the early +days of their marriage, with bare shoulders and a languid, +passionate look on her face, and then immediately he saw beside her +Dolokhov's handsome, insolent, hard, and mocking face as he had seen +it at the banquet, and then that same face pale, quivering, and +suffering, as it had been when he reeled and sank on the snow. + +"What has happened?" he asked himself. "I have killed her lover, +yes, killed my wife's lover. Yes, that was it! And why? How did I come +to do it?"--"Because you married her," answered an inner voice. + +"But in what was I to blame?" he asked. "In marrying her without +loving her; in deceiving yourself and her." And he vividly recalled +that moment after supper at Prince Vasili's, when he spoke those words +he had found so difficult to utter: "I love you." "It all comes from +that! Even then I felt it," he thought. "I felt then that it was not +so, that I had no right to do it. And so it turns out." + +He remembered his honeymoon and blushed at the recollection. +Particularly vivid, humiliating, and shameful was the recollection +of how one day soon after his marriage he came out of the bedroom into +his study a little before noon in his silk dressing gown and found his +head steward there, who, bowing respectfully, looked into his face and +at his dressing gown and smiled slightly, as if expressing +respectful understanding of his employer's happiness. + +"But how often I have felt proud of her, proud of her majestic +beauty and social tact," thought he; "been proud of my house, in +which she received all Petersburg, proud of her unapproachability and +beauty. So this is what I was proud of! I then thought that I did +not understand her. How often when considering her character I have +told myself that I was to blame for not understanding her, for not +understanding that constant composure and complacency and lack of +all interests or desires, and the whole secret lies in the terrible +truth that she is a depraved woman. Now I have spoken that terrible +word to myself all has become clear. + +"Anatole used to come to borrow money from her and used to kiss +her naked shoulders. She did not give him the money, but let herself +be kissed. Her father in jest tried to rouse her jealousy, and she +replied with a calm smile that she was not so stupid as to be jealous: +'Let him do what he pleases,' she used to say of me. One day I asked +her if she felt any symptoms of pregnancy. She laughed +contemptuously and said she was not a fool to want to have children, +and that she was not going to have any children by me." + +Then he recalled the coarseness and bluntness of her thoughts and +the vulgarity of the expressions that were natural to her, though +she had been brought up in the most aristocratic circles. + +"I'm not such a fool.... Just you try it on.... Allez-vous +promener,"* she used to say. Often seeing the success she had with +young and old men and women Pierre could not understand why he did not +love her. + + +*"You clear out of this." + + +"Yes, I never loved her," said he to himself; "I knew she was a +depraved woman," he repeated, "but dared not admit it to myself. And +now there's Dolokhov sitting in the snow with a forced smile and +perhaps dying, while meeting my remorse with some forced bravado!" + +Pierre was one of those people who, in spite of an appearance of +what is called weak character, do not seek a confidant in their +troubles. He digested his sufferings alone. + +"It is all, all her fault," he said to himself; "but what of that? +Why did I bind myself to her? Why did I say 'Je vous aime'* to her, +which was a lie, and worse than a lie? I am guilty and must +endure... what? A slur on my name? A misfortune for life? Oh, that's +nonsense," he thought. "The slur on my name and honor--that's all +apart from myself. + + +*I love you. + + +"Louis XVI was executed because they said he was dishonorable and +a criminal," came into Pierre's head, "and from their point of view +they were right, as were those too who canonized him and died a +martyr's death for his sake. Then Robespierre was beheaded for being a +despot. Who is right and who is wrong? No one! But if you are alive- +live: tomorrow you'll die as I might have died an hour ago. And is +it worth tormenting oneself, when one has only a moment of life in +comparison with eternity?" + +But at the moment when he imagined himself calmed by such +reflections, she suddenly came into his mind as she was at the moments +when he had most strongly expressed his insincere love for her, and he +felt the blood rush to his heart and had again to get up and move +about and break and tear whatever came to his hand. "Why did I tell +her that 'Je vous aime'?" he kept repeating to himself. And when he +had said it for the tenth time, Molibre's words: "Mais que diable +alloit-il faire dans cette galere?" occurred to him, and he began to +laugh at himself. + +In the night he called his valet and told him to pack up to go to +Petersburg. He could not imagine how he could speak to her now. He +resolved to go away next day and leave a letter informing her of his +intention to part from her forever. + +Next morning when the valet came into the room with his coffee, +Pierre was lying asleep on the ottoman with an open book in his hand. + +He woke up and looked round for a while with a startled +expression, unable to realize where he was. + +"The countess told me to inquire whether your excellency was at +home," said the valet. + +But before Pierre could decide what answer he would send, the +countess herself in a white satin dressing gown embroidered with +silver and with simply dressed hair (two immense plaits twice round +her lovely head like a coronet) entered the room, calm and majestic, +except that there was a wrathful wrinkle on her rather prominent +marble brow. With her imperturbable calm she did not begin to speak in +front of the valet. She knew of the duel and had come to speak about +it. She waited till the valet had set down the coffee things and +left the room. Pierre looked at her timidly over his spectacles, and +like a hare surrounded by hounds who lays back her ears and +continues to crouch motionless before her enemies, he tried to +continue reading. But feeling this to be senseless and impossible, +he again glanced timidly at her. She did not sit down but looked at +him with a contemptuous smile, waiting for the valet to go. + +"Well, what's this now? What have you been up to now, I should +like to know?" she asked sternly. + +"I? What have I...?" stammered Pierre. + +"So it seems you're a hero, eh? Come now, what was this duel +about? What is it meant to prove? What? I ask you." + +Pierre turned over heavily on the ottoman and opened his mouth, +but could not reply. + +"If you won't answer, I'll tell you..." Helene went on. "You believe +everything you're told. You were told..." Helene laughed, "that +Dolokhov was my lover," she said in French with her coarse plainness +of speech, uttering the word amant as casually as any other word, "and +you believed it! Well, what have you proved? What does this duel +prove? That you're a fool, que vous etes un sot, but everybody knew +that. What will be the result? That I shall be the laughingstock of +all Moscow, that everyone will say that you, drunk and not knowing +what you were about, challenged a man you are jealous of without +cause." Helene raised her voice and became more and more excited, "A +man who's a better man than you in every way..." + +"Hm... Hm...!" growled Pierre, frowning without looking at her, +and not moving a muscle. + +"And how could you believe he was my lover? Why? Because I like +his company? If you were cleverer and more agreeable, I should +prefer yours." + +"Don't speak to me... I beg you," muttered Pierre hoarsely. + +"Why shouldn't I speak? I can speak as I like, and I tell you +plainly that there are not many wives with husbands such as you who +would not have taken lovers (des amants), but I have not done so," +said she. + +Pierre wished to say something, looked at her with eyes whose +strange expression she did not understand, and lay down again. He +was suffering physically at that moment, there was a weight on his +chest and he could not breathe. He knew that he must do something to +put an end to this suffering, but what he wanted to do was too +terrible. + +"We had better separate," he muttered in a broken voice. + +"Separate? Very well, but only if you give me a fortune," said +Helene. "Separate! That's a thing to frighten me with!" + +Pierre leaped up from the sofa and rushed staggering toward her. + +"I'll kill you!" he shouted, and seizing the marble top of a table +with a strength he had never before felt, he made a step toward her +brandishing the slab. + +Helene's face became terrible, she shrieked and sprang aside. His +father's nature showed itself in Pierre. He felt the fascination and +delight of frenzy. He flung down the slab, broke it, and swooping down +on her with outstretched hands shouted, "Get out!" in such a +terrible voice that the whole house heard it with horror. God knows +what he would have done at that moment had Helene not fled from the +room. + + +A week later Pierre gave his wife full power to control all his +estates in Great Russia, which formed the larger part of his property, +and left for Petersburg alone. + + + + + +CHAPTER VII + + +Two months had elapsed since the news of the battle of Austerlitz +and the loss of Prince Andrew had reached Bald Hills, and in spite +of the letters sent through the embassy and all the searches made, his +body had not been found nor was he on the list of prisoners. What +was worst of all for his relations was the fact that there was still a +possibility of his having been picked up on the battlefield by the +people of the place and that he might now be lying, recovering or +dying, alone among strangers and unable to send news of himself. The +gazettes from which the old prince first heard of the defeat at +Austerlitz stated, as usual very briefly and vaguely, that after +brilliant engagements the Russians had had to retreat and had made +their withdrawal in perfect order. The old prince understood from this +official report that our army had been defeated. A week after the +gazette report of the battle of Austerlitz came a letter from +Kutuzov informing the prince of the fate that had befallen his son. + +"Your son," wrote Kutuzov, "fell before my eyes, a standard in his +hand and at the head of a regiment--he fell as a hero, worthy of his +father and his fatherland. To the great regret of myself and of the +whole army it is still uncertain whether he is alive or not. I comfort +myself and you with the hope that your son is alive, for otherwise +he would have been mentioned among the officers found on the field +of battle, a list of whom has been sent me under flag of truce." + +After receiving this news late in the evening, when he was alone +in his study, the old prince went for his walk as usual next +morning, but he was silent with his steward, the gardener, and the +architect, and though he looked very grim he said nothing to anyone. + +When Princess Mary went to him at the usual hour he was working at +his lathe and, as usual, did not look round at her. + +"Ah, Princess Mary!" he said suddenly in an unnatural voice, +throwing down his chisel. (The wheel continued to revolve by its own +impetus, and Princess Mary long remembered the dying creak of that +wheel, which merged in her memory with what followed.) + +She approached him, saw his face, and something gave way within her. +Her eyes grew dim. By the expression of her father's face, not sad, +not crushed, but angry and working unnaturally, she saw that hanging +over her and about to crush her was some terrible misfortune, the +worst in life, one she had not yet experienced, irreparable and +incomprehensible--the death of one she loved. + +"Father! Andrew!"--said the ungraceful, awkward princess with such +an indescribable charm of sorrow and self-forgetfulness that her +father could not bear her look but turned away with a sob. + +"Bad news! He's not among the prisoners nor among the killed! +Kutuzov writes..." and he screamed as piercingly as if he wished to +drive the princess away by that scream... "Killed!" + +The princess did not fall down or faint. She was already pale, but +on hearing these words her face changed and something brightened in +her beautiful, radiant eyes. It was as if joy--a supreme joy apart +from the joys and sorrows of this world--overflowed the great grief +within her. She forgot all fear of her father, went up to him, took +his hand, and drawing him down put her arm round his thin, scraggy +neck. + +"Father," she said, "do not turn away from me, let us weep together." + +"Scoundrels! Blackguards!" shrieked the old man, turning his face +away from her. "Destroying the army, destroying the men! And why? +Go, go and tell Lise." + +The princess sank helplessly into an armchair beside her father +and wept. She saw her brother now as he had been at the moment when he +took leave of her and of Lise, his look tender yet proud. She saw +him tender and amused as he was when he put on the little icon. "Did +he believe? Had he repented of his unbelief? Was he now there? There +in the realms of eternal peace and blessedness?" she thought. + +"Father, tell me how it happened," she asked through her tears. + +"Go! Go! Killed in battle, where the best of Russian men and +Russia's glory were led to destruction. Go, Princess Mary. Go and tell +Lise. I will follow." + +When Princess Mary returned from her father, the little princess sat +working and looked up with that curious expression of inner, happy +calm peculiar to pregnant women. It was evident that her eyes did +not see Princess Mary but were looking within... into herself... at +something joyful and mysterious taking place within her. + +"Mary," she said, moving away from the embroidery frame and lying +back, "give me your hand." She took her sister-in-law's hand and +held it below her waist. + +Her eyes were smiling expectantly, her downy lip rose and remained +lifted in childlike happiness. + +Princess Mary knelt down before her and hid her face in the folds of +her sister-in-law's dress. + +"There, there! Do you feel it? I feel so strange. And do you know, +Mary, I am going to love him very much," said Lise, looking with +bright and happy eyes at her sister-in-law. + +Princess Mary could not lift her head, she was weeping. + +"What is the matter, Mary?" + +"Nothing... only I feel sad... sad about Andrew," she said, wiping +away her tears on her sister-in-law's knee. + +Several times in the course of the morning Princess Mary began +trying to prepare her sister-in-law, and every time began to cry. +Unobservant as was the little princess, these tears, the cause of +which she did not understand, agitated her. She said nothing but +looked about uneasily as if in search of something. Before dinner +the old prince, of whom she was always afraid, came into her room with +a peculiarly restless and malign expression and went out again without +saying a word. She looked at Princess Mary, then sat thinking for a +while with that expression of attention to something within her that +is only seen in pregnant women, and suddenly began to cry. + +"Has anything come from Andrew?" she asked. + +"No, you know it's too soon for news. But my father is anxious and I +feel afraid." + +"So there's nothing?" + +"Nothing," answered Princess Mary, looking firmly with her radiant +eyes at her sister-in-law. + +She had determined not to tell her and persuaded her father to +hide the terrible news from her till after her confinement, which +was expected within a few days. Princess Mary and the old prince +each bore and hid their grief in their own way. The old prince would +not cherish any hope: he made up his mind that Prince Andrew had +been killed, and though he sent an official to Austria to seek for +traces of his son, he ordered a monument from Moscow which he intended +to erect in his own garden to his memory, and he told everybody that +his son had been killed. He tried not to change his former way of +life, but his strength failed him. He walked less, ate less, slept +less, and became weaker every day. Princess Mary hoped. She prayed for +her brother as living and was always awaiting news of his return. + + + + + +CHAPTER VIII + + +"Dearest," said the little princess after breakfast on the morning +of the nineteenth March, and her downy little lip rose from old habit, +but as sorrow was manifest in every smile, the sound of every word, +and even every footstep in that house since the terrible news had +come, so now the smile of the little princess--influenced by the +general mood though without knowing its cause--was such as to remind +one still more of the general sorrow. + +"Dearest, I'm afraid this morning's fruschtique*--as Foka the cook +calls it--has disagreed with me." + + +*Fruhstuck: breakfast. + + +"What is the matter with you, my darling? You look pale. Oh, you are +very pale!" said Princess Mary in alarm, running with her soft, +ponderous steps up to her sister-in-law. + +"Your excellency, should not Mary Bogdanovna be sent for?" said +one of the maids who was present. (Mary Bogdanovna was a midwife +from the neighboring town, who had been at Bald Hills for the last +fortnight.) + +"Oh yes," assented Princess Mary, "perhaps that's it. I'll go. +Courage, my angel." She kissed Lise and was about to leave the room. + +"Oh, no, no!" And besides the pallor and the physical suffering on +the little princess' face, an expression of childish fear of +inevitable pain showed itself. + +"No, it's only indigestion?... Say it's only indigestion, say so, +Mary! Say..." And the little princess began to cry capriciously like a +suffering child and to wring her little hands even with some +affectation. Princess Mary ran out of the room to fetch Mary +Bogdanovna. + +"Mon Dieu! Mon Dieu! Oh!" she heard as she left the room. + +The midwife was already on her way to meet her, rubbing her small, +plump white hands with an air of calm importance. + +"Mary Bogdanovna, I think it's beginning!" said Princess Mary +looking at the midwife with wide-open eyes of alarm. + +"Well, the Lord be thanked, Princess," said Mary Bogdanovna, not +hastening her steps. "You young ladies should not know anything +about it." + +"But how is it the doctor from Moscow is not here yet?" said the +princess. (In accordance with Lise's and Prince Andrew's wishes they +had sent in good time to Moscow for a doctor and were expecting him at +any moment.) + +"No matter, Princess, don't be alarmed," said Mary Bogdanovna. +"We'll manage very well without a doctor." + +Five minutes later Princess Mary from her room heard something heavy +being carried by. She looked out. The men servants were carrying the +large leather sofa from Prince Andrew's study into the bedroom. On +their faces was a quiet and solemn look. + +Princess Mary sat alone in her room listening to the sounds in the +house, now and then opening her door when someone passed and +watching what was going on in the passage. Some women passing with +quiet steps in and out of the bedroom glanced at the princess and +turned away. She did not venture to ask any questions, and shut the +door again, now sitting down in her easy chair, now taking her +prayer book, now kneeling before the icon stand. To her surprise and +distress she found that her prayers did not calm her excitement. +Suddenly her door opened softly and her old nurse, Praskovya Savishna, +who hardly ever came to that room as the old prince had forbidden +it, appeared on the threshold with a shawl round her head. + +"I've come to sit with you a bit, Masha," said the nurse, "and +here I've brought the prince's wedding candles to light before his +saint, my angel," she said with a sigh. + +"Oh, nurse, I'm so glad!" + +"God is merciful, birdie." + +The nurse lit the gilt candles before the icons and sat down by +the door with her knitting. Princess Mary took a book and began +reading. Only when footsteps or voices were heard did they look at one +another, the princess anxious and inquiring, the nurse encouraging. +Everyone in the house was dominated by the same feeling that +Princess Mary experienced as she sat in her room. But owing to the +superstition that the fewer the people who know of it the less a woman +in travail suffers, everyone tried to pretend not to know; no one +spoke of it, but apart from the ordinary staid and respectful good +manners habitual in the prince's household, a common anxiety, a +softening of the heart, and a consciousness that something great and +mysterious was being accomplished at that moment made itself felt. + +There was no laughter in the maids' large hall. In the men servants' +hall all sat waiting, silently and alert. In the outlying serfs' +quarters torches and candles were burning and no one slept. The old +prince, stepping on his heels, paced up and down his study and sent +Tikhon to ask Mary Bogdanovna what news.--"Say only that 'the prince +told me to ask,' and come and tell me her answer." + +"Inform the prince that labor has begun," said Mary Bogdanovna, +giving the messenger a significant look. + +Tikhon went and told the prince. + +"Very good!" said the prince closing the door behind him, and Tikhon +did not hear the slightest sound from the study after that. + +After a while he re-entered it as if to snuff the candles, and, +seeing the prince was lying on the sofa, looked at him, noticed his +perturbed face, shook his head, and going up to him silently kissed +him on the shoulder and left the room without snuffing the candles +or saying why he had entered. The most solemn mystery in the world +continued its course. Evening passed, night came, and the feeling of +suspense and softening of heart in the presence of the unfathomable +did not lessen but increased. No one slept. + +It was one of those March nights when winter seems to wish to resume +its sway and scatters its last snows and storms with desperate fury. A +relay of horses had been sent up the highroad to meet the German +doctor from Moscow who was expected every moment, and men on horseback +with lanterns were sent to the crossroads to guide him over the +country road with its hollows and snow-covered pools of water. + +Princess Mary had long since put aside her book: she sat silent, her +luminous eyes fixed on her nurse's wrinkled face (every line of +which she knew so well), on the lock of gray hair that escaped from +under the kerchief, and the loose skin that hung under her chin. + +Nurse Savishna, knitting in hand, was telling in low tones, scarcely +hearing or understanding her own words, what she had told hundreds +of times before: how the late princess had given birth to Princess +Mary in Kishenev with only a Moldavian peasant woman to help instead +of a midwife. + +"God is merciful, doctors are never needed," she said. + +Suddenly a gust of wind beat violently against the casement of the +window, from which the double frame had been removed (by order of +the prince, one window frame was removed in each room as soon as the +larks returned), and, forcing open a loosely closed latch, set the +damask curtain flapping and blew out the candle with its chill, +snowy draft. Princess Mary shuddered; her nurse, putting down the +stocking she was knitting, went to the window and leaning out tried to +catch the open casement. The cold wind flapped the ends of her +kerchief and her loose locks of gray hair. + +"Princess, my dear, there's someone driving up the avenue!" she +said, holding the casement and not closing it. "With lanterns. Most +likely the doctor." + +"Oh, my God! thank God!" said Princess Mary. "I must go and meet +him, he does not know Russian." + +Princess Mary threw a shawl over her head and ran to meet the +newcomer. As she was crossing the anteroom she saw through the +window a carriage with lanterns, standing at the entrance. She went +out on the stairs. On a banister post stood a tallow candle which +guttered in the draft. On the landing below, Philip, the footman, +stood looking scared and holding another candle. Still lower, beyond +the turn of the staircase, one could hear the footstep of someone in +thick felt boots, and a voice that seemed familiar to Princess Mary +was saying something. + +"Thank God!" said the voice. "And Father?" + +"Gone to bed," replied the voice of Demyan the house steward, who +was downstairs. + +Then the voice said something more, Demyan replied, and the steps in +the felt boots approached the unseen bend of the staircase more +rapidly. + +"It's Andrew!" thought Princess Mary. "No it can't be, that would be +too extraordinary," and at the very moment she thought this, the +face and figure of Prince Andrew, in a fur cloak the deep collar of +which covered with snow, appeared on the landing where the footman +stood with the candle. Yes, it was he, pale, thin, with a changed +and strangely softened but agitated expression on his face. He came up +the stairs and embraced his sister. + +"You did not get my letter?" he asked, and not waiting for a +reply--which he would not have received, for the princess was unable +to speak--he turned back, rapidly mounted the stairs again with the +doctor who had entered the hall after him (they had met at the last +post station), and again embraced his sister. + +"What a strange fate, Masha darling!" And having taken off his cloak +and felt boots, he went to the little princess' apartment. + + + + + +CHAPTER IX + + +The little princess lay supported by pillows, with a white cap on +her head (the pains had just left her). Strands of her black hair +lay round her inflamed and perspiring cheeks, her charming rosy +mouth with its downy lip was open and she was smiling joyfully. Prince +Andrew entered and paused facing her at the foot of the sofa on +which she was lying. Her glittering eyes, filled with childlike fear +and excitement, rested on him without changing their expression. "I +love you all and have done no harm to anyone; why must I suffer so? +Help me!" her look seemed to say. She saw her husband, but did not +realize the significance of his appearance before her now. Prince +Andrew went round the sofa and kissed her forehead. + +"My darling!" he said--a word he had never used to her before. +"God is merciful...." + +She looked at him inquiringly and with childlike reproach. + +"I expected help from you and I get none, none from you either!" +said her eyes. She was not surprised at his having come; she did not +realize that he had come. His coming had nothing to do with her +sufferings or with their relief. The pangs began again and Mary +Bogdanovna advised Prince Andrew to leave the room. + +The doctor entered. Prince Andrew went out and, meeting Princess +Mary, again joined her. They began talking in whispers, but their talk +broke off at every moment. They waited and listened. + +"Go, dear," said Princess Mary. + +Prince Andrew went again to his wife and sat waiting in the room +next to hers. A woman came from the bedroom with a frightened face and +became confused when she saw Prince Andrew. He covered his face with +his hands and remained so for some minutes. Piteous, helpless, +animal moans came through the door. Prince Andrew got up, went to +the door, and tried to open it. Someone was holding it shut. + +"You can't come in! You can't!" said a terrified voice from within. + +He began pacing the room. The screaming ceased, and a few more +seconds went by. Then suddenly a terrible shriek--it could not be +hers, she could not scream like that--came from the bedroom. Prince +Andrew ran to the door; the scream ceased and he heard the wail of +an infant. + +"What have they taken a baby in there for?" thought Prince Andrew in +the first second. "A baby? What baby...? Why is there a baby there? Or +is the baby born?" + +Then suddenly he realized the joyful significance of that wail; +tears choked him, and leaning his elbows on the window sill be began +to cry, sobbing like a child. The door opened. The doctor with his +shirt sleeves tucked up, without a coat, pale and with a trembling +jaw, came out of the room. Prince Andrew turned to him, but the doctor +gave him a bewildered look and passed by without a word. A woman +rushed out and seeing Prince Andrew stopped, hesitating on the +threshold. He went into his wife's room. She was lying dead, in the +same position he had seen her in five minutes before and, despite +the fixed eyes and the pallor of the cheeks, the same expression was +on her charming childlike face with its upper lip covered with tiny +black hair. + +"I love you all, and have done no harm to anyone; and what have +you done to me?"--said her charming, pathetic, dead face. + +In a corner of the room something red and tiny gave a grunt and +squealed in Mary Bogdanovna's trembling white hands. + + +Two hours later Prince Andrew, stepping softly, went into his +father's room. The old man already knew everything. He was standing +close to the door and as soon as it opened his rough old arms closed +like a vise round his son's neck, and without a word he began to sob +like a child. + + +Three days later the little princess was buried, and Prince Andrew +went up the steps to where the coffin stood, to give her the +farewell kiss. And there in the coffin was the same face, though +with closed eyes. "Ah, what have you done to me?" it still seemed to +say, and Prince Andrew felt that something gave way in his soul and +that he was guilty of a sin he could neither remedy nor forget. He +could not weep. The old man too came up and kissed the waxen little +hands that lay quietly crossed one on the other on her breast, and +to him, too, her face seemed to say: "Ah, what have you done to me, +and why?" And at the sight the old man turned angrily away. + + +Another five days passed, and then the young Prince Nicholas +Andreevich was baptized. The wet nurse supported the coverlet with her +while the priest with a goose feather anointed the boy's little red +and wrinkled soles and palms. + +His grandfather, who was his godfather, trembling and afraid of +dropping him, carried the infant round the battered tin font and +handed him over to the godmother, Princess Mary. Prince Andrew sat +in another room, faint with fear lest the baby should be drowned in +the font, and awaited the termination of the ceremony. He looked up +joyfully at the baby when the nurse brought it to him and nodded +approval when she told him that the wax with the baby's hair had not +sunk in the font but had floated. + + + + + +CHAPTER X + + +Rostov's share in Dolokhov's duel with Bezukhov was hushed up by the +efforts of the old count, and instead of being degraded to the ranks +as he expected he was appointed an adjutant to the governor general of +Moscow. As a result he could not go to the country with the rest of +the family, but was kept all summer in Moscow by his new duties. +Dolokhov recovered, and Rostov became very friendly with him during +his convalescence. Dolokhov lay ill at his mother's who loved him +passionately and tenderly, and old Mary Ivanovna, who had grown fond +of Rostov for his friendship to her Fedya, often talked to him about +her son. + +"Yes, Count," she would say, "he is too noble and pure-souled for +our present, depraved world. No one now loves virtue; it seems like +a reproach to everyone. Now tell me, Count, was it right, was it +honorable, of Bezukhov? And Fedya, with his noble spirit, loved him +and even now never says a word against him. Those pranks in Petersburg +when they played some tricks on a policeman, didn't they do it +together? And there! Bezukhov got off scotfree, while Fedya had to +bear the whole burden on his shoulders. Fancy what he had to go +through! It's true he has been reinstated, but how could they fail +to do that? I think there were not many such gallant sons of the +fatherland out there as he. And now--this duel! Have these people no +feeling, or honor? Knowing him to be an only son, to challenge him and +shoot so straight! It's well God had mercy on us. And what was it for? +Who doesn't have intrigues nowadays? Why, if he was so jealous, as I +see things he should have shown it sooner, but he lets it go on for +months. And then to call him out, reckoning on Fedya not fighting +because he owed him money! What baseness! What meanness! I know you +understand Fedya, my dear count; that, believe me, is why I am so fond +of you. Few people do understand him. He is such a lofty, heavenly +soul!" + +Dolokhov himself during his convalescence spoke to Rostov in a way +no one would have expected of him. + +"I know people consider me a bad man!" he said. "Let them! I don't +care a straw about anyone but those I love; but those I love, I love +so that I would give my life for them, and the others I'd throttle +if they stood in my way. I have an adored, a priceless mother, and two +or three friends--you among them--and as for the rest I only care +about them in so far as they are harmful or useful. And most of them +are harmful, especially the women. Yes, dear boy," he continued, "I +have met loving, noble, high-minded men, but I have not yet met any +women--countesses or cooks--who were not venal. I have not yet met +that divine purity and devotion I look for in women. If I found such a +one I'd give my life for her! But those!..." and he made a gesture of +contempt. "And believe me, if I still value my life it is only because +I still hope to meet such a divine creature, who will regenerate, +purify, and elevate me. But you don't understand it." + +"Oh, yes, I quite understand," answered Rostov, who was under his +new friend's influence. + +In the autumn the Rostovs returned to Moscow. Early in the winter +Denisov also came back and stayed with them. The first half of the +winter of 1806, which Nicholas Rostov spent in Moscow, was one of +the happiest, merriest times for him and the whole family. Nicholas +brought many young men to his parents' house. Vera was a handsome girl +of twenty; Sonya a girl of sixteen with all the charm of an opening +flower; Natasha, half grown up and half child, was now childishly +amusing, now girlishly enchanting. + +At that time in the Rostovs' house there prevailed an amorous +atmosphere characteristic of homes where there are very young and very +charming girls. Every young man who came to the house--seeing those +impressionable, smiling young faces (smiling probably at their own +happiness), feeling the eager bustle around him, and hearing the +fitful bursts of song and music and the inconsequent but friendly +prattle of young girls ready for anything and full of hope- +experienced the same feeling; sharing with the young folk of the +Rostovs' household a readiness to fall in love and an expectation of +happiness. + +Among the young men introduced by Rostov one of the first was +Dolokhov, whom everyone in the house liked except Natasha. She +almost quarreled with her brother about him. She insisted that he +was a bad man, and that in the duel with Bezukhov, Pierre was right +and Dolokhov wrong, and further that he was disagreeable and +unnatural. + +"There's nothing for me to understand," cried out with resolute +self-will, "he is wicked and heartless. There now, I like your Denisov +though he is a rake and all that, still I like him; so you see I do +understand. I don't know how to put it... with this one everything +is calculated, and I don't like that. But Denisov..." + +"Oh, Denisov is quite different," replied Nicholas, implying that +even Denisov was nothing compared to Dolokhov--"you must understand +what a soul there is in Dolokhov, you should see him with his +mother. What a heart!" + +"Well, I don't know about that, but I am uncomfortable with him. And +do you know he has fallen in love with Sonya?" + +"What nonsense..." + +"I'm certain of it; you'll see." + +Natasha's prediction proved true. Dolokhov, who did not usually care +for the society of ladies, began to come often to the house, and the +question for whose sake he came (though no one spoke of it) was soon +settled. He came because of Sonya. And Sonya, though she would never +have dared to say so, knew it and blushed scarlet every time +Dolokhov appeared. + +Dolokhov often dined at the Rostovs', never missed a performance +at which they were present, and went to Iogel's balls for young people +which the Rostovs always attended. He was pointedly attentive to Sonya +and looked at her in such a way that not only could she not bear his +glances without coloring, but even the old countess and Natasha +blushed when they saw his looks. + +It was evident that this strange, strong man was under the +irresistible influence of the dark, graceful girl who loved another. + +Rostov noticed something new in Dolokhov's relations with Sonya, but +he did not explain to himself what these new relations were. +"They're always in love with someone," he thought of Sonya and +Natasha. But he was not as much at ease with Sonya and Dolokhov as +before and was less frequently at home. + +In the autumn of 1806 everybody had again begun talking of the war +with Napoleon with even greater warmth than the year before. Orders +were given to raise recruits, ten men in every thousand for the +regular army, and besides this, nine men in every thousand for the +militia. Everywhere Bonaparte was anathematized and in Moscow +nothing but the coming war was talked of. For the Rostov family the +whole interest of these preparations for war lay in the fact that +Nicholas would not hear of remaining in Moscow, and only awaited the +termination of Denisov's furlough after Christmas to return with him +to their regiment. His approaching departure did not prevent his +amusing himself, but rather gave zest to his pleasures. He spent the +greater part of his time away from home, at dinners, parties, and +balls. + + + + + +CHAPTER XI + + +On the third day after Christmas Nicholas dined at home, a thing +he had rarely done of late. It was a grand farewell dinner, as he +and Denisov were leaving to join their regiment after Epiphany. +About twenty people were present, including Dolokhov and Denisov. + +Never had love been so much in the air, and never had the amorous +atmosphere made itself so strongly felt in the Rostovs' house as at +this holiday time. "Seize the moments of happiness, love and be loved! +That is the only reality in the world, all else is folly. It is the +one thing we are interested in here," said the spirit of the place. + +Nicholas, having as usual exhausted two pairs of horses, without +visiting all the places he meant to go to and where he had been +invited, returned home just before dinner. As soon as he entered he +noticed and felt the tension of the amorous air in the house, and also +noticed a curious embarrassment among some of those present. Sonya, +Dolokhov, and the old countess were especially disturbed, and to a +lesser degree Natasha. Nicholas understood that something must have +happened between Sonya and Dolokhov before dinner, and with the kindly +sensitiveness natural to him was very gentle and wary with them both +at dinner. On that same evening there was to be one of the balls +that Iogel (the dancing master) gave for his pupils durings the +holidays. + +"Nicholas, will you come to Iogel's? Please do!" said Natasha. "He +asked you, and Vasili Dmitrich* is also going." + + +*Denisov. + + +"Where would I not go at the countess' command!" said Denisov, who +at the Rostovs' had jocularly assumed the role of Natasha's knight. +"I'm even weady to dance the pas de chale." + +"If I have time," answered Nicholas. "But I promised the +Arkharovs; they have a party." + +"And you?" he asked Dolokhov, but as soon as he had asked the +question he noticed that it should not have been put. + +"Perhaps," coldly and angrily replied Dolokhov, glancing at Sonya, +and, scowling, he gave Nicholas just such a look as he had given +Pierre at the Club dinner. + +"There is something up," thought Nicholas, and he was further +confirmed in this conclusion by the fact that Dolokhov left +immediately after dinner. He called Natasha and asked her what was the +matter. + +"And I was looking for you," said Natasha running out to him. "I +told you, but you would not believe it," she said triumphantly. "He +has proposed to Sonya!" + +Little as Nicholas had occupied himself with Sonya of late, +something seemed to give way within him at this news. Dolokhov was a +suitable and in some respects a brilliant match for the dowerless, +orphan girl. From the point of view of the old countess and of society +it was out of the question for her to refuse him. And therefore +Nicholas' first feeling on hearing the news was one of anger with +Sonya.... He tried to say, "That's capital; of course she'll forget +her childish promises and accept the offer," but before he had time to +say it Natasha began again. + +"And fancy! she refused him quite definitely!" adding, after a +pause, "she told him she loved another." + +"Yes, my Sonya could not have done otherwise!" thought Nicholas. + +"Much as Mamma pressed her, she refused, and I know she won't change +once she has said..." + +"And Mamma pressed her!" said Nicholas reproachfully. + +"Yes," said Natasha. "Do you know, Nicholas--don't be angry--but I +know you will not marry her. I know, heaven knows how, but I know +for certain that you won't marry her." + +"Now don't know that at all!" said Nicholas. "But I must talk to +her. What a darling Sonya is!" he added with a smile. + +"Ah, she is indeed a darling! I'll send her to you." + +And Natasha kissed her brother and ran away. + +A minute later Sonya came in with a frightened, guilty, and scared +look. Nicholas went up to her and kissed her hand. This was the +first time since his return that they had talked alone and about their +love. + +"Sophie," he began, timidly at first and then more and more +boldly, "if you wish to refuse one who is not only a brilliant and +advantageous match but a splendid, noble fellow... he is my friend..." + +Sonya interrupted him. + +"I have already refused," she said hurriedly. + +"If you are refusing for my sake, I am afraid that I..." + +Sonya again interrupted. She gave him an imploring, frightened look. + +"Nicholas, don't tell me that!" she said. + +"No, but I must. It may be arrogant of me, but still it is best to +say it. If you refuse him on my account, I must tell you the whole +truth. I love you, and I think I love you more than anyone else...." + +"That is enough for me," said Sonya, blushing. + +"No, but I have been in love a thousand times and shall fall in love +again, though for no one have I such a feeling of friendship, +confidence, and love as I have for you. Then I am young. Mamma does +not wish it. In a word, I make no promise. And I beg you to consider +Dolokhov's offer," he said, articulating his friend's name with +difficulty. + +"Don't say that to me! I want nothing. I love you as a brother and +always shall, and I want nothing more." + +"You are an angel: I am not worthy of you, but I am afraid of +misleading you." + +And Nicholas again kissed her hand. + + + + + +CHAPTER XII + + +Iogel's were the most enjoyable balls in Moscow. So said the mothers +as they watched their young people executing their newly learned +steps, and so said the youths and maidens themselves as they danced +till they were ready to drop, and so said the grown-up young men and +women who came to these balls with an air of condescension and found +them most enjoyable. That year two marriages had come of these +balls. The two pretty young Princesses Gorchakov met suitors there and +were married and so further increased the fame of these dances. What +distinguished them from others was the absence of host or hostess +and the presence of the good-natured Iogel, flying about like a +feather and bowing according to the rules of his art, as he +collected the tickets from all his visitors. There was the fact that +only those came who wished to dance and amuse themselves as girls of +thirteen and fourteen do who are wearing long dresses for the first +time. With scarcely any exceptions they all were, or seemed to be, +pretty--so rapturous were their smiles and so sparkling their eyes. +Sometimes the best of the pupils, of whom Natasha, who was +exceptionally graceful, was first, even danced the pas de chale, but +at this last ball only the ecossaise, the anglaise, and the mazurka, +which was just coming into fashion, were danced. Iogel had taken a +ballroom in Bezukhov's house, and the ball, as everyone said, was a +great success. There were many pretty girls and the Rostov girls +were among the prettiest. They were both particularly happy and gay. +That evening, proud of Dolokhov's proposal, her refusal, and her +explanation with Nicholas, Sonya twirled about before she left home so +that the maid could hardly get her hair plaited, and she was +transparently radiant with impulsive joy. + +Natasha no less proud of her first long dress and of being at a real +ball was even happier. They were both dressed in white muslin with +pink ribbons. + +Natasha fell in love the very moment she entered the ballroom. She +was not in love with anyone in particular, but with everyone. Whatever +person she happened to look at she was in love with for that moment. + +"Oh, how delightful it is!" she kept saying, running up to Sonya. + +Nicholas and Denisov were walking up and down, looking with kindly +patronage at the dancers. + +"How sweet she is--she will be a weal beauty!" said Denisov. + +"Who?" + +"Countess Natasha," answered Denisov. + +"And how she dances! What gwace!" he said again after a pause. + +"Who are you talking about?" + +"About your sister," ejaculated Denisov testily. + +Rostov smiled. + +"My dear count, you were one of my best pupils--you must dance," +said little Iogel coming up to Nicholas. "Look how many charming young +ladies-" He turned with the same request to Denisov who was also a +former pupil of his. + +"No, my dear fellow, I'll be a wallflower," said Denisov. "Don't you +wecollect what bad use I made of your lessons?" + +"Oh no!" said Iogel, hastening to reassure him. "You were only +inattentive, but you had talent--oh yes, you had talent!" + + The band struck up the newly introduced mazurka. Nicholas could not +refuse Iogel and asked Sonya to dance. Denisov sat down by the old +ladies and, leaning on his saber and beating time with his foot, +told them something funny and kept them amused, while he watched the +young people dancing, Iogel with Natasha, his pride and his best +pupil, were the first couple. Noiselessly, skillfully stepping with +his little feet in low shoes, Iogel flew first across the hall with +Natasha, who, though shy, went on carefully executing her steps. +Denisov did not take his eyes off her and beat time with his saber +in a way that clearly indicated that if he was not dancing it was +because he would not and not because he could not. In the middle of +a figure he beckoned to Rostov who was passing: + +"This is not at all the thing," he said. "What sort of Polish +mazuwka is this? But she does dance splendidly." + +Knowing that Denisov had a reputation even in Poland for the +masterly way in which he danced the mazurka, Nicholas ran up to +Natasha: + +"Go and choose Denisov. He is a real dancer, a wonder!" he said. + +When it came to Natasha's turn to choose a partner, she rose and, +tripping rapidly across in her little shoes trimmed with bows, ran +timidly to the corner where Denisov sat. She saw that everybody was +looking at her and waiting. Nicholas saw that Denisov was refusing +though he smiled delightedly. He ran up to them. + +"Please, Vasili Dmitrich," Natasha was saying, "do come!" + +"Oh no, let me off, Countess," Denisov replied. + +"Now then, Vaska," said Nicholas. + +"They coax me as if I were Vaska the cat!" said Denisov jokingly. + +"I'll sing for you a whole evening," said Natasha. + +"Oh, the faiwy! She can do anything with me!" said Denisov, and he +unhooked his saber. He came out from behind the chairs, clasped his +partner's hand firmly, threw back his head, and advanced his foot, +waiting for the beat. Only on horse back and in the mazurka was +Denisov's short stature not noticeable and he looked the fine fellow +he felt himself to be. At the right beat of the music he looked +sideways at his partner with a merry and triumphant air, suddenly +stamped with one foot, bounded from the floor like a ball, and flew +round the room taking his partner with him. He glided silently on +one foot half across the room, and seeming not to notice the chairs +was dashing straight at them, when suddenly, clinking his spurs and +spreading out his legs, he stopped short on his heels, stood so a +second, stamped on the spot clanking his spurs, whirled rapidly round, +and, striking his left heel against his right, flew round again in a +circle. Natasha guessed what he meant to do, and abandoning herself to +him followed his lead hardly knowing how. First he spun her round, +holding her now with his left, now with his right hand, then falling +on one knee he twirled her round him, and again jumping up, dashed +so impetuously forward that it seemed as if he would rush through +the whole suite of rooms without drawing breath, and then he +suddenly stopped and performed some new and unexpected steps. When +at last, smartly whirling his partner round in front of her chair, +he drew up with a click of his spurs and bowed to her, Natasha did not +even make him a curtsy. She fixed her eyes on him in amazement, +smiling as if she did not recognize him. + +"What does this mean?" she brought out. + +Although Iogel did not acknowledge this to be the real mazurka, +everyone was delighted with Denisov's skill, he was asked again and +again as a partner, and the old men began smilingly to talk about +Poland and the good old days. Denisov, flushed after the mazurka and +mopping himself with his handkerchief, sat down by Natasha and did not +leave her for the rest of the evening. + + + + + +CHAPTER XIII + + +For two days after that Rostov did not see Dolokhov at his own or at +Dolokhov's home: on the third day he received a note from him: + + +As I do not intend to be at your house again for reasons you know +of, and am going to rejoin my regiment, I am giving a farewell +supper tonight to my friends--come to the English Hotel. + + +About ten o'clock Rostov went to the English Hotel straight from the +theater, where he had been with his family and Denisov. He was at once +shown to the best room, which Dolokhov had taken for that evening. +Some twenty men were gathered round a table at which Dolokhov sat +between two candles. On the table was a pile of gold and paper +money, and he was keeping the bank. Rostov had not seen him since +his proposal and Sonya's refusal and felt uncomfortable at the thought +of how they would meet. + +Dolokhov's clear, cold glance met Rostov as soon as he entered the +door, as though he had long expected him. + +"It's a long time since we met," he said. "Thanks for coming. I'll +just finish dealing, and then Ilyushka will come with his chorus." + +"I called once or twice at your house," said Rostov, reddening. + +Dolokhov made no reply. + +"You may punt," he said. + +Rostov recalled at that moment a strange conversation he had once +had with Dolokhov. "None but fools trust to luck in play," Dolokhov +had then said. + +"Or are you afraid to play with me?" Dolokhov now asked as if +guessing Rostov's thought. + +Beneath his smile Rostov saw in him the mood he had shown at the +Club dinner and at other times, when as if tired of everyday life he +had felt a need to escape from it by some strange, and usually +cruel, action. + +Rostov felt ill at ease. He tried, but failed, to find some joke +with which to reply to Dolokhov's words. But before he had thought +of anything, Dolokhov, looking straight in his face, said slowly and +deliberately so that everyone could hear: + +"Do you remember we had a talk about cards... 'He's a fool who +trusts to luck, one should make certain,' and I want to try." + +"To try his luck or the certainty?" Rostov asked himself. + +"Well, you'd better not play," Dolokhov added, and springing a new +pack of cards said: "Bank, gentlemen!" + +Moving the money forward he prepared to deal. Rostov sat down by his +side and at first did not play. Dolokhov kept glancing at him. + +"Why don't you play?" he asked. + +And strange to say Nicholas felt that he could not help taking up +a card, putting a small stake on it, and beginning to play. + +"I have no money with me," he said. + +"I'll trust you." + +Rostov staked five rubles on a card and lost, staked again, and +again lost. Dolokhov "killed," that is, beat, ten cards of Rostov's +running. + +"Gentlemen," said Dolokhov after he had dealt for some time. "Please +place your money on the cards or I may get muddled in the reckoning." + +One of the players said he hoped he might be trusted. + +"Yes, you might, but I am afraid of getting the accounts mixed. So I +ask you to put the money on your cards," replied Dolokhov. "Don't +stint yourself, we'll settle afterwards," he added, turning to Rostov. + +The game continued; a waiter kept handing round champagne. + +All Rostov's cards were beaten and he had eight hundred rubles +scored up against him. He wrote "800 rubles" on a card, but while +the waiter filled his glass he changed his mind and altered it to +his usual stake of twenty rubles. + +"Leave it," said Dolokhov, though he did not seem to be even looking +at Rostov, "you'll win it back all the sooner. I lose to the others +but win from you. Or are you afraid of me?" he asked again. + +Rostov submitted. He let the eight hundred remain and laid down a +seven of hearts with a torn corner, which he had picked up from the +floor. He well remembered that seven afterwards. He laid down the +seven of hearts, on which with a broken bit of chalk he had written +"800 rubles" in clear upright figures; he emptied the glass of warm +champagne that was handed him, smiled at Dolokhov's words, and with +a sinking heart, waiting for a seven to turn up, gazed at Dolokhov's +hands which held the pack. Much depended on Rostov's winning or losing +on that seven of hearts. On the previous Sunday the old count had +given his son two thousand rubles, and though he always disliked +speaking of money difficulties had told Nicholas that this was all +he could let him have till May, and asked him to be more economical +this time. Nicholas had replied that it would be more than enough +for him and that he gave his word of honor not to take anything more +till the spring. Now only twelve hundred rubles was left of that +money, so that this seven of hearts meant for him not only the loss of +sixteen hundred rubles, but the necessity of going back on his word. +With a sinking heart he watched Dolokhov's hands and thought, "Now +then, make haste and let me have this card and I'll take my cap and +drive home to supper with Denisov, Natasha, and Sonya, and will +certainly never touch a card again." At that moment his home life, +jokes with Petya, talks with Sonya, duets with Natasha, piquet with +his father, and even his comfortable bed in the house on the +Povarskaya rose before him with such vividness, clearness, and charm +that it seemed as if it were all a lost and unappreciated bliss, +long past. He could not conceive that a stupid chance, letting the +seven be dealt to the right rather than to the left, might deprive him +of all this happiness, newly appreciated and newly illumined, and +plunge him into the depths of unknown and undefined misery. That could +not be, yet he awaited with a sinking heart the movement of Dolokhov's +hands. Those broad, reddish hands, with hairy wrists visible from +under the shirt cuffs, laid down the pack and took up a glass and a +pipe that were handed him. + +"So you are not afraid to play with me?" repeated Dolokhov, and as +if about to tell a good story he put down the cards, leaned back in +his chair, and began deliberately with a smile: + +"Yes, gentlemen, I've been told there's a rumor going about Moscow +that I'm a sharper, so I advise you to be careful." + +"Come now, deal!" exclaimed Rostov. + +"Oh, those Moscow gossips!" said Dolokhov, and he took up the +cards with a smile. + +"Aah!" Rostov almost screamed lifting both hands to his head. The +seven he needed was lying uppermost, the first card in the pack. He +had lost more than he could pay. + +"Still, don't ruin yourself!" said Dolokhov with a side glance at +Rostov as he continued to deal. + + + + + +CHAPTER XIV + + +An hour and a half later most of the players were but little +interested in their own play. + +The whole interest was concentrated on Rostov. Instead of sixteen +hundred rubles he had a long column of figures scored against him, +which he had reckoned up to ten thousand, but that now, as he +vaguely supposed, must have risen to fifteen thousand. In reality it +already exceeded twenty thousand rubles. Dolokhov was no longer +listening to stories or telling them, but followed every movement of +Rostov's hands and occasionally ran his eyes over the score against +him. He had decided to play until that score reached forty-three +thousand. He had fixed on that number because forty-three was the +sum of his and Sonya's joint ages. Rostov, leaning his head on both +hands, sat at the table which was scrawled over with figures, wet with +spilled wine, and littered with cards. One tormenting impression did +not leave him: that those broad-boned reddish hands with hairy +wrists visible from under the shirt sleeves, those hands which he +loved and hated, held him in their power. + +"Six hundred rubles, ace, a corner, a nine... winning it back's +impossible... Oh, how pleasant it was at home!... The knave, double or +quits... it can't be!... And why is he doing this to me?" Rostov +pondered. Sometimes he staked a large sum, but Dolokhov refused to +accept it and fixed the stake himself. Nicholas submitted to him, +and at one moment prayed to God as he had done on the battlefield at +the bridge over the Enns, and then guessed that the card that came +first to hand from the crumpled heap under the table would save him, +now counted the cords on his coat and took a card with that number and +tried staking the total of his losses on it, then he looked round +for aid from the other players, or peered at the now cold face of +Dolokhov and tried to read what was passing in his mind. + +"He knows of course what this loss means to me. He can't want my +ruin. Wasn't he my friend? Wasn't I fond of him? But it's not his +fault. What's he to do if he has such luck?... And it's not my fault +either," he thought to himself, "I have done nothing wrong. Have I +killed anyone, or insulted or wished harm to anyone? Why such a +terrible misfortune? And when did it begin? Such a little while ago +I came to this table with the thought of winning a hundred rubles to +buy that casket for Mamma's name day and then going home. I was so +happy, so free, so lighthearted! And I did not realize how happy I +was! When did that end and when did this new, terrible state of things +begin? What marked the change? I sat all the time in this same place +at this table, chose and placed cards, and watched those broad-boned +agile hands in the same way. When did it happen and what has happened? +I am well and strong and still the same and in the same place. No, +it can't be! Surely it will all end in nothing!" + +He was flushed and bathed in perspiration, though the room was not +hot. His face was terrible and piteous to see, especially from its +helpless efforts to seem calm. + +The score against him reached the fateful sum of forty-three +thousand. Rostov had just prepared a card, by bending the corner of +which he meant to double the three thousand just put down to his +score, when Dolokhov, slamming down the pack of cards, put it aside +and began rapidly adding up the total of Rostov's debt, breaking the +chalk as he marked the figures in his clear, bold hand. + +"Supper, it's time for supper! And here are the gypsies!" + +Some swarthy men and women were really entering from the cold +outside and saying something in their gypsy accents. Nicholas +understood that it was all over; but he said in an indifferent tone: + +"Well, won't you go on? I had a splendid card all ready," as if it +were the fun of the game which interested him most. + +"It's all up! I'm lost!" thought he. "Now a bullet through my brain- +that's all that's left me!" And at the same time he said in a +cheerful voice: + +"Come now, just this one more little card!" + +"All right!" said Dolokhov, having finished the addition. "All +right! Twenty-one rubles," he said, pointing to the figure +twenty-one by which the total exceeded the round sum of forty-three +thousand; and taking up a pack he prepared to deal. Rostov +submissively unbent the corner of his card and, instead of the six +thousand he had intended, carefully wrote twenty-one. + +"It's all the same to me," he said. "I only want to see whether +you will let me win this ten, or beat it." + +Dolokhov began to deal seriously. Oh, how Rostov detested at that +moment those hands with their short reddish fingers and hairy +wrists, which held him in their power.... The ten fell to him. + +"You owe forty-three thousand, Count," said Dolokhov, and stretching +himself he rose from the table. "One does get tired sitting so +long," he added. + +"Yes, I'm tired too," said Rostov. + +Dolokhov cut him short, as if to remind him that it was not for +him to jest. + +"When am I to receive the money, Count?" + +Rostov, flushing, drew Dolokhov into the next room. + +"I cannot pay it all immediately. Will you take an I.O.U.?" he said. + +"I say, Rostov," said Dolokhov clearly, smiling and looking Nicholas +straight in the eyes, "you know the saying, 'Lucky in love, unlucky at +cards.' Your cousin is in love with you, I know." + +"Oh, it's terrible to feel oneself so in this man's power," +thought Rostov. He knew what a shock he would inflict on his father +and mother by the news of this loss, he knew what a relief it would be +to escape it all, and felt that Dolokhov knew that he could save him +from all this shame and sorrow, but wanted now to play with him as a +cat does with a mouse. + +"Your cousin..." Dolokhov started to say, but Nicholas interrupted +him. + +"My cousin has nothing to do with this and it's not necessary to +mention her!" he exclaimed fiercely. + +"Then when am I to have it?" + +"Tomorrow," replied Rostov and left the room. + + + + + +CHAPTER XV + + +To say "tomorrow" and keep up a dignified tone was not difficult, +but to go home alone, see his sisters, brother, mother, and father, +confess and ask for money he had no right to after giving his word +of honor, was terrible. + +At home, they had not yet gone to bed. The young people, after +returning from the theater, had had supper and were grouped round +the clavichord. As soon as Nicholas entered, he was enfolded in that +poetic atmosphere of love which pervaded the Rostov household that +winter and, now after Dolokhov's proposal and Iogel's ball, seemed +to have grown thicker round Sonya and Natasha as the air does before a +thunderstorm. Sonya and Natasha, in the light-blue dresses they had +worn at the theater, looking pretty and conscious of it, were standing +by the clavichord, happy and smiling. Vera was playing chess with +Shinshin in the drawing room. The old countess, waiting for the return +of her husband and son, sat playing patience with the old +gentlewoman who lived in their house. Denisov, with sparkling eyes and +ruffled hair, sat at the clavichord striking chords with his short +fingers, his legs thrown back and his eyes rolling as he sang, with +his small, husky, but true voice, some verses called "Enchantress," +which he had composed, and to which he was trying to fit music: + + Enchantress, say, to my forsaken lyre + What magic power is this recalls me still? + What spark has set my inmost soul on fire, + What is this bliss that makes my fingers thrill? + +He was singing in passionate tones, gazing with his +sparkling black-agate eyes at the frightened and happy Natasha. + +"Splendid! Excellent!" exclaimed Natasha. "Another verse," she +said, without noticing Nicholas. + +"Everything's still the same with them," thought Nicholas, +glancing into the drawing room, where he saw Vera and his mother +with the old lady. + +"Ah, and here's Nicholas!" cried Natasha, running up to him. + +"Is Papa at home?" he asked. + +"I am so glad you've come!" said Natasha, without answering him. "We +are enjoying ourselves! Vasili Dmitrich is staying a day longer for my +sake! Did you know?" + +"No, Papa is not back yet," said Sonya. + +"Nicholas, have you come? Come here, dear!" called the old +countess from the drawing room. + +Nicholas went to her, kissed her hand, and sitting down silently +at her table began to watch her hands arranging the cards. From the +dancing room, they still heard the laughter and merry voices trying to +persuade Natasha to sing. + +"All wight! All wight!" shouted Denisov. "It's no good making +excuses now! It's your turn to sing the ba'cawolla--I entweat you!" + +The countess glanced at her silent son. + +"What is the matter?" she asked. + +"Oh, nothing," said he, as if weary of being continually asked the +same question. "Will Papa be back soon?" + +"I expect so." + +"Everything's the same with them. They know nothing about it! +Where am I to go?" thought Nicholas, and went again into the dancing +room where the clavichord stood. + +Sonya was sitting at the clavichord, playing the prelude to +Denisov's favorite barcarolle. Natasha was preparing to sing. +Denisov was looking at her with enraptured eyes. + +Nicholas began pacing up and down the room. + +"Why do they want to make her sing? How can she sing? There's +nothing to be happy about!" thought he. + +Sonya struck the first chord of the prelude. + +"My God, I'm a ruined and dishonored man! A bullet through my +brain is the only thing left me--not singing!" his thoughts ran on. +"Go away? But where to? It's one--let them sing!" + +He continued to pace the room, looking gloomily at Denisov and the +girls and avoiding their eyes. + +"Nikolenka, what is the matter?" Sonya's eyes fixed on him seemed to +ask. She noticed at once that something had happened to him. + +Nicholas turned away from her. Natasha too, with her quick instinct, +had instantly noticed her brother's condition. But, though she noticed +it, she was herself in such high spirits at that moment, so far from +sorrow, sadness, or self-reproach, that she purposely deceived herself +as young people often do. "No, I am too happy now to spoil my +enjoyment by sympathy with anyone's sorrow," she felt, and she said to +herself: "No, I must be mistaken, he must be feeling happy, just as +I am." + +"Now, Sonya!" she said, going to the very middle of the room, +where she considered the resonance was best. + +Having lifted her head and let her arms droop lifelessly, as +ballet dancers do, Natasha, rising energetically from her heels to her +toes, stepped to the middle of the room and stood still. + +"Yes, that's me!" she seemed to say, answering the rapt gaze with +which Denisov followed her. + +"And what is she so pleased about?" thought Nicholas, looking at his +sister. "Why isn't she dull and ashamed?" + +Natasha took the first note, her throat swelled, her chest rose, her +eyes became serious. At that moment she was oblivious of her +surroundings, and from her smiling lips flowed sounds which anyone may +produce at the same intervals hold for the same time, but which +leave you cold a thousand times and the thousand and first time thrill +you and make you weep. + +Natasha, that winter, had for the first time begun to sing +seriously, mainly because Denisov so delighted in her singing. She +no longer sang as a child, there was no longer in her singing that +comical, childish, painstaking effect that had been in it before; +but she did not yet sing well, as all the connoisseurs who heard her +said: "It is not trained, but it is a beautiful voice that must be +trained." Only they generally said this some time after she had +finished singing. While that untrained voice, with its incorrect +breathing and labored transitions, was sounding, even the connoisseurs +said nothing, but only delighted in it and wished to hear it again. In +her voice there was a virginal freshness, an unconsciousness of her +own powers, and an as yet untrained velvety softness, which so mingled +with her lack of art in singing that it seemed as if nothing in that +voice could be altered without spoiling it. + +"What is this?" thought Nicholas, listening to her with widely +opened eyes. "What has happened to her? How she is singing today!" And +suddenly the whole world centered for him on anticipation of the +next note, the next phrase, and everything in the world was divided +into three beats: "Oh mio crudele affetto."... One, two, three... one, +two, three... One... "Oh mio crudele affetto."... One, two, three... +One. "Oh, this senseless life of ours!" thought Nicholas. "All this +misery, and money, and Dolokhov, and anger, and honor--it's all +nonsense... but this is real.... Now then, Natasha, now then, dearest! +Now then, darling! How will she take that si? She's taken it! Thank +God!" And without noticing that he was singing, to strengthen the si +he sung a second, a third below the high note. "Ah, God! How fine! Did +I really take it? How fortunate!" he thought. + +Oh, how that chord vibrated, and how moved was something that was +finest in Rostov's soul! And this something was apart from +everything else in the world and above everything in the world. +"What were losses, and Dolokhov, and words of honor?... All +nonsense! One might kill and rob and yet be happy..." + + + + + +CHAPTER XVI + + +It was long since Rostov had felt such enjoyment from music as he +did that day. But no sooner had Natasha finished her barcarolle than +reality again presented itself. He got up without saying a word and +went downstairs to his own room. A quarter of an hour later the old +count came in from his Club, cheerful and contented. Nicholas, hearing +him drive up, went to meet him. + +"Well--had a good time?" said the old count, smiling gaily and +proudly at his son. + +Nicholas tried to say "Yes," but could not: and he nearly burst into +sobs. The count was lighting his pipe and did not notice his son's +condition. + +"Ah, it can't be avoided!" thought Nicholas, for the first and +last time. And suddenly, in the most casual tone, which made him +feel ashamed of himself, he said, as if merely asking his +father to let him have the carriage to drive to town: + +"Papa, I have come on a matter of business. I was nearly forgetting. +I need some money." + +"Dear me!" said his father, who was in a specially good humor. "I +told you it would not be enough. How much?" + +"Very much," said Nicholas flushing, and with a stupid careless +smile, for which he was long unable to forgive himself, "I have lost a +little, I mean a good deal, a great deal--forty three thousand." + +"What! To whom?... Nonsense!" cried the count, suddenly reddening +with an apoplectic flush over neck and nape as old people do. + +"I promised to pay tomorrow," said Nicholas. + +"Well!..." said the old count, spreading out his arms and sinking +helplessly on the sofa. + +"It can't be helped It happens to everyone!" said the son, with a +bold, free, and easy tone, while in his soul he regarded himself as +a worthless scoundrel whose whole life could not atone for his +crime. He longed to kiss his father's hands and kneel to beg his +forgiveness, but said, in a careless and even rude voice, that it +happens to everyone! + +The old count cast down his eyes on hearing his son's words and +began bustlingly searching for something. + +"Yes, yes," he muttered, "it will be difficult, I fear, difficult to +raise... happens to everybody! Yes, who has not done it?" + +And with a furtive glance at his son's face, the count went out of +the room.... Nicholas had been prepared for resistance, but had not at +all expected this. + +"Papa! Pa-pa!" he called after him, sobbing, "forgive me!" And +seizing his father's hand, he pressed it to his lips and burst into +tears. + +While father and son were having their explanation, the mother and +daughter were having one not less important. Natasha came running to +her mother, quite excited. + +"Mamma!... Mamma!... He has made me..." + +"Made what?" + +"Made, made me an offer, Mamma! Mamma!" she exclaimed. + +The countess did not believe her ears. Denisov had proposed. To +whom? To this chit of a girl, Natasha, who not so long ago was playing +with dolls and who was still having lessons. + +"Don't, Natasha! What nonsense!" she said, hoping it was a joke. + +"Nonsense, indeed! I am telling you the fact," said Natasha +indignantly. "I come to ask you what to do, and you call it +'nonsense!'" + +The countess shrugged her shoulders. + +"If it true that Monsieur Denisov has made you a proposal, tell +him he is a fool, that's all!" + +"No, he's not a fool!" replied Natasha indignantly and seriously. + +"Well then, what do you want? You're all in love nowadays. Well, +if you are in love, marry him!" said the countess, with a laugh of +annoyance. "Good luck to you!" + +"No, Mamma, I'm not in love with him, I suppose I'm not in love with +him." + +"Well then, tell him so." + +"Mamma, are you cross? Don't be cross, dear! Is it my fault?" + +"No, but what is it, my dear? Do you want me to go and tell him?" +said the countess smiling. + +"No, I will do it myself, only tell me what to say. It's all very +well for you," said Natasha, with a responsive smile. "You should have +seen how he said it! I know he did not mean to say it, but it came out +accidently." + +"Well, all the same, you must refuse him." + +"No, I mustn't. I am so sorry for him! He's so nice." + +"Well then, accept his offer. It's high time for you to be married," +answered the countess sharply and sarcastically. + +"No, Mamma, but I'm so sorry for him. I don't know how I'm to say +it." + +"And there's nothing for you to say. I shall speak to him myself," +said the countess, indignant that they should have dared to treat this +little Natasha as grown up. + +"No, not on any account! I will tell him myself, and you'll listen +at the door," and Natasha ran across the drawing room to the dancing +hall, where Denisov was sitting on the same chair by the clavichord +with his face in his hands. + +He jumped up at the sound of her light step. + +"Nataly," he said, moving with rapid steps toward her, "decide my +fate. It is in your hands." + +"Vasili Dmitrich, I'm so sorry for you!... No, but you are so +nice... but it won't do...not that... but as a friend, I shall +always love you." + +Denisov bent over her hand and she heard strange sounds she did +not understand. She kissed his rough curly black head. At this +instant, they heard the quick rustle of the countess' dress. She +came up to them. + +"Vasili Dmitrich, I thank you for the honor," she said, with an +embarrassed voice, though it sounded severe to Denisov--"but my +daughter is so young, and I thought that, as my son's friend, you +would have addressed yourself first to me. In that case you would +not have obliged me to give this refusal." + +"Countess..." said Denisov, with downcast eyes and a guilty face. He +tried to say more, but faltered. + +Natasha could not remain calm, seeing him in such a plight. She +began to sob aloud. + +"Countess, I have done w'ong," Denisov went on in an unsteady voice, +"but believe me, I so adore your daughter and all your family that I +would give my life twice over..." He looked at the countess, and +seeing her severe face said: "Well, good-by, Countess," and kissing +her hand, he left the room with quick resolute strides, without +looking at Natasha. + + +Next day Rostov saw Denisov off. He not wish to stay another day +in Moscow. All Denisov's Moscow friends gave him a farewell +entertainment at the gypsies', with the result that he had no +recollection of how he was put in the sleigh or of the first three +stages of his journey. + +After Denisov's departure, Rostov spent another fortnight in Moscow, +without going out of the house, waiting for the money his father could +not at once raise, and he spent most of his time in the girls' room. + +Sonya was more tender and devoted to him than ever. It was as if she +wanted to show him that his losses were an achievement that made her +love him all the more, but Nicholas now considered himself unworthy of +her. + +He filled the girls' albums with verses and music, and having at +last sent Dolokhov the whole forty-three thousand rubles and +received his receipt, he left at the end of November, without taking +leave of any of his acquaintances, to overtake his regiment which +was already in Poland. + + + + + +BOOK FIVE: 1806 --07 + + + + + +CHAPTER I + + +After his interview with his wife Pierre left for Petersburg. At the +Torzhok post station, either there were no horses or the postmaster +would not supply them. Pierre was obliged to wait. Without undressing, +he lay down on the leather sofa in front of a round table, put his big +feet in their overboots on the table, and began to reflect. + +"Will you have the portmanteaus brought in? And a bed got ready, and +tea?" asked his valet. + +Pierre gave no answer, for he neither heard nor saw anything. He had +begun to think of the last station and was still pondering on the same +question--one so important that he took no notice of what went on +around him. Not only was he indifferent as to whether he got to +Petersburg earlier or later, or whether he secured accommodation at +this station, but compared to the thoughts that now occupied him it +was a matter of indifference whether he remained there for a few hours +or for the rest of his life. + +The postmaster, his wife, the valet, and a peasant woman selling +Torzhok embroidery came into the room offering their services. Without +changing his careless attitude, Pierre looked at them over his +spectacles unable to understand what they wanted or how they could +go on living without having solved the problems that so absorbed +him. He had been engrossed by the same thoughts ever since the day +he returned from Sokolniki after the duel and had spent that first +agonizing, sleepless night. But now, in the solitude of the journey, +they seized him with special force. No matter what he thought about, +he always returned to these same questions which he could not solve +and yet could not cease to ask himself. It was as if the thread of the +chief screw which held his life together were stripped, so that the +screw could not get in or out, but went on turning uselessly in the +same place. + +The postmaster came in and began obsequiously to beg his +excellency to wait only two hours, when, come what might, he would let +his excellency have the courier horses. It was plain that he was lying +and only wanted to get more money from the traveler. + +"Is this good or bad?" Pierre asked himself. "It is good for me, bad +for another traveler, and for himself it's unavoidable, because he +needs money for food; the man said an officer had once given him a +thrashing for letting a private traveler have the courier horses. +But the officer thrashed him because he had to get on as quickly as +possible. And I," continued Pierre, "shot Dolokhov because I +considered myself injured, and Louis XVI was executed because they +considered him a criminal, and a year later they executed those who +executed him--also for some reason. What is bad? What is good? What +should one love and what hate? What does one live for? And what am +I? What is life, and what is death? What power governs all?" + +There was no answer to any of these questions, except one, and +that not a logical answer and not at all a reply to them. The answer +was: "You'll die and all will end. You'll die and know all, or cease +asking." But dying was also dreadful. + +The Torzhok peddler woman, in a whining voice, went on offering +her wares, especially a pair of goatskin slippers. "I have hundreds of +rubles I don't know what to do with, and she stands in her tattered +cloak looking timidly at me," he thought. "And what does she want +the money for? As if that money could add a hair's breadth to +happiness or peace of mind. Can anything in the world make her or me +less a prey to evil and death?--death which ends all and must come +today or tomorrow--at any rate, in an instant as compared with +eternity." And again he twisted the screw with the stripped thread, +and again it turned uselessly in the same place. + +His servant handed him a half-cut novel, in the form of letters, +by Madame de Souza. He began reading about the sufferings and virtuous +struggles of a certain Emilie de Mansfeld. "And why did she resist her +seducer when she loved him?" he thought. "God could not have put +into her heart an impulse that was against His will. My wife--as she +once was--did not struggle, and perhaps she was right. Nothing has +been found out, nothing discovered," Pierre again said to himself. +"All we can know is that we know nothing. And that's the height of +human wisdom." + +Everything within and around him seemed confused, senseless, and +repellent. Yet in this very repugnance to all his circumstances Pierre +found a kind of tantalizing satisfaction. + +"I make bold to ask your excellency to move a little for this +gentleman," said the postmaster, entering the room followed by another +traveler, also detained for lack of horses. + +The newcomer was a short, large-boned, yellow-faced, wrinkled old +man, with gray bushy eyebrows overhanging bright eyes of an indefinite +grayish color. + +Pierre took his feet off the table, stood up, and lay down on a +bed that had been got ready for him, glancing now and then at the +newcomer, who, with a gloomy and tired face, was wearily taking off +his wraps with the aid of his servant, and not looking at Pierre. With +a pair of felt boots on his thin bony legs, and keeping on a worn, +nankeen-covered, sheepskin coat, the traveler sat down on the sofa, +leaned back his big head with its broad temples and close-cropped +hair, and looked at Bezukhov. The stern, shrewd, and penetrating +expression of that look struck Pierre. He felt a wish to speak to +the stranger, but by the time he had made up his mind to ask him a +question about the roads, the traveler had closed his eyes. His +shriveled old hands were folded and on the finger of one of them +Pierre noticed a large cast iron ring with a seal representing a +death's head. The stranger sat without stirring, either resting or, as +it seemed to Pierre, sunk in profound and calm meditation. His servant +was also a yellow, wrinkled old man, without beard or mustache, +evidently not because he was shaven but because they had never +grown. This active old servant was unpacking the traveler's canteen +and preparing tea. He brought in a boiling samovar. When everything +was ready, the stranger opened his eyes, moved to the table, filled +a tumbler with tea for himself and one for the beardless old man to +whom he passed it. Pierre began to feel a sense of uneasiness, and the +need, even the inevitability, of entering into conversation with +this stranger. + +The servant brought back his tumbler turned upside down,* with an +unfinished bit of nibbled sugar, and asked if anything more would be +wanted. + + +*To indicate he did not want more tea. + + +"No. Give me the book," said the stranger. + +The servant handed him a book which Pierre took to be a devotional +work, and the traveler became absorbed in it. Pierre looked at him. +All at once the stranger closed the book, putting in a marker, and +again, leaning with his arms on the back of the sofa, sat in his +former position with his eyes shut. Pierre looked at him and had not +time to turn away when the old man, opening his eyes, fixed his steady +and severe gaze straight on Pierre's face. + +Pierre felt confused and wished to avoid that look, but the bright +old eyes attracted him irresistibly. + + + + + +CHAPTER II + + +"I have the pleasure of addressing Count Bezukhov, if I am not +mistaken," said the stranger in a deliberate and loud voice. + +Pierre looked silently and inquiringly at him over his spectacles. + +"I have heard of you, my dear sir," continued the stranger, "and +of your misfortune." He seemed to emphasize the last word, as if to +say--"Yes, misfortune! Call it what you please, I know that what +happened to you in Moscow was a misfortune."--"I regret it very +much, my dear sir." + +Pierre flushed and, hurriedly putting his legs down from the bed, +bent forward toward the old man with a forced and timid smile. + +"I have not referred to this out of curiosity, my dear sir, but +for greater reasons." + +He paused, his gaze still on Pierre, and moved aside on the sofa +by way of inviting the other to take a seat beside him. Pierre felt +reluctant to enter into conversation with this old man, but, +submitting to him involuntarily, came up and sat down beside him. + +"You are unhappy, my dear sir," the stranger continued. "You are +young and I am old. I should like to help you as far as lies in my +power." + +"Oh, yes!" said Pierre, with a forced smile. "I am very grateful +to you. Where are you traveling from?" + +The stranger's face was not genial, it was even cold and severe, but +in spite of this, both the face and words of his new acquaintance were +irresistibly attractive to Pierre. + +"But if for reason you don't feel inclined to talk to me," said +the old man, "say so, my dear sir." And he suddenly smiled, in an +unexpected and tenderly paternal way. + +"Oh no, not at all! On the contrary, I am very glad to make your +acquaintance," said Pierre. And again, glancing at the stranger's +hands, he looked more closely at the ring, with its skull--a Masonic +sign. + +"Allow me to ask," he said, "are you a Mason?" + +"Yes, I belong to the Brotherhood of the Freemasons," said the +stranger, looking deeper and deeper into Pierre's eyes. "And in +their name and my own I hold out a brotherly hand to you." + +"I am afraid," said Pierre, smiling, and wavering between the +confidence the personality of the Freemason inspired in him and his +own habit of ridiculing the Masonic beliefs--"I am afraid I am very +far from understanding--how am I to put it?--I am afraid my way of +looking at the world is so opposed to yours that we shall not +understand one another." + +"I know your outlook," said the Mason, "and the view of life you +mention, and which you think is the result of your own mental efforts, +is the one held by the majority of people, and is the invariable fruit +of pride, indolence, and ignorance. Forgive me, my dear sir, but if +I had not known it I should not have addressed you. Your view of +life is a regrettable delusion." + +"Just as I may suppose you to be deluded," said Pierre, with a faint +smile. + +"I should never dare to say that I know the truth," said the +Mason, whose words struck Pierre more and more by their precision +and firmness. "No one can attain to truth by himself. Only by laying +stone on stone with the cooperation of all, by the millions of +generations from our forefather Adam to our own times, is that +temple reared which is to be a worthy dwelling place of the Great +God," he added, and closed his eyes. + +"I ought to tell you that I do not believe... do not believe in God," +said Pierre, regretfully and with an effort, feeling it essential to +speak the whole truth. + +The Mason looked intently at Pierre and smiled as a rich man with +millions in hand might smile at a poor fellow who told him that he, +poor man, had not the five rubles that would make him happy. + +"Yes, you do not know Him, my dear sir," said the Mason. "You cannot +know Him. You do not know Him and that is why you are unhappy." + +"Yes, yes, I am unhappy," assented Pierre. "But what am I to do?" + +"You know Him not, my dear sir, and so you are very unhappy. You +do not know Him, but He is here, He is in me, He is in my words, He +is in thee, and even in those blasphemous words thou hast just +uttered!" pronounced the Mason in a stern and tremulous voice. + +He paused and sighed, evidently trying to calm himself. + +"If He were not," he said quietly, "you and I would not be +speaking of Him, my dear sir. Of what, of whom, are we speaking? +Whom hast thou denied?" he suddenly asked with exulting austerity +and authority in his voice. "Who invented Him, if He did not exist? +Whence came thy conception of the existence of such an +incomprehensible Being? didst thou, and why did the whole world, +conceive the idea of the existence of such an incomprehensible +Being, a Being all-powerful, eternal, and infinite in all His +attributes?..." + +He stopped and remained silent for a long time. + +Pierre could not and did not wish to break this silence. + +"He exists, but to understand Him is hard," the Mason began again, +looking not at Pierre but straight before him, and turning the +leaves of his book with his old hands which from excitement he could +not keep still. "If it were a man whose existence thou didst doubt I +could bring him to thee, could take him by the hand and show him to +thee. But how can I, an insignificant mortal, show His omnipotence, +His infinity, and all His mercy to one who is blind, or who shuts +his eyes that he may not see or understand Him and may not see or +understand his own vileness and sinfulness?" He paused again. "Who art +thou? Thou dreamest that thou art wise because thou couldst utter +those blasphemous words," he went on, with a somber and scornful +smile. "And thou art more foolish and unreasonable than a little +child, who, playing with the parts of a skillfully made watch, dares +to say that, as he does not understand its use, he does not believe in +the master who made it. To know Him is hard.... For ages, from our +forefather Adam to our own day, we labor to attain that knowledge +and are still infinitely far from our aim; but in our lack of +understanding we see only our weakness and His greatness...." + +Pierre listened with swelling heart, gazing into the Mason's face +with shining eyes, not interrupting or questioning him, but +believing with his whole soul what the stranger said. Whether he +accepted the wise reasoning contained in the Mason's words, or +believed as a child believes, in the speaker's tone of conviction +and earnestness, or the tremor of the speaker's voice--which sometimes +almost broke--or those brilliant aged eyes grown old in this +conviction, or the calm firmness and certainty of his vocation, +which radiated from his whole being (and which struck Pierre +especially by contrast with his own dejection and hopelessness)--at +any rate, Pierre longed with his whole soul to believe and he did +believe, and felt a joyful sense of comfort, regeneration, and +return to life. + +"He is not to be apprehended by reason, but by life," said the +Mason. + +"I do not understand," said Pierre, feeling with dismay doubts +reawakening. He was afraid of any want of clearness, any weakness, +in the Mason's arguments; he dreaded not to be able to believe in him. +"I don't understand," he said, "how it is that the mind of man +cannot attain the knowledge of which you speak." + +The Mason smiled with his gentle fatherly smile. + +"The highest wisdom and truth are like the purest liquid we may wish +to imbibe," he said. "Can I receive that pure liquid into an impure +vessel and judge of its purity? Only by the inner purification of +myself can I retain in some degree of purity the liquid I receive." + +"Yes, yes, that is so," said Pierre joyfully. + +"The highest wisdom is not founded on reason alone, not on those +worldly sciences of physics, history, chemistry, and the like, into +which intellectual knowledge is divided. The highest wisdom is one. +The highest wisdom has but one science--the science of the whole- +the science explaining the whole creation and man's place in it. To +receive that science it is necessary to purify and renew one's inner +self, and so before one can know, it is necessary to believe and to +perfect one's self. And to attain this end, we have the light called +conscience that God has implanted in our souls." + +"Yes, yes," assented Pierre. + +"Look then at thy inner self with the eyes of the spirit, and ask +thyself whether thou art content with thyself. What hast thou attained +relying on reason only? What art thou? You are young, you are rich, +you are clever, you are well educated. And what have you done with all +these good gifts? Are you content with yourself and with your life?" + +"No, I hate my life," Pierre muttered, wincing. + +"Thou hatest it. Then change it, purify thyself; and as thou art +purified, thou wilt gain wisdom. Look at your life, my dear sir. How +have you spent it? In riotous orgies and debauchery, receiving +everything from society and giving nothing in return. You have +become the possessor of wealth. How have you used it? What have you +done for your neighbor? Have you ever thought of your tens of +thousands of slaves? Have you helped them physically and morally? +No! You have profited by their toil to lead a profligate life. That is +what you have done. Have you chosen a post in which you might be of +service to your neighbor? No! You have spent your life in idleness. +Then you married, my dear sir--took on yourself responsibility for the +guidance of a young woman; and what have you done? You have not helped +her to find the way of truth, my dear sir, but have thrust her into an +abyss of deceit and misery. A man offended you and you shot him, and +you say you do not know God and hate your life. There is nothing +strange in that, my dear sir!" + +After these words, the Mason, as if tired by his long discourse, +again leaned his arms on the back of the sofa and closed his eyes. +Pierre looked at that aged, stern, motionless, almost lifeless face +and moved his lips without uttering a sound. He wished to say, "Yes, a +vile, idle, vicious life!" but dared not break the silence. + +The Mason cleared his throat huskily, as old men do, and called +his servant. + +"How about the horses?" he asked, without looking at Pierre. + +"The exchange horses have just come," answered the servant. "Will +you not rest here?" + +"No, tell them to harness." + +"Can he really be going away leaving me alone without having told me +all, and without promising to help me?" thought Pierre, rising with +downcast head; and he began to pace the room, glancing occasionally at +the Mason. "Yes, I never thought of it, but I have led a +contemptible and profligate life, though I did not like it and did not +want to," thought Pierre. "But this man knows the truth and, if he +wished to, could disclose it to me." + +Pierre wished to say this to the Mason, but did not dare to. The +traveler, having packed his things with his practiced hands, began +fastening his coat. When he had finished, he turned to Bezukhov, and +said in a tone of indifferent politeness: + +"Where are you going to now, my dear sir?" + +"I?... I'm going to Petersburg," answered Pierre, in a childlike, +hesitating voice. "I thank you. I agree with all you have said. But do +not suppose me to be so bad. With my whole soul I wish to be what +you would have me be, but I have never had help from anyone.... But it +is I, above all, who am to blame for everything. Help me, teach me, +and perhaps I may..." + +Pierre could not go on. He gulped and turned away. + +The Mason remained silent for a long time, evidently considering. + +"Help comes from God alone," he said, "but such measure of help as +our Order can bestow it will render you, my dear sir. You are going to +Petersburg. Hand this to Count Willarski" (he took out his notebook +and wrote a few words on a large sheet of paper folded in four). +"Allow me to give you a piece of advice. When you reach the capital, +first of all devote some time to solitude and self-examination and +do not resume your former way of life. And now I wish you a good +journey, my dear sir," he added, seeing that his servant had +entered... "and success." + +The traveler was Joseph Alexeevich Bazdeev, as Pierre saw from the +postmaster's book. Bazdeev had been one of the best-known Freemasons +and Martinists, even in Novikov's time. For a long while after he +had gone, Pierre did not go to bed or order horses but paced up and +down the room, pondering over his vicious past, and with a rapturous +sense of beginning anew pictured to himself the blissful, +irreproachable, virtuous future that seemed to him so easy. It +seemed to him that he had been vicious only because he had somehow +forgotten how good it is to be virtuous. Not a trace of his former +doubts remained in his soul. He firmly believed in the possibility +of the brotherhood of men united in the aim of supporting one +another in the path of virtue, and that is how Freemasonry presented +itself to him. + + + + + +CHAPTER III + + +On reaching Petersburg Pierre did not let anyone know of his +arrival, he went nowhere and spent whole days in reading Thomas a +Kempis, whose book had been sent him by someone unknown. One thing +he continually realized as he read that book: the joy, hitherto +unknown to him, of believing in the possibility of attaining +perfection, and in the possibility of active brotherly love among men, +which Joseph Alexeevich had revealed to him. A week after his arrival, +the young Polish count, Willarski, whom Pierre had known slightly in +Petersburg society, came into his room one evening in the official and +ceremonious manner in which Dolokhov's second had called on him, +and, having closed the door behind him and satisfied himself that +there was nobody else in the room, addressed Pierre. + +"I have come to you with a message and an offer, Count," he said +without sitting down. "A person of very high standing in our +Brotherhood has made application for you to be received into our Order +before the usual term and has proposed to me to be your sponsor. I +consider it a sacred duty to fulfill that person's wishes. Do you wish +to enter the Brotherhood of Freemasons under my sponsorship?" + + The cold, austere tone of this man, whom he had almost always +before met at balls, amiably smiling in the society of the most +brilliant women, surprised Pierre. + +"Yes, I do wish it," said he. + +Willarski bowed his head. + +"One more question, Count," he said, "which beg you to answer in all +sincerity--not as a future Mason but as an honest man: have you +renounced your former convictions--do you believe in God?" + +Pierre considered. + +"Yes... yes, I believe in God," he said. + +"In that case..." began Willarski, but Pierre interrupted him. + +"Yes, I do believe in God," he repeated. + +"In that case we can go," said Willarski. "My carriage is at your +service." + +Willarski was silent throughout the drive. To Pierre's inquiries +as to what he must do and how he should answer, Willarski only replied +that brothers more worthy than he would test him and that Pierre had +only to tell the truth. + +Having entered the courtyard of a large house where the Lodge had +its headquarters, and having ascended a dark staircase, they entered a +small well-lit anteroom where they took off their cloaks without the +aid of a servant. From there they passed into another room. A man in +strange attire appeared at the door. Willarski, stepping toward him, +said something to him in French in an undertone and then went up to +a small wardrobe in which Pierre noticed garments such as he had never +seen before. Having taken a kerchief from the cupboard, Willarski +bound Pierre's eyes with it and tied it in a knot behind, catching +some hairs painfully in the knot. Then he drew his face down, kissed +him, and taking him by the hand led him forward. The hairs tied in the +knot hurt Pierre and there were lines of pain on his face and a +shamefaced smile. His huge figure, with arms hanging down and with a +puckered, though smiling face, moved after Willarski with uncertain, +timid steps. + +Having led him about ten paces, Willarski stopped. + +"Whatever happens to you," he said, "you must bear it all manfully +if you have firmly resolved to join our Brotherhood." (Pierre nodded +affirmatively.) "When you hear a knock at the door, you will uncover +your eyes," added Willarski. "I wish you courage and success," and, +pressing Pierre's hand, he went out. + +Left alone, Pierre went on smiling in the same way. Once or twice he +shrugged his and raised his hand to the kerchief, as if wishing to +take it off, but let it drop again. The five minutes spent with his +eyes bandaged seemed to him an hour. His arms felt numb, his legs +almost gave way, it seemed to him that he was tired out. He +experienced a variety of most complex sensations. He felt afraid of +what would happen to him and still more afraid of showing his fear. He +felt curious to know what was going to happen and what would be +revealed to him; but most of all, he felt joyful that the moment had +come when he would at last start on that path of regeneration and on +the actively virtuous life of which he had been dreaming since he +met Joseph Alexeevich. Loud knocks were heard at the door. Pierre took +the bandage off his eyes and glanced around him. The room was in black +darkness, only a small lamp was burning inside something white. Pierre +went nearer and saw that the lamp stood on a black table on which +lay an open book. The book was the Gospel, and the white thing with +the lamp inside was a human skull with its cavities and teeth. After +reading the first words of the Gospel: "In the beginning was the +Word and the Word was with God," Pierre went round the table and saw a +large open box filled with something. It was a coffin with bones +inside. He was not at all surprised by what he saw. Hoping to enter on +an entirely new life quite unlike the old one, he expected +everything to be unusual, even more unusual than what he was seeing. A +skull, a coffin, the Gospel--it seemed to him that he had expected all +this and even more. Trying to stimulate his emotions he looked around. +"God, death, love, the brotherhood of man," he kept saying to himself, +associating these words with vague yet joyful ideas. The door opened +and someone came in. + +By the dim light, to which Pierre had already become accustomed, +he saw rather short man. Having evidently come from the light into the +darkness, the man paused, then moved with cautious steps toward the +table and placed on it his small leather-gloved hands. + +This short man had on a white leather apron which covered his +chest and part of his legs; he had on a kind of necklace above which +rose a high white ruffle, outlining his rather long face which was lit +up from below. + +"For what have you come hither?" asked the newcomer, turning in +Pierre's direction at a slight rustle made by the latter. "Why have +you, who do not believe in the truth of the light and who have not +seen the light, come here? What do you seek from us? Wisdom, virtue, +enlightenment?" + +At the moment the door opened and the stranger came in, Pierre +felt a sense of awe and veneration such as he had experienced in his +boyhood at confession; he felt himself in the presence of one socially +a complete stranger, yet nearer to him through the brotherhood of man. +With bated breath and beating heart he moved toward the Rhetor (by +which name the brother who prepared a seeker for entrance into the +Brotherhood was known). Drawing nearer, he recognized in the Rhetor +a man he knew, Smolyaninov, and it mortified him to think that the +newcomer was an acquaintance--he wished him simply a brother and a +virtuous instructor. For a long time he could not utter a word, so +that the Rhetor had to repeat his question. + +"Yes... I... I... desire regeneration," Pierre uttered with +difficulty. + +"Very well," said Smolyaninov, and went on at once: "Have you any +idea of the means by which our holy Order will help you to reach +your aim?" said he quietly and quickly. + +"I... hope... for guidance... help... in regeneration," said Pierre, +with a trembling voice and some difficulty in utterance due to his +excitement and to being unaccustomed to speak of abstract matters in +Russian. + +"What is your conception of Freemasonry?" + +"I imagine that Freemasonry is the fraternity and equality of men +who have virtuous aims," said Pierre, feeling ashamed of the +inadequacy of his words for the solemnity of the moment, as he +spoke. "I imagine..." + +"Good!" said the Rhetor quickly, apparently satisfied with this +answer. "Have you sought for means of attaining your aim in religion?" + +"No, I considered it erroneous and did not follow it," said +Pierre, so softly that the Rhetor did not hear him and asked him +what he was saying. "I have been an atheist," answered Pierre. + +"You are seeking for truth in order to follow its laws in your life, +therefore you seek wisdom and virtue. Is that not so?" said the +Rhetor, after a moment's pause. + +"Yes, yes," assented Pierre. + +The Rhetor cleared his throat, crossed his gloved hands on his +breast, and began to speak. + +"Now I must disclose to you the chief aim of our Order," he said, +"and if this aim coincides with yours, you may enter our Brotherhood +with profit. The first and chief object of our Order, the foundation +on which it rests and which no human power can destroy, is the +preservation and handing on to posterity of a certain important +mystery... which has come down to us from the remotest ages, even from +the first man--a mystery on which perhaps the fate of mankind depends. +But since this mystery is of such a nature that nobody can know or use +it unless he be prepared by long and diligent self-purification, not +everyone can hope to attain it quickly. Hence we have a secondary aim, +that of preparing our members as much as possible to reform their +hearts, to purify and enlighten their minds, by means handed on to +us by tradition from those who have striven to attain this mystery, +and thereby to render them capable of receiving it. + +"By purifying and regenerating our members we try, thirdly, to +improve the whole human race, offering it in our members an example of +piety and virtue, and thereby try with all our might to combat the +evil which sways the world. Think this over and I will come to you +again." + +"To combat the evil which sways the world..." Pierre repeated, and a +mental image of his future activity in this direction rose in his +mind. He imagined men such as he had himself been a fortnight ago, and +he addressed an edifying exhortation to them. He imagined to himself +vicious and unfortunate people whom he would assist by word and +deed, imagined oppressors whose victims he would rescue. Of the +three objects mentioned by the Rhetor, this last, that of improving +mankind, especially appealed to Pierre. The important mystery +mentioned by the Rhetor, though it aroused his curiosity, did not seem +to him essential, and the second aim, that of purifying and +regenerating himself, did not much interest him because at that moment +he felt with delight that he was already perfectly cured of his former +faults and was ready for all that was good. + +Half an hour later, the Rhetor returned to inform the seeker of +the seven virtues, corresponding to the seven steps of Solomon's +temple, which every Freemason should cultivate in himself. These +virtues were: 1. Discretion, the keeping of the secrets of the Order. + 2. Obedience to those of higher ranks in the Order. 3. Morality. 4. +Love of mankind. 5. Courage. 6. Generosity. 7. The love of death. + +"In the seventh place, try, by the frequent thought of death," the +Rhetor said, "to bring yourself to regard it not as a dreaded foe, but +as a friend that frees the soul grown weary in the labors of virtue +from this distressful life, and leads it to its place of recompense +and peace." + +"Yes, that must be so," thought Pierre, when after these words the +Rhetor went away, leaving him to solitary meditation. "It must be +so, but I am still so weak that I love my life, the meaning of which +is only now gradually opening before me." But five of the other +virtues which Pierre recalled, counting them on his fingers, he felt +already in his soul: courage, generosity, morality, love of mankind, +and especially obedience--which did not even seem to him a virtue, but +a joy. (He now felt so glad to be free from his own lawlessness and to +submit his will to those who knew the indubitable truth.) He forgot +what the seventh virtue was and could not recall it. + +The third time the Rhetor came back more quickly and asked Pierre +whether he was still firm in his intention and determined to submit to +all that would be required of him. + +"I am ready for everything," said Pierre. + +"I must also inform you," said the Rhetor, "that our Order +delivers its teaching not in words only but also by other means, which +may perhaps have a stronger effect on the sincere seeker after +wisdom and virtue than mere words. This chamber with what you see +therein should already have suggested to your heart, if it is sincere, +more than words could do. You will perhaps also see in your further +initiation a like method of enlightenment. Our Order imitates the +ancient societies that explained their teaching by hieroglyphics. A +hieroglyph," said the Rhetor, "is an emblem of something not +cognizable by the senses but which possesses qualities resembling +those of the symbol." + +Pierre knew very well what a hieroglyph was, but dared not speak. He +listened to the Rhetor in silence, feeling from all he said that his +ordeal was about to begin. + +"If you are resolved, I must begin your initiation," said the Rhetor +coming closer to Pierre. "In token of generosity I ask you to give +me all your valuables." + +"But I have nothing here," replied Pierre, supposing that he was +asked to give up all he possessed. + +"What you have with you: watch, money, rings...." + +Pierre quickly took out his purse and watch, but could not manage +for some time to get the wedding ring off his fat finger. When that +had been done, the Rhetor said: + +"In token of obedience, I ask you to undress." + +Pierre took off his coat, waistcoat, and left boot according to +the Rhetor's instructions. The Mason drew the shirt back from Pierre's +left breast, and stooping down pulled up the left leg of his +trousers to above the knee. Pierre hurriedly began taking off his +right boot also and was going to tuck up the other trouser leg to save +this stranger the trouble, but the Mason told him that was not +necessary and gave him a slipper for his left foot. With a childlike +smile of embarrassment, doubt, and self-derision, which appeared on +his face against his will, Pierre stood with his arms hanging down and +legs apart, before his brother Rhetor, and awaited his further +commands. + +"And now, in token of candor, I ask you to reveal to me your chief +passion," said the latter. + +"My passion! I have had so many," replied Pierre. + +"That passion which more than all others caused you to waver on +the path of virtue," said the Mason. + +Pierre paused, seeking a reply. + +"Wine? Gluttony? Idleness? Laziness? Irritability? Anger? Women?" He +went over his vices in his mind, not knowing to which of them to +give the pre-eminence. + +"Women," he said in a low, scarcely audible voice. + +The Mason did not move and for a long time said nothing after this +answer. At last he moved up to Pierre and, taking the kerchief that +lay on the table, again bound his eyes. + +"For the last time I say to you--turn all your attention upon +yourself, put a bridle on your senses, and seek blessedness, not in +passion but in your own heart. The source of blessedness is not +without us but within...." + +Pierre had already long been feeling in himself that refreshing +source of blessedness which now flooded his heart with glad emotion. + + + + + +CHAPTER IV + + +Soon after this there came into the dark chamber to fetch Pierre, +not the Rhetor but Pierre's sponsor, Willarski, whom he recognized +by his voice. To fresh questions as to the firmness of his +resolution Pierre replied: "Yes, yes, I agree," and with a beaming, +childlike smile, his fat chest uncovered, stepping unevenly and +timidly in one slippered and one booted foot, he advanced, while +Willarski held a sword to his bare chest. He was conducted from that +room along passages that turned backwards and forwards and was at last +brought to the doors of the Lodge. Willarski coughed, he was +answered by the Masonic knock with mallets, the doors opened before +them. A bass voice (Pierre was still blindfold) questioned him as to +who he was, when and where he was born, and so on. Then he was again +led somewhere still blindfold, and as they went along he was told +allegories of the toils of his pilgrimage, of holy friendship, of +the Eternal Architect of the universe, and of the courage with which +he should endure toils and dangers. During these wanderings, Pierre +noticed that he was spoken of now as the "Seeker," now as the +"Sufferer," and now as the "Postulant," to the accompaniment of +various knockings with mallets and swords. As he was being led up to +some object he noticed a hesitation and uncertainty among his +conductors. He heard those around him disputing in whispers and one of +them insisting that he should be led along a certain carpet. After +that they took his right hand, placed it on something, and told him to +hold a pair of compasses to his left breast with the other hand and to +repeat after someone who read aloud an oath of fidelity to the laws of +the Order. The candles were then extinguished and some spirit lighted, +as Pierre knew by the smell, and he was told that he would now see the +lesser light. The bandage was taken off his eyes and, by the faint +light of the burning spirit, Pierre, as in a dream, saw several men +standing before him, wearing aprons like the Rhetor's and holding +swords in their hands pointed at his breast. Among them stood a man +whose white shirt was stained with blood. On seeing this, Pierre moved +forward with his breast toward the swords, meaning them to pierce +it. But the swords were drawn back from him and he was at once +blindfolded again. + +"Now thou hast seen the lesser light," uttered a voice. Then the +candles were relit and he was told that he would see the full light; +the bandage was again removed and more than ten voices said +together: "Sic transit gloria mundi." + +Pierre gradually began to recover himself and looked about at the +room and at the people in it. Round a long table covered with black +sat some twelve men in garments like those he had already seen. Some +of them Pierre had met in Petersburg society. In the President's chair +sat a young man he did not know, with a peculiar cross hanging from +his neck. On his right sat the Italian abbe whom Pierre had met at +Anna Pavlovna's two years before. There were also present a very +distinguished dignitary and a Swiss who had formerly been tutor at the +Kuragins'. All maintained a solemn silence, listening to the words +of the President, who held a mallet in his hand. Let into the wall was +a star-shaped light. At one side of the table was a small carpet +with various figures worked upon it, at the other was something +resembling an altar on which lay a Testament and a skull. Round it +stood seven large candlesticks like those used in churches. Two of the +brothers led Pierre up to the altar, placed his feet at right +angles, and bade him lie down, saying that he must prostrate himself +at the Gates of the Temple. + +"He must first receive the trowel," whispered one of the brothers. + +"Oh, hush, please!" said another. + +Pierre, perplexed, looked round with his shortsighted eyes without +obeying, and suddenly doubts arose in his mind. "Where am I? What am I +doing? Aren't they laughing at me? Shan't I be ashamed to remember +this?" But these doubts only lasted a moment. Pierre glanced at the +serious faces of those around, remembered all he had already gone +through, and realized that he could not stop halfway. He was aghast at +his hesitation and, trying to arouse his former devotional feeling, +prostrated himself before the Gates of the Temple. And really, the +feeling of devotion returned to him even more strongly than before. +When he had lain there some time, he was told to get up, and a white +leather apron, such as the others wore, was put on him: he was given a +trowel and three pairs of gloves, and then the Grand Master +addressed him. He told him that he should try to do nothing to stain +the whiteness of that apron, which symbolized strength and purity; +then of the unexplained trowel, he told him to toil with it to cleanse +his own heart from vice, and indulgently to smooth with it the heart +of his neighbor. As to the first pair of gloves, a man's, he said that +Pierre could not know their meaning but must keep them. The second +pair of man's gloves he was to wear at the meetings, and finally of +the third, a pair of women's gloves, he said: "Dear brother, these +woman's gloves are intended for you too. Give them to the woman whom +you shall honor most of all. This gift will be a pledge of your purity +of heart to her whom you select to be your worthy helpmeet in +Masonry." And after a pause, he added: "But beware, dear brother, that +these gloves do not deck hands that are unclean." While the Grand +Master said these last words it seemed to Pierre that he grew +embarrassed. Pierre himself grew still more confused, blushed like a +child till tears came to his eyes, began looking about him uneasily, +and an awkward pause followed. + +This silence was broken by one of the brethren, who led Pierre up to +the rug and began reading to him from a manuscript book an explanation +of all the figures on it: the sun, the moon, a hammer, a plumb line, a +trowel, a rough stone and a squared stone, a pillar, three windows, +and so on. Then a place was assigned to Pierre, he was shown the signs +of the Lodge, told the password, and at last was permitted to sit +down. The Grand Master began reading the statutes. They were very +long, and Pierre, from joy, agitation, and embarrassment, was not in a +state to understand what was being read. He managed to follow only the +last words of the statutes and these remained in his mind. + +"In our temples we recognize no other distinctions," read the +Grand Master, "but those between virtue and vice. Beware of making any +distinctions which may infringe equality. Fly to a brother's aid +whoever he may be, exhort him who goeth astray, raise him that +falleth, never bear malice or enmity toward thy brother. Be kindly and +courteous. Kindle in all hearts the flame of virtue. Share thy +happiness with thy neighbor, and may envy never dim the purity of that +bliss. Forgive thy enemy, do not avenge thyself except by doing him +good. Thus fulfilling the highest law thou shalt regain traces of +the ancient dignity which thou hast lost." + +He finished and, getting up, embraced and kissed Pierre, who, with +tears of joy in his eyes, looked round him, not knowing how to +answer the congratulations and greetings from acquaintances that met +him on all sides. He acknowledged no acquaintances but saw in all +these men only brothers, and burned with impatience to set to work +with them. + +The Grand Master rapped with his mallet. All the Masons sat down +in their places, and one of them read an exhortation on the +necessity of humility. + +The Grand Master proposed that the last duty should be performed, +and the distinguished dignitary who bore the title of "Collector of +Alms" went round to all the brothers. Pierre would have liked to +subscribe all he had, but fearing that it might look like pride +subscribed the same amount as the others. + +The meeting was at an end, and on reaching home Pierre felt as if he +had returned from a long journey on which he had spent dozens of +years, had become completely changed, and had quite left behind his +former habits and way of life. + + + + + +CHAPTER V + + +The day after he had been received into the Lodge, Pierre was +sitting at home reading a book and trying to fathom the significance +of the Square, one side of which symbolized God, another moral things, +a third physical things, and the fourth a combination of these. Now +and then his attention wandered from the book and the Square and he +formed in imagination a new plan of life. On the previous evening at +the Lodge, he had heard that a rumor of his duel had reached the +Emperor and that it would be wiser for him to leave Petersburg. Pierre +proposed going to his estates in the south and there attending to +the welfare of his serfs. He was joyfully planning this new life, when +Prince Vasili suddenly entered the room. + +"My dear fellow, what have you been up to in Moscow? Why have you +quarreled with Helene, mon cher? You are under a delusion," said +Prince Vasili, as he entered. "I know all about it, and I can tell you +positively that Helene is as innocent before you as Christ was +before the Jews." + +Pierre was about to reply, but Prince Vasili interrupted him. + +"And why didn't you simply come straight to me as to a friend? I +know all about it and understand it all," he said. "You behaved as +becomes a man values his honor, perhaps too hastily, but we won't go +into that. But consider the position in which you are placing her +and me in the eyes of society, and even of the court," he added, +lowering his voice. "She is living in Moscow and you are here. +Remember, dear boy," and he drew Pierre's arm downwards, "it is simply +a misunderstanding. I expect you feel it so yourself. Let us write her +a letter at once, and she'll come here and all will be explained, or +else, my dear boy, let me tell you it's quite likely you'll have to +suffer for it." + +Prince Vasili gave Pierre a significant look. + +"I know from reliable sources that the Dowager Empress is taking a +keen interest in the whole affair. You know she is very gracious to +Helene." + +Pierre tried several times to speak, but, on one hand, Prince Vasili +did not let him and, on the other, Pierre himself feared to begin to +speak in the tone of decided refusal and disagreement in which he +had firmly resolved to answer his father-in-law. Moreover, the words +of the Masonic statutes, "be kindly and courteous," recurred to him. +He blinked, went red, got up and sat down again, struggling with +himself to do what was for him the most difficult thing in life--to +say an unpleasant thing to a man's face, to say what the other, +whoever he might be, did not expect. He was so used to submitting to +Prince Vasili's tone of careless self-assurance that he felt he +would be unable to withstand it now, but he also felt that on what +he said now his future depended--whether he would follow the same +old road, or that new path so attractively shown him by the Masons, on +which he firmly believed he would be reborn to a new life. + +"Now, dear boy," said Prince Vasili playfully, "say 'yes,' and +I'll write to her myself, and we will kill the fatted calf." + +But before Prince Vasili had finished his playful speech, Pierre, +without looking at him, and with a kind of fury that made him like his +father, muttered in a whisper: + +"Prince, I did not ask you here. Go, please go!" And he jumped up +and opened the door for him. + +"Go!" he repeated, amazed at himself and glad to see the look of +confusion and fear that showed itself on Prince Vasili's face. + +"What's the matter with you? Are you ill?" + +"Go!" the quivering voice repeated. And Prince Vasili had to go +without receiving any explanation. + +A week later, Pierre, having taken leave of his new friends, the +Masons, and leaving large sums of money with them for alms, went +away to his estates. His new brethren gave him letters to the Kiev and +Odessa Masons and promised to write to him and guide him in his new +activity. + + + + + +CHAPTER VI + + +The duel between Pierre and Dolokhov was hushed up and, in spite +of the Emperor's severity regarding duels at that time, neither the +principals nor their seconds suffered for it. But the story of the +duel, confirmed by Pierre's rupture with his wife, was the talk of +society. Pierre who had been regarded with patronizing condescension +when he was an illegitimate son, and petted and extolled when he was +the best match in Russia, had sunk greatly in the esteem of society +after his marriage--when the marriageable daughters and their +mothers had nothing to hope from him--especially as he did not know +how, and did not wish, to court society's favor. Now he alone was +blamed for what had happened, he was said to be insanely jealous and +subject like his father to fits of bloodthirsty rage. And when after +Pierre's departure Helene returned to Petersburg, she was received +by all her acquaintances not only cordially, but even with a shade +of deference due to her misfortune. When conversation turned on her +husband Helene assumed a dignified expression, which with +characteristic tact she had acquired though she did not understand its +significance. This expression suggested that she had resolved to +endure her troubles uncomplainingly and that her husband was a cross +laid upon her by God. Prince Vasili expressed his opinion more openly. +He shrugged his shoulders when Pierre was mentioned and, pointing to +his forehead, remarked: + +"A bit touched--I always said so." + +"I said from the first," declared Anna Pavlovna referring to Pierre, +"I said at the time and before anyone else" (she insisted on her +priority) "that that senseless young man was spoiled by the depraved +ideas of these days. I said so even at the time when everybody was +in raptures about him, when he had just returned from abroad, and +when, if you remember, he posed as a sort of Marat at one of my +soirees. And how has it ended? I was against this marriage even then +and foretold all that has happened." + +Anna Pavlovna continued to give on free evenings the same kind of +soirees as before--such as she alone had the gift of arranging--at +which was to be found "the cream of really good society, the bloom +of the intellectual essence of Petersburg," as she herself put it. +Besides this refined selection of society Anna Pavlovna's receptions +were also distinguished by the fact that she always presented some new +and interesting person to the visitors and that nowhere else was the +state of the political thermometer of legitimate Petersburg court +society so dearly and distinctly indicated. + +Toward the end of 1806, when all the sad details of Napoleon's +destruction of the Prussian army at Jena and Auerstadt and the +surrender of most of the Prussian fortresses had been received, when +our troops had already entered Prussia and our second war with +Napoleon was beginning, Anna Pavlovna gave one of her soirees. The +"cream of really good society" consisted of the fascinating Helene, +forsaken by her husband, Mortemart, the delightful Prince Hippolyte +who had just returned from Vienna, two diplomatists, the old aunt, a +young man referred to in that drawing room as "a man of great merit" +(un homme de beaucoup de merite), a newly appointed maid of honor +and her mother, and several other less noteworthy persons. + +The novelty Anna Pavlovna was setting before her guests that evening +was Boris Drubetskoy, who had just arrived as a special messenger from +the Prussian army and was aide-de-camp to a very important personage. + +The temperature shown by the political thermometer to the company +that evening was this: + +"Whatever the European sovereigns and commanders may do to +countenance Bonaparte, and to cause me, and us in general, annoyance +and mortification, our opinion of Bonaparte cannot alter. We shall not +cease to express our sincere views on that subject, and can only say +to the King Prussia and others: 'So much the worse for you. Tu l'as +voulu, George Dandin,' that's all we have to say about it!" + +When Boris, who was to be served up to the guests, entered the +drawing room, almost all the company had assembled, and the +conversation, guided by Anna Pavlovna, was about our diplomatic +relations with Austria and the hope of an alliance with her. + +Boris, grown more manly and looking fresh, rosy and +self-possessed, entered the drawing room elegantly dressed in the +uniform of an aide-de-camp and was duly conducted to pay his +respects to the aunt and then brought back to the general circle. + +Anna Pavlovna gave him her shriveled hand to kiss and introduced him +to several persons whom he did not know, giving him a whispered +description of each. + +"Prince Hippolyte Kuragin, M. Krug, the charge d'affaires from +Copenhagen--a profound intellect," and simply, "Mr. Shitov--a +man of great merit"--this of the man usually so described. + +Thanks to Anna Mikhaylovna's efforts, his own tastes, and the +peculiarities of his reserved nature, Boris had managed during his +service to place himself very advantageously. He was aide-de-camp to a +very important personage, had been sent on a very important mission to +Prussia, and had just returned from there as a special messenger. He +had become thoroughly conversant with that unwritten code with which +he had been so pleased at Olmutz and according to which an ensign +might rank incomparably higher than a general, and according to +which what was needed for success in the service was not effort or +work, or courage, or perseverance, but only the knowledge of how to +get on with those who can grant rewards, and he was himself often +surprised at the rapidity of his success and at the inability of +others to understand these things. In consequence of this discovery +his whole manner of life, all his relations with old friends, all +his plans for his future, were completely altered. He was not rich, +but would spend his last groat to be better dressed than others, and +would rather deprive himself of many pleasures than allow himself to +be seen in a shabby equipage or appear in the streets of Petersburg in +an old uniform. He made friends with and sought the acquaintance of +only those above him in position and who could therefore be of use +to him. He liked Petersburg and despised Moscow. The remembrance of +the Rostovs' house and of his childish love for Natasha was unpleasant +to him and he had not once been to see the Rostovs since the day of +his departure for the army. To be in Anna Pavlovna's drawing room he +considered an important step up in the service, and he at once +understood his role, letting his hostess make use of whatever interest +he had to offer. He himself carefully scanned each face, appraising +the possibilities of establishing intimacy with each of those present, +and the advantages that might accrue. He took the seat indicated to +him beside the fair Helene and listened to the general conversation. + +"Vienna considers the bases of the proposed treaty so unattainable +that not even a continuity of most brilliant successes would secure +them, and she doubts the means we have of gaining them. That is the +actual phrase used by the Vienna cabinet," said the Danish charge +d'affaires. + +"The doubt is flattering," said "the man of profound intellect," +with a subtle smile. + +"We must distinguish between the Vienna cabinet and the Emperor of +Austria," said Mortemart. "The Emperor of Austria can never have +thought of such a thing, it is only the cabinet that says it." + +"Ah, my dear vicomte," put in Anna Pavlovna, "L'Urope" (for some +reason she called it Urope as if that were a specially refined +French pronunciation which she could allow herself when conversing +with a Frenchman), "L'Urope ne sera jamais notre alliee sincere."* + + +*"Europe will never be our sincere ally." + + +After that Anna Pavlovna led up to the courage and firmness of the +King of Prussia, in order to draw Boris into the conversation. + +Boris listened attentively to each of the speakers, awaiting his +turn, but managed meanwhile to look round repeatedly at his +neighbor, the beautiful Helene, whose eyes several times met those +of the handsome young aide-de-camp with a smile. + +Speaking of the position of Prussia, Anna Pavlovna very naturally +asked Boris to tell them about his journey to Glogau and in what state +he found the Prussian army. Boris, speaking with deliberation, told +them in pure, correct French many interesting details about the armies +and the court, carefully abstaining from expressing an opinion of +his own about the facts he was recounting. For some time he +engrossed the general attention, and Anna Pavlovna felt that the +novelty she had served up was received with pleasure by all her +visitors. The greatest attention of all to Boris' narrative was +shown by Helene. She asked him several questions about his journey and +seemed greatly interested in the state of the Prussian army. As soon +as he had finished she turned to him with her usual smile. + +"You absolutely must come and see me," she said in a tone that +implied that, for certain considerations he could not know of, this +was absolutely necessary. + +"On Tuesday between eight and nine. It will give me great pleasure." + +Boris promised to fulfill her wish and was about to begin a +conversation with her, when Anna Pavlovna called him away on the +pretext that her aunt wished to hear him. + +"You know her husband, of course?" said Anna Pavlovna, closing her +eyes and indicating Helene with a sorrowful gesture. "Ah, she is +such an unfortunate and charming woman! Don't mention him before +her--please don't! It is too painful for her!" + + + + + +CHAPTER VII + + +When Boris and Anna Pavlovna returned to the others Prince Hippolyte +had the ear of the company. + +Bending forward in his armchair he said: "Le Roi de Prusse!" and +having said this laughed. Everyone turned toward him. + +"Le Roi de Prusse?" Hippolyte said interrogatively, again +laughing, and then calmly and seriously sat back in his chair. Anna +Pavlovna waited for him to go on, but as he seemed quite decided to +say no more she began to tell of how at Potsdam the impious +Bonaparte had stolen the sword of Frederick the Great. + +"It is the sword of Frederick the Great which I..." she began, but +Hippolyte interrupted her with the words: "Le Roi de Prusse..." and +again, as soon as all turned toward him, excused himself and +said no more. + +Anna Pavlovna frowned. Mortemart, Hippolyte's friend, addressed +him firmly. + +"Come now, what about your Roi de Prusse?" + +Hippolyte laughed as if ashamed of laughing. + +"Oh, it's nothing. I only wished to say..." (he wanted to repeat a +joke he had heard in Vienna and which he had been trying all that +evening to get in) "I only wished to say that we are wrong to fight +pour le Roi de Prusse!" + +Boris smiled circumspectly, so that it might be taken as ironical or +appreciative according to the way the joke was received. Everybody +laughed. + +"Your joke is too bad, it's witty but unjust," said Anna Pavlovna, +shaking her little shriveled finger at him. + +"We are not fighting pour le Roi de Prusse, but for right +principles. Oh, that wicked Prince Hippolyte!" she said. + +The conversation did not flag all evening and turned chiefly on +the political news. It became particularly animated toward the end +of the evening when the rewards bestowed by the Emperor were +mentioned. + +"You know N--N--received a snuffbox with the portrait last year?" +said "the man of profound intellect." "Why shouldn't S--S--get the +same distinction?" + +"Pardon me! A snuffbox with the Emperor's portrait is a reward but +not a distinction," said the diplomatist--"a gift, rather." + +"There are precedents, I may mention Schwarzenberg." + +"It's impossible," replied another. + +"Will you bet? The ribbon of the order is a different matter...." + +When everybody rose to go, Helene who had spoken very little all the +evening again turned to Boris, asking him in a tone of caressing +significant command to come to her on Tuesday. + +"It is of great importance to me," she said, turning with a smile +toward Anna Pavlovna, and Anna Pavlovna, with the same sad smile +with which she spoke of her exalted patroness, supported Helene's +wish. + +It seemed as if from some words Boris had spoken that evening +about the Prussian army, Helene had suddenly found it necessary to see +him. She seemed to promise to explain that necessity to him when he +came on Tuesday. + +But on Tuesday evening, having come to Helene's splendid salon, +Boris received no clear explanation of why it had been necessary for +him to come. There were other guests and the countess talked little to +him, and only as he kissed her hand on taking leave said +unexpectedly and in a whisper, with a strangely unsmiling face: +"Come to dinner tomorrow... in the evening. You must come.... Come!" + +During that stay in Petersburg, Boris became an intimate in the +countess' house. + + + + + +CHAPTER VIII + + +The war was flaming up and nearing the Russian frontier. +Everywhere one heard curses on Bonaparte, "the enemy of mankind." +Militiamen and recruits were being enrolled in the villages, and +from the seat of war came contradictory news, false as usual and +therefore variously interpreted. The life of old Prince Bolkonski, +Prince Andrew, and Princess Mary had greatly changed since 1805. + +In 1806 the old prince was made one of the eight commanders in chief +then appointed to supervise the enrollment decreed throughout +Russia. Despite the weakness of age, which had become particularly +noticeable since the time when he thought his son had been killed, +he did not think it right to refuse a duty to which he had been +appointed by the Emperor himself, and this fresh opportunity for +action gave him new energy and strength. He was continually +traveling through the three provinces entrusted to him, was pedantic +in the fulfillment of his duties, severe to cruelty with his +subordinates, and went into everything down to the minutest details +himself. Princess Mary had ceased taking lessons in mathematics from +her father, and when the old prince was at home went to his study with +the wet nurse and little Prince Nicholas (as his grandfather called +him). The baby Prince Nicholas lived with his wet nurse and nurse +Savishna in the late princess' rooms and Princess Mary spent most of +the day in the nursery, taking a mother's place to her little nephew +as best she could. Mademoiselle Bourienne, too, seemed passionately +fond of the boy, and Princess Mary often deprived herself to give +her friend the pleasure of dandling the little angel--as she called +her nephew--and playing with him. + +Near the altar of the church at Bald Hills there was a chapel over +the tomb of the little princess, and in this chapel was a marble +monument brought from Italy, representing an angel with outspread +wings ready to fly upwards. The angel's upper lip was slightly +raised as though about to smile, and once on coming out of the +chapel Prince Andrew and Princess Mary admitted to one another that +the angel's face reminded them strangely of the little princess. But +what was still stranger, though of this Prince Andrew said nothing +to his sister, was that in the expression the sculptor had happened to +give the angel's face, Prince Andrew read the same mild reproach he +had read on the face of his dead wife: "Ah, why have you done this +to me?" + +Soon after Prince Andrew's return the old prince made over to him +a large estate, Bogucharovo, about twenty-five miles from Bald +Hills. Partly because of the depressing memories associated with +Bald Hills, partly because Prince Andrew did not always feel equal +to bearing with his father's peculiarities, and partly because he +needed solitude, Prince Andrew made use of Bogucharovo, began building +and spent most of his time there. + +After the Austerlitz campaign Prince Andrew had firmly resolved +not to continue his military service, and when the war recommenced and +everybody had to serve, he took a post under his father in the +recruitment so as to avoid active service. The old prince and his +son seemed to have changed roles since the campaign of 1805. The old +man, roused by activity, expected the best results from the new +campaign, while Prince Andrew on the contrary, taking no part in the +war and secretly regretting this, saw only the dark side. + +On February 26, 1807, the old prince set off on one of his circuits. +Prince Andrew remained at Bald Hills as usual during his father's +absence. Little Nicholas had been unwell for four days. The coachman +who had driven the old prince to town returned bringing papers and +letters for Prince Andrew. + +Not finding the young prince in his study the valet went with the +letters to Princess Mary's apartments, but did not find him there. +He was told that the prince had gone to the nursery. + +"If you please, your excellency, Petrusha has brought some +papers," said one of the nursemaids to Prince Andrew who was sitting +on a child's little chair while, frowning and with trembling hands, he +poured drops from a medicine bottle into a wineglass half full of +water. + +"What is it?" he said crossly, and, his hand shaking +unintentionally, he poured too many drops into the glass. He threw the +mixture onto the floor and asked for some more water. The maid brought +it. + +There were in the room a child's cot, two boxes, two armchairs, a +table, a child's table, and the little chair on which Prince Andrew +was sitting. The curtains were drawn, and a single candle was +burning on the table, screened by a bound music book so that the light +did not fall on the cot. + +"My dear," said Princess Mary, addressing her brother from beside +the cot where she was standing, "better wait a bit... later..." + +"Oh, leave off, you always talk nonsense and keep putting things +off--and this is what comes of it!" said Prince Andrew in an +exasperated whisper, evidently meaning to wound his sister. + +"My dear, really... it's better not to wake him... he's asleep," +said the princess in a tone of entreaty. + +Prince Andrew got up and went on tiptoe up to the little bed, +wineglass in hand. + +"Perhaps we'd really better not wake him," he said hesitating. + +"As you please... really... I think so... but as you please," said +Princess Mary, evidently intimidated and confused that her opinion had +prevailed. She drew her brother's attention to the maid who was +calling him in a whisper. + +It was the second night that neither of them had slept, watching the +boy who was in a high fever. These last days, mistrusting their +household doctor and expecting another for whom they had sent to town, +they had been trying first one remedy and then another. Worn out by +sleeplessness and anxiety they threw their burden of sorrow on one +another and reproached and disputed with each other. + +"Petrusha has come with papers from your father," whispered the +maid. + +Prince Andrew went out. + +"Devil take them!" he muttered, and after listening to the verbal +instructions his father had sent and taking the correspondence and his +father's letter, he returned to the nursery. + +"Well?" he asked. + +"Still the same. Wait, for heaven's sake. Karl Ivanich always says +that sleep is more important than anything," whispered Princess Mary +with a sigh. + +Prince Andrew went up to the child and felt him. He was burning hot. + +"Confound you and your Karl Ivanich!" He took the glass with the +drops and again went up to the cot. + +"Andrew, don't!" said Princess Mary. + +But he scowled at her angrily though also with suffering in his +eyes, and stooped glass in hand over the infant. + +"But I wish it," he said. "I beg you--give it him!" + +Princess Mary shrugged her shoulders but took the glass submissively +and calling the nurse began giving the medicine. The child screamed +hoarsely. Prince Andrew winced and, clutching his head, went out and +sat down on a sofa in the next room. + +He still had all the letters in his hand. Opening them +mechanically he began reading. The old prince, now and then using +abbreviations, wrote in his large elongated hand on blue paper as +follows: + + +Have just this moment received by special messenger very joyful +news--if it's not false. Bennigsen seems to have obtained a complete +victory over Buonaparte at Eylau. In Petersburg everyone is rejoicing, +and the rewards sent to the army are innumerable. Though he is a +German--I congratulate him! I can't make out what the commander at +Korchevo--a certain Khandrikov--is up to; till now the additional +men and provisions have not arrived. Gallop off to him at once and say +I'll have his head off if everything is not here in a week. Have +received another letter about the Preussisch-Eylau battle from +Petenka--he took part in it--and it's all true. When mischief-makers +don't meddle even a German beats Buonaparte. He is said to be +fleeing in great disorder. Mind you gallop off to Korchevo without +delay and carry out instructions! + + +Prince Andrew sighed and broke the seal of another envelope. It +was a closely written letter of two sheets from Bilibin. He folded +it up without reading it and reread his father's letter, ending with +the words: "Gallop off to Korchevo and carry out instructions!" + +"No, pardon me, I won't go now till the child is better," thought +he, going to the door and looking into the nursery. + +Princess Mary was still standing by the cot, gently rocking the +baby. + +"Ah yes, and what else did he say that's unpleasant?" thought Prince +Andrew, recalling his father's letter. "Yes, we have gained a +victory over Bonaparte, just when I'm not serving. Yes, yes, he's +always poking fun at me.... Ah, well! Let him!" And he began reading +Bilibin's letter which was written in French. He read without +understanding half of it, read only to forget, if but for a moment, +what he had too long been thinking of so painfully to the exclusion of +all else. + + + + + +CHAPTER IX + + +Bilibin was now at army headquarters in a diplomatic capacity, and +though he wrote in French and used French jests and French idioms, +he described the whole campaign with a fearless self-censure and +self-derision genuinely Russian. Bilibin wrote that the obligation +of diplomatic discretion tormented him, and he was happy to have in +Prince Andrew a reliable correspondent to whom he could pour out the +bile he had accumulated at the sight of all that was being done in the +army. The letter was old, having been written before the battle at +Preussisch-Eylau. + +"Since the day of our brilliant success at Austerlitz," wrote +Bilibin, "as you know, my dear prince, I never leave headquarters. I +have certainly acquired a taste for war, and it is just as well for +me; what I have seen during these last three months is incredible. + +"I begin ab ovo. 'The enemy of the human race,' as you know, attacks +the Prussians. The Prussians are our faithful allies who have only +betrayed us three times in three years. We take up their cause, but it +turns out that 'the enemy of the human race' pays no heed to our +fine speeches and in his rude and savage way throws himself on the +Prussians without giving them time to finish the parade they had +begun, and in two twists of the hand he breaks them to smithereens and +installs himself in the palace at Potsdam. + +"'I most ardently desire,' writes the King of Prussia to +Bonaparte, 'that Your Majesty should be received and treated in my +palace in a manner agreeable to yourself, and in so far as +circumstances allowed, I have hastened to take all steps to that +end. May I have succeeded!' The Prussian generals pride themselves +on being polite to the French and lay down their arms at the first +demand. + +"The head of the garrison at Glogau, with ten thousand men, asks the +King of Prussia what he is to do if he is summoned to surrender.... +All this is absolutely true. + +"In short, hoping to settle matters by taking up a warlike attitude, +it turns out that we have landed ourselves in war, and what is more, +in war on our own frontiers, with and for the King of Prussia. We have +everything in perfect order, only one little thing is lacking, namely, +a commander in chief. As it was considered that the Austerlitz success +might have been more decisive had the commander in chief not been so +young, all our octogenarians were reviewed, and of Prozorovski and +Kamenski the latter was preferred. The general comes to us, +Suvorov-like, in a kibitka, and is received with acclamations of joy +and triumph. + +"On the 4th, the first courier arrives from Petersburg. The mails +are taken to the field marshal's room, for he likes to do everything +himself. I am called in to help sort the letters and take those +meant for us. The field marshal looks on and waits for letters +addressed to him. We search, but none are to be found. The field +marshal grows impatient and sets to work himself and finds letters +from the Emperor to Count T., Prince V., and others. Then he bursts +into one of his wild furies and rages at everyone and everything, +seizes the letters, opens them, and reads those from the Emperor +addressed to others. 'Ah! So that's the way they treat me! No +confidence in me! Ah, ordered to keep an eye on me! Very well then! +Get along with you!' So he writes the famous order of the day to +General Bennigsen: + +'I am wounded and cannot ride and consequently cannot command the +army. You have brought your army corps to Pultusk, routed: here it +is exposed, and without fuel or forage, so something must be done, +and, as you yourself reported to Count Buxhowden yesterday, you must +think of retreating to our frontier--which do today.' + +"'From all my riding,' he writes to the Emperor, 'I have got a +saddle sore which, coming after all my previous journeys, quite +prevents my riding and commanding so vast an army, so I have passed on +the command to the general next in seniority, Count Buxhowden, +having sent him my whole staff and all that belongs to it, advising +him if there is a lack of bread, to move farther into the interior +of Prussia, for only one day's ration of bread remains, and in some +regiments none at all, as reported by the division commanders, +Ostermann and Sedmoretzki, and all that the peasants had has been +eaten up. I myself will remain in hospital at Ostrolenka till I +recover. In regard to which I humbly submit my report, with the +information that if the army remains in its present bivouac another +fortnight there will not be a healthy man left in it by spring. + +"'Grant leave to retire to his country seat to an old man who is +already in any case dishonored by being unable to fulfill the great +and glorious task for which he was chosen. I shall await your most +gracious permission here in hospital, that I may not have to play +the part of a secretary rather than commander in the army. My +removal from the army does not produce the slightest stir--a blind man +has left it. There are thousands such as I in Russia.' + +"The field marshal is angry with the Emperor and he punishes us all, +isn't it logical? + +"This is the first act. Those that follow are naturally increasingly +interesting and entertaining. After the field marshal's departure it +appears that we are within sight of the enemy and must give battle. +Buxhowden is commander in chief by seniority, but General Bennigsen +does not quite see it; more particularly as it is he and his corps who +are within sight of the enemy and he wishes to profit by the +opportunity to fight a battle 'on his own hand' as the Germans say. He +does so. This is the battle of Pultusk, which is considered a great +victory but in my opinion was nothing of the kind. We civilians, as +you know, have a very bad way of deciding whether a battle was won +or lost. Those who retreat after a battle have lost it is what we say; +and according to that it is we who lost the battle of Pultusk. In +short, we retreat after the battle but send a courier to Petersburg +with news of a victory, and General Bennigsen, hoping to receive +from Petersburg the post of commander in chief as a reward for his +victory, does not give up the command of the army to General +Buxhowden. During this interregnum we begin a very original and +interesting series of maneuvers. Our aim is no longer, as it should +be, to avoid or attack the enemy, but solely to avoid General +Buxhowden who by right of seniority should be our chief. So +energetically do we pursue this aim that after crossing an +unfordable river we burn the bridges to separate ourselves from our +enemy, who at the moment is not Bonaparte but Buxhowden. General +Buxhowden was all but attacked and captured by a superior enemy +force as a result of one of these maneuvers that enabled us to +escape him. Buxhowden pursues us--we scuttle. He hardly crosses the +river to our side before we recross to the other. At last our enemy. +Buxhowden, catches us and attacks. Both generals are angry, and the +result is a challenge on Buxhowden's part and an epileptic fit on +Bennigsen's. But at the critical moment the courier who carried the +news of our victory at Pultusk to Petersburg returns bringing our +appointment as commander in chief, and our first foe, Buxhowden, is +vanquished; we can now turn our thoughts to the second, Bonaparte. But +as it turns out, just at that moment a third enemy rises before us- +namely the Orthodox Russian soldiers, loudly demanding bread, meat, +biscuits, fodder, and whatnot! The stores are empty, the roads +impassable. The Orthodox begin looting, and in a way of which our last +campaign can give you no idea. Half the regiments form bands and scour +the countryside and put everything to fire and sword. The +inhabitants are totally ruined, the hospitals overflow with sick, +and famine is everywhere. Twice the marauders even attack our +headquarters, and the commander in chief has to ask for a battalion to +disperse them. During one of these attacks they carried off my empty +portmanteau and my dressing gown. The Emperor proposes to give all +commanders of divisions the right to shoot marauders, but I much +fear this will oblige one half the army to shoot the other." + +At first Prince Andrew read with his eyes only, but after a while, +in spite of himself (although he knew how far it was safe to trust +Bilibin), what he had read began to interest him more and more. When +he had read thus far, he crumpled the letter up and threw it away. +It was not what he had read that vexed him, but the fact that the life +out there in which he had now no part could perturb him. He shut his +eyes, rubbed his forehead as if to rid himself of all interest in what +he had read, and listened to what was passing in the nursery. Suddenly +he thought he heard a strange noise through the door. He was seized +with alarm lest something should have happened to the child while he +was reading the letter. He went on tiptoe to the nursery door and +opened it. + +Just as he went in he saw that the nurse was hiding something from +him with a scared look and that Princess Mary was no longer by the +cot. + +"My dear," he heard what seemed to him her despairing whisper behind +him. + +As often happens after long sleeplessness and long anxiety, he was +seized by an unreasoning panic--it occurred to him that the child +was dead. All that he saw and heard seemed to confirm this terror. + +"All is over," he thought, and a cold sweat broke out on his +forehead. He went to the cot in confusion, sure that he would find +it empty and that the nurse had been hiding the dead baby. He drew the +curtain aside and for some time his frightened, restless eyes could +not find the baby. At last he saw him: the rosy boy had tossed about +till he lay across the bed with his head lower than the pillow, and +was smacking his lips in his sleep and breathing evenly. + +Prince Andrew was as glad to find the boy like that, as if he had +already lost him. He bent over him and, as his sister had taught +him, tried with his lips whether the child was still feverish. The +soft forehead was moist. Prince Andrew touched the head with his hand; +even the hair was wet, so profusely had the child perspired. He was +not dead, but evidently the crisis was over and he was convalescent. +Prince Andrew longed to snatch up, to squeeze, to hold to his heart, +this helpless little creature, but dared not do so. He stood over him, +gazing at his head and at the little arms and legs which showed +under the blanket. He heard a rustle behind him and a shadow +appeared under the curtain of the cot. He did not look round, but +still gazing at the infant's face listened to his regular breathing. +The dark shadow was Princess Mary, who had come up to the cot with +noiseless steps, lifted the curtain, and dropped it again behind +her. Prince Andrew recognized her without looking and held out his +hand to her. She pressed it. + +"He has perspired," said Prince Andrew. + +"I was coming to tell you so." + +The child moved slightly in his sleep, smiled, and rubbed his +forehead against the pillow. + +Prince Andrew looked at his sister. In the dim shadow of the curtain +her luminous eyes shone more brightly than usual from the tears of joy +that were in them. She leaned over to her brother and kissed him, +slightly catching the curtain of the cot. Each made the other a +warning gesture and stood still in the dim light beneath the curtain +as if not wishing to leave that seclusion where they three were shut +off from all the world. Prince Andrew was the first to move away, +ruffling his hair against the muslin of the curtain. + +"Yes, this is the one thing left me now," he said with a sigh. + + + + +CHAPTER X + + +Soon after his admission to the Masonic Brotherhood, Pierre went +to the Kiev province, where he had the greatest number of serfs, +taking with him full directions which he had written down for his +own guidance as to what he should do on his estates. + +When he reached Kiev he sent for all his stewards to the head office +and explained to them his intentions and wishes. He told them that +steps would be taken immediately to free his serfs--and that till then +they were not to be overburdened with labor, women while nursing their +babies were not to be sent to work, assistance was to be given to +the serfs, punishments were to be admonitory and not corporal, and +hospitals, asylums, and schools were to be established on all the +estates. Some of the stewards (there were semiliterate foremen among +them) listened with alarm, supposing these words to mean that the +young count was displeased with their management and embezzlement of +money, some after their first fright were amused by Pierre's lisp +and the new words they had not heard before, others simply enjoyed +hearing how the master talked, while the cleverest among them, +including the chief steward, understood from this speech how they +could best handle the master for their own ends. + +The chief steward expressed great sympathy with Pierre's intentions, +but remarked that besides these changes it would be necessary to go +into the general state of affairs which was far from satisfactory. + +Despite Count Bezukhov's enormous wealth, since he had come into +an income which was said to amount to five hundred thousand rubles a +year, Pierre felt himself far poorer than when his father had made him +an allowance of ten thousand rubles. He had a dim perception of the +following budget: + +About 80,000 went in payments on all the estates to the Land Bank, +about 30,000 went for the upkeep of the estate near Moscow, the town +house, and the allowance to the three princesses; about 15,000 was +given in pensions and the same amount for asylums; 150,000 alimony was +sent to the countess; about 70,00 went for interest on debts. The +building of a new church, previously begun, had cost about 10,000 in +each of the last two years, and he did not know how the rest, about +100,000 rubles, was spent, and almost every year he was obliged to +borrow. Besides this the chief steward wrote every year telling him of +fires and bad harvests, or of the necessity of rebuilding factories +and workshops. So the first task Pierre had to face was one for +which he had very little aptitude or inclination--practical business. + +He discussed estate affairs every day with his chief steward. But he +felt that this did not forward matters at all. He felt that these +consultations were detached from real affairs and did not link up with +them or make them move. On the one hand, the chief steward put the +state of things to him in the very worst light, pointing out the +necessity of paying off the debts and undertaking new activities +with serf labor, to which Pierre did not agree. On the other hand, +Pierre demanded that steps should be taken to liberate the serfs, +which the steward met by showing the necessity of first paying off the +loans from the Land Bank, and the consequent impossibility of a speedy +emancipation. + +The steward did not say it was quite impossible, but suggested +selling the forests in the province of Kostroma, the land lower down +the river, and the Crimean estate, in order to make it possible: all +of which operations according to him were connected with such +complicated measures--the removal of injunctions, petitions, +permits, and so on--that Pierre became quite bewildered and only +replied: + +"Yes, yes, do so." + +Pierre had none of the practical persistence that would have enabled +him to attend to the business himself and so he disliked it and only +tried to pretend to the steward that he was attending to it. The +steward for his part tried to pretend to the count that he +considered these consultations very valuable for the proprietor and +troublesome to himself. + +In Kiev Pierre found some people he knew, and strangers hastened +to make his acquaintance and joyfully welcomed the rich newcomer, +the largest landowner of the province. Temptations to Pierre's +greatest weakness--the one to which he had confessed when admitted +to the Lodge--were so strong that he could not resist them. Again +whole days, weeks, and months of his life passed in as great a rush +and were as much occupied with evening parties, dinners, lunches, +and balls, giving him no time for reflection, as in Petersburg. +Instead of the new life he had hoped to lead he still lived the old +life, only in new surroundings. + +Of the three precepts of Freemasonry Pierre realized that he did not +fulfill the one which enjoined every Mason to set an example of +moral life, and that of the seven virtues he lacked two--morality +and the love of death. He consoled himself with the thought that he +fulfilled another of the precepts--that of reforming the human race- +and had other virtues--love of his neighbor, and especially +generosity. + +In the spring of 1807 he decided to return to Petersburg. On the way +he intended to visit all his estates and see for himself how far his +orders had been carried out and in what state were the serfs whom +God had entrusted to his care and whom he intended to benefit. + +The chief steward, who considered the young count's attempts +almost insane--unprofitable to himself, to the count, and to the +serfs--made some concessions. Continuing to represent the liberation +of the serfs as impracticable, he arranged for the erection of large +buildings--schools, hospitals, and asylums--on all the estates +before the master arrived. Everywhere preparations were made not for +ceremonious welcomes (which he knew Pierre would not like), but for +just such gratefully religious ones, with offerings of icons and the +bread and salt of hospitality, as, according to his understanding of +his master, would touch and delude him. + +The southern spring, the comfortable rapid traveling in a Vienna +carriage, and the solitude of the road, all had a gladdening effect on +Pierre. The estates he had not before visited were each more +picturesque than the other; the serfs everywhere seemed thriving and +touchingly grateful for the benefits conferred on them. Everywhere +were receptions, which though they embarrassed Pierre awakened a +joyful feeling in the depth of his heart. In one place the peasants +presented him with bread and salt and an icon of Saint Peter and Saint +Paul, asking permission, as a mark of their gratitude for the benefits +he had conferred on them, to build a new chantry to the church at +their own expense in honor of Peter and Paul, his patron saints. In +another place the women with infants in arms met him to thank him +for releasing them from hard work. On a third estate the priest, +bearing a cross, came to meet him surrounded by children whom, by +the count's generosity, he was instructing in reading, writing, and +religion. On all his estates Pierre saw with his own eyes brick +buildings erected or in course of erection, all on one plan, for +hospitals, schools, and almshouses, which were soon to be opened. +Everywhere he saw the stewards' accounts, according to which the +serfs' manorial labor had been diminished, and heard the touching +thanks of deputations of serfs in their full-skirted blue coats. + +What Pierre did not know was that the place where they presented him +with bread and salt and wished to build a chantry in honor of Peter +and Paul was a market village where a fair was held on St. Peter's +day, and that the richest peasants (who formed the deputation) had +begun the chantry long before, but that nine tenths of the peasants in +that villages were in a state of the greatest poverty. He did not know +that since the nursing mothers were no longer sent to work on his +land, they did still harder work on their own land. He did not know +that the priest who met him with the cross oppressed the peasants by +his exactions, and that the pupils' parents wept at having to let +him take their children and secured their release by heavy payments. +He did not know that the brick buildings, built to plan, were being +built by serfs whose manorial labor was thus increased, though +lessened on paper. He did not know that where the steward had shown +him in the accounts that the serfs' payments had been diminished by +a third, their obligatory manorial work had been increased by a +half. And so Pierre was delighted with his visit to his estates and +quite recovered the philanthropic mood in which he had left +Petersburg, and wrote enthusiastic letters to his "brother-instructor" +as he called the Grand Master. + +"How easy it is, how little effort it needs, to do so much good," +thought Pierre, "and how little attention we pay to it!" + +He was pleased at the gratitude he received, but felt abashed at +receiving it. This gratitude reminded him of how much more he might do +for these simple, kindly people. + +The chief steward, a very stupid but cunning man who saw perfectly +through the naive and intelligent count and played with him as with +a toy, seeing the effect these prearranged receptions had on Pierre, +pressed him still harder with proofs of the impossibility and above +all the uselessness of freeing the serfs, who were quite happy as it +was. + +Pierre in his secret soul agreed with the steward that it would be +difficult to imagine happier people, and that God only knew what would +happen to them when they were free, but he insisted, though +reluctantly, on what he thought right. The steward promised to do +all in his power to carry out the count's wishes, seeing clearly +that not only would the count never be able to find out whether all +measures had been taken for the sale of the land and forests and to +release them from the Land Bank, but would probably never even inquire +and would never know that the newly erected buildings were standing +empty and that the serfs continued to give in money and work all +that other people's serfs gave--that is to say, all that could be +got out of them. + + + + + +CHAPTER XI + + +Returning from his journey through South Russia in the happiest +state of mind, Pierre carried out an intention he had long had of +visiting his friend Bolkonski, whom he had not seen for two years. + +Bogucharovo lay in a flat uninteresting part of the country among +fields and forests of fir and birch, which were partly cut down. The +house lay behind a newly dug pond filled with water to the brink and +with banks still bare of grass. It was at the end of a village that +stretched along the highroad in the midst of a young copse in which +were a few fir trees. + +The homestead consisted of a threshing floor, outhouses, stables, +a bathhouse, a lodge, and a large brick house with semicircular facade +still in course of construction. Round the house was a garden newly +laid out. The fences and gates were new and solid; two fire pumps +and a water cart, painted green, stood in a shed; the paths were +straight, the bridges were strong and had handrails. Everything bore +an impress of tidiness and good management. Some domestic serfs Pierre +met, in reply to inquiries as to where the prince lived, pointed out a +small newly built lodge close to the pond. Anton, a man who had looked +after Prince Andrew in his boyhood, helped Pierre out of his carriage, +said that the prince was at home, and showed him into a clean little +anteroom. + +Pierre was struck by the modesty of the small though clean house +after the brilliant surroundings in which he had last met his friend +in Petersburg. + +He quickly entered the small reception room with its +still-unplastered wooden walls redolent of pine, and would have gone +farther, but Anton ran ahead on tiptoe and knocked at a door. + +"Well, what is it?" came a sharp, unpleasant voice. + +"A visitor," answered Anton. + +"Ask him to wait," and the sound was heard of a chair being pushed +back. + +Pierre went with rapid steps to the door and suddenly came face to +face with Prince Andrew, who came out frowning and looking old. Pierre +embraced him and lifting his spectacles kissed his friend on the cheek +and looked at him closely. + +"Well, I did not expect you, I am very glad," said Prince Andrew. + +Pierre said nothing; he looked fixedly at his friend with +surprise. He was struck by the change in him. His words were kindly +and there was a smile on his lips and face, but his eyes were dull and +lifeless and in spite of his evident wish to do so he could not give +them a joyous and glad sparkle. Prince Andrew had grown thinner, +paler, and more manly-looking, but what amazed and estranged Pierre +till he got used to it were his inertia and a wrinkle on his brow +indicating prolonged concentration on some one thought. + +As is usually the case with people meeting after a prolonged +separation, it was long before their conversation could settle on +anything. They put questions and gave brief replies about things +they knew ought to be talked over at length. At last the +conversation gradually settled on some of the topics at first +lightly touched on: their past life, plans for the future, Pierre's +journeys and occupations, the war, and so on. The preoccupation and +despondency which Pierre had noticed in his friend's look was now +still more clearly expressed in the smile with which he listened to +Pierre, especially when he spoke with joyful animation of the past +or the future. It was as if Prince Andrew would have liked to +sympathize with what Pierre was saying, but could not. The latter +began to feel that it was in bad taste to speak of his enthusiasms, +dreams, and hopes of happiness or goodness, in Prince Andrew's +presence. He was ashamed to express his new Masonic views, which had +been particularly revived and strengthened by his late tour. He +checked himself, fearing to seem naive, yet he felt an irresistible +desire to show his friend as soon as possible that he was now a +quite different, and better, Pierre than he had been in Petersburg. + +"I can't tell you how much I have lived through since then. I hardly +know myself again." + +"Yes, we have altered much, very much, since then," said Prince +Andrew. + +"Well, and you? What are your plans?" + +"Plans!" repeated Prince Andrew ironically. "My plans?" he said, +as if astonished at the word. "Well, you see, I'm building. I mean +to settle here altogether next year...." + +Pierre looked silently and searchingly into Prince Andrew's face, +which had grown much older. + +"No, I meant to ask..." Pierre began, but Prince Andrew +interrupted him. + +"But why talk of me?... Talk to me, yes, tell me about your +travels and all you have been doing on your estates." + +Pierre began describing what he had done on his estates, trying as +far as possible to conceal his own part in the improvements that had +been made. Prince Andrew several times prompted Pierre's story of what +he had been doing, as though it were all an old-time story, and he +listened not only without interest but even as if ashamed of what +Pierre was telling him. + +Pierre felt uncomfortable and even depressed in his friend's company +and at last became silent. + +"I'll tell you what, my dear fellow," said Prince Andrew, who +evidently also felt depressed and constrained with his visitor, "I +am only bivouacking here and have just come to look round. I am +going back to my sister today. I will introduce you to her. But of +course you know her already," he said, evidently trying to entertain a +visitor with whom he now found nothing in common. "We will go after +dinner. And would you now like to look round my place?" + +They went out and walked about till dinnertime, talking of the +political news and common acquaintances like people who do not know +each other intimately. Prince Andrew spoke with some animation and +interest only of the new homestead he was constructing and its +buildings, but even here, while on the scaffolding, in the midst of +a talk explaining the future arrangements of the house, he interrupted +himself: + +"However, this is not at all interesting. Let us have dinner, and +then we'll set off." + +At dinner, conversation turned on Pierre's marriage. + +"I was very much surprised when I heard of it," said Prince Andrew. + +Pierre blushed, as he always did when it was mentioned, and said +hurriedly: "I will tell you some time how it all happened. But you +know it is all over, and forever." + +"Forever?" said Prince Andrew. "Nothing's forever." + +"But you know how it all ended, don't you? You heard of the duel?" + +"And so you had to go through that too!" + +"One thing I thank God for is that I did not kill that man," said +Pierre. + +"Why so?" asked Prince Andrew. "To kill a vicious dog is a very good +thing really." + +"No, to kill a man is bad--wrong." + +"Why is it wrong?" urged Prince Andrew. "It is not given to man to +know what is right and what is wrong. Men always did and always will +err, and in nothing more than in what they consider right and wrong." + +"What does harm to another is wrong," said Pierre, feeling with +pleasure that for the first time since his arrival Prince Andrew was +roused, had begun to talk, and wanted to express what had brought +him to his present state. + +"And who has told you what is bad for another man?" he asked. + +"Bad! Bad!" exclaimed Pierre. "We all know what is bad for +ourselves." + +"Yes, we know that, but the harm I am conscious of in myself is +something I cannot inflict on others," said Prince Andrew, growing +more and more animated and evidently wishing to express his new +outlook to Pierre. He spoke in French. "I only know two very real +evils in life: remorse and illness. The only good is the absence of +those evils. To live for myself avoiding those two evils is my whole +philosophy now." + +"And love of one's neighbor, and self-sacrifice?" began Pierre. "No, +I can't agree with you! To live only so as not to do evil and not to +have to repent is not enough. I lived like that, I lived for myself +and ruined my life. And only now when I am living, or at least trying" +(Pierre's modesty made him correct himself) "to live for others, +only now have I understood all the happiness of life. No, I shall +not agree with you, and you do not really believe what you are +saying." Prince Andrew looked silently at Pierre with an ironic smile. + +"When you see my sister, Princess Mary, you'll get on with her," +he said. "Perhaps you are right for yourself," he added after a +short pause, "but everyone lives in his own way. You lived for +yourself and say you nearly ruined your life and only found +happiness when you began living for others. I experienced just the +reverse. I lived for glory.--And after all what is glory? The same +love of others, a desire to do something for them, a desire for +their approval.--So I lived for others, and not almost, but quite, +ruined my life. And I have become calmer since I began to live only +for myself." + +"But what do you mean by living only for yourself?" asked Pierre, +growing excited. "What about your son, your sister, and your father?" + +"But that's just the same as myself--they are not others," explained +Prince Andrew. "The others, one's neighbors, le prochain, as you and +Princess Mary call it, are the chief source of all error and evil. +Le prochain--your Kiev peasants to whom you want to do good." + +And he looked at Pierre with a mocking, challenging expression. He +evidently wished to draw him on. + +"You are joking," replied Pierre, growing more and more excited. +"What error or evil can there be in my wishing to do good, and even +doing a little--though I did very little and did it very badly? What +evil can there be in it if unfortunate people, our serfs, people +like ourselves, were growing up and dying with no idea of God and +truth beyond ceremonies and meaningless prayers and are now instructed +in a comforting belief in future life, retribution, recompense, and +consolation? What evil and error are there in it, if people were dying +of disease without help while material assistance could so easily be +rendered, and I supplied them with a doctor, a hospital, and an asylum +for the aged? And is it not a palpable, unquestionable good if a +peasant, or a woman with a baby, has no rest day or night and I give +them rest and leisure?" said Pierre, hurrying and lisping. "And I have +done that though badly and to a small extent; but I have done +something toward it and you cannot persuade me that it was not a +good action, and more than that, you can't make me believe that you do +not think so yourself. And the main thing is," he continued, "that I +know, and know for certain, that the enjoyment of doing this good is +the only sure happiness in life." + +"Yes, if you put it like that it's quite a different matter," said +Prince Andrew. "I build a house and lay out a garden, and you build +hospitals. The one and the other may serve as a pastime. But what's +right and what's good must be judged by one who knows all, but not +by us. Well, you want an argument," he added, "come on then." + +They rose from the table and sat down in the entrance porch which +served as a veranda. + +"Come, let's argue then," said Prince Andrew, "You talk of schools," +he went on, crooking a finger, "education and so forth; that is, you +want to raise him" (pointing to a peasant who passed by them taking +off his cap) "from his animal condition and awaken in him spiritual +needs, while it seems to me that animal happiness is the only +happiness possible, and that is just what you want to deprive him +of. I envy him, but you want to make him what I am, without giving him +my means. Then you say, 'lighten his toil.' But as I see it, +physical labor is as essential to him, as much a condition of his +existence, as mental activity is to you or me. You can't help +thinking. I go to bed after two in the morning, thoughts come and I +can't sleep but toss about till dawn, because I think and can't help +thinking, just as he can't help plowing and mowing; if he didn't, he +would go to the drink shop or fall ill. Just as I could not stand +his terrible physical labor but should die of it in a week, so he +could not stand my physical idleness, but would grow fat and die. +The third thing--what else was it you talked about?" and Prince Andrew +crooked a third finger. "Ah, yes, hospitals, medicine. He has a fit, +he is dying, and you come and bleed him and patch him up. He will drag +about as a cripple, a burden to everybody, for another ten years. It +would be far easier and simpler for him to die. Others are being +born and there are plenty of them as it is. It would be different if +you grudged losing a laborer--that's how I regard him--but you want to +cure him from love of him. And he does not want that. And besides, +what a notion that medicine ever cured anyone! Killed them, yes!" said +he, frowning angrily and turning away from Pierre. + +Prince Andrew expressed his ideas so clearly and distinctly that +it was evident he had reflected on this subject more than once, and he +spoke readily and rapidly like a man who has not talked for a long +time. His glance became more animated as his conclusions became more +hopeless. + +"Oh, that is dreadful, dreadful!" said Pierre. "I don't understand +how one can live with such ideas. I had such moments myself not long +ago, in Moscow and when traveling, but at such times I collapsed so +that I don't live at all--everything seems hateful to me... myself +most of all. Then I don't eat, don't wash... and how is it with +you?..." + +"Why not wash? That is not cleanly," said Prince Andrew; "on the +contrary one must try to make one's life as pleasant as possible. +I'm alive, that is not my fault, so I must live out my life as best +I can without hurting others." + +"But with such ideas what motive have you for living? One would +sit without moving, undertaking nothing...." + +"Life as it is leaves one no peace. I should be thankful to do +nothing, but here on the one hand the local nobility have done me +the honor to choose me to be their marshal; it was all I could do to +get out of it. They could not understand that I have not the necessary +qualifications for it--the kind of good-natured, fussy shallowness +necessary for the position. Then there's this house, which must be +built in order to have a nook of one's own in which to be quiet. And +now there's this recruiting." + +"Why aren't you serving in the army?" + +"After Austerlitz!" said Prince Andrew gloomily. "No, thank you very +much! I have promised myself not to serve again in the active +Russian army. And I won't--not even if Bonaparte were here at Smolensk +threatening Bald Hills--even then I wouldn't serve in the Russian +army! Well, as I was saying," he continued, recovering his +composure, "now there's this recruiting. My father is chief in command +of the Third District, and my only way of avoiding active service is +to serve under him." + +"Then you are serving?" + +"I am." + +He paused a little while. + +"And why do you serve?" + +"Why, for this reason! My father is one of the most remarkable men +of his time. But he is growing old, and though not exactly cruel he +has too energetic a character. He is so accustomed to unlimited +power that he is terrible, and now he has this authority of a +commander in chief of the recruiting, granted by the Emperor. If I had +been two hours late a fortnight ago he would have had a paymaster's +clerk at Yukhnovna hanged," said Prince Andrew with a smile. "So I +am serving because I alone have any influence with my father, and +now and then can save him from actions which would torment him +afterwards." + +"Well, there you see!" + +"Yes, but it is not as you imagine," Prince Andrew continued. "I did +not, and do not, in the least care about that scoundrel of a clerk who +had stolen some boots from the recruits; I should even have been +very glad to see him hanged, but I was sorry for my father--that again +is for myself." + +Prince Andrew grew more and more animated. His eyes glittered +feverishly while he tried to prove to Pierre that in his actions there +was no desire to do good to his neighbor. + +"There now, you wish to liberate your serfs," he continued; "that is +a very good thing, but not for you--I don't suppose you ever had +anyone flogged or sent to Siberia--and still less for your serfs. If +they are beaten, flogged, or sent to Siberia, I don't suppose they are +any the worse off. In Siberia they lead the same animal life, and +the stripes on their bodies heal, and they are happy as before. But it +is a good thing for proprietors who perish morally, bring remorse upon +themselves, stifle this remorse and grow callous, as a result of being +able to inflict punishments justly and unjustly. It is those people +I pity, and for their sake I should like to liberate the serfs. You +may not have seen, but I have seen, how good men brought up in those +traditions of unlimited power, in time when they grow more +irritable, become cruel and harsh, are conscious of it, but cannot +restrain themselves and grow more and more miserable." + +Prince Andrew spoke so earnestly that Pierre could not help thinking +that these thoughts had been suggested to Prince Andrew by his +father's case. + +He did not reply. + +"So that's what I'm sorry for--human dignity, peace of mind, purity, +and not the serfs' backs and foreheads, which, beat and shave as you +may, always remain the same backs and foreheads." + +"No, no! A thousand times no! I shall never agree with you," said +Pierre. + + + + + +CHAPTER XII + + +In the evening Andrew and Pierre got into the open carriage and +drove to Bald Hills. Prince Andrew, glancing at Pierre, broke the +silence now and then with remarks which showed that he was in a good +temper. + +Pointing to the fields, he spoke of the improvements he was making +in his husbandry. + +Pierre remained gloomily silent, answering in monosyllables and +apparently immersed in his own thoughts. + +He was thinking that Prince Andrew was unhappy, had gone astray, did +not see the true light, and that he, Pierre, ought to aid, +enlighten, and raise him. But as soon as he thought of what he +should say, he felt that Prince Andrew with one word, one argument, +would upset all his teaching, and he shrank from beginning, afraid +of exposing to possible ridicule what to him was precious and sacred. + +"No, but why do you think so?" Pierre suddenly began, lowering his +head and looking like a bull about to charge, "why do you think so? +You should not think so." + +"Think? What about?" asked Prince Andrew with surprise. + +"About life, about man's destiny. It can't be so. I myself thought +like that, and do you know what saved me? Freemasonry! No, don't +smile. Freemasonry is not a religious ceremonial sect, as I thought it +was: Freemasonry is the best expression of the best, the eternal, +aspects of humanity." + +And he began to explain Freemasonry as he understood it to Prince +Andrew. He said that Freemasonry is the teaching of Christianity freed +from the bonds of State and Church, a teaching of equality, +brotherhood, and love. + +"Only our holy brotherhood has the real meaning of life, all the +rest is a dream," said Pierre. "Understand, my dear fellow, that +outside this union all is filled with deceit and falsehood and I agree +with you that nothing is left for an intelligent and good man but to +live out his life, like you, merely trying not to harm others. But +make our fundamental convictions your own, join our brotherhood, +give yourself up to us, let yourself be guided, and you will at once +feel yourself, as I have felt myself, a part of that vast invisible +chain the beginning of which is hidden in heaven," said Pierre. + +Prince Andrew, looking straight in front of him, listened in silence +to Pierre's words. More than once, when the noise of the wheels +prevented his catching what Pierre said, he asked him to repeat it, +and by the peculiar glow that came into Prince Andrew's eyes and by +his silence, Pierre saw that his words were not in vain and that +Prince Andrew would not interrupt him or laugh at what he said. + +They reached a river that had overflowed its banks and which they +had to cross by ferry. While the carriage and horses were being placed +on it, they also stepped on the raft. + +Prince Andrew, leaning his arms on the raft railing, gazed +silently at the flooding waters glittering in the setting sun. + +"Well, what do you think about it?" Pierre asked. "Why are you +silent?" + +"What do I think about it? I am listening to you. It's all very +well.... You say: join our brotherhood and we will show you the aim of +life, the destiny of man, and the laws which govern the world. But who +are we? Men. How is it you know everything? Why do I alone not see +what you see? You see a reign of goodness and truth on earth, but I +don't see it." + +Pierre interrupted him. + +"Do you believe in a future life?" he asked. + +"A future life?" Prince Andrew repeated, but Pierre, giving him no +time to reply, took the repetition for a denial, the more readily as +he knew Prince Andrew's former atheistic convictions. + +"You say you can't see a reign of goodness and truth on earth. Nor +could I, and it cannot be seen if one looks on our life here as the +end of everything. On earth, here on this earth" (Pierre pointed to +the fields), "there is no truth, all is false and evil; but in the +universe, in the whole universe there is a kingdom of truth, and we +who are now the children of earth are--eternally--children of the +whole universe. Don't I feel in my soul that I am part of this vast +harmonious whole? Don't I feel that I form one link, one step, between +the lower and higher beings, in this vast harmonious multitude of +beings in whom the Deity--the Supreme Power if you prefer the term--is +manifest? If I see, clearly see, that ladder leading from plant to +man, why should I suppose it breaks off at me and does not go +farther and farther? I feel that I cannot vanish, since nothing +vanishes in this world, but that I shall always exist and always +have existed. I feel that beyond me and above me there are spirits, +and that in this world there is truth." + +"Yes, that is Herder's theory," said Prince Andrew, "but it is not +that which can convince me, dear friend--life and death are what +convince. What convinces is when one sees a being dear to one, bound +up with one's own life, before whom one was to blame and had hoped +to make it right" (Prince Andrew's voice trembled and he turned away), +"and suddenly that being is seized with pain, suffers, and ceases to +exist.... Why? It cannot be that there is no answer. And I believe +there is.... That's what convinces, that is what has convinced me," +said Prince Andrew. + +"Yes, yes, of course," said Pierre, "isn't that what I'm saying?" + +"No. All I say is that it is not argument that convinces me of the +necessity of a future life, but this: when you go hand in hand with +someone and all at once that person vanishes there, into nowhere, +and you yourself are left facing that abyss, and look in. And I have +looked in...." + +"Well, that's it then! You know that there is a there and there is a +Someone? There is the future life. The Someone is--God." + +Prince Andrew did not reply. The carriage and horses had long +since been taken off, onto the farther bank, and reharnessed. The +sun had sunk half below the horizon and an evening frost was +starring the puddles near the ferry, but Pierre and Andrew, to the +astonishment of the footmen, coachmen, and ferrymen, still stood on +the raft and talked. + +"If there is a God and future life, there is truth and good, and +man's highest happiness consists in striving to attain them. We must +live, we must love, and we must believe that we live not only today on +this scrap of earth, but have lived and shall live forever, there, +in the Whole," said Pierre, and he pointed to the sky. + +Prince Andrew stood leaning on the railing of the raft listening +to Pierre, and he gazed with his eyes fixed on the red reflection of +the sun gleaming on the blue waters. There was perfect stillness. +Pierre became silent. The raft had long since stopped and only the +waves of the current beat softly against it below. Prince Andrew +felt as if the sound of the waves kept up a refrain to Pierre's words, +whispering: + +"It is true, believe it." + +He sighed, and glanced with a radiant, childlike, tender look at +Pierre's face, flushed and rapturous, but yet shy before his +superior friend. + +"Yes, if it only were so!" said Prince Andrew. "However, it is +time to get on," he added, and, stepping off the raft, he looked up at +the sky to which Pierre had pointed, and for the first time since +Austerlitz saw that high, everlasting sky he had seen while lying on +that battlefield; and something that had long been slumbering, +something that was best within him, suddenly awoke, joyful and +youthful, in his soul. It vanished as soon as he returned to the +customary conditions of his life, but he knew that this feeling +which he did not know how to develop existed within him. His meeting +with Pierre formed an epoch in Prince Andrew's life. Though +outwardly he continued to live in the same old way, inwardly he +began a new life. + + + + + +CHAPTER XIII + + +It was getting dusk when Prince Andrew and Pierre drove up to the +front entrance of the house at Bald Hills. As they approached the +house, Prince Andrew with a smile drew Pierre's attention to a +commotion going on at the back porch. A woman, bent with age, with a +wallet on her back, and a short, long-haired, young man in a black +garment had rushed back to the gate on seeing the carriage driving up. +Two women ran out after them, and all four, looking round at the +carriage, ran in dismay up the steps of the back porch. + +"Those are Mary's 'God's folk,'" said Prince Andrew. "They have +mistaken us for my father. This is the one matter in which she +disobeys him. He orders these pilgrims to be driven away, but she +receives them." + +"But what are 'God's folk'?" asked Pierre. + +Prince Andrew had no time to answer. The servants came out to meet +them, and he asked where the old prince was and whether he was +expected back soon. + +The old prince had gone to the town and was expected back any +minute. + +Prince Andrew led Pierre to his own apartments, which were always +kept in perfect order and readiness for him in his father's house; +he himself went to the nursery. + +"Let us go and see my sister," he said to Pierre when he returned. +"I have not found her yet, she is hiding now, sitting with her +'God's folk.' It will serve her right, she will be confused, but you +will see her 'God's folk.' It's really very curious." + +"What are 'God's folk'?" asked Pierre. + +"Come, and you'll see for yourself." + +Princess Mary really was disconcerted and red patches came on her +face when they went in. In her snug room, with lamps burning before +the icon stand, a young lad with a long nose and long hair, wearing +a monk's cassock, sat on the sofa beside her, behind a samovar. Near +them, in an armchair, sat a thin, shriveled, old woman, with a meek +expression on her childlike face. + +"Andrew, why didn't you warn me?" said the princess, with mild +reproach, as she stood before her pilgrims like a hen before her +chickens. + +"Charmee de vous voir. Je suis tres contente de vous voir,"* she +said to Pierre as he kissed her hand. She had known him as a child, +and now his friendship with Andrew, his misfortune with his wife, +and above all his kindly, simple face disposed her favorably toward +him. She looked at him with her beautiful radiant eyes and seemed to +say, "I like you very much, but please don't laugh at my people." +After exchanging the first greetings, they sat down. + + +*"Delighted to see you. I am very glad to see you." + + +"Ah, and Ivanushka is here too!" said Prince Andrew, glancing with a +smile at the young pilgrim. + +"Andrew!" said Princess Mary, imploringly. "Il faut que vous sachiez +que c'est une femme,"* said Prince Andrew to Pierre. + +"Andrew, au nom de Dieu!"*[2] Princess Mary repeated. + + +*"You must know that this is a woman." + +*[2] "For heaven's sake." + + +It was evident that Prince Andrew's ironical tone toward the +pilgrims and Princess Mary's helpless attempts to protect them were +their customary long-established relations on the matter. + +"Mais, ma bonne amie," said Prince Andrew, "vous devriez au +contraire m'etre reconnaissante de ce que j'explique a Pierre votre +intimite avec ce jeune homme."* + + +*"But, my dear, you ought on the contrary to be grateful to me for +explaining to Pierre your intimacy with this young man." + + +"Really?" said Pierre, gazing over his spectacles with curiosity and +seriousness (for which Princess Mary was specially grateful to him) +into Ivanushka's face, who, seeing that she was being spoken about, +looked round at them all with crafty eyes. + +Princess Mary's embarrassment on her people's account was quite +unnecessary. They were not in the least abashed. The old woman, +lowering her eyes but casting side glances at the newcomers, had +turned her cup upside down and placed a nibbled bit of sugar beside +it, and sat quietly in her armchair, though hoping to be offered +another cup of tea. Ivanushka, sipping out of her saucer, looked +with sly womanish eyes from under her brows at the young men. + +"Where have you been? To Kiev?" Prince Andrew asked the old woman. + +"I have, good sir," she answered garrulously. "Just at Christmastime +I was deemed worthy to partake of the holy and heavenly sacrament at +the shrine of the saint. And now I'm from Kolyazin, master, where a +great and wonderful blessing has been revealed." + +"And was Ivanushka with you?" + +"I go by myself, benefactor," said Ivanushka, trying to speak in a +bass voice. "I only came across Pelageya in Yukhnovo..." + +Pelageya interrupted her companion; she evidently wished to tell +what she had seen. + +"In Kolyazin, master, a wonderful blessing has been revealed." + +"What is it? Some new relics?" asked Prince Andrew. + +"Andrew, do leave off," said Princess Mary. "Don't tell him, +Pelageya." + +"No... why not, my dear, why shouldn't I? I like him. He is kind, he +is one of God's chosen, he's a benefactor, he once gave me ten rubles, +I remember. When I was in Kiev, Crazy Cyril says to me (he's one of +God's own and goes barefoot summer and winter), he says, 'Why are +you not going to the right place? Go to Kolyazin where a +wonder-working icon of the Holy Mother of God has been revealed.' On +hearing those words I said good-by to the holy folk and went." + +All were silent, only the pilgrim woman went on in measured tones, +drawing in her breath. + +"So I come, master, and the people say to me: 'A great blessing +has been revealed, holy oil trickles from the cheeks of our blessed +Mother, the Holy Virgin Mother of God'...." + +"All right, all right, you can tell us afterwards," said Princess +Mary, flushing. + +"Let me ask her," said Pierre. "Did you see it yourselves?" he +inquired. + +"Oh, yes, master, I was found worthy. Such a brightness on the +face like the light of heaven, and from the blessed Mother's cheek +it drops and drops...." + +"But, dear me, that must be a fraud!" said Pierre, naively, who +had listened attentively to the pilgrim. + +"Oh, master, what are you saying?" exclaimed the horrified Pelageya, +turning to Princess Mary for support. + +"They impose on the people," he repeated. + +"Lord Jesus Christ!" exclaimed the pilgrim woman, crossing +herself. "Oh, don't speak so, master! There was a general who did +not believe, and said, 'The monks cheat,' and as soon as he'd said +it he went blind. And he dreamed that the Holy Virgin Mother of the +Kiev catacombs came to him and said, 'Believe in me and I will make +you whole.' So he begged: 'Take me to her, take me to her.' It's the +real truth I'm telling you, I saw it myself. So he was brought, +quite blind, straight to her, and he goes up to her and falls down and +says, 'Make me whole,' says he, 'and I'll give thee what the Tsar +bestowed on me.' I saw it myself, master, the star is fixed into the +icon. Well, and what do you think? He received his sight! It's a sin +to speak so. God will punish you," she said admonishingly, turning +to Pierre. + +"How did the star get into the icon?" Pierre asked. + +"And was the Holy Mother promoted to the rank of general?" said +Prince Andrew, with a smile. + +Pelageya suddenly grew quite pale and clasped her hands. + +"Oh, master, master, what a sin! And you who have a son!" she began, +her pallor suddenly turning to a vivid red. "Master, what have you +said? God forgive you!" And she crossed herself. "Lord forgive him! My +dear, what does it mean?..." she asked, turning to Princess Mary. +She got up and, almost crying, began to arrange her wallet. She +evidently felt frightened and ashamed to have accepted charity in a +house where such things could be said, and was at the same time +sorry to have now to forgo the charity of this house. + +"Now, why need you do it?" said Princess Mary. "Why did you come +to me?..." + +"Come, Pelageya, I was joking," said Pierre. "Princesse, ma +parole, je n'ai pas voulu l'offenser.* I did not mean anything, I +was only joking," he said, smiling shyly and trying to efface his +offense. "It was all my fault, and Andrew was only joking." + + +*"Princess, on my word, I did not wish to offend her." + + +Pelageya stopped doubtfully, but in Pierre's face there was such a +look of sincere penitence, and Prince Andrew glanced so meekly now +at her and now at Pierre, that she was gradually reassured. + + + + + +CHAPTER XIV + + +The pilgrim woman was appeased and, being encouraged to talk, gave a +long account of Father Amphilochus, who led so holy a life that his +hands smelled of incense, and how on her last visit to Kiev some monks +she knew let her have the keys of the catacombs, and how she, taking +some dried bread with her, had spent two days in the catacombs with +the saints. "I'd pray awhile to one, ponder awhile, then go on to +another. I'd sleep a bit and then again go and kiss the relics, and +there was such peace all around, such blessedness, that one don't want +to come out, even into the light of heaven again." + +Pierre listened to her attentively and seriously. Prince Andrew went +out of the room, and then, leaving "God's folk" to finish their tea, +Princess Mary took Pierre into the drawing room. + +"You are very kind," she said to him. + +"Oh, I really did not mean to hurt her feelings. I understand them +so well and have the greatest respect for them." + +Princess Mary looked at him silently and smiled affectionately. + +"I have known you a long time, you see, and am as fond of you as +of a brother," she said. "How do you find Andrew?" she added +hurriedly, not giving him time to reply to her affectionate words. +"I am very anxious about him. His health was better in the winter, but +last spring his wound reopened and the doctor said he ought to go away +for a cure. And I am also very much afraid for him spiritually. He has +not a character like us women who, when we suffer, can weep away our +sorrows. He keeps it all within him. Today he is cheerful and in +good spirits, but that is the effect of your visit--he is not often +like that. If you could persuade him to go abroad. He needs +activity, and this quiet regular life is very bad for him. Others +don't notice it, but I see it." + +Toward ten o'clock the men servants rushed to the front door, +hearing the bells of the old prince's carriage approaching. Prince +Andrew and Pierre also went out into the porch. + +"Who's that?" asked the old prince, noticing Pierre as he got out +of, the carriage. + +"Ah! Very glad! Kiss me," he said, having learned who the young +stranger was. + +The old prince was in a good temper and very gracious to Pierre. + +Before supper, Prince Andrew, coming back to his father's study, +found him disputing hotly with his visitor. Pierre was maintaining +that a time would come when there would be no more wars. The old +prince disputed it chaffingly, but without getting angry. + +"Drain the blood from men's veins and put in water instead, then +there will be no more war! Old women's nonsense--old women's +nonsense!" he repeated, but still he patted Pierre affectionately on +the shoulder, and then went up to the table where Prince Andrew, +evidently not wishing to join in the conversation, was looking over +the papers his father had brought from town. The old prince went up to +him and began to talk business. + +"The marshal, a Count Rostov, hasn't sent half his contingent. He +came to town and wanted to invite me to dinner--I gave him a pretty +dinner!... And there, look at this.... Well, my boy," the old prince +went on, addressing his son and patting Pierre on the shoulder. "A +fine fellow--your friend--I like him! He stirs me up. Another says +clever things and one doesn't care to listen, but this one talks +rubbish yet stirs an old fellow up. Well, go! Get along! Perhaps +I'll come and sit with you at supper. We'll have another dispute. Make +friends with my little fool, Princess Mary," he shouted after +Pierre, through the door. + +Only now, on his visit to Bald Hills, did Pierre fully realize the +strength and charm of his friendship with Prince Andrew. That charm +was not expressed so much in his relations with him as with all his +family and with the household. With the stern old prince and the +gentle, timid Princess Mary, though he had scarcely known them, Pierre +at once felt like an old friend. They were all fond of him already. +Not only Princess Mary, who had been won by his gentleness with the +pilgrims, gave him her most radiant looks, but even the one-year-old +"Prince Nicholas" (as his grandfather called him) smiled at Pierre and +let himself be taken in his arms, and Michael Ivanovich and +Mademoiselle Bourienne looked at him with pleasant smiles when he +talked to the old prince. + +The old prince came in to supper; this was evidently on Pierre's +account. And during the two days of the young man's visit he was +extremely kind to him and told him to visit them again. + +When Pierre had gone and the members of the household met +together, they began to express their opinions of him as people always +do after a new acquaintance has left, but as seldom happens, no one +said anything but what was good of him. + + + + + +CHAPTER XV + + +When returning from his leave, Rostov felt, for the first time, +how close was the bond that united him to Denisov and and the whole +regiment. + +On approaching it, Rostov felt as he had done when approaching his +home in Moscow. When he saw the first hussar with the unbuttoned +uniform of his regiment, when he recognized red-haired Dementyev and +saw the picket ropes of the roan horses, when Lavrushka gleefully +shouted to his master, "The count has come!" and Denisov, who had been +asleep on his bed, ran all disheveled out of the mud hut to embrace +him, and the officers collected round to greet the new arrival, Rostov +experienced the same feeling his mother, his father, and his sister +had embraced him, and tears of joy choked him so that he could not +speak. The regiment was also a home, and as unalterably dear and +precious as his parents' house. + +When he had reported himself to the commander of the regiment and +had been reassigned to his former squadron, had been on duty and had +gone out foraging, when he had again entered into all the little +interests of the regiment and felt himself deprived of liberty and +bound in one narrow, unchanging frame, he experienced the same sense +of peace, of moral support, and the same sense being at home here in +his own place, as he had felt under the parental roof. But here was +none of all that turmoil of the world at large, where he did not +know his right place and took mistaken decisions; here was no Sonya +with whom he ought, or ought not, to have an explanation; here was +no possibility of going there or not going there; here there were +not twenty-four hours in the day which could be spent in such a +variety of ways; there was not that innumerable crowd of people of +whom not one was nearer to him or farther from him than another; there +were none of those uncertain and undefined money relations with his +father, and nothing to recall that terrible loss to Dolokhov. Here, in +the regiment, all was clear and simple. The whole world was divided +into two unequal parts: one, our Pavlograd regiment; the other, all +the rest. And the rest was no concern of his. In the regiment, +everything was definite: who was lieutenant, who captain, who was a +good fellow, who a bad one, and most of all, who was a comrade. The +canteenkeeper gave one credit, one's pay came every four months, there +was nothing to think out or decide, you had only to do nothing that +was considered bad in the Pavlograd regiment and, when given an order, +to do what was clearly, distinctly, and definitely ordered--and all +would be well. + +Having once more entered into the definite conditions of this +regimental life, Rostov felt the joy and relief a tired man feels on +lying down to rest. Life in the regiment, during this campaign, was +all the pleasanter for him, because, after his loss to Dolokhov (for +which, in spite of all his family's efforts to console him, he could +not forgive himself), he had made up his mind to atone for his fault +by serving, not as he had done before, but really well, and by being a +perfectly first-rate comrade and officer--in a word, a splendid man +altogether, a thing which seemed so difficult out in the world, but so +possible in the regiment. + +After his losses, he had determined to pay back his debt to his +parents in five years. He received ten thousand rubles a year, but now +resolved to take only two thousand and leave the rest to repay the +debt to his parents. + +Our army, after repeated retreats and advances and battles at +Pultusk and Preussisch-Eylau, was concentrated near Bartenstein. It +was awaiting the Emperor's arrival and the beginning of a new +campaign. + +The Pavlograd regiment, belonging to that part of the army which had +served in the 1805 campaign, had been recruiting up to strength in +Russia, and arrived too late to take part in the first actions of +the campaign. It had been neither at Pultusk nor at Preussisch-Eylau +and, when it joined the army in the field in the second half of the +campaign, was attached to Platov's division. + +Platov's division was acting independently of the main army. Several +times parts of the Pavlograd regiment had exchanged shots with the +enemy, had taken prisoners, and once had even captured Marshal +Oudinot's carriages. In April the Pavlograds were stationed +immovably for some weeks near a totally ruined and deserted German +village. + +A thaw had set in, it was muddy and cold, the ice on the river +broke, and the roads became impassable. For days neither provisions +for the men nor fodder for the horses had been issued. As no +transports could arrive, the men dispersed about the abandoned and +deserted villages, searching for potatoes, but found few even of +these. + +Everything had been eaten up and the inhabitants had all fled--if +any remained, they were worse than beggars and nothing more could be +taken from them; even the soldiers, usually pitiless enough, instead +of taking anything from them, often gave them the last of their +rations. + +The Pavlograd regiment had had only two men wounded in action, but +had lost nearly half its men from hunger and sickness. In the +hospitals, death was so certain that soldiers suffering from fever, or +the swelling that came from bad food, preferred to remain on duty, and +hardly able to drag their legs went to the front rather than to the +hospitals. When spring came on, the soldiers found a plant just +showing out of the ground that looked like asparagus, which, for +some reason, they called "Mashka's sweet root." It was very bitter, +but they wandered about the fields seeking it and dug it out with +their sabers and ate it, though they were ordered not to do so, as +it was a noxious plant. That spring a new disease broke +out among the soldiers, a swelling of the arms, legs, and face, +which the doctors attributed to eating this root. But in spite of +all this, the soldiers of Denisov's squadron fed chiefly on +"Mashka's sweet root," because it was the second week that the last of +the biscuits were being doled out at the rate of half a pound a man +and the last potatoes received had sprouted and frozen. + +The horses also had been fed for a fortnight on straw from the +thatched roofs and had become terribly thin, though still covered with +tufts of felty winter hair. + +Despite this destitution, the soldiers and officers went on living +just as usual. Despite their pale swollen faces and tattered uniforms, +the hussars formed line for roll call, kept things in order, groomed +their horses, polished their arms, brought in straw from the +thatched roofs in place of fodder, and sat down to dine round the +caldrons from which they rose up hungry, joking about their nasty food +and their hunger. As usual, in their spare time, they lit bonfires, +steamed themselves before them naked; smoked, picked out and baked +sprouting rotten potatoes, told and listened to stories of +Potemkin's and Suvorov's campaigns, or to legends of Alesha the Sly, +or the priest's laborer Mikolka. + +The officers, as usual, lived in twos and threes in the roofless, +half-ruined houses. The seniors tried to collect straw and potatoes +and, in general, food for the men. The younger ones occupied +themselves as before, some playing cards (there was plenty of money, +though there was no food), some with more innocent games, such as +quoits and skittles. The general trend of the campaign was rarely +spoken of, partly because nothing certain was known about it, partly +because there was a vague feeling that in the main it was going badly. + +Rostov lived, as before, with Denisov, and since their furlough they +had become more friendly than ever. Denisov never spoke of Rostov's +family, but by the tender friendship his commander showed him, +Rostov felt that the elder hussar's luckless love for Natasha played a +part in strengthening their friendship. Denisov evidently tried to +expose Rostov to danger as seldom as possible, and after an action +greeted his safe return with evident joy. On one of his foraging +expeditions, in a deserted and ruined village to which he had come +in search of provisions, Rostov found a family consisting of an old +Pole and his daughter with an infant in arms. They were half clad, +hungry, too weak to get away on foot and had no means of obtaining a +conveyance. Rostov brought them to his quarters, placed them in his +own lodging, and kept them for some weeks while the old man was +recovering. One of his comrades, talking of women, began chaffing +Rostov, saying that he was more wily than any of them and that it +would not be a bad thing if he introduced to them the pretty Polish +girl he had saved. Rostov took the joke as an insult, flared up, and +said such unpleasant things to the officer that it was all Denisov +could do to prevent a duel. When the officer had gone away, Denisov, +who did not himself know what Rostov's relations with the Polish +girl might be, began to upbraid him for his quickness of temper, and +Rostov replied: + +"Say what you like.... She is like a sister to me, and I can't +tell you how it offended me... because... well, for that reason...." + +Denisov patted him on the shoulder and began rapidly pacing the room +without looking at Rostov, as was his way at moments of deep feeling. + +"Ah, what a mad bweed you Wostovs are!" he muttered, and Rostov +noticed tears in his eyes. + + + + + +CHAPTER XVI + + +In April the troops were enlivened by news of the Emperor's arrival, +but Rostov had no chance of being present at the review he held at +Bartenstein, as the Pavlograds were at the outposts far beyond that +place. + +They were bivouacking. Denisov and Rostov were living in an earth +hut, dug out for them by the soldiers and roofed with branches and +turf. The hut was made in the following manner, which had then come +into vogue. A trench was dug three and a half feet wide, four feet +eight inches deep, and eight feet long. At one end of the trench, +steps were cut out and these formed the entrance and vestibule. The +trench itself was the room, in which the lucky ones, such as the +squadron commander, had a board, lying on piles at the end opposite +the entrance, to serve as a table. On each side of the trench, the +earth was cut out to a breadth of about two and a half feet, and +this did duty for bedsteads and couches. The roof was so constructed +that one could stand up in the middle of the trench and could even sit +up on the beds if one drew close to the table. Denisov, who was living +luxuriously because the soldiers of his squadron liked him, had also a +board in the roof at the farther end, with a piece of (broken but +mended) glass in it for a window. When it was very cold, embers from +the soldiers' campfire were placed on a bent sheet of iron on the +steps in the "reception room"--as Denisov called that part of the hut- +and it was then so warm that the officers, of whom there were always +some with Denisov and Rostov, sat in their shirt sleeves. + +In April, Rostov was on orderly duty. One morning, between seven and +eight, returning after a sleepless night, he sent for embers, +changed his rain-soaked underclothes, said his prayers, drank tea, got +warm, then tidied up the things on the table and in his own corner, +and, his face glowing from exposure to the wind and with nothing on +but his shirt, lay down on his back, putting his arms under his +head. He was pleasantly considering the probability of being +promoted in a few days for his last reconnoitering expedition, and +was awaiting Denisov, who had gone out somewhere and with whom he +wanted a talk. + +Suddenly he heard Denisov shouting in a vibrating voice behind the +hut, evidently much excited. Rostov moved to the window to see whom he +was speaking to, and saw the quartermaster, Topcheenko. + +"I ordered you not to let them eat that Mashka woot stuff!" Denisov +was shouting. "And I saw with my own eyes how Lazarchuk bwought some +fwom the fields." + +"I have given the order again and again, your honor, but they +don't obey," answered the quartermaster. + +Rostov lay down again on his bed and thought complacently: "Let +him fuss and bustle now, my job's done and I'm lying down--capitally!" +He could hear that Lavrushka--that sly, bold orderly of Denisov's--was +talking, as well as the quartermaster. Lavrushka was saying +something about loaded wagons, biscuits, and oxen he had seen when +he had gone out for provisions. + +Then Denisov's voice was heard shouting farther and farther away. +"Saddle! Second platoon!" + +"Where are they off to now?" thought Rostov. + +Five minutes later, Denisov came into the hut, climbed with muddy +boots on the bed, lit his pipe, furiously scattered his things +about, took his leaded whip, buckled on his saber, and went out again. +In answer to Rostov's inquiry where he was going, he answered +vaguely and crossly that he had some business. + +"Let God and our gweat monarch judge me afterwards!" said Denisov +going out, and Rostov heard the hoofs of several horses splashing +through the mud. He did not even trouble to find out where Denisov had +gone. Having got warm in his corner, he fell asleep and did not +leave the hut till toward evening. Denisov had not yet returned. The +weather had cleared up, and near the next hut two officers and a cadet +were playing svayka, laughing as they threw their missiles which +buried themselves in the soft mud. Rostov joined them. In the middle +of the game, the officers saw some wagons approaching with fifteen +hussars on their skinny horses behind them. The wagons escorted by the +hussars drew up to the picket ropes and a crowd of hussars +surrounded them. + +"There now, Denisov has been worrying," said Rostov, "and here are +the provisions." + +"So they are!" said the officers. "Won't the soldiers be glad!" + +A little behind the hussars came Denisov, accompanied by two +infantry officers with whom he was talking. + +Rostov went to meet them. + +"I warn you, Captain," one of the officers, a short thin man, + +evidently very angry, was saying. + +"Haven't I told you I won't give them up?" replied Denisov. + +"You will answer for it, Captain. It is mutiny--seizing the +transport of one's own army. Our men have had nothing to eat for two +days." + +"And mine have had nothing for two weeks," said Denisov. + +"It is robbery! You'll answer for it, sir!" said the infantry +officer, raising his voice. + +"Now, what are you pestewing me for?" cried Denisov, suddenly losing +his temper. "I shall answer for it and not you, and you'd better not +buzz about here till you get hurt. Be off! Go!" he shouted at the +officers. + +"Very well, then!" shouted the little officer, undaunted and not +riding away. "If you are determined to rob, I'll..." + +"Go to the devil! quick ma'ch, while you're safe and sound!" and +Denisov turned his horse on the officer. + +"Very well, very well!" muttered the officer, threateningly, and +turning his horse he trotted away, jolting in his saddle. + +"A dog astwide a fence! A weal dog astwide a fence!" shouted Denisov +after him (the most insulting expression a cavalryman can address to a +mounted infantryman) and riding up to Rostov, he burst out laughing. + +"I've taken twansports from the infantwy by force!" he said. +"After all, can't let our men starve." + +The wagons that had reached the hussars had been consigned to an +infantry regiment, but learning from Lavrushka that the transport +was unescorted, Denisov with his hussars had seized it by force. The +soldiers had biscuits dealt out to them freely, and they even shared +them with the other squadrons. + +The next day the regimental commander sent for Denisov, and +holding his fingers spread out before his eyes said: + +"This is how I look at this affair: I know nothing about it and +won't begin proceedings, but I advise you to ride over to the staff +and settle the business there in the commissariat department and if +possible sign a receipt for such and such stores received. If not, +as the demand was booked against an infantry regiment, there will be a +row and the affair may end badly." + +From the regimental commander's, Denisov rode straight to the +staff with a sincere desire to act on this advice. In the evening he +came back to his dugout in a state such as Rostov had never yet seen +him in. Denisov could not speak and gasped for breath. When Rostov +asked what was the matter, he only uttered some incoherent oaths and +threats in a hoarse, feeble voice. + +Alarmed at Denisov's condition, Rostov suggested that he should +undress, drink some water, and send for the doctor. + +"Twy me for wobbewy... oh! Some more water... Let them twy me, but +I'll always thwash scoundwels... and I'll tell the Empewo'... +Ice..." he muttered. + +The regimental doctor, when he came, said it was absolutely +necessary to bleed Denisov. A deep saucer of black blood was taken +from his hairy arm and only then was he able to relate what had +happened to him. + +"I get there," began Denisov. "'Now then, where's your chief's +quarters?' They were pointed out. 'Please to wait.' 'I've widden +twenty miles and have duties to attend to and no time to wait. +Announce me.' Vewy well, so out comes their head chief--also took it +into his head to lecture me: 'It's wobbewy!'--'Wobbewy,' I say, 'is +not done by man who seizes pwovisions to feed his soldiers, but by him +who takes them to fill his own pockets!' 'Will you please be +silent?' 'Vewy good!' Then he says: 'Go and give a weceipt to the +commissioner, but your affair will be passed on to headquarters.' I go +to the commissioner. I enter, and at the table... who do you think? +No, but wait a bit!... Who is it that's starving us?" shouted Denisov, +hitting the table with the fist of his newly bled arm so violently +that the table nearly broke down and the tumblers on it jumped +about. "Telyanin! 'What? So it's you who's starving us to death! Is +it? Take this and this!' and I hit him so pat, stwaight on his +snout... 'Ah, what a... what...!' and I sta'ted fwashing him... +Well, I've had a bit of fun I can tell you!" cried Denisov, gleeful +and yet angry, his showing under his black mustache. "I'd have +killed him if they hadn't taken him away!" + +"But what are you shouting for? Calm yourself," said Rostov. "You've +set your arm bleeding afresh. Wait, we must tie it up again." + +Denisov was bandaged up again and put to bed. Next day he woke +calm and cheerful. + +But at noon the adjutant of the regiment came into Rostov's and +Denisov's dugout with a grave and serious face and regretfully +showed them a paper addressed to Major Denisov from the regimental +commander in which inquiries were made about yesterday's occurrence. +The adjutant told them that the affair was likely to take a very bad +turn: that a court-martial had been appointed, and that in view of the +severity with which marauding and insubordination were now regarded, +degradation to the ranks would be the best that could be hoped for. + +The case, as represented by the offended parties, was that, after +seizing the transports, Major Denisov, being drunk, went to the +chief quartermaster and without any provocation called him a thief, +threatened to strike him, and on being led out had rushed into the +office and given two officials a thrashing, and dislocated the arm +of one of them. + +In answer to Rostov's renewed questions, Denisov said, laughing, +that he thought he remembered that some other fellow had got mixed +up in it, but that it was all nonsense and rubbish, and he did not +in the least fear any kind of trial, and that if those scoundrels +dared attack him he would give them an answer that they would not +easily forget. + +Denisov spoke contemptuously of the whole matter, but Rostov knew +him too well not to detect that (while hiding it from others) at heart +he feared a court-martial and was worried over the affair, which was +evidently taking a bad turn. Every day, letters of inquiry and notices +from the court arrived, and on the first of May, Denisov was ordered +to hand the squadron over to the next in seniority and appear before +the staff of his division to explain his violence at the +commissariat office. On the previous day Platov reconnoitered with two +Cossack regiments and two squadrons of hussars. Denisov, as was his +wont, rode out in front of the outposts, parading his courage. A +bullet fired by a French sharpshooter hit him in the fleshy part of +his leg. Perhaps at another time Denisov would not have left the +regiment for so slight a wound, but now he took advantage of it to +excuse himself from appearing at the staff and went into hospital. + + + + + +CHAPTER XVII + + +In June the battle of Friedland was fought, in which the +Pavlograds did not take part, and after that an armistice was +proclaimed. Rostov, who felt his friend's absence very much, having no +news of him since he left and feeling very anxious about his wound and +the progress of his affairs, took advantage of the armistice to get +leave to visit Denisov in hospital. + +The hospital was in a small Prussian town that had been twice +devastated by Russian and French troops. Because it was summer, when +it is so beautiful out in the fields, the little town presented a +particularly dismal appearance with its broken roofs and fences, its +foul streets, tattered inhabitants, and the sick and drunken +soldiers wandering about. + +The hospital was in a brick building with some of the window +frames and panes broken and a courtyard surrounded by the remains of a +wooden fence that had been pulled to pieces. Several bandaged +soldiers, with pale swollen faces, were sitting or walking about in +the sunshine in the yard. + +Directly Rostov entered the door he was enveloped by a smell of +putrefaction and hospital air. On the stairs he met a Russian army +doctor smoking a cigar. The doctor was followed by a Russian +assistant. + +"I can't tear myself to pieces," the doctor was saying. "Come to +Makar Alexeevich in the evening. I shall be there." + +The assistant asked some further questions. + +"Oh, do the best you can! Isn't it all the same?" The doctor noticed +Rostov coming upstairs. + +"What do you want, sir?" said the doctor. "What do you want? The +bullets having spared you, do you want to try typhus? This is a +pesthouse, sir." + +"How so?" asked Rostov. + +"Typhus, sir. It's death to go in. Only we two, Makeev and I" (he +pointed to the assistant), "keep on here. Some five of us doctors have +died in this place.... When a new one comes he is done for in a week," +said the doctor with evident satisfaction. "Prussian doctors have been +invited here, but our allies don't like it at all." + +Rostov explained that he wanted to see Major Denisov of the hussars, +who was wounded. + +"I don't know. I can't tell you, sir. Only think! I am alone in +charge of three hospitals with more than four hundred patients! It's +well that the charitable Prussian ladies send us two pounds of +coffee and some lint each month or we should be lost!" he laughed. +"Four hundred, sir, and they're always sending me fresh ones. There +are four hundred? Eh?" he asked, turning to the assistant. + +The assistant looked fagged out. He was evidently vexed and +impatient for the talkative doctor to go. + +"Major Denisov," Rostov said again. "He was wounded at Molliten." + +"Dead, I fancy. Eh, Makeev?" queried the doctor, in a tone of +indifference. + +The assistant, however, did not confirm the doctor's words. + +"Is he tall and with reddish hair?" asked the doctor. + +Rostov described Denisov's appearance. + +"There was one like that," said the doctor, as if pleased. "That one +is dead, I fancy. However, I'll look up our list. We had a list. +Have you got it, Makeev?" + +"Makar Alexeevich has the list," answered the assistant. "But if +you'll step into the officers' wards you'll see for yourself," he +added, turning to Rostov. + +"Ah, you'd better not go, sir," said the doctor, "or you may have to +stay here yourself." + +But Rostov bowed himself away from the doctor and asked the +assistant to show him the way. + +"Only don't blame me!" the doctor shouted up after him. + +Rostov and the assistant went into the dark corridor. The smell +was so strong there that Rostov held his nose and had to pause and +collect his strength before he could go on. A door opened to the +right, and an emaciated sallow man on crutches, barefoot and in +underclothing, limped out and, leaning against the doorpost, looked +with glittering envious eyes at those who were passing. Glancing in at +the door, Rostov saw that the sick and wounded were lying on the floor +on straw and overcoats. + +"May I go in and look?" + +"What is there to see?" said the assistant. + +But, just because the assistant evidently did not want him to go in, +Rostov entered the soldiers' ward. The foul air, to which he had +already begun to get used in the corridor, was still stronger here. It +was a little different, more pungent, and one felt that this was where +it originated. + +In the long room, brightly lit up by the sun through the large +windows, the sick and wounded lay in two rows with their heads to +the walls, and leaving a passage in the middle. Most of them were +unconscious and paid no attention to the newcomers. Those who were +conscious raised themselves or lifted their thin yellow faces, and all +looked intently at Rostov with the same expression of hope, of relief, +reproach, and envy of another's health. Rostov went to the middle of +the room and looking through the open doors into the two adjoining +rooms saw the same thing there. He stood still, looking silently +around. He had not at all expected such a sight. Just before him, +almost across the middle of the passage on the bare floor, lay a +sick man, probably a Cossack to judge by the cut of his hair. The +man lay on his back, his huge arms and legs outstretched. His face was +purple, his eyes were rolled back so that only the whites were seen, +and on his bare legs and arms which were still red, the veins stood +out like cords. He was knocking the back of his head against the +floor, hoarsely uttering some word which he kept repeating. Rostov +listened and made out the word. It was "drink, drink, a drink!" Rostov +glanced round, looking for someone who would put this man back in +his place and bring him water. + +"Who looks after the sick here?" he asked the assistant. + +Just then a commissariat soldier, a hospital orderly, came in from +the next room, marching stiffly, and drew up in front of Rostov. + +"Good day, your honor!" he shouted, rolling his eyes at Rostov and +evidently mistaking him for one of the hospital authorities. + +"Get him to his place and give him some water," said Rostov, +pointing to the Cossack. + +"Yes, your honor," the soldier replied complacently, and rolling his +eyes more than ever he drew himself up still straighter, but did not +move. + +"No, it's impossible to do anything here," thought Rostov, +lowering his eyes, and he was going out, but became aware of an +intense look fixed on him on his right, and he turned. Close to the +corner, on an overcoat, sat an old, unshaven, gray-bearded soldier +as thin as a skeleton, with a stern sallow face and eyes intently +fixed on Rostov. The man's neighbor on one side whispered something to +him, pointing at Rostov, who noticed that the old man wanted to +speak to him. He drew nearer and saw that the old man had only one leg +bent under him, the other had been amputated above the knee. His +neighbor on the other side, who lay motionless some distance from +him with his head thrown back, was a young soldier with a snub nose. +His pale waxen face was still freckled and his eyes were rolled +back. Rostov looked at the young soldier and a cold chill ran down his +back. + +"Why, this one seems..." he began, turning to the assistant. + +"And how we've been begging, your honor," said the old soldier, +his jaw quivering. "He's been dead since morning. After all we're men, +not dogs." + +"I'll send someone at once. He shall be taken away--taken away at +once," said the assistant hurriedly. "Let us go, your honor." + +"Yes, yes, let us go," said Rostov hastily, and lowering his eyes +and shrinking, he tried to pass unnoticed between the rows of +reproachful envious eyes that were fixed upon him, and went out of the +room. + + + + + +CHAPTER XVIII + + +Going along the corridor, the assistant led Rostov to the +officers' wards, consisting of three rooms, the doors of which stood +open. There were beds in these rooms and the sick and wounded officers +were lying or sitting on them. Some were walking about the rooms in +hospital dressing gowns. The first person Rostov met in the +officers' ward was a thin little man with one arm, who was walking +about the first room in a nightcap and hospital dressing gown, with +a pipe between his teeth. Rostov looked at him, trying to remember +where he had seen him before. + +"See where we've met again!" said the little man. "Tushin, Tushin, +don't you remember, who gave you a lift at Schon Grabern? And I've had +a bit cut off, you see..." he went on with a smile, pointing to the +empty sleeve of his dressing gown. "Looking for Vasili Dmitrich +Denisov? My neighbor," he added, when he heard who Rostov wanted. +"Here, here," and Tushin led him into the next room, from whence +came sounds of several laughing voices. + +"How can they laugh, or even live at all here?" thought Rostov, +still aware of that smell of decomposing flesh that had been so strong +in the soldiers' ward, and still seeming to see fixed on him those +envious looks which had followed him out from both sides, and the face +of that young soldier with eyes rolled back. + +Denisov lay asleep on his bed with his head under the blanket, +though it was nearly noon. + +"Ah, Wostov? How are you, how are you?" he called out, still in +the same voice as in the regiment, but Rostov noticed sadly that under +this habitual ease and animation some new, sinister, hidden feeling +showed itself in the expression of Denisov's face and the +intonations of his voice. + +His wound, though a slight one, had not yet healed even now, six +weeks after he had been hit. His face had the same swollen pallor as +the faces of the other hospital patients, but it was not this that +struck Rostov. What struck him was that Denisov did not seem glad to +see him, and smiled at him unnaturally. He did not ask about the +regiment, nor about the general state of affairs, and when Rostov +spoke of these matters did not listen. + +Rostov even noticed that Denisov did not like to be reminded of +the regiment, or in general of that other free life which was going on +outside the hospital. He seemed to try to forget that old life and was +only interested in the affair with the commissariat officers. On +Rostov's inquiry as to how the matter stood, he at once produced +from under his pillow a paper he had received from the commission +and the rough draft of his answer to it. He became animated when he +began reading his paper and specially drew Rostov's attention to the +stinging rejoinders he made to his enemies. His hospital companions, +who had gathered round Rostov--a fresh arrival from the world outside- +gradually began to disperse as soon as Denisov began reading his +answer. Rostov noticed by their faces that all those gentlemen had +already heard that story more than once and were tired of it. Only the +man who had the next bed, a stout Uhlan, continued to sit on his +bed, gloomily frowning and smoking a pipe, and little one-armed Tushin +still listened, shaking his head disapprovingly. In the middle of +the reading, the Uhlan interrupted Denisov. + +"But what I say is," he said, turning to Rostov, "it would be best +simply to petition the Emperor for pardon. They say great rewards will +now be distributed, and surely a pardon would be granted...." + +"Me petition the Empewo'!" exclaimed Denisov, in a voice to which he +tried hard to give the old energy and fire, but which sounded like +an expression of irritable impotence. "What for? If I were a wobber +I would ask mercy, but I'm being court-martialed for bwinging +wobbers to book. Let them twy me, I'm not afwaid of anyone. I've +served the Tsar and my countwy honowably and have not stolen! And am I +to be degwaded?... Listen, I'm w'iting to them stwaight. This is +what I say: 'If I had wobbed the Tweasuwy...'" + +"It's certainly well written," said Tushin, "but that's not the +point, Vasili Dmitrich," and he also turned to Rostov. "One has to +submit, and Vasili Dmitrich doesn't want to. You know the auditor told +you it was a bad business." + +"Well, let it be bad," said Denisov. + +"The auditor wrote out a petition for you," continued Tushin, "and +you ought to sign it and ask this gentleman to take it. No doubt he" +(indicating Rostov) "has connections on the staff. You won't find a +better opportunity." + +"Haven't I said I'm not going to gwovel?" Denisov interrupted him, +went on reading his paper. + +Rostov had not the courage to persuade Denisov, though he +instinctively felt that the way advised by Tushin and the other +officers was the safest, and though he would have been glad to be of +service to Denisov. He knew his stubborn will and straightforward +hasty temper. + +When the reading of Denisov's virulent reply, which took more than +an hour, was over, Rostov said nothing, and he spent the rest of the +day in a most dejected state of mind amid Denisov's hospital comrades, +who had round him, telling them what he knew and listening to their +stories. Denisov was moodily silent all the evening. + +Late in the evening, when Rostov was about to leave, he asked +Denisov whether he had no commission for him. + +"Yes, wait a bit," said Denisov, glancing round at the officers, and +taking his papers from under his pillow he went to the window, where +he had an inkpot, and sat down to write. + +"It seems it's no use knocking one's head against a wall!" he +said, coming from the window and giving Rostov a large envelope. In it +was the petition to the Emperor drawn up by the auditor, in which +Denisov, without alluding to the offenses of the commissariat +officials, simply asked for pardon. + +"Hand it in. It seems..." + +He did not finish, but gave a painfully unnatural smile. + + + + + +CHAPTER XIX + + +Having returned to the regiment and told the commander the state +of Denisov's affairs, Rostov rode to Tilsit with the letter to the +Emperor. + +On the thirteenth of June the French and Russian Emperors arrived in +Tilsit. Boris Drubetskoy had asked the important personage on whom +he was in attendance, to include him in the suite appointed for the +stay at Tilsit. + +"I should like to see the great man," he said, alluding to Napoleon, +whom hitherto he, like everyone else, had always called Buonaparte. + +"You are speaking of Buonaparte?" asked the general, smiling. + + +Boris looked at his general inquiringly and immediately saw that +he was being tested. + +"I am speaking, Prince, of the Emperor Napoleon," he replied. The +general patted him on the shoulder, with a smile. + +"You will go far," he said, and took him to Tilsit with him. + +Boris was among the few present at the Niemen on the day the two +Emperors met. He saw the raft, decorated with monograms, saw +Napoleon pass before the French Guards on the farther bank of the +river, saw the pensive face of the Emperor Alexander as he sat in +silence in a tavern on the bank of the Niemen awaiting Napoleon's +arrival, saw both Emperors get into boats, and saw how Napoleon- +reaching the raft first--stepped quickly forward to meet Alexander and +held out his hand to him, and how they both retired into the pavilion. +Since he had begun to move in the highest circles Boris had made it +his habit to watch attentively all that went on around him and to note +it down. At the time of the meeting at Tilsit he asked the names of +those who had come with Napoleon and about the uniforms they wore, and +listened attentively to words spoken by important personages. At the +moment the Emperors went into the pavilion he looked at his watch, and +did not forget to look at it again when Alexander came out. The +interview had lasted an hour and fifty-three minutes. He noted this +down that same evening, among other facts he felt to be of historic +importance. As the Emperor's suite was a very small one, it was a +matter of great importance, for a man who valued his success in the +service, to be at Tilsit on the occasion of this interview between the +two Emperors, and having succeeded in this, Boris felt that henceforth +his position was fully assured. He had not only become known, but +people had grown accustomed to him and accepted him. Twice he had +executed commissions to the Emperor himself, so that the latter knew +his face, and all those at court, far from cold-shouldering him as +at first when they considered him a newcomer, would now have been +surprised had he been absent. + +Boris lodged with another adjutant, the Polish Count Zhilinski. +Zhilinski, a Pole brought up in Paris, was rich, and passionately fond +of the French, and almost every day of the stay at Tilsit, French +officers of the Guard and from French headquarters were dining and +lunching with him and Boris. + +On the evening of the twenty-fourth of June, Count Zhilinski +arranged a supper for his French friends. The guest of honor was an +aide-de-camp of Napoleon's, there were also several French officers of +the Guard, and a page of Napoleon's, a young lad of an old +aristocratic French family. That same day, Rostov, profiting by the +darkness to avoid being recognized in civilian dress, came to Tilsit +and went to the lodging occupied by Boris and Zhilinski. + +Rostov, in common with the whole army from which he came, was far +from having experienced the change of feeling toward Napoleon and +the French--who from being foes had suddenly become friends--that +had taken place at headquarters and in Boris. In the army, Bonaparte +and the French were still regarded with mingled feelings of anger, +contempt, and fear. Only recently, talking with one of Platov's +Cossack officers, Rostov had argued that if Napoleon were taken +prisoner he would be treated not as a sovereign, but as a criminal. +Quite lately, happening to meet a wounded French colonel on the +road, Rostov had maintained with heat that peace was impossible +between a legitimate sovereign and the criminal Bonaparte. Rostov +was therefore unpleasantly struck by the presence of French officers +in Boris' lodging, dressed in uniforms he had been accustomed to see +from quite a different point of view from the outposts of the flank. +As soon as he noticed a French officer, who thrust his head out of the +door, that warlike feeling of hostility which he always experienced at +the sight of the enemy suddenly seized him. He stopped at the +threshold and asked in Russian whether Drubetskoy lived there. +Boris, hearing a strange voice in the anteroom, came out to meet +him. An expression of annoyance showed itself for a moment on his face +on first recognizing Rostov. + +"Ah, it's you? Very glad, very glad to see you," he said, however, +coming toward him with a smile. But Rostov had noticed his first +impulse. + +"I've come at a bad time I think. I should not have come, but I have +business," he said coldly. + +"No, I only wonder how you managed to get away from your regiment. +Dans un moment je suis a vous,"* he said, answering someone who called +him. + + +*"In a minute I shall be at your disposal." + + +"I see I'm intruding," Rostov repeated. + +The look of annoyance had already disappeared from Boris' face: +having evidently reflected and decided how to act, he very quietly +took both Rostov's hands and led him into the next room. His eyes, +looking serenely and steadily at Rostov, seemed to be veiled by +something, as if screened by blue spectacles of conventionality. So it +seemed to Rostov. + +"Oh, come now! As if you could come at a wrong time!" said Boris, +and he led him into the room where the supper table was laid and +introduced him to his guests, explaining that he was not a civilian, +but an hussar officer, and an old friend of his. + +"Count Zhilinski--le Comte N. N.--le Capitaine S. S.," said he, +naming his guests. Rostov looked frowningly at the Frenchmen, bowed +reluctantly, and remained silent. + +Zhilinski evidently did not receive this new Russian person very +willingly into his circle and did not speak to Rostov. Boris did not +appear to notice the constraint the newcomer produced and, with the +same pleasant composure and the same veiled look in his eyes with +which he had met Rostov, tried to enliven the conversation. One of the +Frenchmen, with the politeness characteristic of his countrymen, +addressed the obstinately taciturn Rostov, saying that the latter +had probably come to Tilsit to see the Emperor. + +"No, I came on business," replied Rostov, briefly. + +Rostov had been out of humor from the moment he noticed the look +of dissatisfaction on Boris' face, and as always happens to those in a +bad humor, it seemed to him that everyone regarded him with aversion +and that he was in everybody's way. He really was in their way, for he +alone took no part in the conversation which again became general. The +looks the visitors cast on him seemed to say: "And what is he +sitting here for?" He rose and went up to Boris. + +"Anyhow, I'm in your way," he said in a low tone. "Come and talk +over my business and I'll go away." + +"Oh, no, not at all," said Boris. "But if you are tired, come and +lie down in my room and have a rest." + +"Yes, really..." + +They went into the little room where Boris slept. Rostov, without +sitting down, began at once, irritably (as if Boris were to blame in +some way) telling him about Denisov's affair, asking him whether, +through his general, he could and would intercede with the Emperor +on Denisov's behalf and get Denisov's petition handed in. When he +and Boris were alone, Rostov felt for the first time that he could not +look Boris in the face without a sense of awkwardness. Boris, with one +leg crossed over the other and stroking his left hand with the slender +fingers of his right, listened to Rostov as a general listens to the +report of a subordinate, now looking aside and now gazing straight +into Rostov's eyes with the same veiled look. Each time this +happened Rostov felt uncomfortable and cast down his eyes. + +"I have heard of such cases and know that His Majesty is very severe +in such affairs. I think it would be best not to bring it before the +Emperor, but to apply to the commander of the corps.... But in +general, I think..." + +"So you don't want to do anything? Well then, say so!" Rostov almost +shouted, not looking Boris in the face. + +Boris smiled. + +"On the contrary, I will do what I can. Only I thought..." + +At that moment Zhilinski's voice was heard calling Boris. + +"Well then, go, go, go..." said Rostov, and refusing supper and +remaining alone in the little room, he walked up and down for a long +time, hearing the lighthearted French conversation from the next room. + + + + + +CHAPTER XX + + +Rostov had come to Tilsit the day least suitable for a petition on +Denisov's behalf. He could not himself go to the general in attendance +as he was in mufti and had come to Tilsit without permission to do so, +and Boris, even had he wished to, could not have done so on the +following day. On that day, June 27, the preliminaries of peace were +signed. The Emperors exchanged decorations: Alexander received the +Cross of the Legion of Honor and Napoleon the Order of St. Andrew of +the First Degree, and a dinner had been arranged for the evening, +given by a battalion of the French Guards to the Preobrazhensk +battalion. The Emperors were to be present at that banquet. + +Rostov felt so ill at ease and uncomfortable with Boris that, when +the latter looked in after supper, he pretended to be asleep, and +early next morning went away, avoiding Boris. In his civilian +clothes and a round hat, he wandered about the town, staring at the +French and their uniforms and at the streets and houses where the +Russian and French Emperors were staying. In a square he saw tables +being set up and preparations made for the dinner; he saw the +Russian and French colors draped from side to side of the streets, +with hugh monograms A and N. In the windows of the houses also flags +and bunting were displayed. + +"Boris doesn't want to help me and I don't want to ask him. That's +settled," thought Nicholas. "All is over between us, but I won't leave +here without having done all I can for Denisov and certainly not +without getting his letter to the Emperor. The Emperor!... He is +here!" thought Rostov, who had unconsciously returned to the house +where Alexander lodged. + +Saddled horses were standing before the house and the suite were +assembling, evidently preparing for the Emperor to come out. + +"I may see him at any moment," thought Rostov. "If only I were to +hand the letter direct to him and tell him all... could they really +arrest me for my civilian clothes? Surely not! He would understand +on whose side justice lies. He understands everything, knows +everything. Who can be more just, more magnanimous than he? And even +if they did arrest me for being here, what would it matter?" thought +he, looking at an officer who was entering the house the Emperor +occupied. "After all, people do go in.... It's all nonsense! I'll go +in and hand the letter to the Emperor myself so much the worse for +Drubetskoy who drives me to it!" And suddenly with a determination +he himself did not expect, Rostov felt for the letter in his pocket +and went straight to the house. + +"No, I won't miss my opportunity now, as I did after Austerlitz," he +thought, expecting every moment to meet the monarch, and conscious +of the blood that rushed to his heart at the thought. "I will fall +at his feet and beseech him. He will lift me up, will listen, and will +even thank me. 'I am happy when I can do good, but to remedy injustice +is the greatest happiness,'" Rostov fancied the sovereign saying. +And passing people who looked after him with curiosity, he entered the +porch of the Emperor's house. + +A broad staircase led straight up from the entry, and to the right +he saw a closed door. Below, under the staircase, was a door leading +to the lower floor. + +"Whom do you want?" someone inquired. + +"To hand in a letter, a petition, to His Majesty," said Nicholas, +with a tremor in his voice. + +"A petition? This way, to the officer on duty" (he was +shown the door leading downstairs), "only it won't be accepted." + +On hearing this indifferent voice, Rostov grew frightened at what he +was doing; the thought of meeting the Emperor at any moment was so +fascinating and consequently so alarming that he was ready to run +away, but the official who had questioned him opened the door, and +Rostov entered. + +A short stout man of about thirty, in white breeches and high +boots and a batiste shirt that he had evidently only just put on, +standing in that room, and his valet was buttoning on to the back of +his breeches a new pair of handsome silk-embroidered braces that, +for some reason, attracted Rostov's attention. This man was was +speaking to someone in the adjoining room. + +"A good figure and in her first bloom," he was saying, but on seeing +Rostov, he stopped short and frowned. + +"What is it? A petition?" + +"What is it?" asked the person in the other room. + +"Another petitioner," answered the man with the braces. + +"Tell him to come later. He'll be coming out directly, we must go." + +"Later... later! Tomorrow. It's too late..." + +Rostov turned and was about to go, but the man in the braces stopped +him. + +"Whom have you come from? Who are you?" + +"I come from Major Denisov," answered Rostov. + +"Are you an officer?" + +"Lieutenant Count Rostov." + +"What audacity! Hand it in through your commander. And go along with +you... go," and he continued to put on the uniform the valet handed +him. + +Rostov went back into the hall and noticed that in the porch there +were many officers and generals in full parade uniform, whom he had to +pass. + +Cursing his temerity, his heart sinking at the thought of finding +himself at any moment face to face with the Emperor and being put to +shame and arrested in his presence, fully alive now to the impropriety +of his conduct and repenting of it, Rostov, with downcast eyes, was +making his way out of the house through the brilliant suite when a +familiar voice called him and a hand detained him. + +"What are you doing here, sir, in civilian dress?" asked a deep +voice. + +It was a cavalry general who had obtained the Emperor's special +favor during this campaign, and who had formerly commanded the +division in which Rostov was serving. + +Rostov, in dismay, began justifying himself, but seeing the +kindly, jocular face of the general, he took him aside and in an +excited voice told him the whole affair, asking him to intercede for +Denisov, whom the general knew. Having heard Rostov to the end, the +general shook his head gravely. + +"I'm sorry, sorry for that fine fellow. Give me the letter." + +Hardly had Rostov handed him the letter and finished explaining +Denisov's case, when hasty steps and the jingling of spurs were +heard on the stairs, and the general, leaving him, went to the +porch. The gentlemen of the Emperor's suite ran down the stairs and +went to their horses. Hayne, the same groom who had been at +Austerlitz, led up the Emperor's horse, and the faint creak of a +footstep Rostov knew at once was heard on the stairs. Forgetting the +danger of being recognized, Rostov went close to the porch, together +with some inquisitive civilians, and again, after two years, saw those +features he adored: that same face and same look and step, and the +same union of majesty and mildness.... And the feeling of enthusiasm +and love for his sovereign rose again in Rostov's soul in all its +old force. In the uniform of the Preobrazhensk regiment--white +chamois-leather breeches and high boots--and wearing a star Rostov did +not know (it was that of the Legion d'honneur), the monarch came out +into the porch, putting on his gloves and carrying his hat under his +arm. He stopped and looked about him, brightening everything around by +his glance. He spoke a few words to some of the generals, and, +recognizing the former commander of Rostov's division, smiled and +beckoned to him. + +All the suite drew back and Rostov saw the general talking for +some time to the Emperor. + +The Emperor said a few words to him and took a step toward his +horse. Again the crowd of members of the suite and street gazers +(among whom was Rostov) moved nearer to the Emperor. Stopping beside +his horse, with his hand on the saddle, the Emperor turned to the +cavalry general and said in a loud voice, evidently wishing to be +heard by all: + +"I cannot do it, General. I cannot, because the law is stronger than +I," and he raised his foot to the stirrup. + +The general bowed his head respectfully, and the monarch mounted and +rode down the street at a gallop. Beside himself with enthusiasm, +Rostov ran after him with the crowd. + + + + + +CHAPTER XXI + + +The Emperor rode to the square where, facing one another, a +battalion of the Preobrazhensk regiment stood on the right and a +battalion of the French Guards in their bearskin caps on the left. + +As the Tsar rode up to one flank of the battalions, which +presented arms, another group of horsemen galloped up to the +opposite flank, and at the head of them Rostov recognized Napoleon. It +could be no one else. He came at a gallop, wearing a small hat, a blue +uniform open over a white vest, and the St. Andrew ribbon over his +shoulder. He was riding a very fine thoroughbred gray Arab horse +with a crimson gold-embroidered saddlecloth. On approaching +Alexander he raised his hat, and as he did so, Rostov, with his +cavalryman's eye, could not help noticing that Napoleon did not sit +well or firmly in the saddle. The battalions shouted "Hurrah!" and +"Vive l'Empereur!" Napoleon said something to Alexander, and both +Emperors dismounted and took each other's hands. Napoleon's face +wore an unpleasant and artificial smile. Alexander was saying +something affable to him. + +In spite of the trampling of the French gendarmes' horses, which +were pushing back the crowd, Rostov kept his eyes on every movement of +Alexander and Bonaparte. It struck him as a surprise that Alexander +treated Bonaparte as an equal and that the latter was quite at ease +with the Tsar, as if such relations with an Emperor were an everyday +matter to him. + +Alexander and Napoleon, with the long train of their suites, +approached the right flank of the Preobrazhensk battalion and came +straight up to the crowd standing there. The crowd unexpectedly +found itself so close to the Emperors that Rostov, standing in the +front row, was afraid he might be recognized. + +"Sire, I ask your permission to present the Legion of Honor to the +bravest of your soldiers," said a sharp, precise voice, articulating +every letter. + +This was said by the undersized Napoleon, looking up straight into +Alexander's eyes. Alexander listened attentively to what was said to +him and, bending his head, smiled pleasantly. + +"To him who has borne himself most bravely in this last war," +added Napoleon, accentuating each syllable, as with a composure and +assurance exasperating to Rostov, he ran his eyes over the Russian +ranks drawn up before him, who all presented arms with their eyes +fixed on their Emperor. + +"Will Your Majesty allow me to consult the colonel?" said +Alexander and took a few hasty steps toward Prince Kozlovski, the +commander of the battalion. + +Bonaparte meanwhile began taking the glove off his small white hand, +tore it in doing so, and threw it away. An aide-de-camp behind him +rushed forward and picked it up. + +"To whom shall it be given?" the Emperor Alexander asked +Koslovski, in Russian in a low voice. + +"To whomever Your Majesty commands." + +The Emperor knit his brows with dissatisfaction and, glancing +back, remarked: + +"But we must give him an answer." + +Kozlovski scanned the ranks resolutely and included Rostov in his +scrutiny. + +"Can it be me?" thought Rostov. + +"Lazarev!" the colonel called, with a frown, and Lazarev, the +first soldier in the rank, stepped briskly forward. + +"Where are you off to? Stop here!" voices whispered to Lazarev who +did not know where to go. Lazarev stopped, casting a sidelong look +at his colonel in alarm. His face twitched, as often happens to +soldiers called before the ranks. + +Napoleon slightly turned his head, and put his plump little hand out +behind him as if to take something. The members of his suite, guessing +at once what he wanted, moved about and whispered as they passed +something from one to another, and a page--the same one Rostov had +seen the previous evening at Boris'--ran forward and, bowing +respectfully over the outstretched hand and not keeping it waiting a +moment, laid in it an Order on a red ribbon. Napoleon, without +looking, pressed two fingers together and the badge was between +them. Then he approached Lazarev (who rolled his eyes and persistently +gazed at his own monarch), looked round at the Emperor Alexander to +imply that what he was now doing was done for the sake of his ally, +and the small white hand holding the Order touched one of Lazarev's +buttons. It was as if Napoleon knew that it was only necessary for his +hand to deign to touch that soldier's breast for the soldier to be +forever happy, rewarded, and distinguished from everyone else in the +world. Napoleon merely laid the cross on Lazarev's breast and, +dropping his hand, turned toward Alexander as though sure that the +cross would adhere there. And it really did. + +Officious hands, Russian and French, immediately seized the cross +and fastened it to the uniform. Lazarev glanced morosely at the little +man with white hands who was doing something to him and, still +standing motionless presenting arms, looked again straight into +Alexander's eyes, as if asking whether he should stand there, or go +away, or do something else. But receiving no orders, he remained for +some time in that rigid position. + +The Emperors remounted and rode away. The Preobrazhensk battalion, +breaking rank, mingled with the French Guards and sat down at the +tables prepared for them. + +Lazarev sat in the place of honor. Russian and French officers +embraced him, congratulated him, and pressed his hands. Crowds of +officers and civilians drew near merely to see him. A rumble of +Russian and French voices and laughter filled the air round the tables +in the square. Two officers with flushed faces, looking cheerful and +happy, passed by Rostov. + +"What d'you think of the treat? All on silver plate," one of them +was saying. "Have you seen Lazarev?" + +"I have." + +"Tomorrow, I hear, the Preobrazhenskis will give them a dinner." + +"Yes, but what luck for Lazarev! Twelve hundred francs' pension +for life." + +"Here's a cap, lads!" shouted a Preobrazhensk soldier, donning a +shaggy French cap. + +"It's a fine thing! First-rate!" + +"Have you heard the password?" asked one Guards' officer of another. +"The day before yesterday it was 'Napoleon, France, bravoure'; +yesterday, 'Alexandre, Russie, grandeur.' One day our Emperor gives it +and next day Napoleon. Tomorrow our Emperor will send a St. George's +Cross to the bravest of the French Guards. It has to be done. He +must respond in kind." + +Boris, too, with his friend Zhilinski, came to see the Preobrazhensk +banquet. On his way back, he noticed Rostov standing by the corner +of a house. + +"Rostov! How d'you do? We missed one another," he said, and could +not refrain from asking what was the matter, so strangely dismal and +troubled was Rostov's face. + +"Nothing, nothing," replied Rostov. + +"You'll call round?" + +"Yes, I will." + +Rostov stood at that corner for a long time, watching the feast from +a distance. In his mind, a painful process was going on +which he could not bring to a conclusion. Terrible doubts rose in +his soul. Now he remembered Denisov with his changed expression, his +submission, and the whole hospital, with arms and legs torn off and +its dirt and disease. So vividly did he recall that hospital stench of +dead flesh that he looked round to see where the smell came from. Next +he thought of that self-satisfied Bonaparte, with his small white +hand, who was now an Emperor, liked and respected by Alexander. Then +why those severed arms and legs and those dead men?... Then again he +thought of Lazarev rewarded and Denisov punished and unpardoned. He +caught himself harboring such strange thoughts that he was frightened. + +The smell of the food the Preobrazhenskis were eating and a sense of +hunger recalled him from these reflections; he had to get something to +eat before going away. He went to a hotel he had noticed that morning. +There he found so many people, among them officers who, like +himself, had come in civilian clothes, that he had difficulty in +getting a dinner. Two officers of his own division joined him. The +conversation naturally turned on the peace. The officers, his +comrades, like most of the army, were dissatisfied with the peace +concluded after the battle of Friedland. They said that had we held +out a little longer Napoleon would have been done for, as his troops +had neither provisions nor ammunition. Nicholas ate and drank (chiefly +the latter) in silence. He finished a couple of bottles of wine by +himself. The process in his mind went on tormenting him without +reaching a conclusion. He feared to give way to his thoughts, yet +could not get rid of them. Suddenly, on one of the officers' saying +that it was humiliating to look at the French, Rostov began shouting +with uncalled-for wrath, and therefore much to the surprise of the +officers: + +"How can you judge what's best?" he cried, the blood suddenly +rushing to his face. "How can you judge the Emperor's actions? What +right have we to argue? We cannot comprehend either the Emperor's or +his actions!" + +"But I never said a word about the Emperor!" said the officer, +justifying himself, and unable to understand Rostov's outburst, except +on the supposition that he was drunk. + +But Rostov did not listen to him. + +"We are not diplomatic officials, we are soldiers and nothing more," +he went on. "If we are ordered to die, we must die. If we're punished, +it means that we have deserved it, it's not for us to judge. If the +Emperor pleases to recognize Bonaparte as Emperor and to conclude an +alliance with him, it means that that is the right thing to do. If +once we begin judging and arguing about everything, nothing sacred +will be left! That way we shall be saying there is no God--nothing!" +shouted Nicholas, banging the table--very little to the point as it +seemed to his listeners, but quite relevantly to the course of his own +thoughts. + +"Our business is to do our duty, to fight and not to think! That's +all...." said he. + +"And to drink," said one of the officers, not wishing to quarrel. + +"Yes, and to drink," assented Nicholas. "Hullo there! Another +bottle!" he shouted. + +In 1808 the Emperor Alexander went to Erfurt for a fresh interview +with the Emperor Napoleon, and in the upper circles of Petersburg +there was much talk of the grandeur of this important meeting. + + + + + +CHAPTER XXII + + +In 1809 the intimacy between "the world's two arbiters," as Napoleon +and Alexander were called, was such that when Napoleon declared war on +Austria a Russian corps crossed the frontier to co-operate with our +old enemy Bonaparte against our old ally the Emperor of Austria, and +in court circles the possibility of marriage between Napoleon and +one of Alexander's sisters was spoken of. But besides considerations +of foreign policy, the attention of Russian society was at that time +keenly directed on the internal changes that were being undertaken +in all the departments of government. + +Life meanwhile--real life, with its essential interests of health +and sickness, toil and rest, and its intellectual interests in +thought, science, poetry, music, love, friendship, hatred, and +passions--went on as usual, independently of and apart from +political friendship or enmity with Napoleon Bonaparte and from all +the schemes of reconstruction. + + + + +BOOK SIX: 1808 --10 + + + + + +CHAPTER I + + +Prince Andrew had spent two years continuously in the country. + +All the plans Pierre had attempted on his estates--and constantly +changing from one thing to another had never accomplished--were +carried out by Prince Andrew without display and without perceptible +difficulty. + +He had in the highest degree a practical tenacity which Pierre +lacked, and without fuss or strain on his part this set things going. + +On one of his estates the three hundred serfs were liberated and +became free agricultural laborers--this being one of the first +examples of the kind in Russia. On other estates the serfs' compulsory +labor was commuted for a quitrent. A trained midwife was engaged for +Bogucharovo at his expense, and a priest was paid to teach reading and +writing to the children of the peasants and household serfs. + +Prince Andrew spent half his time at Bald Hills with his father +and his son, who was still in the care of nurses. The other half he +spent in "Bogucharovo Cloister," as his father called Prince +Andrew's estate. Despite the indifference to the affairs of the +world he had expressed to Pierre, he diligently followed all that went +on, received many books, and to his surprise noticed that when he or +his father had visitors from Petersburg, the very vortex of life, +these people lagged behind himself--who never left the country--in +knowledge of what was happening in home and foreign affairs. + +Besides being occupied with his estates and reading a great +variety of books, Prince Andrew was at this time busy with a +critical of survey our last two unfortunate campaigns, and with +drawing up a proposal for a reform of the army rules and regulations. + +In the spring of 1809 he went to visit the Ryazan estates which +had been inherited by his son, whose guardian he was. + +Warmed by the spring sunshine he sat in the caleche looking at the +new grass, the first leaves on the birches, and the first puffs of +white spring clouds floating across the clear blue sky. He was not +thinking of anything, but looked absent-mindedly and cheerfully from +side to side. + +They crossed the ferry where he had talked with Pierre the year +before. They went through the muddy village, past threshing floors and +green fields of winter rye, downhill where snow still lodged near +the bridge, uphill where the clay had been liquefied by the rain, past +strips of stubble land and bushes touched with green here and there, +and into a birch forest growing on both sides of the road. In the +forest it was almost hot, no wind could be felt. The birches with +their sticky green leaves were motionless, and lilac-colored flowers +and the first blades of green grass were pushing up and lifting last +year's leaves. The coarse evergreen color of the small fir trees +scattered here and there among the birches was an unpleasant +reminder of winter. On entering the forest the horses began to snort +and sweated visibly. + +Peter the footman made some remark to the coachman; the latter +assented. But apparently the coachman's sympathy was not enough for +Peter, and he turned on the box toward his master. + +"How pleasant it is, your excellency!" he said with a respectful +smile. + +"What?" + +"It's pleasant, your excellency!" + +"What is he talking about?" thought Prince Andrew. "Oh, the +spring, I suppose," he thought as he turned round. "Yes, really +everything is green already.... How early! The birches and cherry +and alders too are coming out.... But the oaks show no sign yet. Ah, +here is one oak!" + + At the edge of the road stood an oak. Probably ten times the age of +the birches that formed the forest, it was ten times as thick and +twice as tall as they. It was an enormous tree, its girth twice as +great as a man could embrace, and evidently long ago some of its +branches had been broken off and its bark scarred. With its huge +ungainly limbs sprawling unsymmetrically, and its gnarled hands and +fingers, it stood an aged, stern, and scornful monster among the +smiling birch trees. Only the dead-looking evergreen firs dotted about +in the forest, and this oak, refused to yield to the charm of spring +or notice either the spring or the sunshine. + +"Spring, love, happiness!" this oak seemed to say. "Are you not +weary of that stupid, meaningless, constantly repeated fraud? Always +the same and always a fraud? There is no spring, no sun, no happiness! +Look at those cramped dead firs, ever the same, and at me too, +sticking out my broken and barked fingers just where they have +grown, whether from my back or my sides: as they have grown so I +stand, and I do not believe in your hopes and your lies." + +As he passed through the forest Prince Andrew turned several times +to look at that oak, as if expecting something from it. Under the oak, +too, were flowers and grass, but it stood among them scowling, +rigid, misshapen, and grim as ever. + +"Yes, the oak is right, a thousand times right," thought Prince +Andrew. "Let others--the young--yield afresh to that fraud, but we +know life, our life is finished!" + +A whole sequence of new thoughts, hopeless but mournfully +pleasant, rose in his soul in connection with that tree. During this +journey he, as it were, considered his life afresh and arrived at +his old conclusion, restful in its hopelessness: that it was not for +him to begin anything anew--but that he must live out his life, +content to do no harm, and not disturbing himself or desiring +anything. + + + + + +CHAPTER II + + +Prince Andrew had to see the Marshal of the Nobility for the +district in connection with the affairs of the Ryazan estate of +which he was trustee. This Marshal was Count Ilya Rostov, and in the +middle of May Prince Andrew went to visit him. + +It was now hot spring weather. The whole forest was already +clothed in green. It was dusty and so hot that on passing near water +one longed to bathe. + +Prince Andrew, depressed and preoccupied with the business about +which he had to speak to the Marshal, was driving up the avenue in the +grounds of the Rostovs' house at Otradnoe. He heard merry girlish +cries behind some trees on the right and saw a group of girls running to +cross the path of his caleche. Ahead of the rest and nearer to him ran +a dark-haired, remarkably slim, pretty girl in a yellow chintz +dress, with a white handkerchief on her head from under which loose +locks of hair escaped. The girl was shouting something but, seeing +that he was a stranger, ran back laughing without looking at him. + +Suddenly, he did not know why, he felt a pang. The day was so +beautiful, the sun so bright, everything around so gay, but that +slim pretty girl did not know, or wish to know, of his existence and +was contented and cheerful in her own separate--probably foolish- +but bright and happy life. "What is she so glad about? What is she +thinking of? Not of the military regulations or of the arrangement +of the Ryazan serfs' quitrents. Of what is she thinking? Why is she so +happy?" Prince Andrew asked himself with instinctive curiosity. + +In 1809 Count Ilya Rostov was living at Otradnoe just as he had done +in former years, that is, entertaining almost the whole province +with hunts, theatricals, dinners, and music. He was glad to see Prince +Andrew, as he was to see any new visitor, and insisted on his +staying the night. + +During the dull day, in the course of which he was entertained by +his elderly hosts and by the more important of the visitors (the old +count's house was crowded on account of an approaching name day), +Prince Andrew repeatedly glanced at Natasha, gay and laughing among +the younger members of the company, and asked himself each time, "What +is she thinking about? Why is she so glad?" + +That night, alone in new surroundings, he was long unable to +sleep. He read awhile and then put out his candle, but relit it. It +was hot in the room, the inside shutters of which were closed. He +was cross with the stupid old man (as he called Rostov), who had +made him stay by assuring him that some necessary documents had not +yet arrived from town, and he was vexed with himself for having +stayed. + +He got up and went to the window to open it. As soon as he opened +the shutters the moonlight, as if it had long been watching for +this, burst into the room. He opened the casement. The night was +fresh, bright, and very still. Just before the window was a row of +pollard trees, looking black on one side and with a silvery light on +the other. Beneath the trees grewsome kind of lush, wet, bushy +vegetation with silver-lit leaves and stems here and there. Farther +back beyond the dark trees a roof glittered with dew, to the right was +a leafy tree with brilliantly white trunk and branches, and above it +shone the moon, nearly at its full, in a pale, almost starless, spring +sky. Prince Andrew leaned his elbows on the window ledge and his +eyes rested on that sky. + +His room was on the first floor. Those in the rooms above were +also awake. He heard female voices overhead. + +"Just once more," said a girlish voice above him which Prince Andrew +recognized at once. + +"But when are you coming to bed?" replied another voice. + +"I won't, I can't sleep, what's the use? Come now for the last +time." + + Two girlish voices sang a musical passage--the end of some song. + +"Oh, how lovely! Now go to sleep, and there's an end of it." + +"You go to sleep, but I can't," said the first voice, coming +nearer to the window. She was evidently leaning right out, for the +rustle of her dress and even her breathing could be heard. +Everything was stone-still, like the moon and its light and the +shadows. Prince Andrew, too, dared not stir, for fear of betraying his +unintentional presence. + +"Sonya! Sonya!" he again heard the first speaker. "Oh, how can you +sleep? Only look how glorious it is! Ah, how glorious! Do wake up, +Sonya!" she said almost with tears in her voice. "There never, never +was such a lovely night before!" + +Sonya made some reluctant reply. + +"Do just come and see what a moon!... Oh, how lovely! Come +here.... Darling, sweetheart, come here! There, you see? I feel like +sitting down on my heels, putting my arms round my knees like this, +straining tight, as tight as possible, and flying away! Like this...." + +"Take care, you'll fall out." + +He heard the sound of a scuffle and Sonya's disapproving voice: +"It's past one o'clock." + +"Oh, you only spoil things for me. All right, go, go!" + +Again all was silent, but Prince Andrew knew she was still sitting +there. From time to time he heard a soft rustle and at times a sigh. + +"O God, O God! What does it mean?" she suddenly exclaimed. "To bed +then, if it must be!" and she slammed the casement. + +"For her I might as well not exist!" thought Prince Andrew while +he listened to her voice, for some reason expecting yet fearing that +she might say something about him. "There she is again! As if it +were on purpose," thought he. + +In his soul there suddenly arose such an unexpected turmoil of +youthful thoughts and hopes, contrary to the whole tenor of his +life, that unable to explain his condition to himself he lay down +and fell asleep at once. + + + + + +CHAPTER III + + +Next morning, having taken leave of no one but the count, and not +waiting for the ladies to appear, Prince Andrew set off for home. + +It was already the beginning of June when on his return journey he +drove into the birch forest where the gnarled old oak had made so +strange and memorable an impression on him. In the forest the +harness bells sounded yet more muffled than they had done six weeks +before, for now all was thick, shady, and dense, and the young firs +dotted about in the forest did not jar on the general beauty but, +lending themselves to the mood around, were delicately green with +fluffy young shoots. + +The whole day had been hot. Somewhere a storm was gathering, but +only a small cloud had scattered some raindrops lightly, sprinkling +the road and the sappy leaves. The left side of the forest was dark in +the shade, the right side glittered in the sunlight, wet and shiny and +scarcely swayed by the breeze. Everything was in blossom, the +nightingales trilled, and their voices reverberated now near, now +far away. + +"Yes, here in this forest was that oak with which I agreed," thought +Prince Andrew. "But where is it?" he again wondered, gazing at the +left side of the road, and without recognizing it he looked with +admiration at the very oak he sought. The old oak, quite transfigured, +spreading out a canopy of sappy dark-green foliage, stood rapt and +slightly trembling in the rays of the evening sun. Neither gnarled +fingers nor old scars nor old doubts and sorrows were any of them in +evidence now. Through the hard century-old bark, even where there were +no twigs, leaves had sprouted such as one could hardly believe the old +veteran could have produced. + +"Yes, it is the same oak," thought Prince Andrew, and all at once he +was seized by an unreasoning springtime feeling of joy and renewal. +All the best moments of his life suddenly rose to his memory. +Austerlitz with the lofty heavens, his wife's dead reproachful face, +Pierre at the ferry, that girl thrilled by the beauty of the night, +and that night itself and the moon, and.... all this rushed suddenly +to his mind. + +"No, life is not over at thirty-one!" Prince Andrew suddenly decided +finally and decisively. "It is not enough for me to know what I have +in me--everyone must know it: Pierre, and that young girl who wanted +to fly away into the sky, everyone must know me, so that my life may +not be lived for myself alone while others live so apart from it, +but so that it may be reflected in them all, and they and I may live +in harmony!" + + +On reaching home Prince Andrew decided to go to Petersburg that +autumn and found all sorts of reasons for this decision. A whole +serics of sensible and logical considerations showing it to be +essential for him to go to Petersburg, and even to re-enter the +service, kept springing up in his mind. He could not now understand +how he could ever even have doubted the necessity of taking an +active share in life, just as a month before he had not understood how +the idea of leaving the quiet country could ever enter his head. It +now seemed clear to him that all his experience of life must be +senselessly wasted unless he applied it to some kind of work and again +played an active part in life. He did not even remember how +formerly, on the strength of similar wretched logical arguments, it +had seemed obvious that he would be degrading himself if he now, after +the lessons he had had in life, allowed himself to believe in the +possibility of being useful and in the possibility of happiness or +love. Now reason suggested quite the opposite. After that journey to +Ryazan he found the country dull; his former pursuits no longer +interested him, and often when sitting alone in his study he got up, +went to the mirror, and gazed a long time at his own face. Then he +would turn away to the portrait of his dead Lise, who with hair curled +a la grecque looked tenderly and gaily at him out of the gilt frame. +She did not now say those former terrible words to him, but looked +simply, merrily, and inquisitively at him. And Prince Andrew, crossing +his arms behind him, long paced the room, now frowning, now smiling, +as he reflected on those irrational, inexpressible thoughts, secret as +a crime, which altered his whole life and were connected with +Pierre, with fame, with the girl at the window, the oak, and woman's +beauty and love. And if anyone came into his room at such moments he +was particularly cold, stern, and above all unpleasantly logical. + +"My dear," Princess Mary entering at such a moment would say, +"little Nicholas can't go out today, it's very cold." + +"If it were hot," Prince Andrew would reply at such times very dryly +to his sister, "he could go out in his smock, but as it is cold he +must wear warm clothes, which were designed for that purpose. That +is what follows from the fact that it is cold; and not that a child +who needs fresh air should remain at home," he would add with +extreme logic, as if punishing someone for those secret illogical +emotions that stirred within him. + +At such moments Princess Mary would think how intellectual work +dries men up. + + + + + +CHAPTER IV + + +Prince Andrew arrived in Petersburg in August, 1809. It was the time +when the youthful Speranski was at the zenith of his fame and his +reforms were being pushed forward with the greatest energy. That +same August the Emperor was thrown from his caleche, injured his +leg, and remained three weeks at Peterhof, receiving Speranski every +day and no one else. At that time the two famous decrees were being +prepared that so agitated society--abolishing court ranks and +introducing examinations to qualify for the grades of Collegiate +Assessor and State Councilor--and not merely these but a whole state +constitution, intended to change the existing order of government in +Russia: legal, administrative, and financial, from the Council of +State down to the district tribunals. Now those vague liberal dreams +with which the Emperor Alexander had ascended the throne, and which he +had tried to put into effect with the aid of his associates, +Czartoryski, Novosiltsev, Kochubey, and Strogonov--whom he himself +in jest had called his Comite de salut public--were taking shape and +being realized. + +Now all these men were replaced by Speranski on the civil side, +and Arakcheev on the military. Soon after his arrival Prince Andrew, +as a gentleman of the chamber, presented himself at court and at a +levee. The Emperor, though he met him twice, did not favor him with +a single word. It had always seemed to Prince Andrew before that he +was antipathetic to the Emperor and that the latter disliked his +face and personality generally, and in the cold, repellent glance +the Emperor gave him, he now found further confirmation of this +surmise. The courtiers explained the Emperor's neglect of him by His +Majesty's displeasure at Bolkonski's not having served since 1805. + +"I know myself that one cannot help one's sympathies and +antipathies," thought Prince Andrew, "so it will not do to present +my proposal for the reform of the army regulations to the Emperor +personally, but the project will speak for itself." + +He mentioned what he had written to an old field marshal, a friend +of his father's. The field marshal made an appointment to see him, +received him graciously, and promised to inform the Emperor. A few +days later Prince Andrew received notice that he was to go to see +the Minister of War, Count Arakcheev. + + +On the appointed day Prince Andrew entered Count Arakcheev's waiting +room at nine in the morning. + +He did not know Arakcheev personally, had never seen him, and all he +had heard of him inspired him with but little respect for the man. + +"He is Minister of War, a man trusted by the Emperor, and I need not +concern myself about his personal qualities: he has been +commissioned to consider my project, so he alone can get it +adopted," thought Prince Andrew as he waited among a number of +important and unimportant people in Count Arakcheev's waiting room. + +During his service, chiefly as an adjutant, Prince Andrew had seen +the anterooms of many important men, and the different types of such +rooms were well known to him. Count Arakcheev's anteroom had quite a +special character. The faces of the unimportant people awaiting +their turn for an audience showed embarrassment and servility; the +faces of those of higher rank expressed a common feeling of +awkwardness, covered by a mask of unconcern and ridicule of +themselves, their situation, and the person for whom they were +waiting. Some walked thoughtfully up and down, others whispered and +laughed. Prince Andrew heard the nickname "Sila Andreevich" and the +words, "Uncle will give it to us hot," in reference to Count +Arakcheev. One general (an important personage), evidently feeling +offended at having to wait so long, sat crossing and uncrossing his +legs and smiling contemptuously to himself. + +But the moment the door opened one feeling alone appeared on all +faces--that of fear. Prince Andrew for the second time asked the +adjutant on duty to take in his name, but received an ironical look +and was told that his turn would come in due course. After some others +had been shown in and out of the minister's room by the adjutant on +duty, an officer who struck Prince Andrew by his humiliated and +frightened air was admitted at that terrible door. This officer's +audience lasted a long time. Then suddenly the grating sound of a +harsh voice was heard from the other side of the door, and the +officer--with pale face and trembling lips--came out and passed +through the waiting room, clutching his head. + +After this Prince Andrew was conducted to the door and the officer +on duty said in a whisper, "To the right, at the window." + +Prince Andrew entered a plain tidy room and saw at the table a man +of forty with a long waist, a long closely cropped head, deep +wrinkles, scowling brows above dull greenish-hazel eyes and an +overhanging red nose. Arakcheev turned his head toward him without +looking at him. + +"What is your petition?" asked Arakcheev. + +"I am not petitioning, your excellency," returned Prince Andrew +quietly. + +Arakcheev's eyes turned toward him. + +"Sit down," said he. "Prince Bolkonski?" + +"I am not petitioning about anything. His Majesty the Emperor has +deigned to send your excellency a project submitted by me..." + +"You see, my dear sir, I have read your project," interrupted +Arakcheev, uttering only the first words amiably and then--again +without looking at Prince Andrew--relapsing gradually into a tone of +grumbling contempt. "You are proposing new military laws? There are +many laws but no one to carry out the old ones. Nowadays everybody +designs laws, it is easier writing than doing." + +"I came at His Majesty the Emperor's wish to learn from your +excellency how you propose to deal with the memorandum I have +presented," said Prince Andrew politely. + +"I have endorsed a resolution on your memorandum and sent it to +the committee. I do not approve of it," said Arakcheev, rising and +taking a paper from his writing table. "Here!" and he handed it to +Prince Andrew. + +Across the paper was scrawled in pencil, without capital letters, +misspelled, and without punctuation: "Unsoundly constructed because +resembles an imitation of the French military code and from the +Articles of War needlessly deviating." + +"To what committee has the memorandum been referred?" inquired +Prince Andrew. + +"To the Committee on Army Regulations, and I have recommended that +your honor should be appointed a member, but without a salary." + +Prince Andrew smiled. + +"I don't want one." + +"A member without salary," repeated Arakcheev. "I have the +honor... Eh! Call the next one! Who else is there?" he shouted, bowing +to Prince Andrew. + + + + + +CHAPTER V + + +While waiting for the announcement of his appointment to the +committee Prince Andrew looked up his former acquaintances, +particularly those he knew to be in power and whose aid he might need. +In Petersburg he now experienced the same feeling he had had on the +eve of a battle, when troubled by anxious curiosity and irresistibly +attracted to the ruling circles where the future, on which the fate of +millions depended, was being shaped. From the irritation of the +older men, the curiosity of the uninitiated, the reserve of the +initiated, the hurry and preoccupation of everyone, and the +innumerable committees and commissions of whose existence he learned +every day, he felt that now, in 1809, here in Petersburg a vast +civil conflict was in preparation, the commander in chief of which was +a mysterious person he did not know, but who was supposed to be a +man of genius--Speranski. And this movement of reconstruction of which +Prince Andrew had a vague idea, and Speranski its chief promoter, +began to interest him so keenly that the question of the army +regulations quickly receded to a secondary place in his consciousness. + +Prince Andrew was most favorably placed to secure good reception +in the highest and most diverse Petersburg circles of the day. The +reforming party cordially welcomed and courted him, the first place +because he was reputed to be clever and very well read, and secondly +because by liberating his serfs he had obtained the reputation of +being a liberal. The party of the old and dissatisfied, who censured +the innovations, turned to him expecting his sympathy in their +disapproval of the reforms, simply because he was the son of his +father. The feminine society world welcomed him gladly, because he was +rich, distinguished, a good match, and almost a newcomer, with a +halo of romance on account of his supposed death and the tragic loss +of his wife. Besides this the general opinion of all who had known him +previously was that he had greatly improved during these last five +years, having softened and grown more manly, lost his former +affectation, pride, and contemptuous irony, and acquired the +serenity that comes with years. People talked about him, were +interested in him, and wanted to meet him. + +The day after his interview with Count Arakcheev, Prince Andrew +spent the evening at Count Kochubey's. He told the count of his +interview with Sila Andreevich (Kochubey spoke of Arakcheev by that +nickname with the same vague irony Prince Andrew had noticed in the +Minister of War's anteroom). + +"Mon cher, even in this case you can't do without Michael +Mikhaylovich Speranski. He manages everything. I'll speak to him. He +has promised to come this evening." + +"What has Speranski to do with the army regulations?" asked Prince +Andrew. + +Kochubey shook his head smilingly, as if surprised at Bolkonski's +simplicity. + +"We were talking to him about you a few days ago," Kochubey +continued, "and about your freed plowmen." + +"Oh, is it you, Prince, who have freed your serfs?" said an old +man of Catherine's day, turning contemptuously toward Bolkonski. + +"It was a small estate that brought in no profit," replied Prince +Andrew, trying to extenuate his action so as not to irritate the old +man uselessly. + +"Afraid of being late..." said the old man, looking at Kochubey. + +"There's one thing I don't understand," he continued. "Who will plow +the land if they are set free? It is easy to write laws, but difficult +to rule.... Just the same as now--I ask you, Count--who will be +heads of the departments when everybody has to pass examinations?" + +"Those who pass the examinations, I suppose," replied Kochubey, +crossing his legs and glancing round. + +"Well, I have Pryanichnikov serving under me, a splendid man, a +priceless man, but he's sixty. Is he to go up for examination?" + +"Yes, that's a difficulty, as education is not at all general, +but..." + +Count Kochubey did not finish. He rose, took Prince Andrew by the +arm, and went to meet a tall, bald, fair man of about forty with a +large open forehead and a long face of unusual and peculiar whiteness, +who was just entering. The newcomer wore a blue swallow-tail coat with +a cross suspended from his neck and a star on his left breast. It +was Speranski. Prince Andrew recognized him at once, and felt a +throb within him, as happens at critical moments of life. Whether it +was from respect, envy, or anticipation, he did not know. +Speranski's whole figure was of a peculiar type that made him easily +recognizable. In the society in which Prince Andrew lived he had never +seen anyone who together with awkward and clumsy gestures possessed +such calmness and self-assurance; he had never seen so resolute yet +gentle an expression as that in those half-closed, rather humid +eyes, or so firm a smile that expressed nothing; nor had he heard such +a refined, smooth, soft voice; above all he had never seen such +delicate whiteness of face or hands--hands which were broad, but +very plump, soft, and white. Such whiteness and softness Prince Andrew +had only seen on the faces of soldiers who had been long in +hospital. This was Speranski, Secretary of State, reporter to the +Emperor and his companion at Erfurt, where he had more than once met +and talked with Napoleon. + +Speranski did not shift his eyes from one face to another as +people involuntarily do on entering a large company and was in no +hurry to speak. He spoke slowly, with assurance that he would be +listened to, and he looked only at the person with whom he was +conversing. + +Prince Andrew followed Speranski's every word and movement with +particular attention. As happens to some people, especially to men who +judge those near to them severely, he always on meeting anyone new- +especially anyone whom, like Speranski, he knew by reputation- +expected to discover in him the perfection of human qualities. + +Speranski told Kochubey he was sorry he had been unable to come +sooner as he had been detained at the palace. He did not say that +the Emperor had kept him, and Prince Andrew noticed this affectation +of modesty. When Kochubey introduced Prince Andrew, Speranski slowly +turned his eyes to Bolkonski with his customary smile and looked at +him in silence. + +"I am very glad to make your acquaintance. I had heard of you, as +everyone has," he said after a pause. + +Kochubey said a few words about the reception Arakcheev had given +Bolkonski. Speranski smiled more markedly. + +"The chairman of the Committee on Army Regulations is my good friend +Monsieur Magnitski," he said, fully articulating every word and +syllable, "and if you like I can put you in touch with him." He paused +at the full stop. "I hope you will find him sympathetic and ready to +co-operate in promoting all that is reasonable." + +A circle soon formed round Speranski, and the old man who had talked +about his subordinate Pryanichnikov addressed a question to him. + +Prince Andrew without joining in the conversation watched every +movement of Speranski's: this man, not long since an insignificant +divinity student, who now, Bolkonski thought, held in his hands--those +plump white hands--the fate of Russia. Prince Andrew was struck by the +extraordinarily disdainful composure with which Speranski answered the +old man. He appeared to address condescending words to him from an +immeasurable height. When the old man began to speak too loud, +Speranski smiled and said he could not judge of the advantage or +disadvantage of what pleased the sovereign. + +Having talked for a little while in the general circle, Speranski +rose and coming up to Prince Andrew took him along to the other end of +the room. It was clear that he thought it necessary to interest +himself in Bolkonski. + +"I had no chance to talk with you, Prince, during the animated +conversation in which that venerable gentleman involved me," he said +with a mildly contemptuous smile, as if intimating by that smile +that he and Prince Andrew understood the insignificance of the +people with whom he had just been talking. This flattered Prince +Andrew. "I have known of you for a long time: first from your action +with regard to your serfs, a first example, of which it is very +desirable that there should be more imitators; and secondly because +you are one of those gentlemen of the chamber who have not +considered themselves offended by the new decree concerning the +ranks allotted to courtiers, which is causing so much gossip and +tittle-tattle." + +"No," said Prince Andrew, "my father did not wish me to take +advantage of the privilege. I began the service from the lower grade." + +"Your father, a man of the last century, evidently stands above +our contemporaries who so condemn this measure which merely +reestablishes natural justice." + +"I think, however, that these condemnations have some ground," +returned Prince Andrew, trying to resist Speranski's influence, of +which he began to be conscious. He did not like to agree with him in +everything and felt a wish to contradict. Though he usually spoke +easily and well, he felt a difficulty in expressing himself now +while talking with Speranski. He was too much absorbed in observing +the famous man's personality. + +"Grounds of personal ambition maybe," Speranski put in quietly. + +"And of state interest to some extent," said Prince Andrew. + +"What do you mean?" asked Speranski quietly, lowering his eyes. + +"I am an admirer of Montesquieu," replied Prince Andrew, "and his +idea that le principe des monarchies est l'honneur me parait +incontestable. Certains droits et privileges de la noblesse me +paraissent etre des moyens de soutenir ce sentiment."* + + +*"The principle of monarchies is honor seems to me incontestable. +Certain rights and privileges for the aristocracy appear to me a means +of maintaining that sentiment." + + +The smile vanished from Speranski's white face, which was much +improved by the change. Probably Prince Andrew's thought interested +him. + +"Si vous envisagez la question sous ce point de vue,"* he began, +pronouncing French with evident difficulty, and speaking even slower +than in Russian but quite calmly. + + +*"If you regard the question from that point of view." + + +Speranski went on to say that honor, l'honeur, cannot be upheld by +privileges harmful to the service; that honor, l'honneur, is either +a negative concept of not doing what is blameworthy or it is a +source of emulation in pursuit of commendation and rewards, which +recognize it. His arguments were concise, simple, and clear. + +"An institution upholding honor, the source of emulation, is one +similar to the Legion d'honneur of the great Emperor Napoleon, not +harmful but helpful to the success of the service, but not a class +or court privilege." + +"I do not dispute that, but it cannot be denied that court +privileges have attained the same end," returned Prince Andrew. "Every +courtier considers himself bound to maintain his position worthily." + +"Yet you do not care to avail yourself of the privilege, Prince," +said Speranski, indicating by a smile that he wished to finish amiably +an argument which was embarrassing for his companion. "If you will +do me the honor of calling on me on Wednesday," he added, "I will, +after talking with Magnitski, let you know what may interest you, +and shall also have the pleasure of a more detailed chat with you." + +Closing his eyes, he bowed a la francaise, without taking leave, and +trying to attract as little attention as possible, he left the room. + + + + + +CHAPTER VI + + +During the first weeks of his stay in Petersburg Prince Andrew +felt the whole trend of thought he had formed during his life of +seclusion quite overshadowed by the trifling cares that engrossed +him in that city. + +On returning home in the evening he would jot down in his notebook +four or five necessary calls or appointments for certain hours. The +mechanism of life, the arrangement of the day so as to be in time +everywhere, absorbed the greater part of his vital energy. He did +nothing, did not even think or find time to think, but only talked, +and talked successfully, of what he had thought while in the country. + +He sometimes noticed with dissatisfaction that he repeated the +same remark on the same day in different circles. But he was so busy +for whole days together that he had no time to notice that he was +thinking of nothing. + +As he had done on their first meeting at Kochubey's, Speranski +produced a strong impression on Prince Andrew on the Wednesday, when +he received him tete-a-tate at his own house and talked to him long +and confidentially. + +To Bolkonski so many people appeared contemptible and +insignificant creatures, and he so longed to find in someone the +living ideal of that perfection toward which he strove, that he +readily believed that in Speranski he had found this ideal of a +perfectly rational and virtuous man. Had Speranski sprung from the +same class as himself and possessed the same breeding and +traditions, Bolkonski would soon have discovered his weak, human, +unheroic sides; but as it was, Speranski's strange and logical turn of +mind inspired him with respect all the more because he did not quite +understand him. Moreover, Speranski, either because he appreciated the +other's capacity or because he considered it necessary to win him to +his side, showed off his dispassionate calm reasonableness before +Prince Andrew and flattered him with that subtle flattery which goes +hand in hand with self-assurance and consists in a tacit assumption +that one's companion is the only man besides oneself capable of +understanding the folly of the rest of mankind and the +reasonableness and profundity of one's own ideas. + +During their long conversation on Wednesday evening, Speranski +more than once remarked: "We regard everything that is above the +common level of rooted custom..." or, with a smile: "But we want the +wolves to be fed and the sheep to be safe..." or: "They cannot +understand this..." and all in a way that seemed to say: "We, you +and I, understand what they are and who we are." + +This first long conversation with Speranski only strengthened in +Prince Andrew the feeling he had experienced toward him at their first +meeting. He saw in him a remarkable, clear-thinking man of vast +intellect who by his energy and persistence had attained power, +which he was using solely for the welfare of Russia. In Prince +Andrew's eyes Speranski was the man he would himself have wished to +be--one who explained all the facts of life reasonably, considered +important only what was rational, and was capable of applying the +standard of reason to everything. Everything seemed so simple and +clear in Speranski's exposition that Prince Andrew involuntarily +agreed with him about everything. If he replied and argued, it was +only because he wished to maintain his independence and not submit +to Speranski's opinions entirely. Everything was right and +everything was as it should be: only one thing disconcerted Prince +Andrew. This was Speranski's cold, mirrorlike look, which did not +allow one to penetrate to his soul, and his delicate white hands, +which Prince Andrew involuntarily watched as one does watch the +hands of those who possess power. This mirrorlike gaze and those +delicate hands irritated Prince Andrew, he knew not why. He was +unpleasantly struck, too, by the excessive contempt for others that he +observed in Speranski, and by the diversity of lines of argument he +used to support his opinions. He made use of every kind of mental +device, except analogy, and passed too boldly, it seemed to Prince +Andrew, from one to another. Now he would take up the position of a +practical man and condemn dreamers; now that of a satirist, and +laugh ironically at his opponents; now grow severely logical, or +suddenly rise to the realm of metaphysics. (This last resource was one +he very frequently employed.) He would transfer a question to +metaphysical heights, pass on to definitions of space, time, and +thought, and, having deduced the refutation he needed, would again +descend to the level of the original discussion. + +In general the trait of Speranski's mentality which struck Prince +Andrew most was his absolute and unshakable belief in the power and +authority of reason. It was evident that the thought could never occur +to him which to Prince Andrew seemed so natural, namely, that it is +after all impossible to express all one thinks; and that he had +never felt the doubt, "Is not all I think and believe nonsense?" And +it was just this peculiarity of Speranski's mind that particularly +attracted Prince Andrew. + +During the first period of their acquaintance Bolkonski felt a +passionate admiration for him similar to that which he had once felt +for Bonaparte. The fact that Speranski was the son of a village +priest, and that stupid people might meanly despise him on account +of his humble origin (as in fact many did), caused Prince Andrew to +cherish his sentiment for him the more, and unconsciously to +strengthen it. + +On that first evening Bolkonski spent with him, having mentioned the +Commission for the Revision of the Code of Laws, Speranski told him +sarcastically that the Commission had existed for a hundred and +fifty years, had cost millions, and had done nothing except that +Rosenkampf had stuck labels on the corresponding paragraphs of the +different codes. + +"And that is all the state has for the millions it has spent," +said he. "We want to give the Senate new juridical powers, but we have +no laws. That is why it is a sin for men like you, Prince, not to +serve in these times!" + +Prince Andrew said that for that work an education in +jurisprudence was needed which he did not possess. + +"But nobody possesses it, so what would you have? It is a vicious +circle from which we must break a way out." + +A week later Prince Andrew was a member of the Committee on Army +Regulations and--what he had not at all expected--was chairman of a +section of the committee for the revision of the laws. At +Speranski's request he took the first part of the Civil Code that +was being drawn up and, with the aid of the Code Napoleon and the +Institutes of Justinian, he worked at formulating the section on +Personal Rights. + + + + + +CHAPTER VII + + +Nearly two years before this, in 1808, Pierre on returning to +Petersburg after visiting his estates had involuntarily found +himself in a leading position among the Petersburg Freemasons. He +arranged dining and funeral lodge meetings, enrolled new members, +and busied himself uniting various lodges and acquiring authentic +charters. He gave money for the erection of temples and supplemented +as far as he could the collection of alms, in regard to which the +majority of members were stingy and irregular. He supported almost +singlehanded a poorhouse the order had founded in Petersburg. + +His life meanwhile continued as before, with the same infatuations +and dissipations. He liked to dine and drink well, and though he +considered it immoral and humiliating could not resist the temptations +of the bachelor circles in which he moved. + +Amid the turmoil of his activities and distractions, however, Pierre +at the end of a year began to feel that the more firmly he tried to +rest upon it, the more Masonic ground on which he stood gave way under +him. At the same time he felt that the deeper the ground sank under +him the closer bound he involuntarily became to the order. When he had +joined the Freemasons he had experienced the feeling of one who +confidently steps onto the smooth surface of a bog. When he put his +foot down it sank in. To make quite sure of the firmness the ground, +he put his other foot down and sank deeper still, became stuck in +it, and involuntarily waded knee-deep in the bog. + +Joseph Alexeevich was not in Petersburg--he had of late stood +aside from the affairs of the Petersburg lodges, and lived almost +entirely in Moscow. All the members of the lodges were men Pierre knew +in ordinary life, and it was difficult for him to regard them merely +as Brothers in Freemasonry and not as Prince B. or Ivan Vasilevich D., +whom he knew in society mostly as weak and insignificant men. Under +the Masonic aprons and insignia he saw the uniforms and decorations at +which they aimed in ordinary life. Often after collecting alms, and +reckoning up twenty to thirty rubles received for the most part in +promises from a dozen members, of whom half were as well able to pay +as himself, Pierre remembered the Masonic vow in which each Brother +promised to devote all his belongings to his neighbor, and doubts on +which he tried not to dwell arose in his soul. + +He divided the Brothers he knew into four categories. In the first +he put those who did not take an active part in the affairs of the +lodges or in human affairs, but were exclusively occupied with the +mystical science of the order: with questions of the threefold +designation of God, the three primordial elements--sulphur, mercury, +and salt--or the meaning of the square and all the various figures +of the temple of Solomon. Pierre respected this class of Brothers to +which the elder ones chiefly belonged, including, Pierre thought, +Joseph Alexeevich himself, but he did not share their interests. His +heart was not in the mystical aspect of Freemasonry. + +In the second category Pierre reckoned himself and others like +him, seeking and vacillating, who had not yet found in Freemasonry a +straight and comprehensible path, but hoped to do so. + +In the third category he included those Brothers (the majority) +who saw nothing in Freemasonry but the external forms and +ceremonies, and prized the strict performance of these forms without +troubling about their purport or significance. Such were Willarski and +even the Grand Master of the principal lodge. + +Finally, to the fourth category also a great many Brothers belonged, +particularly those who had lately joined. These according to +Pierre's observations were men who had no belief in anything, nor +desire for anything, but joined the Freemasons merely to associate +with the wealthy young Brothers who were influential through their +connections or rank, and of whom there were very many in the lodge. + +Pierre began to feel dissatisfied with what he was doing. +Freemasonry, at any rate as he saw it here, sometimes seemed to him +based merely on externals. He did not think of doubting Freemasonry +itself, but suspected that Russian Masonry had taken a wrong path +and deviated from its original principles. And so toward the end of +the year he went abroad to be initiated into the higher secrets of the +order. + +In the summer of 1809 Pierre returned to Petersburg. Our +Freemasons knew from correspondence with those abroad that Bezukhov +had obtained the confidence of many highly placed persons, had been +initiated into many mysteries, had been raised to a higher grade, +and was bringing back with him much that might conduce to the +advantage of the Masonic cause in Russia. The Petersburg Freemasons +all came to see him, tried to ingratiate themselves with him, and it +seemed to them all that he was preparing something for them and +concealing it. + +A solemn meeting of the lodge of the second degree was convened, +at which Pierre promised to communicate to the Petersburg Brothers +what he had to deliver to them from the highest leaders of their +order. The meeting was a full one. After the usual ceremonies Pierre +rose and began his address. + +"Dear Brothers," he began, blushing and stammering, with a written +speech in his hand, "it is not sufficient to observe our mysteries +in the seclusion of our lodge--we must act--act! We are drowsing, +but we must act." Pierre raised his notebook and began to read. + +"For the dissemination of pure truth and to secure the triumph of +virtue," he read, "we must cleanse men from prejudice, diffuse +principles in harmony with the spirit of the times, undertake the +education of the young, unite ourselves in indissoluble bonds with the +wisest men, boldly yet prudently overcome superstitions, infidelity, +and folly, and form of those devoted to us a body linked together by +unity of purpose and possessed of authority and power. + +"To attain this end we must secure a preponderance of virtue over +vice and must endeavor to secure that the honest man may, even in this +world, receive a lasting reward for his virtue. But in these great +endeavors we are gravely hampered by the political institutions of +today. What is to be done in these circumstances? To favor +revolutions, overthrow everything, repel force by force?... No! We are +very far from that. Every violent reform deserves censure, for it +quite fails to remedy evil while men remain what they are, and also +because wisdom needs no violence. + +"The whole plan of our order should be based on the idea of +preparing men of firmness and virtue bound together by unity of +conviction--aiming at the punishment of vice and folly, and +patronizing talent and virtue: raising worthy men from the dust and +attaching them to our Brotherhood. Only then will our order have the +power unobtrusively to bind the hands of the protectors of disorder +and to control them without their being aware of it. In a word, we +must found a form of government holding universal sway, which should +be diffused over the whole world without destroying the bonds of +citizenship, and beside which all other governments can continue in +their customary course and do everything except what impedes the great +aim of our order, which is to obtain for virtue the victory over vice. +This aim was that of Christianity itself. It taught men to be wise and +good and for their own benefit to follow the example and instruction +of the best and wisest men. + +"At that time, when everything was plunged in darkness, preaching +alone was of course sufficient. The novelty of Truth endowed her +with special strength, but now we need much more powerful methods. +It is now necessary that man, governed by his senses, should find in +virtue a charm palpable to those senses. It is impossible to eradicate +the passions; but we must strive to direct them to a noble aim, and it +is therefore necessary that everyone should be able to satisfy his +passions within the limits of virtue. Our order should provide means +to that end. + +"As soon as we have a certain number of worthy men in every state, +each of them again training two others and all being closely united, +everything will be possible for our order, which has already in secret +accomplished much for the welfare of mankind." + +This speech not only made a strong impression, but created +excitement in the lodge. The majority of the Brothers, seeing in it +dangerous designs of Illuminism,* met it with a coldness that +surprised Pierre. The Grand Master began answering him, and Pierre +began developing his views with more and more warmth. It was long +since there had been so stormy a meeting. Parties were formed, some +accusing Pierre of Illuminism, others supporting him. At that +meeting he was struck for the first time by the endless variety of +men's minds, which prevents a truth from ever presenting itself +identically to two persons. Even those members who seemed to be on his +side understood him in their own way with limitations and +alterations he could not agree to, as what he always wanted most was +to convey his thought to others just as he himself understood it. + + +*The Illuminati sought to substitute republican for monarchical +institutions. + + +At the end of the meeting the Grand Master with irony and ill-will +reproved Bezukhov for his vehemence and said it was not love of virtue +alone, but also a love of strife that had moved him in the dispute. +Pierre did not answer him and asked briefly whether his proposal would +be accepted. He was told that it would not, and without waiting for +the usual formalities he left the lodge and went home. + + + + + +CHAPTER VIII + + +Again Pierre was overtaken by the depression he so dreaded. For +three days after the delivery of his speech at the lodge he lay on a +sofa at home receiving no one and going nowhere. + +It was just then that he received a letter from his wife, who +implored him to see her, telling him how grieved she was about him and +how she wished to devote her whole life to him. + +At the end of the letter she informed him that in a few days she +would return to Petersburg from abroad. + +Following this letter one of the Masonic Brothers whom Pierre +respected less than the others forced his way in to see him and, +turning the conversation upon Pierre's matrimonial affairs, by way +of fraternal advice expressed the opinion that his severity to his +wife was wrong and that he was neglecting one of the first rules of +Freemasonry by not forgiving the penitent. + +At the same time his mother-in-law, Prince Vasili's wife, sent to +him imploring him to come if only for a few minutes to discuss a +most important matter. Pierre saw that there was a conspiracy +against him and that they wanted to reunite him with his wife, and +in the mood he then was, this was not even unpleasant to him. +Nothing mattered to him. Nothing in life seemed to him of much +importance, and under the influence of the depression that possessed +him he valued neither his liberty nor his resolution to punish his +wife. + +"No one is right and no one is to blame; so she too is not to +blame," he thought. + +If he did not at once give his consent to a reunion with his wife, +it was only because in his state of depression he did not feel able to +take any step. Had his wife come to him, he would not have turned +her away. Compared to what preoccupied him, was it not a matter of +indifference whether he lived with his wife or not? + +Without replying either to his wife or his mother-in-law, Pierre +late one night prepared for a journey and started for Moscow to see +Joseph Alexeevich. This is what he noted in his diary: + + +Moscow, 17th November + +I have just returned from my benefactor, and hasten to write down +what I have experienced. Joseph Alexeevich is living poorly and has +for three years been suffering from a painful disease of the +bladder. No one has ever heard him utter a groan or a word of +complaint. From morning till late at night, except when he eats his +very plain food, he is working at science. He received me graciously +and made me sit down on the bed on which he lay. I made the sign of +the Knights of the East and of Jerusalem, and he responded in the same +manner, asking me with a mild smile what I had learned and gained in +the Prussian and Scottish lodges. I told him everything as best I +could, and told him what I had proposed to our Petersburg lodge, of +the bad reception I had encountered, and of my rupture with the +Brothers. Joseph Alexeevich, having remained silent and thoughtful for +a good while, told me his view of the matter, which at once lit up for +me my whole past and the future path I should follow. He surprised +me by asking whether I remembered the threefold aim of the order: +(1) The preservation and study of the mystery. (2) The purification +and reformation of oneself for its reception, and (3) The +improvement of the human race by striving for such purification. Which +is the principal aim of these three? Certainly self-reformation and +self-purification. Only to this aim can we always strive independently +of circumstances. But at the same time just this aim demands the +greatest efforts of us; and so, led astray by pride, losing sight of +this aim, we occupy ourselves either with the mystery which in our +impurity we are unworthy to receive, or seek the reformation of the +human race while ourselves setting an example of baseness and +profligacy. Illuminism is not a pure doctrine, just because it is +attracted by social activity and puffed up by pride. On this ground +Joseph Alexeevich condemned my speech and my whole activity, and in +the depth of my soul I agreed with him. Talking of my family affairs +he said to me, "the chief duty of a true Mason, as I have told you, +lies in perfecting himself. We often think that by removing all the +difficulties of our life we shall more quickly reach our aim, but on +the contrary, my dear sir, it is only in the midst of worldly cares +that we can attain our three chief aims: (1) Self-knowledge--for man +can only know himself by comparison, (2) Self-perfecting, which can +only be attained by conflict, and (3) The attainment of the chief +virtue--love of death. Only the vicissitudes of life can show us its +vanity and develop our innate love of death or of rebirth to a new +life." These words are all the more remarkable because, in spite of +his great physical sufferings, Joseph Alexeevich is never weary of +life though he loves death, for which--in spite of the purity and +loftiness of his inner man--he does not yet feel himself +sufficiently prepared. My benefactor then explained to me fully the +meaning of the Great Square of creation and pointed out to me that the +numbers three and seven are the basis of everything. He advised me not +to avoid intercourse with the Petersburg Brothers, but to take up only +second-grade posts in the lodge, to try, while diverting the +Brothers from pride, to turn them toward the true path +self-knowledge and self-perfecting. Besides this he advised me for +myself personally above all to keep a watch over myself, and to that +end he gave me a notebook, the one I am now writing in and in which +I will in future note down all my actions. + + +Petersburg, 23rd November + +I am again living with my wife. My mother-in-law came to me in tears +and said that Helene was here and that she implored me to hear her; +that she was innocent and unhappy at my desertion, and much more. I +knew that if I once let myself see her I should not have strength to +go on refusing what she wanted. In my perplexity I did not know +whose aid and advice to seek. Had my benefactor been here he would +have told me what to do. I went to my room and reread Joseph +Alexeevich's letters and recalled my conversations with him, and +deduced from it all that I ought not to refuse a suppliant, and +ought to reach a helping hand to everyone--especially to one so +closely bound to me--and that I must bear my cross. But if I forgive +her for the sake of doing right, then let union with her have only a +spiritual aim. That is what I decided, and what I wrote to Joseph +Alexeevich. I told my wife that I begged her to forget the past, to +forgive me whatever wrong I may have done her, and that I had +nothing to forgive. It gave me joy to tell her this. She need not know +how hard it was for me to see her again. I have settled on the upper +floor of this big house and am experiencing a happy feeling of +regeneration. + + + + + +CHAPTER IX + + +At that time, as always happens, the highest society that met at +court and at the grand balls was divided into several circles, each +with its own particular tone. The largest of these was the French +circle of the Napoleonic alliance, the circle of Count Rumyantsev +and Caulaincourt. In this group Helene, as soon as she had settled +in Petersburg with her husband, took a very prominent place. She was +visited by the members of the French embassy and by many belonging +to that circle and noted for their intellect and polished manners. + +Helene had been at Erfurt during the famous meeting of the +Emperors and had brought from there these connections with the +Napoleonic notabilities. At Erfurt her success had been brilliant. +Napoleon himself had noticed her in the theater and said of her: +"C'est un superbe animal."* Her success as a beautiful and elegant +woman did not surprise Pierre, for she had become even handsomer +than before. What did surprise him was that during these last two +years his wife had succeeded in gaining the reputation "d' une femme +charmante, aussi spirituelle que belle."*[2] The distinguished +Prince de Ligne wrote her eight-page letters. Bilibin saved up his +epigrams to produce them in Countess Bezukhova's presence. To be +received in the Countess Bezukhova's salon was regarded as a diploma +of intellect. Young men read books before attending Helene's evenings, +to have something to say in her salon, and secretaries of the embassy, +and even ambassadors, confided diplomatic secrets to her, so that in a +way Helene was a power. Pierre, who knew she was very stupid, +sometimes attended, with a strange feeling of perplexity and fear, her +evenings and dinner parties, where politics, poetry, and philosophy +were discussed. At these parties his feelings were like those of a +conjuror who always expects his trick to be found out at any moment. +But whether because stupidity was just what was needed to run such a +salon, or because those who were deceived found pleasure in the +deception, at any rate it remained unexposed and Helene Bezukhova's +reputation as a lovely and clever woman became so firmly established +that she could say the emptiest and stupidest things and everybody +would go into raptures over every word of hers and look for a profound +meaning in it of which she herself had no conception. + + +*"That's a superb animal." + +*[2] "Of a charming woman, as witty as she is lovely." + + +Pierre was just the husband needed for a brilliant society woman. He +was that absent-minded crank, a grand seigneur husband who was in no +one's way, and far from spoiling the high tone and general +impression of the drawing room, he served, by the contrast he +presented to her, as an advantageous background to his elegant and +tactful wife. Pierre during the last two years, as a result of his +continual absorption in abstract interests and his sincere contempt +for all else, had acquired in his wife's circle, which did not +interest him, that air of unconcern, indifference, and benevolence +toward all, which cannot be acquired artificially and therefore +inspires involuntary respect. He entered his wife's drawing room as +one enters a theater, was acquainted with everybody, equally pleased +to see everyone, and equally indifferent to them all. Sometimes he +joined in a conversation which interested him and, regardless of +whether any "gentlemen of the embassy" were present or not, +lispingly expressed his views, which were sometimes not at all in +accord with the accepted tone of the moment. But the general opinion +concerning the queer husband of "the most distinguished woman in +Petersburg" was so well established that no one took his freaks +seriously. + +Among the many young men who frequented her house every day, Boris +Drubetskoy, who had already achieved great success in the service, was +the most intimate friend of the Bezukhov household since Helene's +return from Erfurt. Helene spoke of him as "mon page" and treated +him like a child. Her smile for him was the same as for everybody, but +sometimes that smile made Pierre uncomfortable. Toward him Boris +behaved with a particularly dignified and sad deference. This shade of +deference also disturbed Pierre. He had suffered so painfully three +years before from the mortification to which his wife had subjected +him that he now protected himself from the danger of its repetition, +first by not being a husband to his wife, and secondly by not allowing +himself to suspect. + +"No, now that she has become a bluestocking she has finally +renounced her former infatuations," he told himself. "There has +never been an instance of a bluestocking being carried away by affairs +of the heart"--a statement which, though gathered from an unknown +source, he believed implicitly. Yet strange to say Boris' presence +in his wife's drawing room (and he was almost always there) had a +physical effect upon Pierre; it constricted his limbs and destroyed +the unconsciousness and freedom of his movements. + +"What a strange antipathy," thought Pierre, "yet I used to like +him very much." + +In the eyes of the world Pierre was a great gentleman, the rather +blind and absurd husband of a distinguished wife, a clever crank who +did nothing but harmed nobody and was a first-rate, good-natured +fellow. But a complex and difficult process of internal development +was taking place all this time in Pierre's soul, revealing much to him +and causing him many spiritual doubts and joys. + + + + + +CHAPTER X + + +Pierre went on with his diary, and this is what he wrote in it +during that time: + + +24th November + +Got up at eight, read the Scriptures, then went to my duties. [By +Joseph Alexeevich's advice Pierre had entered the service of the state +and served on one of the committees.] Returned home for dinner and +dined alone--the countess had many visitors I do not like. I ate and +drank moderately and after dinner copied out some passages for the +Brothers. In the evening I went down to the countess and told a +funny story about B., and only remembered that I ought not to have +done so when everybody laughed loudly at it. + +I am going to bed with a happy and tranquil mind. Great God, help me +to walk in Thy paths, (1) to conquer anger by calmness and +deliberation, (2) to vanquish lust by self-restraint and repulsion, +(3) to withdraw from worldliness, but not avoid (a) the service of the +state, (b) family duties, (c) relations with my friends, and the +management of my affairs. + + +27th November + +I got up late. On waking I lay long in bed yielding to sloth. O God, +help and strengthen me that I may walk in Thy ways! Read the +Scriptures, but without proper feeling. Brother Urusov came and we +talked about worldly vanities. He told me of the Emperor's new +projects. I began to criticize them, but remembered my rules and my +benefactor's words--that a true Freemason should be a zealous worker +for the state when his aid is required and a quiet onlooker when not +called on to assist. My tongue is my enemy. Brothers G. V. and O. +visited me and we had a preliminary talk about the reception of a +new Brother. They laid on me the duty of Rhetor. I feel myself weak +and unworthy. Then our talk turned to the interpretation of the +seven pillars and steps of the Temple, the seven sciences, the seven +virtues, the seven vices, and the seven gifts of the Holy Spirit. +Brother O. was very eloquent. In the evening the admission took place. +The new decoration of the Premises contributed much to the +magnificence of the spectacle. It was Boris Drubetskoy who was +admitted. I nominated him and was the Rhetor. A strange feeling +agitated me all the time I was alone with him in the dark chamber. I +caught myself harboring a feeling of hatred toward him which I +vainly tried to overcome. That is why I should really like to save him +from evil and lead him into the path of truth, but evil thoughts of +him did not leave me. It seemed to me that his object in entering +the Brotherhood was merely to be intimate and in favor with members of +our lodge. Apart from the fact that he had asked me several times +whether N. and S. were members of our lodge (a question to which I +could not reply) and that according to my observation he is +incapable of feeling respect for our holy order and is too preoccupied +and satisfied with the outer man to desire spiritual improvement, I +had no cause to doubt him, but he seemed to me insincere, and all +the time I stood alone with him in the dark temple it seemed to me +that he was smiling contemptuously at my words, and I wished really to +stab his bare breast with the sword I held to it. I could not be +eloquent, nor could I frankly mention my doubts to the Brothers and to +the Grand Master. Great Architect of Nature, help me to find the +true path out of the labyrinth of lies! + + + After this, three pages were left blank in the diary, and then +the following was written: + + +I have had a long and instructive talk alone with Brother V., who +advised me to hold fast by brother A. Though I am unworthy, much was +revealed to me. Adonai is the name of the creator of the world. Elohim +is the name of the ruler of all. The third name is the name +unutterable which means the All. Talks with Brother V. strengthen, +refresh, and support me in the path of virtue. In his presence doubt +has no place. The distinction between the poor teachings of mundane +science and our sacred all-embracing teaching is clear to me. Human +sciences dissect everything to comprehend it, and kill everything to +examine it. In the holy science of our order all is one, all is +known in its entirety and life. The Trinity--the three elements of +matter--are sulphur, mercury, and salt. Sulphur is of an oily and +fiery nature; in combination with salt by its fiery nature it +arouses a desire in the latter by means of which it attracts +mercury, seizes it, holds it, and in combination produces other +bodies. Mercury is a fluid, volatile, spiritual essence. Christ, the +Holy Spirit, Him!... + + +3rd December + +Awoke late, read the Scriptures but was apathetic. Afterwards went +and paced up and down the large hall. I wished to meditate, but +instead my imagination pictured an occurrence of four years ago, +when Dolokhov, meeting me in Moscow after our duel, said he hoped I +was enjoying perfect peace of mind in spite of my wife's absence. At +the time I gave him no answer. Now I recalled every detail of that +meeting and in my mind gave him the most malevolent and bitter +replies. I recollected myself and drove away that thought only when +I found myself glowing with anger, but I did not sufficiently +repent. Afterwards Boris Drubetskoy came and began relating various +adventures. His coming vexed me from the first, and I said something +disagreeable to him. He replied. I flared up and said much that was +unpleasant and even rude to him. He became silent, and I recollected +myself only when it was too late. My God, I cannot get on with him +at all. The cause of this is my egotism. I set myself above him and so +become much worse than he, for he is lenient to my rudeness while I on +the contrary nourish contempt for him. O God, grant that in his +presence I may rather see my own vileness, and behave so that he too +may benefit. After dinner I fell asleep and as I was drowsing off I +clearly heard a voice saying in my left ear, "Thy day!" + +I dreamed that I was walking in the dark and was suddenly surrounded +by dogs, but I went on undismayed. Suddenly a smallish dog seized my +left thigh with its teeth and would not let go. I began to throttle it +with my hands. Scarcely had I torn it off before another, a bigger +one, began biting me. I lifted it up, but the higher I lifted it the +bigger and heavier it grew. And suddenly Brother A. came and, taking +my arm, led me to a building to enter which we had to pass along a +narrow plank. I stepped on it, but it bent and gave way and I began to +clamber up a fence which I could scarcely reach with my hands. After +much effort I dragged myself up, so that my leg hung down on one +side and my body on the other. I looked round and saw Brother A. +standing on the fence and pointing me to a broad avenue and garden, +and in the garden was a large and beautiful building. I woke up. O +Lord, great Architect of Nature, help me to tear from myself these +dogs--my passions especially the last, which unites in itself the +strength of all the former ones, and aid me to enter that temple of +virtue to a vision of which I attained in my dream. + + +7th December + +I dreamed that Joseph Alexeevich was sitting in my house, and that I +was very glad and wished to entertain him. It seemed as if I chattered +incessantly with other people and suddenly remembered that this +could not please him, and I wished to come close to him and embrace +him. But as soon as I drew near I saw that his face had changed and +grown young, and he was quietly telling me something about the +teaching of our order, but so softly that I could not hear it. Then it +seemed that we all left the room and something strange happened. We +were sitting or lying on the floor. He was telling me something, and I +wished to show him my sensibility, and not listening to what he was +saying I began picturing to myself the condition of my inner man and +the grace of God sanctifying me. And tears came into my eyes, and I +was glad he noticed this. But he looked at me with vexation and jumped +up, breaking off his remarks. I felt abashed and asked whether what he +had been saying did not concern me; but he did not reply, gave me a +kind look, and then we suddenly found ourselves in my bedroom where +there is a double bed. He lay down on the edge of it and I burned with +longing to caress him and lie down too. And he said, "Tell me +frankly what is your chief temptation? Do you know it? I think you +know it already." Abashed by this question, I replied that sloth was +my chief temptation. He shook his head incredulously; and even more +abashed, I said that though I was living with my wife as he advised, I +was not living with her as her husband. To this he replied that one +should not deprive a wife of one's embraces and gave me to +understand that that was my duty. But I replied that I should be +ashamed to do it, and suddenly everything vanished. And I awoke and +found in my mind the text from the Gospel: "The life was the light +of men. And the light shineth in darkness; and the darkness +comprehended it not." Joseph Alexeevich's face had looked young and +bright. That day I received a letter from my benefactor in which he +wrote about "conjugal duties." + + +9th December + +I had a dream from which I awoke with a throbbing heart. I saw +that I was in Moscow in my house, in the big sitting room, and +Joseph Alexeevich came in from the drawing room. I seemed to know at +once that the process of regeneration had already taken place in +him, and I rushed to meet him. I embraced him and kissed his hands, +and he said, "Hast thou noticed that my face is different?" I looked +at him, still holding him in my arms, and saw that his face was young, +but that he had no hair on his head and his features were quite +changed. And I said, "I should have known you had I met you by +chance," and I thought to myself, "Am I telling the truth?" And +suddenly I saw him lying like a dead body; then he gradually recovered +and went with me into my study carrying a large book of sheets of +drawing paper; I said, "I drew that," and he answered by bowing his +head. I opened the book, and on all the pages there were excellent +drawings. And in my dream I knew that these drawings represented the +love adventures of the soul with its beloved. And on its pages I saw a +beautiful representation of a maiden in transparent garments and +with a transparent body, flying up to the clouds. And I seemed to know +that this maiden was nothing else than a representation of the Song of +Songs. And looking at those drawings I dreamed I felt that I was doing +wrong, but could not tear myself away from them. Lord, help me! My +God, if Thy forsaking me is Thy doing, Thy will be done; but if I am +myself the cause, teach me what I should do! I shall perish of my +debauchery if Thou utterly desertest me! + + + + + +CHAPTER XI + + +The Rostovs' monetary affairs had not improved during the two +years they had spent in the country. + +Though Nicholas Rostov had kept firmly to his resolution and was +still serving modestly in an obscure regiment, spending +comparatively little, the way of life at Otradnoe--Mitenka's +management of affairs, in particular--was such that the debts +inevitably increased every year. The only resource obviously +presenting itself to the old count was to apply for an official +post, so he had come to Petersburg to look for one and also, as he +said, to let the lassies enjoy themselves for the last time. + +Soon after their arrival in Petersburg Berg proposed to Vera and was +accepted. + +Though in Moscow the Rostovs belonged to the best society without +themselves giving it a thought, yet in Petersburg their circle of +acquaintances was a mixed and indefinite one. In Petersburg they +were provincials, and the very people they had entertained in Moscow +without inquiring to what set they belonged, here looked down on them. + +The Rostovs lived in the same hospitable way in Petersburg as in +Moscow, and the most diverse people met at their suppers. Country +neighbors from Otradnoe, impoverished old squires and their daughters, +Peronskaya a maid of honor, Pierre Bezukhov, and the son of their +district postmaster who had obtained a post in Petersburg. Among the +men who very soon became frequent visitors at the Rostovs' house in +Petersburg were Boris, Pierre whom the count had met in the street and +dragged home with him, and Berg who spent whole days at the Rostovs' +and paid the eldest daughter, Countess Vera, the attentions a young +man pays when he intends to propose. + +Not in vain had Berg shown everybody his right hand wounded at +Austerlitz and held a perfectly unnecessary sword in his left. He +narrated that episode so persistently and with so important an air +that everyone believed in the merit and usefulness of his deed, and he +had obtained two decorations for Austerlitz. + +In the Finnish war he also managed to distinguish himself. He had +picked up the scrap of a grenade that had killed an aide-de-camp +standing near the commander in chief and had taken it to his +commander. Just as he had done after Austerlitz, he related this +occurrence at such length and so insistently that everyone again +believed it had been necessary to do this, and he received two +decorations for the Finnish war also. In 1809 he was a captain in +the Guards, wore medals, and held some special lucrative posts in +Petersburg. + +Though some skeptics smiled when told of Berg's merits, it could not +be denied that he was a painstaking and brave officer, on excellent +terms with his superiors, and a moral young man with a brilliant +career before him and an assured position in society. + +Four years before, meeting a German comrade in the stalls of a +Moscow theater, Berg had pointed out Vera Rostova to him and had +said in German, "das soll mein Weib werden,"* and from that moment had +made up his mind to marry her. Now in Petersburg, having considered +the Rostovs' position and his own, he decided that the time had come +to propose. + + +*"That girl shall be my wife." + + +Berg's proposal was at first received with a perplexity that was not +flattering to him. At first it seemed strange that the son of an +obscure Livonian gentleman should propose marriage to a Countess +Rostova; but Berg's chief characteristic was such a naive and good +natured egotism that the Rostovs involuntarily came to think it +would be a good thing, since he himself was so firmly convinced that +it was good, indeed excellent. Moreover, the Rostovs' affairs were +seriously embarrassed, as the suitor could not but know; and above +all, Vera was twenty-four, had been taken out everywhere, and though +she was certainly good-looking and sensible, no one up to now had +proposed to her. So they gave their consent. + +"You see," said Berg to his comrade, whom he called "friend" only +because he knew that everyone has friends, "you see, I have considered +it all, and should not marry if I had not thought it all out or if +it were in any way unsuitable. But on the contrary, my papa and +mamma are now provided for--I have arranged that rent for them in +the Baltic Provinces--and I can live in Petersburg on my pay, and with +her fortune and my good management we can get along nicely. I am not +marrying for money--I consider that dishonorable--but a wife should +bring her share and a husband his. I have my position in the +service, she has connections and some means. In our times that is +worth something, isn't it? But above all, she is a handsome, estimable +girl, and she loves me..." + +Berg blushed and smiled. + +"And I love her, because her character is sensible and very good. +Now the other sister, though they are the same family, is quite +different--an unpleasant character and has not the same +intelligence. She is so... you know?... Unpleasant... But my +fiancee!... Well, you will be coming," he was going to say, "to dine," +but changed his mind and said "to take tea with us," and quickly +doubling up his tongue he blew a small round ring of tobacco smoke, +perfectly embodying his dream of happiness. + +After the first feeling of perplexity aroused in the parents by +Berg's proposal, the holiday tone of joyousness usual at such times +took possession of the family, but the rejoicing was external and +insincere. In the family's feeling toward this wedding a certain +awkwardness and constraint was evident, as if they were ashamed of not +having loved Vera sufficiently and of being so ready to get her off +their hands. The old count felt this most. He would probably have been +unable to state the cause of his embarrassment, but it resulted from +the state of his affairs. He did not know at all how much he had, what +his debts amounted to, or what dowry he could give Vera. When his +daughters were born he had assigned to each of them, for her dowry, an +estate with three hundred serfs; but one of these estates had +already been sold, and the other was mortgaged and the interest so +much in arrears that it would have to be sold, so that it was +impossible to give it to Vera. Nor had he any money. + +Berg had already been engaged a month, and only a week remained +before the wedding, but the count had not yet decided in his own +mind the question of the dowry, nor spoken to his wife about it. At +one time the count thought of giving her the Ryazan estate or of +selling a forest, at another time of borrowing money on a note of +hand. A few days before the wedding Berg entered the count's study +early one morning and, with a pleasant smile, respectfully asked his +future father-in-law to let him know what Vera's dowry would be. The +count was so disconcerted by this long-foreseen inquiry that without +consideration he gave the first reply that came into his head. "I like +your being businesslike about it.... I like it. You shall be +satisfied...." + +And patting Berg on the shoulder he got up, wishing to end the +conversation. But Berg, smiling pleasantly, explained that if he did +not know for certain how much Vera would have and did not receive at +least part of the dowry in advance, he would have to break matters +off. + +"Because, consider, Count--if I allowed myself to marry now +without having definite means to maintain my wife, I should be +acting badly...." + +The conversation ended by the count, who wished to be generous and +to avoid further importunity, saying that he would give a note of hand +for eighty thousand rubles. Berg smiled meekly, kissed the count on +the shoulder, and said that he was very grateful, but that it was +impossible for him to arrange his new life without receiving thirty +thousand in ready money. "Or at least twenty thousand, Count," he +added, "and then a note of hand for only sixty thousand." + +"Yes, yes, all right!" said the count hurriedly. "Only excuse me, my + +dear fellow, I'll give you twenty thousand and a note of hand for +eighty thousand as well. Yes, yes! Kiss me." + + + + + +CHAPTER XII + + +Natasha was sixteen and it was the year 1809, the very year to which +she had counted on her fingers with Boris after they had kissed four +years ago. Since then she had not seen him. Before Sonya and her +mother, if Boris happened to be mentioned, she spoke quite freely of +that episode as of some childish, long-forgotten matter that was not +worth mentioning. But in the secret depths of her soul the question +whether her engagement to Boris was a jest or an important, binding +promise tormented her. + +Since Boris left Moscow in 1805 to join the army he had had not seen +the Rostovs. He had been in Moscow several times, and had passed +near Otradnoe, but had never been to see them. + +Sometimes it occurred to Natasha that he not wish to see her, and +this conjecture was confirmed by the sad tone in which her elders +spoke of him. + +"Nowadays old friends are not remembered," the countess would say +when Boris was mentioned. + +Anna Mikhaylovna also had of late visited them less frequently, +seemed to hold herself with particular dignity, and always spoke +rapturously and gratefully of the merits of her son and the +brilliant career on which he had entered. When the Rostovs came to +Petersburg Boris called on them. + +He drove to their house in some agitation. The memory of Natasha was +his most poetic recollection. But he went with the firm intention of +letting her and her parents feel that the childish relations between +himself and Natasha could not be binding either on her or on him. He +had a brilliant position in society thanks to his intimacy with +Countess Bezukhova, a brilliant position in the service thanks to +the patronage of an important personage whose complete confidence he +enjoyed, and he was beginning to make plans for marrying one of the +richest heiresses in Petersburg, plans which might very easily be +realized. When he entered the Rostovs' drawing room Natasha was in her +own room. When she heard of his arrival she almost ran into the +drawing room, flushed and beaming with a more than cordial smile. + +Boris remembered Natasha in a short dress, with dark eyes shining +from under her curls and boisterous, childish laughter, as he had +known her four years before; and so he was taken aback when quite a +different Natasha entered, and his face expressed rapturous +astonishment. This expression on his face pleased Natasha. + +"Well, do you recognize your little madcap playmate?" asked the +countess. + +Boris kissed Natasha's hand and said that he was astonished at the +change in her. + +"How handsome you have grown!" + +"I should think so!" replied Natasha's laughing eyes. + +"And is Papa older?" she asked. + +Natasha sat down and, without joining in Boris' conversation with +the countess, silently and minutely studied her childhood's suitor. He +felt the weight of that resolute and affectionate scrutiny and glanced +at her occasionally. + +Boris' uniform, spurs, tie, and the way his hair was brushed were +all comme il faut and in the latest fashion. This Natasha noticed at +once. He sat rather sideways in the armchair next to the countess, +arranging with his right hand the cleanest of gloves that fitted his +left hand like a skin, and he spoke with a particularly refined +compression of his lips about the amusements of the highest Petersburg +society, recalling with mild irony old times in Moscow and Moscow +acquaintances. It was not accidentally, Natasha felt, that he alluded, +when speaking of the highest aristocracy, to an ambassador's ball he +had attended, and to invitations he had received from N.N. and S.S. + +All this time Natasha sat silent, glancing up at him from under +her brows. This gaze disturbed and confused Boris more and more. He +looked round more frequently toward her, and broke off in what he +was saying. He did not stay more than ten minutes, then rose and +took his leave. The same inquisitive, challenging, and rather +mocking eyes still looked at him. After his first visit Boris said +to himself that Natasha attracted him just as much as ever, but that +he must not yield to that feeling, because to marry her, a girl almost +without fortune, would mean ruin to his career, while to renew their +former relations without intending to marry her would be dishonorable. +Boris made up his mind to avoid meeting Natasha, but despite that +resolution he called again a few days later and began calling often +and spending whole days at the Rostovs'. It seemed to him that he +ought to have an explanation with Natasha and tell her that the old +times must be forgotten, that in spite of everything... she could +not be his wife, that he had no means, and they would never let her +marry him. But he failed to do so and felt awkward about entering on +such an explanation. From day to day he became more and more +entangled. It seemed to her mother and Sonya that Natasha was in +love with Boris as of old. She sang him his favorite songs, showed him +her album, making him write in it, did not allow him to allude to +the past, letting it be understood how was the present; and every +day he went away in a fog, without having said what he meant to, and +not knowing what he was doing or why he came, or how it would all end. +He left off visiting Helene and received reproachful notes from her +every day, and yet he continued to spend whole days with the Rostovs. + + + + + +CHAPTER XIII + + +One night when the old countess, in nightcap and dressing jacket, +without her false curls, and with her poor little knob of hair showing +under her white cotton cap, knelt sighing and groaning on a rug and +bowing to the ground in prayer, her door creaked and Natasha, also +in a dressing jacket with slippers on her bare feet and her hair in +curlpapers, ran in. The countess--her prayerful mood dispelled--looked +round and frowned. She was finishing her last prayer: "Can it be +that this couch will be my grave?" Natasha, flushed and eager, +seeing her mother in prayer, suddenly checked her rush, half sat down, +and unconsciously put out her tongue as if chiding herself. Seeing +that her mother was still praying she ran on tiptoe to the bed and, +rapidly slipping one little foot against the other, pushed off her +slippers and jumped onto the bed the countess had feared might +become her grave. This couch was high, with a feather bed and five +pillows each smaller than the one below. Natasha jumped on it, sank +into the feather bed, rolled over to the wall, and began snuggling +up the bedclothes as she settled down, raising her knees to her +chin, kicking out and laughing almost inaudibly, now covering +herself up head and all, and now peeping at her mother. The countess +finished her prayers and came to the bed with a stern face, but +seeing, that Natasha's head was covered, she smiled in her kind, +weak way. + +"Now then, now then!" said she. + +"Mamma, can we have a talk? Yes?" said Natasha. "Now, just one on +your throat and another... that'll do!" And seizing her mother round +the neck, she kissed her on the throat. In her behavior to her +mother Natasha seemed rough, but she was so sensitive and tactful that +however she clasped her mother she always managed to do it without +hurting her or making her feel uncomfortable or displeased. + +"Well, what is it tonight?" said the mother, having arranged her +pillows and waited until Natasha, after turning over a couple of +times, had settled down beside her under the quilt, spread out her +arms, and assumed a serious expression. + +These visits of Natasha's at night before the count returned from +his club were one of the greatest pleasures of both mother, and +daughter. + +"What is it tonight?--But I have to tell you..." + +Natasha put her hand on her mother's mouth. + +"About Boris... I know," she said seriously; "that's what I have +come about. Don't say it--I know. No, do tell me!" and she removed her +hand. "Tell me, Mamma! He's nice?" + +"Natasha, you are sixteen. At your age I was married. You say +Boris is nice. He is very nice, and I love him like a son. But what +then?... What are you thinking about? You have quite turned his +head, I can see that...." + +As she said this the countess looked round at her daughter. +Natasha was lying looking steadily straight before her at one of the +mahogany sphinxes carved on the corners of the bedstead, so that the +countess only saw her daughter's face in profile. That face struck her +by its peculiarly serious and concentrated expression. + +Natasha was listening and considering. + +"Well, what then?" said she. + +"You have quite turned his head, and why? What do you want of him? +You know you can't marry him." + +"Why not?" said Natasha, without changing her position. + +"Because he is young, because he is poor, because he is a +relation... and because you yourself don't love him." + +"How do you know?" + +"I know. It is not right, darling!" + + "But if I want to..." said Natasha. + +"Leave off talking nonsense," said the countess. + +"But if I want to..." + +"Natasha, I am in earnest..." + +Natasha did not let her finish. She drew the countess' large hand to +her, kissed it on the back and then on the palm, then again turned +it over and began kissing first one knuckle, then the space between +the knuckles, then the next knuckle, whispering, "January, February, +March, April, May. Speak, Mamma, why don't you say anything? Speak!" +said she, turning to her mother, who was tenderly gazing at her +daughter and in that contemplation seemed to have forgotten all she +had wished to say. + +"It won't do, my love! Not everyone will understand this +friendship dating from your childish days, and to see him so +intimate with you may injure you in the eyes of other young men who +visit us, and above all it torments him for nothing. He may already +have found a suitable and wealthy match, and now he's half crazy." + +"Crazy?" repeated Natasha. + +"I'll tell you some things about myself. I had a cousin..." + +"I know! Cyril Matveich... but he is old." + +"He was not always old. But this is what I'll do, Natasha, I'll have +a talk with Boris. He need not come so often...." + +"Why not, if he likes to?" + +"Because I know it will end in nothing...." + +"How can you know? No, Mamma, don't speak to him! What nonsense!" +said Natasha in the tone of one being deprived of her property. "Well, +I won't marry, but let him come if he enjoys it and I enjoy it." +Natasha smiled and looked at her mother. "Not to marry, but just +so," she added. + +"How so, my pet?" + +"Just so. There's no need for me to marry him. But... just so." + +"Just so, just so," repeated the countess, and shaking all over, she +went off into a good humored, unexpected, elderly laugh. + +"Don't laugh, stop!" cried Natasha. "You're shaking the whole bed! +You're awfully like me, just such another giggler.... Wait..." and she +seized the countess' hands and kissed a knuckle of the little +finger, saying, "June," and continued, kissing, "July, August," on the +other hand. "But, Mamma, is he very much in love? What do you think? +Was anybody ever so much in love with you? And he's very nice, very, +very nice. Only not quite my taste--he is so narrow, like the +dining-room clock.... Don't you understand? Narrow, you know--gray, +light gray..." + +"What rubbish you're talking!" said the countess. + +Natasha continued: "Don't you really understand? Nicholas would +understand.... Bezukhov, now, is blue, dark-blue and red, and he is +square." + +"You flirt with him too," said the countess, laughing. + +"No, he is a Freemason, I have found out. He is fine, dark-blue +and red.... How can I explain it to you?" + +"Little countess!" the count's voice called from behind the door. +"You're not asleep?" Natasha jumped up, snatched up her slippers, +and ran barefoot to her own room. + +It was a long time before she could sleep. She kept thinking that no +one could understand all that she understood and all there was in her. + +"Sonya?" she thought, glancing at that curled-up, sleeping little +kitten with her enormous plait of hair. "No, how could she? She's +virtuous. She fell in love with Nicholas and does not wish to know +anything more. Even Mamma does not understand. It is wonderful how +clever I am and how... charming she is," she went on, speaking of +herself in the third person, and imagining it was some very wise +man--the wisest and best of men--who was saying it of her. "There is +everything, everything in her," continued this man. "She is +unusually intelligent, charming... and then she is pretty, +uncommonly pretty, and agile--she swims and rides splendidly... and +her voice! One can really say it's a wonderful voice!" + +She hummed a scrap from her favorite opera by Cherubini, threw +herself on her bed, laughed at the pleasant thought that she would +immediately fall asleep, called Dunyasha the maid to put out the +candle, and before Dunyasha had left the room had already passed +into yet another happier world of dreams, where everything was as +light and beautiful as in reality, and even more so because it was +different. + + +Next day the countess called Boris aside and had a talk with him, +after which he ceased coming to the Rostovs'. + + + + + +CHAPTER XIV + + +On the thirty-first of December, New Year's Eve, 1809 --10 an old +grandee of Catherine's day was giving a ball and midnight supper. +The diplomatic corps and the Emperor himself were to be present. + +The grandee's well-known mansion on the English Quay glittered +with innumerable lights. Police were stationed at the brightly lit +entrance which was carpeted with red baize, and not only gendarmes but +dozens of police officers and even the police master himself stood +at the porch. Carriages kept driving away and fresh ones arriving, +with red-liveried footmen and footmen in plumed hats. From the +carriages emerged men wearing uniforms, stars, and ribbons, while +ladies in satin and ermine cautiously descended the carriage steps +which were let down for them with a clatter, and then walked hurriedly +and noiselessly over the baize at the entrance. + +Almost every time a new carriage drove up a whisper ran through +the crowd and caps were doffed. + +"The Emperor?... No, a minister.... prince... ambassador. Don't +you see the plumes?..." was whispered among the crowd. + +One person, better dressed than the rest, seemed to know everyone +and mentioned by name the greatest dignitaries of the day. + +A third of the visitors had already arrived, but the Rostovs, who +were to be present, were still hurrying to get dressed. + +There had been many discussions and preparations for this ball in +the Rostov family, many fears that the invitation would not arrive, +that the dresses would not be ready, or that something would not be +arranged as it should be. + +Marya Ignatevna Peronskaya, a thin and shallow maid of honor at +the court of the Dowager Empress, who was a friend and relation of the +countess and piloted the provincial Rostovs in Petersburg high +society, was to accompany them to the ball. + +They were to call for her at her house in the Taurida Gardens at ten +o'clock, but it was already five minutes to ten, and the girls were +not yet dressed. + +Natasha was going to her first grand ball. She had got up at eight +that morning and had been in a fever of excitement and activity all +day. All her powers since morning had been concentrated on ensuring +that they all--she herself, Mamma, and Sonya--should be as well +dressed as possible. Sonya and her mother put themselves entirely in +her hands. The countess was to wear a claret-colored velvet dress, and +the two girls white gauze over pink silk slips, with roses on their +bodices and their hair dressed a la grecque. + +Everything essential had already been done; feet, hands, necks, +and ears washed, perfumed, and powdered, as befits a ball; the +openwork silk stockings and white satin shoes with ribbons were +already on; the hairdressing was almost done. Sonya was finishing +dressing and so was the countess, but Natasha, who had bustled about +helping them all, was behindhand. She was still sitting before a +looking-glass with a dressing jacket thrown over her slender +shoulders. Sonya stood ready dressed in the middle of the room and, +pressing the head of a pin till it hurt her dainty finger, was +fixing on a last ribbon that squeaked as the pin went through it. + +"That's not the way, that's not the way, Sonya!" cried Natasha +turning her head and clutching with both hands at her hair which the +maid who was dressing it had not time to release. "That bow is not +right. Come here!" + +Sonya sat down and Natasha pinned the ribbon on differently. + +"Allow me, Miss! I can't do it like that," said the maid who was +holding Natasha's hair. + +"Oh, dear! Well then, wait. That's right, Sonya." + +"Aren't you ready? It is nearly ten," came the countess' voice. + +"Directly! Directly! And you, Mamma?" + +"I have only my cap to pin on." + +"Don't do it without me!" called Natasha. "You won't do it right." + +"But it's already ten." + +They had decided to be at the ball by half past ten, and Natasha had +still to get dressed and they had to call at the Taurida Gardens. + +When her hair was done, Natasha, in her short petticoat from under +which her dancing shoes showed, and in her mother's dressing jacket, +ran up to Sonya, scrutinized her, and then ran to her mother. +Turning her mother's head this way and that, she fastened on the cap +and, hurriedly kissing her gray hair, ran back to the maids who were +turning up the hem of her skirt. + +The cause of the delay was Natasha's skirt, which was too long. +Two maids were turning up the hem and hurriedly biting off the ends of +thread. A third with pins in her mouth was running about between the +countess and Sonya, and a fourth held the whole of the gossamer +garment up high on one uplifted hand. + +"Mavra, quicker, darling!" + +"Give me my thimble, Miss, from there..." + +"Whenever will you be ready?" asked the count coming to the door. +"Here is here is some scent. Peronskaya must be tired of waiting." + +"It's ready, Miss," said the maid, holding up the shortened gauze +dress with two fingers, and blowing and shaking something off it, as +if by this to express a consciousness of the airiness and purity of +what she held. + +Natasha began putting on the dress. + +"In a minute! In a minute! Don't come in, Papa!" she cried to her +father as he opened the door--speaking from under the filmy skirt +which still covered her whole face. + +Sonya slammed the door to. A minute later they let the count in. +He was wearing a blue swallow-tail coat, shoes and stockings, and +was perfumed and his hair pomaded. + +"Oh, Papa! how nice you look! Charming!" cried Natasha, as she stood +in the middle of the room smoothing out the folds of the gauze. + +"If you please, Miss! allow me," said the maid, who on her knees was +pulling the skirt straight and shifting the pins from one side of +her mouth to the other with her tongue. + +"Say what you like," exclaimed Sonya, in a despairing voice as she +looked at Natasha, "say what you like, it's still too long." + +Natasha stepped back to look at herself in the pier glass. The dress +was too long. + +"Really, madam, it is not at all too long," said Mavra, crawling +on her knees after her young lady. + +"Well, if it's too long we'll take it up... we'll tack it up in +one minute," said the resolute Dunyasha taking a needle that was stuck +on the front of her little shawl and, still kneeling on the floor, set +to work once more. + +At that moment, with soft steps, the countess came in shyly, in +her cap and velvet gown. + +"Oo-oo, my beauty!" exclaimed the count, "she looks better than +any of you!" + +He would have embraced her but, blushing, she stepped aside +fearing to be rumpled. + +"Mamma, your cap, more to this side," said Natasha. "I'll arrange +it," and she rushed forward so that the maids who were tacking up +her skirt could not move fast enough and a piece of gauze was torn +off. + +"Oh goodness! What has happened? Really it was not my fault!" + +"Never mind, I'll run it up, it won't show," said Dunyasha. + +"What a beauty--a very queen!" said the nurse as she came to the +door. "And Sonya! They are lovely!" + +At a quarter past ten they at last got into their carriages and +started. But they had still to call at the Taurida Gardens. + +Peronskaya was quite ready. In spite of her age and plainness she +had gone through the same process as the Rostovs, but with less +flurry--for to her it was a matter of routine. Her ugly old body was +washed, perfumed, and powdered in just the same way. She had washed +behind her ears just as carefully, and when she entered her drawing +room in her yellow dress, wearing her badge as maid of honor, her +old lady's maid was as full of rapturous admiration as the Rostovs' +servants had been. + +She praised the Rostovs' toilets. They praised her taste and toilet, +and at eleven o'clock, careful of their coiffures and dresses, they +settled themselves in their carriages and drove off. + + + + + +CHAPTER XV + + +Natasha had not had a moment free since early morning and had not +once had time to think of what lay before her. + +In the damp chill air and crowded closeness of the swaying carriage, +she for the first time vividly imagined what was in store for her +there at the ball, in those brightly lighted rooms--with music, +flowers, dances, the Emperor, and all the brilliant young people of +Petersburg. The prospect was so splendid that she hardly believed it +would come true, so out of keeping was it with the chill darkness +and closeness of the carriage. She understood all that awaited her +only when, after stepping over the red baize at the entrance, she +entered the hall, took off her fur cloak, and, beside Sonya and in +front of her mother, mounted the brightly illuminated stairs between +the flowers. Only then did she remember how she must behave at a ball, +and tried to assume the majestic air she considered indispensable +for a girl on such an occasion. But, fortunately for her, she felt her +eyes growing misty, she saw nothing clearly, her pulse beat a +hundred to the minute, and the blood throbbed at her heart. She +could not assume that pose, which would have made her ridiculous, +and she moved on almost fainting from excitement and trying with all +her might to conceal it. And this was the very attitude that became +her best. Before and behind them other visitors were entering, also +talking in low tones and wearing ball dresses. The mirrors on the +landing reflected ladies in white, pale-blue, and pink dresses, with +diamonds and pearls on their bare necks and arms. + +Natasha looked in the mirrors and could not distinguish her +reflection from the others. All was blended into one brilliant +procession. On entering the ballroom the regular hum of voices, +footsteps, and greetings deafened Natasha, and the light and glitter +dazzled her still more. The host and hostess, who had already been +standing at the door for half an hour repeating the same words to +the various arrivals, "Charme de vous voir,"* greeted the Rostovs +and Peronskaya in the same manner. + + +*"Delighted to see you." + + +The two girls in their white dresses, each with a rose in her +black hair, both curtsied in the same way, but the hostess' eye +involuntarily rested longer on the slim Natasha. She looked at her and +gave her alone a special smile in addition to her usual smile as +hostess. Looking at her she may have recalled the golden, +irrecoverable days of her own girlhood and her own first ball. The +host also followed Natasha with his eyes and asked the count which was +his daughter. + +"Charming!" said he, kissing the tips of his fingers. + +In the ballroom guests stood crowding at the entrance doors awaiting +the Emperor. The countess took up a position in one of the front +rows of that crowd. Natasha heard and felt that several people were +asking about her and looking at her. She realized that those +noticing her liked her, and this observation helped to calm her. + +"There are some like ourselves and some worse," she thought. + +Peronskaya was pointing out to the countess the most important +people at the ball. + +"That is the Dutch ambassador, do you see? That gray-haired man," +she said, indicating an old man with a profusion of silver-gray +curly hair, who was surrounded by ladies laughing at something he +said. + +"Ah, here she is, the Queen of Petersburg, Countess Bezukhova," said +Peronskaya, indicating Helene who had just entered. "How lovely! She +is quite equal to Marya Antonovna. See how the men, young and old, pay +court to her. Beautiful and clever... they say Prince--is quite mad +about her. But see, those two, though not good-looking, are even +more run after." + +She pointed to a lady who was crossing the room followed by a very +plain daughter. + +"She is a splendid match, a millionairess," said Peronskaya. "And +look, here come her suitors." + +"That is Bezukhova's brother, Anatole Kuragin," she said, indicating +a handsome officer of the Horse Guards who passed by them with head +erect, looking at something over the heads of the ladies. "He's +handsome, isn't he? I hear they will marry him to that rich girl. +But your cousin, Drubetskoy, is also very attentive to her. They say +she has millions. Oh yes, that's the French ambassador himself!" she +replied to the countess' inquiry about Caulaincourt. "Looks as if he +were a king! All the same, the French are charming, very charming. +No one more charming in society. Ah, here she is! Yes, she is still +the most beautiful of them all, our Marya Antonovna! And how simply +she is dressed! Lovely! And that stout one in spectacles is the +universal Freemason," she went on, indicating Pierre. "Put him +beside his wife and he looks a regular buffoon!" + +Pierre, swaying his stout body, advanced, making way through the +crowd and nodding to right and left as casually and good-naturedly +as if he were passing through a crowd at a fair. He pushed through, +evidently looking for someone. + +Natasha looked joyfully at the familiar face of Pierre, "the +buffoon," as Peronskaya had called him, and knew he was looking for +them, and for her in particular. He had promised to be at the ball and +introduce partners to her. + +But before he reached them Pierre stopped beside a very handsome, +dark man of middle height, and in a white uniform, who stood by a +window talking to a tall man wearing stars and a ribbon. Natasha at +once recognized the shorter and younger man in the white uniform: it +was Bolkonski, who seemed to her to have grown much younger, +happier, and better-looking. + +"There's someone else we know--Bolkonski, do you see, Mamma?" said +Natasha, pointing out Prince Andrew. "You remember, he stayed a +night with us at Otradnoe." + +"Oh, you know him?" said Peronskaya. "I can't bear him. Il fait a +present la pluie et le beau temps.* He's too proud for anything. +Takes after his father. And he's hand in glove with Speranski, writing +some project or other. Just look how he treats the ladies! There's one +talking to him and he has turned away," she said, pointing at him. +"I'd give it to him if he treated me as he does those ladies." + + +*"He is all the rage just now. + + + + + +CHAPTER XVI + + +Suddenly everybody stirred, began talking, and pressed forward and +then back, and between the two rows, which separated, the Emperor +entered to the sounds of music that had immediately struck up. +Behind him walked his host and hostess. He walked in rapidly, bowing +to right and left as if anxious to get the first moments of the +reception over. The band played the polonaise in vogue at that time on +account of the words that had been set to it, beginning: "Alexander, +Elisaveta, all our hearts you ravish quite..." The Emperor passed on +to the drawing room, the crowd made a rush for the doors, and +several persons with excited faces hurried there and back again. +Then the crowd hastily retired from the drawing-room door, at which +the Emperor reappeared talking to the hostess. A young man, looking +distraught, pounced down on the ladies, asking them to move aside. +Some ladies, with faces betraying complete forgetfulness of all the +rules of decorum, pushed forward to the detriment of their toilets. +The men began to choose partners and take their places for the +polonaise. + +Everyone moved back, and the Emperor came smiling out of the drawing +room leading his hostess by the hand but not keeping time to the +music. The host followed with Marya Antonovna Naryshkina; then came +ambassadors, ministers, and various generals, whom Peronskaya +diligently named. More than half the ladies already had partners and +were taking up, or preparing to take up, their positions for the +polonaise. Natasha felt that she would be left with her mother and +Sonya among a minority of women who crowded near the wall, not +having been invited to dance. She stood with her slender arms +hanging down, her scarcely defined bosom rising and falling regularly, +and with bated breath and glittering, frightened eyes gazed straight +before her, evidently prepared for the height of joy or misery. She +was not concerned about the Emperor or any of those great people +whom Peronskaya was pointing out--she had but one thought: "Is it +possible no one will ask me, that I shall not be among the first to +dance? Is it possible that not one of all these men will notice me? +They do not even seem to see me, or if they do they look as if they +were saying, 'Ah, she's not the one I'm after, so it's not worth +looking at her!' No, it's impossible," she thought. "They must know +how I long to dance, how splendidly I dance, and how they would +enjoy dancing with me." + +The strains of the polonaise, which had continued for a considerable +time, had begun to sound like a sad reminiscence to Natasha's ears. +She wanted to cry. Peronskaya had left them. The count was at the +other end of the room. She and the countess and Sonya were standing by +themselves as in the depths of a forest amid that crowd of +strangers, with no one interested in them and not wanted by anyone. +Prince Andrew with a lady passed by, evidently not recognizing them. +The handsome Anatole was smilingly talking to a partner on his arm and +looked at Natasha as one looks at a wall. Boris passed them twice +and each time turned away. Berg and his wife, who were not dancing, +came up to them. + +This family gathering seemed humiliating to Natasha--as if there +were nowhere else for the family to talk but here at the ball. She did +not listen to or look at Vera, who was telling her something about her +own green dress. + +At last the Emperor stopped beside his last partner (he had danced +with three) and the music ceased. A worried aide-de-camp ran up to the +Rostovs requesting them to stand farther back, though as it was they +were already close to the wall, and from the gallery resounded the +distinct, precise, enticingly rhythmical strains of a waltz. The +Emperor looked smilingly down the room. A minute passed but no one had +yet begun dancing. An aide-de-camp, the Master of Ceremonies, went +up to Countess Bezukhova and asked her to dance. She smilingly +raised her hand and laid it on his shoulder without looking at him. +The aide-de-camp, an adept in his art, grasping his partner firmly +round her waist, with confident deliberation started smoothly, gliding +first round the edge of the circle, then at the corner of the room +he caught Helene's left hand and turned her, the only sound audible, +apart from the ever-quickening music, being the rhythmic click of +the spurs on his rapid, agile feet, while at every third beat his +partner's velvet dress spread out and seemed to flash as she whirled +round. Natasha gazed at them and was ready to cry because it was not +she who was dancing that first turn of the waltz. + +Prince Andrew, in the white uniform of a cavalry colonel, wearing +stockings and dancing shoes, stood looking animated and bright in +the front row of the circle not far from the Rostovs. Baron Firhoff +was talking to him about the first sitting of the Council of State +to be held next day. Prince Andrew, as one closely connected with +Speranski and participating in the work of the legislative commission, +could give reliable information about that sitting, concerning which +various rumors were current. But not listening to what Firhoff was +saying, he was gazing now at the sovereign and now at the men +intending to dance who had not yet gathered courage to enter the +circle. + +Prince Andrew was watching these men abashed by the Emperor's +presence, and the women who were breathlessly longing to be asked to +dance. + +Pierre came up to him and caught him by the arm. + +"You always dance. I have a protegee, the young Rostova, here. Ask +her," he said. + +"Where is she?" asked Bolkonski. "Excuse me!" he added, turning to +the baron, "we will finish this conversation elsewhere--at a ball +one must dance." He stepped forward in the direction Pierre indicated. +The despairing, dejected expression of Natasha's face caught his +eye. He recognized her, guessed her feelings, saw that it was her +debut, remembered her conversation at the window, and with an +expression of pleasure on his face approached Countess Rostova. + +"Allow me to introduce you to my daughter," said the countess, +with heightened color. + +"I have the pleasure of being already acquainted, if the countess +remembers me," said Prince Andrew with a low and courteous bow quite +belying Peronskaya's remarks about his rudeness, and approaching +Natasha he held out his arm to grasp her waist before he had completed +his invitation. He asked her to waltz. That tremulous expression on +Natasha's face, prepared either for despair or rapture, suddenly +brightened into a happy, grateful, childlike smile. + +"I have long been waiting for you," that frightened happy little +girl seemed to say by the smile that replaced the threatened tears, as +she raised her hand to Prince Andrew's shoulder. They were the +second couple to enter the circle. Prince Andrew was one of the best +dancers of his day and Natasha danced exquisitely. Her little feet +in their white satin dancing shoes did their work swiftly, lightly, +and independently of herself, while her face beamed with ecstatic +happiness. Her slender bare arms and neck were not beautiful--compared +to Helene's her shoulders looked thin and her bosom undeveloped. But +Helene seemed, as it were, hardened by a varnish left by the thousands +of looks that had scanned her person, while Natasha was like a girl +exposed for the first time, who would have felt very much ashamed +had she not been assured that this was absolutely necessary. + +Prince Andrew liked dancing, and wishing to escape as quickly as +possible from the political and clever talk which everyone addressed +to him, wishing also to break up the circle of restraint he +disliked, caused by the Emperor's presence, he danced, and had +chosen Natasha because Pierre pointed her out to him and because she +was the first pretty girl who caught his eye; but scarcely had he +embraced that slender supple figure and felt her stirring so close +to him and smiling so near him than the wine of her charm rose to +his head, and he felt himself revived and rejuvenated when after +leaving her he stood breathing deeply and watching the other dancers. + + + + + +CHAPTER XVII + + +After Prince Andrew, Boris came up to ask Natasha for dance, and +then the aide-de-camp who had opened the ball, and several other young +men, so that, flushed and happy, and passing on her superfluous +partners to Sonya, she did not cease dancing all the evening. She +noticed and saw nothing of what occupied everyone else. Not only did +she fail to notice that the Emperor talked a long time with the French +ambassador, and how particularly gracious he was to a certain lady, or +that Prince So-and-so and So-and-so did and said this and that, and +that Helene had great success and was honored was by the special +attention of So-and-so, but she did not even see the Emperor, and only +noticed that he had gone because the ball became livelier after his +departure. For one of the merry cotillions before supper Prince Andrew +was again her partner. He reminded her of their first encounter in the +Otradnoe avenue, and how she had been unable to sleep that moonlight +night, and told her how he had involuntarily overheard her. Natasha +blushed at that recollection and tried to excuse herself, as if +there had been something to be ashamed of in what Prince Andrew had +overheard. + +Like all men who have grown up in society, Prince Andrew liked +meeting someone there not of the conventional society stamp. And +such was Natasha, with her surprise, her delight, her shyness, and +even her mistakes in speaking French. With her he behaved with special +care and tenderness, sitting beside her and talking of the simplest +and most unimportant matters; he admired her shy grace. In the +middle of the cotillion, having completed one of the figures, Natasha, +still out of breath, was returning to her seat when another dancer +chose her. She was tired and panting and evidently thought of +declining, but immediately put her hand gaily on the man's shoulder, +smiling at Prince Andrew. + +"I'd be glad to sit beside you and rest: I'm tired; but you see +how they keep asking me, and I'm glad of it, I'm happy and I love +everybody, and you and I understand it all," and much, much more was +said in her smile. When her partner left her Natasha ran across the +room to choose two ladies for the figure. + +"If she goes to her cousin first and then to another lady, she +will be my wife," said Prince Andrew to himself quite to his own +surprise, as he watched her. She did go first to her cousin. + +"What rubbish sometimes enters one's head!" thought Prince Andrew, +"but what is certain is that that girl is so charming, so original, +that she won't be dancing here a month before she will be +married.... Such as she are rare here," he thought, as Natasha, +readjusting a rose that was slipping on her bodice, settled herself +beside him. + +When the cotillion was over the old count in his blue coat came up +to the dancers. He invited Prince Andrew to come and see them, and +asked his daughter whether she was enjoying herself. Natasha did not +answer at once but only looked up with a smile that said +reproachfully: "How can you ask such a question?" + +"I have never enjoyed myself so much before!" she said, and Prince +Andrew noticed how her thin arms rose quickly as if to embrace her +father and instantly dropped again. Natasha was happier than she had +ever been in her life. She was at that height of bliss when one +becomes completely kind and good and does not believe in the +possibility of evil, unhappiness, or sorrow. + +At that ball Pierre for the first time felt humiliated by the +position his wife occupied in court circles. He was gloomy and +absent-minded. A deep furrow ran across his forehead, and standing +by a window he stared over his spectacles seeing no one. + +On her way to supper Natasha passed him. + +Pierre's gloomy, unhappy look struck her. She stopped in front of +him. She wished to help him, to bestow on him the superabundance of +her own happiness. + +"How delightful it is, Count!" said she. "Isn't it?" + +Pierre smiled absent-mindedly, evidently not grasping what she said. + +"Yes, I am very glad," he said. + +"How can people be dissatisfied with anything?" thought Natasha. +"Especially such a capital fellow as Bezukhov!" In Natasha's eyes +all the people at the ball alike were good, kind, and splendid people, +loving one another; none of them capable of injuring another--and so +they ought all to be happy. + + + + + +CHAPTER XVIII + + +Next day Prince Andrew thought of the ball, but his mind did not +dwell on it long. "Yes, it was a very brilliant ball," and then... +"Yes, that little Rostova is very charming. There's something fresh, +original, un-Petersburg-like about her that distinguishes her." That +was all he thought about yesterday's ball, and after his morning tea +he set to work. + +But either from fatigue or want of sleep he was ill-disposed for +work and could get nothing done. He kept criticizing his own work, +as he often did, and was glad when he heard someone coming. + +The visitor was Bitski, who served on various committees, frequented +all the societies in Petersburg, and a passionate devotee of the new +ideas and of Speranski, and a diligent Petersburg newsmonger--one of +those men who choose their opinions like their clothes according to +the fashion, but who for that very reason appear to be the warmest +partisans. Hardly had he got rid of his hat before he ran into +Prince Andrew's room with a preoccupied air and at once began talking. +He had just heard particulars of that morning's sitting of the Council +of State opened by the Emperor, and he spoke of it enthusiastically. +The Emperor's speech had been extraordinary. It had been a speech such +as only constitutional monarchs deliver. "The Sovereign plainly said +that the Council and Senate are estates of the realm, he said that the +government must rest not on authority but on secure bases. The Emperor +said that the fiscal system must be reorganized and the accounts +published," recounted Bitski, emphasizing certain words and opening +his eyes significantly. + +"Ah, yes! Today's events mark an epoch, the greatest epoch in our +history," he concluded. + +Prince Andrew listened to the account of the opening of the +Council of State, which he had so impatiently awaited and to which +he had attached such importance, and was surprised that this event, +now that it had taken place, did not affect him, and even seemed quite +insignificant. He listened with quiet irony to Bitski's enthusiastic +account of it. A very simple thought occurred to him: "What does it +matter to me or to Bitski what the Emperor was pleased to say at the +Council? Can all that make me any happier or better?" + +And this simple reflection suddenly destroyed all the interest +Prince Andrew had felt in the impending reforms. He was going to +dine that evening at Speranski's, "with only a few friends," as the +host had said when inviting him. The prospect of that dinner in the +intimate home circle of the man he so admired had greatly interested +Prince Andrew, especially as he had not yet seen Speranski in his +domestic surroundings, but now he felt disinclined to go to it. + +At the appointed hour, however, he entered the modest house +Speranski owned in the Taurida Gardens. In the parqueted dining room +this small house, remarkable for its extreme cleanliness (suggesting +that of a monastery), Prince Andrew, who was rather late, found the +friendly gathering of Speranski's intimate acquaintances already +assembled at five o'clock. There were no ladies present except +Speranski's little daughter (long-faced like her father) and her +governess. The other guests were Gervais, Magnitski, and Stolypin. +While still in the anteroom Prince Andrew heard loud voices and a +ringing staccato laugh--a laugh such as one hears on the stage. +Someone--it sounded like Speranski--was distinctly ejaculating +ha-ha-ha. Prince Andrew had never before heard Speranski's famous +laugh, and this ringing, high pitched laughter from a statesman made a +strange impression on him. + +He entered the dining room. The whole company were standing +between two windows at a small table laid with hors-d'oeuvres. +Speranski, wearing a gray swallow-tail coat with a star on the breast, +and evidently still the same waistcoat and high white stock he had +worn at the meeting of the Council of State, stood at the table with a +beaming countenance. His guests surrounded him. Magnitski, +addressing himself to Speranski, was relating an anecdote, and +Speranski was laughing in advance at what Magnitski was going to +say. When Prince Andrew entered the room Magnitski's words were +again crowned by laughter. Stolypin gave a deep bass guffaw as he +munched a piece of bread and cheese. Gervais laughed softly with a +hissing chuckle, and Speranski in a high-pitched staccato manner. + +Still laughing, Speranski held out his soft white hand to Prince +Andrew. + +"Very pleased to see you, Prince," he said. "One moment..." he +went on, turning to Magnitski and interrupting his story. "We have +agreed that this is a dinner for recreation, with not a word about +business!" and turning again to the narrator he began to laugh afresh. + +Prince Andrew looked at the laughing Speranski with astonishment, +regret, and disillusionment. It seemed to him that this was not +Speranski but someone else. Everything that had formerly appeared +mysterious and fascinating in Speranski suddenly became plain and +unattractive. + +At dinner the conversation did not cease for a moment and seemed +to consist of the contents of a book of funny anecdotes. Before +Magnitski had finished his story someone else was anxious to relate +something still funnier. Most of the anecdotes, if not relating to the +state service, related to people in the service. It seemed that in +this company the insignificance of those people was so definitely +accepted that the only possible attitude toward them was one of good +humored ridicule. Speranski related how at the Council that morning +a deaf dignitary, when asked his opinion, replied that he thought so +too. Gervais gave a long account of an official revision, remarkable +for the stupidity of everybody concerned. Stolypin, stuttering, +broke into the conversation and began excitedly talking of the +abuses that existed under the former order of things--threatening to +give a serious turn to the conversation. Magnitski starting quizzing +Stolypin about his vehemence. Gervais intervened with a joke, and +the talk reverted to its former lively tone. + +Evidently Speranski liked to rest after his labors and find +amusement in a circle of friends, and his guests, understanding his +wish, tried to enliven him and amuse themselves. But their gaiety +seemed to Prince Andrew mirthless and tiresome. Speranski's +high-pitched voice struck him unpleasantly, and the incessant laughter +grated on him like a false note. Prince Andrew did not laugh and +feared that he would be a damper on the spirits of the company, but no +one took any notice of his being out of harmony with the general mood. +They all seemed very gay. + +He tried several times to join in the conversation, but his +remarks were tossed aside each time like a cork thrown out of the +water, and he could not jest with them. + +There was nothing wrong or unseemly in what they said, it was +witty and might have been funny, but it lacked just that something +which is the salt of mirth, and they were not even aware that such a +thing existed. + +After dinner Speranski's daughter and her governess rose. He +patted the little girl with his white hand and kissed her. And that +gesture, too, seemed unnatural to Prince Andrew. + +The men remained at table over their port--English fashion. In the +midst of a conversation that was started about Napoleon's Spanish +affairs, which they all agreed in approving, Prince Andrew began to +express a contrary opinion. Speranski smiled and, with an evident wish +to prevent the conversation from taking an unpleasant course, told a +story that had no connection with the previous conversation. For a few +moments all were silent. + +Having sat some time at table, Speranski corked a bottle of wine +and, remarking, "Nowadays good wine rides in a carriage and pair," +passed it to the servant and got up. All rose and continuing to talk +loudly went into the drawing room. Two letters brought by a courier +were handed to Speranski and he took them to his study. As soon as +he had left the room the general merriment stopped and the guests +began to converse sensibly and quietly with one another. + +"Now for the recitation!" said Speranski on returning from his +study. "A wonderful talent!" he said to Prince Andrew, and Magnitski +immediately assumed a pose and began reciting some humorous verses +in French which he had composed about various well-known Petersburg +people. He was interrupted several times by applause. When the +verses were finished Prince Andrew went up to Speranski and took his +leave. + +"Where are you off to so early?" asked Speranski. + +"I promised to go to a reception." + +They said no more. Prince Andrew looked closely into those +mirrorlike, impenetrable eyes, and felt that it had been ridiculous of +him to have expected anything from Speranski and from any of his own +activities connected with him, or ever to have attributed importance +to what Speranski was doing. That precise, mirthless laughter rang +in Prince Andrew's ears long after he had left the house. + +When he reached home Prince Andrew began thinking of his life in +Petersburg during those last four months as if it were something +new. He recalled his exertions and solicitations, and the history of +his project of army reform, which had been accepted for +consideration and which they were trying to pass over in silence +simply because another, a very poor one, had already been prepared and +submitted to the Emperor. He thought of the meetings of a committee of +which Berg was a member. He remembered how carefully and at what +length everything relating to form and procedure was discussed at +those meetings, and how sedulously and promptly all that related to +the gist of the business was evaded. He recalled his labors on the +Legal Code, and how painstakingly he had translated the articles of +the Roman and French codes into Russian, and he felt ashamed of +himself. Then he vividly pictured to himself Bogucharovo, his +occupations in the country, his journey to Ryazan; he remembered the +peasants and Dron the village elder, and mentally applying to them the +Personal Rights he had divided into paragraphs, he felt astonished +that he could have spent so much time on such useless work. + + + + + +CHAPTER XIX + + +Next day Prince Andrew called at a few houses he had not visited +before, and among them at the Rostovs' with whom he had renewed +acquaintance at the ball. Apart from considerations of politeness +which demanded the call, he wanted to see that original, eager girl +who had left such a pleasant impression on his mind, in her own home. + +Natasha was one of the first to meet him. She was wearing a +dark-blue house dress in which Prince Andrew thought her even prettier +than in her ball dress. She and all the Rostov family welcomed him +as an old friend, simply and cordially. The whole family, whom he +had formerly judged severely, now seemed to him to consist of +excellent, simple, and kindly people. The old count's hospitality +and good nature, which struck one especially in Petersburg as a +pleasant surprise, were such that Prince Andrew could not refuse to +stay to dinner. "Yes," he thought, "they are capital people, who of +course have not the slightest idea what a treasure they possess in +Natasha; but they are kindly folk and form the best possible setting +for this strikingly poetic, charming girl, overflowing with life!" + +In Natasha Prince Andrew was conscious of a strange world completely +alien to him and brimful of joys unknown to him, a different world, +that in the Otradnoe avenue and at the window that moonlight night had +already begun to disconcert him. Now this world disconcerted him no +longer and was no longer alien to him, but he himself having entered +it found in it a new enjoyment. + +After dinner Natasha, at Prince Andrew's request, went to the +clavichord and began singing. Prince Andrew stood by a window +talking to the ladies and listened to her. In the midst of a phrase he +ceased speaking and suddenly felt tears choking him, a thing he had +thought impossible for him. He looked at Natasha as she sang, and +something new and joyful stirred in his soul. He felt happy and at the +same time sad. He had absolutely nothing to weep about yet he was +ready to weep. What about? His former love? The little princess? His +disillusionments?... His hopes for the future?... Yes and no. The +chief reason was a sudden, vivid sense of the terrible contrast +between something infinitely great and illimitable within him and that +limited and material something that he, and even she, was. This +contrast weighed on and yet cheered him while she sang. + +As soon as Natasha had finished she went up to him and asked how +he liked her voice. She asked this and then became confused, feeling +that she ought not to have asked it. He smiled, looking at her, and +said he liked her singing as he liked everything she did. + +Prince Andrew left the Rostovs' late in the evening. He went to +bed from habit, but soon realized that he could not sleep. Having +lit his candle he sat up in bed, then got up, then lay down again +not at all troubled by his sleeplessness: his soul was as fresh and +joyful as if he had stepped out of a stuffy room into God's own +fresh air. It did not enter his head that he was in love with Natasha; +he was not thinking about her, but only picturing her to himself, +and in consequence all life appeared in a new light. "Why do I strive, +why do I toil in this narrow, confined frame, when life, all life with +all its joys, is open to me?" said he to himself. And for the first +time for a very long while he began making happy plans for the future. +He decided that he must attend to his son's education by finding a +tutor and putting the boy in his charge, then he ought to retire +from the service and go abroad, and see England, Switzerland and +Italy. "I must use my freedom while I feel so much strength and +youth in me," he said to himself. "Pierre was right when he said one +must believe in the possibility of happiness in order to be happy, and +now I do believe in it. Let the dead bury their dead, but while one +has life one must live and be happy!" thought he. + + + + + +CHAPTER XX + + +One morning Colonel Berg, whom Pierre knew as he knew everybody in +Moscow and Petersburg, came to see him. Berg arrived in an +immaculate brand-new uniform, with his hair pomaded and brushed +forward over his temples as the Emperor Alexander wore his hair. + +"I have just been to see the countess, your wife. Unfortunately +she could not grant my request, but I hope, Count, I shall be more +fortunate with you," he said with a smile. + +"What is it you wish, Colonel? I am at your service." + +"I have now quite settled in my new rooms, Count" (Berg said this +with perfect conviction that this information could not but be +agreeable), "and so I wish to arrange just a small party for my own +and my wife's friends." (He smiled still more pleasantly.) "I wished +to ask the countess and you to do me the honor of coming to tea and to +supper." + +Only Countess Helene, considering the society of such people as +the Bergs beneath her, could be cruel enough to refuse such an +invitation. Berg explained so clearly why he wanted to collect at +his house a small but select company, and why this would give him +pleasure, and why though he grudged spending money on cards or +anything harmful, he was prepared to run into some expense for the +sake of good society--that Pierre could not refuse, and promised to +come. + +"But don't be late, Count, if I may venture to ask; about ten +minutes to eight, please. We shall make up a rubber. Our general is +coming. He is very good to me. We shall have supper, Count. So you +will do me the favor." + +Contrary to his habit of being late, Pierre on that day arrived at +the Bergs' house, not at ten but at fifteen minutes to eight. + +Having prepared everything necessary for the party, the Bergs were +ready for their guests' arrival. + +In their new, clean, and light study with its small busts and +pictures and new furniture sat Berg and his wife. Berg, closely +buttoned up in his new uniform, sat beside his wife explaining to +her that one always could and should be acquainted with people above +one, because only then does one get satisfaction from acquaintances. + +"You can get to know something, you can ask for something. See how I +managed from my first promotion." (Berg measured his life not by years +but by promotions.) "My comrades are still nobodies, while I am only +waiting for a vacancy to command a regiment, and have the happiness to +be your husband." (He rose and kissed Vera's hand, and on the way to +her straightened out a turned-up corner of the carpet.) "And how +have I obtained all this? Chiefly by knowing how to choose my +aquaintances. It goes without saying that one must be conscientious +and methodical." + +Berg smiled with a sense of his superiority over a weak woman, and +paused, reflecting that this dear wife of his was after all but a weak +woman who could not understand all that constitutes a man's dignity, +what it was ein Mann zu sein.* Vera at the same time smiling with a +sense of superiority over her good, conscientious husband, who all the +same understood life wrongly, as according to Vera all men did. +Berg, judging by his wife, thought all women weak and foolish. Vera, +judging only by her husband and generalizing from that observation, +supposed that all men, though they understand nothing and are +conceited and selfish, ascribe common sense to themselves alone. + + +*To be a man. + + +Berg rose and embraced his wife carefully, so as not to crush her +lace fichu for which he had paid a good price, kissing her straight on +the lips. + +"The only thing is, we mustn't have children too soon," he +continued, following an unconscious sequence of ideas. + +"Yes," answered Vera, "I don't at all want that. We must live for +society." + +"Princess Yusupova wore one exactly like this," said Berg, +pointing to the fichu with a happy and kindly smile. + +Just then Count Bezukhov was announced. Husband and wife glanced +at one another, both smiling with self-satisfaction, and each mentally +claiming the honor of this visit. + +"This is what what comes of knowing how to make acquaintances," +thought Berg. "This is what comes of knowing how to conduct oneself." + +"But please don't interrupt me when I am entertaining the guests," +said Vera, "because I know what interests each of them and what to say +to different people." + +Berg smiled again. + +"It can't be helped: men must sometimes have masculine +conversation," said he. + +They received Pierre in their small, new drawing-room, where it +was impossible to sit down anywhere without disturbing its symmetry, +neatness, and order; so it was quite comprehensible and not strange +that Berg, having generously offered to disturb the symmetry of an +armchair or of the sofa for his dear guest, but being apparently +painfully undecided on the matter himself, eventually left the visitor +to settle the question of selection. Pierre disturbed the symmetry +by moving a chair for himself, and Berg and Vera immediately began +their evening party, interrupting each other in their efforts to +entertain their guest. + +Vera, having decided in her own mind that Pierre ought to be +entertained with conversation about the French embassy, at once +began accordingly. Berg, having decided that masculine conversation +was required, interrupted his wife's remarks and touched on the +question of the war with Austria, and unconsciously jumped from the +general subject to personal considerations as to the proposals made +him to take part in the Austrian campaign and the reasons why he had +declined them. Though the conversation was very incoherent and Vera +was angry at the intrusion of the masculine element, both husband +and wife felt with satisfaction that, even if only one guest was +present, their evening had begun very well and was as like as two peas +to every other evening party with its talk, tea, and lighted candles. + +Before long Boris, Berg's old comrade, arrived. There was a shade of +condescension and patronage in his treatment of Berg and Vera. After +Boris came a lady with the colonel, then the general himself, then the +Rostovs, and the party became unquestionably exactly like all other +evening parties. Berg and Vera could not repress their smiles of +satisfaction at the sight of all this movement in their drawing +room, at the sound of the disconnected talk, the rustling of +dresses, and the bowing and scraping. Everything was just as everybody +always has it, especially so the general, who admired the apartment, +patted Berg on the shoulder, and with parental authority superintended +the setting out of the table for boston. The general sat down by Count +Ilya Rostov, who was next to himself the most important guest. The old +people sat with the old, the young with the young, and the hostess +at the tea table, on which stood exactly the same kind of cakes in a +silver cake basket as the Panins had at their party. Everything was +just as it was everywhere else. + + + + + +CHAPTER XXI + + +Pierre, as one of the principal guests, had to sit down to boston +with Count Rostov, the general, and the colonel. At the card table +he happened to be directly facing Natasha, and was struck by a curious +change that had come over her since the ball. She was silent, and +not only less pretty than at the ball, but only redeemed from +plainness by her look of gentle indifference to everything around. + +"What's the matter with her?" thought Pierre, glancing at her. She +was sitting by her sister at the tea table, and reluctantly, without +looking at him, made some reply to Boris who sat down beside her. +After playing out a whole suit and to his partner's delight taking +five tricks, Pierre, hearing greetings and the steps of someone who +had entered the room while he was picking up his tricks, glanced again +at Natasha. + +"What has happened to her?" he asked himself with still greater +surprise. + +Prince Andrew was standing before her, saying something to her +with a look of tender solicitude. She, having raised her head, was +looking up at him, flushed and evidently trying to master her rapid +breathing. And the bright glow of some inner fire that had been +suppressed was again alight in her. She was completely transformed and +from a plain girl had again become what she had been at the ball. + +Prince Andrew went up to Pierre, and the latter noticed a new and +youthful expression in his friend's face. + +Pierre changed places several times during the game, sitting now +with his back to Natasha and now facing her, but during the whole of +the six rubbers he watched her and his friend. + +"Something very important is happening between them," thought +Pierre, and a feeling that was both joyful and painful agitated him +and made him neglect the game. + +After six rubbers the general got up, saying that it was no use +playing like that, and Pierre was released. Natasha on one side was +talking with Sonya and Boris, and Vera with a subtle smile was +saying something to Prince Andrew. Pierre went up to his friend and, +asking whether they were talking secrets, sat down beside them. +Vera, having noticed Prince Andrew's attentions to Natasha, decided +that at a party, a real evening party, subtle allusions to the +tender passion were absolutely necessary and, seizing a moment when +Prince Andrew was alone, began a conversation with him about +feelings in general and about her sister. With so intellectual a guest +as she considered Prince Andrew to be, she felt that she had to employ +her diplomatic tact. + +When Pierre went up to them he noticed that Vera was being carried +away by her self-satisfied talk, but that Prince Andrew seemed +embarrassed, a thing that rarely happened with him. + +"What do you think?" Vera was saying with an arch smile. "You are so +discerning, Prince, and understand people's characters so well at a +glance. What do you think of Natalie? Could she be constant in her +attachments? Could she, like other women" (Vera meant herself), +"love a man once for all and remain true to him forever? That is +what I consider true love. What do you think, Prince?" + +"I know your sister too little," replied Prince Andrew, with a +sarcastic smile under which he wished to hide his embarrassment, "to +be able to solve so delicate a question, and then I have noticed +that the less attractive a woman is the more constant she is likely to +be," he added, and looked up Pierre who was just approaching them. + +"Yes, that is true, Prince. In our days," continued Vera--mentioning +"our days" as people of limited intelligence are fond of doing, +imagining that they have discovered and appraised the peculiarities of +"our days" and that human characteristics change with the times--"in +our days a girl has so much freedom that the pleasure of being courted +often stifles real feeling in her. And it must be confessed that +Natalie is very susceptible." This return to the subject of Natalie +caused Prince Andrew to knit his brows with discomfort: he was about +to rise, but Vera continued with a still more subtle smile: + +"I think no one has been more courted than she," she went on, "but +till quite lately she never cared seriously for anyone. Now you +know, Count," she said to Pierre, "even our dear cousin Boris, who, +between ourselves, was very far gone in the land of tenderness..." +(alluding to a map of love much in vogue at that time). + +Prince Andrew frowned and remained silent. + +"You are friendly with Boris, aren't you?" asked Vera. + +"Yes, I know him..." + +"I expect he has told you of his childish love for Natasha?" + +"Oh, there was childish love?" suddenly asked Prince Andrew, +blushing unexpectedly. + +"Yes, you know between cousins intimacy often leads to love. Le +cousinage est un dangereux voisinage.* Don't you think so?" + + +*"Cousinhood is a dangerous neighborhood." + + +"Oh, undoubtedly!" said Prince Andrew, and with sudden and unnatural +liveliness he began chaffing Pierre about the need to be very +careful with his fifty-year-old Moscow cousins, and in the midst of +these jesting remarks he rose, taking Pierre by the arm, and drew +him aside. + +"Well?" asked Pierre, seeing his friend's strange animation with +surprise, and noticing the glance he turned on Natasha as he rose. + +"I must... I must have a talk with you," said Prince Andrew. "You +know that pair of women's gloves?" (He referred to the Masonic +gloves given to a newly initiated Brother to present to the woman he +loved.) "I... but no, I will talk to you later on," and with a strange +light in his eyes and restlessness in his movements, Prince Andrew +approached Natasha and sat down beside her. Pierre saw how Prince +Andrew asked her something and how she flushed as she replied. + +But at that moment Berg came to Pierre and began insisting that he +should take part in an argument between the general and the colonel on +the affairs in Spain. + +Berg was satisfied and happy. The smile of pleasure never left his +face. The party was very successful and quite like other parties he +had seen. Everything was similar: the ladies' subtle talk, the +cards, the general raising his voice at the card table, and the +samovar and the tea cakes; only one thing was lacking that he had +always seen at the evening parties he wished to imitate. They had +not yet had a loud conversation among the men and a dispute about +something important and clever. Now the general had begun such a +discussion and so Berg drew Pierre to it. + + + + + +CHAPTER XXII + + +Next day, having been invited by the count, Prince Andrew dined with +the Rostovs and spent the rest of the day there. + +Everyone in the house realized for whose sake Prince Andrew came, +and without concealing it he tried to be with Natasha all day. Not +only in the soul of the frightened yet happy and enraptured Natasha, +but in the whole house, there was a feeling of awe at something +important that was bound to happen. The countess looked with sad and +sternly serious eyes at Prince Andrew when he talked to Natasha and +timidly started some artificial conversation about trifles as soon +as he looked her way. Sonya was afraid to leave Natasha and afraid +of being in the way when she was with them. Natasha grew pale, in a +panic of expectation, when she remained alone with him for a moment. +Prince Andrew surprised her by his timidity. She felt that he wanted +to say something to her but could not bring himself to do so. + +In the evening, when Prince Andrew had left, the countess went up to +Natasha and whispered: "Well, what?" + +"Mamma! For heaven's sake don't ask me anything now! One can't +talk about that," said Natasha. + +But all the same that night Natasha, now agitated and now +frightened, lay a long time in her mother's bed gazing straight +before her. She told her how he had complimented her, how he told +her he was going abroad, asked her where they were going to spend +the summer, and then how he had asked her about Boris. + +"But such a... such a... never happened to me before!" she said. +"Only I feel afraid in his presence. I am always afraid when I'm +with him. What does that mean? Does it mean that it's the real +thing? Yes? Mamma, are you asleep?" + +"No, my love; I am frightened myself," answered her mother. "Now +go!" + +"All the same I shan't sleep. What silliness, to sleep! Mummy! +Mummy! such a thing never happened to me before," she said, +surprised and alarmed at the feeling she was aware of in herself. "And +could we ever have thought!..." + +It seemed to Natasha that even at the time she first saw Prince +Andrew at Otradnoe she had fallen in love with him. It was as if she +feared this strange, unexpected happiness of meeting again the very +man she had then chosen (she was firmly convinced she had done so) and +of finding him, as it seemed, not indifferent to her. + +"And it had to happen that he should come specially to Petersburg +while we are here. And it had to happen that we should meet at that +ball. It is fate. Clearly it is fate that everything led up to this! +Already then, directly I saw him I felt something peculiar." + +"What else did he say to you? What are those verses? Read them..." +said her mother, thoughtfully, referring to some verses Prince +Andrew had written in Natasha's album. + +"Mamma, one need not be ashamed of his being a widower?" + +"Don't, Natasha! Pray to God. 'Marriages are made in heaven,'" +said her mother. + +"Darling Mummy, how I love you! How happy I am!" cried Natasha, +shedding tears of joy and excitement and embracing her mother. + +At that very time Prince Andrew was sitting with Pierre and +telling him of his love for Natasha and his firm resolve to make her +his wife. + +That day Countess Helene had a reception at her house. The French +ambassador was there, and a foreign prince of the blood who had of +late become a frequent visitor of hers, and many brilliant ladies +and gentlemen. Pierre, who had come downstairs, walked through the +rooms and struck everyone by his preoccupied, absent-minded, and +morose air. + +Since the ball he had felt the approach of a fit of nervous +depression and had made desperate efforts to combat it. Since the +intimacy of his wife with the royal prince, Pierre had unexpectedly +been made a gentleman of the bedchamber, and from that time he had +begun to feel oppressed and ashamed in court society, and dark +thoughts of the vanity of all things human came to him oftener than +before. At the same time the feeling he had noticed between his +protegee Natasha and Prince Andrew accentuated his gloom by the +contrast between his own position and his friend's. He tried equally +to avoid thinking about his wife, and about Natasha and Prince Andrew; +and again everything seemed to him insignificant in comparison with +eternity; again the question: for what? presented itself; and he +forced himself to work day and night at Masonic labors, hoping to +drive away the evil spirit that threatened him. Toward midnight, after +he had left the countess' apartments, he was sitting upstairs in a +shabby dressing gown, copying out the original transaction of the +Scottish lodge of Freemasons at a table in his low room cloudy with +tobacco smoke, when someone came in. It was Prince Andrew. + +"Ah, it's you!" said Pierre with a preoccupied, dissatisfied air. +"And I, you see, am hard at it." He pointed to his manuscript book +with that air of escaping from the ills of life with which unhappy +people look at their work. + +Prince Andrew, with a beaming, ecstatic expression of renewed life +on his face, paused in front of Pierre and, not noticing his sad look, +smiled at him with the egotism of joy. + +"Well, dear heart," said he, "I wanted to tell you about it +yesterday and I have come to do so today. I never experienced anything +like it before. I am in love, my friend!" + +Suddenly Pierre heaved a deep sigh and dumped his heavy person +down on the sofa beside Prince Andrew. + +"With Natasha Rostova, yes?" said he. + +"Yes, yes! Who else should it be? I should never have believed it, +but the feeling is stronger than I. Yesterday I tormented myself and +suffered, but I would not exchange even that torment for anything in +the world, I have not lived till now. At last I live, but I can't live +without her! But can she love me?... I am too old for her.... Why +don't you speak?" + +"I? I? What did I tell you?" said Pierre suddenly, rising and +beginning to pace up and down the room. "I always thought it.... +That girl is such a treasure... she is a rare girl.... My dear friend, +I entreat you, don't philosophize, don't doubt, marry, marry, +marry.... And I am sure there will not be a happier man than you." + +"But what of her?" + +"She loves you." + +"Don't talk rubbish..." said Prince Andrew, smiling and looking into +Pierre's eyes. + +"She does, I know," Pierre cried fiercely. + +"But do listen," returned Prince Andrew, holding him by the arm. "Do +you know the condition I am in? I must talk about it to someone." + +"Well, go on, go on. I am very glad," said Pierre, and his face +really changed, his brow became smooth, and he listened gladly to +Prince Andrew. Prince Andrew seemed, and really was, quite a +different, quite a new man. Where was his spleen, his contempt for +life, his disillusionment? Pierre was the only person to whom he +made up his mind to speak openly; and to him he told all that was in +his soul. Now he boldly and lightly made plans for an extended future, +said he could not sacrifice his own happiness to his father's caprice, +and spoke of how he would either make his father consent to this +marriage and love her, or would do without his consent; then he +marveled at the feeling that had mastered him as at something strange, +apart from and independent of himself. + +"I should not have believed anyone who told me that I was capable of +such love," said Prince Andrew. "It is not at all the same feeling +that I knew in the past. The whole world is now for me divided into +two halves: one half is she, and there all is joy, hope, light: the +other half is everything where she is not, and there is all gloom +and darkness...." + +"Darkness and gloom," reiterated Pierre: "yes, yes, I understand +that." + +"I cannot help loving the light, it is not my fault. And I am very +happy! You understand me? I know you are glad for my sake." + +"Yes, yes," Pierre assented, looking at his friend with a touched +and sad expression in his eyes. The brighter Prince Andrew's lot +appeared to him, the gloomier seemed his own. + + + + + +CHAPTER XXIII + + +Prince Andrew needed his father's consent to his marriage, and to +obtain this he started for the country next day. + +His father received his son's communication with external composure, +but inward wrath. He could not comprehend how anyone could wish to +alter his life or introduce anything new into it, when his own life +was already ending. "If only they would let me end my days as I want +to," thought the old man, "then they might do as they please." With +his son, however, he employed the diplomacy he reserved for +important occasions and, adopting a quiet tone, discussed the whole +matter. + +In the first place the marriage was not a brilliant one as regards +birth, wealth, or rank. Secondly, Prince Andrew was no longer as young +as he had been and his health was poor (the old man laid special +stress on this), while she was very young. Thirdly, he had a son +whom it would be a pity to entrust to a chit of a girl. "Fourthly +and finally," the father said, looking ironically at his son, "I beg +you to put it off for a year: go abroad, take a cure, look out as +you wanted to for a German tutor for Prince Nicholas. Then if your +love or passion or obstinacy--as you please--is still as great, marry! +And that's my last word on it. Mind, the last..." concluded the +prince, in a tone which showed that nothing would make him alter his +decision. + +Prince Andrew saw clearly that the old man hoped that his +feelings, or his fiancee's, would not stand a year's test, or that +he (the old prince himself) would die before then, and he decided to +conform to his father's wish--to propose, and postpone the wedding for +a year. + +Three weeks after the last evening he had spent with the Rostovs, +Prince Andrew returned to Petersburg. + + +Next day after her talk with her mother Natasha expected Bolkonski +all day, but he did not come. On the second and third day it was the +same. Pierre did not come either and Natasha, not knowing that +Prince Andrew had gone to see his father, could not explain his +absence to herself. + +Three weeks passed in this way. Natasha had no desire to go out +anywhere and wandered from room to room like a shadow, idle and +listless; she wept secretly at night and did not go to her mother in +the evenings. She blushed continually and was irritable. It seemed +to her that everybody knew about her disappointment and was laughing +at her and pitying her. Strong as was her inward grief, this wound +to her vanity intensified her misery. + +Once she came to her mother, tried to say something, and suddenly +began to cry. Her tears were those of an offended child who does not +know why it is being punished. + +The countess began to soothe Natasha, who after first listening to +her mother's words, suddenly interrupted her: + +"Leave off, Mamma! I don't think, and don't want to think about +it! He just came and then left off, left off..." + +Her voice trembled, and she again nearly cried, but recovered and +went on quietly: + +"And I don't at all want to get married. And I am afraid of him; I +have now become quite calm, quite calm." + +The day after this conversation Natasha put on the old dress which +she knew had the peculiar property of conducing to cheerfulness in the +mornings, and that day she returned to the old way of life which she +had abandoned since the ball. Having finished her morning tea she went +to the ballroom, which she particularly liked for its loud +resonance, and began singing her solfeggio. When she had finished +her first exercise she stood still in the middle of the room and +sang a musical phrase that particularly pleased her. She listened +joyfully (as though she had not expected it) to the charm of the notes +reverberating, filling the whole empty ballroom, and slowly dying +away; and all at once she felt cheerful. "What's the good of making so +much of it? Things are nice as it is," she said to herself, and she +began walking up and down the room, not stepping simply on the +resounding parquet but treading with each step from the heel to the +toe (she had on a new and favorite pair of shoes) and listening to the +regular tap of the heel and creak of the toe as gladly as she had to +the sounds of her own voice. Passing a mirror she glanced into it. +"There, that's me!" the expression of her face seemed to say as she +caught sight of herself. "Well, and very nice too! I need nobody." + +A footman wanted to come in to clear away something in the room +but she would not let him, and having closed the door behind him +continued her walk. That morning she had returned to her favorite +mood--love of, and delight in, herself. "How charming that Natasha +is!" she said again, speaking as some third, collective, male +person. "Pretty, a good voice, young, and in nobody's way if only they +leave her in peace." But however much they left her in peace she could +not now be at peace, and immediately felt this. + +In the hall the porch door opened, and someone asked, "At home?" and +then footsteps were heard. Natasha was looking at the mirror, but +did not see herself. She listened to the sounds in the hall. When +she saw herself, her face was pale. It was he. She knew this for +certain, though she hardly heard his voice through the closed doors. + +Pale and agitated, Natasha ran into the drawing room. + +"Mamma! Bolkonski has come!" she said. "Mamma, it is awful, it is +unbearable! I don't want... to be tormented? What am I to do?..." + +Before the countess could answer, Prince Andrew entered the room +with an agitated and serious face. As soon as he saw Natasha his +face brightened. He kissed the countess' hand and Natasha's, and sat +down beside the sofa. + +"It is long since we had the pleasure..." began the countess, but +Prince Andrew interrupted her by answering her intended question, +obviously in haste to say what he had to. + +"I have not been to see all this time because I have been at my +father's. I had to talk over a very important matter with him. I +only got back last night," he said glancing at Natasha; "I want to +have a talk with you, Countess," he added after a moment's pause. + +The countess lowered her eyes, sighing deeply. + +"I am at your disposal," she murmured. + +Natasha knew that she ought to go away, but was unable to do so: +something gripped her throat, and regardless of manners she stared +straight at Prince Andrew with wide-open eyes. + +"At once? This instant!... No, it can't be!" she thought. + +Again he glanced at her, and that glance convinced her that she +was not mistaken. Yes, at once, that very instant, her fate would be +decided. + +"Go, Natasha! I will call you," said the countess in a whisper. + +Natasha glanced with frightened imploring eyes at Prince Andrew +and at her mother and went out. + +"I have come, Countess, to ask for your daughter's hand," said +Prince Andrew. + +The countess' face flushed hotly, but she said nothing. + +"Your offer..." she began at last sedately. He remained silent, +looking into her eyes. "Your offer..." (she grew confused) "is +agreeable to us, and I accept your offer. I am glad. And my husband... +I hope... but it will depend on her...." + +"I will speak to her when I have your consent.... Do you give it +to me?" said Prince Andrew. + +"Yes," replied the countess. She held out her hand to him, and +with a mixed feeling of estrangement and tenderness pressed her lips +to his forehead as he stooped to kiss her hand. She wished to love him +as a son, but felt that to her he was a stranger and a terrifying man. +"I am sure my husband will consent," said the countess, "but your +father..." + +"My father, to whom I have told my plans, has made it an express +condition of his consent that the wedding is not to take place for a +year. And I wished to tell you of that," said Prince Andrew. + +"It is true that Natasha is still young, but--so long as that?..." + +"It is unavoidable," said Prince Andrew with a sigh. + +"I will send her to you," said the countess, and left the room. + +"Lord have mercy upon us!" she repeated while seeking her daughter. + +Sonya said that Natasha was in her bedroom. Natasha was sitting on +the bed, pale and dry eyed, and was gazing at the icons and whispering +something as she rapidly crossed herself. Seeing her mother she jumped +up and flew to her. + +"Well, Mamma?... Well?..." + +"Go, go to him. He is asking for your hand," said the countess, +coldly it seemed to Natasha. "Go... go," said the mother, sadly and +reproachfully, with a deep sigh, as her daughter ran away. + +Natasha never remembered how she entered the drawing room. When +she came in and saw him she paused. "Is it possible that this stranger +has now become everything to me?" she asked herself, and immediately +answered, "Yes, everything! He alone is now dearer to me than +everything in the world." Prince Andrew came up to her with downcast +eyes. + +"I have loved you from the very first moment I saw you. May I hope?" + +He looked at her and was struck by the serious impassioned +expression of her face. Her face said: "Why ask? Why doubt what you +cannot but know? Why speak, when words cannot express what one feels?" + +She drew near to him and stopped. He took her hand and kissed it. + +"Do you love me?" + +"Yes, yes!" Natasha murmured as if in vexation. Then she sighed +loudly and, catching her breath more and more quickly, began to sob. + +"What is it? What's the matter?" + +"Oh, I am so happy!" she replied, smiled through her tears, bent +over closer to him, paused for an instant as if asking herself whether +she might, and then kissed him. + +Prince Andrew held her hands, looked into her eyes, and did not find +in his heart his former love for her. Something in him had suddenly +changed; there was no longer the former poetic and mystic charm of +desire, but there was pity for her feminine and childish weakness, +fear at her devotion and trustfulness, and an oppressive yet joyful +sense of the duty that now bound him to her forever. The present +feeling, though not so bright and poetic as the former, was stronger +and more serious. + +"Did your mother tell you that it cannot be for a year?" asked +Prince Andrew, still looking into her eyes. + +"Is it possible that I--the 'chit of a girl,' as everybody called +me," thought Natasha--"is it possible that I am now to be the wife and +the equal of this strange, dear, clever man whom even my father +looks up to? Can it be true? Can it be true that there can be no +more playing with life, that now I am grown up, that on me now lies +a responsibility for my every word and deed? Yes, but what did he +ask me?" + +"No," she replied, but she had not understood his question. + +"Forgive me!" he said. "But you are so young, and I have already +been through so much in life. I am afraid for you, you do not yet know +yourself." + +Natasha listened with concentrated attention, trying but failing +to take in the meaning of his words. + +"Hard as this year which delays my happiness will be," continued +Prince Andrew, "it will give you time to be sure of yourself. I ask +you to make me happy in a year, but you are free: our engagement shall +remain a secret, and should you find that you do not love me, or +should you come to love..." said Prince Andrew with an unnatural +smile. + +"Why do you say that?" Natasha interrupted him. "You know that +from the very day you first came to Otradnoe I have loved you," she +cried, quite convinced that she spoke the truth. + +"In a year you will learn to know yourself...." + +"A whole year!" Natasha repeated suddenly, only now realizing that +the marriage was to be postponed for a year. "But why a year? Why a +year?..." + +Prince Andrew began to explain to her the reasons for this delay. +Natasha did not hear him. + +"And can't it be helped?" she asked. Prince Andrew did not reply, +but his face expressed the impossibility of altering that decision. + +"It's awful! Oh, it's awful! awful!" Natasha suddenly cried, and +again burst into sobs. "I shall die, waiting a year: it's +impossible, it's awful!" She looked into her lover's face and saw in +it a look of commiseration and perplexity. + +"No, no! I'll do anything!" she said, suddenly checking her tears. +"I am so happy." + +The father and mother came into the room and gave the betrothed +couple their blessing. + +From that day Prince Andrew began to frequent the Rostovs' as +Natasha's affianced lover. + + + + + +CHAPTER XXIV + +No betrothal ceremony took place and Natasha's engagement to +Bolkonski was not announced; Prince Andrew insisted on that. He said +that as he was responsible for the delay he ought to bear the whole +burden of it; that he had given his word and bound himself forever, +but that he did not wish to bind Natasha and gave her perfect freedom. +If after six months she felt that she did not love him she would +have full right to reject him. Naturally neither Natasha nor her +parents wished to hear of this, but Prince Andrew was firm. He came +every day to the Rostovs', but did not behave to Natasha as an +affianced lover: he did not use the familiar thou, but said you to +her, and kissed only her hand. After their engagement, quite +different, intimate, and natural relations sprang up between them. +It was as if they had not known each other till now. Both liked to +recall how they had regarded each other when as yet they were +nothing to one another; they felt themselves now quite different +beings: then they were artificial, now natural and sincere. At first +the family felt some constraint in intercourse with Prince Andrew; +he seemed a man from another world, and for a long time Natasha +trained the family to get used to him, proudly assuring them all +that he only appeared to be different, but was really just like all of +them, and that she was not afraid of him and no one else ought to +be. After a few days they grew accustomed to him, and without +restraint in his presence pursued their usual way of life, in which he +took his part. He could talk about rural economy with the count, +fashions with the countess and Natasha, and about albums and fancywork +with Sonya. Sometimes the household both among themselves and in his +presence expressed their wonder at how it had all happened, and at the +evident omens there had been of it: Prince Andrew's coming to Otradnoe +and their coming to Petersburg, and the likeness between Natasha and +Prince Andrew which her nurse had noticed on his first visit, and +Andrew's encounter with Nicholas in 1805, and many other incidents +betokening that it had to be. + +In the house that poetic dullness and quiet reigned which always +accompanies the presence of a betrothed couple. Often when all sitting +together everyone kept silent. Sometimes the others would get up and +go away and the couple, left alone, still remained silent. They rarely +spoke of their future life. Prince Andrew was afraid and ashamed to +speak of it. Natasha shared this as she did all his feelings, which +she constantly divined. Once she began questioning him about his +son. Prince Andrew blushed, as he often did now--Natasha +particularly liked it in him--and said that his son would not live +with them. + +"Why not?" asked Natasha in a frightened tone. + +"I cannot take him away from his grandfather, and besides..." + +"How I should have loved him!" said Natasha, immediately guessing +his thought; "but I know you wish to avoid any pretext for finding +fault with us." + +Sometimes the old count would come up, kiss Prince Andrew, and ask +his advice about Petya's education or Nicholas' service. The old +countess sighed as she looked at them; Sonya was always getting +frightened lest she should be in the way and tried to find excuses for +leaving them alone, even when they did not wish it. When Prince Andrew +spoke (he could tell a story very well), Natasha listened to him +with pride; when she spoke she noticed with fear and joy that he gazed +attentively and scrutinizingly at her. She asked herself in +perplexity: "What does he look for in me? He is trying to discover +something by looking at me! What if what he seeks in me is not there?" +Sometimes she fell into one of the mad, merry moods characteristic +of her, and then she particularly loved to hear and see how Prince +Andrew laughed. He seldom laughed, but when he did he abandoned +himself entirely to his laughter, and after such a laugh she always +felt nearer to him. Natasha would have been completely happy if the +thought of the separation awaiting her and drawing near had not +terrified her, just as the mere thought of it made him turn pale and +cold. + +On the eve of his departure from Petersburg Prince Andrew brought +with him Pierre, who had not been to the Rostovs' once since the ball. +Pierre seemed disconcerted and embarrassed. He was talking to the +countess, and Natasha sat down beside a little chess table with Sonya, +thereby inviting Prince Andrew to come too. He did so. + +"You have known Bezukhov a long time?" he asked. "Do you like him?" + +"Yes, he's a dear, but very absurd." + +And as usual when speaking of Pierre, she began to tell anecdotes of +his absent-mindedness, some of which had even been invented about him. + +"Do you know I have entrusted him with our secret? I have known +him from childhood. He has a heart of gold. I beg you, Natalie," +Prince Andrew said with sudden seriousness--"I am going away and +heaven knows what may happen. You may cease to... all right, I know +I am not to say that. Only this, then: whatever may happen to you when +I am not here..." + +"What can happen?" + +"Whatever trouble may come," Prince Andrew continued, "I beg you, +Mademoiselle Sophie, whatever may happen, to turn to him alone for +advice and help! He is a most absent-minded and absurd fellow, but +he has a heart of gold." + +Neither her father, nor her mother, nor Sonya, nor Prince Andrew +himself could have foreseen how the separation from her lover would +act on Natasha. Flushed and agitated she went about the house all that +day, dry-eyed, occupied with most trivial matters as if not +understanding what awaited her. She did not even cry when, on taking +leave, he kissed her hand for the last time. "Don't go!" she said in a +tone that made him wonder whether he really ought not to stay and +which he remembered long afterwards. Nor did she cry when he was gone; +but for several days she sat in her room dry-eyed, taking no +interest in anything and only saying now and then, "Oh, why did he +go away?" + +But a fortnight after his departure, to the surprise of those around +her, she recovered from her mental sickness just as suddenly and +became her old self again, but with a change in her moral physiognomy, +as a child gets up after a long illness with a changed expression of +face. + + + + + +CHAPTER XXV + + +During that year after his son's departure, Prince Nicholas +Bolkonski's health and temper became much worse. He grew still more +irritable, and it was Princess Mary who generally bore the brunt of +his frequent fits of unprovoked anger. He seemed carefully to seek out +her tender spots so as to torture her mentally as harshly as possible. +Princess Mary had two passions and consequently two joys--her +nephew, little Nicholas, and religion--and these were the favorite +subjects of the prince's attacks and ridicule. Whatever was spoken +of he would bring round to the superstitiousness of old maids, or +the petting and spoiling of children. "You want to make him"--little +Nicholas--"into an old maid like yourself! A pity! Prince Andrew wants +a son and not an old maid," he would say. Or, turning to +Mademoiselle Bourienne, he would ask her in Princess Mary's presence +how she liked our village priests and icons and would joke about them. + +He continually hurt Princess Mary's feelings and tormented her, +but it cost her no effort to forgive him. Could he be to blame +toward her, or could her father, whom she knew loved her in spite of +it all, be unjust? And what is justice? The princess never thought +of that proud word "justice." All the complex laws of man centered for +her in one clear and simple law--the law of love and self-sacrifice +taught us by Him who lovingly suffered for mankind though He Himself +was God. What had she to do with the justice or injustice of other +people? She had to endure and love, and that she did. + +During the winter Prince Andrew had come to Bald Hills and had +been gay, gentle, and more affectionate than Princess Mary had known +him for a long time past. She felt that something had happened to him, +but he said nothing to her about his love. Before he left he had a +long talk with his father about something, and Princess Mary noticed +that before his departure they were dissatisfied with one another. + +Soon after Prince Andrew had gone, Princess Mary wrote to her friend +Julie Karagina in Petersburg, whom she had dreamed (as all girls +dream) of marrying to her brother, and who was at that time in +mourning for her own brother, killed in Turkey. + + +Sorrow, it seems, is our common lot, my dear, tender friend Julie. + +Your loss is so terrible that I can only explain it to myself as a +special providence of God who, loving you, wishes to try you and +your excellent mother. Oh, my friend! Religion, and religion alone, +can--I will not say comfort us--but save us from despair. Religion +alone can explain to us what without its help man cannot comprehend: +why, for what cause, kind and noble beings able to find happiness in +life--not merely harming no one but necessary to the happiness of +others--are called away to God, while cruel, useless, harmful persons, +or such as are a burden to themselves and to others, are left +living. The first death I saw, and one I shall never forget--that of +my dear sister-in-law--left that impression on me. Just as you ask +destiny why your splendid brother had to die, so I asked why that +angel Lise, who not only never wronged anyone, but in whose soul there +were never any unkind thoughts, had to die. And what do you think, +dear friend? Five years have passed since then, and already I, with my +petty understanding, begin to see clearly why she had to die, and in +what way that death was but an expression of the infinite goodness +of the Creator, whose every action, though generally +incomprehensible to us, is but a manifestation of His infinite love +for His creatures. Perhaps, I often think, she was too angelically +innocent to have the strength to perform all a mother's duties. As a +young wife she was irreproachable; perhaps she could not have been +so as a mother. As it is, not only has she left us, and particularly +Prince Andrew, with the purest regrets and memories, but probably +she will there receive a place I dare not hope for myself. But not +to speak of her alone, that early and terrible death has had the +most beneficent influence on me and on my brother in spite of all +our grief. Then, at the moment of our loss, these thoughts could not +occur to me; I should then have dismissed them with horror, but now +they are very clear and certain. I write all this to you, dear friend, +only to convince you of the Gospel truth which has become for me a +principle of life: not a single hair of our heads will fall without +His will. And His will is governed only by infinite love for us, and +so whatever befalls us is for our good. + +You ask whether we shall spend next winter in Moscow. In spite of my +wish to see you, I do not think so and do not want to do so. You +will be surprised to hear that the reason for this is Buonaparte! +The case is this: my father's health is growing noticeably worse, he +cannot stand any contradiction and is becoming irritable. This +irritability is, as you know, chiefly directed to political questions. +He cannot endure the notion that Buonaparte is negotiating on equal +terms with all the sovereigns of Europe and particularly with our own, +the grandson of the Great Catherine! As you know, I am quite +indifferent to politics, but from my father's remarks and his talks +with Michael Ivanovich I know all that goes on in the world and +especially about the honors conferred on Buonaparte, who only at +Bald Hills in the whole world, it seems, is not accepted as a great +man, still less as Emperor of France. And my father cannot stand this. +It seems to me that it is chiefly because of his political views +that my father is reluctant to speak of going to Moscow; for he +foresees the encounters that would result from his way of expressing +his views regardless of anybody. All the benefit he might derive +from a course of treatment he would lose as a result of the disputes +about Buonaparte which would be inevitable. In any case it will be +decided very shortly. + +Our family life goes on in the old way except for my brother +Andrew's absence. He, as I wrote you before, has changed very much +of late. After his sorrow he only this year quite recovered his +spirits. He has again become as I used to know him when a child: kind, +affectionate, with that heart of gold to which I know no equal. He has +realized, it seems to me, that life is not over for him. But +together with this mental change he has grown physically much +weaker. He has become thinner and more nervous. I am anxious about him +and glad he is taking this trip abroad which the doctors recommended +long ago. I hope it will cure him. You write that in Petersburg he +is spoken of as one of the most active, cultivated, and capable of the +young men. Forgive my vanity as a relation, but I never doubted it. +The good he has done to everybody here, from his peasants up to the +gentry, is incalculable. On his arrival in Petersburg he received only +his due. I always wonder at the way rumors fly from Petersburg to +Moscow, especially such false ones as that you write about--I mean the +report of my brother's betrothal to the little Rostova. I do not think +my brother will ever marry again, and certainly not her; and this is +why: first, I know that though he rarely speaks about the wife he +has lost, the grief of that loss has gone too deep in his heart for +him ever to decide to give her a successor and our little angel a +stepmother. Secondly because, as far as I know, that girl is not the +kind of girl who could please Prince Andrew. I do not think he would +choose her for a wife, and frankly I do not wish it. But I am +running on too long and am at the end of my second sheet. Good-by, +my dear friend. May God keep you in His holy and mighty care. My +dear friend, Mademoiselle Bourienne, sends you kisses. + +MARY + + + + + +CHAPTER XXVI + + +In the middle of the summer Princess Mary received an unexpected +letter from Prince Andrew in Switzerland in which he gave her +strange and surprising news. He informed her of his engagement to +Natasha Rostova. The whole letter breathed loving rapture for his +betrothed and tender and confiding affection for his sister. He +wrote that he had never loved as he did now and that only now did he +understand and know what life was. He asked his sister to forgive +him for not having told her of his resolve when he had last visited +Bald Hills, though he had spoken of it to his father. He had not +done so for fear Princess Mary should ask her father to give his +consent, irritating him and having to bear the brunt of his +displeasure without attaining her object. "Besides," he wrote, "the +matter was not then so definitely settled as it is now. My father then +insisted on a delay of a year and now already six months, half of that +period, have passed, and my resolution is firmer than ever. If the +doctors did not keep me here at the spas I should be back in Russia, +but as it is I have to postpone my return for three months. You know +me and my relations with Father. I want nothing from him. I have +been and always shall be independent; but to go against his will and +arouse his anger, now that he may perhaps remain with us such a +short time, would destroy half my happiness. I am now writing to him +about the same question, and beg you to choose a good moment to hand +him the letter and to let me know how he looks at the whole matter and +whether there is hope that he may consent to reduce the term by four +months." + +After long hesitations, doubts, and prayers, Princess Mary gave +the letter to her father. The next day the old prince said to her +quietly: + +"Write and tell your brother to wait till I am dead.... It won't +be long--I shall soon set him free." + +The princess was about to reply, but her father would not let her +speak and, raising his voice more and more, cried: + +"Marry, marry, my boy!... A good family!... Clever people, eh? Rich, +eh? Yes, a nice stepmother little Nicholas will have! Write and tell +him that he may marry tomorrow if he likes. She will be little +Nicholas' stepmother and I'll marry Bourienne!... Ha, ha, ha! He +mustn't be without a stepmother either! Only one thing, no more +women are wanted in my house--let him marry and live by himself. +Perhaps you will go and live with him too?" he added, turning to +Princess Mary. "Go in heavens name! Go out into the frost... the +frost... the frost! + +After this outburst the prince did not speak any more about the +matter. But repressed vexation at his son's poor-spirited behavior +found expression in his treatment of his daughter. To his former +pretexts for irony a fresh one was now added--allusions to stepmothers +and amiabilities to Mademoiselle Bourienne. + +"Why shouldn't I marry her?" he asked his daughter. "She'll make a +splendid princess!" + +And latterly, to her surprise and bewilderment, Princess Mary +noticed that her father was really associating more and more with +the Frenchwoman. She wrote to Prince Andrew about the reception of his +letter, but comforted him with hopes of reconciling their father to +the idea. + +Little Nicholas and his education, her brother Andrew, and +religion were Princess Mary's joys and consolations; but besides that, +since everyone must have personal hopes, Princess Mary in the +profoundest depths of her heart had a hidden dream and hope that +supplied the chief consolation of her life. This comforting dream +and hope were given her by God's folk--the half-witted and other +pilgrims who visited her without the prince's knowledge. The longer +she lived, the more experience and observation she had of life, the +greater was her wonder at the short-sightedness of men who seek +enjoyment and happiness here on earth: toiling, suffering, struggling, +and harming one another, to obtain that impossible, visionary, +sinful happiness. Prince Andrew had loved his wife, she died, but that +was not enough: he wanted to bind his happiness to another woman. +Her father objected to this because he wanted a more distinguished and +wealthier match for Andrew. And they all struggled and suffered and +tormented one another and injured their souls, their eternal souls, +for the attainment of benefits which endure but for an instant. Not +only do we know this ourselves, but Christ, the Son of God, came +down to earth and told us that this life is but for a moment and is +a probation; yet we cling to it and think to find happiness in it. +"How is it that no one realizes this?" thought Princess Mary. "No +one except these despised God's folk who, wallet on back, come to me +by the back door, afraid of being seen by the prince, not for fear +of ill-usage by him but for fear of causing him to sin. To leave +family, home, and all the cares of worldly welfare, in order without +clinging to anything to wander in hempen rags from place to place +under an assumed name, doing no one any harm but praying for all- +for those who drive one away as well as for those who protect one: +higher than that life and truth there is no life or truth!" + +There was one pilgrim, a quiet pockmarked little woman of fifty +called Theodosia, who for over thirty years had gone about barefoot +and worn heavy chains. Princess Mary was particularly fond of her. +Once, when in a room with a lamp dimly lit before the icon Theodosia +was talking of her life, the thought that Theodosia alone had found +the true path of life suddenly came to Princess Mary with such force +that she resolved to become a pilgrim herself. When Theodosia had gone +to sleep Princess Mary thought about this for a long time, and at last +made up her mind that, strange as it might seem, she must go on a +pilgrimage. She disclosed this thought to no one but to her confessor, +Father Akinfi, the monk, and he approved of her intention. Under guise +of a present for the pilgrims, Princess Mary prepared a pilgrim's +complete costume for herself: a coarse smock, bast shoes, a rough +coat, and a black kerchief. Often, approaching the chest of drawers +containing this secret treasure, Princess Mary paused, uncertain +whether the time had not already come to put her project into +execution. + +Often, listening to the pilgrims' tales, she was so stimulated by +their simple speech, mechanical to them but to her so full of deep +meaning, that several times she was on the point of abandoning +everything and running away from home. In imagination she already +pictured herself by Theodosia's side, dressed in coarse rags, +walking with a staff, a wallet on her back, along the dusty road, +directing her wanderings from one saint's shrine to another, free from +envy, earthly love, or desire, and reaching at last the place where +there is no more sorrow or sighing, but eternal joy and bliss. + +"I shall come to a place and pray there, and before having time to +get used to it or getting to love it, I shall go farther. I will go on +till my legs fail, and I'll lie down and die somewhere, and shall at +last reach that eternal, quiet haven, where there is neither sorrow +nor sighing..." thought Princess Mary. + +But afterwards, when she saw her father and especially little Koko +(Nicholas), her resolve weakened. She wept quietly, and felt that +she was a sinner who loved her father and little nephew more than God. + + + + + +BOOK SEVEN: 1810 --11 + + + + + +CHAPTER I + + +The Bible legend tells us that the absence of labor--idleness--was a +condition of the first man's blessedness before the Fall. Fallen man +has retained a love of idleness, but the curse weighs on the race +not only because we have to seek our bread in the sweat of our +brows, but because our moral nature is such that we cannot be both +idle and at ease. An inner voice tells us we are in the wrong if we +are idle. If man could find a state in which he felt that though +idle he was fulfilling his duty, he would have found one of the +conditions of man's primitive blessedness. And such a state of +obligatory and irreproachable idleness is the lot of a whole class- +the military. The chief attraction of military service has consisted +and will consist in this compulsory and irreproachable idleness. + +Nicholas Rostov experienced this blissful condition to the full +when, after 1807, he continued to serve in the Pavlograd regiment, +in which he already commanded the squadron he had taken over from +Denisov. + +Rostov had become a bluff, good-natured fellow, whom his Moscow +acquaintances would have considered rather bad form, but who was liked +and respected by his comrades, subordinates, and superiors, and was +well contented with his life. Of late, in 1809, he found in letters +from home more frequent complaints from his mother that their +affairs were falling into greater and greater disorder, and that it +was time for him to come back to gladden and comfort his old parents. + +Reading these letters, Nicholas felt a dread of their wanting to +take him away from surroundings in which, protected from all the +entanglements of life, he was living so calmly and quietly. He felt +that sooner or later he would have to re-enter that whirlpool of life, +with its embarrassments and affairs to be straightened out, its +accounts with stewards, quarrels, and intrigues, its ties, society, +and with Sonya's love and his promise to her. It was all dreadfully +difficult and complicated; and he replied to his mother in cold, +formal letters in French, beginning: "My dear Mamma," and ending: +"Your obedient son," which said nothing of when he would return. In +1810 he received letters from his parents, in which they told him of +Natasha's engagement to Bolkonski, and that the wedding would be in +a year's time because the old prince made difficulties. This letter +grieved and mortified Nicholas. In the first place he was sorry that +Natasha, for whom he cared more than for anyone else in the family, +should be lost to the home; and secondly, from his hussar point of +view, he regretted not to have been there to show that fellow +Bolkonski that connection with him was no such great honor after +all, and that if he loved Natasha he might dispense with permission +from his dotard father. For a moment he hesitated whether he should +not apply for leave in order to see Natasha before she was married, +but then came the maneuvers, and considerations about Sonya and +about the confusion of their affairs, and Nicholas again put it off. +But in the spring of that year, he received a letter from his +mother, written without his father's knowledge, and that letter +persuaded him to return. She wrote that if he did not come and take +matters in hand, their whole property would be sold by auction and +they would all have to go begging. The count was so weak, and +trusted Mitenka so much, and was so good-natured, that everybody +took advantage of him and things were going from bad to worse. "For +God's sake, I implore you, come at once if you do not wish to make +me and the whole family wretched," wrote the countess. + +This letter touched Nicholas. He had that common sense of a +matter-of-fact man which showed him what he ought to do. + +The right thing now was, if not to retire from the service, at any +rate to go home on leave. Why he had to go he did not know; but +after his after-dinner nap he gave orders to saddle Mars, an extremely +vicious gray stallion that had not been ridden for a long time, and +when he returned with the horse all in a lather, he informed Lavrushka +(Denisov's servant who had remained with him) and his comrades who +turned up in the evening that he was applying for leave and was +going home. Difficult and strange as it was for him to reflect that he +would go away without having heard from the staff--and this interested +him extremely--whether he was promoted to a captaincy or would receive +the Order of St. Anne for the last maneuvers; strange as it was to +think that he would go away without having sold his three roans to the +Polish Count Golukhovski, who was bargaining for the horses Rostov had +betted he would sell for two thousand rubles; incomprehensible as it +seemed that the ball the hussars were giving in honor of the Polish +Mademoiselle Przazdziecka (out of rivalry to the Uhlans who had +given one in honor of their Polish Mademoiselle Borzozowska) would +take place without him--he knew he must go away from this good, bright +world to somewhere where everything was stupid and confused. A week +later he obtained his leave. His hussar comrades--not only those of +his own regiment, but the whole brigade--gave Rostov a dinner to which +the subscription was fifteen rubles a head, and at which there were +two bands and two choirs of singers. Rostov danced the Trepak with +Major Basov; the tipsy officers tossed, embraced, and dropped +Rostov; the soldiers of the third squadron tossed him too, and shouted +"hurrah!" and then they put him in his sleigh and escorted him as +far as the first post station. + +During the first half of the journey--from Kremenchug to Kiev--all +Rostov's thoughts, as is usual in such cases, were behind him, with +the squadron; but when he had gone more than halfway he began to +forget his three roans and Dozhoyveyko, his quartermaster, and to +wonder anxiously how things would be at Otradnoe and what he would +find there. Thoughts of home grew stronger the nearer he approached +it--far stronger, as though this feeling of his was subject to the law +by which the force of attraction is in inverse proportion to the +square of the distance. At the last post station before Otradnoe he +gave the driver a three-ruble tip, and on arriving he ran +breathlessly, like a boy, up the steps of his home. + +After the rapture of meeting, and after that odd feeling of +unsatisfied expectation--the feeling that "everything is just the +same, so why did I hurry?"--Nicholas began to settle down in his old +home world. His father and mother were much the same, only a little +older. What was new in them was a certain uneasiness and occasional +discord, which there used not to be, and which, as Nicholas soon found +out, was due to the bad state of their affairs. Sonya was nearly +twenty; she had stopped growing prettier and promised nothing more +than she was already, but that was enough. She exhaled happiness and +love from the time Nicholas returned, and the faithful, unalterable +love of this girl had a gladdening effect on him. Petya and Natasha +surprised Nicholas most. Petya was a big handsome boy of thirteen, +merry, witty, and mischievous, with a voice that was already breaking. +As for Natasha, for a long while Nicholas wondered and laughed +whenever he looked at her. + +"You're not the same at all," he said. + +"How? Am I uglier?" + +"On the contrary, but what dignity? A princess!" he whispered to +her. + +"Yes, yes, yes!" cried Natasha, joyfully. + +She told him about her romance with Prince Andrew and of his visit +to Otradnoe and showed him his last letter. + +"Well, are you glad?" Natasha asked. "I am so tranquil and happy +now." + +"Very glad," answered Nicholas. "He is an excellent fellow.... And +are you very much in love?" + +"How shall I put it?" replied Natasha. "I was in love with Boris, +with my teacher, and with Denisov, but this is quite different. I feel +at peace and settled. I know that no better man than he exists, and +I am calm and contented now. Not at all as before." + +Nicholas expressed his disapproval of the postponement of the +marriage for a year; but Natasha attacked her brother with +exasperation, proving to him that it could not be otherwise, and +that it would be a bad thing to enter a family against the father's +will, and that she herself wished it so. + +"You don't at all understand," she said. + +Nicholas was silent and agreed with her. + +Her brother often wondered as he looked at her. She did not seem +at all like a girl in love and parted from her affianced husband. +She was even-tempered and calm and quite as cheerful as of old. This +amazed Nicholas and even made him regard Bolkonski's courtship +skeptically. He could not believe that her fate was sealed, especially +as he had not seen her with Prince Andrew. It always seemed to him +that there was something not quite right about this intended marriage. + +"Why this delay? Why no betrothal?" he thought. Once, when he had +touched on this topic with his mother, he discovered, to his +surprise and somewhat to his satisfaction, that in the depth of her +soul she too had doubts about this marriage. + +"You see he writes," said she, showing her son a letter of Prince +Andrew's, with that latent grudge a mother always has in regard to a +daughter's future married happiness, "he writes that he won't come +before December. What can be keeping him? Illness, probably! His +health is very delicate. Don't tell Natasha. And don't attach +importance to her being so bright: that's because she's living through +the last days of her girlhood, but I know what she is like every +time we receive a letter from him! However, God grant that +everything turns out well!" (She always ended with these words.) "He +is an excellent man!" + + + + + +CHAPTER II + + +After reaching home Nicholas was at first serious and even dull. +He was worried by the impending necessity of interfering in the stupid +business matters for which his mother had called him home. To throw +off this burden as quickly as possible, on the third day after his +arrival he went, angry and scowling and without answering questions as +to where he was going, to Mitenka's lodge and demanded an account of +everything. But what an account of everything might be Nicholas knew +even less than the frightened and bewildered Mitenka. The conversation +and the examination of the accounts with Mitenka did not last long. +The village elder, a peasant delegate, and the village clerk, who were +waiting in the passage, heard with fear and delight first the young +count's voice roaring and snapping and rising louder and louder, and +then words of abuse, dreadful words, ejaculated one after the other. + +"Robber!... Ungrateful wretch!... I'll hack the dog to pieces! I'm +not my father!... Robbing us!..." and so on. + +Then with no less fear and delight they saw how the young count, red +in the face and with bloodshot eyes, dragged Mitenka out by the scruff +of the neck and applied his foot and knee to his behind with great +agility at convenient moments between the words, shouting, "Be off! +Never let me see your face here again, you villain!" + +Mitenka flew headlong down the six steps and ran away into the +shrubbery. (This shrubbery was a well-known haven of refuge for +culprits at Otradnoe. Mitenka himself, returning tipsy from the +town, used to hide there, and many of the residents at Otradnoe, +hiding from Mitenka, knew of its protective qualities.) + +Mitenka's wife and sisters-in-law thrust their heads and +frightened faces out of the door of a room where a bright samovar +was boiling and where the steward's high bedstead stood with its +patchwork quilt. + +The young count paid no heed to them, but, breathing hard, passed by +with resolute strides and went into the house. + +The countess, who heard at once from the maids what had happened +at the lodge, was calmed by the thought that now their affairs would +certainly improve, but on the other hand felt anxious as to the effect +this excitement might have on her son. She went several times to his +door on tiptoe and listened, as he lighted one pipe after another. + +Next day the old count called his son aside and, with an embarrassed +smile, said to him: + +"But you know, my dear boy, it's a pity you got excited! Mitenka has +told me all about it." + +"I knew," thought Nicholas, "that I should never understand anything +in this crazy world." + +"You were angry that he had not entered those 700 rubles. But they +were carried forward--and you did not look at the other page." + +"Papa, he is a blackguard and a thief! I know he is! And what I have +done, I have done; but, if you like, I won't speak to him again." + +"No, my dear boy" (the count, too, felt embarrassed. He knew he +had mismanaged his wife's property and was to blame toward his +children, but he did not know how to remedy it). "No, I beg you to +attend to the business. I am old. I..." + +"No, Papa. Forgive me if I have caused you unpleasantness. I +understand it all less than you do." + +"Devil take all these peasants, and money matters, and carryings +forward from page to page," he thought. "I used to understand what a +'corner' and the stakes at cards meant, but carrying forward to +another page I don't understand at all," said he to himself, and after +that he did not meddle in business affairs. But once the countess +called her son and informed him that she had a promissory note from +Anna Mikhaylovna for two thousand rubles, and asked him what he +thought of doing with it. + +"This," answered Nicholas. "You say it rests with me. Well, I +don't like Anna Mikhaylovna and I don't like Boris, but they were +our friends and poor. Well then, this!" and he tore up the note, and +by so doing caused the old countess to weep tears of joy. After +that, young Rostov took no further part in any business affairs, but +devoted himself with passionate enthusiasm to what was to him a new +pursuit--the chase--for which his father kept a large establishment. + + + + + +CHAPTER III + + +The weather was already growing wintry and morning frosts +congealed an earth saturated by autumn rains. The verdure had +thickened and its bright green stood out sharply against the +brownish strips of winter rye trodden down by the cattle, and +against the pale-yellow stubble of the spring buckwheat. The wooded +ravines and the copses, which at the end of August had still been +green islands amid black fields and stubble, had become golden and +bright-red islands amid the green winter rye. The hares had already +half changed their summer coats, the fox cubs were beginning to +scatter, and the young wolves were bigger than dogs. It was the best +time of the year for the chase. The hounds of that ardent young +sportsman Rostov had not merely reached hard winter condition, but +were so jaded that at a meeting of the huntsmen it was decided to give +them a three days' rest and then, on the sixteenth of September, to go +on a distant expedition, starting from the oak grove where there was +an undisturbed litter of wolf cubs. + +All that day the hounds remained at home. It was frosty and the +air was sharp, but toward evening the sky became overcast and it began +to thaw. On the fifteenth, when young Rostov, in his dressing gown, +looked out of the window, he saw it was an unsurpassable morning for +hunting: it was as if the sky were melting and sinking to the earth +without any wind. The only motion in the air was that of the dripping, +microscopic particles of drizzling mist. The bare twigs in the +garden were hung with transparent drops which fell on the freshly +fallen leaves. The earth in the kitchen garden looked wet and black +and glistened like poppy seed and at a short distance merged into +the dull, moist veil of mist. Nicholas went out into the wet and muddy +porch. There was a smell of decaying leaves and of dog. Milka, a +black-spotted, broad-haunched bitch with prominent black eyes, got +up on seeing her master, stretched her hind legs, lay down like a +hare, and then suddenly jumped up and licked him right on his nose and +mustache. Another borzoi, a dog, catching sight of his master from the +garden path, arched his back and, rushing headlong toward the porch +with lifted tail, began rubbing himself against his legs. + +"O-hoy!" came at that moment, that inimitable huntsman's call +which unites the deepest bass with the shrillest tenor, and round +the corner came Daniel the head huntsman and head kennelman, a gray, +wrinkled old man with hair cut straight over his forehead, Ukrainian +fashion, a long bent whip in his hand, and that look of independence +and scorn of everything that is only seen in huntsmen. He doffed his +Circassian cap to his master and looked at him scornfully. This +scorn was not offensive to his master. Nicholas knew that this Daniel, +disdainful of everybody and who considered himself above them, was all +the same his serf and huntsman. + +"Daniel!" Nicholas said timidly, conscious at the sight of the +weather, the hounds, and the huntsman that he was being carried away +by that irresistible passion for sport which makes a man forget all +his previous resolutions, as a lover forgets in the presence of his +mistress. + +"What orders, your excellency?" said the huntsman in his deep +bass, deep as a proto-deacon's and hoarse with hallooing--and two +flashing black eyes gazed from under his brows at his master, who +was silent. "Can you resist it?" those eyes seemed to be asking. + +"It's a good day, eh? For a hunt and a gallop, eh?" asked +Nicholas, scratching Milka behind the ears. + +Daniel did not answer, but winked instead. + +"I sent Uvarka at dawn to listen," his bass boomed out after a +minute's pause. "He says she's moved them into the Otradnoe enclosure. +They were howling there." (This meant that the she-wolf, about whom +they both knew, had moved with her cubs to the Otradnoe copse, a small +place a mile and a half from the house.) + +"We ought to go, don't you think so?" said Nicholas. "Come to me +with Uvarka." + +"As you please." + +"Then put off feeding them." + +"Yes, sir." + +Five minutes later Daniel and Uvarka were standing in Nicholas' +big study. Though Daniel was not a big man, to see him in a room was +like seeing a horse or a bear on the floor among the furniture and +surroundings of human life. Daniel himself felt this, and as usual +stood just inside the door, trying to speak softly and not move, for +fear of breaking something in the master's apartment, and he +hastened to say all that was necessary so as to get from under that +ceiling, out into the open under the sky once more. + +Having finished his inquiries and extorted from Daniel an opinion +that the hounds were fit (Daniel himself wished to go hunting), +Nicholas ordered the horses to be saddled. But just as Daniel was +about to go Natasha came in with rapid steps, not having done up her +hair or finished dressing and with her old nurse's big shawl wrapped +round her. Petya ran in at the same time. + +"You are going?" asked Natasha. "I knew you would! Sonya said you +wouldn't go, but I knew that today is the sort of day when you +couldn't help going." + +"Yes, we are going," replied Nicholas reluctantly, for today, as +he intended to hunt seriously, he did not want to take Natasha and +Petya. "We are going, but only wolf hunting: it would be dull for +you." + +"You know it is my greatest pleasure," said Natasha. "It's not fair; +you are going by yourself, are having the horses saddled and said +nothing to us about it." + +"'No barrier bars a Russian's path'--we'll go!" shouted Petya. + +"But you can't. Mamma said you mustn't," said Nicholas to Natasha. + +"Yes, I'll go. I shall certainly go," said Natasha decisively. +"Daniel, tell them to saddle for us, and Michael must come with my +dogs," she added to the huntsman. + +It seemed to Daniel irksome and improper to be in a room at all, but +to have anything to do with a young lady seemed to him impossible. +He cast down his eyes and hurried out as if it were none of his +business, careful as he went not to inflict any accidental injury on +the young lady. + + + + + +CHAPTER IV + + +The old count, who had always kept up an enormous hunting +establishment but had now handed it all completely over to his son's +care, being in very good spirits on this fifteenth of September, +prepared to go out with the others. + +In an hour's time the whole hunting party was at the porch. +Nicholas, with a stern and serious air which showed that now was no +time for attending to trifles, went past Natasha and Petya who were +trying to tell him something. He had a look at all the details of +the hunt, sent a pack of hounds and huntsmen on ahead to find the +quarry, mounted his chestnut Donets, and whistling to his own leash of +borzois, set off across the threshing ground to a field leading to the +Otradnoe wood. The old count's horse, a sorrel gelding called +Viflyanka, was led by the groom in attendance on him, while the +count himself was to drive in a small trap straight to a spot reserved +for him. + +They were taking fifty-four hounds, with six hunt attendants and +whippers-in. Besides the family, there were eight borzoi kennelmen and +more than forty borzois, so that, with the borzois on the leash +belonging to members of the family, there were about a hundred and +thirty dogs and twenty horsemen. + +Each dog knew its master and its call. Each man in the hunt knew his +business, his place, what he had to do. As soon as they had passed the +fence they all spread out evenly and quietly, without noise or talk, +along the road and field leading to the Otradnoe covert. + +The horses stepped over the field as over a thick carpet, now and +then splashing into puddles as they crossed a road. The misty sky +still seemed to descend evenly and imperceptibly toward the earth, the +air was still, warm, and silent. Occasionally the whistle of a +huntsman, the snort of a horse, the crack of a whip, or the whine of a +straggling hound could be heard. + +When they had gone a little less than a mile, five more riders +with dogs appeared out of the mist, approaching the Rostovs. In +front rode a fresh-looking, handsome old man with a large gray +mustache. + +"Good morning, Uncle!" said Nicholas, when the old man drew near. + +"That's it. Come on!... I was sure of it," began "Uncle." (He was +a distant relative of the Rostovs', a man of small means, and their +neighbor.) "I knew you wouldn't be able to resist it and it's a good +thing you're going. That's it! Come on! (This was "Uncle's" favorite +expression.) "Take the covert at once, for my Girchik says the Ilagins +are at Korniki with their hounds. That's it. Come on!... They'll +take the cubs from under your very nose." + +"That's where I'm going. Shall we join up our packs?" asked +Nicholas. + +The hounds were joined into one pack, and "Uncle" and Nicholas +rode on side by side. Natasha, muffled up in shawls which did not hide +her eager face and shining eyes, galloped up to them. She was followed +by Petya who always kept close to her, by Michael, a huntsman, and +by a groom appointed to look after her. Petya, who was laughing, +whipped and pulled at his horse. Natasha sat easily and confidently on +her black Arabchik and reined him in without effort with a firm hand. + +"Uncle" looked round disapprovingly at Petya and Natasha. He did not +like to combine frivolity with the serious business of hunting. + +"Good morning, Uncle! We are going too!" shouted Petya. + +"Good morning, good morning! But don't go overriding the hounds," +said "Uncle" sternly. + +"Nicholas, what a fine dog Trunila is! He knew me," said Natasha, +referring to her favorite hound. + +"In the first place, Trunila is not a 'dog,' but a harrier," thought +Nicholas, and looked sternly at his sister, trying to make her feel +the distance that ought to separate them at that moment. Natasha +understood it. + +"You mustn't think we'll be in anyone's way, Uncle," she said. +"We'll go to our places and won't budge." + +"A good thing too, little countess," said "Uncle," "only mind you +don't fall off your horse," he added, "because--that's it, come on!- +you've nothing to hold on to." + +The oasis of the Otradnoe covert came in sight a few hundred yards +off, the huntsmen were already nearing it. Rostov, having finally +settled with "Uncle" where they should set on the hounds, and having +shown Natasha where she was to stand--a spot where nothing could +possibly run out--went round above the ravine. + +"Well, nephew, you're going for a big wolf," said "Uncle." "Mind and +don't let her slip!" + +"That's as may happen," answered Rostov. "Karay, here!" he +shouted, answering "Uncle's" remark by this call to his borzoi. +Karay was a shaggy old dog with a hanging jowl, famous for having +tackled a big wolf unaided. They all took up their places. + +The old count, knowing his son's ardor in the hunt, hurried so as +not to be late, and the huntsmen had not yet reached their places when +Count Ilya Rostov, cheerful, flushed, and with quivering cheeks, drove +up with his black horses over the winter rye to the place reserved for +him, where a wolf might come out. Having straightened his coat and +fastened on his hunting knives and horn, he mounted his good, sleek, +well-fed, and comfortable horse, Viflyanka, which was turning gray, +like himself. His horses and trap were sent home. Count Ilya Rostov, +though not at heart a keen sportsman, knew the rules of the hunt well, +and rode to the bushy edge of the road where he was to stand, arranged +his reins, settled himself in the saddle, and, feeling that he was +ready, looked about with a smile. + +Beside him was Simon Chekmar, his personal attendant, an old +horseman now somewhat stiff in the saddle. Chekmar held in leash three +formidable wolfhounds, who had, however, grown fat like their master +and his horse. Two wise old dogs lay down unleashed. Some hundred +paces farther along the edge of the wood stood Mitka, the count's +other groom, a daring horseman and keen rider to hounds. Before the +hunt, by old custom, the count had drunk a silver cupful of mulled +brandy, taken a snack, and washed it down with half a bottle of his +favorite Bordeaux. + +He was somewhat flushed with the wine and the drive. His eyes were +rather moist and glittered more than usual, and as he sat in his +saddle, wrapped up in his fur coat, he looked like a child taken out +for an outing. + +The thin, hollow-cheeked Chekmar, having got everything ready, +kept glancing at his master with whom he had lived on the best of +terms for thirty years, and understanding the mood he was in +expected a pleasant chat. A third person rode up circumspectly through +the wood (it was plain that he had had a lesson) and stopped behind +the count. This person was a gray-bearded old man in a woman's +cloak, with a tall peaked cap on his head. He was the buffoon, who +went by a woman's name, Nastasya Ivanovna. + +"Well, Nastasya Ivanovna!" whispered the count, winking at him. +"If you scare away the beast, Daniel'll give it you!" + +"I know a thing or two myself!" said Nastasya Ivanovna. + +"Hush!" whispered the count and turned to Simon. "Have you seen +the young countess?" he asked. "Where is she?" + +"With young Count Peter, by the Zharov rank grass," answered +Simon, smiling. "Though she's a lady, she's very fond of hunting." + +"And you're surprised at the way she rides, Simon, eh?" said the +count. "She's as good as many a man!" + +"Of course! It's marvelous. So bold, so easy!" + +"And Nicholas? Where is he? By the Lyadov upland, isn't he?" + +"Yes, sir. He knows where to stand. He understands the matter so +well that Daniel and I are often quite astounded," said Simon, well +knowing what would please his master. + +"Rides well, eh? And how well he looks on his horse, eh?" + +"A perfect picture! How he chased a fox out of the rank grass by the +Zavarzinsk thicket the other day! Leaped a fearful place; what a sight +when they rushed from the covert... the horse worth a thousand +rubles and the rider beyond all price! Yes, one would have to search +far to find another as smart." + +"To search far..." repeated the count, evidently sorry Simon had not +said more. "To search far," he said, turning back the skirt of his +coat to get at his snuffbox. + +"The other day when he came out from Mass in full uniform, Michael +Sidorych..." Simon did not finish, for on the still air he had +distinctly caught the music of the hunt with only two or three +hounds giving tongue. He bent down his head and listened, shaking a +warning finger at his master. "They are on the scent of the cubs..." +he whispered, "straight to the Lyadov uplands." + +The count, forgetting to smooth out the smile on his face, looked +into the distance straight before him, down the narrow open space, +holding the snuffbox in his hand but not taking any. After the cry +of the hounds came the deep tones of the wolf call from Daniel's +hunting horn; the pack joined the first three hounds and they could be +heard in full cry, with that peculiar lift in the note that +indicates that they are after a wolf. The whippers-in no longer set on +the hounds, but changed to the cry of ulyulyu, and above the others +rose Daniel's voice, now a deep bass, now piercingly shrill. His voice +seemed to fill the whole wood and carried far beyond out into the open +field. + +After listening a few moments in silence, the count and his +attendant convinced themselves that the hounds had separated into +two packs: the sound of the larger pack, eagerly giving tongue, +began to die away in the distance, the other pack rushed by the wood +past the count, and it was with this that Daniel's voice was heard +calling ulyulyu. The sounds of both packs mingled and broke apart +again, but both were becoming more distant. + +Simon sighed and stooped to straighten the leash a young borzoi +had entangled; the count too sighed and, noticing the snuffbox in +his hand, opened it and took a pinch. "Back!" cried Simon to a +borzoi that was pushing forward out of the wood. The count started and +dropped the snuffbox. Nastasya Ivanovna dismounted to pick it up. +The count and Simon were looking at him. + +Then, unexpectedly, as often happens, the sound of the hunt suddenly +approached, as if the hounds in full cry and Daniel ulyulyuing were +just in front of them. + +The count turned and saw on his right Mitka staring at him with eyes +starting out of his head, raising his cap and pointing before him to +the other side. + +"Look out!" he shouted, in a voice plainly showing that he had +long fretted to utter that word, and letting the borzois slip he +galloped toward the count. + +The count and Simon galloped out of the wood and saw on their left a +wolf which, softly swaying from side to side, was coming at a quiet +lope farther to the left to the very place where they were standing. +The angry borzois whined and getting free of the leash rushed past the +horses' feet at the wolf. + +The wolf paused, turned its heavy forehead toward the dogs +awkwardly, like a man suffering from the quinsy, and, still slightly +swaying from side to side, gave a couple of leaps and with a swish +of its tail disappeared into the skirt of the wood. At the same +instant, with a cry like a wail, first one hound, then another, and +then another, sprang helter-skelter from the wood opposite and the +whole pack rushed across the field toward the very spot where the wolf +had disappeared. The hazel bushes parted behind the hounds and +Daniel's chestnut horse appeared, dark with sweat. On its long back +sat Daniel, hunched forward, capless, his disheveled gray hair hanging +over his flushed, perspiring face. + +"Ulyulyulyu! ulyulyu!..." he cried. When he caught sight of the +count his eyes flashed lightning. + +"Blast you!" he shouted, holding up his whip threateningly at the +count. + +"You've let the wolf go!... What sportsmen!" and as if scorning to +say more to the frightened and shamefaced count, he lashed the heaving +flanks of his sweating chestnut gelding with all the anger the count +had aroused and flew off after the hounds. The count, like a +punished schoolboy, looked round, trying by a smile to win Simon's +sympathy for his plight. But Simon was no longer there. He was +galloping round by the bushes while the field was coming up on both +sides, all trying to head the wolf, but it vanished into the wood +before they could do so. + + + + + +CHAPTER V + + +Nicholas Rostov meanwhile remained at his post, waiting for the +wolf. By the way the hunt approached and receded, by the cries of +the dogs whose notes were familiar to him, by the way the voices of +the huntsmen approached, receded, and rose, he realized what was +happening at the copse. He knew that young and old wolves were +there, that the hounds had separated into two packs, that somewhere +a wolf was being chased, and that something had gone wrong. He +expected the wolf to come his way any moment. He made thousands of +different conjectures as to where and from what side the beast would +come and how he would set upon it. Hope alternated with despair. +Several times he addressed a prayer to God that the wolf should come +his way. He prayed with that passionate and shame-faced feeling with +which men pray at moments of great excitement arising from trivial +causes. "What would it be to Thee to do this for me?" he said to +God. "I know Thou art great, and that it is a sin to ask this of Thee, +but for God's sake do let the old wolf come my way and let Karay +spring at it--in sight of 'Uncle' who is watching from over there--and +seize it by the throat in a death grip!" A thousand times during +that half-hour Rostov cast eager and restless glances over the edge of +the wood, with the two scraggy oaks rising above the aspen undergrowth +and the gully with its water-worn side and "Uncle's" cap just +visible above the bush on his right. + +"No, I shan't have such luck," thought Rostov, "yet what wouldn't it +be worth! It is not to be! Everywhere, at cards and in war, I am +always unlucky." Memories of Austerlitz and of Dolokhov flashed +rapidly and clearly through his mind. "Only once in my life to get +an old wolf, I want only that!" thought he, straining eyes and ears +and looking to the left and then to the right and listening to the +slightest variation of note in the cries of the dogs. + +Again he looked to the right and saw something running toward him +across the deserted field. "No, it can't be!" thought Rostov, taking a +deep breath, as a man does at the coming of something long hoped +for. The height of happiness was reached--and so simply, without +warning, or noise, or display, that Rostov could not believe his +eyes and remained in doubt for over a second. The wolf ran forward and +jumped heavily over a gully that lay in her path. She was an old +animal with a gray back and big reddish belly. She ran without +hurry, evidently feeling sure that no one saw her. Rostov, holding his +breath, looked round at the borzois. They stood or lay not seeing +the wolf or understanding the situation. Old Karay had turned his head +and was angrily searching for fleas, baring his yellow teeth and +snapping at his hind legs. + +"Ulyulyulyu!" whispered Rostov, pouting his lips. The borzois jumped +up, jerking the rings of the leashes and pricking their ears. Karay +finished scratching his hindquarters and, cocking his ears, got up +with quivering tail from which tufts of matted hair hung down. + +"Shall I loose them or not?" Nicholas asked himself as the wolf +approached him coming from the copse. Suddenly the wolf's whole +physiognomy changed: she shuddered, seeing what she had probably never +seen before--human eyes fixed upon her--and turning her head a +little toward Rostov, she paused. + +"Back or forward? Eh, no matter, forward..." the wolf seemed to +say to herself, and she moved forward without again looking round +and with a quiet, long, easy yet resolute lope. + +"Ulyulyu!" cried Nicholas, in a voice not his own, and of its own +accord his good horse darted headlong downhill, leaping over gullies +to head off the wolf, and the borzois passed it, running faster still. +Nicholas did not hear his own cry nor feel that he was galloping, +nor see the borzois, nor the ground over which he went: he saw only +the wolf, who, increasing her speed, bounded on in the same +direction along the hollow. The first to come into view was Milka, +with her black markings and powerful quarters, gaining upon the +wolf. Nearer and nearer... now she was ahead of it; but the wolf +turned its head to face her, and instead of putting on speed as she +usually did Milka suddenly raised her tail and stiffened her forelegs. + +"Ulyulyulyulyu!" shouted Nicholas. + +The reddish Lyubim rushed forward from behind Milka, sprang +impetuously at the wolf, and seized it by its hindquarters, but +immediately jumped aside in terror. The wolf crouched, gnashed her +teeth, and again rose and bounded forward, followed at the distance of +a couple of feet by all the borzois, who did not get any closer to +her. + +"She'll get away! No, it's impossible!" thought Nicholas, still +shouting with a hoarse voice. + +"Karay, ulyulyu!..." he shouted, looking round for the old borzoi +who was now his only hope. Karay, with all the strength age had left +him, stretched himself to the utmost and, watching the wolf, +galloped heavily aside to intercept it. But the quickness of the +wolf's lope and the borzoi's slower pace made it plain that Karay +had miscalculated. Nicholas could already see not far in front of +him the wood where the wolf would certainly escape should she reach +it. But, coming toward him, he saw hounds and a huntsman galloping +almost straight at the wolf. There was still hope. A long, yellowish + +young borzoi, one Nicholas did not know, from another leash, rushed +impetuously at the wolf from in front and almost knocked her over. But +the wolf jumped up more quickly than anyone could have expected and, +gnashing her teeth, flew at the yellowish borzoi, which, with a +piercing yelp, fell with its head on the ground, bleeding from a +gash in its side. + +"Karay? Old fellow!..." wailed Nicholas. + +Thanks to the delay caused by this crossing of the wolf's path, +the old dog with its felted hair hanging from its thigh was within +five paces of it. As if aware of her danger, the wolf turned her +eyes on Karay, tucked her tail yet further between her legs, and +increased her speed. But here Nicholas only saw that something +happened to Karay--the borzoi was suddenly on the wolf, and they +rolled together down into a gully just in front of them. + +That instant, when Nicholas saw the wolf struggling in the gully +with the dogs, while from under them could be seen her gray hair and +outstretched hind leg and her frightened choking head, with her ears +laid back (Karay was pinning her by the throat), was the happiest +moment of his life. With his hand on his saddlebow, he was ready to +dismount and stab the wolf, when she suddenly thrust her head up +from among that mass of dogs, and then her forepaws were on the edge +of the gully. She clicked her teeth (Karay no longer had her by the +throat), leaped with a movement of her hind legs out of the gully, and +having disengaged herself from the dogs, with tail tucked in again, +went forward. Karay, his hair bristling, and probably bruised or +wounded, climbed with difficulty out of the gully. + +"Oh my God! Why?" Nicholas cried in despair. + +"Uncle's" huntsman was galloping from the other side across the +wolf's path and his borzois once more stopped the animal's advance. +She was again hemmed in. + +Nicholas and his attendant, with "Uncle" and his huntsman, were +all riding round the wolf, crying "ulyulyu!" shouting and preparing to +dismount each moment that the wolf crouched back, and starting forward +again every time she shook herself and moved toward the wood where she +would be safe. + +Already, at the beginning of this chase, Daniel, hearing the +ulyulyuing, had rushed out from the wood. He saw Karay seize the wolf, +and checked his horse, supposing the affair to be over. But when he +saw that the horsemen did not dismount and that the wolf shook herself +and ran for safety, Daniel set his chestnut galloping, not at the wolf +but straight toward the wood, just as Karay had run to cut the +animal off. As a result of this, he galloped up to the wolf just +when she had been stopped a second time by "Uncle's" borzois. + +Daniel galloped up silently, holding a naked dagger in his left hand +and thrashing the laboring sides of his chestnut horse with his whip +as if it were a flail. + +Nicholas neither saw nor heard Daniel until the chestnut, +breathing heavily, panted past him, and he heard the fall of a body +and saw Daniel lying on the wolf's back among the dogs, trying to +seize her by the ears. It was evident to the dogs, the hunters, and to +the wolf herself that all was now over. The terrified wolf pressed +back her ears and tried to rise, but the borzois stuck to her. +Daniel rose a little, took a step, and with his whole weight, as if +lying down to rest, fell on the wolf, seizing her by the ears. +Nicholas was about to stab her, but Daniel whispered, "Don't! We'll +gag her!" and, changing his position, set his foot on the wolf's neck. +A stick was thrust between her jaws and she was fastened with a leash, +as if bridled, her legs were bound together, and Daniel rolled her +over once or twice from side to side. + +With happy, exhausted faces, they laid the old wolf, alive, on a +shying and snorting horse and, accompanied by the dogs yelping at her, +took her to the place where they were all to meet. The hounds had +killed two of the cubs and the borzois three. The huntsmen assembled +with their booty and their stories, and all came to look at the +wolf, which, with her broad-browed head hanging down and the bitten +stick between her jaws, gazed with great glassy eyes at this crowd +of dogs and men surrounding her. When she was touched, she jerked +her bound legs and looked wildly yet simply at everybody. Old Count +Rostov also rode up and touched the wolf. + +"Oh, what a formidable one!" said he. "A formidable one, eh?" he +asked Daniel, who was standing near. + +"Yes, your excellency," answered Daniel, quickly doffing his cap. + +The count remembered the wolf he had let slip and his encounter with +Daniel. + +"Ah, but you are a crusty fellow, friend!" said the count. + +For sole reply Daniel gave him a shy, childlike, meek, and amiable +smile. + + + + + +CHAPTER VI + + +The old count went home, and Natasha and Petya promised to return +very soon, but as it was still early the hunt went farther. At +midday they put the hounds into a ravine thickly overgrown with +young trees. Nicholas standing in a fallow field could see all his +whips. + +Facing him lay a field of winter rye, there his own huntsman stood +alone in a hollow behind a hazel bush. The hounds had scarcely been +loosed before Nicholas heard one he knew, Voltorn, giving tongue at +intervals; other hounds joined in, now pausing and now again giving +tongue. A moment later he heard a cry from the wooded ravine that a +fox had been found, and the whole pack, joining together, rushed along +the ravine toward the ryefield and away from Nicholas. + +He saw the whips in their red caps galloping along the edge of the +ravine, he even saw the hounds, and was expecting a fox to show itself +at any moment on the ryefield opposite. + +The huntsman standing in the hollow moved and loosed his borzois, +and Nicholas saw a queer, short-legged red fox with a fine brush going +hard across the field. The borzois bore down on it.... Now they drew +close to the fox which began to dodge between the field in sharper and +sharper curves, trailing its brush, when suddenly a strange white +borzoi dashed in followed by a black one, and everything was in +confusion; the borzois formed a star-shaped figure, scarcely swaying +their bodies and with tails turned away from the center of the +group. Two huntsmen galloped up to the dogs; one in a red cap, the +other, a stranger, in a green coat. + +"What's this?" thought Nicholas. "Where's that huntsman from? He +is not 'Uncle's' man." + +The huntsmen got the fox, but stayed there a long time without +strapping it to the saddle. Their horses, bridled and with high +saddles, stood near them and there too the dogs were lying. The +huntsmen waved their arms and did something to the fox. Then from that +spot came the sound of a horn, with the signal agreed on in case of +a fight. + +"That's Ilagin's huntsman having a row with our Ivan," said +Nicholas' groom. + +Nicholas sent the man to call Natasha and Petya to him, and rode +at a footpace to the place where the whips were getting the hounds +together. Several of the field galloped to the spot where the fight +was going on. + +Nicholas dismounted, and with Natasha and Petya, who had ridden +up, stopped near the hounds, waiting to see how the matter would +end. Out of the bushes came the huntsman who had been fighting and +rode toward his young master, with the fox tied to his crupper. +While still at a distance he took off his cap and tried to speak +respectfully, but he was pale and breathless and his face was angry. +One of his eyes was black, but he probably was not even aware of it. + +"What has happened?" asked Nicholas. + +"A likely thing, killing a fox our dogs had hunted! And it was my +gray bitch that caught it! Go to law, indeed!... He snatches at the +fox! I gave him one with the fox. Here it is on my saddle! Do you want +a taste of this?..." said the huntsman, pointing to his dagger and +probably imagining himself still speaking to his foe. + +Nicholas, not stopping to talk to the man, asked his sister and +Petya to wait for him and rode to the spot where the enemy's, +Ilagin's, hunting party was. + +The victorious huntsman rode off to join the field, and there, +surrounded by inquiring sympathizers, recounted his exploits. + +The facts were that Ilagin, with whom the Rostovs had a quarrel +and were at law, hunted over places that belonged by custom to the +Rostovs, and had now, as if purposely, sent his men to the very +woods the Rostovs were hunting and let his man snatch a fox their dogs +had chased. + +Nicholas, though he had never seen Ilagin, with his usual absence of +moderation in judgment, hated him cordially from reports of his +arbitrariness and violence, and regarded him as his bitterest foe. +He rode in angry agitation toward him, firmly grasping his whip and +fully prepared to take the most resolute and desperate steps to punish +his enemy. + +Hardly had he passed an angle of the wood before a stout gentleman +in a beaver cap came riding toward him on a handsome raven-black +horse, accompanied by two hunt servants. + +Instead of an enemy, Nicholas found in Ilagin a stately and +courteous gentleman who was particularly anxious to make the young +count's acquaintance. Having ridden up to Nicholas, Ilagin raised +his beaver cap and said he much regretted what had occurred and +would have the man punished who had allowed himself to seize a fox +hunted by someone else's borzois. He hoped to become better acquainted +with the count and invited him to draw his covert. + +Natasha, afraid that her brother would do something dreadful, had +followed him in some excitement. Seeing the enemies exchanging +friendly greetings, she rode up to them. Ilagin lifted his beaver +cap still higher to Natasha and said, with a pleasant smile, that +the young countess resembled Diana in her passion for the chase as +well as in her beauty, of which he had heard much. + +To expiate his huntsman's offense, Ilagin pressed the Rostovs to +come to an upland of his about a mile away which he usually kept for +himself and which, he said, swarmed with hares. Nicholas agreed, and +the hunt, now doubled, moved on. + +The way to Iligin's upland was across the fields. The hunt +servants fell into line. The masters rode together. "Uncle," Rostov, +and Ilagin kept stealthily glancing at one another's dogs, trying +not to be observed by their companions and searching uneasily for +rivals to their own borzois. + +Rostov was particularly struck by the beauty of a small, +pure-bred, red-spotted bitch on Ilagin's leash, slender but with +muscles like steel, a delicate muzzle, and prominent black eyes. He +had heard of the swiftness of Ilagin's borzois, and in that +beautiful bitch saw a rival to his own Milka. + +In the middle of a sober conversation begun by Ilagin about the +year's harvest, Nicholas pointed to the red-spotted bitch. + +"A fine little bitch, that!" said he in a careless tone. "Is she +swift?" + +"That one? Yes, she's a good dog, gets what she's after," answered +Ilagin indifferently, of the red-spotted bitch Erza, for which, a year +before, he had given a neighbor three families of house serfs. "So +in your parts, too, the harvest is nothing to boast of, Count?" he +went on, continuing the conversation they had begun. And considering +it polite to return the young count's compliment, Ilagin looked at his +borzois and picked out Milka who attracted his attention by her +breadth. "That black-spotted one of yours is fine--well shaped!" +said he. + +"Yes, she's fast enough," replied Nicholas, and thought: "If only +a full-grown hare would cross the field now I'd show you what sort +of borzoi she is," and turning to his groom, he said he would give a +ruble to anyone who found a hare. + +"I don't understand," continued Ilagin, "how some sportsmen can be +so jealous about game and dogs. For myself, I can tell you, Count, I +enjoy riding in company such as this... what could be better?" (he +again raised his cap to Natasha) "but as for counting skins and what +one takes, I don't care about that." + +"Of course not!" + +"Or being upset because someone else's borzoi and not mine catches +something. All I care about is to enjoy seeing the chase, is it not +so, Count? For I consider that..." + +"A-tu!" came the long-drawn cry of one of the borzoi whippers-in, +who had halted. He stood on a knoll in the stubble, holding his whip +aloft, and again repeated his long-drawn cry, "A-tu!" (This call and +the uplifted whip meant that he saw a sitting hare.) + +"Ah, he has found one, I think," said Ilagin carelessly. "Yes, we +must ride up.... Shall we both course it?" answered Nicholas, seeing +in Erza and "Uncle's" red Rugay two rivals he had never yet had a +chance of pitting against his own borzois. "And suppose they outdo +my Milka at once!" he thought as he rode with "Uncle" and Ilagin +toward the hare. + +"A full-grown one?" asked Ilagin as he approached the whip who had +sighted the hare--and not without agitation he looked round and +whistled to Erza. + +"And you, Michael Nikanorovich?" he said, addressing "Uncle." + +The latter was riding with a sullen expression on his face. + +"How can I join in? Why, you've given a village for each of your +borzois! That's it, come on! Yours are worth thousands. Try yours +against one another, you two, and I'll look on!" + +"Rugay, hey, hey!" he shouted. "Rugayushka!" he added, involuntarily +by this diminutive expressing his affection and the hopes he placed on +this red borzoi. Natasha saw and felt the agitation the two elderly +men and her brother were trying to conceal, and was herself excited by +it. + +The huntsman stood halfway up the knoll holding up his whip and +the gentlefolk rode up to him at a footpace; the hounds that were +far off on the horizon turned away from the hare, and the whips, but +not the gentlefolk, also moved away. All were moving slowly and +sedately. + +"How is it pointing?" asked Nicholas, riding a hundred paces +toward the whip who had sighted the hare. + +But before the whip could reply, the hare, scenting the frost coming +next morning, was unable to rest and leaped up. The pack on leash +rushed downhill in full cry after the hare, and from all sides the +borzois that were not on leash darted after the hounds and the hare. +All the hunt, who had been moving slowly, shouted, "Stop!" calling +in the hounds, while the borzoi whips, with a cry of "A-tu!" galloped +across the field setting the borzois on the hare. The tranquil Ilagin, +Nicholas, Natasha, and "Uncle" flew, reckless of where and how they +went, seeing only the borzois and the hare and fearing only to lose +sight even for an instant of the chase. The hare they had started +was a strong and swift one. When he jumped up he did not run at +once, but pricked his ears listening to the shouting and trampling +that resounded from all sides at once. He took a dozen bounds, not +very quickly, letting the borzois gain on him, and, finally having +chosen his direction and realized his danger, laid back his ears and +rushed off headlong. He had been lying in the stubble, but in front of +him was the autumn sowing where the ground was soft. The two borzois +of the huntsman who had sighted him, having been the nearest, were the +first to see and pursue him, but they had not gone far before Ilagin's +red-spotted Erza passed them, got within a length, flew at the hare +with terrible swiftness aiming at his scut, and, thinking she had +seized him, rolled over like a ball. The hare arched his back and +bounded off yet more swiftly. From behind Erza rushed the +broad-haunched, black-spotted Milka and began rapidly gaining on the +hare. + +"Milashka, dear!" rose Nicholas' triumphant cry. It looked as if +Milka would immediately pounce on the hare, but she overtook him and +flew past. The hare had squatted. Again the beautiful Erza reached +him, but when close to the hare's scut paused as if measuring the +distance, so as not to make a mistake this time but seize his hind +leg. + +"Erza, darling!" Ilagin wailed in a voice unlike his own. Erza did +not hearken to his appeal. At the very moment when she would have +seized her prey, the hare moved and darted along the balk between +the winter rye and the stubble. Again Erza and Milka were abreast, +running like a pair of carriage horses, and began to overtake the +hare, but it was easier for the hare to run on the balk and the +borzois did not overtake him so quickly. + +"Rugay, Rugayushka! That's it, come on!" came a third voice just +then, and "Uncle's" red borzoi, straining and curving its back, caught +up with the two foremost borzois, pushed ahead of them regardless of +the terrible strain, put on speed close to the hare, knocked it off +the balk onto the ryefield, again put on speed still more viciously, +sinking to his knees in the muddy field, and all one could see was +how, muddying his back, he rolled over with the hare. A ring of +borzois surrounded him. A moment later everyone had drawn up round the +crowd of dogs. Only the delighted "Uncle" dismounted, and cut off a +pad, shaking the hare for the blood to drip off, and anxiously +glancing round with restless eyes while his arms and legs twitched. He +spoke without himself knowing whom to or what about. "That's it, +come on! That's a dog!... There, it has beaten them all, the +thousand-ruble as well as the one-ruble borzois. That's it, come +on!" said he, panting and looking wrathfully around as if he were +abusing someone, as if they were all his enemies and had insulted him, +and only now had he at last succeeded in justifying himself. "There +are your thousand-ruble ones.... That's it, come on!..." + +"Rugay, here's a pad for you!" he said, throwing down the hare's +muddy pad. "You've deserved it, that's it, come on!" + +"She'd tired herself out, she'd run it down three times by herself," +said Nicholas, also not listening to anyone and regardless of +whether he were heard or not. + +"But what is there in running across it like that?" said Ilagin's +groom. + +"Once she had missed it and turned it away, any mongrel could take +it," Ilagin was saying at the same time, breathless from his gallop +and his excitement. At the same moment Natasha, without drawing +breath, screamed joyously, ecstatically, and so piercingly that it set +everyone's ear tingling. By that shriek she expressed what the +others expressed by all talking at once, and it was so strange that +she must herself have been ashamed of so wild a cry and everyone +else would have been amazed at it at any other time. "Uncle" himself +twisted up the hare, threw it neatly and smartly across his horse's +back as if by that gesture he meant to rebuke everybody, and, with +an air of not wishing to speak to anyone, mounted his bay and rode +off. The others all followed, dispirited and shamefaced, and only much +later were they able to regain their former affectation of +indifference. For a long time they continued to look at red Rugay who, +his arched back spattered with mud and clanking the ring of his leash, +walked along just behind "Uncle's" horse with the serene air of a +conqueror. + +"Well, I am like any other dog as long as it's not a question of +coursing. But when it is, then look out!" his appearance seemed to +Nicholas to be saying. + +When, much later, "Uncle" rode up to Nicholas and began talking to +him, he felt flattered that, after what had happened, "Uncle" +deigned to speak to him. + + + + + +CHAPTER VII + + +Toward evening Ilagin took leave of Nicholas, who found that they +were so far from home that he accepted "Uncle's" offer that the +hunting party should spend the night in his little village of +Mikhaylovna. + +"And if you put up at my house that will be better still. That's it, +come on!" said "Uncle." "You see it's damp weather, and you could +rest, and the little countess could be driven home in a trap." + +"Uncle's" offer was accepted. A huntsman was sent to Otradnoe for +a trap, while Nicholas rode with Natasha and Petya to "Uncle's" house. + +Some five male domestic serfs, big and little, rushed out to the +front porch to meet their master. A score of women serfs, old and +young, as well as children, popped out from the back entrance to +have a look at the hunters who were arriving. The presence of Natasha- +a woman, a lady, and on horseback--raised the curiosity of the serfs +to such a degree that many of them came up to her, stared her in the +face, and unabashed by her presence made remarks about her as though +she were some prodigy on show and not a human being able to hear or +understand what was said about her. + +"Arinka! Look, she sits sideways! There she sits and her skirt +dangles.... See, she's got a little hunting horn!" + +"Goodness gracious! See her knife?..." + +"Isn't she a Tartar!" + +"How is it you didn't go head over heels?" asked the boldest of all, +addressing Natasha directly. + +"Uncle" dismounted at the porch of his little wooden house which +stood in the midst of an overgrown garden and, after a glance at his +retainers, shouted authoritatively that the superfluous ones should +take themselves off and that all necessary preparations should be made +to receive the guests and the visitors. + +The serfs all dispersed. "Uncle" lifted Natasha off her horse and +taking her hand led her up the rickety wooden steps of the porch. +The house, with its bare, unplastered log walls, was not overclean--it +did not seem that those living in it aimed at keeping it spotless--but +neither was it noticeably neglected. In the entry there was a smell of +fresh apples, and wolf and fox skins hung about. + +"Uncle" led the visitors through the anteroom into a small hall with +a folding table and red chairs, then into the drawing room with a +round birchwood table and a sofa, and finally into his private room +where there was a tattered sofa, a worn carpet, and portraits of +Suvorov, of the host's father and mother, and of himself in military +uniform. The study smelt strongly of tobacco and dogs. "Uncle" asked +his visitors to sit down and make themselves at home, and then went +out of the room. Rugay, his back still muddy, came into the room and +lay down on the sofa, cleaning himself with his tongue and teeth. +Leading from the study was a passage in which a partition with +ragged curtains could be seen. From behind this came women's +laughter and whispers. Natasha, Nicholas, and Petya took off their +wraps and sat down on the sofa. Petya, leaning on his elbow, fell +asleep at once. Natasha and Nicholas were silent. Their faces +glowed, they were hungry and very cheerful. They looked at one another +(now that the hunt was over and they were in the house, Nicholas no +longer considered it necessary to show his manly superiority over +his sister), Natasha gave him a wink, and neither refrained long +from bursting into a peal of ringing laughter even before they had a +pretext ready to account for it. + +After a while "Uncle" came in, in a Cossack coat, blue trousers, and +small top boots. And Natasha felt that this costume, the very one +she had regarded with surprise and amusement at Otradnoe, was just the +right thing and not at all worse than a swallow-tail or frock coat. +"Uncle" too was in high spirits and far from being offended by the +brother's and sister's laughter (it could never enter his head that +they might be laughing at his way of life) he himself joined in the +merriment. + +"That's right, young countess, that's it, come on! I never saw +anyone like her!" said he, offering Nicholas a pipe with a long stem +and, with a practiced motion of three fingers, taking down another +that had been cut short. "She's ridden all day like a man, and is as +fresh as ever!" + +Soon after "Uncle's" reappearance the door was opened, evidently +from the sound by a barefooted girl, and a stout, rosy, good-looking +woman of about forty, with a double chin and full red lips, entered +carrying a large loaded tray. With hospitable dignity and cordiality +in her glance and in every motion, she looked at the visitors and, +with a pleasant smile, bowed respectfully. In spite of her exceptional +stoutness, which caused her to protrude her chest and stomach and +throw back her head, this woman (who was "Uncle's" housekeeper) trod +very lightly. She went to the table, set down the tray, and with her +plump white hands deftly took from it the bottles and various hors +d'oeuvres and dishes and arranged them on the table. When she had +finished, she stepped aside and stopped at the door with a smile on +her face. "Here I am. I am she! Now do you understand 'Uncle'?" her +expression said to Rostov. How could one help understanding? Not +only Nicholas, but even Natasha understood the meaning of his puckered +brow and the happy complacent smile that slightly puckered his lips +when Anisya Fedorovna entered. On the tray was a bottle of herb +wine, different kinds of vodka, pickled mushrooms, rye cakes made with +buttermilk, honey in the comb, still mead and sparkling mead, +apples, nuts (raw and roasted), and nut-and-honey sweets. Afterwards +she brought a freshly roasted chicken, ham, preserves made with honey, +and preserves made with sugar. + +All this was the fruit of Anisya Fedorovna's housekeeping, +gathered and prepared by her. The smell and taste of it all had a +smack of Anisya Fedorovna herself: a savor of juiciness, +cleanliness, whiteness, and pleasant smiles. + +"Take this, little Lady-Countess!" she kept saying, as she offered +Natasha first one thing and then another. + +Natasha ate of everything and thought she had never seen or eaten +such buttermilk cakes, such aromatic jam, such honey-and-nut sweets, +or such a chicken anywhere. Anisya Fedorovna left the room. + +After supper, over their cherry brandy, Rostov and "Uncle" talked of +past and future hunts, of Rugay and Ilagin's dogs, while Natasha sat +upright on the sofa and listened with sparkling eyes. She tried +several times to wake Petya that he might eat something, but he only +muttered incoherent words without waking up. Natasha felt so +lighthearted and happy in these novel surroundings that she only +feared the trap would come for her too soon. After a casual pause, +such as often occurs when receiving friends for the first time in +one's own house, "Uncle," answering a thought that was in his +visitors' mind, said: + +"This, you see, is how I am finishing my days... Death will come. +That's it, come on! Nothing will remain. Then why harm anyone?" + +"Uncle's" face was very significant and even handsome as he said +this. Involuntarily Rostov recalled all the good he had heard about +him from his father and the neighbors. Throughout the whole province +"Uncle" had the reputation of being the most honorable and +disinterested of cranks. They called him in to decide family disputes, +chose him as executor, confided secrets to him, elected him to be a +justice and to other posts; but he always persistently refused +public appointments, passing the autumn and spring in the fields on +his bay gelding, sitting at home in winter, and lying in his overgrown +garden in summer. + +"Why don't you enter the service, Uncle?" + +"I did once, but gave it up. I am not fit for it. That's it, come +on! I can't make head or tail of it. That's for you--I haven't +brains enough. Now, hunting is another matter--that's it, come on! +Open the door, there!" he shouted. "Why have you shut it?" + +The door at the end of the passage led to the huntsmen's room, as +they called the room for the hunt servants. + +There was a rapid patter of bare feet, and an unseen hand opened the +door into the huntsmen's room, from which came the clear sounds of a +balalayka on which someone, who was evidently a master of the art, was +playing. Natasha had been listening to those strains for some time and +now went out into the passage to hear better. + +"That's Mitka, my coachman.... I have got him a good balalayka. +I'm fond of it," said "Uncle." + +It was the custom for Mitka to play the balalayka in the +huntsmen's room when "Uncle" returned from the chase. "Uncle" was fond +of such music. + +"How good! Really very good!" said Nicholas with some +unintentional superciliousness, as if ashamed to confess that the +sounds pleased him very much. + +"Very good?" said Natasha reproachfully, noticing her brother's +tone. "Not 'very good' it's simply delicious!" + +Just as "Uncle's" pickled mushrooms, honey, and cherry brandy had +seemed to her the best in the world, so also that song, at that +moment, seemed to her the acme of musical delight. + +"More, please, more!" cried Natasha at the door as soon as the +balalayka ceased. Mitka tuned up afresh, and recommenced thrumming the +balalayka to the air of My Lady, with trills and variations. "Uncle" +sat listening, slightly smiling, with his head on one side. The air +was repeated a hundred times. The balalayka was retuned several +times and the same notes were thrummed again, but the listeners did +not grow weary of it and wished to hear it again and again. Anisya +Fedorovna came in and leaned her portly person against the doorpost. + +"You like listening?" she said to Natasha, with a smile extremely +like "Uncle's." "That's a good player of ours," she added. + +"He doesn't play that part right!" said "Uncle" suddenly, with an +energetic gesture. "Here he ought to burst out--that's it, come on!- +ought to burst out." + +"Do you play then?" asked Natasha. + +"Uncle" did not answer, but smiled. + +"Anisya, go and see if the strings of my guitar are all right. I +haven't touched it for a long time. That's it--come on! I've given +it up." + +Anisya Fedorovna, with her light step, willingly went to fulfill her +errand and brought back the guitar. + +Without looking at anyone, "Uncle" blew the dust off it and, tapping +the case with his bony fingers, tuned the guitar and settled himself +in his armchair. He took the guitar a little above the fingerboard, +arching his left elbow with a somewhat theatrical gesture, and, with a +wink at Anisya Fedorovna, struck a single chord, pure and sonorous, +and then quietly, smoothly, and confidently began playing in very slow +time, not My Lady, but the well-known song: Came a maiden down the +street. The tune, played with precision and in exact time, began to +thrill in the hearts of Nicholas and Natasha, arousing in them the +same kind of sober mirth as radiated from Anisya Fedorovna's whole +being. Anisya Fedorovna flushed, and drawing her kerchief over her +face went laughing out of the room. "Uncle" continued to play +correctly, carefully, with energetic firmness, looking with a +changed and inspired expression at the spot where Anisya Fedorovna had +just stood. Something seemed to be laughing a little on one side of +his face under his gray mustaches, especially as the song grew brisker +and the time quicker and when, here and there, as he ran his fingers +over the strings, something seemed to snap. + +"Lovely, lovely! Go on, Uncle, go on!" shouted Natasha as soon as he +had finished. She jumped up and hugged and kissed him. "Nicholas, +Nicholas!" she said, turning to her brother, as if asking him: "What +is it moves me so?" + +Nicholas too was greatly pleased by "Uncle's" playing, and "Uncle" +played the piece over again. Anisya Fedorovna's smiling face +reappeared in the doorway and behind hers other faces... + + Fetching water clear and sweet, + Stop, dear maiden, I entreat- + +played "Uncle" once more, running his fingers skillfully over the +strings, and then he stopped short and jerked his shoulders. + +"Go on, Uncle dear," Natasha wailed in an imploring tone as if her +life depended on it. + +"Uncle" rose, and it was as if there were two men in him: one of +them smiled seriously at the merry fellow, while the merry fellow +struck a naive and precise attitude preparatory to a folk dance. + +"Now then, niece!" he exclaimed, waving to Natasha the hand that had +just struck a chord. + +Natasha threw off the shawl from her shoulders, ran forward to +face "Uncle," and setting her arms akimbo also made a motion with +her shoulders and struck an attitude. + +Where, how, and when had this young countess, educated by an emigree +French governess, imbibed from the Russian air she breathed that +spirit and obtained that manner which the pas de chale* would, one +would have supposed, long ago have effaced? But the spirit and the +movements were those inimitable and unteachable Russian ones that +"Uncle" had expected of her. As soon as she had struck her pose, and +smiled triumphantly, proudly, and with sly merriment, the fear that +had at first seized Nicholas and the others that she might not do +the right thing was at an end, and they were already admiring her. + + +*The French shawl dance. + + +She did the right thing with such precision, such complete +precision, that Anisya Fedorovna, who had at once handed her the +handkerchief she needed for the dance, had tears in her eyes, though +she laughed as she watched this slim, graceful countess, reared in +silks and velvets and so different from herself, who yet was able to +understand all that was in Anisya and in Anisya's father and mother +and aunt, and in every Russian man and woman. + +"Well, little countess; that's it--come on!" cried "Uncle," with a +joyous laugh, having finished the dance. "Well done, niece! Now a fine +young fellow must be found as husband for you. That's it--come on!" + +"He's chosen already," said Nicholas smiling. + +"Oh?" said "Uncle" in surprise, looking inquiringly at Natasha, +who nodded her head with a happy smile. + +"And such a one!" she said. But as soon as she had said it a new +train of thoughts and feelings arose in her. "What did Nicholas' smile +mean when he said 'chosen already'? Is he glad of it or not? It is +as if he thought my Bolkonski would not approve of or understand our +gaiety. But he would understand it all. Where is he now?" she thought, +and her face suddenly became serious. But this lasted only a second. +"Don't dare to think about it," she said to herself, and sat down +again smilingly beside "Uncle," begging him to play something more. + +"Uncle" played another song and a valse; then after a pause he +cleared his throat and sang his favorite hunting song: + + As 'twas growing dark last night + Fell the snow so soft and light... + + +"Uncle" sang as peasants sing, with full and naive conviction that +the whole meaning of a song lies in the words and that the tune +comes of itself, and that apart from the words there is no tune, which +exists only to give measure to the words. As a result of this the +unconsidered tune, like the song of a bird, was extraordinarily +good. Natasha was in ecstasies over "Uncle's" singing. She resolved to +give up learning the harp and to play only the guitar. She asked +"Uncle" for his guitar and at once found the chords of the song. + +After nine o'clock two traps and three mounted men, who had been +sent to look for them, arrived to fetch Natasha and Petya. The count +and countess did not know where they were and were very anxious, +said one of the men. + +Petya was carried out like a log and laid in the larger of the two +traps. Natasha and Nicholas got into the other. "Uncle" wrapped +Natasha up warmly and took leave of her with quite a new tenderness. +He accompanied them on foot as far as the bridge that could not be +crossed, so that they had to go round by the ford, and he sent +huntsmen to ride in front with lanterns. + +"Good-by, dear niece," his voice called out of the darkness--not the +voice Natasha had known previously, but the one that had sung As 'twas +growing dark last night. + +In the village through which they passed there were red lights and a +cheerful smell of smoke. + +"What a darling Uncle is!" said Natasha, when they had come out onto +the highroad. + +"Yes," returned Nicholas. "You're not cold?" + +"No. I'm quite, quite all right. I feel so comfortable!" answered +Natasha, almost perplexed by her feelings. They remained silent a long +while. The night was dark and damp. They could not see the horses, but +only heard them splashing through the unseen mud. + +What was passing in that receptive childlike soul that so eagerly +caught and assimilated all the diverse impressions of life? How did +they all find place in her? But she was very happy. As they were +nearing home she suddenly struck up the air of As 'twas growing dark +last night--the tune of which she had all the way been trying to get +and had at last caught. + +"Got it?" said Nicholas. + +"What were you thinking about just now, Nicholas?" inquired Natasha. + +They were fond of asking one another that question. + +"I?" said Nicholas, trying to remember. "Well, you see, first I +thought that Rugay, the red hound, was like Uncle, and that if he were +a man he would always keep Uncle near him, if not for his riding, then +for his manner. What a good fellow Uncle is! Don't you think so?... +Well, and you?" + +"I? Wait a bit, wait.... Yes, first I thought that we are driving +along and imagining that we are going home, but that heaven knows +where we are really going in the darkness, and that we shall arrive +and suddenly find that we are not in Otradnoe, but in Fairyland. And +then I thought... No, nothing else." + +"I know, I expect you thought of him," said Nicholas, smiling as +Natasha knew by the sound of his voice. + +"No," said Natasha, though she had in reality been thinking about +Prince Andrew at the same time as of the rest, and of how he would +have liked "Uncle." "And then I was saying to myself all the way, 'How +well Anisya carried herself, how well!'" And Nicholas heard her +spontaneous, happy, ringing laughter. "And do you know," she +suddenly said, "I know that I shall never again be as happy and +tranquil as I am now." + +"Rubbish, nonsense, humbug!" exclaimed Nicholas, and he thought: +"How charming this Natasha of mine is! I have no other friend like her +and never shall have. Why should she marry? We might always drive +about together!" + +"What a darling this Nicholas of mine is!" thought Natasha. + +"Ah, there are still lights in the drawingroom!" she said, +pointing to the windows of the house that gleamed invitingly in the +moist velvety darkness of the night. + + + + + +CHAPTER VIII + + +Count Ilya Rostov had resigned the position of Marshal of the +Nobility because it involved him in too much expense, but still his +affairs did not improve. Natasha and Nicholas often noticed their +parents conferring together anxiously and privately and heard +suggestions of selling the fine ancestral Rostov house and estate near +Moscow. It was not necessary to entertain so freely as when the +count had been Marshal, and life at Otradnoe was quieter than in +former years, but still the enormous house and its lodges were full of +people and more than twenty sat down to table every day. These were +all their own people who had settled down in the house almost as +members of the family, or persons who were, it seemed, obliged to live +in the count's house. Such were Dimmler the musician and his wife, +Vogel the dancing master and his family, Belova, an old maiden lady, +an inmate of the house, and many others such as Petya's tutors, the +girls' former governess, and other people who simply found it +preferable and more advantageous to live in the count's house than +at home. They had not as many visitors as before, but the old habits +of life without which the count and countess could not conceive of +existence remained unchanged. There was still the hunting +establishment which Nicholas had even enlarged, the same fifty +horses and fifteen grooms in the stables, the same expensive +presents and dinner parties to the whole district on name days; +there were still the count's games of whist and boston, at which- +spreading out his cards so that everybody could see them--he let +himself be plundered of hundreds of rubles every day by his neighbors, +who looked upon an opportunity to play a rubber with Count Rostov as a +most profitable source of income. + +The count moved in his affairs as in a huge net, trying not to +believe that he was entangled but becoming more and more so at every +step, and feeling too feeble to break the meshes or to set to work +carefully and patiently to disentangle them. The countess, with her +loving heart, felt that her children were being ruined, that it was +not the count's fault for he could not help being what he was--that +(though he tried to hide it) he himself suffered from the +consciousness of his own and his children's ruin, and she tried to +find means of remedying the position. From her feminine point of +view she could see only one solution, namely, for Nicholas to marry +a rich heiress. She felt this to be their last hope and that if +Nicholas refused the match she had found for him, she would have to +abandon the hope of ever getting matters right. This match was with +Julie Karagina, the daughter of excellent and virtuous parents, a girl +the Rostovs had known from childhood, and who had now become a wealthy +heiress through the death of the last of her brothers. + +The countess had written direct to Julie's mother in Moscow +suggesting a marriage between their children and had received a +favorable answer from her. Karagina had replied that for her part +she was agreeable, and everything depend on her daughter's +inclination. She invited Nicholas to come to Moscow. + +Several times the countess, with tears in her eyes, told her son +that now both her daughters were settled, her only wish was to see him +married. She said she could lie down in her grave peacefully if that +were accomplished. Then she told him that she knew of a splendid +girl and tried to discover what he thought about marriage. + +At other times she praised Julie to him and advised him to go to +Moscow during the holidays to amuse himself. Nicholas guessed what his +mother's remarks were leading to and during one of these conversations +induced her to speak quite frankly. She told him that her only hope of +getting their affairs disentangled now lay in his marrying Julie +Karagina. + +"But, Mamma, suppose I loved a girl who has no fortune, would you +expect me to sacrifice my feelings and my honor for the sake of +money?" he asked his mother, not realizing the cruelty of his question +and only wishing to show his noble-mindedness. + +"No, you have not understood me," said his mother, not knowing how +to justify herself. "You have not understood me, Nikolenka. It is your +happiness I wish for," she added, feeling that she was telling an +untruth and was becoming entangled. She began to cry. + +"Mamma, don't cry! Only tell me that you wish it, and you know I +will give my life, anything, to put you at ease," said Nicholas. "I +would sacrifice anything for you--even my feelings." + +But the countess did not want the question put like that: she did +not want a sacrifice from her son, she herself wished to make a +sacrifice for him. + +"No, you have not understood me, don't let us talk about it," she +replied, wiping away her tears. + +"Maybe I do love a poor girl," said Nicholas to himself. "Am I to +sacrifice my feelings and my honor for money? I wonder how Mamma could +speak so to me. Because Sonya is poor I must not love her," he +thought, "must not respond to her faithful, devoted love? Yet I should +certainly be happier with her than with some doll-like Julie. I can +always sacrifice my feelings for my family's welfare," he said to +himself, "but I can't coerce my feelings. If I love Sonya, that +feeling is for me stronger and higher than all else." + +Nicholas did not go to Moscow, and the countess did not renew the +conversation with him about marriage. She saw with sorrow, and +sometimes with exasperation, symptoms of a growing attachment +between her son and the portionless Sonya. Though she blamed herself +for it, she could not refrain from grumbling at and worrying Sonya, +often pulling her up without reason, addressing her stiffly as "my +dear," and using the formal "you" instead of the intimate "thou" in +speaking to her. The kindhearted countess was the more vexed with +Sonya because that poor, dark-eyed niece of hers was so meek, so kind, +so devotedly grateful to her benefactors, and so faithfully, +unchangingly, and unselfishly in love with Nicholas, that there were +no grounds for finding fault with her. + +Nicholas was spending the last of his leave at home. A fourth letter +had come from Prince Andrew, from Rome, in which he wrote that he +would have been on his way back to Russia long ago had not his wound +unexpectedly reopened in the warm climate, which obliged him to +defer his return till the beginning of the new year. Natasha was still +as much in love with her betrothed, found the same comfort in that +love, and was still as ready to throw herself into all the pleasures +of life as before; but at the end of the fourth month of their +separation she began to have fits of depression which she could not +master. She felt sorry for herself: sorry that she was being wasted +all this time and of no use to anyone--while she felt herself so +capable of loving and being loved. + +Things were not cheerful in the Rostovs' home. + + + + + +CHAPTER IX + + +Christmas came and except for the ceremonial Mass, the solemn and +wearisome Christmas congratulations from neighbors and servants, and +the new dresses everyone put on, there were no special festivities, +though the calm frost of twenty degrees Reaumur, the dazzling sunshine +by day, and the starlight of the winter nights seemed to call for some +special celebration of the season. + +On the third day of Christmas week, after the midday dinner, all the +inmates of the house dispersed to various rooms. It was the dullest +time of the day. Nicholas, who had been visiting some neighbors that +morning, was asleep on the sitting-room sofa. The old count was +resting in his study. Sonya sat in the drawing room at the round +table, copying a design for embroidery. The countess was playing +patience. Nastasya Ivanovna the buffoon sat with a sad face at the +window with two old ladies. Natasha came into the room, went up to +Sonya, glanced at what she was doing, and then went up to her mother +and stood without speaking. + +"Why are you wandering about like an outcast?" asked her mother. +"What do you want?" + +"Him... I want him... now, this minute! I want him!" said Natasha, +with glittering eyes and no sign of a smile. + +The countess lifted her head and looked attentively at her daughter. + +"Don't look at me, Mamma! Don't look; I shall cry directly." + +"Sit down with me a little," said the countess. + +"Mamma, I want him. Why should I be wasted like this, Mamma?" + +Her voice broke, tears gushed from her eyes, and she turned +quickly to hide them and left the room. + +She passed into the sitting room, stood there thinking awhile, and +then went into the maids' room. There an old maidservant was grumbling +at a young girl who stood panting, having just run in through the cold +from the serfs' quarters. + +"Stop playing--there's a time for everything," said the old woman. + +"Let her alone, Kondratevna," said Natasha. "Go, Mavrushka, go." + +Having released Mavrushka, Natasha crossed the dancing hall and went +to the vestibule. There an old footman and two young ones were playing +cards. They broke off and rose as she entered. + +"What can I do with them?" thought Natasha. + +"Oh, Nikita, please go... where can I send him?... Yes, go to the +yard and fetch a fowl, please, a cock, and you, Misha, bring me some +oats." + +"Just a few oats?" said Misha, cheerfully and readily. + +"Go, go quickly," the old man urged him. + +"And you, Theodore, get me a piece of chalk." + +On her way past the butler's pantry she told them to set a +samovar, though it was not at all the time for tea. + +Foka, the butler, was the most ill-tempered person in the house. +Natasha liked to test her power over him. He distrusted the order +and asked whether the samovar was really wanted. + +"Oh dear, what a young lady!" said Foka, pretending to frown at +Natasha. + +No one in the house sent people about or gave them as much trouble +as Natasha did. She could not see people unconcernedly, but had to +send them on some errand. She seemed to be trying whether any of +them would get angry or sulky with her; but the serfs fulfilled no +one's orders so readily as they did hers. "What can I do, where can +I go?" thought she, as she went slowly along the passage. + +"Nastasya Ivanovna, what sort of children shall I have?" she asked +the buffoon, who was coming toward her in a woman's jacket. + +"Why, fleas, crickets, grasshoppers," answered the buffoon. + +"O Lord, O Lord, it's always the same! Oh, where am I to go? What am +I to do with myself?" And tapping with her heels, she ran quickly +upstairs to see Vogel and his wife who lived on the upper story. + +Two governesses were sitting with the Vogels at a table, on which +were plates of raisins, walnuts, and almonds. The governesses were +discussing whether it was cheaper to live in Moscow or Odessa. Natasha +sat down, listened to their talk with a serious and thoughtful air, +and then got up again. + +"The island of Madagascar," she said, "Ma-da-gas-car," she repeated, +articulating each syllable distinctly, and, not replying to Madame +Schoss who asked her what she was saying, she went out of the room. + +Her brother Petya was upstairs too; with the man in attendance on +him he was preparing fireworks to let off that night. + +"Petya! Petya!" she called to him. "Carry me downstairs." + +Petya ran up and offered her his back. She jumped on it, putting her +arms round his neck, and he pranced along with her. + +"No, don't... the island of Madagascar!" she said, and jumping off +his back she went downstairs. + +Having as it were reviewed her kingdom, tested her power, and made +sure that everyone was submissive, but that all the same it was +dull, Natasha betook herself to the ballroom, picked up her guitar, +sat down in a dark corner behind a bookcase, and began to run her +fingers over the strings in the bass, picking out a passage she +recalled from an opera she had heard in Petersburg with Prince Andrew. +What she drew from the guitar would have had no meaning for other +listeners, but in her imagination a whole series of reminiscences +arose from those sounds. She sat behind the bookcase with her eyes +fixed on a streak of light escaping from the pantry door and +listened to herself and pondered. She was in a mood for brooding on +the past. + +Sonya passed to the pantry with a glass in her hand. Natasha glanced +at her and at the crack in the pantry door, and it seemed to her +that she remembered the light failing through that crack once before +and Sonya passing with a glass in her hand. "Yes it was exactly the +same," thought Natasha. + +"Sonya, what is this?" she cried, twanging a thick string. + +"Oh, you are there!" said Sonya with a start, and came near and +listened. "I don't know. A storm?" she ventured timidly, afraid of +being wrong. + +"There! That's just how she started and just how she came up smiling +timidly when all this happened before," thought Natasha, "and in +just the same way I thought there was something lacking in her." + +"No, it's the chorus from The Water-Carrier, listen!" and Natasha +sang the air of the chorus so that Sonya should catch it. "Where +were you going?" she asked. + +"To change the water in this glass. I am just finishing the design." + +"You always find something to do, but I can't," said Natasha. "And +where's Nicholas?" + +"Asleep, I think." + +"Sonya, go and wake him," said Natasha. "Tell him I want him to come +and sing." + +She sat awhile, wondering what the meaning of it all having happened +before could be, and without solving this problem, or at all +regretting not having done so, she again passed in fancy to the time +when she was with him and he was looking at her with a lover's eyes. + +"Oh, if only he would come quicker! I am so afraid it will never be! +And, worst of all, I am growing old--that's the thing! There won't +then be in me what there is now. But perhaps he'll come today, will +come immediately. Perhaps he has come and is sitting in the drawing +room. Perhaps he came yesterday and I have forgotten it." She rose, +put down the guitar, and went to the drawing room. + +All the domestic circle, tutors, governesses, and guests, were +already at the tea table. The servants stood round the table--but +Prince Andrew was not there and life was going on as before. + +"Ah, here she is!" said the old count, when he saw Natasha enter. +"Well, sit down by me." But Natasha stayed by her mother and glanced +round as if looking for something. + +"Mamma!" she muttered, "give him to me, give him, Mamma, quickly, +quickly!" and she again had difficulty in repressing her sobs. + +She sat down at the table and listened to the conversation between +the elders and Nicholas, who had also come to the table. "My God, my +God! The same faces, the same talk, Papa holding his cup and blowing +in the same way!" thought Natasha, feeling with horror a sense of +repulsion rising up in her for the whole household, because they +were always the same. + +After tea, Nicholas, Sonya, and Natasha went to the sitting room, to +their favorite corner where their most intimate talks always began. + + + + + +CHAPTER X + + +"Does it ever happen to you," said Natasha to her brother, when +they settled down in the sitting room, "does it ever happen to you +to feel as if there were nothing more to come--nothing; that +everything good is past? And to feel not exactly dull, but sad?" + +"I should think so!" he replied. "I have felt like that when +everything was all right and everyone was cheerful. The thought has +come into my mind that I was already tired of it all, and that we must +all die. Once in the regiment I had not gone to some merrymaking where +there was music... and suddenly I felt so depressed..." + +"Oh yes, I know, I know, I know!" Natasha interrupted him. "When I +was quite little that used to be so with me. Do you remember when I +was punished once about some plums? You were all dancing, and I sat +sobbing in the schoolroom? I shall never forget it: I felt sad and +sorry for everyone, for myself, and for everyone. And I was +innocent--that was the chief thing," said Natasha. "Do you remember?" + +"I remember," answered Nicholas. "I remember that I came to you +afterwards and wanted to comfort you, but do you know, I felt +ashamed to. We were terribly absurd. I had a funny doll then and +wanted to give it to you. Do you remember?" + +"And do you remember," Natasha asked with a pensive smile, "how +once, long, long ago, when we were quite little, Uncle called us +into the study--that was in the old house--and it was dark--we went in +and suddenly there stood..." + +"A Negro," chimed in Nicholas with a smile of delight. "Of course +I remember. Even now I don't know whether there really was a Negro, or +if we only dreamed it or were told about him." + +"He was gray, you remember, and had white teeth, and stood and +looked at us..." + +"Sonya, do you remember?" asked Nicholas. + +"Yes, yes, I do remember something too," Sonya answered timidly. + +"You know I have asked Papa and Mamma about that Negro," said +Natasha, "and they say there was no Negro at all. But you see, you +remember!" + +"Of course I do, I remember his teeth as if I had just seen them." + +"How strange it is! It's as if it were a dream! I like that." + +"And do you remember how we rolled hard-boiled eggs in the ballroom, +and suddenly two old women began spinning round on the carpet? Was +that real or not? Do you remember what fun it was?" + +"Yes, and you remember how Papa in his blue overcoat fired a gun +in the porch?" + +So they went through their memories, smiling with pleasure: not +the sad memories of old age, but poetic, youthful ones--those +impressions of one's most distant past in which dreams and realities +blend--and they laughed with quiet enjoyment. + +Sonya, as always, did not quite keep pace with them, though they +shared the same reminiscences. + +Much that they remembered had slipped from her mind, and what she +recalled did not arouse the same poetic feeling as they experienced. +She simply enjoyed their pleasure and tried to fit in with it. + +She only really took part when they recalled Sonya's first +arrival. She told them how afraid she had been of Nicholas because +he had on a corded jacket and her nurse had told her that she, too, +would be sewn up with cords. + +"And I remember their telling me that you had been born under a +cabbage," said Natasha, "and I remember that I dared not disbelieve +it then, but knew that it was not true, and I felt so uncomfortable." + +While they were talking a maid thrust her head in at the other +door of the sitting room. + +"They have brought the cock, Miss," she said in a whisper. + +"It isn't wanted, Petya. Tell them to take it away," replied +Natasha. + +In the middle of their talk in the sitting room, Dimmler came in and +went up to the harp that stood there in a corner. He took off its +cloth covering, and the harp gave out a jarring sound. + +"Mr. Dimmler, please play my favorite nocturne by Field," came the +old countess' voice from the drawing room. + +Dimmler struck a chord and, turning to Natasha, Nicholas, and Sonya, +remarked: "How quiet you young people are!" + +"Yes, we're philosophizing," said Natasha, glancing round for a +moment and then continuing the conversation. They were now +discussing dreams. + +Dimmler began to play; Natasha went on tiptoe noiselessly to the +table, took up a candle, carried it out, and returned, seating herself +quietly in her former place. It was dark in the room especially +where they were sitting on the sofa, but through the big windows the +silvery light of the full moon fell on the floor. Dimmler had finished +the piece but still sat softly running his fingers over the strings, +evidently uncertain whether to stop or to play something else. + +"Do you know," said Natasha in a whisper, moving closer to +Nicholas and Sonya, "that when one goes on and on recalling +memories, one at last begins to remember what happened before one +was in the world..." + +"That is metempsychosis," said Sonya, who had always learned well, +and remembered everything. "The Egyptians believed that our souls have +lived in animals, and will go back into animals again." + +"No, I don't believe we ever were in animals," said Natasha, still +in a whisper though the music had ceased. "But I am certain that we +were angels somewhere there, and have been here, and that is why we +remember...." + +"May I join you?" said Dimmler who had come up quietly, and he sat +down by them. + +"If we have been angels, why have we fallen lower?" said Nicholas. +"No, that can't be!" + +"Not lower, who said we were lower?... How do I know what I was +before?" Natasha rejoined with conviction. "The soul is immortal--well +then, if I shall always live I must have lived before, lived for a +whole eternity." + +"Yes, but it is hard for us to imagine eternity," remarked +Dimmler, who had joined the young folk with a mildly condescending +smile but now spoke as quietly and seriously as they. + +"Why is it hard to imagine eternity?" said Natasha. "It is now +today, and it will be tomorrow, and always; and there was yesterday, +and the day before..." + +"Natasha! Now it's your turn. Sing me something," they heard the +countess say. "Why are you sitting there like conspirators?" + +"Mamma, I don't at all want to," replied Natasha, but all the same +she rose. + +None of them, not even the middle-aged Dimmler, wanted to break +off their conversation and quit that corner in the sitting room, but +Natasha got up and Nicholas sat down at the clavichord. Standing as +usual in the middle of the hall and choosing the place where the +resonance was best, Natasha began to sing her mother's favorite song. + +She had said she did not want to sing, but it was long since she had +sung, and long before she again sang, as she did that evening. The +count, from his study where he was talking to Mitenka, heard her +and, like a schoolboy in a hurry to run out to play, blundered in +his talk while giving orders to the steward, and at last stopped, +while Mitenka stood in front of him also listening and smiling. +Nicholas did not take his eyes off his sister and drew breath in +time with her. Sonya, as she listened, thought of the immense +difference there was between herself and her friend, and how +impossible it was for her to be anything like as bewitching as her +cousin. The old countess sat with a blissful yet sad smile and with +tears in her eyes, occasionally shaking her head. She thought of +Natasha and of her own youth, and of how there was something unnatural +and dreadful in this impending marriage of Natasha and Prince Andrew. + +Dimmler, who had seated himself beside the countess, listened with +closed eyes. + +"Ah, Countess," he said at last, "that's a European talent, she +has nothing to learn--what softness, tenderness, and strength...." + +"Ah, how afraid I am for her, how afraid I am!" said the countess, +not realizing to whom she was speaking. Her maternal instinct told her +that Natasha had too much of something, and that because of this she +would not be happy. Before Natasha had finished singing, +fourteen-year-old Petya rushed in delightedly, to say that some +mummers had arrived. + +Natasha stopped abruptly. + +"Idiot!" she screamed at her brother and, running to a chair, +threw herself on it, sobbing so violently that she could not stop +for a long time. + +"It's nothing, Mamma, really it's nothing; only Petya startled +me," she said, trying to smile, but her tears still flowed and sobs +still choked her. + +The mummers (some of the house serfs) dressed up as bears, Turks, +innkeepers, and ladies--frightening and funny--bringing in with them +the cold from outside and a feeling of gaiety, crowded, at first +timidly, into the anteroom, then hiding behind one another they pushed +into the ballroom where, shyly at first and then more and more merrily +and heartily, they started singing, dancing, and playing Christmas +games. The countess, when she had identified them and laughed at their +costumes, went into the drawing room. The count sat in the ballroom, +smiling radiantly and applauding the players. The young people had +disappeared. + +Half an hour later there appeared among the other mummers in the +ballroom an old lady in a hooped skirt--this was Nicholas. A Turkish +girl was Petya. A clown was Dimmler. An hussar was Natasha, and a +Circassian was Sonya with burnt-cork mustache and eyebrows. + +After the condescending surprise, nonrecognition, and praise, from +those who were not themselves dressed up, the young people decided +that their costumes were so good that they ought to be shown +elsewhere. + +Nicholas, who, as the roads were in splendid condition, wanted to +take them all for a drive in his troyka, proposed to take with them +about a dozen of the serf mummers and drive to "Uncle's." + +"No, why disturb the old fellow?" said the countess. "Besides, you +wouldn't have room to turn round there. If you must go, go to the +Melyukovs'." + +Melyukova was a widow, who, with her family and their tutors and +governesses, lived three miles from the Rostovs. + +"That's right, my dear," chimed in the old count, thoroughly +aroused. "I'll dress up at once and go with them. I'll make Pashette +open her eyes." + +But the countess would not agree to his going; he had had a bad +leg all these last days. It was decided that the count must not go, +but that if Louisa Ivanovna (Madame Schoss) would go with them, the +young ladies might go to the Melyukovs', Sonya, generally so timid and +shy, more urgently than anyone begging Louisa Ivanovna not to refuse. + +Sonya's costume was the best of all. Her mustache and eyebrows +were extraordinarily becoming. Everyone told her she looked very +handsome, and she was in a spirited and energetic mood unusual with +her. Some inner voice told her that now or never her fate would be +decided, and in her male attire she seemed quite a different person. +Louisa Ivanovna consented to go, and in half an hour four troyka +sleighs with large and small bells, their runners squeaking and +whistling over the frozen snow, drove up to the porch. + +Natasha was foremost in setting a merry holiday tone, which, passing +from one to another, grew stronger and reached its climax +when they all came out into the frost and got into the sleighs, +talking, calling to one another, laughing, and shouting. + +Two of the troykas were the usual household sleighs, the third was +the old count's with a trotter from the Orlov stud as shaft horse, the +fourth was Nicholas' own with a short shaggy black shaft horse. +Nicholas, in his old lady's dress over which he had belted his +hussar overcoat, stood in the middle of the sleigh, reins in hand. + +It was so light that he could see the moonlight reflected from the +metal harness disks and from the eyes of the horses, who looked +round in alarm at the noisy party under the shadow of the porch roof. + +Natasha, Sonya, Madame Schoss, and two maids got into Nicholas' +sleigh; Dimmler, his wife, and Petya, into the old count's, and the +rest of the mummers seated themselves in the other two sleighs. + +"You go ahead, Zakhar!" shouted Nicholas to his father's coachman, +wishing for a chance to race past him. + +The old count's troyka, with Dimmler and his party, started forward, +squeaking on its runners as though freezing to the snow, its +deep-toned bell clanging. The side horses, pressing against the shafts +of the middle horse, sank in the snow, which was dry and glittered +like sugar, and threw it up. + +Nicholas set off, following the first sleigh; behind him the +others moved noisily, their runners squeaking. At first they drove +at a steady trot along the narrow road. While they drove past the +garden the shadows of the bare trees often fell across the road and +hid the brilliant moonlight, but as soon as they were past the +fence, the snowy plain bathed in moonlight and motionless spread out +before them glittering like diamonds and dappled with bluish +shadows. Bang, bang! went the first sleigh over a cradle hole in the +snow of the road, and each of the other sleighs jolted in the same +way, and rudely breaking the frost-bound stillness, the troykas +began to speed along the road, one after the other. + +"A hare's track, a lot of tracks!" rang out Natasha's voice +through the frost-bound air. + +"How light it is, Nicholas!" came Sonya's voice. + +Nicholas glanced round at Sonya, and bent down to see her face +closer. Quite a new, sweet face with black eyebrows and mustaches +peeped up at him from her sable furs--so close and yet so distant- +in the moonlight. + +"That used to be Sonya," thought he, and looked at her closer and +smiled. + +"What is it, Nicholas?" + +"Nothing," said he and turned again to the horses. + +When they came out onto the beaten highroad--polished by sleigh +runners and cut up by rough-shod hoofs, the marks of which were +visible in the moonlight--the horses began to tug at the reins of +their own accord and increased their pace. The near side horse, +arching his head and breaking into a short canter, tugged at his +traces. The shaft horse swayed from side to side, moving his ears as +if asking: "Isn't it time to begin now?" In front, already far ahead +the deep bell of the sleigh ringing farther and farther off, the black +horses driven by Zakhar could be clearly seen against the white +snow. From that sleigh one could hear the shouts, laughter, and voices +of the mummers. + +"Gee up, my darlings!" shouted Nicholas, pulling the reins to one +side and flourishing the whip. + +It was only by the keener wind that met them and the jerks given +by the side horses who pulled harder--ever increasing their gallop- +that one noticed how fast the troyka was flying. Nicholas looked back. +With screams squeals, and waving of whips that caused even the shaft +horses to gallop--the other sleighs followed. The shaft horse swung +steadily beneath the bow over its head, with no thought of +slackening pace and ready to put on speed when required. + +Nicholas overtook the first sleigh. They were driving downhill and +coming out upon a broad trodden track across a meadow, near a river. + +"Where are we?" thought he. "It's the Kosoy meadow, I suppose. But +no--this is something new I've never seen before. This isn't the Kosoy +meadow nor the Demkin hill, and heaven only knows what it is! It is +something new and enchanted. Well, whatever it may be..." And shouting +to his horses, he began to pass the first sleigh. + +Zakhar held back his horses and turned his face, which was already +covered with hoarfrost to his eyebrows. + +Nicholas gave the horses the rein, and Zakhar, stretching out his +arms, clucked his tongue and let his horses go. + +"Now, look out, master!" he cried. + +Faster still the two troykas flew side by side, and faster moved the +feet of the galloping side horses. Nicholas began to draw ahead. +Zakhar, while still keeping his arms extended, raised one hand with +the reins. + +"No you won't, master!" he shouted. + +Nicholas put all his horses to a gallop and passed Zakhar. The +horses showered the fine dry snow on the faces of those in the sleigh- +beside them sounded quick ringing bells and they caught confused +glimpses of swiftly moving legs and the shadows of the troyka they +were passing. The whistling sound of the runners on the snow and the +voices of girls shrieking were heard from different sides. + +Again checking his horses, Nicholas looked around him. They were +still surrounded by the magic plain bathed in moonlight and spangled +with stars. + +"Zakhar is shouting that I should turn to the left, but why to the +left?" thought Nicholas. "Are we getting to the Melyukovs'? Is this +Melyukovka? Heaven only knows where we are going, and heaven knows +what is happening to us--but it is very strange and pleasant +whatever it is." And he looked round in the sleigh. + +"Look, his mustache and eyelashes are all white!" said one of the +strange, pretty, unfamiliar people--the one with fine eyebrows and +mustache. + +"I think this used to be Natasha," thought Nicholas, "and that was +Madame Schoss, but perhaps it's not, and this Circassian with the +mustache I don't know, but I love her." + +"Aren't you cold?" he asked. + +They did not answer but began to laugh. Dimmler from the sleigh +behind shouted something--probably something funny--but they could not +make out what he said. + +"Yes, yes!" some voices answered, laughing. + +"But here was a fairy forest with black moving shadows, and a +glitter of diamonds and a flight of marble steps and the silver +roofs of fairy buildings and the shrill yells of some animals. And +if this is really Melyukovka, it is still stranger that we drove +heaven knows where and have come to Melyukovka," thought Nicholas. + +It really was Melyukovka, and maids and footmen with merry faces +came running, out to the porch carrying candles. + +"Who is it?" asked someone in the porch. + +"The mummers from the count's. I know by the horses," replied some +voices. + + + + + +CHAPTER XI + + +Pelageya Danilovna Melyukova, a broadly built, energetic woman +wearing spectacles, sat in the drawing room in a loose dress, +surrounded by her daughters whom she was trying to keep from feeling +dull. They were quietly dropping melted wax into snow and looking at +the shadows the wax figures would throw on the wall, when they heard +the steps and voices of new arrivals in the vestibule. + +Hussars, ladies, witches, clowns, and bears, after clearing their +throats and wiping the hoarfrost from their faces in the vestibule, +came into the ballroom where candles were hurriedly lighted. The +clown--Dimmler--and the lady--Nicholas--started a dance. Surrounded by +the screaming children the mummers, covering their faces and +disguising their voices, bowed to their hostess and arranged +themselves about the room. + +"Dear me! there's no recognizing them! And Natasha! See whom she +looks like! She really reminds me of somebody. But Herr Dimmler--isn't +he good! I didn't know him! And how he dances. Dear me, there's a +Circassian. Really, how becoming it is to dear Sonya. And who is that? +Well, you have cheered us up! Nikita and Vanya--clear away the tables! +And we were sitting so quietly. Ha, ha, ha!... The hussar, the hussar! +Just like a boy! And the legs!... I can't look at him..." different +voices were saying. + +Natasha, the young Melyukovs' favorite, disappeared with them into +the back rooms where a cork and various dressing gowns and male +garments were called for and received from the footman by bare girlish +arms from behind the door. Ten minutes later, all the young +Melyukovs joined the mummers. + +Pelageya Danilovna, having given orders to clear the rooms for the +visitors and arranged about refreshments for the gentry and the serfs, +went about among the mummers without removing her spectacles, +peering into their faces with a suppressed smile and failing to +recognize any of them. It was not merely Dimmler and the Rostovs she +failed to recognize, she did not even recognize her own daughters, +or her late husband's, dressing gowns and uniforms, which they had put +on. + +"And who is is this?" she asked her governess, peering into the face +of her own daughter dressed up as a Kazan-Tartar. "I suppose it is one +of the Rostovs! Well, Mr. Hussar, and what regiment do you serve +in?" she asked Natasha. "Here, hand some fruit jelly to the Turk!" she +ordered the butler who was handing things round. "That's not forbidden +by his law." + +Sometimes, as she looked at the strange but amusing capers cut by +the dancers, who--having decided once for all that being disguised, no +one would recognize them--were not at all shy, Pelageya Danilovna +hid her face in her handkerchief, and her whole stout body shook +with irrepressible, kindly, elderly laughter. + +"My little Sasha! Look at Sasha!" she said. + +After Russian country dances and chorus dances, Pelageya Danilovna +made the serfs and gentry join in one large circle: a ring, a +string, and a silver ruble were fetched and they all played games +together. + +In an hour, all the costumes were crumpled and disordered. The +corked eyebrows and mustaches were smeared over the perspiring, +flushed, and merry faces. Pelageya Danilovna began to recognize the +mummers, admired their cleverly contrived costumes, and particularly +how they suited the young ladies, and she thanked them all for +having entertained her so well. The visitors were invited to supper in +the drawing room, and the serfs had something served to them in the +ballroom. + +"Now to tell one's fortune in the empty bathhouse is frightening!" +said an old maid who lived with the Melyukovs, during supper. + +"Why?" said the eldest Melyukov girl. + +"You wouldn't go, it takes courage..." + +"I'll go," said Sonya. + +"Tell what happened to the young lady!" said the second Melyukov +girl. + +"Well," began the old maid, "a young lady once went out, took a +cock, laid the table for two, all properly, and sat down. After +sitting a while, she suddenly hears someone coming... a sleigh +drives up with harness bells; she hears him coming! He comes in, +just in the shape of a man, like an officer--comes in and sits down to +table with her." + +"Ah! ah!" screamed Natasha, rolling her eyes with horror. + +"Yes? And how... did he speak?" + +"Yes, like a man. Everything quite all right, and he began +persuading her; and she should have kept him talking till cockcrow, +but she got frightened, just got frightened and hid her face in her +hands. Then he caught her up. It was lucky the maids ran in just +then..." + +"Now, why frighten them?" said Pelageya Danilovna. + +"Mamma, you used to try your fate yourself..." said her daughter. + +"And how does one do it in a barn?" inquired Sonya. + +"Well, say you went to the barn now, and listened. It depends on +what you hear; hammering and knocking--that's bad; but a sound of +shifting grain is good and one sometimes hears that, too." + +"Mamma, tell us what happened to you in the barn." + +Pelageya Danilovna smiled. + +"Oh, I've forgotten..." she replied. "But none of you would go?" + +"Yes, I will; Pelageya Danilovna, let me! I'll go," said Sonya. + +"Well, why not, if you're not afraid?" + +"Louisa Ivanovna, may I?" asked Sonya. + +Whether they were playing the ring and string game or the ruble game +or talking as now, Nicholas did not leave Sonya's side, and gazed at +her with quite new eyes. It seemed to him that it was only today, +thanks to that burnt-cork mustache, that he had fully learned to +know her. And really, that evening, Sonya was brighter, more animated, +and prettier than Nicholas had ever seen her before. + +"So that's what she is like; what a fool I have been!" he thought +gazing at her sparkling eyes, and under the mustache a happy rapturous +smile dimpled her cheeks, a smile he had never seen before. + +"I'm not afraid of anything," said Sonya. "May I go at once?" She +got up. + +They told her where the barn was and how she should stand and +listen, and they handed her a fur cloak. She threw this over her +head and shoulders and glanced at Nicholas. + +"What a darling that girl is!" thought he. "And what have I been +thinking of till now?" + +Sonya went out into the passage to go to the barn. Nicholas went +hastily to the front porch, saying he felt too hot. The crowd of +people really had made the house stuffy. + +Outside, there was the same cold stillness and the same moon, but +even brighter than before. The light was so strong and the snow +sparkled with so many stars that one did not wish to look up at the +sky and the real stars were unnoticed. The sky was black and dreary, +while the earth was gay. + +"I am a fool, a fool! what have I been waiting for?" thought +Nicholas, and running out from the porch he went round the corner of +the house and along the path that led to the back porch. He knew Sonya +would pass that way. Halfway lay some snow-covered piles of firewood +and across and along them a network of shadows from the bare old +lime trees fell on the snow and on the path. This path led to the +barn. The log walls of the barn and its snow-covered roof, that looked +as if hewn out of some precious stone, sparkled in the moonlight. A +tree in the garden snapped with the frost, and then all was again +perfectly silent. His bosom seemed to inhale not air but the +strength of eternal youth and gladness. + +From the back porch came the sound of feet descending the steps, the +bottom step upon which snow had fallen gave a ringing creak and he +heard the voice of an old maidservant saying, "Straight, straight, +along the path, Miss. Only, don't look back." + +"I am not afraid," answered Sonya's voice, and along the path toward +Nicholas came the crunching, whistling sound of Sonya's feet in her +thin shoes. + +Sonya came along, wrapped in her cloak. She was only a couple of +paces away when she saw him, and to her too he was not the Nicholas +she had known and always slightly feared. He was in a woman's dress, +with tousled hair and a happy smile new to Sonya. She ran rapidly +toward him. + +"Quite different and yet the same," thought Nicholas, looking at her +face all lit up by the moonlight. He slipped his arms under the +cloak that covered her head, embraced her, pressed her to him, and +kissed her on the lips that wore a mustache and had a smell of burnt +cork. Sonya kissed him full on the lips, and disengaging her little +hands pressed them to his cheeks. + +"Sonya!... Nicholas!"... was all they said. They ran to the barn and +then back again, re-entering, he by the front and she by the back +porch. + + + + + +CHAPTER XII + + +When they all drove back from Pelageya Danilovna's, Natasha, who +always saw and noticed everything, arranged that she and Madame Schoss +should go back in the sleigh with Dimmler, and Sonya with Nicholas and +the maids. + +On the way back Nicholas drove at a steady pace instead of racing +and kept peering by that fantastic all-transforming light into Sonya's +face and searching beneath the eyebrows and mustache for his former +and his present Sonya from whom he had resolved never to be parted +again. He looked and recognizing in her both the old and the new +Sonya, and being reminded by the smell of burnt cork of the +sensation of her kiss, inhaled the frosty air with a full breast +and, looking at the ground flying beneath him and at the sparkling +sky, felt himself again in fairyland. + +"Sonya, is it well with thee?" he asked from time to time. + +"Yes!" she replied. "And with thee?" + +When halfway home Nicholas handed the reins to the coachman and +ran for a moment to Natasha's sleigh and stood on its wing. + +"Natasha!" he whispered in French, "do you know I have made up my +mind about Sonya?" + +"Have you told her?" asked Natasha, suddenly beaming all over with +joy. + +"Oh, how strange you are with that mustache and those eyebrows!... +Natasha--are you glad?" + +"I am so glad, so glad! I was beginning to be vexed with you. I +did not tell you, but you have been treating her badly. What a heart +she has, Nicholas! I am horrid sometimes, but I was ashamed to be +happy while Sonya was not," continued Natasha. "Now I am so glad! +Well, run back to her." + +"No, wait a bit.... Oh, how funny you look!" cried Nicholas, peering +into her face and finding in his sister too something new, unusual, +and bewitchingly tender that he had not seen in her before. +"Natasha, it's magical, isn't it?" + +"Yes," she replied. "You have done splendidly." + +"Had I seen her before as she is now," thought Nicholas, "I should +long ago have asked her what to do and have done whatever she told me, +and all would have been well." + +"So you are glad and I have done right?" + +"Oh, quite right! I had a quarrel with Mamma some time ago about it. +Mamma said she was angling for you. How could she say such a thing! +I nearly stormed at Mamma. I will never let anyone say anything bad of +Sonya, for there is nothing but good in her." + +"Then it's all right?" said Nicholas, again scrutinizing the +expression of his sister's face to see if she was in earnest. Then +he jumped down and, his boots scrunching the snow, ran back to his +sleigh. The same happy, smiling Circassian, with mustache and +beaming eyes looking up from under a sable hood, was still sitting +there, and that Circassian was Sonya, and that Sonya was certainly his +future happy and loving wife. + +When they reached home and had told their mother how they had +spent the evening at the Melyukovs', the girls went to their +bedroom. When they had undressed, but without washing off the cork +mustaches, they sat a long time talking of their happiness. They +talked of how they would live when they were married, how their +husbands would be friends, and how happy they would be. On Natasha's +table stood two looking glasses which Dunyasha had prepared +beforehand. + +"Only when will all that be? I am afraid never.... It would be too +good!" said Natasha, rising and going to the looking glasses. + +"Sit down, Natasha; perhaps you'll see him," said Sonya. + +Natasha lit the candles, one on each side of one of the looking +glasses, and sat down. + +"I see someone with a mustache," said Natasha, seeing her own face. + +"You mustn't laugh, Miss," said Dunyasha. + +With Sonya's help and the maid's, Natasha got the glass she held +into the right position opposite the other; her face assumed a serious +expression and she sat silent. She sat a long time looking at the +receding line of candles reflected in the glasses and expecting +(from tales she had heard) to see a coffin, or him, Prince Andrew, +in that last dim, indistinctly outlined square. But ready as she was +to take the smallest speck for the image of a man or of a coffin, +she saw nothing. She began blinking rapidly and moved away from the +looking glasses. + +"Why is it others see things and I don't?" she said. "You sit down +now, Sonya. You absolutely must, tonight! Do it for me.... Today I +feel so frightened!" + +Sonya sat down before the glasses, got the right position, and began +looking. + +"Now, Miss Sonya is sure to see something," whispered Dunyasha; +"while you do nothing but laugh." + +Sonya heard this and Natasha's whisper: + +"I know she will. She saw something last year." + +For about three minutes all were silent. + +"Of course she will!" whispered Natasha, but did not finish... +suddenly Sonya pushed away the glass she was holding and covered her +eyes with her hand. + +"Oh, Natasha!" she cried. + +"Did you see? Did you? What was it?" exclaimed Natasha, holding up +the looking glass. + +Sonya had not seen anything, she was just wanting to blink and to +get up when she heard Natasha say, "Of course she will!" She did not +wish to disappoint either Dunyasha or Natasha, but it was hard to +sit still. She did not herself know how or why the exclamation escaped +her when she covered her eyes. + +"You saw him?" urged Natasha, seizing her hand. + +"Yes. Wait a bit... I... saw him," Sonya could not help saying, +not yet knowing whom Natasha meant by him, Nicholas or Prince Andrew. + +"But why shouldn't I say I saw something? Others do see! Besides who +can tell whether I saw anything or not?" flashed through Sonya's mind. + +"Yes, I saw him," she said. + +"How? Standing or lying?" + +"No, I saw... At first there was nothing, then I saw him lying +down." + +"Andrew lying? Is he ill?" asked Natasha, her frightened eyes +fixed on her friend. + +"No, on the contrary, on the contrary! His face was cheerful, and he +turned to me." And when saying this she herself fancied she had really +seen what she described. + +"Well, and then, Sonya?..." + +"After that, I could not make out what there was; something blue and +red..." + +"Sonya! When will he come back? When shall I see him! O, God, how +afraid I am for him and for myself and about everything!..." Natasha +began, and without replying to Sonya's words of comfort she got into +bed, and long after her candle was out lay open-eyed and motionless, +gazing at the moonlight through the frosty windowpanes. + + + + + +CHAPTER XIII + + +Soon after the Christmas holidays Nicholas told his mother of his +love for Sonya and of his firm resolve to marry her. The countess, who +had long noticed what was going on between them and was expecting this +declaration, listened to him in silence and then told her son that +he might marry whom he pleased, but that neither she nor his father +would give their blessing to such a marriage. Nicholas, for the +first time, felt that his mother was displeased with him and that, +despite her love for him, she would not give way. Coldly, without +looking at her son, she sent for her husband and, when he came, +tried briefly and coldly to inform him of the facts, in her son's +presence, but unable to restrain herself she burst into tears of +vexation and left the room. The old count began irresolutely to +admonish Nicholas and beg him to abandon his purpose. Nicholas replied +that he could not go back on his word, and his father, sighing and +evidently disconcerted, very soon became silent and went in to the +countess. In all his encounters with his son, the count was always +conscious of his own guilt toward him for having wasted the family +fortune, and so he could not be angry with him for refusing to marry +an heiress and choosing the dowerless Sonya. On this occasion, he +was only more vividly conscious of the fact that if his affairs had +not been in disorder, no better wife for Nicholas than Sonya could +have been wished for, and that no one but himself with his Mitenka and +his uncomfortable habits was to blame for the condition of the +family finances. + +The father and mother did not speak of the matter to their son +again, but a few days later the countess sent for Sonya and, with a +cruelty neither of them expected, reproached her niece for trying to +catch Nicholas and for ingratitude. Sonya listened silently with +downcast eyes to the countess' cruel words, without understanding what +was required of her. She was ready to sacrifice everything for her +benefactors. Self-sacrifice was her most cherished idea but in this +case she could not see what she ought to sacrifice, or for whom. She +could not help loving the countess and the whole Rostov family, but +neither could she help loving Nicholas and knowing that his +happiness depended on that love. She was silent and sad and did not +reply. Nicholas felt the situation to be intolerable and went to +have an explanation with his mother. He first implored her to +forgive him and Sonya and consent to their marriage, then he +threatened that if she molested Sonya he would at once marry her +secretly. + +The countess, with a coldness her son had never seen in her +before, replied that he was of age, that Prince Andrew was marrying +without his father's consent, and he could do the same, but that she +would never receive that intriguer as her daughter. + +Exploding at the word intriguer, Nicholas, raising his voice, told +his mother he had never expected her to try to force him to sell his +feelings, but if that were so, he would say for the last time.... +But he had no time to utter the decisive word which the expression +of his face caused his mother to await with terror, and which would +perhaps have forever remained a cruel memory to them both. He had +not time to say it, for Natasha, with a pale and set face, entered the +room from the door at which she had been listening. + +"Nicholas, you are talking nonsense! Be quiet, be quiet, be quiet, I +tell you!..." she almost screamed, so as to drown his voice. + +"Mamma darling, it's not at all so... my poor, sweet darling," she +said to her mother, who conscious that they had been on the brink of a +rupture gazed at her son with terror, but in the obstinacy and +excitement of the conflict could not and would not give way. + +"Nicholas, I'll explain to you. Go away! Listen, Mamma darling," +said Natasha. + +Her words were incoherent, but they attained the purpose at which +she was aiming. + +The countess, sobbing heavily, hid her face on her daughter's +breast, while Nicholas rose, clutching his head, and left the room. + +Natasha set to work to effect a reconciliation, and so far succeeded +that Nicholas received a promise from his mother that Sonya should not +be troubled, while he on his side promised not to undertake anything +without his parents' knowledge. + +Firmly resolved, after putting his affairs in order in the regiment, +to retire from the army and return and marry Sonya, Nicholas, serious, +sorrowful, and at variance with his parents, but, as it seemed to him, +passionately in love, left at the beginning of January to rejoin his +regiment. + +After Nicholas had gone things in the Rostov household were more +depressing than ever, and the countess fell ill from mental agitation. + +Sonya was unhappy at the separation from Nicholas and still more +so on account of the hostile tone the countess could not help adopting +toward her. The count was more perturbed than ever by the condition of +his affairs, which called for some decisive action. Their town house +and estate near Moscow had inevitably to be sold, and for this they +had to go to Moscow. But the countess' health obliged them to delay +their departure from day to day. + +Natasha, who had borne the first period of separation from her +betrothed lightly and even cheerfully, now grew more agitated and +impatient every day. The thought that her best days, which she would +have employed in loving him, were being vainly wasted, with no +advantage to anyone, tormented her incessantly. His letters for the +most part irritated her. It hurt her to think that while she lived +only in the thought of him, he was living a real life, seeing new +places and new people that interested him. The more interesting his +letters were the more vexed she felt. Her letters to him, far from +giving her any comfort, seemed to her a wearisome and artificial +obligation. She could not write, because she could not conceive the +possibility of expressing sincerely in a letter even a thousandth part +of what she expressed by voice, smile, and glance. She wrote to him +formal, monotonous, and dry letters, to which she attached no +importance herself, and in the rough copies of which the countess +corrected her mistakes in spelling. + +There was still no improvement in the countess' health, but it was +impossible to defer the journey to Moscow any longer. Natasha's +trousseau had to be ordered and the house sold. Moreover, Prince +Andrew was expected in Moscow, where old Prince Bolkonski was spending +the winter, and Natasha felt sure he had already arrived. + +So the countess remained in the country, and the count, taking Sonya +and Natasha with him, went to Moscow at the end of January. + + + + +BOOK EIGHT: 1811 --12 + + + + + +CHAPTER I + + +After Prince Andrews engagement to Natasha, Pierre without any +apparent cause suddenly felt it impossible to go on living as +before. Firmly convinced as he was of the truths revealed to him by +his benefactor, and happy as he had been in perfecting his inner +man, to which he had devoted himself with such ardor--all the zest +of such a life vanished after the engagement of Andrew and Natasha and +the death of Joseph Alexeevich, the news of which reached him almost +at the same time. Only the skeleton of life remained: his house, a +brilliant wife who now enjoyed the favors of a very important +personage, acquaintance with all Petersburg, and his court service +with its dull formalities. And this life suddenly seemed to Pierre +unexpectedly loathsome. He ceased keeping a diary, avoided the company +of the Brothers, began going to the Club again, drank a great deal, +and came once more in touch with the bachelor sets, leading such a +life that the Countess Helene thought it necessary to speak severely +to him about it. Pierre felt that she right, and to avoid compromising +her went away to Moscow. + +In Moscow as soon as he entered his huge house in which the faded +and fading princesses still lived, with its enormous retinue; as +soon as, driving through the town, he saw the Iberian shrine with +innumerable tapers burning before the golden covers of the icons, +the Kremlin Square with its snow undisturbed by vehicles, the sleigh +drivers and hovels of the Sivtsev Vrazhok, those old Moscovites who +desired nothing, hurried nowhere, and were ending their days +leisurely; when he saw those old Moscow ladies, the Moscow balls, +and the English Club, he felt himself at home in a quiet haven. In +Moscow he felt at peace, at home, warm and dirty as in an old dressing +gown. + +Moscow society, from the old women down to the children, received +Pierre like a long-expected guest whose place was always ready +awaiting him. For Moscow society Pierre was the nicest, kindest, +most intellectual, merriest, and most magnanimous of cranks, a +heedless, genial nobleman of the old Russian type. His purse was +always empty because it was open to everyone. + +Benefit performances, poor pictures, statues, benevolent +societies, gypsy choirs, schools, subscription dinners, sprees, +Freemasons, churches, and books--no one and nothing met with a refusal +from him, and had it not been for two friends who had borrowed large +sums from him and taken him under their protection, he would have +given everything away. There was never a dinner or soiree at the +Club without him. As soon as he sank into his place on the sofa +after two bottles of Margaux he was surrounded, and talking, +disputing, and joking began. When there were quarrels, his kindly +smile and well-timed jests reconciled the antagonists. The Masonic +dinners were dull and dreary when he was not there. + +When after a bachelor supper he rose with his amiable and kindly +smile, yielding to the entreaties of the festive company to drive +off somewhere with them, shouts of delight and triumph arose among the +young men. At balls he danced if a partner was needed. Young ladies, +married and unmarried, liked him because without making love to any of +them, he was equally amiable to all, especially after supper. "Il +est charmant; il n'a pas de sexe,"* they said of him. + + +*"He is charming; he has no sex." + + +Pierre was one of those retired gentlemen-in-waiting of whom there +were hundreds good-humoredly ending their days in Moscow. + +How horrified he would have been seven years before, when he first +arrived from abroad, had he been told that there was no need for him +to seek or plan anything, that his rut had long been shaped, eternally +predetermined, and that wriggle as he might, he would be what all in +his position were. He could not have believed it! Had he not at one +time longed with all his heart to establish a republic in Russia; then +himself to be a Napoleon; then to be a philosopher; and then a +strategist and the conqueror of Napoleon? Had he not seen the +possibility of, and passionately desired, the regeneration of the +sinful human race, and his own progress to the highest degree of +perfection? Had he not established schools and hospitals and liberated +his serfs? + +But instead of all that--here he was, the wealthy husband of an +unfaithful wife, a retired gentleman-in-waiting, fond of eating and +drinking and, as he unbuttoned his waistcoat, of abusing the +government a bit, a member of the Moscow English Club, and a universal +favorite in Moscow society. For a long time he could not reconcile +himself to the idea that he was one of those same retired Moscow +gentlemen-in-waiting he had so despised seven years before. + +Sometimes he consoled himself with the thought that he was only +living this life temporarily; but then he was shocked by the thought +of how many, like himself, had entered that life and that Club +temporarily, with all their teeth and hair, and had only left it +when not a single tooth or hair remained. + +In moments of pride, when he thought of his position it seemed to +him that he was quite different and distinct from those other +retired gentlemen-in-waiting he had formerly despised: they were +empty, stupid, contented fellows, satisfied with their position, +"while I am still discontented and want to do something for mankind. +But perhaps all these comrades of mine struggled just like me and +sought something new, a path in life of their own, and like me were +brought by force of circumstances, society, and race--by that +elemental force against which man is powerless--to the condition I +am in," said he to himself in moments of humility; and after living +some time in Moscow he no longer despised, but began to grow fond +of, to respect, and to pity his comrades in destiny, as he pitied +himself. + +Pierre longer suffered moments of despair, hypochondria, and disgust +with life, but the malady that had formerly found expression in such +acute attacks was driven inwards and never left him for a moment. +"What for? Why? What is going on in the world?" he would ask himself +in perplexity several times a day, involuntarily beginning to +reflect anew on the meaning of the phenomena of life; but knowing by +experience that there were no answers to these questions he made haste +to turn away from them, and took up a book, or hurried of to the +Club or to Apollon Nikolaevich's, to exchange the gossip of the town. + +"Helene, who has never cared for anything but her own body and is +one of the stupidest women in the world," thought Pierre, "is regarded +by people as the acme of intelligence and refinement, and they pay +homage to her. Napoleon Bonaparte was despised by all as long as he +was great, but now that he has become a wretched comedian the +Emperor Francis wants to offer him his daughter in an illegal +marriage. The Spaniards, through the Catholic clergy, offer praise +to God for their victory over the French on the fourteenth of June, +and the French, also through the Catholic clergy, offer praise because +on that same fourteenth of June they defeated the Spaniards. My +brother Masons swear by the blood that they are ready to sacrifice +everything for their neighbor, but they do not give a ruble each to +the collections for the poor, and they intrigue, the Astraea Lodge +against the Manna Seekers, and fuss about an authentic Scotch carpet +and a charter that nobody needs, and the meaning of which the very man +who wrote it does not understand. We all profess the Christian law +of forgiveness of injuries and love of our neighbors, the law in honor +of which we have built in Moscow forty times forty churches--but +yesterday a deserter was knouted to death and a minister of that +same law of love and forgiveness, a priest, gave the soldier a cross +to kiss before his execution." So thought Pierre, and the whole of +this general deception which everyone accepts, accustomed as he was to +it, astonished him each time as if it were something new. "I +understand the deception and confusion," he thought, "but how am I +to tell them all that I see? I have tried, and have always found +that they too in the depths of their souls understand it as I do, +and only try not to see it. So it appears that it must be so! But I- +what is to become of me?" thought he. He had the unfortunate +capacity many men, especially Russians, have of seeing and believing +in the possibility of goodness and truth, but of seeing the evil and +falsehood of life too clearly to be able to take a serious part in it. +Every sphere of work was connected, in his eyes, with evil and +deception. Whatever he tried to be, whatever he engaged in, the evil +and falsehood of it repulsed him and blocked every path of activity. +Yet he had to live and to find occupation. It was too dreadful to be +under the burden of these insoluble problems, so he abandoned +himself to any distraction in order to forget them. He frequented +every kind of society, drank much, bought pictures, engaged in +building, and above all--read. + +He read, and read everything that came to hand. On coming home, +while his valets were still taking off his things, he picked up a book +and began to read. From reading he passed to sleeping, from sleeping +to gossip in drawing rooms of the Club, from gossip to carousals and +women; from carousals back to gossip, reading, and wine. Drinking +became more and more a physical and also a moral necessity. Though the +doctors warned him that with his corpulence wine was dangerous for +him, he drank a great deal. He was only quite at ease when having +poured several glasses of wine mechanically into his large mouth he +felt a pleasant warmth in his body, an amiability toward all his +fellows, and a readiness to respond superficially to every idea +without probing it deeply. Only after emptying a bottle or two did +he feel dimly that the terribly tangled skein of life which previously +had terrified him was not as dreadful as he had thought. He was always +conscious of some aspect of that skein, as with a buzzing in his +head after dinner or supper he chatted or listened to conversation +or read. But under the influence of wine he said to himself: "It +doesn't matter. I'll get it unraveled. I have a solution ready, but +have no time now--I'll think it all out later on!" But the later on +never came. + +In the morning, on an empty stomach, all the old questions +appeared as insoluble and terrible as ever, and Pierre hastily +picked up a book, and if anyone came to see him he was glad. + +Sometimes he remembered how he had heard that soldiers in war when +entrenched under the enemy's fire, if they have nothing to do, try +hard to find some occupation the more easily to bear the danger. To +Pierre all men seemed like those soldiers, seeking refuge from life: +some in ambition, some in cards, some in framing laws, some in +women, some in toys, some in horses, some in politics, some in +sport, some in wine, and some in governmental affairs. "Nothing is +trivial, and nothing is important, it's all the same--only to save +oneself from it as best one can," thought Pierre. "Only not to see it, +that dreadful it!" + + + + + +CHAPTER II + + +At the beginning of winter Prince Nicholas Bolkonski and his +daughter moved to Moscow. At that time enthusiasm for the Emperor +Alexander's regime had weakened and a patriotic and anti-French +tendency prevailed there, and this, together with his past and his +intellect and his originality, at once made Prince Nicholas +Bolkonski an object of particular respect to the Moscovites and the +center of the Moscow opposition to the government. + +The prince had aged very much that year. He showed marked signs of +senility by a tendency to fall asleep, forgetfulness of quite recent +events, remembrance of remote ones, and the childish vanity with which +he accepted the role of head of the Moscow opposition. In spite of +this the old man inspired in all his visitors alike a feeling of +respectful veneration--especially of an evening when he came in to tea +in his old-fashioned coat and powdered wig and, aroused by anyone, +told his abrupt stories of the past, or uttered yet more abrupt and +scathing criticisms of the present. For them all, that old-fashioned +house with its gigantic mirrors, pre-Revolution furniture, powdered +footmen, and the stern shrewd old man (himself a relic of the past +century) with his gentle daughter and the pretty Frenchwoman who +were reverently devoted to him presented a majestic and agreeable +spectacle. But the visitors did not reflect that besides the couple of +hours during which they saw their host, there were also twenty-two +hours in the day during which the private and intimate life of the +house continued. + +Latterly that private life had become very trying for Princess Mary. +There in Moscow she was deprived of her greatest pleasures--talks with +the pilgrims and the solitude which refreshed her at Bald Hills--and +she had none of the advantages and pleasures of city life. She did not +go out into society; everyone knew that her father would not let her +go anywhere without him, and his failing health prevented his going +out himself, so that she was not invited to dinners and evening +parties. She had quite abandoned the hope of getting married. She +saw the coldness and malevolence with which the old prince received +and dismissed the young men, possible suitors, who sometimes +appeared at their house. She had no friends: during this visit to +Moscow she had been disappointed in the two who had been nearest to +her. Mademoiselle Bourienne, with whom she had never been able to be +quite frank, had now become unpleasant to her, and for various reasons +Princess Mary avoided her. Julie, with whom she had corresponded for +the last five years, was in Moscow, but proved to be quite alien to +her when they met. Just then Julie, who by the death of her brothers +had become one of the richest heiresses in Moscow, was in the full +whirl of society pleasures. She was surrounded by young men who, she +fancied, had suddenly learned to appreciate her worth. Julie was at +that stage in the life of a society woman when she feels that her last +chance of marrying has come and that her fate must be decided now or +never. On Thursdays Princess Mary remembered with a mournful smile +that she now had no one to write to, since Julie--whose presence +gave her no pleasure was here and they met every week. Like the old +emigre who declined to marry the lady with whom he had spent his +evenings for years, she regretted Julie's presence and having no one +to write to. In Moscow Princess Mary had no one to talk to, no one +to whom to confide her sorrow, and much sorrow fell to her lot just +then. The time for Prince Andrew's return and marriage was +approaching, but his request to her to prepare his father for it had +not been carried out; in fact, it seemed as if matters were quite +hopeless, for at every mention of the young Countess Rostova the old +prince (who apart from that was usually in a bad temper) lost +control of himself. Another lately added sorrow arose from the lessons +she gave her six year-old nephew. To her consternation she detected in +herself in relation to little Nicholas some symptoms of her father's +irritability. However often she told herself that she must not get +irritable when teaching her nephew, almost every time that, pointer in +hand, she sat down to show him the French alphabet, she so longed to +pour her own knowledge quickly and easily into the child--who was +already afraid that Auntie might at any moment get angry--that at +his slightest inattention she trembled, became flustered and heated, +raised her voice, and sometimes pulled him by the arm and put him in +the corner. Having put him in the corner she would herself begin to +cry over her cruel, evil nature, and little Nicholas, following her +example, would sob, and without permission would leave his corner, +come to her, pull her wet hands from her face, and comfort her. But +what distressed the princess most of all was her father's +irritability, which was always directed against her and had of late +amounted to cruelty. Had he forced her to prostrate herself to the +ground all night, had he beaten her or made her fetch wood or water, +it would never have entered her mind to think her position hard; but +this loving despot--the more cruel because he loved her and for that +reason tormented himself and her--knew how not merely to hurt and +humiliate her deliberately, but to show her that she was always to +blame for everything. Of late he had exhibited a new trait that +tormented Princess Mary more than anything else; this was his +ever-increasing intimacy with Mademoiselle Bourienne. The idea that at +the first moment of receiving the news of his son's intentions had +occurred to him in jest--that if Andrew got married he himself would +marry Bourienne--had evidently pleased him, and latterly he had +persistently, and as it seemed to Princess Mary merely to offend +her, shown special endearments to the companion and expressed his +dissatisfaction with his daughter by demonstrations of love of +Bourienne. + +One day in Moscow in Princess Mary's presence (she thought her +father did it purposely when she was there) the old prince kissed +Mademoiselle Bourienne's hand and, drawing her to him, embraced her +affectionately. Princess Mary flushed and ran out of the room. A few +minutes later Mademoiselle Bourienne came into Princess Mary's room +smiling and making cheerful remarks in her agreeable voice. Princess +Mary hastily wiped away her tears, went resolutely up to +Mademoiselle Bourienne, and evidently unconscious of what she was +doing began shouting in angry haste at the Frenchwoman, her voice +breaking: "It's horrible, vile, inhuman, to take advantage of the +weakness..." She did not finish. "Leave my room," she exclaimed, and +burst into sobs. + +Next day the prince did not say a word to his daughter, but she +noticed that at dinner he gave orders that Mademoiselle Bourienne +should be served first. After dinner, when the footman handed coffee +and from habit began with the princess, the prince suddenly grew +furious, threw his stick at Philip, and instantly gave instructions to +have him conscripted for the army. + +"He doesn't obey... I said it twice... and he doesn't obey! She is +the first person in this house; she's my best friend," cried the +prince. "And if you allow yourself," he screamed in a fury, addressing +Princess Mary for the first time, "to forget yourself again before her +as you dared to do yesterday, I will show you who is master in this +house. Go! Don't let me set eyes on you; beg her pardon!" + +Princess Mary asked Mademoiselle Bourienne's pardon, and also her +father's pardon for herself and for Philip the footman, who had begged +for her intervention. + +At such moments something like a pride of sacrifice gathered in +her soul. And suddenly that father whom she had judged would look +for his spectacles in her presence, fumbling near them and not +seeing them, or would forget something that had just occurred, or take +a false step with his failing legs and turn to see if anyone had +noticed his feebleness, or, worst of all, at dinner when there were no +visitors to excite him would suddenly fall asleep, letting his +napkin drop and his shaking head sink over his plate. "He is old and +feeble, and I dare to condemn him!" she thought at such moments, +with a feeling of revulsion against herself. + + + + + +CHAPTER III + + +In 1811 there was living in Moscow a French doctor--Metivier--who +had rapidly become the fashion. He was enormously tall, handsome, +amiable as Frenchmen are, and was, as all Moscow said, an +extraordinarily clever doctor. He was received in the best houses +not merely as a doctor, but as an equal. + +Prince Nicholas had always ridiculed medicine, but latterly on +Mademoiselle Bourienne's advice had allowed this doctor to visit him +and had grown accustomed to him. Metivier came to see the prince about +twice a week. + +On December 6--St. Nicholas' Day and the prince's name day--all +Moscow came to the prince's front door but he gave orders to admit +no one and to invite to dinner only a small number, a list of whom +he gave to Princess Mary. + +Metivier, who came in the morning with his felicitations, considered +it proper in his quality of doctor de forcer la consigne,* as he +told Princess Mary, and went in to see the prince. It happened that on +that morning of his name day the prince was in one of his worst moods. +He had been going about the house all the morning finding fault with +everyone and pretending not to understand what was said to him and not +to be understood himself. Princess Mary well knew this mood of quiet +absorbed querulousness, which generally culminated in a burst of rage, +and she went about all that morning as though facing a cocked and +loaded gun and awaited the inevitable explosion. Until the doctor's +arrival the morning had passed off safely. After admitting the doctor, +Princess Mary sat down with a book in the drawing room near the door +through which she could hear all that passed in the study. + + +*To force the guard. + + +At first she heard only Metivier's voice, then her father's, then +both voices began speaking at the same time, the door was flung +open, and on the threshold appeared the handsome figure of the +terrified Metivier with his shock of black hair, and the prince in his +dressing gown and fez, his face distorted with fury and the pupils +of his eyes rolled downwards. + +"You don't understand?" shouted the prince, "but I do! French spy, +slave of Buonaparte, spy, get out of my house! Be off, I tell you..." + +Metivier, shrugging his shoulders, went up to Mademoiselle Bourienne +who at the sound of shouting had run in from an adjoining room. + +"The prince is not very well: bile and rush of blood to the head. +Keep calm, I will call again tomorrow," said Metivier; and putting his +fingers to his lips he hastened away. + +Through the study door came the sound of slippered feet and the cry: +"Spies, traitors, traitors everywhere! Not a moment's peace in my +own house!" + +After Metivier's departure the old prince called his daughter in, +and the whole weight of his wrath fell on her. She was to blame that a +spy had been admitted. Had he not told her, yes, told her to make a +list, and not to admit anyone who was not on that list? Then why was +that scoundrel admitted? She was the cause of it all. With her, he +said, he could not have a moment's peace and could not die quietly. + +"No, ma'am! We must part, we must part! Understand that, +understand it! I cannot endure any more," he said, and left the +room. Then, as if afraid she might find some means of consolation, +he returned and trying to appear calm added: "And don't imagine I have +said this in a moment of anger. I am calm. I have thought it over, and +it will be carried out--we must part; so find some place for +yourself...." But he could not restrain himself and with the virulence +of which only one who loves is capable, evidently suffering himself, +he shook his fists at her and screamed: + +"If only some fool would marry her!" Then he slammed the door, +sent for Mademoiselle Bourienne, and subsided into his study. + +At two o'clock the six chosen guests assembled for dinner. + +These guests--the famous Count Rostopchin, Prince Lopukhin with +his nephew, General Chatrov an old war comrade of the prince's, and of +the younger generation Pierre and Boris Drubetskoy--awaited the prince +in the drawing room. + +Boris, who had come to Moscow on leave a few days before, had been +anxious to be presented to Prince Nicholas Bolkonski, and had +contrived to ingratiate himself so well that the old prince in his +case made an exception to the rule of not receiving bachelors in his +house. + +The prince's house did not belong to what is known as fashionable +society, but his little circle--though not much talked about in +town--was one it was more flattering to be received in than any other. +Boris had realized this the week before when the commander in chief in +his presence invited Rostopchin to dinner on St. Nicholas' Day, and +Rostopchin had replied that he could not come: + +"On that day I always go to pay my devotions to the relics of Prince +Nicholas Bolkonski." + +"Oh, yes, yes!" replied the commander in chief. "How is he?..." + +The small group that assembled before dinner in the lofty +old-fashioned drawing room with its old furniture resembled the solemn +gathering of a court of justice. All were silent or talked in low +tones. Prince Nicholas came in serious and taciturn. Princess Mary +seemed even quieter and more diffident than usual. The guests were +reluctant to address her, feeling that she was in no mood for their +conversation. Count Rostopchin alone kept the conversation going, +now relating the latest town news, and now the latest political +gossip. + +Lopukhin and the old general occasionally took part in the +conversation. Prince Bolkonski listened as a presiding judge +receives a report, only now and then, silently or by a brief word, +showing that he took heed of what was being reported to him. The +tone of the conversation was such as indicated that no one approved of +what was being done in the political world. Incidents were related +evidently confirming the opinion that everything was going from bad to +worse, but whether telling a story or giving an opinion the speaker +always stopped, or was stopped, at the point beyond which his +criticism might touch the sovereign himself. + +At dinner the talk turned on the latest political news: Napoleon's +seizure of the Duke of Oldenburg's territory, and the Russian Note, +hostile to Napoleon, which had been sent to all the European courts. + +"Bonaparte treats Europe as a pirate does a captured vessel," said +Count Rostopchin, repeating a phrase he had uttered several times +before. "One only wonders at the long-suffering or blindness of the +crowned heads. Now the Pope's turn has come and Bonaparte doesn't +scruple to depose the head of the Catholic Church--yet all keep +silent! Our sovereign alone has protested against the seizure of the +Duke of Oldenburg's territory, and even..." Count Rostopchin paused, +feeling that he had reached the limit beyond which censure was +impossible. + +"Other territories have been offered in exchange for the Duchy of +Oldenburg," said Prince Bolkonski. "He shifts the Dukes about as I +might move my serfs from Bald Hills to Bogucharovo or my Ryazan +estates." + +"The Duke of Oldenburg bears his misfortunes with admirable strength +of character and resignation," remarked Boris, joining in +respectfully. + +He said this because on his journey from Petersburg he had had the +honor of being presented to the Duke. Prince Bolkonski glanced at +the young man as if about to say something in reply, but changed his +mind, evidently considering him too young. + +"I have read our protests about the Oldenburg affair and was +surprised how badly the Note was worded," remarked Count Rostopchin in +the casual tone of a man dealing with a subject quite familiar to him. + +Pierre looked at Rostopchin with naive astonishment, not +understanding why he should be disturbed by the bad composition of the +Note. + +"Does it matter, Count, how the Note is worded," he asked, "so +long as its substance is forcible?" + +"My dear fellow, with our five hundred thousand troops it should +be easy to have a good style," returned Count Rostopchin. + +Pierre now understood the count's dissatisfaction with the wording +of the Note. + +"One would have thought quill drivers enough had sprung up," +remarked the old prince. "There in Petersburg they are always writing- +not notes only but even new laws. My Andrew there has written a +whole volume of laws for Russia. Nowadays they are always writing!" +and he laughed unnaturally. + +There was a momentary pause in the conversation; the old general +cleared his throat to draw attention. + +"Did you hear of the last event at the review in Petersburg? The +figure cut by the new French ambassador." + +"Eh? Yes, I heard something: he said something awkward in His +Majesty's presence." + +"His Majesty drew attention to the Grenadier division and to the +march past," continued the general, "and it seems the ambassador +took no notice and allowed himself to reply that: 'We in France pay no +attention to such trifles!' The Emperor did not condescend to reply. +At the next review, they say, the Emperor did not once deign to +address him." + +All were silent. On this fact relating to the Emperor personally, it +was impossible to pass any judgment. + +"Impudent fellows!" said the prince. "You know Metivier? I turned +him out of my house this morning. He was here; they admitted him spite +of my request that they should let no one in," he went on, glancing +angrily at his daughter. + +And he narrated his whole conversation with the French doctor and +the reasons that convinced him that Metivier was a spy. Though these +reasons were very insufficient and obscure, no one made any rejoinder. + +After the roast, champagne was served. The guests rose to +congratulate the old prince. Princess Mary, too, went round to him. + +He gave her a cold, angry look and offered her his wrinkled, +clean-shaven cheek to kiss. The whole expression of his face told +her that he had not forgotten the morning's talk, that his decision +remained in force, and only the presence of visitors hindered his +speaking of it to her now. + +When they went into the drawing room where coffee was served, the +old men sat together. + +Prince Nicholas grew more animated and expressed his views on the +impending war. + +He said that our wars with Bonaparte would be disastrous so long +as we sought alliances with the Germans and thrust ourselves into +European affairs, into which we had been drawn by the Peace of Tilsit. +"We ought not to fight either for or against Austria. Our political +interests are all in the East, and in regard to Bonaparte the only +thing is to have an armed frontier and a firm policy, and he will +never dare to cross the Russian frontier, as was the case in 1807!" + +"How can we fight the French, Prince?" said Count Rostopchin. "Can +we arm ourselves against our teachers and divinities? Look at our +youths, look at our ladies! The French are our Gods: Paris is our +Kingdom of Heaven." + +He began speaking louder, evidently to be heard by everyone. + +"French dresses, French ideas, French feelings! There now, you +turned Metivier out by the scruff of his neck because he is a +Frenchman and a scoundrel, but our ladies crawl after him on their +knees. I went to a party last night, and there out of five ladies +three were Roman Catholics and had the Pope's indulgence for doing +woolwork on Sundays. And they themselves sit there nearly naked, +like the signboards at our Public Baths if I may say so. Ah, when +one looks at our young people, Prince, one would like to take Peter +the Great's old cudgel out of the museum and belabor them in the +Russian way till all the nonsense jumps out of them." + +All were silent. The old prince looked at Rostopchin with a smile +and wagged his head approvingly. + +"Well, good-by, your excellency, keep well!" said Rostopchin, +getting up with characteristic briskness and holding out his hand to +the prince. + +"Good-by, my dear fellow.... His words are music, I never tire of +hearing him!" said the old prince, keeping hold of the hand and +offering his cheek to be kissed. + +Following Rostopchin's example the others also rose. + + + + + +CHAPTER IV + + +Princess Mary as she sat listening to the old men's talk and +faultfinding, understood nothing of what she heard; she only +wondered whether the guests had all observed her father's hostile +attitude toward her. She did not even notice the special attentions +and amiabilities shown her during dinner by Boris Drubetskoy, who +was visiting them for the third time already. + +Princess Mary turned with absent-minded questioning look to +Pierre, who hat in hand and with a smile on his face was the last of +the guests to approach her after the old prince had gone out and +they were left alone in the drawing room. + +"May I stay a little longer?" he said, letting his stout body sink +into an armchair beside her. + +"Oh yes," she answered. "You noticed nothing?" her look asked. + +Pierre was in an agreeable after-dinner mood. He looked straight +before him and smiled quietly. + +"Have you known that young man long, Princess?" he asked. + +"Who?" + +"Drubetskoy." + +"No, not long..." + +"Do you like him?" + +"Yes, he is an agreeable young man.... Why do you ask me that?" said +Princess Mary, still thinking of that morning's conversation with +her father. + +"Because I have noticed that when a young man comes on leave from +Petersburg to Moscow it is usually with the object of marrying an +heiress." + +"You have observed that?" said Princess Mary. + +"Yes," returned Pierre with a smile, "and this young man now manages +matters so that where there is a wealthy heiress there he is too. I +can read him like a book. At present he is hesitating whom to lay +siege to--you or Mademoiselle Julie Karagina. He is very attentive +to her." + +"He visits them?" + +"Yes, very often. And do you know the new way of courting?" said +Pierre with an amused smile, evidently in that cheerful mood of good +humored raillery for which he so often reproached himself in his +diary. + +"No," replied Princess Mary. + +"To please Moscow girls nowadays one has to be melancholy. He is +very melancholy with Mademoiselle Karagina," said Pierre. + +"Really?" asked Princess Mary, looking into Pierre's kindly face and +still thinking of her own sorrow. "It would be a relief," thought she, +"if I ventured to confide what I am feeling to someone. I should +like to tell everything to Pierre. He is kind and generous. It would +be a relief. He would give me advice." + +"Would you marry him?" + +"Oh, my God, Count, there are moments when I would marry anybody!" +she cried suddenly to her own surprise and with tears in her voice. +"Ah, how bitter it is to love someone near to you and to feel that..." +she went on in a trembling voice, "that you can do nothing for him but +grieve him, and to know that you cannot alter this. Then there is only +one thing left--to go away, but where could I go?" + +"What is wrong? What is it, Princess?" + +But without finishing what she was saying, Princess Mary burst +into tears. + +"I don't know what is the matter with me today. Don't take any +notice--forget what I have said!" + +Pierre's gaiety vanished completely. He anxiously questioned the +princess, asked her to speak out fully and confide her grief to him; +but she only repeated that she begged him to forget what she had said, +that she did not remember what she had said, and that she had no +trouble except the one he knew of--that Prince Andrew's marriage +threatened to cause a rupture between father and son. + +"Have you any news of the Rostovs?" she asked, to change the +subject. "I was told they are coming soon. I am also expecting +Andrew any day. I should like them to meet here." + +"And how does he now regard the matter?" asked Pierre, referring +to the old prince. + +Princess Mary shook her head. + +"What is to be done? In a few months the year will be up. The +thing is impossible. I only wish I could spare my brother the first +moments. I wish they would come sooner. I hope to be friends with her. +You have known them a long time," said Princess Mary. "Tell me +honestly the whole truth: what sort of girl is she, and what do you +think of her?--The real truth, because you know Andrew is risking so +much doing this against his father's will that I should like to +know..." + +An undefined instinct told Pierre that these explanations, and +repeated requests to be told the whole truth, expressed ill-will on +the princess' part toward her future sister-in-law and a wish that +he should disapprove of Andrew's choice; but in reply he said what +he felt rather than what he thought. + +"I don't know how to answer your question," he said, blushing +without knowing why. "I really don't know what sort of girl she is; +I can't analyze her at all. She is enchanting, but what makes her so I +don't know. That is all one can say about her." + +Princess Mary sighed, and the expression on her face said: "Yes, +that's what I expected and feared." + +"Is she clever?" she asked. + +Pierre considered. + +"I think not," he said, "and yet--yes. She does not deign to be +clever.... Oh no, she is simply enchanting, and that is all." + +Princess Mary again shook her head disapprovingly. + +"Ah, I so long to like her! Tell her so if you see her before I do." + +"I hear they are expected very soon," said Pierre. + +Princess Mary told Pierre of her plan to become intimate with her +future sister-in-law as soon as the Rostovs arrived and to try to +accustom the old prince to her. + + + + + +CHAPTER V + + +Boris had not succeeded in making a wealthy match in Petersburg, +so with the same object in view he came to Moscow. There he wavered +between the two richest heiresses, Julie and Princess Mary. Though +Princess Mary despite her plainness seemed to him more attractive than +Julie, he, without knowing why, felt awkward about paying court to +her. When they had last met on the old prince's name day, she had +answered at random all his attempts to talk sentimentally, evidently +not listening to what he was saying. + +Julie on the contrary accepted his attentions readily, though in a +manner peculiar to herself. + +She was twenty-seven. After the death of her brothers she had become +very wealthy. She was by now decidedly plain, but thought herself +not merely as good-looking as before but even far more attractive. She +was confirmed in this delusion by the fact that she had become a +very wealthy heiress and also by the fact that the older she grew +the less dangerous she became to men, and the more freely they could +associate with her and avail themselves of her suppers, soirees, and +the animated company that assembled at her house, without incurring +any obligation. A man who would have been afraid ten years before of +going every day to the house when there was a girl of seventeen there, +for fear of compromising her and committing himself, would now go +boldly every day and treat her not as a marriageable girl but as a +sexless acquaintance. + +That winter the Karagins' house was the most agreeable and +hospitable in Moscow. In addition to the formal evening and dinner +parties, a large company, chiefly of men, gathered there every day, +supping at midnight and staying till three in the morning. Julie never +missed a ball, a promenade, or a play. Her dresses were always of +the latest fashion. But in spite of that she seemed to be +disillusioned about everything and told everyone that she did not +believe either in friendship or in love, or any of the joys of life, +and expected peace only "yonder." She adopted the tone of one who +has suffered a great disappointment, like a girl who has either lost +the man she loved or been cruelly deceived by him. Though nothing of +the kind had happened to her she was regarded in that light, and had +even herself come to believe that she had suffered much in life. +This melancholy, which did not prevent her amusing herself, did not +hinder the young people who came to her house from passing the time +pleasantly. Every visitor who came to the house paid his tribute to +the melancholy mood of the hostess, and then amused himself with +society gossip, dancing, intellectual games, and bouts rimes, which +were in vogue at the Karagins'. Only a few of these young men, among +them Boris, entered more deeply into Julie's melancholy, and with +these she had prolonged conversations in private on the vanity of +all worldly things, and to them she showed her albums filled with +mournful sketches, maxims, and verses. + +To Boris, Julie was particularly gracious: she regretted his early +disillusionment with life, offered him such consolation of +friendship as she who had herself suffered so much could render, and +showed him her album. Boris sketched two trees in the album and wrote: +"Rustic trees, your dark branches shed gloom and melancholy upon me." + +On another page he drew a tomb, and wrote: + + La mort est secourable et la mort est tranquille. + Ah! contre les douleurs il n'y a pas d'autre asile.* + + +*Death gives relief and death is peaceful. + + Ah! from suffering there is no other refuge. + +Julia said this was charming + +"There is something so enchanting in the smile of melancholy," she +said to Boris, repeating word for word a passage she had copied from a +book. "It is a ray of light in the darkness, a shade between sadness +and despair, showing the possibility of consolation." + +In reply Boris wrote these lines: + + Aliment de poison d'une ame trop sensible, + Toi, sans qui le bonheur me serait impossible, + Tendre melancholie, ah, viens me consoler, + Viens calmer les tourments de ma sombre retraite, + Et mele une douceur secrete + A ces pleurs que je sens couler.* + + +*Poisonous nourishment of a too sensitive soul, + + Thou, without whom happiness would for me be impossible, + + Tender melancholy, ah, come to console me, + + Come to calm the torments of my gloomy retreat, + + And mingle a secret sweetness + + With these tears that I feel to be flowing. + + +For Boris, Julie played most doleful nocturnes on her harp. Boris +read Poor Liza aloud to her, and more than once interrupted the +reading because of the emotions that choked him. Meeting at large +gatherings Julie and Boris looked on one another as the only souls who +understood one another in a world of indifferent people. + +Anna Mikhaylovna, who often visited the Karagins, while playing +cards with the mother made careful inquiries as to Julie's dowry +(she was to have two estates in Penza and the Nizhegorod forests). +Anna Mikhaylovna regarded the refined sadness that united her son to +the wealthy Julie with emotion, and resignation to the Divine will. + +"You are always charming and melancholy, my dear Julie," she said to +the daughter. "Boris says his soul finds repose at your house. He +has suffered so many disappointments and is so sensitive," said she to +the mother. "Ah, my dear, I can't tell you how fond I have grown of +Julie latterly," she said to her son. "But who could help loving +her? She is an angelic being! Ah, Boris, Boris!"--she paused. "And how +I pity her mother," she went on; "today she showed me her accounts and +letters from Penza (they have enormous estates there), and she, poor +thing, has no one to help her, and they do cheat her so!" + +Boris smiled almost imperceptibly while listening to his mother. +He laughed blandly at her naive diplomacy but listened to what she had +to say, and sometimes questioned her carefully about the Penza and +Nizhegorod estates. + +Julie had long been expecting a proposal from her melancholy +adorer and was ready to accept it; but some secret feeling of +repulsion for her, for her passionate desire to get married, for her +artificiality, and a feeling of horror at renouncing the possibility +of real love still restrained Boris. His leave was expiring. He +spent every day and whole days at the Karagins', and every day on +thinking the matter over told himself that he would propose +tomorrow. But in Julie's presence, looking at her red face and chin +(nearly always powdered), her moist eyes, and her expression of +continual readiness to pass at once from melancholy to an unnatural +rapture of married bliss, Boris could not utter the decisive words, +though in imagination he had long regarded himself as the possessor of +those Penza and Nizhegorod estates and had apportioned the use of +the income from them. Julie saw Boris' indecision, and sometimes the +thought occurred to her that she was repulsive to him, but her +feminine self-deception immediately supplied her with consolation, and +she told herself that he was only shy from love. Her melancholy, +however, began to turn to irritability, and not long before Boris' +departure she formed a definite plan of action. Just as Boris' leave +of absence was expiring, Anatole Kuragin made his appearance in +Moscow, and of course in the Karagins' drawing room, and Julie, +suddenly abandoning her melancholy, became cheerful and very attentive +to Kuragin. + +"My dear," said Anna Mikhaylovna to her son, "I know from a reliable +source that Prince Vasili has sent his son to Moscow to get him +married to Julie. I am so fond of Julie that I should be sorry for +her. What do you think of it, my dear?" + +The idea of being made a fool of and of having thrown away that +whole month of arduous melancholy service to Julie, and of seeing +all the revenue from the Penza estates which he had already mentally +apportioned and put to proper use fall into the hands of another, +and especially into the hands of that idiot Anatole, pained Boris. +He drove to the Karagins' with the firm intention of proposing. +Julie met him in a gay, careless manner, spoke casually of how she had +enjoyed yesterday's ball, and asked when he was leaving. Though +Boris had come intentionally to speak of his love and therefore +meant to be tender, he began speaking irritably of feminine +inconstancy, of how easily women can turn from sadness to joy, and how +their moods depend solely on who happens to be paying court to them. +Julie was offended and replied that it was true that a woman needs +variety, and the same thing over and over again would weary anyone. + +"Then I should advise you..." Boris began, wishing to sting her; but +at that instant the galling thought occurred to him that he might have +to leave Moscow without having accomplished his aim, and have vainly +wasted his efforts--which was a thing he never allowed to happen. + +He checked himself in the middle of the sentence, lowered his eyes +to avoid seeing her unpleasantly irritated and irresolute face, and +said: + +"I did not come here at all to quarrel with you. On the contrary..." + +He glanced at her to make sure that he might go on. Her irritability +had suddenly quite vanished, and her anxious, imploring eyes were +fixed on him with greedy expectation. "I can always arrange so as +not to see her often," thought Boris. "The affair has been begun and +must be finished!" He blushed hotly, raised his eyes to hers, and +said: + +"You know my feelings for you!" + +There was no need to say more: Julie's face shone with triumph and +self-satisfaction; but she forced Boris to say all that is said on +such occasions--that he loved her and had never loved any other +woman more than her. She knew that for the Penza estates and +Nizhegorod forests she could demand this, and she received what she +demanded. + +The affianced couple, no longer alluding to trees that shed gloom +and melancholy upon them, planned the arrangements of a splendid house +in Petersburg, paid calls, and prepared everything for a brilliant +wedding. + + + + + +CHAPTER VI + + +At the end of January old Count Rostov went to Moscow with Natasha +and Sonya. The countess was still unwell and unable to travel but it +was impossible to wait for her recovery. Prince Andrew was expected in +Moscow any day, the trousseau had to be ordered and the estate near +Moscow had to be sold, besides which the opportunity of presenting his +future daughter-in-law to old Prince Bolkonski while he was in +Moscow could not be missed. The Rostovs' Moscow house had not been +heated that winter and, as they had come only for a short time and the +countess was not with them, the count decided to stay with Marya +Dmitrievna Akhrosimova, who had long been pressing her hospitality +on them. + +Late one evening the Rostovs' four sleighs drove into Marya +Dmitrievna's courtyard in the old Konyusheny street. Marya +Dmitrievna lived alone. She had already married off her daughter, +and her sons were all in the service. + +She held herself as erect, told everyone her opinion as candidly, +loudly, and bluntly as ever, and her whole bearing seemed a reproach +to others for any weakness, passion, or temptation--the possibility of +which she did not admit. From early in the morning, wearing a dressing +jacket, she attended to her household affairs, and then she drove out: +on holy days to church and after the service to jails and prisons on +affairs of which she never spoke to anyone. On ordinary days, after +dressing, she received petitioners of various classes, of whom there +were always some. Then she had dinner, a substantial and appetizing +meal at which there were always three or four guests; after dinner she +played a game of boston, and at night she had the newspapers or a +new book read to her while she knitted. She rarely made an exception +and went out to pay visits, and then only to the most important +persons in the town. + +She had not yet gone to bed when the Rostovs arrived and the +pulley of the hall door squeaked from the cold as it let in the +Rostovs and their servants. Marya Dmitrievna, with her spectacles +hanging down on her nose and her head flung back, stood in the hall +doorway looking with a stern, grim face at the new arrivals. One might +have thought she was angry with the travelers and would immediately +turn them out, had she not at the same time been giving careful +instructions to the servants for the accommodation of the visitors and +their belongings. + +"The count's things? Bring them here," she said, pointing to the +portmanteaus and not greeting anyone. "The young ladies'? There to the +left. Now what are you dawdling for?" she cried to the maids. "Get the +samovar ready!... You've grown plumper and prettier," she remarked, +drawing Natasha (whose cheeks were glowing from the cold) to her by +the hood. "Foo! You are cold! Now take off your things, quick!" she +shouted to the count who was going to kiss her hand. "You're half +frozen, I'm sure! Bring some rum for tea!... Bonjour, Sonya dear!" she +added, turning to Sonya and indicating by this French greeting her +slightly contemptuous though affectionate attitude toward her. + +When they came in to tea, having taken off their outdoor things +and tidied themselves up after their journey, Marya Dmitrievna +kissed them all in due order. + +"I'm heartily glad you have come and are staying with me. It was +high time," she said, giving Natasha a significant look. "The old +man is here and his son's expected any day. You'll have to make his +acquaintance. But we'll speak of that later on," she added, glancing at +Sonya with a look that showed she did not want to speak of it in her +presence. "Now listen," she said to the count. "What do you want +tomorrow? Whom will you send for? Shinshin?" she crooked one of her +fingers. "The sniveling Anna Mikhaylovna? That's two. She's here +with her son. The son is getting married! Then Bezukhov, eh? He is +here too, with his wife. He ran away from her and she came galloping +after him. He dined with me on Wednesday. As for them"--and she +pointed to the girls--"tomorrow I'll take them first to the Iberian +shrine of the Mother of God, and then we'll drive to the +Super-Rogue's. I suppose you'll have everything new. Don't judge by +me: sleeves nowadays are this size! The other day young Princess Irina +Vasilevna came to see me; she was an awful sight--looked as if she had +put two barrels on her arms. You know not a day passes now without +some new fashion.... And what have you to do yourself?" she asked +the count sternly. + +"One thing has come on top of another: her rags to buy, and now a +purchaser has turned up for the Moscow estate and for the house. If +you will be so kind, I'll fix a time and go down to the estate just +for a day, and leave my lassies with you." + +"All right. All right. They'll be safe with me, as safe as in +Chancery! I'll take them where they must go, scold them a bit, and pet +them a bit," said Marya Dmitrievna, touching her goddaughter and +favorite, Natasha, on the cheek with her large hand. + +Next morning Marya Dmitrievna took the young ladies to the Iberian +shrine of the Mother of God and to Madame Suppert-Roguet, who was so +afraid of Marya Dmitrievna that she always let her have costumes at +a loss merely to get rid of her. Marya Dmitrievna ordered almost the +whole trousseau. When they got home she turned everybody out of the +room except Nataisha, and then called her pet to her armchair. + +"Well, now we'll talk. I congratulate you on your betrothed. +You've hooked a fine fellow! I am glad for your sake and I've known +him since he was so high." She held her hand a couple of feet from the +ground. Natasha blushed happily. "I like him and all his family. Now +listen! You know that old Prince Nicholas much dislikes his son's +marrying. The old fellow's crotchety! Of course Prince Andrew is not a +child and can shift without him, but it's not nice to enter a family +against a father's will. One wants to do it peacefully and lovingly. +You're a clever girl and you'll know how to manage. Be kind, and use +your wits. Then all will be well." + +Natasha remained silent, from shyness Marya Dmitrievna supposed, but +really because she disliked anyone interfering in what touched her +love of Prince Andrew, which seemed to her so apart from all human +affairs that no one could understand it. She loved and knew Prince +Andrew, he loved her only, and was to come one of these days and +take her. She wanted nothing more. + +"You see I have known him a long time and am also fond of Mary, your +future sister-in-law. 'Husbands' sisters bring up blisters,' but +this one wouldn't hurt a fly. She has asked me to bring you two +together. Tomorrow you'll go with your father to see her. Be very nice +and affectionate to her: you're younger than she. When he comes, he'll +find you already know his sister and father and are liked by them. +Am I right or not? Won't that be best?" + +"Yes, it will," Natasha answered reluctantly. + + + + + +CHAPTER VII + + +Next day, by Marya Dmitrievna's advice, Count Rostov took Natasha to +call on Prince Nicholas Bolkonski. The count did not set out +cheerfully on this visit, at heart he felt afraid. He well +remembered the last interview he had had with the old prince at the +time of the enrollment, when in reply to an invitation to dinner he +had had to listen to an angry reprimand for not having provided his +full quota of men. Natasha, on the other hand, having put on her +best gown, was in the highest spirits. "They can't help liking me," +she thought. "Everybody always has liked me, and I am so willing to do +anything they wish, so ready to be fond of him--for being his +father--and of her--for being his sister--that there is no reason +for them not to like me..." + +They drove up to the gloomy old house on the Vozdvizhenka and +entered the vestibule. + +"Well, the Lord have mercy on us!" said the count, half in jest, +half in earnest; but Natasha noticed that her father was flurried on +entering the anteroom and inquired timidly and softly whether the +prince and princess were at home. + +When they had been announced a perturbation was noticeable among the +servants. The footman who had gone to announce them was stopped by +another in the large hall and they whispered to one another. Then a +maidservant ran into the hall and hurriedly said something, mentioning +the princess. At last an old, cross looking footman came and announced +to the Rostovs that the prince was not receiving, but that the +princess begged them to walk up. The first person who came to meet the +visitors was Mademoiselle Bourienne. She greeted the father and +daughter with special politeness and showed them to the princess' +room. The princess, looking excited and nervous, her face flushed in +patches, ran in to meet the visitors, treading heavily, and vainly +trying to appear cordial and at ease. From the first glance Princess +Mary did not like Natasha. She thought her too fashionably dressed, +frivolously gay and vain. She did not at all realize that before +having seen her future sister-in-law she was prejudiced against her by +involuntary envy of her beauty, youth, and happiness, as well as by +jealousy of her brother's love for her. Apart from this insuperable +antipathy to her, Princess Mary was agitated just then because on +the Rostovs' being announced, the old prince had shouted that he did +not wish to see them, that Princess Mary might do so if she chose, but +they were not to be admitted to him. She had decided to receive +them, but feared lest the prince might at any moment indulge in some +freak, as he seemed much upset by the Rostovs' visit. + +"There, my dear princess, I've brought you my songstress," said +the count, bowing and looking round uneasily as if afraid the old +prince might appear. "I am so glad you should get to know one +another... very sorry the prince is still ailing," and after a few +more commonplace remarks he rose. "If you'll allow me to leave my +Natasha in your hands for a quarter of an hour, Princess, I'll drive +round to see Anna Semenovna, it's quite near in the Dogs' Square, +and then I'll come back for her." + +The count had devised this diplomatic ruse (as he afterwards told +his daughter) to give the future sisters-in-law an opportunity to talk +to one another freely, but another motive was to avoid the danger of +encountering the old prince, of whom he was afraid. He did not mention +this to his daughter, but Natasha noticed her father's nervousness and +anxiety and felt mortified by it. She blushed for him, grew still +angrier at having blushed, and looked at the princess with a bold +and defiant expression which said that she was not afraid of +anybody. The princess told the count that she would be delighted, +and only begged him to stay longer at Anna Semenovna's, and he +departed. + +Despite the uneasy glances thrown at her by Princess Mary--who +wished to have a tete-a-tete with Natasha--Mademoiselle Bourienne +remained in the room and persistently talked about Moscow amusements +and theaters. Natasha felt offended by the hesitation she had +noticed in the anteroom, by her father's nervousness, and by the +unnatural manner of the princess who--she thought--was making a +favor of receiving her, and so everything displeased her. She did +not like Princess Mary, whom she thought very plain, affected, and +dry. Natasha suddenly shrank into herself and involuntarily assumed an +offhand air which alienated Princess Mary still more. After five +minutes of irksome, constrained conversation, they heard the sound +of slippered feet rapidly approaching. Princess Mary looked +frightened. + +The door opened and the old prince, in a dress, ing gown and a white +nightcap, came in. + +"Ah, madam!" he began. "Madam, Countess... Countess Rostova, if I am +not mistaken... I beg you to excuse me, to excuse me... I did not +know, madam. God is my witness, I did not know you had honored us with +a visit, and I came in such a costume only to see my daughter. I beg +you to excuse me... God is my witness, I didn't know-" he repeated, +stressing the word "God" so unnaturally and so unpleasantly that +Princess Mary stood with downcast eyes not daring to look either at +her father or at Natasha. + +Nor did the latter, having risen and curtsied, know what to do. +Mademoiselle Bourienne alone smiled agreeably. + +"I beg you to excuse me, excuse me! God is my witness, I did not +know," muttered the old man, and after looking Natasha over from +head to foot he went out. + +Mademoiselle Bourienne was the first to recover herself after this +apparition and began speaking about the prince's indisposition. +Natasha and Princess Mary looked at one another in silence, and the +longer they did so without saying what they wanted to say, the greater +grew their antipathy to one another. + +When the count returned, Natasha was impolitely pleased and hastened +to get away: at that moment she hated the stiff, elderly princess, who +could place her in such an embarrassing position and had spent half an +hour with her without once mentioning Prince Andrew. "I couldn't begin +talking about him in the presence of that Frenchwoman," thought +Natasha. The same thought was meanwhile tormenting Princess Mary. +She knew what she ought to have said to Natasha, but she had been +unable to say it because Mademoiselle Bourienne was in the way, and +because, without knowing why, she felt it very difficult to speak of +the marriage. When the count was already leaving the room, Princess +Mary went up hurriedly to Natasha, took her by the hand, and said with +a deep sigh: + +"Wait, I must..." + +Natasha glanced at her ironically without knowing why. + +"Dear Natalie," said Princess Mary, "I want you to know that I am +glad my brother has found happiness...." + +She paused, feeling that she was not telling the truth. Natasha +noticed this and guessed its reason. + +"I think, Princess, it is not convenient to speak of that now," +she said with external dignity and coldness, though she felt the tears +choking her. + +"What have I said and what have I done?" thought she, as soon as she +was out of the room. + +They waited a long time for Natasha to come to dinner that day. +She sat in her room crying like a child, blowing her nose and sobbing. +Sonya stood beside her, kissing her hair. + +"Natasha, what is it about?" she asked. "What do they matter to you? +It will all pass, Natasha." + +"But if you only knew how offensive it was... as if I..." + +"Don't talk about it, Natasha. It wasn't your fault so why should +you mind? Kiss me," said Sonya. + +Natasha raised her head and, kissing her friend on the lips, pressed +her wet face against her. + +"I can't tell you, I don't know. No one's to blame," said Natasha- +"It's my fault. But it all hurts terribly. Oh, why doesn't he +come?..." + +She came in to dinner with red eyes. Marya Dmitrievna, who knew +how the prince had received the Rostovs, pretended not to notice how +upset Natasha was and jested resolutely and loudly at table with the +count and the other guests. + + + + + +CHAPTER VIII + + +That evening the Rostovs went to the Opera, for which Marya +Dmitrievna had taken a box. + +Natasha did not want to go, but could not refuse Marya +Dmitrievna's kind offer which was intended expressly for her. When she +came ready dressed into the ballroom to await her father, and +looking in the large mirror there saw that she was pretty, very +pretty, she felt even more sad, but it was a sweet, tender sadness. + +"O God, if he were here now I would not behave as I did then, but +differently. I would not be silly and afraid of things, I would simply +embrace him, cling to him, and make him look at me with those +searching inquiring eyes with which he has so often looked at me, +and then I would make him laugh as he used to laugh. And his eyes--how +I see those eyes!" thought Natasha. "And what do his father and sister +matter to me? I love him alone, him, him, with that face and those +eyes, with his smile, manly and yet childlike.... No, I had better not +think of him; not think of him but forget him, quite forget him for +the present. I can't bear this waiting and I shall cry in a minute!" +and she turned away from the glass, making an effort not to cry. +"And how can Sonya love Nicholas so calmly and quietly and wait so +long and so patiently?" thought she, looking at Sonya, who also came +in quite ready, with a fan in her hand. "No, she's altogether +different. I can't!" + +Natasha at that moment felt so softened and tender that it was not +enough for her to love and know she was beloved, she wanted now, at +once, to embrace the man she loved, to speak and hear from him words +of love such as filled her heart. While she sat in the carriage beside +her father, pensively watching the lights of the street lamps +flickering on the frozen window, she felt still sadder and more in +love, and forgot where she was going and with whom. Having fallen into +the line of carriages, the Rostovs' carriage drove up to the +theater, its wheels squeaking over the snow. Natasha and Sonya, +holding up their dresses, jumped out quickly. The count got out helped +by the footmen, and, passing among men and women who were entering and +the program sellers, they all three went along the corridor to the +first row of boxes. Through the closed doors the music was already +audible. + +"Natasha, your hair!..." whispered Sonya. + +An attendant deferentially and quickly slipped before the ladies and +opened the door of their box. The music sounded louder and through the +door rows of brightly lit boxes in which ladies sat with bare arms and +shoulders, and noisy stalls brilliant with uniforms, glittered +before their eyes. A lady entering the next box shot a glance of +feminine envy at Natasha. The curtain had not yet risen and the +overture was being played. Natasha, smoothing her gown, went in with +Sonya and sat down, scanning the brilliant tiers of boxes opposite. +A sensation she had not experienced for a long time--that of +hundreds of eyes looking at her bare arms and neck--suddenly +affected her both agreeably and disagreeably and called up a whole +crowd of memories, desires and emotions associated with that feeling. + +The two remarkably pretty girls, Natasha and Sonya, with Count +Rostov who had not been seen in Moscow for a long time, attracted +general attention. Moreover, everybody knew vaguely of Natasha's +engagement to Prince Andrew, and knew that the Rostovs had lived in +the country ever since, and all looked with curiosity at a fiancee who +was making one of the best matches in Russia. + +Natasha's looks, as everyone told her, had improved in the +country, and that evening thanks to her agitation she was particularly +pretty. She struck those who saw her by her fullness of life and +beauty, combined with her indifference to everything about her. Her +black eyes looked at the crowd without seeking anyone, and her +delicate arm, bare to above the elbow, lay on the velvet edge of the +box, while, evidently unconsciously, she opened and closed her hand in +time to the music, crumpling her program. "Look, there's Alenina," +said Sonya, "with her mother, isn't it?" + +"Dear me, Michael Kirilovich has grown still stouter!" remarked +the count. + +"Look at our Anna Mikhaylovna--what a headdress she has on!" + +"The Karagins, Julie--and Boris with them. One can see at once +that they're engaged...." + +"Drubetskoy has proposed?" + +"Oh yes, I heard it today," said Shinshin, coming into the +Rostovs' box. + +Natasha looked in the direction in which her father's eyes were +turned and saw Julie sitting beside her mother with a happy look on +her face and a string of pearls round her thick red neck--which +Natasha knew was covered with powder. Behind them, wearing a smile and +leaning over with an ear to Julie's mouth, was Boris' handsome +smoothly brushed head. He looked the Rostovs from under his brows +and said something, smiling, to his betrothed. + +"They are talking about us, about me and him!" thought Natasha. "And +he no doubt is calming her jealousy of me. They needn't trouble +themselves! If only they knew how little I am concerned about any of +them." + +Behind them sat Anna Mikhaylovna wearing a green headdress and +with a happy look of resignation to the will of God on her face. Their +box was pervaded by that atmosphere of an affianced couple which +Natasha knew so well and liked so much. She turned away and suddenly +remembered all that had been so humiliating in her morning's visit. + +"What right has he not to wish to receive me into his family? Oh, +better not think of it--not till he comes back!" she told herself, and +began looking at the faces, some strange and some familiar, in the +stalls. In the front, in the very center, leaning back against the +orchestra rail, stood Dolokhov in a Persian dress, his curly hair +brushed up into a huge shock. He stood in full view of the audience, +well aware that he was attracting everyone's attention, yet as much at +ease as though he were in his own room. Around him thronged Moscow's +most brilliant young men, whom he evidently dominated. + +The count, laughing, nudged the blushing Sonya and pointed to her +former adorer. + +"Do you recognize him?" said he. "And where has he sprung from?" +he asked, turning to Shinshin. "Didn't he vanish somewhere?" + +"He did," replied Shinshin. "He was in the Caucasus and ran away +from there. They say he has been acting as minister to some ruling +prince in Persia, where he killed the Shah's brother. Now all the +Moscow ladies are mad about him! It's 'Dolokhov the Persian' that does +it! We never hear a word but Dolokhov is mentioned. They swear by him, +they offer him to you as they would a dish of choice sterlet. Dolokhov +and Anatole Kuragin have turned all our ladies' heads." + +A tall, beautiful woman with a mass of plaited hair and much exposed +plump white shoulders and neck, round which she wore a double string +of large pearls, entered the adjoining box rustling her heavy silk +dress and took a long time settling into her place. + +Natasha involuntarily gazed at that neck, those shoulders, and +pearls and coiffure, and admired the beauty of the shoulders and the +pearls. While Natasha was fixing her gaze on her for the second time +the lady looked round and, meeting the count's eyes, nodded to him and +smiled. She was the Countess Bezukhova, Pierre's wife, and the +count, who knew everyone in society, leaned over and spoke to her. + +"Have you been here long, Countess?" he inquired. "I'll call, I'll +call to kiss your hand. I'm here on business and have brought my girls +with me. They say Semenova acts marvelously. Count Pierre never used +to forget us. Is he here?" + +"Yes, he meant to look in," answered Helene, and glanced attentively +at Natasha. + +Count Rostov resumed his seat. + +"Handsome, isn't she?" he whispered to Natasha. + +"Wonderful!" answered Natasha. "She's a woman one could easily +fall in love with." + +Just then the last chords of the overture were heard and the +conductor tapped with his stick. Some latecomers took their seats in +the stalls, and the curtain rose. + +As soon as it rose everyone in the boxes and stalls became silent, +and all the men, old and young, in uniform and evening dress, and +all the women with gems on their bare flesh, turned their whole +attention with eager curiosity to the stage. Natasha too began to look +at it. + + + + + +CHAPTER IX + + +The floor of the stage consisted of smooth boards, at the sides +was some painted cardboard representing trees, and at the back was a +cloth stretched over boards. In the center of the stage sat some girls +in red bodices and white skirts. One very fat girl in a white silk +dress sat apart on a low bench, to the back of which a piece of +green cardboard was glued. They all sang something. When they had +finished their song the girl in white went up to the prompter's box +and a man with tight silk trousers over his stout legs, and holding +a plume and a dagger, went up to her and began singing, waving his +arms about. + +First the man in the tight trousers sang alone, then she sang, +then they both paused while the orchestra played and the man +fingered the hand of the girl in white, obviously awaiting the beat to +start singing with her. They sang together and everyone in the theater +began clapping and shouting, while the man and woman on the stage--who +represented lovers--began smiling, spreading out their arms, and +bowing. + +After her life in the country, and in her present serious mood, +all this seemed grotesque and amazing to Natasha. She could not follow +the opera nor even listen to the music; she saw only the painted +cardboard and the queerly dressed men and women who moved, spoke, +and sang so strangely in that brilliant light. She knew what it was +all meant to represent, but it was so pretentiously false and +unnatural that she first felt ashamed for the actors and then amused +at them. She looked at the faces of the audience, seeking in them +the same sense of ridicule and perplexity she herself experienced, but +they all seemed attentive to what was happening on the stage, and +expressed delight which to Natasha seemed feigned. "I suppose it has +to be like this!" she thought. She kept looking round in turn at the +rows of pomaded heads in the stalls and then at the seminude women +in the boxes, especially at Helene in the next box, who--apparently +quite unclothed--sat with a quiet tranquil smile, not taking her +eyes off the stage. And feeling the bright light that flooded the +whole place and the warm air heated by the crowd, Natasha little by +little began to pass into a state of intoxication she had not +experienced for a long while. She did not realize who and where she +was, nor what was going on before her. As she looked and thought, +the strangest fancies unexpectedly and disconnectedly passed through +her mind: the idea occurred to her of jumping onto the edge of the box +and singing the air the actress was singing, then she wished to +touch with her fan an old gentleman sitting not far from her, then +to lean over to Helene and tickle her. + +At a moment when all was quiet before the commencement of a song, +a door leading to the stalls on the side nearest the Rostovs' box +creaked, and the steps of a belated arrival were heard. "There's +Kuragin!" whispered Shinshin. Countess Bezukhova turned smiling to the +newcomer, and Natasha, following the direction of that look, saw an +exceptionally handsome adjutant approaching their box with a +self-assured yet courteous bearing. This was Anatole Kuragin whom +she had seen and noticed long ago at the ball in Petersburg. He was +now in an adjutant's uniform with one epaulet and a shoulder knot. +He moved with a restrained swagger which would have been ridiculous +had he not been so good-looking and had his handsome face not worn +such an expression of good-humored complacency and gaiety. Though +the performance was proceeding, he walked deliberately down the +carpeted gangway, his sword and spurs slightly jingling and his +handsome perfumed head held high. Having looked at Natasha he +approached his sister, laid his well gloved hand on the edge of her +box, nodded to her, and leaning forward asked a question, with a +motion toward Natasha. + +"Mais charmante!" said he, evidently referring to Natasha, who did +not exactly hear his words but understood them from the movement of +his lips. Then he took his place in the first row of the stalls and +sat down beside Dolokhov, nudging with his elbow in a friendly and +offhand way that Dolokhov whom others treated so fawningly. He +winked at him gaily, smiled, and rested his foot against the orchestra +screen. + +"How like the brother is to the sister," remarked the count. "And +how handsome they both are!" + +Shinshin, lowering his voice, began to tell the count of some +intrigue of Kuragin's in Moscow, and Natasha tried to overhear it just +because he had said she was "charmante." + +The first act was over. In the stalls everyone began moving about, +going out and coming in. + +Boris came to the Rostovs' box, received their congratulations +very simply, and raising his eyebrows with an absent-minded smile +conveyed to Natasha and Sonya his fiancee's invitation to her wedding, +and went away. Natasha with a gay, coquettish smile talked to him, and +congratulated on his approaching wedding that same Boris with whom she +had formerly been in love. In the state of intoxication she was in, +everything seemed simple and natural. + +The scantily clad Helene smiled at everyone in the same way, and +Natasha gave Boris a similar smile. + +Helene's box was filled and surrounded from the stalls by the most +distinguished and intellectual men, who seemed to vie with one another +in their wish to let everyone see that they knew her. + +During the whole of that entr'acte Kuragin stood with Dolokhov in +front of the orchestra partition, looking at the Rostovs' box. Natasha +knew he was talking about her and this afforded her pleasure. She even +turned so that he should see her profile in what she thought was its +most becoming aspect. Before the beginning of the second act Pierre +appeared in the stalls. The Rostovs had not seen him since their +arrival. His face looked sad, and he had grown still stouter since +Natasha last saw him. He passed up to the front rows, not noticing +anyone. Anatole went up to him and began speaking to him, looking at +and indicating the Rostovs' box. On seeing Natasha Pierre grew +animated and, hastily passing between the rows, came toward their box. +When he got there he leaned on his elbows and, smiling, talked to +her for a long time. While conversing with Pierre, Natasha heard a +man's voice in Countess Bezukhova's box and something told her it +was Kuragin. She turned and their eyes met. Almost smiling, he gazed +straight into her eyes with such an enraptured caressing look that +it seemed strange to be so near him, to look at him like that, to be +so sure he admired her, and not to be acquainted with him. + +In the second act there was scenery representing tombstones, there +was a round hole in the canvas to represent the moon, shades were +raised over the footlights, and from horns and contrabass came deep +notes while many people appeared from right and left wearing black +cloaks and holding things like daggers in their hands. They began +waving their arms. Then some other people ran in and began dragging +away the maiden who had been in white and was now in light blue. +They did not drag her away at once, but sang with her for a long +time and then at last dragged her off, and behind the scenes something +metallic was struck three times and everyone knelt down and sang a +prayer. All these things were repeatedly interrupted by the +enthusiastic shouts of the audience. + +During this act every time Natasha looked toward the stalls she +saw Anatole Kuragin with an arm thrown across the back of his chair, +staring at her. She was pleased to see that he was captivated by her +and it did not occur to her that there was anything wrong in it. + +When the second act was over Countess Bezukhova rose, turned to +the Rostovs' box--her whole bosom completely exposed--beckoned the old +count with a gloved finger, and paying no attention to those who had +entered her box began talking to him with an amiable smile. + +"Do make me acquainted with your charming daughters," said she. "The +whole town is singing their praises and I don't even know then!" + +Natasha rose and curtsied to the splendid countess. She was so +pleased by praise from this brilliant beauty that she blushed with +pleasure. + +"I want to become a Moscovite too, now," said Helene. "How is it +you're not ashamed to bury such pearls in the country?" + +Countess Bezukhova quite deserved her reputation of being a +fascinating woman. She could say what she did not think--especially +what was flattering--quite simply and naturally. + +"Dear count, you must let me look after your daughters! Though I +am not staying here long this time--nor are you--I will try to amuse +them. I have already heard much of you in Petersburg and wanted to get +to know you," said she to Natasha with her stereotyped and lovely +smile. "I had heard about you from my page, Drubetskoy. Have you heard +he is getting married? And also from my husband's friend Bolkonski, +Prince Andrew Bolkonski," she went on with special emphasis, +implying that she knew of his relation to Natasha. To get better +acquainted she asked that one of the young ladies should come into her +box for the rest of the performance, and Natasha moved over to it. + +The scene of the third act represented a palace in which many +candles were burning and pictures of knights with short beards hung on +the walls. In the middle stood what were probably a king and a +queen. The king waved his right arm and, evidently nervous, sang +something badly and sat down on a crimson throne. The maiden who had +been first in white and then in light blue, now wore only a smock, and +stood beside the throne with her hair down. She sang something +mournfully, addressing the queen, but the king waved his arm severely, +and men and women with bare legs came in from both sides and began +dancing all together. Then the violins played very shrilly and merrily +and one of the women with thick bare legs and thin arms, separating +from the others, went behind the wings, adjusted her bodice, +returned to the middle of the stage, and began jumping and striking +one foot rapidly against the other. In the stalls everyone clapped and +shouted "bravo!" Then one of the men went into a corner of the +stage. The cymbals and horns in the orchestra struck up more loudly, +and this man with bare legs jumped very high and waved his feet +about very rapidly. (He was Duport, who received sixty thousand rubles +a year for this art.) Everybody in the stalls, boxes, and galleries +began clapping and shouting with all their might, and the man +stopped and began smiling and bowing to all sides. Then other men +and women danced with bare legs. Then the king again shouted to the +sound of music, and they all began singing. But suddenly a storm +came on, chromatic scales and diminished sevenths were heard in the +orchestra, everyone ran off, again dragging one of their number +away, and the curtain dropped. Once more there was a terrible noise +and clatter among the audience, and with rapturous faces everyone +began shouting: "Duport! Duport! Duport!" Natasha no longer thought +this strange. She look about with pleasure, smiling joyfully. + +"Isn't Duport delightful?" Helene asked her. + +"Oh, yes," replied Natasha. + + + + + +CHAPTER X + + +During the entr'acte a whiff of cold air came into Helene's box, the +door opened, and Anatole entered, stooping and trying not to brush +against anyone. + +"Let me introduce my brother to you," said Helene, her eyes shifting +uneasily from Natasha to Anatole. + +Natasha turned her pretty little head toward the elegant young +officer and smiled at him over her bare shoulder. Anatole, who was +as handsome at close quarters as at a distance, sat down beside her +and told her he had long wished to have this happiness--ever since the +Naryshkins' ball in fact, at which he had had the well-remembered +pleasure of seeing her. Kuragin was much more sensible and simple with +women than among men. He talked boldly and naturally, and Natasha +was strangely and agreeably struck by the fact that there was +nothing formidable in this man about whom there was so much talk, +but that on the contrary his smile was most naive, cheerful, and +good-natured. + +Kuragin asked her opinion of the performance and told her how at a +previous performance Semenova had fallen down on the stage. + +"And do you know, Countess," he said, suddenly addressing her as +an old, familiar acquaintance, "we are getting up a costume +tournament; you ought to take part in it! It will be great fun. We +shall all meet at the Karagins'! Please come! No! Really, eh?" said +he. + +While saying this he never removed his smiling eyes from her face, +her neck, and her bare arms. Natasha knew for certain that he was +enraptured by her. This pleased her, yet his presence made her feel +constrained and oppressed. When she was not looking at him she felt +that he was looking at her shoulders, and she involuntarily caught his +eye so that he should look into hers rather than this. But looking +into his eyes she was frightened, realizing that there was not that +barrier of modesty she had always felt between herself and other +men. She did not know how it was that within five minutes she had come +to feel herself terribly near to this man. When she turned away she +feared he might seize her from behind by her bare arm and kiss her +on the neck. They spoke of most ordinary things, yet she felt that +they were closer to one another than she had ever been to any man. +Natasha kept turning to Helene and to her father, as if asking what it +all meant, but Helene was engaged in conversation with a general and +did not answer her look, and her father's eyes said nothing but what +they always said: "Having a good time? Well, I'm glad of it!" + +During one of these moments of awkward silence when Anatole's +prominent eyes were gazing calmly and fixedly at her, Natasha, to +break the silence, asked him how he liked Moscow. She asked the +question and blushed. She felt all the time that by talking to him she +was doing something improper. Anatole smiled as though to encourage +her. + +"At first I did not like it much, because what makes a town pleasant +ce sont les jolies femmes,* isn't that so? But now I like it very much +indeed," he said, looking at her significantly. "You'll come to the +costume tournament, Countess? Do come!" and putting out his hand to +her bouquet and dropping his voice, he added, "You will be the +prettiest there. Do come, dear countess, and give me this flower as +a pledge!" + + +*Are the pretty women. + + +Natasha did not understand what he was saying any more than he did +himself, but she felt that his incomprehensible words had an +improper intention. She did not know what to say and turned away as if +she had not heard his remark. But as soon as she had turned away she +felt that he was there, behind, so close behind her. + +"How is he now? Confused? Angry? Ought I to put it right?" she asked +herself, and she could not refrain from turning round. She looked +straight into his eyes, and his nearness, self-assurance, and the +good-natured tenderness of his smile vanquished her. She smiled just +as he was doing, gazing straight into his eyes. And again she felt +with horror that no barrier lay between him and her. + +The curtain rose again. Anatole left the box, serene and gay. +Natasha went back to her father in the other box, now quite submissive +to the world she found herself in. All that was going on before her +now seemed quite natural, but on the other hand all her previous +thoughts of her betrothed, of Princess Mary, or of life in the country +did not once recur to her mind and were as if belonging to a remote +past. + +In the fourth act there was some sort of devil who sang waving his +arm about, till the boards were withdrawn from under him and he +disappeared down below. That was the only part of the fourth act +that Natasha saw. She felt agitated and tormented, and the cause of +this was Kuragin whom she could not help watching. As they were +leaving the theater Anatole came up to them, called their carriage, +and helped them in. As he was putting Natasha in he pressed her arm +above the elbow. Agitated and flushed she turned round. He was looking +at her with glittering eyes, smiling tenderly. + + +Only after she had reached home was Natasha able clearly to think +over what had happened to her, and suddenly remembering Prince +Andrew she was horrified, and at tea to which all had sat down after +the opera, she gave a loud exclamation, flushed, and ran out of the +room. + +"O God! I am lost!" she said to herself. "How could I let him?" +She sat for a long time hiding her flushed face in her hands trying to +realize what had happened to her, but was unable either to +understand what had happened or what she felt. Everything seemed dark, +obscure, and terrible. There in that enormous, illuminated theater +where the bare-legged Duport, in a tinsel-decorated jacket, jumped +about to the music on wet boards, and young girls and old men, and the +nearly naked Helene with her proud, calm smile, rapturously cried +"bravo!"--there in the presence of that Helene it had all seemed clear +and simple; but now, alone by herself, it was incomprehensible. +"What is it? What was that terror I felt of him? What is this +gnawing of conscience I am feeling now?" she thought. + +Only to the old countess at night in bed could Natasha have told all +she was feeling. She knew that Sonya with her severe and simple +views would either not understand it at all or would be horrified at +such a confession. So Natasha tried to solve what was torturing her by +herself. + +"Am I spoiled for Andrew's love or not?" she asked herself, and with +soothing irony replied: "What a fool I am to ask that! What did happen +to me? Nothing! I have done nothing, I didn't lead him on at all. +Nobody will know and I shall never see him again," she told herself. +"So it is plain that nothing has happened and there is nothing to +repent of, and Andrew can love me still. But why 'still?' O God, why +isn't he here?" Natasha quieted herself for a moment, but again some +instinct told her that though all this was true, and though nothing +had happened, yet the former purity of her love for Prince Andrew +had perished. And again in imagination she went over her whole +conversation with Kuragin, and again saw the face, gestures, and +tender smile of that bold handsome man when he pressed her arm. + + + + + +CHAPTER XI + +Anatole Kuragin was staying in Moscow because his father had sent +him away from Petersburg, where he had been spending twenty thousand +rubles a year in cash, besides running up debts for as much more, +which his creditors demanded from his father. + +His father announced to him that he would now pay half his debts for +the last time, but only on condition that he went to Moscow as +adjutant to the commander in chief--a post his father had procured for +him--and would at last try to make a good match there. He indicated to +him Princess Mary and Julie Karagina. + +Anatole consented and went to Moscow, where he put up at Pierre's +house. Pierre received him unwillingly at first, but got used to him +after a while, sometimes even accompanied him on his carousals, and +gave him money under the guise of loans. + +As Shinshin had remarked, from the time of his arrival Anatole had +turned the heads of the Moscow ladies, especially by the fact that +he slighted them and plainly preferred the gypsy girls and French +actresses--with the chief of whom, Mademoiselle George, he was said to +be on intimate relations. He had never missed a carousal at +Danilov's or other Moscow revelers', drank whole nights through, +outvying everyone else, and was at all the balls and parties of the +best society. There was talk of his intrigues with some of the ladies, +and he flirted with a few of them at the balls. But he did not run +after the unmarried girls, especially the rich heiresses who were most +of them plain. There was a special reason for this, as he had got +married two years before--a fact known only to his most intimate +friends. At that time while with his regiment in Poland, a Polish +landowner of small means had forced him to marry his daughter. Anatole +had very soon abandoned his wife and, for a payment which he agreed to +send to his father-in-law, had arranged to be free to pass himself off +as a bachelor. + +Anatole was always content with his position, with himself, and with +others. He was instinctively and thoroughly convinced that was +impossible for him to live otherwise than as he did and that he had +never in his life done anything base. He was incapable of +considering how his actions might affect others or what the +consequences of this or that action of his might be. He was +convinced that, as a duck is so made that it must live in water, so +God had made him such that he must spend thirty thousand rubles a year +and always occupy a prominent position in society. He believed this so +firmly that others, looking at him, were persuaded of it too and did +not refuse him either a leading place in society or money, which he +borrowed from anyone and everyone and evidently would not repay. + +He was not a gambler, at any rate he did not care about winning. +He was not vain. He did not mind what people thought of him. Still +less could he be accused of ambition. More than once he had vexed +his father by spoiling his own career, and he laughed at +distinctions of all kinds. He was not mean, and did not refuse +anyone who asked of him. All he cared about was gaiety and women, +and as according to his ideas there was nothing dishonorable in +these tastes, and he was incapable of considering what the +gratification of his tastes entailed for others, he honestly +considered himself irreproachable, sincerely despised rogues and bad +people, and with a tranquil conscience carried his head high. + +Rakes, those male Magdalenes, have a secret feeling of innocence +similar to that which female Magdalenes have, based on the same hope +of forgiveness. "All will be forgiven her, for she loved much; and all +will be forgiven him, for he enjoyed much." + +Dolokhov, who had reappeared that year in Moscow after his exile and +his Persian adventures, and was leading a life of luxury, gambling, +and dissipation, associated with his old Petersburg comrade Kuragin +and made use of him for his own ends. + +Anatole was sincerely fond of Dolokhov for his cleverness and +audacity. Dolokhov, who needed Anatole Kuragin's name, position, and +connections as a bait to draw rich young men into his gambling set, +made use of him and amused himself at his expense without letting +the other feel it. Apart from the advantage he derived from Anatole, +the very process of dominating another's will was in itself a +pleasure, a habit, and a necessity to Dolokhov. + +Natasha had made a strong impression on Kuragin. At supper after the +opera he described to Dolokhov with the air of a connoisseur the +attractions of her arms, shoulders, feet, and hair and expressed his +intention of making love to her. Anatole had no notion and was +incapable of considering what might come of such love-making, as he +never had any notion of the outcome of any of his actions. + +"She's first-rate, my dear fellow, but not for us," replied +Dolokhov. + +"I will tell my sister to ask her to dinner," said Anatole. "Eh?" + +"You'd better wait till she's married...." + +"You know, I adore little girls, they lose their heads at once," +pursued Anatole. + +"You have been caught once already by a 'little girl,'" said +Dolokhov who knew of Kuragin's marriage. "Take care!" + +"Well, that can't happen twice! Eh?" said Anatole, with a +good-humored laugh. + + + + + +CHAPTER XII + + +The day after the opera the Rostovs went nowhere and nobody came +to see them. Marya Dmitrievna talked to the count about something +which they concealed from Natasha. Natasha guessed they were talking +about the old prince and planning something, and this disquieted and +offended her. She was expecting Prince Andrew any moment and twice +that day sent a manservant to the Vozdvizhenka to ascertain whether he +had come. He had not arrived. She suffered more now than during her +first days in Moscow. To her impatience and pining for him were now +added the unpleasant recollection of her interview with Princess +Mary and the old prince, and a fear and anxiety of which she did not +understand the cause. She continually fancied that either he would +never come or that something would happen to her before he came. She +could no longer think of him by herself calmly and continuously as she +had done before. As soon as she began to think of him, the +recollection of the old prince, of Princess Mary, of the theater, +and of Kuragin mingled with her thoughts. The question again presented +itself whether she was not guilty, whether she had not already +broken faith with Prince Andrew, and again she found herself recalling +to the minutest detail every word, every gesture, and every shade in +the play of expression on the face of the man who had been able to +arouse in her such an incomprehensible and terrifying feeling. To +the family Natasha seemed livelier than usual, but she was far less +tranquil and happy than before. + +On Sunday morning Marya Dmitrievna invited her visitors to Mass at +her parish church--the Church of the Assumption built over the +graves of victims of the plague. + +"I don't like those fashionable churches," she said, evidently +priding herself on her independence of thought. "God is the same every +where. We have an excellent priest, he conducts the service decently +and with dignity, and the deacon is the same. What holiness is there +in giving concerts in the choir? I don't like it, it's just +self-indulgence!" + +Marya Dmitrievna liked Sundays and knew how to keep them. Her +whole house was scrubbed and cleaned on Saturdays; neither she nor the +servants worked, and they all wore holiday dress and went to church. +At her table there were extra dishes at dinner, and the servants had +vodka and roast goose or suckling pig. But in nothing in the house was +the holiday so noticeable as in Marya Dmitrievna's broad, stern +face, which on that day wore an invariable look of solemn festivity. + +After Mass, when they had finished their coffee in the dining room +where the loose covers had been removed from the furniture, a +servant announced that the carriage was ready, and Marya Dmitrievna +rose with a stern air. She wore her holiday shawl, in which she paid +calls, and announced that she was going to see Prince Nicholas +Bolkonski to have an explanation with him about Natasha. + +After she had gone, a dressmaker from Madame Suppert-Roguet waited +on the Rostovs, and Natasha, very glad of this diversion, having +shut herself into a room adjoining the drawing room, occupied +herself trying on the new dresses. Just as she had put on a bodice +without sleeves and only tacked together, and was turning her head +to see in the glass how the back fitted, she heard in the drawing room +the animated sounds of her father's voice and another's--a woman's- +that made her flush. It was Helene. Natasha had not time to take off +the bodice before the door opened and Countess Bezukhova, dressed in a +purple velvet gown with a high collar, came into the room beaming with +good-humored amiable smiles. + +"Oh, my enchantress!" she cried to the blushing Natasha. +"Charming! No, this is really beyond anything, my dear count," said +she to Count Rostov who had followed her in. "How can you live in +Moscow and go nowhere? No, I won't let you off! Mademoiselle George +will recite at my house tonight and there'll be some people, and if +you don't bring your lovely girls--who are prettier than +Mademoiselle George--I won't know you! My husband is away in Tver or I +would send him to fetch you. You must come. You positively must! +Between eight and nine." + +She nodded to the dressmaker, whom she knew and who had curtsied +respectfully to her, and seated herself in an armchair beside the +looking glass, draping the folds of her velvet dress picturesquely. +She did not cease chattering good-naturedly and gaily, continually +praising Natasha's beauty. She looked at Natasha's dresses and praised +them, as well as a new dress of her own made of "metallic gauze," +which she had received from Paris, and advised Natasha to have one +like it. + +"But anything suits you, my charmer!" she remarked. + +A smile of pleasure never left Natasha's face. She felt happy and as +if she were blossoming under the praise of this dear Countess +Bezukhova who had formerly seemed to her so unapproachable and +important and was now so kind to her. Natasha brightened up and felt +almost in love with this woman, who was so beautiful and so kind. +Helene for her part was sincerely delighted with Natasha and wished to +give her a good time. Anatole had asked her to bring him and Natasha +together, and she was calling on the Rostovs for that purpose. The +idea of throwing her brother and Natasha together amused her. + +Though at one time, in Petersburg, she had been annoyed with Natasha +for drawing Boris away, she did not think of that now, and in her +own way heartily wished Natasha well. As she was leaving the Rostovs +she called her protegee aside. + +"My brother dined with me yesterday--we nearly died of laughter- +he ate nothing and kept sighing for you, my charmer! He is madly, +quite madly, in love with you, my dear." + +Natasha blushed scarlet when she heard this. + +"How she blushes, how she blushes, my pretty!" said Helene. "You +must certainly come. If you love somebody, my charmer, that is not a +reason to shut yourself up. Even if you are engaged, I am sure your +fiance would wish you to go into society rather than be bored to +death." + +"So she knows I am engaged, and she and her husband Pierre--that +good Pierre--have talked and laughed about this. So it's all right." +And again, under Helene's influence, what had seemed terrible now +seemed simple and natural. "And she is such a grande dame, so kind, +and evidently likes me so much. And why not enjoy myself?" thought +Natasha, gazing at Helene with wide-open, wondering eyes. + +Marya Dmitrievna came back to dinner taciturn and serious, having +evidently suffered a defeat at the old prince's. She was still too +agitated by the encounter to be able to talk of the affair calmly. +In answer to the count's inquiries she replied that things were all +right and that she would tell about it next day. On hearing of +Countess Bezukhova's visit and the invitation for that evening, +Marya Dmitrievna remarked: + +"I don't care to have anything to do with Bezukhova and don't advise +you to; however, if you've promised--go. It will divert your +thoughts," she added, addressing Natasha. + + + + + +CHAPTER XIII + + +Count Rostov took the girls to Countess Bezukhova's. There were a +good many people there, but nearly all strangers to Natasha. Count +Rostov was displeased to see that the company consisted almost +entirely of men and women known for the freedom of their conduct. +Mademoiselle George was standing in a corner of the drawing room +surrounded by young men. There were several Frenchmen present, among +them Metivier who from the time Helene reached Moscow had been an +intimate in her house. The count decided not to sit down to cards or +let his girls out of his sight and to get away as soon as Mademoiselle +George's performance was over. + +Anatole was at the door, evidently on the lookout for the Rostovs. +Immediately after greeting the count he went up to Natasha and +followed her. As soon as she saw him she was seized by the same +feeling she had had at the opera--gratified vanity at his admiration +of her and fear at the absence of a moral barrier between them. + +Helene welcomed Natasha delightedly and was loud in admiration of +her beauty and her dress. Soon after their arrival Mademoiselle George +went out of the room to change her costume. In the drawing room people +began arranging the chairs and taking their seats. Anatole moved a +chair for Natasha and was about to sit down beside her, but the count, +who never lost sight of her, took the seat himself. Anatole sat down +behind her. + +Mademoiselle George, with her bare, fat, dimpled arms, and a red +shawl draped over one shoulder, came into the space left vacant for +her, and assumed an unnatural pose. Enthusiastic whispering was +audible. + +Mademoiselle George looked sternly and gloomily at the audience +and began reciting some French verses describing her guilty love for +her son. In some places she raised her voice, in others she whispered, +lifting her head triumphantly; sometimes she paused and uttered hoarse +sounds, rolling her eyes. + +"Adorable! divine! delicious!" was heard from every side. + +Natasha looked at the fat actress, but neither saw nor heard nor +understood anything of what went on before her. She only felt +herself again completely borne away into this strange senseless world- +so remote from her old world--a world in which it was impossible to +know what was good or bad, reasonable or senseless. Behind her sat +Anatole, and conscious of his proximity she experienced a frightened +sense of expectancy. + +After the first monologue the whole company rose and surrounded +Mademoiselle George, expressing their enthusiasm. + +"How beautiful she is!" Natasha remarked to her father who had +also risen and was moving through the crowd toward the actress. + +"I don't think so when I look at you!" said Anatole, following +Natasha. He said this at a moment when she alone could hear him. +"You are enchanting... from the moment I saw you I have never +ceased..." + +"Come, come, Natasha!" said the count, as he turned back for his +daughter. "How beautiful she is!" Natasha without saying anything +stepped up to her father and looked at him with surprised inquiring +eyes. + +After giving several recitations, Mademoiselle George left, and +Countess Bezukhova asked her visitors into the ballroom. + +The count wished to go home, but Helene entreated him not to spoil +her improvised ball, and the Rostovs stayed on. Anatole asked +Natasha for a valse and as they danced he pressed her waist and hand +and told her she was bewitching and that he loved her. During the +ecossaise, which she also danced with him, Anatole said nothing when +they happened to be by themselves, but merely gazed at her. Natasha +lifted her frightened eyes to him, but there was such confident +tenderness in his affectionate look and smile that she could not, +whilst looking at him, say what she had to say. She lowered her eyes. + +"Don't say such things to me. I am betrothed and love another," +she said rapidly.... She glanced at him. + +Anatole was not upset or pained by what she had said. + +"Don't speak to me of that! What can I do?" said he. "I tell you I +am madly, madly, in love with you! Is it my fault that you are +enchanting?... It's our turn to begin." + +Natasha, animated and excited, looked about her with wide-open +frightened eyes and seemed merrier than usual. She understood hardly +anything that went on that evening. They danced the ecossaise and +the Grossvater. Her father asked her to come home, but she begged to +remain. Wherever she went and whomever she was speaking to, she felt +his eyes upon her. Later on she recalled how she had asked her +father to let her go to the dressing room to rearrange her dress, that +Helene had followed her and spoken laughingly of her brother's love, +and that she again met Anatole in the little sitting room. Helene +had disappeared leaving them alone, and Anatole had taken her hand and +said in a tender voice: + +"I cannot come to visit you but is it possible that I shall never +see you? I love you madly. Can I never...?" and, blocking her path, he +brought his face close to hers. + +His large, glittering, masculine eyes were so close to hers that she +saw nothing but them. + +"Natalie?" he whispered inquiringly while she felt her hands being +painfully pressed. "Natalie?" + +"I don't understand. I have nothing to say," her eyes replied. + +Burning lips were pressed to hers, and at the same instant she +felt herself released, and Helene's footsteps and the rustle of her +dress were heard in the room. Natasha looked round at her, and then, +red and trembling, threw a frightened look of inquiry at Anatole and +moved toward the door. + +"One word, just one, for God's sake!" cried Anatole. + +She paused. She so wanted a word from him that would explain to +her what had happened and to which she could find no answer. + +"Natalie, just a word, only one!" he kept repeating, evidently not +knowing what to say and he repeated it till Helene came up to them. + +Helene returned with Natasha to the drawing room. The Rostovs went +away without staying for supper. + +After reaching home Natasha did not sleep all night. She was +tormented by the insoluble question whether she loved Anatole or +Prince Andrew. She loved Prince Andrew--she remembered distinctly +how deeply she loved him. But she also loved Anatole, of that there +was no doubt. "Else how could all this have happened?" thought she. +"If, after that, I could return his smile when saying good-by, if I +was able to let it come to that, it means that I loved him from the +first. It means that he is kind, noble, and splendid, and I could +not help loving him. What am I to do if I love him and the other one +too?" she asked herself, unable to find an answer to these terrible +questions. + + + + + +CHAPTER XIV + + +Morning came with its cares and bustle. Everyone got up and began to +move about and talk, dressmakers came again. Marya Dmitrievna +appeared, and they were called to breakfast. Natasha kept looking +uneasily at everybody with wide-open eyes, as if wishing to +intercept every glance directed toward her, and tried to appear the +same as usual. + +After breakfast, which was her best time, Marya Dmitrievna sat +down in her armchair and called Natasha and the count to her. + +"Well, friends, I have now thought the whole matter over and this is +my advice," she began. "Yesterday, as you know, I went to see Prince +Bolkonski. Well, I had a talk with him.... He took it into his head to +begin shouting, but I am not one to be shouted down. I said what I had +to say!" + +"Well, and he?" asked the count. + +"He? He's crazy... he did not want to listen. But what's the use +of talking? As it is we have worn the poor girl out," said Marya +Dmitrievna. "My advice to you is finish your business and go back home +to Otradnoe... and wait there." + +"Oh, no!" exclaimed Natasha. + +"Yes, go back," said Marya Dmitrievna, "and wait there. If your +betrothed comes here now--there will be no avoiding a quarrel; but +alone with the old man he will talk things over and then come on to +you." + +Count Rostov approved of this suggestion, appreciating its +reasonableness. If the old man came round it would be all the better +to visit him in Moscow or at Bald Hills later on; and if not, the +wedding, against his wishes, could only be arranged at Otradnoe. + +"That is perfectly true. And I am sorry I went to see him and took +her," said the old count. + +"No, why be sorry? Being here, you had to pay your respects. But +if he won't--that's his affair," said Marya Dmitrievna, looking for +something in her reticule. "Besides, the trousseau is ready, so +there is nothing to wait for; and what is not ready I'll send after +you. Though I don't like letting you go, it is the best way. So go, +with God's blessing!" + +Having found what she was looking for in the reticule she handed +it to Natasha. It was a letter from Princess Mary. + +"She has written to you. How she torments herself, poor thing! She's +afraid you might think that she does not like you." + +"But she doesn't like me," said Natasha. + +"Don't talk nonsense!" cried Marya Dmitrievna. + +"I shan't believe anyone, I know she doesn't like me," replied +Natasha boldly as she took the letter, and her face expressed a cold +and angry resolution that caused Marya Dmitrievna to look at her +more intently and to frown. + +"Don't answer like that, my good girl!" she said. "What I say is +true! Write an answer!" Natasha did not reply and went to her own room +to read Princess Mary's letter. + +Princess Mary wrote that she was in despair at the +misunderstanding that had occurred between them. Whatever her father's +feelings might be, she begged Natasha to believe that she could not +help loving her as the one chosen by her brother, for whose +happiness she was ready to sacrifice everything. + +"Do not think, however," she wrote, "that my father is +ill-disposed toward you. He is an invalid and an old man who must be +forgiven; but he is good and magnanimous and will love her who makes +his son happy." Princess Mary went on to ask Natasha to fix a time +when she could see her again. + +After reading the letter Natasha sat down at the writing table to +answer it. "Dear Princess," she wrote in French quickly and +mechanically, and then paused. What more could she write after all +that had happened the evening before? "Yes, yes! All that has +happened, and now all is changed," she thought as she sat with the +letter she had begun before her. "Must I break off with him? Must I +really? That's awful..." and to escape from these dreadful thoughts +she went to Sonya and began sorting patterns with her. + +After dinner Natasha went to her room and again took up Princess +Mary's letter. "Can it be that it is all over?" she thought. "Can it +be that all this has happened so quickly and has destroyed all that +went before?" She recalled her love for Prince Andrew in all its +former strength, and at the same time felt that she loved Kuragin. She +vividly pictured herself as Prince Andrew's wife, and the scenes of +happiness with him she had so often repeated in her imagination, and +at the same time, aglow with excitement, recalled every detail of +yesterday's interview with Anatole. + +"Why could that not be as well?" she sometimes asked herself in +complete bewilderment. "Only so could I be completely happy; but now I +have to choose, and I can't be happy without either of them. Only," +she thought, "to tell Prince Andrew what has happened or to hide it +from him are both equally impossible. But with that one nothing is +spoiled. But am I really to abandon forever the joy of Prince Andrew's +love, in which I have lived so long?" + +"Please, Miss!" whispered a maid entering the room with a mysterious +air. "A man told me to give you this-" and she handed Natasha a +letter. + +"Only, for Christ's sake..." the girl went on, as Natasha, without +thinking, mechanically broke the seal and read a love letter from +Anatole, of which, without taking in a word, she understood only +that it was a letter from him--from the man she loved. Yes, she +loved him, or else how could that have happened which had happened? +And how could she have a love letter from him in her hand? + +With trembling hands Natasha held that passionate love letter +which Dolokhov had composed for Anatole, and as she read it she +found in it an echo of all that she herself imagined she was feeling. + +"Since yesterday evening my fate has been sealed; to be loved by you +or to die. There is no other way for me," the letter began. Then he +went on to say that he knew her parents would not give her to him--for +this there were secret reasons he could reveal only to her--but that +if she loved him she need only say the word yes, and no human power +could hinder their bliss. Love would conquer all. He would steal her +away and carry her off to the ends of the earth. + +"Yes, yes! I love him!" thought Natasha, reading the letter for +the twentieth time and finding some peculiarly deep meaning in each +word of it. + +That evening Marya Dmitrievna was going to the Akharovs' and +proposed to take the girls with her. Natasha, pleading a headache, +remained at home. + + + + + +CHAPTER XV + + +On returning late in the evening Sonya went to Natasha's room, and +to her surprise found her still dressed and asleep on the sofa. Open +on the table, beside her lay Anatole's letter. Sonya picked it up +and read it. + +As she read she glanced at the sleeping Natasha, trying to find in +her face an explanation of what she was reading, but did not find +it. Her face was calm, gentle, and happy. Clutching her breast to keep +herself from choking, Sonya, pale and trembling with fear and +agitation, sat down in an armchair and burst into tears. + +"How was it I noticed nothing? How could it go so far? Can she +have left off loving Prince Andrew? And how could she let Kuragin go +to such lengths? He is a deceiver and a villain, that's plain! What +will Nicholas, dear noble Nicholas, do when he hears of it? So this is +the meaning of her excited, resolute, unnatural look the day before +yesterday, yesterday, and today," thought Sonya. "But it can't be that +she loves him! She probably opened the letter without knowing who it +was from. Probably she is offended by it. She could not do such a +thing!" + +Sonya wiped away her tears and went up to Natasha, again scanning +her face. + +"Natasha!" she said, just audibly. + +Natasha awoke and saw Sonya. + +"Ah, you're back?" + +And with the decision and tenderness that often come at the moment +of awakening, she embraced her friend, but noticing Sonya's look of +embarrassment, her own face expressed confusion and suspicion. + +"Sonya, you've read that letter?" she demanded. + +"Yes," answered Sonya softly. + +Natasha smiled rapturously. + +"No, Sonya, I can't any longer!" she said. "I can't hide it from you +any longer. You know, we love one another! Sonya, darling, he +writes... Sonya..." + +Sonya stared open-eyed at Natasha, unable to believe her ears. + +"And Bolkonski?" she asked. + +"Ah, Sonya, if you only knew how happy I am!" cried Natasha. "You +don't know what love is...." + +"But, Natasha, can that be all over?" + +Natasha looked at Sonya with wide-open eyes as if she could not +grasp the question. + +"Well, then, are you refusing Prince Andrew?" said Sonya. + +"Oh, you don't understand anything! Don't talk nonsense, just +listen!" said Natasha, with momentary vexation. + +"But I can't believe it," insisted Sonya. "I don't understand. How +is it you have loved a man for a whole year and suddenly... Why, you +have only seen him three times! Natasha, I don't believe you, you're +joking! In three days to forget everything and so..." + +"Three days?" said Natasha. "It seems to me I've loved him a hundred +years. It seems to me that I have never loved anyone before. You can't +understand it.... Sonya, wait a bit, sit here," and Natasha embraced +and kissed her. + +"I had heard that it happens like this, and you must have heard it +too, but it's only now that I feel such love. It's not the same as +before. As soon as I saw him I felt he was my master and I his +slave, and that I could not help loving him. Yes, his slave! +Whatever he orders I shall do. You don't understand that. What can I +do? What can I do, Sonya?" cried Natasha with a happy yet frightened +expression. + +"But think what you are doing," cried Sonya. "I can't leave it +like this. This secret correspondence... How could you let him go so +far?" she went on, with a horror and disgust she could hardly conceal. + +"I told you that I have no will," Natasha replied. "Why can't you +understand? I love him!" + +"Then I won't let it come to that... I shall tell!" cried Sonya, +bursting into tears. + +"What do you mean? For God's sake... If you tell, you are my enemy!" +declared Natasha. "You want me to be miserable, you want us to be +separated...." + +When she saw Natasha's fright, Sonya shed tears of shame and pity +for her friend. + +"But what has happened between you?" she asked. "What has he said to +you? Why doesn't he come to the house?" + +Natasha did not answer her questions. + +"For God's sake, Sonya, don't tell anyone, don't torture me," +Natasha entreated. "Remember no one ought to interfere in such +matters! I have confided in you...." + +"But why this secrecy? Why doesn't he come to the house?" asked +Sonya. "Why doesn't he openly ask for your hand? You know Prince +Andrew gave you complete freedom--if it is really so; but I don't +believe it! Natasha, have you considered what these secret reasons can +be?" + +Natasha looked at Sonya with astonishment. Evidently this question +presented itself to her mind for the first time and she did not know +how to answer it. + +"I don't know what the reasons are. But there must be reasons!" + +Sonya sighed and shook her head incredulously. + +"If there were reasons..." she began. + +But Natasha, guessing her doubts, interrupted her in alarm. + +"Sonya, one can't doubt him! One can't, one can't! Don't you +understand?" she cried. + +"Does he love you?" + +"Does he love me?" Natasha repeated with a smile of pity at her +friend's lack of comprehension. "Why, you have read his letter and you +have seen him." + +"But if he is dishonorable?" + +"He! dishonorable? If you only knew!" exclaimed Natasha. + +"If he is an honorable man he should either declare his intentions +or cease seeing you; and if you won't do this, I will. I will write to +him, and I will tell Papa!" said Sonya resolutely. + +"But I can't live without him!" cried Natasha. + +"Natasha, I don't understand you. And what are you saying! Think +of your father and of Nicholas." + +"I don't want anyone, I don't love anyone but him. How dare you +say he is dishonorable? Don't you know that I love him?" screamed +Natasha. "Go away, Sonya! I don't want to quarrel with you, but go, +for God's sake go! You see how I am suffering!" Natasha cried angrily, +in a voice of despair and repressed irritation. Sonya burst into +sobs and ran from the room. + +Natasha went to the table and without a moment's reflection wrote +that answer to Princess Mary which she had been unable to write all +the morning. In this letter she said briefly that all their +misunderstandings were at an end; that availing herself of the +magnanimity of Prince Andrew who when he went abroad had given her her +freedom, she begged Princess Mary to forget everything and forgive her +if she had been to blame toward her, but that she could not be his wife. +At that moment this all seemed quite easy, simple, and clear to Natasha. + + +On Friday the Rostovs were to return to the country, but on +Wednesday the count went with the prospective purchaser to his +estate near Moscow. + +On the day the count left, Sonya and Natasha were invited to a big +dinner party at the Karagins', and Marya Dmitrievna took them there. +At that party Natasha again met Anatole, and Sonya noticed that she +spoke to him, trying not to be overheard, and that all through +dinner she was more agitated than ever. When they got home Natasha was +the first to begin the explanation Sonya expected. + +"There, Sonya, you were talking all sorts of nonsense about him," +Natasha began in a mild voice such as children use when they wish to +be praised. "We have had an explanation today." + +"Well, what happened? What did he say? Natasha, how glad I am you're +not angry with me! Tell me everything--the whole truth. What did he +say?" + +Natasha became thoughtful. + +"Oh, Sonya, if you knew him as I do! He said... He asked me what I +had promised Bolkonski. He was glad I was free to refuse him." + +Sonya sighed sorrowfully. + +"But you haven't refused Bolkonski?" said she. + +"Perhaps I have. Perhaps all is over between me and Bolkonski. Why +do you think so badly of me?" + +"I don't think anything, only I don't understand this..." + +"Wait a bit, Sonya, you'll understand everything. You'll see what +a man he is! Now don't think badly of me or of him. I don't think +badly of anyone: I love and pity everybody. But what am I to do?" + +Sonya did not succumb to the tender tone Natasha used toward her. +The more emotional and ingratiating the expression of Natasha's face +became, the more serious and stern grew Sonya's. + +"Natasha," said she, "you asked me not to speak to you, and I +haven't spoken, but now you yourself have begun. I don't trust him, +Natasha. Why this secrecy?" + +"Again, again!" interrupted Natasha. + +"Natasha, I am afraid for you!" + +"Afraid of what?" + +"I am afraid you're going to your ruin," said Sonya resolutely, +and was herself horrified at what she had said. + +Anger again showed in Natasha's face. + +"And I'll go to my ruin, I will, as soon as possible! It's not +your business! It won't be you, but I, who'll suffer. Leave me +alone, leave me alone! I hate you!" + +"Natasha!" moaned Sonya, aghast. + +"I hate you, I hate you! You're my enemy forever!" And Natasha ran +out of the room. + +Natasha did not speak to Sonya again and avoided her. With the +same expression of agitated surprise and guilt she went about the +house, taking up now one occupation, now another, and at once +abandoning them. + +Hard as it was for Sonya, she watched her friend and did not let her +out of her sight. + +The day before the count was to return, Sonya noticed that Natasha +sat by the drawingroom window all the morning as if expecting +something and that she made a sign to an officer who drove past, +whom Sonya took to be Anatole. + +Sonya began watching her friend still more attentively and noticed +that at dinner and all that evening Natasha was in a strange and +unnatural state. She answered questions at random, began sentences she +did not finish, and laughed at everything. + +After tea Sonya noticed a housemaid at Natasha's door timidly +waiting to let her pass. She let the girl go in, and then listening at +the door learned that another letter had been delivered. + +Then suddenly it became clear to Sonya that Natasha had some +dreadful plan for that evening. Sonya knocked at her door. Natasha did +not let her in. + +"She will run away with him!" thought Sonya. "She is capable of +anything. There was something particularly pathetic and resolute in +her face today. She cried as she said good-by to Uncle," Sonya +remembered. "Yes, that's it, she means to elope with him, but what +am I to do?" thought she, recalling all the signs that clearly +indicated that Natasha had some terrible intention. "The count is +away. What am I to do? Write to Kuragin demanding an explanation? +But what is there to oblige him to reply? Write to Pierre, as Prince +Andrew asked me to in case of some misfortune?... But perhaps she +really has already refused Bolkonski--she sent a letter to Princess +Mary yesterday. And Uncle is away...." To tell Marya Dmitrievna who +had such faith in Natasha seemed to Sonya terrible. "Well, anyway," +thought Sonya as she stood in the dark passage, "now or never I must +prove that I remember the family's goodness to me and that I love +Nicholas. Yes! If I don't sleep for three nights I'll not leave this +passage and will hold her back by force and will and not let the +family be disgraced," thought she. + + + + + +CHAPTER XVI + + +Anatole had lately moved to Dolokhov's. The plan for Natalie +Rostova's abduction had been arranged and the preparations made by +Dolokhov a few days before, and on the day that Sonya, after listening +at Natasha's door, resolved to safeguard her, it was to have been +put into execution. Natasha had promised to come out to Kuragin at the +back porch at ten that evening. Kuragin was to put her into a troyka +he would have ready and to drive her forty miles to the village of +Kamenka, where an unfrocked priest was in readiness to perform a +marriage ceremony over them. At Kamenka a relay of horses was to +wait which would take them to the Warsaw highroad, and from there they +would hasten abroad with post horses. + +Anatole had a passport, an order for post horses, ten thousand +rubles he had taken from his sister and another ten thousand +borrowed with Dolokhov's help. + +Two witnesses for the mock marriage--Khvostikov, a retired petty +official whom Dolokhov made use of in his gambling transactions, and +Makarin, a retired hussar, a kindly, weak fellow who had an +unbounded affection for Kuragin--were sitting at tea in Dolokhov's +front room. + +In his large study, the walls of which were hung to the ceiling with +Persian rugs, bearskins, and weapons, sat Dolokhov in a traveling +cloak and high boots, at an open desk on which lay abacus and some +bundles of paper money. Anatole, with uniform unbuttoned, walked to +and fro from the room where the witnesses were sitting, through the +study to the room behind, where his French valet and others were +packing the last of his things. Dolokhov was counting the money and +noting something down. + +"Well," he said, "Khvostikov must have two thousand." + +"Give it to him, then," said Anatole. + +"Makarka" (their name for Makarin) "will go through fire and water +for you for nothing. So here are our accounts all settled," said +Dolokhov, showing him the memorandum. "Is that right?" + +"Yes, of course," returned Anatole, evidently not listening to +Dolokhov and looking straight before him with a smile that did not +leave his face. + +Dolokhov banged down the or of his and turned to Anatole with an +ironic smile: + +"Do you know? You'd really better drop it all. There's still time!" + +"Fool," retorted Anatole. "Don't talk nonsense! If you only +knew... it's the devil knows what!" + +"No, really, give it up!" said Dolokhov. "I am speaking seriously. +It's no joke, this plot you've hatched." + +"What, teasing again? Go to the devil! Eh?" said Anatole, making a +grimace. "Really it's no time for your stupid jokes," and he left +the room. + +Dolokhov smiled contemptuously and condescendingly when Anatole +had gone out. + +"You wait a bit," he called after him. "I'm not joking, I'm +talking sense. Come here, come here!" + +Anatole returned and looked at Dolokhov, trying to give him his +attention and evidently submitting to him involuntarily. + +"Now listen to me. I'm telling you this for the last time. Why +should I joke about it? Did I hinder you? Who arranged everything +for you? Who found the priest and got the passport? Who raised the +money? I did it all." + +"Well, thank you for it. Do you think I am not grateful?" And +Anatole sighed and embraced Dolokhov. + +"I helped you, but all the same I must tell you the truth; it is a +dangerous business, and if you think about it--a stupid business. +Well, you'll carry her off--all right! Will they let it stop at +that? It will come out that you're already married. Why, they'll +have you in the criminal court...." + +"Oh, nonsense, nonsense!" Anatole ejaculated and again made a +grimace. "Didn't I explain to you? What?" And Anatole, with the +partiality dull-witted people have for any conclusion they have +reached by their own reasoning, repeated the argument he had already +put to Dolokhov a hundred times. "Didn't I explain to you that I +have come to this conclusion: if this marriage is invalid," he went +on, crooking one finger, "then I have nothing to answer for; but if it +is valid, no matter! Abroad no one will know anything about it. +Isn't that so? And don't talk to me, don't, don't." + +"Seriously, you'd better drop it! You'll only get yourself into a +mess!" + +"Go to the devil!" cried Anatole and, clutching his hair, left the +room, but returned at once and dropped into an armchair in front of +Dolokhov with his feet turned under him. "It's the very devil! What? +Feel how it beats!" He took Dolokhov's hand and put it on his heart. +"What a foot, my dear fellow! What a glance! A goddess!" he added in +French. "What?" + +Dolokhov with a cold smile and a gleam in his handsome insolent eyes +looked at him--evidently wishing to get some more amusement out of +him. + +"Well and when the money's gone, what then?" + +"What then? Eh?" repeated Anatole, sincerely perplexed by a +thought of the future. "What then?... Then, I don't know.... But why +talk nonsense!" He glanced at his watch. "It's time!" + +Anatole went into the back room. + +"Now then! Nearly ready? You're dawdling!" he shouted to the +servants. + +Dolokhov put away the money, called a footman whom he ordered to +bring something for them to eat and drink before the journey, and went +into the room where Khvostikov and Makarin were sitting. + +Anatole lay on the sofa in the study leaning on his elbow and +smiling pensively, while his handsome lips muttered tenderly to +himself. + +"Come and eat something. Have a drink!" Dolokhov shouted to him from +the other room. + +"I don't want to," answered Anatole continuing to smile. + +"Come! Balaga is here." + +Anatole rose and went into the dining room. Balaga was a famous +troyka driver who had known Dolokhov and Anatole some six years and +had given them good service with his troykas. More than once when +Anatole's regiment was stationed at Tver he had taken him from Tver in +the evening, brought him to Moscow by daybreak, and driven him back +again the next night. More than once he had enabled Dolokhov to escape +when pursued. More than once he had driven them through the town +with gypsies and "ladykins" as he called the cocottes. More than +once in their service he had run over pedestrians and upset vehicles +in the streets of Moscow and had always been protected from the +consequences by "my gentlemen" as he called them. He had ruined more +than one horse in their service. More than once they had beaten him, +and more than once they had made him drunk on champagne and Madeira, +which he loved; and he knew more than one thing about each of them +which would long ago have sent an ordinary man to Siberia. They +often called Balaga into their orgies and made him drink and dance +at the gypsies', and more than one thousand rubles of their money +had passed through his hands. In their service he risked his skin +and his life twenty times a year, and in their service had lost more +horses than the money he had from them would buy. But he liked them; +liked that mad driving at twelve miles an hour, liked upsetting a +driver or running down a pedestrian, and flying at full gallop through +the Moscow streets. He liked to hear those wild, tipsy shouts behind +him: "Get on! Get on!" when it was impossible to go any faster. He +liked giving a painful lash on the neck to some peasant who, more dead +than alive, was already hurrying out of his way. "Real gentlemen!" +he considered them. + +Anatole and Dolokhov liked Balaga too for his masterly driving and +because he liked the things they liked. With others Balaga +bargained, charging twenty-five rubles for a two hours' drive, and +rarely drove himself, generally letting his young men do so. But +with "his gentlemen" he always drove himself and never demanded +anything for his work. Only a couple of times a year--when he knew +from their valets that they had money in hand--he would turn up of a +morning quite sober and with a deep bow would ask them to help him. +The gentlemen always made him sit down. + +"Do help me out, Theodore Ivanych, sir," or "your excellency," he +would say. "I am quite out of horses. Let me have what you can to go +to the fair." + +And Anatole and Dolokhov, when they had money, would give him a +thousand or a couple of thousand rubles. + +Balaga was a fair-haired, short, and snub-nosed peasant of about +twenty-seven; red-faced, with a particularly red thick neck, +glittering little eyes, and a small beard. He wore a fine, +dark-blue, silk-lined cloth coat over a sheepskin. + +On entering the room now he crossed himself, turning toward the +front corner of the room, and went up to Dolokhov, holding out a +small, black hand. + +"Theodore Ivanych!" he said, bowing. + +"How d'you do, friend? Well, here he is!" + +"Good day, your excellency!" he said, again holding out his hand +to Anatole who had just come in. + +"I say, Balaga," said Anatole, putting his hands on the man's +shoulders, "do you care for me or not? Eh? Now, do me a service.... +What horses have you come with? Eh?" + +"As your messenger ordered, your special beasts," replied Balaga. + +"Well, listen, Balaga! Drive all three to death but get me there +in three hours. Eh?" + +"When they are dead, what shall I drive?" said Balaga with a wink. + +"Mind, I'll smash your face in! Don't make jokes!" cried Anatole, +suddenly rolling his eyes. + +"Why joke?" said the driver, laughing. "As if I'd grudge my +gentlemen anything! As fast as ever the horses can gallop, so fast +we'll go!" + +"Ah!" said Anatole. "Well, sit down." + +"Yes, sit down!" said Dolokhov. + +"I'll stand, Theodore Ivanych." + +"Sit down; nonsense! Have a drink!" said Anatole, and filled a large +glass of Madeira for him. + +The driver's eyes sparkled at the sight of the wine. After +refusing it for manners' sake, he drank it and wiped his mouth with +a red silk handkerchief he took out of his cap. + +"And when are we to start, your excellency?" + +"Well..." Anatole looked at his watch. "We'll start at once. Mind, +Balaga! You'll get there in time? Eh?" + +"That depends on our luck in starting, else why shouldn't we be +there in time?" replied Balaga. "Didn't we get you to Tver in seven +hours? I think you remember that, your excellency?" + +"Do you know, one Christmas I drove from Tver," said Anatole, +smilingly at the recollection and turning to Makarin who gazed +rapturously at him with wide-open eyes. "Will you believe it, Makarka, +it took one's breath away, the rate we flew. We came across a train of +loaded sleighs and drove right over two of them. Eh?" + +"Those were horses!" Balaga continued the tale. "That time I'd +harnessed two young side horses with the bay in the shafts," he went +on, turning to Dolokhov. "Will you believe it, Theodore Ivanych, those +animals flew forty miles? I couldn't hold them in, my hands grew +numb in the sharp frost so that I threw down the reins--'Catch hold +yourself, your excellency!' says I, and I just tumbled on the bottom +of the sleigh and sprawled there. It wasn't a case of urging them +on, there was no holding them in till we reached the place. The devils +took us there in three hours! Only the near one died of it." + + + + + +CHAPTER XVII + + +Anatole went out of the room and returned a few minutes later +wearing a fur coat girt with a silver belt, and a sable cap jauntily +set on one side and very becoming to his handsome face. Having +looked in a mirror, and standing before Dolokhov in the same pose he +had assumed before it, he lifted a glass of wine. + +"Well, good-by, Theodore. Thank you for everything and farewell!" +said Anatole. "Well, comrades and friends..." he considered for a +moment "...of my youth, farewell!" he said, turning to Makarin and the +others. + +Though they were all going with him, Anatole evidently wished to +make something touching and solemn out of this address to his +comrades. He spoke slowly in a loud voice and throwing out his chest +slightly swayed one leg. + +"All take glasses; you too, Balaga. Well, comrades and friends of my +youth, we've had our fling and lived and reveled. Eh? And now, when +shall we meet again? I am going abroad. We have had a good time--now +farewell, lads! To our health! Hurrah!..." he cried, and emptying +his glass flung it on the floor. + +"To your health!" said Balaga who also emptied his glass, and +wiped his mouth with his handkerchief. + +Makarin embraced Anatole with tears in his eyes. + +"Ah, Prince, how sorry I am to part from you! + +"Let's go. Let's go!" cried Anatole. + +Balaga was about to leave the room. + +"No, stop!" said Anatole. "Shut the door; we have first to sit down. +That's the way." + +They shut the door and all sat down. + +"Now, quick march, lads!" said Anatole, rising. + +Joseph, his valet, handed him his sabretache and saber, and they all +went out into the vestibule. + +"And where's the fur cloak?" asked Dolokhov. "Hey, Ignatka! Go to +Matrena Matrevna and ask her for the sable cloak. I have heard what +elopements are like," continued Dolokhov with a wink. "Why, she'll +rush out more dead than alive just in the things she is wearing; if +you delay at all there'll be tears and 'Papa' and 'Mamma,' and she's +frozen in a minute and must go back--but you wrap the fur cloak +round her first thing and carry her to the sleigh." + +The valet brought a woman's fox-lined cloak. + +"Fool, I told you the sable one! Hey, Matrena, the sable!" he +shouted so that his voice rang far through the rooms. + +A handsome, slim, and pale-faced gypsy girl with glittering black +eyes and curly blue-black hair, wearing a red shawl, ran out with a +sable mantle on her arm. + +"Here, I don't grudge it--take it!" she said, evidently afraid of +her master and yet regretful of her cloak. + +Dolokhov, without answering, took the cloak, threw it over +Matrena, and wrapped her up in it. + +"That's the way," said Dolokhov, "and then so!" and he turned the +collar up round her head, leaving only a little of the face uncovered. +"And then so, do you see?" and he pushed Anatole's head forward to +meet the gap left by the collar, through which Matrena's brilliant +smile was seen. + +"Well, good-by, Matrena," said Anatole, kissing her. "Ah, my +revels here are over. Remember me to Steshka. There, good-by! Good-by, +Matrena, wish me luck!" + +"Well, Prince, may God give you great luck!" said Matrena in her +gypsy accent. + +Two troykas were standing before the porch and two young drivers +were holding the horses. Balaga took his seat in the front one and +holding his elbows high arranged the reins deliberately. Anatole and +Dolokhov got in with him. Makarin, Khvostikov, and a valet seated +themselves in the other sleigh. + +"Well, are you ready?" asked Balaga. + +"Go!" he cried, twisting the reins round his hands, and the troyka +tore down the Nikitski Boulevard. + +"Tproo! Get out of the way! Hi!... Tproo!..." The shouting of Balaga +and of the sturdy young fellow seated on the box was all that could be +heard. On the Arbat Square the troyka caught against a carriage; +something cracked, shouts were heard, and the troyka flew along the +Arbat Street. + +After taking a turn along the Podnovinski Boulevard, Balaga began to +rein in, and turning back drew up at the crossing of the old +Konyusheny Street. + +The young fellow on the box jumped down to hold the horses and +Anatole and Dolokhov went along the pavement. When they reached the +gate Dolokhov whistled. The whistle was answered, and a maidservant +ran out. + +"Come into the courtyard or you'll be seen; she'll come out +directly," said she. + +Dolokhov stayed by the gate. Anatole followed the maid into the +courtyard, turned the corner, and ran up into the porch. + +He was met by Gabriel, Marya Dmitrievna's gigantic footman. + +"Come to the mistress, please," said the footman in his deep bass, +intercepting any retreat. + +"To what Mistress? Who are you?" asked Anatole in a breathless +whisper. + +"Kindly step in, my orders are to bring you in." + +"Kuragin! Come back!" shouted Dolokhov. "Betrayed! Back!" + +Dolokhov, after Anatole entered, had remained at the wicket gate and +was struggling with the yard porter who was trying to lock it. With +a last desperate effort Dolokhov pushed the porter aside, and when +Anatole ran back seized him by the arm, pulled him through the wicket, +and ran back with him to the troyka. + + + + + +CHAPTER XVIII + + +Marya Dmitrievna, having found Sonya weeping in the corridor, made +her confess everything, and intercepting the note to Natasha she +read it and went into Natasha's room with it in her hand. + +"You shameless good-for-nothing!" said she. "I won't hear a word." + +Pushing back Natasha who looked at her with astonished but +tearless eyes, she locked her in; and having given orders to the +yard porter to admit the persons who would be coming that evening, but +not to let them out again, and having told the footman to bring them +up to her, she seated herself in the drawing room to await the +abductors. + +When Gabriel came to inform her that the men who had come had run +away again, she rose frowning, and clasping her hands behind her paced +through the rooms a long time considering what she should do. Toward +midnight she went to Natasha's room fingering the key in her pocket. +Sonya was sitting sobbing in the corridor. "Marya Dmitrievna, for +God's sake let me in to her!" she pleaded, but Marya Dmitrievna +unlocked the door and went in without giving her an answer.... +"Disgusting, abominable... In my house... horrid girl, hussy! I'm only +sorry for her father!" thought she, trying to restrain her wrath. +"Hard as it may be, I'll tell them all to hold their tongues and +will hide it from the count." She entered the room with resolute +steps. Natasha lying on the sofa, her head hidden in her hands, and +she did not stir. She was in just the same position in which Marya +Dmitrievna had left her. + +"A nice girl! Very nice!" said Marya Dmitrievna. "Arranging meetings +with lovers in my house! It's no use pretending: you listen when I +speak to you!" And Marya Dmitrievna touched her arm. "Listen when when +I speak! You've disgraced yourself like the lowest of hussies. I'd +treat you differently, but I'm sorry for your father, so I will +conceal it." + +Natasha did not change her position, but her whole body heaved +with noiseless, convulsive sobs which choked her. Marya Dmitrievna +glanced round at Sonya and seated herself on the sofa beside Natasha. + +"It's lucky for him that he escaped me; but I'll find him!" she said +in her rough voice. "Do you hear what I am saying or not?" she added. + +She put her large hand under Natasha's face and turned it toward +her. Both Marya Dmitrievna and Sonya were amazed when they saw how +Natasha looked. Her eyes were dry and glistening, her lips compressed, +her cheeks sunken. + +"Let me be!... What is it to me?... I shall die!" she muttered, +wrenching herself from Marya Dmitrievna's hands with a vicious +effort and sinking down again into her former position. + +"Natalie!" said Marya Dmitrievna. "I wish for your good. Lie +still, stay like that then, I won't touch you. But listen. I won't +tell you how guilty you are. You know that yourself. But when your +father comes back tomorrow what am I to tell him? Eh?" + +Again Natasha's body shook with sobs. + +"Suppose he finds out, and your brother, and your betrothed?" + +"I have no betrothed: I have refused him!" cried Natasha. + +"That's all the same," continued Dmitrievna. "If they hear of +this, will they let it pass? He, your father, I know him... if he +challenges him to a duel will that be all right? Eh?" + +"Oh, let me be! Why have you interfered at all? Why? Why? Who +asked you to?" shouted Natasha, raising herself on the sofa and +looking malignantly at Marya Dmitrievna. + +"But what did you want?" cried Marya Dmitrievna, growing angry +again. "Were you kept under lock and key? Who hindered his coming to +the house? Why carry you off as if you were some gypsy singing +girl?... Well, if he had carried you off... do you think they wouldn't +have found him? Your father, or brother, or your betrothed? And he's a +scoundrel, a wretch--that's a fact!" + +"He is better than any of you!" exclaimed Natasha getting up. "If +you hadn't interfered... Oh, my God! What is it all? What is it? +Sonya, why?... Go away!" + +And she burst into sobs with the despairing vehemence with which +people bewail disasters they feel they have themselves occasioned. +Marya Dmitrievna was to speak again but Natasha cried out: + +"Go away! Go away! You all hate and despise me!" and she threw +herself back on the sofa. + +Marya Dmitrievna went on admonishing her for some time, enjoining on +her that it must all be kept from her father and assuring her that +nobody would know anything about it if only Natasha herself would +undertake to forget it all and not let anyone see that something had +happened. Natasha did not reply, nor did she sob any longer, but she +grew cold and had a shivering fit. Marya Dmitrievna put a pillow under +her head, covered her with two quilts, and herself brought her some +lime-flower water, but Natasha did not respond to her. + +"Well, let her sleep," said Marya Dmitrievna as she went of the room +supposing Natasha to be asleep. + +But Natasha was not asleep; with pale face and fixed wide-open +eyes she looked straight before her. All that night she did not +sleep or weep and did not speak to Sonya who got up and went to her +several times. + +Next day Count Rostov returned from his estate near Moscow in time +for lunch as he had promised. He was in very good spirits; the +affair with the purchaser was going on satisfactorily, and there was +nothing to keep him any longer in Moscow, away from the countess +whom he missed. Marya Dmitrievna met him and told him that Natasha had +been very unwell the day before and that they had sent for the doctor, +but that she was better now. Natasha had not left her room that +morning. With compressed and parched lips and dry fixed eyes, she +sat at the window, uneasily watching the people who drove past and +hurriedly glancing round at anyone who entered the room. She was +evidently expecting news of him and that he would come or would +write to her. + +When the count came to see her she turned anxiously round at the +sound of a man's footstep, and then her face resumed its cold and +malevolent expression. She did not even get up to greet him. "What +is the matter with you, my angel? Are you ill?" asked the count. + +After a moment's silence Natasha answered: "Yes, ill." + +In reply to the count's anxious inquiries as to why she was so +dejected and whether anything had happened to her betrothed, she +assured him that nothing had happened and asked him not to worry. +Marya Dmitrievna confirmed Natasha's assurances that nothing had +happened. From the pretense of illness, from his daughter's +distress, and by the embarrassed faces of Sonya and Marya +Dmitrievna, the count saw clearly that something had gone wrong during +his absence, but it was so terrible for him to think that anything +disgraceful had happened to his beloved daughter, and he so prized his +own cheerful tranquillity, that he avoided inquiries and tried to +assure himself that nothing particularly had happened; and he was only +dissatisfied that her indisposition delayed their return to the +country. + + + + + +CHAPTER XIX + + +From the day his wife arrived in Moscow Pierre had been intending to +go away somewhere, so as not to be near her. Soon after the Rostovs +came to Moscow the effect Natasha had on him made him hasten to +carry out his intention. He went to Tver to see Joseph Alexeevich's +widow, who had long since promised to hand over to him some papers +of her deceased husband's. + +When he returned to Moscow Pierre was handed a letter from Marya +Dmitrievna asking him to come and see her on a matter of great +importance relating to Andrew Bolkonski and his betrothed. Pierre +had been avoiding Natasha because it seemed to him that his feeling +for her was stronger than a married man's should be for his friend's +fiancee. Yet some fate constantly threw them together. + +"What can have happened? And what can they want with me?" thought he +as he dressed to go to Marya Dmitrievna's. "If only Prince Andrew +would hurry up and come and marry her!" thought he on his way to the +house. + +On the Tverskoy Boulevard a familiar voice called to him. + +"Pierre! Been back long?" someone shouted. Pierre raised his head. +In a sleigh drawn by two gray trotting-horses that were bespattering +the dashboard with snow, Anatole and his constant companion Makarin +dashed past. Anatole was sitting upright in the classic pose of +military dandies, the lower part of his face hidden by his beaver +collar and his head slightly bent. His face was fresh and rosy, his +white-plumed hat, tilted to one side, disclosed his curled and pomaded +hair besprinkled with powdery snow. + +"Yes, indeed, that's a true sage," thought Pierre. "He sees +nothing beyond the pleasure of the moment, nothing troubles him and so +he is always cheerful, satisfied, and serene. What wouldn't I give +to be like him!" he thought enviously. + +In Marya Dmitrievna's anteroom the footman who helped him off with +his fur coat said that the mistress asked him to come to her bedroom. + +When he opened the ballroom door Pierre saw Natasha sitting at the +window, with a thin, pale, and spiteful face. She glanced round at +him, frowned, and left the room with an expression of cold dignity. + +"What has happened?" asked Pierre, entering Marya Dmitrievna's room. + +"Fine doings!" answered Dmitrievna. "For fifty-eight years have I +lived in this world and never known anything so disgraceful!" + +And having put him on his honor not to repeat anything she told him, +Marya Dmitrievna informed him that Natasha had refused Prince Andrew +without her parents' knowledge and that the cause of this was +Anatole Kuragin into whose society Pierre's wife had thrown her and +with whom Natasha had tried to elope during her father's absence, in +order to be married secretly. + +Pierre raised his shoulders and listened open-mouthed to what was +told him, scarcely able to believe his own ears. That Prince +Andrew's deeply loved affianced wife--the same Natasha Rostova who +used to be so charming--should give up Bolkonski for that fool Anatole +who was already secretly married (as Pierre knew), and should be so in +love with him as to agree to run away with him, was something Pierre +could not conceive and could not imagine. + +He could not reconcile the charming impression he had of Natasha, +whom he had known from a child, with this new conception of her +baseness, folly, and cruelty. He thought of his wife. "They are all +alike!" he said to himself, reflecting that he was not the only man +unfortunate enough to be tied to a bad woman. But still he pitied +Prince Andrew to the point of tears and sympathized with his wounded +pride, and the more he pitied his friend the more did he think with +contempt and even with disgust of that Natasha who had just passed him +in the ballroom with such a look of cold dignity. He did not know that +Natasha's soul was overflowing with despair, shame, and humiliation, +and that it was not her fault that her face happened to assume an +expression of calm dignity and severity. + +"But how get married?" said Pierre, in answer to Marya Dmitrievna. +"He could not marry--he is married!" + +"Things get worse from hour to hour!" ejaculated Marya Dmitrievna. +"A nice youth! What a scoundrel! And she's expecting him--expecting +him since yesterday. She must be told! Then at least she won't go on +expecting him." + +After hearing the details of Anatole's marriage from Pierre, and +giving vent to her anger against Anatole in words of abuse, Marya +Dmitrievna told Pierre why she had sent for him. She was afraid that +the count or Bolkonski, who might arrive at any moment, if they knew +of this affair (which she hoped to hide from them) might challenge +Anatole to a duel, and she therefore asked Pierre to tell his +brother-in-law in her name to leave Moscow and not dare to let her set +eyes on him again. Pierre--only now realizing the danger to the old +count, Nicholas, and Prince Andrew--promised to do as she wished. +Having briefly and exactly explained her wishes to him, she let him go +to the drawing room. + +"Mind, the count knows nothing. Behave as if you know nothing +either," she said. "And I will go and tell her it is no use +expecting him! And stay to dinner if you care to!" she called after +Pierre. + +Pierre met the old count, who seemed nervous and upset. That morning +Natasha had told him that she had rejected Bolkonski. + +"Troubles, troubles, my dear fellow!" he said to Pierre. "What +troubles one has with these girls without their mother! I do so regret +having come here.... I will be frank with you. Have you heard she +has broken off her engagement without consulting anybody? It's true +this engagement never was much to my liking. Of course he is an +excellent man, but still, with his father's disapproval they +wouldn't have been happy, and Natasha won't lack suitors. Still, it +has been going on so long, and to take such a step without father's or +mother's consent! And now she's ill, and God knows what! It's hard, +Count, hard to manage daughters in their mother's absence...." + +Pierre saw that the count was much upset and tried to change the +subject, but the count returned to his troubles. + +Sonya entered the room with an agitated face. + +"Natasha is not quite well; she's in her room and would like to +see you. Marya Dmitrievna is with her and she too asks you to come." + +"Yes, you are a great friend of Bolkonski's, no doubt she wants to +send him a message," said the count. "Oh dear! Oh dear! How happy it +all was!" + +And clutching the spare gray locks on his temples the count left the +room. + +When Marya Dmitrievna told Natasha that Anatole was married, Natasha +did not wish to believe it and insisted on having it confirmed by +Pierre himself. Sonya told Pierre this as she led him along the +corridor to Natasha's room. + +Natasha, pale and stern, was sitting beside Marya Dmitrievna, and +her eyes, glittering feverishly, met Pierre with a questioning look +the moment he entered. She did not smile or nod, but only gazed +fixedly at him, and her look asked only one thing: was he a friend, or +like the others an enemy in regard to Anatole? As for Pierre, he +evidently did not exist for her. + +"He knows all about it," said Marya Dmitrievna pointing to Pierre +and addressing Natasha. "Let him tell you whether I have told the +truth." + +Natasha looked from one to the other as a hunted and wounded +animal looks at the approaching dogs and sportsmen. + +"Natalya Ilynichna," Pierre began, dropping his eyes with a +feeling of pity for her and loathing for the thing he had to do, +"whether it is true or not should make no difference to you, +because..." + +"Then it is not true that he's married!" + +"Yes, it is true." + +"Has he been married long?" she asked. "On your honor?..." + +Pierre gave his word of honor. + +"Is he still here?" she asked, quickly. + +"Yes, I have just seen him." + +She was evidently unable to speak and made a sign with her hands +that they should leave her alone. + + + + + +CHAPTER XX + + +Pierre did not stay for dinner, but left the room and went away at +once. He drove through the town seeking Anatole Kuragin, at the +thought of whom now the blood rushed to his heart and he felt a +difficulty in breathing. He was not at the ice hills, nor at the +gypsies', nor at Komoneno's. Pierre drove to the Club. In the Club all +was going on as usual. The members who were assembling for dinner were +sitting about in groups; they greeted Pierre and spoke of the town +news. The footman having greeted him, knowing his habits and his +acquaintances, told him there was a place left for him in the small +dining room and that Prince Michael Zakharych was in the library, +but Paul Timofeevich had not yet arrived. One of Pierre's +acquaintances, while they were talking about the weather, asked if +he had heard of Kuragin's abduction of Rostova which was talked of +in the town, and was it true? Pierre laughed and said it was +nonsense for he had just come from the Rostovs'. He asked everyone +about Anatole. One man told him he had not come yet, and another +that he was coming to dinner. Pierre felt it strange to see this calm, +indifferent crowd of people unaware of what was going on in his +soul. He paced through the ballroom, waited till everyone had come, +and as Anatole had not turned up did not stay for dinner but drove +home. + +Anatole, for whom Pierre was looking, dined that day with +Dolokhov, consulting him as to how to remedy this unfortunate +affair. It seemed to him essential to see Natasha. In the evening he +drove to his sister's to discuss with her how to arrange a meeting. +When Pierre returned home after vainly hunting all over Moscow, his +valet informed him that Prince Anatole was with the countess. The +countess' drawing room was full of guests. + +Pierre without greeting his wife whom he had not seen since his +return--at that moment she was more repulsive to him than ever- +entered the drawing room and seeing Anatole went up to him. + +"Ah, Pierre," said the countess going up to her husband. "You +don't know what a plight our Anatole..." + +She stopped, seeing in the forward thrust of her husband's head, +in his glowing eyes and his resolute gait, the terrible indications of +that rage and strength which she knew and had herself experienced +after his duel with Dolokhov. + +"Where you are, there is vice and evil!" said Pierre to his wife. +"Anatole, come with me! I must speak to you," he added in French. + +Anatole glanced round at his sister and rose submissively, ready +to follow Pierre. Pierre, taking him by the arm, pulled him toward +himself and was leading him from the room. + +"If you allow yourself in my drawing room..." whispered Helene, +but Pierre did not reply and went out of the room. + +Anatole followed him with his usual jaunty step but his face +betrayed anxiety. + +Having entered his study Pierre closed the door and addressed +Anatole without looking at him. + +"You promised Countess Rostova to marry her and were about to +elope with her, is that so?" + +"Mon cher," answered Anatole (their whole conversation was in +French), "I don't consider myself bound to answer questions put to +me in that tone." + +Pierre's face, already pale, became distorted by fury. He seized +Anatole by the collar of his uniform with his big hand and shook him +from side to side till Anatole's face showed a sufficient degree of +terror. + +"When I tell you that I must talk to you!..." repeated Pierre. + +"Come now, this is stupid. What?" said Anatole, fingering a button +of his collar that had been wrenched loose with a bit of the cloth. + +"You're a scoundrel and a blackguard, and I don't know what deprives +me from the pleasure of smashing your head with this!" said Pierre, +expressing himself so artificially because he was talking French. + +He took a heavy paperweight and lifted it threateningly, but at once +put it back in its place. + +"Did you promise to marry her?" + +"I... I didn't think of it. I never promised, because..." + +Pierre interrupted him. + +"Have you any letters of hers? Any letters?" he said, moving +toward Anatole. + +Anatole glanced at him and immediately thrust his hand into his +pocket and drew out his pocketbook. + +Pierre took the letter Anatole handed him and, pushing aside a table +that stood in his way, threw himself on the sofa. + +"I shan't be violent, don't be afraid!" said Pierre in answer to a +frightened gesture of Anatole's. "First, the letters," said he, as +if repeating a lesson to himself. "Secondly," he continued after a +short pause, again rising and again pacing the room, "tomorrow you +must get out of Moscow." + +"But how can I?..." + +"Thirdly," Pierre continued without listening to him, "you must +never breathe a word of what has passed between you and Countess +Rostova. I know I can't prevent your doing so, but if you have a spark +of conscience..." Pierre paced the room several times in silence. + +Anatole sat at a table frowning and biting his lips. + +"After all, you must understand that besides your pleasure there +is such a thing as other people's happiness and peace, and that you +are ruining a whole life for the sake of amusing yourself! Amuse +yourself with women like my wife--with them you are within your +rights, for they know what you want of them. They are armed against +you by the same experience of debauchery; but to promise a maid to +marry her... to deceive, to kidnap.... Don't you understand that it is +as mean as beating an old man or a child?..." + +Pierre paused and looked at Anatole no longer with an angry but with +a questioning look. + +"I don't know about that, eh?" said Anatole, growing more +confident as Pierre mastered his wrath. "I don't know that and don't +want to," he said, not looking at Pierre and with a slight tremor of +his lower jaw, "but you have used such words to me--'mean' and so +on--which as a man of honor I can't allow anyone to use." + +Pierre glanced at him with amazement, unable to understand what he +wanted. + +"Though it was tete-a-tete," Anatole continued, "still I can't..." + +"Is it satisfaction you want?" said Pierre ironically. + +"You could at least take back your words. What? If you want me to do +as you wish, eh?" + +"I take them back, I take them back!" said Pierre, "and I ask you to +forgive me." Pierre involuntarily glanced at the loose button. "And if +you require money for your journey..." + +Anatole smiled. The expression of that base and cringing smile, +which Pierre knew so well in his wife, revolted him. + +"Oh, vile and heartless brood!" he exclaimed, and left the room. + +Next day Anatole left for Petersburg. + + + + + +CHAPTER XXI + + +Pierre drove to Marya Dmitrievna's to tell her of the fulfillment of +her wish that Kuragin should be banished from Moscow. The whole +house was in a state of alarm and commotion. Natasha was very ill, +having, as Marya Dmitrievna told him in secret, poisoned herself the +night after she had been told that Anatole was married, with some +arsenic she had stealthily procured. After swallowing a little she had +been so frightened that she woke Sonya and told her what she had done. +The necessary antidotes had been administered in time and she was +now out of danger, though still so weak that it was out of the +question to move her to the country, and so the countess had been sent +for. Pierre saw the distracted count, and Sonya, who had a +tear-stained face, but he could not see Natasha. + +Pierre dined at the club that day and heard on all sides gossip +about the attempted abduction of Rostova. He resolutely denied these +rumors, assuring everyone that nothing had happened except that his +brother-in-law had proposed to her and been refused. It seemed to +Pierre that it was his duty to conceal the whole affair and +re-establish Natasha's reputation. + +He was awaiting Prince Andrew's return with dread and went every day +to the old prince's for news of him. + +Old Prince Bolkonski heard all the rumors current in the town from +Mademoiselle Bourienne and had read the note to Princess Mary in which +Natasha had broken off her engagement. He seemed in better spirits +than usual and awaited his son with great impatience. + +Some days after Anatole's departure Pierre received a note from +Prince Andrew, informing him of his arrival and asking him to come +to see him. + +As soon as he reached Moscow, Prince Andrew had received from his +father Natasha's note to Princess Mary breaking off her engagement +(Mademoiselle Bourienne had purloined it from Princess Mary and +given it to the old prince), and he heard from him the story of +Natasha's elopement, with additions. + +Prince Andrew had arrived in the evening and Pierre came to see +him next morning. Pierre expected to find Prince Andrew in almost +the same state as Natasha and was therefore surprised on entering +the drawing room to hear him in the study talking in a loud animated +voice about some intrigue going on in Petersburg. The old prince's +voice and another now and then interrupted him. Princess Mary came out +to meet Pierre. She sighed, looking toward the door of the room +where Prince Andrew was, evidently intending to express her sympathy +with his sorrow, but Pierre saw by her face that she was glad both +at what had happened and at the way her brother had taken the news +of Natasha's faithlessness. + +"He says he expected it," she remarked. "I know his pride will not +let him express his feelings, but still he has taken it better, far +better, than I expected. Evidently it had to be...." + +"But is it possible that all is really ended?" asked Pierre. + +Princess Mary looked at him with astonishment. She did not +understand how he could ask such a question. Pierre went into the +study. Prince Andrew, greatly changed and plainly in better health, +but with a fresh horizontal wrinkle between his brows, stood in +civilian dress facing his father and Prince Meshcherski, warmly +disputing and vigorously gesticulating. The conversation was about +Speranski--the news of whose sudden exile and alleged treachery had +just reached Moscow. + +"Now he is censured and accused by all who were enthusiastic about +him a month ago," Prince Andrew was saying, "and by those who were +unable to understand his aims. To judge a man who is in disfavor and +to throw on him all the blame of other men's mistakes is very easy, +but I maintain that if anything good has been accomplished in this +reign it was done by him, by him alone." + +He paused at the sight of Pierre. His face quivered and +immediately assumed a vindictive expression. + +"Posterity will do him justice," he concluded, and at once turned to +Pierre. + +"Well, how are you? Still getting stouter?" he said with +animation, but the new wrinkle on his forehead deepened. "Yes, I am +well," he said in answer to Pierre's question, and smiled. + +To Pierre that smile said plainly: "I am well, but my health is +now of no use to anyone." + +After a few words to Pierre about the awful roads from the Polish +frontier, about people he had met in Switzerland who knew Pierre, +and about M. Dessalles, whom he had brought from abroad to be his +son's tutor, Prince Andrew again joined warmly in the conversation +about Speranski which was still going on between the two old men. + +"If there were treason, or proofs of secret relations with Napoleon, +they would have been made public," he said with warmth and haste. "I +do not, and never did, like Speranski personally, but I like justice!" + +Pierre now recognized in his friend a need with which he was only +too familiar, to get excited and to have arguments about extraneous +matters in order to stifle thoughts that were too oppressive and too +intimate. When Prince Meshcherski had left, Prince Andrew took +Pierre's arm and asked him into the room that had been assigned him. A +bed had been made up there, and some open portmanteaus and trunks +stood about. Prince Andrew went to one and took out a small casket, +from which he drew a packet wrapped in paper. He did it all silently +and very quickly. He stood up and coughed. His face was gloomy and his +lips compressed. + +"Forgive me for troubling you..." + +Pierre saw that Prince Andrew was going to speak of Natasha, and his +broad face expressed pity and sympathy. This expression irritated +Prince Andrew, and in a determined, ringing, and unpleasant tone he +continued: + +"I have received a refusal from Countess Rostova and have heard +reports of your brother-in-law having sought her hand, or something of +that kind. Is that true?" + +"Both true and untrue," Pierre began; but Prince Andrew +interrupted him. + +"Here are her letters and her portrait," said he. + +He took the packet from the table and handed it to Pierre. + +"Give this to the countess... if you see her." + +"She is very ill," said Pierre. + +"Then she is here still?" said Prince Andrew. "And Prince +Kuragin?" he added quickly. + +"He left long ago. She has been at death's door." + +"I much regret her illness," said Prince Andrew; and he smiled +like his father, coldly, maliciously, and unpleasantly. + +"So Monsieur Kuragin has not honored Countess Rostova with his +hand?" said Prince Andrew, and he snorted several times. + +"He could not marry, for he was married already," said Pierre. + +Prince Andrew laughed disagreeably, again reminding one of his +father. + +"And where is your brother-in-law now, if I may ask?" he said. + +"He has gone to Peters... But I don't know," said Pierre. + +"Well, it doesn't matter," said Prince Andrew. "Tell Countess +Rostova that she was and is perfectly free and that I wish her all +that is good." + +Pierre took the packet. Prince Andrew, as if trying to remember +whether he had something more to say, or waiting to see if Pierre +would say anything, looked fixedly at him. + +"I say, do you remember our discussion in Petersburg?" asked Pierre, +"about..." + +"Yes," returned Prince Andrew hastily. "I said that a fallen woman +should be forgiven, but I didn't say I could forgive her. I can't." + +"But can this be compared...?" said Pierre. + +Prince Andrew interrupted him and cried sharply: "Yes, ask her +hand again, be magnanimous, and so on?... Yes, that would be very +noble, but I am unable to follow in that gentleman's footsteps. If you +wish to be my friend never speak to me of that... of all that! Well, +good-by. So you'll give her the packet?" + +Pierre left the room and went to the old prince and Princess Mary. + +The old man seemed livelier than usual. Princess Mary was the same +as always, but beneath her sympathy for her brother, Pierre noticed +her satisfaction that the engagement had been broken off. Looking at +them Pierre realized what contempt and animosity they all felt for the +Rostovs, and that it was impossible in their presence even to +mention the name of her who could give up Prince Andrew for anyone +else. + +At dinner the talk turned on the war, the approach of which was +becoming evident. Prince Andrew talked incessantly, arguing now with +his father, now with the Swiss tutor Dessalles, and showing an +unnatural animation, the cause of which Pierre so well understood. + + + + + +CHAPTER XXII + + +That same evening Pierre went to the Rostovs' to fulfill the +commission entrusted to him. Natasha was in bed, the count at the +Club, and Pierre, after giving the letters to Sonya, went to Marya +Dmitrievna who was interested to know how Prince Andrew had taken +the news. Ten minutes later Sonya came to Marya Dmitrievna. + +"Natasha insists on seeing Count Peter Kirilovich," said she. + +"But how? Are we to take him up to her? The room there has not +been tidied up." + +"No, she has dressed and gone into the drawing room," said Sonya. + +Marya Dmitrievna only shrugged her shoulders. + +"When will her mother come? She has worried me to death! Now mind, +don't tell her everything!" said she to Pierre. "One hasn't the +heart to scold her, she is so much to be pitied, so much to be +pitied." + +Natasha was standing in the middle of the drawing room, emaciated, +with a pale set face, but not at all shamefaced as Pierre expected +to find her. When he appeared at the door she grew flurried, evidently +undecided whether to go to meet him or to wait till he came up. + +Pierre hastened to her. He thought she would give him her hand as +usual; but she, stepping up to him, stopped, breathing heavily, her +arms hanging lifelessly just in the pose she used to stand in when she +went to the middle of the ballroom to sing, but with quite a different +expression of face. + +"Peter Kirilovich," she began rapidly, "Prince Bolkonski was your +friend--is your friend," she corrected herself. (It seemed to her that +everything that had once been must now be different.) "He told me once +to apply to you..." + +Pierre sniffed as he looked at her, but did not speak. Till then +he had reproached her in his heart and tried to despise her, but he +now felt so sorry for her that there was no room in his soul for +reproach. + +"He is here now: tell him... to for... forgive me!" She stopped +and breathed still more quickly, but did not shed tears. + +"Yes... I will tell him," answered Pierre; "but..." + +He did not know what to say. + +Natasha was evidently dismayed at the thought of what he might think +she had meant. + +"No, I know all is over," she said hurriedly. "No, that can never +be. I'm only tormented by the wrong I have done him. Tell him only +that I beg him to forgive, forgive, forgive me for everything...." + +She trembled all over and sat down on a chair. + +A sense of pity he had never before known overflowed Pierre's heart. + +"I will tell him, I will tell him everything once more," said +Pierre. "But... I should like to know one thing...." + +"Know what?" Natasha's eyes asked. + +"I should like to know, did you love..." Pierre did not know how +to refer to Anatole and flushed at the thought of him--"did you love +that bad man?" + +"Don't call him bad!" said Natasha. "But I don't know, don't know at +all...." + +She began to cry and a still greater sense of pity, tenderness, +and love welled up in Pierre. He felt the tears trickle under his +spectacles and hoped they would not be noticed. + +"We won't speak of it any more, my dear," said Pierre, and his +gentle, cordial tone suddenly seemed very strange to Natasha. + +"We won't speak of it, my dear--I'll tell him everything; but one +thing I beg of you, consider me your friend and if you want help, +advice, or simply to open your heart to someone--not now, but when +your mind is clearer think of me!" He took her hand and kissed it. +"I shall be happy if it's in my power..." + +Pierre grew confused. + +"Don't speak to me like that. I am not worth it!" exclaimed +Natasha and turned to leave the room, but Pierre held her hand. + +He knew he had something more to say to her. But when he said it +he was amazed at his own words. + +"Stop, stop! You have your whole life before you," said he to her. + +"Before me? No! All is over for me," she replied with shame and +self-abasement. + + "All over?" he repeated. "If I were not myself, but the handsomest, +cleverest, and best man in the world, and were free, I would this +moment ask on my knees for your hand and your love!" + +For the first time for many days Natasha wept tears of gratitude and +tenderness, and glancing at Pierre she went out of the room. + +Pierre too when she had gone almost ran into the anteroom, +restraining tears of tenderness and joy that choked him, and without +finding the sleeves of his fur cloak threw it on and got into his +sleigh. + +"Where to now, your excellency?" asked the coachman. + +"Where to?" Pierre asked himself. "Where can I go now? Surely not to +the Club or to pay calls?" All men seemed so pitiful, so poor, in +comparison with this feeling of tenderness and love he experienced: in +comparison with that softened, grateful, last look she had given him +through her tears. + +"Home!" said Pierre, and despite twenty-two degrees of frost +Fahrenheit he threw open the bearskin cloak from his broad chest and +inhaled the air with joy. + +It was clear and frosty. Above the dirty, ill-lit streets, above the +black roofs, stretched the dark starry sky. Only looking up at the sky +did Pierre cease to feel how sordid and humiliating were all mundane +things compared with the heights to which his soul had just been +raised. At the entrance to the Arbat Square an immense expanse of dark +starry sky presented itself to his eyes. Almost in the center of it, +above the Prechistenka Boulevard, surrounded and sprinkled on all +sides by stars but distinguished from them all by its nearness to +the earth, its white light, and its long uplifted tail, shone the +enormous and brilliant comet of 1812--the comet which was said to +portend all kinds of woes and the end of the world. In Pierre, +however, that comet with its long luminous tail aroused no feeling +of fear. On the contrary he gazed joyfully, his eyes moist with tears, +at this bright comet which, having traveled in its orbit with +inconceivable velocity through immeasurable space, seemed suddenly- +like an arrow piercing the earth--to remain fixed in a chosen spot, +vigorously holding its tail erect, shining and displaying its white +light amid countless other scintillating stars. It seemed to Pierre +that this comet fully responded to what was passing in his own +softened and uplifted soul, now blossoming into a new life. + + + + + +BOOK NINE: 1812 + + + + + +CHAPTER I + + +From the close of the year 1811 intensified arming and concentrating +of the forces of Western Europe began, and in 1812 these forces- +millions of men, reckoning those transporting and feeding the army- +moved from the west eastwards to the Russian frontier, toward which +since 1811 Russian forces had been similarly drawn. On the twelfth +of June, 1812, the forces of Western Europe crossed the Russian +frontier and war began, that is, an event took place opposed to +human reason and to human nature. Millions of men perpetrated +against one another such innumerable crimes, frauds, treacheries, +thefts, forgeries, issues of false money, burglaries, incendiarisms, +and murders as in whole centuries are not recorded in the annals of +all the law courts of the world, but which those who committed them +did not at the time regard as being crimes. + +What produced this extraordinary occurrence? What were its causes? +The historians tell us with naive assurance that its causes were the +wrongs inflicted on the Duke of Oldenburg, the nonobservance of the +Continental System, the ambition of Napoleon, the firmness of +Alexander, the mistakes of the diplomatists, and so on. + +Consequently, it would only have been necessary for Metternich, +Rumyantsev, or Talleyrand, between a levee and an evening party, to +have taken proper pains and written a more adroit note, or for +Napoleon to have written to Alexander: "My respected Brother, I +consent to restore the duchy to the Duke of Oldenburg"--and there +would have been no war. + +We can understand that the matter seemed like that to +contemporaries. It naturally seemed to Napoleon that the war was +caused by England's intrigues (as in fact he said on the island of St. +Helena). It naturally seemed to members of the English Parliament that +the cause of the war was Napoleon's ambition; to the Duke of +Oldenburg, that the cause of the war was the violence done to him; +to businessmen that the cause of the way was the Continental System +which was ruining Europe; to the generals and old soldiers that the +chief reason for the war was the necessity of giving them +employment; to the legitimists of that day that it was the need of +re-establishing les bons principes, and to the diplomatists of that +time that it all resulted from the fact that the alliance between +Russia and Austria in 1809 had not been sufficiently well concealed +from Napoleon, and from the awkward wording of Memorandum No. 178. +It is natural that these and a countless and infinite quantity of +other reasons, the number depending on the endless diversity of points +of view, presented themselves to the men of that day; but to us, to +posterity who view the thing that happened in all its magnitude and +perceive its plain and terrible meaning, these causes seem +insufficient. To us it is incomprehensible that millions of +Christian men killed and tortured each other either because Napoleon +was ambitious or Alexander was firm, or because England's policy was +astute or the Duke of Oldenburg wronged. We cannot grasp what +connection such circumstances have with the actual fact of slaughter +and violence: why because the Duke was wronged, thousands of men +from the other side of Europe killed and ruined the people of Smolensk +and Moscow and were killed by them. + +To us, their descendants, who are not historians and are not carried +away by the process of research and can therefore regard the event +with unclouded common sense, an incalculable number of causes +present themselves. The deeper we delve in search of these causes +the more of them we find; and each separate cause or whole series of +causes appears to us equally valid in itself and equally false by +its insignificance compared to the magnitude of the events, and by its +impotence--apart from the cooperation of all the other coincident +causes--to occasion the event. To us, the wish or objection of this or +that French corporal to serve a second term appears as much a cause as +Napoleon's refusal to withdraw his troops beyond the Vistula and to +restore the duchy of Oldenburg; for had he not wished to serve, and +had a second, a third, and a thousandth corporal and private also +refused, there would have been so many less men in Napoleon's army and +the war could not have occurred. + +Had Napoleon not taken offense at the demand that he should withdraw +beyond the Vistula, and not ordered his troops to advance, there would +have been no war; but had all his sergeants objected to serving a +second term then also there could have been no war. Nor could there +have been a war had there been no English intrigues and no Duke of +Oldenburg, and had Alexander not felt insulted, and had there not been +an autocratic government in Russia, or a Revolution in France and a +subsequent dictatorship and Empire, or all the things that produced +the French Revolution, and so on. Without each of these causes nothing +could have happened. So all these causes--myriads of causes--coincided +to bring it about. And so there was no one cause for that +occurrence, but it had to occur because it had to. Millions of men, +renouncing their human feelings and reason, had to go from west to +east to slay their fellows, just as some centuries previously hordes +of men had come from the east to the west, slaying their fellows. + +The actions of Napoleon and Alexander, on whose words the event +seemed to hang, were as little voluntary as the actions of any soldier +who was drawn into the campaign by lot or by conscription. This +could not be otherwise, for in order that the will of Napoleon and +Alexander (on whom the event seemed to depend) should be carried +out, the concurrence of innumerable circumstances was needed without +any one of which the event could not have taken place. It was +necessary that millions of men in whose hands lay the real power- +the soldiers who fired, or transported provisions and guns--should +consent to carry out the will of these weak individuals, and should +have been induced to do so by an infinite number of diverse and +complex causes. + +We are forced to fall back on fatalism as an explanation of +irrational events (that is to say, events the reasonableness of +which we do not understand). The more we try to explain such events in +history reasonably, the more unreasonable and incomprehensible do they +become to us. + +Each man lives for himself, using his freedom to attain his personal +aims, and feels with his whole being that he can now do or abstain +from doing this or that action; but as soon as he has done it, that +action performed at a certain moment in time becomes irrevocable and +belongs to history, in which it has not a free but a predestined +significance. + +There are two sides to the life of every man, his individual life, +which is the more free the more abstract its interests, and his +elemental hive life in which he inevitably obeys laws laid down for +him. + +Man lives consciously for himself, but is an unconscious +instrument in the attainment of the historic, universal, aims of +humanity. A deed done is irrevocable, and its result coinciding in +time with the actions of millions of other men assumes an historic +significance. The higher a man stands on the social ladder, the more +people he is connected with and the more power he has over others, the +more evident is the predestination and inevitability of his every +action. + +"The king's heart is in the hands of the Lord." + +A king is history's slave. + +History, that is, the unconscious, general, hive life of mankind, +uses every moment of the life of kings as a tool for its own purposes. + +Though Napoleon at that time, in 1812, was more convinced than +ever that it depended on him, verser (ou ne pas verser) le sang de ses +peuples*--as Alexander expressed it in the last letter he wrote him- +he had never been so much in the grip of inevitable laws, which +compelled him, while thinking that he was acting on his own +volition, to perform for the hive life--that is to say, for history- +whatever had to be performed. + + +*"To shed (or not to shed) the blood of his peoples." + + +The people of the west moved eastwards to slay their fellow men, and +by the law of coincidence thousands of minute causes fitted in and +co-ordinated to produce that movement and war: reproaches for the +nonobservance of the Continental System, the Duke of Oldenburg's +wrongs, the movement of troops into Prussia--undertaken (as it +seemed to Napoleon) only for the purpose of securing an armed peace, +the French Emperor's love and habit of war coinciding with his +people's inclinations, allurement by the grandeur of the preparations, +and the expenditure on those preparations and the need of obtaining +advantages to compensate for that expenditure, the intoxicating honors +he received in Dresden, the diplomatic negotiations which, in the +opinion of contemporaries, were carried on with a sincere desire to +attain peace, but which only wounded the self-love of both sides, +and millions of other causes that adapted themselves to +the event that was happening or coincided with it. + +When an apple has ripened and falls, why does it fall? Because of +its attraction to the earth, because its stalk withers, because it +is dried by the sun, because it grows heavier, because the wind shakes +it, or because the boy standing below wants to eat it? + +Nothing is the cause. All this is only the coincidence of conditions +in which all vital organic and elemental events occur. And the +botanist who finds that the apple falls because the cellular tissue +decays and so forth is equally right with the child who stands under +the tree and says the apple fell because he wanted to eat it and +prayed for it. Equally right or wrong is he who says that Napoleon +went to Moscow because he wanted to, and perished because Alexander +desired his destruction, and he who says that an undermined hill +weighing a million tons fell because the last navvy struck it for +the last time with his mattock. In historic events the so-called great +men are labels giving names to events, and like labels they have but +the smallest connection with the event itself. + +Every act of theirs, which appears to them an act of their own will, +is in an historical sense involuntary and is related to the whole +course of history and predestined from eternity. + + + + + +CHAPTER II + + +On the twenty-ninth of May Napoleon left Dresden, where he had spent +three weeks surrounded by a court that included princes, dukes, kings, +and even an emperor. Before leaving, Napoleon showed favor to the +emperor, kings, and princes who had deserved it, reprimanded the kings +and princes with whom he was dissatisfied, presented pearls and +diamonds of his own--that is, which he had taken from other kings- +to the Empress of Austria, and having, as his historian tells us, +tenderly embraced the Empress Marie Louise--who regarded him as her +husband, though he had left another wife in Paris--left her grieved by +the parting which she seemed hardly able to bear. Though the +diplomatists still firmly believed in the possibility of peace and +worked zealously to that end, and though the Emperor Napoleon +himself wrote a letter to Alexander, calling him Monsieur mon frere, +and sincerely assured him that he did not want war and would always +love and honor him--yet he set off to join his army, and at every +station gave fresh orders to accelerate the movement of his troops +from west to east. He went in a traveling coach with six horses, +surrounded by pages, aides-de-camp, and an escort, along the road to +Posen, Thorn, Danzig, and Konigsberg. At each of these towns thousands +of people met him with excitement and enthusiasm. + +The army was moving from west to east, and relays of six horses +carried him in the same direction. On the tenth of June,* coming up +with the army, he spent the night in apartments prepared for him on +the estate of a Polish count in the Vilkavisski forest. + + +*Old style. + + +Next day, overtaking the army, he went in a carriage to the +Niemen, and, changing into a Polish uniform, he drove to the riverbank +in order to select a place for the crossing. + +Seeing, on the other side, some Cossacks (les Cosaques) and the +wide-spreading steppes in the midst of which lay the holy city of +Moscow (Moscou, la ville sainte), the capital of a realm such as the +Scythia into which Alexander the Great had marched--Napoleon +unexpectedly, and contrary alike to strategic and diplomatic +considerations, ordered an advance, and the next day his army began to +cross the Niemen. + +Early in the morning of the twelfth of June he came out of his tent, +which was pitched that day on the steep left bank of the Niemen, and +looked through a spyglass at the streams of his troops pouring out +of the Vilkavisski forest and flowing over the three bridges thrown +across the river. The troops, knowing of the Emperor's presence, +were on the lookout for him, and when they caught sight of a figure in +an overcoat and a cocked hat standing apart from his suite in front of +his tent on the hill, they threw up their caps and shouted: "Vive +l'Empereur!" and one after another poured in a ceaseless stream out of +the vast forest that had concealed them and, separating, flowed on and +on by the three bridges to the other side. + +"Now we'll go into action. Oh, when he takes it in hand himself, +things get hot... by heaven!... There he is!... Vive l'Empereur! So +these are the steppes of Asia! It's a nasty country all the same. Au +revoir, Beauche; I'll keep the best palace in Moscow for you! Au +revoir. Good luck!... Did you see the Emperor? Vive l'Empereur!... +preur!--If they make me Governor of India, Gerard, I'll make you +Minister of Kashmir--that's settled. Vive l'Empereur! Hurrah! +hurrah! hurrah! The Cossacks--those rascals--see how they run! Vive +l'Empereur! There he is, do you see him? I've seen him twice, as I see +you now. The little corporal... I saw him give the cross to one of the +veterans.... Vive l'Empereur!" came the voices of men, old and +young, of most diverse characters and social positions. On the faces +of all was one common expression of joy at the commencement of the +long-expected campaign and of rapture and devotion to the man in the +gray coat who was standing on the hill. + +On the thirteenth of June a rather small, thoroughbred Arab horse +was brought to Napoleon. He mounted it and rode at a gallop to one +of the bridges over the Niemen, deafened continually by incessant +and rapturous acclamations which he evidently endured only because +it was impossible to forbid the soldiers to express their love of +him by such shouting, but the shouting which accompanied him +everywhere disturbed him and distracted him from the military cares +that had occupied him from the time he joined the army. He rode across +one of the swaying pontoon bridges to the farther side, turned sharply +to the left, and galloped in the direction of Kovno, preceded by +enraptured, mounted chasseurs of the Guard who, breathless with +delight, galloped ahead to clear a path for him through the troops. On +reaching the broad river Viliya, he stopped near a regiment of +Polish Uhlans stationed by the river. + +"Vivat!" shouted the Poles, ecstatically, breaking their ranks and +pressing against one another to see him. + +Napoleon looked up and down the river, dismounted, and sat down on a +log that lay on the bank. At a mute sign from him, a telescope was +handed him which he rested on the back of a happy page who had run +up to him, and he gazed at the opposite bank. Then he became +absorbed in a map laid out on the logs. Without lifting his head he +said something, and two of his aides-de-camp galloped off to the +Polish Uhlans. + +"What? What did he say?" was heard in the ranks of the Polish Uhlans +when one of the aides-de-camp rode up to them. + +The order was to find a ford and to cross the river. The colonel +of the Polish Uhlans, a handsome old man, flushed and, fumbling in his +speech from excitement, asked the aide-de-camp whether he would be +permitted to swim the river with his Uhlans instead of seeking a ford. +In evident fear of refusal, like a boy asking for permission to get on +a horse, he begged to be allowed to swim across the river before the +Emperor's eyes. The aide-de-camp replied that probably the Emperor +would not be displeased at this excess of zeal. + +As soon as the aide-de-camp had said this, the old mustached +officer, with happy face and sparkling eyes, raised his saber, shouted +"Vivat!" and, commanding the Uhlans to follow him, spurred his horse +and galloped into the river. He gave an angry thrust to his horse, +which had grown restive under him, and plunged into the water, heading +for the deepest part where the current was swift. Hundreds of Uhlans +galloped in after him. It was cold and uncanny in the rapid current in +the middle of the stream, and the Uhlans caught hold of one another as +they fell off their horses. Some of the horses were drowned and some +of the men; the others tried to swim on, some in the saddle and some +clinging to their horses' manes. They tried to make their way +forward to the opposite bank and, though there was a ford one third of +a mile away, were proud that they were swimming and drowning in this +river under the eyes of the man who sat on the log and was not even +looking at what they were doing. When the aide-de-camp, having +returned and choosing an opportune moment, ventured to draw the +Emperor's attention to the devotion of the Poles to his person, the +little man in the gray overcoat got up and, having summoned +Berthier, began pacing up and down the bank with him, giving him +instructions and occasionally glancing disapprovingly at the +drowning Uhlans who distracted his attention. + +For him it was no new conviction that his presence in any part of +the world, from Africa to the steppes of Muscovy alike, was enough +to dumfound people and impel them to insane self-oblivion. He called +for his horse and rode to his quarters. + +Some forty Uhlans were drowned in the river, though boats were +sent to their assistance. The majority struggled back to the bank from +which they had started. The colonel and some of his men got across and +with difficulty clambered out on the further bank. And as soon as they +had got out, in their soaked and streaming clothes, they shouted +"Vivat!" and looked ecstatically at the spot where Napoleon had been +but where he no longer was and at that moment considered themselves +happy. + +That evening, between issuing one order that the forged Russian +paper money prepared for use in Russia should be delivered as +quickly as possible and another that a Saxon should be shot, on whom a +letter containing information about the orders to the French army +had been found, Napoleon also gave instructions that the Polish +colonel who had needlessly plunged into the river should be enrolled +in the Legion d'honneur of which Napoleon was himself the head. + +Quos vult perdere dementat.* + + +*Those whom (God) wishes to destroy he drives mad. + + + + + +CHAPTER III + + +The Emperor of Russia had, meanwhile, been in Vilna for more than +a month, reviewing troops and holding maneuvers. Nothing was ready for +the war that everyone expected and to prepare for which the Emperor +had come from Petersburg. There was no general plan of action. The +vacillation between the various plans that were proposed had even +increased after the Emperor had been at headquarters for a month. Each +of the three armies had its own commander in chief, but there was no +supreme commander of all the forces, and the Emperor did not assume +that responsibility himself. + +The longer the Emperor remained in Vilna the less did everybody- +tired of waiting--prepare for the war. All the efforts of those who +surrounded the sovereign seemed directed merely to making him spend +his time pleasantly and forget that war was impending. + +In June, after many balls and fetes given by the Polish magnates, by +the courtiers, and by the Emperor himself, it occurred to one of the +Polish aides-de-camp in attendance that a dinner and ball should be +given for the Emperor by his aides-de-camp. This idea was eagerly +received. The Emperor gave his consent. The aides-de-camp collected +money by subscription. The lady who was thought to be most pleasing to +the Emperor was invited to act as hostess. Count Bennigsen, being a +landowner in the Vilna province, offered his country house for the +fete, and the thirteenth of June was fixed for a ball, dinner, +regatta, and fireworks at Zakret, Count Bennigsen's country seat. + + +The very day that Napoleon issued the order to cross the Niemen, and +his vanguard, driving off the Cossacks, crossed the Russian +frontier, Alexander spent the evening at the entertainment given by +his aides-de-camp at Bennigsen's country house. + +It was a gay and brilliant fete. Connoisseurs of such matters +declared that rarely had so many beautiful women been assembled in one +place. Countess Bezukhova was present among other Russian ladies who +had followed the sovereign from Petersburg to Vilna and eclipsed the +refined Polish ladies by her massive, so called Russian type of +beauty. The Emperor noticed her and honored her with a dance. + +Boris Drubetskoy, having left his wife in Moscow and being for the +present en garcon (as he phrased it), was also there and, though not +an aide-de-camp, had subscribed a large sum toward the expenses. Boris +was now a rich man who had risen to high honors and no longer sought +patronage but stood on an equal footing with the highest of those of +his own age. He was meeting Helene in Vilna after not having seen +her for a long time and did not recall the past, but as Helene was +enjoying the favors of a very important personage and Boris had only +recently married, they met as good friends of long standing. + +At midnight dancing was still going on. Helene, not having a +suitable partner, herself offered to dance the mazurka with Boris. +They were the third couple. Boris, coolly looking at Helene's dazzling +bare shoulders which emerged from a dark, gold-embroidered, gauze +gown, talked to her of old acquaintances and at the same time, unaware +of it himself and unnoticed by others, never for an instant ceased +to observe the Emperor who was in the same room. The Emperor was not +dancing, he stood in the doorway, stopping now one pair and now +another with gracious words which he alone knew how to utter. + +As the mazurka began, Boris saw that Adjutant General Balashev, +one of those in closest attendance on the Emperor, went up to him +and contrary to court etiquette stood near him while he was talking to +a Polish lady. Having finished speaking to her, the Emperor looked +inquiringly at Balashev and, evidently understanding that he only +acted thus because there were important reasons for so doing, nodded +slightly to the lady and turned to him. Hardly had Balashev begun to +speak before a look of amazement appeared on the Emperor's face. He +took Balashev by the arm and crossed the room with him, +unconsciously clearing a path seven yards wide as the people on both +sides made way for him. Boris noticed Arakcheev's excited face when +the sovereign went out with Balashev. Arakcheev looked at the +Emperor from under his brow and, sniffing with his red nose, stepped +forward from the crowd as if expecting the Emperor to address him. +(Boris understood that Arakcheev envied Balashev and was displeased +that evidently important news had reached the Emperor otherwise than +through himself.) + +But the Emperor and Balashev passed out into the illuminated +garden without noticing Arakcheev who, holding his sword and +glancing wrathfully around, followed some twenty paces behind them. + +All the time Boris was going through the figures of the mazurka, +he was worried by the question of what news Balashev had brought and +how he could find it out before others. In the figure in which he +had to choose two ladies, he whispered to Helene that he meant to +choose Countess Potocka who, he thought, had gone out onto the +veranda, and glided over the parquet to the door opening into the +garden, where, seeing Balashev and the Emperor returning to the +veranda, he stood still. They were moving toward the door. Boris, +fluttering as if he had not had time to withdraw, respectfully pressed +close to the doorpost with bowed head. + +The Emperor, with the agitation of one who has been personally +affronted, was finishing with these words: + +"To enter Russia without declaring war! I will not make peace as +long as a single armed enemy remains in my country!" It seemed to +Boris that it gave the Emperor pleasure to utter these words. He was +satisfied with the form in which he had expressed his thoughts, but +displeased that Boris had overheard it. + +"Let no one know of it!" the Emperor added with a frown. + +Boris understood that this was meant for him and, closing his +eyes, slightly bowed his head. The Emperor re-entered the ballroom and +remained there about another half-hour. + +Boris was thus the first to learn the news that the French army +had crossed the Niemen and, thanks to this, was able to show certain +important personages that much that was concealed from others was +usually known to him, and by this means he rose higher in their +estimation. + + +The unexpected news of the French having crossed the Niemen was +particularly startling after a month of unfulfilled expectations, +and at a ball. On first receiving the news, under the influence of +indignation and resentment the Emperor had found a phrase that pleased +him, fully expressed his feelings, and has since become famous. On +returning home at two o'clock that night he sent for his secretary, +Shishkov, and told him to write an order to the troops and a +rescript to Field Marshal Prince Saltykov, in which he insisted on the +words being inserted that he would not make peace so long as a +single armed Frenchman remained on Russian soil. + +Next day the following letter was sent to Napoleon: + + +Monsieur mon frere, + +Yesterday I learned that, despite the loyalty which I have kept my +engagements with Your Majesty, your troops have crossed the Russian +frontier, and I have this moment received from Petersburg a note, in +which Count Lauriston informs me, as a reason for this aggression, +that Your Majesty has considered yourself to be in a state of war with +me from the time Prince Kuragin asked for his passports. The reasons +on which the Duc de Bassano based his refusal to deliver them to him +would never have led me to suppose that that could serve as a +pretext for aggression. In fact, the ambassador, as he himself has +declared, was never authorized to make that demand, and as soon as I +was informed of it I let him know how much I disapproved of it and +ordered him to remain at his post. If Your Majesty does not intend +to shed the blood of our peoples for such a misunderstanding, and +consents to withdraw your troops from Russian territory, I will regard +what has passed as not having occurred and an understanding between us +will be possible. In the contrary case, Your Majesty, I shall see +myself forced to repel an attack that nothing on my part has provoked. +It still depends on Your Majesty to preserve humanity from the +calamity of another war. I am, etc., + (signed) Alexander + + + + + +CHAPTER IV + + +At two in the morning of the fourteenth of June, the Emperor, having +sent for Balashev and read him his letter to Napoleon, ordered him +to take it and hand it personally to the French Emperor. When +dispatching Balashev, the Emperor repeated to him the words that he +would not make peace so long as a single armed enemy remained on +Russian soil and told him to transmit those words to Napoleon. +Alexander did not insert them in his letter to Napoleon, because +with his characteristic tact he felt it would be injudicious to use +them at a moment when a last attempt at reconciliation was being made, +but he definitely instructed Balashev to repeat them personally to +Napoleon. + +Having set off in the small hours of the fourteenth, accompanied +by a bugler and two Cossacks, Balashev reached the French outposts +at the village of Rykonty, on the Russian side of the Niemen, by dawn. +There he was stopped by French cavalry sentinels. + +A French noncommissioned officer of hussars, in crimson uniform +and a shaggy cap, shouted to the approaching Balashev to halt. +Balashev did not do so at once, but continued to advance along the +road at a walking pace. + +The noncommissioned officer frowned and, muttering words of abuse, +advanced his horse's chest against Balashev, put his hand to his +saber, and shouted rudely at the Russian general, asking: was he +deaf that he did not do as he was told? Balashev mentioned who he was. +The noncommissioned officer began talking with his comrades about +regimental matters without looking at the Russian general. + +After living at the seat of the highest authority and power, after +conversing with the Emperor less than three hours before, and in +general being accustomed to the respect due to his rank in the +service, Balashev found it very strange here on Russian soil to +encounter this hostile, and still more this disrespectful, application +of brute force to himself. + +The sun was only just appearing from behind the clouds, the air +was fresh and dewy. A herd of cattle was being driven along the road +from the village, and over the fields the larks rose trilling, one +after another, like bubbles rising in water. + +Balashev looked around him, awaiting the arrival of an officer +from the village. The Russian Cossacks and bugler and the French +hussars looked silently at one another from time to time. + +A French colonel of hussars, who had evidently just left his bed, +came riding from the village on a handsome sleek gray horse, +accompanied by two hussars. The officer, the soldiers, and their +horses all looked smart and well kept. + +It was that first period of a campaign when troops are still in full +trim, almost like that of peacetime maneuvers, but with a shade of +martial swagger in their clothes, and a touch of the gaiety and spirit +of enterprise which always accompany the opening of a campaign. + +The French colonel with difficulty repressed a yawn, but was +polite and evidently understood Balashev's importance. He led him past +his soldiers and behind the outposts and told him that his wish to +be presented to the Emperor would most likely be satisfied +immediately, as the Emperor's quarters were, he believed, not far off. + +They rode through the village of Rykonty, past tethered French +hussar horses, past sentinels and men who saluted their colonel and +stared with curiosity at a Russian uniform, and came out at the +other end of the village. The colonel said that the commander of the +division was a mile and a quarter away and would receive Balashev +and conduct him to his destination. + +The sun had by now risen and shone gaily on the bright verdure. + +They had hardly ridden up a hill, past a tavern, before they saw a +group of horsemen coming toward them. In front of the group, on a +black horse with trappings that glittered in the sun, rode a tall +man with plumes in his hat and black hair curling down to his +shoulders. He wore a red mantle, and stretched his long legs forward +in French fashion. This man rode toward Balashev at a gallop, his +plumes flowing and his gems and gold lace glittering in the bright +June sunshine. + +Balashev was only two horses' length from the equestrian with the +bracelets, plunies, necklaces, and gold embroidery, who was +galloping toward him with a theatrically solemn countenance, when +Julner, the French colonel, whispered respectfully: "The King of +Naples!" It was, in fact, Murat, now called "King of Naples." Though +it was quite incomprehensible why he should be King of Naples, he +was called so, and was himself convinced that he was so, and therefore +assumed a more solemn and important air than formerly. He was so +sure that he really was the King of Naples that when, on the eve of +his departure from that city, while walking through the streets with +his wife, some Italians called out to him: "Viva il re!"* he turned to +his wife with a pensive smile and said: "Poor fellows, they don't know +that I am leaving them tomorrow!" + + +*"Long live the king." + + +But though he firmly believed himself to be King of Naples and +pitied the grief felt by the subjects he was abandoning, latterly, +after he had been ordered to return to military service--and +especially since his last interview with Napoleon in Danzig, when +his august brother-in-law had told him: "I made you King that you +should reign in my way, but not in yours!"--he had cheerfully taken up +his familiar business, and--like a well-fed but not overfat horse that +feels himself in harness and grows skittish between the shafts--he +dressed up in clothes as variegated and expensive as possible, and +gaily and contentedly galloped along the roads of Poland, without +himself knowing why or whither. + +On seeing the Russian general he threw back his head, with its +long hair curling to his shoulders, in a majestically royal manner, +and looked inquiringly at the French colonel. The colonel respectfully +informed His Majesty of Balashev's mission, whose name he could not +pronounce. + +"De Bal-macheve!" said the King (overcoming by his assurance the +difficulty that had presented itself to the colonel). "Charmed to make +your acquaintance, General!" he added, with a gesture of kingly +condescension. + +As soon as the King began to speak loud and fast his royal dignity +instantly forsook him, and without noticing it he passed into his +natural tone of good-natured familiarity. He laid his hand on the +withers of Balashev's horse and said: + +"Well, General, it all looks like war," as if regretting a +circumstance of which he was unable to judge. + +"Your Majesty," replied Balashev, "my master, the Emperor, does +not desire war and as Your Majesty sees..." said Balashev, using the +words Your Majesty at every opportunity, with the affectation +unavoidable in frequently addressing one to whom the title was still a +novelty. + +Murat's face beamed with stupid satisfaction as he listened to +"Monsieur de Bal-macheve." But royaute oblige!* and he felt it +incumbent on him, as a king and an ally, to confer on state affairs +with Alexander's envoy. He dismounted, took Balashev's arm, and moving +a few steps away from his suite, which waited respectfully, began to +pace up and down with him, trying to speak significantly. He +referred to the fact that the Emperor Napoleon had resented the demand +that he should withdraw his troops from Prussia, especially when +that demand became generally known and the dignity of France was +thereby offended. + + +*"Royalty has its obligations." + + +Balashev replied that there was "nothing offensive in the demand, +because..." but Murat interrupted him. + +"Then you don't consider the Emperor Alexander the aggressor?" he +asked unexpectedly, with a kindly and foolish smile. + +Balashev told him why he considered Napoleon to be the originator of +the war. + +"Oh, my dear general!" Murat again interrupted him, "with all my +heart I wish the Emperors may arrange the affair between them, and +that the war begun by no wish of mine may finish as quickly as +possible!" said he, in the tone of a servant who wants to remain +good friends with another despite a quarrel between their masters. + +And he went on to inquiries about the Grand Duke and the state of +his health, and to reminiscences of the gay and amusing times he had +spent with him in Naples. Then suddenly, as if remembering his royal +dignity, Murat solemnly drew himself up, assumed the pose in which +he had stood at his coronation, and, waving his right arm, said: + +"I won't detain you longer, General. I wish success to your +mission," and with his embroidered red mantle, his flowing feathers, +and his glittering ornaments, he rejoined his suite who were +respectfully awaiting him. + +Balashev rode on, supposing from Murat's words that he would very +soon be brought before Napoleon himself. But instead of that, at the +next village the sentinels of Davout's infantry corps detained him +as the pickets of the vanguard had done, and an adjutant of the +corps commander, who was fetched, conducted him into the village to +Marshal Davout. + + + + + +CHAPTER V + + +Davout was to Napoleon what Arakcheev was to Alexander--though not a +coward like Arakcheev, he was as precise, as cruel, and as unable to +express his devotion to his monarch except by cruelty. + +In the organism of states such men are necessary, as wolves are +necessary in the organism of nature, and they always exist, always +appear and hold their own, however incongruous their presence and +their proximity to the head of the government may be. This +inevitability alone can explain how the cruel Arakcheev, who tore +out a grenadier's mustache with his own hands, whose weak nerves +rendered him unable to face danger, and who was neither an educated +man nor a courtier, was able to maintain his powerful position with +Alexander, whose own character was chivalrous, noble, and gentle. + +Balashev found Davout seated on a barrel in the shed of a +peasant's hut, writing--he was auditing accounts. Better quarters +could have been found him, but Marshal Davout was one of those men who +purposely put themselves in most depressing conditions to have a +justification for being gloomy. For the same reason they are always +hard at work and in a hurry. "How can I think of the bright side of +life when, as you see, I am sitting on a barrel and working in a dirty +shed?" the expression of his face seemed to say. The chief pleasure +and necessity of such men, when they encounter anyone who shows +animation, is to flaunt their own dreary, persistent activity. +Davout allowed himself that pleasure when Balashev was brought in. +He became still more absorbed in his task when the Russian general +entered, and after glancing over his spectacles at Balashev's face, +which was animated by the beauty of the morning and by his talk with +Murat, he did not rise or even stir, but scowled still more and +sneered malevolently. + +When he noticed in Balashev's face the disagreeable impression +this reception produced, Davout raised his head and coldly asked +what he wanted. + +Thinking he could have been received in such a manner only because +Davout did not know that he was adjutant general to the Emperor +Alexander and even his envoy to Napoleon, Balashev hastened to +inform him of his rank and mission. Contrary to his expectation, +Davout, after hearing him, became still surlier and ruder. + +"Where is your dispatch?" he inquired. "Give it to me. I will send +it to the Emperor." + +Balashev replied that he had been ordered to hand it personally to +the Emperor. + +"Your Emperor's orders are obeyed in your army, but here," said +Davout, "you must do as you're told." + +And, as if to make the Russian general still more conscious of his +dependence on brute force, Davout sent an adjutant to call the officer +on duty. + +Balashev took out the packet containing the Emperor's letter and +laid it on the table (made of a door with its hinges still hanging +on it, laid across two barrels). Davout took the packet and read the +inscription. + +"You are perfectly at liberty to treat me with respect or not," +protested Balashev, "but permit me to observe that I have the honor to +be adjutant general to His Majesty...." + +Davout glanced at him silently and plainly derived pleasure from the +signs of agitation and confusion which appeared on Balashev's face. + +"You will be treated as is fitting," said he and, putting the packet +in his pocket, left the shed. + +A minute later the marshal's adjutant, de Castres, came in and +conducted Balashev to the quarters assigned him. + +That day he dined with the marshal, at the same board on the +barrels. + +Next day Davout rode out early and, after asking Balashev to come to +him, peremptorily requested him to remain there, to move on with the +baggage train should orders come for it to move, and to talk to no one +except Monsieur de Castres. + +After four days of solitude, ennui, and consciousness of his +impotence and insignificance--particularly acute by contrast with +the sphere of power in which he had so lately moved--and after several +marches with the marshal's baggage and the French army, which occupied +the whole district, Balashev was brought to Vilna--now occupied by the +French--through the very gate by which he had left it four days +previously. + +Next day the imperial gentleman-in-waiting, the Comte de Turenne, +came to Balashev and informed him of the Emperor Napoleon's wish to +honor him with an audience. + +Four days before, sentinels of the Preobrazhensk regiment had +stood in front of the house to which Balashev was conducted, and now +two French grenadiers stood there in blue uniforms unfastened in front +and with shaggy caps on their heads, and an escort of hussars and +Uhlans and a brilliant suite of aides-de-camp, pages, and generals, +who were waiting for Napoleon to come out, were standing at the porch, +round his saddle horse and his Mameluke, Rustan. Napoleon received +Balashev in the very house in Vilna from which Alexander had +dispatched him on his mission. + + + + + +CHAPTER VI + + +Though Balashev was used to imperial pomp, he was amazed at the +luxury and magnificence of Napoleon's court. + +The Comte de Turenne showed him into a big reception room where many +generals, gentlemen-in-waiting, and Polish magnates--several of whom +Balashev had seen at the court of the Emperor of Russia--were waiting. +Duroc said that Napoleon would receive the Russian general before +going for his ride. + +After some minutes, the gentleman-in-waiting who was on duty came +into the great reception room and, bowing politely, asked Balashev +to follow him. + +Balashev went into a small reception room, one door of which led +into a study, the very one from which the Russian Emperor had +dispatched him on his mission. He stood a minute or two, waiting. He +heard hurried footsteps beyond the door, both halves of it were opened +rapidly; all was silent and then from the study the sound was heard of +other steps, firm and resolute--they were those of Napoleon. He had +just finished dressing for his ride, and wore a blue uniform, +opening in front over a white waistcoat so long that it covered his +rotund stomach, white leather breeches tightly fitting the fat +thighs of his short legs, and Hessian boots. His short hair had +evidently just been brushed, but one lock hung down in the middle of +his broad forehead. His plump white neck stood out sharply above the +black collar of his uniform, and he smelled of Eau de Cologne. His +full face, rather young-looking, with its prominent chin, wore a +gracious and majestic expression of imperial welcome. + +He entered briskly, with a jerk at every step and his head +slightly thrown back. His whole short corpulent figure with broad +thick shoulders, and chest and stomach involuntarily protruding, had +that imposing and stately appearance one sees in men of forty who live +in comfort. It was evident, too, that he was in the best of spirits +that day. + +He nodded in answer to Balashav's low and respectful bow, and coming +up to him at once began speaking like a man who values every moment of +his time and does not condescend to prepare what he has to say but +is sure he will always say the right thing and say it well. + +"Good day, General!" said he. "I have received the letter you +brought from the Emperor Alexander and am very glad to see you." He +glanced with his large eyes into Balashav's face and immediately +looked past him. + +It was plain that Balashev's personality did not interest him at +all. Evidently only what took place within his own mind interested +him. Nothing outside himself had any significance for him, because +everything in the world, it seemed to him, depended entirely on his +will. + +"I do not, and did not, desire war," he continued, "but it has +been forced on me. Even now" (he emphasized the word) "I am ready to +receive any explanations you can give me." + +And he began clearly and concisely to explain his reasons for +dissatisfaction with the Russian government. Judging by the calmly +moderate and amicable tone in which the French Emperor spoke, Balashev +was firmly persuaded that he wished for peace and intended to enter +into negotiations. + +When Napoleon, having finished speaking, looked inquiringly at the +Russian envoy, Balashev began a speech he had prepared long before: +"Sire! The Emperor, my master..." but the sight of the Emperor's +eyes bent on him confused him. "You are flurried--compose yourself!" +Napoleon seemed to say, as with a scarcely perceptible smile he looked +at Balashev's uniform and sword. + +Balashev recovered himself and began to speak. He said that the +Emperor Alexander did not consider Kurakin's demand for his +passports a sufficient cause for war; that Kurakin had acted on his +own initiative and without his sovereign's assent, that the Emperor +Alexander did not desire war, and had no relations with England. + +"Not yet!" interposed Napoleon, and, as if fearing to give vent to +his feelings, he frowned and nodded slightly as a sign that Balashev +might proceed. + +After saying all he had been instructed to say, Balashev added +that the Emperor Alexander wished for peace, but would not enter +into negotiations except on condition that... Here Balashev hesitated: +he remembered the words the Emperor Alexander had not written in his +letter, but had specially inserted in the rescript to Saltykov and had +told Balashev to repeat to Napoleon. Balashev remembered these +words, "So long as a single armed foe remains on Russian soil," but +some complex feeling restrained him. He could not utter them, though +he wished to do so. He grew confused and said: "On condition that +the French army retires beyond the Niemen." + +Napoleon noticed Balashev's embarrassment when uttering these last +words; his face twitched and the calf of his left leg began to +quiver rhythmically. Without moving from where he stood he began +speaking in a louder tone and more hurriedly than before. During the +speech that followed, Balashev, who more than once lowered his eyes, +involuntarily noticed the quivering of Napoleon's left leg which +increased the more Napoleon raised his voice. + +"I desire peace, no less than the Emperor Alexander," he began. +"Have I not for eighteen months been doing everything to obtain it? +I have waited eighteen months for explanations. But in order to +begin negotiations, what is demanded of me?" he said, frowning and +making an energetic gesture of inquiry with his small white plump +hand. + +"The withdrawal of your army beyond the Niemen, sire," replied +Balashev. + +"The Niemen?" repeated Napoleon. "So now you want me to retire +beyond the Niemen--only the Niemen?" repeated Napoleon, looking +straight at Balashev. + +The latter bowed his head respectfully. + +Instead of the demand of four months earlier to withdraw from +Pomerania, only a withdrawal beyond the Niemen was now demanded. +Napoleon turned quickly and began to pace the room. + +"You say the demand now is that I am to withdraw beyond the Niemen +before commencing negotiations, but in just the same way two months +ago the demand was that I should withdraw beyond the Vistula and the +Oder, and yet you are willing to negotiate." + +He went in silence from one corner of the room to the other and +again stopped in front of Balashev. Balashev noticed that his left leg +was quivering faster than before and his face seemed petrified in +its stern expression. This quivering of his left leg was a thing +Napoleon was conscious of. "The vibration of my left calf is a great +sign with me," he remarked at a later date. + +"Such demands as to retreat beyond the Vistula and Oder may be +made to a Prince of Baden, but not to me!" Napoleon almost screamed, +quite to his own surprise. "If you gave me Petersburg and Moscow I +could not accept such conditions. You say I have begun this war! But +who first joined his army? The Emperor Alexander, not I! And you offer +me negotiations when I have expended millions, when you are in +alliance with England, and when your position is a bad one. You +offer me negotiations! But what is the aim of your alliance with +England? What has she given you?" he continued hurriedly, evidently no +longer trying to show the advantages of peace and discuss its +possibility, but only to prove his own rectitude and power and +Alexander's errors and duplicity. + +The commencement of his speech had obviously been made with the +intention of demonstrating the advantages of his position and +showing that he was nevertheless willing to negotiate. But he had +begun talking, and the more he talked the less could he control his +words. + +The whole purport of his remarks now was evidently to exalt +himself and insult Alexander--just what he had least desired at the +commencement of the interview. + +"I hear you have made peace with Turkey?" + +Balashev bowed his head affirmatively. + +"Peace has been concluded..." he began. + +But Napoleon did not let him speak. He evidently wanted to do all +the talking himself, and continued to talk with the sort of +eloquence and unrestrained irritability to which spoiled people are so +prone. + +"Yes, I know you have made peace with the Turks without obtaining +Moldavia and Wallachia; I would have given your sovereign those +provinces as I gave him Finland. Yes," he went on, "I promised and +would have given the Emperor Alexander Moldavia and Wallachia, and now +he won't have those splendid provinces. Yet he might have united +them to his empire and in a single reign would have extended Russia +from the Gulf of Bothnia to the mouths of the Danube. Catherine the +Great could not have done more," said Napoleon, growing more and +more excited as he paced up and down the room, repeating to Balashev +almost the very words he had used to Alexander himself at Tilsit. "All +that, he would have owed to my friendship. Oh, what a splendid reign!" +he repeated several times, then paused, drew from his pocket a gold +snuffbox, lifted it to his nose, and greedily sniffed at it. + +"What a splendid reign the Emperor Alexander's might have been!" + +He looked compassionately at Balashev, and as soon as the latter +tried to make some rejoinder hastily interrupted him. + +"What could he wish or look for that he would not have obtained +through my friendship?" demanded Napoleon, shrugging his shoulders +in perplexity. "But no, he has preferred to surround himself with my +enemies, and with whom? With Steins, Armfeldts, Bennigsens, and +Wintzingerodes! Stein, a traitor expelled from his own country; +Armfeldt, a rake and an intriguer; Wintzingerode, a fugitive French +subject; Bennigsen, rather more of a soldier than the others, but +all the same an incompetent who was unable to do anything in 1807 +and who should awaken terrible memories in the Emperor Alexander's +mind.... Granted that were they competent they might be made use +of," continued Napoleon--hardly able to keep pace in words with the +rush of thoughts that incessantly sprang up, proving how right and +strong he was (in his perception the two were one and the same)- +"but they are not even that! They are neither fit for war nor peace! +Barclay is said to be the most capable of them all, but I cannot say +so, judging by his first movements. And what are they doing, all these +courtiers? Pfuel proposes, Armfeldt disputes, Bennigsen considers, and +Barclay, called on to act, does not know what to decide on, and time +passes bringing no result. Bagration alone is a military man. He's +stupid, but he has experience, a quick eye, and resolution.... And +what role is your young monarch playing in that monstrous crowd? +They compromise him and throw on him the responsibility for all that +happens. A sovereign should not be with the army unless he is a +general!" said Napoleon, evidently uttering these words as a direct +challenge to the Emperor. He knew how Alexander desired to be a +military commander. + +"The campaign began only a week ago, and you haven't even been +able to defend Vilna. You are cut in two and have been driven out of +the Polish provinces. Your army is grumbling." + +"On the contrary, Your Majesty," said Balashev, hardly able to +remember what had been said to him and following these verbal +fireworks with difficulty, "the troops are burning with eagerness..." + +"I know everything!" Napoleon interrupted him. "I know everything. I +know the number of your battalions as exactly as I know my own. You +have not two hundred thousand men, and I have three times that number. +I give you my word of honor," said Napoleon, forgetting that his +word of honor could carry no weight--"I give you my word of honor that +I have five hundred and thirty thousand men this side of the +Vistula. The Turks will be of no use to you; they are worth nothing +and have shown it by making peace with you. As for the Swedes--it is +their fate to be governed by mad kings. Their king was insane and they +changed him for another--Bernadotte, who promptly went mad--for no +Swede would ally himself with Russia unless he were mad." + +Napoleon grinned maliciously and again raised his snuffbox to his +nose. + +Balashev knew how to reply to each of Napoleon's remarks, and +would have done so; he continually made the gesture of a man wishing +to say something, but Napoleon always interrupted him. To the +alleged insanity of the Swedes, Balashev wished to reply that when +Russia is on her side Sweden is practically an island: but Napoleon +gave an angry exclamation to drown his voice. Napoleon was in that +state of irritability in which a man has to talk, talk, and talk, +merely to convince himself that he is in the right. Balashev began +to feel uncomfortable: as envoy he feared to demean his dignity and +felt the necessity of replying; but, as a man, he shrank before the +transport of groundless wrath that had evidently seized Napoleon. He +knew that none of the words now uttered by Napoleon had any +significance, and that Napoleon himself would be ashamed of them +when he came to his senses. Balashev stood with downcast eyes, looking +at the movements of Napoleon's stout legs and trying to avoid +meeting his eyes. + +"But what do I care about your allies?" said Napoleon. "I have +allies--the Poles. There are eighty thousand of them and they fight +like lions. And there will be two hundred thousand of them." + +And probably still more perturbed by the fact that he had uttered +this obvious falsehood, and that Balashev still stood silently +before him in the same attitude of submission to fate, Napoleon +abruptly turned round, drew close to Balashev's face, and, +gesticulating rapidly and energetically with his white hands, almost +shouted: + +"Know that if you stir up Prussia against me, I'll wipe it off the +map of Europe!" he declared, his face pale and distorted by anger, and +he struck one of his small hands energetically with the other. "Yes, I +will throw you back beyond the Dvina and beyond the Dnieper, and +will re-erect against you that barrier which it was criminal and blind +of Europe to allow to be destroyed. Yes, that is what will happen to +you. That is what you have gained by alienating me!" And he walked +silently several times up and down the room, his fat shoulders +twitching. + +He put his snuffbox into his waistcoat pocket, took it out again, +lifted it several times to his nose, and stopped in front of Balashev. +He paused, looked ironically straight into Balashev's eyes, and said +in a quiet voice: + +"And yet what a splendid reign your master might have had!" + +Balashev, feeling it incumbent on him to reply, said that from the +Russian side things did not appear in so gloomy a light. Napoleon +was silent, still looking derisively at him and evidently not +listening to him. Balashev said that in Russia the best results were +expected from the war. Napoleon nodded condescendingly, as if to +say, "I know it's your duty to say that, but you don't believe it +yourself. I have convinced you." + +When Balashev had ended, Napoleon again took out his snuffbox, +sniffed at it, and stamped his foot twice on the floor as a signal. +The door opened, a gentleman-in-waiting, bending respectfully, +handed the Emperor his hat and gloves; another brought him a pocket +handkerchief. Napoleon, without giving them a glance, turned to +Balashev: + +"Assure the Emperor Alexander from me," said he, taking his hat, +"that I am as devoted to him as before: I know him thoroughly and very +highly esteem his lofty qualities. I will detain you no longer, +General; you shall receive my letter to the Emperor." + +And Napoleon went quickly to the door. Everyone in the reception +room rushed forward and descended the staircase. + + + + + +CHAPTER VII + + +After all that Napoleon had said to him--those bursts of anger and +the last dryly spoken words: "I will detain you no longer, General; +you shall receive my letter," Balashev felt convinced that Napoleon +would not wish to see him, and would even avoid another meeting with +him--an insulted envoy--especially as he had witnessed his unseemly +anger. But, to his surprise, Balashev received, through Duroc, an +invitation to dine with the Emperor that day. + +Bessieres, Caulaincourt, and Berthier were present at that dinner. + +Napoleon met Balashev cheerfully and amiably. He not only showed +no sign of constraint or self-reproach on account of his outburst that +morning, but, on the contrary, tried to reassure Balashev. It was +evident that he had long been convinced that it was impossible for him +to make a mistake, and that in his perception whatever he did was +right, not because it harmonized with any idea of right and wrong, but +because he did it. + +The Emperor was in very good spirits after his ride through Vilna, +where crowds of people had rapturously greeted and followed him. +From all the windows of the streets through which he rode, rugs, +flags, and his monogram were displayed, and the Polish ladies, +welcoming him, waved their handkerchiefs to him. + +At dinner, having placed Balashev beside him, Napoleon not only +treated him amiably but behaved as if Balashev were one of his own +courtiers, one of those who sympathized with his plans and ought to +rejoice at his success. In the course of conversation he mentioned +Moscow and questioned Balashev about the Russian capital, not merely +as an interested traveler asks about a new city he intends to visit, +but as if convinced that Balashev, as a Russian, must be flattered +by his curiosity. + +"How many inhabitants are there in Moscow? How many houses? Is it +true that Moscow is called 'Holy Moscow'? How many churches are +there in Moscow?" he asked. + +And receiving the reply that there were more than two hundred +churches, he remarked: + +"Why such a quantity of churches?" + +"The Russians are very devout," replied Balashev. + +"But a large number of monasteries and churches is always a sign +of the backwardness of a people," said Napoleon, turning to +Caulaincourt for appreciation of this remark. + +Balashev respectfully ventured to disagree with the French Emperor. + +"Every country has its own character," said he. + +"But nowhere in Europe is there anything like that," said Napoleon. + +"I beg your Majesty's pardon," returned Balashev, "besides Russia +there is Spain, where there are also many churches and monasteries." + +This reply of Balashev's, which hinted at the recent defeats of +the French in Spain, was much appreciated when he related it at +Alexander's court, but it was not much appreciated at Napoleon's +dinner, where it passed unnoticed. + +The uninterested and perplexed faces of the marshals showed that +they were puzzled as to what Balashev's tone suggested. "If there is a +point we don't see it, or it is not at all witty," their expressions +seemed to say. So little was his rejoinder appreciated that Napoleon +did not notice it at all and naively asked Balashev through what towns +the direct road from there to Moscow passed. Balashev, who was on +the alert all through the dinner, replied that just as "all roads lead +to Rome," so all roads lead to Moscow: there were many roads, and +"among them the road through Poltava, which Charles XII chose." +Balashev involuntarily flushed with pleasure at the aptitude of this +reply, but hardly had he uttered the word Poltava before +Caulaincourt began speaking of the badness of the road from Petersburg +to Moscow and of his Petersburg reminiscences. + +After dinner they went to drink coffee in Napoleon's study, which +four days previously had been that of the Emperor Alexander. +Napoleon sat down, toying with his Sevres coffee cup, and motioned +Balashev to a chair beside him. + +Napoleon was in that well-known after-dinner mood which, more than +any reasoned cause, makes a man contented with himself and disposed to +consider everyone his friend. It seemed to him that he was +surrounded by men who adored him: and he felt convinced that, after +his dinner, Balashev too was his friend and worshiper. Napoleon turned +to him with a pleasant, though slightly ironic, smile. + +"They tell me this is the room the Emperor Alexander occupied? +Strange, isn't it, General?" he said, evidently not doubting that this +remark would be agreeable to his hearer since it went to prove his, +Napoleon's, superiority to Alexander. + +Balashev made no reply and bowed his head in silence. + +"Yes. Four days ago in this room, Wintzingerode and Stein were +deliberating," continued Napoleon with the same derisive and +self-confident smile. "What I can't understand," he went on, "is +that the Emperor Alexander has surrounded himself with my personal +enemies. That I do not... understand. Has he not thought that I may +the same?" and he turned inquiringly to Balashev, and evidently this +thought turned him back on to the track of his morning's anger, +which was still fresh in him. + +"And let him know that I will do so!" said Napoleon, rising and +pushing his cup away with his hand. "I'll drive all his Wurttemberg, +Baden, and Weimar relations out of Germany.... Yes. I'll drive them +out. Let him prepare an asylum for them in Russia!" + +Balashev bowed his head with an air indicating that he would like to +make his bow and leave, and only listened because he could not help +hearing what was said to him. Napoleon did not notice this expression; +he treated Balashev not as an envoy from his enemy, but as a man now +fully devoted to him and who must rejoice at his former master's +humiliation. + +"And why has the Emperor Alexander taken command of the armies? What +is the good of that? War is my profession, but his business is to +reign and not to command armies! Why has he taken on himself such a +responsibility?" + +Again Napoleon brought out his snuffbox, paced several times up +and down the room in silence, and then, suddenly and unexpectedly, +went up to Balashev and with a slight smile, as confidently, +quickly, and simply as if he were doing something not merely +important but pleasing to Balashev, he raised his hand to the +forty-year-old Russian general's face and, taking him by the ear, +pulled it gently, smiling with his lips only. + +To have one's ear pulled by the Emperor was considered the +greatest honor and mark of favor at the French court. + +"Well, adorer and courtier of the Emperor Alexander, why don't you +say anything?" said he, as if it was ridiculous, in his presence, to +be the adorer and courtier of anyone but himself, Napoleon. "Are the +horses ready for the general?" he added, with a slight inclination +of his head in reply to Balashev's bow. "Let him have mine, he has a +long way to go!" + +The letter taken by Balashev was the last Napoleon sent to +Alexander. Every detail of the interview was communicated to the +Russian monarch, and the war began... + + + + + +CHAPTER VIII + + +After his interview with Pierre in Moscow, Prince Andrew went to +Petersburg, on business as he told his family, but really to meet +Anatole Kuragin whom he felt it necessary to encounter. On reaching +Petersburg he inquired for Kuragin but the latter had already left the +city. Pierre had warned his brother-in-law that Prince Andrew was on +his track. Anatole Kuragin promptly obtained an appointment from the +Minister of War and went to join the army in Moldavia. While in +Petersburg Prince Andrew met Kutuzov, his former commander who was +always well disposed toward him, and Kutuzov suggested that he +should accompany him to the army in Moldavia, to which the old general +had been appointed commander in chief. So Prince Andrew, having +received an appointment on the headquarters staff, left for Turkey. + +Prince Andrew did not think it proper to write and challenge +Kuragin. He thought that if he challenged him without some fresh cause +it might compromise the young Countess Rostova and so he wanted to +meet Kuragin personally in order to find a fresh pretext for a duel. +But he again failed to meet Kuragin in Turkey, for soon after Prince +Andrew arrived, the latter returned to Russia. In a new country, +amid new conditions, Prince Andrew found life easier to bear. After +his betrothed had broken faith with him--which he felt the more +acutely the more he tried to conceal its effects--the surroundings +in which he had been happy became trying to him, and the freedom and +independence he had once prized so highly were still more so. Not only +could he no longer think the thoughts that had first come to him as he +lay gazing at the sky on the field of Austerlitz and had later +enlarged upon with Pierre, and which had filled his solitude at +Bogucharovo and then in Switzerland and Rome, but he even dreaded to +recall them and the bright and boundless horizons they had +revealed. He was now concerned only with the nearest practical matters +unrelated to his past interests, and he seized on these the more +eagerly the more those past interests were closed to him. It was as if +that lofty, infinite canopy of heaven that had once towered above +him had suddenly turned into a low, solid vault that weighed him down, +in which all was clear, but nothing eternal or mysterious. + +Of the activities that presented themselves to him, army service was +the simplest and most familiar. As a general on duty on Kutuzov's +staff, he applied himself to business with zeal and perseverance and +surprised Kutuzov by his willingness and accuracy in work. Not +having found Kuragin in Turkey, Prince Andrew did not think it +necessary to rush back to Russia after him, but all the same he knew +that however long it might be before he met Kuragin, despite his +contempt for him and despite all the proofs he deduced to convince +himself that it was not worth stooping to a conflict with him--he knew +that when he did meet him he would not be able to resist calling him +out, any more than a ravenous man can help snatching at food. And +the consciousness that the insult was not yet avenged, that his rancor +was still unspent, weighed on his heart and poisoned the artificial +tranquillity which he managed to obtain in Turkey by means of +restless, plodding, and rather vainglorious and ambitious activity. + +In the year 1812, when news of the war with Napoleon reached +Bucharest--where Kutuzov had been living for two months, passing his +days and nights with a Wallachian woman--Prince Andrew asked Kutuzov +to transfer him to the Western Army. Kutuzov, who was already weary of +Bolkonski's activity which seemed to reproach his own idleness, very +readily let him go and gave him a mission to Barclay de Tolly. + +Before joining the Western Army which was then, in May, encamped +at Drissa, Prince Andrew visited Bald Hills which was directly on +his way, being only two miles off the Smolensk highroad. During the +last three years there had been so many changes in his life, he had +thought, felt, and seen so much (having traveled both in the east +and the west), that on reaching Bald Hills it struck him as strange +and unexpected to find the way of life there unchanged and still the +same in every detail. He entered through the gates with their stone +pillars and drove up the avenue leading to the house as if he were +entering an enchanted, sleeping castle. The same old stateliness, +the same cleanliness, the same stillness reigned there, and inside +there was the same furniture, the same walls, sounds, and smell, and +the same timid faces, only somewhat older. Princess Mary was still the +same timid, plain maiden getting on in years, uselessly and +joylessly passing the best years of her life in fear and constant +suffering. Mademoiselle Bourienne was the same coquettish, +self-satisfied girl, enjoying every moment of her existence and full +of joyous hopes for the future. She had merely become more +self-confident, Prince Andrew thought. Dessalles, the tutor he had +brought from Switzerland, was wearing a coat of Russian cut and +talking broken Russian to the servants, but was still the same +narrowly intelligent, conscientious, and pedantic preceptor. The old +prince had changed in appearance only by the loss of a tooth, which +left a noticeable gap on one side of his mouth; in character he was +the same as ever, only showing still more irritability and +skepticism as to what was happening in the world. Little Nicholas +alone had changed. He had grown, become rosier, had curly dark hair, +and, when merry and laughing, quite unconsciously lifted the upper lip +of his pretty little mouth just as the little princess used to do. +He alone did not obey the law of immutability in the enchanted, +sleeping castle. But though externally all remained as of old, the +inner relations of all these people had changed since Prince Andrew +had seen them last. The household was divided into two alien and +hostile camps, who changed their habits for his sake and only met +because he was there. To the one camp belonged the old prince, +Madmoiselle Bourienne, and the architect; to the other Princess +Mary, Dessalles, little Nicholas, and all the old nurses and maids. + +During his stay at Bald Hills all the family dined together, but +they were ill at ease and Prince Andrew felt that he was a visitor for +whose sake an exception was being made and that his presence made them +all feel awkward. Involuntarily feeling this at dinner on the first +day, he was taciturn, and the old prince noticing this also became +morosely dumb and retired to his apartments directly after dinner. +In the evening, when Prince Andrew went to him and, trying to rouse +him, began to tell him of the young Count Kamensky's campaign, the old +prince began unexpectedly to talk about Princess Mary, blaming her for +her superstitions and her dislike of Mademoiselle Bourienne, who, he +said, was the only person really attached to him. + +The old prince said that if he was ill it was only because of +Princess Mary: that she purposely worried and irritated him, and +that by indulgence and silly talk she was spoiling little Prince +Nicholas. The old prince knew very well that he tormented his daughter +and that her life was very hard, but he also knew that he could not +help tormenting her and that she deserved it. "Why does Prince Andrew, +who sees this, say nothing to me about his sister? Does he think me +a scoundrel, or an old fool who, without any reason, keeps his own +daughter at a distance and attaches this Frenchwoman to himself? He +doesn't understand, so I must explain it, and he must hear me out," +thought the old prince. And he began explaining why he could not put +up with his daughter's unreasonable character. + +"If you ask me," said Prince Andrew, without looking up (he was +censuring his father for the first time in his life), "I did not +wish to speak about it, but as you ask me I will give you my frank +opinion. If there is any misunderstanding and discord between you +and Mary, I can't blame her for it at all. I know how she loves and +respects you. Since you ask me," continued Prince Andrew, becoming +irritable--as he was always liable to do of late--"I can only say that +if there are any misunderstandings they are caused by that worthless +woman, who is not fit to be my sister's companion." + +The old man at first stared fixedly at his son, and an unnatural +smile disclosed the fresh gap between his teeth to which Prince Andrew +could not get accustomed. + +"What companion, my dear boy? Eh? You've already been talking it +over! Eh?" + +"Father, I did not want to judge," said Prince Andrew, in a hard and +bitter tone, "but you challenged me, and I have said, and always shall +say, that Mary is not to blame, but those to blame--the one to +blame--is that Frenchwoman." + +"Ah, he has passed judgment... passed judgement!" said the old man +in a low voice and, as it seemed to Prince Andrew, with some +embarrassment, but then he suddenly jumped up and cried: "Be off, be +off! Let not a trace of you remain here!..." + + +Prince Andrew wished to leave at once, but Princess Mary persuaded +him to stay another day. That day he did not see his father, who did +not leave his room and admitted no one but Mademoiselle Bourienne +and Tikhon, but asked several times whether his son had gone. Next +day, before leaving, Prince Andrew went to his son's rooms. The boy, +curly-headed like his mother and glowing with health, sat on his knee, +and Prince Andrew began telling him the story of Bluebeard, but fell +into a reverie without finishing the story. He thought not of this +pretty child, his son whom he held on his knee, but of himself. He +sought in himself either remorse for having angered his father or +regret at leaving home for the first time in his life on bad terms +with him, and was horrified to find neither. What meant still more +to him was that he sought and did not find in himself the former +tenderness for his son which he had hoped to reawaken by caressing the +boy and taking him on his knee. + +"Well, go on!" said his son. + +Prince Andrew, without replying, put him down from his knee and went +out of the room. + +As soon as Prince Andrew had given up his daily occupations, and +especially on returning to the old conditions of life amid which he +had been happy, weariness of life overcame him with its former +intensity, and he hastened to escape from these memories and to find +some work as soon as possible. + +"So you've decided to go, Andrew?" asked his sister. + +"Thank God that I can," replied Prince Andrew. "I am very sorry +you can't." + +"Why do you say that?" replied Princess Mary. "Why do you say +that, when you are going to this terrible war, and he is so old? +Mademoiselle Bourienne says he has been asking about you...." + +As soon as she began to speak of that, her lips trembled and her +tears began to fall. Prince Andrew turned away and began pacing the +room. + +"Ah, my God! my God! When one thinks who and what--what trash--can +cause people misery!" he said with a malignity that alarmed Princess +Mary. + +She understood that when speaking of "trash" he referred not only to +Mademoiselle Bourienne, the cause of her misery, but also to the man +who had ruined his own happiness. + +"Andrew! One thing I beg, I entreat of you!" she said, touching +his elbow and looking at him with eyes that shone through her tears. +"I understand you" (she looked down). "Don't imagine that sorrow is +the work of men. Men are His tools." She looked a little above +Prince Andrew's head with the confident, accustomed look with which +one looks at the place where a familiar portrait hangs. "Sorrow is +sent by Him, not by men. Men are His instruments, they are not to +blame. If you think someone has wronged you, forget it and forgive! We +have no right to punish. And then you will know the happiness of +forgiving." + +"If I were a woman I would do so, Mary. That is a woman's virtue. +But a man should not and cannot forgive and forget," he replied, and +though till that moment he had not been thinking of Kuragin, all his +unexpended anger suddenly swelled up in his heart. + +"If Mary is already persuading me forgive, it means that I ought +long ago to have punished him," he thought. And giving her no +further reply, he began thinking of the glad vindictive moment when he +would meet Kuragin who he knew was now in the army. + +Princess Mary begged him to stay one day more, saying that she +knew how unhappy her father would be if Andrew left without being +reconciled to him, but Prince Andrew replied that he would probably +soon be back again from the army and would certainly write to his +father, but that the longer he stayed now the more embittered their +differences would become. + +"Good-by, Andrew! Remember that misfortunes come from God, and men +are never to blame," were the last words he heard from his sister when +he took leave of her. + +"Then it must be so!" thought Prince Andrew as he drove out of the +avenue from the house at Bald Hills. "She, poor innocent creature, +is left to be victimized by an old man who has outlived his wits. +The old man feels he is guilty, but cannot change himself. My boy is +growing up and rejoices in life, in which like everybody else he +will deceive or be deceived. And I am off to the army. Why? I myself +don't know. I want to meet that man whom I despise, so as to give +him a chance to kill and laugh at me!" + +These conditions of life had been the same before, but then they +were all connected, while now they had all tumbled to pieces. Only +senseless things, lacking coherence, presented themselves one after +another to Prince Andrew's mind. + + + + + +CHAPTER IX + + +Prince Andrew reached the general headquarters of the army at the +end of June. The first army, with which was the Emperor, occupied +the fortified camp at Drissa; the second army was retreating, trying +to effect a junction with the first one from which it was said to be +cut off by large French forces. Everyone was dissatisfied with the +general course of affairs in the Russian army, but no one +anticipated any danger of invasion of the Russian provinces, and no +one thought the war would extend farther than the western, the Polish, +provinces. + +Prince Andrew found Barclay de Tolly, to whom he had been +assigned, on the bank of the Drissa. As there was not a single town or +large village in the vicinity of the camp, the immense number of +generals and courtiers accompanying the army were living in the best +houses of the villages on both sides of the river, over a radius of +six miles. Barclay de Tolly was quartered nearly three miles from +the Emperor. He received Bolkonski stiffly and coldly and told him +in his foreign accent that he would mention him to the Emperor for a +decision as to his employment, but asked him meanwhile to remain on +his staff. Anatole Kuragin, whom Prince Andrew had hoped to find +with the army, was not there. He had gone to Petersburg, but Prince +Andrew was glad to hear this. His mind was occupied by the interests +of the center that was conducting a gigantic war, and he was glad to +be free for a while from the distraction caused by the thought of +Kuragin. During the first four days, while no duties were required +of him, Prince Andrew rode round the whole fortified camp and, by +the aid of his own knowledge and by talks with experts, tried to +form a definite opinion about it. But the question whether the camp +was advantageous or disadvantageous remained for him undecided. +Already from his military experience and what he had seen in the +Austrian campaign, he had come to the conclusion that in war the +most deeply considered plans have no significance and that all depends +on the way unexpected movements of the enemy--that cannot be foreseen- +are met, and on how and by whom the whole matter is handled. To +clear up this last point for himself, Prince Andrew, utilizing his +position and acquaintances, tried to fathom the character of the +control of the army and of the men and parties engaged in it, and he +deduced for himself the following of the state of affairs. + +While the Emperor had still been at Vilna, the forces had been +divided into three armies. First, the army under Barclay de Tolly, +secondly, the army under Bagration, and thirdly, the one commanded +by Tormasov. The Emperor was with the first army, but not as commander +in chief. In the orders issued it was stated, not that the Emperor +would take command, but only that he would be with the army. The +Emperor, moreover, had with him not a commander in chief's staff but +the imperial headquarters staff. In attendance on him was the head +of the imperial staff, Quartermaster General Prince Volkonski, as well +as generals, imperial aides-de-camp, diplomatic officials, and a large +number of foreigners, but not the army staff. Besides these, there +were in attendance on the Emperor without any definite appointments: +Arakcheev, the ex-Minister of War; Count Bennigsen, the senior general +in rank; the Grand Duke Tsarevich Constantine Pavlovich; Count +Rumyantsev, the Chancellor; Stein, a former Prussian minister; +Armfeldt, a Swedish general; Pfuel, the chief author of the plan of +campaign; Paulucci, an adjutant general and Sardinian emigre; +Wolzogen--and many others. Though these men had no military +appointment in the army, their position gave them influence, and often +a corps commander, or even the commander in chief, did not know in +what capacity he was questioned by Bennigsen, the Grand Duke, +Arakcheev, or Prince Volkonski, or was given this or that advice and +did not know whether a certain order received in the form of advice +emanated from the man who gave it or from the Emperor and whether it +had to be executed or not. But this was only the external condition; +the essential significance of the presence of the Emperor and of all +these people, from a courtier's point of view (and in an Emperor's +vicinity all became courtiers), was clear to everyone. It was this: +the Emperor did not assume the title of commander in chief, but +disposed of all the armies; the men around him were his assistants. +Arakcheev was a faithful custodian to enforce order and acted as the +sovereign's bodyguard. Bennigsen was a landlord in the Vilna +province who appeared to be doing the honors of the district, but +was in reality a good general, useful as an adviser and ready at +hand to replace Barclay. The Grand Duke was there because it suited +him to be. The ex-Minister Stein was there because his advice was +useful and the Emperor Alexander held him in high esteem personally. +Armfeldt virulently hated Napoleon and was a general full of +self-confidence, a quality that always influenced Alexander. +Paulucci was there because he was bold and decided in speech. The +adjutants general were there because they always accompanied the +Emperor, and lastly and chiefly Pfuel was there because he had drawn +up the plan of campaign against Napoleon and, having induced Alexander +to believe in the efficacy of that plan, was directing the whole +business of the war. With Pfuel was Wolzogen, who expressed Pfuel's +thoughts in a more comprehensible way than Pfuel himself (who was a +harsh, bookish theorist, self-confident to the point of despising +everyone else) was able to do. + +Besides these Russians and foreigners who propounded new and +unexpected ideas every day--especially the foreigners, who did so with +a boldness characteristic of people employed in a country not their +own--there were many secondary personages accompanying the army +because their principals were there. + +Among the opinions and voices in this immense, restless, +brilliant, and proud sphere, Prince Andrew noticed the following +sharply defined subdivisions of and parties: + +The first party consisted of Pfuel and his adherents--military +theorists who believed in a science of war with immutable laws--laws +of oblique movements, outflankings, and so forth. Pfuel and his +adherents demanded a retirement into the depths of the country in +accordance with precise laws defined by a pseudo-theory of war, and +they saw only barbarism, ignorance, or evil intention in every +deviation from that theory. To this party belonged the foreign nobles, +Wolzogen, Wintzingerode, and others, chiefly Germans. + +The second party was directly opposed to the first; one extreme, +as always happens, was met by representatives of the other. The +members of this party were those who had demanded an advance from +Vilna into Poland and freedom from all prearranged plans. Besides +being advocates of bold action, this section also represented +nationalism, which made them still more one-sided in the dispute. They +were Russians: Bagration, Ermolov (who was beginning to come to the +front), and others. At that time a famous joke of Ermolov's was +being circulated, that as a great favor he had petitioned the +Emperor to make him a German. The men of that party, remembering +Suvorov, said that what one had to do was not to reason, or stick pins +into maps, but to fight, beat the enemy, keep him out of Russia, and +not let the army get discouraged. + +To the third party--in which the Emperor had most confidence- +belonged the courtiers who tried to arrange compromises between the +other two. The members of this party, chiefly civilians and to whom +Arakcheev belonged, thought and said what men who have no +convictions but wish to seem to have some generally say. They said +that undoubtedly war, particularly against such a genius as +Bonaparte (they called him Bonaparte now), needs most deeply devised +plans and profound scientific knowledge and in that respect Pfuel +was a genius, but at the same time it had to be acknowledged that +the theorists are often one sided, and therefore one should not +trust them absolutely, but should also listen to what Pfuel's +opponents and practical men of experience in warfare had to say, and +then choose a middle course. They insisted on the retention of the +camp at Drissa, according to Pfuel's plan, but on changing the +movements of the other armies. Though, by this course, neither one aim +nor the other could be attained, yet it seemed best to the adherents +of this third party. + +Of a fourth opinion the most conspicuous representative was the +Tsarevich, who could not forget his disillusionment at Austerlitz, +where he had ridden out at the head of the Guards, in his casque and +cavalry uniform as to a review, expecting to crush the French +gallantly; but unexpectedly finding himself in the front line had +narrowly escaped amid the general confusion. The men of this party had +both the quality and the defect of frankness in their opinions. They +feared Napoleon, recognized his strength and their own weakness, and +frankly said so. They said: "Nothing but sorrow, shame, and ruin +will come of all this! We have abandoned Vilna and Vitebsk and shall +abandon Drissa. The only reasonable thing left to do is to conclude +peace as soon as possible, before we are turned out of Petersburg." + +This view was very general in the upper army circles and found +support also in Petersburg and from the chancellor, Rumyantsev, who, +for other reasons of state, was in favor of peace. + +The fifth party consisted of those who were adherents of Barclay +de Tolly, not so much as a man but as minister of war and commander in +chief. "Be he what he may" (they always began like that), "he is an +honest, practical man and we have nobody better. Give him real +power, for war cannot be conducted successfully without unity of +command, and he will show what he can do, as he did in Finland. If our +army is well organized and strong and has withdrawn to Drissa +without suffering any defeats, we owe this entirely to Barclay. If +Barclay is now to be superseded by Bennigsen all will be lost, for +Bennigsen showed his incapacity already in 1807." + +The sixth party, the Bennigsenites, said, on the contrary, that at +any rate there was no one more active and experienced than +Bennigsen: "and twist about as you may, you will have to come to +Bennigsen eventually. Let the others make mistakes now!" said they, +arguing that our retirement to Drissa was a most shameful reverse +and an unbroken series of blunders. "The more mistakes that are made +the better. It will at any rate be understood all the sooner that +things cannot go on like this. What is wanted is not some Barclay or +other, but a man like Bennigsen, who made his mark in 1807, and to +whom Napoleon himself did justice--a man whose authority would be +willingly recognized, and Bennigsen is the only such man." + +The seventh party consisted of the sort of people who are always +to be found, especially around young sovereigns, and of whom there +were particularly many round Alexander--generals and imperial +aides-de-camp passionately devoted to the Emperor, not merely as a +monarch but as a man, adoring him sincerely and disinterestedly, as +Rostov had done in 1805, and who saw in him not only all the virtues +but all human capabilities as well. These men, though enchanted with +the sovereign for refusing the command of the army, yet blamed him for +such excessive modesty, and only desired and insisted that their +adored sovereign should abandon his diffidence and openly announce +that he would place himself at the head of the army, gather round +him a commander in chief's staff, and, consulting experienced +theoreticians and practical men where necessary, would himself lead +the troops, whose spirits would thereby be raised to the highest +pitch. + +The eighth and largest group, which in its enormous numbers was to +the others as ninety-nine to one, consisted of men who desired neither +peace nor war, neither an advance nor a defensive camp at the Drissa +or anywhere else, neither Barclay nor the Emperor, neither Pfuel nor +Bennigsen, but only the one most essential thing--as much advantage +and pleasure for themselves as possible. In the troubled waters of +conflicting and intersecting intrigues that eddied about the Emperor's +headquarters, it was possible to succeed in many ways unthinkable at +other times. A man who simply wished to retain his lucrative post +would today agree with Pfuel, tomorrow with his opponent, and the +day after, merely to avoid responsibility or to please the Emperor, +would declare that he had no opinion at all on the matter. Another who +wished to gain some advantage would attract the Emperor's attention by +loudly advocating the very thing the Emperor had hinted at the day +before, and would dispute and shout at the council, beating his breast +and challenging those who did not agree with him to duels, thereby +proving that he was prepared to sacrifice himself for the common good. +A third, in the absence of opponents, between two councils would +simply solicit a special gratuity for his faithful services, well +knowing that at that moment people would be too busy to refuse him. +A fourth while seemingly overwhelmed with work would often come +accidentally under the Emperor's eye. A fifth, to achieve his +long-cherished aim of dining with the Emperor, would stubbornly insist +on the correctness or falsity of some newly emerging opinion and for +this object would produce arguments more or less forcible and correct. + +All the men of this party were fishing for rubles, decorations, +and promotions, and in this pursuit watched only the weathercock of +imperial favor, and directly they noticed it turning in any direction, +this whole drone population of the army began blowing hard that way, +so that it was all the harder for the Emperor to turn it elsewhere. +Amid the uncertainties of the position, with the menace of serious +danger giving a peculiarly threatening character to everything, amid +this vortex of intrigue, egotism, conflict of views and feelings, +and the diversity of race among these people--this eighth and +largest party of those preoccupied with personal interests imparted +great confusion and obscurity to the common task. Whatever question +arose, a swarm of these drones, without having finished their +buzzing on a previous theme, flew over to the new one and by their hum +drowned and obscured the voices of those who were disputing honestly. + +From among all these parties, just at the time Prince Andrew reached +the army, another, a ninth party, was being formed and was beginning +to raise its voice. This was the party of the elders, reasonable men +experienced and capable in state affairs, who, without sharing any +of those conflicting opinions, were able to take a detached view of +what was going on at the staff at headquarters and to consider means +of escape from this muddle, indecision, intricacy, and weakness. + +The men of this party said and thought that what was wrong +resulted chiefly from the Emperor's presence in the army with his +military court and from the consequent presence there of an +indefinite, conditional, and unsteady fluctuation of relations, +which is in place at court but harmful in an army; that a sovereign +should reign but not command the army, and that the only way out of +the position would be for the Emperor and his court to leave the army; +that the mere presence of the Emperor paralyzed the action of fifty +thousand men required to secure his personal safety, and that the +worst commander in chief if independent would be better than the +very best one trammeled by the presence and authority of the monarch. + +Just at the time Prince Andrew was living unoccupied at Drissa, +Shishkov, the Secretary of State and one of the chief +representatives of this party, wrote a letter to the Emperor which +Arakcheev and Balashev agreed to sign. In this letter, availing +himself of permission given him by the Emperor to discuss the +general course of affairs, he respectfully suggested--on the plea that +it was necessary for the sovereign to arouse a warlike spirit in the +people of the capital--that the Emperor should leave the army. + +That arousing of the people by their sovereign and his call to +them to defend their country--the very incitement which was the +chief cause of Russia's triumph in so far as it was produced by the +Tsar's personal presence in Moscow--was suggested to the Emperor, +and accepted by him, as a pretext for quitting the army. + + + + + +CHAPTER X + + +This letter had not yet been presented to the Emperor when +Barclay, one day at dinner, informed Bolkonski that the sovereign +wished to see him personally, to question him about Turkey, and that +Prince Andrew was to present himself at Bennigsen's quarters at six +that evening. + +News was received at the Emperor's quarters that very day of a fresh +movement by Napoleon which might endanger the army--news +subsequently found to be false. And that morning Colonel Michaud had +ridden round the Drissa fortifications with the Emperor and had +pointed out to him that this fortified camp constructed by Pfuel, +and till then considered a chef-d'oeuvre of tactical science which +would ensure Napoleon's destruction, was an absurdity, threatening the +destruction of the Russian army. + +Prince Andrew arrived at Bennigsen's quarters--a country gentleman's +house of moderate size, situated on the very banks of the river. +Neither Bennigsen nor the Emperor was there, but Chernyshev, the +Emperor's aide-de-camp, received Bolkonski and informed him that the +Emperor, accompanied by General Bennigsen and Marquis Paulucci, had +gone a second time that day to inspect the fortifications of the +Drissa camp, of the suitability of which serious doubts were beginning +to be felt. + +Chernyshev was sitting at a window in the first room with a French +novel in his hand. This room had probably been a music room; there was +still an organ in it on which some rugs were piled, and in one +corner stood the folding bedstead of Bennigsen's adjutant. This +adjutant was also there and sat dozing on the rolled-up bedding, +evidently exhausted by work or by feasting. Two doors led from the +room, one straight on into what had been the drawing room, and +another, on the right, to the study. Through the first door came the +sound of voices conversing in German and occasionally in French. In +that drawing room were gathered, by the Emperor's wish, not a military +council (the Emperor preferred indefiniteness), but certain persons +whose opinions he wished to know in view of the impending +difficulties. It was not a council of war, but, as it were, a +council to elucidate certain questions for the Emperor personally. +To this semicouncil had been invited the Swedish General Armfeldt, +Adjutant General Wolzogen, Wintzingerode (whom Napoleon had referred +to as a renegade French subject), Michaud, Toll, Count Stein who was +not a military man at all, and Pfuel himself, who, as Prince Andrew +had heard, was the mainspring of the whole affair. Prince Andrew had +an opportunity of getting a good look at him, for Pfuel arrived soon +after himself and, in passing through to the drawing room, stopped a +minute to speak to Chernyshev. + +At first sight, Pfuel, in his ill-made uniform of a Russian general, +which fitted him badly like a fancy costume, seemed familiar to Prince +Andrew, though he saw him now for the first time. There was about +him something of Weyrother, Mack, and Schmidt, and many other German +theorist-generals whom Prince Andrew had seen in 1805, but he was more +typical than any of them. Prince Andrew had never yet seen a German +theorist in whom all the characteristics of those others were united +to such an extent. + +Pfuel was short and very thin but broad-boned, of coarse, robust +build, broad in the hips, and with prominent shoulder blades. His face +was much wrinkled and his eyes deep set. His hair had evidently been +hastily brushed smooth in front of the temples, but stuck up behind in +quaint little tufts. He entered the room, looking restlessly and +angrily around, as if afraid of everything in that large apartment. +Awkwardly holding up his sword, he addressed Chernyshev and asked in +German where the Emperor was. One could see that he wished to pass +through the rooms as quickly as possible, finish with the bows and +greetings, and sit down to business in front of a map, where he +would feel at home. He nodded hurriedly in reply to Chernyshev, and +smiled ironically on hearing that the sovereign was inspecting the +fortifications that he, Pfuel, had planned in accord with his +theory. He muttered something to himself abruptly and in a bass voice, +as self-assured Germans do--it might have been "stupid fellow"... or +"the whole affair will be ruined," or "something absurd will come of +it."... Prince Andrew did not catch what he said and would have passed +on, but Chernyshev introduced him to Pfuel, remarking that Prince +Andrew was just back from Turkey where the war had terminated so +fortunately. Pfuel barely glanced--not so much at Prince Andrew as +past him--and said, with a laugh: "That must have been a fine tactical +war"; and, laughing contemptuously, went on into the room from which +the sound of voices was heard. + +Pfuel, always inclined to be irritably sarcastic, was particularly +disturbed that day, evidently by the fact that they had dared to +inspect and criticize his camp in his absence. From this short +interview with Pfuel, Prince Andrew, thanks to his Austerlitz +experiences, was able to form a clear conception of the man. Pfuel was +one of those hopelessly and immutably self-confident men, +self-confident to the point of martyrdom as only Germans are, +because only Germans are self-confident on the basis of an abstract +notion--science, that is, the supposed knowledge of absolute truth. +A Frenchman is self-assured because he regards himself personally, +both in mind and body, as irresistibly attractive to men and women. An +Englishman is self-assured, as being a citizen of the best-organized +state in the world, and therefore as an Englishman always knows what +he should do and knows that all he does as an Englishman is +undoubtedly correct. An Italian is self-assured because he is +excitable and easily forgets himself and other people. A Russian is +self-assured just because he knows nothing does not want to know +anything, since he does not believe that anything can be known. The +German's self-assurance is worst of all, stronger and more repulsive +than any other, because he imagines that he knows the truth- +science--which he himself has invented but which is for him the +absolute truth. + +Pfuel was evidently of that sort. He had a science--the theory of +oblique movements deduced by him from the history of Frederick the +Great's wars, and all he came across in the history of more recent +warfare seemed to him absurd and barbarous--monstrous collisions in +which so many blunders were committed by both sides that these wars +could not be called wars, they did not accord with the theory, and +therefore could not serve as material for science. + +In 1806 Pfuel had been one of those responsible, for the plan of +campaign that ended in Jena and Auerstadt, but he did not see the +least proof of the fallibility of his theory in the disasters of +that war. On the contrary, the deviations made from his theory were, +in his opinion, the sole cause of the whole disaster, and with +characteristically gleeful sarcasm he would remark, "There, I said the +whole affair would go to the devil!" Pfuel was one of those +theoreticians who so love their theory that they lose sight of the +theory's object--its practical application. His love of theory made +him hate everything practical, and he would not listen to it. He was +even pleased by failures, for failures resulting from deviations in +practice from the theory only proved to him the accuracy of his +theory. + +He said a few words to Prince Andrew and Chernyshev about the +present war, with the air of a man who knows beforehand that all +will go wrong, and who is not displeased that it should be so. The +unbrushed tufts of hair sticking up behind and the hastily brushed +hair on his temples expressed this most eloquently. + +He passed into the next room, and the deep, querulous sounds of +his voice were at once heard from there. + + + + + +CHAPTER XI + + +Prince Andrew's eyes were still following Pfuel out of the room when +Count Bennigsen entered hurriedly, and nodding to Bolkonski, but not +pausing, went into the study, giving instructions to his adjutant as +he went. The Emperor was following him, and Bennigsen had hastened +on to make some preparations and to be ready to receive the sovereign. +Chernyshev and Prince Andrew went out into the porch, where the +Emperor, who looked fatigued, was dismounting. Marquis Paulucci was +talking to him with particular warmth and the Emperor, with his head +bent to the left, was listening with a dissatisfied air. The Emperor +moved forward evidently wishing to end the conversation, but the +flushed and excited Italian, oblivious of decorum, followed him and +continued to speak. + +"And as for the man who advised forming this camp--the Drissa camp," +said Paulucci, as the Emperor mounted the steps and noticing Prince +Andrew scanned his unfamiliar face, "as to that person, sire..." +continued Paulucci, desperately, apparently unable to restrain +himself, "the man who advised the Drissa camp--I see no alternative +but the lunatic asylum or the gallows!" + +Without heeding the end of the Italian's remarks, and as though +not hearing them, the Emperor, recognizing Bolkonski, addressed him +graciously. + +"I am very glad to see you! Go in there where they are meeting, +and wait for me." + +The Emperor went into the study. He was followed by Prince Peter +Mikhaylovich Volkonski and Baron Stein, and the door closed behind +them. Prince Andrew, taking advantage of the Emperor's permission, +accompanied Paulucci, whom he had known in Turkey, into the drawing +room where the council was assembled. + +Prince Peter Mikhaylovich Volkonski occupied the position, as it +were, of chief of the Emperor's staff. He came out of the study into +the drawing room with some maps which he spread on a table, and put +questions on which he wished to hear the opinion of the gentlemen +present. What had happened was that news (which afterwards proved to +be false) had been received during the night of a movement by the +French to outflank the Drissa camp. + +The first to speak was General Armfeldt who, to meet the +difficulty that presented itself, unexpectedly proposed a perfectly +new position away from the Petersburg and Moscow roads. The reason for +this was inexplicable (unless he wished to show that he, too, could +have an opinion), but he urged that at this point the army should +unite and there await the enemy. It was plain that Armfeldt had +thought out that plan long ago and now expounded it not so much to +answer the questions put--which, in fact, his plan did not answer- +as to avail himself of the opportunity to air it. It was one of the +millions of proposals, one as good as another, that could be made as +long as it was quite unknown what character the war would take. Some +disputed his arguments, others defended them. Young Count Toll +objected to the Swedish general's views more warmly than anyone +else, and in the course of the dispute drew from his side pocket a +well-filled notebook, which he asked permission to read to them. In +these voluminous notes Toll suggested another scheme, totally +different from Armfeldt's or Pfuel's plan of campaign. In answer to +Toll, Paulucci suggested an advance and an attack, which, he urged, +could alone extricate us from the present uncertainty and from the +trap (as he called the Drissa camp) in which we were situated. + +During all these discussions Pfuel and his interpreter, Wolzogen +(his "bridge" in court relations), were silent. Pfuel only snorted +contemptuously and turned away, to show that he would never demean +himself by replying to such nonsense as he was now hearing. So when +Prince Volkonski, who was in the chair, called on him to give his +opinion, he merely said: + +"Why ask me? General Armfeldt has proposed a splendid position +with an exposed rear, or why not this Italian gentleman's attack--very +fine, or a retreat, also good! Why ask me?" said he. "Why, you +yourselves know everything better than I do." + +But when Volkonski said, with a frown, that it was in the +Emperor's name that he asked his opinion, Pfuel rose and, suddenly +growing animated, began to speak: + +"Everything has been spoiled, everything muddled, everybody +thought they knew better than I did, and now you come to me! How +mend matters? There is nothing to mend! The principles laid down by me +must be strictly adhered to," said he, drumming on the table with +his bony fingers. "What is the difficulty? Nonsense, childishness!" + +He went up to the map and speaking rapidly began proving that no +eventuality could alter the efficiency of the Drissa camp, that +everything had been foreseen, and that if the enemy were really +going to outflank it, the enemy would inevitably be destroyed. + +Paulucci, who did not know German, began questioning him in +French. Wolzogen came to the assistance of his chief, who spoke French +badly, and began translating for him, hardly able to keep pace with +Pfuel, who was rapidly demonstrating that not only all that had +happened, but all that could happen, had been foreseen in his +scheme, and that if there were now any difficulties the whole fault +lay in the fact that his plan had not been precisely executed. He kept +laughing sarcastically, he demonstrated, and at last contemptuously +ceased to demonstrate, like a mathematician who ceases to prove in +various ways the accuracy of a problem that has already been proved. +Wolzogen took his place and continued to explain his views in +French, every now and then turning to Pfuel and saying, "Is it not so, +your excellency?" But Pfuel, like a man heated in a fight who + +strikes those on his own side, shouted angrily at his own supporter, +Wolzogen: + +"Well, of course, what more is there to explain?" + +Paulucci and Michaud both attacked Wolzogen simultaneously in +French. Armfeldt addressed Pfuel in German. Toll explained to +Volkonski in Russian. Prince Andrew listened and observed in silence. + +Of all these men Prince Andrew sympathized most with Pfuel, angry, +determined, and absurdly self-confident as he was. Of all those +present, evidently he alone was not seeking anything for himself, +nursed no hatred against anyone, and only desired that the plan, +formed on a theory arrived at by years of toil, should be carried out. +He was ridiculous, and unpleasantly sarcastic, but yet he inspired +involuntary respect by his boundless devotion to an idea. Besides +this, the remarks of all except Pfuel had one common trait that had +not been noticeable at the council of war in 1805: there was now a +panic fear of Napoleon's genius, which, though concealed, was +noticeable in every rejoinder. Everything was assumed to be possible +for Napoleon, they expected him from every side, and invoked his +terrible name to shatter each other's proposals. Pfuel alone seemed to +consider Napoleon a barbarian like everyone else who opposed his +theory. But besides this feeling of respect, Pfuel evoked pity in +Prince Andrew. From the tone in which the courtiers addressed him +and the way Paulucci had allowed himself to speak of him to the +Emperor, but above all from a certain desperation in Pfuel's own +expressions, it was clear that the others knew, and Pfuel himself +felt, that his fall was at hand. And despite his self-confidence and +grumpy German sarcasm he was pitiable, with his hair smoothly +brushed on the temples and sticking up in tufts behind. Though he +concealed the fact under a show of irritation and contempt, he was +evidently in despair that the sole remaining chance of verifying his +theory by a huge experiment and proving its soundness to the whole +world was slipping away from him. + +The discussions continued a long time, and the longer they lasted +the more heated became the disputes, culminating in shouts and +personalities, and the less was it possible to arrive at any general +conclusion from all that had been said. Prince Andrew, listening to +this polyglot talk and to these surmises, plans, refutations, and +shouts, felt nothing but amazement at what they were saying. A thought +that had long since and often occurred to him during his military +activities--the idea that there is not and cannot be any science of +war, and that therefore there can be no such thing as a military +genius--now appeared to him an obvious truth. "What theory and science +is possible about a matter the conditions and circumstances of which +are unknown and cannot be defined, especially when the strength of the +acting forces cannot be ascertained? No one was or is able to +foresee in what condition our or the enemy's armies will be in a day's +time, and no one can gauge the force of this or that detachment. +Sometimes--when there is not a coward at the front to shout, 'We are +cut off!' and start running, but a brave and jolly lad who shouts, +'Hurrah!'--a detachment of five thousand is worth thirty thousand, +as at Schon Grabern, while at times fifty thousand run from eight +thousand, as at Austerlitz. What science can there be in a matter in +which, as in all practical matters, nothing can be defined and +everything depends on innumerable conditions, the significance of +which is determined at a particular moment which arrives no one +knows when? Armfeldt says our army is cut in half, and Paulucci says +we have got the French army between two fires; Michaud says that the +worthlessness of the Drissa camp lies in having the river behind it, +and Pfuel says that is what constitutes its strength; Toll proposes +one plan, Armfeldt another, and they are all good and all bad, and the +advantages of any suggestions can be seen only at the moment of trial. +And why do they all speak of a 'military genius'? Is a man a genius +who can order bread to be brought up at the right time and say who +is to go to the right and who to the left? It is only because military +men are invested with pomp and power and crowds of sychophants flatter +power, attributing to it qualities of genius it does not possess. +The best generals I have known were, on the contrary, stupid or +absent-minded men. Bagration was the best, Napoleon himself admitted +that. And of Bonaparte himself! I remember his limited, self-satisfied +face on the field of Austerlitz. Not only does a good army commander +not need any special qualities, on the contrary he needs the absence +of the highest and best human attributes--love, poetry, tenderness, +and philosophic inquiring doubt. He should be limited, firmly +convinced that what he is doing is very important (otherwise he will +not have sufficient patience), and only then will he be a brave +leader. God forbid that he should be humane, should love, or pity, +or think of what is just and unjust. It is understandable that a +theory of their 'genius' was invented for them long ago because they +have power! The success of a military action depends not on them, +but on the man in the ranks who shouts, 'We are lost!' or who +shouts, 'Hurrah!' And only in the ranks can one serve with assurance +of being useful." + +So thought Prince Andrew as he listened to the talking, and he +roused himself only when Paulucci called him and everyone was leaving. + +At the review next day the Emperor asked Prince Andrew where he +would like to serve, and Prince Andrew lost his standing in court +circles forever by not asking to remain attached to the sovereign's +person, but for permission to serve in the army. + + + + + +CHAPTER XII + + +Before the beginning of the campaign, Rostov had received a letter +from his parents in which they told him briefly of Natasha's illness +and the breaking off of her engagement to Prince Andrew (which they +explained by Natasha's having rejected him) and again asked Nicholas +to retire from the army and return home. On receiving this letter, +Nicholas did not even make any attempt to get leave of absence or to +retire from the army, but wrote to his parents that he was sorry +Natasha was ill and her engagement broken off, and that he would do +all he could to meet their wishes. To Sonya he wrote separately. + +"Adored friend of my soul!" he wrote. "Nothing but honor could +keep me from returning to the country. But now, at the commencement of +the campaign, I should feel dishonored, not only in my comrades' +eyes but in my own, if I preferred my own happiness to my love and +duty to the Fatherland. But this shall be our last separation. Believe +me, directly the war is over, if I am still alive and still loved by +you, I will throw up everything and fly to you, to press you forever +to my ardent breast." + +It was, in fact, only the commencement of the campaign that +prevented Rostov from returning home as he had promised and marrying +Sonya. The autumn in Otradnoe with the hunting, and the winter with +the Christmas holidays and Sonya's love, had opened out to him a vista +of tranquil rural joys and peace such as he had never known before, +and which now allured him. "A splendid wife, children, a good pack +of hounds, a dozen leashes of smart borzois, agriculture, neighbors, +service by election..." thought he. But now the campaign was +beginning, and he had to remain with his regiment. And since it had to +be so, Nicholas Rostov, as was natural to him, felt contented with the +life he led in the regiment and was able to find pleasure in that +life. + +On his return from his furlough Nicholas, having been joyfully +welcomed by his comrades, was sent to obtain remounts and brought back +from the Ukraine excellent horses which pleased him and earned him +commendation from his commanders. During his absence he had been +promoted captain, and when the regiment was put on war footing with an +increase in numbers, he was again allotted his old squadron. + +The campaign began, the regiment was moved into Poland on double +pay, new officers arrived, new men and horses, and above all everybody +was infected with the merrily excited mood that goes with the +commencement of a war, and Rostov, conscious of his advantageous +position in the regiment, devoted himself entirely to the pleasures +and interests of military service, though he knew that sooner or later +he would have to relinquish them. + +The troops retired from Vilna for various complicated reasons of +state, political and strategic. Each step of the retreat was +accompanied by a complicated interplay of interests, arguments, and +passions at headquarters. For the Pavlograd hussars, however, the +whole of this retreat during the finest period of summer and with +sufficient supplies was a very simple and agreeable business. + +It was only at headquarters that there was depression, uneasiness, +and intriguing; in the body of the army they did not ask themselves +where they were going or why. If they regretted having to retreat, +it was only because they had to leave billets they had grown +accustomed to, or some pretty young Polish lady. If the thought that +things looked bad chanced to enter anyone's head, he tried to be as +cheerful as befits a good soldier and not to think of the general +trend of affairs, but only of the task nearest to hand. First they +camped gaily before Vilna, making acquaintance with the Polish +landowners, preparing for reviews and being reviewed by the Emperor +and other high commanders. Then came an order to retreat to Sventsyani +and destroy any provisions they could not carry away with them. +Sventsyani was remembered by the hussars only as the drunken camp, a +name the whole army gave to their encampment there, and because many +complaints were made against the troops, who, taking advantage of +the order to collect provisions, took also horses, carriages, and +carpets from the Polish proprietors. Rostov remembered Sventsyani, +because on the first day of their arrival at that small town he +changed his sergeant major and was unable to manage all the drunken +men of his squadron who, unknown to him, had appropriated five barrels +of old beer. From Sventsyani they retired farther and farther to +Drissa, and thence again beyond Drissa, drawing near to the frontier +of Russia proper. + +On the thirteenth of July the Pavlograds took part in a serious +action for the first time. + +On the twelfth of July, on the eve of that action, there was a heavy +storm of rain and hail. In general, the summer of 1812 was +remarkable for its storms. + +The two Pavlograd squadrons were bivouacking on a field of rye, +which was already in ear but had been completely trodden down by +cattle and horses. The rain was descending in torrents, and Rostov, +with a young officer named Ilyin, his protege, was sitting in a +hastily constructed shelter. An officer of their regiment, with long +mustaches extending onto his cheeks, who after riding to the staff had +been overtaken by the rain, entered Rostov's shelter. + +"I have come from the staff, Count. Have you heard of Raevski's +exploit?" + +And the officer gave them details of the Saltanov battle, which he +had heard at the staff. + +Rostov, smoking his pipe and turning his head about as the water +trickled down his neck, listened inattentively, with an occasional +glance at Ilyin, who was pressing close to him. This officer, a lad of +sixteen who had recently joined the regiment, was now in the same +relation to Nicholas that Nicholas had been to Denisov seven years +before. Ilyin tried to imitate Rostov in everything and adored him +as a girl might have done. + +Zdrzhinski, the officer with the long mustache, spoke +grandiloquently of the Saltanov dam being "a Russian Thermopylae," and +of how a deed worthy of antiquity had been performed by General +Raevski. He recounted how Raevski had led his two sons onto the dam +under terrific fire and had charged with them beside him. Rostov heard +the story and not only said nothing to encourage Zdrzhinski's +enthusiasm but, on the contrary, looked like a man ashamed of what +he was hearing, though with no intention of contradicting it. Since +the campaigns of Austerlitz and of 1807 Rostov knew by experience that +men always lie when describing military exploits, as he himself had +done when recounting them; besides that, he had experience enough to +know that nothing happens in war at all as we can imagine or relate +it. And so he did not like Zdrzhinski's tale, nor did he like +Zdrzhinski himself who, with his mustaches extending over his +cheeks, bent low over the face of his hearer, as was his habit, and +crowded Rostov in the narrow shanty. Rostov looked at him in +silence. "In the first place, there must have been such a confusion +and crowding on the dam that was being attacked that if Raevski did +lead his sons there, it could have had no effect except perhaps on +some dozen men nearest to him," thought he, "the rest could not have +seen how or with whom Raevski came onto the dam. And even those who +did see it would not have been much stimulated by it, for what had +they to do with Raevski's tender paternal feelings when their own +skins were in danger? And besides, the fate of the Fatherland did +not depend on whether they took the Saltanov dam or not, as we are +told was the case at Thermopylae. So why should he have made such a +sacrifice? And why expose his own children in the battle? I would +not have taken my brother Petya there, or even Ilyin, who's a stranger +to me but a nice lad, but would have tried to put them somewhere under +cover," Nicholas continued to think, as he listened to Zdrzhinski. But +he did not express his thoughts, for in such matters, too, he had +gained experience. He knew that this tale redounded to the glory of +our arms and so one had to pretend not to doubt it. And he acted +accordingly. + +"I can't stand this any more," said Ilyin, noticing that Rostov +did not relish Zdrzhinski's conversation. "My stockings and shirt... +and the water is running on my seat! I'll go and look for shelter. The +rain seems less heavy." + +Ilyin went out and Zdrzhinski rode away. + +Five minutes later Ilyin, splashing through the mud, came running +back to the shanty. + +"Hurrah! Rostov, come quick! I've found it! About two hundred +yards away there's a tavern where ours have already gathered. We can +at least get dry there, and Mary Hendrikhovna's there." + +Mary Hendrikhovna was the wife of the regimental doctor, a pretty +young German woman he had married in Poland. The doctor, whether +from lack of means or because he did not like to part from his young +wife in the early days of their marriage, took her about with him +wherever the hussar regiment went and his jealousy had become a +standing joke among the hussar officers. + +Rostov threw his cloak over his shoulders, shouted to Lavrushka to +follow with the things, and--now slipping in the mud, now splashing +right through it--set off with Ilyin in the lessening rain and the +darkness that was occasionally rent by distant lightning. + +"Rostov, where are you?" + +"Here. What lightning!" they called to one another. + + + + + +CHAPTER XIII + + +In the tavern, before which stood the doctor's covered cart, there +were already some five officers. Mary Hendrikhovna, a plump little +blonde German, in a dressing jacket and nightcap, was sitting on a +broad bench in the front corner. Her husband, the doctor, lay asleep +behind her. Rostov and Ilyin, on entering the room, were welcomed with +merry shouts and laughter. + +"Dear me, how jolly we are!" said Rostov laughing. + +"And why do you stand there gaping?" + +"What swells they are! Why, the water streams from them! Don't +make our drawing room so wet." + +"Don't mess Mary Hendrikhovna's dress!" cried other voices. + +Rostov and Ilyin hastened to find a corner where they could change +into dry clothes without offending Mary Hendrikhovna's modesty. They +were going into a tiny recess behind a partition to change, but +found it completely filled by three officers who sat playing cards +by the light of a solitary candle on an empty box, and these +officers would on no account yield their position. Mary Hendrikhovna +obliged them with the loan of a petticoat to be used as a curtain, and +behind that screen Rostov and Ilyin, helped by Lavrushka who had +brought their kits, changed their wet things for dry ones. + +A fire was made up in the dilapidated brick stove. A board was +found, fixed on two saddles and covered with a horsecloth, a small +samovar was produced and a cellaret and half a bottle of rum, and +having asked Mary Hendrikhovna to preside, they all crowded round her. +One offered her a clean handkerchief to wipe her charming hands, +another spread a jacket under her little feet to keep them from the +damp, another hung his coat over the window to keep out the draft, and +yet another waved the flies off her husband's face, lest he should +wake up. + +"Leave him alone," said Mary Hendrikhovna, smiling timidly and +happily. "He is sleeping well as it is, after a sleepless night." + +"Oh, no, Mary Hendrikhovna," replied the officer, "one must look +after the doctor. Perhaps he'll take pity on me someday, when it comes +to cutting off a leg or an arm for me." + +There were only three tumblers, the water was so muddy that one +could not make out whether the tea was strong or weak, and the samovar +held only six tumblers of water, but this made it all the pleasanter +to take turns in order of seniority to receive one's tumbler from Mary +Hendrikhovna's plump little hands with their short and not overclean +nails. All the officers appeared to be, and really were, in love +with her that evening. Even those playing cards behind the partition +soon left their game and came over to the samovar, yielding to the +general mood of courting Mary Hendrikhovna. She, seeing herself +surrounded by such brilliant and polite young men, beamed with +satisfaction, try as she might to hide it, and perturbed as she +evidently was each time her husband moved in his sleep behind her. + +There was only one spoon, sugar was more plentiful than anything +else, but it took too long to dissolve, so it was decided that Mary +Hendrikhovna should stir the sugar for everyone in turn. Rostov +received his tumbler, and adding some rum to it asked Mary +Hendrikhovna to stir it. + +"But you take it without sugar?" she said, smiling all the time, +as if everything she said and everything the others said was very +amusing and had a double meaning. + +"It is not the sugar I want, but only that your little hand should +stir my tea." + +Mary Hendrikhovna assented and began looking for the spoon which +someone meanwhile had pounced on. + +"Use your finger, Mary Hendrikhovna, it will be still nicer," said +Rostov. + +"Too hot!" she replied, blushing with pleasure. + +Ilyin put a few drops of rum into the bucket of water and brought it +to Mary Hendrikhovna, asking her to stir it with her finger. + +"This is my cup," said he. "Only dip your finger in it and I'll +drink it all up." + +When they had emptied the samovar, Rostov took a pack of cards and +proposed that they should play "Kings" with Mary Hendrikhovna. They +drew lots to settle who should make up her set. At Rostov's suggestion +it was agreed that whoever became "King" should have the right to kiss +Mary Hendrikhovna's hand, and that the "Booby" should go to refill and +reheat the samovar for the doctor when the latter awoke. + +"Well, but supposing Mary Hendrikhovna is 'King'?" asked Ilyin. + +"As it is, she is Queen, and her word is law!" + +They had hardly begun to play before the doctor's disheveled head +suddenly appeared from behind Mary Hendrikhovna. He had been awake for +some time, listening to what was being said, and evidently found +nothing entertaining or amusing in what was going on. His face was sad +and depressed. Without greeting the officers, he scratched himself and +asked to be allowed to pass as they were blocking the way. As soon +as he had left the room all the officers burst into loud laughter +and Mary Hendrikhovna blushed till her eyes filled with tears and +thereby became still more attractive to them. Returning from the yard, +the doctor told his wife (who had ceased to smile so happily, and +looked at him in alarm, awaiting her sentence) that the rain had +ceased and they must go to sleep in their covered cart, or +everything in it would be stolen. + +"But I'll send an orderly.... Two of them!" said Rostov. "What an +idea, doctor!" + +"I'll stand guard on it myself!" said Ilyin. + +"No, gentlemen, you have had your sleep, but I have not slept for +two nights," replied the doctor, and he sat down morosely beside his +wife, waiting for the game to end. + +Seeing his gloomy face as he frowned at his wife, the officers +grew still merrier, and some of them could not refrain from +laughter, for which they hurriedly sought plausible pretexts. When +he had gone, taking his wife with him, and had settled down with her +in their covered cart, the officers lay down in the tavern, covering +themselves with their wet cloaks, but they did not sleep for a long +time; now they exchanged remarks, recalling the doctor's uneasiness +and his wife's delight, now they ran out into the porch and reported +what was taking place in the covered trap. Several times Rostov, +covering his head, tried to go to sleep, but some remark would +arouse him and conversation would be resumed, to the accompaniment +of unreasoning, merry, childlike laughter. + + + + + +CHAPTER XIV + + +It was nearly three o'clock but no one was yet asleep, when the +quartermaster appeared with an order to move on to the little town +of Ostrovna. Still laughing and talking, the officers began +hurriedly getting ready and again boiled some muddy water +in the samovar. But Rostov went off to his squadron without waiting +for tea. Day was breaking, the rain had ceased, and the clouds were +dispersing. It felt damp and cold, especially in clothes that were +still moist. As they left the tavern in the twilight of the dawn, +Rostov and Ilyin both glanced under the wet and glistening leather +hood of the doctor's cart, from under the apron of which his feet were +sticking out, and in the middle of which his wife's nightcap was +visible and her sleepy breathing audible. + +"She really is a dear little thing," said Rostov to Ilyin, who was +following him. + +"A charming woman!" said Ilyin, with all the gravity of a boy of +sixteen. + +Half an hour later the squadron was lined up on the road. The +command was heard to "mount" and the soldiers crossed themselves and +mounted. Rostov riding in front gave the order "Forward!" and the +hussars, with clanking sabers and subdued talk, their horses' hoofs +splashing in the mud, defiled in fours and moved along the broad +road planted with birch trees on each side, following the infantry and +a battery that had gone on in front. + +Tattered, blue-purple clouds, reddening in the east, were scudding +before the wind. It was growing lighter and lighter. That curly +grass which always grows by country roadsides became clearly +visible, still wet with the night's rain; the drooping branches of the +birches, also wet, swayed in the wind and flung down bright drops of +water to one side. The soldiers' faces were more and more clearly +visible. Rostov, always closely followed by Ilyin, rode along the side +of the road between two rows of birch trees. + +When campaigning, Rostov allowed himself the indulgence of riding +not a regimental but a Cossack horse. A judge of horses and a +sportsman, he had lately procured himself a large, fine, mettlesome, +Donets horse, dun-colored, with light mane and tail, and when he +rode it no one could outgallop him. To ride this horse was a +pleasure to him, and he thought of the horse, of the morning, of the +doctor's wife, but not once of the impending danger. + +Formerly, when going into action, Rostov had felt afraid; now he had +not the least feeling of fear. He was fearless, not because he had +grown used to being under fire (one cannot grow used to danger), but +because he had learned how to manage his thoughts when in danger. He +had grown accustomed when going into action to think about anything +but what would seem most likely to interest him--the impending danger. +During the first period of his service, hard as he tried and much as +he reproached himself with cowardice, he had not been able to do this, +but with time it had come of itself. Now he rode beside Ilyin under +the birch trees, occasionally plucking leaves from a branch that met +his hand, sometimes touching his horse's side with his foot, or, +without turning round, handing a pipe he had finished to an hussar +riding behind him, with as calm and careless an air as though he +were merely out for a ride. He glanced with pity at the excited face +of Ilyin, who talked much and in great agitation. He knew from +experience the tormenting expectation of terror and death the cornet +was suffering and knew that only time could help him. + +As soon as the sun appeared in a clear strip of sky beneath the +clouds, the wind fell, as if it dared not spoil the beauty of the +summer morning after the storm; drops still continued to fall, but +vertically now, and all was still. The whole sun appeared on the +horizon and disappeared behind a long narrow cloud that hung above it. +A few minutes later it reappeared brighter still from behind the top +of the cloud, tearing its edge. Everything grew bright and +glittered. And with that light, and as if in reply to it, came the +sound of guns ahead of them. + +Before Rostov had had time to consider and determine the distance of +that firing, Count Ostermann-Tolstoy's adjutant came galloping from +Vitebsk with orders to advance at a trot along the road. + +The squadron overtook and passed the infantry and the battery--which +had also quickened their pace--rode down a hill, and passing through +an empty and deserted village again ascended. The horses began to +lather and the men to flush. + +"Halt! Dress your ranks!" the order of the regimental commander +was heard ahead. "Forward by the left. Walk, march!" came the order +from in front. + +And the hussars, passing along the line of troops on the left +flank of our position, halted behind our Uhlans who were in the +front line. To the right stood our infantry in a dense column: they +were the reserve. Higher up the hill, on the very horizon, our guns +were visible through the wonderfully clear air, brightly illuminated +by slanting morning sunbeams. In front, beyond a hollow dale, could be +seen the enemy's columns and guns. Our advanced line, already in +action, could be heard briskly exchanging shots with the enemy in +the dale. + +At these sounds, long unheard, Rostov's spirits rose, as at the +strains of the merriest music. Trap-ta-ta-tap! cracked the shots, +now together, now several quickly one after another. Again all was +silent and then again it sounded as if someone were walking on +detonators and exploding them. + +The hussars remained in the same place for about an hour. A +cannonade began. Count Ostermann with his suite rode up behind the +squadron, halted, spoke to the commander of the regiment, and rode +up the hill to the guns. + +After Ostermann had gone, a command rang out to the Uhlans. + +"Form column! Prepare to charge!" + +The infantry in front of them parted into platoons to allow the +cavalry to pass. The Uhlans started, the streamers on their spears +fluttering, and trotted downhill toward the French cavalry which was +seen below to the left. + +As soon as the Uhlans descended the hill, the hussars were ordered +up the hill to support the battery. As they took the places vacated by +the Uhlans, bullets came from the front, whining and whistling, but +fell spent without taking effect. + +The sounds, which he had not heard for so long, had an even more +pleasurable and exhilarating effect on Rostov than the previous sounds +of firing. Drawing himself up, he viewed the field of battle opening +out before him from the hill, and with his whole soul followed the +movement of the Uhlans. They swooped down close to the French +dragoons, something confused happened there amid the smoke, and five +minutes later our Uhlans were galloping back, not to the place they +had occupied but more to the left, and among the orange-colored Uhlans +on chestnut horses and behind them, in a large group, blue French +dragoons on gray horses could be seen. + + + + + +CHAPTER XV + + +Rostov, with his keen sportsman's eye, was one of the first to catch +sight of these blue French dragoons pursuing our Uhlans. Nearer and +nearer in disorderly crowds came the Uhlans and the French dragoons +pursuing them. He could already see how these men, who looked so small +at the foot of the hill, jostled and overtook one another, waving +their arms and their sabers in the air. + +Rostov gazed at what was happening before him as at a hunt. He +felt instinctively that if the hussars struck at the French dragoons +now, the latter could not withstand them, but if a charge was to be +made it must be done now, at that very moment, or it would be too +late. He looked around. A captain, standing beside him, was gazing +like himself with eyes fixed on the cavalry below them. + +"Andrew Sevastyanych!" said Rostov. "You know, we could crush +them...." + +"A fine thing too!" replied the captain, "and really..." + +Rostov, without waiting to hear him out, touched his horse, galloped +to the front of his squadron, and before he had time to finish +giving the word of command, the whole squadron, sharing his feeling, +was following him. Rostov himself did not know how or why he did it. +He acted as he did when hunting, without reflecting or considering. He +saw the dragoons near and that they were galloping in disorder; he +knew they could not withstand an attack--knew there was only that +moment and that if he let it slip it would not return. The bullets +were whining and whistling so stimulatingly around him and his horse +was so eager to go that he could not restrain himself. He touched +his horse, gave the word of command, and immediately, hearing behind +him the tramp of the horses of his deployed squadron, rode at full +trot downhill toward the dragoons. Hardly had they reached the +bottom of the hill before their pace instinctively changed to a +gallop, which grew faster and faster as they drew nearer to our Uhlans +and the French dragoons who galloped after them. The dragoons were now +close at hand. On seeing the hussars, the foremost began to turn, +while those behind began to halt. With the same feeling with which +he had galloped across the path of a wolf, Rostov gave rein to his +Donets horse and galloped to intersect the path of the dragoons' +disordered lines. One Uhlan stopped, another who was on foot flung +himself to the ground to avoid being knocked over, and a riderless +horse fell in among the hussars. Nearly all the French dragoons were +galloping back. Rostov, picking out one on a gray horse, dashed +after him. On the way he came upon a bush, his gallant horse cleared +it, and almost before he had righted himself in his saddle he saw that +he would immediately overtake the enemy he had selected. That +Frenchman, by his uniform an officer, was going at a gallop, crouching +on his gray horse and urging it on with his saber. In another moment +Rostov's horse dashed its breast against the hindquarters of the +officer's horse, almost knocking it over, and at the same instant +Rostov, without knowing why, raised his saber and struck the Frenchman +with it. + +The instant he had done this, all Rostov's animation vanished. The +officer fell, not so much from the blow--which had but slightly cut +his arm above the elbow--as from the shock to his horse and from +fright. Rostov reined in his horse, and his eyes sought his foe to see +whom he had vanquished. The French dragoon officer was hopping with +one foot on the ground, the other being caught in the stirrup. His +eyes, screwed up with fear as if he every moment expected another +blow, gazed up at Rostov with shrinking terror. His pale and +mud-stained face--fair and young, with a dimple in the chin and +light-blue eyes--was not an enemy's face at all suited to a +battlefield, but a most ordinary, homelike face. Before Rostov had +decided what to do with him, the officer cried, "I surrender!" He +hurriedly but vainly tried to get his foot out of the stirrup and +did not remove his frightened blue eyes from Rostov's face. Some +hussars who galloped up disengaged his foot and helped him into the +saddle. On all sides, the hussars were busy with the dragoons; one was +wounded, but though his face was bleeding, he would not give up his +horse; another was perched up behind an hussar with his arms round +him; a third was being helped by an hussar to mount his horse. In +front, the French infantry were firing as they ran. The hussars +galloped hastily back with their prisoners. Rostov galloped back +with the rest, aware of an unpleasant feeling of depression in his +heart. Something vague and confused, which he could not at all account +for, had come over him with the capture of that officer and the blow +he had dealt him. + +Count Ostermann-Tolstoy met the returning hussars, sent for +Rostov, thanked him, and said he would report his gallant deed to +the Emperor and would recommend him for a St. George's Cross. When +sent for by Count Ostermann, Rostov, remembering that he had charged +without orders, felt sure his commander was sending for him to +punish him for breach of discipline. Ostermann's flattering words +and promise of a reward should therefore have struck him all the +more pleasantly, but he still felt that same vaguely disagreeable +feeling of moral nausea. "But what on earth is worrying me?" he +asked himself as he rode back from the general. "Ilyin? No, he's safe. +Have I disgraced myself in any way? No, that's not it." Something +else, resembling remorse, tormented him. "Yes, oh yes, that French +officer with the dimple. And I remember how my arm paused when I +raised it." + +Rostov saw the prisoners being led away and galloped after them to +have a look at his Frenchman with the dimple on his chin. He was +sitting in his foreign uniform on an hussar packhorse and looked +anxiously about him; The sword cut on his arm could scarcely be called +a wound. He glanced at Rostov with a feigned smile and waved his +hand in greeting. Rostov still had the same indefinite feeling, as +of shame. + +All that day and the next his friends and comrades noticed that +Rostov, without being dull or angry, was silent, thoughtful, and +preoccupied. He drank reluctantly, tried to remain alone, and kept +turning something over in his mind. + +Rostov was always thinking about that brilliant exploit of his, +which to his amazement had gained him the St. George's Cross and +even given him a reputation for bravery, and there was something he +could not at all understand. "So others are even more afraid than I +am!" he thought. "So that's all there is in what is called heroism! +And heroism! And did I do it for my country's sake? And how was he +to blame, with his dimple and blue eyes? And how frightened he was! He +thought that I should kill him. Why should I kill him? My hand +trembled. And they have given me a St. George's Cross.... I can't make +it out at all." + +But while Nicholas was considering these questions and still could +reach no clear solution of what puzzled him so, the wheel of fortune +in the service, as often happens, turned in his favor. After the +affair at Ostrovna he was brought into notice, received command of +an hussar battalion, and when a brave officer was needed he was +chosen. + + + + + +CHAPTER XVI + + +On receiving news of Natasha's illness, the countess, though not +quite well yet and still weak, went to Moscow with Petya and the +rest of the household, and the whole family moved from Marya +Dmitrievna's house to their own and settled down in town. + +Natasha's illness was so serious that, fortunately for her and for +her parents, the consideration of all that had caused the illness, her +conduct and the breaking off of her engagement, receded into the +background. She was so ill that it was impossible for them to consider +in how far she was to blame for what had happened. She could not eat +or sleep, grew visibly thinner, coughed, and, as the doctors made them +feel, was in danger. They could not think of anything but how to +help her. Doctors came to see her singly and in consultation, talked +much in French, German, and Latin, blamed one another, and +prescribed a great variety of medicines for all the diseases known +to them, but the simple idea never occurred to any of them that they +could not know the disease Natasha was suffering from, as no disease +suffered by a live man can be known, for every living person has his +own peculiarities and always has his own peculiar, personal, novel, +complicated disease, unknown to medicine--not a disease of the +lungs, liver, skin, heart, nerves, and so on mentioned in medical +books, but a disease consisting of one of the innumerable combinations +of the maladies of those organs. This simple thought could not occur +to the doctors (as it cannot occur to a wizard that he is unable to +work his charms) because the business of their lives was to cure, +and they received money for it and had spent the best years of their +lives on that business. But, above all, that thought was kept out of +their minds by the fact that they saw they were really useful, as in +fact they were to the whole Rostov family. Their usefulness did not +depend on making the patient swallow substances for the most part +harmful (the harm was scarcely perceptible, as they were given in +small doses), but they were useful, necessary, and indispensable +because they satisfied a mental need of the invalid and of those who +loved her--and that is why there are, and always will be, +pseudo-healers, wise women, homeopaths, and allopaths. They +satisfied that eternal human need for hope of relief, for sympathy, +and that something should be done, which is felt by those who are +suffering. They satisfied the need seen in its most elementary form in +a child, when it wants to have a place rubbed that has been hurt. A +child knocks itself and runs at once to the arms of its mother or +nurse to have the aching spot rubbed or kissed, and it feels better +when this is done. The child cannot believe that the strongest and +wisest of its people have no remedy for its pain, and the hope of +relief and the expression of its mother's sympathy while she rubs +the bump comforts it. The doctors were of use to Natasha because +they kissed and rubbed her bump, assuring her that it would soon +pass if only the coachman went to the chemist's in the Arbat and got a +powder and some pills in a pretty box of a ruble and seventy kopeks, +and if she took those powders in boiled water at intervals of +precisely two hours, neither more nor less. + +What would Sonya and the count and countess have done, how would +they have looked, if nothing had been done, if there had not been +those pills to give by the clock, the warm drinks, the chicken +cutlets, and all the other details of life ordered by the doctors, the +carrying out of which supplied an occupation and consolation to the +family circle? How would the count have borne his dearly loved +daughter's illness had he not known that it was costing him a thousand +rubles, and that he would not grudge thousands more to benefit her, or +had he not known that if her illness continued he would not grudge yet +other thousands and would take her abroad for consultations there, and +had he not been able to explain the details of how Metivier and Feller +had not understood the symptoms, but Frise had, and Mudrov had +diagnosed them even better? What would the countess have done had +she not been able sometimes to scold the invalid for not strictly +obeying the doctor's orders? + +"You'll never get well like that," she would say, forgetting her +grief in her vexation, "if you won't obey the doctor and take your +medicine at the right time! You mustn't trifle with it, you know, or +it may turn to pneumonia," she would go on, deriving much comfort from +the utterance of that foreign word, incomprehensible to others as well +as to herself. + +What would Sonya have done without the glad consciousness that she +had not undressed during the first three nights, in order to be +ready to carry out all the doctor's injunctions with precision, and +that she still kept awake at night so as not to miss the proper time +when the slightly harmful pills in the little gilt box had to be +administered? Even to Natasha herself it was pleasant to see that so +many sacrifices were being made for her sake, and to know that she had +to take medicine at certain hours, though she declared that no +medicine would cure her and that it was all nonsense. And it was +even pleasant to be able to show, by disregarding the orders, that she +did not believe in medical treatment and did not value her life. + +The doctor came every day, felt her pulse, looked at her tongue, and +regardless of her grief-stricken face joked with her. But when he +had gone into another room, to which the countess hurriedly followed +him, he assumed a grave air and thoughtfully shaking his head said +that though there was danger, he had hopes of the effect of this +last medicine and one must wait and see, that the malady was chiefly +mental, but... And the countess, trying to conceal the action from +herself and from him, slipped a gold coin into his hand and always +returned to the patient with a more tranquil mind. + +The symptoms of Natasha's illness were that she ate little, slept +little, coughed, and was always low-spirited. The doctors said that +she could not get on without medical treatment, so they kept her in +the stifling atmosphere of the town, and the Rostovs did not move to +the country that summer of 1812. + +In spite of the many pills she swallowed and the drops and powders +out of the little bottles and boxes of which Madame Schoss who was +fond of such things made a large collection, and in spite of being +deprived of the country life to which she was accustomed, youth +prevailed. Natasha's grief began to be overlaid by the impressions +of daily life, it ceased to press so painfully on her heart, it +gradually faded into the past, and she began to recover physically. + + + + + +CHAPTER XVII + + +Natasha was calmer but no happier. She not merely avoided all +external forms of pleasure--balls, promenades, concerts, and theaters- +but she never laughed without a sound of tears in her laughter. She +could not sing. As soon as she began to laugh, or tried to sing by +herself, tears choked her: tears of remorse, tears at the recollection +of those pure times which could never return, tears of vexation that +she should so uselessly have ruined her young life which might have +been so happy. Laughter and singing in particular seemed to her like a +blasphemy, in face of her sorrow. Without any need of +self-restraint, no wish to coquet ever entered her head. She said +and felt at that time that no man was more to her than Nastasya +Ivanovna, the buffoon. Something stood sentinel within her and forbade +her every joy. Besides, she had lost all the old interests of her +carefree girlish life that had been so full of hope. The previous +autumn, the hunting, "Uncle," and the Christmas holidays spent with +Nicholas at Otradnoe were what she recalled oftenest and most +painfully. What would she not have given to bring back even a single +day of that time! But it was gone forever. Her presentiment at the +time had not deceived her--that that state of freedom and readiness +for any enjoyment would not return again. Yet it was necessary to live +on. + +It comforted her to reflect that she was not better as she had +formerly imagined, but worse, much worse, than anybody else in the +world. But this was not enough. She knew that, and asked herself, +"What next?" But there was nothing to come. There was no joy in +life, yet life was passing. Natasha apparently tried not to be a +burden or a hindrance to anyone, but wanted nothing for herself. She +kept away from everyone in the house and felt at ease only with her +brother Petya. She liked to be with him better than with the others, +and when alone with him she sometimes laughed. She hardly ever left +the house and of those who came to see them was glad to see only one +person, Pierre. It would have been impossible to treat her with more +delicacy, greater care, and at the same time more seriously than did +Count Bezukhov. Natasha unconsciously felt this delicacy and so +found great pleasure in his society. But she was not even grateful +to him for it; nothing good on Pierre's part seemed to her to be an +effort, it seemed so natural for him to be kind to everyone that there +was no merit in his kindness. Sometimes Natasha noticed +embarrassment and awkwardness on his part in her presence, +especially when he wanted to do something to please her, or feared +that something they spoke of would awaken memories distressing to her. +She noticed this and attributed it to his general kindness and +shyness, which she imagined must be the same toward everyone as it was +to her. After those involuntary words--that if he were free he would +have asked on his knees for her hand and her love--uttered at a moment +when she was so strongly agitated, Pierre never spoke to Natasha of +his feelings; and it seemed plain to her that those words, which had +then so comforted her, were spoken as all sorts of meaningless words +are spoken to comfort a crying child. It was not because Pierre was +a married man, but because Natasha felt very strongly with him that +moral barrier the absence of which she had experienced with Kuragin +that it never entered her head that the relations between him and +herself could lead to love on her part, still less on his, or even +to the kind of tender, self-conscious, romantic friendship between a +man and a woman of which she had known several instances. + +Before the end of the fast of St. Peter, Agrafena Ivanovna Belova, a +country neighbor of the Rostovs, came to Moscow to pay her devotions +at the shrines of the Moscow saints. She suggested that Natasha should +fast and prepare for Holy Communion, and Natasha gladly welcomed the +idea. Despite the doctor's orders that she should not go out early +in the morning, Natasha insisted on fasting and preparing for the +sacrament, not as they generally prepared for it in the Rostov +family by attending three services in their own house, but as Agrafena +Ivanovna did, by going to church every day for a week and not once +missing Vespers, Matins, or Mass. + +The countess was pleased with Natasha's zeal; after the poor results +of the medical treatment, in the depths of her heart she hoped that +prayer might help her daughter more than medicines and, though not +without fear and concealing it from the doctor, she agreed to +Natasha's wish and entrusted her to Belova. Agrafena Ivanovna used +to come to wake Natasha at three in the morning, but generally found +her already awake. She was afraid of being late for Matins. Hastily +washing, and meekly putting on her shabbiest dress and an old +mantilla, Natasha, shivering in the fresh air, went out into the +deserted streets lit by the clear light of dawn. By Agrafena +Ivanovna's advice Natasha prepared herself not in their own parish, +but at a church where, according to the devout Agrafena Ivanovna, +the priest was a man of very severe and lofty life. There were never +many people in the church; Natasha always stood beside Belova in the +customary place before an icon of the Blessed Virgin, let into the +screen before the choir on the left side, and a feeling, new to her, +of humility before something great and incomprehensible, seized her +when at that unusual morning hour, gazing at the dark face of the +Virgin illuminated by the candles burning before it and by the morning +light falling from the window, she listened to the words of the +service which she tried to follow with understanding. When she +understood them her personal feeling became interwoven in the +prayers with shades of its own. When she did not understand, it was +sweeter still to think that the wish to understand everything is +pride, that it is impossible to understand all, that it is only +necessary to believe and to commit oneself to God, whom she felt +guiding her soul at those moments. She crossed herself, bowed low, and +when she did not understand, in horror at her own vileness, simply +asked God to forgive her everything, everything, to have mercy upon +her. The prayers to which she surrendered herself most of all were +those of repentance. On her way home at an early hour when she met +no one but bricklayers going to work or men sweeping the street, and +everybody within the houses was still asleep, Natasha experienced a +feeling new to her, a sense of the possibility of correcting her +faults, the possibility of a new, clean life, and of happiness. + +During the whole week she spent in this way, that feeling grew every +day. And the happiness of taking communion, or "communing" as Agrafena +Ivanovna, joyously playing with the word, called it, seemed to Natasha +so great that she felt she should never live till that blessed Sunday. + +But the happy day came, and on that memorable Sunday, when, +dressed in white muslin, she returned home after communion, for the +first time for many months she felt calm and not oppressed by the +thought of the life that lay before her. + +The doctor who came to see her that day ordered her to continue +the powders he had prescribed a fortnight previously. + +"She must certainly go on taking them morning and evening," said he, +evidently sincerely satisfied with his success. "Only, please be +particular about it. + +"Be quite easy," he continued playfully, as he adroitly took the +gold coin in his palm. "She will soon be singing and frolicking about. +The last medicine has done her a very great deal of good. She has +freshened up very much." + +The countess, with a cheerful expression on her face, looked down at +her nails and spat a little for luck as she returned to the drawing +room. + + + + + +CHAPTER XVIII + + +At the beginning of July more and more disquieting reports about the +war began to spread in Moscow; people spoke of an appeal by the +Emperor to the people, and of his coming himself from the army to +Moscow. And as up to the eleventh of July no manifesto or appeal had +been received, exaggerated reports became current about them and about +the position of Russia. It was said that the Emperor was leaving the +army because it was in danger, it was said that Smolensk had +surrendered, that Napoleon had an army of a million and only a miracle +could save Russia. + +On the eleventh of July, which was Saturday, the manifesto was +received but was not yet in print, and Pierre, who was at the +Rostovs', promised to come to dinner next day, Sunday, and bring a +copy of the manifesto and appeal, which he would obtain from Count +Rostopchin. + +That Sunday, the Rostovs went to Mass at the Razumovskis' private +chapel as usual. It was a hot July day. Even at ten o'clock, when +the Rostovs got out of their carriage at the chapel, the sultry air, +the shouts of hawkers, the light and gay summer clothes of the +crowd, the dusty leaves of the trees on the boulevard, the sounds of +the band and the white trousers of a battalion marching to parade, the +rattling of wheels on the cobblestones, and the brilliant, hot +sunshine were all full of that summer languor, that content and +discontent with the present, which is most strongly felt on a +bright, hot day in town. All the Moscow notabilities, all the Rostovs' +acquaintances, were at the Razumovskis' chapel, for, as if expecting +something to happen, many wealthy families who usually left town for +their country estates had not gone away that summer. As Natasha, at +her mother's side, passed through the crowd behind a liveried +footman who cleared the way for them, she heard a young man speaking +about her in too loud a whisper. + +"That's Rostova, the one who..." + +"She's much thinner, but all the same she's pretty!" + +She heard, or thought she heard, the names of Kuragin and Bolkonski. +But she was always imagining that. It always seemed to her that +everyone who looked at her was thinking only of what had happened to +her. With a sinking heart, wretched as she always was now when she +found herself in a crowd, Natasha in her lilac silk dress trimmed with +black lace walked--as women can walk--with the more repose and +stateliness the greater the pain and shame in her soul. She knew for +certain that she was pretty, but this no longer gave her +satisfaction as it used to. On the contrary it tormented her more than +anything else of late, and particularly so on this bright, hot +summer day in town. "It's Sunday again--another week past," she +thought, recalling that she had been here the Sunday before, "and +always the same life that is no life, and the same surroundings in +which it used to be so easy to live. I'm pretty, I'm young, and I know +that now I am good. I used to be bad, but now I know I am good," she +thought, "but yet my best years are slipping by and are no good to +anyone." She stood by her mother's side and exchanged nods with +acquaintances near her. From habit she scrutinized the ladies' +dresses, condemned the bearing of a lady standing close by who was not +crossing herself properly but in a cramped manner, and again she +thought with vexation that she was herself being judged and was +judging others, and suddenly, at the sound of the service, she felt +horrified at her own vileness, horrified that the former purity of her +soul was again lost to her. + +A comely, fresh-looking old man was conducting the service with that +mild solemnity which has so elevating and soothing an effect on the +souls of the worshipers. The gates of the sanctuary screen were +closed, the curtain was slowly drawn, and from behind it a soft +mysterious voice pronounced some words. Tears, the cause of which +she herself did not understand, made Natasha's breast heave, and a +joyous but oppressive feeling agitated her. + +"Teach me what I should do, how to live my life, how I may grow good +forever, forever!" she pleaded. + +The deacon came out onto the raised space before the altar screen +and, holding his thumb extended, drew his long hair from under his +dalmatic and, making the sign of the cross on his breast, began in a +loud and solemn voice to recite the words of the prayer... + +"In peace let us pray unto the Lord." + +"As one community, without distinction of class, without enmity, +united by brotherly love--let us pray!" thought Natasha. + +"For the peace that is from above, and for the salvation of our +souls." + +"For the world of angels and all the spirits who dwell above us," +prayed Natasha. + +When they prayed for the warriors, she thought of her brother and +Denisov. When they prayed for all traveling by land and sea, she +remembered Prince Andrew, prayed for him, and asked God to forgive her +all the wrongs she had done him. When they prayed for those who love +us, she prayed for the members of her own family, her father and +mother and Sonya, realizing for the first time how wrongly she had +acted toward them, and feeling all the strength of her love for +them. When they prayed for those who hate us, she tried to think of +her enemies and people who hated her, in order to pray for them. She +included among her enemies the creditors and all who had business +dealings with her father, and always at the thought of enemies and +those who hated her she remembered Anatole who had done her so much +harm--and though he did not hate her she gladly prayed for him as +for an enemy. Only at prayer did she feel able to think clearly and +calmly of Prince Andrew and Anatole, as men for whom her feelings were +as nothing compared with her awe and devotion to God. When they prayed +for the Imperial family and the Synod, she bowed very low and made the +sign of the cross, saying to herself that even if she did not +understand, still she could not doubt, and at any rate loved the +governing Synod and prayed for it. + +When he had finished the Litany the deacon crossed the stole over +his breast and said, "Let us commit ourselves and our whole lives to +Christ the Lord!" + +"Commit ourselves to God," Natasha inwardly repeated. "Lord God, I +submit myself to Thy will!" she thought. "I want nothing, wish for +nothing; teach me what to do and how to use my will! Take me, take +me!" prayed Natasha, with impatient emotion in her heart, not crossing +herself but letting her slender arms hang down as if expecting some +invisible power at any moment to take her and deliver her from +herself, from her regrets, desires, remorse, hopes, and sins. + +The countess looked round several times at her daughter's softened +face and shining eyes and prayed God to help her. + +Unexpectedly, in the middle of the service, and not in the usual +order Natasha knew so well, the deacon brought out a small stool, +the one he knelt on when praying on Trinity Sunday, and placed it +before the doors of the sanctuary screen. The priest came out with his +purple velvet biretta on his head, adjusted his hair, and knelt down +with an effort. Everybody followed his example and they looked at +one another in surprise. Then came the prayer just received from the +Synod--a prayer for the deliverance of Russia from hostile invasion. + +"Lord God of might, God of our salvation!" began the priest in +that voice, clear, not grandiloquent but mild, in which only the +Slav clergy read and which acts so irresistibly on a Russian heart. + +"Lord God of might, God of our salvation! Look this day in mercy and +blessing on Thy humble people, and graciously hear us, spare us, and +have mercy upon us! This foe confounding Thy land, desiring to lay +waste the whole world, rises against us; these lawless men are +gathered together to overthrow Thy kingdom, to destroy Thy dear +Jerusalem, Thy beloved Russia; to defile Thy temples, to overthrow +Thine altars, and to desecrate our holy shrines. How long, O Lord, how +long shall the wicked triumph? How long shall they wield unlawful +power? + +"Lord God! Hear us when we pray to Thee; strengthen with Thy might +our most gracious sovereign lord, the Emperor Alexander Pavlovich; +be mindful of his uprightness and meekness, reward him according to +his righteousness, and let it preserve us, Thy chosen Israel! Bless +his counsels, his undertakings, and his work; strengthen his kingdom +by Thine almighty hand, and give him victory over his enemy, even as +Thou gavest Moses the victory over Amalek, Gideon over Midian, and +David over Goliath. Preserve his army, put a bow of brass in the hands +of those who have armed themselves in Thy Name, and gird their loins +with strength for the fight. Take up the spear and shield and arise to +help us; confound and put to shame those who have devised evil against +us, may they be before the faces of Thy faithful warriors as dust +before the wind, and may Thy mighty Angel confound them and put them +to flight; may they be ensnared when they know it not, and may the +plots they have laid in secret be turned against them; let them fall +before Thy servants' feet and be laid low by our hosts! Lord, Thou art +able to save both great and small; Thou art God, and man cannot +prevail against Thee! + +"God of our fathers! Remember Thy bounteous mercy and +loving-kindness which are from of old; turn not Thy face from us, +but be gracious to our unworthiness, and in Thy great goodness and Thy +many mercies regard not our transgressions and iniquities! Create in +us a clean heart and renew a right spirit within us, strengthen us all +in Thy faith, fortify our hope, inspire us with true love one for +another, arm us with unity of spirit in the righteous defense of the +heritage Thou gavest to us and to our fathers, and let not the scepter +of the wicked be exalted against the destiny of those Thou hast +sanctified. + +"O Lord our God, in whom we believe and in whom we put our trust, +let us not be confounded in our hope of Thy mercy, and give us a token +of Thy blessing, that those who hate us and our Orthodox faith may see +it and be put to shame and perish, and may all the nations know that +Thou art the Lord and we are Thy people. Show Thy mercy upon us this +day, O Lord, and grant us Thy salvation; make the hearts of Thy +servants to rejoice in Thy mercy; smite down our enemies and destroy +them swiftly beneath the feet of Thy faithful servants! For Thou art +the defense, the succor, and the victory of them that put their +trust in Thee, and to Thee be all glory, to Father, Son, and Holy +Ghost, now and forever, world without end. Amen." + +In Natasha's receptive condition of soul this prayer affected her +strongly. She listened to every word about the victory of Moses over +Amalek, of Gideon over Midian, and of David over Goliath, and about +the destruction of "Thy Jerusalem," and she prayed to God with the +tenderness and emotion with which her heart was overflowing, but +without fully understanding what she was asking of God in that prayer. +She shared with all her heart in the prayer for the spirit of +righteousness, for the strengthening of the heart by faith and hope, +and its animation by love. But she could not pray that her enemies +might be trampled under foot when but a few minutes before she had +been wishing she had more of them that she might pray for them. But +neither could she doubt the righteousness of the prayer that was being +read on bended knees. She felt in her heart a devout and tremulous awe +at the thought of the punishment that overtakes men for their sins, +and especially of her own sins, and she prayed to God to forgive +them all, and her too, and to give them all, and her too, peace and +happiness. And it seemed to her that God heard her prayer. + + + + + +CHAPTER XIX + + +From the day when Pierre, after leaving the Rostovs' with +Natasha's grateful look fresh in his mind, had gazed at the comet that +seemed to be fixed in the sky and felt that something new was +appearing on his own horizon--from that day the problem of the +vanity and uselessness of all earthly things, that had incessantly +tormented him, no longer presented itself. That terrible question +"Why?" "Wherefore?" which had come to him amid every occupation, was +now replaced, not by another question or by a reply to the former +question, but by her image. When he listened to, or himself took +part in, trivial conversations, when he read or heard of human +baseness or folly, he was not horrified as formerly, and did not ask +himself why men struggled so about these things when all is so +transient and incomprehensible--but he remembered her as he had last +seen her, and all his doubts vanished--not because she had answered +the questions that had haunted him, but because his conception of +her transferred him instantly to another, a brighter, realm of +spiritual activity in which no one could be justified or guilty--a +realm of beauty and love which it was worth living for. Whatever +worldly baseness presented itself to him, he said to himself: + +"Well, supposing N. N. swindled the country and the Tsar, and the +country and the Tsar confer honors upon him, what does that matter? +She smiled at me yesterday and asked me to come again, and I love her, +and no one will ever know it." And his soul felt calm and peaceful. + +Pierre still went into society, drank as much and led the same +idle and dissipated life, because besides the hours he spent at the +Rostovs' there were other hours he had to spend somehow, and the +habits and acquaintances he had made in Moscow formed a current that +bore him along irresistibly. But latterly, when more and more +disquieting reports came from the seat of war and Natasha's health +began to improve and she no longer aroused in him the former feeling +of careful pity, an ever-increasing restlessness, which he could not +explain, took possession of him. He felt that the condition he was +in could not continue long, that a catastrophe was coming which +would change his whole life, and he impatiently sought everywhere +for signs of that approaching catastrophe. One of his brother Masons +had revealed to Pierre the following prophecy concerning Napoleon, +drawn from the Revelation of St. John. + +In chapter 13, verse 18, of the Apocalypse, it is said: + + +Here is wisdom. Let him that hath understanding count the number +of the beast: for it is the number of a man; and his number is Six +hundred threescore and six. + +And in the fifth verse of the same chapter: + + +And there was given unto him a mouth speaking great things and +blasphemies; and power was given unto him to continue forty and two +months. + + +The French alphabet, written out with the same numerical values as +the Hebrew, in which the first nine letters denote units and the +others tens, will have the following significance: + + a b c d e f g h i k + 1 2 3 4 5 6 7 8 9 10 + l m n o p q r s + 20 30 40 50 60 70 80 90 + t u v w x y + 100 110 120 130 140 150 + z + 160 + + +Writing the words L'Empereur Napoleon in numbers, it appears that +the sum of them is 666, and that Napoleon therefore the beast foretold +in the Apocalypse. Moreover, by applying the same system to the +words quarante-deux,* which was the term allowed to the beast that +"spoke great things and blasphemies," the same number 666 was +obtained; from which it followed that the limit fixed for Napoleon's +power had come in the year 1812 when the French emperor was forty-two. +This prophecy pleased Pierre very much and he often asked himself what +would put an end to the power of the beast, that is, of Napoleon, +and tried by the same system of using letters as numbers and adding +them up, to find an answer to the question that engrossed him. He +wrote the words L'Empereur Alexandre, La nation russe and added up +their numbers, but the sums were either more or less than 666. Once +when making such calculations he wrote down his own name in French, +Comte Pierre Besouhoff, but the sum of the numbers did not come right. +Then he changed the spelling, substituting a z for the s and adding de +and the article le, still without obtaining the desired result. Then +it occurred to him: if the answer to the question were contained in +his name, his nationality would also be given in the answer. So he +wrote Le russe Besuhof and adding up the numbers got 671. This was +only five too much, and five was represented by e, the very letter +elided from the article le before the word Empereur. By omitting the +e, though incorrectly, Pierre got the answer he sought. L'russe +Besuhof made 666. This discovery excited him. How, or by what means, +he was connected with the great event foretold in the Apocalypse he +did not know, but he did not doubt that connection for a moment. His +love for Natasha, Antichrist, Napoleon, the invasion, the comet, +666, L'Empereur Napoleon, and L'russe Besuhof--all this had to +mature and culminate, to lift him out of that spellbound, petty sphere +of Moscow habits in which he felt himself held captive and lead him to +a great achievement and great happiness. + + +*Forty-two. + + + +On the eve of the Sunday when the special prayer was read, Pierre +had promised the Rostovs to bring them, from Count Rostopchin whom +he knew well, both the appeal to the people and the news from the +army. In the morning, when he went to call at Rostopchin's he met +there a courier fresh from the army, an acquaintance of his own, who +often danced at Moscow balls. + +"Do, please, for heaven's sake, relieve me of something!" said the +courier. "I have a sackful of letters to parents." + +Among these letters was one from Nicholas Rostov to his father. +Pierre took that letter, and Rostopchin also gave him the Emperor's +appeal to Moscow, which had just been printed, the last army orders, +and his own most recent bulletin. Glancing through the army orders, +Pierre found in one of them, in the lists of killed, wounded, and +rewarded, the name of Nicholas Rostov, awarded a St. George's Cross of +the Fourth Class for courage shown in the Ostrovna affair, and in +the same order the name of Prince Andrew Bolkonski, appointed to the +command of a regiment of Chasseurs. Though he did not want to remind +the Rostovs of Bolkonski, Pierre could not refrain from making them +happy by the news of their son's having received a decoration, so he +sent that printed army order and Nicholas' letter to the Rostovs, +keeping the appeal, the bulletin, and the other orders to take with +him when he went to dinner. + +His conversation with Count Rostopchin and the latter's tone of +anxious hurry, the meeting with the courier who talked casually of how +badly things were going in the army, the rumors of the discovery of +spies in Moscow and of a leaflet in circulation stating that +Napoleon promised to be in both the Russian capitals by the autumn, +and the talk of the Emperor's being expected to arrive next day--all +aroused with fresh force that feeling of agitation and expectation +in Pierre which he had been conscious of ever since the appearance +of the comet, and especially since the beginning of the war. + +He had long been thinking of entering the army and would have done +so had he not been hindered, first, by his membership of the Society +of Freemasons to which he was bound by oath and which preached +perpetual peace and the abolition of war, and secondly, by the fact +that when he saw the great mass of Muscovites who had donned uniform +and were talking patriotism, he somehow felt ashamed to take the step. +But the chief reason for not carrying out his intention to enter the +army lay in the vague idea that he was L'russe Besuhof who had the +number of the beast, 666; that his part in the great affair of setting +a limit to the power of the beast that spoke great and blasphemous +things had been predestined from eternity, and that therefore he ought +not to undertake anything, but wait for what was bound to come to +pass. + + + + + +CHAPTER XX + + +A few intimate friends were dining with the Rostovs that day, as +usual on Sundays. + +Pierre came early so as to find them alone. + +He had grown so stout this year that he would have been abnormal had +he not been so tall, so broad of limb, and so strong that he carried +his bulk with evident ease. + +He went up the stairs, puffing and muttering something. His coachman +did not even ask whether he was to wait. He knew that when his +master was at the Rostovs' he stayed till midnight. The Rostovs' +footman rushed eagerly forward to help him off with his cloak and take +his hat and stick. Pierre, from club habit, always left both hat and +stick in the anteroom. + +The first person he saw in the house was Natasha. Even before he saw +her, while taking off his cloak, he heard her. She was practicing +solfa exercises in the music room. He knew that she had not sung since +her illness, and so the sound of her voice surprised and delighted +him. He opened the door softly and saw her, in the lilac dress she had +worn at church, walking about the room singing. She had her back to +him when he opened the door, but when, turning quickly, she saw his +broad, surprised face, she blushed and came rapidly up to him. + +"I want to try to sing again," she said, adding as if by way of +excuse, "it is, at least, something to do." + +"That's capital!" + +"How glad I am you've come! I am so happy today," she said, with the +old animation Pierre had not seen in her for along time. "You know +Nicholas has received a St. George's Cross? I am so proud of him." + +"Oh yes, I sent that announcement. But I don't want to interrupt +you," he added, and was about to go to the drawing room. + +Natasha stopped him. + +"Count, is it wrong of me to sing?" she said blushing, and fixing +her eyes inquiringly on him. + +"No... Why should it be? On the contrary... But why do you ask me?" + +"I don't know myself," Natasha answered quickly, "but I should not +like to do anything you disapproved of. I believe in you completely. +You don't know how important you are to me, how much you've done for +me...." She spoke rapidly and did not notice how Pierre flushed at her +words. "I saw in that same army order that he, Bolkonski" (she +whispered the name hastily), "is in Russia, and in the army again. +What do you think?"--she was speaking hurriedly, evidently afraid +her strength might fail her--"Will he ever forgive me? Will he not +always have a bitter feeling toward me? What do you think? What do you +think?" + +"I think..." Pierre replied, "that he has nothing to forgive.... +If I were in his place..." + +By association of ideas, Pierre was at once carried back to the +day when, trying to comfort her, he had said that if he were not +himself but the best man in the world and free, he would ask on his +knees for her hand; and the same feeling of pity, tenderness, and love +took possession of him and the same words rose to his lips. But she +did not give him time to say them. + +"Yes, you... you..." she said, uttering the word you rapturously- +"that's a different thing. I know no one kinder, more generous, or +better than you; nobody could be! Had you not been there then, and now +too, I don't know what would have become of me, because..." + +Tears suddenly rose in her eyes, she turned away, lifted her music +before her eyes, began singing again, and again began walking up and +down the room. + +Just then Petya came running in from the drawing room. + +Petya was now a handsome rosy lad of fifteen with full red lips +and resembled Natasha. He was preparing to enter the university, but +he and his friend Obolenski had lately, in secret, agreed to join +the hussars. + +Petya had come rushing out to talk to his namesake about this +affair. He had asked Pierre to find out whether he would be accepted +in the hussars. + +Pierre walked up and down the drawing room, not listening to what +Petya was saying. + +Petya pulled him by the arm to attract his attention. + +"Well, what about my plan? Peter Kirilych, for heaven's sake! You +are my only hope," said Petya. + +"Oh yes, your plan. To join the hussars? I'll mention it, I'll bring +it all up today." + +"Well, mon cher, have you got the manifesto?" asked the old count. +"The countess has been to Mass at the Razumovskis' and heard the new +prayer. She says it's very fine." + +"Yes, I've got it," said Pierre. "The Emperor is to be here +tomorrow... there's to be an Extraordinary Meeting of the nobility, +and they are talking of a levy of ten men per thousand. Oh yes, let me +congratulate you!" + +"Yes, yes, thank God! Well, and what news from the army?" + +"We are again retreating. They say we're already near Smolensk," +replied Pierre. + +"O Lord, O Lord!" exclaimed the count. "Where is the manifesto?" + +"The Emperor's appeal? Oh yes!" + +Pierre began feeling in his pockets for the papers, but could not +find them. Still slapping his pockets, he kissed the hand of the +countess who entered the room and glanced uneasily around, evidently +expecting Natasha, who had left off singing but had not yet come +into the drawing room. + +"On my word, I don't know what I've done with it," he said. + +"There he is, always losing everything!" remarked the countess. + +Natasha entered with a softened and agitated expression of face +and sat down looking silently at Pierre. As soon as she entered, +Pierre's features, which had been gloomy, suddenly lighted up, and +while still searching for the papers he glanced at her several times. + +"No, really! I'll drive home, I must have left them there. I'll +certainly..." + +"But you'll be late for dinner." + +"Oh! And my coachman has gone." + +But Sonya, who had gone to look for the papers in the anteroom, +had found them in Pierre's hat, where he had carefully tucked them +under the lining. Pierre was about to begin reading. + +"No, after dinner," said the old count, evidently expecting much +enjoyment from that reading. + +At dinner, at which champagne was drunk to the health of the new +chevalier of St. George, Shinshin told them the town news, of the +illness of the old Georgian princess, of Metivier's disappearance from +Moscow, and of how some German fellow had been brought to Rostopchin +and accused of being a French "spyer" (so Count Rostopchin had told +the story), and how Rostopchin let him go and assured the people +that he was "not a spire at all, but only an old German ruin." + +"People are being arrested..." said the count. "I've told the +countess she should not speak French so much. It's not the time for it +now." + +"And have you heard?" Shinshin asked. "Prince Golitsyn has engaged a +master to teach him Russian. It is becoming dangerous to speak +French in the streets." + +"And how about you, Count Peter Kirilych? If they call up the +militia, you too will have to mount a horse," remarked the old +count, addressing Pierre. + +Pierre had been silent and preoccupied all through dinner, seeming +not to grasp what was said. He looked at the count. + +"Oh yes, the war," he said. "No! What sort of warrior should I make? +And yet everything is so strange, so strange! I can't make it out. I +don't know, I am very far from having military tastes, but in these +times no one can answer for himself." + +After dinner the count settled himself comfortably in an easy +chair and with a serious face asked Sonya, who was considered an +excellent reader, to read the appeal. + + +"To Moscow, our ancient Capital! + +"The enemy has entered the borders of Russia with immense forces. He +comes to despoil our beloved country," + + +Sonya read painstakingly in her high-pitched voice. The count +listened with closed eyes, heaving abrupt sighs at certain passages. + +Natasha sat erect, gazing with a searching look now at her father +and now at Pierre. + +Pierre felt her eyes on him and tried not to look round. The +countess shook her head disapprovingly and angrily at every solemn +expression in the manifesto. In all these words she saw only that +the danger threatening her son would not soon be over. Shinshin, +with a sarcastic smile on his lips, was evidently preparing to make +fun of anything that gave him the opportunity: Sonya's reading, any +remark of the count's, or even the manifesto itself should no better +pretext present itself. + +After reading about the dangers that threatened Russia, the hopes +the Emperor placed on Moscow and especially on its illustrious +nobility, Sonya, with a quiver in her voice due chiefly to the +attention that was being paid to her, read the last words: + + +"We ourselves will not delay to appear among our people in that +Capital and in others parts of our realm for consultation, and for the +direction of all our levies, both those now barring the enemy's path +and those freshly formed to defeat him wherever he may appear. May the +ruin he hopes to bring upon us recoil on his own head, and may +Europe delivered from bondage glorify the name of Russia!" + + +"Yes, that's it!" cried the count, opening his moist eyes and +sniffing repeatedly, as if a strong vinaigrette had been held to his +nose; and he added, "Let the Emperor but say the word and we'll +sacrifice everything and begrudge nothing." + +Before Shinshin had time to utter the joke he was ready to make on +the count's patriotism, Natasha jumped up from her place and ran to +her father. + +"What a darling our Papa is!" she cried, kissing him, and she +again looked at Pierre with the unconscious coquetry that had returned +to her with her better spirits. + +"There! Here's a patriot for you!" said Shinshin. + +"Not a patriot at all, but simply..." Natasha replied in an +injured tone. "Everything seems funny to you, but this isn't at all +a joke...." + +"A joke indeed!" put in the count. "Let him but say the word and +we'll all go.... We're not Germans!" + +"But did you notice, it says, 'for consultation'?" said Pierre. + +"Never mind what it's for...." + +At this moment, Petya, to whom nobody was paying any attention, came +up to his father with a very flushed face and said in his breaking +voice that was now deep and now shrill: + +"Well, Papa, I tell you definitely, and Mamma too, it's as you +please, but I say definitely that you must let me enter the army, +because I can't... that's all...." + +The countess, in dismay, looked up to heaven, clasped her hands, and +turned angrily to her husband. + +"That comes of your talking!" said she. + +But the count had already recovered from his excitement. + +"Come, come!" said he. "Here's a fine warrior! No! Nonsense! You +must study." + +"It's not nonsense, Papa. Fedya Obolenski is younger than I, and +he's going too. Besides, all the same I can't study now when..." Petya +stopped short, flushed till he perspired, but still got out the words, +"when our Fatherland is in danger." + +"That'll do, that'll do--nonsense...." + +"But you said yourself that we would sacrifice everything." + +"Petya! Be quiet, I tell you!" cried the count, with a glance at his +wife, who had turned pale and was staring fixedly at her son. + +"And I tell you--Peter Kirilych here will also tell you..." + +"Nonsense, I tell you. Your mother's milk has hardly dried on your +lips and you want to go into the army! There, there, I tell you," +and the count moved to go out of the room, taking the papers, probably +to reread them in his study before having a nap. + +"Well, Peter Kirilych, let's go and have a smoke," he said. + +Pierre was agitated and undecided. Natasha's unwontedly brilliant +eyes, continually glancing at him with a more than cordial look, had +reduced him to this condition. + +"No, I think I'll go home." + +"Home? Why, you meant to spend the evening with us.... You don't +often come nowadays as it is, and this girl of mine," said the count +good-naturedly, pointing to Natasha, "only brightens up when you're +here." + +"Yes, I had forgotten... I really must go home... business..." +said Pierre hurriedly. + +"Well, then, au revoir!" said the count, and went out of the room. + +"Why are you going? Why are you upset?" asked Natasha, and she +looked challengingly into Pierre's eyes. + +"Because I love you!" was what he wanted to say, but he did not +say it, and only blushed till the tears came, and lowered his eyes. + +"Because it is better for me to come less often... because... No, +simply I have business...." + +"Why? No, tell me!" Natasha began resolutely and suddenly stopped. + +They looked at each other with dismayed and embarrassed faces. He +tried to smile but could not: his smile expressed suffering, and he +silently kissed her hand and went out. + +Pierre made up his mind not to go to the Rostovs' any more. + + + + + +CHAPTER XXI + + +After the definite refusal he had received, Petya went to his room +and there locked himself in and wept bitterly. When he came in to tea, +silent, morose, and with tear-stained face, everybody pretended not to +notice anything. + +Next day the Emperor arrived in Moscow, and several of the +Rostovs' domestic serfs begged permission to go to have a look at him. +That morning Petya was a long time dressing and arranging his hair and +collar to look like a grown-up man. He frowned before his looking +glass, gesticulated, shrugged his shoulders, and finally, without +saying a word to anyone, took his cap and left the house by the back +door, trying to avoid notice. Petya decided to go straight to where +the Emperor was and to explain frankly to some gentleman-in-waiting +(he imagined the Emperor to be always surrounded by +gentlemen-in-waiting) that he, Count Rostov, in spite of his youth +wished to serve his country; that youth could be no hindrance to +loyalty, and that he was ready to... While dressing, Petya had +prepared many fine things he meant to say to the gentleman-in-waiting. + +It was on the very fact of being so young that Petya counted for +success in reaching the Emperor--he even thought how surprised +everyone would be at his youthfulness--and yet in the arrangement of +his collar and hair and by his sedate deliberate walk he wished to +appear a grown-up man. But the farther he went and the more his +attention was diverted by the ever-increasing crowds moving toward the +Kremlin, the less he remembered to walk with the sedateness and +deliberation of a man. As he approached the Kremlin he even began to +avoid being crushed and resolutely stuck out his elbows in a +menacing way. But within the Trinity Gateway he was so pressed to +the wall by people who probably were unaware of the patriotic +intentions with which he had come that in spite of all his +determination he had to give in, and stop while carriages passed in, +rumbling beneath the archway. Beside Petya stood a peasant woman, a +footman, two tradesmen, and a discharged soldier. After standing +some time in the gateway, Petya tried to move forward in front of +the others without waiting for all the carriages to pass, and he began +resolutely working his way with his elbows, but the woman just in +front of him, who was the first against whom he directed his +efforts, angrily shouted at him: + +"What are you shoving for, young lordling? Don't you see we're all +standing still? Then why push?" + +"Anybody can shove," said the footman, and also began working his +elbows to such effect that he pushed Petya into a very filthy corner +of the gateway. + +Petya wiped his perspiring face with his hands and pulled up the +damp collar which he had arranged so well at home to seem like a +man's. + +He felt that he no longer looked presentable, and feared that if +he were now to approach the gentlemen-in-waiting in that plight he +would not be admitted to the Emperor. But it was impossible to smarten +oneself up or move to another place, because of the crowd. One of +the generals who drove past was an acquaintance of the Rostovs', and +Petya thought of asking his help, but came to the conclusion that that +would not be a manly thing to do. When the carriages had all passed +in, the crowd, carrying Petya with it, streamed forward into the +Kremlin Square which was already full of people. There were people not +only in the square, but everywhere--on the slopes and on the roofs. As +soon as Petya found himself in the square he clearly heard the sound +of bells and the joyous voices of the crowd that filled the whole +Kremlin. + +For a while the crowd was less dense, but suddenly all heads were +bared, and everyone rushed forward in one direction. Petya was being +pressed so that he could scarcely breathe, and everybody shouted, +"Hurrah! hurrah! hurrah!" Petya stood on tiptoe and pushed and +pinched, but could see nothing except the people about him. + +All the faces bore the same expression of excitement and enthusiasm. +A tradesman's wife standing beside Petya sobbed, and the tears ran +down her cheeks. + +"Father! Angel! Dear one!" she kept repeating, wiping away her tears +with her fingers. + +"Hurrah!" was heard on all sides. + +For a moment the crowd stood still, but then it made another rush +forward. + +Quite beside himself, Petya, clinching his teeth and rolling his +eyes ferociously, pushed forward, elbowing his way and shouting +"hurrah!" as if he were prepared that instant to kill himself and +everyone else, but on both sides of him other people with similarly +ferocious faces pushed forward and everybody shouted "hurrah!" + +"So this is what the Emperor is!" thought Petya. "No, I can't +petition him myself--that would be too bold." But in spite of this +he continued to struggle desperately forward, and from between the +backs of those in front he caught glimpses of an open space with a +strip of red cloth spread out on it; but just then the crowd swayed +back--the police in front were pushing back those who had pressed +too close to the procession: the Emperor was passing from the palace +to the Cathedral of the Assumption--and Petya unexpectedly received +such a blow on his side and ribs and was squeezed so hard that +suddenly everything grew dim before his eyes and he lost +consciousness. When he came to himself, a man of clerical appearance +with a tuft of gray hair at the back of his head and wearing a +shabby blue cassock--probably a church clerk and chanter--was +holding him under the arm with one hand while warding off the pressure +of the crowd with the other. + +"You've crushed the young gentleman!" said the clerk. "What are +you up to? Gently!... They've crushed him, crushed him!" + +The Emperor entered the Cathedral of the Assumption. The crowd +spread out again more evenly, and the clerk led Petya--pale and +breathless--to the Tsar-cannon. Several people were sorry for Petya, +and suddenly a crowd turned toward him and pressed round him. Those +who stood nearest him attended to him, unbuttoned his coat, seated him +on the raised platform of the cannon, and reproached those others +(whoever they might be) who had crushed him. + +"One might easily get killed that way! What do they mean by it? +Killing people! Poor dear, he's as white as a sheet!"--various +voices were heard saying. + +Petya soon came to himself, the color returned to his face, the pain +had passed, and at the cost of that temporary unpleasantness he had +obtained a place by the cannon from where he hoped to see the +Emperor who would be returning that way. Petya no longer thought of +presenting his petition. If he could only see the Emperor he would +be happy! + +While the service was proceeding in the Cathedral of the Assumption- +it was a combined service of prayer on the occasion of the Emperor's +arrival and of thanksgiving for the conclusion of peace with the +Turks--the crowd outside spread out and hawkers appeared, selling +kvas, gingerbread, and poppyseed sweets (of which Petya was +particularly fond), and ordinary conversation could again be heard. +A tradesman's wife was showing a rent in her shawl and telling how +much the shawl had cost; another was saying that all silk goods had +now got dear. The clerk who had rescued Petya was talking to a +functionary about the priests who were officiating that day with the +bishop. The clerk several times used the word "plenary" (of the +service), a word Petya did not understand. Two young citizens were +joking with some serf girls who were cracking nuts. All these +conversations, especially the joking with the girls, were such as +might have had a particular charm for Petya at his age, but they did +not interest him now. He sat on his elevation--the pedestal of the +cannon--still agitated as before by the thought of the Emperor and +by his love for him. The feeling of pain and fear he had experienced +when he was being crushed, together with that of rapture, still +further intensified his sense of the importance of the occasion. + +Suddenly the sound of a firing of cannon was heard from the +embankment, to celebrate the signing of peace with the Turks, and +the crowd rushed impetuously toward the embankment to watch the +firing. Petya too would have run there, but the clerk who had taken +the young gentleman under his protection stopped him. The firing was +still proceeding when officers, generals, and gentlemen-in-waiting +came running out of the cathedral, and after them others in a more +leisurely manner: caps were again raised, and those who had run to +look at the cannon ran back again. At last four men in uniforms and +sashes emerged from the cathedral doors. "Hurrah! hurrah!" shouted the +crowd again. + +"Which is he? Which?" asked Petya in a tearful voice, of those +around him, but no one answered him, everybody was too excited; and +Petya, fixing on one of those four men, whom he could not clearly +see for the tears of joy that filled his eyes, concentrated all his +enthusiasm on him--though it happened not to be the Emperor- +frantically shouted "Hurrah!" and resolved that tomorrow, come what +might, he would join the army. + +The crowd ran after the Emperor, followed him to the palace, and +began to disperse. It was already late, and Petya had not eaten +anything and was drenched with perspiration, yet he did not go home +but stood with that diminishing, but still considerable, crowd +before the palace while the Emperor dined--looking in at the palace +windows, expecting he knew not what, and envying alike the notables he +saw arriving at the entrance to dine with the Emperor and the court +footmen who served at table, glimpses of whom could be seen through +the windows. + +While the Emperor was dining, Valuev, looking out of the window, +said: + +"The people are still hoping to see Your Majesty again." + +The dinner was nearly over, and the Emperor, munching a biscuit, +rose and went out onto the balcony. The people, with Petya among them, +rushed toward the balcony. + +"Angel! Dear one! Hurrah! Father!..." cried the crowd, and Petya +with it, and again the women and men of weaker mold, Petya among them, +wept with joy. + +A largish piece of the biscuit the Emperor was holding in his hand +broke off, fell on the balcony parapet, and then to the ground. A +coachman in a jerkin, who stood nearest, sprang forward and snatched +it up. Several people in the crowd rushed at the coachman. Seeing this +the Emperor had a plateful of biscuits brought him and began +throwing them down from the balcony. Petya's eyes grew bloodshot, +and still more excited by the danger of being crushed, he rushed at +the biscuits. He did not know why, but he had to have a biscuit from +the Tsar's hand and he felt that he must not give way. He sprang +forward and upset an old woman who was catching at a biscuit; the +old woman did not consider herself defeated though she was lying on +the ground--she grabbed at some biscuits but her hand did not reach +them. Petya pushed her hand away with his knee, seized a biscuit, +and as if fearing to be too late, again shouted "Hurrah!" with a voice +already hoarse. + +The Emperor went in, and after that the greater part of the crowd +began to disperse. + +"There! I said if only we waited--and so it was!" was being joyfully +said by various people. + +Happy as Petya was, he felt sad at having to go home knowing that +all the enjoyment of that day was over. He did not go straight home +from the Kremlin, but called on his friend Obolenski, who was +fifteen and was also entering the regiment. On returning home Petya +announced resolutely and firmly that if he was not allowed to enter +the service he would run away. And next day, Count Ilya Rostov--though +he had not yet quite yielded--went to inquire how he could arrange for +Petya to serve where there would be least danger. + + + + + +CHAPTER XXII + + +Two days later, on the fifteenth of July, an immense number of +carriages were standing outside the Sloboda Palace. + +The great halls were full. In the first were the nobility and gentry +in their uniforms, in the second bearded merchants in full-skirted +coats of blue cloth and wearing medals. In the noblemen's hall there +was an incessant movement and buzz of voices. The chief magnates sat +on high-backed chairs at a large table under the portrait of the +Emperor, but most of the gentry were strolling about the room. + +All these nobles, whom Pierre met every day at the Club or in +their own houses, were in uniform--some in that of Catherine's day, +others in that of Emperor Paul, others again in the new uniforms of +Alexander's time or the ordinary uniform of the nobility, and the +general characteristic of being in uniform imparted something +strange and fantastic to these diverse and familiar personalities, +both old and young. The old men, dim-eyed, toothless, bald, sallow, +and bloated, or gaunt and wrinkled, were especially striking. For +the most part they sat quietly in their places and were silent, or, if +they walked about and talked, attached themselves to someone +younger. On all these faces, as on the faces of the crowd Petya had +seen in the Square, there was a striking contradiction: the general +expectation of a solemn event, and at the same time the everyday +interests in a boston card party, Peter the cook, Zinaida Dmitrievna's +health, and so on. + +Pierre was there too, buttoned up since early morning in a +nobleman's uniform that had become too tight for him. He was agitated; +this extraordinary gathering not only of nobles but also of the +merchant-class--les etats generaux (States-General)--evoked in him a +whole series of ideas he had long laid aside but which were deeply +graven in his soul: thoughts of the Contrat social and the French +Revolution. The words that had struck him in the Emperor's appeal- +that the sovereign was coming to the capital for consultation with his +people--strengthened this idea. And imagining that in this direction +something important which he had long awaited was drawing near, he +strolled about watching and listening to conversations, but nowhere +finding any confirmation of the ideas that occupied him. + +The Emperor's manifesto was read, evoking enthusiasm, and then all +moved about discussing it. Besides the ordinary topics of +conversation, Pierre heard questions of where the marshals of the +nobility were to stand when the Emperor entered, when a ball should be +given in the Emperor's honor, whether they should group themselves +by districts or by whole provinces... and so on; but as soon as the +war was touched on, or what the nobility had been convened for, the +talk became undecided and indefinite. Then all preferred listening +to speaking. + +A middle-aged man, handsome and virile, in the uniform of a +retired naval officer, was speaking in one of the rooms, and a small +crowd was pressing round him. Pierre went up to the circle that had +formed round the speaker and listened. Count Ilya Rostov, in a +military uniform of Catherine's time, was sauntering with a pleasant +smile among the crowd, with all of whom he was acquainted. He too +approached that group and listened with a kindly smile and nods of +approval, as he always did, to what the speaker was saying. The +retired naval man was speaking very boldly, as was evident from the +expression on the faces of the listeners and from the fact that some +people Pierre knew as the meekest and quietest of men walked away +disapprovingly or expressed disagreement with him. Pierre pushed his +way into the middle of the group, listened, and convinced himself that +the man was indeed a liberal, but of views quite different from his +own. The naval officer spoke in a particularly sonorous, musical, +and aristocratic baritone voice, pleasantly swallowing his r's and +generally slurring his consonants: the voice of a man calling out to +his servant, "Heah! Bwing me my pipe!" It was indicative of +dissipation and the exercise of authority. + +"What if the Smolensk people have offahd to waise militia for the +Empewah? Ah we to take Smolensk as our patte'n? If the noble +awistocwacy of the pwovince of Moscow thinks fit, it can show its +loyalty to our sov'weign the Empewah in other ways. Have we +fo'gotten the waising of the militia in the yeah 'seven? All that +did was to enwich the pwiests' sons and thieves and wobbahs...." + +Count Ilya Rostov smiled blandly and nodded approval. + +"And was our militia of any use to the Empia? Not at all! It only +wuined our farming! Bettah have another conscwiption... o' ou' men +will wetu'n neithah soldiers no' peasants, and we'll get only +depwavity fwom them. The nobility don't gwudge theah lives--evewy +one of us will go and bwing in more wecwuits, and the sov'weign" (that +was the way he referred to the Emperor) "need only say the word and +we'll all die fo' him!" added the orator with animation. + +Count Rostov's mouth watered with pleasure and he nudged Pierre, but +Pierre wanted to speak himself. He pushed forward, feeling stirred, +but not yet sure what stirred him or what he would say. Scarcely had +he opened his mouth when one of the senators, a man without a tooth in +his head, with a shrewd though angry expression, standing near the +first speaker, interrupted him. Evidently accustomed to managing +debates and to maintaining an argument, he began in low but distinct +tones: + +"I imagine, sir," said he, mumbling with his toothless mouth, +"that we have been summoned here not to discuss whether it's best +for the empire at the present moment to adopt conscription or to +call out the militia. We have been summoned to reply to the appeal +with which our sovereign the Emperor has honored us. But to judge what +is best--conscription or the militia--we can leave to the supreme +authority...." + +Pierre suddenly saw an outlet for his excitement. He hardened his +heart against the senator who was introducing this set and narrow +attitude into the deliberations of the nobility. Pierre stepped +forward and interrupted him. He himself did not yet know what he would +say, but he began to speak eagerly, occasionally lapsing into French +or expressing himself in bookish Russian. + +"Excuse me, your excellency," he began. (He was well acquainted with +the senator, but thought it necessary on this occasion to address +him formally.) "Though I don't agree with the gentleman..." (he +hesitated: he wished to say, "Mon tres honorable preopinant"--"My very +honorable opponent") "with the gentleman... whom I have not the +honor of knowing, I suppose that the nobility have been summoned not +merely to express their sympathy and enthusiasm but also to consider +the means by which we can assist our Fatherland! I imagine," he went +on, warming to his subject, "that the Emperor himself would not be +satisfied to find in us merely owners of serfs whom we are willing +to devote to his service, and chair a canon* we are ready to make of +ourselves--and not to obtain from us any co-co-counsel." + + +*"Food for cannon." + + +Many persons withdrew from the circle, noticing the senator's +sarcastic smile and the freedom of Pierre's remarks. Only Count Rostov +was pleased with them as he had been pleased with those of the naval +officer, the senator, and in general with whatever speech he had +last heard. + +"I think that before discussing these questions," Pierre +continued, "we should ask the Emperor--most respectfully ask His +Majesty--to let us know the number of our troops and the position in +which our army and our forces now are, and then..." + +But scarcely had Pierre uttered these words before he was attacked +from three sides. The most vigorous attack came from an old +acquaintance, a boston player who had always been well disposed toward +him, Stepan Stepanovich Adraksin. Adraksin was in uniform, and whether +as a result of the uniform or from some other cause Pierre saw +before him quite a different man. With a sudden expression of +malevolence on his aged face, Adraksin shouted at Pierre: + +"In the first place, I tell you we have no right to question the +Emperor about that, and secondly, if the Russian nobility had that +right, the Emperor could not answer such a question. The troops are +moved according to the enemy's movements and the number of men +increases and decreases..." + +Another voice, that of a nobleman of medium height and about forty +years of age, whom Pierre had formerly met at the gypsies' and knew as +a bad cardplayer, and who, also transformed by his uniform, came up to +Pierre, interrupted Adraksin. + +"Yes, and this is not a time for discussing," he continued, "but for +acting: there is war in Russia! The enemy is advancing to destroy +Russia, to desecrate the tombs of our fathers, to carry off our +wives and children." The nobleman smote his breast. "We will all +arise, every one of us will go, for our father the Tsar!" he +shouted, rolling his bloodshot eyes. Several approving voices were +heard in the crowd. "We are Russians and will not grudge our blood +in defense of our faith, the throne, and the Fatherland! We must cease +raving if we are sons of our Fatherland! We will show Europe how +Russia rises to the defense of Russia!" + +Pierre wished to reply, but could not get in a word. He felt that +his words, apart from what meaning they conveyed, were less audible +than the sound of his opponent's voice. + +Count Rostov at the back of the crowd was expressing approval; +several persons, briskly turning a shoulder to the orator at the end +of a phrase, said: + +"That's right, quite right! Just so!" + +Pierre wished to say that he was ready to sacrifice his money, his +serfs, or himself, only one ought to know the state of affairs in +order to be able to improve it, but he was unable to speak. Many +voices shouted and talked at the same time, so that Count Rostov had +not time to signify his approval of them all, and the group increased, +dispersed, re-formed, and then moved with a hum of talk into the +largest hall and to the big table. Not only was Pierre's attempt to +speak unsuccessful, but he was rudely interrupted, pushed aside, and +people turned away from him as from a common enemy. This happened +not because they were displeased by the substance of his speech, which +had even been forgotten after the many subsequent speeches, but to +animate it the crowd needed a tangible object to love and a tangible +object to hate. Pierre became the latter. Many other orators spoke +after the excited nobleman, and all in the same tone. Many spoke +eloquently and with originality. + +Glinka, the editor of the Russian Messenger, who was recognized +(cries of "author! author!" were heard in the crowd), said that +"hell must be repulsed by hell," and that he had seen a child +smiling at lightning flashes and thunderclaps, but "we will not be +that child." + +"Yes, yes, at thunderclaps!" was repeated approvingly in the back +rows of the crowd. + +The crowd drew up to the large table, at which sat gray-haired or +bald seventy-year-old magnates, uniformed and besashed almost all of +whom Pierre had seen in their own homes with their buffoons, or +playing boston at the clubs. With an incessant hum of voices the crowd +advanced to the table. Pressed by the throng against the high backs of +the chairs, the orators spoke one after another and sometimes two +together. Those standing behind noticed what a speaker omitted to +say and hastened to supply it. Others in that heat and crush racked +their brains to find some thought and hastened to utter it. The old +magnates, whom Pierre knew, sat and turned to look first at one and +then at another, and their faces for the most part only expressed +the fact that they found it very hot. Pierre, however, felt excited, +and the general desire to show that they were ready to go to all +lengths--which found expression in the tones and looks more than in +the substance of the speeches--infected him too. He did not renounce +his opinions, but felt himself in some way to blame and wished to +justify himself. + +"I only said that it would be more to the purpose to make sacrifices +when we know what is needed!" said he, trying to be heard above the +other voices. + +One of the old men nearest to him looked round, but his attention +was immediately diverted by an exclamation at the other side of the +table. + +"Yes, Moscow will be surrendered! She will be our expiation!" +shouted one man. + +"He is the enemy of mankind!" cried another. "Allow me to speak...." +"Gentlemen, you are crushing me!..." + + + + + +CHAPTER XXIII + + +At that moment Count Rostopchin with his protruding chin and alert +eyes, wearing the uniform of a general with sash over his shoulder, +entered the room, stepping briskly to the front of the crowd of +gentry. + +"Our sovereign the Emperor will be here in a moment," said +Rostopchin. "I am straight from the palace. Seeing the position we are +in, I think there is little need for discussion. The Emperor has +deigned to summon us and the merchants. Millions will pour forth +from there"--he pointed to the merchants' hall--"but our business is +to supply men and not spare ourselves... That is the least we can do!" + +A conference took place confined to the magnates sitting at the +table. The whole consultation passed more than quietly. After all +the preceding noise the sound of their old voices saying one after +another, "I agree," or for variety, "I too am of that opinion," and so +on had even a mournful effect. + +The secretary was told to write down the resolution of the Moscow +nobility and gentry, that they would furnish ten men, fully +equipped, out of every thousand serfs, as the Smolensk gentry had +done. Their chairs made a scraping noise as the gentlemen who had +conferred rose with apparent relief, and began walking up and down, +arm in arm, to stretch their legs and converse in couples. + +"The Emperor! The Emperor!" a sudden cry resounded through the halls +and the whole throng hurried to the entrance. + +The Emperor entered the hall through a broad path between two +lines of nobles. Every face expressed respectful, awe-struck +curiosity. Pierre stood rather far off and could not hear all that the +Emperor said. From what he did hear he understood that the Emperor +spoke of the danger threatening the empire and of the hopes he +placed on the Moscow nobility. He was answered by a voice which +informed him of the resolution just arrived at. + +"Gentlemen!" said the Emperor with a quivering voice. + +There was a rustling among the crowd and it again subsided, so +that Pierre distinctly heard the pleasantly human voice of the Emperor +saying with emotion: + +"I never doubted the devotion of the Russian nobles, but today it +has surpassed my expectations. I thank you in the name of the +Fatherland! Gentlemen, let us act! Time is most precious..." + +The Emperor ceased speaking, the crowd began pressing round him, and +rapturous exclamations were heard from all sides. + +"Yes, most precious... a royal word," said Count Rostov, with a sob. +He stood at the back, and, though he had heard hardly anything, +understood everything in his own way. + +From the hall of the nobility the Emperor went to that of the +merchants. There he remained about ten minutes. Pierre was among those +who saw him come out from the merchants' hall with tears of emotion in +his eyes. As became known later, he had scarcely begun to address +the merchants before tears gushed from his eyes and he concluded in +a trembling voice. When Pierre saw the Emperor he was coming out +accompanied by two merchants, one of whom Pierre knew, a fat +otkupshchik. The other was the mayor, a man with a thin sallow face +and narrow beard. Both were weeping. Tears filled the thin man's eyes, +and the fat otkupshchik sobbed outright like a child and kept +repeating: + +"Our lives and property--take them, Your Majesty!" + +Pierre's one feeling at the moment was a desire to show that he +was ready to go all lengths and was prepared to sacrifice +everything. He now felt ashamed of his speech with its +constitutional tendency and sought an opportunity of effacing it. +Having heard that Count Mamonov was furnishing a regiment, Bezukhov at +once informed Rostopchin that he would give a thousand men and their +maintenance. + +Old Rostov could not tell his wife of what had passed without tears, +and at once consented to Petya's request and went himself to enter his +name. + +Next day the Emperor left Moscow. The assembled nobles all took +off their uniforms and settled down again in their homes and clubs, +and not without some groans gave orders to their stewards about the +enrollment, feeling amazed themselves at what they had done. + + + + + +BOOK TEN: 1812 + + + + + +CHAPTER I + + +Napoleon began the war with Russia because he could not resist going +to Dresden, could not help having his head turned by the homage he +received, could not help donning a Polish uniform and yielding to +the stimulating influence of a June morning, and could not refrain +from bursts of anger in the presence of Kurakin and then of Balashev. + +Alexander refused negotiations because he felt himself to be +personally insulted. Barclay de Tolly tried to command the army in the +best way, because he wished to fulfill his duty and earn fame as a +great commander. Rostov charged the French because he could not +restrain his wish for a gallop across a level field; and in the same +way the innumerable people who took part in the war acted in accord +with their personal characteristics, habits, circumstances, and +aims. They were moved by fear or vanity, rejoiced or were indignant, +reasoned, imagining that they knew what they were doing and did it +of their own free will, but they all were involuntary tools of +history, carrying on a work concealed from them but comprehensible +to us. Such is the inevitable fate of men of action, and the higher +they stand in the social hierarchy the less are they free. + +The actors of 1812 have long since left the stage, their personal +interests have vanished leaving no trace, and nothing remains of +that time but its historic results. + +Providence compelled all these men, striving to attain personal +aims, to further the accomplishment of a stupendous result no one of +them at all expected--neither Napoleon, nor Alexander, nor still +less any of those who did the actual fighting. + +The cause of the destruction of the French army in 1812 is clear +to us now. No one will deny that that cause was, on the one hand, +its advance into the heart of Russia late in the season without any +preparation for a winter campaign and, on the other, the character +given to the war by the burning of Russian towns and the hatred of the +foe this aroused among the Russian people. But no one at the time +foresaw (what now seems so evident) that this was the only way an army +of eight hundred thousand men--the best in the world and led by the +best general--could be destroyed in conflict with a raw army of half +its numerical strength, and led by inexperienced commanders as the +Russian army was. Not only did no one see this, but on the Russian +side every effort was made to hinder the only thing that could save +Russia, while on the French side, despite Napoleon's experience and +so-called military genius, every effort was directed to pushing on +to Moscow at the end of the summer, that is, to doing the very thing +that was bound to lead to destruction. + +In historical works on the year 1812 French writers are very fond of +saying that Napoleon felt the danger of extending his line, that he +sought a battle and that his marshals advised him to stop at Smolensk, +and of making similar statements to show that the danger of the +campaign was even then understood. Russian authors are still fonder of +telling us that from the commencement of the campaign a Scythian war +plan was adopted to lure Napoleon into the depths of Russia, and +this plan some of them attribute to Pfuel, others to a certain +Frenchman, others to Toll, and others again to Alexander himself- +pointing to notes, projects, and letters which contain hints of such a + +line of action. But all these hints at what happened, both from the +French side and the Russian, are advanced only because they fit in +with the event. Had that event not occurred these hints would have +been forgotten, as we have forgotten the thousands and millions of +hints and expectations to the contrary which were current then but +have now been forgotten because the event falsified them. There are +always so many conjectures as to the issue of any event that however +it may end there will always be people to say: "I said then that it +would be so," quite forgetting that amid their innumerable conjectures +many were to quite the contrary effect. + +Conjectures as to Napoleon's awareness of the danger of extending +his line, and (on the Russian side) as to luring the enemy into the +depths of Russia, are evidently of that kind, and only by much +straining can historians attribute such conceptions to Napoleon and +his marshals, or such plans to the Russian commanders. All the facts +are in flat contradiction to such conjectures. During the whole period +of the war not only was there no wish on the Russian side to draw +the French into the heart of the country, but from their first entry +into Russia everything was done to stop them. And not only was +Napoleon not afraid to extend his line, but he welcomed every step +forward as a triumph and did not seek battle as eagerly as in former +campaigns, but very lazily. + +At the very beginning of the war our armies were divided, and our +sole aim was to unite them, though uniting the armies was no advantage +if we meant to retire and lure the enemy into the depths of the +country. Our Emperor joined the army to encourage it to defend every +inch of Russian soil and not to retreat. The enormous Drissa camp +was formed on Pfuel's plan, and there was no intention of retiring +farther. The Emperor reproached the commanders in chief for every step +they retired. He could not bear the idea of letting the enemy even +reach Smolensk, still less could he contemplate the burning of Moscow, +and when our armies did unite he was displeased that Smolensk was +abandoned and burned without a general engagement having been fought +under its walls. + +So thought the Emperor, and the Russian commanders and people were +still more provoked at the thought that our forces were retreating +into the depths of the country. + +Napoleon having cut our armies apart advanced far into the country +and missed several chances of forcing an engagement. In August he +was at Smolensk and thought only of how to advance farther, though +as we now see that advance was evidently ruinous to him. + +The facts clearly show that Napoleon did not foresee the danger of +the advance on Moscow, nor did Alexander and the Russian commanders +then think of luring Napoleon on, but quite the contrary. The luring +of Napoleon into the depths of the country was not the result of any +plan, for no one believed it to be possible; it resulted from a most +complex interplay of intrigues, aims, and wishes among those who +took part in the war and had no perception whatever of the inevitable, +or of the one way of saving Russia. Everything came about +fortuitously. The armies were divided at the commencement of the +campaign. We tried to unite them, with the evident intention of giving +battle and checking the enemy's advance, and by this effort to unite +them while avoiding battle with a much stronger enemy, and necessarily +withdrawing the armies at an acute angle--we led the French on to +Smolensk. But we withdrew at an acute angle not only because the +French advanced between our two armies; the angle became still more +acute and we withdrew still farther, because Barclay de Tolly was an +unpopular foreigner disliked by Bagration (who would come his +command), and Bagration--being in command of the second army--tried to +postpone joining up and coming under Barclay's command as long as he +could. Bagration was slow in effecting the junction--though that was +the chief aim of all at headquarters--because, as he alleged, he +exposed his army to danger on this march, and it was best for him to +retire more to the left and more to the south, worrying the enemy from +flank and rear and securing from the Ukraine recruits for his army; +and it looks as if he planned this in order not to come under the +command of the detested foreigner Barclay, whose rank was inferior +to his own. + +The Emperor was with the army to encourage it, but his presence +and ignorance of what steps to take, and the enormous number of +advisers and plans, destroyed the first army's energy and it retired. + +The intention was to make a stand at the Drissa camp, but +Paulucci, aiming at becoming commander in chief, unexpectedly employed +his energy to influence Alexander, and Pfuel's whole plan was +abandoned and the command entrusted to Barclay. But as Barclay did not +inspire confidence his power was limited. The armies were divided, +there was no unity of command, and Barclay was unpopular; but from +this confusion, division, and the unpopularity of the foreign +commander in chief, there resulted on the one hand indecision and +the avoidance of a battle (which we could not have refrained from +had the armies been united and had someone else, instead of Barclay, +been in command) and on the other an ever-increasing indignation +against the foreigners and an increase in patriotic zeal. + +At last the Emperor left the army, and as the most convenient and +indeed the only pretext for his departure it was decided that it was +necessary for him to inspire the people in the capitals and arouse the +nation in general to a patriotic war. And by this visit of the Emperor +to Moscow the strength of the Russian army was trebled. + +He left in order not to obstruct the commander in chief's +undivided control of the army, and hoping that more decisive action +would then be taken, but the command of the armies became still more +confused and enfeebled. Bennigsen, the Tsarevich, and a swarm of +adjutants general remained with the army to keep the commander in +chief under observation and arouse his energy, and Barclay, feeling +less free than ever under the observation of all these "eyes of the +Emperor," became still more cautious of undertaking any decisive +action and avoided giving battle. + +Barclay stood for caution. The Tsarevich hinted at treachery and +demanded a general engagement. Lubomirski, Bronnitski, Wlocki, and the +others of that group stirred up so much trouble that Barclay, under +pretext of sending papers to the Emperor, dispatched these Polish +adjutants general to Petersburg and plunged into an open struggle with +Bennigsen and the Tsarevich. + +At Smolensk the armies at last reunited, much as Bagration +disliked it. + +Bagration drove up in a carriage to to the house occupied by +Barclay. Barclay donned his sash and came out to meet and report to +his senior officer Bagration. + +Despite his seniority in rank Bagration, in this contest of +magnanimity, took his orders from Barclay, but, having submitted, +agreed with him less than ever. By the Emperor's orders Bagration +reported direct to him. He wrote to Arakcheev, the Emperor's +confidant: "It must be as my sovereign pleases, but I cannot work with +the Minister (meaning Barclay). For God's sake send me somewhere +else if only in command of a regiment. I cannot stand it here. +Headquarters are so full of Germans that a Russian cannot exist and +there is no sense in anything. I thought I was really serving my +sovereign and the Fatherland, but it turns out that I am serving +Barclay. I confess I do not want to." + +The swarm of Bronnitskis and Wintzingerodes and their like still +further embittered the relations between the commanders in chief, +and even less unity resulted. Preparations were made to fight the +French before Smolensk. A general was sent to survey the position. +This general, hating Barclay, rode to visit a friend of his own, a +corps commander, and, having spent the day with him, returned to +Barclay and condemned, as unsuitable from every point of view, the +battleground he had not seen. + +While disputes and intrigues were going on about the future field of +battle, and while we were looking for the French--having lost touch +with them--the French stumbled upon Neverovski's division and +reached the walls of Smolensk. + +It was necessary to fight an unexpected battle at Smolensk to save +our lines of communication. The battle was fought and thousands were +killed on both sides. + +Smolensk was abandoned contrary to the wishes of the Emperor and +of the whole people. But Smolensk was burned by its own +inhabitants-who had been misled by their governor. And these ruined +inhabitants, setting an example to other Russians, went to Moscow +thinking only of their own losses but kindling hatred of the foe. +Napoleon advanced farther and we retired, thus arriving at the very +result which caused his destruction. + + + + + +CHAPTER II + + +The day after his son had left, Prince Nicholas sent for Princess +Mary to come to his study. + +"Well? Are you satisfied now?" said he. "You've made me quarrel with +my son! Satisfied, are you? That's all you wanted! Satisfied?... It +hurts me, it hurts. I'm old and weak and this is what you wanted. Well +then, gloat over it! Gloat over it!" + +After that Princess Mary did not see her father for a whole week. He +was ill and did not leave his study. + +Princess Mary noticed to her surprise that during this illness the +old prince not only excluded her from his room, but did not admit +Mademoiselle Bourienne either. Tikhon alone attended him. + +At the end of the week the prince reappeared and resumed his +former way of life, devoting himself with special activity to building +operations and the arrangement of the gardens and completely +breaking off his relations with Mademoiselle Bourienne. His looks +and cold tone to his daughter seemed to say: "There, you see? You +plotted against me, you lied to Prince Andrew about my relations +with that Frenchwoman and made me quarrel with him, but you see I need +neither her nor you!" + +Princess Mary spent half of every day with little Nicholas, watching +his lessons, teaching him Russian and music herself, and talking to +Dessalles; the rest of the day she spent over her books, with her +old nurse, or with "God's folk" who sometimes came by the back door to +see her. + +Of the war Princess Mary thought as women do think about wars. She +feared for her brother who was in it, was horrified by and amazed at +the strange cruelty that impels men to kill one another, but she did +not understand the significance of this war, which seemed to her +like all previous wars. She did not realize the significance of this +war, though Dessalles with whom she constantly conversed was +passionately interested in its progress and tried to explain his own +conception of it to her, and though the "God's folk" who came to see +her reported, in their own way, the rumors current among the people of +an invasion by Antichrist, and though Julie (now Princess +Drubetskaya), who had resumed correspondence with her, wrote patriotic +letters from Moscow. + +"I write you in Russian, my good friend," wrote Julie in her +Frenchified Russian, "because I have a detestation for all the French, +and the same for their language which I cannot support to hear +spoken.... We in Moscow are elated by enthusiasm for our adored +Emperor. + +"My poor husband is enduring pains and hunger in Jewish taverns, but +the news which I have inspires me yet more. + +"You heard probably of the heroic exploit of Raevski, embracing +his two sons and saying: 'I will perish with them but we will not be +shaken!' And truly though the enemy was twice stronger than we, we +were unshakable. We pass the time as we can, but in war as in war! The +princesses Aline and Sophie sit whole days with me, and we, unhappy +widows of live men, make beautiful conversations over our charpie, +only you, my friend, are missing..." and so on. + +The chief reason Princess Mary did not realize the full significance +of this war was that the old prince never spoke of it, did not +recognize it, and laughed at Dessalles when he mentioned it at dinner. +The prince's tone was so calm and confident that Princess Mary +unhesitatingly believed him. + +All that July the old prince was exceedingly active and even +animated. He planned another garden and began a new building for the +domestic serfs. The only thing that made Princess Mary anxious about +him was that he slept very little and, instead of sleeping in his +study as usual, changed his sleeping place every day. One day he would +order his camp bed to be set up in the glass gallery, another day he +remained on the couch or on the lounge chair in the drawing room and +dozed there without undressing, while--instead of Mademoiselle +Bourienne--a serf boy read to him. Then again he would spend a night +in the dining room. + +On August 1, a second letter was received from Prince Andrew. In his +first letter which came soon after he had left home, Prince Andrew had +dutifully asked his father's forgiveness for what he had allowed +himself to say and begged to be restored to his favor. To this +letter the old prince had replied affectionately, and from that time +had kept the Frenchwoman at a distance. Prince Andrew's second letter, +written near Vitebsk after the French had occupied that town, gave a +brief account of the whole campaign, enclosed for them a plan he had +drawn and forecasts as to the further progress of the war. In this +letter Prince Andrew pointed out to his father the danger of staying +at Bald Hills, so near the theater of war and on the army's direct +line of march, and advised him to move to Moscow. + +At dinner that day, on Dessalles' mentioning that the French were +said to have already entered Vitebsk, the old prince remembered his +son's letter. + +"There was a letter from Prince Andrew today," he said to Princess +Mary--"Haven't you read it?" + +"No, Father," she replied in a frightened voice. + +She could not have read the letter as she did not even know it had +arrived. + +"He writes about this war," said the prince, with the ironic smile +that had become habitual to him in speaking of the present war. + +"That must be very interesting," said Dessalles. "Prince Andrew is +in a position to know..." + +"Oh, very interesting!" said Mademoiselle Bourienne. + +"Go and get it for me," said the old prince to Mademoiselle +Bourienne. "You know--under the paperweight on the little table." + +Mademoiselle Bourienne jumped up eagerly. + +"No, don't!" he exclaimed with a frown. "You go, Michael Ivanovich." + +Michael Ivanovich rose and went to the study. But as soon as he +had left the room the old prince, looking uneasily round, threw down +his napkin and went himself. + +"They can't do anything... always make some muddle," he muttered. + +While he was away Princess Mary, Dessalles, Mademoiselle +Bourienne, and even little Nicholas exchanged looks in silence. The +old prince returned with quick steps, accompanied by Michael +Ivanovich, bringing the letter and a plan. These he put down beside +him--not letting anyone read them at dinner. + +On moving to the drawing room he handed the letter to Princess +Mary and, spreading out before him the plan of the new building and +fixing his eyes upon it, told her to read the letter aloud. When she +had done so Princess Mary looked inquiringly at her father. He was +examining the plan, evidently engrossed in his own ideas. + +"What do you think of it, Prince?" Dessalles ventured to ask. + +"I? I?..." said the prince as if unpleasantly awakened, and not +taking his eyes from the plan of the building. + +"Very possibly the theater of war will move so near to us that..." + +"Ha ha ha! The theater of war!" said the prince. "I have said and +still say that the theater of war is Poland and the enemy will never +get beyond the Niemen." + +Dessalles looked in amazement at the prince, who was talking of +the Niemen when the enemy was already at the Dnieper, but Princess +Mary, forgetting the geographical position of the Niemen, thought that +what her father was saying was correct. + +"When the snow melts they'll sink in the Polish swamps. Only they +could fail to see it," the prince continued, evidently thinking of the +campaign of 1807 which seemed to him so recent. "Bennigsen should have +advanced into Prussia sooner, then things would have taken a different +turn..." + +"But, Prince," Dessalles began timidly, "the letter mentions +Vitebsk...." + +"Ah, the letter? Yes..." replied the prince peevishly. "Yes... +yes..." His face suddenly took on a morose expression. He paused. +"Yes, he writes that the French were beaten at... at... what river +is it?" + +Dessalles dropped his eyes. + +"The prince says nothing about that," he remarked gently. + +"Doesn't he? But I didn't invent it myself." + +No one spoke for a long time. + +"Yes... yes... Well, Michael Ivanovich," he suddenly went on, +raising his head and pointing to the plan of the building, "tell me +how you mean to alter it...." + +Michael Ivanovich went up to the plan, and the prince after speaking +to him about the building looked angrily at Princess Mary and +Dessalles and went to his own room. + +Princess Mary saw Dessalles' embarrassed and astonished look fixed +on her father, noticed his silence, and was struck by the fact that +her father had forgotten his son's letter on the drawing-room table; +but she was not only afraid to speak of it and ask Dessalles the +reason of his confusion and silence, but was afraid even to think +about it. + +In the evening Michael Ivanovich, sent by the prince, came to +Princess Mary for Prince Andrew's letter which had been forgotten in +the drawing room. She gave it to him and, unpleasant as it was to +her to do so, ventured to ask him what her father was doing. + +"Always busy," replied Michael Ivanovich with a respectfully +ironic smile which caused Princess Mary to turn pale. "He's worrying +very much about the new building. He has been reading a little, but +now"--Michael Ivanovich went on, lowering his voice--"now he's at +his desk, busy with his will, I expect." (One of the prince's favorite +occupations of late had been the preparation of some papers he meant +to leave at his death and which he called his "will.") + +"And Alpatych is being sent to Smolensk?" asked Princess Mary. + +"Oh, yes, he has been waiting to start for some time." + + + + + +CHAPTER III + + +When Michael Ivanovich returned to the study with the letter, the +old prince, with spectacles on and a shade over his eyes, was +sitting at his open bureau with screened candles, holding a paper in +his outstretched hand, and in a somewhat dramatic attitude was reading +his manuscript--his "Remarks" as he termed it--which was to be +transmitted to the Emperor after his death. + +When Michael Ivanovich went in there were tears in the prince's eyes +evoked by the memory of the time when the paper he was now reading had +been written. He took the letter from Michael Ivanovich's hand, put it +in his pocket, folded up his papers, and called in Alpatych who had +long been waiting. + +The prince had a list of things to be bought in Smolensk and, +walking up and down the room past Alpatych who stood by the door, he +gave his instructions. + +"First, notepaper--do you hear? Eight quires, like this sample, +gilt-edged... it must be exactly like the sample. Varnish, sealing +wax, as in Michael Ivanovich's list." + +He paced up and down for a while and glanced at his notes. + +"Then hand to the governor in person a letter about the deed." + +Next, bolts for the doors of the new building were wanted and had to +be of a special shape the prince had himself designed, and a leather +case had to be ordered to keep the "will" in. + +The instructions to Alpatych took over two hours and still the +prince did not let him go. He sat down, sank into thought, closed +his eyes, and dozed off. Alpatych made a slight movement. + +"Well, go, go! If anything more is wanted I'll send after you." + +Alpatych went out. The prince again went to his bureau, glanced into +it, fingered his papers, closed the bureau again, and sat down at +the table to write to the governor. + +It was already late when he rose after sealing the letter. He wished +to sleep, but he knew he would not be able to and that most depressing +thoughts came to him in bed. So he called Tikhon and went through +the rooms with him to show him where to set up the bed for that night. + +He went about looking at every corner. Every place seemed +unsatisfactory, but worst of all was his customary couch in the study. +That couch was dreadful to him, probably because of the oppressive +thoughts he had had when lying there. It was unsatisfactory +everywhere, but the corner behind the piano in the sitting room was +better than other places: he had never slept there yet. + +With the help of a footman Tikhon brought in the bedstead and +began putting it up. + +"That's not right! That's not right!" cried the prince, and +himself pushed it a few inches from the corner and then closer in +again. + +"Well, at last I've finished, now I'll rest," thought the prince, +and let Tikhon undress him. + +Frowning with vexation at the effort necessary to divest himself +of his coat and trousers, the prince undressed, sat down heavily on +the bed, and appeared to be meditating as he looked contemptuously +at his withered yellow legs. He was not meditating, but only deferring +the moment of making the effort to lift those legs up and turn over on +the bed. "Ugh, how hard it is! Oh, that this toil might end and you +would release me!" thought he. Pressing his lips together he made that +effort for the twenty-thousandth time and lay down. But hardly had +he done so before he felt the bed rocking backwards and forwards +beneath him as if it were breathing heavily and jolting. This happened +to him almost every night. He opened his eyes as they were closing. + +"No peace, damn them!" he muttered, angry he knew not with whom. "Ah +yes, there was something else important, very important, that I was +keeping till I should be in bed. The bolts? No, I told him about them. +No, it was something, something in the drawing room. Princess Mary +talked some nonsense. Dessalles, that fool, said something. +Something in my pocket--can't remember..." + +"Tikhon, what did we talk about at dinner?" + +"About Prince Michael..." + +"Be quiet, quiet!" The prince slapped his hand on the table. "Yes, I +know, Prince Andrew's letter! Princess Mary read it. Dessalles said +something about Vitebsk. Now I'll read it." + +He had the letter taken from his pocket and the table--on which +stood a glass of lemonade and a spiral wax candle--moved close to +the bed, and putting on his spectacles he began reading. Only now in +the stillness of the night, reading it by the faint light under the +green shade, did he grasp its meaning for a moment. + +"The French at Vitebsk, in four days' march they may be at Smolensk; +perhaps are already there! Tikhon!" Tikhon jumped up. "No, no, I don't +want anything!" he shouted. + +He put the letter under the candlestick and closed his eyes. And +there rose before him the Danube at bright noonday: reeds, the Russian +camp, and himself a young general without a wrinkle on his ruddy face, +vigorous and alert, entering Potemkin's gaily colored tent, and a +burning sense of jealousy of "the favorite" agitated him now as +strongly as it had done then. He recalled all the words spoken at that +first meeting with Potemkin. And he saw before him a plump, rather +sallow-faced, short, stout woman, the Empress Mother, with her smile +and her words at her first gracious reception of him, and then that +same face on the catafalque, and the encounter he had with Zubov +over her coffin about his right to kiss her hand. + +"Oh, quicker, quicker! To get back to that time and have done with +all the present! Quicker, quicker--and that they should leave me in +peace!" + + + + + +CHAPTER IV + + +Bald Hills, Prince Nicholas Bolkonski's estate, lay forty miles east +from Smolensk and two miles from the main road to Moscow. + +The same evening that the prince gave his instructions to +Alpatych, Dessalles, having asked to see Princess Mary, told her that, +as the prince was not very well and was taking no steps to secure +his safety, though from Prince Andrew's letter it was evident that +to remain at Bald Hills might be dangerous, he respectfully advised +her to send a letter by Alpatych to the Provincial Governor at +Smolensk, asking him to let her know the state of affairs and the +extent of the danger to which Bald Hills was exposed. Dessalles +wrote this letter to the Governor for Princess Mary, she signed it, +and it was given to Alpatych with instructions to hand it to the +Governor and to come back as quickly as possible if there was danger. + +Having received all his orders Alpatych, wearing a white beaver hat- +a present from the prince--and carrying a stick as the prince did, +went out accompanied by his family. Three well-fed roans stood ready +harnessed to a small conveyance with a leather hood. + +The larger bell was muffled and the little bells on the harness +stuffed with paper. The prince allowed no one at Bald Hills to drive +with ringing bells; but on a long journey Alpatych liked to have them. +His satellites--the senior clerk, a countinghouse clerk, a scullery +maid, a cook, two old women, a little pageboy, the coachman, and +various domestic serfs--were seeing him off. + +His daughter placed chintz-covered down cushions for him to sit on +and behind his back. His old sister-in-law popped in a small bundle, +and one of the coachmen helped him into the vehicle. + +"There! There! Women's fuss! Women, women!" said Alpatych, puffing +and speaking rapidly just as the prince did, and he climbed into the +trap. + +After giving the clerk orders about the work to be done, Alpatych, +not trying to imitate the prince now, lifted the hat from his bald +head and crossed himself three times. + +"If there is anything... come back, Yakov Alpatych! For Christ's +sake think of us!" cried his wife, referring to the rumors of war +and the enemy. + +"Women, women! Women's fuss!" muttered Alpatych to himself and +started on his journey, looking round at the fields of yellow rye +and the still-green, thickly growing oats, and at other quite black +fields just being plowed a second time. + +As he went along he looked with pleasure at the year's splendid crop +of corn, scrutinized the strips of ryefield which here and there +were already being reaped, made his calculations as to the sowing +and the harvest, and asked himself whether he had not forgotten any of +the prince's orders. + +Having baited the horses twice on the way, he arrived at the town +toward evening on the fourth of August. + +Alpatych kept meeting and overtaking baggage trains and troops on +the road. As he approached Smolensk he heard the sounds of distant +firing, but these did not impress him. What struck him most was the +sight of a splendid field of oats in which a camp had been pitched and +which was being mown down by the soldiers, evidently for fodder. +This fact impressed Alpatych, but in thinking about his own business +he soon forgot it. + +All the interests of his life for more than thirty years had been +bounded by the will of the prince, and he never went beyond that +limit. Everything not connected with the execution of the prince's +orders did not interest and did not even exist for Alpatych. + +On reaching Smolensk on the evening of the fourth of August he put +up in the Gachina suburb across the Dnieper, at the inn kept by +Ferapontov, where he had been in the habit of putting up for the +last thirty years. Some thirty years ago Ferapontov, by Alpatych's +advice, had bought a wood from the prince, had begun to trade, and now +had a house, an inn, and a corn dealer's shop in that province. He was +a stout, dark, red-faced peasant in the forties, with thick lips, a +broad knob of a nose, similar knobs over his black frowning brows, and +a round belly. + +Wearing a waistcoat over his cotton shirt, Ferapontov was standing +before his shop which opened onto the street. On seeing Alpatych he +went up to him. + +"You're welcome, Yakov Alpatych. Folks are leaving the town, but you +have come to it," said he. + +"Why are they leaving the town?" asked Alpatych. + +"That's what I say. Folks are foolish! Always afraid of the French." + +"Women's fuss, women's fuss!" said Alpatych. + +"Just what I think, Yakov Alpatych. What I say is: orders have +been given not to let them in, so that must be right. And the peasants +are asking three rubles for carting--it isn't Christian!" + +Yakov Alpatych heard without heeding. He asked for a samovar and for +hay for his horses, and when he had had his tea he went to bed. + +All night long troops were moving past the inn. Next morning +Alpatych donned a jacket he wore only in town and went out on +business. It was a sunny morning and by eight o'clock it was already +hot. "A good day for harvesting," thought Alpatych. + +From beyond the town firing had been heard since early morning. At +eight o'clock the booming of cannon was added to the sound of +musketry. Many people were hurrying through the streets and there were +many soldiers, but cabs were still driving about, tradesmen stood at +their shops, and service was being held in the churches as usual. +Alpatych went to the shops, to government offices, to the post office, +and to the Governor's. In the offices and shops and at the post office +everyone was talking about the army and about the enemy who was +already attacking the town, everybody was asking what should be +done, and all were trying to calm one another. + +In front of the Governor's house Alpatych found a large number of +people, Cossacks, and a traveling carriage of the Governor's. At the +porch he met two of the landed gentry, one of whom he knew. This +man, an ex-captain of police, was saying angrily: + +"It's no joke, you know! It's all very well if you're single. 'One +man though undone is but one,' as the proverb says, but with +thirteen in your family and all the property... They've brought us +to utter ruin! What sort of governors are they to do that? They +ought to be hanged--the brigands!..." + +"Oh come, that's enough!" said the other. + +"What do I care? Let him hear! We're not dogs," said the +ex-captain of police, and looking round he noticed Alpatych. + +"Oh, Yakov Alpatych! What have you come for?" + +"To see the Governor by his excellency's order," answered +Alpatych, lifting his head and proudly thrusting his hand into the +bosom of his coat as he always did when he mentioned the prince.... +"He has ordered me to inquire into the position of affairs," he added. + +"Yes, go and find out!" shouted the angry gentleman. "They've +brought things to such a pass that there are no carts or +anything!... There it is again, do you hear?" said he, pointing +in the direction whence came the sounds of firing. + +"They've brought us all to ruin... the brigands!" he repeated, and +descended the porch steps. + +Alpatych swayed his head and went upstairs. In the waiting room were +tradesmen, women, and officials, looking silently at one another. +The door of the Governor's room opened and they all rose and moved +forward. An official ran out, said some words to a merchant, called +a stout official with a cross hanging on his neck to follow him, and +vanished again, evidently wishing to avoid the inquiring looks and +questions addressed to him. Alpatych moved forward and next time the +official came out addressed him, one hand placed in the breast of +his buttoned coat, and handed him two letters. + +"To his Honor Baron Asch, from General-in-Chief Prince Bolkonski," +he announced with such solemnity and significance that the official +turned to him and took the letters. + +A few minutes later the Governor received Alpatych and hurriedly +said to him: + +"Inform the prince and princess that I knew nothing: I acted on +the highest instructions--here..." and he handed a paper to +Alpatych. "Still, as the prince is unwell my advice is that they +should go to Moscow. I am just starting myself. Inform them..." + +But the Governor did not finish: a dusty perspiring officer ran into +the room and began to say something in French. The Governor's face +expressed terror. + +"Go," he said, nodding his head to Alpatych, and began questioning +the officer. + +Eager, frightened, helpless glances were turned on Alpatych when +he came out of the Governor's room. Involuntarily listening now to the +firing, which had drawn nearer and was increasing in strength, +Alpatych hurried to his inn. The paper handed to him by the Governor +said this: + + +"I assure you that the town of Smolensk is not in the slightest +danger as yet and it is unlikely that it will be threatened with +any. I from the one side and Prince Bagration from the other are +marching to unite our forces before Smolensk, which junction will be +effected on the 22nd instant, and both armies with their united forces +will defend our compatriots of the province entrusted to your care +till our efforts shall have beaten back the enemies of our Fatherland, +or till the last warrior in our valiant ranks has perished. From +this you will see that you have a perfect right to reassure the +inhabitants of Smolensk, for those defended by two such brave armies +may feel assured of victory." (Instructions from Barclay de Tolly to +Baron Asch, the civil governor of Smolensk, 1812.) + + +People were anxiously roaming about the streets. + +Carts piled high with household utensils, chairs, and cupboards kept +emerging from the gates of the yards and moving along the streets. +Loaded carts stood at the house next to Ferapontov's and women were +wailing and lamenting as they said good-by. A small watchdog ran round +barking in front of the harnessed horses. + +Alpatych entered the innyard at a quicker pace than usual and went +straight to the shed where his horses and trap were. The coachman +was asleep. He woke him up, told him to harness, and went into the +passage. From the host's room came the sounds of a child crying, the +despairing sobs of a woman, and the hoarse angry shouting of +Ferapontov. The cook began running hither and thither in the passage +like a frightened hen, just as Alpatych entered. + +"He's done her to death. Killed the mistress!... Beat her... dragged +her about so!..." + +"What for?" asked Alpatych. + +"She kept begging to go away. She's a woman! 'Take me away,' says +she, 'don't let me perish with my little children! Folks,' she says, +'are all gone, so why,' she says, 'don't we go?' And he began +beating and pulling her about so!" + +At these words Alpatych nodded as if in approval, and not wishing to +hear more went to the door of the room opposite the innkeeper's, where +he had left his purchases. + +"You brute, you murderer!" screamed a thin, pale woman who, with a +baby in her arms and her kerchief torn from her head, burst through +the door at that moment and down the steps into the yard. + +Ferapontov came out after her, but on seeing Alpatych adjusted his +waistcoat, smoothed his hair, yawned, and followed Alpatych into the +opposite room. + +"Going already?" said he. + +Alpatych, without answering or looking at his host, sorted his +packages and asked how much he owed. + +"We'll reckon up! Well, have you been to the Governor's?" asked +Ferapontov. "What has been decided?" + +Alpatych replied that the Governor had not told him anything +definite. + +"With our business, how can we get away?" said Ferapontov. "We'd +have to pay seven rubles a cartload to Dorogobuzh and I tell them +they're not Christians to ask it! Selivanov, now, did a good stroke +last Thursday--sold flour to the army at nine rubles a sack. Will +you have some tea?" he added. + +While the horses were being harnessed Alpatych and Ferapontov over +their tea talked of the price of corn, the crops, and the good weather +for harvesting. + +"Well, it seems to be getting quieter," remarked Ferapontov, +finishing his third cup of tea and getting up. "Ours must have got the +best of it. The orders were not to let them in. So we're in force, +it seems.... They say the other day Matthew Ivanych Platov drove +them into the river Marina and drowned some eighteen thousand in one +day." + +Alpatych collected his parcels, handed them to the coachman who +had come in, and settled up with the innkeeper. The noise of wheels, +hoofs, and bells was heard from the gateway as a little trap passed +out. + +It was by now late in the afternoon. Half the street was in +shadow, the other half brightly lit by the sun. Alpatych looked out of +the window and went to the door. Suddenly the strange sound of a +far-off whistling and thud was heard, followed by a boom of cannon +blending into a dull roar that set the windows rattling. + +He went out into the street: two men were running past toward the +bridge. From different sides came whistling sounds and the thud of +cannon balls and bursting shells falling on the town. But these sounds +were hardly heard in comparison with the noise of the firing outside +the town and attracted little attention from the inhabitants. The town +was being bombarded by a hundred and thirty guns which Napoleon had +ordered up after four o'clock. The people did not at once realize +the meaning of this bombardment. + +At first the noise of the falling bombs and shells only aroused +curiosity. Ferapontov's wife, who till then had not ceased wailing +under the shed, became quiet and with the baby in her arms went to the +gate, listening to the sounds and looking in silence at the people. + +The cook and a shop assistant came to the gate. With lively +curiosity everyone tried to get a glimpse of the projectiles as they +flew over their heads. Several people came round the corner talking +eagerly. + +"What force!" remarked one. "Knocked the roof and ceiling all to +splinters!" + +"Routed up the earth like a pig," said another. + +"That's grand, it bucks one up!" laughed the first. "Lucky you +jumped aside, or it would have wiped you out!" + +Others joined those men and stopped and told how cannon balls had +fallen on a house close to them. Meanwhile still more projectiles, now +with the swift sinister whistle of a cannon ball, now with the +agreeable intermittent whistle of a shell, flew over people's heads +incessantly, but not one fell close by, they all flew over. Alpatych +was getting into his trap. The innkeeper stood at the gate. + +"What are you staring at?" he shouted to the cook, who in her red +skirt, with sleeves rolled up, swinging her bare elbows, had stepped +to the corner to listen to what was being said. + +"What marvels!" she exclaimed, but hearing her master's voice she +turned back, pulling down her tucked-up skirt. + +Once more something whistled, but this time quite close, swooping +downwards like a little bird; a flame flashed in the middle of the +street, something exploded, and the street was shrouded in smoke. + +"Scoundrel, what are you doing?" shouted the innkeeper, rushing to +the cook. + +At that moment the pitiful wailing of women was heard from different +sides, the frightened baby began to cry, and people crowded silently +with pale faces round the cook. The loudest sound in that crowd was +her wailing. + +"Oh-h-h! Dear souls, dear kind souls! Don't let me die! My good +souls!..." + +Five minutes later no one remained in the street. The cook, with her +thigh broken by a shell splinter, had been carried into the kitchen. +Alpatych, his coachman, Ferapontov's wife and children and the house +porter were all sitting in the cellar, listening. The roar of guns, +the whistling of projectiles, and the piteous moaning of the cook, +which rose above the other sounds, did not cease for a moment. The +mistress rocked and hushed her baby and when anyone came into the +cellar asked in a pathetic whisper what had become of her husband +who had remained in the street. A shopman who entered told her that +her husband had gone with others to the cathedral, whence they were +fetching the wonder-working icon of Smolensk. + +Toward dusk the cannonade began to subside. Alpatych left the cellar +and stopped in the doorway. The evening sky that had been so clear was +clouded with smoke, through which, high up, the sickle of the new moon +shone strangely. Now that the terrible din of the guns had ceased a +hush seemed to reign over the town, broken only by the rustle of +footsteps, the moaning, the distant cries, and the crackle of fires +which seemed widespread everywhere. The cook's moans had now subsided. +On two sides black curling clouds of smoke rose and spread from the +fires. Through the streets soldiers in various uniforms walked or +ran confusedly in different directions like ants from a ruined +ant-hill. Several of them ran into Ferapontov's yard before Alpatych's +eyes. Alpatych went out to the gate. A retreating regiment, +thronging and hurrying, blocked the street. + +Noticing him, an officer said: "The town is being abandoned. Get +away, get away!" and then, turning to the soldiers, shouted: + +"I'll teach you to run into the yards!" + +Alpatych went back to the house, called the coachman, and told him +to set off. Ferapontov's whole household came out too, following +Alpatych and the coachman. The women, who had been silent till then, +suddenly began to wail as they looked at the fires--the smoke and even +the flames of which could be seen in the failing twilight--and as if +in reply the same kind of lamentation was heard from other parts of +the street. Inside the shed Alpatych and the coachman arranged the +tangled reins and traces of their horses with trembling hands. + +As Alpatych was driving out of the gate he saw some ten soldiers +in Ferapontov's open shop, talking loudly and filling their bags and +knapsacks with flour and sunflower seeds. Just then Ferapontov +returned and entered his shop. On seeing the soldiers he was about +to shout at them, but suddenly stopped and, clutching at his hair, +burst into sobs and laughter: + +"Loot everything, lads! Don't let those devils get it!" he cried, +taking some bags of flour himself and throwing them into the street. + +Some of the soldiers were frightened and ran away, others went on +filling their bags. On seeing Alpatych, Ferapontov turned to him: + +"Russia is done for!" he cried. "Alpatych, I'll set the place on +fire myself. We're done for!..." and Ferapontov ran into the yard. + +Soldiers were passing in a constant stream along the street blocking +it completely, so that Alpatych could not pass out and had to wait. +Ferapontov's wife and children were also sitting in a cart waiting +till it was possible to drive out. + +Night had come. There were stars in the sky and the new moon shone +out amid the smoke that screened it. On the sloping descent to the +Dnieper Alpatych's cart and that of the innkeeper's wife, which were +slowly moving amid the rows of soldiers and of other vehicles, had +to stop. In a side street near the crossroads where the vehicles had +stopped, a house and some shops were on fire. This fire was already +burning itself out. The flames now died down and were lost in the +black smoke, now suddenly flared up again brightly, lighting up with +strange distinctness the faces of the people crowding at the +crossroads. Black figures flitted about before the fire, and through +the incessant crackling of the flames talking and shouting could be +heard. Seeing that his trap would not be able to move on for some +time, Alpatych got down and turned into the side street to look at the +fire. Soldiers were continually rushing backwards and forwards near +it, and he saw two of them and a man in a frieze coat dragging burning +beams into another yard across the street, while others carried +bundles of hay. + +Alpatych went up to a large crowd standing before a high barn +which was blazing briskly. The walls were all on fire and the back +wall had fallen in, the wooden roof was collapsing, and the rafters +were alight. The crowd was evidently watching for the roof to fall in, +and Alpatych watched for it too. + +"Alpatych!" a familiar voice suddenly hailed the old man. + +"Mercy on us! Your excellency!" answered Alpatych, immediately +recognizing the voice of his young prince. + +Prince Andrew in his riding cloak, mounted on a black horse, was +looking at Alpatych from the back of the crowd. + +"Why are you here?" he asked. + +"Your... your excellency," stammered Alpatych and broke into sobs. +"Are we really lost? Master!..." + +"Why are you here?" Prince Andrew repeated. + +At that moment the flames flared up and showed his young master's +pale worn face. Alpatych told how he had been sent there and how +difficult it was to get away. + +"Are we really quite lost, your excellency?" he asked again. + +Prince Andrew without replying took out a notebook and raising his +knee began writing in pencil on a page he tore out. He wrote to his +sister: + + +"Smolensk is being abandoned. Bald Hills will be occupied by the +enemy within a week. Set off immediately for Moscow. Let me know at +once when you will start. Send by special messenger to Usvyazh." + + +Having written this and given the paper to Alpatych, he told him how +to arrange for departure of the prince, the princess, his son, and the +boy's tutor, and how and where to let him know immediately. Before +he had had time to finish giving these instructions, a chief of +staff followed by a suite galloped up to him. + +"You are a colonel?" shouted the chief of staff with a German +accent, in a voice familiar to Prince Andrew. "Houses are set on +fire in your presence and you stand by! What does this mean? You +will answer for it!" shouted Berg, who was now assistant to the +chief of staff of the commander of the left flank of the infantry of +the first army, a place, as Berg said, "very agreeable and well en +evidence." + +Prince Andrew looked at him and without replying went on speaking to +Alpatych. + +"So tell them that I shall await a reply till the tenth, and if by +the tenth I don't receive news that they have all got away I shall +have to throw up everything and come myself to Bald Hills." + +"Prince," said Berg, recognizing Prince Andrew, "I only spoke +because I have to obey orders, because I always do obey exactly.... +You must please excuse me," he went on apologetically. + +Something cracked in the flames. The fire died down for a moment and +wreaths of black smoke rolled from under the roof. There was another +terrible crash and something huge collapsed. + +"Ou-rou-rou!" yelled the crowd, echoing the crash of the +collapsing roof of the barn, the burning grain in which diffused a +cakelike aroma all around. The flames flared up again, lighting the +animated, delighted, exhausted faces of the spectators. + +The man in the frieze coat raised his arms and shouted: + +"It's fine, lads! Now it's raging... It's fine!" + +"That's the owner himself," cried several voices. + +"Well then," continued Prince Andrew to Alpatych, "report to them as +I have told you"; and not replying a word to Berg who was now mute +beside him, he touched his horse and rode down the side street. + + + + + +CHAPTER V + + +From Smolensk the troops continued to retreat, followed by the +enemy. On the tenth of August the regiment Prince Andrew commanded was +marching along the highroad past the avenue leading to Bald Hills. +Heat and drought had continued for more than three weeks. Each day +fleecy clouds floated across the sky and occasionally veiled the +sun, but toward evening the sky cleared again and the sun set in +reddish-brown mist. Heavy night dews alone refreshed the earth. The +unreaped corn was scorched and shed its grain. The marshes dried up. +The cattle lowed from hunger, finding no food on the sun-parched +meadows. Only at night and in the forests while the dew lasted was +there any freshness. But on the road, the highroad along which the +troops marched, there was no such freshness even at night or when +the road passed through the forest; the dew was imperceptible on the +sandy dust churned up more than six inches deep. As soon as day dawned +the march began. The artillery and baggage wagons moved noiselessly +through the deep dust that rose to the very hubs of the wheels, and +the infantry sank ankle-deep in that soft, choking, hot dust that +never cooled even at night. Some of this dust was kneaded by the +feet and wheels, while the rest rose and hung like a cloud over the +troops, settling in eyes, ears, hair, and nostrils, and worst of all +in the lungs of the men and beasts as they moved along that road. +The higher the sun rose the higher rose that cloud of dust, and +through the screen of its hot fine particles one could look with naked +eye at the sun, which showed like a huge crimson ball in the unclouded +sky. There was no wind, and the men choked in that motionless +atmosphere. They marched with handkerchiefs tied over their noses +and mouths. When they passed through a village they all rushed to +the wells and fought for the water and drank it down to the mud. + +Prince Andrew was in command of a regiment, and the management of +that regiment, the welfare of the men and the necessity of receiving +and giving orders, engrossed him. The burning of Smolensk and its +abandonment made an epoch in his life. A novel feeling of anger +against the foe made him forget his own sorrow. He was entirely +devoted to the affairs of his regiment and was considerate and kind to +his men and officers. In the regiment they called him "our prince," +were proud of him and loved him. But he was kind and gentle only to +those of his regiment, to Timokhin and the like--people quite new to +him, belonging to a different world and who could not know and +understand his past. As soon as he came across a former acquaintance +or anyone from the staff, he bristled up immediately and grew +spiteful, ironical, and contemptuous. Everything that reminded him +of his past was repugnant to him, and so in his relations with that +former circle he confined himself to trying to do his duty and not +to be unfair. + +In truth everything presented itself in a dark and gloomy light to +Prince Andrew, especially after the abandonment of Smolensk on the +sixth of August (he considered that it could and should have been +defended) and after his sick father had had to flee to Moscow, +abandoning to pillage his dearly beloved Bald Hills which he had built +and peopled. But despite this, thanks to his regiment, Prince Andrew +had something to think about entirely apart from general questions. +Two days previously he had received news that his father, son, and +sister had left for Moscow; and though there was nothing for him to do +at Bald Hills, Prince Andrew with a characteristic desire to foment +his own grief decided that he must ride there. + +He ordered his horse to be saddled and, leaving his regiment on +the march, rode to his father's estate where he had been born and +spent his childhood. Riding past the pond where there used always to +be dozens of women chattering as they rinsed their linen or beat it +with wooden beetles, Prince Andrew noticed that there was not a soul +about and that the little washing wharf, torn from its place and +half submerged, was floating on its side in the middle of the pond. He +rode to the keeper's lodge. No one at the stone entrance gates of +the drive and the door stood open. Grass had already begun to grow +on the garden paths, and horses and calves were straying in the +English park. Prince Andrew rode up to the hothouse; some of the glass +panes were broken, and of the trees in tubs some were overturned and +others dried up. He called for Taras the gardener, but no one replied. +Having gone round the corner of the hothouse to the ornamental garden, +he saw that the carved garden fence was broken and branches of the +plum trees had been torn off with the fruit. An old peasant whom +Prince Andrew in his childhood had often seen at the gate was +sitting on a green garden seat, plaiting a bast shoe. + +He was deaf and did not hear Prince Andrew ride up. He was sitting +on the seat the old prince used to like to sit on, and beside him +strips of bast were hanging on the broken and withered branch of a +magnolia. + +Prince Andrew rode up to the house. Several limes in the old +garden had been cut down and a piebald mare and her foal were +wandering in front of the house among the rosebushes. The shutters +were all closed, except at one window which was open. A little serf +boy, seeing Prince Andrew, ran into the house. Alpatych, having sent +his family away, was alone at Bald Hills and was sitting indoors +reading the Lives of the Saints. On hearing that Prince Andrew had +come, he went out with his spectacles on his nose, buttoning his coat, +and, hastily stepping up, without a word began weeping and kissing +Prince Andrew's knee. + +Then, vexed at his own weakness, he turned away and began to +report on the position of affairs. Everything precious and valuable +had been removed to Bogucharovo. Seventy quarters of grain had also +been carted away. The hay and the spring corn, of which Alpatych +said there had been a remarkable crop that year, had been commandeered +by the troops and mown down while still green. The peasants were +ruined; some of them too had gone to Bogucharovo, only a few remained. + +Without waiting to hear him out, Prince Andrew asked: + +"When did my father and sister leave?" meaning when did they leave +for Moscow. + +Alpatych, understanding the question to refer to their departure for +Bogucharovo, replied that they had left on the seventh and again +went into details concerning the estate management, asking for +instructions. + +"Am I to let the troops have the oats, and to take a receipt for +them? We have still six hundred quarters left," he inquired. + +"What am I to say to him?" thought Prince Andrew, looking down on +the old man's bald head shining in the sun and seeing by the +expression on his face that the old man himself understood how +untimely such questions were and only asked them to allay his grief. + +"Yes, let them have it," replied Prince Andrew. + +"If you noticed some disorder in the garden," said Alpatych, "it was +impossible to prevent it. Three regiments have been here and spent the +night, dragoons mostly. I took down the name and rank of their +commanding officer, to hand in a complaint about it." + +"Well, and what are you going to do? Will you stay here if the enemy +occupies the place?" asked Prince Andrew. + +Alpatych turned his face to Prince Andrew, looked at him, and +suddenly with a solemn gesture raised his arm. + +"He is my refuge! His will be done!" he exclaimed. + +A group of bareheaded peasants was approaching across the meadow +toward the prince. + +"Well, good-by!" said Prince Andrew, bending over to Alpatych. +"You must go away too, take away what you can and tell the serfs to go +to the Ryazan estate or to the one near Moscow." + +Alpatych clung to Prince Andrew's leg and burst into sobs. Gently +disengaging himself, the prince spurred his horse and rode down the +avenue at a gallop. + +The old man was still sitting in the ornamental garden, like a fly +impassive on the face of a loved one who is dead, tapping the last +on which he was making the bast shoe, and two little girls, running +out from the hot house carrying in their skirts plums they had plucked +from the trees there, came upon Prince Andrew. On seeing the young +master, the elder one frightened look clutched her younger companion +by the hand and hid with her behind a birch tree, not stopping to pick +up some green plums they had dropped. + +Prince Andrew turned away with startled haste, unwilling to let them +see that they had been observed. He was sorry for the pretty +frightened little girl, was afraid of looking at her, and yet felt +an irresistible desire to do so. A new sensation of comfort and relief +came over him when, seeing these girls, he realized the existence of +other human interests entirely aloof from his own and just as +legitimate as those that occupied him. Evidently these girls +passionately desired one thing--to carry away and eat those green +plums without being caught--and Prince Andrew shared their wish for +the success of their enterprise. He could not resist looking at them +once more. Believing their danger past, they sprang from their +ambush and, chirruping something in their shrill little voices and +holding up their skirts, their bare little sunburned feet scampered +merrily and quickly across the meadow grass. + +Prince Andrew was somewhat refreshed by having ridden off the +dusty highroad along which the troops were moving. But not far from +Bald Hills he again came out on the road and overtook his regiment +at its halting place by the dam of a small pond. It was past one +o'clock. The sun, a red ball through the dust, burned and scorched his +back intolerably through his black coat. The dust always hung +motionless above the buzz of talk that came from the resting troops. +There was no wind. As he crossed the dam Prince Andrew smelled the +ooze and freshness of the pond. He longed to get into that water, +however dirty it might be, and he glanced round at the pool from +whence came sounds of shrieks and laughter. The small, muddy, green +pond had risen visibly more than a foot, flooding the dam, because +it was full of the naked white bodies of soldiers with brick-red +hands, necks, and faces, who were splashing about in it. All this +naked white human flesh, laughing and shrieking, floundered about in +that dirty pool like carp stuffed into a watering can, and the +suggestion of merriment in that floundering mass rendered it specially +pathetic. + +One fair-haired young soldier of the third company, whom Prince +Andrew knew and who had a strap round the calf of one leg, crossed +himself, stepped back to get a good run, and plunged into the water; +another, a dark noncommissioned officer who was always shaggy, stood +up to his waist in the water joyfully wriggling his muscular figure +and snorted with satisfaction as he poured the water over his head +with hands blackened to the wrists. There were sounds of men +slapping one another, yelling, and puffing. + +Everywhere on the bank, on the dam, and in the pond, there was +healthy, white, muscular flesh. The officer, Timokhin, with his red +little nose, standing on the dam wiping himself with a towel, felt +confused at seeing the prince, but made up his mind to address him +nevertheless. + +"It's very nice, your excellency! Wouldn't you like to?" said he. + +"It's dirty," replied Prince Andrew, making a grimace. + +"We'll clear it out for you in a minute," said Timokhin, and, +still undressed, ran off to clear the men out of the pond. + +"The prince wants to bathe." + +"What prince? Ours?" said many voices, and the men were in such +haste to clear out that the prince could hardly stop them. He +decided that he would rather wash himself with water in the barn. + +"Flesh, bodies, cannon fodder!" he thought, and he looked at his own +naked body and shuddered, not from cold but from a sense of disgust +and horror he did not himself understand, aroused by the sight of that +immense number of bodies splashing about in the dirty pond. + + +On the seventh of August Prince Bagration wrote as follows from +his quarters at Mikhaylovna on the Smolensk road: + + +Dear Count Alexis Andreevich--(He was writing to Arakcheev but +knew that his letter would be read by the Emperor, and therefore +weighed every word in it to the best of his ability.) + +I expect the Minister [Barclay de Tolly] has already reported the +abandonment of Smolensk to the enemy. It is pitiable and sad, and +the whole army is in despair that this most important place has been +wantonly abandoned. I, for my part, begged him personally most +urgently and finally wrote him, but nothing would induce him to +consent. I swear to you on my honor that Napoleon was in such a fix as +never before and might have lost half his army but could not have +taken Smolensk. Our troops fought, and are fighting, as never +before. With fifteen thousand men I held the enemy at bay for +thirty-five hours and beat him; but he would not hold out even for +fourteen hours. It is disgraceful, a stain on our army, and as for +him, he ought, it seems to me, not to live. If he reports that our +losses were great, it is not true; perhaps about four thousand, not +more, and not even that; but even were they ten thousand, that's +war! But the enemy has lost masses... + +What would it have cost him to hold out for another two days? They +would have had to retire of their own accord, for they had no water +for men or horses. He gave me his word he would not retreat, but +suddenly sent instructions that he was retiring that night. We +cannot fight in this way, or we may soon bring the enemy to Moscow... + +There is a rumor that you are thinking of peace. God forbid that you +should make peace after all our sacrifices and such insane retreats! +You would set all Russia against you and every one of us would feel +ashamed to wear the uniform. If it has come to this--we must fight +as long as Russia can and as long as there are men able to stand... + +One man ought to be in command, and not two. Your Minister may +perhaps be good as a Minister, but as a general he is not merely bad +but execrable, yet to him is entrusted the fate of our whole +country.... I am really frantic with vexation; forgive my writing +boldly. It is clear that the man who advocates the conclusion of a +peace, and that the Minister should command the army, does not love +our sovereign and desires the ruin of us all. So I write you +frankly: call out the militia. For the Minister is leading these +visitors after him to Moscow in a most masterly way. The whole army +feels great suspicion of the Imperial aide-de-camp Wolzogen. He is +said to be more Napoleon's man than ours, and he is always advising +the Minister. I am not merely civil to him but obey him like a +corporal, though I am his senior. This is painful, but, loving my +benefactor and sovereign, I submit. Only I am sorry for the Emperor +that he entrusts our fine army to such as he. Consider that on our +retreat we have lost by fatigue and left in the hospital more than +fifteen thousand men, and had we attacked this would not have +happened. Tell me, for God's sake, what will Russia, our mother +Russia, say to our being so frightened, and why are we abandoning +our good and gallant Fatherland to such rabble and implanting feelings +of hatred and shame in all our subjects? What are we scared at and +of whom are we afraid? I am not to blame that the Minister is +vacillating, a coward, dense, dilatory, and has all bad qualities. The +whole army bewails it and calls down curses upon him... + + + + + +CHAPTER VI + + +Among the innumerable categories applicable to the phenomena of +human life one may discriminate between those in which substance +prevails and those in which form prevails. To the latter--as +distinguished from village, country, provincial, or even Moscow +life--we may allot Petersburg life, and especially the life of its +salons. That life of the salons is unchanging. Since the year 1805 +we had made peace and had again quarreled with Bonaparte and had +made constitutions and unmade them again, but the salons of Anna +Pavlovna Helene remained just as they had been--the one seven and +the other five years before. At Anna Pavlovna's they talked with +perplexity of Bonaparte's successes just as before and saw in them and +in the subservience shown to him by the European sovereigns a +malicious conspiracy, the sole object of which was to cause +unpleasantness and anxiety to the court circle of which Anna +Pavlovna was the representative. And in Helene's salon, which +Rumyantsev himself honored with his visits, regarding Helene as a +remarkably intelligent woman, they talked with the same ecstasy in +1812 as in 1808 of the "great nation" and the "great man," and +regretted our rupture with France, a rupture which, according to them, +ought to be promptly terminated by peace. + +Of late, since the Emperor's return from the army, there had been +some excitement in these conflicting salon circles and some +demonstrations of hostility to one another, but each camp retained its +own tendency. In Anna Pavlovna's circle only those Frenchmen were +admitted who were deep-rooted legitimists, and patriotic views were +expressed to the effect that one ought not to go to the French theater +and that to maintain the French troupe was costing the government as +much as a whole army corps. The progress of the war was eagerly +followed, and only the reports most flattering to our army were +circulated. In the French circle of Helene and Rumyantsev the +reports of the cruelty of the enemy and of the war were contradicted +and all Napoleon's attempts at conciliation were discussed. In that +circle they discountenanced those who advised hurried preparations for +a removal to Kazan of the court and the girls' educational +establishments under the patronage of the Dowager Empress. In Helene's +circle the war in general was regarded as a series of formal +demonstrations which would very soon end in peace, and the view +prevailed expressed by Bilibin--who now in Petersburg was quite at +home in Helene's house, which every clever man was obliged to visit- +that not by gunpowder but by those who invented it would matters be +settled. In that circle the Moscow enthusiasm--news of which had +reached Petersburg simultaneously with the Emperor's return--was +ridiculed sarcastically and very cleverly, though with much caution. + +Anna Pavlovna's circle on the contrary was enraptured by this +enthusiasm and spoke of it as Plutarch speaks of the deeds of the +ancients. Prince Vasili, who still occupied his former important +posts, formed a connecting link between these two circles. He +visited his "good friend Anna Pavlovna" as well as his daughter's +"diplomatic salon," and often in his constant comings and goings +between the two camps became confused and said at Helene's what he +should have said at Anna Pavlovna's and vice versa. + +Soon after the Emperor's return Prince Vasili in a conversation +about the war at Anna Pavlovna's severely condemned Barclay de +Tolly, but was undecided as to who ought to be appointed commander +in chief. One of the visitors, usually spoken of as "a man of great +merit," having described how he had that day seen Kutuzov, the newly +chosen chief of the Petersburg militia, presiding over the +enrollment of recruits at the Treasury, cautiously ventured to suggest +that Kutuzov would be the man to satisfy all requirements. + +Anna Pavlovna remarked with a melancholy smile that Kutuzov had done +nothing but cause the Emperor annoyance. + +"I have talked and talked at the Assembly of the Nobility," Prince +Vasili interrupted, "but they did not listen to me. I told them his +election as chief of the militia would not please the Emperor. They +did not listen to me. + +"It's all this mania for opposition," he went on. "And who for? It +is all because we want to ape the foolish enthusiasm of those +Muscovites," Prince Vasili continued, forgetting for a moment that +though at Helene's one had to ridicule the Moscow enthusiasm, at +Anna Pavlovna's one had to be ecstatic about it. But he retrieved +his mistake at once. "Now, is it suitable that Count Kutuzov, the +oldest general in Russia, should preside at that tribunal? He will get +nothing for his pains! How could they make a man commander in chief +who cannot mount a horse, who drops asleep at a council, and has the +very worst morals! A good reputation he made for himself at Bucharest! +I don't speak of his capacity as a general, but at a time like this +how they appoint a decrepit, blind old man, positively +blind? A fine idea to have a blind general! He can't see anything. +To play blindman's bluff? He can't see at all!" + +No one replied to his remarks. + +This was quite correct on the twenty-fourth of July. But on the +twenty-ninth of July Kutuzov received the title of Prince. This +might indicate a wish to get rid of him, and therefore Prince Vasili's +opinion continued to be correct though he was not now in any hurry +to express it. But on the eighth of August a committee, consisting +of Field Marshal Saltykov, Arakcheev, Vyazmitinov, Lopukhin, and +Kochubey met to consider the progress of the war. This committee +came to the conclusion that our failures were due to a want of unity +in the command and though the members of the committee were aware of +the Emperor's dislike of Kutuzov, after a short deliberation they +agreed to advise his appointment as commander in chief. That same +day Kutuzov was appointed commander in chief with full powers over the +armies and over the whole region occupied by them. + +On the ninth of August Prince Vasili at Anna Pavlovna's again met +the "man of great merit." The latter was very attentive to Anna +Pavlovna because he wanted to be appointed director of one of the +educational establishments for young ladies. Prince Vasili entered the +room with the air of a happy conqueror who has attained the object +of his desires. + +"Well, have you heard the great news? Prince Kutuzov is field +marshal! All dissensions are at an end! I am so glad, so delighted! At +last we have a man!" said he, glancing sternly and significantly round +at everyone in the drawing room. + +The "man of great merit," despite his desire to obtain the post of +director, could not refrain from reminding Prince Vasili of his former +opinion. Though this was impolite to Prince Vasili in Anna +Pavlovna's drawing room, and also to Anna Pavlovna herself who had +received the news with delight, he could not resist the temptation. + +"But, Prince, they say he is blind!" said he, reminding Prince +Vasili of his own words. + +"Eh? Nonsense! He sees well enough," said Prince Vasili rapidly, +in a deep voice and with a slight cough--the voice and cough with +which he was wont to dispose of all difficulties. + +"He sees well enough," he added. "And what I am so pleased about," +he went on, "is that our sovereign has given him full powers over +all the armies and the whole region--powers no commander in chief ever +had before. He is a second autocrat," he concluded with a victorious +smile. + +"God grant it! God grant it!" said Anna Pavlovna. + +The "man of great merit," who was still a novice in court circles, +wishing to flatter Anna Pavlovna by defending her former position on +this question, observed: + +"It is said that the Emperor was reluctant to give Kutuzov those +powers. They say he blushed like a girl to whom Joconde is read, +when he said to Kutuzov: 'Your Emperor and the Fatherland award you +this honor.'" + +"Perhaps the heart took no part in that speech," said Anna Pavlovna. + +"Oh, no, no!" warmly rejoined Prince Vasili, who would not now yield +Kutuzov to anyone; in his opinion Kutuzov was not only admirable +himself, but was adored by everybody. "No, that's impossible," said +he, "for our sovereign appreciated him so highly before." + +"God grant only that Prince Kutuzov assumes real power and does +not allow anyone to put a spoke in his wheel," observed Anna Pavlovna. + +Understanding at once to whom she alluded, Prince Vasili said in a +whisper: + +"I know for a fact that Kutuzov made it an absolute condition that +the Tsarevich should not be with the army. Do you know what he said to +the Emperor?" + +And Prince Vasili repeated the words supposed to have been spoken by +Kutuzov to the Emperor. "I can neither punish him if he does wrong nor +reward him if he does right." + +"Oh, a very wise man is Prince Kutuzov! I have known him a long +time!" + +"They even say," remarked the "man of great merit" who did not yet +possess courtly tact, "that his excellency made it an express +condition that the sovereign himself should not be with the army." + +As soon as he said this both Prince Vasili and Anna Pavlovna +turned away from him and glanced sadly at one another with a sigh at +his naivete. + + + + + +CHAPTER VII + + +While this was taking place in Petersburg the French had already +passed Smolensk and were drawing nearer and nearer to Moscow. +Napoleon's historian Thiers, like other of his historians, trying to +justify his hero says that he was drawn to the walls of Moscow against +his will. He is as right as other historians who look for the +explanation of historic events in the will of one man; he is as +right as the Russian historians who maintain that Napoleon was drawn +to Moscow by the skill of the Russian commanders. Here besides the law +of retrospection, which regards all the past as a preparation for +events that subsequently occur, the law of reciprocity comes in, +confusing the whole matter. A good chessplayer having lost a game is +sincerely convinced that his loss resulted from a mistake he made +and looks for that mistake in the opening, but forgets that at each +stage of the game there were similar mistakes and that none of his +moves were perfect. He only notices the mistake to which he pays +attention, because his opponent took advantage of it. How much more +complex than this is the game of war, which occurs under certain +limits of time, and where it is not one will that manipulates lifeless +objects, but everything results from innumerable conflicts of +various wills! + +After Smolensk Napoleon sought a battle beyond Dorogobuzh at Vyazma, +and then at Tsarevo-Zaymishche, but it happened that owing to a +conjunction of innumerable circumstances the Russians could not give +battle till they reached Borodino, seventy miles from Moscow. From +Vyazma Napoleon ordered a direct advance on Moscow. + +Moscou, la capitale asiatique de ce grand empire, la ville sacree +des peuples d'Alexandre, Moscou avec ses innombrables eglises en forme +de pagodes chinoises,* this Moscow gave Napoleon's imagination no +rest. On the march from Vyazma to Tsarevo-Zaymishche he rode his light +bay bobtailed ambler accompanied by his Guards, his bodyguard, his +pages, and aides-de-camp. Berthier, his chief of staff, dropped behind +to question a Russian prisoner captured by the cavalry. Followed by +Lelorgne d'Ideville, an interpreter, he overtook Napoleon at a +gallop and reined in his horse with an amused expression. + + +*"Moscow, the Asiatic capital of this great empire, the sacred +city of Alexander's people, Moscow with its innumerable churches +shaped like Chinese pagodas." + + +"Well?" asked Napoleon. + +"One of Platov's Cossacks says that Platov's corps is joining up +with the main army and that Kutuzov has been appointed commander in +chief. He is a very shrewd and garrulous fellow." + +Napoleon smiled and told them to give the Cossack a horse and +bring the man to him. He wished to talk to him himself. Several +adjutants galloped off, and an hour later, Lavrushka, the serf Denisov +had handed over to Rostov, rode up to Napoleon in an orderly's +jacket and on a French cavalry saddle, with a merry, and tipsy face. +Napoleon told him to ride by his side and began questioning him. + +"You are a Cossack?" + +"Yes, a Cossack, your Honor." + +"The Cossack, not knowing in what company he was, for Napoleon's +plain appearance had nothing about it that would reveal to an Oriental +mind the presence of a monarch, talked with extreme familiarity of the +incidents of the war," says Thiers, narrating this episode. In reality +Lavrushka, having got drunk the day before and left his master +dinnerless, had been whipped and sent to the village in quest of +chickens, where he engaged in looting till the French took him +prisoner. Lavrushka was one of those coarse, bare-faced lackeys who +have seen all sorts of things, consider it necessary to do +everything in a mean and cunning way, are ready to render any sort +of service to their master, and are keen at guessing their master's +baser impulses, especially those prompted by vanity and pettiness. + +Finding himself in the company of Napoleon, whose identity he had +easily and surely recognized, Lavrushka was not in the least abashed +but merely did his utmost to gain his new master's favor. + +He knew very well that this was Napoleon, but Napoleon's presence +could no more intimidate him than Rostov's, or a sergeant major's with +the rods, would have done, for he had nothing that either the sergeant +major or Napoleon could deprive him of. + +So he rattled on, telling all the gossip he had heard among the +orderlies. Much of it true. But when Napoleon asked him whether the +Russians thought they would beat Bonaparte or not, Lavrushka screwed +up his eyes and considered. + +In this question he saw subtle cunning, as men of his type see +cunning in everything, so he frowned and did not answer immediately. + +"It's like this," he said thoughtfully, "if there's a battle soon, +yours will win. That's right. But if three days pass, then after that, +well, then that same battle will not soon be over." + +Lelorgne d'Ideville smilingly interpreted this speech to Napoleon +thus: "If a battle takes place within the next three days the French +will win, but if later, God knows what will happen." Napoleon did +not smile, though he was evidently in high good humor, and he +ordered these words to be repeated. + +Lavrushka noticed this and to entertain him further, pretending +not to know who Napoleon was, added: + +"We know that you have Bonaparte and that he has beaten everybody in +the world, but we are a different matter..."--without knowing why or +how this bit of boastful patriotism slipped out at the end. + +The interpreter translated these words without the last phrase, +and Bonaparte smiled. "The young Cossack made his mighty +interlocutor smile," says Thiers. After riding a few paces in silence, +Napoleon turned to Berthier and said he wished to see how the news +that he was talking to the Emperor himself, to that very Emperor who +had written his immortally victorious name on the Pyramids, would +affect this enfant du Don.* + + +*"Child of the Don." + + +The fact was accordingly conveyed to Lavrushka. + +Lavrushka, understanding that this was done to perplex him and +that Napoleon expected him to be frightened, to gratify his new +masters promptly pretended to be astonished and awe-struck, opened his +eyes wide, and assumed the expression he usually put on when taken +to be whipped. "As soon as Napoleon's interpreter had spoken," says +Thiers, "the Cossack, seized by amazement, did not utter another word, +but rode on, his eyes fixed on the conqueror whose fame had reached +him across the steppes of the East. All his loquacity was suddenly +arrested and replaced by a naive and silent feeling of admiration. +Napoleon, after making the Cossack a present, had him set free like +a bird restored to its native fields." + +Napoleon rode on, dreaming of the Moscow that so appealed to his +imagination, and "the bird restored to its native fields" galloped +to our outposts, inventing on the way all that had not taken place but +that he meant to relate to his comrades. What had really taken place +he did not wish to relate because it seemed to him not worth +telling. He found the Cossacks, inquired for the regiment operating +with Platov's detachment and by evening found his master, Nicholas +Rostov, quartered at Yankovo. Rostov was just mounting to go for a +ride round the neighboring villages with Ilyin; he let Lavrushka +have another horse and took him along with him. + + + + + +CHAPTER VIII + + +Princess Mary was not in Moscow and out of danger as Prince Andrew +supposed. + +After the return of Alpatych from Smolensk the old prince suddenly +seemed to awake as from a dream. He ordered the militiamen to be +called up from the villages and armed, and wrote a letter to the +commander in chief informing him that he had resolved to remain at +Bald Hills to the last extremity and to defend it, leaving to the +commander in chief's discretion to take measures or not for the +defense of Bald Hills, where one of Russia's oldest generals would +be captured or killed, and he announced to his household that he would +remain at Bald Hills. + +But while himself remaining, he gave instructions for the +departure of the princess and Dessalles with the little prince to +Bogucharovo and thence to Moscow. Princess Mary, alarmed by her +father's feverish and sleepless activity after his previous apathy, +could not bring herself to leave him alone and for the first time in +her life ventured to disobey him. She refused to go away and her +father's fury broke over her in a terrible storm. He repeated every +injustice he had ever inflicted on her. Trying to convict her, he told +her she had worn him out, had caused his quarrel with his son, had +harbored nasty suspicions of him, making it the object of her life +to poison his existence, and he drove her from his study telling her +that if she did not go away it was all the same to him. He declared +that he did not wish to remember her existence and warned her not to +dare to let him see her. The fact that he did not, as she had +feared, order her to be carried away by force but only told her not to +let him see her cheered Princess Mary. She knew it was a proof that in +the depth of his soul he was glad she was remaining at home and had +not gone away. + +The morning after little Nicholas had left, the old prince donned +his full uniform and prepared to visit the commander in chief. His +caleche was already at the door. Princess Mary saw him walk out of the +house in his uniform wearing all his orders and go down the garden +to review his armed peasants and domestic serfs. She sat by the window +listening to his voice which reached her from the garden. Suddenly +several men came running up the avenue with frightened faces. + +Princess Mary ran out to the porch, down the flower-bordered path, +and into the avenue. A large crowd of militiamen and domestics were +moving toward her, and in their midst several men were supporting by +the armpits and dragging along a little old man in a uniform and +decorations. She ran up to him and, in the play of the sunlight that +fell in small round spots through the shade of the lime-tree avenue, +could not be sure what change there was in his face. All she could see +was that his former stern and determined expression had altered to one +of timidity and submission. On seeing his daughter he moved his +helpless lips and made a hoarse sound. It was impossible to make out +what he wanted. He was lifted up, carried to his study, and laid on +the very couch he had so feared of late. + +The doctor, who was fetched that same night, bled him and said +that the prince had had a seizure paralyzing his right side. + +It was becoming more and more dangerous to remain at Bald Hills, and +next day they moved the prince to Bogucharovo, the doctor accompanying +him. + +By the time they reached Bogucharovo, Dessalles and the little +prince had already left for Moscow. + +For three weeks the old prince lay stricken by paralysis in the +new house Prince Andrew had built at Bogucharovo, ever in the same +state, getting neither better nor worse. He was unconscious and lay +like a distorted corpse. He muttered unceasingly, his eyebrows and +lips twitching, and it was impossible to tell whether he understood +what was going on around him or not. One thing was certain--that he +was suffering and wished to say something. But what it was, no one +could tell: it might be some caprice of a sick and half-crazy man, +or it might relate to public affairs, or possibly to family concerns. + +The doctor said this restlessness did not mean anything and was +due to physical causes; but Princess Mary thought he wished to tell +her something, and the fact that her presence always increased his +restlessness confirmed her opinion. + +He was evidently suffering both physically and mentally. There was +no hope of recovery. It was impossible for him to travel, it would not +do to let him die on the road. "Would it not be better if the end +did come, the very end?" Princess Mary sometimes thought. Night and +day, hardly sleeping at all, she watched him and, terrible to say, +often watched him not with hope of finding signs of improvement but +wishing to find symptoms of the approach of the end. + +Strange as it was to her to acknowledge this feeling in herself, yet +there it was. And what seemed still more terrible to her was that +since her father's illness began (perhaps even sooner, when she stayed +with him expecting something to happen), all the personal desires +and hopes that had been forgotten or sleeping within her had awakened. +Thoughts that had not entered her mind for years--thoughts of a life +free from the fear of her father, and even the possibility of love and +of family happiness--floated continually in her imagination like +temptations of the devil. Thrust them aside as she would, questions +continually recurred to her as to how she would order her life now, +after that. These were temptations of the devil and Princess Mary knew +it. She knew that the sole weapon against him was prayer, and she +tried to pray. She assumed an attitude of prayer, looked at the icons, +repeated the words of a prayer, but she could not pray. She felt +that a different world had now taken possession of her--the life of +a world of strenuous and free activity, quite opposed to the spiritual +world in which till now she had been confined and in which her +greatest comfort had been prayer. She could not pray, could not +weep, and worldly cares took possession of her. + +It was becoming dangerous to remain in Bogucharovo. News of the +approach of the French came from all sides, and in one village, ten +miles from Bogucharovo, a homestead had been looted by French +marauders. + +The doctor insisted on the necessity of moving the prince; the +provincial Marshal of the Nobility sent an official to Princess Mary +to persuade her to get away as quickly as possible, and the head of +the rural police having come to Bogucharovo urged the same thing, +saying that the French were only some twenty-five miles away, that +French proclamations were circulating in the villages, and that if the +princess did not take her father away before the fifteenth, he could +not answer for the consequences. + +The princess decided to leave on the fifteenth. The cares of +preparation and giving orders, for which everyone came to her, +occupied her all day. She spent the night of the fourteenth as +usual, without undressing, in the room next to the one where the +prince lay. Several times, waking up, she heard his groans and +muttering, the creak of his bed, and the steps of Tikhon and the +doctor when they turned him over. Several times she listened at the +door, and it seemed to her that his mutterings were louder than +usual and that they turned him over oftener. She could not sleep and +several times went to the door and listened, wishing to enter but +not deciding to do so. Though he did not speak, Princess Mary saw +and knew how unpleasant every sign of anxiety on his account was to +him. She had noticed with what dissatisfaction he turned from the look +she sometimes involuntarily fixed on him. She knew that her going in +during the night at an unusual hour would irritate him. + +But never had she felt so grieved for him or so much afraid of +losing him. She recalled all her life with him and in every word and +act of his found an expression of his love of her. Occasionally amid +these memories temptations of the devil would surge into her +imagination: thoughts of how things would be after his death, and +how her new, liberated life would be ordered. But she drove these +thoughts away with disgust. Toward morning he became quiet and she +fell asleep. + +She woke late. That sincerity which often comes with waking showed +her clearly what chiefly concerned her about her father's illness. +On waking she listened to what was going on behind the door and, +hearing him groan, said to herself with a sigh that things were +still the same. + +"But what could have happened? What did I want? I want his death!" +she cried with a feeling of loathing for herself. + +She washed, dressed, said her prayers, and went out to the porch. In +front of it stood carriages without horses and things were being +packed into the vehicles. + +It was a warm, gray morning. Princess Mary stopped at the porch, +still horrified by her spiritual baseness and trying to arrange her +thoughts before going to her father. The doctor came downstairs and +went out to her. + +"He is a little better today," said he. "I was looking for you. +One can make out something of what he is saying. His head is +clearer. Come in, he is asking for you..." + +Princess Mary's heart beat so violently at this news that she grew +pale and leaned against the wall to keep from falling. To see him, +talk to him, feel his eyes on her now that her whole soul was +overflowing with those dreadful, wicked temptations, was a torment +of joy and terror. + +"Come," said the doctor. + +Princess Mary entered her father's room and went up to his bed. He +was lying on his back propped up high, and his small bony hands with +their knotted purple veins were lying on the quilt; his left eye gazed +straight before him, his right eye was awry, and his brows and lips +motionless. He seemed altogether so thin, small, and pathetic. His +face seemed to have shriveled or melted; his features had grown +smaller. Princess Mary went up and kissed his hand. His left hand +pressed hers so that she understood that he had long been waiting +for her to come. He twitched her hand, and his brows and lips quivered +angrily. + +She looked at him in dismay trying to guess what he wanted of her. +When she changed her position so that his left eye could see her +face he calmed down, not taking his eyes off her for some seconds. +Then his lips and tongue moved, sounds came, and he began to speak, +gazing timidly and imploringly at her, evidently afraid that she might +not understand. + +Straining all her faculties Princess Mary looked at him. The comic +efforts with which he moved his tongue made her drop her eyes and with +difficulty repress the sobs that rose to her throat. He said +something, repeating the same words several times. She could not +understand them, but tried to guess what he was saying and inquiringly +repeated the words he uttered. + +"Mmm...ar...ate...ate..." he repeated several times. + +It was quite impossible to understand these sounds. The doctor +thought he had guessed them, and inquiringly repeated: "Mary, are +you afraid?" The prince shook his head, again repeated the same +sounds. + +"My mind, my mind aches?" questioned Princess Mary. + +He made a mumbling sound in confirmation of this, took her hand, and +began pressing it to different parts of his breast as if trying to +find the right place for it. + +"Always thoughts... about you... thoughts..." he then uttered much +more clearly than he had done before, now that he was sure of being +understood. + +Princess Mary pressed her head against his hand, trying to hide +her sobs and tears. + +He moved his hand over her hair. + +"I have been calling you all night..." he brought out. + +"If only I had known..." she said through her tears. "I was afraid +to come in." + +He pressed her hand. + +"Weren't you asleep?" + +"No, I did not sleep," said Princess Mary, shaking her head. + +Unconsciously imitating her father, she now tried to express herself +as he did, as much as possible by signs, and her tongue too seemed +to move with difficulty. + +"Dear one... Dearest..." Princess Mary could not quite make out what +he had said, but from his look it was clear that he had uttered a +tender caressing word such as he had never used to her before. "Why +didn't you come in?" + +"And I was wishing for his death!" thought Princess Mary. + +He was silent awhile. + +"Thank you... daughter dear!... for all, for all... forgive!... +thank you!... forgive!... thank you!..." and tears began to flow +from his eyes. "Call Andrew!" he said suddenly, and a childish, +timid expression of doubt showed itself on his face as he spoke. + +He himself seemed aware that his demand was meaningless. So at least +it seemed to Princess Mary. + +"I have a letter from him," she replied. + +He glanced at her with timid surprise. + +"Where is he?" + +"He's with the army, Father, at Smolensk." + +He closed his eyes and remained silent a long time. Then as if in +answer to his doubts and to confirm the fact that now he understood +and remembered everything, he nodded his head and reopened his eyes. + +"Yes," he said, softly and distinctly. "Russia has perished. They've +destroyed her." + +And he began to sob, and again tears flowed from his eyes. +Princess Mary could no longer restrain herself and wept while she +gazed at his face. + +Again he closed his eyes. His sobs ceased, he pointed to his eyes, +and Tikhon, understanding him, wiped away the tears. + +Then he again opened his eyes and said something none of them +could understand for a long time, till at last Tikhon understood and +repeated it. Princess Mary had sought the meaning of his words in +the mood in which he had just been speaking. She thought he was +speaking of Russia, or Prince Andrew, of herself, of his grandson, +or of his own death, and so she could not guess his words. + +"Put on your white dress. I like it," was what he said. + +Having understood this Princess Mary sobbed still louder, and the +doctor taking her arm led her out to the veranda, soothing her and +trying to persuade her to prepare for her journey. When she had left +the room the prince again began speaking about his son, about the war, +and about the Emperor, angrily twitching his brows and raising his +hoarse voice, and then he had a second and final stroke. + +Princess Mary stayed on the veranda. The day had cleared, it was hot +and sunny. She could understand nothing, think of nothing and feel +nothing, except passionate love for her father, love such as she +thought she had never felt till that moment. She ran out sobbing +into the garden and as far as the pond, along the avenues of young +lime trees Prince Andrew had planted. + +"Yes... I... I... I wished for his death! Yes, I wanted it to end +quicker.... I wished to be at peace.... And what will become of me? +What use will peace be when he is no longer here?" Princess Mary +murmured, pacing the garden with hurried steps and pressing her +hands to her bosom which heaved with convulsive sobs. + +When she had completed the tour of the garden, which brought her +again to the house, she saw Mademoiselle Bourienne--who had remained +at Bogucharovo and did not wish to leave it--coming toward her with +a stranger. This was the Marshal of the Nobility of the district, +who had come personally to point out to the princess the necessity for +her prompt departure. Princess Mary listened without understanding +him; she led him to the house, offered him lunch, and sat down with +him. Then, excusing herself, she went to the door of the old +prince's room. The doctor came out with an agitated face and said +she could not enter. + +"Go away, Princess! Go away... go away!" + +She returned to the garden and sat down on the grass at the foot +of the slope by the pond, where no one could see her. She did not know +how long she had been there when she was aroused by the sound of a +woman's footsteps running along the path. She rose and saw Dunyasha +her maid, who was evidently looking for her, and who stopped +suddenly as if in alarm on seeing her mistress. + +"Please come, Princess... The Prince," said Dunyasha in a breaking +voice. + +"Immediately, I'm coming, I'm coming!" replied the princess +hurriedly, not giving Dunyasha time to finish what she was saying, and +trying to avoid seeing the girl she ran toward the house. + +"Princess, it's God's will! You must be prepared for everything," +said the Marshal, meeting her at the house door. + +"Let me alone; it's not true!" she cried angrily to him. + +The doctor tried to stop her. She pushed him aside and ran to her +father's door. "Why are these people with frightened faces stopping +me? I don't want any of them! And what are they doing here?" she +thought. She opened the door and the bright daylight in that +previously darkened room startled her. In the room were her nurse +and other women. They all drew back from the bed, making way for +her. He was still lying on the bed as before, but the stern expression +of his quiet face made Princess Mary stop short on the threshold. + +"No, he's not dead--it's impossible!" she told herself and +approached him, and repressing the terror that seized her, she pressed +her lips to his cheek. But she stepped back immediately. All the force +of the tenderness she had been feeling for him vanished instantly +and was replaced by a feeling of horror at what lay there before +her. "No, he is no more! He is not, but here where he was is something +unfamiliar and hostile, some dreadful, terrifying, and repellent +mystery!" And hiding her face in her hands, Princess Mary sank into +the arms of the doctor, who held her up. + + +In the presence of Tikhon and the doctor the women washed what had +been the prince, tied his head up with a handkerchief that the mouth +should not stiffen while open, and with another handkerchief tied +together the legs that were already spreading apart. Then they dressed +him in uniform with his decorations and placed his shriveled little +body on a table. Heaven only knows who arranged all this and when, but +it all got done as if of its own accord. Toward night candles were +burning round his coffin, a pall was spread over it, the floor was +strewn with sprays of juniper, a printed band was tucked in under +his shriveled head, and in a corner of the room sat a chanter +reading the psalms. + +Just as horses shy and snort and gather about a dead horse, so the +inmates of the house and strangers crowded into the drawing room round +the coffin--the Marshal, the village Elder, peasant women--and all +with fixed and frightened eyes, crossing themselves, bowed and +kissed the old prince's cold and stiffened hand. + + + + + +CHAPTER IX + + +Until Prince Andrew settled in Bogucharovo its owners had always +been absentees, and its peasants were of quite a different character +from those of Bald Hills. They differed from them in speech, dress, +and disposition. They were called steppe peasants. The old prince used +to approve of them for their endurance at work when they came to +Bald Hills to help with the harvest or to dig ponds, and ditches, +but he disliked them for their boorishness. + +Prince Andrew's last stay at Bogucharovo, when he introduced +hospitals and schools and reduced the quitrent the peasants had to +pay, had not softened their disposition but had on the contrary +strengthened in them the traits of character the old prince called +boorishness. Various obscure rumors were always current among them: at +one time a rumor that they would all be enrolled as Cossacks; at +another of a new religion to which they were all to be converted; then +of some proclamation of the Tsar's and of an oath to the Tsar Paul +in 1797 (in connection with which it was rumored that freedom had been +granted them but the landowners had stopped it), then of Peter +Fedorovich's return to the throne in seven years' time, when +everything would be made free and so "simple" that there would be no +restrictions. Rumors of the war with Bonaparte and his invasion were +connected in their minds with the same sort of vague notions of +Antichrist, the end of the world, and "pure freedom." + +In the vicinity of Bogucharovo were large villages belonging to +the crown or to owners whose serfs paid quitrent and could work +where they pleased. There were very few resident landlords in the +neighborhood and also very few domestic or literate serfs, and in +the lives of the peasantry of those parts the mysterious undercurrents +in the life of the Russian people, the causes and meaning of which are +so baffling to contemporaries, were more clearly and strongly +noticeable than among others. One instance, which had occurred some +twenty years before, was a movement among the peasants to emigrate +to some unknown "warm rivers." Hundreds of peasants, among them the +Bogucharovo folk, suddenly began selling their cattle and moving in +whole families toward the southeast. As birds migrate to somewhere +beyond the sea, so these men with their wives and children streamed to +the southeast, to parts where none of them had ever been. They set off +in caravans, bought their freedom one by one or ran away, and drove or +walked toward the "warm rivers." Many of them were punished, some sent +to Siberia, many died of cold and hunger on the road, many returned of +their own accord, and the movement died down of itself just as it +had sprung up, without apparent reason. But such undercurrents still +existed among the people and gathered new forces ready to manifest +themselves just as strangely, unexpectedly, and at the same time +simply, naturally, and forcibly. Now in 1812, to anyone living in +close touch with these people it was apparent that these undercurrents +were acting strongly and nearing an eruption. + +Alpatych, who had reached Bogucharovo shortly before the old +prince's death, noticed an agitation among the peasants, and that +contrary to what was happening in the Bald Hills district, where +over a radius of forty miles all the peasants were moving away and +leaving their villages to be devastated by the Cossacks, the +peasants in the steppe region round Bogucharovo were, it was +rumored, in touch with the French, received leaflets from them that +passed from hand to hand, and did not migrate. He learned from +domestic serfs loyal to him that the peasant Karp, who possessed great +influence in the village commune and had recently been away driving +a government transport, had returned with news that the Cossacks +were destroying deserted villages, but that the French did not harm +them. Alpatych also knew that on the previous day another peasant +had even brought from the village of Visloukhovo, which was occupied +by the French, a proclamation by a French general that no harm would +be done to the inhabitants, and if they remained they would be paid +for anything taken from them. As proof of this the peasant had brought +from Visloukhovo a hundred rubles in notes (he did not know that +they were false) paid to him in advance for hay. + +More important still, Alpatych learned that on the morning of the +very day he gave the village Elder orders to collect carts to move the +princess' luggage from Bogucharovo, there had been a village meeting +at which it had been decided not to move but to wait. Yet there was no +time to waste. On the fifteenth, the day of the old prince's death, +the Marshal had insisted on Princess Mary's leaving at once, as it was +becoming dangerous. He had told her that after the sixteenth he +could not be responsible for what might happen. On the evening of +the day the old prince died the Marshal went away, promising to return +next day for the funeral. But this he was unable to do, for he +received tidings that the French had unexpectedly advanced, and had +barely time to remove his own family and valuables from his estate. + +For some thirty years Bogucharovo had been managed by the village +Elder, Dron, whom the old prince called by the diminutive "Dronushka." + +Dron was one of those physically and mentally vigorous peasants +who grow big beards as soon as they are of age and go on unchanged +till they are sixty or seventy, without a gray hair or the loss of a +tooth, as straight and strong at sixty as at thirty. + +Soon after the migration to the "warm rivers," in which he had taken +part like the rest, Dron was made village Elder and overseer of +Bogucharovo, and had since filled that post irreproachably for +twenty-three years. The peasants feared him more than they did their +master. The masters, both the old prince and the young, and the +steward respected him and jestingly called him "the Minister." +During the whole time of his service Dron had never been drunk or ill, +never after sleepless nights or the hardest tasks had he shown the +least fatigue, and though he could not read he had never forgotten a +single money account or the number of quarters of flour in any of +the endless cartloads he sold for the prince, nor a single shock of +the whole corn crop on any single acre of the Bogucharovo fields. + +Alpatych, arriving from the devastated Bald Hills estate, sent for +his Dron on the day of the prince's funeral and told him to have +twelve horses got ready for the princess' carriages and eighteen carts +for the things to be removed from Bogucharovo. Though the peasants +paid quitrent, Alpatych thought no difficulty would be made about +complying with this order, for there were two hundred and thirty +households at work in Bogucharovo and the peasants were well to do. +But on hearing the order Dron lowered his eyes and remained silent. +Alpatych named certain peasants he knew, from whom he told him to take +the carts. + +Dron replied that the horses of these peasants were away carting. +Alpatych named others, but they too, according to Dron, had no +horses available: some horses were carting for the government, +others were too weak, and others had died for want of fodder. It +seemed that no horses could be had even for the carriages, much less +for the carting. + +Alpatych looked intently at Dron and frowned. Just as Dron was a +model village Elder, so Alpatych had not managed the prince's +estates for twenty years in vain. He a model steward, possessing in +the highest degree the faculty of divining the needs and instincts +of those he dealt with. Having glanced at Dron he at once understood +that his answers did not express his personal views but the general +mood of the Bogucharovo commune, by which the Elder had already been +carried away. But he also knew that Dron, who had acquired property +and was hated by the commune, must be hesitating between the two +camps: the masters' and the serfs'. He noticed this hesitation in +Dron's look and therefore frowned and moved closer up to him. + +"Now just listen, Dronushka," said he. "Don't talk nonsense to me. +His excellency Prince Andrew himself gave me orders to move all the +people away and not leave them with the enemy, and there is an order +from the Tsar about it too. Anyone who stays is a traitor to the Tsar. +Do you hear?" + +"I hear," Dron answered without lifting his eyes. + +Alpatych was not satisfied with this reply. + +"Eh, Dron, it will turn out badly!" he said, shaking his head. + +"The power is in your hands," Dron rejoined sadly. + +"Eh, Dron, drop it!" Alpatych repeated, withdrawing his hand from +his bosom and solemnly pointing to the floor at Dron's feet. "I can +see through you and three yards into the ground under you," he +continued, gazing at the floor in front of Dron. + +Dron was disconcerted, glanced furtively at Alpatych and again +lowered his eyes. + +"You drop this nonsense and tell the people to get ready to leave +their homes and go to Moscow and to get carts ready for tomorrow +morning for the princess' things. And don't go to any meeting +yourself, do you hear?" + +Dron suddenly fell on his knees. + +"Yakov Alpatych, discharge me! Take the keys from me and discharge +me, for Christ's sake!" + +"Stop that!" cried Alpatych sternly. "I see through you and three +yards under you," he repeated, knowing that his skill in beekeeping, +his knowledge of the right time to sow the oats, and the fact that +he had been able to retain the old prince's favor for twenty years had +long since gained him the reputation of being a wizard, and that the +power of seeing three yards under a man is considered an attribute +of wizards. + +Dron got up and was about to say something, but Alpatych interrupted +him. + +"What is it you have got into your heads, eh?... What are you +thinking of, eh?" + +"What am I to do with the people?" said Dron. "They're quite +beside themselves; I have already told them..." + +"'Told them,' I dare say!" said Alpatych. "Are they drinking?" he +asked abruptly. + +"Quite beside themselves, Yakov Alpatych; they've fetched another +barrel." + +"Well, then, listen! I'll go to the police officer, and you tell +them so, and that they must stop this and the carts must be got +ready." + +"I understand." + +Alpatych did not insist further. He had managed people for a long +time and knew that the chief way to make them obey is to show no +suspicion that they can possibly disobey. Having wrung a submissive "I +understand" from Dron, Alpatych contented himself with that, though he +not only doubted but felt almost certain that without the help of +troops the carts would not be forthcoming. + +And so it was, for when evening came no carts had been provided. +In the village, outside the drink shop, another meeting was being +held, which decided that the horses should be driven out into the +woods and the carts should not be provided. Without saying anything of +this to the princess, Alpatych had his own belongings taken out of the +carts which had arrived from Bald Hills and had those horses got ready +for the princess' carriages. Meanwhile he went himself to the police +authorities. + + + + + +CHAPTER X + + +After her father's funeral Princess Mary shut herself up in her room +and did not admit anyone. A maid came to the door to say that Alpatych +was asking for orders about their departure. (This was before his talk +with Dron.) Princess Mary raised herself on the sofa on which she +had been lying and replied through the closed door that she did not +mean to go away and begged to be left in peace. + +The windows of the room in which she was lying looked westward. +She lay on the sofa with her face to the wall, fingering the buttons +of the leather cushion and seeing nothing but that cushion, and her +confused thoughts were centered on one subject--the irrevocability +of death and her own spiritual baseness, which she had not +suspected, but which had shown itself during her father's illness. She +wished to pray but did not dare to, dared not in her present state +of mind address herself to God. She lay for a long time in that +position. + +The sun had reached the other side of the house, and its slanting +rays shone into the open window, lighting up the room and part of +the morocco cushion at which Princess Mary was looking. The flow of +her thoughts suddenly stopped. Unconsciously she sat up, smoothed +her hair, got up, and went to the window, involuntarily inhaling the +freshness of the clear but windy evening. + +"Yes, you can well enjoy the evening now! He is gone and no one will +hinder you," she said to herself, and sinking into a chair she let her +head fall on the window sill. + +Someone spoke her name in a soft and tender voice from the garden +and kissed her head. She looked up. It was Mademoiselle Bourienne in a +black dress and weepers. She softly approached Princess Mary, +sighed, kissed her, and immediately began to cry. The princess +looked up at her. All their former disharmony and her own jealousy +recurred to her mind. But she remembered too how he had changed of +late toward Mademoiselle Bourienne and could not bear to see her, +thereby showing how unjust were the reproaches Princess Mary had +mentally addressed to her. "Besides, is it for me, for me who +desired his death, to condemn anyone?" she thought. + +Princess Mary vividly pictured to herself the position of +Mademoiselle Bourienne, whom she had of late kept at a distance, but +who yet was dependent on her and living in her house. She felt sorry +for her and held out her hand with a glance of gentle inquiry. +Mademoiselle Bourienne at once began crying again and kissed that +hand, speaking of the princess' sorrow and making herself a partner in +it. She said her only consolation was the fact that the princess +allowed her to share her sorrow, that all the old misunderstandings +should sink into nothing but this great grief; that she felt herself +blameless in regard to everyone, and that he, from above, saw her +affection and gratitude. The princess heard her, not heeding her words +but occasionally looking up at her and listening to the sound of her +voice. + +"Your position is doubly terrible, dear princess," said Mademoiselle +Bourienne after a pause. "I understand that you could not, and cannot, +think of yourself, but with my love for you I must do so.... Has +Alpatych been to you? Has he spoken to you of going away?" she asked. + +Princess Mary did not answer. She did not understand who was to go +or where to. "Is it possible to plan or think of anything now? Is it +not all the same?" she thought, and did not reply. + +"You know, chere Marie," said Mademoiselle Bourienne, "that we are +in danger--are surrounded by the French. It would be dangerous to move +now. If we go we are almost sure to be taken prisoners, and God +knows..." + +Princess Mary looked at her companion without understanding what she +was talking about. + +"Oh, if anyone knew how little anything matters to me now," she +said. "Of course I would on no account wish to go away from him.... +Alpatych did say something about going.... Speak to him; I can do +nothing, nothing, and don't want to...." + +"I've spoken to him. He hopes we should be in time to get away +tomorrow, but I think it would now be better to stay here," said +Mademoiselle Bourienne. "Because, you will agree, chere Marie, to fall +into the hands of the soldiers or of riotous peasants would be +terrible." + +Mademoiselle Bourienne took from her reticule a proclamation (not +printed on ordinary Russian paper) of General Rameau's, telling people +not to leave their homes and that the French authorities would +afford them proper protection. She handed this to the princess. + +"I think it would be best to appeal to that general," she continued, +"and and am sure that all due respect would be shown you." + +Princess Mary read the paper, and her face began to quiver with +stifled sobs. + +"From whom did you get this?" she asked. + +"They probably recognized that I am French, by my name," replied +Mademoiselle Bourienne blushing. + +Princess Mary, with the paper in her hand, rose from the window +and with a pale face went out of the room and into what had been +Prince Andrew's study. + +"Dunyasha, send Alpatych, or Dronushka, or somebody to me!" she +said, "and tell Mademoiselle Bourienne not to come to me," she +added, hearing Mademoiselle Bourienne's voice. "We must go at once, at +once!" she said, appalled at the thought of being left in the hands of +the French. + +"If Prince Andrew heard that I was in the power of the French! +That I, the daughter of Prince Nicholas Bolkonski, asked General +Rameau for protection and accepted his favor!" This idea horrified +her, made her shudder, blush, and feel such a rush of anger and +pride as she had never experienced before. All that was distressing, +and especially all that was humiliating, in her position rose +vividly to her mind. "They, the French, would settle in this house: M. +le General Rameau would occupy Prince Andrew's study and amuse himself +by looking through and reading his letters and papers. Mademoiselle +Bourienne would do the honors of Bogucharovo for him. I should be +given a small room as a favor, the soldiers would violate my +father's newly dug grave to steal his crosses and stars, they would +tell me of their victories over the Russians, and would pretend to +sympathize with my sorrow..." thought Princess Mary, not thinking +her own thoughts but feeling bound to think like her father and her +brother. For herself she did not care where she remained or what +happened to her, but she felt herself the representative of her dead +father and of Prince Andrew. Involuntarily she thought their +thoughts and felt their feelings. What they would have said and what +they would have done she felt bound to say and do. She went into +Prince Andrew's study, trying to enter completely into his ideas, +and considered her position. + +The demands of life, which had seemed to her annihilated by her +father's death, all at once rose before her with a new, previously +unknown force and took possession of her. + +Agitated and flushed she paced the room, sending now for Michael +Ivanovich and now for Tikhon or Dron. Dunyasha, the nurse, and the +other maids could not say in how far Mademoiselle Bourienne's +statement was correct. Alpatych was not at home, he had gone to the +police. Neither could the architect Michael Ivanovich, who on being +sent for came in with sleepy eyes, tell Princess Mary anything. With +just the same smile of agreement with which for fifteen years he had +been accustomed to answer the old prince without expressing views of +his own, he now replied to Princess Mary, so that nothing definite +could be got from his answers. The old valet Tikhon, with sunken, +emaciated face that bore the stamp of inconsolable grief, replied: +"Yes, Princess" to all Princess Mary's questions and hardly +refrained from sobbing as he looked at her. + +At length Dron, the village Elder, entered the room and with a +deep bow to Princess Mary came to a halt by the doorpost. + +Princess Mary walked up and down the room and stopped in front of +him. + +"Dronushka," she said, regarding as a sure friend this Dronushka who +always used to bring a special kind of gingerbread from his visit to +the fair at Vyazma every year and smilingly offer it to her, +"Dronushka, now since our misfortune..." she began, but could not go +on. + +"We are all in God's hands," said he, with a sigh. + +They were silent for a while. + +"Dronushka, Alpatych has gone off somewhere and I have no one to +turn to. Is true, as they tell me, that I can't even go away?" + +"Why shouldn't you go away, your excellency? You can go," said Dron. + +"I was told it would be dangerous because of the enemy. Dear friend, +I can do nothing. I understand nothing. I have nobody! I want to go +away tonight or early tomorrow morning." + +Dron paused. He looked askance at Princess Mary and said: "There are +no horses; I told Yakov Alpatych so." + +"Why are there none?" asked the princess. + +"It's all God's scourge," said Dron. "What horses we had have been +taken for the army or have died--this is such a year! It's not a +case of feeding horses--we may die of hunger ourselves! As it is, some +go three days without eating. We've nothing, we've been ruined." + +Princess Mary listened attentively to what he told her. + +"The peasants are ruined? They have no bread?" she asked. + +"They're dying of hunger," said Dron. "It's not a case of carting." + +"But why didn't you tell me, Dronushka? Isn't it possible to help +them? I'll do all I can...." + +To Princess Mary it was strange that now, at a moment when such +sorrow was filling her soul, there could be rich people and poor, +and the rich could refrain from helping the poor. She had heard +vaguely that there was such a thing as "landlord's corn" which was +sometimes given to the peasants. She also knew that neither her father +nor her brother would refuse to help the peasants in need, she only +feared to make some mistake in speaking about the distribution of +the grain she wished to give. She was glad such cares presented +themselves, enabling her without scruple to forget her own grief. +She began asking Dron about the peasants' needs and what there was +in Bogucharovo that belonged to the landlord. + +"But we have grain belonging to my brother?" she said. + +"The landlord's grain is all safe," replied Dron proudly. "Our +prince did not order it to be sold." + +"Give it to the peasants, let them have all they need; I give you +leave in my brother's name," said she. + +Dron made no answer but sighed deeply. + +"Give them that corn if there is enough of it. Distribute it all. +I give this order in my brother's name; and tell them that what is +ours is theirs. We do not grudge them anything. Tell them so." + +Dron looked intently at the princess while she was speaking. + +"Discharge me, little mother, for God's sake! Order the keys to be +taken from me," said he. "I have served twenty-three years and have +done no wrong. Discharge me, for God's sake!" + +Princess Mary did not understand what he wanted of her or why he was +asking to be discharged. She replied that she had never doubted his +devotion and that she was ready to do anything for him and for the +peasants. + + + + + +CHAPTER XI + + +An hour later Dunyasha came to tell the princess that Dron had come, +and all the peasants had assembled at the barn by the princess' +order and wished to have word with their mistress. + +"But I never told them to come," said Princess Mary. "I only told +Dron to let them have the grain." + +"Only, for God's sake, Princess dear, have them sent away and +don't go out to them. It's all a trick," said Dunyasha, "and when +Yakov Alpatych returns let us get away... and please don't..." + +"What is a trick?" asked Princess Mary in surprise. + +"I know it is, only listen to me for God's sake! Ask nurse too. They +say they don't agree to leave Bogucharovo as you ordered." + +"You're making some mistake. I never ordered them to go away," +said Princess Mary. "Call Dronushka." + +Dron came and confirmed Dunyasha's words; the peasants had come by +the princess' order. + +"But I never sent for them," declared the princess. "You must have +given my message wrong. I only said that you were to give them the +grain." + +Dron only sighed in reply. + +"If you order it they will go away," said he. + +"No, no. I'll go out to them," said Princess Mary, and in spite of +the nurse's and Dunyasha's protests she went out into the porch; Dron, +Dunyasha, the nurse, and Michael Ivanovich following her. + +"They probably think I am offering them the grain to bribe them to +remain here, while I myself go away leaving them to the mercy of the +French," thought Princess Mary. "I will offer them monthly rations and +housing at our Moscow estate. I am sure Andrew would do even more in +my place," she thought as she went out in the twilight toward the +crowd standing on the pasture by the barn. + +The men crowded closer together, stirred, and rapidly took off their +hats. Princess Mary lowered her eyes and, tripping over her skirt, +came close up to them. So many different eyes, old and young, were +fixed on her, and there were so many different faces, that she could +not distinguish any of them and, feeling that she must speak to them +all at once, did not know how to do it. But again the sense that she +represented her father and her brother gave her courage, and she +boldly began her speech. + +"I am very glad you have come," she said without raising her eyes, +and feeling her heart beating quickly and violently. "Dronushka +tells me that the war has ruined you. That is our common misfortune, +and I shall grudge nothing to help you. I am myself going away because +it is dangerous here... the enemy is near... because... I am giving +you everything, my friends, and I beg you to take everything, all +our grain, so that you may not suffer want! And if you have been +told that I am giving you the grain to keep you here--that is not +true. On the contrary, I ask you to go with all your belongings to our +estate near Moscow, and I promise you I will see to it that there +you shall want for nothing. You shall be given food and lodging." + +The princess stopped. Sighs were the only sound heard in the crowd. + +"I am not doing this on my own account," she continued, "I do it +in the name of my dead father, who was a good master to you, and of my +brother and his son." + +Again she paused. No one broke the silence. + +"Ours is a common misfortune and we will share it together. All that +is mine is yours," she concluded, scanning the faces before her. + +All eyes were gazing at her with one and the same expression. She +could not fathom whether it was curiosity, devotion, gratitude, or +apprehension and distrust--but the expression on all the faces was +identical. + +"We are all very thankful for your bounty, but it won't do for us to +take the landlord's grain," said a voice at the back of the crowd. + +"But why not?" asked the princess. + +No one replied and Princess Mary, looking round at the crowd, +found that every eye she met now was immediately dropped. + +"But why don't you want to take it?" she asked again. + +No one answered. + +The silence began to oppress the princess and she tried to catch +someone's eye. + +"Why don't you speak?" she inquired of a very old man who stood just +in front of her leaning on his stick. "If you think something more +is wanted, tell me! I will do anything," said she, catching his eye. + +But as if this angered him, he bent his head quite low and muttered: + +"Why should we agree? We don't want the grain." + +"Why should we give up everything? We don't agree. Don't agree.... +We are sorry for you, but we're not willing. Go away yourself, +alone..." came from various sides of the crowd. + +And again all the faces in that crowd bore an identical +expression, though now it was certainly not an expression of curiosity +or gratitude, but of angry resolve. + +"But you can't have understood me," said Princess Mary with a sad +smile. "Why don't you want to go? I promise to house and feed you, +while here the enemy would ruin you..." + +But her voice was drowned by the voices of the crowd. + +"We're not willing. Let them ruin us! We won't take your grain. We +don't agree." + +Again Princess Mary tried to catch someone's eye, but not a single +eye in the crowd was turned to her; evidently they were all trying +to avoid her look. She felt strange and awkward. + +"Oh yes, an artful tale! Follow her into slavery! Pull down your +houses and go into bondage! I dare say! 'I'll give you grain, indeed!' +she says," voices in the crowd were heard saying. + +With drooping head Princess Mary left the crowd and went back to the +house. Having repeated her order to Dron to have horses ready for +her departure next morning, she went to her room and remained alone +with her own thoughts. + + + + + +CHAPTER XII + + +For a long time that night Princess Mary sat by the open window of +her room hearing the sound of the peasants' voices that reached her +from the village, but it was not of them she was thinking. She felt +that she could not understand them however much she might think +about them. She thought only of one thing, her sorrow, which, after +the break caused by cares for the present, seemed already to belong to +the past. Now she could remember it and weep or pray. + +After sunset the wind had dropped. The night was calm and fresh. +Toward midnight the voices began to subside, a cock crowed, the full +moon began to show from behind the lime trees, a fresh white dewy mist +began to rise, and stillness reigned over the village and the house. + +Pictures of the near past--her father's illness and last moments- +rose one after another to her memory. With mournful pleasure she now +lingered over these images, repelling with horror only the last one, +the picture of his death, which she felt she could not contemplate +even in imagination at this still and mystic hour of night. And +these pictures presented themselves to her so clearly and in such +detail that they seemed now present, now past, and now future. + +She vividly recalled the moment when he had his first stroke and was +being dragged along by his armpits through the garden at Bald Hills, +muttering something with his helpless tongue, twitching his gray +eyebrows and looking uneasily and timidly at her. + +"Even then he wanted to tell me what he told me the day he died," +she thought. "He had always thought what he said then." And she +recalled in all its detail the night at Bald Hills before he had the +last stroke, when with a foreboding of disaster she had remained at +home against his will. She had not slept and had stolen downstairs +on tiptoe, and going to the door of the conservatory where he slept +that night had listened at the door. In a suffering and weary voice he +was saying something to Tikhon, speaking of the Crimea and its warm +nights and of the Empress. Evidently he had wanted to talk. "And why +didn't he call me? Why didn't he let me be there instead of Tikhon?" +Princess Mary had thought and thought again now. "Now he will never +tell anyone what he had in his soul. Never will that moment return for +him or for me when he might have said all he longed to say, and not +Tikhon but I might have heard and understood him. Why didn't I enter +the room?" she thought. "Perhaps he would then have said to me what he +said the day he died. While talking to Tikhon he asked about me twice. +He wanted to see me, and I was standing close by, outside the door. It +was sad and painful for him to talk to Tikhon who did not understand +him. I remember how he began speaking to him about Lise as if she were +alive--he had forgotten she was dead--and Tikhon reminded him that she +was no more, and he shouted, 'Fool!' He was greatly depressed. From +behind the door I heard how he lay down on his bed groaning and loudly +exclaimed, 'My God!' Why didn't I go in then? What could he have +done to me? What could I have lost? And perhaps he would then have +been comforted and would have said that word to me." And Princess Mary +uttered aloud the caressing word he had said to her on the day of +his death. "Dear-est!" she repeated, and began sobbing, with tears +that relieved her soul. She now saw his face before her. And not the +face she had known ever since she could remember and had always seen +at a distance, but the timid, feeble face she had seen for the first +time quite closely, with all its wrinkles and details, when she +stooped near to his mouth to catch what he said. + +"Dear-est!" she repeated again. + +"What was he thinking when he uttered that word? What is he thinking +now?" This question suddenly presented itself to her, and in answer +she saw him before her with the expression that was on his face as +he lay in his coffin with his chin bound up with a white handkerchief. +And the horror that had seized her when she touched him and +convinced herself that that was not he, but something mysterious and +horrible, seized her again. She tried to think of something else and +to pray, but could do neither. With wide-open eyes she gazed at the +moonlight and the shadows, expecting every moment to see his dead +face, and she felt that the silence brooding over the house and within +it held her fast. + +"Dunyasha," she whispered. "Dunyasha!" she screamed wildly, and +tearing herself out of this silence she ran to the servants' +quarters to meet her old nurse and the maidservants who came running +toward her. + + + + + +CHAPTER XIII + + +On the seventeenth of August Rostov and Ilyin, accompanied by +Lavrushka who had just returned from captivity and by an hussar +orderly, left their quarters at Yankovo, ten miles from Bogucharovo, +and went for a ride--to try a new horse Ilyin had bought and to find +out whether there was any hay to be had in the villages. + +For the last three days Bogucharovo had lain between the two hostile +armies, so that it was as easy for the Russian rearguard to get to +it as for the French vanguard; Rostov, as a careful squadron +commander, wished to take such provisions as remained at Bogucharovo +before the French could get them. + +Rostov and Ilyin were in the merriest of moods. On the way to +Bogucharovo, a princely estate with a dwelling house and farm where +they hoped to find many domestic serfs and pretty girls, they +questioned Lavrushka about Napoleon and laughed at his stories, and +raced one another to try Ilyin's horse. + +Rostov had no idea that the village he was entering was the property +of that very Bolkonski who had been engaged to his sister. + +Rostov and Ilyin gave rein to their horses for a last race along the +incline before reaching Bogucharovo, and Rostov, outstripping Ilyin, +was the first to gallop into the village street. + +"You're first!" cried Ilyin, flushed. + +"Yes, always first both on the grassland and here," answered Rostov, +stroking his heated Donets horse. + +"And I'd have won on my Frenchy, your excellency," said Lavrushka +from behind, alluding to his shabby cart horse, "only I didn't wish to +mortify you." + +They rode at a footpace to the barn, where a large crowd of peasants +was standing. + +Some of the men bared their heads, others stared at the new arrivals +without doffing their caps. Two tall old peasants with wrinkled +faces and scanty beards emerged from the tavern, smiling, +staggering, and singing some incoherent song, and approached the +officers. + +"Fine fellows!" said Rostov laughing. "Is there any hay here?" + +"And how like one another," said Ilyin. + +"A mo-o-st me-r-r-y co-o-m-pa...!" sang one of the peasants with a +blissful smile. + +One of the men came out of the crowd and went up to Rostov. + +"Who do you belong to?" he asked. + +"The French," replied Ilyin jestingly, "and here is Napoleon +himself"--and he pointed to Lavrushka. + +"Then you are Russians?" the peasant asked again. + +"And is there a large force of you here?" said another, a short man, +coming up. + +"Very large," answered Rostov. "But why have you collected here?" he +added. "Is it a holiday?" + +"The old men have met to talk over the business of the commune," +replied the peasant, moving away. + +At that moment, on the road leading from the big house, two women +and a man in a white hat were seen coming toward the officers. + +"The one in pink is mine, so keep off!" said Ilyin on seeing +Dunyasha running resolutely toward him. + +"She'll be ours!" said Lavrushka to Ilyin, winking. + +"What do you want, my pretty?" said Ilyin with a smile. + +"The princess ordered me to ask your regiment and your name." + +"This is Count Rostov, squadron commander, and I am your humble +servant." + +"Co-o-om-pa-ny!" roared the tipsy peasant with a beatific smile as +he looked at Ilyin talking to the girl. Following Dunyasha, Alpatych +advanced to Rostov, having bared his head while still at a distance. + +"May I make bold to trouble your honor?" said he respectfully, but +with a shade of contempt for the youthfulness of this officer and with +a hand thrust into his bosom. "My mistress, daughter of General in +Chief Prince Nicholas Bolkonski who died on the fifteenth of this +month, finding herself in difficulties owing to the boorishness of +these people"--he pointed to the peasants--"asks you to come up to the +house.... Won't you, please, ride on a little farther," said +Alpatych with a melancholy smile, "as it is not convenient in the +presence of...?" He pointed to the two peasants who kept as close to +him as horseflies to a horse. + +"Ah!... Alpatych... Ah, Yakov Alpatych... Grand! Forgive us for +Christ's sake, eh?" said the peasants, smiling joyfully at him. + +Rostov looked at the tipsy peasants and smiled. + +"Or perhaps they amuse your honor?" remarked Alpatych with a staid +air, as he pointed at the old men with his free hand. + +"No, there's not much to be amused at here," said Rostov, and rode +on a little way. "What's the matter?" he asked. + +"I make bold to inform your honor that the rude peasants here +don't wish to let the mistress leave the estate, and threaten to +unharness her horses, so that though everything has been packed up +since morning, her excellency cannot get away." + +"Impossible!" exclaimed Rostov. + +"I have the honor to report to you the actual truth," said Alpatych. + +Rostov dismounted, gave his horse to the orderly, and followed +Alpatych to the house, questioning him as to the state of affairs. +It appeared that the princess' offer of corn to the peasants the +previous day, and her talk with Dron and at the meeting, had +actually had so bad an effect that Dron had finally given up the +keys and joined the peasants and had not appeared when Alpatych sent +for him; and that in the morning when the princess gave orders to +harness for her journey, the peasants had come in a large crowd to the +barn and sent word that they would not let her leave the village: that +there was an order not to move, and that they would unharness the +horses. Alpatych had gone out to admonish them, but was told (it was +chiefly Karp who did the talking, Dron not showing himself in the +crowd) that they could not let the princess go, that there was an +order to the contrary, but that if she stayed they would serve her +as before and obey her in everything. + +At the moment when Rostov and Ilyin were galloping along the road, +Princess Mary, despite the dissuasions of Alpatych, her nurse, and the +maids, had given orders to harness and intended to start, but when the +cavalrymen were espied they were taken for Frenchmen, the coachman ran +away, and the women in the house began to wail. + +"Father! Benefactor! God has sent you!" exclaimed deeply moved +voices as Rostov passed through the anteroom. + +Princess Mary was sitting helpless and bewildered in the large +sitting room, when Rostov was shown in. She could not grasp who he was +and why he had come, or what was happening to her. When she saw his +Russian face, and by his walk and the first words he uttered +recognized him as a man of her own class, she glanced at him with +her deep radiant look and began speaking in a voice that faltered +and trembled with emotion. This meeting immediately struck Rostov as a +romantic event. "A helpless girl overwhelmed with grief, left to the +mercy of coarse, rioting peasants! And what a strange fate sent me +here! What gentleness and nobility there are in her features and +expression!" thought he as he looked at her and listened to her +timid story. + +When she began to tell him that all this had happened the day +after her father's funeral, her voiced trembled. She turned away, +and then, as if fearing he might take her words as meant to move him +to pity, looked at him with an apprehensive glance of inquiry. There +were tears in Rostov's eyes. Princess Mary noticed this and glanced +gratefully at him with that radiant look which caused the plainness of +her face to be forgotten. + +"I cannot express, Princess, how glad I am that I happened to ride +here and am able to show my readiness to serve you," said Rostov, +rising. "Go when you please, and I give you my word of honor that no +one shall dare to cause you annoyance if only you will allow me to act +as your escort." And bowing respectfully, as if to a lady of royal +blood, he moved toward the door. + +Rostov's deferential tone seemed to indicate that though he would +consider himself happy to be acquainted with her, he did not wish to +take advantage of her misfortunes to intrude upon her. + +Princess Mary understood this and appreciated his delicacy. + +"I am very, very grateful to you," she said in French, "but I hope +it was all a misunderstanding and that no one is to blame for it." She +suddenly began to cry. + +"Excuse me!" she said. + +Rostov, knitting his brows, left the room with another low bow. + + + + + +CHAPTER XIV + + +"Well, is she pretty? Ah, friend--my pink one is delicious; her +name is Dunyasha...." + +But on glancing at Rostov's face Ilyin stopped short. He saw that +his hero and commander was following quite a different train of +thought. + +Rostov glanced angrily at Ilyin and without replying strode off with +rapid steps to the village. + +"I'll show them; I'll give it to them, the brigands!" said he to +himself. + +Alpatych at a gliding trot, only just managing not to run, kept up +with him with difficulty. + +"What decision have you been pleased to come to?" said he. + +Rostov stopped and, clenching his fists, suddenly and sternly turned +on Alpatych. + +"Decision? What decision? Old dotard!..." cried he. "What have you +been about? Eh? The peasants are rioting, and you can't manage them? +You're a traitor yourself! I know you. I'll flay you all alive!..." +And as if afraid of wasting his store of anger, he left Alpatych and +went rapidly forward. Alpatych, mastering his offended feelings, +kept pace with Rostov at a gliding gait and continued to impart his +views. He said the peasants were obdurate and that at the present +moment it would be imprudent to "overresist" them without an armed +force, and would it not be better first to send for the military? + +"I'll give them armed force... I'll 'overresist' them!" uttered +Rostov meaninglessly, breathless with irrational animal fury and the +need to vent it. + +Without considering what he would do he moved unconciously with +quick, resolute steps toward the crowd. And the nearer he drew to it +the more Alpatych felt that this unreasonable action might produce +good results. The peasants in the crowd were similarly impressed +when they saw Rostov's rapid, firm steps and resolute, frowning face. + +After the hussars had come to the village and Rostov had gone to see +the princess, a certain confusion and dissension had arisen among +the crowd. Some of the peasants said that these new arrivals were +Russians and might take it amiss that the mistress was being detained. +Dron was of this opinion, but as soon as he expressed it Karp and +others attacked their ex-Elder. + +"How many years have you been fattening on the commune?" Karp +shouted at him. "It's all one to you! You'll dig up your pot of +money and take it away with you.... What does it matter to you whether +our homes are ruined or not?" + +"We've been told to keep order, and that no one is to leave their +homes or take away a single grain, and that's all about it!" cried +another. + +"It was your son's turn to be conscripted, but no fear! You +begrudged your lump of a son," a little old man suddenly began +attacking Dron--"and so they took my Vanka to be shaved for a soldier! +But we all have to die." + +"To be sure, we all have to die. I'm not against the commune," +said Dron. + +"That's it--not against it! You've filled your belly...." + +The two tall peasants had their say. As soon as Rostov, followed +by Ilyin, Lavrushka, and Alpatych, came up to the crowd, Karp, +thrusting his fingers into his belt and smiling a little, walked to +the front. Dron on the contrary retired to the rear and the crowd drew +closer together. + +"Who is your Elder here? Hey?" shouted Rostov, coming up to the +crowd with quick steps. + +"The Elder? What do you want with him?..." asked Karp. + +But before the words were well out of his mouth, his cap flew off +and a fierce blow jerked his head to one side. + +"Caps off, traitors!" shouted Rostov in a wrathful voice. "Where's +the Elder?" he cried furiously. + +"The Elder.... He wants the Elder!... Dron Zakharych, you!" meek and +flustered voices here and there were heard calling and caps began to +come off their heads. + +"We don't riot, we're following the orders," declared Karp, and at +that moment several voices began speaking together. + +"It's as the old men have decided--there's too many of you giving +orders." + +"Arguing? Mutiny!... Brigands! Traitors!" cried Rostov unmeaningly +in a voice not his own, gripping Karp by the collar. "Bind him, bind +him!" he shouted, though there was no one to bind him but Lavrushka +and Alpatych. + +Lavrushka, however, ran up to Karp and seized him by the arms from +behind. + +"Shall I call up our men from beyond the hill?" he called out. + +Alpatych turned to the peasants and ordered two of them by name to +come and bind Karp. The men obediently came out of the crowd and began +taking off their belts. + +"Where's the Elder?" demanded Rostov in a loud voice. + +With a pale and frowning face Dron stepped out of the crowd. + +"Are you the Elder? Bind him, Lavrushka!" shouted Rostov, as if that +order, too, could not possibly meet with any opposition. + +And in fact two more peasants began binding Dron, who took off his +own belt and handed it to them, as if to aid them. + +"And you all listen to me!" said Rostov to the peasants. "Be off +to your houses at once, and don't let one of your voices be heard!" + +"Why, we've not done any harm! We did it just out of foolishness. +It's all nonsense... I said then that it was not in order," voices +were heard bickering with one another. + +"There! What did I say?" said Alpatych, coming into his own again. +"It's wrong, lads!" + + "All our stupidity, Yakov Alpatych," came the answers, and the +crowd began at once to disperse through the village. + +The two bound men were led off to the master's house. The two +drunken peasants followed them. + +"Aye, when I look at you!..." said one of them to Karp. + +"How can one talk to the masters like that? What were you thinking +of, you fool?" added the other--"A real fool!" + +Two hours later the carts were standing in the courtyard of the +Bogucharovo house. The peasants were briskly carrying out the +proprietor's goods and packing them on the carts, and Dron, +liberated at Princess Mary's wish from the cupboard where he had +been confined, was standing in the yard directing the men. + +"Don't put it in so carelessly," said one of the peasants, a man +with a round smiling face, taking a casket from a housemaid. "You know +it has cost money! How can you chuck it in like that or shove it under +the cord where it'll get rubbed? I don't like that way of doing +things. Let it all be done properly, according to rule. Look here, put +it under the bast matting and cover it with hay--that's the way!" + +"Eh, books, books!" said another peasant, bringing out Prince +Andrew's library cupboards. "Don't catch up against it! It's heavy, +lads--solid books." + +"Yes, they worked all day and didn't play!" remarked the tall, +round-faced peasant gravely, pointing with a significant wink at the +dictionaries that were on the top. + + +Unwilling to obtrude himself on the princess, Rostov did not go back +to the house but remained in the village awaiting her departure. +When her carriage drove out of the house, he mounted and accompanied +her eight miles from Bogucharovo to where the road was occupied by our +troops. At the inn at Yankovo he respectfully took leave of her, for +the first time permitting himself to kiss her hand. + +"How can you speak so!" he blushingly replied to Princess Mary's +expressions of gratitude for her deliverance, as she termed what had +occurred. "Any police officer would have done as much! If we had had +only peasants to fight, we should not have let the enemy come so far," +said he with a sense of shame and wishing to change the subject. "I am +only happy to have had the opportunity of making your acquaintance. +Good-by, Princess. I wish you happiness and consolation and hope to +meet you again in happier circumstances. If you don't want to make +me blush, please don't thank me!" + +But the princess, if she did not again thank him in words, thanked +him with the whole expression of her face, radiant with gratitude +and tenderness. She could not believe that there was nothing to +thank him for. On the contrary, it seemed to her certain that had he +not been there she would have perished at the hands of the mutineers +and of the French, and that he had exposed himself to terrible and +obvious danger to save her, and even more certain was it that he was a +man of lofty and noble soul, able to understand her position and her +sorrow. His kind, honest eyes, with the tears rising in them when +she herself had begun to cry as she spoke of her loss, did leave her +memory. + +When she had taken leave of him and remained alone she suddenly felt +her eyes filling with tears, and then not for the first time the +strange question presented itself to her: did she love him? + +On the rest of the way to Moscow, though the princess' position +was not a cheerful one, Dunyasha, who went with her in the carriage, +more than once noticed that her mistress leaned out of the window +and smiled at something with an expression of mingled joy and sorrow. + +"Well, supposing I do love him?" thought Princess Mary. + +Ashamed as she was of acknowledging to herself that she had fallen +in love with a man who would perhaps never love her, she comforted +herself with the thought that no one would ever know it and that she +would not be to blame if, without ever speaking of it to anyone, she +continued to the end of her life to love the man with whom she had +fallen in love for the first and last time in her life. + +Sometimes when she recalled his looks, his sympathy, and his +words, happiness did not appear impossible to her. It was at those +moments that Dunyasha noticed her smiling as she looked out of the +carriage window. + +"Was it not fate that brought him to Bogucharovo, and at that very +moment?" thought Princess Mary. "And that caused his sister to +refuse my brother?" And in all this Princess Mary saw the hand of +Providence. + +The impression the princess made on Rostov was a very agreeable one. +To remember her gave him pleasure, and when his comrades, hearing of +his adventure at Bogucharovo, rallied him on having gone to look for +hay and having picked up one of the wealthiest heiresses in Russia, he +grew angry. It made him angry just because the idea of marrying the +gentle Princess Mary, who was attractive to him and had an enormous +fortune, had against his will more than once entered his head. For +himself personally Nicholas could not wish for a better wife: by +marrying her he would make the countess his mother happy, would be +able to put his father's affairs in order, and would even--he felt it- +ensure Princess Mary's happiness. + +But Sonya? And his plighted word? That was why Rostov grew angry +when he was rallied about Princess Bolkonskaya. + + + + + +CHAPTER XV + + +On receiving command of the armies Kutuzov remembered Prince +Andrew and sent an order for him to report at headquarters. + +Prince Andrew arrived at Tsarevo-Zaymishche on the very day and at +the very hour that Kutuzov was reviewing the troops for the first +time. He stopped in the village at the priest's house in front of +which stood the commander in chief's carriage, and he sat down on +the bench at the gate awaiting his Serene Highness, as everyone now +called Kutuzov. From the field beyond the village came now sounds of +regimental music and now the roar of many voices shouting "Hurrah!" to +the new commander in chief. Two orderlies, a courier and a major-domo, +stood near by, some ten paces from Prince Andrew, availing +themselves of Kutuzov's absence and of the fine weather. A short, +swarthy lieutenant colonel of hussars with thick mustaches and +whiskers rode up to the gate and, glancing at Prince Andrew, +inquired whether his Serene Highness was putting up there and +whether he would soon be back. + +Prince Andrew replied that he was not on his Serene Highness' +staff but was himself a new arrival. The lieutenant colonel turned +to a smart orderly, who, with the peculiar contempt with which a +commander in chief's orderly speaks to officers, replied: + +"What? His Serene Highness? I expect he'll be here soon. What do you +want?" + +The lieutenant colonel of hussars smiled beneath his mustache at the +orderly's tone, dismounted, gave his horse to a dispatch runner, and +approached Bolkonski with a slight bow. Bolkonski made room for him on +the bench and the lieutenant colonel sat down beside him. + +"You're also waiting for the commander in chief?" said he. "They say +he weceives evewyone, thank God!... It's awful with those sausage +eaters! Ermolov had weason to ask to be pwomoted to be a German! Now +p'waps Wussians will get a look in. As it was, devil only knows what +was happening. We kept wetweating and wetweating. Did you take part in +the campaign?" he asked. + +"I had the pleasure," replied Prince Andrew, "not only of taking +part in the retreat but of losing in that retreat all I held dear--not +to mention the estate and home of my birth--my father, who died of +grief. I belong to the province of Smolensk." + +"Ah? You're Pwince Bolkonski? Vewy glad to make your acquaintance! +I'm Lieutenant Colonel Denisov, better known as 'Vaska,'" said +Denisov, pressing Prince Andrew's hand and looking into his face +with a particularly kindly attention. "Yes, I heard," said he +sympathetically, and after a short pause added: "Yes, it's Scythian +warfare. It's all vewy well--only not for those who get it in the +neck. So you are Pwince Andwew Bolkonski?" He swayed his head. "Vewy +pleased, Pwince, to make your acquaintance!" he repeated again, +smiling sadly, and he again pressed Prince Andrew's hand. + +Prince Andrew knew Denisov from what Natasha had told him of her +first suitor. This memory carried him sadly and sweetly back to +those painful feelings of which he had not thought lately, but which +still found place in his soul. Of late he had received so many new and +very serious impressions--such as the retreat from Smolensk, his visit +to Bald Hills, and the recent news of his father's death--and had +experienced so many emotions, that for a long time past those memories +had not entered his mind, and now that they did, they did not act on +him with nearly their former strength. For Denisov, too, the +memories awakened by the name of Bolkonski belonged to a distant, +romantic past, when after supper and after Natasha's singing he had +proposed to a little girl of fifteen without realizing what he was +doing. He smiled at the recollection of that time and of his love +for Natasha, and passed at once to what now interested him +passionately and exclusively. This was a plan of campaign he had +devised while serving at the outposts during the retreat. He had +proposed that plan to Barclay de Tolly and now wished to propose it to +Kutuzov. The plan was based on the fact that the French line of +operation was too extended, and it proposed that instead of, or +concurrently with, action on the front to bar the advance of the +French, we should attack their line of communication. He began +explaining his plan to Prince Andrew. + +"They can't hold all that line. It's impossible. I will undertake to +bweak thwough. Give me five hundwed men and I will bweak the line, +that's certain! There's only one way--guewilla warfare!" + +Denisov rose and began gesticulating as he explained his plan to +Bolkonski. In the midst of his explanation shouts were heard from +the army, growing more incoherent and more diffused, mingling with +music and songs and coming from the field where the review was held. +Sounds of hoofs and shouts were nearing the village. + +"He's coming! He's coming!" shouted a Cossack standing at the gate. + +Bolkonski and Denisov moved to the gate, at which a knot of soldiers +(a guard of honor) was standing, and they saw Kutuzov coming down +the street mounted on a rather small sorrel horse. A huge suite of +generals rode behind him. Barclay was riding almost beside him, and +a crowd of officers ran after and around them shouting, "Hurrah!" + +His adjutants galloped into the yard before him. Kutuzov was +impatiently urging on his horse, which ambled smoothly under his +weight, and he raised his hand to his white Horse Guard's cap with a +red band and no peak, nodding his head continually. When he came up to +the guard of honor, a fine set of Grenadiers mostly wearing +decorations, who were giving him the salute, he looked at them +silently and attentively for nearly a minute with the steady gaze of a +commander and then turned to the crowd of generals and officers +surrounding him. Suddenly his face assumed a subtle expression, he +shrugged his shoulders with an air of perplexity. + +"And with such fine fellows to retreat and retreat! Well, good-by, +General," he added, and rode into the yard past Prince Andrew and +Denisov. + +"Hurrah! hurrah! hurrah!" shouted those behind him. + +Since Prince Andrew had last seen him Kutuzov had grown still more +corpulent, flaccid, and fat. But the bleached eyeball, the scar, and +the familiar weariness of his expression were still the same. He was +wearing the white Horse Guard's cap and a military overcoat with a +whip hanging over his shoulder by a thin strap. He sat heavily and +swayed limply on his brisk little horse. + +"Whew... whew... whew!" he whistled just audibly as he rode into the +yard. His face expressed the relief of relaxed strain felt by a man +who means to rest after a ceremony. He drew his left foot out of the +stirrup and, lurching with his whole body and puckering his face +with the effort, raised it with difficulty onto the saddle, leaned +on his knee, groaned, and slipped down into the arms of the Cossacks +and adjutants who stood ready to assist him. + +He pulled himself together, looked round, screwing up his eyes, +glanced at Prince Andrew, and, evidently not recognizing him, moved +with his waddling gait to the porch. "Whew... whew... whew!" he +whistled, and again glanced at Prince Andrew. As often occurs with old +men, it was only after some seconds that the impression produced by +Prince Andrew's face linked itself up with Kutuzov's remembrance of +his personality. + +"Ah, how do you do, my dear prince? How do you do, my dear boy? Come +along..." said he, glancing wearily round, and he stepped onto the +porch which creaked under his weight. + +He unbuttoned his coat and sat down on a bench in the porch. + +"And how's your father?" + +"I received news of his death, yesterday," replied Prince Andrew +abruptly. + +Kutuzov looked at him with eyes wide open with dismay and then +took off his cap and crossed himself: + +"May the kingdom of Heaven be his! God's will be done to us all!" He +sighed deeply, his whole chest heaving, and was silent for a while. "I +loved him and respected him, and sympathize with you with all my +heart." + +He embraced Prince Andrew, pressing him to his fat breast, and for +some time did not let him go. When he released him Prince Andrew saw +that Kutuzov's flabby lips were trembling and that tears were in his +eyes. He sighed and pressed on the bench with both hands to raise +himself. + +"Come! Come with me, we'll have a talk," said he. + +But at that moment Denisov, no more intimidated by his superiors +than by the enemy, came with jingling spurs up the steps of the porch, +despite the angry whispers of the adjutants who tried to stop him. +Kutuzov, his hands still pressed on the seat, glanced at him glumly. +Denisov, having given his name, announced that he had to communicate +to his Serene Highness a matter of great importance for their +country's welfare. Kutuzov looked wearily at him and, lifting his +hands with a gesture of annoyance, folded them across his stomach, +repeating the words: "For our country's welfare? Well, what is it? +Speak!" Denisov blushed like a girl (it was strange to see the color +rise in that shaggy, bibulous, time-worn face) and boldly began to +expound his plan of cutting the enemy's lines of communication between +Smolensk and Vyazma. Denisov came from those parts and knew the +country well. His plan seemed decidedly a good one, especially from +the strength of conviction with which he spoke. Kutuzov looked down at +his own legs, occasionally glancing at the door of the adjoining hut +as if expecting something unpleasant to emerge from it. And from +that hut, while Denisov was speaking, a general with a portfolio under +his arm really did appear. + +"What?" said Kutuzov, in the midst of Denisov's explanations, "are +you ready so soon?" + +"Ready, your Serene Highness," replied the general. + +Kutuzov swayed his head, as much as to say: "How is one man to +deal with it all?" and again listened to Denisov. + +"I give my word of honor as a Wussian officer," said Denisov, +"that I can bweak Napoleon's line of communication!" + +"What relation are you to Intendant General Kiril Andreevich +Denisov?" asked Kutuzov, interrupting him. + +"He is my uncle, your Sewene Highness." + +"Ah, we were friends," said Kutuzov cheerfully. "All right, all +right, friend, stay here at the staff and tomorrow we'll have a talk." + +With a nod to Denisov he turned away and put out his hand for the +papers Konovnitsyn had brought him. + +"Would not your Serene Highness like to come inside?" said the +general on duty in a discontented voice, "the plans must be examined +and several papers have to be signed." + +An adjutant came out and announced that everything was in +readiness within. But Kutuzov evidently did not wish to enter that +room till he was disengaged. He made a grimace... + +"No, tell them to bring a small table out here, my dear boy. I'll +look at them here," said he. "Don't go away," he added, turning to +Prince Andrew, who remained in the porch and listened to the general's +report. + +While this was being given, Prince Andrew heard the whisper of a +woman's voice and the rustle of a silk dress behind the door. +Several times on glancing that way he noticed behind that door a +plump, rosy, handsome woman in a pink dress with a lilac silk kerchief +on her head, holding a dish and evidently awaiting the entrance of the +commander in chief. Kutuzov's adjutant whispered to Prince Andrew +that this was the wife of the priest whose home it was, and that she +intended to offer his Serene Highness bread and salt. "Her husband has +welcomed his Serene Highness with the cross at the church, and she +intends to welcome him in the house.... She's very pretty," added +the adjutant with a smile. At those words Kutuzov looked round. He was +listening to the general's report--which consisted chiefly of a +criticism of the position at Tsarevo-Zaymishche--as he had listened to +Denisov, and seven years previously had listened to the discussion +at the Austerlitz council of war. He evidently listened only because +he had ears which, though there was a piece of tow in one of them, +could not help hearing; but it was evident that nothing the general +could say would surprise or even interest him, that he knew all that +would be said beforehand, and heard it all only because he had to, +as one has to listen to the chanting of a service of prayer. All +that Denisov had said was clever and to the point. What the general +was saying was even more clever and to the point, but it was evident +that Kutuzov despised knowledge and cleverness, and knew of +something else that would decide the matter--something independent +of cleverness and knowledge. Prince Andrew watched the commander +in chief's face attentively, and the only expression he could see +there was one of boredom, curiosity as to the meaning of the +feminine whispering behind the door, and a desire to observe +propriety. It was evident that Kutuzov despised cleverness and +learning and even the patriotic feeling shown by Denisov, but despised +them not because of his own intellect, feelings, or knowledge--he +did not try to display any of these--but because of something else. He +despised them because of his old age and experience of life. The +only instruction Kutuzov gave of his own accord during that report +referred to looting by the Russian troops. At the end of the report +the general put before him for signature a paper relating to the +recovery of payment from army commanders for green oats mown down by +the soldiers, when landowners lodged petitions for compensation. + +After hearing the matter, Kutuzov smacked his lips together and +shook his head. + +"Into the stove... into the fire with it! I tell you once for all, +my dear fellow," said he, "into the fire with all such things! Let +them cut the crops and burn wood to their hearts' content. I don't +order it or allow it, but I don't exact compensation either. One can't +get on without it. 'When wood is chopped the chips will fly.'" He +looked at the paper again. "Oh, this German precision!" he muttered, +shaking his head. + + + + + +CHAPTER XVI + + +"Well, that's all!" said Kutuzov as he signed the last of the +documents, and rising heavily and smoothing out the folds in his fat +white neck he moved toward the door with a more cheerful expression. + +The priest's wife, flushing rosy red, caught up the dish she had +after all not managed to present at the right moment, though she had +so long been preparing for it, and with a low bow offered it to +Kutuzov. + +He screwed up his eyes, smiled, lifted her chin with his hand, and +said: + +"Ah, what a beauty! Thank you, sweetheart!" + +He took some gold pieces from his trouser pocket and put them on the +dish for her. "Well, my dear, and how are we getting on?" he asked, +moving to the door of the room assigned to him. The priest's wife +smiled, and with dimples in her rosy cheeks followed him into the +room. The adjutant came out to the porch and asked Prince Andrew to +lunch with him. Half an hour later Prince Andrew was again called to +Kutuzov. He found him reclining in an armchair, still in the same +unbuttoned overcoat. He had in his hand a French book which he +closed as Prince Andrew entered, marking the place with a knife. +Prince Andrew saw by the cover that it was Les Chevaliers du Cygne +by Madame de Genlis. + +"Well, sit down, sit down here. Let's have a talk," said Kutuzov. +"It's sad, very sad. But remember, my dear fellow, that I am a +father to you, a second father...." + +Prince Andrew told Kutuzov all he knew of his father's death, and +what he had seen at Bald Hills when he passed through it. + +"What... what they have brought us to!" Kutuzov suddenly cried in an +agitated voice, evidently picturing vividly to himself from Prince +Andrew's story the condition Russia was in. "But give me time, give me +time!" he said with a grim look, evidently not wishing to continue +this agitating conversation, and added: "I sent for you to keep you +with me." + +"I thank your Serene Highness, but I fear I am no longer fit for the +staff," replied Prince Andrew with a smile which Kutuzov noticed. + +Kutuzov glanced inquiringly at him. + +"But above all," added Prince Andrew, "I have grown used to my +regiment, am fond of the officers, and I fancy the men also like me. I +should be sorry to leave the regiment. If I decline the honor of being +with you, believe me..." + +A shrewd, kindly, yet subtly derisive expression lit up Kutuzov's +podgy face. He cut Bolkonski short. + +"I am sorry, for I need you. But you're right, you're right! It's +not here that men are needed. Advisers are always plentiful, but men +are not. The regiments would not be what they are if the would-be +advisers served there as you do. I remember you at Austerlitz.... I +remember, yes, I remember you with the standard!" said Kutuzov, and +a flush of pleasure suffused Prince Andrew's face at this +recollection. + +Taking his hand and drawing him downwards, Kutuzov offered his cheek +to be kissed, and again Prince Andrew noticed tears in the old man's +eyes. Though Prince Andrew knew that Kutuzov's tears came easily, +and that he was particularly tender to and considerate of him from a +wish to show sympathy with his loss, yet this reminder of Austerlitz +was both pleasant and flattering to him. + +"Go your way and God be with you. I know your path is the path of +honor!" He paused. "I missed you at Bucharest, but I needed someone to +send." And changing the subject, Kutuzov began to speak of the Turkish +war and the peace that had been concluded. "Yes, I have been much +blamed," he said, "both for that war and the peace... but everything +came at the right time. Tout vient a point a celui qui sait attendre.* +And there were as many advisers there as here..." he went on, +returning to the subject of "advisers" which evidently occupied him. +"Ah, those advisers!" said he. "If we had listened to them all we +should not have made peace with Turkey and should not have been +through with that war. Everything in haste, but more haste, less +speed. Kamenski would have been lost if he had not died. He stormed +fortresses with thirty thousand men. It is not difficult to capture +a fortress but it is difficult to win a campaign. For that, storming +and attacking but patience and time are wanted. Kamenski sent soldiers +to Rustchuk, but I only employed these two things and took more +fortresses than Kamenski and made them but eat horseflesh!" He swayed +his head. "And the French shall too, believe me," he went on, +growing warmer and beating his chest, "I'll make them eat horseflesh!" +And tears again dimmed his eyes. + + +*"Everything comes in time to him who knows how to wait." + + +"But shan't we have to accept battle?" remarked Prince Andrew. + +"We shall if everybody wants it; it can't be helped.... But +believe me, my dear boy, there is nothing stronger than those two: +patience and time, they will do it all. But the advisers n'entendent +pas de cette oreille, voila le mal.* Some want a thing--others +don't. What's one to do?" he asked, evidently expecting an answer. +"Well, what do you want us to do?" he repeated and his eye shone +with a deep, shrewd look. "I'll tell you what to do," he continued, as +Prince Andrew still did not reply: "I will tell you what to do, and +what I do. Dans le doute, mon cher," he paused, "abstiens-toi"*[2]--he +articulated the French proverb deliberately. + + +*"Don't see it that way, that's the trouble." + +*[2] "When in doubt, my dear fellow, do nothing." + + +"Well, good-by, my dear fellow; remember that with all my heart I +share your sorrow, and that for you I am not a Serene Highness, nor +a prince, nor a commander in chief, but a father! If you want anything +come straight to me. Good-by, my dear boy." + +Again he embraced and kissed Prince Andrew, but before the latter +had left the room Kutuzov gave a sigh of relief and went on with his +unfinished novel, Les Chevaliers du Cygne by Madame de Genlis. + +Prince Andrew could not have explained how or why it was, but +after that interview with Kutuzov he went back to his regiment +reassured as to the general course of affairs and as to the man to +whom it had been entrusted. The more he realized the absence of all +personal motive in that old man--in whom there seemed to remain only +the habit of passions, and in place of an intellect (grouping events +and drawing conclusions) only the capacity calmly to contemplate the +course of events--the more reassured he was that everything would be +as it should. "He will not bring in any plan of his own. He will not +devise or undertake anything," thought Prince Andrew, "but he will +hear everything, remember everything, and put everything in its place. +He will not hinder anything useful nor allow anything harmful. He +understands that there is something stronger and more important than +his own will--the inevitable course of events, and he can see them and +grasp their significance, and seeing that significance can refrain +from meddling and renounce his personal wish directed to something +else. And above all," thought Prince Andrew, "one believes in him +because he's Russian, despite the novel by Genlis and the French +proverbs, and because his voice shook when he said: 'What they have +brought us to!' and had a sob in it when he said he would 'make them +eat horseflesh!'" + +On such feelings, more or less dimly shared by all, the unanimity +and general approval were founded with which, despite court +influences, the popular choice of Kutuzov as commander in chief was +received. + + + + + +CHAPTER XVII + + +After the Emperor had left Moscow, life flowed on there in its usual +course, and its course was so very usual that it was difficult to +remember the recent days of patriotic elation and ardor, hard to +believe that Russia was really in danger and that the members of the +English Club were also sons of the Fatherland ready to sacrifice +everything for it. The one thing that recalled the patriotic fervor +everyone had displayed during the Emperor's stay was the call for +contributions of men and money, a necessity that as soon as the +promises had been made assumed a legal, official form and became +unavoidable. + +With the enemy's approach to Moscow, the Moscovites' view of their +situation did not grow more serious but on the contrary became even +more frivolous, as always happens with people who see a great danger +approaching. At the approach of danger there are always two voices +that speak with equal power in the human soul: one very reasonably +tells a man to consider the nature of the danger and the means of +escaping it; the other, still more reasonably, says that it is too +depressing and painful to think of the danger, since it is not in +man's power to foresee everything and avert the general course of +events, and it is therefore better to disregard what is painful till +it comes, and to think about what is pleasant. In solitude a man +generally listens to the first voice, but in society to the second. So +it was now with the inhabitants of Moscow. It was long since people +had been as gay in Moscow as that year. + +Rostopchin's broadsheets, headed by woodcuts of a drink shop, a +potman, and a Moscow burgher called Karpushka Chigirin, "who--having +been a militiaman and having had rather too much at the pub--heard +that Napoleon wished to come to Moscow, grew angry, abused the +French in very bad language, came out of the drink shop, and, under +the sign of the eagle, began to address the assembled people," were +read and discussed, together with the latest of Vasili Lvovich +Pushkin's bouts rimes. + +In the corner room at the Club, members gathered to read these +broadsheets, and some liked the way Karpushka jeered at the French, +saying: "They will swell up with Russian cabbage, burst with our +buckwheat porridge, and choke themselves with cabbage soup. They are +all dwarfs and one peasant woman will toss three of them with a +hayfork." Others did not like that tone and said it was stupid and +vulgar. It was said that Rostopchin had expelled all Frenchmen and +even all foreigners from Moscow, and that there had been some spies +and agents of Napoleon among them; but this was told chiefly to +introduce Rostopchin's witty remark on that occasion. The foreigners +were deported to Nizhni by boat, and Rostopchin had said to them in +French: "Rentrez en vousmemes; entrez dans la barque, et n'en faites +pas une barque de Charon."* There was talk of all the government +offices having been already removed from Moscow, and to this +Shinshin's witticism was added--that for that alone Moscow ought to be +grateful to Napoleon. It was said that Mamonov's regiment would cost +him eight hundred thousand rubles, and that Bezukhov had spent even +more on his, but that the best thing about Bezukhov's action was +that he himself was going to don a uniform and ride at the head of his +regiment without charging anything for the show. + + +*"Think it over; get into the barque, and take care not to make it a +barque of Charon." + + +"You don't spare anyone," said Julie Drubetskaya as she collected +and pressed together a bunch of raveled lint with her thin, beringed +fingers. + +Julie was preparing to leave Moscow next day and was giving a +farewell soiree. + +"Bezukhov est ridicule, but he is so kind and good-natured. What +pleasure is there to be so caustique?" + +"A forfeit!" cried a young man in militia uniform whom Julie +called "mon chevalier," and who was going with her to Nizhni. + +In Julie's set, as in many other circles in Moscow, it had been +agreed that they would speak nothing but Russian and that those who +made a slip and spoke French should pay fines to the Committee of +Voluntary Contributions. + +"Another forfeit for a Gallicism," said a Russian writer who was +present. "'What pleasure is there to be' is not Russian!" + +"You spare no one," continued Julie to the young man without heeding +the author's remark. + +"For caustique--I am guilty and will pay, and I am prepared to pay +again for the pleasure of telling you the truth. For Gallicisms I +won't be responsible," she remarked, turning to the author: "I have +neither the money nor the time, like Prince Galitsyn, to engage a +master to teach me Russian!" + +"Ah, here he is!" she added. "Quand on... No, no," she said to the +militia officer, "you won't catch me. Speak of the sun and you see its +rays!" and she smiled amiably at Pierre. "We were just talking of +you," she said with the facility in lying natural to a society +woman. "We were saying that your regiment would be sure to be better +than Mamonov's." + +"Oh, don't talk to me of my regiment," replied Pierre, kissing his +hostess' hand and taking a seat beside her. "I am so sick of it." + +"You will, of course, command it yourself?" said Julie, directing +a sly, sarcastic glance toward the militia officer. + +The latter in Pierre's presence had ceased to be caustic, and his +face expressed perplexity as to what Julie's smile might mean. In +spite of his absent-mindedness and good nature, Pierre's personality +immediately checked any attempt to ridicule him to his face. + +"No," said Pierre, with a laughing glance at his big, stout body. "I +should make too good a target for the French, besides I am afraid I +should hardly be able to climb onto a horse." + +Among those whom Julie's guests happened to choose to gossip about +were the Rostovs. + +"I hear that their affairs are in a very bad way," said Julie. +"And he is so unreasonable, the count himself I mean. The +Razumovskis wanted to buy his house and his estate near Moscow, but it +drags on and on. He asks too much." + +"No, I think the sale will come off in a few days," said someone. +"Though it is madness to buy anything in Moscow now." + +"Why?" asked Julie. "You don't think Moscow is in danger?" + +"Then why are you leaving?" + +"I? What a question! I am going because... well, because everyone is +going: and besides--I am not Joan of Arc or an Amazon." + +"Well, of course, of course! Let me have some more strips of linen." + +"If he manages the business properly he will be able to pay off +all his debts," said the militia officer, speaking of Rostov. + +"A kindly old man but not up to much. And why do they stay on so +long in Moscow? They meant to leave for the country long ago. +Natalie is quite well again now, isn't she?" Julie asked Pierre with a +knowing smile. + +"They are waiting for their younger son," Pierre replied. "He joined +Obolenski's Cossacks and went to Belaya Tserkov where the regiment +is being formed. But now they have had him transferred to my +regiment and are expecting him every day. The count wanted to leave +long ago, but the countess won't on any account leave Moscow till +her son returns." + +"I met them the day before yesterday at the Arkharovs'. Natalie +has recovered her looks and is brighter. She sang a song. How easily +some people get over everything!" + +"Get over what?" inquired Pierre, looking displeased. + +Julie smiled. + +"You know, Count, such knights as you are only found in Madame de +Souza's novels." + +"What knights? What do you mean?" demanded Pierre, blushing. + +"Oh, come, my dear count! C'est la fable de tout Moscou. Je vous +admire, ma parole d'honneur!"* + + +*"It is the talk of all Moscow. My word, I admire you!" + + +"Forfeit, forfeit!" cried the militia officer. + +"All right, one can't talk--how tiresome!" + +"What is 'the talk of all Moscow'?" Pierre asked angrily, rising +to his feet. + +"Come now, Count, you know!" + +"I don't know anything about it," said Pierre. + +"I know you were friendly with Natalie, and so... but I was always +more friendly with Vera--that dear Vera." + +"No, madame!" Pierre continued in a tone of displeasure, "I have not +taken on myself the role of Natalie Rostova's knight at all, and +have not been their house for nearly a month. But I cannot +understand the cruelty..." + +"Qui s'excuse s'accuse,"* said Julie, smiling and waving the lint +triumphantly, and to have the last word she promptly changed the +subject. "Do you know what I heard today? Poor Mary Bolkonskaya +arrived in Moscow yesterday. Do you know that she has lost her +father?" + + +*"Who excuses himself, accuses himself." + + +"Really? Where is she? I should like very much to see her," said +Pierre. + +"I spent the evening with her yesterday. She is going to their +estate near Moscow either today or tomorrow morning, with her nephew." + +"Well, and how is she?" asked Pierre. + +"She is well, but sad. But do you know who rescued her? It is +quite a romance. Nicholas Rostov! She was surrounded, and they +wanted to kill her and had wounded some of her people. He rushed in +and saved her...." + +"Another romance," said the militia officer. "Really, this general +flight has been arranged to get all the old maids married off. Catiche +is one and Princess Bolkonskaya another." + +"Do you know, I really believe she is un petit peu amoureuse du +jeune homme."* + + +*"A little bit in love with the young man." + + +"Forfeit, forfeit, forfeit!" + +"But how could one say that in Russian?" + + + + + +CHAPTER XVIII + + +When Pierre returned home he was handed two of Rostopchin's +broadsheets that had been brought that day. + +The first declared that the report that Count Rostopchin had +forbidden people to leave Moscow was false; on the contrary he was +glad that ladies and tradesmen's wives were leaving the city. "There +will be less panic and less gossip," ran the broadsheet "but I will +stake my life on it that that will not enter Moscow." These words +showed Pierre clearly for the first time that the French would enter +Moscow. The second broadsheet stated that our headquarters were at +Vyazma, that Count Wittgenstein had defeated the French, but that as +many of the inhabitants of Moscow wished to be armed, weapons were +ready for them at the arsenal: sabers, pistols, and muskets which +could be had at a low price. The tone of the proclamation was not as +jocose as in the former Chigirin talks. Pierre pondered over these +broadsheets. Evidently the terrible stormcloud he had desired with the +whole strength of his soul but which yet aroused involuntary horror in +him was drawing near. + +"Shall I join the army and enter the service, or wait?" he asked +himself for the hundredth time. He took a pack of cards that lay on +the table and began to lay them out for a game of patience. + +"If this patience comes out," he said to himself after shuffling the +cards, holding them in his hand, and lifting his head, "if it comes +out, it means... what does it mean?" + +He had not decided what it should mean when he heard the voice of +the eldest princess at the door asking whether she might come in. + +"Then it will mean that I must go to the army," said Pierre to +himself. "Come in, come in!" he added to the princess. + +Only the eldest princess, the one with the stony face and long +waist, was still living in Pierre's house. The two younger ones had +both married. + +"Excuse my coming to you, cousin," she said in a reproachful and +agitated voice. "You know some decision must be come to. What is going +to happen? Everyone has left Moscow and the people are rioting. How is +it that we are staying on?" + +"On the contrary, things seem satisfactory, ma cousine," said Pierre +in the bantering tone he habitually adopted toward her, always feeling +uncomfortable in the role of her benefactor. + +"Satisfactory, indeed! Very satisfactory! Barbara Ivanovna told me +today how our troops are distinguishing themselves. It certainly +does them credit! And the people too are quite mutinous--they no +longer obey, even my maid has taken to being rude. At this rate they +will soon begin beating us. One can't walk in the streets. But, +above all, the French will be here any day now, so what are we waiting +for? I ask just one thing of you, cousin," she went on, "arrange for +me to be taken to Petersburg. Whatever I may be, I can't live under +Bonaparte's rule." + +"Oh, come, ma cousine! Where do you get your information from? On +the contrary..." + +"I won't submit to your Napoleon! Others may if they please.... If +you don't want to do this..." + +"But I will, I'll give the order at once." + +The princess was apparently vexed at not having anyone to be angry +with. Muttering to herself, she sat down on a chair. + +"But you have been misinformed," said Pierre. "Everything is quiet +in the city and there is not the slightest danger. See! I've just been +reading..." He showed her the broadsheet. "Count Rostopchin writes +that he will stake his life on it that the enemy will not enter +Moscow." + +"Oh, that count of yours!" said the princess malevolently. "He is +a hypocrite, a rascal who has himself roused the people to riot. +Didn't he write in those idiotic broadsheets that anyone, 'whoever +it might be, should be dragged to the lockup by his hair'? (How +silly!) 'And honor and glory to whoever captures him,' he says. This +is what his cajolery has brought us to! Barbara Ivanovna told me the +mob near killed her because she said something in French." + +"Oh, but it's so... You take everything so to heart," said Pierre, +and began laying out his cards for patience. + +Although that patience did come out, Pierre did not join the army, +but remained in deserted Moscow ever in the same state of agitation, +irresolution, and alarm, yet at the same time joyfully expecting +something terrible. + +Next day toward evening the princess set off, and Pierre's head +steward came to inform him that the money needed for the equipment +of his regiment could not be found without selling one of the estates. +In general the head steward made out to Pierre that his project of +raising a regiment would ruin him. Pierre listened to him, scarcely +able to repress a smile. + +"Well then, sell it," said he. "What's to be done? I can't draw back +now!" + +The worse everything became, especially his own affairs, the +better was Pierre pleased and the more evident was it that the +catastrophe he expected was approaching. Hardly anyone he knew was +left in town. Julie had gone, and so had Princess Mary. Of his +intimate friends only the Rostovs remained, but he did not go to see +them. + +To distract his thoughts he drove that day to the village of +Vorontsovo to see the great balloon Leppich was constructing to +destroy the foe, and a trial balloon that was to go up next day. The +balloon was not yet ready, but Pierre learned that it was being +constructed by the Emperor's desire. The Emperor had written to +Count Rostopchin as follows: + + +As soon as Leppich is ready, get together a crew of reliable and +intelligent men for his car and send a courier to General Kutuzov to +let him know. I have informed him of the matter. + +Please impress upon Leppich to be very careful where he descends for +the first time, that he may not make a mistake and fall into the +enemy's hands. It is essential for him to combine his movements with +those of the commander in chief. + + +On his way home from Vorontsovo, as he was passing the Bolotnoe +Place Pierre, seeing a large crowd round the Lobnoe Place, stopped and +got out of his trap. A French cook accused of being a spy was being +flogged. The flogging was only just over, and the executioner was +releasing from the flogging bench a stout man with red whiskers, in +blue stockings and a green jacket, who was moaning piteously. +Another criminal, thin and pale, stood near. Judging by their faces +they were both Frenchmen. With a frightened and suffering look +resembling that on the thin Frenchman's face, Pierre pushed his way in +through the crowd. + +"What is it? Who is it? What is it for?" he kept asking. + +But the attention of the crowd--officials, burghers, shopkeepers, +peasants, and women in cloaks and in pelisses--was so eagerly centered +on what was passing in Lobnoe Place that no one answered him. The +stout man rose, frowned, shrugged his shoulders, and evidently +trying to appear firm began to pull on his jacket without looking +about him, but suddenly his lips trembled and he began to cry, in +the way full-blooded grown-up men cry, though angry with himself for +doing so. In the crowd people began talking loudly, to stifle their +feelings of pity as it seemed to Pierre. + +"He's cook to some prince." + +"Eh, mounseer, Russian sauce seems to be sour to a Frenchman... sets +his teeth on edge!" said a wrinkled clerk who was standing behind +Pierre, when the Frenchman began to cry. + +The clerk glanced round, evidently hoping that his joke would be +appreciated. Some people began to laugh, others continued to watch +in dismay the executioner who was undressing the other man. + +Pierre choked, his face puckered, and he turned hastily away, went +back to his trap muttering something to himself as he went, and took +his seat. As they drove along he shuddered and exclaimed several times +so audibly that the coachman asked him: + +"What is your pleasure?" + +"Where are you going?" shouted Pierre to the man, who was driving to +Lubyanka Street. + +"To the Governor's, as you ordered," answered the coachman. + +"Fool! Idiot!" shouted Pierre, abusing his coachman--a thing he +rarely did. "Home, I told you! And drive faster, blockhead!" "I must +get away this very day," he murmured to himself. + +At the sight of the tortured Frenchman and the crowd surrounding the +Lobnoe Place, Pierre had so definitely made up his mind that he +could no longer remain in Moscow and would leave for the army that +very day that it seemed to him that either he had told the coachman +this or that the man ought to have known it for himself. + +On reaching home Pierre gave orders to Evstafey--his head coachman +who knew everything, could do anything, and was known to all Moscow- +that he would leave that night for the army at Mozhaysk, and that +his saddle horses should be sent there. This could not all be arranged +that day, so on Evstafey's representation Pierre had to put off his +departure till next day to allow time for the relay horses to be +sent on in advance. + +On the twenty-fourth the weather cleared up after a spell of rain, +and after dinner Pierre left Moscow. When changing horses that night +in Perkhushkovo, he learned that there had been a great battle that +evening. (This was the battle of Shevardino.) He was told that there +in Perkhushkovo the earth trembled from the firing, but nobody could +answer his questions as to who had won. At dawn next day Pierre was +approaching Mozhaysk. + +Every house in Mozhaysk had soldiers quartered in it, and at the +hostel where Pierre was met by his groom and coachman there was no +room to be had. It was full of officers. + +Everywhere in Mozhaysk and beyond it, troops were stationed or on +the march. Cossacks, foot and horse soldiers, wagons, caissons, and +cannon were everywhere. Pierre pushed forward as fast as he could, and +the farther he left Moscow behind and the deeper he plunged into +that sea of troops the more was he overcome by restless agitation +and a new and joyful feeling he had not experienced before. It was a +feeling akin to what he had felt at the Sloboda Palace during the +Emperor's visit--a sense of the necessity of undertaking something and +sacrificing something. He now experienced a glad consciousness that +everything that constitutes men's happiness--the comforts of life, +wealth, even life itself--is rubbish it is pleasant to throw away, +compared with something... With what? Pierre could not say, and he did +not try to determine for whom and for what he felt such particular +delight in sacrificing everything. He was not occupied with the +question of what to sacrifice for; the fact of sacrificing in itself +afforded him a new and joyous sensation. + + + + + +CHAPTER XIX + + +On the twenty-fourth of August the battle of the Shevardino +Redoubt was fought, on the twenty-fifth not a shot was fired by either +side, and on the twenty-sixth the battle of Borodino itself took +place. + +Why and how were the battles of Shevardino and Borodino given and +accepted? Why was the battle of Borodino fought? There was not the +least sense in it for either the French or the Russians. Its immediate +result for the Russians was, and was bound to be, that we were brought +nearer to the destruction of Moscow--which we feared more than +anything in the world; and for the French its immediate result was +that they were brought nearer to the destruction of their whole +army--which they feared more than anything in the world. What the +result must be was quite obvious, and yet Napoleon offered and Kutuzov +accepted that battle. + +If the commanders had been guided by reason, it would seem that it +must have been obvious to Napoleon that by advancing thirteen +hundred miles and giving battle with a probability of losing a quarter +of his army, he was advancing to certain destruction, and it must have +been equally clear to Kutuzov that by accepting battle and risking the +loss of a quarter of his army he would certainly lose Moscow. For +Kutuzov this was mathematically clear, as it is that if when playing +draughts I have one man less and go on exchanging, I shall certainly +lose, and therefore should not exchange. When my opponent has +sixteen men and I have fourteen, I am only one eighth weaker than +he, but when I have exchanged thirteen more men he will be three times +as strong as I am. + +Before the battle of Borodino our strength in proportion to the +French was about as five to six, but after that battle it was little +more than one to two: previously we had a hundred thousand against a +hundred and twenty thousand; afterwards little more than fifty +thousand against a hundred thousand. Yet the shrewd and experienced +Kutuzov accepted the battle, while Napoleon, who was said to be a +commander of genius, gave it, losing a quarter of his army and +lengthening his lines of communication still more. If it is said +that he expected to end the campaign by occupying Moscow as he had +ended a previous campaign by occupying Vienna, there is much +evidence to the contrary. Napoleon's historians themselves tell us +that from Smolensk onwards he wished to stop, knew the danger of his +extended position, and knew that the occupation of Moscow would not be +the end of the campaign, for he had seen at Smolensk the state in +which Russian towns were left to him, and had not received a single +reply to his repeated announcements of his wish to negotiate. + +In giving and accepting battle at Borodino, Kutuzov acted +involuntarily and irrationally. But later on, to fit what had +occurred, the historians provided cunningly devised evidence of the +foresight and genius the generals who, of all the blind tools of +history were the most enslaved and involuntary. + +The ancients have left us model heroic poems in which the heroes +furnish the whole interest of the story, and we are still unable to +accustom ourselves to the fact that for our epoch histories of that +kind are meaningless. + +On the other question, how the battle of Borodino and the +preceding battle of Shevardino were fought, there also exists a +definite and well-known, but quite false, conception. All the +historians describe the affair as follows: + +The Russian army, they say, in its retreat from Smolensk sought +out for itself the best position for a general engagement and found +such a position at Borodino. + +The Russians, they say, fortified this position in advance on the +left of the highroad (from Moscow to Smolensk) and almost at a right +angle to it, from Borodino to Utitsa, at the very place where the +battle was fought. + +In front of this position, they say, a fortified outpost was set +up on the Shevardino mound to observe the enemy. On the twenty-fourth, +we are told, Napoleon attacked this advanced post and took it, and, on +the twenty-sixth, attacked the whole Russian army, which was in +position on the field of Borodino. + +So the histories say, and it is all quite wrong, as anyone who cares +to look into the matter can easily convince himself. + +The Russians did not seek out the best position but, on the +contrary, during the retreat passed many positions better than +Borodino. They did not stop at any one of these positions because +Kutuzov did not wish to occupy a position he had not himself chosen, +because the popular demand for a battle had not yet expressed itself +strongly enough, and because Miloradovich had not yet arrived with the +militia, and for many other reasons. The fact is that other +positions they had passed were stronger, and that the position at +Borodino (the one where the battle was fought), far from being strong, +was no more a position than any other spot one might find in the +Russian Empire by sticking a pin into the map at hazard. + +Not only did the Russians not fortify the position on the field of +Borodino to the left of, and at a right angle to, the highroad (that +is, the position on which the battle took place), but never till the +twenty-fifth of August, 1812, did they think that a battle might be +fought there. This was shown first by the fact that there were no +entrenchments there by the twenty fifth and that those begun on the +twenty-fifth and twenty-sixth were not completed, and secondly, by the +position of the Shevardino Redoubt. That redoubt was quite senseless +in front of the position where the battle was accepted. Why was it +more strongly fortified than any other post? And why were all +efforts exhausted and six thousand men sacrificed to defend it till +late at night on the twenty-fourth? A Cossack patrol would have +sufficed to observe the enemy. Thirdly, as proof that the position +on which the battle was fought had not been foreseen and that the +Shevardino Redoubt was not an advanced post of that position, we +have the fact that up to the twenty-fifth, Barclay de Tolly and +Bagration were convinced that the Shevardino Redoubt was the left +flank of the position, and that Kutuzov himself in his report, written +in hot haste after the battle, speaks of the Shevardino Redoubt as the +left flank of the position. It was much later, when reports on the +battle of Borodino were written at leisure, that the incorrect and +extraordinary statement was invented (probably to justify the mistakes +of a commander in chief who had to be represented as infallible) +that the Shevardino Redoubt was an advanced post--whereas in reality +it was simply a fortified point on the left flank--and that the battle +of Borodino was fought by us on an entrenched position previously +selected, where as it was fought on a quite unexpected spot which +was almost unentrenched. + +The case was evidently this: a position was selected along the river +Kolocha--which crosses the highroad not at a right angle but at an +acute angle--so that the left flank was at Shevardino, the right flank +near the village of Novoe, and the center at Borodino at the +confluence of the rivers Kolocha and Voyna. + +To anyone who looks at the field of Borodino without thinking of how +the battle was actually fought, this position, protected by the +river Kolocha, presents itself as obvious for an army whose object was +to prevent an enemy from advancing along the Smolensk road to Moscow. + +Napoleon, riding to Valuevo on the twenty-fourth, did not see (as +the history books say he did) the position of the Russians from Utitsa +to Borodino (he could not have seen that position because it did not +exist), nor did he see an advanced post of the Russian army, but while +pursuing the Russian rearguard he came upon the left flank of the +Russian position--at the Shevardino Redoubt--and unexpectedly for +the Russians moved his army across the Kolocha. And the Russians, +not having time to begin a general engagement, withdrew their left +wing from the position they had intended to occupy and took up a new +position which had not been foreseen and was not fortified. By +crossing to the other side of the Kolocha to the left of the highroad, +Napoleon shifted the whole forthcoming battle from right to left +(looking from the Russian side) and transferred it to the plain +between Utitsa, Semenovsk, and Borodino--a plain no more +advantageous as a position than any other plain in Russia--and there +the whole battle of the twenty-sixth of August took place. + +Had Napoleon not ridden out on the evening of the twenty-fourth to +the Kolocha, and had he not then ordered an immediate attack on the +redoubt but had begun the attack next morning, no one would have +doubted that the Shevardino Redoubt was the left flank of our and +the battle would have taken place where we expected it. In that case +we should probably have defended the Shevardino Redoubt--our left +flank--still more obstinately. We should have attacked Napoleon in the +center or on the right, and the engagement would have taken place on +the twenty-fifth, in the position we intended and had fortified. But +as the attack on our left flank took place in the evening after the +retreat of our rear guard (that is, immediately after the fight at +Gridneva), and as the Russian commanders did not wish, or were not +in time, to begin a general engagement then on the evening of the +twenty-fourth, the first and chief action of the battle of Borodino +was already lost on the twenty-fourth, and obviously led to the loss +of the one fought on the twenty-sixth. + +After the loss of the Shevardino Redoubt, we found ourselves on +the morning of the twenty-fifth without a position for our left flank, +and were forced to bend it back and hastily entrench it where it +chanced to be. + +Not only was the Russian army on the twenty-sixth defended by +weak, unfinished entrenchments, but the disadvantage of that +position was increased by the fact that the Russian commanders--not +having fully realized what had happened, namely the loss of our +position on the left flank and the shifting of the whole field of +the forthcoming battle from right to left--maintained their extended +position from the village of Novoe to Utitsa, and consequently had +to move their forces from right to left during the battle. So it +happened that throughout the whole battle the Russians opposed the +entire French army launched against our left flank with but half as +many men. (Poniatowski's action against Utitsa, and Uvarov's on the +right flank against the French, were actions distinct from the main +course of the battle.) So the battle of Borodino did not take place at +all as (in an effort to conceal our commanders' mistakes even at the +cost of diminishing the glory due to the Russian army and people) it +has been described. The battle of Borodino was not fought on a +chosen and entrenched position with forces only slightly weaker than +those of the enemy, but, as a result of the loss of the Shevardino +Redoubt, the Russians fought the battle of Borodino on an open and +almost unentrenched position, with forces only half as numerous as the +French; that is to say, under conditions in which it was not merely +unthinkable to fight for ten hours and secure an indecisive result, +but unthinkable to keep an army even from complete disintegration +and flight. + + + + + +CHAPTER XX + + +On the morning of the twenty-fifth Pierre was leaving Mozhaysk. At +the descent of the high steep hill, down which a winding road led +out of the town past the cathedral on the right, where a service was +being held and the bells were ringing, Pierre got out of his vehicle +and proceeded on foot. Behind him a cavalry regiment was coming down +the hill preceded by its singers. Coming up toward him was a train +of carts carrying men who had been wounded in the engagement the day +before. The peasant drivers, shouting and lashing their horses, kept +crossing from side to side. The carts, in each of which three or +four wounded soldiers were lying or sitting, jolted over the stones +that had been thrown on the steep incline to make it something like +a road. The wounded, bandaged with rags, with pale cheeks, +compressed lips, and knitted brows, held on to the sides of the +carts as they were jolted against one another. Almost all of them +stared with naive, childlike curiosity at Pierre's white hat and green +swallow-tail coat. + +Pierre's coachman shouted angrily at the convoy of wounded to keep +to one side of the road. The cavalry regiment, as it descended the +hill with its singers, surrounded Pierre's carriage and blocked the +road. Pierre stopped, being pressed against the side of the cutting in +which the road ran. The sunshine from behind the hill did not +penetrate into the cutting and there it was cold and damp, but above +Pierre's head was the bright August sunshine and the bells sounded +merrily. One of the carts with wounded stopped by the side of the road +close to Pierre. The driver in his bast shoes ran panting up to it, +placed a stone under one of its tireless hind wheels, and began +arranging the breech-band on his little horse. + +One of the wounded, an old soldier with a bandaged arm who was +following the cart on foot, caught hold of it with his sound hand +and turned to look at Pierre. + +"I say, fellow countryman! Will they set us down here or take us +on to Moscow?" he asked. + +Pierre was so deep in thought that he did not hear the question. +He was looking now at the cavalry regiment that had met the convoy +of wounded, now at the cart by which he was standing, in which two +wounded men were sitting and one was lying. One of those sitting up in +the cart had probably been wounded in the cheek. His whole head was +wrapped in rags and one cheek was swollen to the size of a baby's +head. His nose and mouth were twisted to one side. This soldier was +looking at the cathedral and crossing himself. Another, a young lad, a +fair-haired recruit as white as though there was no blood in his +thin face, looked at Pierre kindly, with a fixed smile. The third +lay prone so that his face was not visible. The cavalry singers were +passing close by: + + Ah lost, quite lost... is my head so keen, + Living in a foreign land. + +they sang their soldiers' dance song. + +As if responding to them but with a different sort of merriment, the +metallic sound of the bells reverberated high above and the hot rays +of the sun bathed the top of the opposite slope with yet another +sort of merriment. But beneath the slope, by the cart with the wounded +near the panting little nag where Pierre stood, it was damp, somber, +and sad. + +The soldier with the swollen cheek looked angrily at the cavalry +singers. + +"Oh, the coxcombs!" he muttered reproachfully. + +"It's not the soldiers only, but I've seen peasants today, too.... +The peasants--even they have to go," said the soldier behind the cart, +addressing Pierre with a sad smile. "No distinctions made nowadays.... +They want the whole nation to fall on them--in a word, it's Moscow! +They want to make an end of it." + +In spite of the obscurity of the soldier's words Pierre understood +what he wanted to say and nodded approval. + +The road was clear again; Pierre descended the hill and drove on. + +He kept looking to either side of the road for familiar faces, but +only saw everywhere the unfamiliar faces of various military men of +different branches of the service, who all looked with astonishment at +his white hat and green tail coat. + +Having gone nearly three miles he at last met an acquaintance and +eagerly addressed him. This was one of the head army doctors. He was +driving toward Pierre in a covered gig, sitting beside a young +surgeon, and on recognizing Pierre he told the Cossack who occupied +the driver's seat to pull up. + +"Count! Your excellency, how come you to be here?" asked the doctor. + +"Well, you know, I wanted to see..." + +"Yes, yes, there will be something to see...." + +Pierre got out and talked to the doctor, explaining his intention of +taking part in a battle. + +The doctor advised him to apply direct to Kutuzov. + +"Why should you be God knows where out of sight, during the battle?" +he said, exchanging glances with his young companion. "Anyhow his +Serene Highness knows you and will receive you graciously. That's what +you must do." + +The doctor seemed tired and in a hurry. + +"You think so?... Ah, I also wanted to ask you where our position is +exactly?" said Pierre. + +"The position?" repeated the doctor. "Well, that's not my line. +Drive past Tatarinova, a lot of digging is going on there. Go up the +hillock and you'll see." + +"Can one see from there?... If you would..." + +But the doctor interrupted him and moved toward his gig. + +"I would go with you but on my honor I'm up to here"--and he pointed +to his throat. "I'm galloping to the commander of the corps. How do +matters stand?... You know, Count, there'll be a battle tomorrow. +Out of an army of a hundred thousand we must expect at least twenty +thousand wounded, and we haven't stretchers, or bunks, or dressers, or +doctors enough for six thousand. We have ten thousand carts, but we +need other things as well--we must manage as best we can!" + +The strange thought that of the thousands of men, young and old, who +had stared with merry surprise at his hat (perhaps the very men he had +noticed), twenty thousand were inevitably doomed to wounds and death +amazed Pierre. + +"They may die tomorrow; why are they thinking of anything but +death?" And by some latent sequence of thought the descent of the +Mozhaysk hill, the carts with the wounded, the ringing bells, the +slanting rays of the sun, and the songs of the cavalrymen vividly +recurred to his mind. + +"The cavalry ride to battle and meet the wounded and do not for a +moment think of what awaits them, but pass by, winking at the wounded. +Yet from among these men twenty thousand are doomed to die, and they +wonder at my hat! Strange!" thought Pierre, continuing his way to +Tatarinova. + +In front of a landowner's house to the left of the road stood +carriages, wagons, and crowds of orderlies and sentinels. The +commander in chief was putting up there, but just when Pierre +arrived he was not in and hardly any of the staff were there--they had +gone to the church service. Pierre drove on toward Gorki. + +When he had ascended the hill and reached the little village street, +he saw for the first time peasant militiamen in their white shirts and +with crosses on their caps, who, talking and laughing loudly, animated +and perspiring, were at work on a huge knoll overgrown with grass to +the right of the road. + +Some of them were digging, others were wheeling barrowloads of earth +along planks, while others stood about doing nothing. + +Two officers were standing on the knoll, directing the men. On +seeing these peasants, who were evidently still amused by the +novelty of their position as soldiers, Pierre once more thought of the +wounded men at Mozhaysk and understood what the soldier had meant when +he said: "They want the whole nation to fall on them." The sight of +these bearded peasants at work on the battlefield, with their queer, +clumsy boots and perspiring necks, and their shirts opening from the +left toward the middle, unfastened, exposing their sunburned +collarbones, impressed Pierre more strongly with the solemnity and +importance of the moment than anything he had yet seen or heard. + + + + + +CHAPTER XXI + + +Pierre stepped out of his carriage and, passing the toiling +militiamen, ascended the knoll from which, according to the doctor, +the battlefield could be seen. + +It was about eleven o'clock. The sun shone somewhat to the left +and behind him and brightly lit up the enormous panorama which, rising +like an amphitheater, extended before him in the clear rarefied +atmosphere. + +From above on the left, bisecting that amphitheater, wound the +Smolensk highroad, passing through a village with a white church +some five hundred paces in front of the knoll and below it. This was +Borodino. Below the village the road crossed the river by a bridge +and, winding down and up, rose higher and higher to the village of +Valuevo visible about four miles away, where Napoleon was then +stationed. Beyond Valuevo the road disappeared into a yellowing forest +on the horizon. Far in the distance in that birch and fir forest to +the right of the road, the cross and belfry of the Kolocha Monastery +gleamed in the sun. Here and there over the whole of that blue +expanse, to right and left of the forest and the road, smoking +campfires could be seen and indefinite masses of troops--ours and +the enemy's. The ground to the right--along the course of the +Kolocha and Moskva rivers--was broken and hilly. Between the hollows +the villages of Bezubova and Zakharino showed in the distance. On +the left the ground was more level; there were fields of grain, and +the smoking ruins of Semenovsk, which had been burned down, could be +seen. + +All that Pierre saw was so indefinite that neither the left nor +the right side of the field fully satisfied his expectations. +Nowhere could he see the battlefield he had expected to find, but only +fields, meadows, troops, woods, the smoke of campfires, villages, +mounds, and streams; and try as he would he could descry no military +"position" in this place which teemed with life, nor could he even +distinguish our troops from the enemy's. + +"I must ask someone who knows," he thought, and addressed an officer +who was looking with curiosity at his huge unmilitary figure. + +"May I ask you," said Pierre, "what village that is in front?" + +"Burdino, isn't it?" said the officer, turning to his companion. + +"Borodino," the other corrected him. + +The officer, evidently glad of an opportunity for a talk, moved up +to Pierre. + +"Are those our men there?" Pierre inquired. + +"Yes, and there, further on, are the French," said the officer. +"There they are, there... you can see them." + +"Where? Where?" asked Pierre. + +"One can see them with the naked eye... Why, there!" + +The officer pointed with his hand to the smoke visible on the left +beyond the river, and the same stern and serious expression that +Pierre had noticed on many of the faces he had met came into his face. + +"Ah, those are the French! And over there?..." Pierre pointed to a +knoll on the left, near which some troops could be seen. + +"Those are ours." + +"Ah, ours! And there?..." Pierre pointed to another knoll in the +distance with a big tree on it, near a village that lay in a hollow +where also some campfires were smoking and something black was +visible. + +"That's his again," said the officer. (It was the Shevardino +Redoubt.) "It was ours yesterday, but now it is his." + +"Then how about our position?" + +"Our position?" replied the officer with a smile of satisfaction. "I +can tell you quite clearly, because I constructed nearly all our +entrenchments. There, you see? There's our center, at Borodino, just +there," and he pointed to the village in front of them with the +white church. "That's where one crosses the Kolocha. You see down +there where the rows of hay are lying in the hollow, there's the +bridge. That's our center. Our right flank is over there"--he +pointed sharply to the right, far away in the broken ground--"That's +where the Moskva River is, and we have thrown up three redoubts there, +very strong ones. The left flank..." here the officer paused. "Well, +you see, that's difficult to explain.... Yesterday our left flank +was there at Shevardino, you see, where the oak is, but now we have +withdrawn our left wing--now it is over there, do you see that village +and the smoke? That's Semenovsk, yes, there," he pointed to +Raevski's knoll. "But the battle will hardly be there. His having +moved his troops there is only a ruse; he will probably pass round +to the right of the Moskva. But wherever it may be, many a man will be +missing tomorrow!" he remarked. + +An elderly sergeant who had approached the officer while he was +giving these explanations had waited in silence for him to finish +speaking, but at this point, evidently not liking the officer's +remark, interrupted him. + +"Gabions must be sent for," said he sternly. + +The officer appeared abashed, as though he understood that one might +think of how many men would be missing tomorrow but ought not to speak +to speak of it. + +"Well, send number three company again," the officer replied +hurriedly. + +"And you, are you one of the doctors?" + +"No, I've come on my own," answered Pierre, and he went down the +hill again, passing the militiamen. + +"Oh, those damned fellows!" muttered the officer who followed him, +holding his nose as he ran past the men at work. + +"There they are... bringing her, coming... There they are... They'll +be here in a minute..." voices were suddenly heard saying; and +officers, soldiers, and militiamen began running forward along the +road. + +A church procession was coming up the hill from Borodino. First +along the dusty road came the infantry in ranks, bareheaded and with +arms reversed. From behind them came the sound of church singing. + +Soldiers and militiamen ran bareheaded past Pierre toward the +procession. + +"They are bringing her, our Protectress!... The Iberian Mother of +God!" someone cried. + +"The Smolensk Mother of God," another corrected him. + +The militiamen, both those who had been in the village and those who +had been at work on the battery, threw down their spades and ran to +meet the church procession. Following the battalion that marched along +the dusty road came priests in their vestments--one little old man +in a hood with attendants and singers. Behind them soldiers and +officers bore a large, dark-faced icon with an embossed metal cover. +This was the icon that had been brought from and had since accompanied +the army. Behind, before, and on both sides, crowds of militiamen with +bared heads walked, ran, and bowed to the ground. + +At the summit of the hill they stopped with the icon; the men who +had been holding it up by the linen bands attached to it were relieved +by others, the chanters relit their censers, and service began. The +hot rays of the sun beat down vertically and a fresh soft wind +played with the hair of the bared heads and with the ribbons +decorating the icon. The singing did not sound loud under the open +sky. An immense crowd of bareheaded officers, soldiers, and militiamen +surrounded the icon. Behind the priest and a chanter stood the +notabilities on a spot reserved for them. A bald general with +general with a St. George's Cross on his neck stood just behind the +priest's back, and without crossing himself (he was evidently a +German) patiently awaited the end of the service, which he +considered it necessary to hear to the end, probably to arouse the +patriotism of the Russian people. Another general stood in a martial +pose, crossing himself by shaking his hand in front of his chest while +looking about him. Standing among the crowd of peasants, Pierre +recognized several acquaintances among these notables, but did not +look at them--his whole attention was absorbed in watching the serious +expression on the faces of the crowd of soldiers and militiamen who +were all gazing eagerly at the icon. As soon as the tired chanters, +who were singing the service for the twentieth time that day, began +lazily and mechanically to sing: "Save from calamity Thy servants, O +Mother of God," and the priest and deacon chimed in: "For to Thee +under God we all flee as to an inviolable bulwark and protection," +there again kindled in all those faces the same expression of +consciousness of the solemnity of the impending moment that Pierre had +seen on the faces at the foot of the hill at Mozhaysk and +momentarily on many and many faces he had met that morning; and +heads were bowed more frequently and hair tossed back, and sighs and +the sound men made as they crossed themselves were heard. + +The crowd round the icon suddenly parted and pressed against Pierre. +Someone, a very important personage judging by the haste with which +way was made for him, was approaching the icon. + +It was Kutuzov, who had been riding round the position and on his +way back to Tatarinova had stopped where the service was being held. +Pierre recognized him at once by his peculiar figure, which +distinguished him from everybody else. + +With a long overcoat on his his exceedingly stout, +round-shouldered body, with uncovered white head and puffy face +showing the white ball of the eye he had lost, Kutuzov walked with +plunging, swaying gait into the crowd and stopped behind the priest. +He crossed himself with an accustomed movement, bent till he touched +the ground with his hand, and bowed his white head with a deep sigh. +Behind Kutuzov was Bennigsen and the suite. Despite the presence of +the commander in chief, who attracted the attention of all the +superior officers, the militiamen and soldiers continued their prayers +without looking at him. + +When the service was over, Kutuzov stepped up to the icon, sank +heavily to his knees, bowed to the ground, and for a long time tried +vainly to rise, but could not do so on account of his weakness and +weight. His white head twitched with the effort. At last he rose, +kissed the icon as a child does with naively pouting lips, and again +bowed till he touched the ground with his hand. The other generals +followed his example, then the officers, and after them with excited +faces, pressing on one another, crowding, panting, and pushing, +scrambled the soldiers and militiamen. + + + + + +CHAPTER XXII + + +Staggering amid the crush, Pierre looked about him. + +"Count Peter Kirilovich! How did you get here?" said a voice. + +Pierre looked round. Boris Drubetskoy, brushing his knees with his +hand (he had probably soiled them when he, too, had knelt before the +icon), came up to him smiling. Boris was elegantly dressed, with a +slightly martial touch appropriate to a campaign. He wore a long +coat and like Kutuzov had a whip slung across his shoulder. + +Meanwhile Kutuzov had reached the village and seated himself in +the shade of the nearest house, on a bench which one Cossack had run +to fetch and another had hastily covered with a rug. An immense and +brilliant suite surrounded him. + +The icon was carried further, accompanied by the throng. Pierre +stopped some thirty paces from Kutuzov, talking to Boris. + +He explained his wish to be present at the battle and to see the +position. + +"This is what you must do," said Boris. "I will do the honors of the +camp to you. You will see everything best from where Count Bennigsen +will be. I am in attendance on him, you know; I'll mention it to +him. But if you want to ride round the position, come along with us. +We are just going to the left flank. Then when we get back, do spend +the night with me and we'll arrange a game of cards. Of course you +know Dmitri Sergeevich? Those are his quarters," and he pointed to the +third house in the village of Gorki. + +"But I should like to see the right flank. They say it's very +strong," said Pierre. "I should like to start from the Moskva River +and ride round the whole position." + +"Well, you can do that later, but the chief thing is the left +flank." + +"Yes, yes. But where is Prince Bolkonski's regiment? Can you point +it out to me?" + +"Prince Andrew's? We shall pass it and I'll take you to him." + +"What about the left flank?" asked Pierre + +"To tell you the truth, between ourselves, God only knows what state +our left flank is in," said Boris confidentially lowering his voice. +"It is not at all what Count Bennigsen intended. He meant to fortify +that knoll quite differently, but..." Boris shrugged his shoulders, +"his Serene Highness would not have it, or someone persuaded him. +You see..." but Boris did not finish, for at that moment Kaysarov, +Kutuzov's adjutant, came up to Pierre. "Ah, Kaysarov!" said Boris, +addressing him with an unembarrassed smile, "I was just trying to +explain our position to the count. It is amazing how his Serene +Highness could so the intentions of the French!" + +"You mean the left flank?" asked Kaysarov. + + +"Yes, exactly; the left flank is now extremely strong." + +Though Kutuzov had dismissed all unnecessary men from the staff, +Boris had contrived to remain at headquarters after the changes. He +had established himself with Count Bennigsen, who, like all on whom +Boris had been in attendance, considered young Prince Drubetskoy an +invaluable man. + +In the higher command there were two sharply defined parties: +Kutuzov's party and that of Bennigsen, the chief of staff. Boris +belonged to the latter and no one else, while showing servile +respect to Kutuzov, could so create an impression that the old +fellow was not much good and that Bennigsen managed everything. Now +the decisive moment of battle had come when Kutuzov would be destroyed +and the power pass to Bennigsen, or even if Kutuzov won the battle +it would be felt that everything was done by Bennigsen. In any case +many great rewards would have to be given for tomorrow's action, and +new men would come to the front. So Boris was full of nervous vivacity +all day. + +After Kaysarov, others whom Pierre knew came up to him, and he had +not time to reply to all the questions about Moscow that were showered +upon him, or to listen to all that was told him. The faces all +expressed animation and apprehension, but it seemed to Pierre that the +cause of the excitement shown in some of these faces lay chiefly in +questions of personal success; his mind, however, was occupied by +the different expression he saw on other faces--an expression that +spoke not of personal matters but of the universal questions of life +and death. Kutuzov noticed Pierre's figure and the group gathered +round him. + +"Call him to me," said Kutuzov. + +An adjutant told Pierre of his Serene Highness' wish, and Pierre +went toward Kutuzov's bench. But a militiaman got there before him. It +was Dolokhov. + +"How did that fellow get here?" asked Pierre. + +"He's a creature that wriggles in anywhere!" was the answer. "He has +been degraded, you know. Now he wants to bob up again. He's been +proposing some scheme or other and has crawled into the enemy's picket +line at night.... He's a brave fellow." + +Pierre took off his hat and bowed respectfully to Kutuzov. + +"I concluded that if I reported to your Serene Highness you might +send me away or say that you knew what I was reporting, but then I +shouldn't lose anything..." Dolokhov was saying. + +"Yes, yes." + +"But if I were right, I should be rendering a service to my +Fatherland for which I am ready to die." + +"Yes, yes." + +"And should your Serene Highness require a man who will not spare +his skin, please think of me.... Perhaps I may prove useful to your +Serene Highness." + +"Yes... Yes..." Kutuzov repeated, his laughing eye narrowing more +and more as he looked at Pierre. + +Just then Boris, with his courtierlike adroitness, stepped up to +Pierre's side near Kutuzov and in a most natural manner, without +raising his voice, said to Pierre, as though continuing an interrupted +conversation: + +"The militia have put on clean white shirts to be ready to die. What +heroism, Count!" + +Boris evidently said this to Pierre in order to be overheard by +his Serene Highness. He knew Kutuzov's attention would be caught by +those words, and so it was. + +"What are you saying about the militia?" he asked Boris. + +"Preparing for tomorrow, your Serene Highness--for death--they +have put on clean shirts." + +"Ah... a wonderful, a matchless people!" said Kutuzov; and he closed +his eyes and swayed his head. "A matchless people!" he repeated with a +sigh. + +"So you want to smell gunpowder?" he said to Pierre. "Yes, it's a +pleasant smell. I have the honor to be one of your wife's adorers. +Is she well? My quarters are at your service." + +And as often happens with old people, Kutuzov began looking about +absent-mindedly as if forgetting all he wanted to say or do. + +Then, evidently remembering what he wanted, he beckoned to Andrew +Kaysarov, his adjutant's brother. + +"Those verses... those verses of Marin's... how do they go, eh? +Those he wrote about Gerakov: 'Lectures for the corps inditing'... +Recite them, recite them!" said he, evidently preparing to laugh. + +Kaysarov recited.... Kutuzov smilingly nodded his head to the rhythm +of the verses. + +When Pierre had left Kutuzov, Dolokhov came up to him and took his +hand. + +"I am very glad to meet you here, Count," he said aloud, +regardless of the presence of strangers and in a particularly resolute +and solemn tone. "On the eve of a day when God alone knows who of us +is fated to survive, I am glad of this opportunity to tell you that +I regret the misunderstandings that occurred between us and should +wish you not to have any ill feeling for me. I beg you to forgive me." + +Pierre looked at Dolokhov with a smile, not knowing what to say to +him. With tears in his eyes Dolokhov embraced Pierre and kissed him. + +Boris said a few words to his general, and Count Bennigsen turned to +Pierre and proposed that he should ride with him along the line. + +"It will interest you," said he. + +"Yes, very much," replied Pierre. + +Half an hour later Kutuzov left for Tatarinova, and Bennigsen and +his suite, with Pierre among them, set out on their ride along the +line. + + + + + +CHAPTER XXIII + + +From Gorki, Bennigsen descended the highroad to the bridge which, +when they had looked it from the hill, the officer had pointed out +as being the center of our position and where rows of fragrant +new-mown hay lay by the riverside. They rode across that bridge into +the village of Borodino and thence turned to the left, passing an +enormous number of troops and guns, and came to a high knoll where +militiamen were digging. This was the redoubt, as yet unnamed, which +afterwards became known as the Raevski Redoubt, or the Knoll +Battery, but Pierre paid no special attention to it. He did not know +that it would become more memorable to him than any other spot on +the plain of Borodino. + +They then crossed the hollow to Semenovsk, where the soldiers were +dragging away the last logs from the huts and barns. Then they rode +downhill and uphill, across a ryefield trodden and beaten down as if +by hail, following a track freshly made by the artillery over the +furrows of the plowed land, and reached some fleches* which were still +being dug. + + +*A kind of entrenchment. + + +At the fleches Bennigsen stopped and began looking at the Shevardino +Redoubt opposite, which had been ours the day before and where several +horsemen could be descried. The officers said that either Napoleon +or Murat was there, and they all gazed eagerly at this little group of +horsemen. Pierre also looked at them, trying to guess which of the +scarcely discernible figures was Napoleon. At last those mounted men +rode away from the mound and disappeared. + +Bennigsen spoke to a general who approached him, and began +explaining the whole position of our troops. Pierre listened to him, +straining each faculty to understand the essential points of the +impending battle, but was mortified to feel that his mental capacity +was inadequate for the task. He could make nothing of it. Bennigsen +stopped speaking and, noticing that Pierre was listening, suddenly +said to him: + +"I don't think this interests you?" + +"On the contrary it's very interesting!" replied Pierre not quite +truthfully. + +From the fleches they rode still farther to the left, along a road +winding through a thick, low-growing birch wood. In the middle of +the wood a brown hare with white feet sprang out and, scared by the +tramp of the many horses, grew so confused that it leaped along the +road in front of them for some time, arousing general attention and +laughter, and only when several voices shouted at it did it dart to +one side and disappear in the thicket. After going through the wood +for about a mile and a half they came out on a glade where troops of +Tuchkov's corps were stationed to defend the left flank. + +Here, at the extreme left flank, Bennigsen talked a great deal and +with much heat, and, as it seemed to Pierre, gave orders of great +military importance. In front of Tuchkov's troops was some high ground +not occupied by troops. Bennigsen loudly criticized this mistake, +saying that it was madness to leave a height which commanded the +country around unoccupied and to place troops below it. Some of the +generals expressed the same opinion. One in particular declared with +martial heat that they were put there to be slaughtered. Bennigsen +on his own authority ordered the troops to occupy the high ground. +This disposition on the left flank increased Pierre's doubt of his own +capacity to understand military matters. Listening to Bennigsen and +the generals criticizing the position of the troops behind the hill, +he quite understood them and shared their opinion, but for that very +reason he could not understand how the man who put them there behind +the hill could have made so gross and palpable a blunder. + +Pierre did not know that these troops were not, as Bennigsen +supposed, put there to defend the position, but were in a concealed +position as an ambush, that they should not be seen and might be +able to strike an approaching enemy unexpectedly. Bennigsen did not +know this and moved the troops forward according to his own ideas +without mentioning the matter to the commander in chief. + + + + + +CHAPTER XXIV + + +On that bright evening of August 25, Prince Andrew lay leaning on +his elbow in a broken-down shed in the village of Knyazkovo at the +further end of his regiment's encampment. Through a gap in the +broken wall he could see, beside the wooden fence, a row of thirty +year-old birches with their lower branches lopped off, a field on +which shocks of oats were standing, and some bushes near which rose +the smoke of campfires--the soldiers' kitchens. + +Narrow and burdensome and useless to anyone as his life now seemed +to him, Prince Andrew on the eve of battle felt agitated and irritable +as he had done seven years before at Austerlitz. + +He had received and given the orders for next day's battle and had +nothing more to do. But his thoughts--the simplest, clearest, and +therefore most terrible thoughts--would give him no peace. He knew +that tomorrow's battle would be the most terrible of all he had +taken part in, and for the first time in his life the possibility of +death presented itself to him--not in relation to any worldly matter +or with reference to its effect on others, but simply in relation to +himself, to his own soul--vividly, plainly, terribly, and almost as +a certainty. And from the height of this perception all that had +previously tormented and preoccupied him suddenly became illumined +by a cold white light without shadows, without perspective, without +distinction of outline. All life appeared to him like magic-lantern +pictures at which he had long been gazing by artificial light +through a glass. Now he suddenly saw those badly daubed pictures in +clear daylight and without a glass. "Yes, yes! There they are, those +false images that agitated, enraptured, and tormented me," said he +to himself, passing in review the principal pictures of the magic +lantern of life and regarding them now in the cold white daylight of +his clear perception of death. "There they are, those rudely painted +figures that once seemed splendid and mysterious. Glory, the good of +society, love of a woman, the Fatherland itself--how important these +pictures appeared to me, with what profound meaning they seemed to +be filled! And it is all so simple, pale, and crude in the cold +white light of this morning which I feel is dawning for me." The three +great sorrows of his life held his attention in particular: his love +for a woman, his father's death, and the French invasion which had +overrun half Russia. "Love... that little girl who seemed to me +brimming over with mystic forces! Yes, indeed, I loved her. I made +romantic plans of love and happiness with her! Oh, what a boy I +was!" he said aloud bitterly. "Ah me! I believed in some ideal love +which was to keep her faithful to me for the whole year of my absence! +Like the gentle dove in the fable she was to pine apart from me.... +But it was much simpler really.... It was all very simple and +horrible." + +"When my father built Bald Hills he thought the place was his: his +land, his air, his peasants. But Napoleon came and swept him aside, +unconscious of his existence, as he might brush a chip from his +path, and his Bald Hills and his whole life fell to pieces. Princess +Mary says it is a trial sent from above. What is the trial for, when +he is not here and will never return? He is not here! For whom then is +the trial intended? The Fatherland, the destruction of Moscow! And +tomorrow I shall be killed, perhaps not even by a Frenchman but by one +of our own men, by a soldier discharging a musket close to my ear as +one of them did yesterday, and the French will come and take me by +head and heels and fling me into a hole that I may not stink under +their noses, and new conditions of life will arise, which will seem +quite ordinary to others and about which I shall know nothing. I shall +not exist..." + +He looked at the row of birches shining in the sunshine, with +their motionless green and yellow foliage and white bark. "To die... +to be killed tomorrow... That I should not exist... That all this +should still be, but no me...." + +And the birches with their light and shade, the curly clouds, the +smoke of the campfires, and all that was around him changed and seemed +terrible and menacing. A cold shiver ran down his spine. He rose +quickly, went out of the shed, and began to walk about. + +After he had returned, voices were heard outside the shed. "Who's +that?" he cried. + +The red-nosed Captain Timokhin, formerly Dolokhov's squadron +commander, but now from lack of officers a battalion commander, + +shyly entered the shed followed by an adjutant and the regimental +paymaster. + +Prince Andrew rose hastily, listened to the business they had come +about, gave them some further instructions, and was about to dismiss +them when he heard a familiar, lisping, voice behind the shed. + +"Devil take it!" said the voice of a man stumbling over something. + +Prince Andrew looked out of the shed and saw Pierre, who had tripped +over a pole on the ground and had nearly fallen, coming his way. It +was unpleasant to Prince Andrew to meet people of his own set in +general, and Pierre especially, for he reminded him of all the painful +moments of his last visit to Moscow. + +"You? What a surprise!" said he. "What brings you here? This is +unexpected!" + +As he said this his eyes and face expressed more than coldness--they +expressed hostility, which Pierre noticed at once. He had approached +the shed full of animation, but on seeing Prince Andrew's face he felt +constrained and ill at ease. + +"I have come... simply... you know... come... it interests me," said +Pierre, who had so often that day senselessly repeated that word +"interesting." "I wish to see the battle." + +"Oh yes, and what do the Masonic brothers say about war? How would +they stop it?" said Prince Andrew sarcastically. "Well, and how's +Moscow? And my people? Have they reached Moscow at last?" he asked +seriously. + +"Yes, they have. Julie Drubetskaya told me so. I went to see them, +but missed them. They have gone to your estate near Moscow." + + + + + +CHAPTER XXV + + +The officers were about to take leave, but Prince Andrew, apparently +reluctant to be left alone with his friend, asked them to stay and +have tea. Seats were brought in and so was the tea. The officers gazed +with surprise at Pierre's huge stout figure and listened to his talk +of Moscow and the position of our army, round which he had ridden. +Prince Andrew remained silent, and his expression was so forbidding +that Pierre addressed his remarks chiefly to the good-natured +battalion commander. + +"So you understand the whole position of our troops?" Prince +Andrew interrupted him. + +"Yes--that is, how do you mean?" said Pierre. "Not being a +military man I can't say I have understood it fully, but I +understand the general position." + +"Well, then, you know more than anyone else, be it who it may," said +Prince Andrew. + +"Oh!" said Pierre, looking over his spectacles in perplexity at +Prince Andrew. "Well, and what do think of Kutuzov's appointment?" +he asked. + +"I was very glad of his appointment, that's all I know," replied +Prince Andrew. + +"And tell me your opinion of Barclay de Tolly. In Moscow they are +saying heaven knows what about him.... What do you think of him?" + +"Ask them," replied Prince Andrew, indicating the officers. + +Pierre looked at Timokhin with the condescendingly interrogative +smile with which everybody involuntarily addressed that officer. + +"We see light again, since his Serenity has been appointed, your +excellency," said Timokhin timidly, and continually turning to +glance at his colonel. + +"Why so?" asked Pierre. + +"Well, to mention only firewood and fodder, let me inform you. +Why, when we were retreating from Sventsyani we dare not touch a stick +or a wisp of hay or anything. You see, we were going away, so he would +get it all; wasn't it so, your excellency?" and again Timokhin +turned to the prince. "But we daren't. In our regiment two officers +were court-martialed for that kind of thing. But when his Serenity +took command everything became straight forward. Now we see light..." + +"Then why was it forbidden?" + +Timokhin looked about in confusion, not knowing what or how to +answer such a question. Pierre put the same question to Prince Andrew. + +"Why, so as not to lay waste the country we were abandoning to the +enemy," said Prince Andrew with venomous irony. "It is very sound: one +can't permit the land to be pillaged and accustom the troops to +marauding. At Smolensk too he judged correctly that the French might +outflank us, as they had larger forces. But he could not understand +this," cried Prince Andrew in a shrill voice that seemed to escape him +involuntarily: "he could not understand that there, for the first +time, we were fighting for Russian soil, and that there was a spirit +in the men such as I had never seen before, that we had held the +French for two days, and that that success had increased our +strength tenfold. He ordered us to retreat, and all our efforts and +losses went for nothing. He had no thought of betraying us, he tried +to do the best he could, he thought out everything, and that is why he +is unsuitable. He is unsuitable now, just because he plans out +everything very thoroughly and accurately as every German has to. +How can I explain?... Well, say your father has a German valet, and he +is a splendid valet and satisfies your father's requirements better +than you could, then it's all right to let him serve. But if your +father is mortally sick you'll send the valet away and attend to +your father with your own unpracticed, awkward hands, and will +soothe him better than a skilled man who is a stranger could. So it +has been with Barclay. While Russia was well, a foreigner could +serve her and be a splendid minister; but as soon as she is in +danger she needs one of her own kin. But in your Club they have been +making him out a traitor! They slander him as a traitor, and the +only result will be that afterwards, ashamed of their false +accusations, they will make him out a hero or a genius instead of a +traitor, and that will be still more unjust. He is an honest and +very punctilious German." + +"And they say he's a skillful commander," rejoined Pierre. + +"I don't understand what is meant by 'a skillful commander,'" +replied Prince Andrew ironically. + +"A skillful commander?" replied Pierre. "Why, one who foresees all +contingencies... and foresees the adversary's intentions." + +"But that's impossible," said Prince Andrew as if it were a matter +settled long ago. + +Pierre looked at him in surprise. + +"And yet they say that war is like a game of chess?" he remarked. + +"Yes," replied Prince Andrew, "but with this little difference, that +in chess you may think over each move as long as you please and are +not limited for time, and with this difference too, that a knight is +always stronger than a pawn, and two pawns are always stronger than +one, while in war a battalion is sometimes stronger than a division +and sometimes weaker than a company. The relative strength of bodies +of troops can never be known to anyone. Believe me," he went on, "if +things depended on arrangements made by the staff, I should be there +making arrangements, but instead of that I have the honor to serve +here in the regiment with these gentlemen, and I consider that on us +tomorrow's battle will depend and not on those others.... Success +never depends, and never will depend, on position, or equipment, or +even on numbers, and least of all on position." + +"But on what then?" + +"On the feeling that is in me and in him," he pointed to Timokhin, +"and in each soldier." + +Prince Andrew glanced at Timokhin, who looked at his commander in +alarm and bewilderment. In contrast to his former reticent taciturnity +Prince Andrew now seemed excited. He could apparently not refrain from +expressing the thoughts that had suddenly occurred to him. + +"A battle is won by those who firmly resolve to win it! Why did we +lose the battle at Austerlitz? The French losses were almost equal +to ours, but very early we said to ourselves that we were losing the +battle, and we did lose it. And we said so because we had nothing to +fight for there, we wanted to get away from the battlefield as soon as +we could. 'We've lost, so let us run,' and we ran. If we had not +said that till the evening, heaven knows what might not have happened. +But tomorrow we shan't say it! You talk about our position, the left +flank weak and the right flank too extended," he went on. "That's +all nonsense, there's nothing of the kind. But what awaits us +tomorrow? A hundred million most diverse chances which will be decided +on the instant by the fact that our men or theirs run or do not run, +and that this man or that man is killed, but all that is being done at +present is only play. The fact is that those men with whom you have +ridden round the position not only do not help matters, but hinder. +They are only concerned with their own petty interests." + +"At such a moment?" said Pierre reproachfully. + +"At such a moment!" Prince Andrew repeated. "To them it is only a +moment affording opportunities to undermine a rival and obtain an +extra cross or ribbon. For me tomorrow means this: a Russian army of a +hundred thousand and a French army of a hundred thousand have met to +fight, and the thing is that these two hundred thousand men will fight +and the side that fights more fiercely and spares itself least will +win. And if you like I will tell you that whatever happens and +whatever muddles those at the top may make, we shall win tomorrow's +battle. Tomorrow, happen what may, we shall win!" + +"There now, your excellency! That's the truth, the real truth," said +Timokhin. "Who would spare himself now? The soldiers in my +battalion, believe me, wouldn't drink their vodka! 'It's not the day +for that!' they say." + +All were silent. The officers rose. Prince Andrew went out of the +shed with them, giving final orders to the adjutant. After they had +gone Pierre approached Prince Andrew and was about to start a +conversation when they heard the clatter of three horses' hoofs on the +road not far from the shed, and looking in that direction Prince +Andrew recognized Wolzogen and Clausewitz accompanied by a Cossack. +They rode close by continuing to converse, and Prince Andrew +involuntarily heard these words: + +"Der Krieg muss in Raum verlegt werden. Der Ansicht kann ich nicht +genug Preis geben,"* said one of them. + + +*"The war must be extended widely. I cannot sufficiently commend +that view." + + +"Oh, ja," said the other, "der Zweck ist nur den Feind zu schwachen, +so kann man gewiss nicht den Verlust der Privat-Personen in Achtung +nehmen."* + + +*"Oh, yes, the only aim is to weaken the enemy, so of course one +cannot take into account the loss of private individuals." + + +"Oh, no," agreed the other. + +"Extend widely!" said Prince Andrew with an angry snort, when they +had ridden past. "In that 'extend' were my father, son, and sister, at +Bald Hills. That's all the same to him! That's what I was saying to +you--those German gentlemen won't win the battle tomorrow but will +only make all the mess they can, because they have nothing in their +German heads but theories not worth an empty eggshell and haven't in +their hearts the one thing needed tomorrow--that which Timokhin has. +They have yielded up all Europe to him, and have now come to teach us. +Fine teachers!" and again his voice grew shrill. + +"So you think we shall win tomorrow's battle?" asked Pierre. + +"Yes, yes," answered Prince Andrew absently. "One thing I would do + +if I had the power," he began again, "I would not take prisoners. +Why take prisoners? It's chivalry! The French have destroyed my home +and are on their way to destroy Moscow, they have outraged and are +outraging me every moment. They are my enemies. In my opinion they are +all criminals. And so thinks Timokhin and the whole army. They +should be executed! Since they are my foes they cannot be my +friends, whatever may have been said at Tilsit." + +"Yes, yes," muttered Pierre, looking with shining eyes at Prince +Andrew. "I quite agree with you!" + +The question that had perturbed Pierre on the Mozhaysk hill and +all that day now seemed to him quite clear and completely solved. He +now understood the whole meaning and importance of this war and of the +impending battle. All he had seen that day, all the significant and +stern expressions on the faces he had seen in passing, were lit up for +him by a new light. He understood that latent heat (as they say in +physics) of patriotism which was present in all these men he had seen, +and this explained to him why they all prepared for death calmly, +and as it were lightheartedly. + +"Not take prisoners," Prince Andrew continued: "That by itself would +quite change the whole war and make it less cruel. As it is we have +played at war--that's what's vile! We play at magnanimity and all that +stuff. Such magnanimity and sensibility are like the magnanimity and +sensibility of a lady who faints when she sees a calf being killed: +she is so kind-hearted that she can't look at blood, but enjoys eating +the calf served up with sauce. They talk to us of the rules of war, of +chivalry, of flags of truce, of mercy to the unfortunate and so on. +It's all rubbish! I saw chivalry and flags of truce in 1805; they +humbugged us and we humbugged them. They plunder other people's +houses, issue false paper money, and worst of all they kill my +children and my father, and then talk of rules of war and +magnanimity to foes! Take no prisoners, but kill and be killed! He who +has come to this as I have through the same sufferings..." + +Prince Andrew, who had thought it was all the same to him whether or +not Moscow was taken as Smolensk had been, was suddenly checked in his +speech by an unexpected cramp in his throat. He paced up and down a +few times in silence, but his eyes glittered feverishly and his lips +quivered as he began speaking. + +"If there was none of this magnanimity in war, we should go to war +only when it was worth while going to certain death, as now. Then +there would not be war because Paul Ivanovich had offended Michael +Ivanovich. And when there was a war, like this one, it would be war! +And then the determination of the troops would be quite different. +Then all these Westphalians and Hessians whom Napoleon is leading +would not follow him into Russia, and we should not go to fight in +Austria and Prussia without knowing why. War is not courtesy but the +most horrible thing in life; and we ought to understand that and not +play at war. We ought to accept this terrible necessity sternly and +seriously. It all lies in that: get rid of falsehood and let war be +war and not a game. As it is now, war is the favorite pastime of the +idle and frivolous. The military calling is the most highly honored. + +"But what is war? What is needed for success in warfare? What are +the habits of the military? The aim of war is murder; the methods of +war are spying, treachery, and their encouragement, the ruin of a +country's inhabitants, robbing them or stealing to provision the army, +and fraud and falsehood termed military craft. The habits of the +military class are the absence of freedom, that is, discipline, +idleness, ignorance, cruelty, debauchery, and drunkenness. And in +spite of all this it is the highest class, respected by everyone. +All the kings, except the Chinese, wear military uniforms, and he +who kills most people receives the highest rewards. + +"They meet, as we shall meet tomorrow, to murder one another; they +kill and maim tens of thousands, and then have thanksgiving services +for having killed so many people (they even exaggerate the number), +and they announce a victory, supposing that the more people they +have killed the greater their achievement. How does God above look +at them and hear them?" exclaimed Prince Andrew in a shrill, +piercing voice. "Ah, my friend, it has of late become hard for me to +live. I see that I have begun to understand too much. And it doesn't +do for man to taste of the tree of knowledge of good and evil.... +Ah, well, it's not for long!" he added. + +"However, you're sleepy, and it's time for me to sleep. Go back to +Gorki!" said Prince Andrew suddenly. + +"Oh no!" Pierre replied, looking at Prince Andrew with frightened, +compassionate eyes. + +"Go, go! Before a battle one must have one's sleep out," repeated +Prince Andrew. + +He came quickly up to Pierre and embraced and kissed him. +"Good-by, be off!" he shouted. "Whether we meet again or not..." +and turning away hurriedly he entered the shed. + +It was already dark, and Pierre could not make out whether the +expression of Prince Andrew's face was angry or tender. + +For some time he stood in silence considering whether he should +follow him or go away. "No, he does not want it!" Pierre concluded. +"And I know that this is our last meeting!" He sighed deeply and +rode back to Gorki. + +On re-entering the shed Prince Andrew lay down on a rug, but he +could not sleep. + +He closed his eyes. One picture succeeded another in his +imagination. On one of them he dwelt long and joyfully. He vividly +recalled an evening in Petersburg. Natasha with animated and excited +face was telling him how she had gone to look for mushrooms the +previous summer and had lost her way in the big forest. She +incoherently described the depths of the forest, her feelings, and a +talk with a beekeeper she met, and constantly interrupted her story to +say: "No, I can't! I'm not telling it right; no, you don't +understand," though he encouraged her by saying that he did +understand, and he really had understood all she wanted to say. But +Natasha was not satisfied with her own words: she felt that they did +not convey the passionately poetic feeling she had experienced that +day and wished to convey. "He was such a delightful old man, and it +was so dark in the forest... and he had such kind... No, I can't +describe it," she had said, flushed and excited. Prince Andrew +smiled now the same happy smile as then when he had looked into her +eyes. "I understood her," he thought. "I not only understood her, +but it was just that inner, spiritual force, that sincerity, that +frankness of soul--that very soul of hers which seemed to be +fettered by her body--it was that soul I loved in her... loved so +strongly and happily..." and suddenly he remembered how his love had +ended. "He did not need anything of that kind. He neither saw nor +understood anything of the sort. He only saw in her a pretty and fresh +young girl, with whom he did not deign to unite his fate. And I?... +and he is still alive and gay!" + +Prince Andrew jumped up as if someone had burned him, and again +began pacing up and down in front of the shed. + + + + + +CHAPTER XXVI + + +On August 25, the eve of the battle of Borodino, M. de Beausset, +prefect of the French Emperor's palace, arrived at Napoleon's quarters +at Valuevo with Colonel Fabvier, the former from Paris and the +latter from Madrid. + +Donning his court uniform, M. de Beausset ordered a box he had +brought for the Emperor to be carried before him and entered the first +compartment of Napoleon's tent, where he began opening the box while +conversing with Napoleon's aides-de-camp who surrounded him. + +Fabvier, not entering the tent, remained at the entrance talking +to some generals of his acquaintance. + +The Emperor Napoleon had not yet left his bedroom and was +finishing his toilet. Slightly snorting and grunting, he presented now +his back and now his plump hairy chest to the brush with which his +valet was rubbing him down. Another valet, with his finger over the +mouth of a bottle, was sprinkling Eau de Cologne on the Emperor's +pampered body with an expression which seemed to say that he alone +knew where and how much Eau de Cologne should be sprinkled. Napoleon's +short hair was wet and matted on the forehead, but his face, though +puffy and yellow, expressed physical satisfaction. "Go on, harder, +go on!" he muttered to the valet who was rubbing him, slightly +twitching and grunting. An aide-de-camp, who had entered the bedroom +to report to the Emperor the number of prisoners taken in +yesterday's action, was standing by the door after delivering his +message, awaiting permission to withdraw. Napoleon, frowning, looked +at him from under his brows. + +"No prisoners!" said he, repeating the aide-de-camp's words. "They +are forcing us to exterminate them. So much the worse for the +Russian army.... Go on... harder, harder!" he muttered, hunching his +back and presenting his fat shoulders. + +"All right. Let Monsieur de Beausset enter, and Fabvier too," he +said, nodding to the aide-de-camp. + +"Yes, sire," and the aide-de-camp disappeared through the door of +the tent. + +Two valets rapidly dressed His Majesty, and wearing the blue uniform +of the Guards he went with firm quick steps to the reception room. + +De Beausset's hands meanwhile were busily engaged arranging the +present he had brought from the Empress, on two chairs directly in +front of the entrance. But Napoleon had dressed and come out with such +unexpected rapidity that he had not time to finish arranging the +surprise. + +Napoleon noticed at once what they were about and guessed that +they were not ready. He did not wish to deprive them of the pleasure +of giving him a surprise, so he pretended not to see de Beausset and +called Fabvier to him, listening silently and with a stern frown to +what Fabvier told him of the heroism and devotion of his troops +fighting at Salamanca, at the other end of Europe, with but one +thought--to be worthy of their Emperor--and but one fear--to fail to +please him. The result of that battle had been deplorable. Napoleon +made ironic remarks during Fabvier's account, as if he had not +expected that matters could go otherwise in his absence. + +"I must make up for that in Moscow," said Napoleon. "I'll see you +later," he added, and summoned de Beausset, who by that time had +prepared the surprise, having placed something on the chairs and +covered it with a cloth. + +De Beausset bowed low, with that courtly French bow which only the +old retainers of the Bourbons knew how to make, and approached him, +presenting an envelope. + +Napoleon turned to him gaily and pulled his ear. + +"You have hurried here. I am very glad. Well, what is Paris saying?" +he asked, suddenly changing his former stern expression for a most +cordial tone. + +"Sire, all Paris regrets your absence," replied de Beausset as was +proper. + +But though Napoleon knew that de Beausset had to say something of +this kind, and though in his lucid moments he knew it was untrue, he +was pleased to hear it from him. Again he honored him by touching +his ear. + +"I am very sorry to have made you travel so far," said he. + +"Sire, I expected nothing less than to find you at the gates of +Moscow," replied de Beausset. + +Napoleon smiled and, lifting his head absentmindedly, glanced to the +right. An aide-de-camp approached with gliding steps and offered him a +gold snuffbox, which he took. + +"Yes, it has happened luckily for you," he said, raising the open +snuffbox to his nose. "You are fond of travel, and in three days you +will see Moscow. You surely did not expect to see that Asiatic +capital. You will have a pleasant journey." + +De Beausset bowed gratefully at this regard for his taste for travel +(of which he had not till then been aware). + +"Ha, what's this?" asked Napoleon, noticing that all the courtiers +were looking at something concealed under a cloth. + +With courtly adroitness de Beausset half turned and without +turning his back to the Emperor retired two steps, twitching off the +cloth at the same time, and said: + +"A present to Your Majesty from the Empress." + +It was a portrait, painted in bright colors by Gerard, of the son +borne to Napoleon by the daughter of the Emperor of Austria, the boy +whom for some reason everyone called "The King of Rome." + +A very pretty curly-headed boy with a look of the Christ in the +Sistine Madonna was depicted playing at stick and ball. The ball +represented the terrestrial globe and the stick in his other hand a +scepter. + +Though it was not clear what the artist meant to express by +depicting the so-called King of Rome spiking the earth with a stick, +the allegory apparently seemed to Napoleon, as it had done to all +who had seen it in Paris, quite clear and very pleasing. + +"The King of Rome!" he said, pointing to the portrait with a +graceful gesture. "Admirable!" + +With the natural capacity of an Italian for changing the +expression of his face at will, he drew nearer to the portrait and +assumed a look of pensive tenderness. He felt that what he now said +and did would be historical, and it seemed to him that it would now be +best for him--whose grandeur enabled his son to play stick and ball +with the terrestrial globe--to show, in contrast to that grandeur, the +simplest paternal tenderness. His eyes grew dim, he moved forward, +glanced round at a chair (which seemed to place itself under him), and +sat down on it before the portrait. At a single gesture from him +everyone went out on tiptoe, leaving the great man to himself and +his emotion. + +Having sat still for a while he touched--himself not knowing why- +the thick spot of paint representing the highest light in the +portrait, rose, and recalled de Beausset and the officer on duty. He +ordered the portrait to be carried outside his tent, that the Old +Guard, stationed round it, might not be deprived of the pleasure of +seeing the King of Rome, the son and heir of their adored monarch. + +And while he was doing M. de Beausset the honor of breakfasting with +him, they heard, as Napoleon had anticipated, the rapturous cries of +the officers and men of the Old Guard who had run up to see the +portrait. + +"Vive l'Empereur! Vive le roi de Rome! Vive l'Empereur!" came +those ecstatic cries. + +After breakfast Napoleon in de Beausset's presence dictated his +order of the day to the army. + +"Short and energetic!" he remarked when he had read over the +proclamation which he had dictated straight off without corrections. +It ran: + + +Soldiers! This is the battle you have so longed for. Victory depends +on you. It is essential for us; it will give us all we need: +comfortable quarters and a speedy return to our country. Behave as you +did at Austerlitz, Friedland, Vitebsk, and Smolensk. Let our +remotest posterity recall your achievements this day with pride. Let +it be said of each of you: "He was in the great battle before Moscow!" + + +"Before Moscow!" repeated Napoleon, and inviting M. de Beausset, who +was so fond of travel, to accompany him on his ride, he went out of +the tent to where the horses stood saddled. + +"Your Majesty is too kind!" replied de Beausset to the invitation to +accompany the Emperor; he wanted to sleep, did not know how to ride +and was afraid of doing so. + +But Napoleon nodded to the traveler, and de Beausset had to mount. +When Napoleon came out of the tent the shouting of the Guards before +his son's portrait grew still louder. Napoleon frowned. + +"Take him away!" he said, pointing with a gracefully majestic +gesture to the portrait. "It is too soon for him to see a field of +battle." + +De Beausset closed his eyes, bowed his head, and sighed deeply, to +indicate how profoundly he valued and comprehended the Emperor's +words. + + + + + +CHAPTER XXVII + + +On the twenty-fifth of August, so his historians tell us, Napoleon +spent the whole day on horseback inspecting the locality, +considering plans submitted to him by his marshals, and personally +giving commands to his generals. + +The original line of the Russian forces along the river Kolocha +had been dislocated by the capture of the Shevardino Redoubt on the +twenty-fourth, and part of the line--the left flank--had been drawn +back. That part of the line was not entrenched and in front of it +the ground was more open and level than elsewhere. It was evident to +anyone, military or not, that it was here the French should attack. It +would seem that not much consideration was needed to reach this +conclusion, nor any particular care or trouble on the part of the +Emperor and his marshals, nor was there any need of that special and +supreme quality called genius that people are so apt to ascribe to +Napoleon; yet the historians who described the event later and the men +who then surrounded Napoleon, and he himself, thought otherwise. + +Napoleon rode over the plain and surveyed the locality with a +profound air and in silence, nodded with approval or shook his head +dubiously, and without communicating to the generals around him the +profound course of ideas which guided his decisions merely gave them +his final conclusions in the form of commands. Having listened to a +suggestion from Davout, who was now called Prince d'Eckmuhl, to turn +the Russian left wing, Napoleon said it should not be done, without +explaining why not. To a proposal made by General Campan (who was to +attack the fleches) to lead his division through the woods, Napoleon +agreed, though the so-called Duke of Elchingen (Ney) ventured to +remark that a movement through the woods was dangerous and might +disorder the division. + +Having inspected the country opposite the Shevardino Redoubt, +Napoleon pondered a little in silence and then indicated the spots +where two batteries should be set up by the morrow to act against +the Russian entrenchments, and the places where, in line with them, +the field artillery should be placed. + +After giving these and other commands he returned to his tent, and +the dispositions for the battle were written down from his dictation. + +These dispositions, of which the French historians write with +enthusiasm and other historians with profound respect, were as +follows: + + +At dawn the two new batteries established during the night on the +plain occupied by the Prince d'Eckmuhl will open fire on the +opposing batteries of the enemy. + +At the same time the commander of the artillery of the 1st Corps, +General Pernetti, with thirty cannon of Campan's division and all +the howitzers of Dessaix's and Friant's divisions, will move +forward, open fire, and overwhelm with shellfire the enemy's +battery, against which will operate: + + 24 guns of the artillery of the Guards + 30 guns of Campan's division + +and 8 guns of Friant's and Dessaix's divisions + -- + +in all 62 guns. + + +The commander of the artillery of the 3rd Corps, General Fouche, +will place the howitzers of the 3rd and 8th Corps, sixteen in all, +on the flanks of the battery that is to bombard the entrenchment on +the left, which will have forty guns in all directed against it. + +General Sorbier must be ready at the first order to advance with all +the howitzers of the Guard's artillery against either one or other +of the entrenchments. + +During the cannonade Prince Poniatowski is to advance through the +wood on the village and turn the enemy's position. + +General Campan will move through the wood to seize the first +fortification. + +After the advance has begun in this manner, orders will be given +in accordance with the enemy's movements. + +The cannonade on the left flank will begin as soon as the guns of +the right wing are heard. The sharpshooters of Morand's division and +of the vice-King's division will open a heavy fire on seeing the +attack commence on the right wing. + +The vice-King will occupy the village and cross by its three +bridges, advancing to the same heights as Morand's and Gibrard's +divisions, which under his leadership will be directed against the +redoubt and come into line with the rest of the forces. + +All this must be done in good order (le tout se fera avec ordre et +methode) as far as possible retaining troops in reserve. + The Imperial Camp near Mozhaysk, + September, 6, 1812. + + +These dispositions, which are very obscure and confused if one +allows oneself to regard the arrangements without religious awe of his +genius, related to Napoleon's orders to deal with four points--four +different orders. Not one of these was, or could be, carried out. + +In the disposition it is said first that the batteries placed on the +spot chosen by Napoleon, with the guns of Pernetti and Fouche; which +were to come in line with them, 102 guns in all, were to open fire and +shower shells on the Russian fleches and redoubts. This could not be +done, as from the spots selected by Napoleon the projectiles did not +carry to the Russian works, and those 102 guns shot into the air until +the nearest commander, contrary to Napoleon's instructions, moved them +forward. + +The second order was that Poniatowski, moving to the village through +the wood, should turn the Russian left flank. This could not be done +and was not done, because Poniatowski, advancing on the village +through the wood, met Tuchkov there barring his way, and could not and +did not turn the Russian position. + +The third order was: General Campan will move through the wood to +seize the first fortification. General Campan's division did not seize +the first fortification but was driven back, for on emerging from +the wood it had to reform under grapeshot, of which Napoleon was +unaware. + +The fourth order was: The vice-King will occupy the village +(Borodino) and cross by its three bridges, advancing to the same +heights as Morand's and Gdrard's divisions (for whose movements no +directions are given), which under his leadership will be directed +against the redoubt and come into line with the rest of the forces. + +As far as one can make out, not so much from this unintelligible +sentence as from the attempts the vice-King made to execute the orders +given him, he was to advance from the left through Borodino to the +redoubt while the divisions of Morand and Gerard were to advance +simultaneously from the front. + +All this, like the other parts of the disposition, was not and could +not be executed. After passing through Borodino the vice-King was +driven back to the Kolocha and could get no farther; while the +divisions of Morand and Gerard did not take the redoubt but were +driven back, and the redoubt was only taken at the end of the battle +by the cavalry (a thing probably unforeseen and not heard of by +Napoleon). So not one of the orders in the disposition was, or could +be, executed. But in the disposition it is said that, after the +fight has commenced in this manner, orders will be given in accordance +with the enemy's movements, and so it might be supposed that all +necessary arrangements would be made by Napoleon during the battle. +But this was not and could not be done, for during the whole battle +Napoleon was so far away that, as appeared later, he could not know +the course of the battle and not one of his orders during the fight +could be executed. + + + + + +CHAPTER XXVIII + + +Many historians say that the French did not win the battle of +Borodino because Napoleon had a cold, and that if he had not had a +cold the orders he gave before and during the battle would have been +still more full of genius and Russia would have been lost and the face +of the world have been changed. To historians who believe that +Russia was shaped by the will of one man--Peter the Great--and that +France from a republic became an empire and French armies went to +Russia at the will of one man--Napoleon--to say that Russia remained a +power because Napoleon had a bad cold on the twenty-fourth of August +may seem logical and convincing. + +If it had depended on Napoleon's will to fight or not to fight the +battle of Borodino, and if this or that other arrangement depended +on his will, then evidently a cold affecting the manifestation of +his will might have saved Russia, and consequently the valet who +omitted to bring Napoleon his waterproof boots on the twenty-fourth +would have been the savior of Russia. Along that line of thought +such a deduction is indubitable, as indubitable as the deduction +Voltaire made in jest (without knowing what he was jesting at) when he +saw that the Massacre of St. Bartholomew was due to Charles IX's +stomach being deranged. But to men who do not admit that Russia was +formed by the will of one man, Peter I, or that the French Empire +was formed and the war with Russia begun by the will of one man, +Napoleon, that argument seems not merely untrue and irrational, but +contrary to all human reality. To the question of what causes historic +events another answer presents itself, namely, that the course of +human events is predetermined from on high--depends on the coincidence +of the wills of all who take part in the events, and that a Napoleon's +influence on the course of these events is purely external and +fictitious. + +Strange as at first glance it may seem to suppose that the +Massacre of St. Bartholomew was not due to Charles IX's will, though +he gave the order for it and thought it was done as a result of that +order; and strange as it may seem to suppose that the slaughter of +eighty thousand men at Borodino was not due to Napoleon's will, though +he ordered the commencement and conduct of the battle and thought it +was done because he ordered it; strange as these suppositions +appear, yet human dignity--which tells me that each of us is, if not +more at least not less a man than the great Napoleon--demands the +acceptance of that solution of the question, and historic +investigation abundantly confirms it. + +At the battle of Borodino Napoleon shot at no one and killed no one. +That was all done by the soldiers. Therefore it was not he who +killed people. + +The French soldiers went to kill and be killed at the battle of +Borodino not because of Napoleon's orders but by their own volition. +The whole army--French, Italian, German, Polish, and Dutch--hungry, +ragged, and weary of the campaign, felt at the sight of an army +blocking their road to Moscow that the wine was drawn and must be +drunk. Had Napoleon then forbidden them to fight the Russians, they +would have killed him and have proceeded to fight the Russians because +it was inevitable. + +When they heard Napoleon's proclamation offering them, as +compensation for mutilation and death, the words of posterity about +their having been in the battle before Moscow, they cried "Vive +l'Empereur!" just as they had cried "Vive l'Empereur!" at the sight of +the portrait of the boy piercing the terrestrial globe with a toy +stick, and just as they would have cried "Vive l'Empereur!" at any +nonsense that might be told them. There was nothing left for them to +do but cry "Vive l'Empereur!" and go to fight, in order to get food +and rest as conquerors in Moscow. So it was not because of +Napoleon's commands that they killed their fellow men. + +And it was not Napoleon who directed the course of the battle, for +none of his orders were executed and during the battle he did not know +what was going on before him. So the way in which these people +killed one another was not decided by Napoleon's will but occurred +independently of him, in accord with the will of hundreds of thousands +of people who took part in the common action. It only seemed to +Napoleon that it all took place by his will. And so the question +whether he had or had not a cold has no more historic interest than +the cold of the least of the transport soldiers. + +Moreover, the assertion made by various writers that his cold was +the cause of his dispositions not being as well planned as on former +occasions, and of his orders during the battle not being as good as +previously, is quite baseless, which again shows that Napoleon's +cold on the twenty-sixth of August was unimportant. + +The dispositions cited above are not at all worse, but are even +better, than previous dispositions by which he had won victories. +His pseudo-orders during the battle were also no worse than +formerly, but much the same as usual. These dispositions and orders +only seem worse than previous ones because the battle of Borodino +was the first Napoleon did not win. The profoundest and most excellent +dispositions and orders seem very bad, and every learned militarist +criticizes them with looks of importance, when they relate to a +battle that has been lost, and the very worst dispositions and +orders seem very good, and serious people fill whole volumes to +demonstrate their merits, when they relate to a battle that has been +won. + +The dispositions drawn up by Weyrother for the battle of +Austerlitz were a model of perfection for that kind of composition, +but still they were criticized--criticized for their very +perfection, for their excessive minuteness. + +Napoleon at the battle of Borodino fulfilled his office as +representative of authority as well as, and even better than, at other +battles. He did nothing harmful to the progress of the battle; he +inclined to the most reasonable opinions, he made no confusion, did +not contradict himself, did not get frightened or run away from the +field of battle, but with his great tact and military experience +carried out his role of appearing to command, calmly and with dignity. + + + + + +CHAPTER XXIX + + +On returning from a second inspection of the lines, Napoleon +remarked: + +"The chessmen are set up, the game will begin tomorrow!" + +Having ordered punch and summoned de Beausset, he began to talk to +him about Paris and about some changes he meant to make the Empress' +household, surprising the prefect by his memory of minute details +relating to the court. + +He showed an interest in trifles, joked about de Beausset's love +of travel, and chatted carelessly, as a famous, self-confident surgeon +who knows his job does when turning up his sleeves and putting on +his apron while a patient is being strapped to the operating table. +"The matter is in my hands and is clear and definite in my head. +When the times comes to set to work I shall do it as no one else +could, but now I can jest, and the more I jest and the calmer I am the +more tranquil and confident you ought to be, and the more amazed at my +genius." + +Having finished his second glass of punch, Napoleon went to rest +before the serious business which, he considered, awaited him next +day. He was so much interested in that task that he was unable to +sleep, and in spite of his cold which had grown worse from the +dampness of the evening, he went into the large division of the tent +at three o'clock in the morning, loudly blowing his nose. He asked +whether the Russians had not withdrawn, and was told that the +enemy's fires were still in the same places. He nodded approval. + +The adjutant in attendance came into the tent. + +"Well, Rapp, do you think we shall do good business today?" Napoleon +asked him. + +"Without doubt, sire," replied Rapp. + +Napoleon looked at him. + +"Do you remember, sire, what you did me the honor to say at +Smolensk?" continued Rapp. "The wine is drawn and must be drunk." + +Napoleon frowned and sat silent for a long time leaning his head +on his hand. + +"This poor army!" he suddenly remarked. "It has diminished greatly +since Smolensk. Fortune is frankly a courtesan, Rapp. I have always +said so and I am beginning to experience it. But the Guards, Rapp, the +Guards are intact?" he remarked interrogatively. + +"Yes, sire," replied Rapp. + +Napoleon took a lozenge, put it in his mouth, and glanced at his +watch. He was not sleepy and it was still not nearly morning. It was +impossible to give further orders for the sake of killing time, for +the orders had all been given and were now being executed. + +"Have the biscuits and rice been served out to the regiments of +the Guards?" asked Napoleon sternly. + +"Yes, sire." + +"The rice too?" + +Rapp replied that he had given the Emperor's order about the rice, +but Napoleon shook his head in dissatisfaction as if not believing +that his order had been executed. An attendant came in with punch. +Napoleon ordered another glass to be brought for Rapp, and silently +sipped his own. + +"I have neither taste nor smell," he remarked, sniffing at his +glass. "This cold is tiresome. They talk about medicine--what is the +good of medicine when it can't cure a cold! Corvisart gave me these +lozenges but they don't help at all. What can doctors cure? One +can't cure anything. Our body is a machine for living. It is organized +for that, it is its nature. Let life go on in it unhindered and let it +defend itself, it will do more than if you paralyze it by +encumbering it with remedies. Our body is like a perfect watch that +should go for a certain time; watchmaker cannot open it, he can only +adjust it by fumbling, and that blindfold.... Yes, our body is just +a machine for living, that is all." + +And having entered on the path of definition, of which he was +fond, Napoleon suddenly and unexpectedly gave a new one. + +"Do you know, Rapp, what military art is?" asked he. "It is the +art of being stronger than the enemy at a given moment. That's all." + +Rapp made no reply. + +"Tomorrow we shall have to deal with Kutuzov!" said Napoleon. "We +shall see! Do you remember at Braunau he commanded an army for three +weeks and did not once mount a horse to inspect his +entrenchments.... We shall see!" + +He looked at his watch. It was still only four o'clock. He did not +feel sleepy. The punch was finished and there was still nothing to do. +He rose, walked to and fro, put on a warm overcoat and a hat, and went +out of the tent. The night was dark and damp, a scarcely perceptible +moisture was descending from above. Near by, the campfires were +dimly burning among the French Guards, and in the distance those of +the Russian line shone through the smoke. The weather was calm, and +the rustle and tramp of the French troops already beginning to move to +take up their positions were clearly audible. + +Napoleon walked about in front of his tent, looked at the fires +and listened to these sounds, and as he was passing a tall guardsman +in a shaggy cap, who was standing sentinel before his tent and had +drawn himself up like a black pillar at sight of the Emperor, Napoleon +stopped in front of him. + +"What year did you enter the service?" he asked with that +affectation of military bluntness and geniality with which he always +addressed the soldiers. + +The man answered the question. + +"Ah! One of the old ones! Has your regiment had its rice?" + +"It has, Your Majesty." + +Napoleon nodded and walked away. + + +At half-past five Napoleon rode to the village of Shevardino. + +It was growing light, the sky was clearing, only a single cloud +lay in the east. The abandoned campfires were burning themselves out +in the faint morning light. + +On the right a single deep report of a cannon resounded and died +away in the prevailing silence. Some minutes passed. A second and a +third report shook the air, then a fourth and a fifth boomed +solemnly near by on the right. + +The first shots had not yet ceased to reverberate before others rang +out and yet more were heard mingling with and overtaking one another. + +Napoleon with his suite rode up to the Shevardino Redoubt where he +dismounted. The game had begun. + + + + + +CHAPTER XXX + + +On returning to Gorki after having seen Prince Andrew, Pierre +ordered his groom to get the horses ready and to call him early in the +morning, and then immediately fell asleep behind a partition in a +corner Boris had given up to him. + +Before he was thoroughly awake next morning everybody had already +left the hut. The panes were rattling in the little windows and his +groom was shaking him. + +"Your excellency! Your excellency! Your excellency!" he kept +repeating pertinaciously while he shook Pierre by the shoulder without +looking at him, having apparently lost hope of getting him to wake up. + +"What? Has it begun? Is it time?" Pierre asked, waking up. + +"Hear the firing," said the groom, a discharged soldier. "All the +gentlemen have gone out, and his Serene Highness himself rode past +long ago." + +Pierre dressed hastily and ran out to the porch. Outside all was +bright, fresh, dewy, and cheerful. The sun, just bursting forth from +behind a cloud that had concealed it, was shining, with rays still +half broken by the clouds, over the roofs of the street opposite, on +the dew-besprinkled dust of the road, on the walls of the houses, on +the windows, the fence, and on Pierre's horses standing before the +hut. The roar of guns sounded more distinct outside. An adjutant +accompanied by a Cossack passed by at a sharp trot. + +"It's time, Count; it's time!" cried the adjutant. + +Telling the groom to follow him with the horses, Pierre went down +the street to the knoll from which he had looked at the field of +battle the day before. A crowd of military men was assembled there, +members of the staff could be heard conversing in French, and +Kutuzov's gray head in a white cap with a red band was visible, his +gray nape sunk between his shoulders. He was looking through a field +glass down the highroad before him. + +Mounting the steps to the knoll Pierre looked at the scene before +him, spellbound by beauty. It was the same panorama he had admired +from that spot the day before, but now the whole place was full of +troops and covered by smoke clouds from the guns, and the slanting +rays of the bright sun, rising slightly to the left behind Pierre, +cast upon it through the clear morning air penetrating streaks of +rosy, golden tinted light and long dark shadows. The forest at the +farthest extremity of the panorama seemed carved in some precious +stone of a yellowish-green color; its undulating outline was +silhouetted against the horizon and was pierced beyond Valuevo by +the Smolensk highroad crowded with troops. Nearer at hand glittered +golden cornfields interspersed with copses. There were troops to be +seen everywhere, in front and to the right and left. All this was +vivid, majestic, and unexpected; but what impressed Pierre most of all +was the view of the battlefield itself, of Borodino and the hollows on +both sides of the Kolocha. + +Above the Kolocha, in Borodino and on both sides of it, especially +to the left where the Voyna flowing between its marshy banks falls +into the Kolocha, a mist had spread which seemed to melt, to dissolve, +and to become translucent when the brilliant sun appeared and +magically colored and outlined everything. The smoke of the guns +mingled with this mist, and over the whole expanse and through that +mist the rays of the morning sun were reflected, flashing back like +lightning from the water, from the dew, and from the bayonets of the +troops crowded together by the riverbanks and in Borodino. A white +church could be seen through the mist, and here and there the roofs of +huts in Borodino as well as dense masses of soldiers, or green +ammunition chests and ordnance. And all this moved, or seemed to move, +as the smoke and mist spread out over the whole space. Just as in +the mist-enveloped hollow near Borodino, so along the entire line +outside and above it and especially in the woods and fields to the +left, in the valleys and on the summits of the high ground, clouds +of powder smoke seemed continually to spring up out of nothing, now +singly, now several at a time, some translucent, others dense, +which, swelling, growing, rolling, and blending, extended over the +whole expanse. + +These puffs of smoke and (strange to say) the sound of +the firing produced the chief beauty of the spectacle. + +"Puff!"--suddenly a round compact cloud of smoke was seen merging +from violet into gray and milky white, and "boom!" came the report a +second later. + +"Puff! puff!"--and two clouds arose pushing one another and blending +together; and "boom, boom!" came the sounds confirming what the eye +had seen. + +Pierre glanced round at the first cloud, which he had seen as a +round compact ball, and in its place already were balloons of smoke +floating to one side, and--"puff" (with a pause)--"puff, puff!" +three and then four more appeared and then from each, with the same +interval--"boom--boom, boom!" came the fine, firm, precise sounds in +reply. It seemed as if those smoke clouds sometimes ran and +sometimes stood still while woods, fields, and glittering bayonets ran +past them. From the left, over fields and bushes, those large balls of +smoke were continually appearing followed by their solemn reports, +while nearer still, in the hollows and woods, there burst from the +muskets small cloudlets that had no time to become balls, but had +their little echoes in just the same way. "Trakh-ta-ta-takh!" came the +frequent crackle of musketry, but it was irregular and feeble in +comparison with the reports of the cannon. + +Pierre wished to be there with that smoke, those shining bayonets, +that movement, and those sounds. He turned to look at Kutuzov and +his suite, to compare his impressions with those of others. They +were all looking at the field of battle as he was, and, as it seemed +to him, with the same feelings. All their faces were now shining +with that latent warmth of feeling Pierre had noticed the day before +and had fully understood after his talk with Prince Andrew. + +"Go, my dear fellow, go... and Christ be with you!" Kutuzov was +saying to a general who stood beside him, not taking his eye from +the battlefield. + +Having received this order the general passed by Pierre on his way +down the knoll. + +"To the crossing!" said the general coldly and sternly in reply to +one of the staff who asked where he was going. + +"I'll go there too, I too!" thought Pierre, and followed the +general. + +The general mounted a horse a Cossack had brought him. Pierre went +to his groom who was holding his horses and, asking which was the +quietest, clambered onto it, seized it by the mane, and turning out +his toes pressed his heels against its sides and, feeling that his +spectacles were slipping off but unable to let go of the mane and +reins, he galloped after the general, causing the staff officers to +smile as they watched him from the knoll. + + + + + +CHAPTER XXXI + + +Having descended the hill the general after whom Pierre was +galloping turned sharply to the left, and Pierre, losing sight of him, +galloped in among some ranks of infantry marching ahead of him. He +tried to pass either in front of them or to the right or left, but +there were soldiers everywhere, all with expression and busy with some +unseen but evidently important task. They all gazed with the same +dissatisfied and inquiring expression at this stout man in a white +hat, who for some unknown reason threatened to trample them under +his horse's hoofs. + +"Why ride into the middle of the battalion?" one of them shouted +at him. + +Another prodded his horse with the butt end of a musket, and Pierre, +bending over his saddlebow and hardly able to control his shying +horse, galloped ahead of the soldiers where there was a free space. + +There was a bridge ahead of him, where other soldiers stood +firing. Pierre rode up to them. Without being aware of it he had +come to the bridge across the Kolocha between Gorki and Borodino, +which the French (having occupied Borodino) were attacking in the +first phase of the battle. Pierre saw that there was a bridge in front +of him and that soldiers were doing something on both sides of it +and in the meadow, among the rows of new-mown hay which he had taken +no notice of amid the smoke of the campfires the day before; but +despite the incessant firing going on there he had no idea that this +was the field of battle. He did not notice the sound of the bullets +whistling from every side, or the projectiles that flew over him, +did not see the enemy on the other side of the river, and for a long +time did not notice the killed and wounded, though many fell near him. +He looked about him with a smile which did not leave his face. + +"Why's that fellow in front of the line?" shouted somebody at him +again. + +"To the left!... Keep to the right!" the men shouted to him. + +Pierre went to the right, and unexpectedly encountered one of +Raevski's adjutants whom he knew. The adjutant looked angrily at +him, evidently also intending to shout at him, but on recognizing +him he nodded. + +"How have you got here?" he said, and galloped on. + +Pierre, feeling out of place there, having nothing to do, and afraid +of getting in someone's way again, galloped after the adjutant. + +"What's happening here? May I come with you?" he asked. + +"One moment, one moment!" replied the adjutant, and riding up to a +stout colonel who was standing in the meadow, he gave him some message +and then addressed Pierre. + +"Why have you come here, Count?" he asked with a smile. "Still +inquisitive?" + +"Yes, yes," assented Pierre. + +But the adjutant turned his horse about and rode on. + +"Here it's tolerable," said he, "but with Bagration on the left +flank they're getting it frightfully hot." + +"Really?" said Pierre. "Where is that?" + +"Come along with me to our knoll. We can get a view from there and +in our battery it is still bearable," said the adjutant. "Will you +come?" + +"Yes, I'll come with you," replied Pierre, looking round for his +groom. + +It was only now that he noticed wounded men staggering along or +being carried on stretchers. On that very meadow he had ridden over +the day before, a soldier was lying athwart the rows of scented hay, +with his head thrown awkwardly back and his shako off. + +"Why haven't they carried him away?" Pierre was about to ask, but +seeing the stern expression of the adjutant who was also looking +that way, he checked himself. + +Pierre did not find his groom and rode along the hollow with the +adjutant to Raevski's Redoubt. His horse lagged behind the +adjutant's and jolted him at every step. + +"You don't seem to be used to riding, Count?" remarked the adjutant. + +"No it's not that, but her action seems so jerky," said Pierre in +a puzzled tone. + +"Why... she's wounded!" said the adjutant. "In the off foreleg above +the knee. A bullet, no doubt. I congratulate you, Count, on your +baptism of fire!" + +Having ridden in the smoke past the Sixth Corps, behind the +artillery which had been moved forward and was in action, deafening +them with the noise of firing, they came to a small wood. There it was +cool and quiet, with a scent of autumn. Pierre and the adjutant +dismounted and walked up the hill on foot. + +"Is the general here?" asked the adjutant on reaching the knoll. + +"He was here a minute ago but has just gone that way," someone +told him, pointing to the right. + +The adjutant looked at Pierre as if puzzled what to do with him now. + +"Don't trouble about me," said Pierre. "I'll go up onto the knoll if +I may?" + +"Yes, do. You'll see everything from there and it's less +dangerous, and I'll come for you." + +Pierre went to the battery and the adjutant rode on. They did not +meet again, and only much later did Pierre learn that he lost an arm +that day. + +The knoll to which Pierre ascended was that famous one afterwards +known to the Russians as the Knoll Battery or Raevski's Redoubt, and +to the French as la grande redoute, la fatale redoute, la redoute du +centre, around which tens of thousands fell, and which the French +regarded as the key to the whole position. + +This redoubt consisted of a knoll, on three sides of which +trenches had been dug. Within the entrenchment stood ten guns that +were being fired through openings in the earthwork. + +In line with the knoll on both sides stood other guns which also +fired incessantly. A little behind the guns stood infantry. When +ascending that knoll Pierre had no notion that this spot, on which +small trenches had been dug and from which a few guns were firing, was +the most important point of the battle. + +On the contrary, just because he happened to be there he thought +it one of the least significant parts of the field. + +Having reached the knoll, Pierre sat down at one end of a trench +surrounding the battery and gazed at what was going on around him with +an unconsciously happy smile. Occasionally he rose and walked about +the battery still with that same smile, trying not to obstruct the +soldiers who were loading, hauling the guns, and continually running +past him with bags and charges. The guns of that battery were being +fired continually one after another with a deafening roar, +enveloping the whole neighborhood in powder smoke. + +In contrast with the dread felt by the infantrymen placed in +support, here in the battery where a small number of men busy at their +work were separated from the rest by a trench, everyone experienced +a common and as it were family feeling of animation. + +The intrusion of Pierre's nonmilitary figure in a white hat made +an unpleasant impression at first. The soldiers looked askance at +him with surprise and even alarm as they went past him. The senior +artillery officer, a tall, long-legged, pockmarked man, moved over +to Pierre as if to see the action of the farthest gun and looked at +him with curiosity. + +A young round-faced officer, quite a boy still and evidently only +just out of the Cadet College, who was zealously commanding the two +guns entrusted to him, addressed Pierre sternly. + +"Sir," he said, "permit me to ask you to stand aside. You must not +be here." + +The soldiers shook their heads disapprovingly as they looked at +Pierre. But when they had convinced themselves that this man in the +white hat was doing no harm, but either sat quietly on the slope of +the trench with a shy smile or, politely making way for the +soldiers, paced up and down the battery under fire as calmly as if +he were on a boulevard, their feeling of hostile distrust gradually +began to change into a kindly and bantering sympathy, such as soldiers +feel for their dogs, cocks, goats, and in general for the animals that +live with the regiment. The men soon accepted Pierre into their +family, adopted him, gave him a nickname ("our gentleman"), and made +kindly fun of him among themselves. + +A shell tore up the earth two paces from Pierre and he looked around +with a smile as he brushed from his clothes some earth it had thrown +up. + +"And how's it you're not afraid, sir, really now?" a red-faced, +broad-shouldered soldier asked Pierre, with a grin that disclosed a +set of sound, white teeth. + +"Are you afraid, then?" said Pierre. + +"What else do you expect?" answered the soldier. "She has no +mercy, you know! When she comes spluttering down, out go your innards. +One can't help being afraid," he said laughing. + +Several of the men, with bright kindly faces, stopped beside Pierre. +They seemed not to have expected him to talk like anybody else, and +the discovery that he did so delighted them. + +"It's the business of us soldiers. But in a gentleman it's +wonderful! There's a gentleman for you!" + +"To your places!" cried the young officer to the men gathered +round Pierre. + +The young officer was evidently exercising his duties for the +first or second time and therefore treated both his superiors and +the men with great precision and formality. + +The booming cannonade and the fusillade of musketry were growing +more intense over the whole field, especially to the left where +Bagration's fleches were, but where Pierre was the smoke of the firing +made it almost impossible to distinguish anything. Moreover, his whole +attention was engrossed by watching the family circle--separated +from all else--formed by the men in the battery. His first unconscious +feeling of joyful animation produced by the sights and sounds of the +battlefield was now replaced by another, especially since he had +seen that soldier lying alone in the hayfield. Now, seated on the +slope of the trench, he observed the faces of those around him. + +By ten o'clock some twenty men had already been carried away from +the battery; two guns were smashed and cannon balls fell more and more +frequently on the battery and spent bullets buzzed and whistled +around. But the men in the battery seemed not to notice this, and +merry voices and jokes were heard on all sides. + +"A live one!" shouted a man as a whistling shell approached. + +"Not this way! To the infantry!" added another with loud laughter, +seeing the shell fly past and fall into the ranks of the supports. + +"Are you bowing to a friend, eh?" remarked another, chaffing a +peasant who ducked low as a cannon ball flew over. + +Several soldiers gathered by the wall of the trench, looking out +to see what was happening in front. + +"They've withdrawn the front line, it has retired," said they, +pointing over the earthwork. + +"Mind your own business," an old sergeant shouted at them. "If +they've retired it's because there's work for them to do farther +back." + +And the sergeant, taking one of the men by the shoulders, gave him a +shove with his knee. This was followed by a burst of laughter. + +"To the fifth gun, wheel it up!" came shouts from one side. + +"Now then, all together, like bargees!" rose the merry voices of +those who were moving the gun. + +"Oh, she nearly knocked our gentleman's hat off!" cried the +red-faced humorist, showing his teeth chaffing Pierre. "Awkward +baggage!" he added reproachfully to a cannon ball that struck a cannon +wheel and a man's leg. + +"Now then, you foxes!" said another, laughing at some militiamen +who, stooping low, entered the battery to carry away the wounded man. + +"So this gruel isn't to your taste? Oh, you crows! You're scared!" +they shouted at the militiamen who stood hesitating before the man +whose leg had been torn off. + +"There, lads... oh, oh!" they mimicked the peasants, "they don't +like it at all!" + +Pierre noticed that after every ball that hit the redoubt, and after +every loss, the liveliness increased more and more. + +As the flames of the fire hidden within come more and more vividly +and rapidly from an approaching thundercloud, so, as if in +opposition to what was taking place, the lightning of hidden fire +growing more and more intense glowed in the faces of these men. + +Pierre did not look out at the battlefield and was not concerned +to know what was happening there; he was entirely absorbed in watching +this fire which burned ever more brightly and which he felt was +flaming up in the same way in his own soul. + +At ten o'clock the infantry that had been among the bushes in +front of the battery and along the Kamenka streamlet retreated. From +the battery they could be seen running back past it carrying their +wounded on their muskets. A general with his suite came to the +battery, and after speaking to the colonel gave Pierre an angry look +and went away again having ordered the infantry supports behind the +battery to lie down, so as to be less exposed to fire. After this from +amid the ranks of infantry to the right of the battery came the +sound of a drum and shouts of command, and from the battery one saw +how those ranks of infantry moved forward. + +Pierre looked over the wall of the trench and was particularly +struck by a pale young officer who, letting his sword hang down, was +walking backwards and kept glancing uneasily around. + +The ranks of the infantry disappeared amid the smoke but their +long-drawn shout and rapid musketry firing could still be heard. A few +minutes later crowds of wounded men and stretcher-bearers came back +from that direction. Projectiles began to fall still more frequently +in the battery. Several men were lying about who had not been removed. +Around the cannon the men moved still more briskly and busily. No +one any longer took notice of Pierre. Once or twice he was shouted +at for being in the way. The senior officer moved with big, rapid +strides from one gun to another with a frowning face. The young +officer, with his face still more flushed, commanded the men more +scrupulously than ever. The soldiers handed up the charges, turned, +loaded, and did their business with strained smartness. They gave +little jumps as they walked, as though they were on springs. + +The stormcloud had come upon them, and in every face the fire +which Pierre had watched kindle burned up brightly. Pierre standing +beside the commanding officer. The young officer, his hand to his +shako, ran up to his superior. + +"I have the honor to report, sir, that only eight rounds are left. +Are we to continue firing?" he asked. + +"Grapeshot!" the senior shouted, without answering the question, +looking over the wall of the trench. + +Suddenly something happened: the young officer gave a gasp and +bending double sat down on the ground like a bird shot on the wing. +Everything became strange, confused, and misty in Pierre's eyes. + +One cannon ball after another whistled by and struck the +earthwork, a soldier, or a gun. Pierre, who had not noticed these +sounds before, now heard nothing else. On the right of the battery +soldiers shouting "Hurrah!" were running not forwards but backwards, +it seemed to Pierre. + +A cannon ball struck the very end of the earth work by which he +was standing, crumbling down the earth; a black ball flashed before +his eyes and at the same instant plumped into something. Some +militiamen who were entering the battery ran back. + +"All with grapeshot!" shouted the officer. + +The sergeant ran up to the officer and in a frightened whisper +informed him (as a butler at dinner informs his master that there is +no more of some wine asked for) that there were no more charges. + +"The scoundrels! What are they doing?" shouted the officer, +turning to Pierre. + +The officer's face was red and perspiring and his eyes glittered +under his frowning brow. + +"Run to the reserves and bring up the ammunition boxes!" he +yelled, angrily avoiding Pierre with his eyes and speaking to his men. + +"I'll go," said Pierre. + +The officer, without answering him, strode across to the opposite +side. + +"Don't fire.... Wait!" he shouted. + +The man who had been ordered to go for ammunition stumbled against +Pierre. + +"Eh, sir, this is no place for you," said he, and ran down the +slope. + +Pierre ran after him, avoiding the spot where the young officer +was sitting. + +One cannon ball, another, and a third flew over him, falling in +front, beside, and behind him. Pierre ran down the slope. "Where am +I going?" he suddenly asked himself when he was already near the green +ammunition wagons. He halted irresolutely, not knowing whether to +return or go on. Suddenly a terrible concussion threw him backwards to +the ground. At the same instant he was dazzled by a great flash of +flame, and immediately a deafening roar, crackling, and whistling made +his ears tingle. + +When he came to himself he was sitting on the ground leaning on +his hands; the ammunition wagons he had been approaching no longer +existed, only charred green boards and rags littered the scorched +grass, and a horse, dangling fragments of its shaft behind it, +galloped past, while another horse lay, like Pierre, on the ground, +uttering prolonged and piercing cries. + + + + + +CHAPTER XXXII + + +Beside himself with terror Pierre jumped up and ran back to the +battery, as to the only refuge from the horrors that surrounded him. + +On entering the earthwork he noticed that there were men doing +something there but that no shots were being fired from the battery. +He had no time to realize who these men were. He saw the senior +officer lying on the earth wall with his back turned as if he were +examining something down below and that one of the soldiers he had +noticed before was struggling forward shouting "Brothers!" and +trying to free himself from some men who were holding him by the +arm. He also saw something else that was strange. + +But he had not time to realize that the colonel had been killed, +that the soldier shouting "Brothers!" was a prisoner, and that another +man had been bayoneted in the back before his eyes, for hardly had +he run into the redoubt before a thin, sallow-faced, perspiring man in +a blue uniform rushed on him sword in hand, shouting something. +Instinctively guarding against the shock--for they had been running +together at full speed before they saw one another--Pierre put out his +hands and seized the man (a French officer) by the shoulder with one +hand and by the throat with the other. The officer, dropping his +sword, seized Pierre by his collar. + +For some seconds they gazed with frightened eyes at one another's +unfamiliar faces and both were perplexed at what they had done and +what they were to do next. "Am I taken prisoner or have I taken him +prisoner?" each was thinking. But the French officer was evidently +more inclined to think he had been taken prisoner because Pierre's +strong hand, impelled by instinctive fear, squeezed his throat ever +tighter and tighter. The Frenchman was about to say something, when +just above their heads, terrible and low, a cannon ball whistled, +and it seemed to Pierre that the French officer's head had been torn +off, so swiftly had he ducked it. + +Pierre too bent his head and let his hands fall. Without further +thought as to who had taken whom prisoner, the Frenchman ran back to +the battery and Pierre ran down the slope stumbling over the dead +and wounded who, it seemed to him, caught at his feet. But before he +reached the foot of the knoll he was met by a dense crowd of Russian +soldiers who, stumbling, tripping up, and shouting, ran merrily and +wildly toward the battery. (This was the attack for which Ermolov +claimed the credit, declaring that only his courage and good luck made +such a feat possible: it was the attack in which he was said to have +thrown some St. George's Crosses he had in his pocket into the battery +for the first soldiers to take who got there.) + +The French who had occupied the battery fled, and our troops +shouting "Hurrah!" pursued them so far beyond the battery that it +was difficult to call them back. + +The prisoners were brought down from the battery and among them +was a wounded French general, whom the officers surrounded. Crowds +of wounded--some known to Pierre and some unknown--Russians and +French, with faces distorted by suffering, walked, crawled, and were +carried on stretchers from the battery. Pierre again went up onto +the knoll where he had spent over an hour, and of that family circle +which had received him as a member he did not find a single one. There +were many dead whom he did not know, but some he recognized. The young +officer still sat in the same way, bent double, in a pool of blood +at the edge of the earth wall. The red-faced man was still +twitching, but they did not carry him away. + +Pierre ran down the slope once more. + +"Now they will stop it, now they will be horrified at what they have +done!" he thought, aimlessly going toward a crowd of stretcher bearers +moving from the battlefield. + +But behind the veil of smoke the sun was still high, and in front +and especially to the left, near Semenovsk, something seemed to be +seething in the smoke, and the roar of cannon and musketry did not +diminish, but even increased to desperation like a man who, +straining himself, shrieks with all his remaining strength. + + + + + +CHAPTER XXXIII + + +The chief action of the battle of Borodino was fought within the +seven thousand feet between Borodino and Bagration's fleches. Beyond +that space there was, on the one side, a demonstration made by the +Russians with Uvarov's cavalry at midday, and on the other side, +beyond Utitsa, Poniatowski's collision with Tuchkov; but these two +were detached and feeble actions in comparison with what took place in +the center of the battlefield. On the field between Borodino and the +fleches, beside the wood, the chief action of the day took place on an +open space visible from both sides and was fought in the simplest +and most artless way. + +The battle began on both sides with a cannonade from several hundred +guns. + +Then when the whole field was covered with smoke, two divisions, +Campan's and Dessaix's, advanced from the French right, while +Murat's troops advanced on Borodino from their left. + +From the Shevardino Redoubt where Napoleon was standing the +fleches were two thirds of a mile away, and it was more than a mile as +the crow flies to Borodino, so that Napoleon could not see what was +happening there, especially as the smoke mingling with the mist hid +the whole locality. The soldiers of Dessaix's division advancing +against the fleches could only be seen till they had entered the +hollow that lay between them and the fleches. As soon as they had +descended into that hollow, the smoke of the guns and musketry on +the fleches grew so dense that it covered the whole approach on that +side of it. Through the smoke glimpses could be caught of something +black--probably men--and at times the glint of bayonets. But whether +they were moving or stationary, whether they were French or Russian, +could not be discovered from the Shevardino Redoubt. + +The sun had risen brightly and its slanting rays struck straight +into Napoleon's face as, shading his eyes with his hand, he looked +at the fleches. The smoke spread out before them, and at times it +looked as if the smoke were moving, at times as if the troops moved. +Sometimes shouts were heard through the firing, but it was +impossible to tell what was being done there. + +Napoleon, standing on the knoll, looked through a field glass, and +in its small circlet saw smoke and men, sometimes his own and +sometimes Russians, but when he looked again with the naked eye, he +could not tell where what he had seen was. + +He descended the knoll and began walking up and down before it. + +Occasionally he stopped, listened to the firing, and gazed +intently at the battlefield. + +But not only was it impossible to make out what was happening from +where he was standing down below, or from the knoll above on which +some of his generals had taken their stand, but even from the +fleches themselves--in which by this time there were now Russian and +now French soldiers, alternately or together, dead, wounded, alive, +frightened, or maddened--even at those fleches themselves it was +impossible to make out what was taking place. There for several +hours amid incessant cannon and musketry fire, now Russians were +seen alone, now Frenchmen alone, now infantry, and now cavalry: they +appeared, fired, fell, collided, not knowing what to do with one +another, screamed, and ran back again. + +From the battlefield adjutants he had sent out, and orderlies from +his marshals, kept galloping up to Napoleon with reports of the +progress of the action, but all these reports were false, both because +it was impossible in the heat of battle to say what was happening at +any given moment and because many of the adjutants did not go to the +actual place of conflict but reported what they had heard from others; +and also because while an adjutant was riding more than a mile to +Napoleon circumstances changed and the news he brought was already +becoming false. Thus an adjutant galloped up from Murat with tidings +that Borodino had been occupied and the bridge over the Kolocha was in +the hands of the French. The adjutant asked whether Napoleon wished +the troops to cross it? Napoleon gave orders that the troops should +form up on the farther side and wait. But before that order was given- +almost as soon in fact as the adjutant had left Borodino--the bridge +had been retaken by the Russians and burned, in the very skirmish at +which Pierre had been present at the beginning of the battle. + +An adjutant galloped up from the fleches with a pale and +frightened face and reported to Napoleon that their attack had been +repulsed, Campan wounded, and Davout killed; yet at the very time +the adjutant had been told that the French had been repulsed, the +fleches had in fact been recaptured by other French troops, and Davout +was alive and only slightly bruised. On the basis of these necessarily +untrustworthy reports Napoleon gave his orders, which had either +been executed before he gave them or could not be and were not +executed. + +The marshals and generals, who were nearer to the field of battle +but, like Napoleon, did not take part in the actual fighting and +only occasionally went within musket range, made their own +arrangements without asking Napoleon and issued orders where and in +what direction to fire and where cavalry should gallop and infantry +should run. But even their orders, like Napoleon's, were seldom +carried out, and then but partially. For the most part things happened +contrary to their orders. Soldiers ordered to advance ran back on +meeting grapeshot; soldiers ordered to remain where they were, +suddenly, seeing Russians unexpectedly before them, sometimes rushed +back and sometimes forward, and the cavalry dashed without orders in +pursuit of the flying Russians. In this way two cavalry regiments +galloped through the Semenovsk hollow and as soon as they reached +the top of the incline turned round and galloped full speed back +again. The infantry moved in the same way, sometimes running to +quite other places than those they were ordered to go to. All orders +as to where and when to move the guns, when to send infantry to +shoot or horsemen to ride down the Russian infantry--all such orders +were given by the officers on the spot nearest to the units concerned, +without asking either Ney, Davout, or Murat, much less Napoleon. +They did not fear getting into trouble for not fulfilling orders or +for acting on their own initiative, for in battle what is at stake +is what is dearest to man--his own life--and it sometimes seems that +safety lies in running back, sometimes in running forward; and these +men who were right in the heat of the battle acted according to the +mood of the moment. In reality, however, all these movements forward +and backward did not improve or alter the position of the troops. +All their rushing and galloping at one another did little harm, the +harm of disablement and death was caused by the balls and bullets that +flew over the fields on which these men were floundering about. As +soon as they left the place where the balls and bullets were flying +about, their superiors, located in the background, re-formed them +and brought them under discipline and under the influence of that +discipline led them back to the zone of fire, where under the +influence of fear of death they lost their discipline and rushed about +according to the chance promptings of the throng. + + + + + +CHAPTER XXXIV + + +Napoleon's generals--Davout, Ney, and Murat, who were near that +region of fire and sometimes even entered it--repeatedly led into it +huge masses of well-ordered troops. But contrary to what had always +happened in their former battles, instead of the news they expected of +the enemy's flight, these orderly masses returned thence as +disorganized and terrified mobs. The generals re-formed them, but +their numbers constantly decreased. In the middle of the day Murat +sent his adjutant to Napoleon to demand reinforcements. + +Napoleon sat at the foot of the knoll, drinking punch, when +Murat's adjutant galloped up with an assurance that the Russians would +be routed if His Majesty would let him have another division. + +"Reinforcements?" said Napoleon in a tone of stern surprise, looking +at the adjutant--a handsome lad with long black curls arranged like +Murat's own--as though he did not understand his words. + +"Reinforcements!" thought Napoleon to himself. "How can they need +reinforcements when they already have half the army directed against a +weak, unentrenched Russian wing?" + +"Tell the King of Naples," said he sternly, "that it is not noon +yet, and I don't yet see my chessboard clearly. Go!..." + +The handsome boy adjutant with the long hair sighed deeply without +removing his hand from his hat and galloped back to where men were +being slaughtered. + +Napoleon rose and having summoned Caulaincourt and Berthier began +talking to them about matters unconnected with the battle. + +In the midst of this conversation, which was beginning to interest +Napoleon, Berthier's eyes turned to look at a general with a suite, +who was galloping toward the knoll on a lathering horse. It was +Belliard. Having dismounted he went up to the Emperor with rapid +strides and in a loud voice began boldly demonstrating the necessity +of sending reinforcements. He swore on his honor that the Russians +were lost if the Emperor would give another division. + +Napoleon shrugged his shoulders and continued to pace up and down +without replying. Belliard began talking loudly and eagerly to the +generals of the suite around him. + +"You are very fiery, Belliard," said Napoleon, when he again came up +to the general. "In the heat of a battle it is easy to make a mistake. +Go and have another look and then come back to me." + +Before Belliard was out of sight, a messenger from another part of +the battlefield galloped up. + +"Now then, what do you want?" asked Napoleon in the tone of a man +irritated at being continually disturbed. + +"Sire, the prince..." began the adjutant. + +"Asks for reinforcements?" said Napoleon with an angry gesture. + +The adjutant bent his head affirmatively and began to report, but +the Emperor turned from him, took a couple of steps, stopped, came +back, and called Berthier. + +"We must give reserves," he said, moving his arms slightly apart. +"Who do you think should be sent there?" he asked of Berthier (whom he +subsequently termed "that gosling I have made an eagle"). + +"Send Claparede's division, sire," replied Berthier, who knew all +the divisions regiments, and battalions by heart. + +Napoleon nodded assent. + +The adjutant galloped to Claparede's division and a few minutes +later the Young Guards stationed behind the knoll moved forward. +Napoleon gazed silently in that direction. + +"No!" he suddenly said to Berthier. "I can't send Claparede. Send +Friant's division." + +Though there was no advantage in sending Friant's division instead +of Claparede's, and even in obvious inconvenience and delay in +stopping Claparede and sending Friant now, the order was carried out +exactly. Napoleon did not notice that in regard to his army he was +playing the part of a doctor who hinders by his medicines--a role he +so justly understood and condemned. + +Friant's division disappeared as the others had done into the +smoke of the battlefield. From all sides adjutants continued to arrive +at a gallop and as if by agreement all said the same thing. They all +asked for reinforcements and all said that the Russians were holding +their positions and maintaining a hellish fire under which the +French army was melting away. + +Napoleon sat on a campstool, wrapped in thought. + +M. de Beausset, the man so fond of travel, having fasted since +morning, came up to the Emperor and ventured respectfully to suggest +lunch to His Majesty. + +"I hope I may now congratulate Your Majesty on a victory?" said he. + +Napoleon silently shook his head in negation. Assuming the +negation to refer only to the victory and not to the lunch, M. de +Beausset ventured with respectful jocularity to remark that there is +no reason for not having lunch when one can get it. + +"Go away..." exclaimed Napoleon suddenly and morosely, and turned +aside. + +A beatific smile of regret, repentance, and ecstasy beamed on M. +de Beausset's face and he glided away to the other generals. + +Napoleon was experiencing a feeling of depression like that of an +ever-lucky gambler who, after recklessly flinging money about and +always winning, suddenly just when he has calculated all the chances +of the game, finds that the more he considers his play the more surely +he loses. + +His troops were the same, his generals the same, the same +preparations had been made, the same dispositions, and the same +proclamation courte et energique, he himself was still the same: he +knew that and knew that he was now even more experienced and +skillful than before. Even the enemy was the same as at Austerlitz and +Friedland--yet the terrible stroke of his arm had supernaturally +become impotent. + +All the old methods that had been unfailingly crowned with +success: the concentration of batteries on one point, an attack by +reserves to break the enemy's line, and a cavalry attack by "the men +of iron," all these methods had already been employed, yet not only +was there no victory, but from all sides came the same news of +generals killed and wounded, of reinforcements needed, of the +impossibility of driving back the Russians, and of disorganization +among his own troops. + +Formerly, after he had given two or three orders and uttered a few +phrases, marshals and adjutants had come galloping up with +congratulations and happy faces, announcing the trophies taken, the +corps of prisoners, bundles of enemy eagles and standards, cannon +and stores, and Murat had only begged leave to loose the cavalry to +gather in the baggage wagons. So it had been at Lodi, Marengo, Arcola, +Jena, Austerlitz, Wagram, and so on. But now something strange was +happening to his troops. + +Despite news of the capture of the fleches, Napoleon saw that this +was not the same, not at all the same, as what had happened in his +former battles. He saw that what he was feeling was felt by all the +men about him experienced in the art of war. All their faces looked +dejected, and they all shunned one another's eyes--only a de +Beausset could fail to grasp the meaning of what was happening. + +But Napoleon with his long experience of war well knew the meaning +of a battle not gained by the attacking side in eight hours, after all +efforts had been expended. He knew that it was a lost battle and +that the least accident might now--with the fight balanced on such a +strained center--destroy him and his army. + +When he ran his mind over the whole of this strange Russian campaign +in which not one battle had been won, and in which not a flag, or +cannon, or army corps had been captured in two months, when he +looked at the concealed depression on the faces around him and heard +reports of the Russians still holding their ground--a terrible feeling +like a nightmare took possession of him, and all the unlucky accidents +that might destroy him occurred to his mind. The Russians might fall +on his left wing, might break through his center, he himself might +be killed by a stray cannon ball. All this was possible. In former +battles he had only considered the possibilities of success, but now +innumerable unlucky chances presented themselves, and he expected them +all. Yes, it was like a dream in which a man fancies that a ruffian is +coming to attack him, and raises his arm to strike that ruffian a +terrible blow which he knows should annihilate him, but then feels +that his arm drops powerless and limp like a rag, and the horror of +unavoidable destruction seizes him in his helplessness. + +The news that the Russians were attacking the left flank of the +French army aroused that horror in Napoleon. He sat silently on a +campstool below the knoll, with head bowed and elbows on his knees. +Berthier approached and suggested that they should ride along the line +to ascertain the position of affairs. + +"What? What do you say?" asked Napoleon. "Yes, tell them to bring me +my horse." + +He mounted and rode toward Semenovsk. + +Amid the powder smoke, slowly dispersing over the whole space +through which Napoleon rode, horses and men were lying in pools of +blood, singly or in heaps. Neither Napoleon nor any of his generals +had ever before seen such horrors or so many slain in such a small +area. The roar of guns, that had not ceased for ten hours, wearied the +ear and gave a peculiar significance to the spectacle, as music does +to tableaux vivants. Napoleon rode up the high ground at Semenovsk, +and through the smoke saw ranks of men in uniforms of a color +unfamiliar to him. They were Russians. + +The Russians stood in serried ranks behind Semenovsk village and its +knoll, and their guns boomed incessantly along their line and sent +forth clouds of smoke. It was no longer a battle: it was a +continuous slaughter which could be of no avail either to the French +or the Russians. Napoleon stopped his horse and again fell into the +reverie from which Berthier had aroused him. He could not stop what +was going on before him and around him and was supposed to be directed +by him and to depend on him, and from its lack of success this affair, +for the first time, seemed to him unnecessary and horrible. + +One of the generals rode up to Napoleon and ventured to offer to +lead the Old Guard into action. Ney and Berthier, standing near +Napoleon, exchanged looks and smiled contemptuously at this +general's senseless offer. + +Napoleon bowed his head and remained silent a long time. + +"At eight hundred leagues from France, I will not have my Guard +destroyed!" he said, and turning his horse rode back to Shevardino. + + + + + +CHAPTER XXXV + + +On the rug-covered bench where Pierre had seen him in the morning +sat Kutuzov, his gray head hanging, his heavy body relaxed. He gave no +orders, but only assented to or dissented from what others suggested. + +"Yes, yes, do that," he replied to various proposals. "Yes, yes: go, +dear boy, and have a look," he would say to one or another of those +about him; or, "No, don't, we'd better wait!" He listened to the +reports that were brought him and gave directions when his +subordinates demanded that of him; but when listening to the reports +it seemed as if he were not interested in the import of the words +spoken, but rather in something else--in the expression of face and +tone of voice of those who were reporting. By long years of military +experience he knew, and with the wisdom of age understood, that it +is impossible for one man to direct hundreds of thousands of others +struggling with death, and he knew that the result of a battle is +decided not by the orders of a commander in chief, nor the place where +the troops are stationed, nor by the number of cannon or of +slaughtered men, but by that intangible force called the spirit of the +army, and he watched this force and guided it in as far as that was in +his power. + +Kutuzov's general expression was one of concentrated quiet +attention, and his face wore a strained look as if he found it +difficult to master the fatigue of his old and feeble body. + +At eleven o'clock they brought him news that the fleches captured by +the French had been retaken, but that Prince Bagration was wounded. +Kutuzov groaned and swayed his head. + +"Ride over to Prince Peter Ivanovich and find out about it exactly," +he said to one of his adjutants, and then turned to the Duke of +Wurttemberg who was standing behind him. + +"Will Your Highness please take command of the first army?" + +Soon after the duke's departure--before he could possibly have +reached Semenovsk--his adjutant came back from him and told Kutuzov +that the duke asked for more troops. + +Kutuzov made a grimace and sent an order to Dokhturov to take over +the command of the first army, and a request to the duke--whom he said +he could not spare at such an important moment--to return to him. When +they brought him news that Murat had been taken prisoner, and the +staff officers congratulated him, Kutuzov smiled. + +"Wait a little, gentlemen," said he. "The battle is won, and there +is nothing extraordinary in the capture of Murat. Still, it is +better to wait before we rejoice." + +But he sent an adjutant to take the news round the army. + +When Scherbinin came galloping from the left flank with news that +the French had captured the fleches and the village of Semenovsk, +Kutuzov, guessing by the sounds of the battle and by Scherbinin's +looks that the news was bad, rose as if to stretch his legs and, +taking Scherbinin's arm, led him aside. + +"Go, my dear fellow," he said to Ermolov, "and see whether something +can't be done." + +Kutuzov was in Gorki, near the center of the Russian position. The +attack directed by Napoleon against our left flank had been several +times repulsed. In the center the French had not got beyond +Borodino, and on their left flank Uvarov's cavalry had put the +French to flight. + +Toward three o'clock the French attacks ceased. On the faces of +all who came from the field of battle, and of those who stood around +him, Kutuzov noticed an expression of extreme tension. He was +satisfied with the day's success--a success exceeding his +expectations, but the old man's strength was failing him. Several +times his head dropped low as if it were falling and he dozed off. +Dinner was brought him. + +Adjutant General Wolzogen, the man who when riding past Prince +Andrew had said, "the war should be extended widely," and whom +Bagration so detested, rode up while Kutuzov was at dinner. Wolzogen +had come from Barclay de Tolly to report on the progress of affairs on +the left flank. The sagacious Barclay de Tolly, seeing crowds of +wounded men running back and the disordered rear of the army, +weighed all the circumstances, concluded that the battle was lost, and +sent his favorite officer to the commander in chief with that news. + +Kutuzov was chewing a piece of roast chicken with difficulty and +glanced at Wolzogen with eyes that brightened under their puckering +lids. + +Wolzogen, nonchalantly stretching his legs, approached Kutuzov +with a half-contemptuous smile on his lips, scarcely touching the peak +of his cap. + +He treated his Serene Highness with a somewhat affected +nonchalance intended to show that, as a highly trained military man, +he left it to Russians to make an idol of this useless old man, but +that he knew whom he was dealing with. "Der alte Herr" (as in their +own set the Germans called Kutuzov) "is making himself very +comfortable," thought Wolzogen, and looking severely at the dishes +in front of Kutuzov he began to report to "the old gentleman" the +position of affairs on the left flank as Barclay had ordered him to +and as he himself had seen and understood it. + +"All the points of our position are in the enemy's hands and we +cannot dislodge them for lack of troops, the men are running away +and it is impossible to stop them," he reported. + +Kutuzov ceased chewing and fixed an astonished gaze on Wolzogen, +as if not understand what was said to him. Wolzogen, noticing "the old +gentleman's" agitation, said with a smile: + +"I have not considered it right to conceal from your Serene Highness +what I have seen. The troops are in complete disorder..." + +"You have seen? You have seen?..." Kutuzov shouted frowning, and +rising quickly he went up to Wolzogen. + +"How... how dare you!..." he shouted, choking and making a +threatening gesture with his trembling arms: "How dare you, sir, say +that to me? You know nothing about it. Tell General Barclay from me +that his information is incorrect and that the real course of the +battle is better known to me, the commander in chief, than to him." + +Wolzogen was about to make a rejoinder, but Kutuzov interrupted him. + +"The enemy has been repulsed on the left and defeated on the right +flank. If you have seen amiss, sir, do not allow yourself to say +what you don't know! Be so good as to ride to General Barclay and +inform him of my firm intention to attack the enemy tomorrow," said +Kutuzov sternly. + +All were silent, and the only sound audible was the heavy +breathing of the panting old general. + +"They are repulsed everywhere, for which I thank God and our brave +army! The enemy is beaten, and tomorrow we shall drive him from the +sacred soil of Russia," said Kutuzov crossing himself, and he suddenly +sobbed as his eyes filled with tears. + +Wolzogen, shrugging his shoulders and curling his lips, stepped +silently aside, marveling at "the old gentleman's" conceited +stupidity. + +"Ah, here he is, my hero!" said Kutuzov to a portly, handsome, +dark-haired general who was just ascending the knoll. + +This was Raevski, who had spent the whole day at the most +important part of the field of Borodino. + +Raevski reported that the troops were firmly holding their ground +and that the French no longer ventured to attack. + +After hearing him, Kutuzov said in French: + +"Then you do not think, like some others, that we must retreat?" + +"On the contrary, your Highness, in indecisive actions it is +always the most stubborn who remain victors," replied Raevski, "and in +my opinion..." + +"Kaysarov!" Kutuzov called to his adjutant. "Sit down and write +out the order of the day for tomorrow. And you," he continued, +addressing another, "ride along the line and that tomorrow we attack." + +While Kutuzov was talking to Raevski and dictating the order of +the day, Wolzogen returned from Barclay and said that General +Barclay wished to have written confirmation of the order the field +marshal had given. + +Kutuzov, without looking at Wolzogen, gave directions for the +order to be written out which the former commander in chief, to +avoid personal responsibility, very judiciously wished to receive. + +And by means of that mysterious indefinable bond which maintains +throughout an army one and the same temper, known as "the spirit of +the army," and which constitutes the sinew of war, Kutuzov's words, +his order for a battle next day, immediately became known from one end +of the army to the other. + +It was far from being the same words or the same order that +reached the farthest links of that chain. The tales passing from mouth +to mouth at different ends of the army did not even resemble what +Kutuzov had said, but the sense of his words spread everywhere because +what he said was not the outcome of cunning calculations, but of a +feeling that lay in the commander in chief's soul as in that of +every Russian. + +And on learning that tomorrow they were to attack the enemy, and +hearing from the highest quarters a confirmation of what they wanted +to believe, the exhausted, wavering men felt comforted and inspirited. + + + + + +CHAPTER XXXVI + + +Prince Andrew's regiment was among the reserves which till after one +o'clock were stationed inactive behind Semenovsk, under heavy +artillery fire. Toward two o'clock the regiment, having already lost +more than two hundred men, was moved forward into a trampled +oatfield in the gap between Semenovsk and the Knoll Battery, where +thousands of men perished that day and on which an intense, +concentrated fire from several hundred enemy guns was directed between +one and two o'clock. + +Without moving from that spot or firing a single shot the regiment +here lost another third of its men. From in front and especially +from the right, in the unlifting smoke the guns boomed, and out of the +mysterious domain of smoke that overlay the whole space in front, +quick hissing cannon balls and slow whistling shells flew unceasingly. +At times, as if to allow them a respite, a quarter of an hour passed +during which the cannon balls and shells all flew overhead, but +sometimes several men were torn from the regiment in a minute and +the slain were continually being dragged away and the wounded +carried off. + +With each fresh blow less and less chance of life remained for those +not yet killed. The regiment stood in columns of battalion, three +hundred paces apart, but nevertheless the men were always in one and +the same mood. All alike were taciturn and morose. Talk was rarely +heard in the ranks, and it ceased altogether every time the thud of +a successful shot and the cry of "stretchers!" was heard. Most of +the time, by their officers' order, the men sat on the ground. One, +having taken off his shako, carefully loosened the gathers of its +lining and drew them tight again; another, rubbing some dry clay +between his palms, polished his bayonet; another fingered the strap +and pulled the buckle of his bandolier, while another smoothed and +refolded his leg bands and put his boots on again. Some built little +houses of the tufts in the plowed ground, or plaited baskets from +the straw in the cornfield. All seemed fully absorbed in these +pursuits. When men were killed or wounded, when rows of stretchers +went past, when some troops retreated, and when great masses of the +enemy came into view through the smoke, no one paid any attention to +these things. But when our artillery or cavalry advanced or some of +our infantry were seen to move forward, words of approval were heard +on all sides. But the liveliest attention was attracted by occurrences +quite apart from, and unconnected with, the battle. It was as if the +minds of these morally exhausted men found relief in everyday, +commonplace occurrences. A battery of artillery was passing in front +of the regiment. The horse of an ammunition cart put its leg over a +trace. "Hey, look at the trace horse!... Get her leg out! She'll +fall.... Ah, they don't see it!" came identical shouts from the +ranks all along the regiment. Another time, general attention was +attracted by a small brown dog, coming heaven knows whence, which +trotted in a preoccupied manner in front of the ranks with tail +stiffly erect till suddenly a shell fell close by, when it yelped, +tucked its tail between its legs, and darted aside. Yells and +shrieks of laughter rose from the whole regiment. But such +distractions lasted only a moment, and for eight hours the men had +been inactive, without food, in constant fear of death, and their pale +and gloomy faces grew ever paler and gloomier. + +Prince Andrew, pale and gloomy like everyone in the regiment, +paced up and down from the border of one patch to another, at the edge +of the meadow beside an oatfield, with head bowed and arms behind +his back. There was nothing for him to do and no orders to be given. +Everything went on of itself. The killed were dragged from the +front, the wounded carried away, and the ranks closed up. If any +soldiers ran to the rear they returned immediately and hastily. At +first Prince Andrew, considering it his duty to rouse the courage of +the men and to set them an example, walked about among the ranks, +but he soon became convinced that this was unnecessary and that +there was nothing he could teach them. All the powers of his soul, +as of every soldier there, were unconsciously bent on avoiding the +contemplation of the horrors of their situation. He walked along the +meadow, dragging his feet, rustling the grass, and gazing at the +dust that covered his boots; now he took big strides trying to keep to +the footprints left on the meadow by the mowers, then he counted his +steps, calculating how often he must walk from one strip to another to +walk a mile, then he stripped the flowers from the wormwood that +grew along a boundary rut, rubbed them in his palms, and smelled their +pungent, sweetly bitter scent. Nothing remained of the previous +day's thoughts. He thought of nothing. He listened with weary ears +to the ever-recurring sounds, distinguishing the whistle of flying +projectiles from the booming of the reports, glanced at the tiresomely +familiar faces of the men of the first battalion, and waited. "Here it +comes... this one is coming our way again!" he thought, listening to +an approaching whistle in the hidden region of smoke. "One, another! +Again! It has hit...." He stopped and looked at the ranks. "No, it has +gone over. But this one has hit!" And again he started trying to reach +the boundary strip in sixteen paces. A whizz and a thud! Five paces +from him, a cannon ball tore up the dry earth and disappeared. A chill +ran down his back. Again he glanced at the ranks. Probably many had +been hit--a large crowd had gathered near the second battalion. + +"Adjutant!" he shouted. "Order them not to crowd together." + +The adjutant, having obeyed this instruction, approached Prince +Andrew. From the other side a battalion commander rode up. + +"Look out!" came a frightened cry from a soldier and, like a bird +whirring in rapid flight and alighting on the ground, a shell +dropped with little noise within two steps of Prince Andrew and +close to the battalion commander's horse. The horse first, +regardless of whether it was right or wrong to show fear, snorted, +reared almost throwing the major, and galloped aside. The horse's +terror infected the men. + +"Lie down!" cried the adjutant, throwing himself flat on the ground. + +Prince Andrew hesitated. The smoking shell spun like a top between +him and the prostrate adjutant, near a wormwood plant between the +field and the meadow. + +"Can this be death?" thought Prince Andrew, looking with a quite +new, envious glance at the grass, the wormwood, and the streamlet of +smoke that curled up from the rotating black ball. "I cannot, I do not +wish to die. I love life--I love this grass, this earth, this air...." +He thought this, and at the same time remembered that people were +looking at him. + +"It's shameful, sir!" he said to the adjutant. "What..." + +He did not finish speaking. At one and the same moment came the +sound of an explosion, a whistle of splinters as from a breaking +window frame, a suffocating smell of powder, and Prince Andrew started +to one side, raising his arm, and fell on his chest. Several +officers ran up to him. From the right side of his abdomen, blood +was welling out making a large stain on the grass. + +The militiamen with stretchers who were called up stood behind the +officers. Prince Andrew lay on his chest with his face in the grass, +breathing heavily and noisily. + +"What are you waiting for? Come along!" + +The peasants went up and took him by his shoulders and legs, but +he moaned piteously and, exchanging looks, they set him down again. + +"Pick him up, lift him, it's all the same!" cried someone. + +They again took him by the shoulders and laid him on the stretcher. + +"Ah, God! My God! What is it? The stomach? That means death! My +God!"--voices among the officers were heard saying. + +"It flew a hair's breadth past my ear," said the adjutant. + +The peasants, adjusting the stretcher to their shoulders, started +hurriedly along the path they had trodden down, to the dressing +station. + +"Keep in step! Ah... those peasants!" shouted an officer, seizing by +their shoulders and checking the peasants, who were walking unevenly +and jolting the stretcher. + +"Get into step, Fedor... I say, Fedor!" said the foremost peasant. + +"Now that's right!" said the one behind joyfully, when he had got +into step. + +"Your excellency! Eh, Prince!" said the trembling voice of Timokhin, +who had run up and was looking down on the stretcher. + +Prince Andrew opened his eyes and looked up at the speaker from +the stretcher into which his head had sunk deep and again his +eyelids drooped. + + +The militiamen carried Prince Andrew to dressing station by the +wood, where wagons were stationed. The dressing station consisted of +three tents with flaps turned back, pitched at the edge of a birch +wood. In the wood, wagons and horses were standing. The horses were +eating oats from their movable troughs and sparrows flew down and +pecked the grains that fell. Some crows, scenting blood, flew among +the birch trees cawing impatiently. Around the tents, over more than +five acres, bloodstained men in various garbs stood, sat, or lay. +Around the wounded stood crowds of soldier stretcher-bearers with +dismal and attentive faces, whom the officers keeping order tried in +vain to drive from the spot. Disregarding the officers' orders, the +soldiers stood leaning against their stretchers and gazing intently, +as if trying to comprehend the difficult problem of what was taking +place before them. From the tents came now loud angry cries and now +plaintive groans. Occasionally dressers ran out to fetch water, or +to point out those who were to be brought in next. The wounded men +awaiting their turn outside the tents groaned, sighed, wept, screamed, +swore, or asked for vodka. Some were delirious. Prince Andrew's +bearers, stepping over the wounded who had not yet been bandaged, took +him, as a regimental commander, close up to one of the tents and there +stopped, awaiting instructions. Prince Andrew opened his eyes and +for a long time could not make out what was going on around him. He +remembered the meadow, the wormwood, the field, the whirling black +ball, and his sudden rush of passionate love of life. Two steps from +him, leaning against a branch and talking loudly and attracting +general attention, stood a tall, handsome, black-haired +noncommissioned officer with a bandaged head. He had been wounded in +the head and leg by bullets. Around him, eagerly listening to his +talk, a crowd of wounded and stretcher-bearers was gathered. + +"We kicked him out from there so that he chucked everything, we +grabbed the King himself!" cried he, looking around him with eyes that +glittered with fever. "If only reserves had come up just then, lads, +there wouldn't have been nothing left of him! I tell you surely..." + +Like all the others near the speaker, Prince Andrew looked at him +with shining eyes and experienced a sense of comfort. "But isn't it +all the same now?" thought he. "And what will be there, and what has +there been here? Why was I so reluctant to part with life? There was +something in this life I did not and do not understand." + + + + + +CHAPTER XXXVII + + +One of the doctors came out of the tent in a bloodstained apron, +holding a cigar between the thumb and little finger of one of his +small bloodstained hands, so as not to smear it. He raised his head +and looked about him, but above the level of the wounded men. He +evidently wanted a little respite. After turning his head from right +to left for some time, he sighed and looked down. + +"All right, immediately," he replied to a dresser who pointed Prince +Andrew out to him, and he told them to carry him into the tent. + +Murmurs arose among the wounded who were waiting. + +"It seems that even in the next world only the gentry are to have +a chance!" remarked one. + +Prince Andrew was carried in and laid on a table that had only +just been cleared and which a dresser was washing down. Prince +Andrew could not make out distinctly what was in that tent. The +pitiful groans from all sides and the torturing pain in his thigh, +stomach, and back distracted him. All he saw about him merged into a +general impression of naked, bleeding human bodies that seemed to fill +the whole of the low tent, as a few weeks previously, on that hot +August day, such bodies had filled the dirty pond beside the +Smolensk road. Yes, it was the same flesh, the same chair a canon, the +sight of which had even then filled him with horror, as by a +presentiment. + +There were three operating tables in the tent. Two were occupied, +and on the third they placed Prince Andrew. For a little while he +was left alone and involuntarily witnessed what was taking place on +the other two tables. On the nearest one sat a Tartar, probably a +Cossack, judging by the uniform thrown down beside him. Four +soldiers were holding him, and a spectacled doctor was cutting into +his muscular brown back. + +"Ooh, ooh, ooh!" grunted the Tartar, and suddenly lifting up his +swarthy snub-nosed face with its high cheekbones, and baring his white +teeth, he began to wriggle and twitch his body and utter piercing, +ringing, and prolonged yells. On the other table, round which many +people were crowding, a tall well-fed man lay on his back with his +head thrown back. His curly hair, its color, and the shape of his head +seemed strangely familiar to Prince Andrew. Several dressers were +pressing on his chest to hold him down. One large, white, plump leg +twitched rapidly all the time with a feverish tremor. The man was +sobbing and choking convulsively. Two doctors--one of whom was pale +and trembling--were silently doing something to this man's other, gory +leg. When he had finished with the Tartar, whom they covered with an +overcoat, the spectacled doctor came up to Prince Andrew, wiping his +hands. + +He glanced at Prince Andrew's face and quickly turned away. + +"Undress him! What are you waiting for?" he cried angrily to the +dressers. + +His very first, remotest recollections of childhood came back to +Prince Andrew's mind when the dresser with sleeves rolled up began +hastily to undo the buttons of his clothes and undressed him. The +doctor bent down over the wound, felt it, and sighed deeply. Then he +made a sign to someone, and the torturing pain in his abdomen caused +Prince Andrew to lose consciousness. When he came to himself the +splintered portions of his thighbone had been extracted, the torn +flesh cut away, and the wound bandaged. Water was being sprinkled on +his face. As soon as Prince Andrew opened his eyes, the doctor bent +over, kissed him silently on the lips, and hurried away. + +After the sufferings he had been enduring, Prince Andrew enjoyed a +blissful feeling such as he had not experienced for a long time. All +the best and happiest moments of his life--especially his earliest +childhood, when he used to be undressed and put to bed, and when +leaning over him his nurse sang him to sleep and he, burying his +head in the pillow, felt happy in the mere consciousness of life- +returned to his memory, not merely as something past but as +something present. + +The doctors were busily engaged with the wounded man the shape of +whose head seemed familiar to Prince Andrew: they were lifting him +up and trying to quiet him. + +"Show it to me.... Oh, ooh... Oh! Oh, ooh!" his frightened moans +could be heard, subdued by suffering and broken by sobs. + +Hearing those moans Prince Andrew wanted to weep. +Whether because he was dying without glory, or because he was sorry to +part with life, or because of those memories of a childhood that could +not return, or because he was suffering and others were suffering +and that man near him was groaning so piteously--he felt like +weeping childlike, kindly, and almost happy tears. + +The wounded man was shown his amputated leg stained with clotted +blood and with the boot still on. + +"Oh! Oh, ooh!" he sobbed, like a woman. + +The doctor who had been standing beside him, preventing Prince +Andrew from seeing his face, moved away. + +"My God! What is this? Why is he here?" said Prince Andrew to +himself. + +In the miserable, sobbing, enfeebled man whose leg had just been +amputated, he recognized Anatole Kuragin. Men were supporting him in +their arms and offering him a glass of water, but his trembling, +swollen lips could not grasp its rim. Anatole was sobbing painfully. +"Yes, it is he! Yes, that man is somehow closely and painfully +connected with me," thought Prince Andrew, not yet clearly grasping +what he saw before him. "What is the connection of that man with my +childhood and life?" he asked himself without finding an answer. And +suddenly a new unexpected memory from that realm of pure and loving +childhood presented itself to him. He remembered Natasha as he had +seen her for the first time at the ball in 1810, with her slender neck +and arms and with a frightened happy face ready for rapture, and +love and tenderness for her, stronger and more vivid than ever, +awoke in his soul. He now remembered the connection that existed +between himself and this man who was dimly gazing at him through tears +that filled his swollen eyes. He remembered everything, and ecstatic +pity and love for that man overflowed his happy heart. + +Prince Andrew could no longer restrain himself and wept tender +loving tears for his fellow men, for himself, and for his own and +their errors. + +"Compassion, love of our brothers, for those who love us and for +those who hate us, love of our enemies; yes, that love which God +preached on earth and which Princess Mary taught me and I did not +understand--that is what made me sorry to part with life, that is what +remained for me had I lived. But now it is too late. I know it!" + + + + + +CHAPTER XXXVIII + + +The terrible spectacle of the battlefield covered with dead and +wounded, together with the heaviness of his head and the news that +some twenty generals he knew personally had been killed or wounded, +and the consciousness of the impotence of his once mighty arm, +produced an unexpected impression on Napoleon who usually liked to +look at the killed and wounded, thereby, he considered, testing his +strength of mind. This day the horrible appearance of the +battlefield overcame that strength of mind which he thought +constituted his merit and his greatness. He rode hurriedly from the +battlefield and returned to the Shevardino knoll, where he sat on +his campstool, his sallow face swollen and heavy, his eyes dim, his +nose red, and his voice hoarse, involuntarily listening, with downcast +eyes, to the sounds of firing. With painful dejection he awaited the +end of this action, in which he regarded himself as a participant +and which he was unable to arrest. A personal, human feeling for a +brief moment got the better of the artificial phantasm of life he +had served so long. He felt in his own person the sufferings and death +he had witnessed on the battlefield. The heaviness of his head and +chest reminded him of the possibility of suffering and death for +himself. At that moment he did not desire Moscow, or victory, or glory +(what need had he for any more glory?). The one thing he wished for +was rest, tranquillity, and freedom. But when he had been on the +Semenovsk heights the artillery commander had proposed to him to bring +several batteries of artillery up to those heights to strengthen the +fire on the Russian troops crowded in front of Knyazkovo. Napoleon had +assented and had given orders that news should be brought to him of +the effect those batteries produced. + +An adjutant came now to inform him that the fire of two hundred guns +had been concentrated on the Russians, as he had ordered, but that +they still held their ground. + +"Our fire is mowing them down by rows, but still they hold on," said +the adjutant. + +"They want more!..." said Napoleon in a hoarse voice. + +"Sire?" asked the adjutant who had not heard the remark. + +"They want more!" croaked Napoleon frowning. "Let them have it!" + +Even before he gave that order the thing he did not desire, and +for which he gave the order only because he thought it was expected of +him, was being done. And he fell back into that artificial realm of +imaginary greatness, and again--as a horse walking a treadmill +thinks it is doing something for itself--he submissively fulfilled the +cruel, sad, gloomy, and inhuman role predestined for him. + +And not for that day and hour alone were the mind and conscience +darkened of this man on whom the responsibility for what was happening +lay more than on all the others who took part in it. Never to the +end of his life could he understand goodness, beauty, or truth, or the +significance of his actions which were too contrary to goodness and +truth, too remote from everything human, for him ever to be able to +grasp their meaning. He could not disavow his actions, belauded as +they were by half the world, and so he had to repudiate truth, +goodness, and all humanity. + +Not only on that day, as he rode over the battlefield strewn with +men killed and maimed (by his will as he believed), did he reckon as +he looked at them how many Russians there were for each Frenchman and, +deceiving himself, find reason for rejoicing in the calculation that +there were five Russians for every Frenchman. Not on that day alone +did he write in a letter to Paris that "the battle field was +superb," because fifty thousand corpses lay there, but even on the +island of St. Helena in the peaceful solitude where he said he +intended to devote his leisure to an account of the great deeds he had +done, he wrote: + + +The Russian war should have been the most popular war of modern +times: it was a war of good sense, for real interests, for the +tranquillity and security of all; it was purely pacific and +conservative. + +It was a war for a great cause, the end of uncertainties and the +beginning of security. A new horizon and new labors were opening +out, full of well-being and prosperity for all. The European system +was already founded; all that remained was to organize it. + +Satisfied on these great points and with tranquility everywhere, I +too should have had my Congress and my Holy Alliance. Those ideas were +stolen from me. In that reunion of great sovereigns we should have +discussed our interests like one family, and have rendered account +to the peoples as clerk to master. + +Europe would in this way soon have been, in fact, but one people, +and anyone who traveled anywhere would have found himself always in +the common fatherland. I should have demanded the freedom of all +navigable rivers for everybody, that the seas should be common to all, +and that the great standing armies should be reduced henceforth to +mere guards for the sovereigns. + +On returning to France, to the bosom of the great, strong, +magnificent, peaceful, and glorious fatherland, I should have +proclaimed her frontiers immutable; all future wars purely +defensive, all aggrandizement antinational. I should have associated +my son in the Empire; my dictatorship would have been finished, and +his constitutional reign would have begun. + +Paris would have been the capital of the world, and the French the +envy of the nations! + +My leisure then, and my old age, would have been devoted, in company +with the Empress and during the royal apprenticeship of my son, to +leisurely visiting, with our own horses and like a true country +couple, every corner of the Empire, receiving complaints, redressing +wrongs, and scattering public buildings and benefactions on all +sides and everywhere. + + +Napoleon, predestined by Providence for the gloomy role of +executioner of the peoples, assured himself that the aim of his +actions had been the peoples' welfare and that he could control the +fate of millions and by the employment of power confer benefactions. + + +"Of four hundred thousand who crossed the Vistula," he wrote further +of the Russian war, "half were Austrians, Prussians, Saxons, Poles, +Bavarians, Wurttembergers, Mecklenburgers, Spaniards, Italians, and +Neapolitans. The Imperial army, strictly speaking, was one third +composed of Dutch, Belgians, men from the borders of the Rhine, +Piedmontese, Swiss, Genevese, Tuscans, Romans, inhabitants of the +Thirty-second Military Division, of Bremen, of Hamburg, and so on: +it included scarcely a hundred and forty thousand who spoke French. +The Russian expedition actually cost France less than fifty thousand +men; the Russian army in its retreat from Vilna to Moscow lost in +the various battles four times more men than the French army; the +burning of Moscow cost the lives of a hundred thousand Russians who +died of cold and want in the woods; finally, in its march from +Moscow to the Oder the Russian army also suffered from the severity of +the season; so that by the the time it reached Vilna it numbered +only fifty thousand, and at Kalisch less than eighteen thousand." + + +He imagined that the war with Russia came about by his will, and the +horrors that occurred did not stagger his soul. He boldly took the +whole responsibility for what happened, and his darkened mind found +justification in the belief that among the hundreds of thousands who +perished there were fewer Frenchmen than Hessians and Bavarians. + + + + + +CHAPTER XXXIX + + +Several tens of thousands of the slain lay in diverse postures and +various uniforms on the fields and meadows belonging to the Davydov +family and to the crown serfs--those fields and meadows where for +hundreds of years the peasants of Borodino, Gorki, Shevardino, and +Semenovsk had reaped their harvests and pastured their cattle. At +the dressing stations the grass and earth were soaked with blood for a +space of some three acres around. Crowds of men of various arms, +wounded and unwounded, with frightened faces, dragged themselves +back to Mozhaysk from the one army and back to Valuevo from the other. +Other crowds, exhausted and hungry, went forward led by their +officers. Others held their ground and continued to fire. + +Over the whole field, previously so gaily beautiful with the glitter +of bayonets and cloudlets of smoke in the morning sun, there now +spread a mist of damp and smoke and a strange acid smell of +saltpeter and blood. Clouds gathered and drops of rain began to fall +on the dead and wounded, on the frightened, exhausted, and +hesitating men, as if to say: "Enough, men! Enough! Cease... bethink +yourselves! What are you doing?" + +To the men of both sides alike, worn out by want of food and rest, +it began equally to appear doubtful whether they should continue to +slaughter one another; all the faces expressed hesitation, and the +question arose in every soul: "For what, for whom, must I kill and +be killed?... You may go and kill whom you please, but I don't want to +do so anymore!" By evening this thought had ripened in every soul. +At any moment these men might have been seized with horror at what +they were doing and might have thrown up everything and run away +anywhere. + +But though toward the end of the battle the men felt all the +horror of what they were doing, though they would have been glad to +leave off, some incomprehensible, mysterious power continued to +control them, and they still brought up the charges, loaded, aimed, +and applied the match, though only one artilleryman survived out of +every three, and though they stumbled and panted with fatigue, +perspiring and stained with blood and powder. The cannon balls flew +just as swiftly and cruelly from both sides, crushing human bodies, +and that terrible work which was not done by the will of a man but +at the will of Him who governs men and worlds continued. + +Anyone looking at the disorganized rear of the Russian army would +have said that, if only the French made one more slight effort, it +would disappear; and anyone looking at the rear of the French army +would have said that the Russians need only make one more slight +effort and the French would be destroyed. But neither the French nor +the Russians made that effort, and the flame of battle burned slowly +out. + +The Russians did not make that effort because they were not +attacking the French. At the beginning of the battle they stood +blocking the way to Moscow and they still did so at the end of the +battle as at the beginning. But even had the aim of the Russians +been to drive the French from their positions, they could not have +made this last effort, for all the Russian troops had been broken +up, there was no part of the Russian army that had not suffered in the +battle, and though still holding their positions they had lost ONE +HALF of their army. + +The French, with the memory of all their former victories during +fifteen years, with the assurance of Napoleon's invincibility, with +the consciousness that they had captured part of the battlefield and +had lost only a quarter of their men and still had their Guards +intact, twenty thousand strong, might easily have made that effort. +The French had attacked the Russian army in order to drive it from its +position ought to have made that effort, for as long as the Russians +continued to block the road to Moscow as before, the aim of the French +had not been attained and all their efforts and losses were in vain. +But the French did not make that effort. Some historians say that +Napoleon need only have used his Old Guards, who were intact, and +the battle would have been won. To speak of what would have happened +had Napoleon sent his Guards is like talking of what would happen if +autumn became spring. It could not be. Napoleon did not give his +Guards, not because he did not want to, but because it could not be +done. All the generals, officers, and soldiers of the French army knew +it could not be done, because the flagging spirit of the troops +would not permit it. + +It was not Napoleon alone who had experienced that nightmare feeling +of the mighty arm being stricken powerless, but all the generals and +soldiers of his army whether they had taken part in the battle or not, +after all their experience of previous battles--when after one tenth +of such efforts the enemy had fled--experienced a similar feeling of +terror before an enemy who, after losing HALF his men, stood as +threateningly at the end as at the beginning of the battle. The +moral force of the attacking French army was exhausted. Not that +sort of victory which is defined by the capture of pieces of +material fastened to sticks, called standards, and of the ground on +which the troops had stood and were standing, but a moral victory that +convinces the enemy of the moral superiority of his opponent and of +his own impotence was gained by the Russians at Borodino. The French +invaders, like an infuriated animal that has in its onslaught received +a mortal wound, felt that they were perishing, but could not stop, any +more than the Russian army, weaker by one half, could help swerving. +By impetus gained, the French army was still able to roll forward to +Moscow, but there, without further effort on the part of the Russians, +it had to perish, bleeding from the mortal wound it had received at +Borodino. The direct consequence of the battle of Borodino was +Napoleon's senseless flight from Moscow, his retreat along the old +Smolensk road, the destruction of the invading army of five hundred +thousand men, and the downfall of Napoleonic France, on which at +Borodino for the first time the hand of an opponent of stronger spirit +had been laid. + + + + + +BOOK ELEVEN: 1812 + + + + + +CHAPTER I + + +Absolute continuity of motion is not comprehensible to the human +mind. Laws of motion of any kind become comprehensible to man only +when he examines arbitrarily selected elements of that motion; but +at the same time, a large proportion of human error comes from the +arbitrary division of continuous motion into discontinuous elements. +There is a well known, so-called sophism of the ancients consisting in +this, that Achilles could never catch up with a tortoise he was +following, in spite of the fact that he traveled ten times as fast +as the tortoise. By the time Achilles has covered the distance that +separated him from the tortoise, the tortoise has covered one tenth of +that distance ahead of him: when Achilles has covered that tenth, +the tortoise has covered another one hundredth, and so on forever. +This problem seemed to the ancients insoluble. The absurd answer (that +Achilles could never overtake the tortoise) resulted from this: that +motion was arbitrarily divided into discontinuous elements, whereas +the motion both of Achilles and of the tortoise was continuous. + +By adopting smaller and smaller elements of motion we only +approach a solution of the problem, but never reach it. Only when we +have admitted the conception of the infinitely small, and the +resulting geometrical progression with a common ratio of one tenth, +and have found the sum of this progression to infinity, do we reach +a solution of the problem. + +A modern branch of mathematics having achieved the art of dealing +with the infinitely small can now yield solutions in other more +complex problems of motion which used to appear insoluble. + +This modern branch of mathematics, unknown to the ancients, when +dealing with problems of motion admits the conception of the +infinitely small, and so conforms to the chief condition of motion +(absolute continuity) and thereby corrects the inevitable error +which the human mind cannot avoid when it deals with separate elements +of motion instead of examining continuous motion. + +In seeking the laws of historical movement just the same thing +happens. The movement of humanity, arising as it does from innumerable +arbitrary human wills, is continuous. + +To understand the laws of this continuous movement is the aim of +history. But to arrive at these laws, resulting from the sum of all +those human wills, man's mind postulates arbitrary and disconnected +units. The first method of history is to take an arbitrarily +selected series of continuous events and examine it apart from others, +though there is and can be no beginning to any event, for one event +always flows uninterruptedly from another. + +The second method is to consider the actions of some one man--a king +or a commander--as equivalent to the sum of many individual wills; +whereas the sum of individual wills is never expressed by the activity +of a single historic personage. + +Historical science in its endeavor to draw nearer to truth +continually takes smaller and smaller units for examination. But +however small the units it takes, we feel that to take any unit +disconnected from others, or to assume a beginning of any +phenomenon, or to say that the will of many men is expressed by the +actions of any one historic personage, is in itself false. + +It needs no critical exertion to reduce utterly to dust any +deductions drawn from history. It is merely necessary to select some +larger or smaller unit as the subject of observation--as criticism has +every right to do, seeing that whatever unit history observes must +always be arbitrarily selected. + +Only by taking infinitesimally small units for observation (the +differential of history, that is, the individual tendencies of men) +and attaining to the art of integrating them (that is, finding the sum +of these infinitesimals) can we hope to arrive at the laws of history. + +The first fifteen years of the nineteenth century in Europe +present an extraordinary movement of millions of people. Men leave +their customary pursuits, hasten from one side of Europe to the other, +plunder and slaughter one another, triumph and are plunged in despair, +and for some years the whole course of life is altered and presents an +intensive movement which first increases and then slackens. What was +the cause of this movement, by what laws was it governed? asks the +mind of man. + +The historians, replying to this question, lay before us the sayings +and doings of a few dozen men in a building in the city of Paris, +calling these sayings and doings "the Revolution"; then they give a +detailed biography of Napoleon and of certain people favorable or +hostile to him; tell of the influence some of these people had on +others, and say: that is why this movement took place and those are +its laws. + +But the mind of man not only refuses to believe this explanation, +but plainly says that this method of explanation is fallacious, +because in it a weaker phenomenon is taken as the cause of a stronger. +The sum of human wills produced the Revolution and Napoleon, and +only the sum of those wills first tolerated and then destroyed them. + +"But every time there have been conquests there have been +conquerors; every time there has been a revolution in any state +there have been great men," says history. And, indeed, human reason +replies: every time conquerors appear there have been wars, but this +does not prove that the conquerors caused the wars and that it is +possible to find the laws of a war in the personal activity of a +single man. Whenever I look at my watch and its hands point to ten, +I hear the bells of the neighboring church; but because the bells +begin to ring when the hands of the clock reach ten, I have no right +to assume that the movement of the bells is caused by the position +of the hands of the watch. + +Whenever I see the movement of a locomotive I hear the whistle and +see the valves opening and wheels turning; but I have no right to +conclude that the whistling and the turning of wheels are the cause of +the movement of the engine. + +The peasants say that a cold wind blows in late spring because the +oaks are budding, and really every spring cold winds do blow when +the oak is budding. But though I do not know what causes the cold +winds to blow when the oak buds unfold, I cannot agree with the +peasants that the unfolding of the oak buds is the cause of the cold +wind, for the force of the wind is beyond the influence of the buds. I +see only a coincidence of occurrences such as happens with all the +phenomena of life, and I see that however much and however carefully I +observe the hands of the watch, and the valves and wheels of the +engine, and the oak, I shall not discover the cause of the bells +ringing, the engine moving, or of the winds of spring. To that I +must entirely change my point of view and study the laws of the +movement of steam, of the bells, and of the wind. History must do +the same. And attempts in this direction have already been made. + +To study the laws of history we must completely change the subject +of our observation, must leave aside kings, ministers, and generals, +and the common, infinitesimally small elements by which the masses are +moved. No one can say in how far it is possible for man to advance +in this way toward an understanding of the laws of history; but it +is evident that only along that path does the possibility of +discovering the laws of history lie, and that as yet not a millionth +part as much mental effort has been applied in this direction by +historians as has been devoted to describing the actions of various +kings, commanders, and ministers and propounding the historians' own +reflections concerning these actions. + + + + + +CHAPTER II + + +The forces of a dozen European nations burst into Russia. The +Russian army and people avoided a collision till Smolensk was reached, +and again from Smolensk to Borodino. The French army pushed on to +Moscow, its goal, its impetus ever increasing as it neared its aim, +just as the velocity of a falling body increases as it approaches +the earth. Behind it were seven hundred miles of hunger-stricken, +hostile country; ahead were a few dozen miles separating it from its +goal. Every soldier in Napoleon's army felt this and the invasion +moved on by its own momentum. + +The more the Russian army retreated the more fiercely a spirit of +hatred of the enemy flared up, and while it retreated the army +increased and consolidated. At Borodino a collision took place. +Neither army was broken up, but the Russian army retreated immediately +after the collision as inevitably as a ball recoils after colliding +with another having a greater momentum, and with equal inevitability +the ball of invasion that had advanced with such momentum rolled on +for some distance, though the collision had deprived it of all its +force. + +The Russians retreated eighty miles--to beyond Moscow--and the +French reached Moscow and there came to a standstill. For five weeks +after that there was not a single battle. The French did not move. +As a bleeding, mortally wounded animal licks its wounds, they remained +inert in Moscow for five weeks, and then suddenly, with no fresh +reason, fled back: they made a dash for the Kaluga road, and (after +a victory--for at Malo-Yaroslavets the field of conflict again +remained theirs) without undertaking a single serious battle, they +fled still more rapidly back to Smolensk, beyond Smolensk, beyond +the Berezina, beyond Vilna, and farther still. + +On the evening of the twenty-sixth of August, Kutuzov and the +whole Russian army were convinced that the battle of Borodino was a +victory. Kutuzov reported so to the Emperor. He gave orders to prepare +for a fresh conflict to finish the enemy and did this not to deceive +anyone, but because he knew that the enemy was beaten, as everyone who +had taken part in the battle knew it. + +But all that evening and next day reports came in one after +another of unheard-of losses, of the loss of half the army, and a +fresh battle proved physically impossible. + +It was impossible to give battle before information had been +collected, the wounded gathered in, the supplies of ammunition +replenished, the slain reckoned up, new officers appointed to +replace those who had been killed, and before the men had had food and +sleep. And meanwhile, the very next morning after the battle, the +French army advanced of itself upon the Russians, carried forward by +the force of its own momentum now seemingly increased in inverse +proportion to the square of the distance from its aim. Kutuzov's +wish was to attack next day, and the whole army desired to do so. +But to make an attack the wish to do so is not sufficient, there +must also be a possibility of doing it, and that possibility did not +exist. It was impossible not to retreat a day's march, and then in the +same way it was impossible not to retreat another and a third day's +march, and at last, on the first of September when the army drew +near Moscow--despite the strength of the feeling that had arisen in +all ranks--the force of circumstances compelled it to retire beyond +Moscow. And the troops retired one more, last, day's march, and +abandoned Moscow to the enemy. + +For people accustomed to think that plans of campaign and battles +are made by generals--as any one of us sitting over a map in his study +may imagine how he would have arranged things in this or that +battle--the questions present themselves: Why did Kutuzov during the +retreat not do this or that? Why did he not take up a position +before reaching Fili? Why did he not retire at once by the Kaluga +road, abandoning Moscow? and so on. People accustomed to think in that +way forget, or do not know, the inevitable conditions which always +limit the activities of any commander in chief. The activity of a +commander in chief does not all resemble the activity we imagine to +ourselves when we sit at case in our studies examining some campaign +on the map, with a certain number of troops on this and that side in a +certain known locality, and begin our plans from some given moment. +A commander in chief is never dealing with the beginning of any event- +the position from which we always contemplate it. The commander in +chief is always in the midst of a series of shifting events and so +he never can at any moment consider the whole import of an event +that is occurring. Moment by moment the event is imperceptibly shaping +itself, and at every moment of this continuous, uninterrupted +shaping of events the commander in chief is in the midst of a most +complex play of intrigues, worries, contingencies, authorities, +projects, counsels, threats, and deceptions and is continually obliged +to reply to innumerable questions addressed to him, which constantly +conflict with one another. + +Learned military authorities quite seriously tell us that Kutuzov +should have moved his army to the Kaluga road long before reaching +Fili, and that somebody actually submitted such a proposal to him. But +a commander in chief, especially at a difficult moment, has always +before him not one proposal but dozens simultaneously. And all these +proposals, based on strategics and tactics, contradict each other. + +A commander in chief's business, it would seem, is simply to +choose one of these projects. But even that he cannot do. Events and +time do not wait. For instance, on the twenty-eighth it is suggested +to him to cross to the Kaluga road, but just then an adjutant +gallops up from Miloradovich asking whether he is to engage the French +or retire. An order must be given him at once, that instant. And the +order to retreat carries us past the turn to the Kaluga road. And +after the adjutant comes the commissary general asking where the +stores are to be taken, and the chief of the hospitals asks where +the wounded are to go, and a courier from Petersburg brings a letter +from the sovereign which does not admit of the possibility of +abandoning Moscow, and the commander in chief's rival, the man who +is undermining him (and there are always not merely one but several +such), presents a new project diametrically opposed to that of turning +to the Kaluga road, and the commander in chief himself needs sleep and +refreshment to maintain his energy and a respectable general who has +been overlooked in the distribution of rewards comes to complain, +and the inhabitants of the district pray to be defended, and an +officer sent to inspect the locality comes in and gives a report quite +contrary to what was said by the officer previously sent; and a spy, a +prisoner, and a general who has been on reconnaissance, all describe +the position of the enemy's army differently. People accustomed to +misunderstand or to forget these inevitable conditions of a +commander in chief's actions describe to us, for instance, the +position of the army at Fili and assume that the commander in chief +could, on the first of September, quite freely decide whether to +abandon Moscow or defend it; whereas, with the Russian army less +than four miles from Moscow, no such question existed. When had that +question been settled? At Drissa and at Smolensk and most palpably +of all on the twenty-fourth of August at Shevardino and on the +twenty-sixth at Borodino, and each day and hour and minute of the +retreat from Borodino to Fili. + + + + + +CHAPTER III + + +When Ermolov, having been sent by Kutuzov to inspect the position, +told the field marshal that it was impossible to fight there before +Moscow and that they must retreat, Kutuzov looked at him in silence. + +"Give me your hand," said he and, turning it over so as to feel +the pulse, added: "You are not well, my dear fellow. Think what you +are saying!" + +Kutuzov could not yet admit the possibility of retreating beyond +Moscow without a battle. + +On the Poklonny Hill, four miles from the Dorogomilov gate of +Moscow, Kutuzov got out of his carriage and sat down on a bench by the +roadside. A great crowd of generals gathered round him, and Count +Rostopchin, who had come out from Moscow, joined them. This +brilliant company separated into several groups who all discussed +the advantages and disadvantages of the position, the state of the +army, the plans suggested, the situation of Moscow, and military +questions generally. Though they had not been summoned for the +purpose, and though it was not so called, they all felt that this +was really a council of war. The conversations all dealt with public +questions. If anyone gave or asked for personal news, it was done in a +whisper and they immediately reverted to general matters. No jokes, or +laughter, or smiles even, were seen among all these men. They +evidently all made an effort to hold themselves at the height the +situation demanded. And all these groups, while talking among +themselves, tried to keep near the commander in chief (whose bench +formed the center of the gathering) and to speak so that he might +overhear them. The commander in chief listened to what was being +said and sometimes asked them to repeat their remarks, but did not +himself take part in the conversations or express any opinion. After +hearing what was being said by one or other of these groups he +generally turned away with an air of disappointment, as though they +were not speaking of anything he wished to hear. Some discussed the +position that had been chosen, criticizing not the position itself +so much as the mental capacity of those who had chosen it. Others +argued that a mistake had been made earlier and that a battle should +have been fought two days before. Others again spoke of the battle +of Salamanca, which was described by Crosart, a newly arrived +Frenchman in a Spanish uniform. (This Frenchman and one of the +German princes serving with the Russian army were discussing the siege +of Saragossa and considering the possibility of defending Moscow in +a similar manner.) Count Rostopchin was telling a fourth group that he +was prepared to die with the city train bands under the walls of the +capital, but that he still could not help regretting having been +left in ignorance of what was happening, and that had he known it +sooner things would have been different.... A fifth group, +displaying the profundity of their strategic perceptions, discussed +the direction the troops would now have to take. A sixth group was +talking absolute nonsense. Kutuzov's expression grew more and more +preoccupied and gloomy. From all this talk he saw only one thing: that +to defend Moscow was a physical impossibility in the full meaning of +those words, that is to say, so utterly impossible that if any +senseless commander were to give orders to fight, confusion would +result but the battle would still not take place. It would not take +place because the commanders not merely all recognized the position to +be impossible, but in their conversations were only discussing what +would happen after its inevitable abandonment. How could the +commanders lead their troops to a field of battle they considered +impossible to hold? The lower-grade officers and even the soldiers +(who too reason) also considered the position impossible and therefore +could not go to fight, fully convinced as they were of defeat. If +Bennigsen insisted on the position being defended and others still +discussed it, the question was no longer important in itself but +only as a pretext for disputes and intrigue. This Kutuzov knew well. + +Bennigsen, who had chosen the position, warmly displayed his Russian +patriotism (Kutuzov could not listen to this without wincing) by +insisting that Moscow must be defended. His aim was as clear as +daylight to Kutuzov: if the defense failed, to throw the blame on +Kutuzov who had brought the army as far as the Sparrow Hills without +giving battle; if it succeeded, to claim the success as his own; or if +battle were not given, to clear himself of the crime of abandoning +Moscow. But this intrigue did not now occupy the old man's mind. One +terrible question absorbed him and to that question he heard no +reply from anyone. The question for him now was: "Have I really +allowed Napoleon to reach Moscow, and when did I do so? When was it +decided? Can it have been yesterday when I ordered Platov to +retreat, or was it the evening before, when I had a nap and told +Bennigsen to issue orders? Or was it earlier still?... When, when +was this terrible affair decided? Moscow must be abandoned. The army +must retreat and the order to do so must be given." To give that +terrible order seemed to him equivalent to resigning the command of +the army. And not only did he love power to which he was accustomed +(the honours awarded to Prince Prozorovski, under whom he had served +in Turkey, galled him), but he was convinced that he was destined to +save Russia and that that was why, against the Emperor's wish and by +the will of the people, he had been chosen commander in chief. He +was convinced that he alone could maintain command of the army in +these difficult circumstances, and that in all the world he alone +could encounter the invincible Napoleon without fear, and he was +horrified at the thought of the order he had to issue. But something +had to be decided, and these conversations around him which were +assuming too free a character must be stopped. + +He called the most important generals to him. + +"My head, be it good or bad, must depend on itself," said he, rising +from the bench, and he rode to Fili where his carriages were waiting. + + + + + +CHAPTER IV + + +The Council of War began to assemble at two in the afternoon in +the better and roomier part of Andrew Savostyanov's hut. The men, +women, and children of the large peasant family crowded into the +back room across the passage. Only Malasha, Andrew's six-year-old +granddaughter whom his Serene Highness had petted and to whom he had +given a lump of sugar while drinking his tea, remained on the top of +the brick oven in the larger room. Malasha looked down from the oven +with shy delight at the faces, uniforms, and decorations of the +generals, who one after another came into the room and sat down on the +broad benches in the corner under the icons. "Granddad" himself, as +Malasha in her own mind called Kutuzov, sat apart in a dark corner +behind the oven. He sat, sunk deep in a folding armchair, and +continually cleared his throat and pulled at the collar of his coat +which, though it was unbuttoned, still seemed to pinch his neck. Those +who entered went up one by one to the field marshal; he pressed the +hands of some and nodded to others. His adjutant Kaysarov was about to +draw back the curtain of the window facing Kutuzov, but the latter +moved his hand angrily and Kaysarov understood that his Serene +Highness did not wish his face to be seen. + +Round the peasant's deal table, on which lay maps, plans, pencils, +and papers, so many people gathered that the orderlies brought in +another bench and put it beside the table. Ermolov, Kaysarov, and +Toll, who had just arrived, sat down on this bench. In the foremost +place, immediately under the icons, sat Barclay de Tolly, his high +forehead merging into his bald crown. He had a St. George's Cross +round his neck and looked pale and ill. He had been feverish for two +days and was now shivering and in pain. Beside him sat Uvarov, who +with rapid gesticulations was giving him some information, speaking in +low tones as they all did. Chubby little Dokhturov was listening +attentively with eyebrows raised and arms folded on his stomach. On +the other side sat Count Ostermann-Tolstoy, seemingly absorbed in +his own thoughts. His broad head with its bold features and glittering +eyes was resting on his hand. Raevski, twitching forward the black +hair on his temples as was his habit, glanced now at Kutuzov and now +at the door with a look of impatience. Konovnitsyn's firm, handsome, +and kindly face was lit up by a tender, sly smile. His glance met +Malasha's, and the expression of his eyes caused the little girl to +smile. + +They were all waiting for Bennigsen, who on the pretext of +inspecting the position was finishing his savory dinner. They waited +for him from four till six o'clock and did not begin their +deliberations all that time talked in low tones of other matters. + +Only when Bennigsen had entered the hut did Kutuzov leave his corner +and draw toward the table, but not near enough for the candles that +had been placed there to light up his face. + +Bennigsen opened the council with the question: "Are we to abandon +Russia's ancient and sacred capital without a struggle, or are we to +defend it?" A prolonged and general silence followed. There was a +frown on every face and only Kutuzov's angry grunts and occasional +cough broke the silence. All eyes were gazing at him. Malasha too +looked at "Granddad." She was nearest to him and saw how his face +puckered; he seemed about to cry, but this did not last long. + +"Russia's ancient and sacred capital!" he suddenly said, repeating +Bennigsen's words in an angry voice and thereby drawing attention to +the false note in them. "Allow me to tell you, your excellency, that +that question has no meaning for a Russian." (He lurched his heavy +body forward.) "Such a question cannot be put; it is senseless! The +question I have asked these gentlemen to meet to discuss is a military +one. The question is that of saving Russia. Is it better to give up +Moscow without a battle, or by accepting battle to risk losing the +army as well as Moscow? That is the question on which I want your +opinion," and he sank back in his chair. + +The discussion began. Bennigsen did not yet consider his game +lost. Admitting the view of Barclay and others that a defensive battle +at Fili was impossible, but imbued with Russian patriotism and the +love of Moscow, he proposed to move troops from the right to the +left flank during the night and attack the French right flank the +following day. Opinions were divided, and arguments were advanced +for and against that project. Ermolov, Dokhturov, and Raevski agreed +with Bennigsen. Whether feeling it necessary to make a sacrifice +before abandoning the capital or guided by other, personal +considerations, these generals seemed not to understand that this +council could not alter the inevitable course of events and that +Moscow was in effect already abandoned. The other generals, however, +understood it and, leaving aside the question of Moscow, of the +direction the army should take in its retreat. Malasha, who kept her +eyes fixed on what was going on before her, understood the meaning +of the council differently. It seemed to her that it was only a +personal struggle between "Granddad" and "Long-coat" as she termed +Bennigsen. She saw that they grew spiteful when they spoke to one +another, and in her heart she sided with "Granddad." In the midst of +the conversation she noticed "Granddad" give Bennigsen a quick, subtle +glance, and then to her joys he saw that "Granddad" said something +to "Long-coat" which settled him. Bennigsen suddenly reddened and +paced angrily up and down the room. What so affected him was Kutuzov's +calm and quiet comment on the advantage or disadvantage of Bennigsen's +proposal to move troops by night from the right to the left flank to +attack the French right wing. + +"Gentlemen," said Kutuzov, "I cannot approve of the count's plan. +Moving troops in close proximity to an enemy is always dangerous, +and military history supports that view. For instance..." Kutuzov +seemed to reflect, searching for an example, then with a clear, +naive look at Bennigsen he added: "Oh yes; take the battle of +Friedland, which I think the count well remembers, and which was... +not fully successful, only because our troops were rearranged too near +the enemy..." + +There followed a momentary pause, which seemed very long to them +all. + +The discussion recommenced, but pauses frequently occurred and +they all felt that there was no more to be said. + +During one of these pauses Kutuzov heaved a deep sigh as if +preparing to speak. They all looked at him. + +"Well, gentlemen, I see that it is I who will have to pay for the +broken crockery," said he, and rising slowly he moved to the table. +"Gentlemen, I have heard your views. Some of you will not agree with +me. But I," he paused, "by the authority entrusted to me by my +Sovereign and country, order a retreat." + +After that the generals began to disperse with the solemnity and +circumspect silence of people who are leaving, after a funeral. + +Some of the generals, in low tones and in a strain very different +from the way they had spoken during the council, communicated +something to their commander in chief. + +Malasha, who had long been expected for supper, climbed carefully +backwards down from the oven, her bare little feet catching at its +projections, and slipping between the legs of the generals she +darted out of the room. + +When he had dismissed the generals Kutuzov sat a long time with +his elbows on the table, thinking always of the same terrible +question: "When, when did the abandonment of Moscow become inevitable? +When was that done which settled the matter? And who was to blame +for it?" + +"I did not expect this," said he to his adjutant Schneider when +the latter came in late that night. "I did not expect this! I did +not think this would happen." + +"You should take some rest, your Serene Highness," replied +Schneider. + +"But no! They shall eat horseflesh yet, like the Turks!" exclaimed +Kutuzov without replying, striking the table with his podgy fist. +"They shall too, if only..." + + + + + +CHAPTER V + + +At that very time, in circumstances even more important than +retreating without a battle, namely the evacuation and burning of +Moscow, Rostopchin, who is usually represented as being the instigator +of that event, acted in an altogether different manner from Kutuzov. + +After the battle of Borodino the abandonment and burning of Moscow +was as inevitable as the retreat of the army beyond Moscow without +fighting. + +Every Russian might have predicted it, not by reasoning but by the +feeling implanted in each of us and in our fathers. + +The same thing that took place in Moscow had happened in all the +towns and villages on Russian soil beginning with Smolensk, without +the participation of Count Rostopchin and his broadsheets. The +people awaited the enemy unconcernedly, did not riot or become excited +or tear anyone to pieces, but faced its fate, feeling within it the +strength to find what it should do at that most difficult moment. +And as soon as the enemy drew near the wealthy classes went away +abandoning their property, while the poorer remained and burned and +destroyed what was left. + +The consciousness that this would be so and would always be so was +and is present in the heart of every Russian. And a consciousness of +this, and a foreboding that Moscow would be taken, was present in +Russian Moscow society in 1812. Those who had quitted Moscow already +in July and at the beginning of August showed that they expected this. +Those who went away, taking what they could and abandoning their +houses and half their belongings, did so from the latent patriotism +which expresses itself not by phrases or by giving one's children to +save the fatherland and similar unnatural exploits, but unobtrusively, +simply, organically, and therefore in the way that always produces the +most powerful results. + +"It is disgraceful to run away from danger; only cowards are running +away from Moscow," they were told. In his broadsheets Rostopchin +impressed on them that to leave Moscow was shameful. They were ashamed +to be called cowards, ashamed to leave, but still they left, knowing +it had to be done. Why did they go? It is impossible to suppose that +Rostopchin had scared them by his accounts of horrors Napoleon had +committed in conquered countries. The first people to go away were the +rich educated people who knew quite well that Vienna and Berlin had +remained intact and that during Napoleon's occupation the +inhabitants had spent their time pleasantly in the company of the +charming Frenchmen whom the Russians, and especially the Russian +ladies, then liked so much. + +They went away because for Russians there could be no question as to +whether things would go well or ill under French rule in Moscow. It +was out of the question to be under French rule, it would be the worst +thing that could happen. They went away even before the battle of +Borodino and still more rapidly after it, despite Rostopchin's calls +to defend Moscow or the announcement of his intention to take the +wonder-working icon of the Iberian Mother of God and go to fight, or +of the balloons that were to destroy the French, and despite all the +nonsense Rostopchin wrote in his broadsheets. They knew that it was +for the army to fight, and that if it could not succeed it would not +do to take young ladies and house serfs to the Three Hills quarter +of Moscow to fight Napoleon, and that they must go away, sorry as they +were to abandon their property to destruction. They went away +without thinking of the tremendous significance of that immense and +wealthy city being given over to destruction, for a great city with +wooden buildings was certain when abandoned by its inhabitants to be +burned. They went away each on his own account, and yet it was only in +consequence of their going away that the momentous event was +accomplished that will always remain the greatest glory of the Russian +people. The lady who, afraid of being stopped by Count Rostopchin's +orders, had already in June moved with her Negroes and her women +jesters from Moscow to her Saratov estate, with a vague +consciousness that she was not Bonaparte's servant, was really, +simply, and truly carrying out the great work which saved Russia. +But Count Rostopchin, who now taunted those who left Moscow and now +had the government offices removed; now distributed quite useless +weapons to the drunken rabble; now had processions displaying the +icons, and now forbade Father Augustin to remove icons or the relics +of saints; now seized all the private carts in Moscow and on one +hundred and thirty-six of them removed the balloon that was being +constructed by Leppich; now hinted that he would burn Moscow and +related how he had set fire to his own house; now wrote a proclamation +to the French solemnly upbraiding them for having destroyed his +Orphanage; now claimed the glory of having hinted that he would burn +Moscow and now repudiated the deed; now ordered the people to catch +all spies and bring them to him, and now reproached them for doing so; +now expelled all the French residents from Moscow, and now allowed +Madame Aubert-Chalme (the center of the whole French colony in Moscow) +to remain, but ordered the venerable old postmaster Klyucharev to be +arrested and exiled for no particular offense; now assembled the +people at the Three Hills to fight the French and now, to get rid of +them, handed over to them a man to be killed and himself drove away by +a back gate; now declared that he would not survive the fall of +Moscow, and now wrote French verses in albums concerning his share +in the affair--this man did not understand the meaning of what was +happening but merely wanted to do something himself that would +astonish people, to perform some patriotically heroic feat; and like a +child he made sport of the momentous, and unavoidable event--the +abandonment and burning of Moscow--and tried with his puny hand now to +speed and now to stay the enormous, popular tide that bore him along +with it. + + + + + +CHAPTER VI + + +Helene, having returned with the court from Vilna to Petersburg, +found herself in a difficult position. + +In Petersburg she had enjoyed the special protection of a grandee +who occupied one of the highest posts in the Empire. In Vilna she +had formed an intimacy with a young foreign prince. When she +returned to Petersburg both the magnate and the prince were there, and +both claimed their rights. Helene was faced by a new problem--how to +preserve her intimacy with both without offending either. + +What would have seemed difficult or even impossible to another woman +did not cause the least embarrassment to Countess Bezukhova, who +evidently deserved her reputation of being a very clever woman. Had +she attempted concealment, or tried to extricate herself from her +awkward position by cunning, she would have spoiled her case by +acknowledging herself guilty. But Helene, like a really great man +who can do whatever he pleases, at once assumed her own position to be +correct, as she sincerely believed it to be, and that everyone else +was to blame. + +The first time the young foreigner allowed himself to reproach +her, she lifted her beautiful head and, half turning to him, said +firmly: "That's just like a man--selfish and cruel! I expected nothing +else. A woman sacrifices herself for you, she suffers, and this is her +reward! What right have you, monseigneur, to demand an account of my +attachments and friendships? He is a man who has been more than a +father to me!" The prince was about to say something, but Helene +interrupted him. + +"Well, yes," said she, "it may be that he has other sentiments for +me than those of a father, but that is not a reason for me to shut +my door on him. I am not a man, that I should repay kindness with +ingratitude! Know, monseigneur, that in all that relates to my +intimate feelings I render account only to God and to my +conscience," she concluded, laying her hand on her beautiful, fully +expanded bosom and looking up to heaven. + +"But for heaven's sake listen to me!" + +"Marry me, and I will be your slave!" + +"But that's impossible." + +"You won't deign to demean yourself by marrying me, you..." said +Helene, beginning to cry. + +The prince tried to comfort her, but Helene, as if quite distraught, +said through her tears that there was nothing to prevent her marrying, +that there were precedents (there were up to that time very few, but +she mentioned Napoleon and some other exalted personages), that she +had never been her husband's wife, and that she had been sacrificed. + +"But the law, religion..." said the prince, already yielding. + +"The law, religion... What have they been invented for if they can't +arrange that?" said Helene. + +The prince was surprised that so simple an idea had not occurred +to him, and he applied for advice to the holy brethren of the +Society of Jesus, with whom he was on intimate terms. + +A few days later at one of those enchanting fetes which Helene +gave at her country house on the Stone Island, the charming Monsieur +de Jobert, a man no longer young, with snow white hair and brilliant +black eyes, a Jesuit a robe courte* was presented to her, and in the +garden by the light of the illuminations and to the sound of music +talked to her for a long time of the love of God, of Christ, of the +Sacred Heart, and of the consolations the one true Catholic religion +affords in this world and the next. Helene was touched, and more +than once tears rose to her eyes and to those of Monsieur de Jobert +and their voices trembled. A dance, for which her partner came to seek +her, put an end to her discourse with her future directeur de +conscience, but the next evening Monsieur de Jobert came to see Helene +when she was alone, and after that often came again. + + +*Lay member of the Society of Jesus. + + +One day he took the countess to a Roman Catholic church, where she +knelt down before the altar to which she was led. The enchanting, +middle-aged Frenchman laid his hands on her head and, as she herself +afterward described it, she felt something like a fresh breeze +wafted into her soul. It was explained to her that this was la grace. + +After that a long-frocked abbe was brought to her. She confessed +to him, and he absolved her from her sins. Next day she received a box +containing the Sacred Host, which was left at her house for her to +partake of. A few days later Helene learned with pleasure that she had +now been admitted to the true Catholic Church and that in a few days +the Pope himself would hear of her and would send her a certain +document. + +All that was done around her and to her at this time, all the +attention devoted to her by so many clever men and expressed in such +pleasant, refined ways, and the state of dove-like purity she was +now in (she wore only white dresses and white ribbons all that time) +gave her pleasure, but her pleasure did not cause her for a moment +to forget her aim. And as it always happens in contests of cunning +that a stupid person gets the better of cleverer ones, Helene- +having realized that the main object of all these words and all this +trouble was, after converting her to Catholicism, to obtain money from +her for Jesuit institutions (as to which she received indications)- +before parting with her money insisted that the various operations +necessary to free her from her husband should be performed. In her +view the aim of every religion was merely to preserve certain +proprieties while affording satisfaction to human desires. And with +this aim, in one of her talks with her Father Confessor, she +insisted on an answer to the question, in how far was she bound by her +marriage? + +They were sitting in the twilight by a window in the drawing room. +The scent of flowers came in at the window. Helene was wearing a white +dress, transparent over her shoulders and bosom. The abbe, a +well-fed man with a plump, clean-shaven chin, a pleasant firm mouth, +and white hands meekly folded on his knees, sat close to Helene and, +with a subtle smile on his lips and a peaceful look of delight at +her beauty, occasionally glanced at her face as he explained his +opinion on the subject. Helene with an uneasy smile looked at his +curly hair and his plump, clean-shaven, blackish cheeks and every +moment expected the conversation to take a fresh turn. But the abbe, +though he evidently enjoyed the beauty of his companion, was +absorbed in his mastery of the matter. + +The course of the Father Confessor's arguments ran as follows: +"Ignorant of the import of what you were undertaking, you made a vow +of conjugal fidelity to a man who on his part, by entering the married +state without faith in the religious significance of marriage, +committed an act of sacrilege. That marriage lacked the dual +significance it should have had. Yet in spite of this your vow was +binding. You swerved from it. What did you commit by so acting? A +venial, or a mortal, sin? A venial sin, for you acted without evil +intention. If now you married again with the object of bearing +children, your sin might be forgiven. But the question is again a +twofold one: firstly..." + +But suddenly Helene, who was getting bored, said with one of her +bewitching smiles: "But I think that having espoused the true religion +I cannot be bound by what a false religion laid upon me." + +The director of her conscience was astounded at having the case +presented to him thus with the simplicity of Columbus' egg. He was +delighted at the unexpected rapidity of his pupil's progress, but +could not abandon the edifice of argument he had laboriously +constructed. + +"Let us understand one another, Countess," said he with a smile, and +began refuting his spiritual daughter's arguments. + + + + + +CHAPTER VII + + +Helene understood that the question was very simple and easy from +the ecclesiastical point of view, and that her directors were making +difficulties only because they were apprehensive as to how the +matter would be regarded by the secular authorities. + +So she decided that it was necessary to prepare the opinion of +society. She provoked the jealousy of the elderly magnate and told him +what she had told her other suitor; that is, she put the matter so +that the only way for him to obtain a right over her was to marry her. +The elderly magnate was at first as much taken aback by this +suggestion of marriage with a woman whose husband was alive, as the +younger man had been, but Helene's imperturbable conviction that it +was as simple and natural as marrying a maiden had its effect on him +too. Had Helene herself shown the least sign of hesitation, shame, +or secrecy, her cause would certainly have been lost; but not only did +she show no signs of secrecy or shame, on the contrary, with +good-natured naivete she told her intimate friends (and these were all +Petersburg) that both the prince and the magnate had proposed to her +and that she loved both and was afraid of grieving either. + +A rumor immediately spread in Petersburg, not that Helene wanted +to be divorced from her husband (had such a report spread many would +have opposed so illegal an intention) but simply that the +unfortunate and interesting Helene was in doubt which of the two men +she should marry. The question was no longer whether this was +possible, but only which was the better match and how the matter would +be regarded at court. There were, it is true, some rigid individuals +unable to rise to the height of such a question, who saw in the +project a desecration of the sacrament of marriage, but there were not +many such and they remained silent, while the majority were interested +in Helene's good fortune and in the question which match would be +the more advantageous. Whether it was right or wrong to remarry +while one had a husband living they did not discuss, for that question +had evidently been settled by people "wiser than you or me," as they +said, and to doubt the correctness of that decision would be to risk +exposing one's stupidity and incapacity to live in society. + +Only Marya Dmitrievna Akhrosimova, had come to Petersburg that +summer to see one of her sons, allowed herself plainly to express an +opinion contrary to the general one. Meeting Helene at a ball she +stopped her in the middle of the room and, amid general silence, +said in her gruff voice: "So wives of living men have started marrying +again! Perhaps you think you have invented a novelty? You have been +forestalled, my dear! It was thought of long ago. It is done in all +the brothels," and with these words Marya Dmitrievna, turning up her +wide sleeves with her usual threatening gesture and glancing sternly +round, moved across the room. + +Though people were afraid of Marya Dmitrievna she was regarded in +Petersburg as a buffoon, and so of what she had said they only +noticed, and repeated in a whisper, the one coarse word she had +used, supposing the whole sting of her remark to lie in that word. + +Prince Vasili, who of late very often forgot what he had said and +repeated one and the same thing a hundred times, remarked to his +daughter whenever he chanced to see her: + +"Helene, I have a word to say to you," and he would lead her +aside, drawing her hand downward. "I have heard of certain projects +concerning... you know. Well my dear child, you know how your father's +heart rejoices to know that you... You have suffered so much.... +But, my dear child, consult only your own heart. That is all I have to +say," and concealing his unvarying emotion he would press his cheek +against his daughter's and move away. + +Bilibin, who had not lost his reputation of an exceedingly clever +man, and who was one of the disinterested friends so +brilliant a woman as Helene always has--men friends who can never +change into lovers--once gave her his view of the matter at a small +and intimate gathering. + +"Listen, Bilibin," said Helene (she always called friends of that +sort by their surnames), and she touched his coat sleeve with her +white, beringed fingers. "Tell me, as you would a sister, what I ought +to do. Which of the two?" + +Bilibin wrinkled up the skin over his eyebrows and pondered, with +a smile on his lips. + +"You are not taking me unawares, you know," said he. "As a true +friend, I have thought and thought again about your affair. You see, +if you marry the prince"--he meant the younger man--and he crooked one +finger, "you forever lose the chance of marrying the other, and you +will displease the court besides. (You know there is some kind of +connection.) But if you marry the old count you will make his last +days happy, and as widow of the Grand... the prince would no longer be +making a mesalliance by marrying you," and Bilibin smoothed out his +forehead. + +"That's a true friend!" said Helene beaming, and again touching +Bilibin's sleeve. "But I love them, you know, and don't want to +distress either of them. I would give my life for the happiness of +them both." + +Bilibin shrugged his shoulders, as much as to say that not even he +could help in that difficulty. + +"Une maitresse-femme!* That's what is called putting things +squarely. She would like to be married to all three at the same time," +thought he. + + +*A masterly woman. + + +"But tell me, how will your husband look at the matter?" Bilibin +asked, his reputation being so well established that he did not fear +to ask so naive a question. "Will he agree?" + +"Oh, he loves me so!" said Helene, who for some reason imagined that +Pierre too loved her. "He will do anything for me." + +Bilibin puckered his skin in preparation for something witty. + +"Even divorce you?" said he. + +Helene laughed. + +Among those who ventured to doubt the justifiability of the proposed +marriage was Helene's mother, Princess Kuragina. She was continually +tormented by jealousy of her daughter, and now that jealousy concerned +a subject near to her own heart, she could not reconcile herself to +the idea. She consulted a Russian priest as to the possibility of +divorce and remarriage during a husband's lifetime, and the priest +told her that it was impossible, and to her delight showed her a +text in the Gospel which (as it seemed to him) plainly remarriage +while the husband is alive. + +Armed with these arguments, which appeared to her unanswerable, +she drove to her daughter's early one morning so as to find her alone. + +Having listened to her mother's objections, Helene smiled blandly +and ironically. + +"But it says plainly: 'Whosoever shall marry her that is +divorced...'" said the old princess. + +"Ah, Maman, ne dites pas de betises. Vous ne comprenez rein. Dans ma +position j'ai des devoirs,"* said Helene changing from Russian, in +which language she always felt that her case did not sound quite +clear, into French which suited it better. + + +*"Oh, Mamma, don't talk nonsense! You don't understand anything. +In my position I have obligations. + + +"But, my dear...." + +"Oh, Mamma, how is it you don't understand that the Holy Father, who +has the right to grant dispensations..." + +Just then the lady companion who lived with Helene came in to +announce that His Highness was in the ballroom and wished to see her. + +"Non, dites-lui que je ne veux pas le voir, que je suis furieuse +contre lui, parce qu'il m' a manque parole."* + + +*"No, tell him I don't wish to see him, I am furious with him for +not keeping his word to me." + + +"Comtesse, a tout peche misericorde,"* said a fair-haired young +man with a long face and nose, as he entered the room. + + +*"Countess, there is mercy for every sin." + + +The old princess rose respectfully and curtsied. The young man who +had entered took no notice of her. The princess nodded to her daughter +and sidled out of the room. + +"Yes, she is right," thought the old princess, all her convictions +dissipated by the appearance of His Highness. "She is right, but how +is it that we in our irrecoverable youth did not know it? Yet it is so +simple," she thought as she got into her carriage. + + +By the beginning of August Helene's affairs were clearly defined and +she wrote a letter to her husband--who, as she imagined, loved her +very much--informing him of her intention to marry N.N. and of her +having embraced the one true faith, and asking him to carry out all +the formalities necessary for a divorce, which would be explained to +him by the bearer of the letter. + + +And so I pray God to have you, my friend, in His holy and powerful +keeping--Your friend Helene. + + +This letter was brought to Pierre's house when he was on the field +of Borodino. + + + + + +CHAPTER VIII + + +Toward the end of the battle of Borodino, Pierre, having run down +from Raevski's battery a second time, made his way through a gully +to Knyazkovo with a crowd of soldiers, reached the dressing station, +and seeing blood and hearing cries and groans hurried on, still +entangled in the crowds of soldiers. + +The one thing he now desired with his whole soul was to get away +quickly from the terrible sensations amid which he had lived that +day and return to ordinary conditions of life and sleep quietly in a +room in his own bed. He felt that only in the ordinary conditions of +life would he be able to understand himself and all he had seen and +felt. But such ordinary conditions of life were nowhere to be found. + +Though shells and bullets did not whistle over the road along +which he was going, still on all sides there was what there had been +on the field of battle. There were still the same suffering, +exhausted, and sometimes strangely indifferent faces, the same +blood, the same soldiers' overcoats, the same sounds of firing +which, though distant now, still aroused terror, and besides this +there were the foul air and the dust. + +Having gone a couple of miles along the Mozhaysk road, Pierre sat +down by the roadside. + +Dusk had fallen, and the roar of guns died away. Pierre lay +leaning on his elbow for a long time, gazing at the shadows that moved +past him in the darkness. He was continually imagining that a cannon +ball was flying toward him with a terrific whizz, and then he +shuddered and sat up. He had no idea how long he had been there. In +the middle of the night three soldiers, having brought some +firewood, settled down near him and began lighting a fire. + +The soldiers, who threw sidelong glances at Pierre, got the fire +to burn and placed an iron pot on it into which they broke some +dried bread and put a little dripping. The pleasant odor of greasy +viands mingled with the smell of smoke. Pierre sat up and sighed. +The three soldiers were eating and talking among themselves, taking no +notice of him. + +"And who may you be?" one of them suddenly asked Pierre, evidently +meaning what Pierre himself had in mind, namely: "If you want to eat +we'll give you some food, only let us know whether you are an honest +man." + +"I, I..." said Pierre, feeling it necessary to minimize his social +position as much as possible so as to be nearer to the soldiers and +better understood by them. "By rights I am a militia officer, but my +men are not here. I came to the battle and have lost them." + +"There now!" said one of the soldiers. + +Another shook his head. + +"Would you like a little mash?" the first soldier asked, and +handed Pierre a wooden spoon after licking it clean. + +Pierre sat down by the fire and began eating the mash, as they +called the food in the cauldron, and he thought it more delicious than +any food he had ever tasted. As he sat bending greedily over it, +helping himself to large spoonfuls and chewing one after another, +his was lit up by the fire and the soldiers looked at him in silence. + +"Where have you to go to? Tell us!" said one of them. + +"To Mozhaysk." + +"You're a gentleman, aren't you?" + +"Yes." + +"And what's your name?" + +"Peter Kirilych." + +"Well then, Peter Kirilych, come along with us, we'll take you +there." + +In the total darkness the soldiers walked with Pierre to Mozhaysk. + +By the time they got near Mozhaysk and began ascending the steep +hill into the town, the cocks were already crowing. Pierre went on +with the soldiers, quite forgetting that his inn was at the bottom +of the hill and that he had already passed it. He would not soon +have remembered this, such was his state of forgetfulness, had he +not halfway up the hill stumbled upon his groom, who had been to +look for him in the town and was returning to the inn. The groom +recognized Pierre in the darkness by his white hat. + +"Your excellency!" he said. "Why, we were beginning to despair! +How is it you are on foot? And where are you going, please?" + +"Oh, yes!" said Pierre. + +The soldiers stopped. + +"So you've found your folk?" said one of them. "Well, good-by, Peter +Kirilych--isn't it?" + +"Good-by, Peter Kirilych!" Pierre heard the other voices repeat. + +"Good-by!" he said and turned with his groom toward the inn. + +"I ought to give them something!" he thought, and felt in his +pocket. "No, better not!" said another, inner voice. + +There was not a room to be had at the inn, they were all occupied. +Pierre went out into the yard and, covering himself up head and all, +lay down in his carriage. + + + + + +CHAPTER IX + + +Scarcely had Pierre laid his head on the pillow before he felt +himself falling asleep, but suddenly, almost with the distinctness +of reality, he heard the boom, boom, boom of firing, the thud of +projectiles, groans and cries, and smelled blood and powder, and a +feeling of horror and dread of death seized him. Filled with fright he +opened his eyes and lifted his head from under his cloak. All was +tranquil in the yard. Only someone's orderly passed through the +gateway, splashing through the mud, and talked to the innkeeper. Above +Pierre's head some pigeons, disturbed by the movement he had made in +sitting up, fluttered under the dark roof of the penthouse. The +whole courtyard was permeated by a strong peaceful smell of stable +yards, delightful to Pierre at that moment. He could see the clear +starry sky between the dark roofs of two penthouses. + +"Thank God, there is no more of that!" he thought, covering up his +head again. "Oh, what a terrible thing is fear, and how shamefully I +yielded to it! But they... they were steady and calm all the time, +to the end..." thought he. + +They, in Pierre's mind, were the soldiers, those who had been at the +battery, those who had given him food, and those who had prayed before +the icon. They, those strange men he had not previously known, stood +out clearly and sharply from everyone else. + +"To be a soldier, just a soldier!" thought Pierre as he fell asleep, +"to enter communal life completely, to be imbued by what makes them +what they are. But how cast off all the superfluous, devilish burden +of my outer man? There was a time when I could have done it. I could +have run away from my father, as I wanted to. Or I might have been +sent to serve as a soldier after the duel with Dolokhov." And the +memory of the dinner at the English Club when he had challenged +Dolokhov flashed through Pierre's mind, and then he remembered his +benefactor at Torzhok. And now a picture of a solemn meeting of the +lodge presented itself to his mind. It was taking place at the English +Club and someone near and dear to him sat at the end of the table. +"Yes, that is he! It is my benefactor. But he died!" thought Pierre. +"Yes, he died, and I did not know he was alive. How sorry I am that he +died, and how glad I am that he is alive again!" On one side of the +table sat Anatole, Dolokhov, Nesvitski, Denisov, and others like +them (in his dream the category to which these men belonged was as +clearly defined in his mind as the category of those he termed +they), and he heard those people, Anatole and Dolokhov, shouting and +singing loudly; yet through their shouting the voice of his benefactor +was heard speaking all the time and the sound of his words was as +weighty and uninterrupted as the booming on the battlefield, but +pleasant and comforting. Pierre did not understand what his benefactor +was saying, but he knew (the categories of thoughts were also quite +distinct in his dream) that he was talking of goodness and the +possibility of being what they were. And they with their simple, kind, +firm faces surrounded his benefactor on all sides. But though they +were kindly they did not look at Pierre and did not know him. +Wishing to speak and to attract their attention, he got up, but at +that moment his legs grew cold and bare. + +He felt ashamed, and with one arm covered his legs from which his +cloak had in fact slipped. For a moment as he was rearranging his +cloak Pierre opened his eyes and saw the same penthouse roofs, +posts, and yard, but now they were all bluish, lit up, and +glittering with frost or dew. + +"It is dawn," thought Pierre. "But that's not what I want. I want to +hear and understand my benefactor's words." Again he covered himself +up with his cloak, but now neither the lodge nor his benefactor was +there. There were only thoughts clearly expressed in words, thoughts +that someone was uttering or that he himself was formulating. + +Afterwards when he recalled those thoughts Pierre was convinced that +someone outside himself had spoken them, though the impressions of +that day had evoked them. He had never, it seemed to him, been able to +think and express his thoughts like that when awake. + +"To endure war is the most difficult subordination of man's +freedom to the law of God," the voice had said. "Simplicity is +submission to the will of God; you cannot escape from Him. And they +are simple. They do not talk, but act. The spoken word is silver but +the unspoken is golden. Man can be master of nothing while he fears +death, but he who does not fear it possesses all. If there were no +suffering, man would not know his limitations, would not know himself. +The hardest thing [Pierre went on thinking, or hearing, in his +dream] is to be able in your soul to unite the meaning of all. To +unite all?" he asked himself. "No, not to unite. Thoughts cannot be +united, but to harness all these thoughts together is what we need! +Yes, one must harness them, must harness them!" he repeated to himself +with inward rapture, feeling that these words and they alone expressed +what he wanted to say and solved the question that tormented him. + +"Yes, one must harness, it is time to harness." + +"Time to harness, time to harness, your excellency! Your +excellency!" some voice was repeating. "We must harness, it is time to +harness...." + +It was the voice of the groom, trying to wake him. The sun shone +straight into Pierre's face. He glanced at the dirty innyard in the +middle of which soldiers were watering their lean horses at the pump +while carts were passing out of the gate. Pierre turned away with +repugnance, and closing his eyes quickly fell back on the carriage +seat. "No, I don't want that, I don't want to see and understand that. +I want to understand what was revealing itself to me in my dream. +One second more and I should have understood it all! But what am I +to do? Harness, but how can I harness everything?" and Pierre felt +with horror that the meaning of all he had seen and thought in the +dream had been destroyed. + +The groom, the coachman, and the innkeeper told Pierre that an +officer had come with news that the French were already near +Mozhaysk and that our men were leaving it. + +Pierre got up and, having told them to harness and overtake him, +went on foot through the town. + +The troops were moving on, leaving about ten thousand wounded behind +them. There were wounded in the yards, at the windows of the houses, +and the streets were crowded with them. In the streets, around carts +that were to take some of the wounded away, shouts, curses, and +blows could be heard. Pierre offered the use of his carriage, which +had overtaken him, to a wounded general he knew, and drove with him +to Moscow. On the way Pierre was told of the death of his +brother-in-law Anatole and of that of Prince Andrew. + + + + + +CHAPTER X + + +On the thirteenth of August Pierre reached Moscow. Close to the +gates of the city he was met by Count Rostopchin's adjutant. + +"We have been looking for you everywhere," said the adjutant. "The +count wants to see you particularly. He asks you to come to him at +once on a very important matter." + +Without going home, Pierre took a cab and drove to see the Moscow +commander in chief. + +Count Rostopchin had only that morning returned to town from his +summer villa at Sokolniki. The anteroom and reception room of his +house were full of officials who had been summoned or had come for +orders. Vasilchikov and Platov had already seen the count and +explained to him that it was impossible to defend Moscow and that it +would have to be surrendered. Though this news was being concealed +from the inhabitants, the officials--the heads of the various +government departments--knew that Moscow would soon be in the +enemy's hands, just as Count Rostopchin himself knew it, and to escape +personal responsibility they had all come to the governor to ask how +they were to deal with their various departments. + +As Pierre was entering the reception room a courier from the army +came out of Rostopchin's private room. + +In answer to questions with which he was greeted, the courier made a +despairing gesture with his hand and passed through the room. + +While waiting in the reception room Pierre with weary eyes watched +the various officials, old and young, military and civilian, who +were there. They all seemed dissatisfied and uneasy. Pierre went up to +a group of men, one of whom he knew. After greeting Pierre they +continued their conversation. + +"If they're sent out and brought back again later on it will do no +harm, but as things are now one can't answer for anything." + +"But you see what he writes..." said another, pointing to a +printed sheet he held in his hand. + +"That's another matter. That's necessary for the people," said the +first. + +"What is it?" asked Pierre. + +"Oh, it's a fresh broadsheet." + +Pierre took it and began reading. + + +His Serene Highness has passed through Mozhaysk in order to join +up with the troops moving toward him and has taken up a strong +position where the enemy will not soon attack him. Forty eight guns +with ammunition have been sent him from here, and his Serene +Highness says he will defend Moscow to the last drop of blood and is +even ready to fight in the streets. Do not be upset, brothers, that +the law courts are closed; things have to be put in order, and we will +deal with villains in our own way! When the time comes I shall want +both town and peasant lads and will raise the cry a day or two +beforehand, but they are not wanted yet so I hold my peace. An ax will +be useful, a hunting spear not bad, but a three-pronged fork will be +best of all: a Frenchman is no heavier than a sheaf of rye. Tomorrow +after dinner I shall take the Iberian icon of the Mother of God to the +wounded in the Catherine Hospital where we will have some water +blessed. That will help them to get well quicker. I, too, am well now: +one of my eyes was sore but now I am on the lookout with both. + + +"But military men have told me that it is impossible to fight in the +town," said Pierre, "and that the position..." + +"Well, of course! That's what we were saying," replied the first +speaker. + +"And what does he mean by 'One of my eyes was sore but now I am on +the lookout with both'?" asked Pierre. + +"The count had a sty," replied the adjutant smiling, "and was very +much upset when I told him people had come to ask what was the +matter with him. By the by, Count," he added suddenly, addressing +Pierre with a smile, "we heard that you have family troubles and +that the countess, your wife..." + +"I have heard nothing," Pierre replied unconcernedly. "But what have +you heard?" + +"Oh, well, you know people often invent things. I only say what I +heard." + +"But what did you hear?" + +"Well, they say," continued the adjutant with the same smile, +"that the countess, your wife, is preparing to go abroad. I expect +it's nonsense...." + +"Possibly," remarked Pierre, looking about him absent-mindedly. "And +who is that?" he asked, indicating a short old man in a clean blue +peasant overcoat, with a big snow-white beard and eyebrows and a ruddy +face. + +"He? That's a tradesman, that is to say, he's the restaurant keeper, +Vereshchagin. Perhaps you have heard of that affair with the +proclamation." + +"Oh, so that is Vereshchagin!" said Pierre, looking at the firm, +calm face of the old man and seeking any indication of his being a +traitor. + +"That's not he himself, that's the father of the fellow who wrote +the proclamation," said the adjutant. "The young man is in prison +and I expect it will go hard with him." + +An old gentleman wearing a star and another official, a German +wearing a cross round his neck, approached the speaker. + +"It's a complicated story, you know," said the adjutant. "That +proclamation appeared about two months ago. The count was informed +of it. He gave orders to investigate the matter. Gabriel Ivanovich +here made the inquiries. The proclamation had passed through exactly +sixty-three hands. He asked one, 'From whom did you get it?' 'From +so-and-so.' He went to the next one. 'From whom did you get it?' and +so on till he reached Vereshchagin, a half educated tradesman, you +know, 'a pet of a trader,'" said the adjutant smiling. "They asked +him, 'Who gave it you?' And the point is that we knew whom he had it +from. He could only have had it from the Postmaster. But evidently +they had come to some understanding. He replied: 'From no one; I +made it up myself.' They threatened and questioned him, but he stuck +to that: 'I made it up myself.' And so it was reported to the count, +who sent for the man. 'From whom did you get the proclamation?' 'I +wrote it myself.' Well, you know the count," said the adjutant +cheerfully, with a smile of pride, "he flared up dreadfully--and +just think of the fellow's audacity, lying, and obstinacy!" + + "And the count wanted him to say it was from Klyucharev? I +understand!" said Pierre. + +"Not at all," rejoined the adjutant in dismay. "Klyucharev had his +own sins to answer for without that and that is why he has been +banished. But the point is that the count was much annoyed. 'How could +you have written it yourself?' said he, and he took up the Hamburg +Gazette that was lying on the table. 'Here it is! You did not write it +yourself but translated it, and translated it abominably, because +you don't even know French, you fool.' And what do you think? 'No,' +said he, 'I have not read any papers, I made it up myself.' 'If that's +so, you're a traitor and I'll have you tried, and you'll be hanged! +Say from whom you had it.' 'I have seen no papers, I made it up +myself.' And that was the end of it. The count had the father fetched, +but the fellow stuck to it. He was sent for trial and condemned to +hard labor, I believe. Now the father has come to intercede for him. +But he's a good-for-nothing lad! You know that sort of tradesman's +son, a dandy and lady-killer. He attended some lectures somewhere +and imagines that the devil is no match for him. That's the sort of +fellow he is. His father keeps a cookshop here by the Stone Bridge, +and you know there was a large icon of God Almighty painted with a +scepter in one hand and an orb in the other. Well, he took that icon +home with him for a few days and what did he do? He found some +scoundrel of a painter..." + + + + + +CHAPTER XI + + +In the middle of this fresh tale Pierre was summoned to the +commander in chief. + +When he entered the private room Count Rostopchin, puckering his +face, was rubbing his forehead and eyes with his hand. A short man was +saying something, but when Pierre entered he stopped speaking and went +out. + +"Ah, how do you do, great warrior?" said Rostopchin as soon as the +short man had left the room. "We have heard of your prowess. But +that's not the point. Between ourselves, mon cher, do you belong to +the Masons?" he went on severely, as though there were something wrong +about it which he nevertheless intended to pardon. Pierre remained +silent. "I am well informed, my friend, but I am aware that there +are Masons and I hope that you are not one of those who +on pretense of saving mankind wish to ruin Russia." + +"Yes, I am a Mason," Pierre replied. + +"There, you see, mon cher! I expect you know that Messrs. +Speranski and Magnitski have been deported to their proper place. +Mr. Klyucharev has been treated in the same way, and so have others +who on the plea of building up the temple of Solomon have tried to +destroy the temple of their fatherland. You can understand that +there are reasons for this and that I could not have exiled the +Postmaster had he not been a harmful person. It has now come to my +knowledge that you lent him your carriage for his removal from town, +and that you have even accepted papers from him for safe custody. I +like you and don't wish you any harm and--as you are only half my age- +I advise you, as a father would, to cease all communication with men +of that stamp and to leave here as soon as possible." + +"But what did Klyucharev do wrong, Count?" asked Pierre. + +"That is for me to know, but not for you to ask," shouted +Rostopchin. + +"If he is accused of circulating Napoleon's proclamation it is not +proved that he did so," said Pierre without looking at Rostopchin, +"and Vereshchagin..." + +"There we are!" Rostopchin shouted at Pierre louder than before, +frowning suddenly. "Vereshchagin is a renegade and a traitor who +will be punished as he deserves," said he with the vindictive heat +with which people speak when recalling an insult. "But I did not +summon you to discuss my actions, but to give you advice--or an +order if you prefer it. I beg you to leave the town and break off +all communication with such men as Klyucharev. And I will knock the +nonsense out of anybody"--but probably realizing that he was +shouting at Bezukhov who so far was not guilty of anything, he +added, taking Pierre's hand in a friendly manner, "We are on the eve +of a public disaster and I haven't time to be polite to everybody +who has business with me. My head is sometimes in a whirl. Well, mon +cher, what are you doing personally?" + +"Why, nothing," answered Pierre without raising his eyes or changing +the thoughtful expression of his face. + +The count frowned. + +"A word of friendly advice, mon cher. Be off as soon as you can, +that's all I have to tell you. Happy he who has ears to hear. Good-by, +my dear fellow. Oh, by the by!" he shouted through the doorway after +Pierre, "is it true that the countess has fallen into the clutches +of the holy fathers of the Society of Jesus?" + +Pierre did not answer and left Rostopchin's room more sullen and +angry than he had ever before shown himself. + +When he reached home it was already getting dark. Some eight +people had come to see him that evening: the secretary of a committee, +the colonel of his battalion, his steward, his major-domo, and various +petitioners. They all had business with Pierre and wanted decisions +from him. Pierre did not understand and was not interested in any of +these questions and only answered them in order to get rid of these +people. When left alone at last he opened and read his wife's letter. + +"They, the soldiers at the battery, Prince Andrew killed... that old +man... Simplicity is submission to God. Suffering is necessary... +the meaning of all... one must harness... my wife is getting +married... One must forget and understand..." And going to his bed +he threw himself on it without undressing and immediately fell asleep. + +When he awoke next morning the major-domo came to inform him that +a special messenger, a police officer, had come from Count +Rostopchin to know whether Count Bezukhov had left or was leaving +the town. + +A dozen persons who had business with Pierre were awaiting him in +the drawing room. Pierre dressed hurriedly and, instead of going to +see them, went to the back porch and out through the gate. + +From that time till the end of the destruction of Moscow no one of +Bezukhov's household, despite all the search they made, saw Pierre +again or knew where he was. + + + + + +CHAPTER XII + + +The Rostovs remained in Moscow till the first of September, that is, +till the eve of the enemy's entry into the city. + +After Petya had joined Obolenski's regiment of Cossacks and left for +Belaya Tserkov where that regiment was forming, the countess was +seized with terror. The thought that both her sons were at the war, +had both gone from under her wing, that today or tomorrow either or +both of them might be killed like the three sons of one of her +acquaintances, struck her that summer for the first time with cruel +clearness. She tried to get Nicholas back and wished to go herself +to join Petya, or to get him an appointment somewhere in Petersburg, +but neither of these proved possible. Petya could not return unless +his regiment did so or unless he was transferred to another regiment +on active service. Nicholas was somewhere with the army and had not +sent a word since his last letter, in which he had given a detailed +account of his meeting with Princess Mary. The countess did not +sleep at night, or when she did fall asleep dreamed that she saw her +sons lying dead. After many consultations and conversations, the count +at last devised means to tranquillize her. He got Petya transferred +from Obolenski's regiment to Bezukhov's, which was in training near +Moscow. Though Petya would remain in the service, this transfer +would give the countess the consolation of seeing at least one of +her sons under her wing, and she hoped to arrange matters for her +Petya so as not to let him go again, but always get him appointed to +places where he could not possibly take part in a battle. As long as +Nicholas alone was in danger the countess imagined that she loved +her first-born more than all her other children and even reproached +herself for it; but when her youngest: the scapegrace who had been bad +at lessons, was always breaking things in the house and making himself +a nuisance to everybody, that snub-nosed Petya with his merry black +eyes and fresh rosy cheeks where soft down was just beginning to show- +when he was thrown amid those big, dreadful, cruel men who were +fighting somewhere about something and apparently finding pleasure +in it--then his mother thought she loved him more, much more, than all +her other children. The nearer the time came for Petya to return, +the more uneasy grew the countess. She began to think she would +never live to see such happiness. The presence of Sonya, of her +beloved Natasha, or even of her husband irritated her. "What do I want +with them? I want no one but Petya," she thought. + +At the end of August the Rostovs received another letter from +Nicholas. He wrote from the province of Voronezh where he had been +sent to procure remounts, but that letter did not set the countess +at ease. Knowing that one son was out of danger she became the more +anxious about Petya. + +Though by the twentieth of August nearly all the Rostovs' +acquaintances had left Moscow, and though everybody tried to +persuade the countess to get away as quickly as possible, she would +not bear of leaving before her treasure, her adored Petya, returned. +On the twenty-eighth of August he arrived. The passionate tenderness +with which his mother received him did not please the sixteen-year-old +officer. Though she concealed from him her intention of keeping him +under her wing, Petya guessed her designs, and instinctively fearing +that he might give way to emotion when with her--might "become +womanish" as he termed it to himself--he treated her coldly, avoided +her, and during his stay in Moscow attached himself exclusively to +Natasha for whom he had always had a particularly brotherly +tenderness, almost lover-like. + +Owing to the count's customary carelessness nothing was ready for +their departure by the twenty-eighth of August and the carts that were +to come from their Ryazan and Moscow estates to remove their household +belongings did not arrive till the thirtieth. + +From the twenty-eighth till the thirty-first all Moscow was in a +bustle and commotion. Every day thousands of men wounded at Borodino +were brought in by the Dorogomilov gate and taken to various parts +of Moscow, and thousands of carts conveyed the inhabitants and their +possessions out by the other gates. In spite of Rostopchin's +broadsheets, or because of them or independently of them, the +strangest and most contradictory rumors were current in the town. Some +said that no one was to be allowed to leave the city, others on the +contrary said that all the icons had been taken out of the churches +and everybody was to be ordered to leave. Some said there had been +another battle after Borodino at which the French had been routed, +while others on the contrary reported that the Russian army bad been +destroyed. Some talked about the Moscow militia which, preceded by the +clergy, would go to the Three Hills; others whispered that Augustin +had been forbidden to leave, that traitors had been seized, that the +peasants were rioting and robbing people on their way from Moscow, and +so on. But all this was only talk; in reality (though the Council of +Fili, at which it was decided to abandon Moscow, had not yet been +held) both those who went away and those who remained behind felt, +though they did not show it, that Moscow would certainly be abandoned, +and that they ought to get away as quickly as possible and save +their belongings. It was felt that everything would suddenly break +up and change, but up to the first of September nothing had done so. +As a criminal who is being led to execution knows that he must die +immediately, but yet looks about him and straightens the cap that is +awry on his head, so Moscow involuntarily continued its wonted life, +though it knew that the time of its destruction was near when the +conditions of life to which its people were accustomed to submit would +be completely upset. + +During the three days preceding the occupation of Moscow the whole +Rostov family was absorbed in various activities. The head of the +family, Count Ilya Rostov, continually drove about the city collecting +the current rumors from all sides and gave superficial and hasty +orders at home about the preparations for their departure. + +The countess watched the things being packed, was dissatisfied +with everything, was constantly in pursuit of Petya who was always +running away from her, and was jealous of Natasha with whom he spent +all his time. Sonya alone directed the practical side of matters by +getting things packed. But of late Sonya had been particularly sad and +silent. Nicholas' letter in which he mentioned Princess Mary had +elicited, in her presence, joyous comments from the countess, who +saw an intervention of Providence in this meeting of the princess +and Nicholas. + +"I was never pleased at Bolkonski's engagement to Natasha," said the +countess, "but I always wanted Nicholas to marry the princess, and had +a presentiment that it would happen. What a good thing it would be!" + +Sonya felt that this was true: that the only possibility of +retrieving the Rostovs' affairs was by Nicholas marrying a rich woman, +and that the princess was a good match. It was very bitter for her. +But despite her grief, or perhaps just because of it, she took on +herself all the difficult work of directing the storing and packing of +their things and was busy for whole days. The count and countess +turned to her when they had any orders to give. Petya and Natasha on +the contrary, far from helping their parents, were generally a +nuisance and a hindrance to everyone. Almost all day long the house +resounded with their running feet, their cries, and their +spontaneous laughter. They laughed and were gay not because there +was any reason to laugh, but because gaiety and mirth were in their +hearts and so everything that happened was a cause for gaiety and +laughter to them. Petya was in high spirits because having left home a +boy he had returned (as everybody told him) a fine young man, +because he was at home, because he had left Belaya Tserkov where there +was no hope of soon taking part in a battle and had come to Moscow +where there was to be fighting in a few days, and chiefly because +Natasha, whose lead he always followed, was in high spirits. Natasha +was gay because she had been sad too long and now nothing reminded her +of the cause of her sadness, and because she was feeling well. She was +also happy because she had someone to adore her: the adoration of +others was a lubricant the wheels of her machine needed to make them +run freely--and Petya adored her. Above all, they were gay because +there was a war near Moscow, there would be fighting at the town +gates, arms were being given out, everybody was escaping--going away +somewhere, and in general something extraordinary was happening, and +that is always exciting, especially to the young. + + + + + +CHAPTER XIII + + +On Saturday, the thirty-first of August, everything in the +Rostovs' house seemed topsy-turvy. All the doors were open, all the +furniture was being carried out or moved about, and the mirrors and +pictures had been taken down. There were trunks in the rooms, and hay, +wrapping paper, and ropes were scattered about. The peasants and house +serfs carrying out the things were treading heavily on the parquet +floors. The yard was crowded with peasant carts, some loaded high +and already corded up, others still empty. + +The voices and footsteps of the many servants and of the peasants +who had come with the carts resounded as they shouted to one another +in the yard and in the house. The count bad been out since morning. +The countess had a headache brought on by all the noise and turmoil +and was lying down in the new sitting room with a vinegar compress +on her head. Petya was not at home, he had gone to visit a friend with +whom he meant to obtain a transfer from the militia to the active +army. Sonya was in the ballroom looking after the packing of the glass +and china. Natasha was sitting on the floor of her dismantled room +with dresses, ribbons, and scarves strewn all about her, gazing +fixedly at the floor and holding in her hands the old ball dress +(already out of fashion) which she had worn at her first Petersburg +ball. + +Natasha was ashamed of doing nothing when everyone else was so busy, +and several times that morning had tried to set to work, but her heart +was not in it, and she could not and did not know how to do anything +except with all her heart and all her might. For a while she had stood +beside Sonya while the china was being packed and tried to help, but +soon gave it up and went to her room to pack her own things. At +first she found it amusing to give away dresses and ribbons to the +maids, but when that was done and what was left had still to be +packed, she found it dull. + +"Dunyasha, you pack! You will, won't you, dear?" And when Dunyasha +willingly promised to do it all for her, Natasha sat down on the +floor, took her old ball dress, and fell into a reverie quite +unrelated to what ought to have occupied her thoughts now. She was +roused from her reverie by the talk of the maids in the next room +(which was theirs) and by the sound of their hurried footsteps going +to the back porch. Natasha got up and looked out of the window. An +enormously long row of carts full of wounded men had stopped in the +street. + +The housekeeper, the old nurse, the cooks, coachmen, maids, footmen, +postilions, and scullions stood at the gate, staring at the wounded. + +Natasha, throwing a clean pocket handkerchief over her hair and +holding an end of it in each hand, went out into the street. + +The former housekeeper, old Mavra Kuzminichna, had stepped out of +the crowd by the gate, gone up to a cart with a hood constructed of +bast mats, and was speaking to a pale young officer who lay inside. +Natasha moved a few steps forward and stopped shyly, still holding her +handkerchief, and listened to what the housekeeper was saying. + +"Then you have nobody in Moscow?" she was saying. "You would be more +comfortable somewhere in a house... in ours, for instance... the +family are leaving." + +"I don't know if it would be allowed," replied the officer in a weak +voice. "Here is our commanding officer... ask him," and he pointed +to a stout major who was walking back along the street past the row of +carts. + +Natasha glanced with frightened eyes at the face of the wounded +officer and at once went to meet the major. + +"May the wounded men stay in our house?" she asked. + +The major raised his hand to his cap with a smile. + +"Which one do you want, Ma'am'selle?" said he, screwing up his +eyes and smiling. + +Natasha quietly repeated her question, and her face and whole manner +were so serious, though she was still holding the ends of her +handkerchief, that the major ceased smiling and after some reflection- +as if considering in how far the thing was possible--replied in the +affirmative. + +"Oh yes, why not? They may," he said. + +With a slight inclination of her head, Natasha stepped back +quickly to Mavra Kuzminichna, who stood talking compassionately to the +officer. + +"They may. He says they may!" whispered Natasha. + +The cart in which the officer lay was turned into the Rostovs' yard, +and dozens of carts with wounded men began at the invitation of the +townsfolk to turn into the yards and to draw up at the entrances of +the houses in Povarskaya Street. Natasha was evidently pleased to be +dealing with new people outside the ordinary routine of her life. +She and Mavra Kuzminichna tried to get as many of the wounded as +possible into their yard. + +"Your Papa must be told, though," said Mavra Kuzminichna. + +"Never mind, never mind, what does it matter? For one day we can +move into the drawing room. They can have all our half of the house." + +"There now, young lady, you do take things into your head! Even if +we put them into the wing, the men's room, or the nurse's room, we +must ask permission." + +"Well, I'll ask." + +Natasha ran into the house and went on tiptoe through the +half-open door into the sitting room, where there was a smell of +vinegar and Hoffman's drops. + +"Are you asleep, Mamma?" + +"Oh, what sleep-?" said the countess, waking up just as she was +dropping into a doze. + +"Mamma darling!" said Natasha, kneeling by her mother and bringing +her face close to her mother's, "I am sorry, forgive me, I'll never do +it again; I woke you up! Mavra Kuzminichna has sent me: they have +brought some wounded here--officers. Will you let them come? They have +nowhere to go. I knew you'd let them come!" she said quickly all in +one breath. + +"What officers? Whom have they brought? I don't understand +anything about it," said the countess. + +Natasha laughed, and the countess too smiled slightly. + +"I knew you'd give permission... so I'll tell them," and, having +kissed her mother, Natasha got up and went to the door. + +In the hall she met her father, who had returned with bad news. + +"We've stayed too long!" said the count with involuntary vexation. +"The Club is closed and the police are leaving." + +"Papa, is it all right--I've invited some of the wounded into the +house?" said Natasha. + +"Of course it is," he answered absently. "That's not the point. I +beg you not to indulge in trifles now, but to help to pack, and +tomorrow we must go, go, go!...." + +And the count gave a similar order to the major-domo and the +servants. + +At dinner Petya having returned home told them the news he had +heard. He said the people had been getting arms in the Kremlin, and +that though Rostopchin's broadsheet had said that he would sound a +call two or three days in advance, the order had certainly already +been given for everyone to go armed to the Three Hills tomorrow, and +that there would be a big battle there. + +The countess looked with timid horror at her son's eager, excited +face as he said this. She realized that if she said a word about his +not going to the battle (she knew he enjoyed the thought of the +impending engagement) he would say something about men, honor, and the +fatherland--something senseless, masculine, and obstinate which +there would be no contradicting, and her plans would be spoiled; and +so, hoping to arrange to leave before then and take Petya with her +as their protector and defender, she did not answer him, but after +dinner called the count aside and implored him with tears to take +her away quickly, that very night if possible. With a woman's +involuntary loving cunning she, who till then had not shown any alarm, +said that she would die of fright if they did not leave that very +night. Without any pretense she was now afraid of everything. + + + + + +CHAPTER XIV + + +Madame Schoss, who had been out to visit her daughter, increased the +countess' fears still more by telling what she had seen at a spirit +dealer's in Myasnitski Street. When returning by that street she had +been unable to pass because of a drunken crowd rioting in front of the +shop. She had taken a cab and driven home by a side street and the +cabman had told her that the people were breaking open the barrels +at the drink store, having received orders to do so. + +After dinner the whole Rostov household set to work with +enthusiastic haste packing their belongings and preparing for their +departure. The old count, suddenly setting to work, kept passing +from the yard to the house and back again, shouting confused +instructions to the hurrying people, and flurrying them still more. +Petya directed things in the yard. Sonya, owing to the count's +contradictory orders, lost her head and did not know what to do. The +servants ran noisily about the house and yard, shouting and disputing. +Natasha, with the ardor characteristic of all she did suddenly set +to work too. At first her intervention in the business of packing +was received skeptically. Everybody expected some prank from her and +did not wish to obey her; but she resolutely and passionately demanded +obedience, grew angry and nearly cried because they did not heed +her, and at last succeeded in making them believe her. Her first +exploit, which cost her immense effort and established her +authority, was the packing of the carpets. The count had valuable +Gobelin tapestries and Persian carpets in the house. When Natasha +set to work two cases were standing open in the ballroom, one almost +full up with crockery, the other with carpets. There was also much +china standing on the tables, and still more was being brought in from +the storeroom. A third case was needed and servants had gone to +fetch it. + +"Sonya, wait a bit--we'll pack everything into these," said Natasha. + +"You can't, Miss, we have tried to," said the butler's assistant. + +"No, wait a minute, please." + +And Natasha began rapidly taking out of the case dishes and plates +wrapped in paper. + +"The dishes must go in here among the carpets," said she. + +"Why, it's a mercy if we can get the carpets alone into three +cases," said the butler's assistant. + +"Oh, wait, please!" And Natasha began rapidly and deftly sorting out +the things. "These aren't needed," said she, putting aside some plates +of Kiev ware. "These--yes, these must go among the carpets," she said, +referring to the Saxony china dishes. + +"Don't, Natasha! Leave it alone! We'll get it all packed," urged +Sonya reproachfully. + +"What a young lady she is!" remarked the major-domo. + +But Natasha would not give in. She turned everything out and began +quickly repacking, deciding that the inferior Russian carpets and +unnecessary crockery should not be taken at all. When everything had +been taken out of the cases, they recommenced packing, and it turned +out that when the cheaper things not worth taking had nearly all +been rejected, the valuable ones really did all go into the two cases. +Only the lid of the case containing the carpets would not shut down. A +few more things might have been taken out, but Natasha insisted on +having her own way. She packed, repacked, pressed, made the butler's +assistant and Petya--whom she had drawn into the business of +packing--press on the lid, and made desperate efforts herself. + +"That's enough, Natasha," said Sonya. "I see you were right, but +just take out the top one." + +"I won't!" cried Natasha, with one hand bolding back the hair that +hung over her perspiring face, while with the other she pressed down +the carpets. "Now press, Petya! Press, Vasilich, press hard!" she +cried. + +The carpets yielded and the lid closed; Natasha, clapping her hands, +screamed with delight and tears fell from her eyes. But this only +lasted a moment. She at once set to work afresh and they now trusted +her completely. The count was not angry even when they told him that +Natasha had countermanded an order of his, and the servants now came +to her to ask whether a cart was sufficiently loaded, and whether it +might be corded up. Thanks to Natasha's directions the work now went +on expeditiously, unnecessary things were left, and the most +valuable packed as compactly as possible. + +But hard as they all worked till quite late that night, they could +not get everything packed. The countess had fallen asleep and the +count, having put off their departure till next morning, went to bed. + +Sonya and Natasha slept in the sitting room without undressing. + +That night another wounded man was driven down the Povarskaya, and +Mavra Kuzminichna, who was standing at the gate, had him brought +into the Rostovs' yard. Mavra Kuzminichna concluded that he was a very +important man. He was being conveyed in a caleche with a raised +hood, and was quite covered by an apron. On the box beside the +driver sat a venerable old attendant. A doctor and two soldiers +followed the carriage in a cart. + +"Please come in here. The masters are going away and the whole house +will be empty," said the old woman to the old attendant. + +"Well, perhaps," said he with a sigh. "We don't expect to get him +home alive! We have a house of our own in Moscow, but it's a long +way from here, and there's nobody living in it." + +"Do us the honor to come in, there's plenty of everything in the +master's house. Come in," said Mavra Kuzminichna. "Is he very ill?" +she asked. + +The attendant made a hopeless gesture. + +"We don't expect to get him home! We must ask the doctor." + +And the old servant got down from the box and went up to the cart. + +"All right!" said the doctor. + +The old servant returned to the caleche, looked into it, shook his +head disconsolately, told the driver to turn into the yard, and +stopped beside Mavra Kuzminichna. + +"O, Lord Jesus Christ!" she murmured. + +She invited them to take the wounded man into the house. + +"The masters won't object..." she said. + +But they had to avoid carrying the man upstairs, and so they took +him into the wing and put him in the room that had been Madame +Schoss'. + +This wounded man was Prince Andrew Bolkonski. + + + + + +CHAPTER XV + + +Moscow's last day had come. It was a clear bright autumn day, a +Sunday. The church bells everywhere were ringing for service, just +as usual on Sundays. Nobody seemed yet to realize what awaited the +city. + +Only two things indicated the social condition of Moscow--the +rabble, that is the poor people, and the price of commodities. An +enormous crowd of factory hands, house serfs, and peasants, with +whom some officials, seminarists, and gentry were mingled, had gone +early that morning to the Three Hills. Having waited there for +Rostopchin who did not turn up, they became convinced that Moscow +would be surrendered, and then dispersed all about the town to the +public houses and cookshops. Prices too that day indicated the state +of affairs. The price of weapons, of gold, of carts and horses, kept +rising, but the value of paper money and city articles kept falling, +so that by midday there were instances of carters removing valuable +goods, such as cloth, and receiving in payment a half of what they +carted, while peasant horses were fetching five hundred rubles each, +and furniture, mirrors, and bronzes were being given away for nothing. + +In the Rostovs' staid old-fashioned house the dissolution of +former conditions of life was but little noticeable. As to the serfs +the only indication was that three out of their huge retinue +disappeared during the night, but nothing was stolen; and as to the +value of their possessions, the thirty peasant carts that had come +in from their estates and which many people envied proved to be +extremely valuable and they were offered enormous sums of money for +them. Not only were huge sums offered for the horses and carts, but on +the previous evening and early in the morning of the first of +September, orderlies and servants sent by wounded officers came to the +Rostovs' and wounded men dragged themselves there from the Rostovs' +and from neighboring houses where they were accommodated, entreating +the servants to try to get them a lift out of Moscow. The major-domo +to whom these entreaties were addressed, though he was sorry for the +wounded, resolutely refused, saying that he dare not even mention +the matter to the count. Pity these wounded men as one might, it was +evident that if they were given one cart there would be no reason to +refuse another, or all the carts and one's own carriages as well. +Thirty carts could not save all the wounded and in the general +catastrophe one could not disregard oneself and one's own family. So +thought the major-domo on his master's behalf. + +On waking up that morning Count Ilya Rostov left his bedroom softly, +so as not to wake the countess who had fallen asleep only toward +morning, and came out to the porch in his lilac silk dressing gown. In +the yard stood the carts ready corded. The carriages were at the front +porch. The major-domo stood at the porch talking to an elderly orderly +and to a pale young officer with a bandaged arm. On seeing the count +the major-domo made a significant and stern gesture to them both to go +away. + +"Well, Vasilich, is everything ready?" asked the count, and stroking +his bald head he looked good-naturedly at the officer and the +orderly and nodded to them. (He liked to see new faces.) + +"We can harness at once, your excellency." + +"Well, that's right. As soon as the countess wakes we'll be off, God +willing! What is it, gentlemen?" he added, turning to the officer. +"Are you staying in my house?" + +The officer came nearer and suddenly his face flushed crimson. + +"Count, be so good as to allow me... for God's sake, to get into +some corner of one of your carts! I have nothing here with me.... I +shall be all right on a loaded cart..." + +Before the officer had finished speaking the orderly made the same +request on behalf of his master. + +"Oh, yes, yes, yes!" said the count hastily. "I shall be very +pleased, very pleased. Vasilich, you'll see to it. Just unload one +or two carts. Well, what of it... do what's necessary..." said the +count, muttering some indefinite order. + +But at the same moment an expression of warm gratitude on the +officer's face had already sealed the order. The count looked around +him. In the yard, at the gates, at the window of the wings, wounded +officers and their orderlies were to be seen. They were all looking at +the count and moving toward the porch. + +"Please step into the gallery, your excellency," said the +major-domo. "What are your orders about the pictures?" + +The count went into the house with him, repeating his order not to +refuse the wounded who asked for a lift. + +"Well, never mind, some of the things can be unloaded," he added +in a soft, confidential voice, as though afraid of being overheard. + +At nine o'clock the countess woke up, and Matrena Timofeevna, who +had been her lady's maid before her marriage and now performed a +sort of chief gendarme's duty for her, came to say that Madame +Schoss was much offended and the young ladies' summer dresses could +not be left behind. On inquiry, the countess learned that Madame +Schoss was offended because her trunk had been taken down from its +cart, and all the loads were being uncorded and the luggage taken +out of the carts to make room for wounded men whom the count in the +simplicity of his heart had ordered that they should take with them. +The countess sent for her husband. + +"What is this, my dear? I hear that the luggage is being unloaded." + +"You know, love, I wanted to tell you... Countess dear... an officer +came to me to ask for a few carts for the wounded. After all, ours are +things that can be bought but think what being left behind means to +them!... Really now, in our own yard--we asked them in ourselves and +there are officers among them.... You know, I think, my dear... let +them be taken... where's the hurry?" + +The count spoke timidly, as he always did when talking of money +matters. The countess was accustomed to this tone as a precursor of +news of something detrimental to the children's interests, such as the +building of a new gallery or conservatory, the inauguration of a +private theater or an orchestra. She was accustomed always to oppose +anything announced in that timid tone and considered it her duty to do +so. + +She assumed her dolefully submissive manner and said to her husband: +"Listen to me, Count, you have managed matters so that we are +getting nothing for the house, and now you wish to throw away all our- +all the children's property! You said yourself that we have a +hundred thousand rubles' worth of things in the house. I don't +consent, my dear, I don't! Do as you please! It's the government's +business to look after the wounded; they know that. Look at the +Lopukhins opposite, they cleared out everything two days ago. That's +what other people do. It's only we who are such fools. If you have +no pity on me, have some for the children." + +Flourishing his arms in despair the count left the room without +replying. + +"Papa, what are you doing that for?" asked Natasha, who had followed +him into her mother's room. + +"Nothing! What business is it of yours?" muttered the count angrily. + +"But I heard," said Natasha. "Why does Mamma object?" + +"What business is it of yours?" cried the count. + +Natasha stepped up to the window and pondered. + +"Papa! Here's Berg coming to see us," said she, looking out of the +window. + + + + + +CHAPTER XVI + + +Berg, the Rostovs' son-in-law, was already a colonel wearing the +orders of Vladimir and Anna, and he still filled the quiet and +agreeable post of assistant to the head of the staff of the +assistant commander of the first division of the Second Army. + +On the first of September he had come to Moscow from the army. + +He had nothing to do in Moscow, but he had noticed that everyone +in the army was asking for leave to visit Moscow and had something +to do there. So he considered it necessary to ask for leave of absence +for family and domestic reasons. + +Berg drove up to his father-in-law's house in his spruce little trap +with a pair of sleek roans, exactly like those of a certain prince. He +looked attentively at the carts in the yard and while going up to +the porch took out a clean pocket handkerchief and tied a knot in it. + +From the anteroom Berg ran with smooth though impatient steps into +the drawing room, where he embraced the count, kissed the hands of +Natasha and Sonya, and hastened to inquire after "Mamma's" health. + +"Health, at a time like this?" said the count. "Come, tell us the +news! Is the army retreating or will there be another battle?" + +"God Almighty alone can decide the fate of our fatherland, Papa," +said Berg. "The army is burning with a spirit of heroism and the +leaders, so to say, have now assembled in council. No one knows what +is coming. But in general I can tell you, Papa, that such a heroic +spirit, the truly antique valor of the Russian army, which they--which +it" (he corrected himself) "has shown or displayed in the battle of +the twenty-sixth--there are no words worthy to do it justice! I tell +you, Papa" (he smote himself on the breast as a general he had heard +speaking had done, but Berg did it a trifle late for he should have +struck his breast at the words "Russian army"), "I tell you frankly +that we, the commanders, far from having to urge the men on or +anything of that kind, could hardly restrain those... those... yes, +those exploits of antique valor," he went on rapidly. "General Barclay +de Tolly risked his life everywhere at the head of the troops, I can +assure you. Our corps was stationed on a hillside. You can imagine!" + +And Berg related all that he remembered of the various tales he +had heard those days. Natasha watched him with an intent gaze that +confused him, as if she were trying to find in his face the answer +to some question. + +"Altogether such heroism as was displayed by the Russian warriors +cannot be imagined or adequately praised!" said Berg, glancing round +at Natasha, and as if anxious to conciliate her, replying to her +intent look with a smile. "'Russia is not in Moscow, she lives in +the hearts of her sons!' Isn't it so, Papa?" said he. + +Just then the countess came in from the sitting room with a weary +and dissatisfied expression. Berg hurriedly jumped up, kissed her +hand, asked about her health, and, swaying his head from side to +side to express sympathy, remained standing beside her. + +"Yes, Mamma, I tell you sincerely that these are hard and sad +times for every Russian. But why are you so anxious? You have still +time to get away...." + +"I can't think what the servants are about," said the countess, +turning to her husband. "I have just been told that nothing is ready +yet. Somebody after all must see to things. One misses Mitenka at such +times. There won't be any end to it." + +The count was about to say something, but evidently restrained +himself. He got up from his chair and went to the door. + +At that moment Berg drew out his handkerchief as if to blow his nose +and, seeing the knot in it, pondered, shaking his head sadly and +significantly. + +"And I have a great favor to ask of you, Papa," said he. + +"Hm..." said the count, and stopped. + +"I was driving past Yusupov's house just now," said Berg with a +laugh, "when the steward, a man I know, ran out and asked me whether I +wouldn't buy something. I went in out of curiosity, you know, and +there is a small chiffonier and a dressing table. You know how dear +Vera wanted a chiffonier like that and how we had a dispute about it." +(At the mention of the chiffonier and dressing table Berg +involuntarily changed his tone to one of pleasure at his admirable +domestic arrangements.) "And it's such a beauty! It pulls out and +has a secret English drawer, you know! And dear Vera has long wanted +one. I wish to give her a surprise, you see. I saw so many of those +peasant carts in your yard. Please let me have one, I will pay the man +well, and..." + +The count frowned and coughed. + +"Ask the countess, I don't give orders." + +"If it's inconvenient, please don't," said Berg. "Only I so wanted +it, for dear Vera's sake." + +"Oh, go to the devil, all of you! To the devil, the devil, the +devil..." cried the old count. "My head's in a whirl!" + +And he left the room. The countess began to cry. + +"Yes, Mamma! Yes, these are very hard times!" said Berg. + +Natasha left the room with her father and, as if finding it +difficult to reach some decision, first followed him and then ran +downstairs. + +Petya was in the porch, engaged in giving out weapons to the +servants who were to leave Moscow. The loaded carts were still +standing in the yard. Two of them had been uncorded and a wounded +officer was climbing into one of them helped by an orderly. + +"Do you know what it's about?" Petya asked Natasha. + +She understood that he meant what were their parents quarreling +about. She did not answer. + +"It's because Papa wanted to give up all the carts to the +wounded," said Petya. "Vasilich told me. I consider..." + +"I consider," Natasha suddenly almost shouted, turning her angry +face to Petya, "I consider it so horrid, so abominable, so... I +don't know what. Are we despicable Germans?" + +Her throat quivered with convulsive sobs and, afraid of weakening +and letting the force of her anger run to waste, she turned and rushed +headlong up the stairs. + +Berg was sitting beside the countess consoling her with the +respectful attention of a relative. The count, pipe in hand, was +pacing up and down the room, when Natasha, her face distorted by +anger, burst in like a tempest and approached her mother with rapid +steps. + +"It's horrid! It's abominable!" she screamed. "You can't possibly +have ordered it!" + +Berg and the countess looked at her, perplexed and frightened. The +count stood still at the window and listened. + +"Mamma, it's impossible: see what is going on in the yard!" she +cried. "They will be left!..." + +"What's the matter with you? Who are 'they'? What do you want?" + +"Why, the wounded! It's impossible, Mamma. It's monstrous!... No, +Mamma darling, it's not the thing. Please forgive me, darling.... +Mamma, what does it matter what we take away? Only look what is +going on in the yard... Mamma!... It's impossible!" + +The count stood by the window and listened without turning round. +Suddenly he sniffed and put his face closer to the window. + +The countess glanced at her daughter, saw her face full of shame for +her mother, saw her agitation, and understood why her husband did +not turn to look at her now, and she glanced round quite disconcerted. + +"Oh, do as you like! Am I hindering anyone?" she said, not +surrendering at once. + +"Mamma, darling, forgive me!" + +But the countess pushed her daughter away and went up to her +husband. + +"My dear, you order what is right.... You know I don't understand +about it," said she, dropping her eyes shamefacedly. + +"The eggs... the eggs are teaching the hen," muttered the count +through tears of joy, and he embraced his wife who was glad to hide +her look of shame on his breast. + +"Papa! Mamma! May I see to it? May I?..." asked Natasha. "We will +still take all the most necessary things." + +The count nodded affirmatively, and Natasha, at the rapid pace at +which she used to run when playing at tag, ran through the ballroom to +the anteroom and downstairs into the yard. + +The servants gathered round Natasha, but could not believe the +strange order she brought them until the count himself, in his +wife's name, confirmed the order to give up all the carts to the +wounded and take the trunks to the storerooms. When they understood +that order the servants set to work at this new task with pleasure and +zeal. It no longer seemed strange to them but on the contrary it +seemed the only thing that could be done, just as a quarter of an hour +before it had not seemed strange to anyone that the wounded should +be left behind and the goods carted away but that had seemed the +only thing to do. + +The whole household, as if to atone for not having done it sooner, +set eagerly to work at the new task of placing the wounded in the +carts. The wounded dragged themselves out of their rooms and stood +with pale but happy faces round the carts. The news that carts were to +be had spread to the neighboring houses, from which wounded men +began to come into the Rostovs' yard. Many of the wounded asked them +not to unload the carts but only to let them sit on the top of the +things. But the work of unloading, once started, could not be +arrested. It seemed not to matter whether all or only half the +things were left behind. Cases full of china, bronzes, pictures, and +mirrors that had been so carefully packed the night before now lay +about the yard, and still they went on searching for and finding +possibilities of unloading this or that and letting the wounded have +another and yet another cart. + +"We can take four more men," said the steward. "They can have my +trap, or else what is to become of them?" + +"Let them have my wardrobe cart," said the countess. "Dunyasha can +go with me in the carriage." + +They unloaded the wardrobe cart and sent it to take wounded men from +a house two doors off. The whole household, servants included, was +bright and animated. Natasha was in a state of rapturous excitement +such as she had not known for a long time. + +"What could we fasten this onto?" asked the servants, trying to +fix a trunk on the narrow footboard behind a carriage. "We must keep +at least one cart." + +"What's in it?" asked Natasha. + +"The count's books." + +"Leave it, Vasilich will put it away. It's not wanted." + +The phaeton was full of people and there was a doubt as to where +Count Peter could sit. + +"On the box. You'll sit on the box, won't you, Petya?" cried +Natasha. + +Sonya too was busy all this time, but the aim of her efforts was +quite different from Natasha's. She was putting away the things that +had to be left behind and making a list of them as the countess +wished, and she tried to get as much taken away with them as possible. + + + + + +CHAPTER XVII + + +Before two o'clock in the afternoon the Rostovs' four carriages, +packed full and with the horses harnessed, stood at the front door. +One by one the carts with the wounded had moved out of the yard. + +The caleche in which Prince Andrew was being taken attracted Sonya's +attention as it passed the front porch. With the help of a maid she +was arranging a seat for the countess in the huge high coach that +stood at the entrance. + +"Whose caleche is that?" she inquired, leaning out of the carriage +window. + +"Why, didn't you know, Miss?" replied the maid. "The wounded prince: +he spent the night in our house and is going with us." + +"But who is it? What's his name?" + +"It's our intended that was--Prince Bolkonski himself! They say he +is dying," replied the maid with a sigh. + +Sonya jumped out of the coach and ran to the countess. The countess, +tired out and already dressed in shawl and bonnet for her journey, was +pacing up and down the drawing room, waiting for the household to +assemble for the usual silent prayer with closed doors before +starting. Natasha was not in the room. + +"Mamma," said Sonya, "Prince Andrew is here, mortally wounded. He is +going with us." + +The countess opened her eyes in dismay and, seizing Sonya's arm, +glanced around. + +"Natasha?" she murmured. + +At that moment this news had only one significance for both of them. +They knew their Natasha, and alarm as to what would happen if she +heard this news stifled all sympathy for the man they both liked. + +"Natasha does not know yet, but he is going with us," said Sonya. + +"You say he is dying?" + +Sonya nodded. + +The countess put her arms around Sonya and began to cry. + +"The ways of God are past finding out!" she thought, feeling that +the Almighty Hand, hitherto unseen, was becoming manifest in all +that was now taking place. + +"Well, Mamma? Everything is ready. What's the matter?" asked +Natasha, as with animated face she ran into the room. + +"Nothing," answered the countess. "If everything is ready let us +start." + +And the countess bent over her reticule to hide her agitated face. +Sonya embraced Natasha and kissed her. + +Natasha looked at her inquiringly. + +"What is it? What has happened?" + +"Nothing... No..." + +"Is it something very bad for me? What is it?" persisted Natasha +with her quick intuition. + +Sonya sighed and made no reply. The count, Petya, Madame Schoss, +Mavra Kuzminichna, and Vasilich came into the drawing room and, having +closed the doors, they all sat down and remained for some moments +silently seated without looking at one another. + +The count was the first to rise, and with a loud sigh crossed +himself before the icon. All the others did the same. Then the count +embraced Mavra Kuzminichna and Vasilich, who were to remain in Moscow, +and while they caught at his hand and kissed his shoulder he patted +their backs lightly with some vaguely affectionate and comforting +words. The countess went into the oratory and there Sonya found her on +her knees before the icons that had been left here and there hanging +on the wall. (The most precious ones, with which some family tradition +was connected, were being taken with them.) + +In the porch and in the yard the men whom Petya had armed with +swords and daggers, with trousers tucked inside their high boots and +with belts and girdles tightened, were taking leave of those remaining +behind. + +As is always the case at a departure, much had been forgotten or put +in the wrong place, and for a long time two menservants stood one on +each side of the open door and the carriage steps waiting to help +the countess in, while maids rushed with cushions and bundles from the +house to the carriages, the caleche, the phaeton, and back again. + +"They always will forget everything!" said the countess. "Don't +you know I can't sit like that?" + +And Dunyasha, with clenched teeth, without replying but with an +aggrieved look on her face, hastily got into the coach to rearrange +the seat. + +"Oh, those servants!" said the count, swaying his head. + +Efim, the old coachman, who was the only one the countess trusted to +drive her, sat perched up high on the box and did not so much as +glance round at what was going on behind him. From thirty years' +experience he knew it would be some time yet before the order, "Be +off, in God's name!" would be given him: and he knew that even when it +was said he would be stopped once or twice more while they sent back +to fetch something that had been forgotten, and even after that he +would again be stopped and the countess herself would lean out of +the window and beg him for the love of heaven to drive carefully +down the hill. He knew all this and therefore waited calmly for what +would happen, with more patience than the horses, especially the +near one, the chestnut Falcon, who was pawing the ground and +champing his bit. At last all were seated, the carriage steps were +folded and pulled up, the door was shut, somebody was sent for a +traveling case, and the countess leaned out and said what she had to +say. Then Efim deliberately doffed his hat and began crossing himself. +The postilion and all the other servants did the same. "Off, in +God's name!" said Efim, putting on his hat. "Start!" The postilion +started the horses, the off pole horse tugged at his collar, the +high springs creaked, and the body of the coach swayed. The footman +sprang onto the box of the moving coach which jolted as it passed +out of the yard onto the uneven roadway; the other vehicles jolted +in their turn, and the procession of carriages moved up the street. In +the carriages, the caleche, and the phaeton, all crossed themselves as +they passed the church opposite the house. Those who were to remain in +Moscow walked on either side of the vehicles seeing the travelers off. + +Rarely had Natasha experienced so joyful a feeling as now, sitting +in the carriage beside the countess and gazing at the slowly +receding walls of forsaken, agitated Moscow. Occasionally she leaned +out of the carriage window and looked back and then forward at the +long train of wounded in front of them. Almost at the head of the line +she could see the raised hood of Prince Andrew's caleche. She did +not know who was in it, but each time she looked at the procession her +eyes sought that caleche. She knew it was right in front. + +In Kudrino, from the Nikitski, Presnya, and Podnovinsk Streets +came several other trains of vehicles similar to the Rostovs', and +as they passed along the Sadovaya Street the carriages and carts +formed two rows abreast. + +As they were going round the Sukharev water tower Natasha, who was +inquisitively and alertly scrutinizing the people driving or walking +past, suddenly cried out in joyful surprise: + +"Dear me! Mamma, Sonya, look, it's he!" + +"Who? Who?" + +"Look! Yes, on my word, it's Bezukhov!" said Natasha, putting her +head out of the carriage and staring at a tall, stout man in a +coachman's long coat, who from his manner of walking and moving was +evidently a gentleman in disguise, and who was passing under the +arch of the Sukharev tower accompanied by a small, sallow-faced, +beardless old man in a frieze coat. + +"Yes, it really is Bezukhov in a coachman's coat, with a +queer-looking old boy. Really," said Natasha, "look, look!" + +"No, it's not he. How can you talk such nonsense?" + +"Mamma," screamed Natasha, "I'll stake my head it's he! I assure +you! Stop, stop!" she cried to the coachman. + +But the coachman could not stop, for from the Meshchanski Street +came more carts and carriages, and the Rostovs were being shouted at +to move on and not block the way. + +In fact, however, though now much farther off than before, the +Rostovs all saw Pierre--or someone extraordinarily like him--in a +coachman's coat, going down the street with head bent and a serious +face beside a small, beardless old man who looked like a footman. That +old man noticed a face thrust out of the carriage window gazing at +them, and respectfully touching Pierre's elbow said something to him +and pointed to the carriage. Pierre, evidently engrossed in thought, +could not at first understand him. At length when he had understood +and looked in the direction the old man indicated, he recognized +Natasha, and following his first impulse stepped instantly and rapidly +toward the coach. But having taken a dozen steps he seemed to remember +something and stopped. + +Natasha's face, leaning out of the window, beamed with quizzical +kindliness. + +"Peter Kirilovich, come here! We have recognized you! This is +wonderful!" she cried, holding out her hand to him. "What are you +doing? Why are you like this?" + +Pierre took her outstretched hand and kissed it awkwardly as he +walked along beside her while the coach still moved on. + +"What is the matter, Count?" asked the countess in a surprised and +commiserating tone. + +"What? What? Why? Don't ask me," said Pierre, and looked round at +Natasha whose radiant, happy expression--of which he was conscious +without looking at her--filled him with enchantment. + +"Are you remaining in Moscow, then?" + +Pierre hesitated. + +"In Moscow?" he said in a questioning tone. "Yes, in Moscow. +Goodby!" + +"Ah, if only I were a man? I'd certainly stay with you. How +splendid!" said Natasha. "Mamma, if you'll let me, I'll stay!" + +Pierre glanced absently at Natasha and was about to say something, +but the countess interrupted him. + +"You were at the battle, we heard." + +"Yes, I was," Pierre answered. "There will be another battle +tomorrow..." he began, but Natasha interrupted him. + +"But what is the matter with you, Count? You are not like +yourself...." + +"Oh, don't ask me, don't ask me! I don't know myself. Tomorrow... +But no! Good-by, good-by!" he muttered. "It's an awful time!" and +dropping behind the carriage he stepped onto the pavement. + +Natasha continued to lean out of the window for a long time, beaming +at him with her kindly, slightly quizzical, happy smile. + + + + + +CHAPTER XVIII + + +For the last two days, ever since leaving home, Pierre had been +living in the empty house of his deceased benefactor, Bazdeev. This is +how it happened. + +When he woke up on the morning after his return to Moscow and his +interview with Count Rostopchin, he could not for some time make out +where he was and what was expected of him. When he was informed that +among others awaiting him in his reception room there was a +Frenchman who had brought a letter from his wife, the Countess Helene, +he felt suddenly overcome by that sense of confusion and +hopelessness to which he was apt to succumb. He felt that everything +was now at an end, all was in confusion and crumbling to pieces, +that nobody was right or wrong, the future held nothing, and there was +no escape from this position. Smiling unnaturally and muttering to +himself, he first sat down on the sofa in an attitude of despair, then +rose, went to the door of the reception room and peeped through the +crack, returned flourishing his arms, and took up a book. His +major-domo came in a second time to say that the Frenchman who had +brought the letter from the countess was very anxious to see him if +only for a minute, and that someone from Bazdeev's widow had called to +ask Pierre to take charge of her husband's books, as she herself was +leaving for the country. + +"Oh, yes, in a minute; wait... or no! No, of course... go and say +I will come directly," Pierre replied to the major-domo. + +But as soon as the man had left the room Pierre took up his hat +which was lying on the table and went out of his study by the other +door. There was no one in the passage. He went along the whole +length of this passage to the stairs and, frowning and rubbing his +forehead with both hands, went down as far as the first landing. The +hall porter was standing at the front door. From the landing where +Pierre stood there was a second staircase leading to the back +entrance. He went down that staircase and out into the yard. No one +had seen him. But there were some carriages waiting, and as soon as +Pierre stepped out of the gate the coachmen and the yard porter +noticed him and raised their caps to him. When he felt he was being +looked at he behaved like an ostrich which hides its head in a bush in +order not to be seen: he hung his head and quickening his pace went +down the street. + +Of all the affairs awaiting Pierre that day the sorting of Joseph +Bazdeev's books and papers appeared to him the most necessary. + + +He hired the first cab he met and told the driver to go to the +Patriarch's Ponds, where the widow Bazdeev's house was. + +Continually turning round to look at the rows of loaded carts that +were making their way from all sides out of Moscow, and balancing +his bulky body so as not to slip out of the ramshackle old vehicle, +Pierre, experiencing the joyful feeling of a boy escaping from school, +began to talk to his driver. + +The man told him that arms were being distributed today at the +Kremlin and that tomorrow everyone would be sent out beyond the +Three Hills gates and a great battle would be fought there. + +Having reached the Patriarch's Ponds Pierre found the Bazdeevs' +house, where he had not been for a long time past. He went up to the +gate. Gerasim, that sallow beardless old man Pierre had seen at +Torzhok five years before with Joseph Bazdeev, came out in answer to +his knock. + +"At home?" asked Pierre. + +"Owing to the present state of things Sophia Danilovna has gone to +the Torzhok estate with the children, your excellency." + +"I will come in all the same, I have to look through the books," +said Pierre. + +"Be so good as to step in. Makar Alexeevich, the brother of my +late master--may the kingdom of heaven be his--has remained here, +but he is in a weak state as you know," said the old servant. + +Pierre knew that Makar Alexeevich was Joseph Bazdeev's half-insane +brother and a hard drinker. + +"Yes, yes, I know. Let us go in..." said Pierre and entered the +house. + +A tall, bald-headed old man with a red nose, wearing a dressing gown +and with galoshes on his bare feet, stood in the anteroom. On seeing +Pierre he muttered something angrily and went away along the passage. + +"He was a very clever man but has now grown quite feeble, as your +honor sees," said Gerasim. "Will you step into the study?" Pierre +nodded. "As it was sealed up so it has remained, but Sophia +Danilovna gave orders that if anyone should come from you they were to +have the books." + +Pierre went into that gloomy study which he had entered with such +trepidation in his benefactor's lifetime. The room, dusty and +untouched since the death of Joseph Bazdeev was now even gloomier. + +Gerasim opened one of the shutters and left the room on tiptoe. +Pierre went round the study, approached the cupboard in which the +manuscripts were kept, and took out what had once been one of the most +important, the holy of holies of the order. This was the authentic +Scotch Acts with Bazdeev's notes and explanations. He sat down at +the dusty writing table, and, having laid the manuscripts before +him, opened them out, closed them, finally pushed them away, and +resting his head on his hand sank into meditation. + +Gerasim looked cautiously into the study several times and saw +Pierre always sitting in the same attitude. + +More than two hours passed and Gerasim took the liberty of making +a slight noise at the door to attract his attention, but Pierre did +not hear him. + +"Is the cabman to be discharged, your honor?" + +"Oh yes!" said Pierre, rousing himself and rising hurriedly. "Look +here," he added, taking Gerasim by a button of his coat and looking +down at the old man with moist, shining, and ecstatic eyes, "I say, do +you know that there is going to be a battle tomorrow?" + +"We heard so," replied the man. + +"I beg you not to tell anyone who I am, and to do what I ask you." + +"Yes, your excellency," replied Gerasim. "Will you have something to +eat?" + +"No, but I want something else. I want peasant clothes and a +pistol," said Pierre, unexpectedly blushing. + +"Yes, your excellency," said Gerasim after thinking for a moment. + +All the rest of that day Pierre spent alone in his benefactor's +study, and Gerasim heard him pacing restlessly from one corner to +another and talking to himself. And he spent the night on a bed made +up for him there. + +Gerasim, being a servant who in his time had seen many strange +things, accepted Pierre's taking up his residence in the house without +surprise, and seemed pleased to have someone to wait on. That same +evening--without even asking himself what they were wanted for--he +procured a coachman's coat and cap for Pierre, and promised to get him +the pistol next day. Makar Alexeevich came twice that evening +shuffling along in his galoshes as far as the door and stopped and +looked ingratiatingly at Pierre. But as soon as Pierre turned toward +him he wrapped his dressing gown around him with a shamefaced and +angry look and hurried away. It was when Pierre (wearing the +coachman's coat which Gerasim had procured for him and had disinfected +by steam) was on his way with the old man to buy the pistol at the +Sukharev market that he met the Rostovs. + + + + + +CHAPTER XIX + + +Kutuzov's order to retreat through Moscow to the Ryazan road was +issued at night on the first of September. + +The first troops started at once, and during the night they +marched slowly and steadily without hurry. At daybreak, however, those +nearing the town at the Dorogomilov bridge saw ahead of them masses of +soldiers crowding and hurrying across the bridge, ascending on the +opposite side and blocking the streets and alleys, while endless +masses of troops were bearing down on them from behind, and an +unreasoning hurry and alarm overcame them. They all rushed forward +to the bridge, onto it, and to the fords and the boats. Kutuzov +himself had driven round by side streets to the other side of Moscow. + +By ten o'clock in the morning of the second of September, only the +rear guard remained in the Dorogomilov suburb, where they had ample +room. The main army was on the other side of Moscow or beyond it. + +At that very time, at ten in the morning of the second of September, +Napoleon was standing among his troops on the Poklonny Hill looking at +the panorama spread out before him. From the twenty-sixth of August to +the second of September, that is from the battle of Borodino to the +entry of the French into Moscow, during the whole of that agitating, +memorable week, there had been the extraordinary autumn weather that +always comes as a surprise, when the sun hangs low and gives more heat +than in spring, when everything shines so brightly in the rare clear +atmosphere that the eyes smart, when the lungs are strengthened and +refreshed by inhaling the aromatic autumn air, when even the nights +are warm, and when in those dark warm nights, golden stars startle and +delight us continually by falling from the sky. + +At ten in the morning of the second of September this weather +still held. + +The brightness of the morning was magical. Moscow seen from the +Poklonny Hill lay spaciously spread out with her river, her gardens, +and her churches, and she seemed to be living her usual life, her +cupolas glittering like stars in the sunlight. + +The view of the strange city with its peculiar architecture, such as +he had never seen before, filled Napoleon with the rather envious +and uneasy curiosity men feel when they see an alien form of life that +has no knowledge of them. This city was evidently living with the full +force of its own life. By the indefinite signs which, even at a +distance, distinguish a living body from a dead one, Napoleon from the +Poklonny Hill perceived the throb of life in the town and felt, as +it were, the breathing of that great and beautiful body. + +Every Russian looking at Moscow feels her to be a mother; every +foreigner who sees her, even if ignorant of her significance as the +mother city, must feel her feminine character, and Napoleon felt it. + +"Cette ville asiatique aux innombrables eglises, Moscou la sainte. +La voila done enfin, cette fameuse ville! Il etait temps,"* said he, +and dismounting he ordered a plan of Moscow to be spread out before +him, and summoned Lelorgne d'Ideville, the interpreter. + + +*"That Asiatic city of the innumerable churches, holy Moscow! Here +it is then at last, that famous city. It was high time." + + +"A town captured by the enemy is like a maid who has lost her +honor," thought he (he had said so to Tuchkov at Smolensk). From +that point of view he gazed at the Oriental beauty he had not seen +before. It seemed strange to him that his long-felt wish, which had +seemed unattainable, had at last been realized. In the clear morning +light he gazed now at the city and now at the plan, considering its +details, and the assurance of possessing it agitated and awed him. + +"But could it be otherwise?" he thought. "Here is this capital at my +feet. Where is Alexander now, and of what is he thinking? A strange, +beautiful, and majestic city; and a strange and majestic moment! In +what light must I appear to them!" thought he, thinking of his troops. +"Here she is, the reward for all those fainthearted men," he +reflected, glancing at those near him and at the troops who were +approaching and forming up. "One word from me, one movement of my +hand, and that ancient capital of the Tsars would perish. But my +clemency is always ready to descend upon the vanquished. I must be +magnanimous and truly great. But no, it can't be true that I am in +Moscow," he suddenly thought. "Yet here she is lying at my feet, +with her golden domes and crosses scintillating and twinkling in the +sunshine. But I shall spare her. On the ancient monuments of barbarism +and despotism I will inscribe great words of justice and mercy.... +It is just this which Alexander will feel most painfully, I know him." +(It seemed to Napoleon that the chief import of what was taking +place lay in the personal struggle between himself and Alexander.) +"From the height of the Kremlin--yes, there is the Kremlin, yes--I +will give them just laws; I will teach them the meaning of true +civilization, I will make generations of boyars remember their +conqueror with love. I will tell the deputation that I did not, and do +not, desire war, that I have waged war only against the false policy +of their court; that I love and respect Alexander and that in Moscow I +will accept terms of peace worthy of myself and of my people. I do not +wish to utilize the fortunes of war to humiliate an honored monarch. +'Boyars,' I will say to them, 'I do not desire war, I desire the peace +and welfare of all my subjects.' However, I know their presence will +inspire me, and I shall speak to them as I always do: clearly, +impressively, and majestically. But can it be true that I am in +Moscow? Yes, there she lies." + +"Qu'on m'amene les boyars,"* said he to his suite. + + +*"Bring the boyars to me." + + +A general with a brilliant suite galloped off at once to fetch the +boyars. + +Two hours passed. Napoleon had lunched and was again standing in the +same place on the Poklonny Hill awaiting the deputation. His speech to +the boyars had already taken definite shape in his imagination. That +speech was full of dignity and greatness as Napoleon understood it. + +He was himself carried away by the tone of magnanimity he intended +to adopt toward Moscow. In his imagination he appointed days for +assemblies at the palace of the Tsars, at which Russian notables and +his own would mingle. He mentally appointed a governor, one who +would win the hearts of the people. Having learned that there were +many charitable institutions in Moscow he mentally decided that he +would shower favors on them all. He thought that, as in Africa he +had to put on a burnoose and sit in a mosque, so in Moscow he must +be beneficent like the Tsars. And in order finally to touch the hearts +of the Russians--and being like all Frenchmen unable to imagine +anything sentimental without a reference to ma chere, ma tendre, ma +pauvre mere* --he decided that he would place an inscription on all +these establishments in large letters: "This establishment is +dedicated to my dear mother." Or no, it should be simply: Maison de ma +Mere,*[2] he concluded. "But am I really in Moscow? Yes, here it +lies before me, but why is the deputation from the city so long in +appearing?" he wondered. + + +*"My dear, my tender, my poor mother." + +*[2] "House of my Mother." + + +Meanwhile an agitated consultation was being carried on in +whispers among his generals and marshals at the rear of his suite. +Those sent to fetch the deputation had returned with the news that +Moscow was empty, that everyone had left it. The faces of those who +were not conferring together were pale and perturbed. They were not +alarmed by the fact that Moscow had been abandoned by its +inhabitants (grave as that fact seemed), but by the question how to +tell the Emperor--without putting him in the terrible position of +appearing ridiculous--that he had been awaiting the boyars so long +in vain: that there were drunken mobs left in Moscow but no one +else. Some said that a deputation of some sort must be scraped +together, others disputed that opinion and maintained that the Emperor +should first be carefully and skillfully prepared, and then told the +truth. + +"He will have to be told, all the same," said some gentlemen of +the suite. "But, gentlemen..." + +The position was the more awkward because the Emperor, meditating +upon his magnanimous plans, was pacing patiently up and down before +the outspread map, occasionally glancing along the road to Moscow from +under his lifted hand with a bright and proud smile. + +"But it's impossible..." declared the gentlemen of the suite, +shrugging their shoulders but not venturing to utter the implied word- +le ridicule... + +At last the Emperor, tired of futile expectation, his actor's +instinct suggesting to him that the sublime moment having been too +long drawn out was beginning to lose its sublimity, gave a sign with +his hand. A single report of a signaling gun followed, and the troops, +who were already spread out on different sides of Moscow, moved into +the city through Tver, Kaluga, and Dorogomilov gates. Faster and +faster, vying with one another, they moved at the double or at a trot, +vanishing amid the clouds of dust they raised and making the air +ring with a deafening roar of mingling shouts. + +Drawn on by the movement of his troops Napoleon rode with them as +far as the Dorogomilov gate, but there again stopped and, +dismounting from his horse, paced for a long time by the +Kammer-Kollezski rampart, awaiting the deputation. + + + + + +CHAPTER XX + +Meanwhile Moscow was empty. There were still people in it, perhaps a +fiftieth part of its former inhabitants had remained, but it was +empty. It was empty in the sense that a dying queenless hive is empty. + +In a queenless hive no life is left though to a superficial glance +it seems as much alive as other hives. + +The bees circle round a queenless hive in the hot beams of the +midday sun as gaily as around the living hives; from a distance it +smells of honey like the others, and bees fly in and out in the same +way. But one has only to observe that hive to realize that there is no +longer any life in it. The bees do not fly in the same way, the +smell and the sound that meet the beekeeper are not the same. To the +beekeeper's tap on the wall of the sick hive, instead of the former +instant unanimous humming of tens of thousands of bees with their +abdomens threateningly compressed, and producing by the rapid +vibration of their wings an aerial living sound, the only reply is a +disconnected buzzing from different parts of the deserted hive. From +the alighting board, instead of the former spirituous fragrant smell +of honey and venom, and the warm whiffs of crowded life, comes an odor +of emptiness and decay mingling with the smell of honey. There are +no longer sentinels sounding the alarm with their abdomens raised, and +ready to die in defense of the hive. There is no longer the measured +quiet sound of throbbing activity, like the sound of boiling water, +but diverse discordant sounds of disorder. In and out of the hive long +black robber bees smeared with honey fly timidly and shiftily. They do +not sting, but crawl away from danger. Formerly only bees laden with +honey flew into the hive, and they flew out empty; now they fly out +laden. The beekeeper opens the lower part of the hive and peers in. +Instead of black, glossy bees--tamed by toil, clinging to one +another's legs and drawing out the wax, with a ceaseless hum of labor- +that used to hang in long clusters down to the floor of the hive, +drowsy shriveled bees crawl about separately in various directions +on the floor and walls of the hive. Instead of a neatly glued floor, +swept by the bees with the fanning of their wings, there is a floor +littered with bits of wax, excrement, dying bees scarcely moving their +legs, and dead ones that have not been cleared away. + +The beekeeper opens the upper part of the hive and examines the +super. Instead of serried rows of bees sealing up every gap in the +combs and keeping the brood warm, he sees the skillful complex +structures of the combs, but no longer in their former state of +purity. All is neglected and foul. Black robber bees are swiftly and +stealthily prowling about the combs, and the short home bees, +shriveled and listless as if they were old, creep slowly about without +trying to hinder the robbers, having lost all motive and all sense +of life. Drones, bumblebees, wasps, and butterflies knock awkwardly +against the walls of the hive in their flight. Here and there among +the cells containing dead brood and honey an angry buzzing can +sometimes be heard. Here and there a couple of bees, by force of habit +and custom cleaning out the brood cells, with efforts beyond their +strength laboriously drag away a dead bee or bumblebee without knowing +why they do it. In another corner two old bees are languidly fighting, +or cleaning themselves, or feeding one another, without themselves +knowing whether they do it with friendly or hostile intent. In a third +place a crowd of bees, crushing one another, attack some victim and +fight and smother it, and the victim, enfeebled or killed, drops +from above slowly and lightly as a feather, among the heap of corpses. +The keeper opens the two center partitions to examine the brood cells. +In place of the former close dark circles formed by thousands of +bees sitting back to back and guarding the high mystery of generation, +he sees hundreds of dull, listless, and sleepy shells of bees. They +have almost all died unawares, sitting in the sanctuary they had +guarded and which is now no more. They reek of decay and death. Only a +few of them still move, rise, and feebly fly to settle on the +enemy's hand, lacking the spirit to die stinging him; the rest are +dead and fall as lightly as fish scales. The beekeeper closes the +hive, chalks a mark on it, and when he has time tears out its contents +and burns it clean. + +So in the same way Moscow was empty when Napoleon, weary, uneasy, +and morose, paced up and down in front of the Kammer-Kollezski +rampart, awaiting what to his mind was a necessary, if but formal, +observance of the proprieties--a deputation. + +In various corners of Moscow there still remained a few people +aimlessly moving about, following their old habits and hardly aware of +what they were doing. + +When with due circumspection Napoleon was informed that Moscow was +empty, he looked angrily at his informant, turned away, and silently +continued to walk to and fro. + +"My carriage!" he said. + +He took his seat beside the aide-de-camp on duty and drove into +the suburb. "Moscow deserted!" he said to himself. "What an incredible +event!" + +He did not drive into the town, but put up at an inn in the +Dorogomilov suburb. + +The coup de theatre had not come off. + + + + + +CHAPTER XXI + + +The Russian troops were passing through Moscow from two o'clock at +night till two in the afternoon and bore away with them the wounded +and the last of the inhabitants who were leaving. + +The greatest crush during the movement of the troops took place at +the Stone, Moskva, and Yauza bridges. + +While the troops, dividing into two parts when passing around the +Kremlin, were thronging the Moskva and the Stone bridges, a great many +soldiers, taking advantage of the stoppage and congestion, turned back +from the bridges and slipped stealthily and silently past the church +of Vasili the Beatified and under the Borovitski gate, back up the +hill to the Red Square where some instinct told them they could easily +take things not belonging to them. Crowds of the kind seen at cheap +sales filled all the passages and alleys of the Bazaar. But there were +no dealers with voices of ingratiating affability inviting customers +to enter; there were no hawkers, nor the usual motley crowd of +female purchasers--but only soldiers, in uniforms and overcoats though +without muskets, entering the Bazaar empty-handed and silently +making their way out through its passages with bundles. Tradesmen +and their assistants (of whom there were but few) moved about among +the soldiers quite bewildered. They unlocked their shops and locked +them up again, and themselves carried goods away with the help their +assistants. On the square in front of the Bazaar were drummers beating +the muster call. But the roll of the drums did not make the looting +soldiers run in the direction of the drum as formerly, but made +them, on the contrary, run farther away. Among the soldiers in the +shops and passages some men were to be seen in gray coats, with +closely shaven heads. Two officers, one with a scarf over his +uniform and mounted on a lean, dark-gray horse, the other in an +overcoat and on foot, stood at the corner of Ilyinka Street, +talking. A third officer galloped up to them. + +"The general orders them all to be driven out at once, without fail. +This is outrageous! Half the men have dispersed." + +"Where are you off to?... Where?..." he shouted to three infantrymen +without muskets who, holding up the skirts of their overcoats, were +slipping past him into the Bazaar passage. "Stop, you rascals!" + +"But how are you going to stop them?" replied another officer. +"There is no getting them together. The army should push on before the +rest bolt, that's all!" + +"How can one push on? They are stuck there, wedged on the bridge, +and don't move. Shouldn't we put a cordon round to prevent the rest +from running away?" + +"Come, go in there and drive them out!" shouted the senior officer. + +The officer in the scarf dismounted, called up a drummer, and went +with him into the arcade. Some soldiers started running away in a +group. A shopkeeper with red pimples on his cheeks near the nose, +and a calm, persistent, calculating expression on his plump face, +hurriedly and ostentatiously approached the officer, swinging his +arms. + +"Your honor!" said he. "Be so good as to protect us! We won't grudge +trifles, you are welcome to anything--we shall be delighted! +Pray!... I'll fetch a piece of cloth at once for such an honorable +gentleman, or even two pieces with pleasure. For we feel how it is; +but what's all this--sheer robbery! If you please, could not guards be +placed if only to let us close the shop...." + +Several shopkeepers crowded round the officer. + +"Eh, what twaddle!" said one of them, a thin, stern-looking man. +"When one's head is gone one doesn't weep for one's hair! Take what +any of you like!" And flourishing his arm energetically he turned +sideways to the officer. + +"It's all very well for you, Ivan Sidorych, to talk," said the first +tradesman angrily. "Please step inside, your honor!" + +"Talk indeed!" cried the thin one. "In my three shops here I have +a hundred thousand rubles' worth of goods. Can they be saved when +the army has gone? Eh, what people! 'Against God's might our hands +can't fight.'" + +"Come inside, your honor!" repeated the tradesman, bowing. + +The officer stood perplexed and his face showed indecision. + +"It's not my business!" he exclaimed, and strode on quickly down one +of the passages. + +From one open shop came the sound of blows and vituperation, and +just as the officer came up to it a man in a gray coat with a shaven +head was flung out violently. + +This man, bent double, rushed past the tradesman and the officer. +The officer pounced on the soldiers who were in the shops, but at that +moment fearful screams reached them from the huge crowd on the +Moskva bridge and the officer ran out into the square. + +"What is it? What is it?" he asked, but his comrade was already +galloping off past Vasili the Beatified in the direction from which +the screams came. + +The officer mounted his horse and rode after him. When he reached +the bridge he saw two unlimbered guns, the infantry crossing the +bridge, several overturned carts, and frightened and laughing faces +among the troops. Beside the cannon a cart was standing to which two +horses were harnessed. Four borzois with collars were pressing close +to the wheels. The cart was loaded high, and at the very top, beside a +child's chair with its legs in the air, sat a peasant woman uttering +piercing and desperate shrieks. He was told by his fellow officers +that the screams of the crowd and the shrieks of the woman were due to +the fact that General Ermolov, coming up to the crowd and learning +that soldiers were dispersing among the shops while crowds of +civilians blocked the bridge, had ordered two guns to be unlimbered +and made a show of firing at the bridge. The crowd, crushing one +another, upsetting carts, and shouting and squeezing desperately, +had cleared off the bridge and the troops were now moving forward. + + + + + +CHAPTER XXII + + +Meanwhile, the city itself was deserted. There was hardly anyone +in the streets. The gates and shops were all closed, only here and +there round the taverns solitary shouts or drunken songs could be +heard. Nobody drove through the streets and footsteps were rarely +heard. The Povarskaya was quite still and deserted. The huge courtyard +of the Rostovs' house was littered with wisps of hay and with dung +from the horses, and not a soul was to be seen there. In the great +drawing room of the house, which had been left with all it +contained, were two people. They were the yard porter Ignat, and the +page boy Mishka, Vasilich's grandson who had stayed in Moscow with his +grandfather. Mishka had opened the clavichord and was strumming on +it with one finger. The yard porter, his arms akimbo, stood smiling +with satisfaction before the large mirror. + +"Isn't it fine, eh, Uncle Ignat?" said the boy, suddenly beginning +to strike the keyboard with both hands. + +"Only fancy!" answered Ignat, surprised at the broadening grin on +his face in the mirror. + +"Impudence! Impudence!" they heard behind them the voice of Mavra +Kuzminichna who had entered silently. "How he's grinning, the fat mug! +Is that what you're here for? Nothing's cleared away down there and +Vasilich is worn out. Just you wait a bit!" + +Ignat left off smiling, adjusted his belt, and went out of the +room with meekly downcast eyes. + +"Aunt, I did it gently," said the boy. + +"I'll give you something gently, you monkey you!" cried Mavra +Kuzminichna, raising her arm threateningly. "Go and get the samovar to +boil for your grandfather." + +Mavra Kuzminichna flicked the dust off the clavichord and closed it, +and with a deep sigh left the drawing room and locked its main door. + +Going out into the yard she paused to consider where she should go +next--to drink tea in the servants' wing with Vasilich, or into the +storeroom to put away what still lay about. + +She heard the sound of quick footsteps in the quiet street. +Someone stopped at the gate, and the latch rattled as someone tried to +open it. Mavra Kuzminichna went to the gate. + +"Who do you want?" + +"The count--Count Ilya Andreevich Rostov." + +"And who are you?" + +"An officer, I have to see him," came the reply in a pleasant, +well-bred Russian voice. + +Mavra Kuzminichna opened the gate and an officer of eighteen, with +the round face of a Rostov, entered the yard. + +"They have gone away, sir. Went away yesterday at vespertime," +said Mavra Kuzminichna cordially. + +The young officer standing in the gateway, as if hesitating +whether to enter or not, clicked his tongue. + +"Ah, how annoying!" he muttered. "I should have come yesterday.... +Ah, what a pity." + +Meanwhile, Mavra Kuzminichna was attentively and sympathetically +examining the familiar Rostov features of the young man's face, his +tattered coat and trodden-down boots. + +"What did you want to see the count for?" she asked. + +"Oh well... it can't be helped!" said he in a tone of vexation and +placed his hand on the gate as if to leave. + +He again paused in indecision. + +"You see," he suddenly said, "I am a kinsman of the count's and he +has been very kind to me. As you see" (he glanced with an amused air +and good-natured smile at his coat and boots) "my things are worn +out and I have no money, so I was going to ask the count..." + +Mavra Kuzminichna did not let him finish. + +"Just wait a minute, sir. One little moment," said she. + +And as soon as the officer let go of the gate handle she turned and, +hurrying away on her old legs, went through the back yard to the +servants' quarters. + +While Mavra Kuzminichna was running to her room the officer walked +about the yard gazing at his worn-out boots with lowered head and a +faint smile on his lips. "What a pity I've missed Uncle! What a nice +old woman! Where has she run off to? And how am I to find the +nearest way to overtake my regiment, which must by now be getting near +the Rogozhski gate?" thought he. Just then Mavra Kuzminichna +appeared from behind the corner of the house with a frightened yet +resolute look, carrying a rolled-up check kerchief in her hand. +While still a few steps from the officer she unfolded the kerchief and +took out of it a white twenty-five-ruble assignat and hastily handed +it to him. + +"If his excellency had been at home, as a kinsman he would of +course... but as it is..." + +Mavra Kuzminichna grew abashed and confused. The officer did not +decline, but took the note quietly and thanked her. + +"If the count had been at home..." Mavra Kuzminichna went on +apologetically. "Christ be with you, sir! May God preserve you!" +said she, bowing as she saw him out. + +Swaying his head and smiling as if amused at himself, the officer +ran almost at a trot through the deserted streets toward the Yauza +bridge to overtake his regiment. + +But Mavra Kuzminichna stood at the closed gate for some time with +moist eyes, pensively swaying her head and feeling an unexpected +flow of motherly tenderness and pity for the unknown young officer. + + + + + +CHAPTER XXIII + + +From an unfinished house on the Varvarka, the ground floor of +which was a dramshop, came drunken shouts and songs. On benches +round the tables in a dirty little room sat some ten factory hands. +Tipsy and perspiring, with dim eyes and wide-open mouths, they were +all laboriously singing some song or other. They were singing +discordantly, arduously, and with great effort, evidently not +because they wished to sing, but because they wanted to show they were +drunk and on a spree. One, a tall, fair-haired lad in a clean blue +coat, was standing over the others. His face with its fine straight +nose would have been handsome had it not been for his thin, +compressed, twitching lips and dull, gloomy, fixed eyes. Evidently +possessed by some idea, he stood over those who were singing, and +solemnly and jerkily flourished above their heads his white arm with +the sleeve turned up to the elbow, trying unnaturally to spread out +his dirty fingers. The sleeve of his coat kept slipping down and he +always carefully rolled it up again with his left hand, as if it +were most important that the sinewy white arm he was flourishing +should be bare. In the midst of the song cries were heard, and +fighting and blows in the passage and porch. The tall lad waved his +arm. + +"Stop it!" he exclaimed peremptorily. "There's a fight, lads!" +And, still rolling up his sleeve, he went out to the porch. + +The factory hands followed him. These men, who under the +leadership of the tall lad were drinking in the dramshop that morning, +had brought the publican some skins from the factory and for this +had had drink served them. The blacksmiths from a neighboring +smithy, hearing the sounds of revelry in the tavern and supposing it +to have been broken into, wished to force their way in too and a fight +in the porch had resulted. + +The publican was fighting one of the smiths at the door, and when +the workmen came out the smith, wrenching himself free from the tavern +keeper, fell face downward on the pavement. + +Another smith tried to enter the doorway, pressing against the +publican with his chest. + +The lad with the turned-up sleeve gave the smith a blow in the +face and cried wildly: "They're fighting us, lads!" + +At that moment the first smith got up and, scratching his bruised +face to make it bleed, shouted in a tearful voice: "Police! Murder!... +They've killed a man, lads!" + +"Oh, gracious me, a man beaten to death--killed!..." screamed a +woman coming out of a gate close by. + +A crowd gathered round the bloodstained smith. + +"Haven't you robbed people enough--taking their last shirts?" said a +voice addressing the publican. "What have you killed a man for, you +thief?" + +The tall lad, standing in the porch, turned his bleared eyes from +the publican to the smith and back again as if considering whom he +ought to fight now. + +"Murderer!" he shouted suddenly to the publican. "Bind him, lads!" + +"I daresay you would like to bind me!" shouted the publican, pushing +away the men advancing on him, and snatching his cap from his head +he flung it on the ground. + +As if this action had some mysterious and menacing significance, the +workmen surrounding the publican paused in indecision. + +"I know the law very well, mates! I'll take the matter to the +captain of police. You think I won't get to him? Robbery is not +permitted to anybody now a days!" shouted the publican, picking up his +cap. + +"Come along then! Come along then!" the publican and the tall +young fellow repeated one after the other, and they moved up the +street together. + +The bloodstained smith went beside them. The factory hands and +others followed behind, talking and shouting. + +At the corner of the Moroseyka, opposite a large house with closed +shutters and bearing a bootmaker's signboard, stood a score of thin, +worn-out, gloomy-faced bootmakers, wearing overalls and long +tattered coats. + +"He should pay folks off properly," a thin workingman, with frowning +brows and a straggly beard, was saying. + +"But he's sucked our blood and now he thinks he's quit of us. He's +been misleading us all the week and now that he's brought us to this +pass he's made off." + +On seeing the crowd and the bloodstained man the workman ceased +speaking, and with eager curiosity all the bootmakers joined the +moving crowd. + +"Where are all the folks going?" + +"Why, to the police, of course!" + +"I say, is it true that we have been beaten?" "And what did you +think? Look what folks are saying." + +Questions and answers were heard. The publican, taking advantage +of the increased crowd, dropped behind and returned to his tavern. + +The tall youth, not noticing the disappearance of his foe, waved his +bare arm and went on talking incessantly, attracting general attention +to himself. It was around him that the people chiefly crowded, +expecting answers from him to the questions that occupied all their +minds. + +"He must keep order, keep the law, that's what the government is +there for. Am I not right, good Christians?" said the tall youth, with +a scarcely perceptible smile. "He thinks there's no government! How +can one do without government? Or else there would be plenty who'd rob +us." + +"Why talk nonsense?" rejoined voices in the crowd. "Will they give +up Moscow like this? They told you that for fun, and you believed +it! Aren't there plenty of troops on the march? Let him in, indeed! +That's what the government is for. You'd better listen to what +people are saying," said some of the mob pointing to the tall youth. + +By the wall of China-Town a smaller group of people were gathered +round a man in a frieze coat who held a paper in his hand. + +"An ukase, they are reading an ukase! Reading an ukase!" cried +voices in the crowd, and the people rushed toward the reader. + +The man in the frieze coat was reading the broadsheet of August 31 +When the crowd collected round him he seemed confused, but at the +demand of the tall lad who had pushed his way up to him, he began in a +rather tremulous voice to read the sheet from the beginning. + +"Early tomorrow I shall go to his Serene Highness," he read +("Sirin Highness," said the tall fellow with a triumphant smile on his +lips and a frown on his brow), "to consult with him to act, and to aid +the army to exterminate these scoundrels. We too will take part..." +the reader went on, and then paused ("Do you see," shouted the youth +victoriously, "he's going to clear up the whole affair for +you...."), "in destroying them, and will send these visitors to the +devil. I will come back to dinner, and we'll set to work. We will +do, completely do, and undo these scoundrels." + +The last words were read out in the midst of complete silence. The +tall lad hung his head gloomily. It was evident that no one had +understood the last part. In particular, the words "I will come back +to dinner," evidently displeased both reader and audience. The +people's minds were tuned to a high pitch and this was too simple +and needlessly comprehensible--it was what any one of them might +have said and therefore was what an ukase emanating from the highest +authority should not say. + +They all stood despondent and silent. The tall youth moved his +lips and swayed from side to side. + +"We should ask him... that's he himself?"... "Yes, ask him +indeed!... Why not? He'll explain"... voices in the rear of the +crowd were suddenly heard saying, and the general attention turned +to the police superintendent's trap which drove into the square +attended by two mounted dragoons. + +The superintendent of police, who had that morning by Count +Rostopchin's orders to burn the barges and had in connection with that +matter acquired a large sum of money which was at that moment in his +pocket, on seeing a crowd bearing down upon him told his coachman to +stop. + +"What people are these?" he shouted to the men, who were moving +singly and timidly in the direction of his trap. + +"What people are these?" he shouted again, receiving no answer. + +"Your honor..." replied the shopman in the frieze coat, "your honor, +in accord with the proclamation of his highest excellency the count, +they desire to serve, not sparing their lives, and it is not any +kind of riot, but as his highest excellence said..." + +"The count has not left, he is here, and an order will be issued +concerning you," said the superintendent of police. "Go on!" he +ordered his coachman. + +The crowd halted, pressing around those who had heard what the +superintendent had said, and looking at the departing trap. + +The superintendent of police turned round at that moment with a +scared look, said something to his coachman, and his horses +increased their speed. + +"It's a fraud, lads! Lead the way to him, himself!" shouted the tall +youth. "Don't let him go, lads! Let him answer us! Keep him!" +shouted different people and the people dashed in pursuit of the trap. + +Following the superintendent of police and talking loudly the +crowd went in the direction of the Lubyanka Street. + +"There now, the gentry and merchants have gone away and left us to +perish. Do they think we're dogs?" voices in the crowd were heard +saying more and more frequently. + + + + + +CHAPTER XXIV + + +On the evening of the first of September, after his interview with +Kutuzov, Count Rostopchin had returned to Moscow mortified and +offended because he had not been invited to attend the council of war, +and because Kutuzov had paid no attention to his offer to take part in +the defense of the city; amazed also at the novel outlook revealed +to him at the camp, which treated the tranquillity of the capital +and its patriotic fervor as not merely secondary but quite +irrelevant and unimportant matters. Distressed, offended, and +surprised by all this, Rostopchin had returned to Moscow. After supper +he lay down on a sofa without undressing, and was awakened soon +after midnight by a courier bringing him a letter from Kutuzov. This +letter requested the count to send police officers to guide the troops +through the town, as the army was retreating to the Ryazan road beyond +Moscow. This was not news to Rostopchin. He had known that Moscow +would be abandoned not merely since his interview the previous day +with Kutuzov on the Poklonny Hill but ever since the battle of +Borodino, for all the generals who came to Moscow after that battle +had said unanimously that it was impossible to fight another battle, +and since then the government property had been removed every night, +and half the inhabitants had left the city with Rostopchin's own +permission. Yet all the same this information astonished and irritated +the count, coming as it did in the form of a simple note with an order +from Kutuzov, and received at night, breaking in on his beauty sleep. + +When later on in his memoirs Count Rostopchin explained his +actions at this time, he repeatedly says that he was then actuated +by two important considerations: to maintain tranquillity in Moscow +and expedite the departure of the inhabitants. If one accepts this +twofold aim all Rostopchin's actions appear irreproachable. "Why +were the holy relics, the arms, ammunition, gunpowder, and stores of +corn not removed? Why were thousands of inhabitants deceived into +believing that Moscow would not be given up--and thereby ruined?" +"To presence the tranquillity of the city," explains Count Rostopchin. +"Why were bundles of useless papers from the government offices, and +Leppich's balloon and other articles removed?" "To leave the town +empty," explains Count Rostopchin. One need only admit that public +tranquillity is in danger and any action finds a justification. + +All the horrors of the reign of terror were based only on solicitude +for public tranquillity. + +On what, then, was Count Rostopchin's fear for the tranquillity of +Moscow based in 1812? What reason was there for assuming any +probability of an uprising in the city? The inhabitants were leaving +it and the retreating troops were filling it. Why should that cause +the masses to riot? + +Neither in Moscow nor anywhere in Russia did anything resembling +an insurrection ever occur when the enemy entered a town. More than +ten thousand people were still in Moscow on the first and second of +September, and except for a mob in the governor's courtyard, assembled +there at his bidding, nothing happened. It is obvious that there would +have been even less reason to expect a disturbance among the people if +after the battle of Borodino, when the surrender of Moscow became +certain or at least probable, Rostopchin instead of exciting the +people by distributing arms and broadsheets had taken steps to +remove all the holy relics, the gunpowder, munitions, and money, and +had told the population plainly that the town would be abandoned. + +Rostopchin, though he had patriotic sentiments, was a sanguine and +impulsive man who had always moved in the highest administrative +circles and had no understanding at all of the people he supposed +himself to be guiding. Ever since the enemy's entry into Smolensk he +had in imagination been playing the role of director of the popular +feeling of "the heart of Russia." Not only did it seem to him (as to +all administrators) that he controlled the external actions of +Moscow's inhabitants, but he also thought he controlled their mental +attitude by means of his broadsheets and posters, written in a +coarse tone which the people despise in their own class and do not +understand from those in authority. Rostopchin was so pleased with the +fine role of leader of popular feeling, and had grown so used to it, +that the necessity of relinquishing that role and abandoning Moscow +without any heroic display took him unawares and he suddenly felt +the ground slip away from under his feet, so that he positively did +not know what to do. Though he knew it was coming, he did not till the +last moment wholeheartedly believe that Moscow would be abandoned, and +did not prepare for it. The inhabitants left against his wishes. If +the government offices were removed, this was only done on the +demand of officials to whom the count yielded reluctantly. He was +absorbed in the role he had created for himself. As is often the +case with those gifted with an ardent imagination, though he had +long known that Moscow would be abandoned he knew it only with his +intellect, he did not believe it in his heart and did not adapt +himself mentally to this new position of affairs. + +All his painstaking and energetic activity (in how far it was useful +and had any effect on the people is another question) had been +simply directed toward arousing in the masses his own feeling of +patriotic hatred of the French. + +But when events assumed their true historical character, when +expressing hatred for the French in words proved insufficient, when it +was not even possible to express that hatred by fighting a battle, +when self-confidence was of no avail in relation to the one question +before Moscow, when the whole population streamed out of Moscow as one +man, abandoning their belongings and proving by that negative action +all the depth of their national feeling, then the role chosen by +Rostopchin suddenly appeared senseless. He unexpectedly felt himself +ridiculous, weak, and alone, with no ground to stand on. + +When, awakened from his sleep, he received that cold, peremptory +note from Kutuzov, he felt the more irritated the more he felt himself +to blame. All that he had been specially put in charge of, the state +property which he should have removed, was still in Moscow and it +was no longer possible to take the whole of it away. + +"Who is to blame for it? Who has let things come to such a pass?" he +ruminated. "Not I, of course. I had everything ready. I had Moscow +firmly in hand. And this is what they have let it come to! Villains! +Traitors!" he thought, without clearly defining who the villains and +traitors were, but feeling it necessary to hate those traitors whoever +they might be who were to blame for the false and ridiculous +position in which he found himself. + +All that night Count Rostopchin issued orders, for which people came +to him from all parts of Moscow. Those about him had never seen the +count so morose and irritable. + +"Your excellency, the Director of the Registrar's Department has +sent for instructions... From the Consistory, from the Senate, from +the University, from the Foundling Hospital, the Suffragan has sent... +asking for information.... What are your orders about the Fire +Brigade? From the governor of the prison... from the superintendent of +the lunatic asylum..." All night long such announcements were +continually being received by the count. + +To all these inquiries he gave brief and angry replies indicating +that orders from him were not now needed, that the whole affair, +carefully prepared by him, had now been ruined by somebody, and that +that somebody would have to bear the whole responsibility for all that +might happen. + +"Oh, tell that blockhead," he said in reply to the question from the +Registrar's Department, "that he should remain to guard his documents. +Now why are you asking silly questions about the Fire Brigade? They +have horses, let them be off to Vladimir, and not leave them to the +French." + +"Your excellency, the superintendent of the lunatic asylum has come: +what are your commands?" + +"My commands? Let them go away, that's all.... And let the +lunatics out into the town. When lunatics command our armies God +evidently means these other madmen to be free." + +In reply to an inquiry about the convicts in the prison, Count +Rostopchin shouted angrily at the governor: + +"Do you expect me to give you two battalions--which we have not got- +for a convoy? Release them, that's all about it!" + +"Your excellency, there are some political prisoners, Meshkov, +Vereshchagin..." + +"Vereshchagin! Hasn't he been hanged yet?" shouted Rostopchin. +"Bring him to me!" + + + + + +CHAPTER XXV + + +Toward nine o'clock in the morning, when the troops were already +moving through Moscow, nobody came to the count any more for +instructions. Those who were able to get away were going of their +own accord, those who remained behind decided for themselves what they +must do. + +The count ordered his carriage that he might drive to Sokolniki, and +sat in his study with folded hands, morose, sallow, and taciturn. + +In quiet and untroubled times it seems to every administrator that +it is only by his efforts that the whole population under his rule +is kept going, and in this consciousness of being indispensable +every administrator finds the chief reward of his labor and efforts. +While the sea of history remains calm the ruler-administrator in his +frail bark, holding on with a boat hook to the ship of the people +and himself moving, naturally imagines that his efforts move the +ship he is holding on to. But as soon as a storm arises and the sea +begins to heave and the ship to move, such a delusion is no longer +possible. The ship moves independently with its own enormous motion, +the boat hook no longer reaches the moving vessel, and suddenly the +administrator, instead of appearing a ruler and a source of power, +becomes an insignificant, useless, feeble man. + +Rostopchin felt this, and it was this which exasperated him. + +The superintendent of police, whom the crowd had stopped, went in to +see him at the same time as an adjutant who informed the count that +the horses were harnessed. They were both pale, and the superintendent +of police, after reporting that he had executed the instructions he +had received, informed the count that an immense crowd had collected +in the courtyard and wished to see him. + +Without saying a word Rostopchin rose and walked hastily to his +light, luxurious drawing room, went to the balcony door, took hold +of the handle, let it go again, and went to the window from which he +had a better view of the whole crowd. The tall lad was standing in +front, flourishing his arm and saying something with a stern look. The +blood stained smith stood beside him with a gloomy face. A drone of +voices was audible through the closed window. + +"Is my carriage ready?" asked Rostopchin, stepping back from the +window. + +"It is, your excellency," replied the adjutant. + +Rostopchin went again to the balcony door. + +"But what do they want?" he asked the superintendent of police. + +"Your excellency, they say they have got ready, according to your +orders, to go against the French, and they shouted something about +treachery. But it is a turbulent crowd, your excellency--I hardly +managed to get away from it. Your excellency, I venture to suggest..." + +"You may go. I don't need you to tell me what to do!" exclaimed +Rostopchin angrily. + +He stood by the balcony door looking at the crowd. + +"This is what they have done with Russia! This is what they have +done with me!" thought he, full of an irrepressible fury that welled +up within him against the someone to whom what was happening might +be attributed. As often happens with passionate people, he was +mastered by anger but was still seeking an object on which to vent it. +"Here is that mob, the dregs of the people," he thought as he gazed at +the crowd: "this rabble they have roused by their folly! They want a +victim," he thought as he looked at the tall lad flourishing his +arm. And this thought occurred to him just because he himself +desired a victim, something on which to vent his rage. + +"Is the carriage ready?" he asked again. + +"Yes, your excellency. What are your orders about Vereshchagin? He +is waiting at the porch," said the adjutant. + +"Ah!" exclaimed Rostopchin, as if struck by an unexpected +recollection. + +And rapidly opening the door he went resolutely out onto the +balcony. The talking instantly ceased, hats and caps were doffed, +and all eyes were raised to the count. + +"Good morning, lads!" said the count briskly and loudly. "Thank +you for coming. I'll come out to you in a moment, but we must first +settle with the villain. We must punish the villain who has caused the +ruin of Moscow. Wait for me!" + +And the count stepped as briskly back into the room and slammed +the door behind him. + +A murmur of approbation and satisfaction ran through the crowd. +"He'll settle with all the villains, you'll see! And you said the +French... He'll show you what law is!" the mob were saying as if +reproving one another for their lack of confidence. + +A few minutes later an officer came hurriedly out of the front door, +gave an order, and the dragoons formed up in line. The crowd moved +eagerly from the balcony toward the porch. Rostopchin, coming out +there with quick angry steps, looked hastily around as if seeking +someone. + +"Where is he?" he inquired. And as he spoke he saw a young man +coming round the corner of the house between two dragoons. He had a +long thin neck, and his head, that had been half shaved, was again +covered by short hair. This young man was dressed in a threadbare blue +cloth coat lined with fox fur, that had once been smart, and dirty +hempen convict trousers, over which were pulled his thin, dirty, +trodden-down boots. On his thin, weak legs were heavy chains which +hampered his irresolute movements. + +"Ah!" said Rostopchin, hurriedly turning away his eyes from the +young man in the fur-lined coat and pointing to the bottom step of the +porch. "Put him there." + +The young man in his clattering chains stepped clumsily to the +spot indicated, holding away with one finger the coat collar which +chafed his neck, turned his long neck twice this way and that, sighed, +and submissively folded before him his thin hands, unused to work. + +For several seconds while the young man was taking his place on +the step the silence continued. Only among the back rows of the +people, who were all pressing toward the one spot, could sighs, +groans, and the shuffling of feet be heard. + +While waiting for the young man to take his place on the step +Rostopchin stood frowning and rubbing his face with his hand. + +"Lads!" said he, with a metallic ring in his voice. "This man, +Vereshchagin, is the scoundrel by whose doing Moscow is perishing." + +The young man in the fur-lined coat, stooping a little, stood in a +submissive attitude, his fingers clasped before him. His emaciated +young face, disfigured by the half-shaven head, hung down +hopelessly. At the count's first words he raised it slowly and +looked up at him as if wishing to say something or at least to meet +his eye. But Rostopchin did not look at him. A vein in the young man's +long thin neck swelled like a cord and went blue behind the ear, and +suddenly his face flushed. + +All eyes were fixed on him. He looked at the crowd, and rendered +more hopeful by the expression he read on the faces there, he smiled +sadly and timidly, and lowering his head shifted his feet on the step. + +"He has betrayed his Tsar and his country, he had gone over to +Bonaparte. He alone of all the Russians has disgraced the Russian +name, he has caused Moscow to perish," said Rostopchin in a sharp, +even voice, but suddenly he glanced down at Vereshchagin who continued +to stand in the same submissive attitude. As if inflamed by the sight, +he raised his arm and addressed the people, almost shouting: + +"Deal with him as you think fit! I hand him over to you." + +The crowd remained silent and only pressed closer and closer to +one another. To keep one another back, to breathe in that stifling +atmosphere, to be unable to stir, and to await something unknown, +uncomprehended, and terrible, was becoming unbearable. Those +standing in front, who had seen and heard what had taken place +before them, all stood with wide open eyes and mouths, straining +with all their strength, and held back the crowd that was pushing +behind them. + +"Beat him!... Let the traitor perish and not disgrace the Russian +name!" shouted Rostopchin. "Cut him down. I command it." + +Hearing not so much the words as the angry tone of Rostopchin's +voice, the crowd moaned and heaved forward, but again paused. + +"Count!" exclaimed the timid yet theatrical voice of Vereshchagin in +the midst of the momentary silence that ensued, "Count! One God is +above us both...." He lifted his head and again the thick vein in +his thin neck filled with blood and the color rapidly came and went in +his face. + +He did not finish what he wished to say. + +"Cut him down! I command it..." shouted Rostopchin, suddenly growing +pale like Vereshchagin. + +"Draw sabers!" cried the dragoon officer, drawing his own. + +Another still stronger wave flowed through the crowd and reaching +the front ranks carried it swaying to the very steps of the porch. The +tall youth, with a stony look on his face, and rigid and uplifted arm, +stood beside Vereshchagin. + +"Saber him!" the dragoon officer almost whispered. + +And one of the soldiers, his face all at once distorted with fury, +struck Vereshchagin on the head with the blunt side of his saber. + +"Ah!" cried Vereshchagin in meek surprise, looking round with a +frightened glance as if not understanding why this was done to him. +A similar moan of surprise and horror ran through the crowd. "O Lord!" +exclaimed a sorrowful voice. + +But after the exclamation of surprise that had escaped from +Vereshchagin he uttered a plaintive cry of pain, and that cry was +fatal. The barrier of human feeling, strained to the utmost, that +had held the crowd in check suddenly broke. The crime had begun and +must now be completed. The plaintive moan of reproach was drowned by +the threatening and angry roar of the crowd. Like the seventh and last +wave that shatters a ship, that last irresistible wave burst from +the rear and reached the front ranks, carrying them off their feet and +engulfing them all. The dragoon was about to repeat his blow. +Vereshchagin with a cry of horror, covering his head with his hands, +rushed toward the crowd. The tall youth, against whom he stumbled, +seized his thin neck with his hands and, yelling wildly, fell with him +under the feet of the pressing, struggling crowd. + +Some beat and tore at Vereshchagin, others at the tall youth. And +the screams of those that were being trampled on and of those who +tried to rescue the tall lad only increased the fury of the crowd. +It was a long time before the dragoons could extricate the bleeding +youth, beaten almost to death. And for a long time, despite the +feverish haste with which the mob tried to end the work that had +been begun, those who were hitting, throttling, and tearing at +Vereshchagin were unable to kill him, for the crowd pressed from all +sides, swaying as one mass with them in the center and rendering it +impossible for them either to kill him or let him go. + +"Hit him with an ax, eh!... Crushed?... Traitor, he sold +Christ.... Still alive... tenacious... serves him right! Torture +serves a thief right. Use the hatchet!... What--still alive?" + +Only when the victim ceased to struggle and his cries changed to a +long-drawn, measured death rattle did the crowd around his +prostrate, bleeding corpse begin rapidly to change places. Each one +came up, glanced at what had been done, and with horror, reproach, and +astonishment pushed back again. + +"O Lord! The people are like wild beasts! How could he be alive?" +voices in the crowd could be heard saying. "Quite a young fellow +too... must have been a merchant's son. What men!... and they say he's +not the right one.... How not the right one?... O Lord! And there's +another has been beaten too--they say he's nearly done for.... Oh, the +people... Aren't they afraid of sinning?..." said the same mob now, +looking with pained distress at the dead body with its long, thin, +half-severed neck and its livid face stained with blood and dust. + +A painstaking police officer, considering the presence of a corpse +in his excellency's courtyard unseemly, told the dragoons to take it +away. Two dragoons took it by its distorted legs and dragged it +along the ground. The gory, dust-stained, half-shaven head with its +long neck trailed twisting along the ground. The crowd shrank back +from it. + +At the moment when Vereshchagin fell and the crowd closed in with +savage yells and swayed about him, Rostopchin suddenly turned pale +and, instead of going to the back entrance where his carriage +awaited him, went with hurried steps and bent head, not knowing +where and why, along the passage leading to the rooms on the ground +floor. The count's face was white and he could not control the +feverish twitching of his lower jaw. + + +"This way, your excellency... Where are you going?... This way, +please..." said a trembling, frightened voice behind him. + +Count Rostopchin was unable to reply and, turning obediently, went +in the direction indicated. At the back entrance stood his caleche. +The distant roar of the yelling crowd was audible even there. He +hastily took his seat and told the coachman to drive him to his +country house in Sokolniki. + +When they reached the Myasnitski Street and could no longer hear the +shouts of the mob, the count began to repent. He remembered with +dissatisfaction the agitation and fear he had betrayed before his +subordinates. "The mob is terrible--disgusting," he said to himself in +French. "They are like wolves whom nothing but flesh can appease." +"Count! One God is above us both!"--Vereshchagin's words suddenly +recurred to him, and a disagreeable shiver ran down his back. But this +was only a momentary feeling and Count Rostopchin smiled +disdainfully at himself. "I had other duties," thought he. "The people +had to be appeased. Many other victims have perished and are perishing +for the public good"--and he began thinking of his social duties to +his family and to the city entrusted to him, and of himself--not +himself as Theodore Vasilyevich Rostopchin (he fancied that Theodore +Vasilyevich Rostopchin was sacrificing himself for the public good) +but himself as governor, the representative of authority and of the +Tsar. "Had I been simply Theodore Vasilyevich my course of action +would have been quite different, but it was my duty to safeguard my +life and dignity as commander in chief." + +Lightly swaying on the flexible springs of his carriage and no +longer hearing the terrible sounds of the crowd, Rostopchin grew +physically calm and, as always happens, as soon as he became +physically tranquil his mind devised reasons why he should be mentally +tranquil too. The thought which tranquillized Rostopchin was not a new +one. Since the world began and men have killed one another no one +has ever committed such a crime against his fellow man without +comforting himself with this same idea. This idea is le bien public, +the hypothetical welfare of other people. + +To a man not swayed by passion that welfare is never certain, but he +who commits such a crime always knows just where that welfare lies. +And Rostopchin now knew it. + +Not only did his reason not reproach him for what he had done, but +he even found cause for self-satisfaction in having so successfully +contrived to avail himself of a convenient opportunity to punish a +criminal and at the same time pacify the mob. + +"Vereshchagin was tried and condemned to death," thought +Rostopchin (though the Senate had only condemned Vereshchagin to +hard labor), "he was a traitor and a spy. I could not let him go +unpunished and so I have killed two birds with one stone: to appease +the mob I gave them a victim and at the same time punished a +miscreant." + +Having reached his country house and begun to give orders about +domestic arrangements, the count grew quite tranquil. + +Half an hour later he was driving with his fast horses across the +Sokolniki field, no longer thinking of what had occurred but +considering what was to come. He was driving to the Yauza bridge where +he had heard that Kutuzov was. Count Rostopchin was mentally preparing +the angry and stinging reproaches he meant to address to Kutuzov for +his deception. He would make that foxy old courtier feel that the +responsibility for all the calamities that would follow the +abandonment of the city and the ruin of Russia (as Rostopchin regarded +it) would fall upon his doting old head. Planning beforehand what he +would say to Kutuzov, Rostopchin turned angrily in his caleche and +gazed sternly from side to side. + +The Sokolniki field was deserted. Only at the end of it, in front of +the almshouse and the lunatic asylum, could be seen some people in +white and others like them walking singly across the field shouting +and gesticulating. + +One of these was running to cross the path of Count Rostopchin's +carriage, and the count himself, his coachman, and his dragoons looked +with vague horror and curiosity at these released lunatics and +especially at the one running toward them. + +Swaying from side to side on his long, thin legs in his fluttering +dressing gown, this lunatic was running impetuously, his gaze fixed on +Rostopchin, shouting something in a hoarse voice and making signs to +him to stop. The lunatic's solemn, gloomy face was thin and yellow, +with its beard growing in uneven tufts. His black, agate pupils with +saffron-yellow whites moved restlessly near the lower eyelids. + +"Stop! Pull up, I tell you!" he cried in a piercing voice, and again +shouted something breathlessly with emphatic intonations and gestures. + +Coming abreast of the caleche he ran beside it. + +"Thrice have they slain me, thrice have I risen from the dead. +They stoned me, crucified me... I shall rise... shall rise... shall +rise. They have torn my body. The kingdom of God will be overthrown... +Thrice will I overthrow it and thrice re-establish it!" he cried, +raising his voice higher and higher. + +Count Rostopchin suddenly grew pale as he had done when the crowd +closed in on Vereshchagin. He turned away. "Go fas... faster!" he +cried in a trembling voice to his coachman. The caleche flew over +the ground as fast as the horses could draw it, but for a long time +Count Rostopchin still heard the insane despairing screams growing +fainter in the distance, while his eyes saw nothing but the +astonished, frightened, bloodstained face of "the traitor" in the +fur-lined coat. + +Recent as that mental picture was, Rostopchin already felt that it +had cut deep into his heart and drawn blood. Even now he felt +clearly that the gory trace of that recollection would not pass with +time, but that the terrible memory would, on the contrary, dwell in +his heart ever more cruelly and painfully to the end of his life. He +seemed still to hear the sound of his own words: "Cut him down! I +command it...." + +"Why did I utter those words? It was by some accident I said +them.... I need not have said them," he thought. "And then nothing +would have happened." He saw the frightened and then infuriated face +of the dragoon who dealt the blow, the look of silent, timid +reproach that boy in the fur-lined coat had turned upon him. "But I +did not do it for my own sake. I was bound to act that way.... The +mob, the traitor... the public welfare," thought he. + +Troops were still crowding at the Yauza bridge. It was hot. Kutuzov, +dejected and frowning, sat on a bench by the bridge toying with his +whip in the sand when a caleche dashed up noisily. A man in a +general's uniform with plumes in his hat went up to Kutuzov and said +something in French. It was Count Rostopchin. He told Kutuzov that +he had come because Moscow, the capital, was no more and only the army +remained. + +"Things would have been different if your Serene Highness had not +told me that you would not abandon Moscow without another battle; +all this would not have happened," he said. + +Kutuzov looked at Rostopchin as if, not grasping what was said to +him, he was trying to read something peculiar written at that moment +on the face of the man addressing him. Rostopchin grew confused and +became silent. Kutuzov slightly shook his head and not taking his +penetrating gaze from Rostopchin's face muttered softly: + +"No! I shall not give up Moscow without a battle!" + +Whether Kutuzov was thinking of something entirely different when he +spoke those words, or uttered them purposely, knowing them to be +meaningless, at any rate Rostopchin made no reply and hastily left +him. And strange to say, the Governor of Moscow, the proud Count +Rostopchin, took up a Cossack whip and went to the bridge where he +began with shouts to drive on the carts that blocked the way. + + + + + +CHAPTER XXVI + + +Toward four o'clock in the afternoon Murat's troops were entering +Moscow. In front rode a detachment of Wurttemberg hussars and behind +them rode the King of Naples himself accompanied by a numerous suite. + +About the middle of the Arbat Street, near the Church of the +Miraculous Icon of St. Nicholas, Murat halted to await news from the +advanced detachment as to the condition in which they had found the +citadel, le Kremlin. + +Around Murat gathered a group of those who had remained in Moscow. +They all stared in timid bewilderment at the strange, long-haired +commander dressed up in feathers and gold. + +"Is that their Tsar himself? He's not bad!" low voices could be +heard saying. + +An interpreter rode up to the group. + +"Take off your cap... your caps!" These words went from one to +another in the crowd. The interpreter addressed an old porter and +asked if it was far to the Kremlin. The porter, listening in +perplexity to the unfamiliar Polish accent and not realizing that +the interpreter was speaking Russian, did not understand what was +being said to him and slipped behind the others. + +Murat approached the interpreter and told him to ask where the +Russian army was. One of the Russians understood what was asked and +several voices at once began answering the interpreter. A French +officer, returning from the advanced detachment, rode up to Murat +and reported that the gates of the citadel had been barricaded and +that there was probably an ambuscade there. + +"Good!" said Murat and, turning to one of the gentlemen in his +suite, ordered four light guns to be moved forward to fire at the +gates. + +The guns emerged at a trot from the column following Murat and +advanced up the Arbat. When they reached the end of the Vozdvizhenka +Street they halted and drew in the Square. Several French officers +superintended the placing of the guns and looked at the Kremlin +through field glasses. + +The bells in the Kremlin were ringing for vespers, and this sound +troubled the French. They imagined it to be a call to arms. A few +infantrymen ran to the Kutafyev Gate. Beams and wooden screens had +been put there, and two musket shots rang out from under the gate as +soon as an officer and men began to run toward it. A general who was +standing by the guns shouted some words of command to the officer, and +the latter ran back again with his men. + +The sound of three more shots came from the gate. + +One shot struck a French soldier's foot, and from behind the screens +came the strange sound of a few voices shouting. Instantly as at a +word of command the expression of cheerful serenity on the faces of +the French general, officers, and men changed to one of determined +concentrated readiness for strife and suffering. To all of them from +the marshal to the least soldier, that place was not the Vozdvizhenka, +Mokhavaya, or Kutafyev Street, nor the Troitsa Gate (places familiar +in Moscow), but a new battlefield which would probably prove +sanguinary. And all made ready for that battle. The cries from the +gates ceased. The guns were advanced, the artillerymen blew the ash +off their linstocks, and an officer gave the word "Fire!" This was +followed by two whistling sounds of canister shot, one after +another. The shot rattled against the stone of the gate and upon the +wooden beams and screens, and two wavering clouds of smoke rose over +the Square. + +A few instants after the echo of the reports resounding over the +stone-built Kremlin had died away the French heard a strange sound +above their head. Thousands of crows rose above the walls and +circled in the air, cawing and noisily flapping their wings. +Together with that sound came a solitary human cry from the gateway +and amid the smoke appeared the figure of a bareheaded man in a +peasant's coat. He grasped a musket and took aim at the French. +"Fire!" repeated the officer once more, and the reports of a musket +and of two cannon shots were heard simultaneously. The gate again +hidden by smoke. + +Nothing more stirred behind the screens and the French infantry +soldiers and officers advanced to the gate. In the gateway lay three +wounded and four dead. Two men in peasant coats ran away at the foot +of the wall, toward the Znamenka. + +"Clear that away!" said the officer, pointing to the beams and the +corpses, and the French soldiers, after dispatching the wounded, threw +the corpses over the parapet. + +Who these men were nobody knew. "Clear that away!" was all that +was said of them, and they were thrown over the parapet and removed +later on that they might not stink. Thiers alone dedicates a few +eloquent lines to their memory: "These wretches had occupied the +sacred citadel, having supplied themselves with guns from the arsenal, +and fired" (the wretches) "at the French. Some of them were sabered +and the Kremlin was purged of their presence." + +Murat was informed that the way had been cleared. The French entered +the gates and began pitching their camp in the Senate Square. Out of +the windows of the Senate House the soldiers threw chairs into the +Square for fuel and kindled fires there. + +Other detachments passed through the Kremlin and encamped along +the Moroseyka, the Lubyanka, and Pokrovka Streets. Others quartered +themselves along the Vozdvizhenka, the Nikolski, and the Tverskoy +Streets. No masters of the houses being found anywhere, the French +were not billeted on the inhabitants as is usual in towns but lived in +it as in a camp. + +Though tattered, hungry, worn out, and reduced to a third of their +original number, the French entered Moscow in good marching order. +It was a weary and famished, but still a fighting and menacing army. +But it remained an army only until its soldiers had dispersed into +their different lodgings. As soon as the men of the various +regiments began to disperse among the wealthy and deserted houses, the +army was lost forever and there came into being something nondescript, +neither citizens nor soldiers but what are known as marauders. When +five weeks later these same men left Moscow, they no longer formed +an army. They were a mob of marauders, each carrying a quantity of +articles which seemed to him valuable or useful. The aim of each man +when he left Moscow was no longer, as it had been, to conquer, but +merely to keep what he had acquired. Like a monkey which puts its +paw into the narrow neck of a jug, and having seized a handful of nuts +will not open its fist for fear of losing what it holds, and therefore +perishes, the French when they left Moscow had inevitably to perish +because they carried their loot with them, yet to abandon what they +had stolen was as impossible for them as it is for the monkey to +open its paw and let go of its nuts. Ten minutes after each regiment +had entered a Moscow district, not a soldier or officer was left. +Men in military uniforms and Hessian boots could be seen through the +windows, laughing and walking through the rooms. In cellars and +storerooms similar men were busy among the provisions, and in the +yards unlocking or breaking open coach house and stable doors, +lighting fires in kitchens and kneading and baking bread with +rolled-up sleeves, and cooking; or frightening, amusing, or +caressing women and children. There were many such men both in the +shops and houses--but there was no army. + +Order after order was issued by the French commanders that day +forbidding the men to disperse about the town, sternly forbidding +any violence to the inhabitants or any looting, and announcing a +roll call for that very evening. But despite all these measures the +men, who had till then constituted an army, flowed all over the +wealthy, deserted city with its comforts and plentiful supplies. As +a hungry herd of cattle keeps well together when crossing a barren +field, but gets out of hand and at once disperses uncontrollably as +soon as it reaches rich pastures, so did the army disperse all over +the wealthy city. + +No residents were left in Moscow, and the soldiers--like water +percolating through sand--spread irresistibly through the city in +all directions from the Kremlin into which they had first marched. The +cavalry, on entering a merchant's house that had been abandoned and +finding there stabling more than sufficient for their horses, went on, +all the same, to the next house which seemed to them better. Many of +them appropriated several houses, chalked their names on them, and +quarreled and even fought with other companies for them. Before they +had had time to secure quarters the soldiers ran out into the +streets to see the city and, hearing that everything had been +abandoned, rushed to places where valuables were to be had for the +taking. The officers followed to check the soldiers and were +involuntarily drawn into doing the same. In Carriage Row carriages had +been left in the shops, and generals flocked there to select +caleches and coaches for themselves. The few inhabitants who had +remained invited commanding officers to their houses, hoping thereby +to secure themselves from being plundered. There were masses of wealth +and there seemed no end to it. All around the quarters occupied by the +French were other regions still unexplored and unoccupied where, +they thought, yet greater riches might be found. And Moscow engulfed +the army ever deeper and deeper. When water is spilled on dry ground +both the dry ground and the water disappear and mud results; and in +the same way the entry of the famished army into the rich and deserted +city resulted in fires and looting and the destruction of both the +army and the wealthy city. + + +The French attributed the Fire of Moscow au patriotisme feroce de +Rostopchine,* the Russians to the barbarity of the French. In reality, +however, it was not, and could not be, possible to explain the burning +of Moscow by making any individual, or any group of people, +responsible for it. Moscow was burned because it found itself in a +position in which any town built of wood was bound to burn, quite +apart from whether it had, or had not, a hundred and thirty inferior +fire engines. Deserted Moscow had to burn as inevitably as a heap of +shavings has to burn on which sparks continually fall for several +days. A town built of wood, where scarcely a day passes without +conflagrations when the house owners are in residence and a police +force is present, cannot help burning when its inhabitants have left +it and it is occupied by soldiers who smoke pipes, make campfires of +the Senate chairs in the Senate Square, and cook themselves meals +twice a day. In peacetime it is only necessary to billet troops in the +villages of any district and the number of fires in that district +immediately increases. How much then must the probability of fire be +increased in an abandoned, wooden town where foreign troops are +quartered. "Le patriotisme feroce de Rostopchine" and the barbarity of +the French were not to blame in the matter. Moscow was set on fire +by the soldiers' pipes, kitchens, and campfires, and by the +carelessness of enemy soldiers occupying houses they did not own. Even +if there was any arson (which is very doubtful, for no one had any +reason to burn the houses--in any case a troublesome and dangerous +thing to do), arson cannot be regarded as the cause, for the same +thing would have happened without any incendiarism. + + +*To Rostopchin's ferocious patriotism. + + +However tempting it might be for the French to blame Rostopchin's +ferocity and for Russians to blame the scoundrel Bonaparte, or later +on to place an heroic torch in the hands of their own people, it is +impossible not to see that there could be no such direct cause of +the fire, for Moscow had to burn as every village, factory, or house +must burn which is left by its owners and in which strangers are +allowed to live and cook their porridge. Moscow was burned by its +inhabitants, it is true, but by those who had abandoned it and not +by those who remained in it. Moscow when occupied by the enemy did not +remain intact like Berlin, Vienna, and other towns, simply because its +inhabitants abandoned it and did not welcome the French with bread and +salt, nor bring them the keys of the city. + + + + + +CHAPTER XXVII + + +The absorption of the French by Moscow, radiating starwise as it +did, only reached the quarter where Pierre was staying by the +evening of the second of September. + +After the last two days spent in solitude and unusual circumstances, +Pierre was in a state bordering on insanity. He was completely +obsessed by one persistent thought. He did not know how or when this +thought had taken such possession of him, but he remembered nothing of +the past, understood nothing of the present, and all he saw and +heard appeared to him like a dream. + +He had left home only to escape the intricate tangle of life's +demands that enmeshed him, and which in his present condition he was +unable to unravel. He had gone to Joseph Alexeevich's house, on the +plea of sorting the deceased's books and papers, only in search of +rest from life's turmoil, for in his mind the memory of Joseph +Alexeevich was connected with a world of eternal, solemn, and calm +thoughts, quite contrary to the restless confusion into which he +felt himself being drawn. He sought a quiet refuge, and in Joseph +Alexeevich's study he really found it. When he sat with his elbows +on the dusty writing table in the deathlike stillness of the study, +calm and significant memories of the last few days rose one after +another in his imagination, particularly of the battle of Borodino and +of that vague sense of his own insignificance and insincerity compared +with the truth, simplicity, and strength of the class of men he +mentally classed as they. When Gerasim roused him from his reverie the +idea occurred to him of taking part in the popular defense of Moscow +which he knew was projected. And with that object he had asked Gerasim +to get him a peasant's coat and a pistol, confiding to him his +intentions of remaining in Joseph Alexeevich's house and keeping his +name secret. Then during the first day spent in inaction and +solitude (he tried several times to fix his attention on the Masonic +manuscripts, but was unable to do so) the idea that had previously +occurred to him of the cabalistic significance of his name in +connection with Bonaparte's more than once vaguely presented itself. +But the idea that he, L'russe Besuhof, was destined to set a limit +to the power of the Beast was as yet only one of the fancies that +often passed through his mind and left no trace behind. + +When, having bought the coat merely with the object of taking part +among the people in the defense of Moscow, Pierre had met the +Rostovs and Natasha had said to him: "Are you remaining in +Moscow?... How splendid!" the thought flashed into his mind that it +really would be a good thing, even if Moscow were taken, for him to +remain there and do what he was predestined to do. + +Next day, with the sole idea of not sparing himself and not +lagging in any way behind them, Pierre went to the Three Hills gate. +But when he returned to the house convinced that Moscow would not be +defended, he suddenly felt that what before had seemed to him merely a +possibility had now become absolutely necessary and inevitable. He +must remain in Moscow, concealing his name, and must meet Napoleon and +kill him, and either perish or put an end to the misery of all Europe- +which it seemed to him was solely due to Napoleon. + +Pierre knew all the details of the attempt on Bonaparte's life in +1809 by a German student in Vienna, and knew that the student had been +shot. And the risk to which he would expose his life by carrying out +his design excited him still more. + +Two equally strong feelings drew Pierre irresistibly to this +purpose. The first was a feeling of the necessity of sacrifice and +suffering in view of the common calamity, the same feeling that had +caused him to go to Mozhaysk on the twenty-fifth and to make his way +to the very thick of the battle and had now caused him to run away +from his home and, in place of the luxury and comfort to which he +was accustomed, to sleep on a hard sofa without undressing and eat the +same food as Gerasim. The other was that vague and quite Russian +feeling of contempt for everything conventional, artificial, and +human--for everything the majority of men regard as the greatest +good in the world. Pierre had first experienced this strange and +fascinating feeling at the Sloboda Palace, when he had suddenly felt +that wealth, power, and life--all that men so painstakingly acquire +and guard--if it has any worth has so only by reason the joy with +which it can all be renounced. + +It was the feeling that induces a volunteer recruit to spend his +last penny on drink, and a drunken man to smash mirrors or glasses for +no apparent reason and knowing that it will cost him all the money +he possesses: the feeling which causes a man to perform actions +which from an ordinary point of view are insane, to test, as it +were, his personal power and strength, affirming the existence of a +higher, nonhuman criterion of life. + +From the very day Pierre had experienced this feeling for the +first time at the Sloboda Palace he had been continuously under its +influence, but only now found full satisfaction for it. Moreover, at +this moment Pierre was supported in his design and prevented from +renouncing it by what he had already done in that direction. If he +were now to leave Moscow like everyone else, his flight from home, the +peasant coat, the pistol, and his announcement to the Rostovs that +he would remain in Moscow would all become not merely meaningless +but contemptible and ridiculous, and to this Pierre was very +sensitive. + +Pierre's physical condition, as is always the case, corresponded +to his mental state. The unaccustomed coarse food, the vodka he +drank during those days, the absence of wine and cigars, his dirty +unchanged linen, two almost sleepless nights passed on a short sofa +without bedding--all this kept him in a state of excitement +bordering on insanity. + +It was two o'clock in the afternoon. The French had already +entered Moscow. Pierre knew this, but instead of acting he only +thought about his undertaking, going over its minutest details in +his mind. In his fancy he did not clearly picture to himself either +the striking of the blow or the death of Napoleon, but with +extraordinary vividness and melancholy enjoyment imagined his own +destruction and heroic endurance. + +"Yes, alone, for the sake of all, I must do it or perish!" he +thought. "Yes, I will approach... and then suddenly... with pistol +or dagger? But that is all the same! 'It is not I but the hand of +Providence that punishes thee,' I shall say," thought he, imagining +what he would say when killing Napoleon. "Well then, take me and +execute me!" he went on, speaking to himself and bowing his head +with a sad but firm expression. + +While Pierre, standing in the middle of the room, was talking to +himself in this way, the study door opened and on the threshold +appeared the figure of Makar Alexeevich, always so timid before but +now quite transformed. + +His dressing gown was unfastened, his face red and distorted. He was +obviously drunk. On seeing Pierre he grew confused at first, but +noticing embarrassment on Pierre's face immediately grew bold and, +staggering on his thin legs, advanced into the middle of the room. + +"They're frightened," he said confidentially in a hoarse voice. "I +say I won't surrender, I say... Am I not right, sir?" + +He paused and then suddenly seeing the pistol on the table seized it +with unexpected rapidity and ran out into the corridor. + +Gerasim and the porter, who had followed Makar Alexeevich, stopped +him in the vestibule and tried to take the pistol from him. Pierre, +coming out into the corridor, looked with pity and repulsion at the +half-crazy old man. Makar Alexeevich, frowning with exertion, held +on to the pistol and screamed hoarsely, evidently with some heroic +fancy in his head. + +"To arms! Board them! No, you shan't get it," he yelled. + +"That will do, please, that will do. Have the goodness--please, sir, +to let go! Please, sir..." pleaded Gerasim, trying carefully to +steer Makar Alexeevich by the elbows back to the door. + +"Who are you? Bonaparte!..." shouted Makar Alexeevich. + +"That's not right, sir. Come to your room, please, and rest. Allow +me to have the pistol." + +"Be off, thou base slave! Touch me not! See this?" shouted Makar +Alexeevich, brandishing the pistol. "Board them!" + +"Catch hold!" whispered Gerasim to the porter. + +They seized Makar Alexeevich by the arms and dragged him to the +door. + +The vestibule was filled with the discordant sounds of a struggle +and of a tipsy, hoarse voice. + +Suddenly a fresh sound, a piercing feminine scream, reverberated +from the porch and the cook came running into the vestibule. + +"It's them! Gracious heavens! O Lord, four of them, horsemen!" she +cried. + +Gerasim and the porter let Makar Alexeevich go, and in the now +silent corridor the sound of several hands knocking at the front +door could be heard. + + + + + +CHAPTER XXVIII + + +Pierre, having decided that until he had carried out his design he +would disclose neither his identity nor his knowledge of French, stood +at the half-open door of the corridor, intending to conceal himself as +soon as the French entered. But the French entered and still Pierre +did not retire--an irresistible curiosity kept him there. + +There were two of them. One was an officer--a tall, soldierly, +handsome man--the other evidently a private or an orderly, +sunburned, short, and thin, with sunken cheeks and a dull +expression. The officer walked in front, leaning on a stick and +slightly limping. When he had advanced a few steps he stopped, +having apparently decided that these were good quarters, turned +round to the soldiers standing at the entrance, and in a loud voice of +command ordered them to put up the horses. Having done that, the +officer, lifting his elbow with a smart gesture, stroked his +mustache and lightly touched his hat. + +"Bonjour, la compagnie!"* said he gaily, smiling and looking about +him. + + +*"Good day, everybody!" + + +No one gave any reply. + +"Vous etes le bourgeois?"* the officer asked Gerasim. + + +*"Are you the master here?" + + +Gerasim gazed at the officer with an alarmed and inquiring look. + +"Quartier, quartier, logement!" said the officer, looking down at +the little man with a condescending and good-natured smile. "Les +francais sont de bons enfants. Que diable! Voyons! Ne nous fachons +pas, mon vieux!"* added he, clapping the scared and silent Gerasim +on the shoulder. "Well, does no one speak French in this +establishment?" he asked again in French, looking around and meeting +Pierre's eyes. Pierre moved away from the door. + + +*"Quarters, quarters, lodgings! The French are good fellows. What +the devil! There, don't let us be cross, old fellow!" + + +Again the officer turned to Gerasim and asked him to show him the +rooms in the house. + +"Master, not here--don't understand... me, you..." said Gerasim, +trying to render his words more comprehensible by contorting them. + +Still smiling, the French officer spread out his hands before +Gerasim's nose, intimating that he did not understand him either, +and moved, limping, to the door at which Pierre was standing. Pierre +wished to go away and conceal himself, but at that moment he saw Makar +Alexeevich appearing at the open kitchen door with the pistol in his +hand. With a madman's cunning, Makar Alexeevich eyed the Frenchman, +raised his pistol, and took aim. + +"Board them!" yelled the tipsy man, trying to press the trigger. +Hearing the yell the officer turned round, and at the same moment +Pierre threw himself on the drunkard. Just when Pierre snatched at and +struck up the pistol Makar Alexeevich at last got his fingers on the +trigger, there was a deafening report, and all were enveloped in a +cloud of smoke. The Frenchman turned pale and rushed to the door. + +Forgetting his intention of concealing his knowledge of French, +Pierre, snatching away the pistol and throwing it down, ran up to +the officer and addressed him in French. + +"You are not wounded?" he asked. + +"I think not," answered the Frenchman, feeling himself over. "But +I have had a lucky escape this time," he added, pointing to the +damaged plaster of the wall. "Who is that man?" said he, looking +sternly at Pierre. + +"Oh, I am really in despair at what has occurred," said Pierre +rapidly, quite forgetting the part he had intended to play. "He is +an unfortunate madman who did not know what he was doing." + +The officer went up to Makar Alexeevich and took him by the collar. + +Makar Alexeevich was standing with parted lips, swaying, as if about +to fall asleep, as he leaned against the wall. + +"Brigand! You shall pay for this," said the Frenchman, letting go of +him. "We French are merciful after victory, but we do not pardon +traitors," he added, with a look of gloomy dignity and a fine +energetic gesture. + +Pierre continued, in French, to persuade the officer not to hold +that drunken imbecile to account. The Frenchman listened in silence +with the same gloomy expression, but suddenly turned to Pierre with +a smile. For a few seconds he looked at him in silence. His handsome +face assumed a melodramatically gentle expression and he held out +his hand. + +"You have saved my life. You are French," said he. + +For a Frenchman that deduction was indubitable. Only a Frenchman +could perform a great deed, and to save his life--the life of M. +Ramballe, captain of the 13th Light Regiment--was undoubtedly a very +great deed. + +But however indubitable that conclusion and the officer's conviction +based upon it, Pierre felt it necessary to disillusion him. + +"I am Russian," he said quickly. + +"Tut, tut, tut! Tell that to others," said the officer, waving his +finger before his nose and smiling. "You shall tell me all about +that presently. I am delighted to meet a compatriot. Well, and what +are we to do with this man?" he added, addressing himself to Pierre as +to a brother. + +Even if Pierre were not a Frenchman, having once received that +loftiest of human appellations he could not renounce it, said the +officer's look and tone. In reply to his last question Pierre again +explained who Makar Alexeevich was and how just before their arrival +that drunken imbecile had seized the loaded pistol which they had +not had time to recover from him, and begged the officer to let the +deed go unpunished. + +The Frenchman expanded his chest and made a majestic gesture with +his arm. + +"You have saved my life! You are French. You ask his pardon? I grant +it you. Lead that man away!" said he quickly and energetically, and +taking the arm of Pierre whom he had promoted to be a Frenchman for +saving his life, he went with him into the room. + +The soldiers in the yard, hearing the shot, came into the passage +asking what had happened, and expressed their readiness to punish +the culprits, but the officer sternly checked them. + +"You will be called in when you are wanted," he said. + +The soldiers went out again, and the orderly, who had meanwhile +had time to visit the kitchen, came up to his officer. + +"Captain, there is soup and a leg of mutton in the kitchen," said +he. "Shall I serve them up?" + +"Yes, and some wine," answered the captain. + + + + + +CHAPTER XXIX + + +When the French officer went into the room with Pierre the latter +again thought it his duty to assure him that he was not French and +wished to go away, but the officer would not hear of it. He was so +very polite, amiable, good-natured, and genuinely grateful to Pierre +for saving his life that Pierre had not the heart to refuse, and sat +down with him in the parlor--the first room they entered. To +Pierre's assurances that he was not a Frenchman, the captain, +evidently not understanding how anyone could decline so flattering +an appellation, shrugged his shoulders and said that if Pierre +absolutely insisted on passing for a Russian let it be so, but for all +that he would be forever bound to Pierre by gratitude for saving his +life. + +Had this man been endowed with the slightest capacity for perceiving +the feelings of others, and had he at all understood what Pierre's +feelings were, the latter would probably have left him, but the +man's animated obtuseness to everything other than himself disarmed +Pierre. + +"A Frenchman or a Russian prince incognito," said the officer, +looking at Pierre's fine though dirty linen and at the ring on his +finger. "I owe my life to you and offer you my friendship. A Frenchman +never forgets either an insult or a service. I offer you my +friendship. That is all I can say." + +There was so much good nature and nobility (in the French sense of +the word) in the officer's voice, in the expression of his face and in +his gestures, that Pierre, unconsciously smiling in response to the +Frenchman's smile, pressed the hand held out to him. + +"Captain Ramballe, of the 13th Light Regiment, Chevalier of the +Legion of Honor for the affair on the seventh of September," he +introduced himself, a self-satisfied irrepressible smile puckering his +lips under his mustache. "Will you now be so good as to tell me with +whom I have the honor of conversing so pleasantly, instead of being in +the ambulance with that maniac's bullet in my body?" + +Pierre replied that he could not tell him his name and, blushing, +began to try to invent a name and to say something about his reason +for concealing it, but the Frenchman hastily interrupted him. + +"Oh, please!" said he. "I understand your reasons. You are an +officer... a superior officer perhaps. You have borne arms against us. +That's not my business. I owe you my life. That is enough for me. I am +quite at your service. You belong to the gentry?" he concluded with +a shade of inquiry in his tone. Pierre bent his head. "Your +baptismal name, if you please. That is all I ask. Monsieur Pierre, you +say.... That's all I want to know." + +When the mutton and an omelet had been served and a samovar and +vodka brought, with some wine which the French had taken from a +Russian cellar and brought with them, Ramballe invited Pierre to share +his dinner, and himself began to eat greedily and quickly like a +healthy and hungry man, munching his food rapidly with his strong +teeth, continually smacking his lips, and repeating--"Excellent! +Delicious!" His face grew red and was covered with perspiration. +Pierre was hungry and shared the dinner with pleasure. Morel, the +orderly, brought some hot water in a saucepan and placed a bottle of +claret in it. He also brought a bottle of kvass, taken from the +kitchen for them to try. That beverage was already known to the French +and had been given a special name. They called it limonade de cochon +(pig's lemonade), and Morel spoke well of the limonade de cochon he +had found in the kitchen. But as the captain had the wine they had +taken while passing through Moscow, he left the kvass to Morel and +applied himself to the bottle of Bordeaux. He wrapped the bottle up to +its neck in a table napkin and poured out wine for himself and for +Pierre. The satisfaction of his hunger and the wine rendered the +captain still more lively and he chatted incessantly all through +dinner. + +"Yes, my dear Monsieur Pierre, I owe you a fine votive candle for +saving me from that maniac.... You see, I have bullets enough in my +body already. Here is one I got at Wagram" (he touched his side) +"and a second at Smolensk"--he showed a scar on his cheek--"and this +leg which as you see does not want to march, I got that on the seventh +at the great battle of la Moskowa. Sacre Dieu! It was splendid! That +deluge of fire was worth seeing. It was a tough job you set us +there, my word! You may be proud of it! And on my honor, in spite of +the cough I caught there, I should be ready to begin again. I pity +those who did not see it." + +"I was there," said Pierre. + +"Bah, really? So much the better! You are certainly brave foes. +The great redoubt held out well, by my pipe!" continued the Frenchman. +"And you made us pay dear for it. I was at it three times--sure as I +sit here. Three times we reached the guns and three times we were +thrown back like cardboard figures. Oh, it was beautiful, Monsieur +Pierre! Your grenadiers were splendid, by heaven! I saw them close +up their ranks six times in succession and march as if on parade. Fine +fellows! Our King of Naples, who knows what's what, cried 'Bravo!' Ha, +ha! So you are one of us soldiers!" he added, smiling, after a +momentary pause. "So much the better, so much the better, Monsieur +Pierre! Terrible in battle... gallant... with the fair" (he winked and +smiled), "that's what the French are, Monsieur Pierre, aren't they?" + +The captain was so naively and good-humoredly gay, so real, and so +pleased with himself that Pierre almost winked back as he looked +merrily at him. Probably the word "gallant" turned the captain's +thoughts to the state of Moscow. + +"Apropos, tell me please, is it true that the women have all left +Moscow? What a queer idea! What had they to be afraid of?" + +"Would not the French ladies leave Paris if the Russians entered +it?" asked Pierre. + +"Ha, ha, ha!" The Frenchman emitted a merry, sanguine chuckle, +patting Pierre on the shoulder. "What a thing to say!" he exclaimed. +"Paris?... But Paris, Paris..." + +"Paris--the capital of the world," Pierre finished his remark for +him. + +The captain looked at Pierre. He had a habit of stopping short in +the middle of his talk and gazing intently with his laughing, kindly +eyes. + +"Well, if you hadn't told me you were Russian, I should have wagered +that you were Parisian! You have that... I don't know what, that..." +and having uttered this compliment, he again gazed at him in silence. + +"I have been in Paris. I spent years there," said Pierre. + +"Oh yes, one sees that plainly. Paris!... A man who doesn't know +Paris is a savage. You can tell a Parisian two leagues off. Paris is +Talma, la Duchenois, Potier, the Sorbonne, the boulevards," and +noticing that his conclusion was weaker than what had gone before, +he added quickly: "There is only one Paris in the world. You have been +to Paris and have remained Russian. Well, I don't esteem you the +less for it." + +Under the influence of the wine he had drunk, and after the days +he had spent alone with his depressing thoughts, Pierre +involuntarily enjoyed talking with this cheerful and good-natured man. + +"To return to your ladies--I hear they are lovely. What a wretched +idea to go and bury themselves in the steppes when the French army +is in Moscow. What a chance those girls have missed! Your peasants, +now--that's another thing; but you civilized people, you ought to know +us better than that. We took Vienna, Berlin, Madrid, Naples, Rome, +Warsaw, all the world's capitals.... We are feared, but we are +loved. We are nice to know. And then the Emperor..." he began, but +Pierre interrupted him. + +"The Emperor," Pierre repeated, and his face suddenly became sad and +embarrassed, "is the Emperor...?" + +"The Emperor? He is generosity, mercy, justice, order, genius- +that's what the Emperor is! It is I, Ramballe, who tell you so.... I +assure you I was his enemy eight years ago. My father was an +emigrant count.... But that man has vanquished me. He has taken hold +of me. I could not resist the sight of the grandeur and glory with +which he has covered France. When I understood what he wanted--when +I saw that he was preparing a bed of laurels for us, you know, I +said to myself: 'That is a monarch,' and I devoted myself to him! So +there! Oh yes, mon cher, he is the greatest man of the ages past or +future." + +"Is he in Moscow?" Pierre stammered with a guilty look. + +The Frenchman looked at his guilty face and smiled. + +"No, he will make his entry tomorrow," he replied, and continued his +talk. + +Their conversation was interrupted by the cries of several voices at +the gate and by Morel, who came to say that some Wurttemberg hussars +had come and wanted to put up their horses in the yard where the +captain's horses were. This difficulty had arisen chiefly because +the hussars did not understand what was said to them in French. + +The captain had their senior sergeant called in, and in a stern +voice asked him to what regiment he belonged, who was his commanding +officer, and by what right he allowed himself to claim quarters that +were already occupied. The German who knew little French, answered the +two first questions by giving the names of his regiment and of his +commanding officer, but in reply to the third question which he did +not understand said, introducing broken French into his own German, +that he was the quartermaster of the regiment and his commander had +ordered him to occupy all the houses one after another. Pierre, who +knew German, translated what the German said to the captain and gave +the captain's reply to the Wurttemberg hussar in German. When he had +understood what was said to him, the German submitted and took his men +elsewhere. The captain went out into the porch and gave some orders in +a loud voice. + +When he returned to the room Pierre was sitting in the same place as +before, with his head in his hands. His face expressed suffering. He +really was suffering at that moment. When the captain went out and +he was left alone, suddenly he came to himself and realized the +position he was in. It was not that Moscow had been taken or that +the happy conquerors were masters in it and were patronizing him. +Painful as that was it was not that which tormented Pierre at the +moment. He was tormented by the consciousness of his own weakness. The +few glasses of wine he had drunk and the conversation with this +good-natured man had destroyed the mood of concentrated gloom in which +he had spent the last few days and which was essential for the +execution of his design. The pistol, dagger, and peasant coat were +ready. Napoleon was to enter the town next day. Pierre still +considered that it would be a useful and worthy action to slay the +evildoer, but now he felt that he would not do it. He did not know +why, but he felt a foreboding that he would not carry out his +intention. He struggled against the confession of his weakness but +dimly felt that he could not overcome it and that his former gloomy +frame of mind, concerning vengeance, killing, and self-sacrifice, +had been dispersed like dust by contact with the first man he met. + +The captain returned to the room, limping slightly and whistling a +tune. + +The Frenchman's chatter which had previously amused Pierre now +repelled him. The tune he was whistling, his gait, and the gesture +with which he twirled his mustache, all now seemed offensive. "I +will go away immediately. I won't say another word to him," thought +Pierre. He thought this, but still sat in the same place. A strange +feeling of weakness tied him to the spot; he wished to get up and go +away, but could not do so. + +The captain, on the other hand, seemed very cheerful. He paced up +and down the room twice. His eyes shone and his mustache twitched as +if he were smiling to himself at some amusing thought. + +"The colonel of those Wurttembergers is delightful," he suddenly +said. "He's a German, but a nice fellow all the same.... But he's a +German." He sat down facing Pierre. "By the way, you know German, +then?" + +Pierre looked at him in silence. + +"What is the German for 'shelter'?" + +"Shelter?" Pierre repeated. "The German for shelter is Unterkunft." + +"How do you say it?" the captain asked quickly and doubtfully. + +"Unterkunft," Pierre repeated. + +"Onterkoff," said the captain and looked at Pierre for some +seconds with laughing eyes. "These Germans are first-rate fools, don't +you think so, Monsieur Pierre?" he concluded. + +"Well, let's have another bottle of this Moscow Bordeaux, shall +we? Morel will warm us up another little bottle. Morel!" he called out +gaily. + +Morel brought candles and a bottle of wine. The captain looked at +Pierre by the candlelight and was evidently struck by the troubled +expression on his companion's face. Ramballe, with genuine distress +and sympathy in his face, went up to Pierre and bent over him. + +"There now, we're sad," said he, touching Pierre's hand. "Have I +upset you? No, really, have you anything against me?" he asked Pierre. +"Perhaps it's the state of affairs?" + +Pierre did not answer, but looked cordially into the Frenchman's +eyes whose expression of sympathy was pleasing to him. + +"Honestly, without speaking of what I owe you, I feel friendship for +you. Can I do anything for you? Dispose of me. It is for life and +death. I say it with my hand on my heart!" said he, striking his +chest. + +"Thank you," said Pierre. + +The captain gazed intently at him as he had done when he learned +that "shelter" was Unterkunft in German, and his face suddenly +brightened. + +"Well, in that case, I drink to our friendship!" he cried gaily, +filling two glasses with wine. + +Pierre took one of the glasses and emptied it. Ramballe emptied +his too, again pressed Pierre's hand, and leaned his elbows on the +table in a pensive attitude. + +"Yes, my dear friend," he began, "such is fortune's caprice. Who +would have said that I should be a soldier and a captain of dragoons +in the service of Bonaparte, as we used to call him? Yet here I am +in Moscow with him. I must tell you, mon cher," he continued in the +sad and measured tones of a man who intends to tell a long story, +"that our name is one of the most ancient in France." + +And with a Frenchman's easy and naive frankness the captain told +Pierre the story of his ancestors, his childhood, youth, and +manhood, and all about his relations and his financial and family +affairs, "ma pauvre mere" playing of course an important part in the +story. + +"But all that is only life's setting, the real thing is love- +love! Am I not right, Monsieur Pierre?" said he, growing animated. +"Another glass?" + +Pierre again emptied his glass and poured himself out a third. + +"Oh, women, women!" and the captain, looking with glistening eyes at +Pierre, began talking of love and of his love affairs. + +There were very many of these, as one could easily believe, +looking at the officer's handsome, self-satisfied face, and noting the +eager enthusiasm with which he spoke of women. Though all Ramballe's +love stories had the sensual character which Frenchmen regard as the +special charm and poetry of love, yet he told his story with such +sincere conviction that he alone had experienced and known all the +charm of love and he described women so alluringly that Pierre +listened to him with curiosity. + +It was plain that l'amour which the Frenchman was so fond of was not +that low and simple kind that Pierre had once felt for his wife, nor +was it the romantic love stimulated by himself that he experienced for +Natasha. (Ramballe despised both these kinds of love equally: the +one he considered the "love of clodhoppers" and the other the "love of +simpletons.") L'amour which the Frenchman worshiped consisted +principally in the unnaturalness of his relation to the woman and in a +combination of incongruities giving the chief charm to the feeling. + +Thus the captain touchingly recounted the story of his love for a +fascinating marquise of thirty-five and at the same time for a +charming, innocent child of seventeen, daughter of the bewitching +marquise. The conflict of magnanimity between the mother and the +daughter, ending in the mother's sacrificing herself and offering +her daughter in marriage to her lover, even now agitated the +captain, though it was the memory of a distant past. Then he recounted +an episode in which the husband played the part of the lover, and +he--the lover--assumed the role of the husband, as well as several +droll incidents from his recollections of Germany, where "shelter" +is called Unterkunft and where the husbands eat sauerkraut and the +young girls are "too blonde." + +Finally, the latest episode in Poland still fresh in the captain's +memory, and which he narrated with rapid gestures and glowing face, +was of how he had saved the life of a Pole (in general, the saving +of life continually occurred in the captain's stories) and the Pole +had entrusted to him his enchanting wife (parisienne de coeur) while +himself entering the French service. The captain was happy, the +enchanting Polish lady wished to elope with him, but, prompted by +magnanimity, the captain restored the wife to the husband, saying as +he did so: "I have saved your life, and I save your honor!" Having +repeated these words the captain wiped his eyes and gave himself a +shake, as if driving away the weakness which assailed him at this +touching recollection. + +Listening to the captain's tales, Pierre--as often happens late in +the evening and under the influence of wine--followed all that was +told him, understood it all, and at the same time followed a train +of personal memories which, he knew not why, suddenly arose in his +mind. While listening to these love stories his own love for Natasha +unexpectedly rose to his mind, and going over the pictures of that +love in his imagination he mentally compared them with Ramballe's +tales. Listening to the story of the struggle between love and duty, +Pierre saw before his eyes every minutest detail of his last meeting +with the object of his love at the Sukharev water tower. At the time +of that meeting it had not produced an effect upon him--he had not +even once recalled it. But now it seemed to him that that meeting +had had in it something very important and poetic. + +"Peter Kirilovich, come here! We have recognized you," he now seemed +to hear the words she had uttered and to see before him her eyes, +her smile, her traveling hood, and a stray lock of her hair... and +there seemed to him something pathetic and touching in all this. + +Having finished his tale about the enchanting Polish lady, the +captain asked Pierre if he had ever experienced a similar impulse to +sacrifice himself for love and a feeling of envy of the legitimate +husband. + +Challenged by this question Pierre raised his head and felt a need +to express the thoughts that filled his mind. He began to explain that +he understood love for a women somewhat differently. He said that in +all his life he had loved and still loved only one woman, and that she +could never be his. + +"Tiens!" said the captain. + +Pierre then explained that he had loved this woman from his earliest +years, but that he had not dared to think of her because she was too +young, and because he had been an illegitimate son without a name. +Afterwards when he had received a name and wealth he dared not think +of her because he loved her too well, placing her far above everything +in the world, and especially therefore above himself. + +When he had reached this point, Pierre asked the captain whether +he understood that. + +The captain made a gesture signifying that even if he did not +understand it he begged Pierre to continue. + +"Platonic love, clouds..." he muttered. + +Whether it was the wine he had drunk, or an impulse of frankness, or +the thought that this man did not, and never would, know any of +those who played a part in his story, or whether it was all these +things together, something loosened Pierre's tongue. Speaking +thickly and with a faraway look in his shining eyes, he told the whole +story of his life: his marriage, Natasha's love for his best friend, +her betrayal of him, and all his own simple relations with her. +Urged on by Ramballe's questions he also told what he had at first +concealed--his own position and even his name. + +More than anything else in Pierre's story the captain was +impressed by the fact that Pierre was very rich, had two mansions in +Moscow, and that he had abandoned everything and not left the city, +but remained there concealing his name and station. + +When it was late at night they went out together into the street. +The night was warm and light. To the left of the house on the Pokrovka +a fire glowed--the first of those that were beginning in Moscow. To +the right and high up in the sky was the sickle of the waning moon and +opposite to it hung that bright comet which was connected in +Pierre's heart with his love. At the gate stood Gerasim, the cook, and +two Frenchmen. Their laughter and their mutually incomprehensible +remarks in two languages could be heard. They were looking at the glow +seen in the town. + +There was nothing terrible in the one small, distant fire in the +immense city. + +Gazing at the high starry sky, at the moon, at the comet, and at the +glow from the fire, Pierre experienced a joyful emotion. "There now, +how good it is, what more does one need?" thought he. And suddenly +remembering his intention he grew dizzy and felt so faint that he +leaned against the fence to save himself from falling. + +Without taking leave of his new friend, Pierre left the gate with +unsteady steps and returning to his room lay down on the sofa and +immediately fell asleep. + + + + + +CHAPTER XXX + + +The glow of the first fire that began on the second of September was +watched from the various roads by the fugitive Muscovites and by the +retreating troops, with many different feelings. + +The Rostov party spent the night at Mytishchi, fourteen miles from +Moscow. They had started so late on the first of September, the road +had been so blocked by vehicles and troops, so many things had been +forgotten for which servants were sent back, that they had decided +to spend that night at a place three miles out of Moscow. The next +morning they woke late and were again delayed so often that they +only got as far as Great Mytishchi. At ten o'clock that evening the +Rostov family and the wounded traveling with them were all distributed +in the yards and huts of that large village. The Rostovs' servants and +coachmen and the orderlies of the wounded officers, after attending to +their masters, had supper, fed the horses, and came out into the +porches. + +In a neighboring hut lay Raevski's adjutant with a fractured +wrist. The awful pain he suffered made him moan incessantly and +piteously, and his moaning sounded terrible in the darkness of the +autumn night. He had spent the first night in the same yard as the +Rostovs. The countess said she had been unable to close her eyes on +account of his moaning, and at Mytishchi she moved into a worse hut +simply to be farther away from the wounded man. + +In the darkness of the night one of the servants noticed, above +the high body of a coach standing before the porch, the small glow +of another fire. One glow had long been visible and everybody knew +that it was Little Mytishchi burning--set on fire by Mamonov's +Cossacks. + +"But look here, brothers, there's another fire!" remarked an +orderly. + +All turned their attention to the glow. + +"But they told us Little Mytishchi had been set on fire by Mamonov's +Cossacks." + +"But that's not Mytishchi, it's farther away." + +"Look, it must be in Moscow!" + +Two of the gazers went round to the other side of the coach and +sat down on its steps. + +"It's more to the left, why, Little Mytishchi is over there, and +this is right on the other side." + +Several men joined the first two. + +"See how it's flaring," said one. "That's a fire in Moscow: either +in the Sushchevski or the Rogozhski quarter." + +No one replied to this remark and for some time they all gazed +silently at the spreading flames of the second fire in the distance. + +Old Daniel Terentich, the count's valet (as he was called), came +up to the group and shouted at Mishka. + +"What are you staring at, you good-for-nothing?... The count will be +calling and there's nobody there; go and gather the clothes together." + +"I only ran out to get some water," said Mishka. + +"But what do you think, Daniel Terentich? Doesn't it look as if that +glow were in Moscow?" remarked one of the footmen. + +Daniel Terentich made no reply, and again for a long time they +were all silent. The glow spread, rising and failing, farther and +farther still. + +"God have mercy.... It's windy and dry..." said another voice. + +"Just look! See what it's doing now. O Lord! You can even see the +crows flying. Lord have mercy on us sinners!" + +"They'll put it out, no fear!" + +"Who's to put it out?" Daniel Terentich, who had hitherto been +silent, was heard to say. His voice was calm and deliberate. "Moscow +it is, brothers," said he. "Mother Moscow, the white..." his voice +faltered, and he gave way to an old man's sob. + +And it was as if they had all only waited for this to realize the +significance for them of the glow they were watching. Sighs were +heard, words of prayer, and the sobbing of the count's old valet. + + + + + +CHAPTER XXXI + + +The valet, returning to the cottage, informed the count that +Moscow was burning. The count donned his dressing gown and went out to +look. Sonya and Madame Schoss, who had not yet undressed, went out +with him. Only Natasha and the countess remained in the room. Petya +was no longer with the family, he had gone on with his regiment +which was making for Troitsa. + +The countess, on hearing that Moscow was on fire, began to cry. +Natasha, pale, with a fixed look, was sitting on the bench under the +icons just where she had sat down on arriving and paid no attention to +her father's words. She was listening to the ceaseless moaning of +the adjutant, three houses off. + +"Oh, how terrible," said Sonya returning from the yard chilled and +frightened. "I believe the whole of Moscow will burn, there's an awful +glow! Natasha, do look! You can see it from the window," she said to +her cousin, evidently wishing to distract her mind. + +But Natasha looked at her as if not understanding what was said to +her and again fixed her eyes on the corner of the stove. She had +been in this condition of stupor since the morning, when Sonya, to the +surprise and annoyance of the countess, had for some unaccountable +reason found it necessary to tell Natasha of Prince Andrew's wound and +of his being with their party. The countess had seldom been so angry +with anyone as she was with Sonya. Sonya had cried and begged to be +forgiven and now, as if trying to atone for her fault, paid +unceasing attention to her cousin. + +"Look, Natasha, how dreadfully it is burning!" said she. + +"What's burning?" asked Natasha. "Oh, yes, Moscow." + +And as if in order not to offend Sonya and to get rid of her, she +turned her face to the window, looked out in such a way that it was +evident that she could not see anything, and again settled down in her +former attitude. + +"But you didn't see it!" + +"Yes, really I did," Natasha replied in a voice that pleaded to be +left in peace. + +Both the countess and Sonya understood that, naturally, neither +Moscow nor the burning of Moscow nor anything else could seem of +importance to Natasha. + +The count returned and lay down behind the partition. The countess +went up to her daughter and touched her head with the back of her hand +as she was wont to do when Natasha was ill, then touched her +forehead with her lips as if to feel whether she was feverish, and +finally kissed her. + +"You are cold. You are trembling all over. You'd better lie down," +said the countess. + +"Lie down? All right, I will. I'll lie down at once," said Natasha. + +When Natasha had been told that morning that Prince Andrew was +seriously wounded and was traveling with their party, she had at first +asked many questions: Where was he going? How was he wounded? Was it +serious? And could she see him? But after she had been told that she +could not see him, that he was seriously wounded but that his life was +not in danger, she ceased to ask questions or to speak at all, +evidently disbelieving what they told her, and convinced that say what +she might she would still be told the same. All the way she had sat +motionless in a corner of the coach with wide open eyes, and the +expression in them which the countess knew so well and feared so much, +and now she sat in the same way on the bench where she had seated +herself on arriving. She was planning something and either deciding or +had already decided something in her mind. The countess knew this, but +what it might be she did not know, and this alarmed and tormented her. + +"Natasha, undress, darling; lie down on my bed." + +A bed had been made on a bedstead for the countess only. Madame +Schoss and the two girls were to sleep on some hay on the floor. + +"No, Mamma, I will lie down here on the floor," Natasha replied +irritably and she went to the window and opened it. Through the open +window the moans of the adjutant could be heard more distinctly. She +put her head out into the damp night air, and the countess saw her +slim neck shaking with sobs and throbbing against the window frame. +Natasha knew it was not Prince Andrew who was moaning. She knew Prince +Andrew was in the same yard as themselves and in a part of the hut +across the passage; but this dreadful incessant moaning made her +sob. The countess exchanged a look with Sonya. + +"Lie down, darling; lie down, my pet," said the countess, softly +touching Natasha's shoulders. "Come, lie down." + +"Oh, yes... I'll lie down at once," said Natasha, and began +hurriedly undressing, tugging at the tapes of her petticoat. + +When she had thrown off her dress and put on a dressing jacket, +she sat down with her foot under her on the bed that had been made +up on the floor, jerked her thin and rather short plait of hair to the +front, and began replaiting it. Her long, thin, practiced fingers +rapidly unplaited, replaited, and tied up her plait. Her head moved +from side to side from habit, but her eyes, feverishly wide, looked +fixedly before her. When her toilet for the night was finished she +sank gently onto the sheet spread over the hay on the side nearest the +door. + +"Natasha, you'd better lie in the middle," said Sonya. + +"I'll stay here," muttered Natasha. "Do lie down," she added +crossly, and buried her face in the pillow. + +The countess, Madame Schoss, and Sonya undressed hastily and lay +down. The small lamp in front of the icons was the only light left +in the room. But in the yard there was a light from the fire at Little +Mytishchi a mile and a half away, and through the night came the noise +of people shouting at a tavern Mamonov's Cossacks had set up across +the street, and the adjutant's unceasing moans could still be heard. + +For a long time Natasha listened attentively to the sounds that +reached her from inside and outside the room and did not move. First +she heard her mother praying and sighing and the creaking of her bed +under her, then Madame Schoss' familiar whistling snore and Sonya's +gentle breathing. Then the countess called to Natasha. Natasha did not +answer. + +"I think she's asleep, Mamma," said Sonya softly. + +After short silence the countess spoke again but this time no one +replied. + +Soon after that Natasha heard her mother's even breathing. Natasha +did not move, though her little bare foot, thrust out from under the +quilt, was growing cold on the bare floor. + +As if to celebrate a victory over everybody, a cricket chirped in +a crack in the wall. A cock crowed far off and another replied near +by. The shouting in the tavern had died down; only the moaning of +the adjutant was heard. Natasha sat up. + +"Sonya, are you asleep? Mamma?" she whispered. + +No one replied. Natasha rose slowly and carefully, crossed +herself, and stepped cautiously on the cold and dirty floor with her +slim, supple, bare feet. The boards of the floor creaked. Stepping +cautiously from one foot to the other she ran like a kitten the few +steps to the door and grasped the cold door handle. + +It seemed to her that something heavy was beating rhythmically +against all the walls of the room: it was her own heart, sinking +with alarm and terror and overflowing with love. + +She opened the door and stepped across the threshold and onto the +cold, damp earthen floor of the passage. The cold she felt refreshed +her. With her bare feet she touched a sleeping man, stepped over +him, and opened the door into the part of the hut where Prince +Andrew lay. It was dark in there. In the farthest corner, on a bench +beside a bed on which something was lying, stood a tallow candle +with a long, thick, and smoldering wick. + +From the moment she had been told that of Prince Andrew's wound +and his presence there, Natasha had resolved to see him. She did not +know why she had to, she knew the meeting would be painful, but felt +the more convinced that it was necessary. + +All day she had lived only in hope of seeing him that night. But now +that the moment had come she was filled with dread of what she might +see. How was he maimed? What was left of him? Was he like that +incessant moaning of the adjutant's? Yes, he was altogether like that. +In her imagination he was that terrible moaning personified. When +she saw an indistinct shape in the corner, and mistook his knees +raised under the quilt for his shoulders, she imagined a horrible body +there, and stood still in terror. But an irresistible impulse drew her +forward. She cautiously took one step and then another, and found +herself in the middle of a small room containing baggage. Another man- +Timokhin--was lying in a corner on the benches beneath the icons, +and two others--the doctor and a valet--lay on the floor. + +The valet sat up and whispered something. Timokhin, kept awake by +the pain in his wounded leg, gazed with wide-open eyes at this strange +apparition of a girl in a white chemise, dressing jacket, and +nightcap. The valet's sleepy, frightened exclamation, "What do you +want? What's the matter?" made Natasha approach more swiftly to what +was lying in the corner. Horribly unlike a man as that body looked, +she must see him. She passed the valet, the snuff fell from the candle +wick, and she saw Prince Andrew clearly with his arms outside the +quilt, and such as she had always seen him. + +He was the same as ever, but the feverish color of his face, his +glittering eyes rapturously turned toward her, and especially his +neck, delicate as a child's, revealed by the turn-down collar of his +shirt, gave him a peculiarly innocent, childlike look, such as she had +never seen on him before. She went up to him and with a swift, +flexible, youthful movement dropped on her knees. + +He smiled and held out his hand to her. + + + + + +CHAPTER XXXII + + +Seven days had passed since Prince Andrew found himself in the +ambulance station on the field of Borodino. His feverish state and the +inflammation of his bowels, which were injured, were in the doctor's + +opinion sure to carry him off. But on the seventh day he ate with +pleasure a piece of bread with some tea, and the doctor noticed that +his temperature was lower. He had regained consciousness that morning. +The first night after they left Moscow had been fairly warm and he had +remained in the caleche, but at Mytishchi the wounded man himself +asked to be taken out and given some tea. The pain caused by his +removal into the hut had made him groan aloud and again lose +consciousness. When he had been placed on his camp bed he lay for a +long time motionless with closed eyes. Then he opened them and +whispered softly: "And the tea?" His remembering such a small detail +of everyday life astonished the doctor. He felt Prince Andrew's pulse, +and to his surprise and dissatisfaction found it had improved. He +was dissatisfied because he knew by experience that if his patient did +not die now, he would do so a little later with greater suffering. +Timokhin, the red-nosed major of Prince Andrew's regiment, had +joined him in Moscow and was being taken along with him, having been +wounded in the leg at the battle of Borodino. They were accompanied by +a doctor, Prince Andrew's valet, his coachman, and two orderlies. + +They gave Prince Andrew some tea. He drank it eagerly, looking +with feverish eyes at the door in front of him as if trying to +understand and remember something. + +"I don't want any more. Is Timokhin here?" he asked. + +Timokhin crept along the bench to him. + +"I am here, your excellency." + +"How's your wound?" + +"Mine, sir? All right. But how about you?" + +Prince Andrew again pondered as if trying to remember something. + +"Couldn't one get a book?" he asked. + +"What book?" + +"The Gospels. I haven't one." + +The doctor promised to procure it for him and began to ask how he +was feeling. Prince Andrew answered all his questions reluctantly +but reasonably, and then said he wanted a bolster placed under him +as he was uncomfortable and in great pain. The doctor and valet lifted +the cloak with which he was covered and, making wry faces at the +noisome smell of mortifying flesh that came from the wound, began +examining that dreadful place. The doctor was very much displeased +about something and made a change in the dressings, turning the +wounded man over so that he groaned again and grew unconscious and +delirious from the agony. He kept asking them to get him the book +and put it under him. + +"What trouble would it be to you?" he said. "I have not got one. +Please get it for me and put it under for a moment," he pleaded in a +piteous voice. + +The doctor went into the passage to wash his hands. + +"You fellows have no conscience," said he to the valet who was +pouring water over his hands. "For just one moment I didn't look after +you... It's such pain, you know, that I wonder how he can bear it." + +"By the Lord Jesus Christ, I thought we had put something under +him!" said the valet. + +The first time Prince Andrew understood where he was and what was +the matter with him and remembered being wounded and how was when he +asked to be carried into the hut after his caleche had stopped at +Mytishchi. After growing confused from pain while being carried into +the hut he again regained consciousness, and while drinking tea once +more recalled all that had happened to him, and above all vividly +remembered the moment at the ambulance station when, at the sight of +the sufferings of a man he disliked, those new thoughts had come to +him which promised him happiness. And those thoughts, though now vague +and indefinite, again possessed his soul. He remembered that he had +now a new source of happiness and that this happiness had something to +do with the Gospels. That was why he asked for a copy of them. The +uncomfortable position in which they had put him and turned him over +again confused his thoughts, and when he came to himself a third +time it was in the complete stillness of the night. Everybody near him +was sleeping. A cricket chirped from across the passage; someone was +shouting and singing in the street; cockroaches rustled on the +table, on the icons, and on the walls, and a big fly flopped at the +head of the bed and around the candle beside him, the wick of which +was charred and had shaped itself like a mushroom. + +His mind was not in a normal state. A healthy man usually thinks of, +feels, and remembers innumerable things simultaneously, but has the +power and will to select one sequence of thoughts or events on which +to fix his whole attention. A healthy man can tear himself away from +the deepest reflections to say a civil word to someone who comes in +and can then return again to his own thoughts. But Prince Andrew's +mind was not in a normal state in that respect. All the powers of +his mind were more active and clearer than ever, but they acted +apart from his will. Most diverse thoughts and images occupied him +simultaneously. At times his brain suddenly began to work with a +vigor, clearness, and depth it had never reached when he was in +health, but suddenly in the midst of its work it would turn to some +unexpected idea and he had not the strength to turn it back again. + +"Yes, a new happiness was revealed to me of which man cannot be +deprived," he thought as he lay in the semi-darkness of the quiet hut, +gazing fixedly before him with feverish wide open eyes. "A happiness +lying beyond material forces, outside the material influences that act +on man--a happiness of the soul alone, the happiness of loving. +Every man can understand it, but to conceive it and enjoin it was +possible only for God. But how did God enjoin that law? And why was +the Son...?" + +And suddenly the sequence of these thoughts broke off, and Prince +Andrew heard (without knowing whether it was a delusion or reality) +a soft whispering voice incessantly and rhythmically repeating +"piti-piti-piti," and then "titi," and then again "piti-piti-piti," +and "ti-ti" once more. At the same time he felt that above his face, +above the very middle of it, some strange airy structure was being +erected out of slender needles or splinters, to the sound of this +whispered music. He felt that he had to balance carefully (though it +was difficult) so that this airy structure should not collapse; but +nevertheless it kept collapsing and again slowly rising to the sound +of whispered rhythmic music--"it stretches, stretches, spreading out +and stretching," said Prince Andrew to himself. While listening to +this whispering and feeling the sensation of this drawing out and +the construction of this edifice of needles, he also saw by glimpses a +red halo round the candle, and heard the rustle of the cockroaches and +the buzzing of the fly that flopped against his pillow and his face. +Each time the fly touched his face it gave him a burning sensation and +yet to his surprise it did not destroy the structure, though it +knocked against the very region of his face where it was rising. But +besides this there was something else of importance. It was +something white by the door--the statue of a sphinx, which also +oppressed him. + +"But perhaps that's my shirt on the table," he thought, "and +that's my legs, and that is the door, but why is it always +stretching and drawing itself out, and 'piti-piti-piti' and 'ti-ti' +and 'piti-piti-piti'...? That's enough, please leave off!" Prince +Andrew painfully entreated someone. And suddenly thoughts and feelings +again swam to the surface of his mind with peculiar clearness and +force. + +"Yes--love," he thought again quite clearly. "But not love which +loves for something, for some quality, for some purpose, or for some +reason, but the love which I--while dying--first experienced when I +saw my enemy and yet loved him. I experienced that feeling of love +which is the very essence of the soul and does not require an +object. Now again I feel that bliss. To love one's neighbors, to +love one's enemies, to love everything, to love God in all His +manifestations. It is possible to love someone dear to you with +human love, but an enemy can only be loved by divine love. That is why +I experienced such joy when I felt that I loved that man. What has +become of him? Is he alive?... + +"When loving with human love one may pass from love to hatred, but +divine love cannot change. No, neither death nor anything else can +destroy it. It is the very essence of the soul. Yet how many people +have I hated in my life? And of them all, I loved and hated none as +I did her." And he vividly pictured to himself Natasha, not as he +had done in the past with nothing but her charms which gave him +delight, but for the first time picturing to himself her soul. And +he understood her feelings, her sufferings, shame, and remorse. He now +understood for the first time all the cruelty of his rejection of her, +the cruelty of his rupture with her. "If only it were possible for +me to see her once more! Just once, looking into those eyes to say..." + + +"Piti-piti-piti and ti-ti and piti-piti-piti boom!" flopped the +fly... And his attention was suddenly carried into another world, a +world of reality and delirium in which something particular was +happening. In that world some structure was still being erected and +did not fall, something was still stretching out, and the candle +with its red halo was still burning, and the same shirtlike sphinx lay +near the door; but besides all this something creaked, there was a +whiff of fresh air, and a new white sphinx appeared, standing at the +door. And that sphinx had the pale face and shining eyes of the very +Natasha of whom he had just been thinking. + +"Oh, how oppressive this continual delirium is," thought Prince +Andrew, trying to drive that face from his imagination. But the face +remained before him with the force of reality and drew nearer. +Prince Andrew wished to return that former world of pure thought, +but he could not, and delirium drew him back into its domain. The soft +whispering voice continued its rhythmic murmur, something oppressed +him and stretched out, and the strange face was before him. Prince +Andrew collected all his strength in an effort to recover his +senses, he moved a little, and suddenly there was a ringing in his +ears, a dimness in his eyes, and like a man plunged into water he lost +consciousness. When he came to himself, Natasha, that same living +Natasha whom of all people he most longed to love with this new pure +divine love that had been revealed to him, was kneeling before him. He +realized that it was the real living Natasha, and he was not surprised +but quietly happy. Natasha, motionless on her knees (she was unable to +stir), with frightened eyes riveted on him, was restraining her +sobs. Her face was pale and rigid. Only in the lower part of it +something quivered. + +Prince Andrew sighed with relief, smiled, and held out his hand. + +"You?" he said. "How fortunate!" + +With a rapid but careful movement Natasha drew nearer to him on +her knees and, taking his hand carefully, bent her face over it and +began kissing it, just touching it lightly with her lips. + +"Forgive me!" she whispered, raising her head and glancing at him. +"Forgive me!" + +"I love you," said Prince Andrew. + +"Forgive...!" + +"Forgive what?" he asked. + +"Forgive me for what I ha-ve do-ne!" faltered Natasha in a +scarcely audible, broken whisper, and began kissing his hand more +rapidly, just touching it with her lips. + +"I love you more, better than before," said Prince Andrew, lifting +her face with his hand so as to look into her eyes. + +Those eyes, filled with happy tears, gazed at him timidly, +compassionately, and with joyous love. Natasha's thin pale face, +with its swollen lips, was more than plain--it was dreadful. But +Prince Andrew did not see that, he saw her shining eyes which were +beautiful. They heard the sound of voices behind them. + +Peter the valet, who was now wide awake, had roused the doctor. +Timokhin, who had not slept at all because of the pain in his leg, had +long been watching all that was going on, carefully covering his +bare body with the sheet as he huddled up on his bench. + +"What's this?" said the doctor, rising from his bed. "Please go +away, madam!" + +At that moment a maid sent by the countess, who had noticed her +daughter's absence, knocked at the door. + +Like a somnambulist aroused from her sleep Natasha went out of the +room and, returning to her hut, fell sobbing on her bed. + + +From that time, during all the rest of the Rostovs' journey, at +every halting place and wherever they spent a night, Natasha never +left the wounded Bolkonski, and the doctor had to admit that he had +not expected from a young girl either such firmness or such skill in +nursing a wounded man. + +Dreadful as the countess imagined it would be should Prince Andrew +die in her daughter's arms during the journey--as, judging by what the +doctor said, it seemed might easily happen--she could not oppose +Natasha. Though with the intimacy now established between the +wounded man and Natasha the thought occurred that should he recover +their former engagement would be renewed, no one--least of all Natasha +and Prince Andrew--spoke of this: the unsettled question of life and +death, which hung not only over Bolkonski but over all Russia, shut +out all other considerations. + + + + + +CHAPTER XXXIII + + +On the third of September Pierre awoke late. His head was aching, +the clothes in which he had slept without undressing felt +uncomfortable on his body, and his mind had a dim consciousness of +something shameful he had done the day before. That something shameful +was his yesterday's conversation with Captain Ramballe. + +It was eleven by the clock, but it seemed peculiarly dark out of +doors. Pierre rose, rubbed his eyes, and seeing the pistol with an +engraved stock which Gerasim had replaced on the writing table, he +remembered where he was and what lay before him that very day. + +"Am I not too late?" he thought. "No, probably he won't make his +entry into Moscow before noon." + +Pierre did not allow himself to reflect on what lay before him, +but hastened to act. + +After arranging his clothes, he took the pistol and was about to +go out. But it then occurred to him for the first time that he +certainly could not carry the weapon in his hand through the +streets. It was difficult to hide such a big pistol even under his +wide coat. He could not carry it unnoticed in his belt or under his +arm. Besides, it had been discharged, and he had not had time to +reload it. "No matter, dagger will do," he said to himself, though +when planning his design he had more than once come to the +conclusion that the chief mistake made by the student in 1809 had been +to try to kill Napoleon with a dagger. But as his chief aim +consisted not in carrying out his design, but in proving to himself +that he would not abandon his intention and was doing all he could +to achieve it, Pierre hastily took the blunt jagged dagger in a +green sheath which he had bought at the Sukharev market with the +pistol, and hid it under his waistcoat. + +Having tied a girdle over his coat and pulled his cap low on his +head, Pierre went down the corridor, trying to avoid making a noise or +meeting the captain, and passed out into the street. + +The conflagration, at which he had looked with so much +indifference the evening before, had greatly increased during the +night. Moscow was on fire in several places. The buildings in Carriage +Row, across the river, in the Bazaar and the Povarskoy, as well as the +barges on the Moskva River and the timber yards by the Dorogomilov +Bridge, were all ablaze. + +Pierre's way led through side streets to the Povarskoy and from +there to the church of St. Nicholas on the Arbat, where he had long +before decided that the deed should should be done. The gates of +most of the houses were locked and the shutters up. The streets and +lanes were deserted. The air was full of smoke and the smell of +burning. Now and then he met Russians with anxious and timid faces, +and Frenchmen with an air not of the city but of the camp, walking +in the middle of the streets. Both the Russians and the French +looked at Pierre with surprise. Besides his height and stoutness, +and the strange morose look of suffering in his face and whole figure, +the Russians stared at Pierre because they could not make out to +what class he could belong. The French followed him with +astonishment in their eyes chiefly because Pierre, unlike all the +other Russians who gazed at the French with fear and curiosity, paid +no attention to them. At the gate of one house three Frenchmen, who +were explaining something to some Russians who did not understand +them, stopped Pierre asking if he did not know French. + +Pierre shook his head and went on. In another side street a sentinel +standing beside a green caisson shouted at him, but only when the +shout was threateningly repeated and he heard the click of the man's +musket as he raised it did Pierre understand that he had to pass on +the other side of the street. He heard nothing and saw nothing of what +went on around him. He carried his resolution within himself in terror +and haste, like something dreadful and alien to him, for, after the +previous night's experience, he was afraid of losing it. But he was +not destined to bring his mood safely to his destination. And even had +he not been hindered by anything on the way, his intention could not +now have been carried out, for Napoleon had passed the Arbat more than +four hours previously on his way from the Dorogomilov suburb to the +Kremlin, and was now sitting in a very gloomy frame of mind in a royal +study in the Kremlin, giving detailed and exact orders as to +measures to be taken immediately to extinguish the fire, to prevent +looting, and to reassure the inhabitants. But Pierre did not know +this; he was entirely absorbed in what lay before him, and was +tortured--as those are who obstinately undertake a task that is +impossible for them not because of its difficulty but because of its +incompatibility with their natures--by the fear of weakening at the +decisive moment and so losing his self-esteem. + +Though he heard and saw nothing around him he found his way by +instinct and did not go wrong in the side streets that led to the +Povarskoy. + +As Pierre approached that street the smoke became denser and denser- +he even felt the heat of the fire. Occasionally curly tongues of flame +rose from under the roofs of the houses. He met more people in the +streets and they were more excited. But Pierre, though he felt that +something unusual was happening around him, did not realize that he +was approaching the fire. As he was going along a foot path across a +wide-open space adjoining the Povarskoy on one side and the gardens of +Prince Gruzinski's house on the other, Pierre suddenly heard the +desperate weeping of a woman close to him. He stopped as if +awakening from a dream and lifted his head. + +By the side of the path, on the dusty dry grass, all sorts of +household goods lay in a heap: featherbeds, a samovar, icons, and +trunks. On the ground, beside the trunks, sat a thin woman no longer +young, with long, prominent upper teeth, and wearing a black cloak and +cap. This woman, swaying to and fro and muttering something, was +choking with sobs. Two girls of about ten and twelve, dressed in dirty +short frocks and cloaks, were staring at their mother with a look of +stupefaction on their pale frightened faces. The youngest child, a boy +of about seven, who wore an overcoat and an immense cap evidently +not his own, was crying in his old nurse's arms. A dirty, barefooted +maid was sitting on a trunk, and, having undone her pale-colored +plait, was pulling it straight and sniffing at her singed hair. The +woman's husband, a short, round-shouldered man in the undress +uniform of a civilian official, with sausage-shaped whiskers and +showing under his square-set cap the hair smoothly brushed forward +over his temples, with expressionless face was moving the trunks, +which were placed one on another, and was dragging some garments +from under them. + +As soon as she saw Pierre, the woman almost threw herself at his +feet. + +"Dear people, good Christians, save me, help me, dear friends... +help us, somebody," she muttered between her sobs. "My girl... My +daughter! My youngest daughter is left behind. She's burned! Ooh! +Was it for this I nursed you.... Ooh!" + +"Don't, Mary Nikolievna!" said her husband to her in a low voice, +evidently only to justify himself before the stranger. "Sister must +have taken her, or else where can she be?" he added. + +"Monster! Villain!" shouted the woman angrily, suddenly ceasing to +weep. "You have no heart, you don't feel for your own child! Another +man would have rescued her from the fire. But this is a monster and +neither a man nor a father! You, honored sir, are a noble man," she +went on, addressing Pierre rapidly between her sobs. "The fire broke +out alongside, and blew our way, the maid called out 'Fire!' and we +rushed to collect our things. We ran out just as we were.... This is +what we have brought away.... The icons, and my dowry bed, all the +rest is lost. We seized the children. But not Katie! Ooh! O +Lord!..." and again she began to sob. "My child, my dear one! +Burned, burned!" + +"But where was she left?" asked Pierre. + +From the expression of his animated face the woman saw that this man +might help her. + +"Oh, dear sir!" she cried, seizing him by the legs. "My +benefactor, set my heart at ease.... Aniska, go, you horrid girl, show +him the way!" she cried to the maid, angrily opening her mouth and +still farther exposing her long teeth. + +"Show me the way, show me, I... I'll do it," gasped Pierre rapidly. + +The dirty maidservant stepped from behind the trunk, put up her +plait, sighed, and went on her short, bare feet along the path. Pierre +felt as if he had come back to life after a heavy swoon. He held his +head higher, his eyes shone with the light of life, and with swift +steps he followed the maid, overtook her, and came out on the +Povarskoy. The whole street was full of clouds of black smoke. Tongues +of flame here and there broke through that cloud. A great number of +people crowded in front of the conflagration. In the middle of the +street stood a French general saying something to those around him. +Pierre, accompanied by the maid, was advancing to the spot where the +general stood, but the French soldiers stopped him. + +"On ne passe pas!"* cried a voice. + + +*"You can't pass! + + +"This way, uncle," cried the girl. "We'll pass through the side +street, by the Nikulins'!" + +Pierre turned back, giving a spring now and then to keep up with +her. She ran across the street, turned down a side street to the left, +and, passing three houses, turned into a yard on the right. + +"It's here, close by," said she and, running across the yard, opened +a gate in a wooden fence and, stopping, pointed out to him a small +wooden wing of the house, which was burning brightly and fiercely. One +of its sides had fallen in, another was on fire, and bright flames +issued from the openings of the windows and from under the roof. + +As Pierre passed through the fence gate, he was enveloped by hot air +and involuntarily stopped. + +"Which is it? Which is your house?" he asked. + +"Ooh!" wailed the girl, pointing to the wing. "That's it, that was +our lodging. You've burned to death, our treasure, Katie, my +precious little missy! Ooh!" lamented Aniska, who at the sight of +the fire felt that she too must give expression to her feelings. + +Pierre rushed to the wing, but the heat was so great that he +involuntarily passed round in a curve and came upon the large house +that was as yet burning only at one end, just below the roof, and +around which swarmed a crowd of Frenchmen. At first Pierre did not +realize what these men, who were dragging something out, were about; +but seeing before him a Frenchman hitting a peasant with a blunt saber +and trying to take from him a fox-fur coat, he vaguely understood that +looting was going on there, but he had no time to dwell on that idea. + +The sounds of crackling and the din of falling walls and ceilings, +the whistle and hiss of the flames, the excited shouts of the +people, and the sight of the swaying smoke, now gathering into thick +black clouds and now soaring up with glittering sparks, with here +and there dense sheaves of flame (now red and now like golden fish +scales creeping along the walls), and the heat and smoke and +rapidity of motion, produced on Pierre the usual animating effects +of a conflagration. It had a peculiarly strong effect on him because +at the sight of the fire he felt himself suddenly freed from the ideas +that had weighed him down. He felt young, bright, adroit, and +resolute. He ran round to the other side of the lodge and was about to +dash into that part of it which was still standing, when just above +his head he heard several voices shouting and then a cracking sound +and the ring of something heavy falling close beside him. + +Pierre looked up and saw at a window of the large house some +Frenchmen who had just thrown out the drawer of a chest, filled with +metal articles. Other French soldiers standing below went up to the +drawer. + +"What does this fellow want?" shouted one of them referring to +Pierre. + +"There's a child in that house. Haven't you seen a child?" cried +Pierre. + +"What's he talking about? Get along!" said several voices, and one +of the soldiers, evidently afraid that Pierre might want to take +from them some of the plate and bronzes that were in the drawer, moved +threateningly toward him. + +"A child?" shouted a Frenchman from above. "I did hear something +squealing in the garden. Perhaps it's his brat that the fellow is +looking for. After all, one must be human, you know...." + +"Where is it? Where?" said Pierre. + +"There! There!" shouted the Frenchman at the window, pointing to the +garden at the back of the house. "Wait a bit--I'm coming down." + +And a minute or two later the Frenchman, a black-eyed fellow with +a spot on his cheek, in shirt sleeves, really did jump out of a window +on the ground floor, and clapping Pierre on the shoulder ran with +him into the garden. + +"Hurry up, you others!" he called out to his comrades. "It's getting +hot." + +When they reached a gravel path behind the house the Frenchman +pulled Pierre by the arm and pointed to a round, graveled space +where a three-year-old girl in a pink dress was lying under a seat. + +"There is your child! Oh, a girl, so much the better!" said the +Frenchman. "Good-by, Fatty. We must be human, we are all mortal you +know!" and the Frenchman with the spot on his cheek ran back to his +comrades. + +Breathless with joy, Pierre ran to the little girl and was going +to take her in his arms. But seeing a stranger the sickly, +scrofulous-looking child, unattractively like her mother, began to +yell and run away. Pierre, however, seized her and lifted her in his +arms. She screamed desperately and angrily and tried with her little +hands to pull Pierre's hands away and to bite them with her slobbering +mouth. Pierre was seized by a sense of horror and repulsion such as he +had experienced when touching some nasty little animal. But he made an +effort not to throw the child down and ran with her to the large +house. It was now, however, impossible to get back the way he had +come; the maid, Aniska, was no longer there, and Pierre with a feeling +of pity and disgust pressed the wet, painfully sobbing child to +himself as tenderly as he could and ran with her through the garden +seeking another way out. + + + + + +CHAPTER XXXIV + + +Having run through different yards and side streets, Pierre got back +with his little burden to the Gruzinski garden at the corner of the +Povarskoy. He did not at first recognize the place from which he had +set out to look for the child, so crowded was it now with people and +goods that had been dragged out of the houses. Besides Russian +families who had taken refuge here from the fire with their +belongings, there were several French soldiers in a variety of +clothing. Pierre took no notice of them. He hurried to find the family +of that civil servant in order to restore the daughter to her mother +and go to save someone else. Pierre felt that he had still much to +do and to do quickly. Glowing with the heat and from running, he +felt at that moment more strongly than ever the sense of youth, +animation, and determination that had come on him when he ran to +save the child. She had now become quiet and, clinging with her little +hands to Pierre's coat, sat on his arm gazing about her like some +little wild animal. He glanced at her occasionally with a slight +smile. He fancied he saw something pathetically innocent in that +frightened, sickly little face. + +He did not find the civil servant or his wife where he had left +them. He walked among the crowd with rapid steps, scanning the various +faces he met. Involuntarily he noticed a Georgian or Armenian family +consisting of a very handsome old man of Oriental type, wearing a new, +cloth-covered, sheepskin coat and new boots, an old woman of similar +type, and a young woman. That very young woman seemed to Pierre the +perfection of Oriental beauty, with her sharply outlined, arched, +black eyebrows and the extraordinarily soft, bright color of her long, +beautiful, expressionless face. Amid the scattered property and the +crowd on the open space, she, in her rich satin cloak with a bright +lilac shawl on her head, suggested a delicate exotic plant thrown +out onto the snow. She was sitting on some bundles a little behind the +old woman, and looked from under her long lashes with motionless, +large, almond-shaped eyes at the ground before her. Evidently she +was aware of her beauty and fearful because of it. Her face struck +Pierre and, hurrying along by the fence, he turned several times to +look at her. When he had reached the fence, still without finding +those he sought, he stopped and looked about him. + +With the child in his arms his figure was now more conspicuous +than before, and a group of Russians, both men and women, gathered +about him. + +"Have you lost anyone, my dear fellow? You're of the gentry +yourself, aren't you? Whose child is it?" they asked him. + +Pierre replied that the child belonged to a woman in a black coat +who had been sitting there with her other children, and he asked +whether anyone knew where she had gone. + +"Why, that must be the Anferovs," said an old deacon, addressing a +pockmarked peasant woman. "Lord have mercy, Lord have mercy!" he added +in his customary bass. + +"The Anferovs? No," said the woman. "They left in the morning. +That must be either Mary Nikolievna's or the Ivanovs'!" + +"He says 'a woman,' and Mary Nikolievna is a lady," remarked a house +serf. + +"Do you know her? She's thin, with long teeth," said Pierre. + +"That's Mary Nikolievna! They went inside the garden when these +wolves swooped down," said the woman, pointing to the French soldiers. + +"O Lord, have mercy!" added the deacon. + +"Go over that way, they're there. It's she! She kept on lamenting +and crying," continued the woman. "It's she. Here, this way!" + +But Pierre was not listening to the woman. He had for some seconds +been intently watching what was going on a few steps away. He was +looking at the Armenian family and at two French soldiers who had gone +up to them. One of these, a nimble little man, was wearing a blue coat +tied round the waist with a rope. He had a nightcap on his head and +his feet were bare. The other, whose appearance particularly struck +Pierre, was a long, lank, round-shouldered, fair-haired man, slow in +his movements and with an idiotic expression of face. He wore a +woman's loose gown of frieze, blue trousers, and large torn Hessian +boots. The little barefooted Frenchman in the blue coat went up to the +Armenians and, saying something, immediately seized the old man by his +legs and the old man at once began pulling off his boots. The other in +the frieze gown stopped in front of the beautiful Armenian girl and +with his hands in his pockets stood staring at her, motionless and +silent. + +"Here, take the child!" said Pierre peremptorily and hurriedly to +the woman, handing the little girl to her. "Give her back to them, +give her back!" he almost shouted, putting the child, who began +screaming, on the ground, and again looking at the Frenchman and the +Armenian family. + +The old man was already sitting barefoot. The little Frenchman had +secured his second boot and was slapping one boot against the other. +The old man was saying something in a voice broken by sobs, but Pierre +caught but a glimpse of this, his whole attention was directed to +the Frenchman in the frieze gown who meanwhile, swaying slowly from +side to side, had drawn nearer to the young woman and taking his hands +from his pockets had seized her by the neck. + +The beautiful Armenian still sat motionless and in the same +attitude, with her long lashes drooping as if she did not see or +feel what the soldier was doing to her. + +While Pierre was running the few steps that separated him from the +Frenchman, the tall marauder in the frieze gown was already tearing +from her neck the necklace the young Armenian was wearing, and the +young woman, clutching at her neck, screamed piercingly. + +"Let that woman alone!" exclaimed Pierre hoarsely in a furious +voice, seizing the soldier by his round shoulders and throwing him +aside. + +The soldier fell, got up, and ran away. But his comrade, throwing +down the boots and drawing his sword, moved threateningly toward +Pierre. + +"Voyons, Pas de betises!"* he cried. + + +*"Look here, no nonsense!" + + +Pierre was in such a transport of rage that he remembered nothing +and his strength increased tenfold. He rushed at the barefooted +Frenchman and, before the latter had time to draw his sword, knocked +him off his feet and hammered him with his fists. Shouts of approval +were heard from the crowd around, and at the same moment a mounted +patrol of French Uhlans appeared from round the corner. The Uhlans +came up at a trot to Pierre and the Frenchman and surrounded them. +Pierre remembered nothing of what happened after that. He only +remembered beating someone and being beaten and finally feeling that +his hands were bound and that a crowd of French soldiers stood +around him and were searching him. + +"Lieutenant, he has a dagger," were the first words Pierre +understood. + +"Ah, a weapon?" said the officer and turned to the barefooted +soldier who had been arrested with Pierre. "All right, you can tell +all about it at the court-martial." Then he turned to Pierre. "Do +you speak French?" + +Pierre looked around him with bloodshot eyes and did not reply. +His face probably looked very terrible, for the officer said something +in a whisper and four more Uhlans left the ranks and placed themselves +on both sides of Pierre. + +"Do you speak French?" the officer asked again, keeping at a +distance from Pierre. "Call the interpreter." + +A little man in Russian civilian clothes rode out from the ranks, +and by his clothes and manner of speaking Pierre at once knew him to +be a French salesman from one of the Moscow shops. + +"He does not look like a common man," said the interpreter, after +a searching look at Pierre. + +"Ah, he looks very much like an incendiary," remarked the officer. +"And ask him who he is," he added. + +"Who are you?" asked the interpreter in poor Russian. "You must +answer the chief." + +"I will not tell you who I am. I am your prisoner--take me!" +Pierre suddenly replied in French. + +"Ah, ah!" muttered the officer with a frown. "Well then, march!" + +A crowd had collected round the Uhlans. Nearest to Pierre stood +the pockmarked peasant woman with the little girl, and when the patrol +started she moved forward. + +"Where are they taking you to, you poor dear?" said she. "And the +little girl, the little girl, what am I to do with her if she's not +theirs?" said the woman. + +"What does that woman want?" asked the officer. + +Pierre was as if intoxicated. His elation increased at the sight +of the little girl he had saved. + +"What does she want?" he murmured. "She is bringing me my daughter +whom I have just saved from the flames," said he. "Good-by!" And +without knowing how this aimless lie had escaped him, he went along +with resolute and triumphant steps between the French soldiers. + +The French patrol was one of those sent out through the various +streets of Moscow by Durosnel's order to put a stop to the pillage, +and especially to catch the incendiaries who, according to the general +opinion which had that day originated among the higher French +officers, were the cause of the conflagrations. After marching through +a number of streets the patrol arrested five more Russian suspects: +a small shopkeeper, two seminary students, a peasant, and a house +serf, besides several looters. But of all these various suspected +characters, Pierre was considered to be the most suspicious of all. +When they had all been brought for the night to a large house on the +Zubov Rampart that was being used as a guardhouse, Pierre was placed +apart under strict guard. + + + + + +BOOK TWELVE: 1812 + + + + + +CHAPTER I + + +In Petersburg at that time a complicated struggle was being +carried on with greater heat than ever in the highest circles, between +the parties of Rumyantsev, the French, Marya Fedorovna, the Tsarevich, +and others, drowned as usual by the buzzing of the court drones. But +the calm, luxurious life of Petersburg, concerned only about +phantoms and reflections of real life, went on in its old way and made +it hard, except by a great effort, to realize the danger and the +difficult position of the Russian people. There were the same +receptions and balls, the same French theater, the same court +interests and service interests and intrigues as usual. Only in the +very highest circles were attempts made to keep in mind the +difficulties of the actual position. Stories were whispered of how +differently the two Empresses behaved in these difficult +circumstances. The Empress Marya, concerned for the welfare of the +charitable and educational institutions under her patronage, had given +directions that they should all be removed to Kazan, and the things +belonging to these institutions had already been packed up. The +Empress Elisabeth, however, when asked what instructions she would +be pleased to give--with her characteristic Russian patriotism had +replied that she could give no directions about state institutions for +that was the affair of the sovereign, but as far as she personally was +concerned she would be the last to quit Petersburg. + +At Anna Pavlovna's on the twenty-sixth of August, the very day of +the battle of Borodino, there was a soiree, the chief feature of which +was to be the reading of a letter from His Lordship the Bishop when +sending the Emperor an icon of the Venerable Sergius. It was +regarded as a model of ecclesiastical, patriotic eloquence. Prince +Vasili himself, famed for his elocution, was to read it. (He used to +read at the Empress'.) The art of his reading was supposed to lie in +rolling out the words, quite independently of their meaning, in a loud +and singsong voice alternating between a despairing wail and a +tender murmur, so that the wail fell quite at random on one word and +the murmur on another. This reading, as was always the case at Anna +Pavlovna's soirees, had a political significance. That evening she +expected several important personages who had to be made ashamed of +their visits to the French theater and aroused to a patriotic +temper. A good many people had already arrived, but Anna Pavlovna, not +yet seeing all those whom she wanted in her drawing room, did not +let the reading begin but wound up the springs of a general +conversation. + +The news of the day in Petersburg was the illness of Countess +Bezukhova. She had fallen ill unexpectedly a few days previously, +had missed several gatherings of which she was usually ornament, and +was said to be receiving no one, and instead of the celebrated +Petersburg doctors who usually attended her had entrusted herself to +some Italian doctor who was treating her in some new and unusual way. + +They all knew very well that the enchanting countess' illness +arose from an inconvenience resulting from marrying two husbands at +the same time, and that the Italian's cure consisted in removing +such inconvenience; but in Anna Pavlovna's presence no one dared to +think of this or even appear to know it. + +"They say the poor countess is very ill. The doctor says it is +angina pectoris." + +"Angina? Oh, that's a terrible illness!" + +"They say that the rivals are reconciled, thanks to the angina..." +and the word angina was repeated with great satisfaction. + +"The count is pathetic, they say. He cried like a child when the +doctor told him the case was dangerous." + +"Oh, it would be a terrible loss, she is an enchanting woman." + +"You are speaking of the poor countess?" said Anna Pavlovna, +coming up just then. "I sent to ask for news, and hear that she is a +little better. Oh, she is certainly the most charming woman in the +world," she went on, with a smile at her own enthusiasm. "We belong to +different camps, but that does not prevent my esteeming her as she +deserves. She is very unfortunate!" added Anna Pavlovna. + +Supposing that by these words Anna Pavlovna was somewhat lifting the +veil from the secret of the countess' malady, an unwary young man +ventured to express surprise that well known doctors had not been +called in and that the countess was being attended by a charlatan +who might employ dangerous remedies. + +"Your information maybe better than mine," Anna Pavlovna suddenly +and venomously retorted on the inexperienced young man, "but I know on +good authority that this doctor is a very learned and able man. He +is private physician to the Queen of Spain." + +And having thus demolished the young man, Anna Pavlovna turned to +another group where Bilibin was talking about the Austrians: having +wrinkled up his face he was evidently preparing to smooth it out again +and utter one of his mots. + +"I think it is delightful," he said, referring to a diplomatic +note that had been sent to Vienna with some Austrian banners +captured from the French by Wittgenstein, "the hero of Petropol" as he +was then called in Petersburg. + +"What? What's that?" asked Anna Pavlovna, securing silence for the +mot, which she had heard before. + +And Bilibin repeated the actual words of the diplomatic dispatch, +which he had himself composed. + +"The Emperor returns these Austrian banners," said Bilibin, +"friendly banners gone astray and found on a wrong path," and his brow +became smooth again. + +"Charming, charming!" observed Prince Vasili. + +"The path to Warsaw, perhaps," Prince Hippolyte remarked loudly +and unexpectedly. Everybody looked at him, understanding what he +meant. Prince Hippolyte himself glanced around with amused surprise. +He knew no more than the others what his words meant. During his +diplomatic career he had more than once noticed that such utterances +were received as very witty, and at every opportunity he uttered in +that way the first words that entered his head. "It may turn out +very well," he thought, "but if not, they'll know how to arrange +matters." And really, during the awkward silence that ensued, that +insufficiently patriotic person entered whom Anna Pavlovna had been +waiting for and wished to convert, and she, smiling and shaking a +finger at Hippolyte, invited Prince Vasili to the table and bringing +him two candles and the manuscript begged him to begin. Everyone +became silent. + + +"Most Gracious Sovereign and Emperor!" Prince Vasili sternly +declaimed, looking round at his audience as if to inquire whether +anyone had anything to say to the contrary. But no one said +anything. "Moscow, our ancient capital, the New Jerusalem, receives +her Christ"--he placed a sudden emphasis on the word her--"as a mother +receives her zealous sons into her arms, and through the gathering +mists, foreseeing the brilliant glory of thy rule, sings in +exultation, 'Hosanna, blessed is he that cometh!'" + + +Prince Vasili pronounced these last words in a tearful voice. + +Bilibin attentively examined his nails, and many of those present +appeared intimidated, as if asking in what they were to blame. Anna +Pavlovna whispered the next words in advance, like an old woman +muttering the prayer at Communion: "Let the bold and insolent +Goliath..." she whispered. + +Prince Vasili continued. + + +"Let the bold and insolent Goliath from the borders of France +encompass the realms of Russia with death-bearing terrors; humble +Faith, the sling of the Russian David, shall suddenly smite his head +in his blood-thirsty pride. This icon of the Venerable Sergius, the +servant of God and zealous champion of old of our country's weal, is +offered to Your Imperial Majesty. I grieve that my waning strength +prevents rejoicing in the sight of your most gracious presence. I +raise fervent prayers to Heaven that the Almighty may exalt the race +of the just, and mercifully fulfill the desires of Your Majesty." + + +"What force! What a style!" was uttered in approval both of reader +and of author. + +Animated by that address Anna Pavlovna's guests talked for a long +time of the state of the fatherland and offered various conjectures as +to the result of the battle to be fought in a few days. + +"You will see," said Anna Pavlovna, "that tomorrow, on the Emperor's +birthday, we shall receive news. I have a favorable presentiment!" + + + + + +CHAPTER II + + +Anna Pavlovna's presentiment was in fact fulfilled. Next day +during the service at the palace church in honor of the Emperor's +birthday, Prince Volkonski was called out of the church and received a +dispatch from Prince Kutuzov. It was Kutuzov's report, written from +Tatarinova on the day of the battle. Kutuzov wrote that the Russians +had not retreated a step, that the French losses were much heavier +than ours, and that he was writing in haste from the field of battle +before collecting full information. It followed that there must have +been a victory. And at once, without leaving the church, thanks were +rendered to the Creator for His help and for the victory. + +Anna Pavlovna's presentiment was justified, and all that morning a +joyously festive mood reigned in the city. Everyone believed the +victory to have been complete, and some even spoke of Napoleon's +having been captured, of his deposition, and of the choice of a new +ruler for France. + +It is very difficult for events to be reflected in their real +strength and completeness amid the conditions of court life and far +from the scene of action. General events involuntarily group +themselves around some particular incident. So now the courtiers' +pleasure was based as much on the fact that the news had arrived on +the Emperor's birthday as on the fact of the victory itself. It was +like a successfully arranged surprise. Mention was made in Kutuzov's +report of the Russian losses, among which figured the names of +Tuchkov, Bagration, and Kutaysov. In the Petersburg world this sad +side of the affair again involuntarily centered round a single +incident: Kutaysov's death. Everybody knew him, the Emperor liked him, +and he was young and interesting. That day everyone met with the +words: + +"What a wonderful coincidence! Just during the service. But what a +loss Kutaysov is! How sorry I am!" + +"What did I tell about Kutuzov?" Prince Vasili now said with a +prophet's pride. "I always said he was the only man capable of +defeating Napoleon." + +But next day no news arrived from the army and the public mood +grew anxious. The courtiers suffered because of the suffering the +suspense occasioned the Emperor. + +"Fancy the Emperor's position!" said they, and instead of +extolling Kutuzov as they had done the day before, they condemned +him as the cause of the Emperor's anxiety. That day Prince Vasili no +longer boasted of his protege Kutuzov, but remained silent when the +commander in chief was mentioned. Moreover, toward evening, as if +everything conspired to make Petersburg society anxious and uneasy, +a terrible piece of news was added. Countess Helene Bezukhova had +suddenly died of that terrible malady it had been so agreeable to +mention. Officially, at large gatherings, everyone said that +Countess Bezukhova had died of a terrible attack of angina pectoris, +but in intimate circles details were mentioned of how the private +physician of the Queen of Spain had prescribed small doses of a +certain drug to produce a certain effect; but Helene, tortured by +the fact that the old count suspected her and that her husband to whom +she had written (that wretched, profligate Pierre) had not replied, +had suddenly taken a very large dose of the drug, and had died in +agony before assistance could be rendered her. It was said that Prince +Vasili and the old count had turned upon the Italian, but the latter +had produced such letters from the unfortunate deceased that they +had immediately let the matter drop. + +Talk in general centered round three melancholy facts: the Emperor's +lack of news, the loss of Kutuzov, and the death of Helene. + +On the third day after Kutuzov's report a country gentleman +arrived from Moscow, and news of the surrender of Moscow to the French +spread through the whole town. This was terrible! What a position +for the Emperor to be in! Kutuzov was a traitor, and Prince Vasili +during the visits of condolence paid to him on the occasion of his +daughter's death said of Kutuzov, whom he had formerly praised (it was +excusable for him in his grief to forget what he had said), that it +was impossible to expect anything else from a blind and depraved old +man. + +"I only wonder that the fate of Russia could have been entrusted +to such a man." + +As long as this news remained unofficial it was possible to doubt +it, but the next day the following communication was received from +Count Rostopchin: + + +Prince Kutuzov's adjutant has brought me a letter in which he +demands police officers to guide the army to the Ryazan road. He +writes that he is regretfully abandoning Moscow. Sire! Kutuzov's +action decides the fate of the capital and of your empire! Russia will +shudder to learn of the abandonment of the city in which her greatness +is centered and in which lie the ashes of your ancestors! I shall +follow the army. I have had everything removed, and it only remains +for me to weep over the fate of my fatherland. + + +On receiving this dispatch the Emperor sent Prince Volkonski to +Kutuzov with the following rescript: + + +Prince Michael Ilarionovich! Since the twenty-ninth of August I have +received no communication from you, yet on the first of September I +received from the commander in chief of Moscow, via Yaroslavl, the sad +news that you, with the army, have decided to abandon Moscow. You +can yourself imagine the effect this news has had on me, and your +silence increases my astonishment. I am sending this by +Adjutant-General Prince Volkonski, to hear from you the situation of +the army and the reasons that have induced you to take this melancholy +decision. + + + + + +CHAPTER III + + +Nine days after the abandonment of Moscow, a messenger from +Kutuzov reached Petersburg with the official announcement of that +event. This messenger was Michaud, a Frenchman who did not know +Russian, but who was quoique etranger, russe de coeur et d'ame,* as he +said of himself. + + +*Though a foreigner, Russian in heart and soul. + + +The Emperor at once received this messenger in his study at the +palace on Stone Island. Michaud, who had never seen Moscow before +the campaign and who did not know Russian, yet felt deeply moved (as +he wrote) when he appeared before notre tres gracieux souverain* +with the news of the burning of Moscow, dont les flammes eclairaient +sa route.*[2] + + +*Our most gracious sovereign. + +*[2] Whose flames illumined his route. + + +Though the source of M. Michaud's chagrin must have been different +from that which caused Russians to grieve, he had such a sad face when +shown into the Emperor's study that the latter at once asked: + +"Have you brought me sad news, Colonel?" + +"Very sad, sire," replied Michaud, lowering his eyes with a sigh. +"The abandonment of Moscow." + +"Have they surrendered my ancient capital without a battle?" asked +the Emperor quickly, his face suddenly flushing. + +Michaud respectfully delivered the message Kutuzov had entrusted +to him, which was that it had been impossible to fight before +Moscow, and that as the only remaining choice was between losing the +army as well as Moscow, or losing Moscow alone, the field marshal +had to choose the latter. + +The Emperor listened in silence, not looking at Michaud. + +"Has the enemy entered the city?" he asked. + +"Yes, sire, and Moscow is now in ashes. I left it all in flames," +replied Michaud in a decided tone, but glancing at the Emperor he +was frightened by what he had done. + +The Emperor began to breathe heavily and rapidly, his lower lip +trembled, and tears instantly appeared in his fine blue eyes. + +But this lasted only a moment. He suddenly frowned, as if blaming +himself for his weakness, and raising his head addressed Michaud in +a firm voice: + +"I see, Colonel, from all that is happening, that Providence +requires great sacrifices of us... I am ready to submit myself in +all things to His will; but tell me, Michaud, how did you leave the +army when it saw my ancient capital abandoned without a battle? Did +you not notice discouragement?..." + +Seeing that his most gracious ruler was calm once more, Michaud also +grew calm, but was not immediately ready to reply to the Emperor's +direct and relevant question which required a direct answer. + +"Sire, will you allow me to speak frankly as befits a loyal +soldier?" he asked to gain time. + +"Colonel, I always require it," replied the Emperor. "Conceal +nothing from me, I wish to know absolutely how things are." + +"Sire!" said Michaud with a subtle, scarcely perceptible smile on +his lips, having now prepared a well-phrased reply, "sire, I left +the whole army, from its chiefs to the lowest soldier, without +exception in desperate and agonized terror..." + +"How is that?" the Emperor interrupted him, frowning sternly. "Would +misfortune make my Russians lose heart?... Never!" + +Michaud had only waited for this to bring out the phrase he had +prepared. + +"Sire," he said, with respectful playfulness, "they are only +afraid lest Your Majesty, in the goodness of your heart, should +allow yourself to be persuaded to make peace. They are burning for the +combat," declared this representative of the Russian nation, "and to +prove to Your Majesty by the sacrifice of their lives how devoted they +are...." + +"Ah!" said the Emperor reassured, and with a kindly gleam in his +eyes, he patted Michaud on the shoulder. "You set me at ease, +Colonel." + +He bent his head and was silent for some time. + +"Well, then, go back to the army," he said, drawing himself up to +his full height and addressing Michaud with a gracious and majestic +gesture, "and tell our brave men and all my good subjects wherever you +go that when I have not a soldier left I shall put myself at the +head of my beloved nobility and my good peasants and so use the last +resources of my empire. It still offers me more than my enemies +suppose," said the Emperor growing more and more animated; "but should +it ever be ordained by Divine Providence," he continued, raising to +heaven his fine eyes shining with emotion, "that my dynasty should +cease to reign on the throne of my ancestors, then after exhausting +all the means at my command, I shall let my beard grow to here" (he +pointed halfway down his chest) "and go and eat potatoes with the +meanest of my peasants, rather than sign the disgrace of my country +and of my beloved people whose sacrifices I know how to appreciate." + +Having uttered these words in an agitated voice the Emperor suddenly +turned away as if to hide from Michaud the tears that rose to his +eyes, and went to the further end of his study. Having stood there a +few moments, he strode back to Michaud and pressed his arm below the +elbow with a vigorous movement. The Emperor's mild and handsome face +was flushed and his eyes gleamed with resolution and anger. + +"Colonel Michaud, do not forget what I say to you here, perhaps we +may recall it with pleasure someday... Napoleon or I," said the +Emperor, touching his breast. "We can no longer both reign together. I +have learned to know him, and he will not deceive me any more...." + +And the Emperor paused, with a frown. + +When he heard these words and saw the expression of firm +resolution in the Emperor's eyes, Michaud--quoique etranger, russe +de coeur et d'ame--at that solemn moment felt himself enraptured by +all that he had heard (as he used afterwards to say), and gave +expression to his own feelings and those of the Russian people whose +representative he considered himself to be, in the following words: + +"Sire!" said he, "Your Majesty is at this moment signing the glory +of the nation and the salvation of Europe!" + +With an inclination of the head the Emperor dismissed him. + + + + + +CHAPTER IV + + +It is natural for us who were not living in those days to imagine +that when half Russia had been conquered and the inhabitants were +fleeing to distant provinces, and one levy after another was being +raised for the defense of the fatherland, all Russians from the +greatest to the least were solely engaged in sacrificing themselves, +saving their fatherland, or weeping over its downfall. The tales and +descriptions of that time without exception speak only of the +self-sacrifice, patriotic devotion, despair, grief, and the heroism of +the Russians. But it was not really so. It appears so to us because we +see only the general historic interest of that time and do not see all +the personal human interests that people had. Yet in reality those +personal interests of the moment so much transcend the general +interests that they always prevent the public interest from being felt +or even noticed. Most of the people at that time paid no attention +to the general progress of events but were guided only by their +private interests, and they were the very people whose activities at +that period were most useful. + +Those who tried to understand the general course of events and to +take part in it by self-sacrifice and heroism were the most useless +members of society, they saw everything upside down, and all they +did for the common good turned out to be useless and foolish--like +Pierre's and Mamonov's regiments which looted Russian villages, and +the lint the young ladies prepared and that never reached the wounded, +and so on. Even those, fond of intellectual talk and of expressing +their feelings, who discussed Russia's position at the time +involuntarily introduced into their conversation either a shade of +pretense and falsehood or useless condemnation and anger directed +against people accused of actions no one could possibly be guilty +of. In historic events the rule forbidding us to eat of the fruit of +the Tree of Knowledge is specially applicable. Only unconscious action +bears fruit, and he who plays a part in an historic event never +understands its significance. If he tries to realize it his efforts +are fruitless. + +The more closely a man was engaged in the events then taking place +in Russia the less did he realize their significance. In Petersburg +and in the provinces at a distance from Moscow, ladies, and +gentlemen in militia uniforms, wept for Russia and its ancient capital +and talked of self-sacrifice and so on; but in the army which +retired beyond Moscow there was little talk or thought of Moscow, +and when they caught sight of its burned ruins no one swore to be +avenged on the French, but they thought about their next pay, their +next quarters, of Matreshka the vivandiere, and like matters. + +As the war had caught him in the service, Nicholas Rostov took a +close and prolonged part in the defense of his country, but did so +casually, without any aim at self-sacrifice, and he therefore looked +at what was going on in Russia without despair and without dismally +racking his brains over it. Had he been asked what he thought of the +state of Russia, he would have said that it was not his business to +think about it, that Kutuzov and others were there for that purpose, +but that he had heard that the regiments were to be made up to their +full strength, that fighting would probably go on for a long time yet, +and that things being so it was quite likely he might be in command of +a regiment in a couple of years' time. + +As he looked at the matter in this way, he learned that he was being +sent to Voronezh to buy remounts for his division, not only without +regret at being prevented from taking part in the coming battle, but +with the greatest pleasure--which he did not conceal and which his +comrades fully understood. + +A few days before the battle of Borodino, Nicholas received the +necessary money and warrants, and having sent some hussars on in +advance, he set out with post horses for Voronezh. + +Only a man who has experienced it--that is, has passed some months +continuously in an atmosphere of campaigning and war--can understand +the delight Nicholas felt when he escaped from the region covered by +the army's foraging operations, provision trains, and hospitals. When- +free from soldiers, wagons, and the filthy traces of a camp--he saw +villages with peasants and peasant women, gentlemen's country +houses, fields where cattle were grazing, posthouses with +stationmasters asleep in them, he rejoiced as though seeing all this +for the first time. What for a long while specially surprised and +delighted him were the women, young and healthy, without a dozen +officers making up to each of them; women, too, who were pleased and +flattered that a passing officer should joke with them. + +In the highest spirits Nicholas arrived at night at a hotel in +Voronezh, ordered things he had long been deprived of in camp, and +next day, very clean-shaven and in a full-dress uniform he had not +worn for a long time, went to present himself to the authorities. + +The commander of the militia was a civilian general, an old man +who was evidently pleased with his military designation and rank. He +received Nicholas brusquely (imagining this to be characteristically +military) and questioned him with an important air, as if +considering the general progress of affairs and approving and +disapproving with full right to do so. Nicholas was in such good +spirits that this merely amused him. + +From the commander of the militia he drove to the governor. The +governor was a brisk little man, very simple and affable. He indicated +the stud farms at which Nicholas might procure horses, recommended +to him a horse dealer in the town and a landowner fourteen miles out +of town who had the best horses, and promised to assist him in every +way. + +"You are Count Ilya Rostov's son? My wife was a great friend of your +mother's. We are at home on Thursdays--today is Thursday, so please +come and see us quite informally," said the governor, taking leave +of him. + +Immediately on leaving the governor's, Nicholas hired post horses +and, taking his squadron quartermaster with him, drove at a gallop +to the landowner, fourteen miles away, who had the stud. Everything +seemed to him pleasant and easy during that first part of his stay +in Voronezh and, as usually happens when a man is in a pleasant +state of mind, everything went well and easily. + +The landowner to whom Nicholas went was a bachelor, an old +cavalryman, a horse fancier, a sportsman, the possessor of some +century-old brandy and some old Hungarian wine, who had a snuggery +where he smoked, and who owned some splendid horses. + +In very few words Nicholas bought seventeen picked stallions for six +thousand rubles--to serve, as he said, as samples of his remounts. +After dining and taking rather too much of the Hungarian wine, +Nicholas--having exchanged kisses with the landowner, with whom he was +already on the friendliest terms--galloped back over abominable roads, +in the brightest frame of mind, continually urging on the driver so as +to be in time for the governor's party. + +When he had changed, poured water over his head, and scented +himself, Nicholas arrived at the governor's rather late, but with +the phrase "better late than never" on his lips. + +It was not a ball, nor had dancing been announced, but everyone knew +that Catherine Petrovna would play valses and the ecossaise on the +clavichord and that there would be dancing, and so everyone had come +as to a ball. + +Provincial life in 1812 went on very much as usual, but with this +difference, that it was livelier in the towns in consequence of the +arrival of many wealthy families from Moscow, and as in everything +that went on in Russia at that time a special recklessness was +noticeable, an "in for a penny, in for a pound--who cares?" spirit, +and the inevitable small talk, instead of turning on the weather and +mutual acquaintances, now turned on Moscow, the army, and Napoleon. + +The society gathered together at the governor's was the best in +Voronezh. + +There were a great many ladies and some of Nicholas' Moscow +acquaintances, but there were no men who could at all vie with the +cavalier of St. George, the hussar remount officer, the good-natured +and well-bred Count Rostov. Among the men was an Italian prisoner, +an officer of the French army; and Nicholas felt that the presence +of that prisoner enhanced his own importance as a Russian hero. The +Italian was, as it were, a war trophy. Nicholas felt this, it seemed +to him that everyone regarded the Italian in the same light, and he +treated him cordially though with dignity and restraint. + +As soon as Nicholas entered in his hussar uniform, diffusing +around him a fragrance of perfume and wine, and had uttered the +words "better late than never" and heard them repeated several times +by others, people clustered around him; all eyes turned on him, and he +felt at once that he had entered into his proper position in the +province--that of a universal favorite: a very pleasant position, +and intoxicatingly so after his long privations. At posting +stations, at inns, and in the landowner's snuggery, maidservants had +been flattered by his notice, and here too at the governor's party +there were (as it seemed to Nicholas) an inexhaustible number of +pretty young women, married and unmarried, impatiently awaiting his +notice. The women and girls flirted with him and, from the first +day, the people concerned themselves to get this fine young +daredevil of an hussar married and settled down. Among these was the +governor's wife herself, who welcomed Rostov as a near relative and +called him "Nicholas." + +Catherine Petrovna did actually play valses and the ecossaise, and +dancing began in which Nicholas still further captivated the +provincial society by his agility. His particularly free manner of +dancing even surprised them all. Nicholas was himself rather surprised +at the way he danced that evening. He had never danced like that in +Moscow and would even have considered such a very free and easy manner +improper and in bad form, but here he felt it incumbent on him to +astonish them all by something unusual, something they would have to +accept as the regular thing in the capital though new to them in the +provinces. + +All the evening Nicholas paid attention to a blue-eyed, plump and +pleasing little blonde, the wife of one of the provincial officials. +With the naive conviction of young men in a merry mood that other +men's wives were created for them, Rostov did not leave the lady's +side and treated her husband in a friendly and conspiratorial style, +as if, without speaking of it, they knew how capitally Nicholas and +the lady would get on together. The husband, however, did not seem +to share that conviction and tried to behave morosely with Rostov. But +the latter's good-natured naivete was so boundless that sometimes even +he involuntarily yielded to Nicholas' good humor. Toward the end of +the evening, however, as the wife's face grew more flushed and +animated, the husband's became more and more melancholy and solemn, as +though there were but a given amount of animation between them and +as the wife's share increased the husband's diminished. + + + + + +CHAPTER V + + +Nicholas sat leaning slightly forward in an armchair, bending +closely over the blonde lady and paying her mythological compliments +with a smile that never left his face. Jauntily shifting the +position of his legs in their tight riding breeches, diffusing an odor +of perfume, and admiring his partner, himself, and the fine outlines +of his legs in their well-fitting Hessian boots, Nicholas told the +blonde lady that he wished to run away with a certain lady here in +Voronezh. + +"Which lady?" + +"A charming lady, a divine one. Her eyes" (Nicholas looked at his +partner) "are blue, her mouth coral and ivory; her figure" (he glanced +at her shoulders) "like Diana's...." + +The husband came up and sullenly asked his wife what she was talking +about. + +"Ah, Nikita Ivanych!" cried Nicholas, rising politely, and as if +wishing Nikita Ivanych to share his joke, he began to tell him of +his intention to elope with a blonde lady. + +The husband smiled gloomily, the wife gaily. The governor's +good-natured wife came up with a look of disapproval. + +"Anna Ignatyevna wants to see you, Nicholas," said she, +pronouncing the name so that Nicholas at once understood that Anna +Ignatyevna was a very important person. "Come, Nicholas! You know +you let me call you so?" + +"Oh, yes, Aunt. Who is she?" + +"Anna Ignatyevna Malvintseva. She has heard from her niece how you +rescued her... Can you guess?" + +"I rescued such a lot of them!" said Nicholas. + +"Her niece, Princess Bolkonskaya. She is here in Voronezh with her +aunt. Oho! How you blush. Why, are...?" + +"Not a bit! Please don't, Aunt!" + +"Very well, very well!... Oh, what a fellow you are!" + +The governor's wife led him up to a tall and very stout old lady +with a blue headdress, who had just finished her game of cards with +the most important personages of the town. This was Malvintseva, +Princess Mary's aunt on her mother's side, a rich, childless widow who +always lived in Voronezh. When Rostov approached her she was +standing settling up for the game. She looked at him and, screwing +up her eyes sternly, continued to upbraid the general who had won from +her. + +"Very pleased, mon cher," she then said, holding out her hand to +Nicholas. "Pray come and see me." + +After a few words about Princess Mary and her late father, whom +Malvintseva had evidently not liked, and having asked what Nicholas +knew of Prince Andrew, who also was evidently no favorite of hers, the +important old lady dismissed Nicholas after repeating her invitation +to come to see her. + +Nicholas promised to come and blushed again as he bowed. At the +mention of Princess Mary he experienced a feeling of shyness and +even of fear, which he himself did not understand. + +When he had parted from Malvintseva Nicholas wished to return to the +dancing, but the governor's little wife placed her plump hand on his +sleeve and, saying that she wanted to have a talk with him, led him to +her sitting room, from which those who were there immediately withdrew +so as not to be in her way. + +"Do you know, dear boy," began the governor's wife with a serious +expression on her kind little face, "that really would be the match +for you: would you like me to arrange it?" + +"Whom do you mean, Aunt?" asked Nicholas. + +"I will make a match for you with the princess. Catherine Petrovna +speaks of Lily, but I say, no--the princess! Do you want me to do +it? I am sure your mother will be grateful to me. What a charming girl +she is, really! And she is not at all so plain, either." + +"Not at all," replied Nicholas as if offended at the idea. "As +befits a soldier, Aunt, I don't force myself on anyone or refuse +anything," he said before he had time to consider what he was saying. + +"Well then, remember, this is not a joke!" + +"Of course not!" + +"Yes, yes," the governor's wife said as if talking to herself. "But, +my dear boy, among other things you are too attentive to the other, +the blonde. One is sorry for the husband, really...." + +"Oh no, we are good friends with him," said Nicholas in the +simplicity of his heart; it did not enter his head that a pastime so +pleasant to himself might not be pleasant to someone else. + +"But what nonsense I have been saying to the governor's wife!" +thought Nicholas suddenly at supper. "She will really begin to arrange +a match... and Soyna...?" And on taking leave of the governor's +wife, when she again smilingly said to him, "Well then, remember!" +he drew her aside. + +"But see here, to tell the truth, Aunt..." + +"What is it, my dear? Come, let's sit down here," said she. + +Nicholas suddenly felt a desire and need to tell his most intimate +thoughts (which he would not have told to his mother, his sister, or +his friend) to this woman who was almost a stranger. When he +afterwards recalled that impulse to unsolicited and inexplicable +frankness which had very important results for him, it seemed to +him--as it seems to everyone in such cases--that it was merely some +silly whim that seized him: yet that burst of frankness, together with +other trifling events, had immense consequences for him and for all +his family. + +"You see, Aunt, Mamma has long wanted me to marry an heiress, but +the very idea of marrying for money is repugnant to me." + +"Oh yes, I understand," said the governor's wife. + +"But Princess Bolkonskaya--that's another matter. I will tell you +the truth. In the first place I like her very much, I feel drawn to +her; and then, after I met her under such circumstances--so strangely, +the idea often occurred to me: 'This is fate.' Especially if you +remember that Mamma had long been thinking of it; but I had never +happened to meet her before, somehow it had always happened that we +did not meet. And as long as my sister Natasha was engaged to her +brother it was of course out of the question for me to think of +marrying her. And it must needs happen that I should meet her just +when Natasha's engagement had been broken off... and then +everything... So you see... I never told this to anyone and never +will, only to you." + +The governor's wife pressed his elbow gratefully. + +"You know Sonya, my cousin? I love her, and promised to marry her, +and will do so.... So you see there can be no question about-" said +Nicholas incoherently and blushing. + +"My dear boy, what a way to look at it! You know Sonya has nothing +and you yourself say your Papa's affairs are in a very bad way. And +what about your mother? It would kill her, that's one thing. And +what sort of life would it be for Sonya--if she's a girl with a heart? +Your mother in despair, and you all ruined.... No, my dear, you and +Sonya ought to understand that." + +Nicholas remained silent. It comforted him to hear these arguments. + +"All the same, Aunt, it is impossible," he rejoined with a sigh, +after a short pause. "Besides, would the princess have me? And +besides, she is now in mourning. How can one think of it!" + +"But you don't suppose I'm going to get you married at once? There +is always a right way of doing things," replied the governor's wife. + +"What a matchmaker you are, Aunt..." said Nicholas, kissing her +plump little hand. + + + + + +CHAPTER VI + + +On reaching Moscow after her meeting with Rostov, Princess Mary +had found her nephew there with his tutor, and a letter from Prince +Andrew giving her instructions how to get to her Aunt Malvintseva at +Voronezh. That feeling akin to temptation which had tormented her +during her father's illness, since his death, and especially since her +meeting with Rostov was smothered by arrangements for the journey, +anxiety about her brother, settling in a new house, meeting new +people, and attending to her nephew's education. She was sad. Now, +after a month passed in quiet surroundings, she felt more and more +deeply the loss of her father which was associated in her mind with +the ruin of Russia. She was agitated and incessantly tortured by the +thought of the dangers to which her brother, the only intimate +person now remaining to her, was exposed. She was worried too about +her nephew's education for which she had always felt herself +incompetent, but in the depths of her soul she felt at peace--a +peace arising from consciousness of having stifled those personal +dreams and hopes that had been on the point of awakening within her +and were related to her meeting with Rostov. + +The day after her party the governor's wife came to see +Malvintseva and, after discussing her plan with the aunt, remarked +that though under present circumstances a formal betrothal was, of +course, not to be thought of, all the same the young people might be +brought together and could get to know one another. Malvintseva +expressed approval, and the governor's wife began to speak of Rostov +in Mary's presence, praising him and telling how he had blushed when +Princess Mary's name was mentioned. But Princess Mary experienced a +painful rather than a joyful feeling--her mental tranquillity was +destroyed, and desires, doubts, self-reproach, and hopes reawoke. + +During the two days that elapsed before Rostov called, Princess Mary +continually thought of how she ought to behave to him. First she +decided not to come to the drawing room when he called to see her +aunt--that it would not be proper for her, in her deep mourning, to +receive visitors; then she thought this would be rude after what he +had done for her; then it occurred to her that her aunt and the +governor's wife had intentions concerning herself and Rostov--their +looks and words at times seemed to confirm this supposition--then +she told herself that only she, with her sinful nature, could think +this of them: they could not forget that situated as she was, while +still wearing deep mourning, such matchmaking would be an insult to +her and to her father's memory. Assuming that she did go down to see +him, Princess Mary imagined the words he would say to her and what she +would say to him, and these words sometimes seemed undeservedly cold +and then to mean too much. More than anything she feared lest the +confusion she felt might overwhelm her and betray her as soon as she +saw him. + +But when on Sunday after church the footman announced in the drawing +room that Count Rostov had called, the princess showed no confusion, +only a slight blush suffused her cheeks and her eyes lit up with a new +and radiant light. + +"You have met him, Aunt?" said she in a calm voice, unable herself +to understand that she could be outwardly so calm and natural. + +When Rostov entered the room, the princess dropped her eyes for an +instant, as if to give the visitor time to greet her aunt, and then +just as Nicholas turned to her she raised her head and met his look +with shining eyes. With a movement full of dignity and grace she +half rose with a smile of pleasure, held out her slender, delicate +hand to him, and began to speak in a voice in which for the first time +new deep womanly notes vibrated. Mademoiselle Bourienne, who was in +the drawing room, looked at Princess Mary in bewildered surprise. +Herself a consummate coquette, she could not have maneuvered better on +meeting a man she wished to attract. + +"Either black is particularly becoming to her or she really has +greatly improved without my having noticed it. And above all, what +tact and grace!" thought Mademoiselle Bourienne. + +Had Princess Mary been capable of reflection at that moment, she +would have been more surprised than Mademoiselle Bourienne at the +change that had taken place in herself. From the moment she recognized +that dear, loved face, a new life force took possession of her and +compelled her to speak and act apart from her own will. From the +time Rostov entered, her face became suddenly transformed. It was as +if a light had been kindled in a carved and painted lantern and the +intricate, skillful, artistic work on its sides, that previously +seemed dark, coarse, and meaningless, was suddenly shown up in +unexpected and striking beauty. For the first time all that pure, +spiritual, inward travail through which she had lived appeared on +the surface. All her inward labor, her dissatisfaction with herself, +her sufferings, her strivings after goodness, her meekness, love, +and self-sacrifice--all this now shone in those radiant eyes, in her +delicate smile, and in every trait of her gentle face. + +Rostov saw all this as clearly as if he had known her whole life. He +felt that the being before him was quite different from, and better +than, anyone he had met before, and above all better than himself. + +Their conversation was very simple and unimportant. They spoke of +the war, and like everyone else unconsciously exaggerated their sorrow +about it; they spoke of their last meeting--Nicholas trying to +change the subject--they talked of the governor's kind wife, of +Nicholas' relations, and of Princess Mary's. + +She did not talk about her brother, diverting the conversation as +soon as her aunt mentioned Andrew. Evidently she could speak of +Russia's misfortunes with a certain artificiality, but her brother was +too near her heart and she neither could nor would speak lightly of +him. Nicholas noticed this, as he noticed every shade of Princess +Mary's character with an observation unusual to him, and everything +confirmed his conviction that she was a quite unusual and +extraordinary being. Nicholas blushed and was confused when people +spoke to him about the princess (as she did when he was mentioned) and +even when he thought of her, but in her presence he felt quite at +ease, and said not at all what he had prepared, but what, quite +appropriately, occurred to him at the moment. + +When a pause occurred during his short visit, Nicholas, as is +usual when there are children, turned to Prince Andrew's little son, +caressing him and asking whether he would like to be an hussar. He +took the boy on his knee, played with him, and looked round at +Princess Mary. With a softened, happy, timid look she watched the +boy she loved in the arms of the man she loved. Nicholas also +noticed that look and, as if understanding it, flushed with pleasure +and began to kiss the boy with good natured playfulness. + +As she was in mourning Princess Mary did not go out into society, +and Nicholas did not think it the proper thing to visit her again; but +all the same the governor's wife went on with her matchmaking, passing +on to Nicholas the flattering things Princess Mary said of him and +vice versa, and insisting on his declaring himself to Princess Mary. +For this purpose she arranged a meeting between the young people at +the bishop's house before Mass. + +Though Rostov told the governeor's wife that he would not make any +declaration to Princess Mary, he promised to go. + +As at Tilsit Rostov had not allowed himself to doubt that what +everybody considered right was right, so now, after a short but +sincere struggle between his effort to arrange his life by his own +sense of justice, and in obedient submission to circumstances, he +chose the latter and yielded to the power he felt irresistibly +carrying him he knew not where. He knew that after his promise to +Sonya it would be what he deemed base to declare his feelings to +Princess Mary. And he knew that he would never act basely. But he also +knew (or rather felt at the bottom of his heart) that by resigning +himself now to the force of circumstances and to those who were +guiding him, he was not only doing nothing wrong, but was doing +something very important--more important than anything he had ever +done in his life. + +After meeting Princess Mary, though the course of his life went on +externally as before, all his former amusements lost their charm for +him and he often thought about her. But he never thought about her +as he had thought of all the young ladies without exception whom he +had met in society, nor as he had for a long time, and at one time +rapturously, thought about Sonya. He had pictured each of those +young ladies as almost all honest-hearted young men do, that is, as +a possible wife, adapting her in his imagination to all the conditions +of married life: a white dressing gown, his wife at the tea table, his +wife's carriage, little ones, Mamma and Papa, their relations to +her, and so on--and these pictures of the future had given him +pleasure. But with Princess Mary, to whom they were trying to get +him engaged, he could never picture anything of future married life. +If he tried, his pictures seemed incongruous and false. It made him +afraid. + + + + + +CHAPTER VII + + +The dreadful news of the battle of Borodino, of our losses in killed +and wounded, and the still more terrible news of the loss of Moscow +reached Voronezh in the middle of September. Princess Mary, having +learned of her brother's wound only from the Gazette and having no +definite news of him, prepared (so Nicholas heard, he had not seen her +again himself) to set off in search of Prince Andrew. + +When he received the news of the battle of Borodino and the +abandonment of Moscow, Rostov was not seized with despair, anger, +the desire for vengeance, or any feeling of that kind, but +everything in Voronezh suddenly seemed to him dull and tiresome, and +he experienced an indefinite feeling of shame and awkwardness. The +conversations he heard seemed to him insincere; he did not know how to +judge all these affairs and felt that only in the regiment would +everything again become clear to him. He made haste to finish buying +the horses, and often became unreasonably angry with his servant and +squadron quartermaster. + +A few days before his departure a special thanksgiving, at which +Nicholas was present, was held in the cathedral for the Russian +victory. He stood a little behind the governor and held himself with +military decorum through the service, meditating on a great variety of +subjects. When the service was over the governor's wife beckoned him +to her. + +"Have you seen the princess?" she asked, indicating with a +movement of her head a lady standing on the opposite side, beyond +the choir. + +Nicholas immediately recognized Princess Mary not so much by the +profile he saw under her bonnet as by the feeling of solicitude, +timidity, and pity that immediately overcame him. Princess Mary, +evidently engrossed by her thoughts, was crossing herself for the last +time before leaving the church. + +Nicholas looked at her face with surprise. It was the same face he +had seen before, there was the same general expression of refined, +inner, spiritual labor, but now it was quite differently lit up. There +was a pathetic expression of sorrow, prayer, and hope in it. As had +occurred before when she was present, Nicholas went up to her +without waiting to be prompted by the governor's wife and not asking +himself whether or not it was right and proper to address her here +in church, and told her he had heard of her trouble and sympathized +with his whole soul. As soon as she heard his voice a vivid glow +kindled in her face, lighting up both her sorrow and her joy. + +"There is one thing I wanted to tell you, Princess," said Rostov. +"It is that if your brother, Prince Andrew Nikolievich, were not +living, it would have been at once announced in the Gazette, as he +is a colonel." + +The princess looked at him, not grasping what he was saying, but +cheered by the expression of regretful sympathy on his face. + +"And I have known so many cases of a splinter wound" (the Gazette +said it was a shell) "either proving fatal at once or being very +slight," continued Nicholas. "We must hope for the best, and I am +sure..." + +Princess Mary interrupted him. + +"Oh, that would be so dread..." she began and, prevented by +agitation from finishing, she bent her head with a movement as +graceful as everything she did in his presence and, looking up at +him gratefully, went out, following her aunt. + +That evening Nicholas did not go out, but stayed at home to settle +some accounts with the horse dealers. When he had finished that +business it was already too late to go anywhere but still too early to +go to bed, and for a long time he paced up and down the room, +reflecting on his life, a thing he rarely did. + +Princess Mary had made an agreeable impression on him when he had +met her in Smolensk province. His having encountered her in such +exceptional circumstances, and his mother having at one time mentioned +her to him as a good match, had drawn his particular attention to her. +When he met her again in Voronezh the impression she made on him was +not merely pleasing but powerful. Nicholas had been struck by the +peculiar moral beauty he observed in her at this time. He was, +however, preparing to go away and it had not entered his head to +regret that he was thus depriving himself of chances of meeting her. +But that day's encounter in church had, he felt, sunk deeper than +was desirable for his peace of mind. That pale, sad, refined face, +that radiant look, those gentle graceful gestures, and especially +the deep and tender sorrow expressed in all her features agitated +him and evoked his sympathy. In men Rostov could not bear to see the +expression of a higher spiritual life (that was why he did not like +Prince Andrew) and he referred to it contemptuously as philosophy +and dreaminess, but in Princess Mary that very sorrow which revealed +the depth of a whole spiritual world foreign to him was an +irresistible attraction. + +"She must be a wonderful woman. A real angel!" he said to himself. +"Why am I not free? Why was I in such a hurry with Sonya?" And he +involuntarily compared the two: the lack of spirituality in the one +and the abundance of it in the other--a spirituality he himself lacked +and therefore valued most highly. He tried to picture what would +happen were he free. How he would propose to her and how she would +become his wife. But no, he could not imagine that. He felt awed, +and no clear picture presented itself to his mind. He had long ago +pictured to himself a future with Sonya, and that was all clear and +simple just because it had all been thought out and he knew all +there was in Sonya, but it was impossible to picture a future with +Princess Mary, because he did not understand her but simply loved her. + +Reveries about Sonya had had something merry and playful in them, +but to dream of Princess Mary was always difficult and a little +frightening. + +"How she prayed!" he thought. "It was plain that her whole soul +was in her prayer. Yes, that was the prayer that moves mountains, +and I am sure her prayer will be answered. Why don't I pray for what I +want?" he suddenly thought. "What do I want? To be free, released from +Sonya... She was right," he thought, remembering what the governor's +wife had said: "Nothing but misfortune can come of marrying Sonya. +Muddles, grief for Mamma... business difficulties... muddles, terrible +muddles! Besides, I don't love her--not as I should. O, God! release +me from this dreadful, inextricable position!" he suddenly began to +pray. "Yes, prayer can move mountains, but one must have faith and not +pray as Natasha and I used to as children, that the snow might turn +into sugar--and then run out into the yard to see whether it had +done so. No, but I am not praying for trifles now," he thought as he +put his pipe down in a corner, and folding his hands placed himself +before the icon. Softened by memories of Princess Mary he began to +pray as he had not done for a long time. Tears were in his eyes and in +his throat when the door opened and Lavrushka came in with some +papers. + +"Blockhead! Why do you come in without being called?" cried +Nicholas, quickly changing his attitude. + +"From the governor," said Lavrushka in a sleepy voice. "A courier +has arrived and there's a letter for you." + +"Well, all right, thanks. You can go!" + +Nicholas took the two letters, one of which was from his mother +and the other from Sonya. He recognized them by the handwriting and +opened Sonya's first. He had read only a few lines when he turned pale +and his eyes opened wide with fear and joy. + +"No, it's not possible!" he cried aloud. + +Unable to sit still he paced up and down the room holding the letter +and reading it. He glanced through it, then read it again, and then +again, and standing still in the middle of the room he raised his +shoulders, stretching out his hands, with his mouth wide open and +his eyes fixed. What he had just been praying for with confidence that +God would hear him had come to pass; but Nicholas was as much +astonished as if it were something extraordinary and unexpected, and +as if the very fact that it had happened so quickly proved that it had +not come from God to whom he had prayed, but by some ordinary +coincidence. + +This unexpected and, as it seemed to Nicholas, quite voluntary +letter from Sonya freed him from the knot that fettered him and from +which there had seemed no escape. She wrote that the last +unfortunate events--the loss of almost the whole of the Rostovs' +Moscow property--and the countess' repeatedly expressed wish that +Nicholas should marry Princess Bolkonskaya, together with his +silence and coldness of late, had all combined to make her decide to +release him from his promise and set him completely free. + + +It would be too painful to me to think that I might be a cause of +sorrow or discord in the family that has been so good to me (she +wrote), and my love has no aim but the happiness of those I love; +so, Nicholas, I beg you to consider yourself free, and to be assured +that, in spite of everything, no one can love you more than does + +Your Sonya + + +Both letters were written from Troitsa. The other, from the +countess, described their last days in Moscow, their departure, the +fire, and the destruction of all their property. In this letter the +countess also mentioned that Prince Andrew was among the wounded +traveling with them; his state was very critical, but the doctor +said there was now more hope. Sonya and Natasha were nursing him. + +Next day Nicholas took his mother's letter and went to see +Princess Mary. Neither he nor she said a word about what "Natasha +nursing him" might mean, but thanks to this letter Nicholas suddenly +became almost as intimate with the princess as if they were relations. + +The following day he saw Princess Mary off on her journey to +Yaroslavl, and a few days later left to rejoin his regiment. + + + + + +CHAPTER VIII + + +Sonya's letter written from Troitsa, which had come as an answer +to Nicholas' prayer, was prompted by this: the thought of getting +Nicholas married to an heiress occupied the old countess' mind more +and more. She knew that Sonya was the chief obstacle to this +happening, and Sonya's life in the countess' house had grown harder +and harder, especially after they had received a letter from +Nicholas telling of his meeting with Princess Mary in Bogucharovo. The +countess let no occasion slip of making humiliating or cruel allusions +to Sonya. + +But a few days before they left Moscow, moved and excited by all +that was going on, she called Sonya to her and, instead of reproaching +and making demands on her, tearfully implored her to sacrifice herself +and repay all that the family had done for her by breaking off her +engagement with Nicholas. + +"I shall not be at peace till you promise me this." + +Sonya burst into hysterical tears and replied through her sobs +that she would do anything and was prepared for anything, but gave +no actual promise and could not bring herself to decide to do what was +demanded of her. She must sacrifice herself for the family that had +reared and brought her up. To sacrifice herself for others was Sonya's +habit. Her position in the house was such that only by sacrifice could +she show her worth, and she was accustomed to this and loved doing it. +But in all her former acts of self-sacrifice she had been happily +conscious that they raised her in her own esteem and in that of +others, and so made her more worthy of Nicholas whom she loved more +than anything in the world. But now they wanted her to sacrifice the +very thing that constituted the whole reward for her self-sacrifice +and the whole meaning of her life. And for the first time she felt +bitterness against those who had been her benefactors only to +torture her the more painfully; she felt jealous of Natasha who had +never experienced anything of this sort, had never needed to sacrifice +herself, but made others sacrifice themselves for her and yet was +beloved by everybody. And for the first time Sonya felt that out of +her pure, quiet love for Nicholas a passionate feeling was beginning +to grow up which was stronger than principle, virtue, or religion. +Under the influence of this feeling Sonya, whose life of dependence +had taught her involuntarily to be secretive, having answered the +countess in vague general terms, avoided talking with her and resolved +to wait till she should see Nicholas, not in order to set him free but +on the contrary at that meeting to bind him to her forever. + +The bustle and terror of the Rostovs' last days in Moscow stifled +the gloomy thoughts that oppressed Sonya. She was glad to find +escape from them in practical activity. But when she heard of Prince +Andrew's presence in their house, despite her sincere pity for him and +for Natasha, she was seized by a joyful and superstitious feeling that +God did not intend her to be separated from Nicholas. She knew that +Natasha loved no one but Prince Andrew and had never ceased to love +him. She knew that being thrown together again under such terrible +circumstances they would again fall in love with one another, and that +Nicholas would then not be able to marry Princess Mary as they would +be within the prohibited degrees of affinity. Despite all the terror +of what had happened during those last days and during the first +days of their journey, this feeling that Providence was intervening in +her personal affairs cheered Sonya. + +At the Troitsa monastery the Rostovs first broke their journey for a +whole day. + +Three large rooms were assigned to them in the monastery hostelry, +one of which was occupied by Prince Andrew. The wounded man was much +better that day and Natasha was sitting with him. In the next room sat +the count and countess respectfully conversing with the prior, who was +calling on them as old acquaintances and benefactors of the monastery. +Sonya was there too, tormented by curiosity as to what Prince Andrew +and Natasha were talking about. She heard the sound of their voices +through the door. That door opened and Natasha came out, looking +excited. Not noticing the monk, who had risen to greet her and was +drawing back the wide sleeve on his right arm, she went up to Sonya +and took her hand. + +"Natasha, what are you about? Come here!" said the countess. + +Natasha went up to the monk for his blessing, and advised her to +pray for aid to God and His saint. + +As soon as the prior withdrew, Natasha took her friend by the hand +and went with her into the unoccupied room. + +"Sonya, will he live?" she asked. "Sonya, how happy I am, and how +unhappy!... Sonya, dovey, everything is as it used to be. If only he +lives! He cannot... because... because... of" and Natasha burst into +tears. + +"Yes! I knew it! Thank God!" murmured Sonya. "He will live." + +Sonya was not less agitated than her friend by the latter's fear and +grief and by her own personal feelings which she shared with no one. +Sobbing, she kissed and comforted Natasha. "If only he lives!" she +thought. Having wept, talked, and wiped away their tears, the two +friends went together to Prince Andrew's door. Natasha opened it +cautiously and glanced into the room, Sonya standing beside her at the +half-open door. + +Prince Andrew was lying raised high on three pillows. His pale +face was calm, his eyes closed, and they could see his regular +breathing. + +"O, Natasha!" Sonya suddenly almost screamed, catching her +companion's arm and stepping back from the door. + +"What? What is it?" asked Natasha. + +"It's that, that..." said Sonya, with a white face and trembling +lips. + +Natasha softly closed the door and went with Sonya to the window, +not yet understanding what the latter was telling her. + +"You remember," said Sonya with a solemn and frightened +expression. "You remember when I looked in the mirror for you... at +Otradnoe at Christmas? Do you remember what I saw?" + +"Yes, yes!" cried Natasha opening her eyes wide, and vaguely +recalling that Sonya had told her something about Prince Andrew whom +she had seen lying down. + +"You remember?" Sonya went on. "I saw it then and told everybody, +you and Dunyasha. I saw him lying on a bed," said she, making a +gesture with her hand and a lifted finger at each detail, "and that he +had his eyes closed and was covered just with a pink quilt, and that +his hands were folded," she concluded, convincing herself that the +details she had just seen were exactly what she had seen in the +mirror. + +She had in fact seen nothing then but had mentioned the first +thing that came into her head, but what she had invented then seemed +to her now as real as any other recollection. She not only +remembered what she had then said--that he turned to look at her and +smiled and was covered with something red--but was firmly convinced +that she had then seen and said that he was covered with a pink +quilt and that his eyes were closed. + +"Yes, yes, it really was pink!" cried Natasha, who now thought she +too remembered the word pink being used, and saw in this the most +extraordinary and mysterious part of the prediction. + +"But what does it mean?" she added meditatively. + +"Oh, I don't know, it is all so strange," replied Sonya, clutching +at her head. + +A few minutes later Prince Andrew rang and Natasha went to him, +but Sonya, feeling unusually excited and touched, remained at the +window thinking about the strangeness of what had occurred. + + +They had an opportunity that day to send letters to the army, and +the countess was writing to her son. + +"Sonya!" said the countess, raising her eyes from her letter as +her niece passed, "Sonya, won't you write to Nicholas?" She spoke in a +soft, tremulous voice, and in the weary eyes that looked over her +spectacles Sonya read all that the countess meant to convey with these +words. Those eyes expressed entreaty, shame at having to ask, fear +of a refusal, and readiness for relentless hatred in case of such +refusal. + +Sonya went up to the countess and, kneeling down, kissed her hand. + +"Yes, Mamma, I will write," said she. + +Sonya was softened, excited, and touched by all that had occurred +that day, especially by the mysterious fulfillment she had just seen +of her vision. Now that she knew that the renewal of Natasha's +relations with Prince Andrew would prevent Nicholas from marrying +Princess Mary, she was joyfully conscious of a return of that +self-sacrificing spirit in which she was accustomed to live and +loved to live. So with a joyful consciousness of performing a +magnanimous deed--interrupted several times by the tears that dimmed +her velvety black eyes--she wrote that touching letter the arrival +of which had so amazed Nicholas. + + + + + +CHAPTER IX + + +The officer and soldiers who had arrested Pierre treated him with +hostility but yet with respect, in the guardhouse to which he was +taken. In their attitude toward him could still be felt both +uncertainty as to who he might be--perhaps a very important person- +and hostility as a result of their recent personal conflict with him. + +But when the guard was relieved next morning, Pierre felt that for +the new guard--both officers and men--he was not as interesting as +he had been to his captors; and in fact the guard of the second day +did not recognize in this big, stout man in a peasant coat the +vigorous person who had fought so desperately with the marauder and +the convoy and had uttered those solemn words about saving a child; +they saw in him only No. 17 of the captured Russians, arrested and +detained for some reason by order of the Higher Command. If they +noticed anything remarkable about Pierre, it was only his unabashed, +meditative concentration and thoughtfulness, and the way he spoke +French, which struck them as surprisingly good. In spite of this he +was placed that day with the other arrested suspects, as the +separate room he had occupied was required by an officer. + +All the Russians confined with Pierre were men of the lowest class +and, recognizing him as a gentleman, they all avoided him, more +especially as he spoke French. Pierre felt sad at hearing them +making fun of him. + +That evening he learned that all these prisoners (he, probably, +among them) were to be tried for incendiarism. On the third day he was +taken with the others to a house where a French general with a white +mustache sat with two colonels and other Frenchmen with scarves on +their arms. With the precision and definiteness customary in +addressing prisoners, and which is supposed to preclude human frailty, +Pierre like the others was questioned as to who he was, where he had +been, with what object, and so on. + +These questions, like questions put at trials generally, left the +essence of the matter aside, shut out the possibility of that +essence's being revealed, and were designed only to form a channel +through which the judges wished the answers of the accused to flow +so as to lead to the desired result, namely a conviction. As soon as +Pierre began to say anything that did not fit in with that aim, the +channel was removed and the water could flow to waste. Pierre felt, +moreover, what the accused always feel at their trial, perplexity as +to why these questions were put to him. He had a feeling that it was +only out of condescension or a kind of civility that this device of +placing a channel was employed. He knew he was in these men's power, +that only by force had they brought him there, that force alone gave +them the right to demand answers to their questions, and that the sole +object of that assembly was to inculpate him. And so, as they had +the power and wish to inculpate him, this expedient of an inquiry +and trial seemed unnecessary. It was evident that any answer would +lead to conviction. When asked what he was doing when he was arrested, +Pierre replied in a rather tragic manner that he was restoring to +its parents a child he had saved from the flames. Why had he fought +the marauder? Pierre answered that he "was protecting a woman," and +that "to protect a woman who was being insulted was the duty of +every man; that..." They interrupted him, for this was not to the +point. Why was he in the yard of a burning house where witnesses had +seen him? He replied that he had gone out to see what was happening in +Moscow. Again they interrupted him: they had not asked where he was +going, but why he was found near the fire? Who was he? they asked, +repeating their first question, which he had declined to answer. Again +he replied that he could not answer it. + +"Put that down, that's bad... very bad," sternly remarked the +general with the white mustache and red flushed face. + + +On the fourth day fires broke out on the Zubovski rampart. + +Pierre and thirteen others were moved to the coach house of a +merchant's house near the Crimean bridge. On his way through the +streets Pierre felt stifled by the smoke which seemed to hang over the +whole city. Fires were visible on all sides. He did not then realize +the significance of the burning of Moscow, and looked at the fires +with horror. + +He passed four days in the coach house near the Crimean bridge and +during that time learned, from the talk of the French soldiers, that +all those confined there were awaiting a decision which might come any +day from the marshal. What marshal this was, Pierre could not learn +from the soldiers. Evidently for them "the marshal" represented a very +high and rather mysterious power. + +These first days, before the eighth of September when the +prisoners were had up for a second examination, were the hardest of +all for Pierre. + + + + + +CHAPTER X + + +On the eighth of September an officer--a very important one +judging by the respect the guards showed him--entered the coach +house where the prisoners were. This officer, probably someone on +the staff, was holding a paper in his hand, and called over all the +Russians there, naming Pierre as "the man who does not give his name." +Glancing indolently and indifferently at all the prisoners, he ordered +the officer in charge to have them decently dressed and tidied up +before taking them to the marshal. An hour later a squad of soldiers +arrived and Pierre with thirteen others was led to the Virgin's Field. +It was a fine day, sunny after rain, and the air was unusually pure. +The smoke did not hang low as on the day when Pierre had been taken +from the guardhouse on the Zubovski rampart, but rose through the pure +air in columns. No flames were seen, but columns of smoke rose on +all sides, and all Moscow as far as Pierre could see was one vast +charred ruin. On all sides there were waste spaces with only stoves +and chimney stacks still standing, and here and there the blackened +walls of some brick houses. Pierre gazed at the ruins and did not +recognize districts he had known well. Here and there he could see +churches that had not been burned. The Kremlin, which was not +destroyed, gleamed white in the distance with its towers and the +belfry of Ivan the Great. The domes of the New Convent of the Virgin +glittered brightly and its bells were ringing particularly clearly. +These bells reminded Pierre that it was Sunday and the feast of the +Nativity of the Virgin. But there seemed to be no one to celebrate +this holiday: everywhere were blackened ruins, and the few Russians to +be seen were tattered and frightened people who tried to hide when +they saw the French. + +It was plain that the Russian nest was ruined and destroyed, but +in place of the Russian order of life that had been destroyed, +Pierre unconsciously felt that a quite different, firm, French order +had been established over this ruined nest. He felt this in the +looks of the soldiers who, marching in regular ranks briskly and +gaily, were escorting him and the other criminals; he felt it in the +looks of an important French official in a carriage and pair driven by +a soldier, whom they met on the way. He felt it in the merry sounds of +regimental music he heard from the left side of the field, and felt +and realized it especially from the list of prisoners the French +officer had read out when he came that morning. Pierre had been +taken by one set of soldiers and led first to one and then to +another place with dozens of other men, and it seemed that they +might have forgotten him, or confused him with the others. But no: the +answers he had given when questioned had come back to him in his +designation as "the man who does not give his name," and under that +appellation, which to Pierre seemed terrible, they were now leading +him somewhere with unhesitating assurance on their faces that he and +all the other prisoners were exactly the ones they wanted and that +they were being taken to the proper place. Pierre felt himself to be +an insignificant chip fallen among the wheels of a machine whose +action he did not understand but which was working well. + +He and the other prisoners were taken to the right side of the +Virgin's Field, to a large white house with an immense garden not +far from the convent. This was Prince Shcherbitov's house, where +Pierre had often been in other days, and which, as he learned from the +talk of the soldiers, was now occupied by the marshal, the Duke of +Eckmuhl (Davout). + +They were taken to the entrance and led into the house one by one. +Pierre was the sixth to enter. He was conducted through a glass +gallery, an anteroom, and a hall, which were familiar to him, into a +long low study at the door of which stood an adjutant. + +Davout, spectacles on nose, sat bent over a table at the further end +of the room. Pierre went close up to him, but Davout, evidently +consulting a paper that lay before him, did not look up. Without +raising his eyes, he said in a low voice: + +"Who are you?" + +Pierre was silent because he was incapable of uttering a word. To +him Davout was not merely a French general, but a man notorious for +his cruelty. Looking at his cold face, as he sat like a stern +schoolmaster who was prepared to wait awhile for an answer, Pierre +felt that every instant of delay might cost him his life; but he did +not know what to say. He did not venture to repeat what he had said at +his first examination, yet to disclose his rank and position was +dangerous and embarrassing. So he was silent. But before he had +decided what to do, Davout raised his head, pushed his spectacles back +on his forehead, screwed up his eyes, and looked intently at him. + +"I know that man," he said in a cold, measured tone, evidently +calculated to frighten Pierre. + +The chill that had been running down Pierre's back now seized his +head as in a vise. + +"You cannot know me, General, I have never seen you..." + +"He is a Russian spy," Davout interrupted, addressing another +general who was present, but whom Pierre had not noticed. + +Davout turned away. With an unexpected reverberation in his voice +Pierre rapidly began: + +"No, monseigneur," he said, suddenly remembering that Davout was a +duke. "No, monseigneur, you cannot have known me. I am a militia +officer and have not quitted Moscow." + +"Your name?" asked Davout. + +"Bezukhov." + +"What proof have I that you are not lying?" + +"Monseigneur!" exclaimed Pierre, not in an offended but in a +pleading voice. + +Davout looked up and gazed intently at him. For some seconds they +looked at one another, and that look saved Pierre. Apart from +conditions of war and law, that look established human relations +between the two men. At that moment an immense number of things passed +dimly through both their minds, and they realized that they were +both children of humanity and were brothers. + +At the first glance, when Davout had only raised his head from the +papers where human affairs and lives were indicated by numbers, Pierre +was merely a circumstance, and Davout could have shot him without +burdening his conscience with an evil deed, but now he saw in him a +human being. He reflected for a moment. + +"How can you show me that you are telling the truth?" said Davout +coldly. + +Pierre remembered Ramballe, and named him and his regiment and the +street where the house was. + +"You are not what you say," returned Davout. + +In a trembling, faltering voice Pierre began adducing proofs of +the truth of his statements. + +But at that moment an adjutant entered and reported something to +Davout. + +Davout brightened up at the news the adjutant brought, and began +buttoning up his uniform. It seemed that he had quite forgotten +Pierre. + +When the adjutant reminded him of the prisoner, he jerked his head +in Pierre's direction with a frown and ordered him to be led away. But +where they were to take him Pierre did not know: back to the coach +house or to the place of execution his companions had pointed out to +him as they crossed the Virgin's Field. + +He turned his head and saw that the adjutant was putting another +question to Davout. + +"Yes, of course!" replied Davout, but what this "yes" meant, +Pierre did not know. + +Pierre could not afterwards remember how he went, whether it was +far, or in which direction. His faculties were quite numbed, he was +stupefied, and noticing nothing around him went on moving his legs +as the others did till they all stopped and he stopped too. The only +thought in his mind at that time was: who was it that had really +sentenced him to death? Not the men on the commission that had first +examined him--not one of them wished to or, evidently, could have done +it. It was not Davout, who had looked at him in so human a way. In +another moment Davout would have realized that he was doing wrong, but +just then the adjutant had come in and interrupted him. The +adjutant, also, had evidently had no evil intent though he might +have refrained from coming in. Then who was executing him, killing +him, depriving him of life--him, Pierre, with all his memories, +aspirations, hopes, and thoughts? Who was doing this? And Pierre +felt that it was no one. + +It was a system--a concurrence of circumstances. + +A system of some sort was killing him--Pierre--depriving him of +life, of everything, annihilating him. + + + + + +CHAPTER XI + + +From Prince Shcherbatov's house the prisoners were led straight down +the Virgin's Field, to the left of the nunnery, as far as a kitchen +garden in which a post had been set up. Beyond that post a fresh pit +had been dug in the ground, and near the post and the pit a large +crowd stood in a semicircle. The crowd consisted of a few Russians and +many of Napoleon's soldiers who were not on duty--Germans, Italians, +and Frenchmen, in a variety of uniforms. To the right and left of +the post stood rows of French troops in blue uniforms with red +epaulets and high boots and shakos. + +The prisoners were placed in a certain order, according to the +list (Pierre was sixth), and were led to the post. Several drums +suddenly began to beat on both sides of them, and at that sound Pierre +felt as if part of his soul had been torn away. He lost the power of +thinking or understanding. He could only hear and see. And he had only +one wish--that the frightful thing that had to happen should happen +quickly. Pierre looked round at his fellow prisoners and scrutinized +them. + +The two first were convicts with shaven heads. One was tall and +thin, the other dark, shaggy, and sinewy, with a flat nose. The +third was a domestic serf, about forty-five years old, with grizzled +hair and a plump, well-nourished body. The fourth was a peasant, a +very handsome man with a broad, light-brown beard and black eyes. +The fifth was a factory hand, a thin, sallow-faced lad of eighteen +in a loose coat. + +Pierre heard the French consulting whether to shoot them +separately or two at a time. "In couples," replied the officer in +command in a calm voice. There was a stir in the ranks of the soldiers +and it was evident that they were all hurrying--not as men hurry to do +something they understand, but as people hurry to finish a necessary +but unpleasant and incomprehensible task. + +A French official wearing a scarf came up to the right of the row of +prisoners and read out the sentence in Russian and in French. + +Then two pairs of Frenchmen approached the criminals and at the +officer's command took the two convicts who stood first in the row. +The convicts stopped when they reached the post and, while sacks +were being brought, looked dumbly around as a wounded beast looks at +an approaching huntsman. One crossed himself continually, the other +scratched his back and made a movement of the lips resembling a smile. +With hurried hands the soldiers blindfolded them, drawing the sacks +over their heads, and bound them to the post. + +Twelve sharpshooters with muskets stepped out of the ranks with a +firm regular tread and halted eight paces from the post. Pierre turned +away to avoid seeing what was going to happen. Suddenly a crackling, +rolling noise was heard which seemed to him louder than the most +terrific thunder, and he looked round. There was some smoke, and the +Frenchmen were doing something near the pit, with pale faces and +trembling hands. Two more prisoners were led up. In the same way and +with similar looks, these two glanced vainly at the onlookers with +only a silent appeal for protection in their eyes, evidently unable to +understand or believe what was going to happen to them. They could not +believe it because they alone knew what their life meant to them, +and so they neither understood nor believed that it could be taken +from them. + +Again Pierre did not wish to look and again turned away; but again +the sound as of a frightful explosion struck his ear, and at the +same moment he saw smoke, blood, and the pale, scared faces of the +Frenchmen who were again doing something by the post, their +trembling hands impeding one another. Pierre, breathing heavily, +looked around as if asking what it meant. The same question was +expressed in all the looks that met his. + +On the faces of all the Russians and of the French soldiers and +officers without exception, he read the same dismay, horror, and +conflict that were in his own heart. "But who, after all, is doing +this? They are all suffering as I am. Who then is it? Who?" flashed +for an instant through his mind. + +"Sharpshooters of the 86th, forward!" shouted someone. The fifth +prisoner, the one next to Pierre, was led away--alone. Pierre did +not understand that he was saved, that he and the rest had been +brought there only to witness the execution. With ever-growing horror, +and no sense of joy or relief, he gazed at what was taking place. +The fifth man was the factory lad in the loose cloak. The moment +they laid hands on him he sprang aside in terror and clutched at +Pierre. (Pierre shuddered and shook himself free.) The lad was +unable to walk. They dragged him along, holding him up under the arms, +and he screamed. When they got him to the post he grew quiet, as if he +suddenly understood something. Whether he understood that screaming +was useless or whether he thought it incredible that men should kill +him, at any rate he took his stand at the post, waiting to be +blindfolded like the others, and like a wounded animal looked around +him with glittering eyes. + +Pierre was no longer able to turn away and close his eyes. His +curiosity and agitation, like that of the whole crowd, reached the +highest pitch at this fifth murder. Like the others this fifth man +seemed calm; he wrapped his loose cloak closer and rubbed one bare +foot with the other. + +When they began to blindfold him he himself adjusted the knot +which hurt the back of his head; then when they propped him against +the bloodstained post, he leaned back and, not being comfortable in +that position, straightened himself, adjusted his feet, and leaned +back again more comfortably. Pierre did not take his eyes from him and +did not miss his slightest movement. + +Probably a word of command was given and was followed by the reports +of eight muskets; but try as he would Pierre could not afterwards +remember having heard the slightest sound of the shots. He only saw +how the workman suddenly sank down on the cords that held him, how +blood showed itself in two places, how the ropes slackened under the +weight of the hanging body, and how the workman sat down, his head +hanging unnaturally and one leg bent under him. Pierre ran up to the +post. No one hindered him. Pale, frightened people were doing +something around the workman. The lower jaw of an old Frenchman with a +thick mustache trembled as he untied the ropes. The body collapsed. +The soldiers dragged it awkwardly from the post and began pushing it +into the pit. + +They all plainly and certainly knew that they were criminals who +must hide the traces of their guilt as quickly as possible. + +Pierre glanced into the pit and saw that the factory lad was lying +with his knees close up to his head and one shoulder higher than the +other. That shoulder rose and fell rhythmically and convulsively, +but spadefuls of earth were already being thrown over the whole +body. One of the soldiers, evidently suffering, shouted gruffly and +angrily at Pierre to go back. But Pierre did not understand him and +remained near the post, and no one drove him away. + +When the pit had been filled up a command was given. Pierre was +taken back to his place, and the rows of troops on both sides of the +post made a half turn and went past it at a measured pace. The +twenty-four sharpshooters with discharged muskets, standing in the +center of the circle, ran back to their places as the companies passed +by. + +Pierre gazed now with dazed eyes at these sharpshooters who ran in +couples out of the circle. All but one rejoined their companies. +This one, a young soldier, his face deadly pale, his shako pushed +back, and his musket resting on the ground, still stood near the pit +at the spot from which he had fired. He swayed like a drunken man, +taking some steps forward and back to save himself from falling. An +old, noncommissioned officer ran out of the ranks and taking him by +the elbow dragged him to his company. The crowd of Russians and +Frenchmen began to disperse. They all went away silently and with +drooping heads. + +"That will teach them to start fires," said one of the Frenchmen. + +Pierre glanced round at the speaker and saw that it was a soldier +who was trying to find some relief after what had been done, but was +not able to do so. Without finishing what he had begun to say he +made a hopeless movement with his arm and went away. + + + + + +CHAPTER XII + + +After the execution Pierre was separated from the rest of the +prisoners and placed alone in a small, ruined, and befouled church. + +Toward evening a noncommissioned officer entered with two soldiers +and told him that he had been pardoned and would now go to the +barracks for the prisoners of war. Without understanding what was said +to him, Pierre got up and went with the soldiers. They took him to the +upper end of the field, where there were some sheds built of charred +planks, beams, and battens, and led him into one of them. In the +darkness some twenty different men surrounded Pierre. He looked at +them without understanding who they were, why they were there, or what +they wanted of him. He heard what they said, but did not understand +the meaning of the words and made no kind of deduction from or +application of them. He replied to questions they put to him, but +did not consider who was listening to his replies, nor how they +would understand them. He looked at their faces and figures, but +they all seemed to him equally meaningless. + +From the moment Pierre had witnessed those terrible murders +committed by men who did not wish to commit them, it was as if the +mainspring of his life, on which everything depended and which made +everything appear alive, had suddenly been wrenched out and everything +had collapsed into a heap of meaningless rubbish. Though he did not +acknowledge it to himself, his faith in the right ordering of the +universe, in humanity, in his own soul, and in God, had been +destroyed. He had experienced this before, but never so strongly as +now. When similar doubts had assailed him before, they had been the +result of his own wrongdoing, and at the bottom of his heart he had +felt that relief from his despair and from those doubts was to be +found within himself. But now he felt that the universe had crumbled +before his eyes and only meaningless ruins remained, and this not by +any fault of his own. He felt that it was not in his power to regain +faith in the meaning of life. + +Around him in the darkness men were standing and evidently something +about him interested them greatly. They were telling him something and +asking him something. Then they led him away somewhere, and at last he +found himself in a corner of the shed among men who were laughing +and talking on all sides. + +"Well, then, mates... that very prince who..." some voice at the +other end of the shed was saying, with a strong emphasis on the word +who. + +Sitting silent and motionless on a heap of straw against the wall, +Pierre sometimes opened and sometimes closed his eyes. But as soon +as he closed them he saw before him the dreadful face of the factory +lad--especially dreadful because of its simplicity--and the faces of +the murderers, even more dreadful because of their disquiet. And he +opened his eyes again and stared vacantly into the darkness around +him. + +Beside him in a stooping position sat a small man of whose +presence he was first made aware by a strong smell of perspiration +which came from him every time he moved. This man was doing +something to his legs in the darkness, and though Pierre could not see +his face he felt that the man continually glanced at him. On growing +used to the darkness Pierre saw that the man was taking off his leg +bands, and the way he did it aroused Pierre's interest. + +Having unwound the string that tied the band on one leg, he +carefully coiled it up and immediately set to work on the other leg, +glancing up at Pierre. While one hand hung up the first string the +other was already unwinding the band on the second leg. In this way, +having carefully removed the leg bands by deft circular motions of his +arm following one another uninterruptedly, the man hung the leg +bands up on some pegs fixed above his head. Then he took out a +knife, cut something, closed the knife, placed it under the head of +his bed, and, seating himself comfortably, clasped his arms round +his lifted knees and fixed his eyes on Pierre. The latter was +conscious of something pleasant, comforting, and well rounded in these +deft movements, in the man's well-ordered arrangements in his +corner, and even in his very smell, and he looked at the man without +taking his eyes from him. + +"You've seen a lot of trouble, sir, eh?" the little man suddenly +said. + +And there was so much kindliness and simplicity in his singsong +voice that Pierre tried to reply, but his jaw trembled and he felt +tears rising to his eyes. The little fellow, giving Pierre no time +to betray his confusion, instantly continued in the same pleasant +tones: + +"Eh, lad, don't fret!" said he, in the tender singsong caressing +voice old Russian peasant women employ. "Don't fret, friend--'suffer +an hour, live for an age!' that's how it is, my dear fellow. And +here we live, thank heaven, without offense. Among these folk, too, +there are good men as well as bad," said he, and still speaking, he +turned on his knees with a supple movement, got up, coughed, and +went off to another part of the shed. + +"Eh, you rascal!" Pierre heard the same kind voice saying at the +other end of the shed. "So you've come, you rascal? She remembers... +Now, now, that'll do!" + +And the soldier, pushing away a little dog that was jumping up at +him, returned to his place and sat down. In his hands he had something +wrapped in a rag. + +"Here, eat a bit, sir," said he, resuming his former respectful tone +as he unwrapped and offered Pierre some baked potatoes. "We had soup +for dinner and the potatoes are grand!" + +Pierre had not eaten all day and the smell of the potatoes seemed +extremely pleasant to him. He thanked the soldier and began to eat. + +"Well, are they all right?" said the soldier with a smile. "You +should do like this." + +He took a potato, drew out his clasp knife, cut the potato into +two equal halves on the palm of his hand, sprinkled some salt on it +from the rag, and handed it to Pierre. + +"The potatoes are grand!" he said once more. "Eat some like that!" + +Pierre thought he had never eaten anything that tasted better. + +"Oh, I'm all right," said he, "but why did they shoot those poor +fellows? The last one was hardly twenty." + +"Tss, tt...!" said the little man. "Ah, what a sin... what a sin!" +he added quickly, and as if his words were always waiting ready in his +mouth and flew out involuntarily he went on: "How was it, sir, that +you stayed in Moscow?" + +"I didn't think they would come so soon. I stayed accidentally," +replied Pierre. + +"And how did they arrest you, dear lad? At your house?" + +"No, I went to look at the fire, and they arrested me there, and +tried me as an incendiary." + +"Where there's law there's injustice," put in the little man. + +"And have you been here long?" Pierre asked as he munched the last +of the potato. + +"I? It was last Sunday they took me, out of a hospital in Moscow." + +"Why, are you a soldier then?" + +"Yes, we are soldiers of the Apsheron regiment. I was dying of +fever. We weren't told anything. There were some twenty of us lying +there. We had no idea, never guessed at all." + +"And do you feel sad here?" Pierre inquired. + +"How can one help it, lad? My name is Platon, and the surname is +Karataev," he added, evidently wishing to make it easier for Pierre to +address him. "They call me 'little falcon' in the regiment. How is one +to help feeling sad? Moscow--she's the mother of cities. How can one +see all this and not feel sad? But 'the maggot gnaws the cabbage, +yet dies first'; that's what the old folks used to tell us," he +added rapidly. + +"What? What did you say?" asked Pierre. + +"Who? I?" said Karataev. "I say things happen not as we plan but +as God judges," he replied, thinking that he was repeating what he had +said before, and immediately continued: + +"Well, and you, have you a family estate, sir? And a house? So you +have abundance, then? And a housewife? And your old parents, are +they still living?" he asked. + +And though it was too dark for Pierre to see, he felt that a +suppressed smile of kindliness puckered the soldier's lips as he put +these questions. He seemed grieved that Pierre had no parents, +especially that he had no mother. + +"A wife for counsel, a mother-in-law for welcome, but there's none +as dear as one's own mother!" said he. "Well, and have you little +ones?" he went on asking. + +Again Pierre's negative answer seemed to distress him, and he +hastened to add: + +"Never mind! You're young folks yet, and please God may still have +some. The great thing is to live in harmony...." + +"But it's all the same now," Pierre could not help saying. + +"Ah, my dear fellow!" rejoined Karataev, "never decline a prison +or a beggar's sack!" + +He seated himself more comfortably and coughed, evidently +preparing to tell a long story. + +"Well, my dear fellow, I was still living at home," he began. "We +had a well-to-do homestead, plenty of land, we peasants lived well and +our house was one to thank God for. When Father and we went out mowing +there were seven of us. We lived well. We were real peasants. It so +happened..." + +And Platon Karataev told a long story of how he had gone into +someone's copse to take wood, how he had been caught by the keeper, +had been tried, flogged, and sent to serve as a soldier. + +"Well, lad," and a smile changed the tone of his voice "we thought +it was a misfortune but it turned out a blessing! If it had not been +for my sin, my brother would have had to go as a soldier. But he, my +younger brother, had five little ones, while I, you see, only left a +wife behind. We had a little girl, but God took her before I went as a +soldier. I come home on leave and I'll tell you how it was, I look and +see that they are living better than before. The yard full of +cattle, the women at home, two brothers away earning wages, and only +Michael the youngest, at home. Father, he says, 'All my children are +the same to me: it hurts the same whichever finger gets bitten. But if +Platon hadn't been shaved for a soldier, Michael would have had to +go.' called us all to him and, will you believe it, placed us in front +of the icons. 'Michael,' he says, 'come here and bow down to his feet; +and you, young woman, you bow down too; and you, grandchildren, also +bow down before him! Do you understand?' he says. That's how it is, +dear fellow. Fate looks for a head. But we are always judging, 'that's +not well--that's not right!' Our luck is like water in a dragnet: +you pull at it and it bulges, but when you've drawn it out it's empty! +That's how it is." + +And Platon shifted his seat on the straw. + +After a short silence he rose. + +"Well, I think you must be sleepy," said he, and began rapidly +crossing himself and repeating: + +"Lord Jesus Christ, holy Saint Nicholas, Frola and Lavra! Lord Jesus +Christ, holy Saint Nicholas, Frola and Lavra! Lord Jesus Christ, +have mercy on us and save us!" he concluded, then bowed to the ground, +got up, sighed, and sat down again on his heap of straw. "That's the +way. Lay me down like a stone, O God, and raise me up like a loaf," he +muttered as he lay down, pulling his coat over him. + +"What prayer was that you were saying?" asked Pierre. + +"Eh?" murmured Platon, who had almost fallen asleep. "What was I +saying? I was praying. Don't you pray?" + +"Yes, I do," said Pierre. "But what was that you said: Frola and +Lavra?" + +"Well, of course," replied Platon quickly, "the horses' saints. +One must pity the animals too. Eh, the rascal! Now you've curled up +and got warm, you daughter of a bitch!" said Karataev, touching the +dog that lay at his feet, and again turning over he fell asleep +immediately. + +Sounds of crying and screaming came from somewhere in the distance +outside, and flames were visible through the cracks of the shed, but +inside it was quiet and dark. For a long time Pierre did not sleep, +but lay with eyes open in the darkness, listening to the regular +snoring of Platon who lay beside him, and he felt that the world +that had been shattered was once more stirring in his soul with a +new beauty and on new and unshakable foundations. + + + + + +CHAPTER XIII + + +Twenty-three soldiers, three officers, and two officials were +confined in the shed in which Pierre had been placed and where he +remained for four weeks. + +When Pierre remembered them afterwards they all seemed misty figures +to him except Platon Karataev, who always remained in his mind a +most vivid and precious memory and the personification of everything +Russian, kindly, and round. When Pierre saw his neighbor next +morning at dawn the first impression of him, as of something round, +was fully confirmed: Platon's whole figure--in a French overcoat +girdled with a cord, a soldier's cap, and bast shoes--was round. His +head was quite round, his back, chest, shoulders, and even his arms, +which he held as if ever ready to embrace something, were rounded, his +pleasant smile and his large, gentle brown eyes were also round. + +Platon Karataev must have been fifty, judging by his stories of +campaigns he had been in, told as by an old soldier. He did not +himself know his age and was quite unable to determine it. But his +brilliantly white, strong teeth which showed in two unbroken +semicircles when he laughed--as he often did--were all sound and good, +there was not a gray hair in his beard or on his head, and his whole +body gave an impression of suppleness and especially of firmness and +endurance. + +His face, despite its fine, rounded wrinkles, had an expression of +innocence and youth, his voice was pleasant and musical. But the chief +peculiarity of his speech was its directness and appositeness. It +was evident that he never considered what he had said or was going +to say, and consequently the rapidity and justice of his intonation +had an irresistible persuasiveness. + +His physical strength and agility during the first days of his +imprisonment were such that he seemed not to know what fatigue and +sickness meant. Every night before lying down, he said: "Lord, lay +me down as a stone and raise me up as a loaf!" and every morning on +getting up, he said: "I lay down and curled up, I get up and shake +myself." And indeed he only had to lie down, to fall asleep like a +stone, and he only had to shake himself, to be ready without a +moment's delay for some work, just as children are ready to play +directly they awake. He could do everything, not very well but not +badly. He baked, cooked, sewed, planed, and mended boots. He was +always busy, and only at night allowed himself conversation--of +which he was fond--and songs. He did not sing like a trained singer +who knows he is listened to, but like the birds, evidently giving vent +to the sounds in the same way that one stretches oneself or walks +about to get rid of stiffness, and the sounds were always +high-pitched, mournful, delicate, and almost feminine, and his face at +such times was very serious. + +Having been taken prisoner and allowed his beard to grow, he +seemed to have thrown off all that had been forced upon him- +everything military and alien to himself--and had returned to his +former peasant habits. + +"A soldier on leave--a shirt outside breeches," he would say. + +He did not like talking about his life as a soldier, though he did +not complain, and often mentioned that he had not been flogged once +during the whole of his army service. When he related anything it +was generally some old and evidently precious memory of his +"Christian" life, as he called his peasant existence. The proverbs, of +which his talk was full, were for the most part not the coarse and +indecent saws soldiers employ, but those folk sayings which taken +without a context seem so insignificant, but when used appositely +suddenly acquire a significance of profound wisdom. + +He would often say the exact opposite of what he had said on a +previous occasion, yet both would be right. He liked to talk and he +talked well, adorning his speech with terms of endearment and with +folk sayings which Pierre thought he invented himself, but the chief +charm of his talk lay in the fact that the commonest events--sometimes +just such as Pierre had witnessed without taking notice of them- +assumed in Karataev's a character of solemn fitness. He liked to +hear the folk tales one of the soldiers used to tell of an evening +(they were always the same), but most of all he liked to hear +stories of real life. He would smile joyfully when listening to such +stories, now and then putting in a word or asking a question to make +the moral beauty of what he was told clear to himself. Karataev had no +attachments, friendships, or love, as Pierre understood them, but +loved and lived affectionately with everything life brought him in +contact with, particularly with man--not any particular man, but those +with whom he happened to be. He loved his dog, his comrades, the +French, and Pierre who was his neighbor, but Pierre felt that in spite +of Karataev's affectionate tenderness for him (by which he +unconsciously gave Pierre's spiritual life its due) he would not +have grieved for a moment at parting from him. And Pierre began to +feel in the same way toward Karataev. + +To all the other prisoners Platon Karataev seemed a most ordinary +soldier. They called him "little falcon" or "Platosha," chaffed him +good-naturedly, and sent him on errands. But to Pierre he always +remained what he had seemed that first night: an unfathomable, +rounded, eternal personification of the spirit of simplicity and +truth. + +Platon Karataev knew nothing by heart except his prayers. When he +began to speak he seemed not to know how he would conclude. + +Sometimes Pierre, struck by the meaning of his words, would ask +him to repeat them, but Platon could never recall what he had said a +moment before, just as he never could repeat to Pierre the words of +his favorite song: native and birch tree and my heart is sick occurred +in it, but when spoken and not sung, no meaning could be got out of +it. He did not, and could not, understand the meaning of words apart +from their context. Every word and action of his was the manifestation +of an activity unknown to him, which was his life. But his life, as he +regarded it, had no meaning as a separate thing. It had meaning only +as part of a whole of which he was always conscious. His words and +actions flowed from him as evenly, inevitably, and spontaneously as +fragrance exhales from a flower. He could not understand the value +or significance of any word or deed taken separately. + + + + + +CHAPTER XIV + + +When Princess Mary heard from Nicholas that her brother was with the +Rostovs at Yaroslavl she at once prepared to go there, in spite of her +aunt's efforts to dissuade her--and not merely to go herself but to +take her nephew with her. Whether it were difficult or easy, +possible or impossible, she did not ask and did not want to know: it +was her duty not only herself to be near her brother who was perhaps +dying, but to do everything possible to take his son to him, and so +she prepared to set off. That she had not heard from Prince Andrew +himself, Princess Mary attributed to his being too weak to write or to +his considering the long journey too hard and too dangerous for her +and his son. + +In a few days Princess Mary was ready to start. Her equipages were +the huge family coach in which she had traveled to Voronezh, a +semiopen trap, and a baggage cart. With her traveled Mademoiselle +Bourienne, little Nicholas and his tutor, her old nurse, three +maids, Tikhon, and a young footman and courier her aunt had sent to +accompany her. + +The usual route through Moscow could not be thought of, and the +roundabout way Princess Mary was obliged to take through Lipetsk, +Ryazan, Vladimir, and Shuya was very long and, as post horses were not +everywhere obtainable, very difficult, and near Ryazan where the +French were said to have shown themselves was even dangerous. + +During this difficult journey Mademoiselle Bourienne, Dessalles, and +Princess Mary's servants were astonished at her energy and firmness of +spirit. She went to bed later and rose earlier than any of them, and +no difficulties daunted her. Thanks to her activity and energy, +which infected her fellow travelers, they approached Yaroslavl by +the end of the second week. + +The last days of her stay in Voronezh had been the happiest of her +life. Her love for Rostov no longer tormented or agitated her. It +filled her whole soul, had become an integral part of herself, and she +no longer struggled against it. Latterly she had become convinced that +she loved and was beloved, though she never said this definitely to +herself in words. She had become convinced of it at her last interview +with Nicholas, when he had come to tell her that her brother was +with the Rostovs. Not by a single word had Nicholas alluded to the +fact that Prince Andrew's relations with Natasha might, if he +recovered, be renewed, but Princess Mary saw by his face that he +knew and thought of this. + +Yet in spite of that, his relation to her--considerate, delicate, +and loving--not only remained unchanged, but it sometimes seemed to +Princess Mary that he was even glad that the family connection between +them allowed him to express his friendship more freely. She knew +that she loved for the first and only time in her life and felt that +she was beloved, and was happy in regard to it. + +But this happiness on one side of her spiritual nature did not +prevent her feeling grief for her brother with full force; on the +contrary, that spiritual tranquility on the one side made it the +more possible for her to give full play to her feeling for her +brother. That feeling was so strong at the moment of leaving +Voronezh that those who saw her off, as they looked at her careworn, +despairing face, felt sure she would fall ill on the journey. But +the very difficulties and preoccupations of the journey, which she +took so actively in hand, saved her for a while from her grief and +gave her strength. + +As always happens when traveling, Princess Mary thought only of +the journey itself, forgetting its object. But as she approached +Yaroslavl the thought of what might await her there--not after many +days, but that very evening--again presented itself to her and her +agitation increased to its utmost limit. + +The courier who had been sent on in advance to find out where the +Rostovs were staying in Yaroslavl, and in what condition Prince Andrew +was, when he met the big coach just entering the town gates was +appalled by the terrible pallor of the princess' face that looked +out at him from the window. + +"I have found out everything, your excellency: the Rostovs are +staying at the merchant Bronnikov's house, in the Square not far +from here, right above the Volga," said the courier. + +Princess Mary looked at him with frightened inquiry, not +understanding why he did not reply to what she chiefly wanted to know: +how was her brother? Mademoiselle Bourienne put that question for her. + +"How is the prince?" she asked. + +"His excellency is staying in the same house with them." + +"Then he is alive," thought Princess Mary, and asked in a low voice: +"How is he?" + +"The servants say he is still the same." + +What "still the same" might mean Princess Mary did not ask, but with +an unnoticed glance at little seven-year-old Nicholas, who was sitting +in front of her looking with pleasure at the town, she bowed her +head and did not raise it again till the heavy coach, rumbling, +shaking and swaying, came to a stop. The carriage steps clattered as +they were let down. + +The carriage door was opened. On the left there was water--a great +river--and on the right a porch. There were people at the entrance: +servants, and a rosy girl with a large plait of black hair, smiling as +it seemed to Princess Mary in an unpleasantly affected way. (This +was Sonya.) Princess Mary ran up the steps. "This way, this way!" said +the girl, with the same artificial smile, and the princess found +herself in the hall facing an elderly woman of Oriental type, who came +rapidly to meet her with a look of emotion. This was the countess. She +embraced Princess Mary and kissed her. + +"Mon enfant!" she muttered, "je vous aime et vous connais depuis +longtemps."* + + +*"My child! I love you and have known you a long time." + + Despite her excitement, Princess Mary realized that this was the +countess and that it was necessary to say something to her. Hardly +knowing how she did it, she contrived to utter a few polite phrases in +French in the same tone as those that had been addressed to her, and +asked: "How is he?" + +"The doctor says that he is not in danger," said the countess, but +as she spoke she raised her eyes with a sigh, and her gesture conveyed +a contradiction of her words. + +"Where is he? Can I see him--can I?" asked the princess. + +"One moment, Princess, one moment, my dear! Is this his son?" said +the countess, turning to little Nicholas who was coming in with +Dessalles. "There will be room for everybody, this is a big house. Oh, +what a lovely boy!" + +The countess took Princess Mary into the drawing room, where Sonya +was talking to Mademoiselle Bourienne. The countess caressed the +boy, and the old count came in and welcomed the princess. He had +changed very much since Princess Mary had last seen him. Then he had +been a brisk, cheerful, self-assured old man; now he seemed a pitiful, +bewildered person. While talking to Princess Mary he continually +looked round as if asking everyone whether he was doing the right +thing. After the destruction of Moscow and of his property, thrown out +of his accustomed groove he seemed to have lost the sense of his own +significance and to feel that there was no longer a place for him in +life. + +In spite of her one desire to see her brother as soon as possible, +and her vexation that at the moment when all she wanted was to see him +they should be trying to entertain her and pretending to admire her +nephew, the princess noticed all that was going on around her and felt +the necessity of submitting, for a time, to this new order of things +which she had entered. She knew it to be necessary, and though it +was hard for her she was not vexed with these people. + +"This is my niece," said the count, introducing Sonya--"You don't +know her, Princess?" + +Princess Mary turned to Sonya and, trying to stifle the hostile +feeling that arose in her toward the girl, she kissed her. But she +felt oppressed by the fact that the mood of everyone around her was so +far from what was in her own heart. + +"Where is he?" she asked again, addressing them all. + +"He is downstairs. Natasha is with him," answered Sonya, flushing. +"We have sent to ask. I think you must be tired, Princess." + +Tears of vexation showed themselves in Princess Mary's eyes. She +turned away and was about to ask the countess again how to go to +him, when light, impetuous, and seemingly buoyant steps were heard +at the door. The princess looked round and saw Natasha coming in, +almost running--that Natasha whom she had liked so little at their +meeting in Moscow long since. + +But hardly had the princess looked at Natasha's face before she +realized that here was a real comrade in her grief, and consequently a +friend. She ran to meet her, embraced her, and began to cry on her +shoulder. + +As soon as Natasha, sitting at the head of Prince Andrew's bed, +heard of Princess Mary's arrival, she softly left his room and +hastened to her with those swift steps that had sounded buoyant to +Princess Mary. + +There was only one expression on her agitated face when she ran into +the drawing room--that of love--boundless love for him, for her, and +for all that was near to the man she loved; and of pity, suffering for +others, and passionate desire to give herself entirely to helping +them. It was plain that at that moment there was in Natasha's heart no +thought of herself or of her own relations with Prince Andrew. + +Princess Mary, with her acute sensibility, understood all this at +the first glance at Natasha's face, and wept on her shoulder with +sorrowful pleasure. + +"Come, come to him, Mary," said Natasha, leading her into the +other room. + +Princess Mary raised her head, dried her eyes, and turned to +Natasha. She felt that from her she would be able to understand and +learn everything. + +"How..." she began her question but stopped short. + +She felt that it was impossible to ask, or to answer, in words. +Natasha's face eyes would have to tell her all more clearly +and profoundly. + +Natasha was gazing at her, but seemed afraid and in doubt whether to +say all she knew or not; she seemed to feel that before those luminous +eyes which penetrated into the very depths of her heart, it was +impossible not to tell the whole truth which she saw. And suddenly, +Natasha's lips twitched, ugly wrinkles gathered round her mouth, and +covering her face with her hands she burst into sobs. + +Princess Mary understood. + +But she still hoped, and asked, in words she herself did not trust: + +"But how is his wound? What is his general condition?" + +"You, you... will see," was all Natasha could say. + +They sat a little while downstairs near his room till they had +left off crying and were able to go to him with calm faces. + +"How has his whole illness gone? Is it long since he grew worse? +When did this happen?" Princess Mary inquired. + +Natasha told her that at first there had been danger from his +feverish condition and the pain he suffered, but at Troitsa that had +passed and the doctor had only been afraid of gangrene. That danger +had also passed. When they reached Yaroslavl the wound had begun to +fester (Natasha knew all about such things as festering) and the +doctor had said that the festering might take a normal course. Then +fever set in, but the doctor had said the fever was not very serious. + +"But two days ago this suddenly happened," said Natasha, +struggling with her sobs. "I don't know why, but you will see what +he is like." + +"Is he weaker? Thinner?" asked the princess. + +"No, it's not that, but worse. You will see. O, Mary, he is too +good, he cannot, cannot live, because..." + + + + + +CHAPTER XV + + +When Natasha opened Prince Andrew's door with a familiar movement +and let Princess Mary pass into the room before her, the princess felt +the sobs in her throat. Hard as she had tried to prepare herself, +and now tried to remain tranquil, she knew that she would be unable to +look at him without tears. + +The princess understood what Natasha had meant by the words: "two +days ago this suddenly happened." She understood those words to mean +that he had suddenly softened and that this softening and gentleness +were signs of approaching death. As she stepped to the door she +already saw in imagination Andrew's face as she remembered it in +childhood, a gentle, mild, sympathetic face which he had rarely shown, +and which therefore affected her very strongly. She was sure he +would speak soft, tender words to her such as her father had uttered +before his death, and that she would not be able to bear it and +would burst into sobs in his presence. Yet sooner or later it had to +be, and she went in. The sobs rose higher and higher in her throat +as she more and more clearly distinguished his form and her +shortsighted eyes tried to make out his features, and then she saw his +face and met his gaze. + +He was lying in a squirrel-fur dressing gown on a divan, +surrounded by pillows. He was thin and pale. In one thin, +translucently white hand he held a handkerchief, while with the +other he stroked the delicate mustache he had grown, moving his +fingers slowly. His eyes gazed at them as they entered. + +On seeing his face and meeting his eyes Princess Mary's pace +suddenly slackened, she felt her tears dry up and her sobs ceased. She +suddenly felt guilty and grew timid on catching the expression of +his face and eyes. + +"But in what am I to blame?" she asked herself. And his cold, +stern look replied: "Because you are alive and thinking of the living, +while I..." + +In the deep gaze that seemed to look not outwards but +inwards there was an almost hostile expression as he slowly regarded +his sister and Natasha. + +He kissed his sister, holding her hand in his as was their wont. + +"How are you, Mary? How did you manage to get here?" said he in a +voice as calm and aloof as his look. + +Had he screamed in agony, that scream would not have struck such +horror into Princess Mary's heart as the tone of his voice. + +"And have you brought little Nicholas?" he asked in the same slow, +quiet manner and with an obvious effort to remember. + +"How are you now?" said Princess Mary, herself surprised at what she +was saying. + +"That, my dear, you must ask the doctor," he replied, and again +making an evident effort to be affectionate, he said with his lips +only (his words clearly did not correspond to his thoughts): + +"Merci, chere amie, d'etre venue."* + + +*"Thank you for coming, my dear." + + +Princess Mary pressed his hand. The pressure made him wince just +perceptibly. He was silent, and she did not know what to say. She +now understood what had happened to him two days before. In his words, +his tone, and especially in that calm, almost antagonistic look +could be felt an estrangement from everything belonging to this world, +terrible in one who is alive. Evidently only with an effort did he +understand anything living; but it was obvious that he failed to +understand, not because he lacked the power to do so but because he +understood something else--something the living did not and could +not understand--and which wholly occupied his mind. + +"There, you see how strangely fate has brought us together," said +he, breaking the silence and pointing to Natasha. "She looks after +me all the time." + +Princess Mary heard him and did not understand how he could say such +a thing. He, the sensitive, tender Prince Andrew, how could he say +that, before her whom he loved and who loved him? Had he expected to +live he could not have said those words in that offensively cold tone. +If he had not known that he was dying, how could he have failed to +pity her and how could he speak like that in her presence? The only +explanation was that he was indifferent, because something else, +much more important, had been revealed to him. + +The conversation was cold and disconnected and continually broke +off. + +"Mary came by way of Ryazan," said Natasha. + +Prince Andrew did not notice that she called his sister Mary, and +only after calling her so in his presence did Natasha notice it +herself. + +"Really?" he asked. + +"They told her that all Moscow has been burned down, and that..." + +Natasha stopped. It was impossible to talk. It was plain that he was +making an effort to listen, but could not do so. + +"Yes, they say it's burned," he said. "It's a great pity," and he +gazed straight before him, absently stroking his mustache with his +fingers. + +"And so you have met Count Nicholas, Mary?" Prince Andrew suddenly +said, evidently wishing to speak pleasantly to them. "He wrote here +that he took a great liking to you," he went on simply and calmly, +evidently unable to understand all the complex significance his +words had for living people. "If you liked him too, it would be a good +thing for you to get married," he added rather more quickly, as if +pleased at having found words he had long been seeking. + +Princess Mary heard his words but they had no meaning for her, +except as a proof of how far away he now was from everything living. + +"Why talk of me?" she said quietly and glanced at Natasha. + +Natasha, who felt her glance, did not look at her. All three were +again silent. + +"Andrew, would you like..." Princess Mary suddenly said in a +trembling voice, "would you like to see little Nicholas? He is +always talking about you!" + +Prince Andrew smiled just perceptibly and for the first time, but +Princess Mary, who knew his face so well, saw with horror that he +did not smile with pleasure or affection for his son, but with +quiet, gentle irony because he thought she was trying what she +believed to be the last means of arousing him. + +"Yes, I shall be very glad to see him. Is he quite well?" + +When little Nicholas was brought into Prince Andrew's room he looked +at his father with frightened eyes, but did not cry, because no one +else was crying. Prince Andrew kissed him and evidently did not know +what to say to him. + +When Nicholas had been led away, Princess Mary again went up to +her brother, kissed him, and unable to restrain her tears any longer +began to cry. + +He looked at her attentively. + +"Is it about Nicholas?" he asked. + +Princess Mary nodded her head, weeping. + +"Mary, you know the Gosp..." but he broke off. + +"What did you say?" + +"Nothing. You mustn't cry here," he said, looking at her with the +same cold expression. + + +When Princess Mary began to cry, he understood that she was crying +at the thought that little Nicholas would be left without a father. +With a great effort he tried to return to life and to see things +from their point of view. + +"Yes, to them it must seem sad!" he thought. "But how simple it is. + +"The fowls of the air sow not, neither do they reap, yet your Father +feedeth them," he said to himself and wished to say to Princess +Mary; "but no, they will take it their own way, they won't understand! +They can't understand that all those feelings they prize so--all our +feelings, all those ideas that seem so important to us, are +unnecessary. We cannot understand one another," and he remained +silent. + + +Prince Andrew's little son was seven. He could scarcely read, and +knew nothing. After that day he lived through many things, gaining +knowledge, observation, and experience, but had he possessed all the +faculties he afterwards acquired, he could not have had a better or +more profound understanding of the meaning of the scene he had +witnessed between his father, Mary, and Natasha, than he had then. +He understood it completely, and, leaving the room without crying, +went silently up to Natasha who had come out with him and looked shyly +at her with his beautiful, thoughtful eyes, then his uplifted, rosy +upper lip trembled and leaning his head against her he began to cry. + +After that he avoided Dessalles and the countess who caressed him +and either sat alone or came timidly to Princess Mary, or to Natasha +of whom he seemed even fonder than of his aunt, and clung to them +quietly and shyly. + +When Princess Mary had left Prince Andrew she fully understood +what Natasha's face had told her. She did not speak any more to +Natasha of hopes of saving his life. She took turns with her beside +his sofa, and did not cry any more, but prayed continually, turning in +soul to that Eternal and Unfathomable, whose presence above the +dying man was now so evident. + + + + + +CHAPTER XVI + + +Not only did Prince Andrew know he would die, but he felt that he +was dying and was already half dead. He was conscious of an +aloofness from everything earthly and a strange and joyous lightness +of existence. Without haste or agitation he awaited what was coming. +That inexorable, eternal, distant, and unknown the presence of which +he had felt continually all his life--was now near to him and, by +the strange lightness he experienced, almost comprehensible and +palpable... + + +Formerly he had feared the end. He had twice experienced that +terribly tormenting fear of death--the end--but now he no longer +understood that fear. + + He had felt it for the first time when the shell spun like a top +before him, and he looked at the fallow field, the bushes, and the +sky, and knew that he was face to face with death. When he came to +himself after being wounded and the flower of eternal, unfettered love +had instantly unfolded itself in his soul as if freed from the bondage +of life that had restrained it, he no longer feared death and ceased +to think about it. + +During the hours of solitude, suffering, and partial delirium he +spent after he was wounded, the more deeply he penetrated into the new +principle of eternal love revealed to him, the more he unconsciously +detached himself from earthly life. To love everything and everybody +and always to sacrifice oneself for love meant not to love anyone, not +to live this earthly life. And the more imbued he became with that +principle of love, the more he renounced life and the more +completely he destroyed that dreadful barrier which--in the absence of +such love--stands between life and death. When during those first days +he remembered that he would have to die, he said to himself: "Well, +what of it? So much the better!" + +But after the night in Mytishchi when, half delirious, he had seen +her for whom he longed appear before him and, having pressed her +hand to his lips, had shed gentle, happy tears, love for a +particular woman again crept unobserved into his heart and once more +bound him to life. And joyful and agitating thoughts began to occupy +his mind. Recalling the moment at the ambulance station when he had +seen Kuragin, he could not now regain the feeling he then had, but was +tormented by the question whether Kuragin was alive. And he dared +not inquire. + +His illness pursued its normal physical course, but what Natasha +referred to when she said: "This suddenly happened," had occurred +two days before Princess Mary arrived. It was the last spiritual +struggle between life and death, in which death gained the victory. It +was the unexpected realization of the fact that he still valued life +as presented to him in the form of his love for Natasha, and a last, +though ultimately vanquished, attack of terror before the unknown. + +It was evening. As usual after dinner he was slightly feverish, +and his thoughts were preternaturally clear. Sonya was sitting by +the table. He began to doze. Suddenly a feeling of happiness seized +him. + +"Ah, she has come!" thought he. + +And so it was: in Sonya's place sat Natasha who had just come in +noiselessly. + +Since she had begun looking after him, he had always experienced +this physical consciousness of her nearness. She was sitting in an +armchair placed sideways, screening the light of the candle from +him, and was knitting a stocking. She had learned to knit stockings +since Prince Andrew had casually mentioned that no one nursed the sick +so well as old nurses who knit stockings, and that there is +something soothing in the knitting of stockings. The needles clicked +lightly in her slender, rapidly moving hands, and he could clearly see +the thoughtful profile of her drooping face. She moved, and the ball +rolled off her knees. She started, glanced round at him, and screening +the candle with her hand stooped carefully with a supple and exact +movement, picked up the ball, and regained her former position. + +He looked at her without moving and saw that she wanted to draw a +deep breath after stooping, but refrained from doing so and breathed +cautiously. + +At the Troitsa monastery they had spoken of the past, and he had +told her that if he lived he would always thank God for his wound +which had brought them together again, but after that they never spoke +of the future. + +"Can it or can it not be?" he now thought as he looked at her and +listened to the light click of the steel needles. "Can fate have +brought me to her so strangely only for me to die?... Is it possible +that the truth of life has been revealed to me only to show me that +I have spent my life in falsity? I love her more than anything in +the world! But what am I to do if I love her?" he thought, and he +involuntarily groaned, from a habit acquired during his sufferings. + +On hearing that sound Natasha put down the stocking, leaned nearer +to him, and suddenly, noticing his shining eyes, stepped lightly up to +him and bent over him. + +"You are not asleep?" + +"No, I have been looking at you a long time. I felt you come in. +No one else gives me that sense of soft tranquillity that you do... +that light. I want to weep for joy." + +Natasha drew closer to him. Her face shone with rapturous joy. + +"Natasha, I love you too much! More than anything in the world." + +"And I!"--She turned away for an instant. "Why too much?" she asked. + +"Why too much?... Well, what do you, what do you feel in your +soul, your whole soul--shall I live? What do you think?" + +"I am sure of it, sure!" Natasha almost shouted, taking hold of both +his hands with a passionate movement. + +He remained silent awhile. + +"How good it would be!" and taking her hand he kissed it. + +Natasha felt happy and agitated, but at once remembered that this +would not do and that he had to be quiet. + +"But you have not slept," she said, repressing her joy. "Try to +sleep... please!" + +He pressed her hand and released it, and she went back to the candle +and sat down again in her former position. Twice she turned and looked +at him, and her eyes met his beaming at her. She set herself a task on +her stocking and resolved not to turn round till it was finished. + +Soon he really shut his eyes and fell asleep. He did not sleep +long and suddenly awoke with a start and in a cold perspiration. + +As he fell asleep he had still been thinking of the subject that now +always occupied his mind--about life and death, and chiefly about +death. He felt himself nearer to it. + +"Love? What is love?" he thought. + +"Love hinders death. Love is life. All, everything that I +understand, I understand only because I love. Everything is, +everything exists, only because I love. Everything is united by it +alone. Love is God, and to die means that I, a particle of love, shall +return to the general and eternal source." These thoughts seemed to +him comforting. But they were only thoughts. Something was lacking +in them, they were not clear, they were too one-sidedly personal and +brain-spun. And there was the former agitation and obscurity. He +fell asleep. + +He dreamed that he was lying in the room he really was in, but +that he was quite well and unwounded. Many various, indifferent, and +insignificant people appeared before him. He talked to them and +discussed something trivial. They were preparing to go away somewhere. +Prince Andrew dimly realized that all this was trivial and that he had +more important cares, but he continued to speak, surprising them by +empty witticisms. Gradually, unnoticed, all these persons began to +disappear and a single question, that of the closed door, superseded +all else. He rose and went to the door to bolt and lock it. Everything +depended on whether he was, or was not, in time to lock it. He went, +and tried to hurry, but his legs refused to move and he knew he +would not be in time to lock the door though he painfully strained all +his powers. He was seized by an agonizing fear. And that fear was +the fear of death. It stood behind the door. But just when he was +clumsily creeping toward the door, that dreadful something on the +other side was already pressing against it and forcing its way in. +Something not human--death--was breaking in through that door, and had +to be kept out. He seized the door, making a final effort to hold it +back--to lock it was no longer possible--but his efforts were weak and +clumsy and the door, pushed from behind by that terror, opened and +closed again. + +Once again it pushed from outside. His last superhuman efforts +were vain and both halves of the door noiselessly opened. It +entered, and it was death, and Prince Andrew died. + +But at the instant he died, Prince Andrew remembered that he was +asleep, and at the very instant he died, having made an effort, he +awoke. + +"Yes, it was death! I died--and woke up. Yes, death is an +awakening!" And all at once it grew light in his soul and the veil +that had till then concealed the unknown was lifted from his spiritual +vision. He felt as if powers till then confined within him had been +liberated, and that strange lightness did not again leave him. + +When, waking in a cold perspiration, he moved on the divan, +Natasha went up and asked him what was the matter. He did not answer +and looked at her strangely, not understanding. + +That was what had happened to him two days before Princess Mary's +arrival. From that day, as the doctor expressed it, the wasting +fever assumed a malignant character, but what the doctor said did +not interest Natasha, she saw the terrible moral symptoms which to her +were more convincing. + +From that day an awakening from life came to Prince Andrew +together with his awakening from sleep. And compared to the duration +of life it did not seem to him slower than an awakening from sleep +compared to the duration of a dream. + +There was nothing terrible or violent in this comparatively slow +awakening. + +His last days and hours passed in an ordinary and simple way. Both +Princess Mary and Natasha, who did not leave him, felt this. They +did not weep or shudder and during these last days they themselves +felt that they were not attending on him (he was no longer there, he +had left them) but on what reminded them most closely of him--his +body. Both felt this so strongly that the outward and terrible side of +death did not affect them and they did not feel it necessary to foment +their grief. Neither in his presence nor out of it did they weep, +nor did they ever talk to one another about him. They felt that they +could not express in words what they understood. + +They both saw that he was sinking slowly and quietly, deeper and +deeper, away from them, and they both knew that this had to be so +and that it was right. + +He confessed, and received communion: everyone came to take leave of +him. When they brought his son to him, he pressed his lips to the +boy's and turned away, not because he felt it hard and sad (Princess +Mary and Natasha understood that) but simply because he thought it was +all that was required of him, but when they told him to bless the boy, +he did what was demanded and looked round as if asking whether there +was anything else he should do. + +When the last convulsions of the body, which the spirit was leaving, +occurred, Princess Mary and Natasha were present. + +"Is it over?" said Princess Mary when his body had for a few minutes +lain motionless, growing cold before them. Natasha went up, looked +at the dead eyes, and hastened to close them. She closed them but +did not kiss them, but clung to that which reminded her most nearly of +him--his body. + +"Where has he gone? Where is he now?..." + +When the body, washed and dressed, lay in the coffin on a table, +everyone came to take leave of him and they all wept. + +Little Nicholas cried because his heart was rent by painful +perplexity. The countess and Sonya cried from pity for Natasha and +because he was no more. The old count cried because he felt that +before long, he, too, must take the same terrible step. + +Natasha and Princess Mary also wept now, but not because of their +own personal grief; they wept with a reverent and softening emotion +which had taken possession of their souls at the consciousness of +the simple and solemn mystery of death that had been accomplished in +their presence. + + + + + +BOOK THIRTEEN: 1812 + + + + + +CHAPTER I + + +Man's mind cannot grasp the causes of events in their +completeness, but the desire to find those causes is implanted in +man's soul. And without considering the multiplicity and complexity of +the conditions any one of which taken separately may seem to be the +cause, he snatches at the first approximation to a cause that seems to +him intelligible and says: "This is the cause!" In historical events +(where the actions of men are the subject of observation) the first +and most primitive approximation to present itself was the will of the +gods and, after that, the will of those who stood in the most +prominent position--the heroes of history. But we need only +penetrate to the essence of any historic event--which lies in the +activity of the general mass of men who take part in it--to be +convinced that the will of the historic hero does not control the +actions of the mass but is itself continually controlled. It may +seem to be a matter of indifference whether we understand the +meaning of historical events this way or that; yet there is the same +difference between a man who says that the people of the West moved on +the East because Napoleon wished it and a man who says that this +happened because it had to happen, as there is between those who +declared that the earth was stationary and that the planets moved +round it and those who admitted that they did not know what upheld the +earth, but knew there were laws directing its movement and that of the +other planets. There is, and can be, no cause of an historical event +except the one cause of all causes. But there are laws directing +events, and some of these laws are known to us while we are +conscious of others we cannot comprehend. The discovery of these +laws is only possible when we have quite abandoned the +attempt to find the cause in the will of some one man, just as the +discovery of the laws of the motion of the planets was possible only +when men abandoned the conception of the fixity of the earth. + +The historians consider that, next to the battle of Borodino and the +occupation of Moscow by the enemy and its destruction by fire, the +most important episode of the war of 1812 was the movement of the +Russian army from the Ryazana to the Kaluga road and to the Tarutino +camp--the so-called flank march across the Krasnaya Pakhra River. They +ascribe the glory of that achievement of genius to different men and +dispute as to whom the honor is due. Even foreign historians, +including the French, acknowledge the genius of the Russian commanders +when they speak of that flank march. But it is hard to understand +why military writers, and following them others, consider this flank +march to be the profound conception of some one man who saved Russia +and destroyed Napoleon. In the first place it is hard to understand +where the profundity and genius of this movement lay, for not much +mental effort was needed to see that the best position for an army +when it is not being attacked is where there are most provisions; +and even a dull boy of thirteen could have guessed that the best +position for an army after its retreat from Moscow in 1812 was on +the Kaluga road. So it is impossible to understand by what reasoning +the historians reach the conclusion that this maneuver was a +profound one. And it is even more difficult to understand just why +they think that this maneuver was calculated to save Russia and +destroy the French; for this flank march, had it been preceded, +accompanied, or followed by other circumstances, might have proved +ruinous to the Russians and salutary for the French. If the position +of the Russian army really began to improve from the time of that +march, it does not at all follow that the march was the cause of it. + +That flank march might not only have failed to give any advantage to +the Russian army, but might in other circumstances have led to its +destruction. What would have happened had Moscow not burned down? If +Murat had not lost sight of the Russians? If Napoleon had not remained +inactive? If the Russian army at Krasnaya Pakhra had given battle as +Bennigsen and Barclay advised? What would have happened had the French +attacked the Russians while they were marching beyond the Pakhra? What +would have happened if on approaching Tarutino, Napoleon had +attacked the Russians with but a tenth of the energy he had shown when +he attacked them at Smolensk? What would have happened had the +French moved on Petersburg?... In any of these eventualities the flank +march that brought salvation might have proved disastrous. + +The third and most incomprehensible thing is that people studying +history deliberately avoid seeing that this flank march cannot be +attributed to any one man, that no one ever foresaw it, and that in +reality, like the retreat from Fili, it did not suggest itself to +anyone in its entirety, but resulted--moment by moment, step by +step, event by event--from an endless number of most diverse +circumstances and was only seen in its entirety when it had been +accomplished and belonged to the past. + +At the council at Fili the prevailing thought in the minds of the +Russian commanders was the one naturally suggesting itself, namely, +a direct retreat by the Nizhni road. In proof of this there is the +fact that the majority of the council voted for such a retreat, and +above all there is the well-known conversation after the council, +between the commander in chief and Lanskoy, who was in charge of the +commissariat department. Lanskoy informed the commander in chief +that the army supplies were for the most part stored along the Oka +in the Tula and Ryazan provinces, and that if they retreated on Nizhni +the army would be separated from its supplies by the broad river +Oka, which cannot be crossed early in winter. This was the first +indication of the necessity of deviating from what had previously +seemed the most natural course--a direct retreat on Nizhni-Novgorod. +The army turned more to the south, along the Ryazan road and nearer to +its supplies. Subsequently the inactivity of the French (who even +lost sight of the Russian army), concern for the safety of the arsenal +at Tula, and especially the advantages of drawing nearer to its +supplies caused the army to turn still further south to the Tula road. +Having crossed over, by a forced march, to the Tula road beyond the +Pakhra, the Russian commanders intended to remain at Podolsk and had +no thought of the Tarutino position; but innumerable circumstances and +the reappearance of French troops who had for a time lost touch with +the Russians, and projects of giving battle, and above all the +abundance of provisions in Kaluga province, obliged our army to turn +still more to the south and to cross from the Tula to the Kaluga +road and go to Tarutino, which was between the roads along which those +supplies lay. Just as it is impossible to say when it was decided to +abandon Moscow, so it is impossible to say precisely when, or by whom, +it was decided to move to Tarutino. Only when the army had got +there, as the result of innumerable and varying forces, did people +begin to assure themselves that they had desired this movement and +long ago foreseen its result. + + + + + +CHAPTER II + + +The famous flank movement merely consisted in this: after the +advance of the French had ceased, the Russian army, which had been +continually retreating straight back from the invaders, deviated +from that direct course and, not finding itself pursued, was naturally +drawn toward the district where supplies were abundant. + +If instead of imagining to ourselves commanders of genius leading +the Russian army, we picture that army without any leaders, it could +not have done anything but make a return movement toward Moscow, +describing an arc in the direction where most provisions were to be +found and where the country was richest. + +That movement from the Nizhni to the Ryazan, Tula, and Kaluga +roads was so natural that even the Russian marauders moved in that +direction, and demands were sent from Petersburg for Kutuzov to take +his army that way. At Tarutino Kutuzov received what was almost a +reprimand from the Emperor for having moved his army along the +Ryazan road, and the Emperor's letter indicated to him the very +position he had already occupied near Kaluga. + +Having rolled like a ball in the direction of the impetus given by +the whole campaign and by the battle of Borodino, the Russian army- +when the strength of that impetus was exhausted and no fresh push +was received--assumed the position natural to it. + +Kutuzov's merit lay, not in any strategic maneuver of genius, as +it is called, but in the fact that he alone understood the +significance of what had happened. He alone then understood the +meaning of the French army's inactivity, he alone continued to +assert that the battle of Borodino had been a victory, he alone--who +as commander in chief might have been expected to be eager to +attack--employed his whole strength to restrain the Russian army +from useless engagements. + +The beast wounded at Borodino was lying where the fleeing hunter had +left him; but whether he was still alive, whether he was strong and +merely lying low, the hunter did not know. Suddenly the beast was +heard to moan. + +The moan of that wounded beast (the French army) which betrayed +its calamitous condition was the sending of Lauriston to Kutuzov's +camp with overtures for peace. + +Napoleon, with his usual assurance that whatever entered his head +was right, wrote to Kutuzov the first words that occurred to him, +though they were meaningless. + + +MONSIEUR LE PRINCE KOUTOUZOV: I am sending one of my +adjutants-general to discuss several interesting questions with you. I +beg your Highness to credit what he says to you, especially when he +expresses the sentiment of esteem and special regard I have long +entertained for your person. This letter having no other object, I +pray God, monsieur le Prince Koutouzov, to keep you in His holy and +gracious protection! + +NAPOLEON + +MOSCOW, OCTOBER 30, 1812 + + +Kutuzov replied: "I should be cursed by posterity were I looked on +as the initiator of a settlement of any sort. Such is the present +spirit of my nation." But he continued to exert all his powers to +restrain his troops from attacking. + +During the month that the French troops were pillaging in Moscow and +the Russian troops were quietly encamped at Tarutino, a change had +taken place in the relative strength of the two armies--both in spirit +and in number--as a result of which the superiority had passed to +the Russian side. Though the condition and numbers of the French +army were unknown to the Russians, as soon as that change occurred the +need of attacking at once showed itself by countless signs. These +signs were: Lauriston's mission; the abundance of provisions at +Tarutino; the reports coming in from all sides of the inactivity and +disorder of the French; the flow of recruits to our regiments; the +fine weather; the long rest the Russian soldiers had enjoyed, and +the impatience to do what they had been assembled for, which usually +shows itself in an army that has been resting; curiosity as to what +the French army, so long lost sight of, was doing; the boldness with +which our outposts now scouted close up to the French stationed at +Tarutino; the news of easy successes gained by peasants and +guerrilla troops over the French, the envy aroused by this; the desire +for revenge that lay in the heart of every Russian as long as the +French were in Moscow, and (above all) a dim consciousness in every +soldier's mind that the relative strength of the armies had changed +and that the advantage was now on our side. There was a substantial +change in the relative strength, and an advance had become inevitable. +And at once, as a clock begins to strike and chime as soon as the +minute hand has completed a full circle, this change was shown by an +increased activity, whirring, and chiming in the higher spheres. + + + + + +CHAPTER III + + +The Russian army was commanded by Kutuzov and his staff, and also by +the Emperor from Petersburg. Before the news of the abandonment of +Moscow had been received in Petersburg, a detailed plan of the whole +campaign had been drawn up and sent to Kutuzov for his guidance. +Though this plan had been drawn up on the supposition that Moscow +was still in our hands, it was approved by the staff and accepted as a +basis for action. Kutuzov only replied that movements arranged from +a distance were always difficult to execute. So fresh instructions +were sent for the solution of difficulties that might be +encountered, as well as fresh people who were to watch Kutuzov's +actions and report upon them. + +Besides this, the whole staff of the Russian army was now +reorganized. The posts left vacant by Bagration, who had been +killed, and by Barclay, who had gone away in dudgeon, had to be +filled. Very serious consideration was given to the question whether +it would be better to put A in B's place and B in D's, or on the +contrary to put D in A's place, and so on--as if anything more than +A's or B's satisfaction depended on this. + +As a result of the hostility between Kutuzov and Bennigsen, his +Chief of Staff, the presence of confidential representatives of the +Emperor, and these transfers, a more than usually complicated play +of parties was going on among the staff of the army. A was undermining +B, D was undermining C, and so on in all possible combinations and +permutations. In all these plottings the subject of intrigue was +generally the conduct of the war, which all these men believed they +were directing; but this affair of the war went on independently of +them, as it had to go: that is, never in the way people devised, but +flowing always from the essential attitude of the masses. Only in +the highest spheres did all these schemes, crossings, and +interminglings appear to be a true reflection of what had to happen. + + +Prince Michael Ilarionovich! (wrote the Emperor on the second of +October in a letter that reached Kutuzov after the battle at Tarutino) +Since September 2 Moscow has been in the hands of the enemy. Your last +reports were written on the twentieth, and during all this time not +only has no action been taken against the enemy or for the relief of +the ancient capital, but according to your last report you have even +retreated farther. Serpukhov is already occupied by an enemy +detachment and Tula with its famous arsenal so indispensable to the +army, is in danger. From General Wintzingerode's reports, I see that +an enemy corps of ten thousand men is moving on the Petersburg road. +Another corps of several thousand men is moving on Dmitrov. A third +has advanced along the Vladimir road, and a fourth, rather +considerable detachment is stationed between Ruza and Mozhaysk. +Napoleon himself was in Moscow as late as the twenty-fifth. In view of +all this information, when the enemy has scattered his forces in large +detachments, and with Napoleon and his Guards in Moscow, is it +possible that the enemy's forces confronting you are so considerable +as not to allow of your taking the offensive? On the contrary, he is +probably pursuing you with detachments, or at most with an army +corps much weaker than the army entrusted to you. It would seem +that, availing yourself of these circumstances, you might +advantageously attack a weaker one and annihilate him, or at least +oblige him to retreat, retaining in our hands an important part of the +provinces now occupied by the enemy, and thereby averting danger +from Tula and other towns in the interior. You will be responsible +if the enemy is able to direct a force of any size against +Petersburg to threaten this capital in which it has not been +possible to retain many troops; for with the army entrusted to you, +and acting with resolution and energy, you have ample means to avert +this fresh calamity. Remember that you have still to answer to our +offended country for the loss of Moscow. You have experienced my +readiness to reward you. That readiness will not weaken in me, but I +and Russia have a right to expect from you all the zeal, firmness, and +success which your intellect, military talent, and the courage of +the troops you command justify us in expecting. + + +But by the time this letter, which proved that the real relation +of the forces had already made itself felt in Petersburg, was +dispatched, Kutuzov had found himself unable any longer to restrain +the army he commanded from attacking and a battle had taken place. + +On the second of October a Cossack, Shapovalov, who was out +scouting, killed one hare and wounded another. Following the wounded +hare he made his way far into the forest and came upon the left +flank of Murat's army, encamped there without any precautions. The +Cossack laughingly told his comrades how he had almost fallen into the +hands of the French. A cornet, hearing the story, informed his +commander. + +The Cossack was sent for and questioned. The Cossack officers wished +to take advantage of this chance to capture some horses, but one of +the superior officers, who was acquainted with the higher authorities, +reported the incident to a general on the staff. The state of +things on the staff had of late been exceedingly strained. Ermolov had +been to see Bennigsen a few days previously and had entreated him to +use his influence with the commander in chief to induce him to take +the offensive. + +"If I did not know you I should think you did not want what you +are asking for. I need only advise anything and his Highness is sure +to do the opposite," replied Bennigsen. + +The Cossack's report, confirmed by horse patrols who were sent +out, was the final proof that events had matured. The tightly coiled +spring was released, the clock began to whirr and the chimes to +play. Despite all his supposed power, his intellect, his experience, +and his knowledge of men, Kutuzov--having taken into consideration the +Cossack's report, a note from Bennigsen who sent personal reports to +the Emperor, the wishes he supposed the Emperor to hold, and the +fact that all the generals expressed the same wish--could no longer +check the inevitable movement, and gave the order to do what he +regarded as useless and harmful--gave his approval, that is, to the +accomplished fact. + + + + + +CHAPTER IV + + +Bennigsen's note and the Cossack's information that the left flank +of the French was unguarded were merely final indications that it +was necessary to order an attack, and it was fixed for the fifth of +October. + +On the morning of the fourth of October Kutuzov signed the +dispositions. Toll read them to Ermolov, asking him to attend to the +further arrangements. + +"All right--all right. I haven't time just now," replied Ermolov, +and left the hut. + +The dispositions drawn up by Toll were very good. As in the +Austerlitz dispositions, it was written--though not in German this +time: + +"The First Column will march here and here," "the Second Column will +march there and there," and so on; and on paper, all these columns +arrived at their places at the appointed time and destroyed the enemy. +Everything had been admirably thought out as is usual in dispositions, +and as is always the case, not a single column reached its place at +the appointed time. + +When the necessary number of copies of the dispositions had been +prepared, an officer was summoned and sent to deliver them to +Ermolov to deal with. A young officer of the Horse Guards, Kutuzov's +orderly, pleased at the importance of the mission entrusted to him, +went to Ermolov's quarters. + +"Gone away," said Ermolov's orderly. + +The officer of the Horse Guards went to a general with whom +Ermolov was often to be found. + +"No, and the general's out too." + +The officer, mounting his horse, rode off to someone else. + +"No, he's gone out." + +"If only they don't make me responsible for this delay! What a +nuisance it is!" thought the officer, and he rode round the whole +camp. One man said he had seen Ermolov ride past with some other +generals, others said he must have returned home. The officer searched +till six o'clock in the evening without even stopping to eat. +Ermolov was nowhere to be found and no one knew where he was. The +officer snatched a little food at a comrade's, and rode again to the +vanguard to find Miloradovich. Miloradovich too was away, but here +he was told that he had gone to a ball at General Kikin's and that +Ermolov was probably there too. + +"But where is it?" + +"Why, there, over at Echkino," said a Cossack officer, pointing to a +country house in the far distance. + +"What, outside our line?" + +"They've put two regiments as outposts, and they're having such a +spree there, it's awful! Two bands and three sets of singers!" + +The officer rode out beyond our lines to Echkino. While still at a +distance he heard as he rode the merry sounds of a soldier's dance +song proceeding from the house. + +"In the meadows... in the meadows!" he heard, accompanied by +whistling and the sound of a torban, drowned every now and then by +shouts. These sounds made his spirits rise, but at the same time he +was afraid that he would be blamed for not having executed sooner +the important order entrusted to him. It was already past eight +o'clock. He dismounted and went up into the porch of a large country +house which had remained intact between the Russian and French forces. +In the refreshment room and the hall, footmen were bustling about with +wine and viands. Groups of singers stood outside the windows. The +officer was admitted and immediately saw all the chief generals of the +army together, and among them Ermolov's big imposing figure. They +all had their coats unbuttoned and were standing in a semicircle +with flushed and animated faces, laughing loudly. In the middle of the +room a short handsome general with a red face was dancing the trepak +with much spirit and agility. + +"Ha, ha, ha! Bravo, Nicholas Ivanych! Ha, ha, ha!" + +The officer felt that by arriving with important orders at such a +moment he was doubly to blame, and he would have preferred to wait; +but one of the generals espied him and, hearing what he had come +about, informed Ermolov. + +Ermolov came forward with a frown on his face and, hearing what +the officer had to say, took the papers from him without a word. + + +"You think he went off just by chance?" said a comrade, who was on +the staff that evening, to the officer of the Horse Guards, +referring to Ermolov. "It was a trick. It was done on purpose to get +Konovnitsyn into trouble. You'll see what a mess there'll be +tomorrow." + + + + + +CHAPTER V + + +Next day the decrepit Kutuzov, having given orders to be called +early, said his prayers, dressed, and, with an unpleasant +consciousness of having to direct a battle he did not approve of, +got into his caleche and drove from Letashovka (a village three and +a half miles from Tarutino) to the place where the attacking columns +were to meet. He sat in the caleche, dozing and waking up by turns, +and listening for any sound of firing on the right as an indication +that the action had begun. But all was still quiet. A damp dull autumn +morning was just dawning. On approaching Tarutino Kutuzov noticed +cavalrymen leading their horses to water across the road along which +he was driving. Kutuzov looked at them searchingly, stopped his +carriage, and inquired what regiment they belonged to. They belonged +to a column that should have been far in front and in ambush long +before then. "It may be a mistake," thought the old commander in +chief. But a little further on he saw infantry regiments with their +arms piled and the soldiers, only partly dressed, eating their rye +porridge and carrying fuel. He sent for an officer. The officer +reported that no order to advance had been received. + +"How! Not rec..." Kutuzov began, but checked himself immediately and +sent for a senior officer. Getting out of his caleche, he waited +with drooping head and breathing heavily, pacing silently up and down. +When Eykhen, the officer of the general staff whom he had summoned, +appeared, Kutuzov went purple in the face, not because that officer +was to blame for the mistake, but because he was an object of +sufficient importance for him to vent his wrath on. Trembling and +panting the old man fell into that state of fury in which he sometimes +used to roll on the ground, and he fell upon Eykhen, threatening him +with his hands, shouting and loading him with gross abuse. Another +man, Captain Brozin, who happened to turn up and who was not at all to +blame, suffered the same fate. + +"What sort of another blackguard are you? I'll have you shot! +Scoundrels!" yelled Kutuzov in a hoarse voice, waving his arms and +reeling. + +He was suffering physically. He, the commander in chief, a Serene +Highness who everybody said possessed powers such as no man had ever +had in Russia, to be placed in this position--made the laughingstock +of the whole army! "I needn't have been in such a hurry to pray +about today, or have kept awake thinking everything over all night," +thought he to himself. "When I was a chit of an officer no one would +have dared to mock me so... and now!" He was in a state of physical +suffering as if from corporal punishment, and could not avoid +expressing it by cries of anger and distress. But his strength soon +began to fail him, and looking about him, conscious of having said +much that was amiss, he again got into his caleche and drove back in +silence. + +His wrath, once expended, did not return, and blinking feebly he +listened to excuses and self-justifications (Ermolov did not come to +see him till the next day) and to the insistence of Bennigsen, +Konovnitsyn, and Toll that the movement that had miscarried should +be executed next day. And once more Kutuzov had to consent. + + + + + +CHAPTER VI + + +Next day the troops assembled in their appointed places in the +evening and advanced during the night. It was an autumn night with +dark purple clouds, but no rain. The ground was damp but not muddy, +and the troops advanced noiselessly, only occasionally a jingling of +the artillery could be faintly heard. The men were forbidden to talk +out loud, to smoke their pipes, or to strike a light, and they tried +to prevent their horses neighing. The secrecy of the undertaking +heightened its charm and they marched gaily. Some columns, +supposing they had reached their destination, halted, piled arms, and +settled down on the cold ground, but the majority marched all night +and arrived at places where they evidently should not have been. + +Only Count Orlov-Denisov with his Cossacks (the least important +detachment of all) got to his appointed place at the right time. +This detachment halted at the outskirts of a forest, on the path +leading from the village of Stromilova to Dmitrovsk. + +Toward dawn, Count Orlov-Denisov, who had dozed off, was awakened by +a deserter from the French army being brought to him. This was a +Polish sergeant of Poniatowski's corps, who explained in Polish that +he had come over because he had been slighted in the service: that +he ought long ago to have been made an officer, that he was braver +than any of them, and so he had left them and wished to pay them +out. He said that Murat was spending the night less than a mile from +where they were, and that if they would let him have a convoy of a +hundred men he would capture him alive. Count Orlov-Denisov +consulted his fellow officers. + +The offer was too tempting to be refused. Everyone volunteered to go +and everybody advised making the attempt. After much disputing and +arguing, Major-General Grekov with two Cossack regiments decided to go +with the Polish sergeant. + +"Now, remember," said Count Orlov-Denisov to the sergeant at +parting, "if you have been lying I'll have you hanged like a dog; +but if it's true you shall have a hundred gold pieces!" + +Without replying, the sergeant, with a resolute air, mounted and +rode away with Grekov whose men had quickly assembled. They +disappeared into the forest, and Count Orlov-Denisov, having seen +Grekov off, returned, shivering from the freshness of the early dawn +and excited by what he had undertaken on his own responsibility, and +began looking at the enemy camp, now just visible in the deceptive +light of dawn and the dying campfires. Our columns ought to have begun +to appear on an open declivity to his right. He looked in that +direction, but though the columns would have been visible quite far +off, they were not to be seen. It seemed to the count that things were +beginning to stir in the French camp, and his keen-sighted adjutant +confirmed this. + +"Oh, it is really too late," said Count Orlov, looking at the camp. + +As often happens when someone we have trusted is no longer before +our eyes, it suddenly seemed quite clear and obvious to him that the +sergeant was an impostor, that he had lied, and that the whole Russian +attack would be ruined by the absence of those two regiments, which he +would lead away heaven only knew where. How could one capture a +commander in chief from among such a mass of troops! + +"I am sure that rascal was lying," said the count. + +"They can still be called back," said one of his suite, who like +Count Orlov felt distrustful of the adventure when he looked at the +enemy's camp. + +"Eh? Really... what do you think? Should we let them go on or not?" + +"Will you have them fetched back?" + +"Fetch them back, fetch them back!" said Count Orlov with sudden +determination, looking at his watch. "It will be too late. It is quite +light." + +And the adjutant galloped through the forest after Grekov. When +Grekov returned, Count Orlov-Denisov, excited both by the abandoned +attempt and by vainly awaiting the infantry columns that still did not +appear, as well as by the proximity of the enemy, resolved to advance. +All his men felt the same excitement. + +"Mount!" he commanded in a whisper. The men took their places and +crossed themselves.... "Forward, with God's aid!" + +"Hurrah-ah-ah!" reverberated in the forest, and the Cossack +companies, trailing their lances and advancing one after another as if +poured out of a sack, dashed gaily across the brook toward the camp. + +One desperate, frightened yell from the first French soldier who saw +the Cossacks, and all who were in the camp, undressed and only just +waking up, ran off in all directions, abandoning cannons, muskets, and +horses. + +Had the Cossacks pursued the French, without heeding what was behind +and around them, they would have captured Murat and everything +there. That was what the officers desired. But it was impossible to +make the Cossacks budge when once they had got booty and prisoners. +None of them listened to orders. Fifteen hundred prisoners and +thirty-eight guns were taken on the spot, besides standards and +(what seemed most important to the Cossacks) horses, saddles, +horsecloths, and the like. All this had to be dealt with, the +prisoners and guns secured, the booty divided--not without some +shouting and even a little themselves--and it was on this that the +Cossacks all busied themselves. + +The French, not being farther pursued, began to recover +themselves: they formed into detachments and began firing. +Orlov-Denisov, still waiting for the other columns to arrive, advanced +no further. + +Meantime, according to the dispositions which said that "the First +Column will march" and so on, the infantry of the belated columns, +commanded by Bennigsen and directed by Toll, had started in due +order and, as always happens, had got somewhere, but not to their +appointed places. As always happens the men, starting cheerfully, +began to halt; murmurs were heard, there was a sense of confusion, and +finally a backward movement. Adjutants and generals galloped about, +shouted, grew angry, quarreled, said they had come quite wrong and +were late, gave vent to a little abuse, and at last gave it all up and +went forward, simply to get somewhere. "We shall get somewhere or +other!" And they did indeed get somewhere, though not to their right +places; a few eventually even got to their right place, but too late +to be of any use and only in time to be fired at. Toll, who in this +battle played the part of Weyrother at Austerlitz, galloped +assiduously from place to place, finding everything upside down +everywhere. Thus he stumbled on Bagovut's corps in a wood when it +was already broad daylight, though the corps should long before have +joined Orlov-Denisov. Excited and vexed by the failure and supposing +that someone must be responsible for it, Toll galloped up to the +commander of the corps and began upbraiding him severely, saying +that he ought to be shot. General Bagovut, a fighting old soldier of +placid temperament, being also upset by all the delay, confusion, +and cross-purposes, fell into a rage to everybody's surprise and quite +contrary to his usual character and said disagreeable things to Toll. + +"I prefer not to take lessons from anyone, but I can die with my men +as well as anybody," he said, and advanced with a single division. + +Coming out onto a field under the enemy's fire, this brave general +went straight ahead, leading his men under fire, without considering +in his agitation whether going into action now, with a single +division, would be of any use or no. Danger, cannon balls, and bullets +were just what he needed in his angry mood. One of the first bullets +killed him, and other bullets killed many of his men. And his division +remained under fire for some time quite uselessly. + + + + + +CHAPTER VII + + +Meanwhile another column was to have attacked the French from the +front, but Kutuzov accompanied that column. He well knew that +nothing but confusion would come of this battle undertaken against his +will, and as far as was in his power held the troops back. He did +not advance. + +He rode silently on his small gray horse, indolently answering +suggestions that they should attack. + +"The word attack is always on your tongue, but you don't see that we +are unable to execute complicated maneuvers," said he to +Miloradovich who asked permission to advance. + +"We couldn't take Murat prisoner this morning or get to the place in +time, and nothing can be done now!" he replied to someone else. + +When Kutuzov was informed that at the French rear--where according +to the reports of the Cossacks there had previously been nobody--there +were now two battalions of Poles, he gave a sidelong glance at Ermolov +who was behind him and to whom he had not spoken since the previous +day. + +"You see! They are asking to attack and making plans of all kinds, +but as soon as one gets to business nothing is ready, and the enemy, +forewarned, takes measures accordingly." + +Ermolov screwed up his eyes and smiled faintly on hearing these +words. He understood that for him the storm had blown over, and that +Kutuzov would content himself with that hint. + +"He's having a little fun at my expense," said Ermolov softly, +nudging with his knee Raevski who was at his side. + +Soon after this, Ermolov moved up to Kutuzov and respectfully +remarked: + +"It is not too late yet, your Highness--the enemy has not gone away- +if you were to order an attack! If not, the Guards will not so much as +see a little smoke." + +Kutuzov did not reply, but when they reported to him that Murat's +troops were in retreat he ordered an advance, though at every +hundred paces he halted for three quarters of an hour. + +The whole battle consisted in what Orlov-Denisov's Cossacks had +done: the rest of the army merely lost some hundreds of men uselessly. + +In consequence of this battle Kutuzov received a diamond decoration, +and Bennigsen some diamonds and a hundred thousand rubles, others also +received pleasant recognitions corresponding to their various +grades, and following the battle fresh changes were made in the staff. + +"That's how everything is done with us, all topsy-turvy!" said the +Russian officers and generals after the Tarutino battle, letting it be +understood that some fool there is doing things all wrong but that +we ourselves should not have done so, just as people speak today. +But people who talk like that either do not know what they are talking +about or deliberately deceive themselves. No battle--Tarutino, +Borodino, or Austerlitz--takes place as those who planned it +anticipated. That is an essential condition. + +A countless number of free forces (for nowhere is man freer than +during a battle, where it is a question of life and death) influence +the course taken by the fight, and that course never can be known in +advance and never coincides with the direction of any one force. + +If many simultaneously and variously directed forces act on a +given body, the direction of its motion cannot coincide with any one +of those forces, but will always be a mean--what in mechanics is +represented by the diagonal of a parallelogram of forces. + +If in the descriptions given by historians, especially French +ones, we find their wars and battles carried out in accordance with +previously formed plans, the only conclusion to be drawn is that those +descriptions are false. + +The battle of Tarutino obviously did not attain the aim Toll had +in view--to lead the troops into action in the order prescribed by the +dispositions; nor that which Count Orlov-Denisov may have had in view- +to take Murat prisoner; nor the result of immediately destroying the +whole corps, which Bennigsen and others may have had in view; nor +the aim of the officer who wished to go into action to distinguish +himself; nor that of the Cossack who wanted more booty than he got, +and so on. But if the aim of the battle was what actually resulted and +what all the Russians of that day desired--to drive the French out +of Russia and destroy their army--it is quite clear that the battle of +Tarutino, just because of its incongruities, was exactly what was +wanted at that stage of the campaign. It would be difficult and even +impossible to imagine any result more opportune than the actual +outcome of this battle. With a minimum of effort and insignificant +losses, despite the greatest confusion, the most important results +of the whole campaign were attained: the transition from retreat to +advance, an exposure of the weakness of the French, and the +administration of that shock which Napoleon's army had only awaited to +begin its flight. + + + + + +CHAPTER VIII + + +Napoleon enters Moscow after the brilliant victory de la Moskowa; +there can be no doubt about the victory for the battlefield remains in +the hands of the French. The Russians retreat and abandon their +ancient capital. Moscow, abounding in provisions, arms, munitions, and +incalculable wealth, is in Napoleon's hands. The Russian army, only +half the strength of the French, does not make a single attempt to +attack for a whole month. Napoleon's position is most brilliant. He +can either fall on the Russian army with double its strength and +destroy it; negotiate an advantageous peace, or in case of a refusal +make a menacing move on Petersburg, or even, in the case of a reverse, +return to Smolensk or Vilna; or remain in Moscow; in short, no special +genius would seem to be required to retain the brilliant position +the French held at that time. For that, only very simple and easy +steps were necessary: not to allow the troops to loot, to prepare +winter clothing--of which there was sufficient in Moscow for the whole +army--and methodically to collect the provisions, of which +(according to the French historians) there were enough in Moscow to +supply the whole army for six months. Yet Napoleon, that greatest of +all geniuses, who the historians declare had control of the army, took +none of these steps. + +He not merely did nothing of the kind, but on the contrary he used +his power to select the most foolish and ruinous of all the courses +open to him. Of all that Napoleon might have done: wintering in +Moscow, advancing on Petersburg or on Nizhni-Novgorod, or retiring +by a more northerly or more southerly route (say by the road Kutuzov +afterwards took), nothing more stupid or disastrous can be imagined +than what he actually did. He remained in Moscow till October, letting +the troops plunder the city; then, hesitating whether to leave a +garrison behind him, he quitted Moscow, approached Kutuzov without +joining battle, turned to the right and reached Malo-Yaroslavets, +again without attempting to break through and take the road Kutuzov +took, but retiring instead to Mozhaysk along the devastated Smolensk +road. Nothing more stupid than that could have been devised, or more +disastrous for the army, as the sequel showed. Had Napoleon's aim been +to destroy his army, the most skillful strategist could hardly have +devised any series of actions that would so completely have +accomplished that purpose, independently of anything the Russian +army might do. + + +Napoleon, the man of genius, did this! But to say that he +destroyed his army because he wished to, or because he was very +stupid, would be as unjust as to say that he had brought his troops to +Moscow because he wished to and because he was very clever and a +genius. + +In both cases his personal activity, having no more force than the +personal activity of any soldier, merely coincided with the laws +that guided the event. + +The historians quite falsely represent Napoleon's faculties as +having weakened in Moscow, and do so only because the results did +not justify his actions. He employed all his ability and strength to +do the best he could for himself and his army, as he had done +previously and as he did subsequently in 1813. His activity at that +time was no less astounding than it was in Egypt, in Italy, in +Austria, and in Prussia. We do not know for certain in how far his +genius was genuine in Egypt--where forty centuries looked down upon +his grandeur--for his great exploits there are all told us by +Frenchmen. We cannot accurately estimate his genius in Austria or +Prussia, for we have to draw our information from French or German +sources, and the incomprehensible surrender of whole corps without +fighting and of fortresses without a siege must incline Germans to +recognize his genius as the only explanation of the war carried on +in Germany. But we, thank God, have no need to recognize his genius in +order to hide our shame. We have paid for the right to look at the +matter plainly and simply, and we will not abandon that right. + +His activity in Moscow was as amazing and as full of genius as +elsewhere. Order after order order and plan after plan were issued +by him from the time he entered Moscow till the time he left it. The +absence of citizens and of a deputation, and even the burning of +Moscow, did not disconcert him. He did not lose sight either of the +welfare of his army or of the doings of the enemy, or of the welfare +of the people of Russia, or of the direction of affairs in Paris, or +of diplomatic considerations concerning the terms of the anticipated +peace. + + + + + +CHAPTER IX + + +With regard to military matters, Napoleon immediately on his entry +into Moscow gave General Sabastiani strict orders to observe the +movements of the Russian army, sent army corps out along the different +roads, and charged Murat to find Kutuzov. Then he gave careful +directions about the fortification of the Kremlin, and drew up a +brilliant plan for a future campaign over the whole map of Russia. + +With regard to diplomatic questions, Napoleon summoned Captain +Yakovlev, who had been robbed and was in rags and did not know how +to get out of Moscow, minutely explained to him his whole policy and +his magnanimity, and having written a letter to the Emperor +Alexander in which he considered it his duty to inform his Friend +and Brother that Rostopchin had managed affairs badly in Moscow, he +dispatched Yakovlev to Petersburg. + +Having similarly explained his views and his magnanimity to +Tutolmin, he dispatched that old man also to Petersburg to negotiate. + +With regard to legal matters, immediately after the fires he gave +orders to find and execute the incendiaries. And the scoundrel +Rostopchin was punished by an order to burn down his houses. + +With regard to administrative matters, Moscow was granted a +constitution. A municipality was established and the following +announcement issued: + + +INHABITANTS OF MOSCOW! + +Your misfortunes are cruel, but His Majesty the Emperor and King +desires to arrest their course. Terrible examples have taught you +how he punishes disobedience and crime. Strict measures have been +taken to put an end to disorder and to re-establish public security. A +paternal administration, chosen from among yourselves, will form +your municipality or city government. It will take care of you, of +your needs, and of your welfare. Its members will be distinguished +by a red ribbon worn across the shoulder, and the mayor of the city +will wear a white belt as well. But when not on duty they will only +wear a red ribbon round the left arm. + +The city police is established on its former footing, and better +order already prevails in consequence of its activity. The +government has appointed two commissaries general, or chiefs of +police, and twenty commissaries or captains of wards have been +appointed to the different wards of the city. You will recognize +them by the white ribbon they will wear on the left arm. Several +churches of different denominations are open, and divine service is +performed in them unhindered. Your fellow citizens are returning every +day to their homes. and orders have been given that they should find +in them the help and protection due to their misfortunes. These are +the measures the government has adopted to re-establish order and +relieve your condition. But to achieve this aim it is necessary that +you should add your efforts and should, if possible, forget the +misfortunes you have suffered, should entertain the hope of a less +cruel fate, should be certain that inevitable and ignominious death +awaits those who make any attempt on your persons or on what remains +of your property, and finally that you should not doubt that these +will be safeguarded, since such is the will of the greatest and most +just of monarchs. Soldiers and citizens, of whatever nation you may +be, re-establish public confidence, the source of the welfare of a +state, live like brothers, render mutual aid and protection one to +another, unite to defeat the intentions of the evil-minded, obey the +military and civil authorities, and your tears will soon cease to +flow! + + +With regard to supplies for the army, Napoleon decreed that all +the troops in turn should enter Moscow a la maraude* to obtain +provisions for themselves, so that the army might have its future +provided for. + + +*As looters. + + +With regard to religion, Napoleon ordered the priests to be +brought back and services to be again performed in the churches. + +With regard to commerce and to provisioning the army, the +following was placarded everywhere: + + +PROCLAMATION! + +You, peaceful inhabitants of Moscow, artisans and workmen whom +misfortune has driven from the city, and you scattered tillers of +the soil, still kept out in the fields by groundless fear, listen! +Tranquillity is returning to this capital and order is being +restored in it. Your fellow countrymen are emerging boldly from +their hiding places on finding that they are respected. Any violence +to them or to their property is promptly punished. His Majesty the +Emperor and King protects them, and considers no one among you his +enemy except those who disobey his orders. He desires to end your +misfortunes and restore you to your homes and families. Respond, +therefore, to his benevolent intentions and come to us without fear. +Inhabitants, return with confidence to your abodes! You will soon find +means of satisfying your needs. Craftsmen and industrious artisans, +return to your work, your houses, your shops, where the protection +of guards awaits you! You shall receive proper pay for your work. +And lastly you too, peasants, come from the forests where you are +hiding in terror, return to your huts without fear, in full +assurance that you will find protection! Markets are established in +the city where peasants can bring their surplus supplies and the +products of the soil. The government has taken the following steps +to ensure freedom of sale for them: (1) From today, peasants, +husbandmen, and those living in the neighborhood of Moscow may without +any danger bring their supplies of all kinds to two appointed markets, +of which one is on the Mokhovaya Street and the other at the Provision +Market. (2) Such supplies will be bought from them at such prices as +seller and buyer may agree on, and if a seller is unable to obtain a +fair price he will be free to take his goods back to his village and +no one may hinder him under any pretense. (3) Sunday and Wednesday +of each week are appointed as the chief market days and to that end +a sufficient number of troops will be stationed along the highroads on +Tuesdays and Saturdays at such distances from the town as to protect +the carts. (4) Similar measures will be taken that peasants with their +carts and horses may meet with no hindrance on their return journey. +(5) Steps will immediately be taken to re-establish ordinary trading. + +Inhabitants of the city and villages, and you, workingmen and +artisans, to whatever nation you belong, you are called on to carry +out the paternal intentions of His Majesty the Emperor and King and to +co-operate with him for the public welfare! Lay your respect and +confidence at his feet and do not delay to unite with us! + + +With the object of raising the spirits of the troops and of the +people, reviews were constantly held and rewards distributed. The +Emperor rode through the streets to comfort the inhabitants, and, +despite his preoccupation with state affairs, himself visited the +theaters that were established by his order. + +In regard to philanthropy, the greatest virtue of crowned heads, +Napoleon also did all in his power. He caused the words Maison de ma +Mere to be inscribed on the charitable institutions, thereby combining +tender filial affection with the majestic benevolence of a monarch. He +visited the Foundling Hospital and, allowing the orphans saved by +him to kiss his white hands, graciously conversed with Tutolmin. Then, +as Thiers eloquently recounts, he ordered his soldiers to be paid in +forged Russian money which he had prepared: "Raising the use of +these means by an act worthy of himself and of the French army, he let +relief be distributed to those who had been burned out. But as food +was too precious to be given to foreigners, who were for the most part +enemies, Napoleon preferred to supply them with money with which to +purchase food from outside, and had paper rubles distributed to them." + +With reference to army discipline, orders were continually being +issued to inflict severe punishment for the nonperformance of military +duties and to suppress robbery. + + + + + +CHAPTER X + + +But strange to say, all these measures, efforts, and plans--which +were not at all worse than others issued in similar circumstances--did +not affect the essence of the matter but, like the hands of a clock +detached from the mechanism, swung about in an arbitrary and aimless +way without engaging the cogwheels. + +With reference to the military side--the plan of campaign--that work +of genius of which Thiers remarks that, "His genius never devised +anything more profound, more skillful, or more admirable," and +enters into a polemic with M. Fain to prove that this work of genius +must be referred not to the fourth but to the fifteenth of October- +that plan never was or could be executed, for it was quite out of +touch with the facts of the case. The fortifying of the Kremlin, for +which la Mosquee (as Napoleon termed the church of Basil the +Beatified) was to have been razed to the ground, proved quite useless. +The mining of the Kremlin only helped toward fulfilling Napoleon's +wish that it should be blown up when he left Moscow--as a child +wants the floor on which he has hurt himself to be beaten. The pursuit +of the Russian army, about which Napoleon was so concerned, produced +an unheard-of result. The French generals lost touch with the +Russian army of sixty thousand men, and according to Thiers it was +only eventually found, like a lost pin, by the skill--and apparently +the genius--of Murat. + +With reference to diplomacy, all Napoleon's arguments as to his +magnanimity and justice, both to Tutolmin and to Yakovlev (whose chief +concern was to obtain a greatcoat and a conveyance), proved useless; +Alexander did not receive these envoys and did not reply to their +embassage. + +With regard to legal matters, after the execution of the supposed +incendiaries the rest of Moscow burned down. + +With regard to administrative matters, the establishment of a +municipality did not stop the robberies and was only of use to certain +people who formed part of that municipality and under pretext of +preserving order looted Moscow or saved their own property from +being looted. + +With regard to religion, as to which in Egypt matters had so +easily been settled by Napoleon's visit to a mosque, no results were +achieved. Two or three priests who were found in Moscow did try to +carry out Napoleon's wish, but one of them was slapped in the face +by a French soldier while conducting service, and a French official +reported of another that: "The priest whom I found and invited to +say Mass cleaned and locked up the church. That night the doors were +again broken open, the padlocks smashed, the books mutilated, and +other disorders perpetrated." + +With reference to commerce, the proclamation to industrious +workmen and to peasants evoked no response. There were no +industrious workmen, and the peasants caught the commissaries who +ventured too far out of town with the proclamation and killed them. + +As to the theaters for the entertainment of the people and the +troops, these did not meet with success either. The theaters set up in +the Kremlin and in Posnyakov's house were closed again at once because +the actors and actresses were robbed. + +Even philanthropy did not have the desired effect. The genuine as +well as the false paper money which flooded Moscow lost its value. The +French, collecting booty, cared only for gold. Not only was the +paper money valueless which Napoleon so graciously distributed to +the unfortunate, but even silver lost its value in relation to gold. + +But the most amazing example of the ineffectiveness of the orders +given by the authorities at that time was Napoleon's attempt to stop +the looting and re-establish discipline. + +This is what the army authorities were reporting: + +"Looting continues in the city despite the decrees against it. Order +is not yet restored and not a single merchant is carrying on trade +in a lawful manner. The sutlers alone venture to trade, and they +sell stolen goods." + +"The neighborhood of my ward continues to be pillaged by soldiers of +the 3rd Corps who, not satisfied with taking from the unfortunate +inhabitants hiding in the cellars the little they have left, even have +the ferocity to wound them with their sabers, as I have repeatedly +witnessed." + +"Nothing new, except that the soldiers are robbing and pillaging- +October 9." + +"Robbery and pillaging continue. There is a band of thieves in our +district who ought to be arrested by a strong force--October 11." + +"The Emperor is extremely displeased that despite the strict +orders to stop pillage, parties of marauding Guards are continually +seen returning to the Kremlin. Among the Old Guard disorder and +pillage were renewed more violently than ever yesterday evening, +last night, and today. The Emperor sees with regret that the picked +soldiers appointed to guard his person, who should set an example of +discipline, carry disobedience to such a point that they break into +the cellars and stores containing army supplies. Others have disgraced +themselves to the extent of disobeying sentinels and officers, and +have abused and beaten them." + +"The Grand Marshal of the palace," wrote the governor, "complains +bitterly that in spite of repeated orders, the soldiers continue to +commit nuisances in all the courtyards and even under the very windows +of the Emperor." + +That army, like a herd of cattle run wild and trampling underfoot +the provender which might have saved it from starvation, disintegrated +and perished with each additional day it remained in Moscow. But it +did not go away. + +It began to run away only when suddenly seized by a panic caused +by the capture of transport trains on the Smolensk road, and by the +battle of Tarutino. The news of that battle of Tarutino, +unexpectedly received by Napoleon at a review, evoked in him a +desire to punish the Russians (Thiers says), and he issued the order +for departure which the whole army was demanding. + +Fleeing from Moscow the soldiers took with them everything they +had stolen. Napoleon, too, carried away his own personal tresor, but +on seeing the baggage trains that impeded the army, he was (Thiers +says) horror-struck. And yet with his experience of war he did not +order all the superfluous vehicles to be burned, as he had done with +those of a certain marshal when approaching Moscow. He gazed at the +caleches and carriages in which soldiers were riding and remarked that +it was a very good thing, as those vehicles could be used to carry +provisions, the sick, and the wounded. + +The plight of the whole army resembled that of a wounded animal +which feels it is perishing and does not know what it is doing. To +study the skillful tactics and aims of Napoleon and his army from +the time it entered Moscow till it was destroyed is like studying +the dying leaps and shudders of a mortally wounded animal. Very +often a wounded animal, hearing a rustle, rushes straight at the +hunter's gun, runs forward and back again, and hastens its own end. +Napoleon, under pressure from his whole army, did the same thing. +The rustle of the battle of Tarutino frightened the beast, and it +rushed forward onto the hunter's gun, reached him, turned back, and +finally--like any wild beast--ran back along the most +disadvantageous and dangerous path, where the old scent was familiar. + +During the whole of that period Napoleon, who seems to us to have +been the leader of all these movements--as the figurehead of a ship +may seem to a savage to guide the vessel--acted like a child who, +holding a couple of strings inside a carriage, thinks he is driving +it. + + + + + +CHAPTER XI + + +Early in the morning of the sixth of October Pierre went out of +the shed, and on returning stopped by the door to play with a little +blue-gray dog, with a long body and short bandy legs, that jumped +about him. This little dog lived in their shed, sleeping beside +Karataev at night; it sometimes made excursions into the town but +always returned again. Probably it had never had an owner, and it +still belonged to nobody and had no name. The French called it Azor; +the soldier who told stories called it Femgalka; Karataev and others +called it Gray, or sometimes Flabby. Its lack of a master, a name, +or even of a breed or any definite color did not seem to trouble the +blue-gray dog in the least. Its furry tail stood up firm and round +as a plume, its bandy legs served it so well that it would often +gracefully lift a hind leg and run very easily and quickly on three +legs, as if disdaining to use all four. Everything pleased it. Now +it would roll on its back, yelping with delight, now bask in the sun +with a thoughtful air of importance, and now frolic about playing with +a chip of wood or a straw. + +Pierre's attire by now consisted of a dirty torn shirt (the only +remnant of his former clothing), a pair of soldier's trousers which by +Karataev's advice he tied with string round the ankles for warmth, and +a peasant coat and cap. Physically he had changed much during this +time. He no longer seemed stout, though he still had the appearance of +solidity and strength hereditary in his family. A beard and mustache +covered the lower part of his face, and a tangle of hair, infested +with lice, curled round his head like a cap. The look of his eyes +was resolute, calm, and animatedly alert, as never before. The +former slackness which had shown itself even in his eyes was now +replaced by an energetic readiness for action and resistance. His feet +were bare. + +Pierre first looked down the field across which vehicles and +horsemen were passing that morning, then into the distance across +the river, then at the dog who was pretending to be in earnest about +biting him, and then at his bare feet which he placed with pleasure in +various positions, moving his dirty thick big toes. Every time he +looked at his bare feet a smile of animated self-satisfaction +flitted across his face. The sight of them reminded him of all he +had experienced and learned during these weeks and this recollection +was pleasant to him. + +For some days the weather had been calm and clear with slight frosts +in the mornings--what is called an "old wives' summer." + +In the sunshine the air was warm, and that warmth was particularly +pleasant with the invigorating freshness of the morning frost still in +the air. + +On everything--far and near--lay the magic crystal glitter seen only +at that time autumn. The Sparrow Hills were visible in the distance, +with the village, the church, and the large white house. The bare +trees, the sand, the bricks and roofs of the houses, the green +church spire, and the corners of the white house in the distance, +all stood out in the transparent air in most delicate outline and with +unnatural clearness. Near by could be seen the familiar ruins of a +half-burned mansion occupied by the French, with lilac bushes still +showing dark green beside the fence. And even that ruined and befouled +house--which in dull weather was repulsively ugly--seemed quietly +beautiful now, in the clear, motionless brilliance. + +A French corporal, with coat unbuttoned in a homely way, a +skullcap on his head, and a short pipe in his mouth, came from +behind a corner of the shed and approached Pierre with a friendly +wink. + +"What sunshine, Monsieur Kiril!" (Their name for Pierre.) "Eh? +Just like spring!" + +And the corporal leaned against the door and offered Pierre his +pipe, though whenever he offered it Pierre always declined it. + +"To be on the march in such weather..." he began. + +Pierre inquired what was being said about leaving, and the +corporal told him that nearly all the troops were starting and there +ought to be an order about the prisoners that day. Sokolov, one of the +soldiers in the shed with Pierre, was dying, and Pierre told the +corporal that something should be done about him. The corporal replied +that Pierre need not worry about that as they had an ambulance and a +permanent hospital and arrangements would be made for the sick, and +that in general everything that could happen had been foreseen by +the authorities. + +"Besides, Monsieur Kiril, you have only to say a word to the +captain, you know. He is a man who never forgets anything. Speak to +the captain when he makes his round, he will do anything for you." + +(The captain of whom the corporal spoke often had long chats with +Pierre and showed him all sorts of favors.) + +"'You see, St. Thomas,' he said to me the other day. 'Monsieur Kiril +is a man of education, who speaks French. He is a Russian seigneur who +has had misfortunes, but he is a man. He knows what's what.... If he +wants anything and asks me, he won't get a refusal. When one has +studied, you see, one likes education and well-bred people.' It is for +your sake I mention it, Monsieur Kiril. The other day if it had not +been for you that affair would have ended ill." + +And after chatting a while longer, the corporal went away. (The +affair he had alluded to had happened a few days before--a fight +between the prisoners and the French soldiers, in which Pierre had +succeeded in pacifying his comrades.) Some of the prisoners who had +heard Pierre talking to the corporal immediately asked what the +Frenchman had said. While Pierre was repeating what he had been told +about the army leaving Moscow, a thin, sallow, tattered French soldier +came up to the door of the shed. Rapidly and timidly raising his +fingers to his forehead by way of greeting, he asked Pierre whether +the soldier Platoche to whom he had given a shirt to sew was in that +shed. + +A week before the French had had boot leather and linen issued to +them, which they had given out to the prisoners to make up into +boots and shirts for them. + +"Ready, ready, dear fellow!" said Karataev, coming out with a neatly +folded shirt. + +Karataev, on account of the warm weather and for convenience at +work, was wearing only trousers and a tattered shirt as black as soot. +His hair was bound round, workman fashion, with a wisp of lime-tree +bast, and his round face seemed rounder and pleasanter than ever. + +"A promise is own brother to performance! I said Friday and here +it is, ready," said Platon, smiling and unfolding the shirt he had +sewn. + +The Frenchman glanced around uneasily and then, as if overcoming his +hesitation, rapidly threw off his uniform and put on the shirt. He had +a long, greasy, flowered silk waistcoat next to his sallow, thin +bare body, but no shirt. He was evidently afraid the prisoners looking +on would laugh at him, and thrust his head into the shirt hurriedly. +None of the prisoners said a word. + +"See, it fits well!" Platon kept repeating, pulling the shirt +straight. + +The Frenchman, having pushed his head and hands through, without +raising his eyes, looked down at the shirt and examined the seams. + +"You see, dear man, this is not a sewing shop, and I had no proper +tools; and, as they say, one needs a tool even to kill a louse," +said Platon with one of his round smiles, obviously pleased with his +work. + +"It's good, quite good, thank you," said the Frenchman, in French, +"but there must be some linen left over. + +"It will fit better still when it sets to your body," said Karataev, +still admiring his handiwork. "You'll be nice and comfortable...." + +"Thanks, thanks, old fellow.... But the bits left over?" said the +Frenchman again and smiled. He took out an assignation ruble note +and gave it to Karataev. "But give me the pieces that are over." + +Pierre saw that Platon did not want to understand what the Frenchman +was saying, and he looked on without interfering. Karataev thanked the +Frenchman for the money and went on admiring his own work. The +Frenchman insisted on having the pieces returned that were left over +and asked Pierre to translate what he said. + +"What does he want the bits for?" said Karataev. "They'd make fine +leg bands for us. Well, never mind." + +And Karataev, with a suddenly changed and saddened expression, +took a small bundle of scraps from inside his shirt and gave it to the +Frenchman without looking at him. "Oh dear!" muttered Karataev and +went away. The Frenchman looked at the linen, considered for a moment, +then looked inquiringly at Pierre and, as if Pierre's look had told +him something, suddenly blushed and shouted in a squeaky voice: + +"Platoche! Eh, Platoche! Keep them yourself!" And handing back the +odd bits he turned and went out. + +"There, look at that," said Karataev, swaying his head. "People said +they were not Christians, but they too have souls. It's what the old +folk used to say: 'A sweating hand's an open hand, a dry hand's +close.' He's naked, but yet he's given it back." + +Karataev smiled thoughtfully and was silent awhile looking at the +pieces. + +"But they'll make grand leg bands, dear friend," he said, and went +back into the shed. + + + + + +CHAPTER XII + + +Four weeks had passed since Pierre had been taken prisoner and +though the French had offered to move him from the men's to the +officers' shed, he had stayed in the shed where he was first put. + +In burned and devastated Moscow Pierre experienced almost the +extreme limits of privation a man can endure; but thanks to his +physical strength and health, of which he had till then been +unconscious, and thanks especially to the fact that the privations +came so gradually that it was impossible to say when they began, he +endured his position not only lightly but joyfully. And just at this +time he obtained the tranquillity and ease of mind he had formerly +striven in vain to reach. He had long sought in different ways that +tranquillity of mind, that inner harmony which had so impressed him in +the soldiers at the battle of Borodino. He had sought it in +philanthropy, in Freemasonry, in the dissipations of town life, in +wine, in heroic feats of self-sacrifice, and in romantic love for +Natasha; he had sought it by reasoning--and all these quests and +experiments had failed him. And now without thinking about it he had +found that peace and inner harmony only through the horror of death, +through privation, and through what he recognized in Karataev. + +Those dreadful moments he had lived through at the executions had as +it were forever washed away from his imagination and memory the +agitating thoughts and feelings that had formerly seemed so important. +It did not now occur to him to think of Russia, or the war, or +politics, or Napoleon. It was plain to him that all these things +were no business of his, and that he was not called on to judge +concerning them and therefore could not do so. "Russia and summer +weather are not bound together," he thought, repeating words of +Karataev's which he found strangely consoling. His intention of +killing Napoleon and his calculations of the cabalistic number of +the beast of the Apocalypse now seemed to him meaningless and even +ridiculous. His anger with his wife and anxiety that his name should +not be smirched now seemed not merely trivial but even amusing. What +concern was it of his that somewhere or other that woman was leading +the life she preferred? What did it matter to anybody, and +especially to him, whether or not they found out that their prisoner's +name was Count Bezukhov? + +He now often remembered his conversation with Prince Andrew and +quite agreed with him, though he understood Prince Andrew's thoughts +somewhat differently. Prince Andrew had thought and said that +happiness could only be negative, but had said it with a shade of +bitterness and irony as though he was really saying that all desire +for positive happiness is implanted in us merely to torment us and +never be satisfied. But Pierre believed it without any mental +reservation. The absence of suffering, the satisfaction of one's needs +and consequent freedom in the choice of one's occupation, that is, +of one's way of life, now seemed to Pierre to be indubitably man's +highest happiness. Here and now for the first time he fully +appreciated the enjoyment of eating when he wanted to eat, drinking +when he wanted to drink, sleeping when he wanted to sleep, of warmth +when he was cold, of talking to a fellow man when he wished to talk +and to hear a human voice. The satisfaction of one's needs--good food, +cleanliness, and freedom--now that he was deprived of all this, seemed +to Pierre to constitute perfect happiness; and the choice of +occupation, that is, of his way of life--now that that was so +restricted--seemed to him such an easy matter that he forgot that a +superfluity of the comforts of life destroys all joy in satisfying +one's needs, while great freedom in the choice of occupation--such +freedom as his wealth, his education, and his social position had +given him in his own life--is just what makes the choice of occupation +insolubly difficult and destroys the desire and possibility of +having an occupation. + +All Pierre's daydreams now turned on the time when he would be free. +Yet subsequently, and for the rest of his life, he thought and spoke +with enthusiasm of that month of captivity, of those irrecoverable, +strong, joyful sensations, and chiefly of the complete peace of mind +and inner freedom which he experienced only during those weeks. + +When on the first day he got up early, went out of the shed at dawn, +and saw the cupolas and crosses of the New Convent of the Virgin still +dark at first, the hoarfrost on the dusty grass, the Sparrow Hills, +and the wooded banks above the winding river vanishing in the purple +distance, when he felt the contact of the fresh air and heard the +noise of the crows flying from Moscow across the field, and when +afterwards light gleamed from the east and the sun's rim appeared +solemnly from behind a cloud, and the cupolas and crosses, the +hoarfrost, the distance and the river, all began to sparkle in the +glad light--Pierre felt a new joy and strength in life such as he +had never before known. And this not only stayed with him during the +whole of his imprisonment, but even grew in strength as the +hardships of his position increased. + +That feeling of alertness and of readiness for anything was still +further strengthened in him by the high opinion his fellow prisoners +formed of him soon after his arrival at the shed. With his knowledge +of languages, the respect shown him by the French, his simplicity, his +readiness to give anything asked of him (he received the allowance +of three rubles a week made to officers); with his strength, which +he showed to the soldiers by pressing nails into the walls of the hut; +his gentleness to his companions, and his capacity for sitting still +and thinking without doing anything (which seemed to them +incomprehensible), he appeared to them a rather mysterious and +superior being. The very qualities that had been a hindrance, if not +actually harmful, to him in the world he had lived in--his strength, +his disdain for the comforts of life, his absent-mindedness and +simplicity--here among these people gave him almost the status of a +hero. And Pierre felt that their opinion placed responsibilities +upon him. + + + + +CHAPTER XIII + + +The French evacuation began on the night between the sixth and +seventh of October: kitchens and sheds were dismantled, carts +loaded, and troops and baggage trains started. + +At seven in the morning a French convoy in marching trim, wearing +shakos and carrying muskets, knapsacks, and enormous sacks, stood in +front of the sheds, and animated French talk mingled with curses +sounded all along the lines. + +In the shed everyone was ready, dressed, belted, shod, and only +awaited the order to start. The sick soldier, Sokolov, pale and thin +with dark shadows round his eyes, alone sat in his place barefoot +and not dressed. His eyes, prominent from the emaciation of his +face, gazed inquiringly at his comrades who were paying no attention +to him, and he moaned regularly and quietly. It was evidently not so +much his sufferings that caused him to moan (he had dysentery) as +his fear and grief at being left alone. + +Pierre, girt with a rope round his waist and wearing shoes +Karataev had made for him from some leather a French soldier had +torn off a tea chest and brought to have his boots mended with, went +up to the sick man and squatted down beside him. + +"You know, Sokolov, they are not all going away! They have a +hospital here. You may be better off than we others," said Pierre. + +"O Lord! Oh, it will be the death of me! O Lord!" moaned the man +in a louder voice. + +"I'll go and ask them again directly," said Pierre, rising and going +to the door of the shed. + +Just as Pierre reached the door, the corporal who had offered him +a pipe the day before came up to it with two soldiers. The corporal +and soldiers were in marching kit with knapsacks and shakos that had +metal straps, and these changed their familiar faces. + +The corporal came, according to orders, to shut the door. The +prisoners had to be counted before being let out. + +"Corporal, what will they do with the sick man?..." Pierre began. + +But even as he spoke he began to doubt whether this was the corporal +he knew or a stranger, so unlike himself did the corporal seem at that +moment. Moreover, just as Pierre was speaking a sharp rattle of +drums was suddenly heard from both sides. The corporal frowned at +Pierre's words and, uttering some meaningless oaths, slammed the door. +The shed became semidark, and the sharp rattle of the drums on two +sides drowned the sick man's groans. + +"There it is!... It again!..." said Pierre to himself, and an +involuntary shudder ran down his spine. In the corporal's changed +face, in the sound of his voice, in the stirring and deafening noise +of the drums, he recognized that mysterious, callous force which +compelled people against their will to kill their fellow men--that +force the effect of which he had witnessed during the executions. To +fear or to try to escape that force, to address entreaties or +exhortations to those who served as its tools, was useless. Pierre +knew this now. One had to wait and endure. He did not again go to +the sick man, nor turn to look at him, but stood frowning by the +door of the hut. + +When that door was opened and the prisoners, crowding against one +another like a flock of sheep, squeezed into the exit, Pierre pushed +his way forward and approached that very captain who as the corporal +had assured him was ready to do anything for him. The captain was also +in marching kit, and on his cold face appeared that same it which +Pierre had recognized in the corporal's words and in the roll of the +drums. + +"Pass on, pass on!" the captain reiterated, frowning sternly, and +looking at the prisoners who thronged past him. + +Pierre went up to him, though he knew his attempt would be vain. + +"What now?" the officer asked with a cold look as if not recognizing +Pierre. + +Pierre told him about the sick man. + +"He'll manage to walk, devil take him!" said the captain. "Pass +on, pass on!" he continued without looking at Pierre. + +"But he is dying," Pierre again began. + +"Be so good..." shouted the captain, frowning angrily. + +"Dram-da-da-dam, dam-dam..." rattled the drums, and Pierre +understood that this mysterious force completely controlled these +men and that it was now useless to say any more. + +The officer prisoners were separated from the soldiers and told to +march in front. There were about thirty officers, with Pierre among +them, and about three hundred men. + +The officers, who had come from the other sheds, were all +strangers to Pierre and much better dressed than he. They looked at +him and at his shoes mistrustfully, as at an alien. Not far from him +walked a fat major with a sallow, bloated, angry face, who was wearing +a Kazan dressing grown tied round with a towel, and who evidently +enjoyed the respect of his fellow prisoners. He kept one hand, in +which he clasped his tobacco pouch, inside the bosom of his dressing +gown and held the stem of his pipe firmly with the other. Panting +and puffing, the major grumbled and growled at everybody because he +thought he was being pushed and that they were all hurrying when +they had nowhere to hurry to and were all surprised at something +when there was nothing to be surprised at. Another, a thin little +officer, was speaking to everyone, conjecturing where they were now +being taken and how far they would get that day. An official in felt +boots and wearing a commissariat uniform ran round from side to side +and gazed at the ruins of Moscow, loudly announcing his observations +as to what had been burned down and what this or that part of the city +was that they could see. A third officer, who by his accent was a +Pole, disputed with the commissariat officer, arguing that he was +mistaken in his identification of the different wards of Moscow. + +"What are you disputing about?" said the major angrily. "What does +it matter whether it is St. Nicholas or St. Blasius? You see it's +burned down, and there's an end of it.... What are you pushing for? +Isn't the road wide enough?" said he, turning to a man behind him +who was not pushing him at all. + +"Oh, oh, oh! What have they done?" the prisoners on one side and +another were heard saying as they gazed on the charred ruins. "All +beyond the river, and Zubova, and in the Kremlin.... Just look! +There's not half of it left. Yes, I told you--the whole quarter beyond +the river, and so it is." + +"Well, you know it's burned, so what's the use of talking?" said the +major. + +As they passed near a church in the Khamovniki (one of the few +unburned quarters of Moscow) the whole mass of prisoners suddenly +started to one side and exclamations of horror and disgust were heard. + +"Ah, the villains! What heathens! Yes; dead, dead, so he is... And +smeared with something!" + +Pierre too drew near the church where the thing was that evoked +these exclamations, and dimly made out something leaning against the +palings surrounding the church. From the words of his comrades who saw +better than he did, he found that this was the body of a man, set +upright against the palings with its face smeared with soot. + +"Go on! What the devil... Go on! Thirty thousand devils!..." the +convoy guards began cursing and the French soldiers, with fresh +virulence, drove away with their swords the crowd of prisoners who +were gazing at the dead man. + + + + + +CHAPTER XIV + + +Through the cross streets of the Khamovniki quarter the prisoners +marched, followed only by their escort and the vehicles and wagons +belonging to that escort, but when they reached the supply stores they +came among a huge and closely packed train of artillery mingled with +private vehicles. + +At the bridge they all halted, waiting for those in front to get +across. From the bridge they had a view of endless lines of moving +baggage trains before and behind them. To the right, where the +Kaluga road turns near Neskuchny, endless rows of troops and carts +stretched away into the distance. These were troops of Beauharnais' +corps which had started before any of the others. Behind, along the +riverside and across the Stone Bridge, were Ney's troops and +transport. + +Davout's troops, in whose charge were the prisoners, were crossing +the Crimean bridge and some were already debouching into the Kaluga +road. But the baggage trains stretched out so that the last of +Beauharnais' train had not yet got out of Moscow and reached the +Kaluga road when the vanguard of Ney's army was already emerging +from the Great Ordynka Street. + +When they had crossed the Crimean bridge the prisoners moved a few +steps forward, halted, and again moved on, and from all sides vehicles +and men crowded closer and closer together. They advanced the few +hundred paces that separated the bridge from the Kaluga road, taking +more than an hour to do so, and came out upon the square where the +streets of the Transmoskva ward and the Kaluga road converge, and +the prisoners jammed close together had to stand for some hours at +that crossway. From all sides, like the roar of the sea, were heard +the rattle of wheels, the tramp of feet, and incessant shouts of anger +and abuse. Pierre stood pressed against the wall of a charred house, +listening to that noise which mingled in his imagination with the roll +of the drums. + +To get a better view, several officer prisoners climbed onto the +wall of the half-burned house against which Pierre was leaning. + +"What crowds! Just look at the crowds!... They've loaded goods +even on the cannon! Look there, those are furs!" they exclaimed. "Just +see what the blackguards have looted.... There! See what that one +has behind in the cart.... Why, those are settings taken from some +icons, by heaven!... Oh, the rascals!... See how that fellow has +loaded himself up, he can hardly walk! Good lord, they've even grabbed +those chaises!... See that fellow there sitting on the trunks.... +Heavens! They're fighting." + +"That's right, hit him on the snout--on his snout! Like this, we +shan't get away before evening. Look, look there.... Why, that must be +Napoleon's own. See what horses! And the monograms with a crown! +It's like a portable house.... That fellow's dropped his sack and +doesn't see it. Fighting again... A woman with a baby, and not +bad-looking either! Yes, I dare say, that's the way they'll let you +pass... Just look, there's no end to it. Russian wenches, by heaven, +so they are! In carriages--see how comfortably they've settled +themselves!" + +Again, as at the church in Khamovniki, a wave of general curiosity +bore all the prisoners forward onto the road, and Pierre, thanks to +his stature, saw over the heads of the others what so attracted +their curiosity. In three carriages involved among the munition carts, +closely squeezed together, sat women with rouged faces, dressed in +glaring colors, who were shouting something in shrill voices. + +From the moment Pierre had recognized the appearance of the +mysterious force nothing had seemed to him strange or dreadful: +neither the corpse smeared with soot for fun nor these women +hurrying away nor the burned ruins of Moscow. All that he now +witnessed scarcely made an impression on him--as if his soul, making +ready for a hard struggle, refused to receive impressions that might +weaken it. + +The women's vehicles drove by. Behind them came more carts, +soldiers, wagons, soldiers, gun carriages, carriages, soldiers, +ammunition carts, more soldiers, and now and then women. + +Pierre did not see the people as individuals but saw their movement. + +All these people and horses seemed driven forward by some +invisible power. During the hour Pierre watched them they all came +flowing from the different streets with one and the same desire to get +on quickly; they all jostled one another, began to grow angry and to +fight, white teeth gleamed, brows frowned, ever the same words of +abuse flew from side to side, and all the faces bore the same +swaggeringly resolute and coldly cruel expression that had struck +Pierre that morning on the corporal's face when the drums were +beating. + +It was not till nearly evening that the officer commanding the +escort collected his men and with shouts and quarrels forced his way +in among the baggage trains, and the prisoners, hemmed in on all +sides, emerged onto the Kaluga road. + +They marched very quickly, without resting, and halted only when the +sun began to set. The baggage carts drew up close together and the men +began to prepare for their night's rest. They all appeared angry and +dissatisfied. For a long time, oaths, angry shouts, and fighting could +be heard from all sides. A carriage that followed the escort ran +into one of the carts and knocked a hole in it with its pole. +Several soldiers ran toward the cart from different sides: some beat +the carriage horses on their heads, turning them aside, others +fought among themselves, and Pierre saw that one German was badly +wounded on the head by a sword. + +It seemed that all these men, now that they had stopped amid +fields in the chill dusk of the autumn evening, experienced one and +the same feeling of unpleasant awakening from the hurry and +eagerness to push on that had seized them at the start. Once at a +standstill they all seemed to understand that they did not yet know +where they were going, and that much that was painful and difficult +awaited them on this journey. + +During this halt the escort treated the prisoners even worse than +they had done at the start. It was here that the prisoners for the +first time received horseflesh for their meat ration. + +From the officer down to the lowest soldier they showed what +seemed like personal spite against each of the prisoners, in +unexpected contrast to their former friendly relations. + +This spite increased still more when, on calling over the roll of +prisoners, it was found that in the bustle of leaving Moscow one +Russian soldier, who had pretended to suffer from colic, had +escaped. Pierre saw a Frenchman beat a Russian soldier cruelly for +straying too far from the road, and heard his friend the captain +reprimand and threaten to court-martial a noncommissioned officer on +account of the escape of the Russian. To the noncommissioned officer's +excuse that the prisoner was ill and could not walk, the officer +replied that the order was to shoot those who lagged behind. Pierre +felt that that fatal force which had crushed him during the +executions, but which he had not felt during his imprisonment, now +again controlled his existence. It was terrible, but he felt that in +proportion to the efforts of that fatal force to crush him, there grew +and strengthened in his soul a power of life independent of it. + +He ate his supper of buckwheat soup with horseflesh and chatted with +his comrades. + +Neither Pierre nor any of the others spoke of what they had seen +in Moscow, or of the roughness of their treatment by the French, or of +the order to shoot them which had been announced to them. As if in +reaction against the worsening of their position they were all +particularly animated and gay. They spoke of personal reminiscences, +of amusing scenes they had witnessed during the campaign, and +avoided all talk of their present situation. + +The sun had set long since. Bright stars shone out here and there in +the sky. A red glow as of a conflagration spread above the horizon +from the rising full moon, and that vast red ball swayed strangely +in the gray haze. It grew light. The evening was ending, but the night +had not yet come. Pierre got up and left his new companions, +crossing between the campfires to the other side of the road where +he had been told the common soldier prisoners were stationed. He +wanted to talk to them. On the road he was stopped by a French +sentinel who ordered him back. + +Pierre turned back, not to his companions by the campfire, but to an +unharnessed cart where there was nobody. Tucking his legs under him +and dropping his head he sat down on the cold ground by the wheel of +the cart and remained motionless a long while sunk in thought. +Suddenly he burst out into a fit of his broad, good-natured +laughter, so loud that men from various sides turned with surprise +to see what this strange and evidently solitary laughter could mean. + +"Ha-ha-ha!" laughed Pierre. And he said aloud to himself: "The +soldier did not let me pass. They took me and shut me up. They hold me +captive. What, me? Me? My immortal soul? Ha-ha-ha! Ha-ha-ha!..." and +he laughed till tears started to his eyes. + +A man got up and came to see what this queer big fellow was laughing +at all by himself. Pierre stopped laughing, got up, went farther +away from the inquisitive man, and looked around him. + +The huge, endless bivouac that had previously resounded with the +crackling of campfires and the voices of many men had grown quiet, the +red campfires were growing paler and dying down. High up in the +light sky hung the full moon. Forests and fields beyond the camp, +unseen before, were now visible in the distance. And farther still, +beyond those forests and fields, the bright, oscillating, limitless +distance lured one to itself. Pierre glanced up at the sky and the +twinkling stars in its faraway depths. "And all that is me, all that +is within me, and it is all I!" thought Pierre. "And they caught all +that and put it into a shed boarded up with planks!" He smiled, and +went and lay down to sleep beside his companions. + + + + + +CHAPTER XV + + +In the early days of October another envoy came to Kutuzov with a +letter from Napoleon proposing peace and falsely dated from Moscow, +though Napoleon was already not far from Kutuzov on the old Kaluga +road. Kutuzov replied to this letter as he had done to the one +formerly brought by Lauriston, saying that there could be no +question of peace. + +Soon after that a report was received from Dorokhov's guerrilla +detachment operating to the left of Tarutino that troops of +Broussier's division had been seen at Forminsk and that being +separated from the rest of the French army they might easily be +destroyed. The soldiers and officers again demanded action. Generals +on the staff, excited by the memory of the easy victory at Tarutino, +urged Kutuzov to carry out Dorokhov's suggestion. Kutuzov did not +consider any offensive necessary. The result was a compromise which +was inevitable: a small detachment was sent to Forminsk to attack +Broussier. + +By a strange coincidence, this task, which turned out to be a most +difficult and important one, was entrusted to Dokhturov--that same +modest little Dokhturov whom no one had described to us as drawing +up plans of battles, dashing about in front of regiments, showering +crosses on batteries, and so on, and who was thought to be and was +spoken of as undecided and undiscerning--but whom we find commanding +wherever the position was most difficult all through the +Russo-French wars from Austerlitz to the year 1813. At Austerlitz he +remained last at the Augezd dam, rallying the regiments, saving what +was possible when all were flying and perishing and not a single +general was left in the rear guard. Ill with fever he went to Smolensk +with twenty thousand men to defend the town against Napoleon's whole +army. In Smolensk, at the Malakhov Gate, he had hardly dozed off in +a paroxysm of fever before he was awakened by the bombardment of the +town--and Smolensk held out all day long. At the battle of Borodino, +when Bagration was killed and nine tenths of the men of our left flank +had fallen and the full force of the French artillery fire was +directed against it, the man sent there was this same irresolute and +undiscerning Dokhturov--Kutuzov hastening to rectify a mistake he +had made by sending someone else there first. And the quiet little +Dokhturov rode thither, and Borodino became the greatest glory of +the Russian army. Many heroes have been described to us in verse and +prose, but of Dokhturov scarcely a word has been said. + +It was Dokhturov again whom they sent to Forminsk and from there +to Malo-Yaroslavets, the place where the last battle with the French +was fought and where the obvious disintegration of the French army +began; and we are told of many geniuses and heroes of that period of +the campaign, but of Dokhturov nothing or very little is said and that +dubiously. And this silence about Dokhturov is the clearest +testimony to his merit. + +It is natural for a man who does not understand the workings of a +machine to imagine that a shaving that has fallen into it by chance +and is interfering with its action and tossing about in it is its most +important part. The man who does not understand the construction of +the machine cannot conceive that the small connecting cogwheel which +revolves quietly is one of the most essential parts of the machine, +and not the shaving which merely harms and hinders the working. + +On the tenth of October when Dokhturov had gone halfway to +Forminsk and stopped at the village of Aristovo, preparing +faithfully to execute the orders he had received, the whole French +army having, in its convulsive movement, reached Murat's position +apparently in order to give battle--suddenly without any reason turned +off to the left onto the new Kaluga road and began to enter +Forminsk, where only Broussier had been till then. At that time +Dokhturov had under his command, besides Dorokhov's detachment, the +two small guerrilla detachments of Figner and Seslavin. + +On the evening of October 11 Seslavin came to the Aristovo +headquarters with a French guardsman he had captured. The prisoner +said that the troops that had entered Forminsk that day were the +vanguard of the whole army, that Napoleon was there and the whole army +had left Moscow four days previously. That same evening a house serf +who had come from Borovsk said he had seen an immense army entering +the town. Some Cossacks of Dokhturov's detachment reported having +sighted the French Guards marching along the road to Borovsk. From all +these reports it was evident that where they had expected to meet a +single division there was now the whole French army marching from +Moscow in an unexpected direction--along the Kaluga road. Dokhturov +was unwilling to undertake any action, as it was not clear to him +now what he ought to do. He had been ordered to attack Forminsk. But +only Broussier had been there at that time and now the whole French +army was there. Ermolov wished to act on his own judgment, but +Dokhturov insisted that he must have Kutuzov's instructions. So it was +decided to send a dispatch to the staff. + +For this purpose a capable officer, Bolkhovitinov, was chosen, who +was to explain the whole affair by word of mouth, besides delivering a +written report. Toward midnight Bolkhovitinov, having received the +dispatch and verbal instructions, galloped off to the General Staff +accompanied by a Cossack with spare horses. + + + + + +CHAPTER XVI + + +It was a warm, dark, autumn night. It had been raining for four +days. Having changed horses twice and galloped twenty miles in an hour +and a half over a sticky, muddy road, Bolkhovitinov reached Litashevka +after one o'clock at night. Dismounting at a cottage on whose wattle +fence hung a signboard, GENERAL STAFF, and throwing down his reins, he +entered a dark passage. + +"The general on duty, quick! It's very important!" said he to +someone who had risen and was sniffing in the dark passage. + +"He has been very unwell since the evening and this is the third +night he has not slept," said the orderly pleadingly in a whisper. +"You should wake the captain first." + +"But this is very important, from General Dokhturov," said +Bolkhovitinov, entering the open door which he had found by feeling in +the dark. + +The orderly had gone in before him and began waking somebody. + +"Your honor, your honor! A courier." + +"What? What's that? From whom?" came a sleepy voice. + +"From Dokhturov and from Alexey Petrovich. Napoleon is at Forminsk," +said Bolkhovitinov, unable to see in the dark who was speaking but +guessing by the voice that it was not Konovnitsyn. + +The man who had wakened yawned and stretched himself. + +"I don't like waking him," he said, fumbling for something. "He is +very ill. Perhaps this is only a rumor." + +"Here is the dispatch," said Bolkhovitinov. "My orders are to give +it at once to the general on duty." + +"Wait a moment, I'll light a candle. You damned rascal, where do you +always hide it?" said the voice of the man who was stretching himself, +to the orderly. (This was Shcherbinin, Konovnitsyn's adjutant.) +"I've found it, I've found it!" he added. + +The orderly was striking a light and Shcherbinin was fumbling for +something on the candlestick. + +"Oh, the nasty beasts!" said he with disgust. + +By the light of the sparks Bolkhovitinov saw Shcherbinin's +youthful face as he held the candle, and the face of another man who +was still asleep. This was Konovnitsyn. + +When the flame of the sulphur splinters kindled by the tinder burned +up, first blue and then red, Shcherbinin lit the tallow candle, from +the candlestick of which the cockroaches that had been gnawing it were +running away, and looked at the messenger. Bolkhovitinov was +bespattered all over with mud and had smeared his face by wiping it +with his sleeve. + +"Who gave the report?" inquired Shcherbinin, taking the envelope. + +"The news is reliable," said Bolkhovitinov. "Prisoners, Cossacks, +and the scouts all say the same thing." + +"There's nothing to be done, we'll have to wake him," said +Shcherbinin, rising and going up to the man in the nightcap who lay +covered by a greatcoat. "Peter Petrovich!" said he. (Konovnitsyn did +not stir.) "To the General Staff!" he said with a smile, knowing +that those words would be sure to arouse him. + +And in fact the head in the nightcap was lifted at once. On +Konovnitsyn's handsome, resolute face with cheeks flushed by fever, +there still remained for an instant a faraway dreamy expression remote +from present affairs, but then he suddenly started and his face +assumed its habitual calm and firm appearance. + +"Well, what is it? From whom?" he asked immediately but without +hurry, blinking at the light. + +While listening to the officer's report Konovnitsyn broke the seal +and read the dispatch. Hardly had he done so before he lowered his +legs in their woolen stockings to the earthen floor and began +putting on his boots. Then he took off his nightcap, combed his hair +over his temples, and donned his cap. + +"Did you get here quickly? Let us go to his Highness." + +Konovnitsyn had understood at once that the news brought was of +great importance and that no time must be lost. He did not consider or +ask himself whether the news was good or bad. That did not interest +him. He regarded the whole business of the war not with his +intelligence or his reason but by something else. There was within him +a deep unexpressed conviction that all would be well, but that one +must not trust to this and still less speak about it, but must only +attend to one's own work. And he did his work, giving his whole +strength to the task. + +Peter Petrovich Konovnitsyn, like Dokhturov, seems to have been +included merely for propriety's sake in the list of the so-called +heroes of 1812--the Barclays, Raevskis, Ermolovs, Platovs, and +Miloradoviches. Like Dokhturov he had the reputation of being a man of +very limited capacity and information, and like Dokhturov he never +made plans of battle but was always found where the situation was most +difficult. Since his appointment as general on duty he had always +slept with his door open, giving orders that every messenger should be +allowed to wake him up. In battle he was always under fire, so that +Kutuzov reproved him for it and feared to send him to the front, and +like Dokhturov he was one of those unnoticed cogwheels that, without +clatter or noise, constitute the most essential part of the machine. + +Coming out of the hut into the damp, dark night Konovnitsyn frowned- +partly from an increased pain in his head and partly at the unpleasant +thought that occurred to him, of how all that nest of influential +men on the staff would be stirred up by this news, especially +Bennigsen, who ever since Tarutino had been at daggers drawn with +Kutuzov; and how they would make suggestions, quarrel, issue orders, +and rescind them. And this premonition was disagreeable to him +though he knew it could not be helped. + +And in fact Toll, to whom he went to communicate the news, +immediately began to expound his plans to a general sharing his +quarters, until Konovnitsyn, who listened in weary silence, reminded +him that they must go to see his Highness. + + + + + +CHAPTER XVII + + +Kutuzov like all old people did not sleep much at night. He often +fell asleep unexpectedly in the daytime, but at night, lying on his +bed without undressing, he generally remained awake thinking. + +So he lay now on his bed, supporting his large, heavy, scarred +head on his plump hand, with his one eye open, meditating and +peering into the darkness. + +Since Bennigsen, who corresponded with the Emperor and had more +influence than anyone else on the staff, had begun to avoid him, +Kutuzov was more at ease as to the possibility of himself and his +troops being obliged to take part in useless aggressive movements. The +lesson of the Tarutino battle and of the day before it, which +Kutuzov remembered with pain, must, he thought, have some effect on +others too. + +"They must understand that we can only lose by taking the offensive. +Patience and time are my warriors, my champions," thought Kutuzov. +He knew that an apple should not be plucked while it is green. It will +fall of itself when ripe, but if picked unripe the apple is spoiled, +the tree is harmed, and your teeth are set on edge. Like an +experienced sportsman he knew that the beast was wounded, and +wounded as only the whole strength of Russia could have wounded it, +but whether it was mortally wounded or not was still an undecided +question. Now by the fact of Lauriston and Barthelemi having been +sent, and by the reports of the guerrillas, Kutuzov was almost sure +that the wound was mortal. But he needed further proofs and it was +necessary to wait. + +"They want to run to see how they have wounded it. Wait and we shall +see! Continual maneuvers, continual advances!" thought he. "What +for? Only to distinguish themselves! As if fighting were fun. They are +like children from whom one can't get any sensible account of what has +happened because they all want to show how well they can fight. But +that's not what is needed now. + +"And what ingenious maneuvers they all propose to me! It seems to +them that when they have thought of two or three contingencies" (he +remembered the general plan sent him from Petersburg) "they have +foreseen everything. But the contingencies are endless." + +The undecided question as to whether the wound inflicted at Borodino +was mortal or not had hung over Kutuzov's head for a whole month. On +the one hand the French had occupied Moscow. On the other Kutuzov felt +assured with all his being that the terrible blow into which he and +all the Russians had put their whole strength must have been mortal. +But in any case proofs were needed; he had waited a whole month for +them and grew more impatient the longer he waited. Lying on his bed +during those sleepless nights he did just what he reproached those +younger generals for doing. He imagined all sorts of possible +contingencies, just like the younger men, but with this difference, +that he saw thousands of contingencies instead of two or three and +based nothing on them. The longer he thought the more contingencies +presented themselves. He imagined all sorts of movements of the +Napoleonic army as a whole or in sections--against Petersburg, or +against him, or to outflank him. He thought too of the possibility +(which he feared most of all) that Napoleon might fight him with his +own weapon and remain in Moscow awaiting him. Kutuzov even imagined +that Napoleon's army might turn back through Medyn and Yukhnov, but +the one thing he could not foresee was what happened--the insane, +convulsive stampede of Napoleon's army during its first eleven days +after leaving Moscow: a stampede which made possible what Kutuzov +had not yet even dared to think of--the complete extermination of +the French. Dorokhov's report about Broussier's division, the +guerrillas' reports of distress in Napoleon's army, rumors of +preparations for leaving Moscow, all confirmed the supposition that +the French army was beaten and preparing for flight. But these were +only suppositions, which seemed important to the younger men but not +to Kutuzov. With his sixty years' experience he knew what value to +attach to rumors, knew how apt people who desire anything are to group +all news so that it appears to confirm what they desire, and he knew +how readily in such cases they omit all that makes for the contrary. +And the more he desired it the less he allowed himself to believe +it. This question absorbed all his mental powers. All else was to +him only life's customary routine. To such customary routine +belonged his conversations with the staff, the letters he wrote from +Tarutino to Madame de Stael, the reading of novels, the distribution +of awards, his correspondence with Petersburg, and so on. But the +destruction of the French, which he alone foresaw, was his heart's one +desire. + +On the night of the eleventh of October he lay leaning on his arm +and thinking of that. + +There was a stir in the next room and he heard the steps of Toll, +Konovnitsyn, and Bolkhovitinov. + +"Eh, who's there? Come in, come in! What news?" the field marshal +called out to them. + +While a footman was lighting a candle, Toll communicated the +substance of the news. + +"Who brought it?" asked Kutuzov with a look which, when the candle +was lit, struck Toll by its cold severity. + +"There can be no doubt about it, your Highness." + +"Call him in, call him here." + +Kutuzov sat up with one leg hanging down from the bed and his big +paunch resting against the other which was doubled under him. He +screwed up his seeing eye to scrutinize the messenger more +carefully, as if wishing to read in his face what preoccupied his +own mind. + +"Tell me, tell me, friend," said he to Bolkhovitinov in his low, +aged voice, as he pulled together the shirt which gaped open on his +chest, "come nearer--nearer. What news have you brought me? Eh? That +Napoleon has left Moscow? Are you sure? Eh?" + +Bolkhovitinov gave a detailed account from the beginning of all he +had been told to report. + +"Speak quicker, quicker! Don't torture me!" Kutuzov interrupted him. + +Bolkhovitinov told him everything and was then silent, awaiting +instructions. Toll was beginning to say something but Kutuzov +checked him. He tried to say something, but his face suddenly puckered +and wrinkled; he waved his arm at Toll and turned to the opposite side +of the room, to the corner darkened by the icons that hung there. + +"O Lord, my Creator, Thou has heard our prayer..." said he in a +tremulous voice with folded hands. "Russia is saved. I thank Thee, O +Lord!" and he wept. + + + + + +CHAPTER XVIII + + +From the time he received this news to the end of the campaign all +Kutuzov's activity was directed toward restraining his troops, by +authority, by guile, and by entreaty, from useless attacks, maneuvers, +or encounters with the perishing enemy. Dokhturov went to +Malo-Yaroslavets, but Kutuzov lingered with the main army and gave +orders for the evacuation of Kaluga--a retreat beyond which town +seemed to him quite possible. + +Everywhere Kutuzov retreated, but the enemy without waiting for +his retreat fled in the opposite direction. + +Napoleon's historians describe to us his skilled maneuvers at +Tarutino and Malo-Yaroslavets, and make conjectures as to what would +have happened had Napoleon been in time to penetrate into the rich +southern provinces. + +But not to speak of the fact that nothing prevented him from +advancing into those southern provinces (for the Russian army did +not bar his way), the historians forget that nothing could have +saved his army, for then already it bore within itself the germs of +inevitable ruin. How could that army--which had found abundant +supplies in Moscow and had trampled them underfoot instead of +keeping them, and on arriving at Smolensk had looted provisions +instead of storing them--how could that army recuperate in Kaluga +province, which was inhabited by Russians such as those who lived in +Moscow, and where fire had the same property of consuming what was set +ablaze? + +That army could not recover anywhere. Since the battle of Borodino +and the pillage of Moscow it had borne within itself, as it were, +the chemical elements of dissolution. + +The members of what had once been an army--Napoleon himself and +all his soldiers fled--without knowing whither, each concerned only to +make his escape as quickly as possible from this position, of the +hopelessness of which they were all more or less vaguely conscious. + +So it came about that at the council at Malo-Yaroslavets, when the +generals pretending to confer together expressed various opinions, all +mouths were closed by the opinion uttered by the simple-minded soldier +Mouton who, speaking last, said what they all felt: that the one thing +needful was to get away as quickly as possible; and no one, not even +Napoleon, could say anything against that truth which they all +recognized. + +But though they all realized that it was necessary to get away, +there still remained a feeling of shame at admitting that they must +flee. An external shock was needed to overcome that shame, and this +shock came in due time. It was what the French called "le hourra de +l'Empereur." + +The day after the council at Malo-Yaroslavets Napoleon rode out +early in the morning amid the lines of his army with his suite of +marshals and an escort, on the pretext of inspecting the army and +the scene of the previous and of the impending battle. Some Cossacks +on the prowl for booty fell in with the Emperor and very nearly +captured him. If the Cossacks did not capture Napoleon then, what +saved him was the very thing that was destroying the French army, +the booty on which the Cossacks fell. Here as at Tarutino they went +after plunder, leaving the men. Disregarding Napoleon they rushed +after the plunder and Napoleon managed to escape. + +When les enfants du Don might so easily have taken the Emperor +himself in the midst of his army, it was clear that there was +nothing for it but to fly as fast as possible along the nearest, +familiar road. Napoleon with his forty-year-old stomach understood +that hint, not feeling his former agility and boldness, and under +the influence of the fright the Cossacks had given him he at once +agreed with Mouton and issued orders--as the historians tell us--to +retreat by the Smolensk road. + +That Napoleon agreed with Mouton, and that the army retreated, +does not prove that Napoleon caused it to retreat, but that the forces +which influenced the whole army and directed it along the Mozhaysk +(that is, the Smolensk) road acted simultaneously on him also. + + + + + +CHAPTER XIX + + +A man in motion always devises an aim for that motion. To be able to +go a thousand miles he must imagine that something good awaits him +at the end of those thousand miles. One must have the prospect of a +promised land to have the strength to move. + +The promised land for the French during their advance had been +Moscow, during their retreat it was their native land. But that native +land was too far off, and for a man going a thousand miles it is +absolutely necessary to set aside his final goal and to say to +himself: "Today I shall get to a place twenty-five miles off where I +shall rest and spend the night," and during the first day's journey +that resting place eclipses his ultimate goal and attracts all his +hopes and desires. And the impulses felt by a single person are always +magnified in a crowd. + +For the French retreating along the old Smolensk road, the final +goal--their native land--was too remote, and their immediate goal +was Smolensk, toward which all their desires and hopes, enormously +intensified in the mass, urged them on. It was not that they knew that +much food and fresh troops awaited them in Smolensk, nor that they +were told so (on the contrary their superior officers, and Napoleon +himself, knew that provisions were scarce there), but because this +alone could give them strength to move on and endure their present +privations. So both those who knew and those who did not know deceived +themselves, and pushed on to Smolensk as to a promised land. + +Coming out onto the highroad the French fled with surprising +energy and unheard-of rapidity toward the goal they had fixed on. +Besides the common impulse which bound the whole crowd of French +into one mass and supplied them with a certain energy, there was +another cause binding them together--their great numbers. As with +the physical law of gravity, their enormous mass drew the individual +human atoms to itself. In their hundreds of thousands they moved +like a whole nation. + +Each of them desired nothing more than to give himself up as a +prisoner to escape from all this horror and misery; but on the one +hand the force of this common attraction to Smolensk, their goal, drew +each of them in the same direction; on the other hand an army corps +could not surrender to a company, and though the French availed +themselves of every convenient opportunity to detach themselves and to +surrender on the slightest decent pretext, such pretexts did not +always occur. Their very numbers and their crowded and swift +movement deprived them of that possibility and rendered it not only +difficult but impossible for the Russians to stop this movement, to +which the French were directing all their energies. Beyond a certain +limit no mechanical disruption of the body could hasten the process of +decomposition. + +A lump of snow cannot be melted instantaneously. There is a +certain limit of time in less than which no amount of heat can melt +the snow. On the contrary the greater the heat the more solidified the +remaining snow becomes. + +Of the Russian commanders Kutuzov alone understood this. When the +flight of the French army along the Smolensk road became well defined, +what Konovnitsyn had foreseen on the night of the eleventh of +October began to occur. The superior officers all wanted to +distinguish themselves, to cut off, to seize, to capture, and to +overthrow the French, and all clamored for action. + +Kutuzov alone used all his power (and such power is very limited +in the case of any commander in chief) to prevent an attack. + +He could not tell them what we say now: "Why fight, why block the +road, losing our own men and inhumanly slaughtering unfortunate +wretches? What is the use of that, when a third of their army has +melted away on the road from Moscow to Vyazma without any battle?" But +drawing from his aged wisdom what they could understand, he told +them of the golden bridge, and they laughed at and slandered him, +flinging themselves on, rending and exulting over the dying beast. + +Ermolov, Miloradovich, Platov, and others in proximity to the French +near Vyazma could not resist their desire to cut off and break up +two French corps, and by way of reporting their intention to Kutuzov +they sent him a blank sheet of paper in an envelope. + +And try as Kutuzov might to restrain the troops, our men attacked, +trying to bar the road. Infantry regiments, we are told, advanced to +the attack with music and with drums beating, and killed and lost +thousands of men. + +But they did not cut off or overthrow anybody and the French army, +closing up more firmly at the danger, continued, while steadily +melting away, to pursue its fatal path to Smolensk. + + + + + + +BOOK FOURTEEN: 1812 + + + + + +CHAPTER I + + +The Battle of Borodino, with the occupation of Moscow that +followed it and the flight of the French without further conflicts, is +one of the most instructive phenomena in history. + +All historians agree that the external activity of states and +nations in their conflicts with one another is expressed in wars, +and that as a direct result of greater or less success in war the +political strength of states and nations increases or decreases. + +Strange as may be the historical account of how some king or +emperor, having quarreled with another, collects an army, fights his +enemy's army, gains a victory by killing three, five, or ten +thousand men, and subjugates a kingdom and an entire nation of several +millions, all the facts of history (as far as we know it) confirm +the truth of the statement that the greater or lesser success of one +army against another is the cause, or at least an essential +indication, of an increase or decrease in the strength of the +nation--even though it is unintelligible why the defeat of an army- +a hundredth part of a nation--should oblige that whole nation to +submit. An army gains a victory, and at once the rights of the +conquering nation have increased to the detriment of the defeated. +An army has suffered defeat, and at once a people loses its rights +in proportion to the severity of the reverse, and if its army +suffers a complete defeat the nation is quite subjugated. + +So according to history it has been found from the most ancient +times, and so it is to our own day. All Napoleon's wars serve to +confirm this rule. In proportion to the defeat of the Austrian army +Austria loses its rights, and the rights and the strength of France +increase. The victories of the French at Jena and Auerstadt destroy +the independent existence of Prussia. + +But then, in 1812, the French gain a victory near Moscow. Moscow +is taken and after that, with no further battles, it is not Russia +that ceases to exist, but the French army of six hundred thousand, and +then Napoleonic France itself. To strain the facts to fit the rules of +history: to say that the field of battle at Borodino remained in the +hands of the Russians, or that after Moscow there were other battles +that destroyed Napoleon's army, is impossible. + +After the French victory at Borodino there was no general engagement +nor any that were at all serious, yet the French army ceased to exist. +What does this mean? If it were an example taken from the history of +China, we might say that it was not an historic phenomenon (which is +the historians' usual expedient when anything does not fit their +standards); if the matter concerned some brief conflict in which +only a small number of troops took part, we might treat it as an +exception; but this event occurred before our fathers' eyes, and for +them it was a question of the life or death of their fatherland, and +it happened in the greatest of all known wars. + +The period of the campaign of 1812 from the battle of Borodino to +the expulsion of the French proved that the winning of a battle does +not produce a conquest and is not even an invariable indication of +conquest; it proved that the force which decides the fate of peoples +lies not in the conquerors, nor even in armies and battles, but in +something else. + +The French historians, describing the condition of the French army +before it left Moscow, affirm that all was in order in the Grand Army, +except the cavalry, the artillery, and the transport--there was no +forage for the horses or the cattle. That was a misfortune no one +could remedy, for the peasants of the district burned their hay rather +than let the French have it. + +The victory gained did not bring the usual results because the +peasants Karp and Vlas (who after the French had evacuated Moscow +drove in their carts to pillage the town, and in general personally +failed to manifest any heroic feelings), and the whole innumerable +multitude of such peasants, did not bring their hay to Moscow for +the high price offered them, but burned it instead. + +Let us imagine two men who have come out to fight a duel with +rapiers according to all the rules of the art of fencing. The +fencing has gone on for some time; suddenly one of the combatants, +feeling himself wounded and understanding that the matter is no joke +but concerns his life, throws down his rapier, and seizing the first +cudgel that comes to hand begins to brandish it. Then let us imagine +that the combatant who so sensibly employed the best and simplest +means to attain his end was at the same time influenced by +traditions of chivalry and, desiring to conceal the facts of the case, +insisted that he had gained his victory with the rapier according to +all the rules of art. One can imagine what confusion and obscurity +would result from such an account of the duel. + +The fencer who demanded a contest according to the rules of +fencing was the French army; his opponent who threw away the rapier +and snatched up the cudgel was the Russian people; those who try to +explain the matter according to the rules of fencing are the +historians who have described the event. + +After the burning of Smolensk a war began which did not follow any +previous traditions of war. The burning of towns and villages, the +retreats after battles, the blow dealt at Borodino and the renewed +retreat, the burning of Moscow, the capture of marauders, the +seizure of transports, and the guerrilla war were all departures +from the rules. + +Napoleon felt this, and from the time he took up the correct fencing +attitude in Moscow and instead of his opponent's rapier saw a cudgel +raised above his head, he did not cease to complain to Kutuzov and +to the Emperor Alexander that the war was being carried on contrary to +all the rules--as if there were any rules for killing people. In spite +of the complaints of the French as to the nonobservance of the +rules, in spite of the fact that to some highly placed Russians it +seemed rather disgraceful to fight with a cudgel and they wanted to +assume a pose en quarte or en tierce according to all the rules, and +to make an adroit thrust en prime, and so on--the cudgel of the +people's war was lifted with all its menacing and majestic strength, +and without consulting anyone's tastes or rules and regardless of +anything else, it rose and fell with stupid simplicity, but +consistently, and belabored the French till the whole invasion had +perished. + +And it is well for a people who do not--as the French did in 1813- +salute according to all the rules of art, and, presenting the hilt +of their rapier gracefully and politely, hand it to their +magnanimous conqueror, but at the moment of trial, without asking what +rules others have adopted in similar cases, simply and easily pick +up the first cudgel that comes to hand and strike with it till the +feeling of resentment and revenge in their soul yields to a feeling of +contempt and compassion. + + + + + +CHAPTER II + + +One of the most obvious and advantageous departures from the +so-called laws of war is the action of scattered groups against men +pressed together in a mass. Such action always occurs in wars that +take on a national character. In such actions, instead of two crowds +opposing each other, the men disperse, attack singly, run away when +attacked by stronger forces, but again attack when opportunity offers. +This was done by the guerrillas in Spain, by the mountain tribes in +the Caucasus, and by the Russians in 1812. + +People have called this kind of war "guerrilla warfare" and assume +that by so calling it they have explained its meaning. But such a +war does not fit in under any rule and is directly opposed to a +well-known rule of tactics which is accepted as infallible. That +rule says that an attacker should concentrate his forces in order to +be stronger than his opponent at the moment of conflict. + +Guerrilla war (always successful, as history shows) directly +infringes that rule. + +This contradiction arises from the fact that military science +assumes the strength of an army to be identical with its numbers. +Military science says that the more troops the greater the strength. +Les gros bataillons ont toujours raison.* + + +*Large battalions are always victorious. + + +For military science to say this is like defining momentum in +mechanics by reference to the mass only: stating that momenta are +equal or unequal to each other simply because the masses involved +are equal or unequal. + +Momentum (quantity of motion) is the product of mass and velocity. + +In military affairs the strength of an army is the product of its +mass and some unknown x. + +Military science, seeing in history innumerable instances of the +fact that the size of any army does not coincide with its strength and +that small detachments defeat larger ones, obscurely admits the +existence of this unknown factor and tries to discover it--now in a +geometric formation, now in the equipment employed, now, and most +usually, in the genius of the commanders. But the assignment of +these various meanings to the factor does not yield results which +accord with the historic facts. + +Yet it is only necessary to abandon the false view (adopted to +gratify the "heroes") of the efficacy of the directions issued in +wartime by commanders, in order to find this unknown quantity. + +That unknown quantity is the spirit of the army, that is to say, the +greater or lesser readiness to fight and face danger felt by all the +men composing an army, quite independently of whether they are, or are +not, fighting under the command of a genius, in two--or three-line +formation, with cudgels or with rifles that repeat thirty times a +minute. Men who want to fight will always put themselves in the most +advantageous conditions for fighting. + +The spirit of an army is the factor which multiplied by the mass +gives the resulting force. To define and express the significance of +this unknown factor--the spirit of an army--is a problem for science. + +This problem is only solvable if we cease arbitrarily to +substitute for the unknown x itself the conditions under which that +force becomes apparent--such as the commands of the general, the +equipment employed, and so on--mistaking these for the real +significance of the factor, and if we recognize this unknown +quantity in its entirety as being the greater or lesser desire to +fight and to face danger. Only then, expressing known historic facts +by equations and comparing the relative significance of this factor, +can we hope to define the unknown. + +Ten men, battalions, or divisions, fighting fifteen men, battalions, +or divisions, conquer--that is, kill or take captive--all the +others, while themselves losing four, so that on the one side four and +on the other fifteen were lost. Consequently the four were equal to +the fifteen, and therefore 4x = 15y. Consequently x/y = 15/4. This +equation does not give us the value of the unknown factor but gives us +a ratio between two unknowns. And by bringing variously selected +historic units (battles, campaigns, periods of war) into such +equations, a series of numbers could be obtained in which certain laws +should exist and might be discovered. + +The tactical rule that an army should act in masses when +attacking, and in smaller groups in retreat, unconsciously confirms +the truth that the strength of an army depends on its spirit. To +lead men forward under fire more discipline (obtainable only by +movement in masses) is needed than is needed to resist attacks. But +this rule which leaves out of account the spirit of the army +continually proves incorrect and is in particularly striking +contrast to the facts when some strong rise or fall in the spirit of +the troops occurs, as in all national wars. + +The French, retreating in 1812--though according to tactics they +should have separated into detachments to defend themselves- +congregated into a mass because the spirit of the army had so fallen +that only the mass held the army together. The Russians, on the +contrary, ought according to tactics to have attacked in mass, but +in fact they split up into small units, because their spirit had so +risen that separate individuals, without orders, dealt blows at the +French without needing any compulsion to induce them to expose +themselves to hardships and dangers. + + + + + +CHAPTER III + + +The so-called partisan war began with the entry of the French into +Smolensk. + +Before partisan warfare had been officially recognized by the +government, thousands of enemy stragglers, marauders, and foragers had +been destroyed by the Cossacks and the peasants, who killed them off +as instinctively as dogs worry a stray mad dog to death. Denis +Davydov, with his Russian instinct, was the first to recognize the +value of this terrible cudgel which regardless of the rules of +military science destroyed the French, and to him belongs the credit +for taking the first step toward regularizing this method of warfare. + +On August 24 Davydov's first partisan detachment was formed and then +others were recognized. The further the campaign progressed the more +numerous these detachments became. + +The irregulars destroyed the great army piecemeal. They gathered the +fallen leaves that dropped of themselves from that withered tree- +the French army--and sometimes shook that tree itself. By October, +when the French were fleeing toward Smolensk, there were hundreds of +such companies, of various sizes and characters. There were some +that adopted all the army methods and had infantry, artillery, staffs, +and the comforts of life. Others consisted solely of Cossack +cavalry. There were also small scratch groups of foot and horse, and +groups of peasants and landowners that remained unknown. A sacristan +commanded one party which captured several hundred prisoners in the +course of a month; and there was Vasilisa, the wife of a village +elder, who slew hundreds of the French. + +The partisan warfare flamed up most fiercely in the latter days of +October. Its first period had passed: when the partisans themselves, +amazed at their own boldness, feared every minute to be surrounded and +captured by the French, and hid in the forests without unsaddling, +hardly daring to dismount and always expecting to be pursued. By the +end of October this kind of warfare had taken definite shape: it had +become clear to all what could be ventured against the French and what +could not. Now only the commanders of detachments with staffs, and +moving according to rules at a distance from the French, still +regarded many things as impossible. The small bands that had started +their activities long before and had already observed the French +closely considered things possible which the commanders of the big +detachments did not dare to contemplate. The Cossacks and peasants who +crept in among the French now considered everything possible. + +On October 22, Denisov (who was one of the irregulars) was with +his group at the height of the guerrilla enthusiasm. Since early +morning he and his party had been on the move. All day long he had +been watching from the forest that skirted the highroad a large French +convoy of cavalry baggage and Russian prisoners separated from the +rest of the army, which--as was learned from spies and prisoners- +was moving under a strong escort to Smolensk. Besides Denisov and +Dolokhov (who also led a small party and moved in Denisov's vicinity), +the commanders of some large divisions with staffs also knew of this +convoy and, as Denisov expressed it, were sharpening their teeth for +it. Two of the commanders of large parties--one a Pole and the other a +German--sent invitations to Denisov almost simultaneously, +requesting him to join up with their divisions to attack the convoy. + +"No, bwother, I have gwown mustaches myself," said Denisov on +reading these documents, and he wrote to the German that, despite +his heartfelt desire to serve under so valiant and renowned a general, +he had to forgo that pleasure because he was already under the command +of the Polish general. To the Polish general he replied to the same +effect, informing him that he was already under the command of the +German. + +Having arranged matters thus, Denisov and Dolokhov intended, without +reporting matters to the higher command, to attack and seize that +convoy with their own small forces. On October 22 it was moving from +the village of Mikulino to that of Shamshevo. To the left of the +road between Mikulino and Shamshevo there were large forests, +extending in some places up to the road itself though in others a mile +or more back from it. Through these forests Denisov and his party rode +all day, sometimes keeping well back in them and sometimes coming to +the very edge, but never losing sight of the moving French. That +morning, Cossacks of Denisov's party had seized and carried off into +the forest two wagons loaded with cavalry saddles, which had stuck +in the mud not far from Mikulino where the forest ran close to the +road. Since then, and until evening, the party had the movements of +the French without attacking. It was necessary to let the French reach +Shamshevo quietly without alarming them and then, after joining +Dolokhov who was to come that evening to a consultation at a +watchman's hut in the forest less than a mile from Shamshevo, to +surprise the French at dawn, falling like an avalanche on their +heads from two sides, and rout and capture them all at one blow. + +In their rear, more than a mile from Mikulino where the forest +came right up to the road, six Cossacks were posted to report if any +fresh columns of French should show themselves. + +Beyond Shamshevo, Dolokhov was to observe the road in the same +way, to find out at what distance there were other French troops. They +reckoned that the convoy had fifteen hundred men. Denisov had two +hundred, and Dolokhov might have as many more, but the disparity of +numbers did not deter Denisov. All that he now wanted to know was what +troops these were and to learn that he had to capture a "tongue"--that +is, a man from the enemy column. That morning's attack on the wagons +had been made so hastily that the Frenchmen with the wagons had all +been killed; only a little drummer boy had been taken alive, and as he +was a straggler he could tell them nothing definite about the troops +in that column. + +Denisov considered it dangerous to make a second attack for fear +of putting the whole column on the alert, so he sent Tikhon +Shcherbaty, a peasant of his party, to Shamshevo to try and seize at +least one of the French quartermasters who had been sent on in +advance. + + + + +CHAPTER IV + + +It was a warm rainy autumn day. The sky and the horizon were both +the color of muddy water. At times a sort of mist descended, and +then suddenly heavy slanting rain came down. + +Denisov in a felt cloak and a sheepskin cap from which the rain +ran down was riding a thin thoroughbred horse with sunken sides. +Like his horse, which turned its head and laid its ears back, he +shrank from the driving rain and gazed anxiously before him. His +thin face with its short, thick black beard looked angry. + +Beside Denisov rode an esaul,* Denisov's fellow worker, also in felt +cloak and sheepskin cap, and riding a large sleek Don horse. + + +*A captain of Cossacks. + + +Esaul Lovayski the Third was a tall man as straight as an arrow, +pale-faced, fair-haired, with narrow light eyes and with calm +self-satisfaction in his face and bearing. Though it was impossible to +say in what the peculiarity of the horse and rider lay, yet at first +glance at the esaul and Denisov one saw that the latter was wet and +uncomfortable and was a man mounted on a horse, while looking at the +esaul one saw that he was as comfortable and as much at ease as always +and that he was not a man who had mounted a horse, but a man who was +one with his horse, a being consequently possessed of twofold +strength. + +A little ahead of them walked a peasant guide, wet to the skin and +wearing a gray peasant coat and a white knitted cap. + +A little behind, on a poor, small, lean Kirghiz mount with an +enormous tail and mane and a bleeding mouth, rode a young officer in a +blue French overcoat. + +Beside him rode an hussar, with a boy in a tattered French uniform +and blue cap behind him on the crupper of his horse. The boy held on +to the hussar with cold, red hands, and raising his eyebrows gazed +about him with surprise. This was the French drummer boy captured that +morning. + +Behind them along the narrow, sodden, cutup forest road came hussars +in threes and fours, and then Cossacks: some in felt cloaks, some in +French greatcoats, and some with horsecloths over their heads. The +horses, being drenched by the rain, all looked black whether +chestnut or bay. Their necks, with their wet, close-clinging manes, +looked strangely thin. Steam rose from them. Clothes, saddles, +reins, were all wet, slippery, and sodden, like the ground and the +fallen leaves that strewed the road. The men sat huddled up trying not +to stir, so as to warm the water that had trickled to their bodies and +not admit the fresh cold water that was leaking in under their +seats, their knees, and at the back of their necks. In the midst of +the outspread line of Cossacks two wagons, drawn by French horses +and by saddled Cossack horses that had been hitched on in front, +rumbled over the tree stumps and branches and splashed through the +water that lay in the ruts. + +Denisov's horse swerved aside to avoid a pool in the track and +bumped his rider's knee against a tree. + +"Oh, the devil!" exclaimed Denisov angrily, and showing his teeth he +struck his horse three times with his whip, splashing himself and +his comrades with mud. + +Denisov was out of sorts both because of the rain and also from +hunger (none of them had eaten anything since morning), and yet more +because he still had no news from Dolokhov and the man sent to capture +a "tongue" had not returned. + +"There'll hardly be another such chance to fall on a transport as +today. It's too risky to attack them by oneself, and if we put it +off till another day one of the big guerrilla detachments will +snatch the prey from under our noses," thought Denisov, continually +peering forward, hoping to see a messenger from Dolokhov. + +On coming to a path in the forest along which he could see far to +the right, Denisov stopped. + +"There's someone coming," said he. + +The esaul looked in the direction Denisov indicated. + +"There are two, an officer and a Cossack. But it is not +presupposable that it is the lieutenant colonel himself," said the +esaul, who was fond of using words the Cossacks did not know. + +The approaching riders having descended a decline were no longer +visible, but they reappeared a few minutes later. In front, at a weary +gallop and using his leather whip, rode an officer, disheveled and +drenched, whose trousers had worked up to above his knees. Behind him, +standing in the stirrups, trotted a Cossack. The officer, a very young +lad with a broad rosy face and keen merry eyes, galloped up to Denisov +and handed him a sodden envelope. + +"From the general," said the officer. "Please excuse its not being +quite dry." + +Denisov, frowning, took the envelope and opened it. + +"There, they kept telling us: 'It's dangerous, it's dangerous,'" +said the officer, addressing the esaul while Denisov was reading the +dispatch. "But Komarov and I"--he pointed to the Cossack--"were +prepared. We have each of us two pistols.... But what's this?" he +asked, noticing the French drummer boy. "A prisoner? You've already +been in action? May I speak to him?" + +"Wostov! Petya!" exclaimed Denisov, having run through the dispatch. +"Why didn't you say who you were?" and turning with a smile he held +out his hand to the lad. + +The officer was Petya Rostov. + +All the way Petya had been preparing himself to behave with +Denisov as befitted a grownup man and an officer--without hinting at +their previous acquaintance. But as soon as Denisov smiled at him +Petya brightened up, blushed with pleasure, forgot the official manner +he had been rehearsing, and began telling him how he had already +been in a battle near Vyazma and how a certain hussar had +distinguished himself there. + +"Well, I am glad to see you," Denisov interrupted him, and his +face again assumed its anxious expression. + +"Michael Feoklitych," said he to the esaul, "this is again fwom that +German, you know. He"--he indicated Petya--"is serving under him." + +And Denisov told the esaul that the dispatch just delivered was a +repetition of the German general's demand that he should join forces +with him for an attack on the transport. + +"If we don't take it tomowwow, he'll snatch it fwom under our +noses," he added. + +While Denisov was talking to the esaul, Petya--abashed by +Denisov's cold tone and supposing that it was due to the condition +of his trousers--furtively tried to pull them down under his greatcoat +so that no one should notice it, while maintaining as martial an air +as possible. + +"Will there be any orders, your honor?" he asked Denisov, holding +his hand at the salute and resuming the game of adjutant and general +for which he had prepared himself, "or shall I remain with your +honor?" + +"Orders?" Denisov repeated thoughtfully. "But can you stay till +tomowwow?" + +"Oh, please... May I stay with you?" cried Petya. + +"But, just what did the genewal tell you? To weturn at once?" +asked Denisov. + +Petya blushed. + +"He gave me no instructions. I think I could?" he returned, +inquiringly. + +"Well, all wight," said Denisov. + +And turning to his men he directed a party to go on to the halting +place arranged near the watchman's hut in the forest, and told the +officer on the Kirghiz horse (who performed the duties of an adjutant) +to go and find out where Dolokhov was and whether he would come that +evening. Denisov himself intended going with the esaul and Petya to +the edge of the forest where it reached out to Shamshevo, to have a +look at the part of the French bivouac they were to attack next day. + +"Well, old fellow," said he to the peasant guide, "lead us to +Shamshevo." + +Denisov, Petya, and the esaul, accompanied by some Cossacks and +the hussar who had the prisoner, rode to the left across a ravine to +the edge of the forest. + + + + + +CHAPTER V + + +The rain had stopped, and only the mist was falling and drops from +the trees. Denisov, the esaul, and Petya rode silently, following +the peasant in the knitted cap who, stepping lightly with outturned +toes and moving noiselessly in his bast shoes over the roots and wet +leaves, silently led them to the edge of the forest. + +He ascended an incline, stopped, looked about him, and advanced to +where the screen of trees was less dense. On reaching a large oak tree +that had not yet shed its leaves, he stopped and beckoned mysteriously +to them with his hand. + +Denisov and Petya rode up to him. From the spot where the peasant +was standing they could see the French. Immediately beyond the forest, +on a downward slope, lay a field of spring rye. To the right, beyond a +steep ravine, was a small village and a landowner's house with a +broken roof. In the village, in the house, in the garden, by the well, +by the pond, over all the rising ground, and all along the road uphill +from the bridge leading to the village, not more than five hundred +yards away, crowds of men could be seen through the shimmering mist. +Their un-Russian shouting at their horses which were straining +uphill with the carts, and their calls to one another, could be +clearly heard. + +"Bwing the prisoner here," said Denisov in a low voice, not taking +his eyes off the French. + +A Cossack dismounted, lifted the boy down, and took him to +Denisov. Pointing to the French troops, Denisov asked him what these +and those of them were. The boy, thrusting his cold hands into his +pockets and lifting his eyebrows, looked at Denisov in affright, but +in spite of an evident desire to say all he knew gave confused +answers, merely assenting to everything Denisov asked him. Denisov +turned away from him frowning and addressed the esaul, conveying his +own conjectures to him. + +Petya, rapidly turning his head, looked now at the drummer boy, +now at Denisov, now at the esaul, and now at the French in the village +and along the road, trying not to miss anything of importance. + +"Whether Dolokhov comes or not, we must seize it, eh?" said +Denisov with a merry sparkle in his eyes. + +"It is a very suitable spot," said the esaul. + +"We'll send the infantwy down by the swamps," Denisov continued. +"They'll cweep up to the garden; you'll wide up fwom there with the +Cossacks"--he pointed to a spot in the forest beyond the village--"and +I with my hussars fwom here. And at the signal shot..." + +"The hollow is impassable--there's a swamp there," said the esaul. +"The horses would sink. We must ride round more to the left...." + +While they were talking in undertones the crack of a shot sounded +from the low ground by the pond, a puff of white smoke appeared, +then another, and the sound of hundreds of seemingly merry French +voices shouting together came up from the slope. For a moment +Denisov and the esaul drew back. They were so near that they thought +they were the cause of the firing and shouting. But the firing and +shouting did not relate to them. Down below, a man wearing something +red was running through the marsh. The French were evidently firing +and shouting at him. + +"Why, that's our Tikhon," said the esaul. + +"So it is! It is!" + +"The wascal!" said Denisov. + +"He'll get away!" said the esaul, screwing up his eyes. + +The man whom they called Tikhon, having run to the stream, plunged +in so that the water splashed in the air, and, having disappeared +for an instant, scrambled out on all fours, all black with the wet, +and ran on. The French who had been pursuing him stopped. + +"Smart, that!" said the esaul. + +"What a beast!" said Denisov with his former look of vexation. "What +has he been doing all this time?" + +"Who is he?" asked Petya. + +"He's our plastun. I sent him to capture a 'tongue.'" + +"Oh, yes," said Petya, nodding at the first words Denisov uttered as +if he understood it all, though he really did not understand +anything of it. + +Tikhon Shcherbaty was one of the most indispensable men in their +band. He was a peasant from Pokrovsk, near the river Gzhat. When +Denisov had come to Pokrovsk at the beginning of his operations and +had as usual summoned the village elder and asked him what he knew +about the French, the elder, as though shielding himself, had replied, +as all village elders did, that he had neither seen nor heard anything +of them. But when Denisov explained that his purpose was to kill the +French, and asked if no French had strayed that way, the elder replied +that some "more-orderers" had really been at their village, but that +Tikhon Shcherbaty was the only man who dealt with such matters. +Denisov had Tikhon called and, having praised him for his activity, +said a few words in the elder's presence about loyalty to the Tsar and +the country and the hatred of the French that all sons of the +fatherland should cherish. + +"We don't do the French any harm," said Tikhon, evidently frightened +by Denisov's words. "We only fooled about with the lads for fun, you +know! We killed a score or so of 'more-orderers,' but we did no harm +else..." + +Next day when Denisov had left Pokrovsk, having quite forgotten +about this peasant, it was reported to him that Tikhon had attached +himself to their party and asked to be allowed to remain with it. +Denisov gave orders to let him do so. + +Tikhon, who at first did rough work, laying campfires, fetching +water, flaying dead horses, and so on, soon showed a great liking +and aptitude for partisan warfare. At night he would go out for +booty and always brought back French clothing and weapons, and when +told to would bring in French captives also. Denisov then relieved him +from drudgery and began taking him with him when he went out on +expeditions and had him enrolled among the Cossacks. + +Tikhon did not like riding, and always went on foot, never lagging +behind the cavalry. He was armed with a musketoon (which he carried +rather as a joke), a pike and an ax, which latter he used as a wolf +uses its teeth, with equal case picking fleas out of its fur or +crunching thick bones. Tikhon with equal accuracy would split logs +with blows at arm's length, or holding the head of the ax would cut +thin little pegs or carve spoons. In Denisov's party he held a +peculiar and exceptional position. When anything particularly +difficult or nasty had to be done--to push a cart out of the mud +with one's shoulders, pull a horse out of a swamp by its tail, skin +it, slink in among the French, or walk more than thirty miles in a +day--everybody pointed laughingly at Tikhon. + +"It won't hurt that devil--he's as strong as a horse!" they said +of him. + +Once a Frenchman Tikhon was trying to capture fired a pistol at +him and shot him in the fleshy part of the back. That wound (which +Tikhon treated only with internal and external applications of +vodka) was the subject of the liveliest jokes by the whole detachment- +jokes in which Tikhon readily joined. + +"Hallo, mate! Never again? Gave you a twist?" the Cossacks would +banter him. And Tikhon, purposely writhing and making faces, pretended +to be angry and swore at the French with the funniest curses. The only +effect of this incident on Tikhon was that after being wounded he +seldom brought in prisoners. + +He was the bravest and most useful man in the party. No one found +more opportunities for attacking, no one captured or killed more +Frenchmen, and consequently he was made the buffoon of all the +Cossacks and hussars and willingly accepted that role. Now he had been +sent by Denisov overnight to Shamshevo to capture a "tongue." But +whether because he had not been content to take only one Frenchman +or because he had slept through the night, he had crept by day into +some bushes right among the French and, as Denisov had witnessed +from above, had been detected by them. + + + + + +CHAPTER VI + + +After talking for some time with the esaul about next day's +attack, which now, seeing how near they were to the French, he +seemed to have definitely decided on, Denisov turned his horse and +rode back. + +"Now, my lad, we'll go and get dwy," he said to Petya. + +As they approached the watchhouse Denisov stopped, peering into +the forest. Among the trees a man with long legs and long, swinging +arms, wearing a short jacket, bast shoes, and a Kazan hat, was +approaching with long, light steps. He had a musketoon over his +shoulder and an ax stuck in his girdle. When he espied Denisov he +hastily threw something into the bushes, removed his sodden hat by its +floppy brim, and approached his commander. It was Tikhon. His wrinkled +and pockmarked face and narrow little eyes beamed with +self-satisfied merriment. He lifted his head high and gazed at Denisov +as if repressing a laugh. + +"Well, where did you disappear to?" inquired Denisov. + +"Where did I disappear to? I went to get Frenchmen," answered Tikhon +boldly and hurriedly, in a husky but melodious bass voice. + +"Why did you push yourself in there by daylight? You ass! Well, +why haven't you taken one?" + +"Oh, I took one all right," said Tikhon. + +"Where is he?" + +"You see, I took him first thing at dawn," Tikhon continued, +spreading out his flat feet with outturned toes in their bast shoes. +"I took him into the forest. Then I see he's no good and think I'll go +and fetch a likelier one." + +"You see?... What a wogue--it's just as I thought," said Denisov +to the esaul. "Why didn't you bwing that one?" + +"What was the good of bringing him?" Tikhon interrupted hastily +and angrily--"that one wouldn't have done for you. As if I don't +know what sort you want!" + +"What a bwute you are!... Well?" + +"I went for another one," Tikhon continued, "and I crept like this +through the wood and lay down." (He suddenly lay down on his stomach +with a supple movement to show how he had done it.) "One turned up and +I grabbed him, like this." (He jumped up quickly and lightly.) +"'Come along to the colonel,' I said. He starts yelling, and +suddenly there were four of them. They rushed at me with their +little swords. So I went for them with my ax, this way: 'What are +you up to?' says I. 'Christ be with you!'" shouted Tikhon, waving +his arms with an angry scowl and throwing out his chest. + +"Yes, we saw from the hill how you took to your heels through the +puddles!" said the esaul, screwing up his glittering eyes. + +Petya badly wanted to laugh, but noticed that they all refrained +from laughing. He turned his eyes rapidly from Tikhon's face to the +esaul's and Denisov's, unable to make out what it all meant. + +"Don't play the fool!" said Denisov, coughing angrily. "Why didn't +you bwing the first one?" + +Tikhon scratched his back with one hand and his head with the other, +then suddenly his whole face expanded into a beaming, foolish grin, +disclosing a gap where he had lost a tooth (that was why he was called +Shcherbaty--the gap-toothed). Denisov smiled, and Petya burst into a +peal of merry laughter in which Tikhon himself joined. + +"Oh, but he was a regular good-for-nothing," said Tikhon. "The +clothes on him--poor stuff! How could I bring him? And so rude, your +honor! Why, he says: 'I'm a general's son myself, I won't go!' he +says." + +"You are a bwute!" said Denisov. "I wanted to question..." + +"But I questioned him," said Tikhon. "He said he didn't know much. +'There are a lot of us,' he says, 'but all poor stuff--only soldiers +in name,' he says. 'Shout loud at them,' he says, 'and you'll take +them all,'" Tikhon concluded, looking cheerfully and resolutely into +Denisov's eyes. + +"I'll give you a hundwed sharp lashes--that'll teach you to play the +fool!" said Denisov severely. + +"But why are you angry?" remonstrated Tikhon, "just as if I'd +never seen your Frenchmen! Only wait till it gets dark and I'll +fetch you any of them you want--three if you like." + +"Well, let's go," said Denisov, and rode all the way to the +watchhouse in silence and frowning angrily. + +Tikhon followed behind and Petya heard the Cossacks laughing with +him and at him, about some pair of boots he had thrown into the +bushes. + +When the fit of laughter that had seized him at Tikhon's words and +smile had passed and Petya realized for a moment that this Tikhon +had killed a man, he felt uneasy. He looked round at the captive +drummer boy and felt a pang in his heart. But this uneasiness lasted +only a moment. He felt it necessary to hold his head higher, to +brace himself, and to question the esaul with an air of importance +about tomorrow's undertaking, that he might not be unworthy of the +company in which he found himself. + +The officer who had been sent to inquire met Denisov on the way with +the news that Dolokhov was soon coming and that all was well with him. + +Denisov at once cheered up and, calling Petya to him, said: "Well, +tell me about yourself." + + + + + +CHAPTER VII + + +Petya, having left his people after their departure from Moscow, +joined his regiment and was soon taken as orderly by a general +commanding a large guerrilla detachment. From the time he received his +commission, and especially since he had joined the active army and +taken part in the battle of Vyazma, Petya had been in a constant state +of blissful excitement at being grown-up and in a perpetual ecstatic +hurry not to miss any chance to do something really heroic. He was +highly delighted with what he saw and experienced in the army, but +at the same time it always seemed to him that the really heroic +exploits were being performed just where he did not happen to be. +And he was always in a hurry to get where he was not. + +When on the twenty-first of October his general expressed a wish +to send somebody to Denisov's detachment, Petya begged so piteously to +be sent that the general could not refuse. But when dispatching him he +recalled Petya's mad action at the battle of Vyazma, where instead +of riding by the road to the place to which he had been sent, he had +galloped to the advanced line under the fire of the French and had +there twice fired his pistol. So now the general explicitly forbade +his taking part in any action whatever of Denisov's. That was why +Petya had blushed and grown confused when Denisov asked him whether he +could stay. Before they had ridden to the outskirts of the forest +Petya had considered he must carry out his instructions strictly and +return at once. But when he saw the French and saw Tikhon and +learned that there would certainly be an attack that night, he +decided, with the rapidity with which young people change their views, +that the general, whom he had greatly respected till then, was a +rubbishy German, that Denisov was a hero, the esaul a hero, and Tikhon +a hero too, and that it would be shameful for him to leave them at a +moment of difficulty. + +It was already growing dusk when Denisov, Petya, and the esaul +rode up to the watchhouse. In the twilight saddled horses could be +seen, and Cossacks and hussars who had rigged up rough shelters in the +glade and were kindling glowing fires in a hollow of the forest +where the French could not see the smoke. In the passage of the +small watchhouse a Cossack with sleeves rolled up was chopping some +mutton. In the room three officers of Denisov's band were converting a +door into a tabletop. Petya took off his wet clothes, gave them to +be dried, and at once began helping the officers to fix up the +dinner table. + +In ten minutes the table was ready and a napkin spread on it. On the +table were vodka, a flask of rum, white bread, roast mutton, and salt. + +Sitting at table with the officers and tearing the fat savory mutton +with his hands, down which the grease trickled, Petya was in an +ecstatic childish state of love for all men, and consequently of +confidence that others loved him in the same way. + +"So then what do you think, Vasili Dmitrich?" said he to Denisov. +"It's all right my staying a day with you?" And not waiting for a +reply he answered his own question: "You see I was told to find out- +well, I am finding out.... Only do let me into the very... into the +chief... I don't want a reward... But I want..." + +Petya clenched his teeth and looked around, throwing back his head +and flourishing his arms. + +"Into the vewy chief..." Denisov repeated with a smile. + +"Only, please let me command something, so that I may really +command..." Petya went on. "What would it be to you?... Oh, you want a +knife?" he said, turning to an officer who wished to cut himself a +piece of mutton. + +And he handed him his clasp knife. The officer admired it. + +"Please keep it. I have several like it," said Petya, blushing. +"Heavens! I was quite forgetting!" he suddenly cried. "I have some +raisins, fine ones; you know, seedless ones. We have a new sutler +and he has such capital things. I bought ten pounds. I am used to +something sweet. Would you like some?..." and Petya ran out into the +passage to his Cossack and brought back some bags which contained +about five pounds of raisins. "Have some, gentlemen, have some!" + +"You want a coffeepot, don't you?" he asked the esaul. "I bought a +capital one from our sutler! He has splendid things. And he's very +honest, that's the chief thing. I'll be sure to send it to you. Or +perhaps your flints are giving out, or are worn out--that happens +sometimes, you know. I have brought some with me, here they are"- +and he showed a bag--"a hundred flints. I bought them very cheap. +Please take as many as you want, or all if you like...." + +Then suddenly, dismayed lest he had said too much, Petya stopped and +blushed. + +He tried to remember whether he had not done anything else that +was foolish. And running over the events of the day he remembered +the French drummer boy. "It's capital for us here, but what of him? +Where have they put him? Have they fed him? Haven't they hurt his +feelings?" he thought. But having caught himself saying too much about +the flints, he was now afraid to speak out. + +"I might ask," he thought, "but they'll say: 'He's a boy himself and +so he pities the boy.' I'll show them tomorrow whether I'm a boy. Will +it seem odd if I ask?" Petya thought. "Well, never mind!" and +immediately, blushing and looking anxiously at the officers to see +if they appeared ironical, he said: + +"May I call in that boy who was taken prisoner and give him +something to eat?... Perhaps..." + +"Yes, he's a poor little fellow," said Denisov, who evidently saw +nothing shameful in this reminder. "Call him in. His name is Vincent +Bosse. Have him fetched." + +"I'll call him," said Petya. + +"Yes, yes, call him. A poor little fellow," Denisov repeated. + +Petya was standing at the door when Denisov said this. He slipped in +between the officers, came close to Denisov, and said: + +"Let me kiss you, dear old fellow! Oh, how fine, how splendid!" + +And having kissed Denisov he ran out of the hut. + +"Bosse! Vincent!" Petya cried, stopping outside the door. + +"Who do you want, sir?" asked a voice in the darkness. + +Petya replied that he wanted the French lad who had been captured +that day. + +"Ah, Vesenny?" said a Cossack. + +Vincent, the boy's name, had already been changed by the Cossacks +into Vesenny (vernal) and into Vesenya by the peasants and soldiers. +In both these adaptations the reference to spring (vesna) matched +the impression made by the young lad. + +"He is warming himself there by the bonfire. Ho, Vesenya! +Vesenya!--Vesenny!" laughing voices were heard calling to one +another in the darkness. + +"He's a smart lad," said an hussar standing near Petya. "We gave him +something to eat a while ago. He was awfully hungry!" + +The sound of bare feet splashing through the mud was heard in the +darkness, and the drummer boy came to the door. + +"Ah, c'est vous!" said Petya. "Voulez-vous manger? N'ayez pas +peur, on ne vous fera pas de mal,"* he added shyly and affectionately, +touching the boy's hand. "Entrez, entrez."*[2] + + +*"Ah, it's you! Do you want something to eat? Don't be afraid, +they won't hurt you." + +*[2] "Come in, come in." + + +"Merci, monsieur,"* said the drummer boy in a trembling almost +childish voice, and he began scraping his dirty feet on the threshold. + + +*"Thank you, sir." + + +There were many things Petya wanted to say to the drummer boy, but +did not dare to. He stood irresolutely beside him in the passage. Then +in the darkness he took the boy's hand and pressed it. + +"Come in, come in!" he repeated in a gentle whisper. "Oh, what can I +do for him?" he thought, and opening the door he let the boy pass in +first. + +When the boy had entered the hut, Petya sat down at a distance +from him, considering it beneath his dignity to pay attention to +him. But he fingered the money in his pocket and wondered whether it +would seem ridiculous to give some to the drummer boy. + + + + + +CHAPTER VIII + + +The arrival of Dolokhov diverted Petya's attention from the +drummer boy, to whom Denisov had had some mutton and vodka given, +and whom he had had dressed in a Russian coat so that he might be kept +with their band and not sent away with the other prisoners. Petya +had heard in the army many stories of Dolokhov's extraordinary bravery +and of his cruelty to the French, so from the moment he entered the +hut Petya did not take his eyes from him, but braced himself up more +and more and held his head high, that he might not be unworthy even of +such company. + +Dolokhov's appearance amazed Petya by its simplicity. + +Denisov wore a Cossack coat, had a beard, had an icon of Nicholas +the Wonder-Worker on his breast, and his way of speaking and +everything he did indicated his unusual position. But Dolokhov, who in +Moscow had worn a Persian costume, had now the appearance of a most +correct officer of the Guards. He was clean-shaven and wore a +Guardsman's padded coat with an Order of St. George at his +buttonhole and a plain forage cap set straight on his head. He took +off his wet felt cloak in a corner of the room, and without greeting +anyone went up to Denisov and began questioning him about the matter +in hand. Denisov told him of the designs the large detachments had +on the transport, of the message Petya had brought, and his own +replies to both generals. Then he told him all he knew of the French +detachment. + +"That's so. But we must know what troops they are and their +numbers," said Dolokhov. "It will be necessary to go there. We can't +start the affair without knowing for certain how many there are. I +like to work accurately. Here now--wouldn't one of these gentlemen +like to ride over to the French camp with me? I have brought a spare +uniform." + +"I, I... I'll go with you!" cried Petya. + +"There's no need for you to go at all," said Denisov, addressing +Dolokhov, "and as for him, I won't let him go on any account." + +"I like that!" exclaimed Petya. "Why shouldn't I go?" + +"Because it's useless." + +"Well, you must excuse me, because... because... I shall go, and +that's all. You'll take me, won't you?" he said, turning to Dolokhov. + +"Why not?" Dolokhov answered absently, scrutinizing the face of +the French drummer boy. "Have you had that youngster with you long?" +he asked Denisov. + +"He was taken today but he knows nothing. I'm keeping him with me." + +"Yes, and where do you put the others?" inquired Dolokhov. + +"Where? I send them away and take a weceipt for them," shouted +Denisov, suddenly flushing. "And I say boldly that I have not a single +man's life on my conscience. Would it be difficult for you to send +thirty or thwee hundwed men to town under escort, instead of staining- +I speak bluntly--staining the honor of a soldier?" + +"That kind of amiable talk would be suitable from this young count +of sixteen," said Dolokhov with cold irony, "but it's time for you +to drop it." + +"Why, I've not said anything! I only say that I'll certainly go with +you," said Petya shyly. + +"But for you and me, old fellow, it's time to drop these amenities," +continued Dolokhov, as if he found particular pleasure in speaking +of this subject which irritated Denisov. "Now, why have you kept +this lad?" he went on, swaying his head. "Because you are sorry for +him! Don't we know those 'receipts' of yours? You send a hundred men +away, and thirty get there. The rest either starve or get killed. So +isn't it all the same not to send them?" + +The esaul, screwing up his light-colored eyes, nodded approvingly. + +"That's not the point. I'm not going to discuss the matter. I do not +wish to take it on my conscience. You say they'll die. All wight. Only +not by my fault!" + +Dolokhov began laughing. + +"Who has told them not to capture me these twenty times over? But if +they did catch me they'd string me up to an aspen tree, and with all +your chivalry just the same." He paused. "However, we must get to +work. Tell the Cossack to fetch my kit. I have two French uniforms +in it. Well, are you coming with me?" he asked Petya. + +"I? Yes, yes, certainly!" cried Petya, blushing almost to tears +and glancing at Denisov. + +While Dolokhov had been disputing with Denisov what should be done +with prisoners, Petya had once more felt awkward and restless; but +again he had no time to grasp fully what they were talking about. +"If grown-up, distinguished men think so, it must be necessary and +right," thought he. "But above all Denisov must not dare to imagine +that I'll obey him and that he can order me about. I will certainly go +to the French camp with Dolokhov. If he can, so can I!" + +And to all Denisov's persuasions, Petya replied that he too was +accustomed to do everything accurately and not just anyhow, and that +he never considered personal danger. + +"For you'll admit that if we don't know for sure how many of them +there are... hundreds of lives may depend on it, while there are +only two of us. Besides, I want to go very much and certainly will go, +so don't hinder me," said he. "It will only make things worse..." + + + + + +CHAPTER IX + + +Having put on French greatcoats and shakos, Petya and Dolokhov +rode to the clearing from which Denisov had reconnoitered the French +camp, and emerging from the forest in pitch darkness they descended +into the hollow. On reaching the bottom, Dolokhov told the Cossacks +accompanying him to await him there and rode on at a quick trot +along the road to the bridge. Petya, his heart in his mouth with +excitement, rode by his side. + +"If we're caught, I won't be taken alive! I have a pistol," +whispered he. + +"Don't talk Russian," said Dolokhov in a hurried whisper, and at +that very moment they heard through the darkness the challenge: "Qui +vive?"* and the click of a musket. + + +*"Who goes there?" + + +The blood rushed to Petya's face and he grasped his pistol. + +"Lanciers du 6-me,"* replied Dolokhov, neither hastening nor +slackening his horse's pace. + + +*"Lancers of the 6th Regiment." + + +The black figure of a sentinel stood on the bridge. + +"Mot d'ordre."* + + +*"Password." + + +Dolokhov reined in his horse and advanced at a walk. + +"Dites donc, le colonel Gerard est ici?"* he asked. + + +*"Tell me, is Colonel Gerard here?" + + +"Mot d'ordre," repeated the sentinel, barring the way and not +replying. + +"Quand un officier fait sa ronde, les sentinelles ne demandent pas +le mot d'ordre..." cried Dolokhov suddenly flaring up and riding +straight at the sentinel. "Je vous demande si le colonel est ici."* + + +*"When an officer is making his round, sentinels don't ask him for +the password.... I am asking you if the colonel is here." + + +And without waiting for an answer from the sentinel, who had stepped +aside, Dolokhov rode up the incline at a walk. + +Noticing the black outline of a man crossing the road, Dolokhov +stopped him and inquired where the commander and officers were. The +man, a soldier with a sack over his shoulder, stopped, came close up +to Dolokhov's horse, touched it with his hand, and explained simply +and in a friendly way that the commander and the officers were +higher up the hill to the right in the courtyard of the farm, as he +called the landowner's house. + +Having ridden up the road, on both sides of which French talk +could be heard around the campfires, Dolokhov turned into the +courtyard of the landowner's house. Having ridden in, he dismounted +and approached a big blazing campfire, around which sat several men +talking noisily. Something was boiling in a small cauldron at the edge +of the fire and a soldier in a peaked cap and blue overcoat, lit up by +the fire, was kneeling beside it stirring its contents with a ramrod. + +"Oh, he's a hard nut to crack," said one of the officers who was +sitting in the shadow at the other side of the fire. + +"He'll make them get a move on, those fellows!" said another, +laughing. + +Both fell silent, peering out through the darkness at the sound of +Dolokhov's and Petya's steps as they advanced to the fire leading +their horses. + +"Bonjour, messieurs!"* said Dolokhov loudly and clearly. + + +*"Good day, gentlemen." + + +There was a stir among the officers in the shadow beyond the fire, +and one tall, long-necked officer, walking round the fire, came up +to Dolokhov. + +"Is that you, Clement?" he asked. "Where the devil...?" But, noticing +his mistake, he broke off short and, with a frown, greeted Dolokhov as +a stranger, asking what he could do for him. + +Dolokhov said that he and his companion were trying to overtake +their regiment, and addressing the company in general asked whether +they knew anything of the 6th Regiment. None of them knew anything, +and Petya thought the officers were beginning to look at him and +Dolokhov with hostility and suspicion. For some seconds all were +silent. + +"If you were counting on the evening soup, you have come too +late," said a voice from behind the fire with a repressed laugh. + +Dolokhov replied that they were not hungry and must push on +farther that night. + +He handed the horses over to the soldier who was stirring the pot +and squatted down on his heels by the fire beside the officer with the +long neck. That officer did not take his eyes from Dolokhov and +again asked to what regiment he belonged. Dolokhov, as if he had not +heard the question, did not reply, but lighting a short French pipe +which he took from his pocket began asking the officer in how far +the road before them was safe from Cossacks. + +"Those brigands are everywhere," replied an officer from behind +the fire. + +Dolokhov remarked that the Cossacks were a danger only to stragglers +such as his companion and himself, "but probably they would not dare +to attack large detachments?" he added inquiringly. No one replied. + +"Well, now he'll come away," Petya thought every moment as he +stood by the campfire listening to the talk. + +But Dolokhov restarted the conversation which had dropped and +began putting direct questions as to how many men there were in the +battalion, how many battalions, and how many prisoners. Asking about +the Russian prisoners with that detachment, Dolokhov said: + +"A horrid business dragging these corpses about with one! It would +be better to shoot such rabble," and burst into loud laughter, so +strange that Petya thought the French would immediately detect their +disguise, and involuntarily took a step back from the campfire. + +No one replied a word to Dolokhov's laughter, and a French officer +whom they could not see (he lay wrapped in a greatcoat) rose and +whispered something to a companion. Dolokhov got up and called to +the soldier who was holding their horses. + +"Will they bring our horses or not?" thought Petya, instinctively +drawing nearer to Dolokhov. + +The horses were brought. + +"Good evening, gentlemen," said Dolokhov. + +Petya wished to say "Good night" but could not utter a word. The +officers were whispering together. Dolokhov was a long time mounting +his horse which would not stand still, then he rode out of the yard at +a footpace. Petya rode beside him, longing to look round to see +whether or no the French were running after them, but not daring to. + +Coming out onto the road Dolokhov did not ride back across the +open country, but through the village. At one spot he stopped and +listened. "Do you hear?" he asked. Petya recognized the sound of +Russian voices and saw the dark figures of Russian prisoners round +their campfires. When they had descended to the bridge Petya and +Dolokhov rode past the sentinel, who without saying a word paced +morosely up and down it, then they descended into the hollow where the +Cossacks awaited them. + +"Well now, good-by. Tell Denisov, 'at the first shot at +daybreak,'" said Dolokhov and was about to ride away, but Petya seized +hold of him. + +"Really!" he cried, "you are such a hero! Oh, how fine, how +splendid! How I love you!" + +"All right, all right!" said Dolokhov. But Petya did not let go of +him and Dolokhov saw through the gloom that Petya was bending toward +him and wanted to kiss him. Dolokhov kissed him, laughed, turned his +horse, and vanished into the darkness. + + + + + +CHAPTER X + + +Having returned to the watchman's hut, Petya found Denisov in the +passage. He was awaiting Petya's return in a state of agitation, +anxiety, and self-reproach for having let him go. + +"Thank God!" he exclaimed. "Yes, thank God!" he repeated, +listening to Petya's rapturous account. "But, devil take you, I +haven't slept because of you! Well, thank God. Now lie down. We can +still get a nap before morning." + +"But... no," said Petya, "I don't want to sleep yet. Besides I +know myself, if I fall asleep it's finished. And then I am used to not +sleeping before a battle." + +He sat awhile in the hut joyfully recalling the details of his +expedition and vividly picturing to himself what would happen next +day. + +Then, noticing that Denisov was asleep, he rose and went out of +doors. + +It was still quite dark outside. The rain was over, but drops were +still falling from the trees. Near the watchman's hut the black shapes +of the Cossacks' shanties and of horses tethered together could be +seen. Behind the hut the dark shapes of the two wagons with their +horses beside them were discernible, and in the hollow the dying +campfire gleamed red. Not all the Cossacks and hussars were asleep; +here and there, amid the sounds of falling drops and the munching of +the horses near by, could be heard low voices which seemed to be +whispering. + +Petya came out, peered into the darkness, and went up to the wagons. +Someone was snoring under them, and around them stood saddled horses +munching their oats. In the dark Petya recognized his own horse, which +he called "Karabakh" though it was of Ukranian breed, and went up to +it. + +"Well, Karabakh! We'll do some service tomorrow," said he, +sniffing its nostrils and kissing it. + +"Why aren't you asleep, sir?" said a Cossack who was sitting under a +wagon. + +"No, ah... Likhachev--isn't that your name? Do you know I have +only just come back! We've been into the French camp." + +And Petya gave the Cossack a detailed account not only of his ride +but also of his object, and why he considered it better to risk his +life than to act "just anyhow." + +"Well, you should get some sleep now," said the Cossack. + +"No, I am used to this," said Petya. "I say, aren't the flints in +your pistols worn out? I brought some with me. Don't you want any? You +can have some." + + +The Cossack bent forward from under the wagon to get a closer look +at Petya. + +"Because I am accustomed to doing everything accurately," said +Petya. "Some fellows do things just anyhow, without preparation, and +then they're sorry for it afterwards. I don't like that." + +"Just so," said the Cossack. + +"Oh yes, another thing! Please, my dear fellow, will you sharpen +my saber for me? It's got bl..." (Petya feared to tell a lie, and +the saber never had been sharpened.) "Can you do it?" + +"Of course I can." + +Likhachev got up, rummaged in his pack, and soon Petya heard the +warlike sound of steel on whetstone. He climbed onto the wagon and sat +on its edge. The Cossack was sharpening the saber under the wagon. + +"I say! Are the lads asleep?" asked Petya. + +"Some are, and some aren't--like us." + +"Well, and that boy?" + +"Vesenny? Oh, he's thrown himself down there in the passage. Fast +asleep after his fright. He was that glad!" + +After that Petya remained silent for a long time, listening to the +sounds. He heard footsteps in the darkness and a black figure +appeared. + +"What are you sharpening?" asked a man coming up to the wagon. + +"Why, this gentleman's saber." + +"That's right," said the man, whom Petya took to be an hussar. +"Was the cup left here?" + +"There, by the wheel!" + +The hussar took the cup. + +"It must be daylight soon," said he, yawning, and went away. + +Petya ought to have known that he was in a forest with Denisov's +guerrilla band, less than a mile from the road, sitting on a wagon +captured from the French beside which horses were tethered, that under +it Likhachev was sitting sharpening a saber for him, that the big dark +blotch to the right was the watchman's hut, and the red blotch below +to the left was the dying embers of a campfire, that the man who had +come for the cup was an hussar who wanted a drink; but he neither knew +nor waited to know anything of all this. He was in a fairy kingdom +where nothing resembled reality. The big dark blotch might really be +the watchman's hut or it might be a cavern leading to the very +depths of the earth. Perhaps the red spot was a fire, or it might be +the eye of an enormous monster. Perhaps he was really sitting on a +wagon, but it might very well be that he was not sitting on a wagon +but on a terribly high tower from which, if he fell, he would have +to fall for a whole day or a whole month, or go on falling and never +reach the bottom. Perhaps it was just the Cossack, Likhachev, who +was sitting under the wagon, but it might be the kindest, bravest, +most wonderful, most splendid man in the world, whom no one knew of. +It might really have been that the hussar came for water and went back +into the hollow, but perhaps he had simply vanished--disappeared +altogether and dissolved into nothingness. + +Nothing Petya could have seen now would have surprised him. He was +in a fairy kingdom where everything was possible. + +He looked up at the sky. And the sky was a fairy realm like the +earth. It was clearing, and over the tops of the trees clouds were +swiftly sailing as if unveiling the stars. Sometimes it looked as if +the clouds were passing, and a clear black sky appeared. Sometimes +it seemed as if the black spaces were clouds. Sometimes the sky seemed +to be rising high, high overhead, and then it seemed to sink so low +that one could touch it with one's hand. + +Petya's eyes began to close and he swayed a little. + +The trees were dripping. Quiet talking was heard. The horses neighed +and jostled one another. Someone snored. + +"Ozheg-zheg, Ozheg-zheg..." hissed the saber against the +whetstone, and suddenly Petya heard an harmonious orchestra playing +some unknown, sweetly solemn hymn. Petya was as musical as Natasha and +more so than Nicholas, but had never learned music or thought about +it, and so the melody that unexpectedly came to his mind seemed to him +particularly fresh and attractive. The music became more and more +audible. The melody grew and passed from one instrument to another. +And what was played was a fugue--though Petya had not the least +conception of what a fugue is. Each instrument--now resembling a +violin and now a horn, but better and clearer than violin or horn- +played its own part, and before it had finished the melody merged with +another instrument that began almost the same air, and then with a +third and a fourth; and they all blended into one and again became +separate and again blended, now into solemn church music, now into +something dazzlingly brilliant and triumphant. + +"Oh--why, that was in a dream!" Petya said to himself, as he lurched +forward. "It's in my ears. But perhaps it's music of my own. Well, +go on, my music! Now!..." + +He closed his eyes, and, from all sides as if from a distance, +sounds fluttered, grew into harmonies, separated, blended, and again +all mingled into the same sweet and solemn hymn. "Oh, this is +delightful! As much as I like and as I like!" said Petya to himself. +He tried to conduct that enormous orchestra. + +"Now softly, softly die away!" and the sounds obeyed him. "Now +fuller, more joyful. Still more and more joyful!" And from an +unknown depth rose increasingly triumphant sounds. "Now voices join +in!" ordered Petya. And at first from afar he heard men's voices and +then women's. The voices grew in harmonious triumphant strength, and +Petya listened to their surpassing beauty in awe and joy. + +With a solemn triumphal march there mingled a song, the drip from +the trees, and the hissing of the saber, "Ozheg-zheg-zheg..." and +again the horses jostled one another and neighed, not disturbing the +choir but joining in it. + +Petya did not know how long this lasted: he enjoyed himself all +the time, wondered at his enjoyment and regretted that there was no +one to share it. He was awakened by Likhachev's kindly voice. + +"It's ready, your honor; you can split a Frenchman in half with it!" + +Petya woke up. + +"It's getting light, it's really getting light!" he exclaimed. + +The horses that had previously been invisible could now be seen to +their very tails, and a watery light showed itself through the bare +branches. Petya shook himself, jumped up, took a ruble from his pocket +and gave it to Likhachev; then he flourished the saber, tested it, and +sheathed it. The Cossacks were untying their horses and tightening +their saddle girths. + +"And here's the commander," said Likhachev. + +Denisov came out of the watchman's hut and, having called Petya, +gave orders to get ready. + + + + +CHAPTER XI + + +The men rapidly picked out their horses in the semidarkness, +tightened their saddle girths, and formed companies. Denisov stood +by the watchman's hut giving final orders. The infantry of the +detachment passed along the road and quickly disappeared amid the +trees in the mist of early dawn, hundreds of feet splashing through +the mud. The esaul gave some orders to his men. Petya held his horse +by the bridle, impatiently awaiting the order to mount. His face, +having been bathed in cold water, was all aglow, and his eyes were +particularly brilliant. Cold shivers ran down his spine and his +whole body pulsed rhythmically. + +"Well, is ev'wything weady?" asked Denisov. "Bwing the horses." + +The horses were brought. Denisov was angry with the Cossack +because the saddle girths were too slack, reproved him, and mounted. +Petya put his foot in the stirrup. His horse by habit made as if to +nip his leg, but Petya leaped quickly into the saddle unconscious of +his own weight and, turning to look at the hussars starting in the +darkness behind him, rode up to Denisov. + +"Vasili Dmitrich, entrust me with some commission! Please... for +God's sake...!" said he. + +Denisov seemed to have forgotten Petya's very existence. He turned +to glance at him. + +"I ask one thing of you," he said sternly, "to obey me and not shove +yourself forward anywhere." + +He did not say another word to Petya but rode in silence all the +way. When they had come to the edge of the forest it was noticeably +growing light over the field. Denisov talked in whispers with the +esaul and the Cossacks rode past Petya and Denisov. When they had +all ridden by, Denisov touched his horse and rode down the hill. +Slipping onto their haunches and sliding, the horses descended with +their riders into the ravine. Petya rode beside Denisov, the pulsation +of his body constantly increasing. It was getting lighter and lighter, +but the mist still hid distant objects. Having reached the valley, +Denisov looked back and nodded to a Cossack beside him. + +"The signal!" said he. + +The Cossack raised his arm and a shot rang out. In an instant the +tramp of horses galloping forward was heard, shouts came from +various sides, and then more shots. + +At the first sound of trampling hoofs and shouting, Petya lashed his +horse and loosening his rein galloped forward, not heeding Denisov who +shouted at him. It seemed to Petya that at the moment the shot was +fired it suddenly became as bright as noon. He galloped to the bridge. +Cossacks were galloping along the road in front of him. On the +bridge he collided with a Cossack who had fallen behind, but he +galloped on. In front of him soldiers, probably Frenchmen, were +running from right to left across the road. One of them fell in the +mud under his horse's feet. + +Cossacks were crowding about a hut, busy with something. From the +midst of that crowd terrible screams arose. Petya galloped up, and the +first thing he saw was the pale face and trembling jaw of a Frenchman, +clutching the handle of a lance that had been aimed at him. + +"Hurrah!... Lads!... ours!" shouted Petya, and giving rein to his +excited horse he galloped forward along the village street. + +He could hear shooting ahead of him. Cossacks, hussars, and ragged +Russian prisoners, who had come running from both sides of the road, +were shouting something loudly and incoherently. A gallant-looking +Frenchman, in a blue overcoat, capless, and with a frowning red +face, had been defending himself against the hussars. When Petya +galloped up the Frenchman had already fallen. "Too late again!" +flashed through Petya's mind and he galloped on to the place from +which the rapid firing could be heard. The shots came from the yard of +the landowner's house he had visited the night before with Dolokhov. +The French were making a stand there behind a wattle fence in a garden +thickly overgrown with bushes and were firing at the Cossacks who +crowded at the gateway. Through the smoke, as he approached the +gate, Petya saw Dolokhov, whose face was of a pale-greenish tint, +shouting to his men. "Go round! Wait for the infantry!" he exclaimed +as Petya rode up to him. + +"Wait?... Hurrah-ah-ah!" shouted Petya, and without pausing a moment +galloped to the place whence came the sounds of firing and where the +smoke was thickest. + +A volley was heard, and some bullets whistled past, while others +plashed against something. The Cossacks and Dolokhov galloped after +Petya into the gateway of the courtyard. In the dense wavering smoke +some of the French threw down their arms and ran out of the bushes +to meet the Cossacks, while others ran down the hill toward the +pond. Petya was galloping along the courtyard, but instead of +holding the reins he waved both his arms about rapidly and +strangely, slipping farther and farther to one side in his saddle. His +horse, having galloped up to a campfire that was smoldering in the +morning light, stopped suddenly, and Petya fell heavily on to the +wet ground. The Cossacks saw that his arms and legs jerked rapidly +though his head was quite motionless. A bullet had pierced his skull. + +After speaking to the senior French officer, who came out of the +house with a white handkerchief tied to his sword and announced that +they surrendered, Dolokhov dismounted and went up to Petya, who lay +motionless with outstretched arms. + +"Done for!" he said with a frown, and went to the gate to meet +Denisov who was riding toward him. + +"Killed?" cried Denisov, recognizing from a distance the +unmistakably lifeless attitude--very familiar to him--in which Petya's +body was lying. + +"Done for!" repeated Dolokhov as if the utterance of these words +afforded him pleasure, and he went quickly up to the prisoners, who +were surrounded by Cossacks who had hurried up. "We won't take +them!" he called out to Denisov. + +Denisov did not reply; he rode up to Petya, dismounted, and with +trembling hands turned toward himself the bloodstained, +mud-bespattered face which had already gone white. + +"I am used to something sweet. Raisins, fine ones... take them all!" +he recalled Petya's words. And the Cossacks looked round in surprise +at the sound, like the yelp of a dog, with which Denisov turned +away, walked to the wattle fence, and seized hold of it. + +Among the Russian prisoners rescued by Denisov and Dolokhov was +Pierre Bezukhov. + + + + + +CHAPTER XII + +During the whole of their march from Moscow no fresh orders had been +issued by the French authorities concerning the party of prisoners +among whom was Pierre. On the twenty-second of October that party +was no longer with the same troops and baggage trains with which it +had left Moscow. Half the wagons laden with hardtack that had traveled +the first stages with them had been captured by Cossacks, the other +half had gone on ahead. Not one of those dismounted cavalrymen who had +marched in front of the prisoners was left; they had all +disappeared. The artillery the prisoners had seen in front of them +during the first days was now replaced by Marshal Junot's enormous +baggage train, convoyed by Westphalians. Behind the prisoners came a +cavalry baggage train. + +From Vyazma onwards the French army, which had till then moved in +three columns, went on as a single group. The symptoms of disorder +that Pierre had noticed at their first halting place after leaving +Moscow had now reached the utmost limit. + +The road along which they moved was bordered on both sides by dead +horses; ragged men who had fallen behind from various regiments +continually changed about, now joining the moving column, now again +lagging behind it. + +Several times during the march false alarms had been given and the +soldiers of the escort had raised their muskets, fired, and run +headlong, crushing one another, but had afterwards reassembled and +abused each other for their causeless panic. + +These three groups traveling together--the cavalry stores, the +convoy of prisoners, and Junot's baggage train--still constituted a +separate and united whole, though each of the groups was rapidly +melting away. + +Of the artillery baggage train which had consisted of a hundred +and twenty wagons, not more than sixty now remained; the rest had been +captured or left behind. Some of Junot's wagons also had been captured +or abandoned. Three wagons had been raided and robbed by stragglers +from Davout's corps. From the talk of the Germans Pierre learned +that a larger guard had been allotted to that baggage train than to +the prisoners, and that one of their comrades, a German soldier, had +been shot by the marshal's own order because a silver spoon +belonging to the marshal had been found in his possession. + +The group of prisoners had melted away most of all. Of the three +hundred and thirty men who had set out from Moscow fewer than a +hundred now remained. The prisoners were more burdensome to the escort +than even the cavalry saddles or Junot's baggage. They understood that +the saddles and Junot's spoon might be of some use, but that cold +and hungry soldiers should have to stand and guard equally cold and +hungry Russians who froze and lagged behind on the road (in which case +the order was to shoot them) was not merely incomprehensible but +revolting. And the escort, as if afraid, in the grievous condition +they themselves were in, of giving way to the pity they felt for the +prisoners and so rendering their own plight still worse, treated +them with particular moroseness and severity. + +At Dorogobuzh while the soldiers of the convoy, after locking the +prisoners in a stable, had gone off to pillage their own stores, +several of the soldier prisoners tunneled under the wall and ran away, +but were recaptured by the French and shot. + +The arrangement adopted when they started, that the officer +prisoners should be kept separate from the rest, had long since been +abandoned. All who could walk went together, and after the third stage +Pierre had rejoined Karataev and the gray-blue bandy-legged dog that +had chosen Karataev for its master. + +On the third day after leaving Moscow Karataev again fell ill with +the fever he had suffered from in the hospital in Moscow, and as he +grew gradually weaker Pierre kept away from him. Pierre did not know +why, but since Karataev had begun to grow weaker it had cost him an +effort to go near him. When he did so and heard the subdued moaning +with which Karataev generally lay down at the halting places, and when +he smelled the odor emanating from him which was now stronger than +before, Pierre moved farther away and did not think about him. + +While imprisoned in the shed Pierre had learned not with his +intellect but with his whole being, by life itself, that man is +created for happiness, that happiness is within him, in the +satisfaction of simple human needs, and that all unhappiness arises +not from privation but from superfluity. And now during these last +three weeks of the march he had learned still another new, consolatory +truth--that nothing in this world is terrible. He had learned that +as there is no condition in which man can be happy and entirely +free, so there is no condition in which he need be unhappy and lack +freedom. He learned that suffering and freedom have their limits and +that those limits are very near together; that the person in a bed +of roses with one crumpled petal suffered as keenly as he now, +sleeping on the bare damp earth with one side growing chilled while +the other was warming; and that when he had put on tight dancing shoes +he had suffered just as he did now when he walked with bare feet +that were covered with sores--his footgear having long since fallen to +pieces. He discovered that when he had married his wife--of his own +free will as it had seemed to him--he had been no more free than now +when they locked him up at night in a stable. Of all that he himself +subsequently termed his sufferings, but which at the time he +scarcely felt, the worst was the state of his bare, raw, and +scab-covered feet. (The horseflesh was appetizing and nourishing, +the saltpeter flavor of the gunpowder they used instead of salt was +even pleasant; there was no great cold, it was always warm walking +in the daytime, and at night there were the campfires; the lice that +devoured him warmed his body.) The one thing that was at first hard to +bear was his feet. + +After the second day's march Pierre, having examined his feet by the +campfire, thought it would be impossible to walk on them; but when +everybody got up he went along, limping, and, when he had warmed up, +walked without feeling the pain, though at night his feet were more +terrible to look at than before. However, he did not look at them now, +but thought of other things. + +Only now did Pierre realize the full strength of life in man and the +saving power he has of transferring his attention from one thing to +another, which is like the safety valve of a boiler that allows +superfluous steam to blow off when the pressure exceeds a certain +limit. + +He did not see and did not hear how they shot the prisoners who +lagged behind, though more than a hundred perished in that way. He did +not think of Karataev who grew weaker every day and evidently would +soon have to share that fate. Still less did Pierre think about +himself. The harder his position became and the more terrible the +future, the more independent of that position in which he found +himself were the joyful and comforting thoughts, memories, and +imaginings that came to him. + + + + + +CHAPTER XIII + + +At midday on the twenty-second of October Pierre was going uphill +along the muddy, slippery road, looking at his feet and at the +roughness of the way. Occasionally he glanced at the familiar crowd +around him and then again at his feet. The former and the latter +were alike familiar and his own. The blue-gray bandy legged dog ran +merrily along the side of the road, sometimes in proof of its +agility and self-satisfaction lifting one hind leg and hopping along +on three, and then again going on all four and rushing to bark at +the crows that sat on the carrion. The dog was merrier and sleeker +than it had been in Moscow. All around lay the flesh of different +animals--from men to horses--in various stages of decomposition; and +as the wolves were kept off by the passing men the dog could eat all +it wanted. + +It had been raining since morning and had seemed as if at any moment +it might cease and the sky clear, but after a short break it began +raining harder than before. The saturated road no longer absorbed +the water, which ran along the ruts in streams. + +Pierre walked along, looking from side to side, counting his steps +in threes, and reckoning them off on his fingers. Mentally +addressing the rain, he repeated: "Now then, now then, go on! Pelt +harder!" + +It seemed to him that he was thinking of nothing, but far down and +deep within him his soul was occupied with something important and +comforting. This something was a most subtle spiritual deduction +from a conversation with Karataev the day before. + +At their yesterday's halting place, feeling chilly by a dying +campfire, Pierre had got up and gone to the next one, which was +burning better. There Platon Karataev was sitting covered up--head and +all--with his greatcoat as if it were a vestment, telling the soldiers +in his effective and pleasant though now feeble voice a story Pierre +knew. It was already past midnight, the hour when Karataev was usually +free of his fever and particularly lively. When Pierre reached the +fire and heard Platon's voice enfeebled by illness, and saw his +pathetic face brightly lit up by the blaze, he felt a painful prick at +his heart. His feeling of pity for this man frightened him and he +wished to go away, but there was no other fire, and Pierre sat down, +trying not to look at Platon. + +"Well, how are you?" he asked. + +"How am I? If we grumble at sickness, God won't grant us death," +replied Platon, and at once resumed the story he had begun. + +"And so, brother," he continued, with a smile on his pale +emaciated face and a particularly happy light in his eyes, "you +see, brother..." + +Pierre had long been familiar with that story. Karataev had told +it to him alone some half-dozen times and always with a specially +joyful emotion. But well as he knew it, Pierre now listened to that +tale as to something new, and the quiet rapture Karataev evidently +felt as he told it communicated itself also to Pierre. The story was +of an old merchant who lived a good and God-fearing life with his +family, and who went once to the Nizhni fair with a companion--a +rich merchant. + +Having put up at an inn they both went to sleep, and next morning +his companion was found robbed and with his throat cut. A bloodstained +knife was found under the old merchant's pillow. He was tried, +knouted, and his nostrils having been torn off, "all in due form" as +Karataev put it, he was sent to hard labor in Siberia. + +"And so, brother" (it was at this point that Pierre came up), "ten +years or more passed by. The old man was living as a convict, +submitting as he should and doing no wrong. Only he prayed to God +for death. Well, one night the convicts were gathered just as we +are, with the old man among them. And they began telling what each was +suffering for, and how they had sinned against God. One told how he +had taken a life, another had taken two, a third had set a house on +fire, while another had simply been a vagrant and had done nothing. So +they asked the old man: 'What are you being punished for, Daddy?'--'I, +my dear brothers,' said he, 'am being punished for my own and other +men's sins. But I have not killed anyone or taken anything that was +not mine, but have only helped my poorer brothers. I was a merchant, +my dear brothers, and had much property. 'And he went on to tell +them all about it in due order. 'I don't grieve for myself,' he +says, 'God, it seems, has chastened me. Only I am sorry for my old +wife and the children,' and the old man began to weep. Now it happened +that in the group was the very man who had killed the other +merchant. 'Where did it happen, Daddy?' he said. 'When, and in what +month?' He asked all about it and his heart began to ache. So he comes +up to the old man like this, and falls down at his feet! 'You are +perishing because of me, Daddy,' he says. 'It's quite true, lads, that +this man,' he says, 'is being tortured innocently and for nothing! I,' +he says, 'did that deed, and I put the knife under your head while you +were asleep. Forgive me, Daddy,' he says, 'for Christ's sake!'" + +Karataev paused, smiling joyously as he gazed into the fire, and +he drew the logs together. + +"And the old man said, 'God will forgive you, we are all sinners +in His sight. I suffer for my own sins,' and he wept bitter tears. +Well, and what do you think, dear friends?" Karataev continued, his +face brightening more and more with a rapturous smile as if what he +now had to tell contained the chief charm and the whole meaning of his +story: "What do you think, dear fellows? That murderer confessed to +the authorities. 'I have taken six lives,' he says (he was a great +sinner), 'but what I am most sorry for is this old man. Don't let +him suffer because of me.' So he confessed and it was all written down +and the papers sent off in due form. The place was a long way off, and +while they were judging, what with one thing and another, filling in +the papers all in due form--the authorities I mean--time passed. The +affair reached the Tsar. After a while the Tsar's decree came: to +set the merchant free and give him a compensation that had been +awarded. The paper arrived and they began to look for the old man. +'Where is the old man who has been suffering innocently and in vain? A +paper has come from the Tsar!' so they began looking for him," here +Karataev's lower jaw trembled, "but God had already forgiven him--he +was dead! That's how it was, dear fellows!" Karataev concluded and sat +for a long time silent, gazing before him with a smile. + +And Pierre's soul was dimly but joyfully filled not by the story +itself but by its mysterious significance: by the rapturous joy that +lit up Karataev's face as he told it, and the mystic significance of +that joy. + + + + + +CHAPTER XIV + + +"A vos places!"* suddenly cried a voice. + + +*"To your places." + + +A pleasant feeling of excitement and an expectation of something +joyful and solemn was aroused among the soldiers of the convoy and the +prisoners. From all sides came shouts of command, and from the left +came smartly dressed cavalrymen on good horses, passing the +prisoners at a trot. The expression on all faces showed the tension +people feel at the approach of those in authority. The prisoners +thronged together and were pushed off the road. The convoy formed up. + +"The Emperor! The Emperor! The Marshal! The Duke!" and hardly had +the sleek cavalry passed, before a carriage drawn by six gray horses +rattled by. Pierre caught a glimpse of a man in a three-cornered hat +with a tranquil look on his handsome, plump, white face. It was one of +the marshals. His eye fell on Pierre's large and striking figure, +and in the expression with which he frowned and looked away Pierre +thought he detected sympathy and a desire to conceal that sympathy. + +The general in charge of the stores galloped after the carriage with +a red and frightened face, whipping up his skinny horse. Several +officers formed a group and some soldiers crowded round them. Their +faces all looked excited and worried. + +"What did he say? What did he say?" Pierre heard them ask. + +While the marshal was passing, the prisoners had huddled together in +a crowd, and Pierre saw Karataev whom he had not yet seen that +morning. He sat in his short overcoat leaning against a birch tree. On +his face, besides the look of joyful emotion it had worn yesterday +while telling the tale of the merchant who suffered innocently, +there was now an expression of quiet solemnity. + +Karataev looked at Pierre with his kindly round eyes now filled with +tears, evidently wishing him to come near that he might say +something to him. But Pierre was not sufficiently sure of himself. +He made as if he did not notice that look and moved hastily away. + +When the prisoners again went forward Pierre looked round. +Karataev was still sitting at the side of the road under the birch +tree and two Frenchmen were talking over his head. Pierre did not look +round again but went limping up the hill. + +From behind, where Karataev had been sitting, came the sound of a +shot. Pierre heard it plainly, but at that moment he remembered that +he had not yet finished reckoning up how many stages still remained to +Smolensk--a calculation he had begun before the marshal went by. And +he again started reckoning. Two French soldiers ran past Pierre, one +of whom carried a lowered and smoking gun. They both looked pale, +and in the expression on their faces--one of them glanced timidly at +Pierre--there was something resembling what he had seen on the face of +the young soldier at the execution. Pierre looked at the soldier and +remembered that, two days before, that man had burned his shirt +while drying it at the fire and how they had laughed at him. + +Behind him, where Karataev had been sitting, the dog began to +howl. "What a stupid beast! Why is it howling?" thought Pierre. + +His comrades, the prisoner soldiers walking beside him, avoided +looking back at the place where the shot had been fired and the dog +was howling, just as Pierre did, but there was a set look on all their +faces. + + + + + +CHAPTER XV + + +The stores, the prisoners, and the marshal's baggage train stopped +at the village of Shamshevo. The men crowded together round the +campfires. Pierre went up to the fire, ate some roast horseflesh, +lay down with his back to the fire, and immediately fell asleep. He +again slept as he had done at Mozhaysk after the battle of Borodino. + +Again real events mingled with dreams and again someone, he or +another, gave expression to his thoughts, and even to the same +thoughts that had been expressed in his dream at Mozhaysk. + +"Life is everything. Life is God. Everything changes and moves and +that movement is God. And while there is life there is joy in +consciousness of the divine. To love life is to love God. Harder and +more blessed than all else is to love this life in one's sufferings, +in innocent sufferings." + +"Karataev!" came to Pierre's mind. + +And suddenly he saw vividly before him a long-forgotten, kindly +old man who had given him geography lessons in Switzerland. "Wait a +bit," said the old man, and showed Pierre a globe. This globe was +alive--a vibrating ball without fixed dimensions. Its whole surface +consisted of drops closely pressed together, and all these drops moved +and changed places, sometimes several of them merging into one, +sometimes one dividing into many. Each drop tried to spread out and +occupy as much space as possible, but others striving to do the same +compressed it, sometimes destroyed it, and sometimes merged with it. + +"That is life," said the old teacher. + +"How simple and clear it is," thought Pierre. "How is it I did not +know it before?" + +"God is in the midst, and each drop tries to expand so as to reflect +Him to the greatest extent. And it grows, merges, disappears from +the surface, sinks to the depths, and again emerges. There now, +Karataev has spread out and disappeared. Do you understand, my child?" +said the teacher. + +"Do you understand, damn you?" shouted a voice, and Pierre woke up. + +He lifted himself and sat up. A Frenchman who had just pushed a +Russian soldier away was squatting by the fire, engaged in roasting +a piece of meat stuck on a ramrod. His sleeves were rolled up and +his sinewy, hairy, red hands with their short fingers deftly turned +the ramrod. His brown morose face with frowning brows was clearly +visible by the glow of the charcoal. + +"It's all the same to him," he muttered, turning quickly to a +soldier who stood behind him. "Brigand! Get away!" + +And twisting the ramrod he looked gloomily at Pierre, who turned +away and gazed into the darkness. A prisoner, the Russian soldier +the Frenchman had pushed away, was sitting near the fire patting +something with his hand. Looking more closely Pierre recognized the +blue-gray dog, sitting beside the soldier, wagging its tail. + +"Ah, he's come?" said Pierre. "And Plat-" he began, but did not +finish. + +Suddenly and simultaneously a crowd of memories awoke in his +fancy--of the look Platon had given him as he sat under the tree, of +the shot heard from that spot, of the dog's howl, of the guilty +faces of the two Frenchmen as they ran past him, of the lowered and +smoking gun, and of Karataev's absence at this halt--and he was on the +point of realizing that Karataev had been killed, but just at that +instant, he knew not why, the recollection came to his mind of a +summer evening he had spent with a beautiful Polish lady on the +veranda of his house in Kiev. And without linking up the events of the +day or drawing a conclusion from them, Pierre closed his eyes, +seeing a vision of the country in summertime mingled with memories +of bathing and of the liquid, vibrating globe, and he sank into +water so that it closed over his head. + +Before sunrise he was awakened by shouts and loud and rapid +firing. French soldiers were running past him. + +"The Cossacks!" one of them shouted, and a moment later a crowd of +Russians surrounded Pierre. + +For a long time he could not understand what was happening to him. +All around he heard his comrades sobbing with joy. + +"Brothers! Dear fellows! Darlings!" old soldiers exclaimed, weeping, +as they embraced Cossacks and hussars. + +The hussars and Cossacks crowded round the prisoners; one offered +them clothes, another boots, and a third bread. Pierre sobbed as he +sat among them and could not utter a word. He hugged the first soldier +who approached him, and kissed him, weeping. + +Dolokhov stood at the gate of the ruined house, letting a crowd of +disarmed Frenchmen pass by. The French, excited by all that had +happened, were talking loudly among themselves, but as they passed +Dolokhov who gently switched his boots with his whip and watched +them with cold glassy eyes that boded no good, they became silent. +On the opposite side stood Dolokhov's Cossack, counting the +prisoners and marking off each hundred with a chalk line on the gate. + +"How many?" Dolokhov asked the Cossack. + +"The second hundred," replied the Cossack. + +"Filez, filez!"* Dolokhov kept saying, having adopted this +expression from the French, and when his eyes met those of the +prisoners they flashed with a cruel light. + + +*"Get along, get along!" + + +Denisov, bareheaded and with a gloomy face, walked behind some +Cossacks who were carrying the body of Petya Rostov to a hole that had +been dug in the garden. + + + + + +CHAPTER XVI + + +After the twenty-eighth of October when the frosts began, the flight +of the French assumed a still more tragic character, with men +freezing, or roasting themselves to death at the campfires, while +carriages with people dressed in furs continued to drive past, +carrying away the property that had been stolen by the Emperor, kings, +and dukes; but the process of the flight and disintegration of the +French army went on essentially as before. + +From Moscow to Vyazma the French army of seventy-three thousand +men not reckoning the Guards (who did nothing during the whole war but +pillage) was reduced to thirty-six thousand, though not more than five +thousand had fallen in battle. From this beginning the succeeding +terms of the progression could be determined mathematically. The +French army melted away and perished at the same rate from Moscow to +Vyazma, from Vyazma to Smolensk, from Smolensk to the Berezina, and +from the Berezina to Vilna--independently of the greater or lesser +intensity of the cold, the pursuit, the barring of the way, or any +other particular conditions. Beyond Vyazma the French army instead +of moving in three columns huddled together into one mass, and so went +on to the end. Berthier wrote to his Emperor (we know how far +commanding officers allow themselves to diverge from the truth in +describing the condition of an army) and this is what he said: + + +I deem it my duty to report to Your Majesty the condition of the +various corps I have had occasion to observe during different stages +of the last two or three days' march. They are almost disbanded. +Scarcely a quarter of the soldiers remain with the standards of +their regiments, the others go off by themselves in different +directions hoping to find food and escape discipline. In general +they regard Smolensk as the place where they hope to recover. During +the last few days many of the men have been seen to throw away their +cartridges and their arms. In such a state of affairs, whatever your +ultimate plans may be, the interest of Your Majesty's service +demands that the army should be rallied at Smolensk and should first +of all be freed from ineffectives, such as dismounted cavalry, +unnecessary baggage, and artillery material that is no longer in +proportion to the present forces. The soldiers, who are worn out +with hunger and fatigue, need these supplies as well as a few days' +rest. Many have died last days on the road or at the bivouacs. This +state of things is continually becoming worse and makes one fear +that unless a prompt remedy is applied the troops will no longer be +under control in case of an engagement. + +November 9: twenty miles from Smolensk. + + +After staggering into Smolensk which seemed to them a promised land, +the French, searching for food, killed one another, sacked their own +stores, and when everything had been plundered fled farther. + +They all went without knowing whither or why they were going. +Still less did that genius, Napoleon, know it, for no one issued any +orders to him. But still he and those about him retained their old +habits: wrote commands, letters, reports, and orders of the day; +called one another sire, mon cousin, prince d'Eckmuhl, roi de +Naples, and so on. But these orders and reports were only on paper, +nothing in them was acted upon for they could not be carried out, +and though they entitled one another Majesties, Highnesses, or +Cousins, they all felt that they were miserable wretches who had +done much evil for which they had now to pay. And though they +pretended to be concerned about the army, each was thinking only of +himself and of how to get away quickly and save himself. + + + + +CHAPTER XVII + + +The movements of the Russian and French armies during the campaign +from Moscow back to the Niemen were like those in a game of Russian +blindman's bluff, in which two players are blindfolded and one of them +occasionally rings a little bell to inform the catcher of his +whereabouts. First he rings his bell fearlessly, but when he gets into +a tight place he runs away as quietly as he can, and often thinking to +escape runs straight into his opponent's arms. + +At first while they were still moving along the Kaluga road, +Napoleon's armies made their presence known, but later when they +reached the Smolensk road they ran holding the clapper of their bell +tight--and often thinking they were escaping ran right into the +Russians. + +Owing to the rapidity of the French flight and the Russian pursuit +and the consequent exhaustion of the horses, the chief means of +approximately ascertaining the enemy's position--by cavalry +scouting--was not available. Besides, as a result of the frequent +and rapid change of position by each army, even what information was +obtained could not be delivered in time. If news was received one +day that the enemy had been in a certain position the day before, by +the third day when something could have been done, that army was +already two days' march farther on and in quite another position. + +One army fled and the other pursued. Beyond Smolensk there were +several different roads available for the French, and one would have +thought that during their stay of four days they might have learned +where the enemy was, might have arranged some more advantageous plan +and undertaken something new. But after a four days' halt the mob, +with no maneuvers or plans, again began running along the beaten +track, neither to the right nor to the left but along the old--the +worst--road, through Krasnoe and Orsha. + +Expecting the enemy from behind and not in front, the French +separated in their flight and spread out over a distance of +twenty-four hours. In front of them all fled the Emperor, then the +kings, then the dukes. The Russian army, expecting Napoleon to take +the road to the right beyond the Dnieper--which was the only +reasonable thing for him to do--themselves turned to the right and +came out onto the highroad at Krasnoe. And here as in a game of +blindman's buff the French ran into our vanguard. Seeing their enemy +unexpectedly the French fell into confusion and stopped short from the +sudden fright, but then they resumed their flight, abandoning their +comrades who were farther behind. Then for three days separate +portions of the French army--first Murat's (the vice-king's), then +Davout's, and then Ney's--ran, as it were, the gauntlet of the Russian +army. They abandoned one another, abandoned all their heavy baggage, +their artillery, and half their men, and fled, getting past the +Russians by night by making semicircles to the right. + +Ney, who came last, had been busying himself blowing up the walls of +Smolensk which were in nobody's way, because despite the unfortunate +plight of the French or because of it, they wished to punish the floor +against which they had hurt themselves. Ney, who had had a corps of +ten thousand men, reached Napoleon at Orsha with only one thousand men +left, having abandoned all the rest and all his cannon, and having +crossed the Dnieper at night by stealth at a wooded spot. + +From Orsha they fled farther along the road to Vilna, still +playing at blindman's buff with the pursuing army. At the Berezina +they again became disorganized, many were drowned and many +surrendered, but those who got across the river fled farther. Their +supreme chief donned a fur coat and, having seated himself in a +sleigh, galloped on alone, abandoning his companions. The others who +could do so drove away too, leaving those who could not to surrender +or die. + + + + + +CHAPTER XVIII + + +This campaign consisted in a flight of the French during which +they did all they could to destroy themselves. From the time they +turned onto the Kaluga road to the day their leader fled from the +army, none of the movements of the crowd had any sense. So one might +have thought that regarding this period of the campaign the +historians, who attributed the actions of the mass to the will of +one man, would have found it impossible to make the story of the +retreat fit their theory. But no! Mountains of books have been written +by the historians about this campaign, and everywhere are described +Napoleon's arrangements, the maneuvers, and his profound plans which +guided the army, as well as the military genius shown by his marshals. + +The retreat from Malo-Yaroslavets when he had a free road into a +well-supplied district and the parallel road was open to him along +which Kutuzov afterwards pursued him--this unnecessary retreat along a +devastated road--is explained to us as being due to profound +considerations. Similarly profound considerations are given for his +retreat from Smolensk to Orsha. Then his heroism at Krasnoe is +described, where he is reported to have been prepared to accept battle +and take personal command, and to have walked about with a birch stick +and said: + +"J'ai assez fait l'empereur; il est temps de faire le general,"* but +nevertheless immediately ran away again, abandoning to its fate the +scattered fragments of the army he left behind. + + +*"I have acted the Emperor long enough; it is time to act the +general." + + +Then we are told of the greatness of soul of the marshals, +especially of Ney--a greatness of soul consisting in this: that he +made his way by night around through the forest and across the Dnieper +and escaped to Orsha, abandoning standards, artillery, and nine tenths +of his men. + +And lastly, the final departure of the great Emperor from his heroic +army is presented to us by the historians as something great and +characteristic of genius. Even that final running away, described in +ordinary language as the lowest depth of baseness which every child is +taught to be ashamed of--even that act finds justification in the +historians' language. + +When it is impossible to stretch the very elastic threads of +historical ratiocination any farther, when actions are clearly +contrary to all that humanity calls right or even just, the historians +produce a saving conception of "greatness." "Greatness," it seems, +excludes the standards of right and wrong. For the "great" man nothing +is wrong, there is no atrocity for which a "great" man can be blamed. + +"C'est grand!"* say the historians, and there no longer exists +either good or evil but only "grand" and "not grand." Grand is good, +not grand is bad. Grand is the characteristic, in their conception, of +some special animals called "heroes." And Napoleon, escaping home in a +warm fur coat and leaving to perish those who were not merely his +comrades but were (in his opinion) men he had brought there, feels que +c'est grand,*[2] and his soul is tranquil. + + +*"It is great." + +*[2] That it is great. + + +"Du sublime (he saw something sublime in himself) au ridicule il n'y +a qu'un pas,"* said he. And the whole world for fifty years has been +repeating: "Sublime! Grand! Napoleon le Grand!" Du sublime au ridicule +il n'y a qu'un pas. + + +*"From the sublime to the ridiculous is but a step." + + +And it occurs to no one that to admit a greatness not +commensurable with the standard of right and wrong is merely to +admit one's own nothingness and immeasurable meanness. + +For us with the standard of good and evil given us by Christ, no +human actions are incommensurable. And there is no greatness where +simplicity, goodness, and truth are absent. + + + + + +CHAPTER XIX + + +What Russian, reading the account of the last part of the campaign +of 1812, has not experienced an uncomfortable feeling of regret, +dissatisfaction, and perplexity? Who has not asked himself how it is +that the French were not all captured or destroyed when our three +armies surrounded them in superior numbers, when the disordered +French, hungry and freezing, surrendered in crowds, and when (as the +historians relate) the aim of the Russians was to stop the French, +to cut them off, and capture them all? + +How was it that the Russian army, which when numerically weaker than +the French had given battle at Borodino, did not achieve its purpose +when it had surrounded the French on three sides and when its aim +was to capture them? Can the French be so enormously superior to us +that when we had surrounded them with superior forces we could not +beat them? How could that happen? + +History (or what is called by that name) replying to these questions +says that this occurred because Kutuzov and Tormasov and Chichagov, +and this man and that man, did not execute such and such maneuvers... + +But why did they not execute those maneuvers? And why if they were +guilty of not carrying out a prearranged plan were they not tried +and punished? But even if we admitted that Kutuzov, Chichagov, and +others were the cause of the Russian failures, it is still +incomprehensible why, the position of the Russian army being what it +was at Krasnoe and at the Berezina (in both cases we had superior +forces), the French army with its marshals, kings, and Emperor was not +captured, if that was what the Russians aimed at. + +The explanation of this strange fact given by Russian military +historians (to the effect that Kutuzov hindered an attack) is +unfounded, for we know that he could not restrain the troops from +attacking at Vyazma and Tarutino. + +Why was the Russian army--which with inferior forces had withstood +the enemy in full strength at Borodino--defeated at Krasnoe and the +Berezina by the disorganized crowds of the French when it was +numerically superior? + +If the aim of the Russians consisted in cutting off and capturing +Napoleon and his marshals--and that aim was not merely frustrated +but all attempts to attain it were most shamefully baffled--then +this last period of the campaign is quite rightly considered by the +French to be a series of victories, and quite wrongly considered +victorious by Russian historians. + +The Russian military historians in so far as they submit to claims +of logic must admit that conclusion, and in spite of their lyrical +rhapsodies about valor, devotion, and so forth, must reluctantly admit +that the French retreat from Moscow was a series of victories for +Napoleon and defeats for Kutuzov. + +But putting national vanity entirely aside one feels that such a +conclusion involves a contradiction, since the series of French +victories brought the French complete destruction, while the series of +Russian defeats led to the total destruction of their enemy and the +liberation of their country. + +The source of this contradiction lies in the fact that the +historians studying the events from the letters of the sovereigns +and the generals, from memoirs, reports, projects, and so forth, +have attributed to this last period of the war of 1812 an aim that +never existed, namely that of cutting off and capturing Napoleon +with his marshals and his army. + +There never was or could have been such an aim, for it would have +been senseless and its attainment quite impossible. + +It would have been senseless, first because Napoleon's +disorganized army was flying from Russia with all possible speed, that +is to say, was doing just what every Russian desired. So what was +the use of performing various operations on the French who were +running away as fast as they possibly could? + +Secondly, it would have been senseless to block the passage of men +whose whole energy was directed to flight. + +Thirdly, it would have been senseless to sacrifice one's own +troops in order to destroy the French army, which without external +interference was destroying itself at such a rate that, though its +path was not blocked, it could not carry across the frontier more than +it actually did in December, namely a hundredth part of the original +army. + +Fourthly, it would have been senseless to wish to take captive the +Emperor, kings, and dukes--whose capture would have been in the +highest degree embarrassing for the Russians, as the most adroit +diplomatists of the time (Joseph de Maistre and others) recognized. +Still more senseless would have been the wish to capture army corps of +the French, when our own army had melted away to half before +reaching Krasnoe and a whole division would have been needed to convoy +the corps of prisoners, and when our men were not always getting +full rations and the prisoners already taken were perishing of hunger. + +All the profound plans about cutting off and capturing Napoleon +and his army were like the plan of a market gardener who, when driving +out of his garden a cow that had trampled down the beds he had +planted, should run to the gate and hit the cow on the head. The +only thing to be said in excuse of that gardener would be that he +was very angry. But not even that could be said for those who drew +up this project, for it was not they who had suffered from the +trampled beds. + +But besides the fact that cutting off Napoleon with his army would +have been senseless, it was impossible. + +It was impossible first because--as experience shows that a +three-mile movement of columns on a battlefield never coincides with +the plans--the probability of Chichagov, Kutuzov, and Wittgenstein +effecting a junction on time at an appointed place was so remote as to +be tantamount to impossibility, as in fact thought Kutuzov, who when +he received the plan remarked that diversions planned over great +distances do not yield the desired results. + +Secondly it was impossible, because to paralyze the momentum with +which Napoleon's army was retiring, incomparably greater forces than +the Russians possessed would have been required. + +Thirdly it was impossible, because the military term "to cut off" +has no meaning. One can cut off a slice of bread, but not an army. +To cut off an army--to bar its road--is quite impossible, for there is +always plenty of room to avoid capture and there is the night when +nothing can be seen, as the military scientists might convince +themselves by the example of Krasnoe and of the Berezina. It is only +possible to capture prisoners if they agree to be captured, just as it +is only possible to catch a swallow if it settles on one's hand. Men +can only be taken prisoners if they surrender according to the rules +of strategy and tactics, as the Germans did. But the French troops +quite rightly did not consider that this suited them, since death by +hunger and cold awaited them in flight or captivity alike. + +Fourthly and chiefly it was impossible, because never since the +world began has a war been fought under such conditions as those +that obtained in 1812, and the Russian army in its pursuit of the +French strained its strength to the utmost and could not have done +more without destroying itself. + +During the movement of the Russian army from Tarutino to Krasnoe +it lost fifty thousand sick or stragglers, that is a number equal to +the population of a large provincial town. Half the men fell out of +the army without a battle. + +And it is of this period of the campaign--when the army lacked boots +and sheepskin coats, was short of provisions and without vodka, and +was camping out at night for months in the snow with fifteen degrees +of frost, when there were only seven or eight hours of daylight and +the rest was night in which the influence of discipline cannot be +maintained, when men were taken into that region of death where +discipline fails, not for a few hours only as in a battle, but for +months, where they were every moment fighting death from hunger and +cold, when half the army perished in a single month--it is of this +period of the campaign that the historians tell us how Miloradovich +should have made a flank march to such and such a place, Tormasov to +another place, and Chichagov should have crossed (more than +knee-deep in snow) to somewhere else, and how so-and-so "routed" and +"cut off" the French and so on and so on. + +The Russians, half of whom died, did all that could and should +have been done to attain an end worthy of the nation, and they are not +to blame because other Russians, sitting in warm rooms, proposed +that they should do what was impossible. + +All that strange contradiction now difficult to understand between +the facts and the historical accounts only arises because the +historians dealing with the matter have written the history of the +beautiful words and sentiments of various generals, and not the +history of the events. + +To them the words of Miloradovich seem very interesting, and so do +their surmises and the rewards this or that general received; but +the question of those fifty thousand men who were left in hospitals +and in graves does not even interest them, for it does not come within +the range of their investigation. + +Yet one need only discard the study of the reports and general plans +and consider the movement of those hundreds of thousands of men who +took a direct part in the events, and all the questions that seemed +insoluble easily and simply receive an immediate and certain solution. + +The aim of cutting off Napoleon and his army never existed except in +the imaginations of a dozen people. It could not exist because it +was senseless and unattainable. + +The people had a single aim: to free their land from invasion. +That aim was attained in the first place of itself, as the French +ran away, and so it was only necessary not to stop their flight. +Secondly it was attained by the guerrilla warfare which was destroying +the French, and thirdly by the fact that a large Russian army was +following the French, ready to use its strength in case their movement +stopped. + +The Russian army had to act like a whip to a running animal. And the +experienced driver knew it was better to hold the whip raised as a +menace than to strike the running animal on the head. + + + + + +BOOK FIFTEEN: 1812 --13 + + + + + +CHAPTER I + + +When seeing a dying animal a man feels a sense of horror: +substance similar to his own is perishing before his eyes. But when it +is a beloved and intimate human being that is dying, besides this +horror at the extinction of life there is a severance, a spiritual +wound, which like a physical wound is sometimes fatal and sometimes +heals, but always aches and shrinks at any external irritating touch. + +After Prince Andrew's death Natasha and Princess Mary alike felt +this. Drooping in spirit and closing their eyes before the menacing +cloud of death that overhung them, they dared not look life in the +face. They carefully guarded their open wounds from any rough and +painful contact. Everything: a carriage passing rapidly in the street, +a summons to dinner, the maid's inquiry what dress to prepare, or +worse still any word of insincere or feeble sympathy, seemed an +insult, painfully irritated the wound, interrupting that necessary +quiet in which they both tried to listen to the stern and dreadful +choir that still resounded in their imagination, and hindered their +gazing into those mysterious limitless vistas that for an instant +had opened out before them. + +Only when alone together were they free from such outrage and +pain. They spoke little even to one another, and when they did it +was of very unimportant matters. + +Both avoided any allusion to the future. To admit the possibility of +a future seemed to them to insult his memory. Still more carefully did +they avoid anything relating to him who was dead. It seemed to them +that what they had lived through and experienced could not be +expressed in words, and that any reference to the details of his +life infringed the majesty and sacredness of the mystery that had been +accomplished before their eyes. + +Continued abstention from speech, and constant avoidance of +everything that might lead up to the subject--this halting on all +sides at the boundary of what they might not mention--brought before +their minds with still greater purity and clearness what they were +both feeling. + +But pure and complete sorrow is as impossible as pure and complete +joy. Princess Mary, in her position as absolute and independent +arbiter of her own fate and guardian and instructor of her nephew, was +the first to be called back to life from that realm of sorrow in which +she had dwelt for the first fortnight. She received letters from her +relations to which she had to reply; the room in which little Nicholas +had been put was damp and he began to cough; Alpatych came to +Yaroslavl with reports on the state of their affairs and with advice +and suggestions that they should return to Moscow to the house on +the Vozdvizhenka Street, which had remained uninjured and needed +only slight repairs. Life did not stand still and it was necessary +to live. Hard as it was for Princess Mary to emerge from the realm +of secluded contemplation in which she had lived till then, and +sorry and almost ashamed as she felt to leave Natasha alone, yet the +cares of life demanded her attention and she involuntarily yielded +to them. She went through the accounts with Alpatych, conferred with +Dessalles about her nephew, and gave orders and made preparations +for the journey to Moscow. + +Natasha remained alone and, from the time Princess Mary began making +preparations for departure, held aloof from her too. + +Princess Mary asked the countess to let Natasha go with her to +Moscow, and both parents gladly accepted this offer, for they saw +their daughter losing strength every day and thought that a change +of scene and the advice of Moscow doctors would be good for her. + +"I am not going anywhere," Natasha replied when this was proposed to +her. "Do please just leave me alone!" And she ran out of the room, +with difficulty refraining from tears of vexation and irritation +rather than of sorrow. + +After she felt herself deserted by Princes Mary and alone in her +grief, Natasha spent most of the time in her room by herself, +sitting huddled up feet and all in the corner of the sofa, tearing and +twisting something with her slender nervous fingers and gazing +intently and fixedly at whatever her eyes chanced to fall on. This +solitude exhausted and tormented her but she was in absolute need of +it. As soon as anyone entered she got up quickly, changed her position +and expression, and picked up a book or some sewing, evidently waiting +impatiently for the intruder to go. + +She felt all the time as if she might at any moment penetrate that +on which--with a terrible questioning too great for her strength- +her spiritual gaze was fixed. + +One day toward the end of December Natasha, pale and thin, dressed +in a black woolen gown, her plaited hair negligently twisted into a +knot, was crouched feet and all in the corner of her sofa, nervously +crumpling and smoothing out the end of her sash while she looked at +a corner of the door. + +She was gazing in the direction in which he had gone--to the other +side of life. And that other side of life, of which she had never +before thought and which had formerly seemed to her so far away and +improbable, was now nearer and more akin and more comprehensible +than this side of life, where everything was either emptiness and +desolation or suffering and indignity. + +She was gazing where she knew him to be; but she could not imagine +him otherwise than as he had been here. She now saw him again as he +had been at Mytishchi, at Troitsa, and at Yaroslavl. + +She saw his face, heard his voice, repeated his words and her own, +and sometimes devised other words they might have spoken. + +There he is lying back in an armchair in his velvet cloak, leaning +his head on his thin pale hand. His chest is dreadfully hollow and his +shoulders raised. His lips are firmly closed, his eyes glitter, and +a wrinkle comes and goes on his pale forehead. One of his legs +twitches just perceptibly, but rapidly. Natasha knows that he is +struggling with terrible pain. "What is that pain like? Why does he +have that pain? What does he feel? How does it hurt him?" thought +Natasha. He noticed her watching him, raised his eyes, and began to +speak seriously: + +"One thing would be terrible," said he: "to bind oneself forever +to a suffering man. It would be continual torture." And he looked +searchingly at her. Natasha as usual answered before she had time to +think what she would say. She said: "This can't go on--it won't. You +will get well--quite well." + +She now saw him from the commencement of that scene and relived what +she had then felt. She recalled his long sad and severe look at +those words and understood the meaning of the rebuke and despair in +that protracted gaze. + +"I agreed," Natasha now said to herself, "that it would be +dreadful if he always continued to suffer. I said it then only because +it would have been dreadful for him, but he understood it differently. +He thought it would be dreadful for me. He then still wished to live +and feared death. And I said it so awkwardly and stupidly! I did not +say what I meant. I thought quite differently. Had I said what I +thought, I should have said: even if he had to go on dying, to die +continually before my eyes, I should have been happy compared with +what I am now. Now there is nothing... nobody. Did he know that? No, +he did not and never will know it. And now it will never, never be +possible to put it right." And now he again seemed to be saying the +same words to her, only in her imagination Natasha this time gave +him a different answer. She stopped him and said: "Terrible for you, +but not for me! You know that for me there is nothing in life but you, +and to suffer with you is the greatest happiness for me," and he +took her hand and pressed it as he had pressed it that terrible +evening four days before his death. And in her imagination she said +other tender and loving words which she might have said then but +only spoke now: "I love thee!... thee! I love, love..." she said, +convulsively pressing her hands and setting her teeth with a desperate +effort... + +She was overcome by sweet sorrow and tears were already rising in +her eyes; then she suddenly asked herself to whom she was saying this. +Again everything was shrouded in hard, dry perplexity, and again +with a strained frown she peered toward the world where he was. And +now, now it seemed to her she was penetrating the mystery.... But at +the instant when it seemed that the incomprehensible was revealing +itself to her a loud rattle of the door handle struck painfully on her +ears. Dunyasha, her maid, entered the room quickly and abruptly with a +frightened look on her face and showing no concern for her mistress. + +"Come to your Papa at once, please!" said she with a strange, +excited look. "A misfortune... about Peter Ilynich... a letter," she +finished with a sob. + + + + + +CHAPTER II + + +Besides a feeling of aloofness from everybody Natasha was feeling +a special estrangement from the members of her own family. All of +them--her father, mother, and Sonya--were so near to her, so familiar, +so commonplace, that all their words and feelings seemed an insult +to the world in which she had been living of late, and she felt not +merely indifferent to them but regarded them with hostility. She heard +Dunyasha's words about Peter Ilynich and a misfortune, but did not +grasp them. + +"What misfortune? What misfortune can happen to them? They just live +their own old, quiet, and commonplace life," thought Natasha. + +As she entered the ballroom her father was hurriedly coming out of +her mother's room. His face was puckered up and wet with tears. He had +evidently run out of that room to give vent to the sobs that were +choking him. When he saw Natasha he waved his arms despairingly and +burst into convulsively painful sobs that distorted his soft round +face. + +"Pe... Petya... Go, go, she... is calling..." and weeping like a +child and quickly shuffling on his feeble legs to a chair, he almost +fell into it, covering his face with his hands. + +Suddenly an electric shock seemed to run through Natasha's whole +being. Terrible anguish struck her heart, she felt a dreadful ache +as if something was being torn inside her and she were dying. But +the pain was immediately followed by a feeling of release from the +oppressive constraint that had prevented her taking part in life. +The sight of her father, the terribly wild cries of her mother that +she heard through the door, made her immediately forget herself and +her own grief. + +She ran to her father, but he feebly waved his arm, pointing to +her mother's door. Princess Mary, pale and with quivering chin, came +out from that room and taking Natasha by the arm said something to +her. Natasha neither saw nor heard her. She went in with rapid +steps, pausing at the door for an instant as if struggling with +herself, and then ran to her mother. + +The countess was lying in an armchair in a strange and awkward +position, stretching out and beating her head against the wall. +Sonya and the maids were holding her arms. + +"Natasha! Natasha!..." cried the countess. "It's not true... it's +not true... He's lying... Natasha!" she shrieked, pushing those around +her away. "Go away, all of you; it's not true! Killed!... ha, ha, +ha!... It's not true!" + +Natasha put one knee on the armchair, stooped over her mother, +embraced her, and with unexpected strength raised her, turned her face +toward herself, and clung to her. + +"Mummy!... darling!... I am here, my dearest Mummy," she kept on +whispering, not pausing an instant. + +She did not let go of her mother but struggled tenderly with her, +demanded a pillow and hot water, and unfastened and tore open her +mother's dress. + +"My dearest darling... Mummy, my precious!..." she whispered +incessantly, kissing her head, her hands, her face, and feeling her +own irrepressible and streaming tears tickling her nose and cheeks. + +The countess pressed her daughter's hand, closed her eyes, and +became quiet for a moment. Suddenly she sat up with unaccustomed +swiftness, glanced vacantly around her, and seeing Natasha began to +press her daughter's head with all her strength. Then she turned +toward her daughter's face which was wincing with pain and gazed +long at it. + +"Natasha, you love me?" she said in a soft trustful whisper. +"Natasha, you would not deceive me? You'll tell me the whole truth?" + +Natasha looked at her with eyes full of tears and in her look +there was nothing but love and an entreaty for forgiveness. + +"My darling Mummy!" she repeated, straining all the power of her +love to find some way of taking on herself the excess of grief that +crushed her mother. + +And again in a futile struggle with reality her mother, refusing +to believe that she could live when her beloved boy was killed in +the bloom of life, escaped from reality into a world of delirium. + +Natasha did not remember how that day passed nor that night, nor the +next day and night. She did not sleep and did not leave her mother. +Her persevering and patient love seemed completely to surround the +countess every moment, not explaining or consoling, but recalling +her to life. + +During the third night the countess kept very quiet for a few +minutes, and Natasha rested her head on the arm of her chair and +closed her eyes, but opened them again on hearing the bedstead +creak. The countess was sitting up in bed and speaking softly. + +"How glad I am you have come. You are tired. Won't you have some +tea?" Natasha went up to her. "You have improved in looks and grown +more manly," continued the countess, taking her daughter's hand. + +"Mamma! What are you saying..." + +"Natasha, he is no more, no more!" + +And embracing her daughter, the countess began to weep for the first +time. + + + + + +CHAPTER III + + +Princess Mary postponed her departure. Sonya and the count tried +to replace Natasha but could not. They saw that she alone was able +to restrain her mother from unreasoning despair. For three weeks +Natasha remained constantly at her mother's side, sleeping on a lounge +chair in her room, making her eat and drink, and talking to her +incessantly because the mere sound of her tender, caressing tones +soothed her mother. + +The mother's wounded spirit could not heal. Petya's +death had torn from her half her life. When the news of Petya's +death had come she had been a fresh and vigorous woman of fifty, but a +month later she left her room a listless old woman taking no +interest in life. But the same blow that almost killed the countess, +this second blow, restored Natasha to life. + +A spiritual wound produced by a rending of the spiritual body is +like a physical wound and, strange as it may seem, just as a deep +wound may heal and its edges join, physical and spiritual wounds alike +can yet heal completely only as the result of a vital force from +within. + +Natasha's wound healed in that way. She thought her life was +ended, but her love for her mother unexpectedly showed her that the +essence of life--love--was still active within her. Love awoke and +so did life. + +Prince Andrew's last days had bound Princess Mary and Natasha +together; this new sorrow brought them still closer to one another. +Princess Mary put off her departure, and for three weeks looked +after Natasha as if she had been a sick child. The last weeks passed +in her mother's bedroom had strained Natasha's physical strength. + +One afternoon noticing Natasha shivering with fever, Princess Mary +took her to her own room and made her lie down on the bed. Natasha lay +down, but when Princess Mary had drawn the blinds and was going away +she called her back. + +"I don't want to sleep, Mary, sit by me a little." + +"You are tired--try to sleep." + +"No, no. Why did you bring me away? She will be asking for me." + +"She is much better. She spoke so well today," said Princess Mary. + +Natasha lay on the bed and in the semidarkness of the room scanned +Princess Mary's face. + +"Is she like him?" thought Natasha. "Yes, like and yet not like. But +she is quite original, strange, new, and unknown. And she loves me. +What is in her heart? All that is good. But how? What is her mind +like? What does she think about me? Yes, she is splendid!" + +"Mary," she said timidly, drawing Princess Mary's hand to herself, +"Mary, you mustn't think me wicked. No? Mary darling, how I love +you! Let us be quite, quite friends." + +And Natasha, embracing her, began kissing her face and hands, making +Princess Mary feel shy but happy by this demonstration of her +feelings. + +From that day a tender and passionate friendship such as exists only +between women was established between Princess Mary and Natasha. +They were continually kissing and saying tender things to one +another and spent most of their time together. When one went out the +other became restless and hastened to rejoin her. Together they felt +more in harmony with one another than either of them felt with herself +when alone. A feeling stronger than friendship sprang up between them; +an exclusive feeling of life being possible only in each other's +presence. + +Sometimes they were silent for hours; sometimes after they were +already in bed they would begin talking and go on till morning. They +spoke most of what was long past. Princess Mary spoke of her +childhood, of her mother, her father, and her daydreams; and +Natasha, who with a passive lack of understanding had formerly +turned away from that life of devotion, submission, and the poetry +of Christian self-sacrifice, now feeling herself bound to Princess +Mary by affection, learned to love her past too and to understand a +side of life previously incomprehensible to her. She did not think +of applying submission and self-abnegation to her own life, for she +was accustomed to seek other joys, but she understood and loved in +another those previously incomprehensible virtues. For Princess +Mary, listening to Natasha's tales of childhood and early youth, there +also opened out a new and hitherto uncomprehended side of life: belief +in life and its enjoyment. + +Just as before, they never mentioned him so as not to lower (as they +thought) their exalted feelings by words; but this silence about him +had the effect of making them gradually begin to forget him without +being conscious of it. + +Natasha had grown thin and pale and physically so weak that they all +talked about her health, and this pleased her. But sometimes she was +suddenly overcome by fear not only of death but of sickness, weakness, +and loss of good looks, and involuntarily she examined her bare arm +carefully, surprised at its thinness, and in the morning noticed her +drawn and, as it seemed to her, piteous face in her glass. It seemed +to her that things must be so, and yet it was dreadfully sad. + +One day she went quickly upstairs and found herself out of breath. +Unconsciously she immediately invented a reason for going down, and +then, testing her strength, ran upstairs again, observing the result. + +Another time when she called Dunyasha her voice trembled, so she +called again--though she could hear Dunyasha coming--called her in the +deep chest tones in which she had been wont to sing, sing, and +listened attentively to herself. + +She did not know and would not have believed it, but beneath the +layer of slime that covered her soul and seemed to her impenetrable, +delicate young shoots of grass were already sprouting, which taking +root would so cover with their living verdure the grief that weighed +her down that it would soon no longer be seen or noticed. The wound +had begun to heal from within. + +At the end of January Princess Mary left for Moscow, and the count +insisted on Natasha's going with her to consult the doctors. + + + + + +CHAPTER IV + + +After the encounter at Vyazma, where Kutuzov had been unable to hold +back his troops in their anxiety to overwhelm and cut off the enemy +and so on, the farther movement of the fleeing French, and of the +Russians who pursued them, continued as far as Krasnoe without a +battle. The flight was so rapid that the Russian army pursuing the +French could not keep up with them; cavalry and artillery horses broke +down, and the information received of the movements of the French +was never reliable. + +The men in the Russian army were so worn out by this continuous +marching at the rate of twenty-seven miles a day that they could not +go any faster. + +To realize the degree of exhaustion of the Russian army it is only +necessary to grasp clearly the meaning of the fact that, while not +losing more than five thousand killed and wounded after Tarutino and +less than a hundred prisoners, the Russian army which left that +place a hundred thousand strong reached Krasnoe with only fifty +thousand. + +The rapidity of the Russian pursuit was just as destructive to our +army as the flight of the French was to theirs. The only difference +was that the Russian army moved voluntarily, with no such threat of +destruction as hung over the French, and that the sick Frenchmen +were left behind in enemy hands while the sick Russians left behind +were among their own people. The chief cause of the wastage of +Napoleon's army was the rapidity of its movement, and a convincing +proof of this is the corresponding decrease of the Russian army. + +Kutuzov as far as was in his power, instead of trying to check the +movement of the French as was desired in Petersburg and by the Russian +army generals, directed his whole activity here, as he had done at +Tarutino and Vyazma, to hastening it on while easing the movement of +our army. + +But besides this, since the exhaustion and enormous diminution of +the army caused by the rapidity of the advance had become evident, +another reason for slackening the pace and delaying presented itself +to Kutuzov. The aim of the Russian army was to pursue the French. +The road the French would take was unknown, and so the closer our +troops trod on their heels the greater distance they had to cover. +Only by following at some distance could one cut across the zigzag +path of the French. All the artful maneuvers suggested by our generals +meant fresh movements of the army and a lengthening of its marches, +whereas the only reasonable aim was to shorten those marches. To +that end Kutuzov's activity was directed during the whole campaign +from Moscow to Vilna--not casually or intermittently but so +consistently that he never once deviated from it. + +Kutuzov felt and knew--not by reasoning or science but with the +whole of his Russian being--what every Russian soldier felt: that +the French were beaten, that the enemy was flying and must be driven +out; but at the same time he like the soldiers realized all the +hardship of this march, the rapidity of which was unparalleled for +such a time of the year. + +But to the generals, especially the foreign ones in the Russian +army, who wished to distinguish themselves, to astonish somebody, +and for some reason to capture a king or a duke--it seemed that now- +when any battle must be horrible and senseless--was the very time to +fight and conquer somebody. Kutuzov merely shrugged his shoulders when +one after another they presented projects of maneuvers to be made with +those soldiers--ill-shod, insufficiently clad, and half starved--who +within a month and without fighting a battle had dwindled to half +their number, and who at the best if the flight continued would have +to go a greater distance than they had already traversed, before +they reached the frontier. + +This longing to distinguish themselves, to maneuver, to overthrow, +and to cut off showed itself particularly whenever the Russians +stumbled on the French army. + +So it was at Krasnoe, where they expected to find one of the three +French columns and stumbled instead on Napoleon himself with sixteen +thousand men. Despite all Kutuzov's efforts to avoid that ruinous +encounter and to preserve his troops, the massacre of the broken mob +of French soldiers by worn-out Russians continued at Krasnoe for three +days. + +Toll wrote a disposition: "The first column will march to so and +so," etc. And as usual nothing happened in accord with the +disposition. Prince Eugene of Wurttemberg fired from a hill over the +French crowds that were running past, and demanded reinforcements +which did not arrive. The French, avoiding the Russians, dispersed and +hid themselves in the forest by night, making their way round as +best they could, and continued their flight. + +Miloradovich, who said he did not want to know anything about the +commissariat affairs of his detachment, and could never be found +when he was wanted--that chevalier sans peur et sans reproche* as he +styled himself--who was fond of parleys with the French, sent envoys +demanding their surrender, wasted time, and did not do what he was +ordered to do. + + +*Knight without fear and without reproach. + + +"I give you that column, lads," he said, riding up to the troops and +pointing out the French to the cavalry. + +And the cavalry, with spurs and sabers urging on horses that could +scarcely move, trotted with much effort to the column presented to +them--that is to say, to a crowd of Frenchmen stark with cold, +frost-bitten, and starving--and the column that had been presented +to them threw down its arms and surrendered as it had long been +anxious to do. + +At Krasnoe they took twenty-six thousand prisoners, several +hundred cannon, and a stick called a "marshal's staff," and disputed +as to who had distinguished himself and were pleased with their +achievement--though they much regretted not having taken Napoleon, +or at least a marshal or a hero of some sort, and reproached one +another and especially Kutuzov for having failed to do so. + +These men, carried away by their passions, were but blind tools of +the most melancholy law of necessity, but considered themselves heroes +and imagined that they were accomplishing a most noble and honorable +deed. They blamed Kutuzov and said that from the very beginning of the +campaign he had prevented their vanquishing Napoleon, that he +thought nothing but satisfying his passions and would not advance from +the Linen Factories because he was comfortable there, that at +Krasnoe he checked the advance because on learning that Napoleon was +there he had quite lost his head, and that it was probable that he had +an understanding with Napoleon and had been bribed by him, and so +on, and so on. + +Not only did his contemporaries, carried away by their passions, +talk in this way, but posterity and history have acclaimed Napoleon as +grand, while Kutuzov is described by foreigners as a crafty, +dissolute, weak old courtier, and by Russians as something indefinite- +a sort of puppet useful only because he had a Russian name. + + + + + +CHAPTER V + + +In 1812 and 1813 Kutuzov was openly accused of blundering. The +Emperor was dissatisfied with him. And in a history recently written +by order of the Highest Authorities it is said that Kutuzov was a +cunning court liar, frightened of the name of Napoleon, and that by +his blunders at Krasnoe and the Berezina he deprived the Russian +army of the glory of complete victory over the French.* + + +*History of the year 1812. The character of Kutuzov and +reflections on the unsatisfactory results of the battles at Krasnoe, +by Bogdanovich. + + +Such is the fate not of great men (grands hommes) whom the Russian +mind does not acknowledge, but of those rare and always solitary +individuals who, discerning the will of Providence, submit their +personal will to it. The hatred and contempt of the crowd punish +such men for discerning the higher laws. + +For Russian historians, strange and terrible to say, Napoleon- +that most insignificant tool of history who never anywhere, even in +exile, showed human dignity--Napoleon is the object of adulation and +enthusiasm; he is grand. But Kutuzov--the man who from the beginning +to the end of his activity in 1812, never once swerving by word or +deed from Borodino to Vilna, presented an example exceptional in +history of self-sacrifice and a present consciousness of the future +importance of what was happening--Kutuzov seems to them something +indefinite and pitiful, and when speaking of him and of the year +1812 they always seem a little ashamed. + +And yet it is difficult to imagine an historical character whose +activity was so unswervingly directed to a single aim; and it would be +difficult to imagine any aim more worthy or more consonant with the +will of the whole people. Still more difficult would it be to find +an instance in history of the aim of an historical personage being +so completely accomplished as that to which all Kutuzov's efforts were +directed in 1812. + +Kutuzov never talked of "forty centuries looking down from the +Pyramids," of the sacrifices he offered for the fatherland, or of what +he intended to accomplish or had accomplished; in general he said +nothing about himself, adopted no prose, always appeared to be the +simplest and most ordinary of men, and said the simplest and most +ordinary things. He wrote letters to his daughters and to Madame de +Stael, read novels, liked the society of pretty women, jested with +generals, officers, and soldiers, and never contradicted those who +tried to prove anything to him. When Count Rostopchin at the Yauza +bridge galloped up to Kutuzov with personal reproaches for having +caused the destruction of Moscow, and said: "How was it you promised +not to abandon Moscow without a battle?" Kutuzov replied: "And I shall +not abandon Moscow without a battle," though Moscow was then already +abandoned. When Arakcheev, coming to him from the Emperor, said that +Ermolov ought to be appointed chief of the artillery, Kutuzov replied: +"Yes, I was just saying so myself," though a moment before he had said +quite the contrary. What did it matter to him--who then alone amid a +senseless crowd understood the whole tremendous significance of what +was happening--what did it matter to him whether Rostopchin attributed +the calamities of Moscow to him or to himself? Still less could it +matter to him who was appointed chief of the artillery. + +Not merely in these cases but continually did that old man--who by +experience of life had reached the conviction that thoughts and the +words serving as their expression are not what move people--use +quite meaningless words that happened to enter his head. + +But that man, so heedless of his words, did not once during the +whole time of his activity utter one word inconsistent with the single +aim toward which he moved throughout the whole war. Obviously in spite +of himself, in very diverse circumstances, he repeatedly expressed his +real thoughts with the bitter conviction that he would not be +understood. Beginning with the battle of Borodino, from which time his +disagreement with those about him began, he alone said that the battle +of Borodino was a victory, and repeated this both verbally and in +his dispatches and reports up to the time of his death. He alone +said that the loss of Moscow is not the loss of Russia. In reply to +Lauriston's proposal of peace, he said: There can be no peace, for +such is the people's will. He alone during the retreat of the French +said that all our maneuvers are useless, everything is being +accomplished of itself better than we could desire; that the enemy +must be offered "a golden bridge"; that neither the Tarutino, the +Vyazma, nor the Krasnoe battles were necessary; that we must keep some +force to reach the frontier with, and that he would not sacrifice a +single Russian for ten Frenchmen. + +And this courtier, as he is described to us, who lies to Arakcheev +to please the Emperor, he alone--incurring thereby the Emperor's +displeasure--said in Vilna that to carry the war beyond the frontier +is useless and harmful. + +Nor do words alone prove that only he understood the meaning of +the events. His actions--without the smallest deviation--were all +directed to one and the same threefold end: (1) to brace all his +strength for conflict with the French, (2) to defeat them, and (3) +to drive them out of Russia, minimizing as far as possible the +sufferings of our people and of our army. + +This procrastinator Kutuzov, whose motto was "Patience and Time," +this enemy of decisive action, gave battle at Borodino, investing +the preparations for it with unparalleled solemnity. This Kutuzov +who before the battle of Austerlitz began said that it would be +lost, he alone, in contradiction to everyone else, declared till his +death that Borodino was a victory, despite the assurance of generals +that the battle was lost and despite the fact that for an army to have +to retire after winning a battle was unprecedented. He alone during +the whole retreat insisted that battles, which were useless then, +should not be fought, and that a new war should not be begun nor the +frontiers of Russia crossed. + +It is easy now to understand the significance of these events--if +only we abstain from attributing to the activity of the mass aims that +existed only in the heads of a dozen individuals--for the events and +results now lie before us. + +But how did that old man, alone, in opposition to the general +opinion, so truly discern the importance of the people's view of the +events that in all his activity he was never once untrue to it? + +The source of that extraordinary power of penetrating the meaning of +the events then occuring lay in the national feeling which he +possessed in full purity and strength. + +Only the recognition of the fact that he possessed this feeling +caused the people in so strange a manner, contrary to the Tsar's wish, +to select him--an old man in disfavor--to be their representative in +the national war. And only that feeling placed him on that highest +human pedestal from which he, the commander in chief, devoted all +his powers not to slaying and destroying men but to saving and showing +pity on them. + +That simple, modest, and therefore truly great, figure could not +be cast in the false mold of a European hero--the supposed ruler of +men--that history has invented. + +To a lackey no man can be great, for a lackey has his own conception +of greatness. + + + + + +CHAPTER VI + + +The fifth of November was the first day of what is called the battle +of Krasnoe. Toward evening--after much disputing and many mistakes +made by generals who did not go to their proper places, and after +adjutants had been sent about with counterorders--when it had become +plain that the enemy was everywhere in flight and that there could and +would be no battle, Kutuzov left Krasnoe and went to Dobroe whither +his headquarters had that day been transferred. + +The day was clear and frosty. Kutuzov rode to Dobroe on his plump +little white horse, followed by an enormous suite of discontented +generals who whispered among themselves behind his back. All along the +road groups of French prisoners captured that day (there were seven +thousand of them) were crowding to warm themselves at campfires. +Near Dobroe an immense crowd of tattered prisoners, buzzing with +talk and wrapped and bandaged in anything they had been able to get +hold of, were standing in the road beside a long row of unharnessed +French guns. At the approach of the commander in chief the buzz of +talk ceased and all eyes were fixed on Kutuzov who, wearing a white +cap with a red band and a padded overcoat that bulged on his round +shoulders, moved slowly along the road on his white horse. One of +the generals was reporting to him where the guns and prisoners had +been captured. + +Kutuzov seemed preoccupied and did not listen to what the general +was saying. He screwed up his eyes with a dissatisfied look as he +gazed attentively and fixedly at these prisoners, who presented a +specially wretched appearance. Most of them were disfigured by +frost-bitten noses and cheeks, and nearly all had red, swollen and +festering eyes. + +One group of the French stood close to the road, and two of them, +one of whom had his face covered with sores, were tearing a piece of +raw flesh with their hands. There was something horrible and bestial +in the fleeting glance they threw at the riders and in the +malevolent expression with which, after a glance at Kutuzov, the +soldier with the sores immediately turned away and went on with what +he was doing. + +Kutuzov looked long and intently at these two soldiers. He +puckered his face, screwed up his eyes, and pensively swayed his head. +At another spot he noticed a Russian soldier laughingly patting a +Frenchman on the shoulder, saying something to him in a friendly +manner, and Kutuzov with the same expression on his face again +swayed his head. + +"What were you saying?" he asked the general, who continuing his +report directed the commander in chief's attention to some standards +captured from the French and standing in front of the Preobrazhensk +regiment. + +"Ah, the standards!" said Kutuzov, evidently detaching himself +with difficulty from the thoughts that preoccupied him. + +He looked about him absently. Thousands of eyes were looking at +him from all sides awaiting a word from him. + +He stopped in front of the Preobrazhensk regiment, sighed deeply, +and closed his eyes. One of his suite beckoned to the soldiers +carrying the standards to advance and surround the commander in +chief with them. Kutuzov was silent for a few seconds and then, +submitting with evident reluctance to the duty imposed by his +position, raised his head and began to speak. A throng of officers +surrounded him. He looked attentively around at the circle of +officers, recognizing several of them. + +"I thank you all!" he said, addressing the soldiers and then again +the officers. In the stillness around him his slowly uttered words +were distinctly heard. "I thank you all for your hard and faithful +service. The victory is complete and Russia will not forget you! Honor +to you forever." + +He paused and looked around. + +"Lower its head, lower it!" he said to a soldier who had +accidentally lowered the French eagle he was holding before the +Preobrazhensk standards. "Lower, lower, that's it. Hurrah lads!" he +added, addressing the men with a rapid movement of his chin. + +"Hur-r-rah!" roared thousands of voices. + +While the soldiers were shouting Kutuzov leaned forward in his +saddle and bowed his head, and his eye lit up with a mild and +apparently ironic gleam. + +"You see, brothers..." said he when the shouts had ceased... and all +at once his voice and the expression of his face changed. It was no +longer the commander in chief speaking but an ordinary old man who +wanted to tell his comrades something very important. + +There was a stir among the throng of officers and in the ranks of +the soldiers, who moved that they might hear better what he was +going to say. + +"You see, brothers, I know it's hard for you, but it can't be +helped! Bear up; it won't be for long now! We'll see our visitors +off and then we'll rest. The Tsar won't forget your service. It is +hard for you, but still you are at home while they--you see what +they have come to," said he, pointing to the prisoners. "Worse off +than our poorest beggars. While they were strong we didn't spare +ourselves, but now we may even pity them. They are human beings too. +Isn't it so, lads?" + +He looked around, and in the direct, respectful, wondering gaze +fixed upon him he read sympathy with what he had said. His face grew +brighter and brighter with an old man's mild smile, which drew the +corners of his lips and eyes into a cluster of wrinkles. He ceased +speaking and bowed his head as if in perplexity. + +"But after all who asked them here? Serves them right, the bloody +bastards!" he cried, suddenly lifting his head. + +And flourishing his whip he rode off at a gallop for the first +time during the whole campaign, and left the broken ranks of the +soldiers laughing joyfully and shouting "Hurrah!" + +Kutuzov's words were hardly understood by the troops. No one could +have repeated the field marshal's address, begun solemnly and then +changing into an old man's simplehearted talk; but the hearty +sincerity of that speech, the feeling of majestic triumph combined +with pity for the foe and consciousness of the justice of our cause, +exactly expressed by that old man's good-natured expletives, was not +merely understood but lay in the soul of every soldier and found +expression in their joyous and long-sustained shouts. Afterwards +when one of the generals addressed Kutuzov asking whether he wished +his caleche to be sent for, Kutuzov in answering unexpectedly gave a +sob, being evidently greatly moved. + + + + + +CHAPTER VII + + +When the troops reached their night's halting place on the eighth of +November, the last day of the Krasnoe battles, it was already +growing dusk. All day it had been calm and frosty with occasional +lightly falling snow and toward evening it began to clear. Through the +falling snow a purple-black and starry sky showed itself and the frost +grew keener. + +An infantry regiment which had left Tarutino three thousand strong +but now numbered only nine hundred was one of the first to arrive that +night at its halting place--a village on the highroad. The +quartermasters who met the regiment announced that all the huts were +full of sick and dead Frenchmen, cavalrymen, and members of the staff. +There was only one hut available for the regimental commander. + +The commander rode up to his hut. The regiment passed through the +village and stacked its arms in front of the last huts. + +Like some huge many-limbed animal, the regiment began to prepare its +lair and its food. One part of it dispersed and waded knee-deep +through the snow into a birch forest to the right of the village, +and immediately the sound of axes and swords, the crashing of +branches, and merry voices could be heard from there. Another +section amid the regimental wagons and horses which were standing in a +group was busy getting out caldrons and rye biscuit, and feeding the +horses. A third section scattered through the village arranging +quarters for the staff officers, carrying out the French corpses +that were in the huts, and dragging away boards, dry wood, and +thatch from the roofs, for the campfires, or wattle fences to serve +for shelter. + +Some fifteen men with merry shouts were shaking down the high wattle +wall of a shed, the roof of which had already been removed. + +"Now then, all together--shove!" cried the voices, and the huge +surface of the wall, sprinkled with snow and creaking with frost, +was seen swaying in the gloom of the night. The lower stakes cracked +more and more and at last the wall fell, and with it the men who had +been pushing it. Loud, coarse laughter and joyous shouts ensued. + +"Now then, catch hold in twos! Hand up the lever! That's it... Where +are you shoving to?" + +"Now, all together! But wait a moment, boys... With a song!" + +All stood silent, and a soft, pleasant velvety voice began to +sing. At the end of the third verse as the last note died away, twenty +voices roared out at once: "Oo-oo-oo-oo! That's it. All together! +Heave away, boys!..." but despite their united efforts the wattle +hardly moved, and in the silence that followed the heavy breathing +of the men was audible. + +"Here, you of the Sixth Company! Devils that you are! Lend a hand... +will you? You may want us one of these days." + +Some twenty men of the Sixth Company who were on their way into +the village joined the haulers, and the wattle wall, which was about +thirty-five feet long and seven feet high, moved forward along the +village street, swaying, pressing upon and cutting the shoulders of +the gasping men. + +"Get along... Falling? What are you stopping for? There now..." + +Merry senseless words of abuse flowed freely. + +"What are you up to?" suddenly came the authoritative voice of a +sergeant major who came upon the men who were hauling their burden. +"There are gentry here; the general himself is in that hut, and you +foul-mouthed devils, you brutes, I'll give it to you!" shouted he, +hitting the first man who came in his way a swinging blow on the back. +"Can't you make less noise?" + +The men became silent. The soldier who had been struck groaned and +wiped his face, which had been scratched till it bled by his falling +against the wattle. + +"There, how that devil hits out! He's made my face all bloody," said +he in a frightened whisper when the sergeant major had passed on. + +"Don't you like it?" said a laughing voice, and moderating their +tones the men moved forward. + +When they were out of the village they began talking again as loud +as before, interlarding their talk with the same aimless expletives. + +In the hut which the men had passed, the chief officers had gathered +and were in animated talk over their tea about the events of the day +and the maneuvers suggested for tomorrow. It was proposed to make a +flank march to the left, cut off the Vice-King (Murat) and capture +him. + +By the time the soldiers had dragged the wattle fence to its place +the campfires were blazing on all sides ready for cooking, the wood +crackled, the snow was melting, and black shadows of soldiers +flitted to and fro all over the occupied space where the snow had been +trodden down. + +Axes and choppers were plied all around. Everything was done without +any orders being given. Stores of wood were brought for the night, +shelters were rigged up for the officers, caldrons were being +boiled, and muskets and accouterments put in order. + +The wattle wall the men had brought was set up in a semicircle by +the Eighth Company as a shelter from the north, propped up by musket +rests, and a campfire was built before it. They beat the tattoo, +called the roll, had supper, and settled down round the fires for +the night--some repairing their footgear, some smoking pipes, and some +stripping themselves naked to steam the lice out of their shirts. + + + + + +CHAPTER VIII + + +One would have thought that under the almost incredibly wretched +conditions the Russian soldiers were in at that time--lacking warm +boots and sheepskin coats, without a roof over their heads, in the +snow with eighteen degrees of frost, and without even full rations +(the commissariat did not always keep up with the troops)--they +would have presented a very sad and depressing spectacle. + +On the contrary, the army had never under the best material +conditions presented a more cheerful and animated aspect. This was +because all who began to grow depressed or who lost strength were +sifted out of the army day by day. All the physically or morally +weak had long since been left behind and only the flower of the +army--physically and mentally--remained. + +More men collected behind the wattle fence of the Eighth Company +than anywhere else. Two sergeants major were sitting with them and +their campfire blazed brighter than others. For leave to sit by +their wattle they demanded contributions of fuel. + +"Eh, Makeev! What has become of you, you son of a bitch? Are you +lost or have the wolves eaten you? Fetch some more wood!" shouted a +red-haired and red-faced man, screwing up his eyes and blinking +because of the smoke but not moving back from the fire. "And you, +Jackdaw, go and fetch some wood!" said he to another soldier. + +This red-haired man was neither a sergeant nor a corporal, but being +robust he ordered about those weaker than himself. The soldier they +called "Jackdaw," a thin little fellow with a sharp nose, rose +obediently and was about to go but at that instant there came into the +light of the fire the slender, handsome figure of a young soldier +carrying a load of wood. + +"Bring it here--that's fine!" + +They split up the wood, pressed it down on the fire, blew at it with +their mouths, and fanned it with the skirts of their greatcoats, +making the flames hiss and crackle. The men drew nearer and lit +their pipes. The handsome young soldier who had brought the wood, +setting his arms akimbo, began stamping his cold feet rapidly and +deftly on the spot where he stood. + +"Mother! The dew is cold but clear.... It's well that I'm a +musketeer..." he sang, pretending to hiccough after each syllable. + +"Look out, your soles will fly off!" shouted the red-haired man, +noticing that the sole of the dancer's boot was hanging loose. "What a +fellow you are for dancing!" + +The dancer stopped, pulled off the loose piece of leather, and threw +it on the fire. + +"Right enough, friend," said he, and, having sat down, took out of +his knapsack a scrap of blue French cloth, and wrapped it round his +foot. "It's the steam that spoils them," he added, stretching out +his feet toward the fire. + +"They'll soon be issuing us new ones. They say that when we've +finished hammering them, we're to receive double kits!" + +"And that son of a bitch Petrov has lagged behind after all, it +seems," said one sergeant major. + +"I've had an eye on him this long while," said the other. + +"Well, he's a poor sort of soldier..." + +"But in the Third Company they say nine men were missing yesterday." + +"Yes, it's all very well, but when a man's feet are frozen how can +he walk?" + +"Eh? Don't talk nonsense!" said a sergeant major. + +"Do you want to be doing the same?" said an old soldier, turning +reproachfully to the man who had spoken of frozen feet. + +"Well, you know," said the sharp-nosed man they called Jackdaw in +a squeaky and unsteady voice, raising himself at the other side of the +fire, "a plump man gets thin, but for a thin one it's death. Take +me, now! I've got no strength left," he added, with sudden +resolution turning to the sergeant major. "Tell them to send me to + +hospital; I'm aching all over; anyway I shan't be able to keep up." + +"That'll do, that'll do!" replied the sergeant major quietly. + +The soldier said no more and the talk went on. + +"What a lot of those Frenchies were taken today, and the fact is +that not one of them had what you might call real boots on," said a +soldier, starting a new theme. "They were no more than make-believes." + +"The Cossacks have taken their boots. They were clearing the hut for +the colonel and carried them out. It was pitiful to see them, boys," +put in the dancer. "As they turned them over one seemed still alive +and, would you believe it, he jabbered something in their lingo." + +"But they're a clean folk, lads," the first man went on; "he was +white--as white as birchbark--and some of them are such fine +fellows, you might think they were nobles." + +"Well, what do you think? They make soldiers of all classes there." + +"But they don't understand our talk at all," said the dancer with +a puzzled smile. "I asked him whose subject he was, and he jabbered in +his own way. A queer lot!" + +"But it's strange, friends," continued the man who had wondered at +their whiteness, "the peasants at Mozhaysk were saying that when +they began burying the dead--where the battle was you know--well, +those dead had been lying there for nearly a month, and says the +peasant, 'they lie as white as paper, clean, and not as much smell +as a puff of powder smoke.'" + +"Was it from the cold?" asked someone. + +"You're a clever fellow! From the cold indeed! Why, it was hot. If +it had been from the cold, ours would not have rotted either. 'But,' +he says, 'go up to ours and they are all rotten and maggoty. So,' he +says, 'we tie our faces up with kerchiefs and turn our heads away as +we drag them off: we can hardly do it. But theirs,' he says, 'are +white as paper and not so much smell as a whiff of gunpowder.'" + +All were silent. + +"It must be from their food," said the sergeant major. "They used to +gobble the same food as the gentry." + +No one contradicted him. + +"That peasant near Mozhaysk where the battle was said the men were +all called up from ten villages around and they carted for twenty days +and still didn't finish carting the dead away. And as for the +wolves, he says..." + +"That was a real battle," said an old soldier. "It's the only one +worth remembering; but since that... it's only been tormenting folk." + +"And do you know, Daddy, the day before yesterday we ran at them +and, my word, they didn't let us get near before they just threw +down their muskets and went on their knees. 'Pardon!' they say. That's +only one case. They say Platov took 'Poleon himself twice. But he +didn't know the right charm. He catches him and catches him--no +good! He turns into a bird in his hands and flies away. And there's no +way of killing him either." + +"You're a first-class liar, Kiselev, when I come to look at you!" + +"Liar, indeed! It's the real truth." + +"If he fell into my hands, when I'd caught him I'd bury him in the +ground with an aspen stake to fix him down. What a lot of men he's +ruined!" + +"Well, anyhow we're going to end it. He won't come here again," +remarked the old soldier, yawning. + +The conversation flagged, and the soldiers began settling down to +sleep. + +"Look at the stars. It's wonderful how they shine! You would think +the women had spread out their linen," said one of the men, gazing +with admiration at the Milky Way. + +"That's a sign of a good harvest next year." + +"We shall want some more wood." + +"You warm your back and your belly gets frozen. That's queer." + +"O Lord!" + +"What are you pushing for? Is the fire only for you? Look how he's +sprawling!" + +In the silence that ensued, the snoring of those who had fallen +asleep could be heard. Others turned over and warmed themselves, now +and again exchanging a few words. From a campfire a hundred paces +off came a sound of general, merry laughter. + +"Hark at them roaring there in the Fifth Company!" said one of the +soldiers, "and what a lot of them there are!" + +One of the men got up and went over to the Fifth Company. + +"They're having such fun," said he, coming back. "Two Frenchies have +turned up. One's quite frozen and the other's an awful swaggerer. He's +singing songs...." + +"Oh, I'll go across and have a look...." + +And several of the men went over to the Fifth Company. + + + + + +CHAPTER IX + + +The fifth company was bivouacking at the very edge of the forest. +A huge campfire was blazing brightly in the midst of the snow, +lighting up the branches of trees heavy with hoarfrost. + +About midnight they heard the sound of steps in the snow of the +forest, and the crackling of dry branches. + +"A bear, lads," said one of the men. + +They all raised their heads to listen, and out of the forest into +the bright firelight stepped two strangely clad human figures clinging +to one another. + +These were two Frenchmen who had been hiding in the forest. They +came up to the fire, hoarsely uttering something in a language our +soldiers did not understand. One was taller than the other; he wore an +officer's hat and seemed quite exhausted. On approaching the fire he +had been going to sit down, but fell. The other, a short sturdy +soldier with a shawl tied round his head, was stronger. He raised +his companion and said something, pointing to his mouth. The +soldiers surrounded the Frenchmen, spread a greatcoat on the ground +for the sick man, and brought some buckwheat porridge and vodka for +both of them. + +The exhausted French officer was Ramballe and the man with his +head wrapped in the shawl was Morel, his orderly. + +When Morel had drunk some vodka and finished his bowl of porridge he +suddenly became unnaturally merry and chattered incessantly to the +soldiers, who could not understand him. Ramballe refused food and +resting his head on his elbow lay silent beside the campfire, +looking at the Russian soldiers with red and vacant eyes. Occasionally +he emitted a long-drawn groan and then again became silent. Morel, +pointing to his shoulders, tried to impress on the soldiers the fact +that Ramballe was an officer and ought to be warmed. A Russian officer +who had come up to the fire sent to ask his colonel whether he would +not take a French officer into his hut to warm him, and when the +messenger returned and said that the colonel wished the officer to +be brought to him, Ramballe was told to go. He rose and tried to walk, +but staggered and would have fallen had not a soldier standing by held +him up. + +"You won't do it again, eh?" said one of the soldiers, winking and +turning mockingly to Ramballe. + +"Oh, you fool! Why talk rubbish, lout that you are--a real peasant!" +came rebukes from all sides addressed to the jesting soldier. + +They surrounded Ramballe, lifted him on the crossed arms of two +soldiers, and carried him to the hut. Ramballe put his arms around +their necks while they carried him and began wailing plaintively: + +"Oh, you fine fellows, my kind, kind friends! These are men! Oh, +my brave, kind friends," and he leaned his head against the shoulder +of one of the men like a child. + +Meanwhile Morel was sitting in the best place by the fire, +surrounded by the soldiers. + +Morel, a short sturdy Frenchman with inflamed and streaming eyes, +was wearing a woman's cloak and had a shawl tied woman fashion round +his head over his cap. He was evidently tipsy, and was singing a +French song in a hoarse broken voice, with an arm thrown round the +nearest soldier. The soldiers simply held their sides as they +watched him. + +"Now then, now then, teach us how it goes! I'll soon pick it up. How +is it?" said the man--a singer and a wag--whom Morel was embracing. + +"Vive Henri Quatre! Vive ce roi valiant!" sang Morel, winking. "Ce +diable a quatre..."* + + +*"Long live Henry the Fourth, that valiant king! That rowdy devil." + + +"Vivarika! Vif-seruvaru! Sedyablyaka!" repeated the soldier, +flourishing his arm and really catching the tune. + +"Bravo! Ha, ha, ha!" rose their rough, joyous laughter from all +sides. + +Morel, wrinkling up his face, laughed too. + +"Well, go on, go on!" + + "Qui eut le triple talent, + De boire, de battre, + Et d'etre un vert galant."* + + +*Who had a triple talent + + For drinking, for fighting, + + And for being a gallant old boy... + + +"It goes smoothly, too. Well, now, Zaletaev!" + +"Ke..." Zaletaev, brought out with effort: "ke-e-e-e," he drawled, +laboriously pursing his lips, "le-trip-ta-la-de-bu-de-ba, e +de-tra-va-ga-la" he sang. + +"Fine! Just like the Frenchie! Oh, ho ho! Do you want some more to +eat?" + +"Give him some porridge: it takes a long time to get filled up after +starving." + +They gave him some more porridge and Morel with a laugh set to +work on his third bowl. All the young soldiers smiled gaily as they +watched him. The older men, who thought it undignified to amuse +themselves with such nonsense, continued to lie at the opposite side +of the fire, but one would occasionally raise himself on an elbow +and glance at Morel with a smile. + +"They are men too," said one of them as he wrapped himself up in his +coat. "Even wormwood grows on its own root." + +"O Lord, O Lord! How starry it is! Tremendous! That means a hard +frost...." + +They all grew silent. The stars, as if knowing that no one was +looking at them, began to disport themselves in the dark sky: now +flaring up, now vanishing, now trembling, they were busy whispering +something gladsome and mysterious to one another. + + + + + +CHAPTER X + + +The French army melted away at the uniform rate of a mathematical +progression; and that crossing of the Berezina about which so much has +been written was only one intermediate stage in its destruction, and +not at all the decisive episode of the campaign. If so much has been +and still is written about the Berezina, on the French side this is +only because at the broken bridge across that river the calamities +their army had been previously enduring were suddenly concentrated +at one moment into a tragic spectacle that remained in every memory, +and on the Russian side merely because in Petersburg--far from the +seat of war--a plan (again one of Pfuel's) had been devised to catch +Napoleon in a strategic trap at the Berezina River. Everyone assured +himself that all would happen according to plan, and therefore +insisted that it was just the crossing of the Berezina that +destroyed the French army. In reality the results of the crossing were +much less disastrous to the French--in guns and men lost--than Krasnoe +had been, as the figures show. + +The sole importance of the crossing of the Berezina lies in the fact +that it plainly and indubitably proved the fallacy of all the plans +for cutting off the enemy's retreat and the soundness of the only +possible line of action--the one Kutuzov and the general mass of the +army demanded--namely, simply to follow the enemy up. The French crowd +fled at a continually increasing speed and all its energy was directed +to reaching its goal. It fled like a wounded animal and it was +impossible to block its path. This was shown not so much by the +arrangements it made for crossing as by what took place at the +bridges. When the bridges broke down, unarmed soldiers, people from +Moscow and women with children who were with the French transport, +all--carried on by vis inertiae--pressed forward into boats and into +the ice-covered water and did not, surrender. + +That impulse was reasonable. The condition of fugitives and of +pursuers was equally bad. As long as they remained with their own +people each might hope for help from his fellows and the definite +place he held among them. But those who surrendered, while remaining +in the same pitiful plight, would be on a lower level to claim a share +in the necessities of life. The French did not need to be informed +of the fact that half the prisoners--with whom the Russians did not +know what to do--perished of cold and hunger despite their captors' +desire to save them; they felt that it could not be otherwise. The +most compassionate Russian commanders, those favorable to the +French--and even the Frenchmen in the Russian service--could do +nothing for the prisoners. The French perished from the conditions +to which the Russian army was itself exposed. It was impossible to +take bread and clothes from our hungry and indispensable soldiers to +give to the French who, though not harmful, or hated, or guilty, +were simply unnecessary. Some Russians even did that, but they were +exceptions. + +Certain destruction lay behind the French but in front there was +hope. Their ships had been burned, there was no salvation save in +collective flight, and on that the whole strength of the French was +concentrated. + +The farther they fled the more wretched became the plight of the +remnant, especially after the Berezina, on which (in consequence of +the Petersburg plan) special hopes had been placed by the Russians, +and the keener grew the passions of the Russian commanders, blamed one +another and Kutuzov most of all. Anticipation that the failure of +the Petersburg Berezina plan would be attributed to Kutuzov led to +dissatisfaction, contempt, and ridicule, more and more strongly +expressed. The ridicule and contempt were of course expressed in a +respectful form, making it impossible for him to ask wherein he was to +blame. They did not talk seriously to him; when reporting to him or +asking for his sanction they appeared to be fulfilling a regrettable +formality, but they winked behind his back and tried to mislead him at +every turn. + +Because they could not understand him all these people assumed +that it was useless to talk to the old man; that he would never +grasp the profundity of their plans, that he would answer with his +phrases (which they thought were mere phrases) about a "golden +bridge," about the impossibility of crossing the frontier with a crowd +of tatterdemalions, and so forth. They had heard all that before. +And all he said--that it was necessary to await provisions, or that +the men had no boots--was so simple, while what they proposed was so +complicated and clever, that it was evident that he was old and stupid +and that they, though not in power, were commanders of genius. + +After the junction with the army of the brilliant admiral and +Petersburg hero Wittgenstein, this mood and the gossip of the staff +reached their maximum. Kutuzov saw this and merely sighed and shrugged +his shoulders. Only once, after the affair of the Berezina, did he get +angry and write to Bennigsen (who reported separately to the +Emperor) the following letter: + +"On account of your spells of ill health, will your excellency +please be so good as to set off for Kaluga on receipt of this, and +there await further commands and appointments from His Imperial +Majesty." + +But after Bennigsen's departure, the Grand Duke Tsarevich +Constantine Pavlovich joined the army. He had taken part in the +beginning of the campaign but had subsequently been removed from the +army by Kutuzov. Now having come to the army, he informed Kutuzov of +the Emperor's displeasure at the poor success of our forces and the +slowness of their advance. The Emperor intended to join the army +personally in a few days' time. + +The old man, experienced in court as well as in military affairs- +this same Kutuzov who in August had been chosen commander in chief +against the sovereign's wishes and who had removed the Grand Duke +and heir--apparent from the army--who on his own authority and +contrary to the Emperor's will had decided on the abandonment of +Moscow, now realized at once that his day was over, that his part +was played, and that the power he was supposed to hold was no longer +his. And he understood this not merely from the attitude of the court. +He saw on the one hand that the military business in which he had +played his part was ended and felt that his mission was +accomplished; and at the same time he began to be conscious of the +physical weariness of his aged body and of the necessity of physical +rest. + +On the twenty-ninth of November Kutuzov entered Vilna--his "dear +Vilna" as he called it. Twice during his career Kutuzov had been +governor of Vilna. In that wealthy town, which had not been injured, +he found old friends and associations, besides the comforts of life of +which he had so long been deprived. And he suddenly turned from the +cares of army and state and, as far as the passions that seethed +around him allowed, immersed himself in the quiet life to which he had +formerly been accustomed, as if all that was taking place and all that +had still to be done in the realm of history did not concern him at +all. + +Chichagov, one of the most zealous "cutters-off" and +"breakers-up," who had first wanted to effect a diversion in Greece +and then in Warsaw but never wished to go where he was sent: +Chichagov, noted for the boldness with which he spoke to the +Emperor, and who considered Kutuzov to be under an obligation to him +because when he was sent to make peace with Turkey in 1811 +independently of Kutuzov, and found that peace had already been +concluded, he admitted to the Emperor that the merit of securing +that peace was really Kutuzov's; this Chichagov was the first to +meet Kutuzov at the castle where the latter was to stay. In undress +naval uniform, with a dirk, and holding his cap under his arm, he +handed Kutuzov a garrison report and the keys of the town. The +contemptuously respectful attitude of the younger men to the old man +in his dotage was expressed in the highest degree by the behavior of +Chichagov, who knew of the accusations that were being directed +against Kutuzov. + +When speaking to Chichagov, Kutuzov incidentally mentioned that +the vehicles packed with china that had been captured from him at +Borisov had been recovered and would be restored to him. + +"You mean to imply that I have nothing to eat out of.... On the +contrary, I can supply you with everything even if you want to give +dinner parties," warmly replied Chichagov, who tried by every word +he spoke to prove his own rectitude and therefore imagined Kutuzov +to be animated by the same desire. + +Kutuzov, shrugging his shoulders, replied with his subtle +penetrating smile: "I meant merely to say what I said." + +Contrary to the Emperor's wish Kutuzov detained the greater part +of the army at Vilna. Those about him said that he became +extraordinarily slack and physically feeble during his stay in that +town. He attended to army affairs reluctantly, left everything to +his generals, and while awaiting the Emperor's arrival led a +dissipated life. + +Having left Petersburg on the seventh of December with his suite- +Count Tolstoy, Prince Volkonski, Arakcheev, and others--the Emperor +reached Vilna on the eleventh, and in his traveling sleigh drove +straight to the castle. In spite of the severe frost some hundred +generals and staff officers in full parade uniform stood in front of +the castle, as well as a guard of honor of the Semenov regiment. + +A courier who galloped to the castle in advance, in a troyka with +three foam-flecked horses, shouted "Coming!" and Konovnitsyn rushed +into the vestibule to inform Kutuzov, who was waiting in the hall +porter's little lodge. + +A minute later the old man's large stout figure in full-dress +uniform, his chest covered with orders and a scarf drawn round his +stomach, waddled out into the porch. He put on his hat with its +peaks to the sides and, holding his gloves in his hand and walking +with an effort sideways down the steps to the level of the street, +took in his hand the report he had prepared for the Emperor. + +There was running to and fro and whispering; another troyka +furiously up, and then all eyes were turned on an approaching sleigh +in which the figures of the Emperor and Volkonski could already be +descried. + +From the habit of fifty years all this had a physically agitating +effect on the old general. He carefully and hastily felt himself all +over, readjusted his hat, and pulling himself together drew himself up +and, at the very moment when the Emperor, having alighted from the +sleigh, lifted his eyes to him, handed him the report and began +speaking in his smooth, ingratiating voice. + +The Emperor with a rapid glance scanned Kutuzov from head to foot, +frowned for an instant, but immediately mastering himself went up to +the old man, extended his arms and embraced him. And this embrace too, +owing to a long-standing impression related to his innermost feelings, +had its usual effect on Kutuzov and he gave a sob. + +The Emperor greeted the officers and the Semenov guard, and again +pressing the old man's hand went with him into the castle. + +When alone with the field marshal the Emperor expressed his +dissatisfaction at the slowness of the pursuit and at the mistakes +made at Krasnoe and the Berezina, and informed him of his intentions +for a future campaign abroad. Kutuzov made no rejoinder or remark. The +same submissive, expressionless look with which he had listened to the +Emperor's commands on the field of Austerlitz seven years before +settled on his face now. + +When Kutuzov came out of the study and with lowered head was +crossing the ballroom with his heavy waddling gait, he was arrested by +someone's voice saying: + +"Your Serene Highness!" + +Kutuzov raised his head and looked for a long while into the eyes of +Count Tolstoy, who stood before him holding a silver salver on which +lay a small object. Kutuzov seemed not to understand what was expected +of him. + +Suddenly he seemed to remember; a scarcely perceptible smile flashed +across his puffy face, and bowing low and respectfully he took the +object that lay on the salver. It was the Order of St. George of the +First Class. + + + + + +CHAPTER XI + + +Next day the field marshal gave a dinner and ball which the +Emperor honored by his presence. Kutuzov had received the Order of St. +George of the First Class and the Emperor showed him the highest +honors, but everyone knew of the imperial dissatisfaction with him. +The proprieties were observed and the Emperor was the first to set +that example, but everybody understood that the old man was +blameworthy and good-for-nothing. When Kutuzov, conforming to a custom +of Catherine's day, ordered the standards that had been captured to be +lowered at the Emperor's feet on his entering the ballroom, the +Emperor made a wry face and muttered something in which some people +caught the words, "the old comedian." + +The Emperor's displeasure with Kutuzov was specially increased at +Vilna by the fact that Kutuzov evidently could not or would not +understand the importance of the coming campaign. + +When on the following morning the Emperor said to the officers +assembled about him: "You have not only saved Russia, you have saved +Europe!" they all understood that the war was not ended. + +Kutuzov alone would not see this and openly expressed his opinion +that no fresh war could improve the position or add to the glory of +Russia, but could only spoil and lower the glorious position that +Russia had gained. He tried to prove to the Emperor the +impossibility of levying fresh troops, spoke of the hardships +already endured by the people, of the possibility of failure and so +forth. + +This being the field marshal's frame of mind he was naturally +regarded as merely a hindrance and obstacle to the impending war. + +To avoid unpleasant encounters with the old man, the natural +method was to do what had been done with him at Austerlitz and with +Barclay at the beginning of the Russian campaign--to transfer the +authority to the Emperor himself, thus cutting the ground from under +the commander in chief's feet without upsetting the old man by +informing him of the change. + +With this object his staff was gradually reconstructed and its +real strength removed and transferred to the Emperor. Toll, +Konovnitsyn, and Ermolov received fresh appointments. Everyone spoke +loudly of the field marshal's great weakness and failing health. + +His health had to be bad for his place to be taken away and given to +another. And in fact his health was poor. + +So naturally, simply, and gradually--just as he had come from Turkey +to the Treasury in Petersburg to recruit the militia, and then to +the army when he was needed there--now when his part was played out, +Kutuzov's place was taken by a new and necessary performer. + +The war 1812, besides its national significance dear to every +Russian heart, was now to assume another, a European, significance. + +The movement of peoples from west to east was to be succeeded by a +movement of peoples from east to west, and for this fresh war +another leader was necessary, having qualities and views differing +from Kutuzov's and animated by different motives. + +Alexander I was as necessary for the movement of the peoples from +east to west and for the refixing of national frontiers as Kutuzov had +been for the salvation and glory of Russia. + +Kutuzov did not understand what Europe, the balance of power, or +Napoleon meant. He could not understand it. For the representative +of the Russian people, after the enemy had been destroyed and Russia +had been liberated and raised to the summit of her glory, there was +nothing left to do as a Russian. Nothing remained for the +representative of the national war but to die, and Kutuzov died. + + + + + +CHAPTER XII + + +As generally happens, Pierre did not feel the full effects of the +physical privation and strain he had suffered as prisoner until +after they were over. After his liberation he reached Orel, and on the +third day there, when preparing to go to Kiev, he fell ill and was +laid up for three months. He had what the doctors termed "bilious +fever." But despite the fact that the doctors treated him, bled him, +and gave him medicines to drink, he recovered. + +Scarcely any impression was left on Pierre's mind by all that +happened to him from the time of his rescue till his illness. He +remembered only the dull gray weather now rainy and now snowy, +internal physical distress, and pains in his feet and side. He +remembered a general impression of the misfortunes and sufferings of +people and of being worried by the curiosity of officers and +generals who questioned him, he also remembered his difficulty in +procuring a conveyance and horses, and above all he remembered his +incapacity to think and feel all that time. On the day of his rescue +he had seen the body of Petya Rostov. That same day he had learned +that Prince Andrew, after surviving the battle of Borodino for more +than a month had recently died in the Rostovs' house at Yaroslavl, and +Denisov who told him this news also mentioned Helene's death, +supposing that Pierre had heard of it long before. All this at the +time seemed merely strange to Pierre: he felt he could not grasp its +significance. Just then he was only anxious to get away as quickly +as possible from places where people were killing one another, to some +peaceful refuge where he could recover himself, rest, and think over +all the strange new facts he had learned; but on reaching Orel he +immediately fell ill. When he came to himself after his illness he saw +in attendance on him two of his servants, Terenty and Vaska, who had +come from Moscow; and also his cousin the eldest princess, who had +been living on his estate at Elets and hearing of his rescue and +illness had come to look after him. + +It was only gradually during his convalescence that Pierre lost +the impressions he had become accustomed to during the last few months +and got used to the idea that no one would oblige him to go anywhere +tomorrow, that no one would deprive him of his warm bed, and that he +would be sure to get his dinner, tea, and supper. But for a long +time in his dreams he still saw himself in the conditions of +captivity. In the same way little by little he came to understand +the news he had been told after his rescue, about the death of +Prince Andrew, the death of his wife, and the destruction of the +French. + +A joyous feeling of freedom--that complete inalienable freedom +natural to man which he had first experienced at the first halt +outside Moscow--filled Pierre's soul during his convalescence. He +was surprised to find that this inner freedom, which was independent +of external conditions, now had as it were an additional setting of +external liberty. He was alone in a strange town, without +acquaintances. No one demanded anything of him or sent him anywhere. +He had all he wanted: the thought of his wife which had been a +continual torment to him was no longer there, since she was no more. + +"Oh, how good! How splendid!" said he to himself when a cleanly laid +table was moved up to him with savory beef tea, or when he lay down +for the night on a soft clean bed, or when he remembered that the +French had gone and that his wife was no more. "Oh, how good, how +splendid!" + +And by old habit he asked himself the question: "Well, and what +then? What am I going to do?" And he immediately gave himself the +answer: "Well, I shall live. Ah, how splendid!" + +The very question that had formerly tormented him, the thing he +had continually sought to find--the aim of life--no longer existed for +him now. That search for the aim of life had not merely disappeared +temporarily--he felt that it no longer existed for him and could not +present itself again. And this very absence of an aim gave him the +complete, joyous sense of freedom which constituted his happiness at +this time. + +He could not see an aim, for he now had faith--not faith in any kind +of rule, or words, or ideas, but faith in an ever-living, +ever-manifest God. Formerly he had sought Him in aims he set +himself. That search for an aim had been simply a search for God, +and suddenly in his captivity he had learned not by words or reasoning +but by direct feeling what his nurse had told him long ago: that God +is here and everywhere. In his captivity he had learned that in +Karataev God was greater, more infinite and unfathomable than in the +Architect of the Universe recognized by the Freemasons. He felt like a +man who after straining his eyes to see into the far distance finds +what he sought at his very feet. All his life he had looked over the +heads of the men around him, when he should have merely looked in +front of him without straining his eyes. + +In the past he had never been able to find that great inscrutable +infinite something. He had only felt that it must exist somewhere +and had looked for it. In everything near and comprehensible he had +only what was limited, petty, commonplace, and senseless. He had +equipped himself with a mental telescope and looked into remote space, +where petty worldliness hiding itself in misty distance had seemed +to him great and infinite merely because it was not clearly seen. +And such had European life, politics, Freemasonry, philosophy, and +philanthropy seemed to him. But even then, at moments of weakness as +he had accounted them, his mind had penetrated to those distances +and he had there seen the same pettiness, worldliness, and +senselessness. Now, however, he had learned to see the great, eternal, +and infinite in everything, and therefore--to see it and enjoy its +contemplation--he naturally threw away the telescope through which +he had till now gazed over men's heads, and gladly regarded the +ever-changing, eternally great, unfathomable, and infinite life around +him. And the closer he looked the more tranquil and happy he became. +That dreadful question, "What for?" which had formerly destroyed all +his mental edifices, no longer existed for him. To that question, +"What for?" a simple answer was now always ready in his soul: "Because +there is a God, that God without whose will not one hair falls from +a man's head." + + + + + +CHAPTER XIII + + +In external ways Pierre had hardly changed at all. In appearance +he was just what he used to be. As before he was absent-minded and +seemed occupied not with what was before his eyes but with something +special of his own. The difference between his former and present self +was that formerly when he did not grasp what lay before him or was +said to him, he had puckered his forehead painfully as if vainly +seeking to distinguish something at a distance. At present he still +forgot what was said to him and still did not see what was before +his eyes, but he now looked with a scarcely perceptible and +seemingly ironic smile at what was before him and listened to what was +said, though evidently seeing and hearing something quite different. +Formerly he had appeared to be a kindhearted but unhappy man, and so +people had been inclined to avoid him. Now a smile at the joy of +life always played round his lips, and sympathy for others, shone in +his eyes with a questioning look as to whether they were as +contented as he was, and people felt pleased by his presence. + +Previously he had talked a great deal, grew excited when he +talked, and seldom listened; now he was seldom carried away in +conversation and knew how to listen so that people readily told him +their most intimate secrets. + +The princess, who had never liked Pierre and had been particularly +hostile to him since she had felt herself under obligations to him +after the old count's death, now after staying a short time in Orel- +where she had come intending to show Pierre that in spite of his +ingratitude she considered it her duty to nurse him--felt to her +surprise and vexation that she had become fond of him. Pierre did +not in any way seek her approval, he merely studied her with interest. +Formerly she had felt that he regarded her with indifference and +irony, and so had shrunk into herself as she did with others and had +shown him only the combative side of her nature; but now he seemed +to be trying to understand the most intimate places of her heart, and, +mistrustfully at first but afterwards gratefully, she let him see +the hidden, kindly sides of her character. + +The most cunning man could not have crept into her confidence more +successfully, evoking memories of the best times of her youth and +showing sympathy with them. Yet Pierre's cunning consisted simply in +finding pleasure in drawing out the human qualities of the embittered, +hard, and (in her own way) proud princess. + +"Yes, he is a very, very kind man when he is not under the influence +of bad people but of people such as myself," thought she. + +His servants too--Terenty and Vaska--in their own way noticed the +change that had taken place in Pierre. They considered that he had +become much "simpler." Terenty, when he had helped him undress and +wished him good night, often lingered with his master's boots in his +hands and clothes over his arm, to see whether he would not start a +talk. And Pierre, noticing that Terenty wanted a chat, generally +kept him there. + +"Well, tell me... now, how did you get food?" he would ask. + +And Terenty would begin talking of the destruction of Moscow, and of +the old count, and would stand for a long time holding the clothes and +talking, or sometimes listening to Pierre's stories, and then would go +out into the hall with a pleasant sense of intimacy with his master +and affection for him. + +The doctor who attended Pierre and visited him every day, though +he considered it his duty as a doctor to pose as a man whose every +moment was of value to suffering humanity, would sit for hours with +Pierre telling him his favorite anecdotes and his observations on +the characters of his patients in general, and especially of the +ladies. + +"It's a pleasure to talk to a man like that; he is not like our +provincials," he would say. + +There were several prisoners from the French army in Orel, and the +doctor brought one of them, a young Italian, to see Pierre. + +This officer began visiting Pierre, and the princess used to make +fun of the tenderness the Italian expressed for him. + +The Italian seemed happy only when he could come to see Pierre, talk +with him, tell him about his past, his life at home, and his love, and +pour out to him his indignation against the French and especially +against Napoleon. + +"If all Russians are in the least like you, it is sacrilege to fight +such a nation," he said to Pierre. "You, who have suffered so from the +French, do not even feel animosity toward them." + +Pierre had evoked the passionate affection of the Italian merely +by evoking the best side of his nature and taking a pleasure in so +doing. + +During the last days of Pierre's stay in Orel his old Masonic +acquaintance Count Willarski, who had introduced him to the lodge in +1807, came to see him. Willarski was married to a Russian heiress +who had a large estate in Orel province, and he occupied a temporary +post in the commissariat department in that town. + +Hearing that Bezukhov was in Orel, Willarski, though they had +never been intimate, came to him with the professions of friendship +and intimacy that people who meet in a desert generally express for +one another. Willarski felt dull in Orel and was pleased to meet a man +of his own circle and, as he supposed, of similar interests. + +But to his surprise Willarski soon noticed that Pierre had lagged +much behind the times, and had sunk, as he expressed it to himself, +into apathy and egotism. + +"You are letting yourself go, my dear fellow," he said. + +But for all that Willarski found it pleasanter now than it had +been formerly to be with Pierre, and came to see him every day. To +Pierre as he looked at and listened to Willarski, it seemed strange to +think that he had been like that himself but a short time before. + +Willarski was a married man with a family, busy with his family +affairs, his wife's affairs, and his official duties. He regarded +all these occupations as hindrances to life, and considered that +they were all contemptible because their aim was the welfare of +himself and his family. Military, administrative, political, and +Masonic interests continually absorbed his attention. And Pierre, +without trying to change the other's views and without condemning him, +but with the quiet, joyful, and amused smile now habitual to him, +was interested in this strange though very familiar phenomenon. + +There was a new feature in Pierre's relations with Willarski, with +the princess, with the doctor, and with all the people he now met, +which gained for him the general good will. This was his +acknowledgment of the impossibility of changing a man's convictions by +words, and his recognition of the possibility of everyone thinking, +feeling, and seeing things each from his own point of view. This +legitimate peculiarity of each individual which used to excite and +irritate Pierre now became a basis of the sympathy he felt for, and +the interest he took in, other people. The difference, and sometimes +complete contradiction, between men's opinions and their lives, and +between one man and another, pleased him and drew from him an amused +and gentle smile. + +In practical matters Pierre unexpectedly felt within himself a +center of gravity he had previously lacked. Formerly all pecuniary +questions, especially requests for money to which, as an extremely +wealthy man, he was very exposed, produced in him a state of +hopeless agitation and perplexity. "To give or not to give?" he had +asked himself. "I have it and he needs it. But someone else needs it +still more. Who needs it most? And perhaps they are both impostors?" +In the old days he had been unable to find a way out of all these +surmises and had given to all who asked as long as he had anything +to give. Formerly he had been in a similar state of perplexity with +regard to every question concerning his property, when one person +advised one thing and another something else. + +Now to his surprise he found that he no longer felt either doubt +or perplexity about these questions. There was now within him a +judge who by some rule unknown to him decided what should or should +not be done. + +He was as indifferent as heretofore to money matters, but now he +felt certain of what ought and what ought not to be done. The first +time he had recourse to his new judge was when a French prisoner, a +colonel, came to him and, after talking a great deal about his +exploits, concluded by making what amounted to a demand that Pierre +should give him four thousand francs to send to his wife and children. +Pierre refused without the least difficulty or effort, and was +afterwards surprised how simple and easy had been what used to +appear so insurmountably difficult. At the same time that he refused +the colonel's demand he made up his mind that he must have recourse to +artifice when leaving Orel, to induce the Italian officer to accept +some money of which he was evidently in need. A further proof to +Pierre of his own more settled outlook on practical matters was +furnished by his decision with regard to his wife's debts and to the +rebuilding of his houses in and near Moscow. + +His head steward came to him at Orel and Pierre reckoned up with him +his diminished income. The burning of Moscow had cost him, according +to the head steward's calculation, about two million rubles. + +To console Pierre for these losses the head steward gave him an +estimate showing that despite these losses his income would not be +diminished but would even be increased if he refused to pay his wife's +debts which he was under no obligation to meet, and did not rebuild +his Moscow house and the country house on his Moscow estate, which had +cost him eighty thousand rubles a year and brought in nothing. + +"Yes, of course that's true," said Pierre with a cheerful smile. +"I don't need all that at all. By being ruined I have become much +richer." + +But in January Savelich came from Moscow and gave him an account +of the state of things there, and spoke of the estimate an architect +had made of the cost of rebuilding the town and country houses, +speaking of this as of a settled matter. About the same time he +received letters from Prince Vasili and other Petersburg acquaintances +speaking of his wife's debts. And Pierre decided that the steward's +proposals which had so pleased him were wrong and that he must go to +Petersburg and settle his wife's affairs and must rebuild in Moscow. +Why this was necessary he did not know, but he knew for certain that +it was necessary. His income would be reduced by three fourths, but he +felt it must be done. + +Willarski was going to Moscow and they agreed to travel together. + +During the whole time of his convalescence in Orel Pierre had +experienced a feeling of joy, freedom, and life; but when during his +journey he found himself in the open world and saw hundreds of new +faces, that feeling was intensified. Throughout his journey he felt +like a schoolboy on holiday. Everyone--the stagecoach driver, the +post-house overseers, the peasants on the roads and in the villages- +had a new significance for him. The presence and remarks of +Willarski who continually deplored the ignorance and poverty of Russia +and its backwardness compared with Europe only heightened Pierre's +pleasure. Where Willarski saw deadness Pierre saw an extraordinary +strength and vitality--the strength which in that vast space amid +the snows maintained the life of this original, peculiar, and unique +people. He did not contradict Willarski and even seemed to agree +with him--an apparent agreement being the simplest way to avoid +discussions that could lead to nothing--and he smiled joyfully as he +listened to him. + + + + + +CHAPTER XIV + + +It would be difficult to explain why and whither ants whose heap has +been destroyed are hurrying: some from the heap dragging bits of +rubbish, larvae, and corpses, others back to the heap, or why they +jostle, overtake one another, and fight, and it would be equally +difficult to explain what caused the Russians after the departure of +the French to throng to the place that had formerly been Moscow. But +when we watch the ants round their ruined heap, the tenacity, +energy, and immense number of the delving insects prove that despite +the destruction of the heap, something indestructible, which though +intangible is the real strength of the colony, still exists; and +similarly, though in Moscow in the month of October there was no +government no churches, shrines, riches, or houses--it was still the +Moscow it had been in August. All was destroyed, except something +intangible yet powerful and indestructible. + +The motives of those who thronged from all sides to Moscow after +it had been cleared of the enemy were most diverse and personal, and +at first for the most part savage and brutal. One motive only they all +had in common: a desire to get to the place that had been called +Moscow, to apply their activities there. + +Within a week Moscow already had fifteen thousand inhabitants, in +a fortnight twenty-five thousand, and so on. By the autumn of 1813 the +number, ever increasing and increasing, exceeded what it had been in +1812. + +The first Russians to enter Moscow were the Cossacks of +Wintzingerode's detachment, peasants from the adjacent villages, and +residents who had fled from Moscow and had been hiding in its +vicinity. The Russians who entered Moscow, finding it plundered, +plundered it in their turn. They continued what the French had +begun. Trains of peasant carts came to Moscow to carry off to the +villages what had been abandoned in the ruined houses and the streets. +The Cossacks carried off what they could to their camps, and the +householders seized all they could find in other houses and moved it +to their own, pretending that it was their property. + +But the first plunderers were followed by a second and a third +contingent, and with increasing numbers plundering became more and +more difficult and assumed more definite forms. + +The French found Moscow abandoned but with all the organizations +of regular life, with diverse branches of commerce and +craftsmanship, with luxury, and governmental and religious +institutions. These forms were lifeless but still existed. There +were bazaars, shops, warehouses, market stalls, granaries--for the +most part still stocked with goods--and there were factories and +workshops, palaces and wealthy houses filled with luxuries, hospitals, +prisons, government offices, churches, and cathedrals. The longer +the French remained the more these forms of town life perished, +until finally all was merged into one confused, lifeless scene of +plunder. + +The more the plundering by the French continued, the more both the +wealth of Moscow and the strength of its plunderers was destroyed. But +plundering by the Russians, with which the reoccupation of the city +began, had an opposite effect: the longer it continued and the greater +the number of people taking part in it the more rapidly was the wealth +of the city and its regular life restored. + +Besides the plunderers, very various people, some drawn by +curiosity, some by official duties, some by self-interest--house +owners, clergy, officials of all kinds, tradesmen, artisans, and +peasants--streamed into Moscow as blood flows to the heart. + +Within a week the peasants who came with empty carts to carry off +plunder were stopped by the authorities and made to cart the corpses +out of the town. Other peasants, having heard of their comrades' +discomfiture, came to town bringing rye, oats, and hay, and beat +down one another's prices to below what they had been in former +days. Gangs of carpenters hoping for high pay arrived in Moscow +every day, and on all sides logs were being hewn, new houses built, +and old, charred ones repaired. Tradesmen began trading in booths. +Cookshops and taverns were opened in partially burned houses. The +clergy resumed the services in many churches that had not been burned. +Donors contributed Church property that had been stolen. Government +clerks set up their baize-covered tables and their pigeonholes of +documents in small rooms. The higher authorities and the police +organized the distribution of goods left behind by the French. The +owners of houses in which much property had been left, brought there +from other houses, complained of the injustice of taking everything to +the Faceted Palace in the Kremlin; others insisted that as the +French had gathered things from different houses into this or that +house, it would be unfair to allow its owner to keep all that was +found there. They abused the police and bribed them, made out +estimates at ten times their value for government stores that had +perished in the fire, and demanded relief. And Count Rostopchin +wrote proclamations. + + + + + +CHAPTER XV + + +At the end of January Pierre went to Moscow and stayed in an annex +of his house which had not been burned. He called on Count +Rostopchin and on some acquaintances who were back in Moscow, and he +intended to leave for Petersburg two days later. Everybody was +celebrating the victory, everything was bubbling with life in the +ruined but reviving city. Everyone was pleased to see Pierre, everyone +wished to meet him, and everyone questioned him about what he had +seen. Pierre felt particularly well disposed toward them all, but +was now instinctively on his guard for fear of binding himself in +any way. To all questions put to him--whether important or quite +trifling--such as: Where would he live? Was he going to rebuild? +When was he going to Petersburg and would he mind taking a parcel +for someone?--he replied: "Yes, perhaps," or, "I think so," and so on. + +He had heard that the Rostovs were at Kostroma but the thought of +Natasha seldom occurred to him. If it did it was only as a pleasant +memory of the distant past. He felt himself not only free from +social obligations but also from that feeling which, it seemed to him, +he had aroused in himself. + +On the third day after his arrival he heard from the Drubetskoys +that Princess Mary was in Moscow. The death, sufferings, and last days +of Prince Andrew had often occupied Pierre's thoughts and now recurred +to him with fresh vividness. Having heard at dinner that Princess Mary +was in Moscow and living in her house--which had not been burned--in +Vozdvizhenka Street, he drove that same evening to see her. + +On his way to the house Pierre kept thinking of Prince Andrew, of +their friendship, of his various meetings with him, and especially +of the last one at Borodino. + +"Is it possible that he died in the bitter frame of mind he was then +in? Is it possible that the meaning of life was not disclosed to him +before he died?" thought Pierre. He recalled Karataev and his death +and involuntarily began to compare these two men, so different, and +yet so similar in that they had both lived and both died and in the +love he felt for both of them. + +Pierre drove up to the house of the old prince in a most serious +mood. The house had escaped the fire; it showed signs of damage but +its general aspect was unchanged. The old footman, who met Pierre with +a stern face as if wishing to make the visitor feel that the absence +of the old prince had not disturbed the order of things in the +house, informed him that the princess had gone to her own +apartments, and that she received on Sundays. + +"Announce me. Perhaps she will see me," said Pierre. + +"Yes, sir," said the man. "Please step into the portrait gallery." + +A few minutes later the footman returned with Dessalles, who brought +word from the princess that she would be very glad to see Pierre if he +would excuse her want of ceremony and come upstairs to her apartment. + +In a rather low room lit by one candle sat the princess and with her +another person dressed in black. Pierre remembered that the princess +always had lady companions, but who they were and what they were +like he never knew or remembered. "This must be one of her +companions," he thought, glancing at the lady in the black dress. + +The princess rose quickly to meet him and held out her hand. + +"Yes," she said, looking at his altered face after he had kissed her +hand, "so this is how we meet again. He spoke of you even at the +very last," she went on, turning her eyes from Pierre to her companion +with a shyness that surprised him for an instant. + +"I was so glad to hear of your safety. It was the first piece of +good news we had received for a long time." + +Again the princess glanced round at her companion with even more +uneasiness in her manner and was about to add something, but Pierre +interrupted her. + +"Just imagine--I knew nothing about him!" said he. "I thought he had +been killed. All I know I heard at second hand from others. I only +know that he fell in with the Rostovs.... What a strange coincidence!" + +Pierre spoke rapidly and with animation. He glanced once at the +companion's face, saw her attentive and kindly gaze fixed on him, and, +as often happens when one is talking, felt somehow that this companion +in the black dress was a good, kind, excellent creature who would +not hinder his conversing freely with Princess Mary. + +But when he mentioned the Rostovs, Princess Mary's face expressed +still greater embarrassment. She again glanced rapidly from Pierre's +face to that of the lady in the black dress and said: + +"Do you really not recognize her?" + +Pierre looked again at the companion's pale, delicate face with +its black eyes and peculiar mouth, and something near to him, long +forgotten and more than sweet, looked at him from those attentive +eyes. + +"But no, it can't be!" he thought. "This stern, thin, pale face that +looks so much older! It cannot be she. It merely reminds me of her." +But at that moment Princess Mary said, "Natasha!" And with difficulty, +effort, and stress, like the opening of a door grown rusty on its +hinges, a smile appeared on the face with the attentive eyes, and from +that opening door came a breath of fragrance which suffused Pierre +with a happiness he had long forgotten and of which he had not even +been thinking--especially at that moment. It suffused him, seized him, +and enveloped him completely. When she smiled doubt was no longer +possible, it was Natasha and he loved her. + +At that moment Pierre involuntarily betrayed to her, to Princess +Mary, and above all to himself, a secret of which he himself had +been unaware. He flushed joyfully yet with painful distress. He +tried to hide his agitation. But the more he tried to hide it the more +clearly--clearer than any words could have done--did he betray to +himself, to her, and to Princess Mary that he loved her. + +"No, it's only the unexpectedness of it," thought Pierre. But as +soon as he tried to continue the conversation he had begun with +Princess Mary he again glanced at Natasha, and a still-deeper flush +suffused his face and a still-stronger agitation of mingled joy and +fear seized his soul. He became confused in his speech and stopped +in the middle of what he was saying. + +Pierre had failed to notice Natasha because he did not at all expect +to see her there, but he had failed to recognize her because the +change in her since he last saw her was immense. She had grown thin +and pale, but that was not what made her unrecognizable; she was +unrecognizable at the moment he entered because on that face whose +eyes had always shone with a suppressed smile of the joy of life, +now when he first entered and glanced at her there was not the least +shadow of a smile: only her eyes were kindly attentive and sadly +interrogative. + +Pierre's confusion was not reflected by any confusion on Natasha's +part, but only by the pleasure that just perceptibly lit up her +whole face. + + + + + +CHAPTER XVI + + +"She has come to stay with me," said Princess Mary. "The count and +countess will be here in a few days. The countess is in a dreadful +state; but it was necessary for Natasha herself to see a doctor. +They insisted on her coming with me." + +"Yes, is there a family free from sorrow now?" said Pierre, +addressing Natasha. "You know it happened the very day we were +rescued. I saw him. What a delightful boy he was!" + +Natasha looked at him, and by way of answer to his words her eyes +widened and lit up. + +"What can one say or think of as a consolation?" said Pierre. +"Nothing! Why had such a splendid boy, so full of life, to die?" + +"Yes, in these days it would be hard to live without faith..." +remarked Princess Mary. + +"Yes, yes, that is really true," Pierre hastily interrupted her. + +"Why is it true?" Natasha asked, looking attentively into Pierre's +eyes. + +"How can you ask why?" said Princess Mary. "The thought alone of +what awaits..." + +Natasha without waiting for Princess Mary to finish again looked +inquiringly at Pierre. + +"And because," Pierre continued, "only one who believes that there +is a God ruling us can bear a loss such as hers and... yours." + +Natasha had already opened her mouth to speak but suddenly +stopped. Pierre hurriedly turned away from her and again addressed +Princess Mary, asking about his friend's last days. + +Pierre's confusion had now almost vanished, but at the same time +he felt that his freedom had also completely gone. He felt that +there was now a judge of his every word and action whose judgment +mattered more to him than that of all the rest of the world. As he +spoke now he was considering what impression his words would make on +Natasha. He did not purposely say things to please her, but whatever +he was saying he regarded from her standpoint. + +Princess Mary--reluctantly as is usual in such cases--began +telling of the condition in which she had found Prince Andrew. But +Pierre's face quivering with emotion, his questions and his eager +restless expression, gradually compelled her to go into details +which she feared to recall for her own sake. + +"Yes, yes, and so...?" Pierre kept saying as he leaned toward her +with his whole body and eagerly listened to her story. "Yes, yes... so +he grew tranquil and softened? With all his soul he had always +sought one thing--to be perfectly good--so he could not be afraid of +death. The faults he had--if he had any--were not of his making. So he +did soften?... What a happy thing that he saw you again," he added, +suddenly turning to Natasha and looking at her with eyes full of +tears. + +Natasha's face twitched. She frowned and lowered her eyes for a +moment. She hesitated for an instant whether to speak or not. + +"Yes, that was happiness," she then said in her quiet voice with its +deep chest notes. "For me it certainly was happiness." She paused. +"And he... he... he said he was wishing for it at the very moment I +entered the room...." + +Natasha's voice broke. She blushed, pressed her clasped hands on her +knees, and then controlling herself with an evident effort lifted +her head and began to speak rapidly. + +"We knew nothing of it when we started from Moscow. I did not dare +to ask about him. Then suddenly Sonya told me he was traveling with +us. I had no idea and could not imagine what state he was in, all I +wanted was to see him and be with him," she said, trembling, and +breathing quickly. + +And not letting them interrupt her she went on to tell what she +had never yet mentioned to anyone--all she had lived through during +those three weeks of their journey and life at Yaroslavl. + +Pierre listened to her with lips parted and eyes fixed upon her full +of tears. As he listened he did not think of Prince Andrew, nor of +death, nor of what she was telling. He listened to her and felt only +pity for her, for what she was suffering now while she was speaking. + +Princess Mary, frowning in her effort to hold back her tears, sat +beside Natasha, and heard for the first time the story of those last +days of her brother's and Natasha's love. + +Evidently Natasha needed to tell that painful yet joyful tale. + +She spoke, mingling most trifling details with the intimate +secrets of her soul, and it seemed as if she could never finish. +Several times she repeated the same thing twice. + +Dessalles' voice was heard outside the door asking whether little +Nicholas might come in to say good night. + +"Well, that's all--everything," said Natasha. + +She got up quickly just as Nicholas entered, almost ran to the +door which was hidden by curtains, struck her head against it, and +rushed from the room with a moan either of pain or sorrow. + +Pierre gazed at the door through which she had disappeared and did +not understand why he suddenly felt all alone in the world. + +Princess Mary roused him from his abstraction by drawing his +attention to her nephew who had entered the room. + +At that moment of emotional tenderness young Nicholas' face, which +resembled his father's, affected Pierre so much that when he had +kissed the boy he got up quickly, took out his handkerchief, and +went to the window. He wished to take leave of Princess Mary, but +she would not let him go. + +"No, Natasha and I sometimes don't go to sleep till after two, so +please don't go. I will order supper. Go downstairs, we will come +immediately." + +Before Pierre left the room Princess Mary told him: "This is the +first time she has talked of him like that." + + + + + +CHAPTER XVII + + +Pierre was shown into the large, brightly lit dining room; a few +minutes later he heard footsteps and Princess Mary entered with +Natasha. Natasha was calm, though a severe and grave expression had +again settled on her face. They all three of them now experienced that +feeling of awkwardness which usually follows after a serious and +heartfelt talk. It is impossible to go back to the same +conversation, to talk of trifles is awkward, and yet the desire to +speak is there and silence seems like affectation. They went +silently to table. The footmen drew back the chairs and pushed them up +again. Pierre unfolded his cold table napkin and, resolving to break +the silence, looked at Natasha and at Princess Mary. They had +evidently both formed the same resolution; the eyes of both shone with +satisfaction and a confession that besides sorrow life also has joy. + +"Do you take vodka, Count?" asked Princess Mary, and those words +suddenly banished the shadows of the past. "Now tell us about +yourself," said she. "One hears such improbable wonders about you." + +"Yes," replied Pierre with the smile of mild irony now habitual to +him. "They even tell me wonders I myself never dreamed of! Mary +Abramovna invited me to her house and kept telling me what had +happened, or ought to have happened, to me. Stepan Stepanych also +instructed me how I ought to tell of my experiences. In general I have +noticed that it is very easy to be an interesting man (I am an +interesting man now); people invite me out and tell me all about +myself." + +Natasha smiled and was on the point of speaking. + +"We have been told," Princess Mary interrupted her, "that you lost +two millions in Moscow. Is that true?" + +"But I am three times as rich as before," returned Pierre. + +Though the position was now altered by his decision to pay his +wife's debts and to rebuild his houses, Pierre still maintained that +he had become three times as rich as before. + +"What I have certainly gained is freedom," he began seriously, but +did not continue, noticing that this theme was too egotistic. + +"And are you building?" + +"Yes. Savelich says I must!" + +"Tell me, you did not know of the countess' death when you decided +to remain in Moscow?" asked Princess Mary and immediately blushed, +noticing that her question, following his mention of freedom, ascribed +to his words a meaning he had perhaps not intended. + +"No," answered Pierre, evidently not considering awkward the meaning +Princess Mary had given to his words. "I heard of it in Orel and you +cannot imagine how it shocked me. We were not an exemplary couple," he +added quickly, glancing at Natasha and noticing on her face +curiosity as to how he would speak of his wife, "but her death shocked +me terribly. When two people quarrel they are always both in fault, +and one's own guilt suddenly becomes terribly serious when the other +is no longer alive. And then such a death... without friends and +without consolation! I am very, very sorry for her," he concluded, and +was pleased to notice a look of glad approval on Natasha's face. + +"Yes, and so you are once more an eligible bachelor," said +Princess Mary. + +Pierre suddenly flushed crimson and for a long time tried not to +look at Natasha. When he ventured to glance her way again her face was +cold, stern, and he fancied even contemptuous. + +"And did you really see and speak to Napoleon, as we have been +told?" said Princess Mary. + +Pierre laughed. + +"No, not once! Everybody seems to imagine that being taken +prisoner means being Napoleon's guest. Not only did I never see him +but I heard nothing about him--I was in much lower company!" + +Supper was over, and Pierre who at first declined to speak about his +captivity was gradually led on to do so. + +"But it's true that you remained in Moscow to kill Napoleon?" +Natasha asked with a slight smile. "I guessed it then when we met at +the Sukharev tower, do you remember?" + +Pierre admitted that it was true, and from that was gradually led by +Princess Mary's questions and especially by Natasha's into giving a +detailed account of his adventures. + +At first he spoke with the amused and mild irony now customary +with him toward everybody and especially toward himself, but when he +came to describe the horrors and sufferings he had witnessed he was +unconsciously carried away and began speaking with the suppressed +emotion of a man re-experiencing in recollection strong impressions he +has lived through. + +Princess Mary with a gentle smile looked now at Pierre and now at +Natasha. In the whole narrative she saw only Pierre and his +goodness. Natasha, leaning on her elbow, the expression of her face +constantly changing with the narrative, watched Pierre with an +attention that never wandered--evidently herself experiencing all that +he described. Not only her look, but her exclamations and the brief +questions she put, showed Pierre that she understood just what he +wished to convey. It was clear that she understood not only what he +said but also what he wished to, but could not, express in words. +The account Pierre gave of the incident with the child and the woman +for protecting whom he was arrested was this: "It was an awful +sight--children abandoned, some in the flames... One was snatched +out before my eyes... and there were women who had their things +snatched off and their earrings torn out..." he flushed and grew +confused. "Then a patrol arrived and all the men--all those who were + +not looting, that is--were arrested, and I among them." + +"I am sure you're not telling us everything; I am sure you did +something..." said Natasha and pausing added, "something fine?" + +Pierre continued. When he spoke of the execution he wanted to pass +over the horrible details, but Natasha insisted that he should not +omit anything. + +Pierre began to tell about Karataev, but paused. By this time he had +risen from the table and was pacing the room, Natasha following him +with her eyes. Then he added: + +"No, you can't understand what I learned from that illiterate man- +that simple fellow." + +"Yes, yes, go on!" said Natasha. "Where is he?" + +"They killed him almost before my eyes." + +And Pierre, his voice trembling continually, went on to tell of +the last days of their retreat, of Karataev's illness and his death. + +He told of his adventures as he had never yet recalled them. He now, +as it were, saw a new meaning in all he had gone through. Now that +he was telling it all to Natasha he experienced that pleasure which +a man has when women listen to him--not clever women who when +listening either try to remember what they hear to enrich their +minds and when opportunity offers to retell it, or who wish to adopt +it to some thought of their own and promptly contribute their own +clever comments prepared in their little mental workshop--but the +pleasure given by real women gifted with a capacity to select and +absorb the very best a man shows of himself. Natasha without knowing +it was all attention: she did not lose a word, no single quiver in +Pierre's voice, no look, no twitch of a muscle in his face, nor a +single gesture. She caught the unfinished word in its flight and +took it straight into her open heart, divining the secret meaning of +all Pierre's mental travail. + +Princess Mary understood his story and sympathized with him, but she +now saw something else that absorbed all her attention. She saw the +possibility of love and happiness between Natasha and Pierre, and +the first thought of this filled her heart with gladness. + +It was three o'clock in the morning. The footmen came in with sad +and stern faces to change the candles, but no one noticed them. + +Pierre finished his story. Natasha continued to look at him intently +with bright, attentive, and animated eyes, as if trying to +understand something more which he had perhaps left untold. Pierre +in shamefaced and happy confusion glanced occasionally at her, and +tried to think what to say next to introduce a fresh subject. Princess +Mary was silent. It occurred to none of them that it was three o'clock +and time to go to bed. + +"People speak of misfortunes and sufferings," remarked Pierre, +"but if at this moment I were asked: 'Would you rather be what you +were before you were taken prisoner, or go through all this again?' +then for heaven's sake let me again have captivity and horseflesh! +We imagine that when we are thrown out of our usual ruts all is +lost, but it is only then that what is new and good begins. While +there is life there is happiness. There is much, much before us. I say +this to you," he added, turning to Natasha. + +"Yes, yes," she said, answering something quite different. "I too +should wish nothing but to relive it all from the beginning." + +Pierre looked intently at her. + +"Yes, and nothing more." said Natasha. + +"It's not true, not true!" cried Pierre. "I am not to blame for +being alive and wishing to live--nor you either." + +Suddenly Natasha bent her head, covered her face with her hands, and +began to cry. + +"What is it, Natasha?" said Princess Mary. + +"Nothing, nothing." She smiled at Pierre through her tears. "Good +night! It is time for bed." + +Pierre rose and took his leave. + + +Princess Mary and Natasha met as usual in the bedroom. They talked +of what Pierre had told them. Princess Mary did not express her +opinion of Pierre nor did Natasha speak of him. + +"Well, good night, Mary!" said Natasha. "Do you know, I am often +afraid that by not speaking of him" (she meant Prince Andrew) "for +fear of not doing justice to our feelings, we forget him." + +Princess Mary sighed deeply and thereby acknowledged the justice +of Natasha's remark, but she did not express agreement in words. + +"Is it possible to forget?" said she. + +"It did me so much good to tell all about it today. It was hard +and painful, but good, very good!" said Natasha. "I am sure he +really loved him. That is why I told him... Was it all right?" she +added, suddenly blushing. + +"To tell Pierre? Oh, yes. What a splendid man he is!" said +Princess Mary. + +"Do you know, Mary..." Natasha suddenly said with a mischievous +smile such as Princess Mary had not seen on her face for a long +time, "he has somehow grown so clean, smooth, and fresh--as if he +had just come out of a Russian bath; do you understand? Out of a moral +bath. Isn't it true?" + +"Yes," replied Princess Mary. "He has greatly improved." + +"With a short coat and his hair cropped; just as if, well, just as +if he had come straight from the bath... Papa used to..." + +"I understand why he" (Prince Andrew) "liked no one so much as him," +said Princess Mary. + +"Yes, and yet he is quite different. They say men are friends when +they are quite different. That must be true. Really he is quite unlike +him--in everything." + +"Yes, but he's wonderful." + +"Well, good night," said Natasha. + +And the same mischievous smile lingered for a long time on her +face as if it had been forgotten there. + + + + +CHAPTER XVIII + + +It was a long time before Pierre could fall asleep that night. He +paced up and down his room, now turning his thoughts on a difficult +problem and frowning, now suddenly shrugging his shoulders and +wincing, and now smiling happily. + +He was thinking of Prince Andrew, of Natasha, and of their love, +at one moment jealous of her past, then reproaching himself for that +feeling. It was already six in the morning and he still paced up and +down the room. + +"Well, what's to be done if it cannot be avoided? What's to be done? +Evidently it has to be so," said he to himself, and hastily undressing +he got into bed, happy and agitated but free from hesitation or +indecision. + +"Strange and impossible as such happiness seems, I must do +everything that she and I may be man and wife," he told himself. + +A few days previously Pierre had decided to go to Petersburg on +the Friday. When he awoke on the Thursday, Savelich came to ask him +about packing for the journey. + +"What, to Petersburg? What is Petersburg? Who is there in +Petersburg?" he asked involuntarily, though only to himself. "Oh, yes, +long ago before this happened I did for some reason mean to go to +Petersburg," he reflected. "Why? But perhaps I shall go. What a good +fellow he is and how attentive, and how he remembers everything," he +thought, looking at Savelich's old face, "and what a pleasant smile he +has!" + +"Well, Savelich, do you still not wish to accept your freedom?" +Pierre asked him. + +"What's the good of freedom to me, your excellency? We lived under +the late count--the kingdom of heaven be his!--and we have lived under +you too, without ever being wronged." + +"And your children?" + +"The children will live just the same. With such masters one can +live." + +"But what about my heirs?" said Pierre. "Supposing I suddenly +marry... it might happen," he added with an involuntary smile. + +"If I may take the liberty, your excellency, it would be a good +thing." + +"How easy he thinks it," thought Pierre. "He doesn't know how +terrible it is and how dangerous. Too soon or too late... it is +terrible!" + +"So what are your orders? Are you starting tomorrow?" asked +Savelich. + +"No, I'll put it off for a bit. I'll tell you later. You must +forgive the trouble I have put you to," said Pierre, and seeing +Savelich smile, he thought: "But how strange it is that he should +not know that now there is no Petersburg for me, and that that must be +settled first of all! But probably he knows it well enough and is only +pretending. Shall I have a talk with him and see what he thinks?" +Pierre reflected. "No, another time." + +At breakfast Pierre told the princess, his cousin, that he had +been to see Princess Mary the day before and had there met--"Whom do +you think? Natasha Rostova!" + +The princess seemed to see nothing more extraordinary in that than +if he had seen Anna Semenovna. + +"Do you know her?" asked Pierre. + +"I have seen the princess," she replied. "I heard that they were +arranging a match for her with young Rostov. It would be a very good +thing for the Rostovs, they are said to be utterly ruined." + +"No; I mean do you know Natasha Rostova?" + +"I heard about that affair of hers at the time. It was a great +pity." + +"No, she either doesn't understand or is pretending," thought +Pierre. "Better not say anything to her either." + +The princess too had prepared provisions for Pierre's journey. + +"How kind they all are," thought Pierre. "What is surprising is that +they should trouble about these things now when it can no longer be of +interest to them. And all for me!" + +On the same day the Chief of Police came to Pierre, inviting him +to send a representative to the Faceted Palace to recover things +that were to be returned to their owners that day. + +"And this man too," thought Pierre, looking into the face of the +Chief of Police. "What a fine, good-looking officer and how kind. +Fancy bothering about such trifies now! And they actually say he is +not honest and takes bribes. What nonsense! Besides, why shouldn't +he take bribes? That's the way he was brought up, and everybody does +it. But what a kind, pleasant face and how he smiles as he looks at +me." + +Pierre went to Princess Mary's to dinner. + +As he drove through the streets past the houses that had been burned +down, he was surprised by the beauty of those ruins. The +picturesqueness of the chimney stacks and tumble-down walls of the +burned-out quarters of the town, stretching out and concealing one +another, reminded him of the Rhine and the Colosseum. The cabmen he +met and their passengers, the carpenters cutting the timber for new +houses with axes, the women hawkers, and the shopkeepers, all looked +at him with cheerful beaming eyes that seemed to say: "Ah, there he +is! Let's see what will come of it!" + +At the entrance to Princess Mary's house Pierre felt doubtful +whether he had really been there the night before and really seen +Natasha and talked to her. "Perhaps I imagined it; perhaps I shall +go in and find no one there." But he had hardly entered the room +before he felt her presence with his whole being by the loss of his +sense of freedom. She was in the same black dress with soft folds +and her hair was done the same way as the day before, yet she was +quite different. Had she been like this when he entered the day before +he could not for a moment have failed to recognize her. + +She was as he had known her almost as a child and later on as Prince +Andrew's fiancee. A bright questioning light shone in her eyes, and on +her face was a friendly and strangely roguish expression. + +Pierre dined with them and would have spent the whole evening there, +but Princess Mary was going to vespers and Pierre left the house +with her. + +Next day he came early, dined, and stayed the whole evening. +Though Princess Mary and Natasha were evidently glad to see their +visitor and though all Pierre's interest was now centered in that +house, by the evening they had talked over everything and the +conversation passed from one trivial topic to another and repeatedly +broke off. He stayed so long that Princess Mary and Natasha +exchanged glances, evidently wondering when he would go. Pierre +noticed this but could not go. He felt uneasy and embarrassed, but sat +on because he simply could not get up and take his leave. + +Princess Mary, foreseeing no end to this, rose first, and +complaining of a headache began to say good night. + +"So you are going to Petersburg tomorrow?" she asked. + +"No, I am not going," Pierre replied hastily, in a surprised tone +and as though offended. "Yes... no... to Petersburg? Tomorrow--but I +won't say good-by yet. I will call round in case you have any +commissions for me," said he, standing before Princess Mary and +turning red, but not taking his departure. + +Natasha gave him her hand and went out. Princess Mary on the other +hand instead of going away sank into an armchair, and looked sternly +and intently at him with her deep, radiant eyes. The weariness she had +plainly shown before had now quite passed off. With a deep and +long-drawn sigh she seemed to be prepared for a lengthy talk. + +When Natasha left the room Pierre's confusion and awkwardness +immediately vanished and were replaced by eager excitement. He quickly +moved an armchair toward Princess Mary. + +"Yes, I wanted to tell you," said he, answering her look as if she +had spoken. "Princess, help me! What am I to do? Can I hope? Princess, +my dear friend, listen! I know it all. I know I am not worthy of +her, I know it's impossible to speak of it now. But I want to be a +brother to her. No, not that, I don't, I can't..." + +He paused and rubbed his face and eyes with his hands. + +"Well," he went on with an evident effort at self-control and +coherence. "I don't know when I began to love her, but I have loved +her and her alone all my life, and I love her so that I cannot imagine +life without her. I cannot propose to her at present, but the +thought that perhaps she might someday be my wife and that I may be +missing that possibility... that possibility... is terrible. Tell +me, can I hope? Tell me what I am to do, dear princess!" he added +after a pause, and touched her hand as she did not reply. + +"I am thinking of what you have told me," answered Princess Mary. +"This is what I will say. You are right that to speak to her of love +at present..." + +Princess Mary stopped. She was going to say that to speak of love +was impossible, but she stopped because she had seen by the sudden +change in Natasha two days before that she would not only not be +hurt if Pierre spoke of his love, but that it was the very thing she +wished for. + +"To speak to her now wouldn't do," said the princess all the same. + +"But what am I to do?" + +"Leave it to me," said Princess Mary. "I know..." + +Pierre was looking into Princess Mary's eyes. + +"Well?... Well?..." he said. + +"I know that she loves... will love you," Princess Mary corrected +herself. + +Before her words were out, Pierre had sprung up and with a +frightened expression seized Princess Mary's hand. + +"What makes you think so? You think I may hope? You think...?" + +"Yes, I think so," said Princess Mary with a smile. "Write to her +parents, and leave it to me. I will tell her when I can. I wish it +to happen and my heart tells me it will." + +"No, it cannot be! How happy I am! But it can't be.... How happy I +am! No, it can't be!" Pierre kept saying as he kissed Princess +Mary's hands. + +"Go to Petersburg, that will be best. And I will write to you," +she said. + +"To Petersburg? Go there? Very well, I'll go. But I may come again +tomorrow?" + +Next day Pierre came to say good-by. Natasha was less animated +than she had been the day before; but that day as he looked at her +Pierre sometimes felt as if he was vanishing and that neither he nor +she existed any longer, that nothing existed but happiness. "Is it +possible? No, it can't be," he told himself at every look, gesture, +and word that filled his soul with joy. + +When on saying good-by he took her thin, slender hand, he could +not help holding it a little longer in his own. + +"Is it possible that this hand, that face, those eyes, all this +treasure of feminine charm so strange to me now, is it possible that +it will one day be mine forever, as familiar to me as I am to +myself?... No, that's impossible!..." + +"Good-by, Count," she said aloud. "I shall look forward very much to +your return," she added in a whisper. + +And these simple words, her look, and the expression on her face +which accompanied them, formed for two months the subject of +inexhaustible memories, interpretations, and happy meditations for +Pierre. "'I shall look forward very much to your return....' Yes, yes, +how did she say it? Yes, 'I shall look forward very much to your +return.' Oh, how happy I am! What is happening to me? How happy I am!" +said Pierre to himself. + + + + + +CHAPTER XIX + + +There was nothing in Pierre's soul now at all like what had troubled +it during his courtship of Helene. + +He did not repeat to himself with a sickening feeling of shame the +words he had spoken, or say: "Oh, why did I not say that?" and, +"Whatever made me say 'Je vous aime'?" On the contrary, he now +repeated in imagination every word that he or Natasha had spoken and +pictured every detail of her face and smile, and did not wish to +diminish or add anything, but only to repeat it again and again. There +was now not a shadow of doubt in his mind as to whether what he had +undertaken was right or wrong. Only one terrible doubt sometimes +crossed his mind: "Wasn't it all a dream? Isn't Princess Mary +mistaken? Am I not too conceited and self-confident? I believe all +this--and suddenly Princess Mary will tell her, and she will be sure +to smile and say: 'How strange! He must be deluding himself. Doesn't +he know that he is a man, just a man, while I...? I am something +altogether different and higher.'" + +That was the only doubt often troubling Pierre. He did not now +make any plans. The happiness before him appeared so inconceivable +that if only he could attain it, it would be the end of all things. +Everything ended with that. + +A joyful, unexpected frenzy, of which he had thought himself +incapable, possessed him. The whole meaning of life--not for him alone +but for the whole world--seemed to him centered in his love and the +possibility of being loved by her. At times everybody seemed to him to +be occupied with one thing only--his future happiness. Sometimes it +seemed to him that other people were all as pleased as he was +himself and merely tried to hide that pleasure by pretending to be +busy with other interests. In every word and gesture he saw +allusions to his happiness. He often surprised those he met by his +significantly happy looks and smiles which seemed to express a +secret understanding between him and them. And when he realized that +people might not be aware of his happiness, he pitied them with his +whole heart and felt a desire somehow to explain to them that all that +occupied them was a mere frivolous trifle unworthy of attention. + +When it was suggested to him that he should enter the civil service, +or when the war or any general political affairs were discussed on the +assumption that everybody's welfare depended on this or that issue +of events, he would listen with a mild and pitying smile and +surprise people by his strange comments. But at this time he saw +everybody--both those who, as he imagined, understood the real meaning +of life (that is, what he was feeling) and those unfortunates who +evidently did not understand it--in the bright light of the emotion +that shone within himself, and at once without any effort saw in +everyone he met everything that was good and worthy of being loved. + +When dealing with the affairs and papers of his dead wife, her +memory aroused in him no feeling but pity that she had not known the +bliss he now knew. Prince Vasili, who having obtained a new post and +some fresh decorations was particularly proud at this time, seemed +to him a pathetic, kindly old man much to be pitied. + +Often in afterlife Pierre recalled this period of blissful insanity. +All the views he formed of men and circumstances at this time remained +true for him always. He not only did not renounce them subsequently, +but when he was in doubt or inwardly at variance, he referred to the +views he had held at this time of his madness and they always proved +correct. + +"I may have appeared strange and queer then," he thought, "but I was +not so mad as I seemed. On the contrary I was then wiser and had +more insight than at any other time, and understood all that is +worth understanding in life, because... because I was happy." + +Pierre's insanity consisted in not waiting, as he used to do, to +discover personal attributes which he termed "good qualities" in +people before loving them; his heart was now overflowing with love, +and by loving people without cause he discovered indubitable causes +for loving them. + + + + + +CHAPTER XX + + +After Pierre's departure that first evening, when Natasha had said +to Princess Mary with a gaily mocking smile: "He looks just, yes, just +as if he had come out of a Russian bath--in a short coat and with +his hair cropped," something hidden and unknown to herself, but +irrepressible, awoke in Natasha's soul. + +Everything: her face, walk, look, and voice, was suddenly altered. +To her own surprise a power of life and hope of happiness rose to +the surface and demanded satisfaction. From that evening she seemed to +have forgotten all that had happened to her. She no longer +complained of her position, did not say a word about the past, and +no longer feared to make happy plans for the future. She spoke +little of Pierre, but when Princess Mary mentioned him a +long-extinguished light once more kindled in her eyes and her lips +curved with a strange smile. + +The change that took place in Natasha at first surprised Princess +Mary; but when she understood its meaning it grieved her. "Can she +have loved my brother so little as to be able to forget him so +soon?" she thought when she reflected on the change. But when she +was with Natasha she was not vexed with her and did not reproach +her. The reawakened power of life that had seized Natasha was so +evidently irrepressible and unexpected by her that in her presence +Princess Mary felt that she had no right to reproach her even in her +heart. + + Natasha gave herself up so fully and frankly to this new feeling +that she did not try to hide the fact that she was no longer sad, +but bright and cheerful. + +When Princess Mary returned to her room after her nocturnal talk +with Pierre, Natasha met her on the threshold. + +"He has spoken? Yes? He has spoken?" she repeated. + +And a joyful yet pathetic expression which seemed to beg forgiveness +for her joy settled on Natasha's face. + +"I wanted to listen at the door, but I knew you would tell me." + +Understandable and touching as the look with which Natasha gazed +at her seemed to Princess Mary, and sorry as she was to see her +agitation, these words pained her for a moment. She remembered her +brother and his love. + +"But what's to be done? She can't help it," thought the princess. + +And with a sad and rather stern look she told Natasha all that +Pierre had said. On hearing that he was going to Petersburg Natasha +was astounded. + +"To Petersburg!" she repeated as if unable to understand. + +But noticing the grieved expression on Princess Mary's face she +guessed the reason of that sadness and suddenly began to cry. + +"Mary," said she, "tell me what I should do! I am afraid of being +bad. Whatever you tell me, I will do. Tell me...." + +"You love him?" + +"Yes," whispered Natasha. + +"Then why are you crying? I am happy for your sake," said Princess +Mary, who because of those tears quite forgave Natasha's joy. + +"It won't be just yet--someday. Think what fun it will be when I +am his wife and you marry Nicholas!" + +"Natasha, I have asked you not to speak of that. Let us talk about +you." + +They were silent awhile. + +"But why go to Petersburg?" Natasha suddenly asked, and hastily +replied to her own question. "But no, no, he must... Yes, Mary, He +must...." + + + + + + +FIRST EPILOGUE: 1813 --20 + + + + + +CHAPTER I + + +Seven years had passed. The storm-tossed sea of European history had +subsided within its shores and seemed to have become calm. But the +mysterious forces that move humanity (mysterious because the laws of +their motion are unknown to us) continued to operate. + +Though the surface of the sea of history seemed motionless, the +movement of humanity went on as unceasingly as the flow of time. +Various groups of people formed and dissolved, the coming formation +and dissolution of kingdoms and displacement of peoples was in +course of preparation. + +The sea of history was not driven spasmodically from shore to +shore as previously. It was seething in its depths. Historic figures +were not borne by the waves from one shore to another as before. +They now seemed to rotate on one spot. The historical figures at the +head of armies, who formerly reflected the movement of the masses by +ordering wars, campaigns, and battles, now reflected the restless +movement by political and diplomatic combinations, laws, and treaties. + +The historians call this activity of the historical figures "the +reaction." + +In dealing with this period they sternly condemn the historical +personages who, in their opinion, caused what they describe as the +reaction. All the well-known people of that period, from Alexander and +Napoleon to Madame de Stael, Photius, Schelling, Fichte, +Chateaubriand, and the rest, pass before their stern judgment seat and +are acquitted or condemned according to whether they conduced to +progress or to reaction. + +According to their accounts a reaction took place at that time in +Russia also, and the chief culprit was Alexander I, the same man who +according to them was the chief cause of the liberal movement at the +commencement of his reign, being the savior of Russia. + +There is no one in Russian literature now, from schoolboy essayist +to learned historian, who does not throw his little stone at Alexander +for things he did wrong at this period of his reign. + +"He ought to have acted in this way and in that way. In this case he +did well and in that case badly. He behaved admirably at the beginning +of his reign and during 1812, but acted badly by giving a constitution +to Poland, forming the Holy Alliance, entrusting power to Arakcheev, +favoring Golitsyn and mysticism, and afterwards Shishkov and +Photius. He also acted badly by concerning himself with the active +army and disbanding the Semenov regiment." + +It would take a dozen pages to enumerate all the reproaches the +historians address to him, based on their knowledge of what is good +for humanity. + +What do these reproaches mean? + +Do not the very actions for which the historians praise Alexander +I (the liberal attempts at the beginning of his reign, his struggle +with Napoleon, the firmness he displayed in 1812 and the campaign of +1813) flow from the same sources--the circumstances of his birth, +education, and life--that made his personality what it was and from +which the actions for which they blame him (the Holy Alliance, the +restoration of Poland, and the reaction of 1820 and later) also +flowed? + +In what does the substance of those reproaches lie? + +It lies in the fact that an historic character like Alexander I, +standing on the highest possible pinnacle of human power with the +blinding light of history focused upon him; a character exposed to +those strongest of all influences: the intrigues, flattery, and +self-deception inseparable from power; a character who at every moment +of his life felt a responsibility for all that was happening in +Europe; and not a fictitious but a live character who like every man +had his personal habits, passions, and impulses toward goodness, +beauty, and truth--that this character--though not lacking in virtue +(the historians do not accuse him of that)--had not the same +conception of the welfare of humanity fifty years ago as a present-day +professor who from his youth upwards has been occupied with +learning: that is, with books and lectures and with taking notes +from them. + +But even if we assume that fifty years ago Alexander I was +mistaken in his view of what was good for the people, we must +inevitably assume that the historian who judges Alexander will also +after the lapse of some time turn out to be mistaken in his view of +what is good for humanity. This assumption is all the more natural and +inevitable because, watching the movement of history, we see that +every year and with each new writer, opinion as to what is good for +mankind changes; so that what once seemed good, ten years later +seems bad, and vice versa. And what is more, we find at one and the +same time quite contradictory views as to what is bad and what is good +in history: some people regard giving a constitution to Poland and +forming the Holy Alliance as praiseworthy in Alexander, while others +regard it as blameworthy. + +The activity of Alexander or of Napoleon cannot be called useful +or harmful, for it is impossible to say for what it was useful or +harmful. If that activity displeases somebody, this is only because it +does not agree with his limited understanding of what is good. Whether +the preservation of my father's house in Moscow, or the glory of the +Russian arms, or the prosperity of the Petersburg and other +universities, or the freedom of Poland or the greatness of Russia, +or the balance of power in Europe, or a certain kind of European +culture called "progress" appear to me to be good or bad, I must admit +that besides these things the action of every historic character has +other more general purposes inaccessible to me. + +But let us assume that what is called science can harmonize all +contradictions and possesses an unchanging standard of good and bad by +which to try historic characters and events; let us say that Alexander +could have done everything differently; let us say that with +guidance from those who blame him and who profess to know the ultimate +aim of the movement of humanity, he might have arranged matters +according to the program his present accusers would have given him--of +nationality, freedom, equality, and progress (these, I think, cover +the ground). Let us assume that this program was possible and had then +been formulated, and that Alexander had acted on it. What would then +have become of the activity of all those who opposed the tendency that +then prevailed in the government--an activity that in the opinion of +the historians was good and beneficent? Their activity would not +have existed: there would have been no life, there would have been +nothing. + +If we admit that human life can be ruled by reason, the +possibility of life is destroyed. + + + + + +CHAPTER II + + +If we assume as the historians do that great men lead humanity to +the attainment of certain ends--the greatness of Russia or of +France, the balance of power in Europe, the diffusion of the ideas +of the Revolution general progress or anything else--then it is +impossible to explain the facts of history without introducing the +conceptions of chance and genius. + +If the aim of the European wars at the beginning of the nineteenth +century had been the aggrandizement of Russia, that aim might have +been accomplished without all the preceding wars and without the +invasion. If the aim was the aggrandizement of France, that might have +been attained without the Revolution and without the Empire. If the +aim was the dissemination of ideas, the printing press could have +accomplished that much better than warfare. If the aim was the +progress of civilization, it is easy to see that there are other +ways of diffusing civilization more expedient than by the +destruction of wealth and of human lives. + +Why did it happen in this and not in some other way? + +Because it happened so! "Chance created the situation; genius +utilized it," says history. + +But what is chance? What is genius? + +The words chance and genius do not denote any really existing +thing and therefore cannot be defined. Those words only denote a +certain stage of understanding of phenomena. I do not know why a +certain event occurs; I think that I cannot know it; so I do not try +to know it and I talk about chance. I see a force producing effects +beyond the scope of ordinary human agencies; I do not understand why +this occurs and I talk of genius. + +To a herd of rams, the ram the herdsman drives each evening into a +special enclosure to feed and that becomes twice as fat as the +others must seem to be a genius. And it must appear an astonishing +conjunction of genius with a whole series of extraordinary chances +that this ram, who instead of getting into the general fold every +evening goes into a special enclosure where there are oats--that +this very ram, swelling with fat, is killed for meat. + +But the rams need only cease to suppose that all that happens to +them happens solely for the attainment of their sheepish aims; they +need only admit that what happens to them may also have purposes +beyond their ken, and they will at once perceive a unity and coherence +in what happened to the ram that was fattened. Even if they do not +know for what purpose they are fattened, they will at least know +that all that happened to the ram did not happen accidentally, and +will no longer need the conceptions of chance or genius. + +Only by renouncing our claim to discern a purpose immediately +intelligible to us, and admitting the ultimate purpose to be beyond +our ken, may we discern the sequence of experiences in the lives of +historic characters and perceive the cause of the effect they +produce (incommensurable with ordinary human capabilities), and then +the words chance and genius become superfluous. + +We need only confess that we do not know the purpose of the European +convulsions and that we know only the facts--that is, the murders, +first in France, then in Italy, in Africa, in Prussia, in Austria, +in Spain, and in Russia--and that the movements from the west to the +east and from the east to the west form the essence and purpose of +these events, and not only shall we have no need to see exceptional +ability and genius in Napoleon and Alexander, but we shall be unable +to consider them to be anything but like other men, and we shall not +be obliged to have recourse to chance for an explanation of those +small events which made these people what they were, but it will be +clear that all those small events were inevitable. + +By discarding a claim to knowledge of the ultimate purpose, we shall +clearly perceive that just as one cannot imagine a blossom or seed for +any single plant better suited to it than those it produces, so it +is impossible to imagine any two people more completely adapted down +to the smallest detail for the purpose they had to fulfill, than +Napoleon and Alexander with all their antecedents. + + + + + +CHAPTER III + + +The fundamental and essential significance of the European events of +the beginning of the nineteenth century lies in the movement of the +mass of the European peoples from west to east and afterwards from +east to west. The commencement of that movement was the movement +from west to east. For the peoples of the west to be able to make +their warlike movement to Moscow it was necessary: (1) that they +should form themselves into a military group of a size able to +endure a collision with the warlike military group of the east, (2) +that they should abandon all established traditions and customs, and +(3) that during their military movement they should have at their head +a man who could justify to himself and to them the deceptions, +robberies, and murders which would have to be committed during that +movement. + +And beginning with the French Revolution the old inadequately +large group was destroyed, as well as the old habits and traditions, +and step by step a group was formed of larger dimensions with new +customs and traditions, and a man was produced who would stand at +the head of the coming movement and bear the responsibility for all +that had to be done. + +A man without convictions, without habits, without traditions, +without a name, and not even a Frenchman, emerges--by what seem the +strangest chances--from among all the seething French parties, and +without joining any one of them is borne forward to a prominent +position. + +The ignorance of his colleagues, the weakness and insignificance +of his opponents, the frankness of his falsehoods, and the dazzling +and self-confident limitations of this man raise him to the head of +the army. The brilliant qualities of the soldiers of the army sent +to Italy, his opponents' reluctance to fight, and his own childish +audacity and self-confidence secure him military fame. Innumerable +so called chances accompany him everywhere. The disfavor into which he +falls with the rulers of France turns to his advantage. His attempts +to avoid his predestined path are unsuccessful: he is not received +into the Russian service, and the appointment he seeks in Turkey comes +to nothing. During the war in Italy he is several times on the verge +of destruction and each time is saved in an unexpected manner. Owing +to various diplomatic considerations the Russian armies--just those +which might have destroyed his prestige--do not appear upon the +scene till he is no longer there. + +On his return from Italy he finds the government in Paris in a +process of dissolution in which all those who are in it are inevitably +wiped out and destroyed. And by chance an escape from this dangerous +position presents itself in the form of an aimless and senseless +expedition to Africa. Again so-called chance accompanies him. +Impregnable Malta surrenders without a shot; his most reckless schemes +are crowned with success. The enemy's fleet, which subsequently did +not let a single boat pass, allows his entire army to elude it. In +Africa a whole series of outrages are committed against the almost +unarmed inhabitants. And the men who commit these crimes, especially +their leader, assure themselves that this is admirable, this is glory- +it resembles Caesar and Alexander the Great and is therefore good. + +This ideal of glory and grandeur--which consists not merely in +considering nothing wrong that one does but in priding oneself on +every crime one commits, ascribing to it an incomprehensible +supernatural significance--that ideal, destined to guide this man +and his associates, had scope for its development in Africa. +Whatever he does succeeds. The plague does not touch him. The +cruelty of murdering prisoners is not imputed to him as a fault. His +childishly rash, uncalled-for, and ignoble departure from Africa, +leaving his comrades in distress, is set down to his credit, and again +the enemy's fleet twice lets him slip past. When, intoxicated by the +crimes he has committed so successfully, he reaches Paris, the +dissolution of the republican government, which a year earlier might +have ruined him, has reached its extreme limit, and his presence there +now as a newcomer free from party entanglements can only serve to +exalt him--and though he himself has no plan, he is quite ready for +his new role. + +He had no plan, he was afraid of everything, but the parties +snatched at him and demanded his participation. + +He alone--with his ideal of glory and grandeur developed in Italy +and Egypt, his insane self-adulation, his boldness in crime and +frankness in lying--he alone could justify what had to be done. + +He is needed for the place that awaits him, and so almost apart from +his will and despite his indecision, his lack of a plan, and all his +mistakes, he is drawn into a conspiracy that aims at seizing power and +the conspiracy is crowned with success. + +He is pushed into a meeting of the legislature. In alarm he wishes +to flee, considering himself lost. He pretends to fall into a swoon +and says senseless things that should have ruined him. But the once +proud and shrewd rulers of France, feeling that their part is played +out, are even more bewildered than he, and do not say the words they +should have said to destroy him and retain their power. + +Chance, millions of chances, give him power, and all men as if by +agreement co-operate to confirm that power. Chance forms the +characters of the rulers of France, who submit to him; chance forms +the character of Paul I of Russia who recognizes his government; +chance contrives a plot against him which not only fails to harm him +but confirms his power. Chance puts the Duc d'Enghien in his hands and +unexpectedly causes him to kill him--thereby convincing the mob more +forcibly than in any other way that he had the right, since he had the +might. Chance contrives that though he directs all his efforts to +prepare an expedition against England (which would inevitably have +ruined him) he never carries out that intention, but unexpectedly +falls upon Mack and the Austrians, who surrender without a battle. +Chance and genius give him the victory at Austerlitz; and by chance +all men, not only the French but all Europe--except England which does +not take part in the events about to happen--despite their former +horror and detestation of his crimes, now recognize his authority, the +title he has given himself, and his ideal of grandeur and glory, which +seems excellent and reasonable to them all. + +As if measuring themselves and preparing for the coming movement, +the western forces push toward the east several times in 1805, 1806, +1807, and 1809, gaining strength and growing. In 1811 the group of +people that had formed in France unites into one group with the +peoples of Central Europe. The strength of the justification of the +man who stands at the head of the movement grows with the increased +size of the group. During the ten-year preparatory period this man had +formed relations with all the crowned heads of Europe. The discredited +rulers of the world can oppose no reasonable ideal to the insensate +Napoleonic ideal of glory and grandeur. One after another they +hasten to display their insignificance before him. The King of Prussia +sends his wife to seek the great man's mercy; the Emperor of Austria +considers it a favor that this man receives a daughter the Caesars +into his bed; the Pope, the guardian of all that the nations hold +sacred, utilizes religion for the aggrandizement of the great man. +It is not Napoleon who prepares himself for the accomplishment of +his role, so much as all those round him who prepare him to take on +himself the whole responsibility for what is happening and has to +happen. There is no step, no crime or petty fraud he commits, which in +the mouths of those around him is not at once represented as a great +deed. The most suitable fete the Germans can devise for him is a +celebration of Jena and Auerstadt. Not only is he great, but so are +his ancestors, his brothers, his stepsons, and his brothers-in-law. +Everything is done to deprive him of the remains of his reason and +to prepare him for his terrible part. And when he is ready so too +are the forces. + +The invasion pushes eastward and reaches its final goal--Moscow. +That city is taken; the Russian army suffers heavier losses than the +opposing armies had suffered in the former war from Austerlitz to +Wagram. But suddenly instead of those chances and that genius which +hitherto had so consistently led him by an uninterrupted series of +successes to the predestined goal, an innumerable sequence of +inverse chances occur--from the cold in his head at Borodino to the +sparks which set Moscow on fire, and the frosts--and instead of +genius, stupidity and immeasurable baseness become evident. + +The invaders flee, turn back, flee again, and all the chances are +now not for Napoleon but always against him. + +A countermovement is then accomplished from east to west with a +remarkable resemblance to the preceding movement from west to east. +Attempted drives from east to west--similar to the contrary +movements of 1805, 1807, and 1809--precede the great westward +movement; there is the same coalescence into a group of enormous +dimensions; the same adhesion of the people of Central Europe to the +movement; the same hesitation midway, and the same increasing rapidity +as the goal is approached. + +Paris, the ultimate goal, is reached. The Napoleonic government +and army are destroyed. Napoleon himself is no longer of any +account; all his actions are evidently pitiful and mean, but again +an inexplicable chance occurs. The allies detest Napoleon whom they +regard as the cause of their sufferings. Deprived of power and +authority, his crimes and his craft exposed, he should have appeared +to them what he appeared ten years previously and one year later--an +outlawed brigand. But by some strange chance no one perceives this. +His part is not yet ended. The man who ten years before and a year +later was considered an outlawed brigand is sent to an island two +days' sail from France, which for some reason is presented to him as +his dominion, and guards are given to him and millions of money are +paid him. + + + + + +CHAPTER IV + + +The flood of nations begins to subside into its normal channels. The +waves of the great movement abate, and on the calm surface eddies +are formed in which float the diplomatists, who imagine that they have +caused the floods to abate. + +But the smooth sea again suddenly becomes disturbed. The +diplomatists think that their disagreements are the cause of this +fresh pressure of natural forces; they anticipate war between their +sovereigns; the position seems to them insoluble. But the wave they +feel to be rising does not come from the quarter they expect. It rises +again from the same point as before--Paris. The last backwash of the +movement from the west occurs: a backwash which serves to solve the +apparently insuperable diplomatic difficulties and ends the military +movement of that period of history. + +The man who had devastated France returns to France alone, without +any conspiracy and without soldiers. Any guard might arrest him, but +by strange chance no one does so and all rapturously greet the man +they cursed the day before and will curse again a month later. + +This man is still needed to justify the final collective act. + +That act is performed. + +The last role is played. The actor is bidden to disrobe and wash off +his powder and paint: he will not be wanted any more. + +And some years pass during which he plays a pitiful comedy to +himself in solitude on his island, justifying his actions by intrigues +and lies when the justification is no longer needed, and displaying to +the whole world what it was that people had mistaken for strength as +long as an unseen hand directed his actions. + +The manager having brought the drama to a close and stripped the +actor shows him to us. + +"See what you believed in! This is he! Do you now see that it was +not he but I who moved you?" + +But dazed by the force of the movement, it was long before people +understood this. + +Still greater coherence and inevitability is seen in the life of +Alexander I, the man who stood at the head of the countermovement from +east to west. + +What was needed for him who, overshadowing others, stood at the head +of that movement from east to west? + +What was needed was a sense of justice and a sympathy with +European affairs, but a remote sympathy not dulled by petty interests; +a moral superiority over those sovereigns of the day who co-operated +with him; a mild and attractive personality; and a personal +grievance against Napoleon. And all this was found in Alexander I; all +this had been prepared by innumerable so-called chances in his life: +his education, his early liberalism, the advisers who surrounded +him, and by Austerlitz, and Tilsit, and Erfurt. + +During the national war he was inactive because he was not needed. +But as soon as the necessity for a general European war presented +itself he appeared in his place at the given moment and, uniting the +nations of Europe, led them to the goal. + +The goal is reached. After the final war of 1815 Alexander possesses +all possible power. How does he use it? + +Alexander I--the pacifier of Europe, the man who from his early +years had striven only for his people's welfare, the originator of the +liberal innovations in his fatherland--now that he seemed to possess +the utmost power and therefore to have the possibility of bringing +about the welfare of his peoples--at the time when Napoleon in exile +was drawing up childish and mendacious plans of how he would have made +mankind happy had he retained power--Alexander I, having fulfilled his +mission and feeling the hand of God upon him, suddenly recognizes +the insignificance of that supposed power, turns away from it, and +gives it into the hands of contemptible men whom he despises, saying +only: + +"Not unto us, not unto us, but unto Thy Name!... I too am a man like +the rest of you. Let me live like a man and think of my soul and of +God." + +As the sun and each atom of ether is a sphere complete in itself, +and yet at the same time only a part of a whole too immense for man to +comprehend, so each individual has within himself his own aims and yet +has them to serve a general purpose incomprehensible to man. + +A bee settling on a flower has stung a child. And the child is +afraid of bees and declares that bees exist to sting people. A poet +admires the bee sucking from the chalice of a flower and says it +exists to suck the fragrance of flowers. A beekeeper, seeing the bee +collect pollen from flowers and carry it to the hive, says that it +exists to gather honey. Another beekeeper who has studied the life +of the hive more closely says that the bee gathers pollen dust to feed +the young bees and rear a queen, and that it exists to perpetuate +its race. A botanist notices that the bee flying with the pollen of +a male flower to a pistil fertilizes the latter, and sees in this +the purpose of the bee's existence. Another, observing the migration +of plants, notices that the bee helps in this work, and may say that +in this lies the purpose of the bee. But the ultimate purpose of the +bee is not exhausted by the first, the second, or any of the processes +the human mind can discern. The higher the human intellect rises in +the discovery of these purposes, the more obvious it becomes, that the +ultimate purpose is beyond our comprehension. + +All that is accessible to man is the relation of the life of the bee +to other manifestations of life. And so it is with the purpose of +historic characters and nations. + + + + + +CHAPTER V + + +Natasha's wedding to Bezukhov, which took place in 1813, was the +last happy event in the family of the old Rostovs. Count Ilya Rostov +died that same year and, as always happens, after the father's death +the family group broke up. + +The events of the previous year: the burning of Moscow and the +flight from it, the death of Prince Andrew, Natasha's despair, Petya's +death, and the old countess' grief fell blow after blow on the old +count's head. He seemed to be unable to understand the meaning of +all these events, and bowed his old head in a spiritual sense as if +expecting and inviting further blows which would finish him. He seemed +now frightened and distraught and now unnaturally animated and +enterprising. + +The arrangements for Natasha's marriage occupied him for a while. He +ordered dinners and suppers and obviously tried to appear cheerful, +but his cheerfulness was not infectious as it used to be: on the +contrary it evoked the compassion of those who knew and liked him. + +When Pierre and his wife had left, he grew very quiet and began to +complain of depression. A few days later he fell ill and took to his +bed. He realized from the first that he would not get up again, +despite the doctor's encouragement. The countess passed a fortnight in +an armchair by his pillow without undressing. Every time she gave +him his medicine he sobbed and silently kissed her hand. On his last +day, sobbing, he asked her and his absent son to forgive him for +having dissipated their property--that being the chief fault of +which he was conscious. After receiving communion and unction he +quietly died; and next day a throng of acquaintances who came to pay +their last respects to the deceased filled the house rented by the +Rostovs. All these acquaintances, who had so often dined and danced at +his house and had so often laughed at him, now said, with a common +feeling of self-reproach and emotion, as if justifying themselves: +"Well, whatever he may have been he was a most worthy man. You don't +meet such men nowadays.... And which of us has not weaknesses of his +own?" + +It was just when the count's affairs had become so involved that +it was impossible to say what would happen if he lived another year +that he unexpectedly died. + +Nicholas was with the Russian army in Paris when the news of his +father's death reached him. He at once resigned his commission, and +without waiting for it to be accepted took leave of absence and went +to Moscow. The state of the count's affairs became quite obvious a +month after his death, surprising everyone by the immense total of +small debts the existence of which no one had suspected. The debts +amounted to double the value of the property. + +Friends and relations advised Nicholas to decline the inheritance. +But he regarded such a refusal as a slur on his father's memory, which +he held sacred, and therefore would not hear of refusing and +accepted the inheritance together with the obligation to pay the +debts. + +The creditors who had so long been silent, restrained by a vague but +powerful influence exerted on them while he lived by the count's +careless good nature, all proceeded to enforce their claims at once. +As always happens in such cases rivalry sprang up as to which should +get paid first, and those who like Mitenka held promissory notes given +them as presents now became the most exacting of the creditors. +Nicholas was allowed no respite and no peace, and those who had seemed +to pity the old man--the cause of their losses (if they were +losses)--now remorselessly pursued the young heir who had +voluntarily undertaken the debts and was obviously not guilty of +contracting them. + +Not one of the plans Nicholas tried succeeded; the estate was sold +by auction for half its value, and half the debts still remained +unpaid. Nicholas accepted thirty thousand rubles offered him by his +brother-in-law Bezukhov to pay off debts he regarded as genuinely +due for value received. And to avoid being imprisoned for the +remainder, as the creditors threatened, he re-entered the government +service. + +He could not rejoin the army where he would have been made colonel +at the next vacancy, for his mother now clung to him as her one hold +on life; and so despite his reluctance to remain in Moscow among people +who had known him before, and despite his abhorrence of the civil +service, he accepted a post in Moscow in that service, doffed the +uniform of which he was so fond, and moved with his mother and Sonya +to a small house on the Sivtsev Vrazhek. + +Natasha and Pierre were living in Petersburg at the time and had +no clear idea of Nicholas' circumstances. Having borrowed money from +his brother-in-law, Nicholas tried to hide his wretched condition from +him. His position was the more difficult because with his salary of +twelve hundred rubles he had not only to keep himself, his mother, and +Sonya, but had to shield his mother from knowledge of their poverty. +The countess could not conceive of life without the luxurious +conditions she had been used to from childhood and, unable to +realize how hard it was for her son, kept demanding now a carriage +(which they did not keep) to send for a friend, now some expensive +article of food for herself, or wine for her son, or money to buy a +present as a surprise for Natasha or Sonya, or for Nicholas himself. + +Sonya kept house, attended on her aunt, read to her, put up with her +whims and secret ill-will, and helped Nicholas to conceal their +poverty from the old countess. Nicholas felt himself irredeemably +indebted to Sonya for all she was doing for his mother and greatly +admired her patience and devotion, but tried to keep aloof from her. + +He seemed in his heart to reproach her for being too perfect, and +because there was nothing to reproach her with. She had all that +people are valued for, but little that could have made him love her. +He felt that the more he valued her the less he loved her. He had +taken her at her word when she wrote giving him his freedom and now +behaved as if all that had passed between them had been long forgotten +and could never in any case be renewed. + +Nicholas' position became worse and worse. The idea of putting +something aside out of his salary proved a dream. Not only did he +not save anything, but to comply with his mother's demands he even +incurred some small debts. He could see no way out of this +situation. The idea of marrying some rich woman, which was suggested +to him by his female relations, was repugnant to him. The other way +out--his mother's death--never entered his head. He wished for nothing +and hoped for nothing, and deep in his heart experienced a gloomy +and stern satisfaction in an uncomplaining endurance of his +position. He tried to avoid his old acquaintances with their +commiseration and offensive offers of assistance; he avoided all +distraction and recreation, and even at home did nothing but play +cards with his mother, pace silently up and down the room, and smoke +one pipe after another. He seemed carefully to cherish within +himself the gloomy mood which alone enabled him to endure his +position. + + + + + +CHAPTER VI + + +At the beginning of winter Princess Mary came to Moscow. From +reports current in town she learned how the Rostovs were situated, and +how "the son has sacrificed himself for his mother," as people were +saying. + +"I never expected anything else of him," said Princess Mary to +herself, feeling a joyous sense of her love for him. Remembering her +friendly relations with all the Rostovs which had made her almost a +member of the family, she thought it her duty to go to see them. But +remembering her relations with Nicholas in Voronezh she was shy +about doing so. Making a great effort she did however go to call on +them a few weeks after her arrival in Moscow. + +Nicholas was the first to meet her, as the countess' room could only +be reached through his. But instead of being greeted with pleasure +as she had expected, at his first glance at her his face assumed a +cold, stiff, proud expression she had not seen on it before. He +inquired about her health, led the way to his mother, and having sat +there for five minutes left the room. + +When the princess came out of the countess' room Nicholas met her +again, and with marked solemnity and stiffness accompanied her to +the anteroom. To her remarks about his mother's health he made no +reply. "What's that to you? Leave me in peace," his looks seemed to +say. + +"Why does she come prowling here? What does she want? I can't bear +these ladies and all these civilities!" said he aloud in Sonya's +presence, evidently unable to repress his vexation, after the +princess' carriage had disappeared. + +"Oh, Nicholas, how can you talk like that?" cried Sonya, hardly able +to conceal her delight. "She is so kind and Mamma is so fond of her!" + +Nicholas did not reply and tried to avoid speaking of the princess +any more. But after her visit the old countess spoke of her several +times a day. + +She sang her praises, insisted that her son must call on her, +expressed a wish to see her often, but yet always became ill-humored +when she began to talk about her. + +Nicholas tried to keep silence when his mother spoke of the +princess, but his silence irritated her. + +"She is a very admirable and excellent young woman," said she, +"and you must go and call on her. You would at least be seeing +somebody, and I think it must be dull for you only seeing us." + +"But I don't in the least want to, Mamma." + +"You used to want to, and now you don't. Really I don't understand +you, my dear. One day you are dull, and the next you refuse to see +anyone." + +"But I never said I was dull." + +"Why, you said yourself you don't want even to see her. She is a +very admirable young woman and you always liked her, but now +suddenly you have got some notion or other in your head. You hide +everything from me." + +"Not at all, Mamma." + +"If I were asking you to do something disagreeable now--but I only +ask you to return a call. One would think mere politeness required +it.... Well, I have asked you, and now I won't interfere any more +since you have secrets from your mother." + +"Well, then, I'll go if you wish it." + +"It doesn't matter to me. I only wish it for your sake." + +Nicholas sighed, bit his mustache, and laid out the cards for a +patience, trying to divert his mother's attention to another topic. + +The same conversation was repeated next day and the day after, and +the day after that. + +After her visit to the Rostovs and her unexpectedly chilly reception +by Nicholas, Princess Mary confessed to herself that she had been +right in not wishing to be the first to call. + +"I expected nothing else," she told herself, calling her pride to +her aid. "I have nothing to do with him and I only wanted to see the +old lady, who was always kind to me and to whom I am under many +obligations." + +But she could not pacify herself with these reflections; a feeling +akin to remorse troubled her when she thought of her visit. Though she +had firmly resolved not to call on the Rostovs again and to forget the +whole matter, she felt herself all the time in an awkward position. +And when she asked herself what distressed her, she had to admit +that it was her relation to Rostov. His cold, polite manner did not +express his feeling for her (she knew that) but it concealed +something, and until she could discover what that something was, she +felt that she could not be at ease. + +One day in midwinter when sitting in the schoolroom attending to her +nephew's lessons, she was informed that Rostov had called. With a firm +resolution not to betray herself and not show her agitation, she +sent for Mademoiselle Bourienne and went with her to the drawing room. + +Her first glance at Nicholas' face told her that he had only come to +fulfill the demands of politeness, and she firmly resolved to maintain +the tone in which he addressed her. + +They spoke of the countess' health, of their mutual friends, of +the latest war news, and when the ten minutes required by propriety +had elapsed after which a visitor may rise, Nicholas got up to say +good-by. + +With Mademoiselle Bourienne's help the princess had maintained the +conversation very well, but at the very last moment, just when he +rose, she was so tired of talking of what did not interest her, and +her mind was so full of the question why she alone was granted so +little happiness in life, that in a fit of absent-mindedness she sat +still, her luminous eyes gazing fixedly before her, not noticing +that he had risen. + +Nicholas glanced at her and, wishing to appear not to notice her +abstraction, made some remark to Mademoiselle Bourienne and then again +looked at the princess. She still sat motionless with a look of +suffering on her gentle face. He suddenly felt sorry for her and was +vaguely conscious that he might be the cause of the sadness her face +expressed. He wished to help her and say something pleasant, but could +think of nothing to say. + +"Good-by, Princess!" said he. + +She started, flushed, and sighed deeply. + +"Oh, I beg your pardon," she said as if waking up. "Are you going +already, Count? Well then, good-by! Oh, but the cushion for the +countess!" + +"Wait a moment, I'll fetch it," said Mademoiselle Bourienne, and she +left the room. + +They both sat silent, with an occasional glance at one another. + +"Yes, Princess," said Nicholas at last with a sad smile, "it doesn't +seem long ago since we first met at Bogucharovo, but how much water +has flowed since then! In what distress we all seemed to be then, +yet I would give much to bring back that time... but there's no +bringing it back." + +Princess Mary gazed intently into his eyes with her own luminous +ones as he said this. She seemed to be trying to fathom the hidden +meaning of his words which would explain his feeling for her. + +"Yes, yes," said she, "but you have no reason to regret the past, +Count. As I understand your present life, I think you will always +recall it with satisfaction, because the self-sacrifice that fills +it now..." + +"I cannot accept your praise," he interrupted her hurriedly. "On the +contrary I continually reproach myself.... But this is not at all an +interesting or cheerful subject." + +His face again resumed its former stiff and cold expression. But the +princess had caught a glimpse of the man she had known and loved, +and it was to him that she now spoke. + +"I thought you would allow me to tell you this," she said. "I had +come so near to you... and to all your family that I thought you would +not consider my sympathy misplaced, but I was mistaken," and +suddenly her voice trembled. "I don't know why," she continued, +recovering herself, "but you used to be different, and..." + +"There are a thousand reasons why," laying special emphasis on the +why. "Thank you, Princess," he added softly. "Sometimes it is hard." + +"So that's why! That's why!" a voice whispered in Princess Mary's +soul. "No, it was not only that gay, kind, and frank look, not only +that handsome exterior, that I loved in him. I divined his noble, +resolute, self-sacrificing spirit too," she said to herself. "Yes, +he is poor now and I am rich.... Yes, that's the only reason.... +Yes, were it not for that..." And remembering his former tenderness, +and looking now at his kind, sorrowful face, she suddenly understood +the cause of his coldness. + +"But why, Count, why?" she almost cried, unconsciously moving closer +to him. "Why? Tell me. You must tell me!" + +He was silent. + +"I don't understand your why, Count," she continued, "but it's +hard for me... I confess it. For some reason you wish to deprive me of +our former friendship. And that hurts me." There were tears in her +eyes and in her voice. "I have had so little happiness in life that +every loss is hard for me to bear.... Excuse me, good-by!" and +suddenly she began to cry and was hurrying from the room. + +"Princess, for God's sake!" he exclaimed, trying to stop her. +"Princess!" + +She turned round. For a few seconds they gazed silently into one +another's eyes--and what had seemed impossible and remote suddenly +became possible, inevitable, and very near. + + + + + +CHAPTER VII + + +In the winter of 1813 Nicholas married Princess Mary and moved to +Bald Hills with his wife, his mother, and Sonya. + +Within four years he had paid off all his remaining debts without +selling any of his wife's property, and having received a small +inheritance on the death of a cousin he paid his debt to Pierre as +well. + +In another three years, by 1820, he had so managed his affairs +that he was able to buy a small estate adjoining Bald Hills and was +negotiating to buy back Otradnoe--that being his pet dream. + +Having started farming from necessity, he soon grew so devoted to it +that it became his favorite and almost his sole occupation. Nicholas +was a plain farmer: he did not like innovations, especially the +English ones then coming into vogue. He laughed at theoretical +treatises on estate management, disliked factories, the raising of +expensive products, and the buying of expensive seed corn, and did not +make a hobby of any particular part of the work on his estate. He +always had before his mind's eye the estate as a whole and not any +particular part of it. The chief thing in his eyes was not the +nitrogen in the soil, nor the oxygen in the air, nor manures, nor +special plows, but that most important agent by which nitrogen, +oxygen, manure, and plow were made effective--the peasant laborer. +When Nicholas first began farming and began to understand its +different branches, it was the serf who especially attracted his +attention. The peasant seemed to him not merely a tool, but also a +judge of farming and an end in himself. At first he watched the serfs, +trying to understand their aims and what they considered good and bad, +and only pretended to direct them and give orders while in reality +learning from them their methods, their manner of speech, and their +judgment of what was good and bad. Only when he had understood the +peasants' tastes and aspirations, had learned to talk their +language, to grasp the hidden meaning of their words, and felt akin to +them did he begin boldly to manage his serfs, that is, to perform +toward them the duties demanded of him. And Nicholas' management +produced very brilliant results. + +Guided by some gift of insight, on taking up the management of the +estates he at once unerringly appointed as bailiff, village elder, and +delegate, the very men the serfs would themselves have chosen had they +had the right to choose, and these posts never changed hands. Before +analyzing the properties of manure, before entering into the debit and +credit (as he ironically called it), he found out how many cattle +the peasants had and increased the number by all possible means. He +kept the peasant families together in the largest groups possible, not +allowing the family groups to divide into separate households. He +was hard alike on the lazy, the depraved, and the weak, and tried to +get them expelled from the commune. + +He was as careful of the sowing and reaping of the peasants' hay and +corn as of his own, and few landowners had their crops sown and +harvested so early and so well, or got so good a return, as did +Nicholas. + +He disliked having anything to do with the domestic serfs--the +"drones" as he called them--and everyone said he spoiled them by his +laxity. When a decision had to be taken regarding a domestic serf, +especially if one had to be punished, he always felt undecided and +consulted everybody in the house; but when it was possible to have a +domestic serf conscripted instead of a land worker he did so without +the least hesitation. He never felt any hesitation in dealing with the +peasants. He knew that his every decision would be approved by them +all with very few exceptions. + +He did not allow himself either to be hard on or punish a man, or to +make things easy for or reward anyone, merely because he felt inclined +to do so. He could not have said by what standard he judged what he +should or should not do, but the standard was quite firm and +definite in his own mind. + +Often, speaking with vexation of some failure or irregularity, he +would say: "What can one do with our Russian peasants?" and imagined +that he could not bear them. + +Yet he loved "our Russian peasants" and their way of life with his +whole soul, and for that very reason had understood and assimilated +the one way and manner of farming which produced good results. + +Countess Mary was jealous of this passion of her husband's and +regretted that she could not share it; but she could not understand +the joys and vexations he derived from that world, to her so remote +and alien. She could not understand why he was so particularly +animated and happy when, after getting up at daybreak and spending the +whole morning in the fields or on the threshing floor, he returned +from the sowing or mowing or reaping to have tea with her. She did not +understand why he spoke with such admiration and delight of the +farming of the thrifty and well-to-do peasant Matthew Ermishin, who +with his family had carted corn all night; or of the fact that his +(Nicholas') sheaves were already stacked before anyone else had his +harvest in. She did not understand why he stepped out from the +window to the veranda and smiled under his mustache and winked so +joyfully, when warm steady rain began to fall on the dry and thirsty +shoots of the young oats, or why when the wind carried away a +threatening cloud during the hay harvest he would return from the +barn, flushed, sunburned, and perspiring, with a smell of wormwood and +gentian in his hair and, gleefully rubbing his hands, would say: +"Well, one more day and my grain and the peasants' will all be under +cover." + +Still less did she understand why he, kindhearted and always ready +to anticipate her wishes, should become almost desperate when she +brought him a petition from some peasant men or women who had appealed +to her to be excused some work; why he, that kind Nicholas, should +obstinately refuse her, angrily asking her not to interfere in what +was not her business. She felt he had a world apart, which he loved +passionately and which had laws she had not fathomed. + +Sometimes when, trying to understand him, she spoke of the good work +he was doing for his serfs, he would be vexed and reply: "Not in the +least; it never entered my head and I wouldn't do that for their good! +That's all poetry and old wives' talk--all that doing good to one's +neighbor! What I want is that our children should not have to go +begging. I must put our affairs in order while I am alive, that's all. +And to do that, order and strictness are essential.... That's all +about it!" said he, clenching his vigorous fist. "And fairness, of +course," he added, "for if the peasant is naked and hungry and has +only one miserable horse, he can do no good either for himself or +for me." + +And all Nicholas did was fruitful--probably just because he +refused to allow himself to think that he was doing good to others for +virtue's sake. His means increased rapidly; serfs from neighboring +estates came to beg him to buy them, and long after his death the +memory of his administration was devoutly preserved among the serfs. +"He was a master... the peasants' affairs first and then his own. Of +course he was not to be trifled with either--in a word, he was a +real master!" + + + + + +CHAPTER VIII + +One matter connected with his management sometimes worried Nicholas, +and that was his quick temper together with his old hussar habit of +making free use of his fists. At first he saw nothing reprehensible in +this, but in the second year of his marriage his view of that form +of punishment suddenly changed. + +Once in summer he had sent for the village elder from Bogucharovo, a +man who had succeeded to the post when Dron died and who was accused +of dishonesty and various irregularities. Nicholas went out into the +porch to question him, and immediately after the elder had given a few +replies the sound of cries and blows were heard. On returning to lunch +Nicholas went up to his wife, who sat with her head bent low over +her embroidery frame, and as usual began to tell her what he had +been doing that morning. Among other things he spoke of the +Bogucharovo elder. Countess Mary turned red and then pale, but +continued to sit with head bowed and lips compressed and gave her +husband no reply. + +"Such an insolent scoundrel!" he cried, growing hot again at the +mere recollection of him. "If he had told me he was drunk and did +not see... But what is the matter with you, Mary?" he suddenly asked. + +Countess Mary raised her head and tried to speak, but hastily looked +down again and her lips puckered. + +"Why, whatever is the matter, my dearest?" + +The looks of the plain Countess Mary always improved when she was in +tears. She never cried from pain or vexation, but always from sorrow +or pity, and when she wept her radiant eyes acquired an irresistible +charm. + +The moment Nicholas took her hand she could no longer restrain +herself and began to cry. + +"Nicholas, I saw it... he was to blame, but why do you... Nicholas!" +and she covered her face with her hands. + +Nicholas said nothing. He flushed crimson, left her side, and +paced up and down the room. He understood what she was weeping +about, but could not in his heart at once agree with her that what +he had regarded from childhood as quite an everyday event was wrong. +"Is it just sentimentality, old wives' tales, or is she right?" he +asked himself. Before he had solved that point he glanced again at her +face filled with love and pain, and he suddenly realized that she +was right and that he had long been sinning against himself. + +"Mary," he said softly, going up to her, "it will never happen +again; I give you my word. Never," he repeated in a trembling voice +like a boy asking for forgiveness. + +The tears flowed faster still from the countess' eyes. She took +his hand and kissed it. + +"Nicholas, when did you break your cameo?" she asked to change the +subject, looking at his finger on which he wore a ring with a cameo +of Laocoon's head. + +"Today--it was the same affair. Oh, Mary, don't remind me of it!" +and again he flushed. "I give you my word of honor it shan't occur +again, and let this always be a reminder to me," and he pointed to the +broken ring. + +After that, when in discussions with his village elders or +stewards the blood rushed to his face and his fists began to clench, +Nicholas would turn the broken ring on his finger and would drop his +eyes before the man who was making him angry. But he did forget +himself once or twice within a twelvemonth, and then he would go and +confess to his wife, and would again promise that this should really +be the very last time. + +"Mary, you must despise me!" he would say. "I deserve it." + +"You should go, go away at once, if you don't feel strong enough +to control yourself," she would reply sadly, trying to comfort her +husband. + +Among the gentry of the province Nicholas was respected but not +liked. He did not concern himself with the interests of his own class, +and consequently some thought him proud and others thought him stupid. +The whole summer, from spring sowing to harvest, he was busy with +the work on his farm. In autumn he gave himself up to hunting with the +same business like seriousness--leaving home for a month, or even two, +with his hunt. In winter he visited his other villages or spent his +time reading. The books he read were chiefly historical, and on +these he spent a certain sum every year. He was collecting, as he +said, a serious library, and he made it a rule to read through all the +books he bought. He would sit in his study with a grave air, +reading--a task he first imposed upon himself as a duty, but which +afterwards became a habit affording him a special kind of pleasure and +a consciousness of being occupied with serious matters. In winter, +except for business excursions, he spent most of his time at home +making himself one with his family and entering into all the details +of his children's relations with their mother. The harmony between him +and his wife grew closer and closer and he daily discovered fresh +spiritual treasures in her. + +From the time of his marriage Sonya had lived in his house. Before +that, Nicholas had told his wife all that had passed between himself +and Sonya, blaming himself and commending her. He had asked Princess +Mary to be gentle and kind to his cousin. She thoroughly realized +the wrong he had done Sonya, felt herself to blame toward her, and +imagined that her wealth had influenced Nicholas' choice. She could +not find fault with Sonya in any way and tried to be fond of her, +but often felt ill-will toward her which she could not overcome. + +Once she had a talk with her friend Natasha about Sonya and about +her own injustice toward her. + +"You know," said Natasha, "you have read the Gospels a great deal- +there is a passage in them that just fits Sonya." + +"What?" asked Countess Mary, surprised. + +"'To him that hath shall be given, and from him that hath not +shall be taken away.' You remember? She is one that hath not; why, I +don't know. Perhaps she lacks egotism, I don't know, but from her is +taken away, and everything has been taken away. Sometimes I am +dreadfully sorry for her. Formerly I very much wanted Nicholas to +marry her, but I always had a sort of presentiment that it would not +come off. She is a sterile flower, you know--like some strawberry +blossoms. Sometimes I am sorry for her, and sometimes I think she +doesn't feel it as you or I would." + +Though Countess Mary told Natasha that those words in the Gospel +must be understood differently, yet looking at Sonya she agreed with +Natasha's explanation. It really seemed that Sonya did not feel her +position trying, and had grown quite reconciled to her lot as a +sterile flower. She seemed to be fond not so much of individuals as of +the family as a whole. Like a cat, she had attached herself not to the +people but to the home. She waited on the old countess, petted and +spoiled the children, was always ready to render the small services +for which she had a gift, and all this was unconsciously accepted from +her with insufficient gratitude. + +The country seat at Bald Hills had been rebuilt, though not on the +same scale as under the old prince. + +The buildings, begun under straitened circumstances, were more +than simple. The immense house on the old stone foundations was of +wood, plastered only inside. It had bare deal floors and was furnished +with very simple hard sofas, armchairs, tables, and chairs made by +their own serf carpenters out of their own birchwood. The house was +spacious and had rooms for the house serfs and apartments for +visitors. Whole families of the Rostovs' and Bolkonskis' relations +sometimes came to Bald Hills with sixteen horses and dozens of +servants and stayed for months. Besides that, four times a year, on +the name days and birthdays of the hosts, as many as a hundred +visitors would gather there for a day or two. The rest of the year +life pursued its unbroken routine with its ordinary occupations, and +its breakfasts, lunches, dinners, and suppers, provided out of the +produce of the estate. + + + + + +CHAPTER IX + + +It was the eve of St. Nicholas, the fifth of December, 1820. Natasha +had been staying at her brother's with her husband and children +since early autumn. Pierre had gone to Petersburg on business of his +own for three weeks as he said, but had remained there nearly seven +weeks and was expected back every minute. + +Besides the Bezukhov family, Nicholas' old friend the retired +General Vasili Dmitrich Denisov was staying with the Rostovs this +fifth of December. + +On the sixth, which was his name day when the house would be full of +visitors, Nicholas knew he would have to exchange his Tartar tunic for +a tail coat, and put on narrow boots with pointed toes, and drive to +the new church he had built, and then receive visitors who would +come to congratulate him, offer them refreshments, and talk about +the elections of the nobility; but he considered himself entitled to +spend the eve of that day in his usual way. He examined the +bailiff's accounts of the village in Ryazan which belonged to his +wife's nephew, wrote two business letters, and walked over to the +granaries, cattle yards and stables before dinner. Having taken +precautions against the general drunkenness to be expected on the +morrow because it was a great saint's day, he returned to dinner, +and without having time for a private talk with his wife sat down at +the long table laid for twenty persons, at which the whole household +had assembled. At that table were his mother, his mother's old lady +companion Belova, his wife, their three children with their +governess and tutor, his wife's nephew with his tutor, Sonya, Denisov, +Natasha, her three children, their governess, and old Michael +Ivanovich, the late prince's architect, who was living on in +retirement at Bald Hills. + +Countess Mary sat at the other end of the table. When her husband +took his place she concluded, from the rapid manner in which after +taking up his table napkin he pushed back the tumbler and wineglass +standing before him, that he was out of humor, as was sometimes the +case when he came in to dinner straight from the farm--especially +before the soup. Countess Mary well knew that mood of his, and when +she herself was in a good frame of mind quietly waited till he had had +his soup and then began to talk to him and make him admit that there +was no cause for his ill-humor. But today she quite forgot that and +was hurt that he should be angry with her without any reason, and +she felt unhappy. She asked him where he had been. He replied. She +again inquired whether everything was going well on the farm. Her +unnatural tone made him wince unpleasantly and he replied hastily. + +"Then I'm not mistaken," thought Countess Mary. "Why is he cross +with me?" She concluded from his tone that he was vexed with her and +wished to end the conversation. She knew her remarks sounded +unnatural, but could not refrain from asking some more questions. + +Thanks to Denisov the conversation at table soon became general +and lively, and she did not talk to her husband. When they left the +table and went as usual to thank the old countess, Countess Mary +held out her hand and kissed her husband, and asked him why he was +angry with her. + +"You always have such strange fancies! I didn't even think of +being angry," he replied. + +But the word always seemed to her to imply: "Yes, I am angry but I +won't tell you why." + +Nicholas and his wife lived together so happily that even Sonya +and the old countess, who felt jealous and would have liked them to +disagree, could find nothing to reproach them with; but even they +had their moments of antagonism. Occasionally, and it was always +just after they had been happiest together, they suddenly had a +feeling of estrangement and hostility, which occurred most +frequently during Countess Mary's pregnancies, and this was such a +time. + +"Well, messieurs et mesdames," said Nicholas loudly and with +apparent cheerfulness (it seemed to Countess Mary that he did it on +purpose to vex her), "I have been on my feet since six this morning. +Tomorrow I shall have to suffer, so today I'll go and rest." + +And without a word to his wife he went to the little sitting room +and lay down on the sofa. + +"That's always the way," thought Countess Mary. "He talks to +everyone except me. I see... I see that I am repulsive to him, +especially when I am in this condition." She looked down at her +expanded figure and in the glass at her pale, sallow, emaciated face +in which her eyes now looked larger than ever. + +And everything annoyed her--Denisov's shouting and laughter, +Natasha's talk, and especially a quick glance Sonya gave her. + +Sonya was always the first excuse Countess Mary found for feeling +irritated. + +Having sat awhile with her visitors without understanding anything +of what they were saying, she softly left the room and went to the +nursery. + +The children were playing at "going to Moscow" in a carriage made of +chairs and invited her to go with them. She sat down and played with +them a little, but the thought of her husband and his unreasonable +crossness worried her. She got up and, walking on tiptoe with +difficulty, went to the small sitting room. + +"Perhaps he is not asleep; I'll have an explanation with him," she +said to herself. Little Andrew, her eldest boy, imitating his +mother, followed her on tiptoe. She not notice him. + +"Mary, dear, I think he is asleep--he was so tired," said Sonya, +meeting her in the large sitting room (it seemed to Countess Mary that +she crossed her path everywhere). "Andrew may wake him." + +Countess Mary looked round, saw little Andrew following her, felt +that Sonya was right, and for that very reason flushed and with +evident difficulty refrained from saying something harsh. She made +no reply, but to avoid obeying Sonya beckoned to Andrew to follow +her quietly and went to the door. Sonya went away by another door. +From the room in which Nicholas was sleeping came the sound of his +even breathing, every slightest tone of which was familiar to his +wife. As she listened to it she saw before her his smooth handsome +forehead, his mustache, and his whole face, as she had so often seen +it in the stillness of the night when he slept. Nicholas suddenly +moved and cleared his throat. And at that moment little Andrew shouted +from outside the door: "Papa! Mamma's standing here!" Countess Mary +turned pale with fright and made signs to the boy. He grew silent, and +quiet ensued for a moment, terrible to Countess Mary. She knew how +Nicholas disliked being waked. Then through the door she heard +Nicholas clearing his throat again and stirring, and his voice said +crossly: + +"I can't get a moment's peace.... Mary, is that you? Why did you +bring him here?" + +"I only came in to look and did not notice... forgive me..." + +Nicholas coughed and said no more. Countess Mary moved away from the +door and took the boy back to the nursery. Five minutes later little +black-eyed three-year-old Natasha, her father's pet, having learned +from her brother that Papa was asleep and Mamma was in the sitting +room, ran to her father unobserved by her mother. The dark-eyed little +girl boldly opened the creaking door, went up to the sofa with +energetic steps of her sturdy little legs, and having examined the +position of her father, who was asleep with his back to her, rose on +tiptoe and kissed the hand which lay under his head. Nicholas turned +with a tender smile on his face. + +"Natasha, Natasha!" came Countess Mary's frightened whisper from the +door. "Papa wants to sleep." + +"No, Mamma, he doesn't want to sleep," said little Natasha with +conviction. "He's laughing." + +Nicholas lowered his legs, rose, and took his daughter in his arms. + +"Come in, Mary," he said to his wife. + +She went in and sat down by her husband. + +"I did not notice him following me," she said timidly. "I just +looked in." + +Holding his little girl with one arm, Nicholas glanced at his wife +and, seeing her guilty expression, put his other arm around her and +kissed her hair. + +"May I kiss Mamma?" he asked Natasha. + +Natasha smiled bashfully. + +"Again!" she commanded, pointing with a peremptory gesture to the +spot where Nicholas had placed the kiss. + +"I don't know why you think I am cross," said Nicholas, replying +to the question he knew was in his wife's mind. + +"You have no idea how unhappy, how lonely, I feel when you are +like that. It always seems to me... " + +"Mary, don't talk nonsense. You ought to be ashamed of yourself!" he +said gaily. + +"It seems to be that you can't love me, that I am so plain... +always... and now... in this cond..." + +"Oh, how absurd you are! It is not beauty that endears, it's love +that makes us see beauty. It is only Malvinas and women of that kind +who are loved for their beauty. But do I love my wife? I don't love +her, but... I don't know how to put it. Without you, or when something +comes between us like this, I seem lost and can't do anything. Now +do I love my finger? I don't love it, but just try to cut it off!" + +"I'm not like that myself, but I understand. So you're not angry +with me?" + +"Awfully angry!" he said, smiling and getting up. And smoothing +his hair he began to pace the room. + +"Do you know, Mary, what I've been thinking?" he began, +immediately thinking aloud in his wife's presence now that they had +made it up. + +He did not ask if she was ready to listen to him. He did not care. A +thought had occurred to him and so it belonged to her also. And he +told her of his intention to persuade Pierre to stay with them till +spring. + +Countess Mary listened till he had finished, made some remark, and +in her turn began thinking aloud. Her thoughts were about the +children. + +"You can see the woman in her already," she said in French, pointing +to little Natasha. "You reproach us women with being illogical. Here +is our logic. I say: 'Papa wants to sleep!' but she says, 'No, he's +laughing.' And she was right," said Countess Mary with a happy smile. + +"Yes, yes." And Nicholas, taking his little daughter in his strong +hand, lifted her high, placed her on his shoulder, held her by the +legs, and paced the room with her. There was an expression of carefree +happiness on the faces of both father and daughter. + +"But you know you may be unfair. You are too fond of this one," +his wife whispered in French. + +"Yes, but what am I to do?... I try not to show..." + +At that moment they heard the sound of the door pulley and footsteps +in the hall and anteroom, as if someone had arrived. + +"Somebody has come." + +"I am sure it is Pierre. I will go and see," said Countess Mary +and left the room. + +In her absence Nicholas allowed himself to give his little +daughter a gallop round the room. Out of breath, he took the +laughing child quickly from his shoulder and pressed her to his heart. +His capers reminded him of dancing, and looking at the child's round +happy little face he thought of what she would be like when he was +an old man, taking her into society and dancing the mazurka with her +as his old father had danced Daniel Cooper with his daughter. + +"It is he, it is he, Nicholas!" said Countess Mary, re-entering +the room a few minutes later. "Now our Natasha has come to life. You +should have seen her ecstasy, and how he caught it for having stayed +away so long. Well, come along now, quick, quick! It's time you two +were parted," she added, looking smilingly at the little girl who +clung to her father. + +Nicholas went out holding the child by the hand. + +Countess Mary remained in the sitting room. + +"I should never, never have believed that one could be so happy," +she whispered to herself. A smile lit up her face but at the same time +she sighed, and her deep eyes expressed a quiet sadness as though +she felt, through her happiness, that there is another sort of +happiness unattainable in this life and of which she involuntarily +thought at that instant. + + + + + +CHAPTER X + + +Natasha had married in the early spring of 1813, and in 1820 already +had three daughters besides a son for whom she had longed and whom she +was now nursing. She had grown stouter and broader, so that it was +difficult to recognize in this robust, motherly woman the slim, lively +Natasha of former days. Her features were more defined and had a calm, +soft, and serene expression. In her face there was none of the +ever-glowing animation that had formerly burned there and +constituted its charm. Now her face and body were of all that one saw, +and her soul was not visible at all. All that struck the eye was a +strong, handsome, and fertile woman. The old fire very rarely +kindled in her face now. That happened only when, as was the case that +day, her husband returned home, or a sick child was convalescent, or +when she and Countess Mary spoke of Prince Andrew (she never mentioned +him to her husband, who she imagined was jealous of Prince Andrew's +memory), or on the rare occasions when something happened to induce +her to sing, a practice she had quite abandoned since her marriage. At +the rare moments when the old fire did kindle in her handsome, fully +developed body she was even more attractive than in former days. + +Since their marriage Natasha and her husband had lived in Moscow, in +Petersburg, on their estate near Moscow, or with her mother, that is +to say, in Nicholas' house. The young Countess Bezukhova was not often +seen in society, and those who met her there were not pleased with her +and found her neither attractive nor amiable. Not that Natasha liked +solitude--she did not know whether she liked it or not, she even +thought that she did not--but with her pregnancies, her +confinements, the nursing of her children, and sharing every moment of +her husband's life, she had demands on her time which could be +satisfied only by renouncing society. All who had known Natasha before +her marriage wondered at the change in her as at something +extraordinary. Only the old countess with her maternal instinct had +realized that all Natasha's outbursts had been due to her need of +children and a husband--as she herself had once exclaimed at +Otradnoe not so much in fun as in earnest--and her mother was now +surprised at the surprise expressed by those who had never +understood Natasha, and she kept saying that she had always known that +Natasha would make an exemplary wife and mother. + +"Only she lets her love of her husband and children overflow all +bounds," said the countess, "so that it even becomes absurd." + +Natasha did not follow the golden rule advocated by clever folk, +especially by the French, which says that a girl should not let +herself go when she marries, should not neglect her accomplishments, +should be even more careful of her appearance than when she was +unmarried, and should fascinate her husband as much as she did +before he became her husband. Natasha on the contrary had at once +abandoned all her witchery, of which her singing had been an unusually +powerful part. She gave it up just because it was so powerfully +seductive. She took no pains with her manners or with of speech, or +with her toilet, or to show herself to her husband in her most +becoming attitudes, or to avoid inconveniencing him by being too +exacting. She acted in contradiction to all those rules. She felt that +the allurements instinct had formerly taught her to use would now be +merely ridiculous in the eyes of her husband, to whom she had from the +first moment given herself up entirely--that is, with her whole +soul, leaving no corner of it hidden from him. She felt that her unity +with her husband was not maintained by the poetic feelings that had +attracted him to her, but by something else--indefinite but firm as +the bond between her own body and soul. + +To fluff out her curls, put on fashionable dresses, and sing +romantic songs to fascinate her husband would have seemed as strange +as to adorn herself to attract herself. To adorn herself for others +might perhaps have been agreeable--she did not know--but she had no +time at all for it. The chief reason for devoting no time either to +singing, to dress, or to choosing her words was that she really had no +time to spare for these things. + +We know that man has the faculty of becoming completely absorbed +in a subject however trivial it may be, and that there is no subject +so trivial that it will not grow to infinite proportions if one's +entire attention is devoted to it. + +The subject which wholly engrossed Natasha's attention was her +family: that is, her husband whom she had to keep so that he should +belong entirely to her and to the home, and the children whom she +had to bear, bring into the world, nurse, and bring up. + +And the deeper she penetrated, not with her mind only but with her +whole soul, her whole being, into the subject that absorbed her, the +larger did that subject grow and the weaker and more inadequate did +her powers appear, so that she concentrated them wholly on that one +thing and yet was unable to accomplish all that she considered +necessary. + +There were then as now conversations and discussions about women's +rights, the relations of husband and wife and their freedom and +rights, though these themes were not yet termed questions as they +are now; but these topics were not merely uninteresting to Natasha, +she positively did not understand them. + +These questions, then as now, existed only for those who see nothing +in marriage but the pleasure married people get from one another, that +is, only the beginnings of marriage and not its whole significance, +which lies in the family. + +Discussions and questions of that kind, which are like the +question of how to get the greatest gratification from one's dinner, +did not then and do not now exist for those for whom the purpose of +a dinner is the nourishment it affords; and the purpose of marriage is +the family. + +If the purpose of dinner is to nourish the body, a man who eats +two dinners at once may perhaps get more enjoyment but will not attain +his purpose, for his stomach will not digest the two dinners. + +If the purpose of marriage is the family, the person who wishes to +have many wives or husbands may perhaps obtain much pleasure, but in +that case will not have a family. + +If the purpose of food is nourishment and the purpose of marriage is +the family, the whole question resolves itself into not eating more +than one can digest, and not having more wives or husbands than are +needed for the family--that is, one wife or one husband. Natasha +needed a husband. A husband was given her and he gave her a family. +And she not only saw no need of any other or better husband, but as +all the powers of her soul were intent on serving that husband and +family, she could not imagine and saw no interest in imagining how +it would be if things were different. + +Natasha did not care for society in general, but prized the more the +society of her relatives--Countess Mary, and her brother, her +mother, and Sonya. She valued the company of those to whom she could +come striding disheveled from the nursery in her dressing gown, and +with joyful face show a yellow instead of a green stain on baby's +napkin, and from whom she could hear reassuring words to the effect +that baby was much better. + +To such an extent had Natasha let herself go that the way she +dressed and did her hair, her ill-chosen words, and her jealousy- +she was jealous of Sonya, of the governess, and of every woman, pretty +or plain--were habitual subjects of jest to those about her. The +general opinion was that Pierre was under his wife's thumb, which +was really true. From the very first days of their married life +Natasha had announced her demands. Pierre was greatly surprised by his +wife's view, to him a perfectly novel one, that every moment of his +life belonged to her and to the family. His wife's demands +astonished him, but they also flattered him, and he submitted to them. + +Pierre's subjection consisted in the fact that he not only dared not +flirt with, but dared not even speak smilingly to, any other woman; +did not dare dine at the Club as a pastime, did not dare spend money a +whim, and did not dare absent himself for any length of time, except +on business--in which his wife included his intellectual pursuits, +which she did not in the least understand but to which she +attributed great importance. To make up for this, at home Pierre had +the right to regulate his life and that of the whole family exactly as +he chose. At home Natasha placed herself in the position of a slave to +her husband, and the whole household went on tiptoe when he was +occupied--that is, was reading or writing in his study. Pierre had but +to show a partiality for anything to get just what he liked done +always. He had only to express a wish and Natasha would jump up and +run to fulfill it. + +The entire household was governed according to Pierre's supposed +orders, that is, by his wishes which Natasha tried to guess. Their way +of life and place of residence, their acquaintances and ties, +Natasha's occupations, the children's upbringing, were all selected +not merely with regard to Pierre's expressed wishes, but to what +Natasha from the thoughts he expressed in conversation supposed his +wishes to be. And she deduced the essentials of his wishes quite +correctly, and having once arrived at them clung to them +tenaciously. When Pierre himself wanted to change his mind she would +fight him with his own weapons. + +Thus in a time of trouble ever memorable to him after the birth of +their first child who was delicate, when they had to change the wet +nurse three times and Natasha fell ill from despair, Pierre one day +told her of Rousseau's view, with which he quite agreed, that to +have a wet nurse is unnatural and harmful. When her next baby was +born, despite the opposition of her mother, the doctors, and even of +her husband himself--who were all vigorously opposed to her nursing +her baby herself, a thing then unheard of and considered injurious- +she insisted on having her own way, and after that nursed all her +babies herself. + +It very often happened that in a moment of irritation husband and +wife would have a dispute, but long afterwards Pierre to his +surprise and delight would find in his wife's ideas and actions the +very thought against which she had argued, but divested of +everything superfluous that in the excitement of the dispute he had +added when expressing his opinion. + +After seven years of marriage Pierre had the joyous and firm +consciousness that he was not a bad man, and he felt this because he +saw himself reflected in his wife. He felt the good and bad within +himself inextricably mingled and overlapping. But only what was really +good in him was reflected in his wife, all that was not quite good was +rejected. And this was not the result of logical reasoning but was a +direct and mysterious reflection. + + + + + +CHAPTER XI + + +Two months previously when Pierre was already staying with the +Rostovs he had received a letter from Prince Theodore, asking him to +come to Petersburg to confer on some important questions that were +being discussed there by a society of which Pierre was one of the +principal founders. + +On reading that letter (she always read her husband's letters) +Natasha herself suggested that he should go to Petersburg, though +she would feel his absence very acutely. She attributed immense +importance to all her husband's intellectual and abstract interests +though she did not understand them, and she always dreaded being a +hindrance to him in such matters. To Pierre's timid look of inquiry +after reading the letter she replied by asking him to go, but to fix a +definite date for his return. He was given four weeks' leave of +absence. + +Ever since that leave of absence had expired, more than a +fortnight before, Natasha had been in a constant state of alarm, +depression, and irritability. + +Denisov, now a general on the retired list and much dissatisfied +with the present state of affairs, had arrived during that +fortnight. He looked at Natasha with sorrow and surprise as at a bad +likeness of a person once dear. A dull, dejected look, random replies, +and talk about the nursery was all he saw and heard from his former +enchantress. + +Natasha was sad and irritable all that time, especially when her +mother, her brother, Sonya, or Countess Mary in their efforts to +console her tried to excuse Pierre and suggested reasons for his delay +in returning. + +"It's all nonsense, all rubbish--those discussions which lead to +nothing and all those idiotic societies!" Natasha declared of the very +affairs in the immense importance of which she firmly believed. + +And she would go to the nursery to nurse Petya, her only boy. No one +else could tell her anything so comforting or so reasonable as this +little three-month-old creature when he lay at her breast and she +was conscious of the movement of his lips and the snuffling of his +little nose. That creature said: "You are angry, you are jealous, +you would like to pay him out, you are afraid--but here am I! And I am +he..." and that was unanswerable. It was more than true. + +During that fortnight of anxiety Natasha resorted to the baby for +comfort so often, and fussed over him so much, that she overfed him +and he fell ill. She was terrified by his illness, and yet that was +just what she needed. While attending to him she bore the anxiety +about her husband more easily. + +She was nursing her boy when the sound of Pierre's sleigh was +heard at the front door, and the old nurse--knowing how to please +her mistress--entered the room inaudibly but hurriedly and with a +beaming face. + +"Has he come?" Natasha asked quickly in a whisper, afraid to move +lest she should rouse the dozing baby. + +"He's come, ma'am," whispered the nurse. + +The blood rushed to Natasha's face and her feet involuntarily moved, +but she could not jump up and run out. The baby again opened his +eyes and looked at her. "You're here?" he seemed to be saying, and +again lazily smacked his lips. + +Cautiously withdrawing her breast, Natasha rocked him a little, +handed him to the nurse, and went with rapid steps toward the door. +But at the door she stopped as if her conscience reproached her for +having in her joy left the child too soon, and she glanced round. +The nurse with raised elbows was lifting the infant over the rail of +his cot. + +"Go, ma'am! Don't worry, go!" she whispered, smiling, with the +kind of familiarity that grows up between a nurse and her mistress. + +Natasha ran with light footsteps to the anteroom. + +Denisov, who had come out of the study into the dancing room with +his pipe, now for the first time recognized the old Natasha. A flood +of brilliant, joyful light poured from her transfigured face. + +"He's come!" she exclaimed as she ran past, and Denisov felt that he +too was delighted that Pierre, whom he did not much care for, had +returned. + +On reaching the vestibule Natasha saw a tall figure in a fur coat +unwinding his scarf. "It's he! It's really he! He has come!" she +said to herself, and rushing at him embraced him, pressed his head +to her breast, and then pushed him back and gazed at his ruddy, +happy face, covered with hoarfrost. "Yes, it is he, happy and +contented..." + +Then all at once she remembered the tortures of suspense she had +experienced for the last fortnight, and the joy that had lit up her +face vanished; she frowned and overwhelmed Pierre with a torrent of +reproaches and angry words. + +"Yes, it's all very well for you. You are pleased, you've had a good +time.... But what about me? You might at least have shown +consideration for the children. I am nursing and my milk was +spoiled.... Petya was at death's door. But you were enjoying yourself. +Yes, enjoying..." + +Pierre knew he was not to blame, for he could not have come +sooner; he knew this outburst was unseemly and would blow over in a +minute or two; above all he knew that he himself was bright and happy. +He wanted to smile but dared not even think of doing so. He made a +piteous, frightened face and bent down. + +"I could not, on my honor. But how is Petya?" + +"All right now. Come along! I wonder you're not ashamed! If only you +could see what I was like without you, how I suffered!" + +"You are well?" + +"Come, come!" she said, not letting go of his arm. And they went +to their rooms. + +When Nicholas and his wife came to look for Pierre he was in the +nursery holding his baby son, who was again awake, on his huge right +palm and dandling him. A blissful bright smile was fixed on the baby's +broad face with its toothless open mouth. The storm was long since +over and there was bright, joyous sunshine on Natasha's face as she +gazed tenderly at her husband and child. + +"And have you talked everything well over with Prince Theodore?" she +asked. + +"Yes, capitally." + +"You see, he holds it up." (She meant the baby's head.) "But how +he did frighten me... You've seen the princess? Is it true she's in +love with that..." + +"Yes, just fancy..." + +At that moment Nicholas and Countess Mary came in. Pierre with the +baby on his hand stooped, kissed them, and replied to their inquiries. +But in spite of much that was interesting and had to be discussed, the +baby with the little cap on its unsteady head evidently absorbed all +his attention. + +"How sweet!" said Countess Mary, looking at and playing with the +baby. "Now, Nicholas," she added, turning to her husband, "I can't +understand how it is you don't see the charm of these delicious +marvels." + +"I don't and can't," replied Nicholas, looking coldly at the baby. +"A lump of flesh. Come along, Pierre!" + +"And yet he's such an affectionate father," said Countess Mary, +vindicating her husband, "but only after they are a year old or so..." + +"Now, Pierre nurses them splendidly," said Natasha. "He says his +hand is just made for a baby's seat. Just look!" + +"Only not for this..." Pierre suddenly exclaimed with a laugh, and +shifting the baby he gave him to the nurse. + + + + + +CHAPTER XII + + +As in every large household, there were at Bald Hills several +perfectly distinct worlds which merged into one harmonious whole, +though each retained its own peculiarities and made concessions to the +others. Every event, joyful or sad, that took place in that house +was important to all these worlds, but each had its own special +reasons to rejoice or grieve over that occurrence independently of the +others. + +For instance, Pierre's return was a joyful and important event and +they all felt it to be so. + +The servants--the most reliable judges of their masters because they +judge not by their conversation or expressions of feeling but by their +acts and way of life--were glad of Pierre's return because they knew +that when he was there Count Nicholas would cease going every day +to attend to the estate, and would be in better spirits and temper, +and also because they would all receive handsome presents for the +holidays. + +The children and their governesses were glad of Pierre's return +because no one else drew them into the social life of the household as +he did. He alone could play on the clavichord that ecossaise (his only +piece) to which, as he said, all possible dances could be danced, +and they felt sure he had brought presents for them all. + +Young Nicholas, now a slim lad of fifteen, delicate and intelligent, +with curly light-brown hair and beautiful eyes, was delighted +because Uncle Pierre as he called him was the object of his +rapturous and passionate affection. No one had instilled into him this +love for Pierre whom he saw only occasionally. Countess Mary who had +brought him up had done her utmost to make him love her husband as she +loved him, and little Nicholas did love his uncle, but loved him +with just a shade of contempt. Pierre, however, he adored. He did +not want to be an hussar or a Knight of St. George like his uncle +Nicholas; he wanted to be learned, wise, and kind like Pierre. In +Pierre's presence his face always shone with pleasure and he flushed +and was breathless when Pierre spoke to him. He did not miss a +single word he uttered, and would afterwards, with Dessalles or by +himself, recall and reconsider the meaning of everything Pierre had +said. Pierre's past life and his unhappiness prior to 1812 (of which +young Nicholas had formed a vague poetic picture from some words he +had overheard), his adventures in Moscow, his captivity, Platon +Karataev (of whom he had heard from Pierre), his love for Natasha +(of whom the lad was also particularly fond), and especially +Pierre's friendship with the father whom Nicholas could not +remember--all this made Pierre in his eyes a hero and a saint. + +From broken remarks about Natasha and his father, from the emotion +with which Pierre spoke of that dead father, and from the careful, +reverent tenderness with which Natasha spoke of him, the boy, who +was only just beginning to guess what love is, derived the notion that +his father had loved Natasha and when dying had left her to his +friend. But the father whom the boy did not remember appeared to him a +divinity who could not be pictured, and of whom he never thought +without a swelling heart and tears of sadness and rapture. So the +boy also was happy that Pierre had arrived. + +The guests welcomed Pierre because he always helped to enliven and +unite any company he was in. + +The grown-up members of the family, not to mention his wife, were +pleased to have back a friend whose presence made life run more +smoothly and peacefully. + +The old ladies were pleased with the presents he brought them, and +especially that Natasha would now be herself again. + +Pierre felt the different outlooks of these various worlds and +made haste to satisfy all their expectations. + +Though the most absent-minded and forgetful of men, Pierre, with the +aid of a list his wife drew up, had now bought everything, not +forgetting his mother--and brother-in-law's commissions, nor the dress +material for a present to Belova, nor toys for his wife's nephews. +In the early days of his marriage it had seemed strange to him that +his wife should expect him not to forget to procure all the things +he undertook to buy, and he had been taken aback by her serious +annoyance when on his first trip he forgot everything. But in time +he grew used to this demand. Knowing that Natasha asked nothing for +herself, and gave him commissions for others only when he himself +had offered to undertake them, he now found an unexpected and +childlike pleasure in this purchase of presents for everyone in the +house, and never forgot anything. If he now incurred Natasha's censure +it was only for buying too many and too expensive things. To her other +defects (as most people thought them, but which to Pierre were +qualities) of untidiness and neglect of herself, she now added +stinginess. + +From the time that Pierre began life as a family man on a footing +entailing heavy expenditure, he had noticed to his surprise that he +spent only half as much as before, and that his affairs--which had +been in disorder of late, chiefly because of his first wife's debts- +had begun to improve. + +Life was cheaper because it was circumscribed: that most expensive +luxury, the kind of life that can be changed at any moment, was no +longer his nor did he wish for it. He felt that his way of life had +now been settled once for all till death and that to change it was not +in his power, and so that way of life proved economical. + +With a merry, smiling face Pierre was sorting his purchases. + +"What do you think of this?" said he, unrolling a piece of stuff +like a shopman. + +Natasha, who was sitting opposite to him with her eldest daughter on +her lap, turned her sparkling eyes swiftly from her husband to the +things he showed her. + +"That's for Belova? Excellent!" She felt the quality of the +material. "It was a ruble an arshin, I suppose?" + +Pierre told her the price. + +"Too dear!" Natasha remarked. "How pleased the children will be +and Mamma too! Only you need not have bought me this," she added, +unable to suppress a smile as she gazed admiringly at a gold comb +set with pearls, of a kind then just coming into fashion. + +"Adele tempted me: she kept on telling me to buy it," returned +Pierre. + +"When am I to wear it?" and Natasha stuck it in her coil of hair. +"When I take little Masha into society? Perhaps they will be +fashionable again by then. Well, let's go now." + +And collecting the presents they went first to the nursery and +then to the old countess' rooms. + +The countess was sitting with her companion Belova, playing +grand-patience as usual, when Pierre and Natasha came into the drawing +room with parcels under their arms. + +The countess was now over sixty, was quite gray, and wore a cap with +a frill that surrounded her face. Her face had shriveled, her upper +lip had sunk in, and her eyes were dim. + +After the deaths of her son and husband in such rapid succession, +she felt herself a being accidentally forgotten in this world and left +without aim or object for her existence. She ate, drank, slept, or +kept awake, but did not live. Life gave her no new impressions. She +wanted nothing from life but tranquillity, and that tranquillity +only death could give her. But until death came she had to go on +living, that is, to use her vital forces. A peculiarity one sees in +very young children and very old people was particularly evident in +her. Her life had no external aims--only a need to exercise her +various functions and inclinations was apparent. She had to eat, +sleep, think, speak, weep, work, give vent to her anger, and so on, +merely because she had a stomach, a brain, muscles, nerves, and a +liver. She did these things not under any external impulse as people +in the full vigor of life do, when behind the purpose for which they +strive that of exercising their functions remains unnoticed. She +talked only because she physically needed to exercise her tongue and +lungs. She cried as a child does, because her nose had to be +cleared, and so on. What for people in their full vigor is an aim +was for her evidently merely a pretext. + +Thus in the morning--especially if she had eaten anything rich the +day before--she felt a need of being angry and would choose as the +handiest pretext Belova's deafness. + +She would begin to say something to her in a low tone from the other +end of the room. + +"It seems a little warmer today, my dear," she would murmur. + +And when Belova replied: "Oh yes, they've come," she would mutter +angrily: "O Lord! How stupid and deaf she is!" + +Another pretext would be her snuff, which would seem too dry or +too damp or not rubbed fine enough. After these fits of irritability +her face would grow yellow, and her maids knew by infallible +symptoms when Belova would again be deaf, the snuff damp, and the +countess' face yellow. Just as she needed to work off her spleen so +she had sometimes to exercise her still-existing faculty of +thinking--and the pretext for that was a game of patience. When she +needed to cry, the deceased count would be the pretext. When she +wanted to be agitated, Nicholas and his health would be the pretext, +and when she felt a need to speak spitefully, the pretext would be +Countess Mary. When her vocal organs needed exercise, which was +usually toward seven o'clock when she had had an after-dinner rest +in a darkened room, the pretext would be the retelling of the same +stories over and over again to the same audience. + +The old lady's condition was understood by the whole household +though no one ever spoke of it, and they all made every possible +effort to satisfy her needs. Only by a rare glance exchanged with a +sad smile between Nicholas, Pierre, Natasha, and Countess Mary was the +common understanding of her condition expressed. + +But those glances expressed something more: they said that she had +played her part in life, that what they now saw was not her whole +self, that we must all become like her, and that they were glad to +yield to her, to restrain themselves for this once precious being +formerly as full of life as themselves, but now so much to be +pitied. "Memento mori," said these glances. + +Only the really heartless, the stupid ones of that household, and +the little children failed to understand this and avoided her. + + + + + +CHAPTER XIII + + +When Pierre and his wife entered the drawing room the countess was +in one of her customary states in which she needed the mental exertion +of playing patience, and so--though by force of habit she greeted +him with the words she always used when Pierre or her son returned +after an absence: "High time, my dear, high time! We were all weary of +waiting for you. Well, thank God!" and received her presents with +another customary remark: "It's not the gift that's precious, my dear, +but that you give it to me, an old woman..."--yet it was evident +that she was not pleased by Pierre's arrival at that moment when it +diverted her attention from the unfinished game. + +She finished her game of patience and only then examined the +presents. They consisted of a box for cards, of splendid +workmanship, a bright-blue Sevres tea cup with shepherdesses +depicted on it and with a lid, and a gold snuffbox with the count's +portrait on the lid which Pierre had had done by a miniaturist in +Petersburg. The countess had long wished for such a box, but as she +did not want to cry just then she glanced indifferently at the +portrait and gave her attention chiefly to the box for cards. + +"Thank you, my dear, you have cheered me up," said she as she always +did. "But best of all you have brought yourself back--for I never +saw anything like it, you ought to give your wife a scolding! What are +we to do with her? She is like a mad woman when you are away. +Doesn't see anything, doesn't remember anything," she went on, +repeating her usual phrases. "Look, Anna Timofeevna," she added to her +companion, "see what a box for cards my son has brought us!" + +Belova admired the presents and was delighted with her dress +material. + +Though Pierre, Natasha, Nicholas, Countess Mary, and Denisov had +much to talk about that they could not discuss before the old +countess--not that anything was hidden from her, but because she had +dropped so far behindhand in many things that had they begun to +converse in her presence they would have had to answer inopportune +questions and to repeat what they had already told her many times: +that so-and-so was dead and so-and-so was married, which she would +again be unable to remember--yet they sat at tea round the samovar +in the drawing room from habit, and Pierre answered the countess' +questions as to whether Prince Vasili had aged and whether Countess +Mary Alexeevna had sent greetings and still thought of them, and other +matters that interested no one and to which she herself was +indifferent. + +Conversation of this kind, interesting to no one yet unavoidable, +continued all through teatime. All the grown-up members of the +family were assembled near the round tea table at which Sonya presided +beside the samovar. The children with their tutors and governesses had +had tea and their voices were audible from the next room. At tea all +sat in their accustomed places: Nicholas beside the stove at a small +table where his tea was handed to him; Milka, the old gray borzoi +bitch (daughter of the first Milka), with a quite gray face and +large black eyes that seemed more prominent than ever, lay on the +armchair beside him; Denisov, whose curly hair, mustache, and whiskers +had turned half gray, sat beside countess Mary with his general's +tunic unbuttoned; Pierre sat between his wife and the old countess. He +spoke of what he knew might interest the old lady and that she could +understand. He told her of external social events and of the people +who had formed the circle of her contemporaries and had once been a +real, living, and distinct group, but who were now for the most part +scattered about the world and like herself were garnering the last +ears of the harvests they had sown in earlier years. But to the old +countess those contemporaries of hers seemed to be the only serious +and real society. Natasha saw by Pierre's animation that his visit had +been interesting and that he had much to tell them but dare not say it +before the old countess. Denisov, not being a member of the family, +did not understand Pierre's caution and being, as a malcontent, much +interested in what was occurring in Petersburg, kept urging Pierre +to tell them about what had happened in the Semenovsk regiment, then +about Arakcheev, and then about the Bible Society. Once or twice +Pierre was carried away and began to speak of these things, but +Nicholas and Natasha always brought him back to the health of Prince +Ivan and Countess Mary Alexeevna. + +"Well, and all this idiocy--Gossner and Tatawinova?" Denisov +asked. "Is that weally still going on?" + +"Going on?" Pierre exclaimed. "Why more than ever! The Bible Society +is the whole government now!" + + "What is that, mon cher ami?" asked the countess, who had +finished her tea and evidently needed a pretext for being angry +after her meal. "What are you saying about the government? I don't +understand." + +"Well, you know, Maman," Nicholas interposed, knowing how to +translate things into his mother's language, "Prince Alexander +Golitsyn has founded a society and in consequence has great influence, +they say." + +"Arakcheev and Golitsyn," incautiously remarked Pierre, "are now the +whole government! And what a government! They see treason everywhere +and are afraid of everything." + +"Well, and how is Prince Alexander to blame? He is a most +estimable man. I used to meet him at Mary Antonovna's," said the +countess in an offended tone; and still more offended that they all +remained silent, she went on: "Nowadays everyone finds fault. A Gospel +Society! Well, and what harm is there in that?" and she rose +(everybody else got up too) and with a severe expression sailed back +to her table in the sitting room. + +The melancholy silence that followed was broken by the sounds of the +children's voices and laughter from the next room. Evidently some +jolly excitement was going on there. + +"Finished, finished!" little Natasha's gleeful yell rose above +them all. + +Pierre exchanged glances with Countess Mary and Nicholas (Natasha he +never lost sight of) and smiled happily. + +"That's delightful music!" said he. + +"It means that Anna Makarovna has finished her stocking," said +Countess Mary. + +"Oh, I'll go and see," said Pierre, jumping up. "You know," he +added, stopping at the door, "why I'm especially fond of that music? +It is always the first thing that tells me all is well. When I was +driving here today, the nearer I got to the house the more anxious I +grew. As I entered the anteroom I heard Andrusha's peals of laughter +and that meant that all was well." + +"I know! I know that feeling," said Nicholas. "But I mustn't go +there--those stockings are to be a surprise for me." + +Pierre went to the children, and the shouting and laughter grew +still louder. + +"Come, Anna Makarovna," Pierre's voice was heard saying, "come +here into the middle of the room and at the word of command, 'One, +two,' and when I say 'three'... You stand here, and you in my arms- +well now! One, two!..." said Pierre, and a silence followed: +"three!" and a rapturously breathless cry of children's voices +filled the room. "Two, two!" they shouted. + +This meant two stockings, which by a secret process known only to +herself Anna Makarovna used to knit at the same time on the same +needles, and which, when they were ready, she always triumphantly +drew, one out of the other, in the children's presence. + + + + + +CHAPTER XIV + + +Soon after this the children came in to say good night. They +kissed everyone, the tutors and governesses made their bows, and +they went out. Only young Nicholas and his tutor remained. Dessalles +whispered to the boy to come downstairs. + +"No, Monsieur Dessalles, I will ask my aunt to let me stay," replied +Nicholas Bolkonski also in a whisper. + +"Ma tante, please let me stay," said he, going up to his aunt. + +His face expressed entreaty, agitation, and ecstasy. Countess Mary +glanced at him and turned to Pierre. + +"When you are here he can't tear himself away," she said. + +"I will bring him to you directly, Monsieur Dessalles. Good +night!" said Pierre, giving his hand to the Swiss tutor, and he turned +to young Nicholas with a smile. "You and I haven't seen anything of +one another yet... How like he is growing, Mary!" he added, addressing +Countess Mary. + +"Like my father?" asked the boy, flushing crimson and looking up +at Pierre with bright, ecstatic eyes. + +Pierre nodded, and went on with what he had been saying when the +children had interrupted. Countess Mary sat down doing woolwork; +Natasha did not take her eyes off her husband. Nicholas and Denisov +rose, asked for their pipes, smoked, went to fetch more tea from +Sonya--who sat weary but resolute at the samovar--and questioned +Pierre. The curly-headed, delicate boy sat with shining eyes unnoticed +in a corner, starting every now and then and muttering something to +himself, and evidently experiencing a new and powerful emotion as he +turned his curly head, with his thin neck exposed by his turn-down +collar, toward the place where Pierre sat. + +The conversation turned on the contemporary gossip about those in +power, in which most people see the chief interest of home politics. +Denisov, dissatisfied with the government on account of his own +disappointments in the service, heard with pleasure of the things done +in Petersburg which seemed to him stupid, and made forcible and +sharp comments on what Pierre told them. + +"One used to have to be a German--now one must dance with Tatawinova +and Madame Kwudener, and wead Ecka'tshausen and the bwethwen. Oh, they +should let that fine fellow Bonaparte lose--he'd knock all this +nonsense out of them! Fancy giving the command of the Semenov wegiment +to a fellow like that Schwa'tz!" he cried. + +Nicholas, though free from Denisov's readiness to find fault with +everything, also thought that discussion of the government was a +very serious and weighty matter, and the fact that A had been +appointed Minister of This and B Governor General of That, and that +the Emperor had said so-and-so and this minister so-and-so, seemed +to him very important. And so he thought it necessary to take an +interest in these things and to question Pierre. The questions put +by these two kept the conversation from changing its ordinary +character of gossip about the higher government circles. + +But Natasha, knowing all her husband's ways and ideas, saw that he +had long been wishing but had been unable to divert the conversation +to another channel and express his own deeply felt idea for the sake +of which he had gone to Petersburg to consult with his new friend +Prince Theodore, and she helped him by asking how his affairs with +Prince Theodore had gone. + +"What was it about?" asked Nicholas. + +"Always the same thing," said Pierre, looking round at his +listeners. "Everybody sees that things are going so badly that they +cannot be allowed to go on so and that it is the duty of all decent +men to counteract it as far as they can." + +"What can decent men do?" Nicholas inquired, frowning slightly. +"What can be done?" + +"Why, this..." + +"Come into my study," said Nicholas. + +Natasha, who had long expected to be fetched to nurse her baby, +now heard the nurse calling her and went to the nursery. Countess Mary +followed her. The men went into the study and little Nicholas +Bolkonski followed them unnoticed by his uncle and sat down at the +writing table in a shady corner by the window. + +"Well, what would you do?" asked Denisov. + +"Always some fantastic schemes," said Nicholas. + +"Why this," began Pierre, not sitting down but pacing the room, +sometimes stopping short, gesticulating, and lisping: "the position in +Petersburg is this: the Emperor does not look into anything. He has +abandoned himself altogether to this mysticism" (Pierre could not +tolerate mysticism in anyone now). "He seeks only for peace, and +only these people sans foi ni loi* can give it him--people who +recklessly hack at and strangle everything--Magnitski, Arakcheev, +and tutti quanti.... You will agree that if you did not look after +your estates yourself but only wanted a quiet life, the harsher your +steward was the more readily your object might be attained," he said +to Nicholas. + + +*Without faith or law. + + +"Well, what does that lead up to?" said Nicholas. + +"Well, everything is going to ruin! Robbery in the law courts, in +the army nothing but flogging, drilling, and Military Settlements; the +people are tortured, enlightenment is suppressed. All that is young +and honest is crushed! Everyone sees that this cannot go on. +Everything is strained to such a degree that it will certainly break," +said Pierre (as those who examine the actions of any government have +always said since governments began). "I told them just one thing in +Petersburg." + +"Told whom?" + +"Well, you know whom," said Pierre, with a meaning glance from under +his brows. "Prince Theodore and all those. To encourage culture and +philanthropy is all very well of course. The aim is excellent but in +the present circumstances something else is needed." + +At that moment Nicholas noticed the presence of his nephew. His face +darkened and he went up to the boy. + +"Why are you here?" + +"Why? Let him be," said Pierre, taking Nicholas by the arm and +continuing. "That is not enough, I told them. Something else is +needed. When you stand expecting the overstrained string to snap at +any moment, when everyone is expecting the inevitable catastrophe, +as many as possible must join hands as closely as they can to +withstand the general calamity. Everything that is young and strong is +being enticed away and depraved. One is lured by women, another by +honors, a third by ambition or money, and they go over to that camp. +No independent men, such as you or I, are left. What I say is widen +the scope of our society, let the mot d'ordre be not virtue alone +but independence and action as well!" + +Nicholas, who had left his nephew, irritably pushed up an +armchair, sat down in it, and listened to Pierre, coughing +discontentedly and frowning more and more. + +"But action with what aim?" he cried. "And what position will you +adopt toward the government?" + +"Why, the position of assistants. The society need not be secret +if the government allows it. Not merely is it not hostile to +government, but it is a society of true conservatives--a society of +gentlemen in the full meaning of that word. It is only to prevent some +Pugachev or other from killing my children and yours, and Arakcheev +from sending me off to some Military Settlement. We join hands only +for the public welfare and the general safety." + +"Yes, but it's a secret society and therefore a hostile and +harmful one which can only cause harm." + +"Why? Did the Tugendbund which saved Europe" (they did not then +venture to suggest that Russia had saved Europe) "do any harm? The +Tugendbund is an alliance of virtue: it is love, mutual help... it +is what Christ preached on the Cross." + +Natasha, who had come in during the conversation, looked joyfully at +her husband. It was not what he was saying that pleased her--that +did not even interest her, for it seemed to her that was all extremely +simple and that she had known it a long time (it seemed so to her +because she knew that it sprang from Pierre's whole soul), but it +was his animated and enthusiastic appearance that made her glad. + +The boy with the thin neck stretching out from the turn-down collar- +whom everyone had forgotten--gazed at Pierre with even greater and +more rapturous joy. Every word of Pierre's burned into his heart, +and with a nervous movement of his fingers he unconsciously broke +the sealing wax and quill pens his hands came upon on his uncle's +table. + +"It is not at all what you suppose; but that is what the German +Tugendbund was, and what I am proposing." + +"No, my fwiend! The Tugendbund is all vewy well for the sausage +eaters, but I don't understand it and can't even pwonounce it," +interposed Denisov in a loud and resolute voice. "I agwee that +evewything here is wotten and howwible, but the Tugendbund I don't +understand. If we're not satisfied, let us have a bunt of our own. +That's all wight. Je suis vot'e homme!"* + + +*"I'm your man." + + +Pierre smiled, Natasha began to laugh, but Nicholas knitted his +brows still more and began proving to Pierre that there was no +prospect of any great change and that all the danger he spoke of +existed only in his imagination. Pierre maintained the contrary, and +as his mental faculties were greater and more resourceful, Nicholas +felt himself cornered. This made him still angrier, for he was fully +convinced, not by reasoning but by something within him stronger +than reason, of the justice of his opinion. + +"I will tell you this," he said, rising and trying with nervously +twitching fingers to prop up his pipe in a corner, but finally +abandoning the attempt. "I can't prove it to you. You say that +everything here is rotten and that an overthrow is coming: I don't see +it. But you also say that our oath of allegiance is a conditional +matter, and to that I reply: 'You are my best friend, as you know, but +if you formed a secret society and began working against the +government--be it what it may--I know it is my duty to obey the +government. And if Arakcheev ordered me to lead a squadron against you +and cut you down, I should not hesitate an instant, but should do it.' +And you may argue about that as you like!" + +An awkward silence followed these words. Natasha was the first to +speak, defending her husband and attacking her brother. Her defense +was weak and inapt but she attained her object. The conversation was +resumed, and no longer in the unpleasantly hostile tone of Nicholas' +last remark. + +When they all got up to go in to supper, little Nicholas Bolkonski +went up to Pierre, pale and with shining, radiant eyes. + +"Uncle Pierre, you... no... If Papa were alive... would he agree +with you?" he asked. + +And Pierre suddenly realized what a special, independent, complex, +and powerful process of thought and feeling must have been going on in +this boy during that conversation, and remembering all he had said +he regretted that the lad should have heard him. He had, however, to +give him an answer. + +"Yes, I think so," he said reluctantly, and left the study. + +The lad looked down and seemed now for the first time to notice what +he had done to the things on the table. He flushed and went up to +Nicholas. + +"Uncle, forgive me, I did that... unintentionally," he said, +pointing to the broken sealing wax and pens. + +Nicholas started angrily. + +"All right, all right," he said, throwing the bits under the table. + +And evidently suppressing his vexation with difficulty, he turned +away from the boy. + +"You ought not to have been here at all," he said. + + + + + +CHAPTER XV + + +The conversation at supper was not about politics or societies, +but turned on the subject Nicholas liked best--recollections of +1812. Denisov started these and Pierre was particularly agreeable +and amusing about them. The family separated on the most friendly +terms. + +After supper Nicholas, having undressed in his study and given +instructions to the steward who had been waiting for him, went to +the bedroom in his dressing gown, where he found his wife still at her +table, writing. + +"What are you writing, Mary?" Nicholas asked. + +Countess Mary blushed. She was afraid that what she was writing +would not be understood or approved by her husband. + +She had wanted to conceal what she was writing from him, but at +the same time was glad he had surprised her at it and that she would +now have to tell him. + +"A diary, Nicholas," she replied, handing him a blue exercise book +filled with her firm, bold writing. + +"A diary?" Nicholas repeated with a shade of irony, and he took up +the book. + +It was in French. + + +December 4. Today when Andrusha (her eldest boy) woke up he did +not wish to dress and Mademoiselle Louise sent for me. He was +naughty and obstinate. I tried threats, but he only grew angrier. Then +I took the matter in hand: I left him alone and began with nurse's +help to get the other children up, telling him that I did not love +him. For a long time he was silent, as if astonished, then he jumped +out of bed, ran to me in his shirt, and sobbed so that I could not +calm him for a long time. It was plain that what troubled him most was +that he had grieved me. Afterwards in the evening when I gave him +his ticket, he again began crying piteously and kissing me. One can do +anything with him by tenderness. + + +"What is a 'ticket'?" Nicholas inquired. + +"I have begun giving the elder ones marks every evening, showing how +they have behaved." + +Nicholas looked into the radiant eyes that were gazing at him, and +continued to turn over the pages and read. In the diary was set down +everything in the children's lives that seemed noteworthy to their +mother as showing their characters or suggesting general reflections +on educational methods. They were for the most part quite +insignificant trifles, but did not seem so to the mother or to the +father either, now that he read this diary about his children for +the first time. + +Under the date "5" was entered: + + +Mitya was naughty at table. Papa said he was to have no pudding. +He had none, but looked so unhappily and greedily at the others +while they were eating! I think that punishment by depriving +children of sweets only develops their greediness. Must tell +Nicholas this. + + +Nicholas put down the book and looked at his wife. The radiant +eyes gazed at him questioningly: would he approve or disapprove of her +diary? There could be no doubt not only of his approval but also of +his admiration for his wife. + +Perhaps it need not be done so pedantically, thought Nicholas, or +even done at all, but this untiring, continual spiritual effort of +which the sole aim was the children's moral welfare delighted him. Had +Nicholas been able to analyze his feelings he would have found that +his steady, tender, and proud love of his wife rested on his feeling +of wonder at her spirituality and at the lofty moral world, almost +beyond his reach, in which she had her being. + +He was proud of her intelligence and goodness, recognized his own +insignificance beside her in the spiritual world, and rejoiced all the +more that she with such a soul not only belonged to him but was part +of himself. + +"I quite, quite approve, my dearest!" said he with a significant +look, and after a short pause he added: "And I behaved badly today. +You weren't in the study. We began disputing--Pierre and I--and I lost +my temper. But he is impossible: such a child! I don't know what would +become of him if Natasha didn't keep him in hand.... Have you any idea +why he went to Petersburg? They have formed..." + +"Yes, I know," said Countess Mary. "Natasha told me." + +"Well, then, you know," Nicholas went on, growing hot at the mere +recollection of their discussion, "he wanted to convince me that it is +every honest man's duty to go against the government, and that the +oath of allegiance and duty... I am sorry you weren't there. They +all fell on me--Denisov and Natasha... Natasha is absurd. How she +rules over him! And yet there need only be a discussion and she has no +words of her own but only repeats his sayings..." added Nicholas, +yielding to that irresistible inclination which tempts us to judge +those nearest and dearest to us. He forgot that what he was saying +about Natasha could have been applied word for word to himself in +relation to his wife. + +"Yes, I have noticed that," said Countess Mary. + +"When I told him that duty and the oath were above everything, he +started proving goodness knows what! A pity you were not there--what +would you have said?" + +"As I see it you were quite right, and I told Natasha so. Pierre +says everybody is suffering, tortured, and being corrupted, and that +it is our duty to help our neighbor. Of course he is right there," +said Countess Mary, "but he forgets that we have other duties nearer +to us, duties indicated to us by God Himself, and that though we might +expose ourselves to risks we must not risk our children." + +"Yes, that's it! That's just what I said to him," put in Nicholas, +who fancied he really had said it. "But they insisted on their own +view: love of one's neighbor and Christianity--and all this in the +presence of young Nicholas, who had gone into my study and broke all +my things." + +"Ah, Nicholas, do you know I am often troubled about little +Nicholas," said Countess Mary. "He is such an exceptional boy. I am +afraid I neglect him in favor of my own: we all have children and +relations while he has no one. He is constantly alone with his +thoughts." + +"Well, I don't think you need reproach yourself on his account. +All that the fondest mother could do for her son you have done and are +doing for him, and of course I am glad of it. He is a fine lad, a fine +lad! This evening he listened to Pierre in a sort of trance, and +fancy--as we were going in to supper I looked and he had broken +everything on my table to bits, and he told me of it himself at +once! I never knew him to tell an untruth. A fine lad, a fine lad!" +repeated Nicholas, who at heart was not fond of Nicholas Bolkonski but +was always anxious to recognize that he was a fine lad. + +"Still, I am not the same as his own mother," said Countess Mary. "I +feel I am not the same and it troubles me. A wonderful boy, but I am +dreadfully afraid for him. It would be good for him to have +companions." + +"Well it won't be for long. Next summer I'll take him to +Petersburg," said Nicholas. "Yes, Pierre always was a dreamer and +always will be," he continued, returning to the talk in the study +which had evidently disturbed him. "Well, what business is it of +mine what goes on there--whether Arakcheev is bad, and all that? +What business was it of mine when I married and was so deep in debt +that I was threatened with prison, and had a mother who could not +see or understand it? And then there are you and the children and +our affairs. Is it for my own pleasure that I am at the farm or in the +office from morning to night? No, but I know I must work to comfort my +mother, to repay you, and not to leave the children such beggars as +I was." + +Countess Mary wanted to tell him that man does not live by bread +alone and that he attached too much importance to these matters. But +she knew she must not say this and that it would be useless to do +so. She only took his hand and kissed it. He took this as a sign of +approval and a confirmation of his thoughts, and after a few +minutes' reflection continued to think aloud. + +"You know, Mary, today Elias Mitrofanych" (this was his overseer) +"came back from the Tambov estate and told me they are already +offering eighty thousand rubles for the forest." + +And with an eager face Nicholas began to speak of the possibility of +repurchasing Otradnoe before long, and added: "Another ten years of +life and I shall leave the children... in an excellent position." + +Countess Mary listened to her husband and understood all that he +told her. She knew that when he thought aloud in this way he would +sometimes ask her what he had been saying, and be vexed if he +noticed that she had been thinking about something else. But she had +to force herself to attend, for what he was saying did not interest +her at all. She looked at him and did not think, but felt, about +something different. She felt a submissive tender love for this man +who would never understand all that she understood, and this seemed to +make her love for him still stronger and added a touch of passionate +tenderness. Besides this feeling which absorbed her altogether and +hindered her from following the details of her husband's plans, +thoughts that had no connection with what he was saying flitted +through her mind. She thought of her nephew. Her husband's account +of the boy's agitation while Pierre was speaking struck her +forcibly, and various traits of his gentle, sensitive character +recurred to her mind; and while thinking of her nephew she thought +also of her own children. She did not compare them with him, but +compared her feeling for them with her feeling for him, and felt +with regret that there was something lacking in her feeling for +young Nicholas. + +Sometimes it seemed to her that this difference arose from the +difference in their ages, but she felt herself to blame toward him and +promised in her heart to do better and to accomplish the impossible- +in this life to love her husband, her children, little Nicholas, and +all her neighbors, as Christ loved mankind. Countess Mary's soul +always strove toward the infinite, the eternal, and the absolute, +and could therefore never be at peace. A stern expression of the +lofty, secret suffering of a soul burdened by the body appeared on her +face. Nicholas gazed at her. "O God! What will become of us if she +dies, as I always fear when her face is like that?" thought he, and +placing himself before the icon he began to say his evening prayers. + + + + + +CHAPTER XVI + + +Natasha and Pierre, left alone, also began to talk as only a husband +and wife can talk, that is, with extraordinary clearness and rapidity, +understanding and expressing each other's thoughts in ways contrary to +all rules of logic, without premises, deductions, or conclusions, +and in a quite peculiar way. Natasha was so used to this kind of +talk with her husband that for her it was the surest sign of something +being wrong between them if Pierre followed a line of logical +reasoning. When he began proving anything, or talking +argumentatively and calmly and she, led on by his example, began to do +the same, she knew that they were on the verge of a quarrel. + +From the moment they were alone and Natasha came up to him with +wide-open happy eyes, and quickly seizing his head pressed it to her +bosom, saying: "Now you are all mine, mine! You won't escape!"--from +that moment this conversation began, contrary to all the laws of logic +and contrary to them because quite different subjects were talked +about at one and the same time. This simultaneous discussion of many +topics did not prevent a clear understanding but on the contrary was +the surest sign that they fully understood one another. + +Just as in a dream when all is uncertain, unreasoning, and +contradictory, except the feeling that guides the dream, so in this +intercourse contrary to all laws of reason, the words themselves +were not consecutive and clear but only the feeling that prompted +them. + +Natasha spoke to Pierre about her brother's life and doings, of +how she had suffered and lacked life during his own absence, and of +how she was fonder than ever of Mary, and how Mary was in every way +better than herself. In saying this Natasha was sincere in +acknowledging Mary's superiority, but at the same time by saying it +she made a demand on Pierre that he should, all the same, prefer her +to Mary and to all other women, and that now, especially after +having seen many women in Petersburg, he should tell her so afresh. + +Pierre, answering Natasha's words, told her how intolerable it had +been for him to meet ladies at dinners and balls in Petersburg. + +"I have quite lost the knack of talking to ladies," he said. "It was +simply dull. Besides, I was very busy." + +Natasha looked intently at him and went on: + +"Mary is so splendid," she said. "How she understands children! It +is as if she saw straight into their souls. Yesterday, for instance, +Mitya was naughty..." + +"How like his father he is," Pierre interjected. + +Natasha knew why he mentioned Mitya's likeness to Nicholas: the +recollection of his dispute with his brother-in-law was unpleasant and +he wanted to know what Natasha thought of it. + +"Nicholas has the weakness of never agreeing with anything not +generally accepted. But I understand that you value what opens up a +fresh line," said she, repeating words Pierre had once uttered. + +"No, the chief point is that to Nicholas ideas and discussions are +an amusement--almost a pastime," said Pierre. "For instance, he is +collecting a library and has made it a rule not to buy a new book till +he has read what he had already bought--Sismondi and Rousseau and +Montesquieu," he added with a smile. "You know how much I..." he began +to soften down what he had said; but Natasha interrupted him to show +that this was unnecessary. + +"So you say ideas are an amusement to him...." + +"Yes, and for me nothing else is serious. All the time in Petersburg +I saw everyone as in a dream. When I am taken up by a thought, all +else is mere amusement." + +"Ah, I'm so sorry I wasn't there when you met the children," said +Natasha. "Which was most delighted? Lisa, I'm sure." + +"Yes," Pierre replied, and went on with what was in his mind. +"Nicholas says we ought not to think. But I can't help it. Besides, +when I was in Petersburg I felt (I can this to you) that the whole +affair would go to pieces without me--everyone was pulling his own +way. But I succeeded in uniting them all; and then my idea is so clear +and simple. You see, I don't say that we ought to oppose this and +that. We may be mistaken. What I say is: 'Join hands, you who love the +right, and let there be but one banner--that of active virtue.' Prince +Sergey is a fine fellow and clever." + +Natasha would have had no doubt as to the greatness of Pierre's +idea, but one thing disconcerted her. "Can a man so important and +necessary to society be also my husband? How did this happen?" She +wished to express this doubt to him. "Now who could decide whether +he is really cleverer than all the others?" she asked herself, and +passed in review all those whom Pierre most respected. Judging by what +he had said there was no one he had respected so highly as Platon +Karataev. + +"Do you know what I am thinking about?" she asked. "About Platon +Karataev. Would he have approved of you now, do you think?" + +Pierre was not at all surprised at this question. He understood +his wife's line of thought. + +"Platon Karataev?" he repeated, and pondered, evidently sincerely +trying to imagine Karataev's opinion on the subject. "He would not +have understood... yet perhaps he would." + +"I love you awfully!" Natasha suddenly said. "Awfully, awfully!" + +"No, he would not have approved," said Pierre, after reflection. +"What he would have approved of is our family life. He was always so +anxious to find seemliness, happiness, and peace in everything, and +I should have been proud to let him see us. There now--you talk of +my absence, but you wouldn't believe what a special feeling I have for +you after a separation...." + +"Yes, I should think..." Natasha began. + +"No, it's not that. I never leave off loving you. And one couldn't +love more, but this is something special.... Yes, of course-" he did +not finish because their eyes meeting said the rest. + +"What nonsense it is," Natasha suddenly exclaimed, "about +honeymoons, and that the greatest happiness is at first! On the +contrary, now is the best of all. If only you did not go away! Do +you remember how we quarreled? And it was always my fault. Always +mine. And what we quarreled about--I don't even remember!" + +"Always about the same thing," said Pierre with a smile. "Jealo..." + +"Don't say it! I can't bear it!" Natasha cried, and her eyes +glittered coldly and vindictively. "Did you see her?" she added, after +a pause. + +"No, and if I had I shouldn't have recognized her." + +They were silent for a while. + +"Oh, do you know? While you were talking in the study I was +looking at you," Natasha began, evidently anxious to disperse the +cloud that had come over them. "You are as like him as two peas- +like the boy." (She meant her little son.) "Oh, it's time to go to +him.... The milk's come.... But I'm sorry to leave you." + +They were silent for a few seconds. Then suddenly turning to one +another at the same time they both began to speak. Pierre began with +self-satisfaction and enthusiasm, Natasha with a quiet, happy smile. +Having interrupted one another they both stopped to let the other +continue. + +"No. What did you say? Go on, go on." + +"No, you go on, I was talking nonsense," said Natasha. + +Pierre finished what he had begun. It was the sequel to his +complacent reflections on his success in Petersburg. At that moment it +seemed to him that he was chosen to give a new direction to the +whole of Russian society and to the whole world. + +"I only wished to say that ideas that have great results are +always simple ones. My whole idea is that if vicious people are united +and constitute a power, then honest folk must do the same. Now +that's simple enough." + +"Yes." + +"And what were you going to say?" + +"I? Only nonsense." + +"But all the same?" + +"Oh nothing, only a trifle," said Natasha, smilingly still more +brightly. "I only wanted to tell you about Petya: today nurse was +coming to take him from me, and he laughed, shut his eyes, and clung +to me. I'm sure he thought he was hiding. Awfully sweet! There, now +he's crying. Well, good-by!" and she left the room. + + +Meanwhile downstairs in young Nicholas Bolkonski's bedroom a +little lamp was burning as usual. (The boy was afraid of the dark +and they could not cure him of it.) Dessalles slept propped up on four +pillows and his Roman nose emitted sounds of rhythmic snoring. +Little Nicholas, who had just waked up in a cold perspiration, sat +up in bed and gazed before him with wide-open eyes. He had awaked from +a terrible dream. He had dreamed that he and Uncle Pierre, wearing +helmets such as were depicted in his Plutarch, were leading a huge +army. The army was made up of white slanting lines that filled the air +like the cobwebs that float about in autumn and which Dessalles called +les fils de la Vierge. In front was Glory, which was similar to +those threads but rather thicker. He and Pierre were borne along +lightly and joyously, nearer and nearer to their goal. Suddenly the +threads that moved them began to slacken and become entangled and it +grew difficult to move. And Uncle Nicholas stood before them in a +stern and threatening attitude. + +"Have you done this?" he said, pointing to some broken sealing wax +and pens. "I loved you, but I have orders from Arakcheev and will kill +the first of you who moves forward." Little Nicholas turned to look at +Pierre but Pierre was no longer there. In his place was his father- +Prince Andrew--and his father had neither shape nor form, but he +existed, and when little Nicholas perceived him he grew faint with +love: he felt himself powerless, limp, and formless. His father +caressed and pitied him. But Uncle Nicholas came nearer and nearer +to them. Terror seized young Nicholas and he awoke. + +"My father!" he thought. (Though there were two good portraits of +Prince Andrew in the house, Nicholas never imagined him in human +form.) "My father has been with me and caressed me. He approved of +me and of Uncle Pierre. Whatever he may tell me, I will do it. +Mucius Scaevola burned his hand. Why should not the same sort of thing +happen to me? I know they want me to learn. And I will learn. But +someday I shall have finished learning, and then I will do +something. I only pray God that something may happen to me such as +happened to Plutarch's men, and I will act as they did. I will do +better. Everyone shall know me, love me, and be delighted with me!" +And suddenly his bosom heaved with sobs and he began to cry. + +"Are you ill?" he heard Dessalles' voice asking. + +"No," answered Nicholas, and lay back on his pillow. + +"He is good and kind and I am fond of him!" he thought of Dessalles. +"But Uncle Pierre! Oh, what a wonderful man he is! And my father? +Oh, Father, Father! Yes, I will do something with which even he +would be satisfied...." + + + + + + + +SECOND EPILOGUE + + + + + +CHAPTER I + + +History is the life of nations and of humanity. To seize and put +into words, to describe directly the life of humanity or even of a +single nation, appears impossible. + +The ancient historians all employed one and the same method to +describe and seize the apparently elusive--the life of a people. +They described the activity of individuals who ruled the people, and +regarded the activity of those men as representing the activity of the +whole nation. + +The question: how did individuals make nations act as they wished +and by what was the will of these individuals themselves guided? the +ancients met by recognizing a divinity which subjected the nations +to the will of a chosen man, and guided the will of that chosen man so +as to accomplish ends that were predestined. + +For the ancients these questions were solved by a belief in the +direct participation of the Deity in human affairs. + +Modern history, in theory, rejects both these principles. + +It would seem that having rejected the belief of the ancients in +man's subjection to the Deity and in a predetermined aim toward +which nations are led, modern history should study not the +manifestations of power but the causes that produce it. But modern +history has not done this. Having in theory rejected the view held +by the ancients, it still follows them in practice. + +Instead of men endowed with divine authority and directly guided +by the will of God, modern history has given us either heroes +endowed with extraordinary, superhuman capacities, or simply men of +very various kinds, from monarchs to journalists, who lead the masses. +Instead of the former divinely appointed aims of the Jewish, Greek, or +Roman nations, which ancient historians regarded as representing the +progress of humanity, modern history has postulated its own aims- +the welfare of the French, German, or English people, or, in its +highest abstraction, the welfare and civilization of humanity in +general, by which is usually meant that of the peoples occupying a +small northwesterly portion of a large continent. + +Modern history has rejected the beliefs of the ancients without +replacing them by a new conception, and the logic of the situation has +obliged the historians, after they had apparently rejected the +divine authority of the kings and the "fate" of the ancients, to reach +the same conclusion by another road, that is, to recognize (1) nations +guided by individual men, and (2) the existence of a known aim to +which these nations and humanity at large are tending. + +At the basis of the works of all the modern historians from Gibbon +to Buckle, despite their seeming disagreements and the apparent +novelty of their outlooks, lie those two old, unavoidable assumptions. + +In the first place the historian describes the activity of +individuals who in his opinion have directed humanity (one historian +considers only monarchs, generals, and ministers as being such men, +while another includes also orators, learned men, reformers, +philosophers, and poets). Secondly, it is assumed that the goal toward +which humanity is being led is known to the historians: to one of them +this goal is the greatness of the Roman, Spanish, or French realm; +to another it is liberty, equality, and a certain kind of civilization +of a small corner of the world called Europe. + +In 1789 a ferment arises in Paris; it grows, spreads, and is +expressed by a movement of peoples from west to east. Several times it +moves eastward and collides with a countermovement from the east +westward. In 1812 it reaches its extreme limit, Moscow, and then, with +remarkable symmetry, a countermovement occurs from east to west, +attracting to it, as the first movement had done, the nations of +middle Europe. The counter movement reaches the starting point of +the first movement in the west--Paris--and subsides. + +During that twenty-year period an immense number of fields were left +untilled, houses were burned, trade changed its direction, millions of +men migrated, were impoverished, or were enriched, and millions of +Christian men professing the law of love of their fellows slew one +another. + +What does all this mean? Why did it happen? What made those people +burn houses and slay their fellow men? What were the causes of these +events? What force made men act so? These are the instinctive, +plain, and most legitimate questions humanity asks itself when it +encounters the monuments and tradition of that period. + +For a reply to these questions the common sense of mankind turns +to the science of history, whose aim is to enable nations and humanity +to know themselves. + +If history had retained the conception of the ancients it would have +said that God, to reward or punish his people, gave Napoleon power and +directed his will to the fulfillment of the divine ends, and that +reply, would have been clear and complete. One might believe or +disbelieve in the divine significance of Napoleon, but for anyone +believing in it there would have been nothing unintelligible in the +history of that period, nor would there have been any contradictions. + +But modern history cannot give that reply. Science does not admit +the conception of the ancients as to the direct participation of the +Deity in human affairs, and therefore history ought to give other +answers. + +Modern history replying to these questions says: you want to know +what this movement means, what caused it, and what force produced +these events? Then listen: + +"Louis XIV was a very proud and self-confident man; he had such +and such mistresses and such and such ministers and he ruled France +badly. His descendants were weak men and they too ruled France +badly. And they had such and such favorites and such and such +mistresses. Moreover, certain men wrote some books at that time. At +the end of the eighteenth century there were a couple of dozen men +in Paris who began to talk about all men being free and equal. This +caused people all over France to begin to slash at and drown one +another. They killed the king and many other people. At that time +there was in France a man of genius--Napoleon. He conquered +everybody everywhere--that is, he killed many people because he was +a great genius. And for some reason he went to kill Africans, and +killed them so well and was so cunning and wise that when he +returned to France he ordered everybody to obey him, and they all +obeyed him. Having become an Emperor he again went out to kill +people in Italy, Austria, and Prussia. And there too he killed a great +many. In Russia there was an Emperor, Alexander, who decided to +restore order in Europe and therefore fought against Napoleon. In 1807 +he suddenly made friends with him, but in 1811 they again quarreled +and again began killing many people. Napoleon led six hundred thousand +men into Russia and captured Moscow; then he suddenly ran away from +Moscow, and the Emperor Alexander, helped by the advice of Stein and +others, united Europe to arm against the disturber of its peace. All +Napoleon's allies suddenly became his enemies and their forces +advanced against the fresh forces he raised. The Allies defeated +Napoleon, entered Paris, forced Napoleon to abdicate, and sent him +to the island of Elba, not depriving him of the title of Emperor and +showing him every respect, though five years before and one year later +they all regarded him as an outlaw and a brigand. Then Louis XVIII, +who till then had been the laughingstock both of the French and the +Allies, began to reign. And Napoleon, shedding tears before his Old +Guards, renounced the throne and went into exile. Then the skillful +statesmen and diplomatists (especially Talleyrand, who managed to +sit down in a particular chair before anyone else and thereby extended +the frontiers of France) talked in Vienna and by these conversations +made the nations happy or unhappy. Suddenly the diplomatists and +monarchs nearly quarreled and were on the point of again ordering +their armies to kill one another, but just then Napoleon arrived in +France with a battalion, and the French, who had been hating him, +immediately all submitted to him. But the Allied monarchs were angry +at this and went to fight the French once more. And they defeated +the genius Napoleon and, suddenly recognizing him as a brigand, sent +him to the island of St. Helena. And the exile, separated from the +beloved France so dear to his heart, died a lingering death on that +rock and bequeathed his great deeds to posterity. But in Europe a +reaction occurred and the sovereigns once again all began to oppress +their subjects." + +It would be a mistake to think that this is ironic--a caricature +of the historical accounts. On the contrary it is a very mild +expression of the contradictory replies, not meeting the questions, +which all the historians give, from the compilers of memoirs and the +histories of separate states to the writers of general histories and +the new histories of the culture of that period. + +The strangeness and absurdity of these replies arise from the fact +that modern history, like a deaf man, answers questions no one has +asked. + +If the purpose of history be to give a description of the movement +of humanity and of the peoples, the first question--in the absence +of a reply to which all the rest will be incomprehensible--is: what is +the power that moves peoples? To this, modern history laboriously +replies either that Napoleon was a great genius, or that Louis XIV was +very proud, or that certain writers wrote certain books. + +All that may be so and mankind is ready to agree with it, but it +is not what was asked. All that would be interesting if we +recognized a divine power based on itself and always consistently +directing its nations through Napoleons, Louis-es, and writers; but we +do not acknowledge such a power, and therefore before speaking about +Napoleons, Louis-es, and authors, we ought to be shown the +connection existing between these men and the movement of the nations. + +If instead of a divine power some other force has appeared, it +should be explained in what this new force consists, for the whole +interest of history lies precisely in that force. + +History seems to assume that this force is self-evident and known to +everyone. But in spite of every desire to regard it as known, anyone +reading many historical works cannot help doubting whether this new +force, so variously understood by the historians themselves, is really +quite well known to everybody. + + + + + +CHAPTER II + + +What force moves the nations? + +Biographical historians and historians of separate nations +understand this force as a power inherent in heroes and rulers. In +their narration events occur solely by the will of a Napoleon, and +Alexander, or in general of the persons they describe. The answers +given by this kind of historian to the question of what force causes +events to happen are satisfactory only as long as there is but one +historian to each event. As soon as historians of different +nationalities and tendencies begin to describe the same event, the +replies they give immediately lose all meaning, for this force is +understood by them all not only differently but often in quite +contradictory ways. One historian says that an event was produced by +Napoleon's power, another that it was produced by Alexander's, a third +that it was due to the power of some other person. Besides this, +historians of that kind contradict each other even in their +statement as to the force on which the authority of some particular +person was based. Thiers, a Bonapartist, says that Napoleon's power +was based on his virtue and genius. Lanfrey, a Republican, says it was +based on his trickery and deception of the people. So the historians +of this class, by mutually destroying one another's positions, destroy +the understanding of the force which produces events, and furnish no +reply to history's essential question. + +Writers of universal history who deal with all the nations seem to +recognize how erroneous is the specialist historians' view of the +force which produces events. They do not recognize it as a power +inherent in heroes and rulers, but as the resultant of a +multiplicity of variously directed forces. In describing a war or +the subjugation of a people, a general historian looks for the cause +of the event not in the power of one man, but in the interaction of +many persons connected with the event. + +According to this view the power of historical personages, +represented as the product of many forces, can no longer, it would +seem, be regarded as a force that itself produces events. Yet in +most cases universal historians still employ the conception of power +as a force that itself produces events, and treat it as their cause. +In their exposition, an historic character is first the product of his +time, and his power only the resultant of various forces, and then his +power is itself a force producing events. Gervinus, Schlosser, and +others, for instance, at one time prove Napoleon to be a product of +the Revolution, of the ideas of 1789 and so forth, and at another +plainly say that the campaign of 1812 and other things they do not +like were simply the product of Napoleon's misdirected will, and +that the very ideas of 1789 were arrested in their development by +Napoleon's caprice. The ideas of the Revolution and the general temper +of the age produced Napoleon's power. But Napoleon's power +suppressed the ideas of the Revolution and the general temper of the +age. + +This curious contradiction is not accidental. Not only does it occur +at every step, but the universal historians' accounts are all made +up of a chain of such contradictions. This contradiction occurs +because after entering the field of analysis the universal +historians stop halfway. + +To find component forces equal to the composite or resultant +force, the sum of the components must equal the resultant. This +condition is never observed by the universal historians, and so to +explain the resultant forces they are obliged to admit, in addition to +the insufficient components, another unexplained force affecting the +resultant action. + +Specialist historians describing the campaign of 1813 or the +restoration of the Bourbons plainly assert that these events were +produced by the will of Alexander. But the universal historian +Gervinus, refuting this opinion of the specialist historian, tries +to prove that the campaign of 1813 and the restoration of the Bourbons +were due to other things beside Alexander's will--such as the activity +of Stein, Metternich, Madame de Stael, Talleyrand, Fichte +Chateaubriand, and others. The historian evidently decomposes +Alexander's power into the components: Talleyrand, Chateaubriand, +and the rest--but the sum of the components, that is, the interactions +of Chateaubriand, Talleyrand, Madame de Stael, and the others, +evidently does not equal the resultant, namely the phenomenon of +millions of Frenchmen submitting to the Bourbons. That +Chateaubriand, Madame de Stael, and others spoke certain words to +one another only affected their mutual relations but does not +account for the submission of millions. And therefore to explain how +from these relations of theirs the submission of millions of people +resulted--that is, how component forces equal to one A gave a +resultant equal to a thousand times A--the historian is again +obliged to fall back on power--the force he had denied--and to +recognize it as the resultant of the forces, that is, he has to +admit an unexplained force acting on the resultant. And that is just +what the universal historians do, and consequently they not only +contradict the specialist historians but contradict themselves. + +Peasants having no clear idea of the cause of rain, say, according +to whether they want rain or fine weather: "The wind has blown the +clouds away," or, "The wind has brought up the clouds." And in the +same way the universal historians sometimes, when it pleases them +and fits in with their theory, say that power is the result of events, +and sometimes, when they want to prove something else, say that +power produces events. + +A third class of historians--the so-called historians of culture- +following the path laid down by the universal historians who sometimes +accept writers and ladies as forces producing events--again take +that force to be something quite different. They see it in what is +called culture--in mental activity. + +The historians of culture are quite consistent in regard to their +progenitors, the writers of universal histories, for if historical +events may be explained by the fact that certain persons treated one +another in such and such ways, why not explain them by the fact that +such and such people wrote such and such books? Of the immense +number of indications accompanying every vital phenomenon, these +historians select the indication of intellectual activity and say that +this indication is the cause. But despite their endeavors to prove +that the cause of events lies in intellectual activity, only by a +great stretch can one admit that there is any connection between +intellectual activity and the movement of peoples, and in no case +can one admit that intellectual activity controls people's actions, +for that view is not confirmed by such facts as the very cruel murders +of the French Revolution resulting from the doctrine of the equality +of man, or the very cruel wars and executions resulting from the +preaching of love. + +But even admitting as correct all the cunningly devised arguments +with which these histories are filled--admitting that nations are +governed by some undefined force called an idea--history's essential +question still remains unanswered, and to the former power of monarchs +and to the influence of advisers and other people introduced by the +universal historians, another, newer force--the idea--is added, the +connection of which with the masses needs explanation. It is +possible to understand that Napoleon had power and so events occurred; +with some effort one may even conceive that Napoleon together with +other influences was the cause of an event; but how a book, Le Contrat +social, had the effect of making Frenchmen begin to drown one +another cannot be understood without an explanation of the causal +nexus of this new force with the event. + +Undoubtedly some relation exists between all who live +contemporaneously, and so it is possible to find some connection +between the intellectual activity of men and their historical +movements, just as such a connection may be found between the +movements of humanity and commerce, handicraft, gardening, or anything +else you please. But why intellectual activity is considered by the +historians of culture to be the cause or expression of the whole +historical movement is hard to understand. Only the following +considerations can have led the historians to such a conclusion: (1) +that history is written by learned men, and so it is natural and +agreeable for them to think that the activity of their class +supplies the basis of the movement of all humanity, just as a +similar belief is natural and agreeable to traders, agriculturists, +and soldiers (if they do not express it, that is merely because +traders and soldiers do not write history), and (2) that spiritual +activity, enlightenment, civilization, culture, ideas, are all +indistinct, indefinite conceptions under whose banner it is very +easy to use words having a still less definite meaning, and which +can therefore be readily introduced into any theory. + +But not to speak of the intrinsic quality of histories of this +kind (which may possibly even be of use to someone for something) +the histories of culture, to which all general histories tend more and +more to approximate, are significant from the fact that after +seriously and minutely examining various religious, philosophic, and +political doctrines as causes of events, as soon as they have to +describe an actual historic event such as the campaign of 1812 for +instance, they involuntarily describe it as resulting from an exercise +of power--and say plainly that that was the result of Napoleon's will. +Speaking so, the historians of culture involuntarily contradict +themselves, and show that the new force they have devised does not +account for what happens in history, and that history can only be +explained by introducing a power which they apparently do not +recognize. + + + + + +CHAPTER III + + +A locomotive is moving. Someone asks: "What moves it?" A peasant +says the devil moves it. Another man says the locomotive moves because +its wheels go round. A third asserts that the cause of its movement +lies in the smoke which the wind carries away. + +The peasant is irrefutable. He has devised a complete explanation. +To refute him someone would have to prove to him that there is no +devil, or another peasant would have to explain to him that it is +not the devil but a German, who moves the locomotive. Only then, as +a result of the contradiction, will they see that they are both wrong. +But the man who says that the movement of the wheels is the cause +refutes himself, for having once begun to analyze he ought to go on +and explain further why the wheels go round; and till he has reached +the ultimate cause of the movement of the locomotive in the pressure +of steam in the boiler, he has no right to stop in his search for +the cause. The man who explains the movement of the locomotive by +the smoke that is carried back has noticed that the wheels do not +supply an explanation and has taken the first sign that occurs to +him and in his turn has offered that as an explanation. + +The only conception that can explain the movement of the +locomotive is that of a force commensurate with the movement observed. + +The only conception that can explain the movement of the peoples +is that of some force commensurate with the whole movement of the +peoples. + +Yet to supply this conception various historians take forces of +different kinds, all of which are incommensurate with the movement +observed. Some see it as a force directly inherent in heroes, as the +peasant sees the devil in the locomotive; others as a force +resulting from several other forces, like the movement of the +wheels; others again as an intellectual influence, like the smoke that +is blown away. + +So long as histories are written of separate individuals, whether +Caesars, Alexanders, Luthers, or Voltaires, and not the histories of +all, absolutely all those who take part in an event, it is quite +impossible to describe the movement of humanity without the conception +of a force compelling men to direct their activity toward a certain +end. And the only such conception known to historians is that of +power. + +This conception is the one handle by means of which the material +of history, as at present expounded, can be dealt with, and anyone who +breaks that handle off, as Buckle did, without finding some other +method of treating historical material, merely deprives himself of the +one possible way of dealing with it. The necessity of the conception +of power as an explanation of historical events is best demonstrated +by the universal historians and historians of culture themselves, +for they professedly reject that conception but inevitably have +recourse to it at every step. + +In dealing with humanity's inquiry, the science of history up to now +is like money in circulation--paper money and coin. The biographies +and special national histories are like paper money. They can be +used and can circulate and fulfill their purpose without harm to +anyone and even advantageously, as long as no one asks what is the +security behind them. You need only forget to ask how the will of +heroes produces events, and such histories as Thiers' will be +interesting and instructive and may perhaps even possess a tinge of +poetry. But just as doubts of the real value of paper money arise +either because, being easy to make, too much of it gets made or +because people try to exchange it for gold, so also doubts +concerning the real value of such histories arise either because too +many of them are written or because in his simplicity of heart someone +inquires: by what force did Napoleon do this?--that is, wants to +exchange the current paper money for the real gold of actual +comprehension. + +The writers of universal histories and of the history of culture are +like people who, recognizing the defects of paper money, decide to +substitute for it money made of metal that has not the specific +gravity of gold. It may indeed make jingling coin, but will do no more +than that. Paper money may deceive the ignorant, but nobody is +deceived by tokens of base metal that have no value but merely jingle. +As gold is gold only if it is serviceable not merely for exchange +but also for use, so universal historians will be valuable only when +they can reply to history's essential question: what is power? The +universal historians give contradictory replies to that question, +while the historians of culture evade it and answer something quite +different. And as counters of imitation gold can be used only among +a group of people who agree to accept them as gold, or among those who +do not know the nature of gold, so universal historians and historians +of culture, not answering humanity's essential question, serve as +currency for some purposes of their own, only in universities and +among the mass of readers who have a taste for what they call "serious +reading." + + + + + +CHAPTER IV + + +Having abandoned the conception of the ancients as to the divine +subjection of the will of a nation to some chosen man and the +subjection of that man's will to the Deity, history cannot without +contradictions take a single step till it has chosen one of two +things: either a return to the former belief in the direct +intervention of the Deity in human affairs or a definite explanation +of the meaning of the force producing historical events and termed +"power." + +A return to the first is impossible, the belief has been +destroyed; and so it is essential to explain what is meant by power. + +Napoleon ordered an army to be raised and go to war. We are so +accustomed to that idea and have become so used to it that the +question: why did six hundred thousand men go to fight when Napoleon +uttered certain words, seems to us senseless. He had the power and +so what he ordered was done. + +This reply is quite satisfactory if we believe that the power was +given him by God. But as soon as we do not admit that, it becomes +essential to determine what is this power of one man over others. + +It cannot be the direct physical power of a strong man over a weak +one--a domination based on the application or threat of physical +force, like the power of Hercules; nor can it be based on the effect +of moral force, as in their simplicity some historians think who say +that the leading figures in history are heroes, that is, men gifted +with a special strength of soul and mind called genius. This power +cannot be based on the predominance of moral strength, for, not to +mention heroes such as Napoleon about whose moral qualities opinions +differ widely, history shows us that neither a Louis XI nor a +Metternich, who ruled over millions of people, had any particular +moral qualities, but on the contrary were generally morally weaker +than any of the millions they ruled over. + +If the source of power lies neither in the physical nor in the moral +qualities of him who possesses it, it must evidently be looked for +elsewhere--in the relation to the people of the man who wields the +power. + +And that is how power is understood by the science of jurisprudence, +that exchange bank of history which offers to exchange history's +understanding of power for true gold. + +Power is the collective will of the people transferred, by expressed +or tacit consent, to their chosen rulers. + +In the domain of jurisprudence, which consists of discussions of how +a state and power might be arranged were it possible for all that to +be arranged, it is all very clear; but when applied to history that +definition of power needs explanation. + +The science of jurisprudence regards the state and power as the +ancients regarded fire--namely, as something existing absolutely. +But for history, the state and power are merely phenomena, just as for +modern physics fire is not an element but a phenomenon. + +From this fundamental difference between the view held by history +and that held by jurisprudence, it follows that jurisprudence can tell +minutely how in its opinion power should be constituted and what +power--existing immutably outside time--is, but to history's questions +about the meaning of the mutations of power in time it can answer +nothing. + +If power be the collective will of the people transferred to their +ruler, was Pugachev a representative of the will of the people? If +not, then why was Napoleon I? Why was Napoleon III a criminal when +he was taken prisoner at Boulogne, and why, later on, were those +criminals whom he arrested? + +Do palace revolutions--in which sometimes only two or three people +take part--transfer the will of the people to a new ruler? In +international relations, is the will of the people also transferred to +their conqueror? Was the will of the Confederation of the Rhine +transferred to Napoleon in 1806? Was the will of the Russian people +transferred to Napoleon in 1809, when our army in alliance with the +French went to fight the Austrians? + +To these questions three answers are possible: + +Either to assume (1) that the will of the people is always +unconditionally transferred to the ruler or rulers they have chosen, +and that therefore every emergence of a new power, every struggle +against the power once appointed, should be absolutely regarded as +an infringement of the real power; or (2) that the will of the +people is transferred to the rulers conditionally, under definite +and known conditions, and to show that all limitations, conflicts, and +even destructions of power result from a nonobservance by the rulers +of the conditions under which their power was entrusted to them; or +(3) that the will of the people is delegated to the rulers +conditionally, but that the conditions are unknown and indefinite, and +that the appearance of several authorities, their struggles and +their falls, result solely from the greater or lesser fulfillment by +the rulers of these unknown conditions on which the will of the people +is transferred from some people to others. + +And these are the three ways in which the historians do explain +the relation of the people to their rulers. + +Some historians--those biographical and specialist historians +already referred to--in their simplicity failing to understand the +question of the meaning of power, seem to consider that the collective +will of the people is unconditionally transferred to historical +persons, and therefore when describing some single state they assume +that particular power to be the one absolute and real power, and +that any other force opposing this is not a power but a violation of +power--mere violence. + +Their theory, suitable for primitive and peaceful periods of +history, has the inconvenience--in application to complex and stormy +periods in the life of nations during which various powers arise +simultaneously and struggle with one another--that a Legitimist +historian will prove that the National Convention, the Directory, +and Bonaparte were mere infringers of the true power, while a +Republican and a Bonapartist will prove: the one that the Convention +and the other that the Empire was the real power, and that all the +others were violations of power. Evidently the explanations +furnished by these historians being mutually contradictory can only +satisfy young children. + +Recognizing the falsity of this view of history, another set of +historians say that power rests on a conditional delegation of the +will of the people to their rulers, and that historical leaders have +power only conditionally on carrying out the program that the will +of the people has by tacit agreement prescribed to them. But what this +program consists in these historians do not say, or if they do they +continually contradict one another. + +Each historian, according to his view of what constitutes a nation's +progress, looks for these conditions in the greatness, wealth, +freedom, or enlightenment of citizens of France or some other country. +But not to mention the historians' contradictions as to the nature +of this program--or even admitting that some one general program of +these conditions exists--the facts of history almost always contradict +that theory. If the conditions under which power is entrusted +consist in the wealth, freedom, and enlightenment of the people, how +is it that Louis XIV and Ivan the Terrible end their reigns +tranquilly, while Louis XVI and Charles I are executed by their +people? To this question historians reply that Louis XIV's activity, +contrary to the program, reacted on Louis XVI. But why did it not +react on Louis XIV or on Louis XV--why should it react just on Louis +XVI? And what is the time limit for such reactions? To these questions +there are and can be no answers. Equally little does this view explain +why for several centuries the collective will is not withdrawn from +certain rulers and their heirs, and then suddenly during a period of +fifty years is transferred to the Convention, to the Directory, to +Napoleon, to Alexander, to Louis XVIII, to Napoleon again, to +Charles X, to Louis Philippe, to a Republican government, and to +Napoleon III. When explaining these rapid transfers of the people's +will from one individual to another, especially in view of +international relations, conquests, and alliances, the historians +are obliged to admit that some of these transfers are not normal +delegations of the people's will but are accidents dependent on +cunning, on mistakes, on craft, or on the weakness of a diplomatist, a +ruler, or a party leader. So that the greater part of the events of +history--civil wars, revolutions, and conquests--are presented by +these historians not as the results of free transferences of the +people's will, but as results of the ill-directed will of one or +more individuals, that is, once again, as usurpations of power. And so +these historians also see and admit historical events which are +exceptions to the theory. + +These historians resemble a botanist who, having noticed that some +plants grow from seeds producing two cotyledons, should insist that +all that grows does so by sprouting into two leaves, and that the +palm, the mushroom, and even the oak, which blossom into full growth +and no longer resemble two leaves, are deviations from the theory. + +Historians of the third class assume that the will of the people +is transferred to historic personages conditionally, but that the +conditions are unknown to us. They say that historical personages have +power only because they fulfill the will of the people which has +been delegated to them. + +But in that case, if the force that moves nations lies not in the +historic leaders but in the nations themselves, what significance have +those leaders? + +The leaders, these historians tell us, express the will of the +people: the activity of the leaders represents the activity of the +people. + +But in that case the question arises whether all the activity of the +leaders serves as an expression of the people's will or only some part +of it. If the whole activity of the leaders serves as the expression +of the people's will, as some historians suppose, then all the details +of the court scandals contained in the biographies of a Napoleon or +a Catherine serve to express the life of the nation, which is +evident nonsense; but if it is only some particular side of the +activity of an historical leader which serves to express the +people's life, as other so-called "philosophical" historians +believe, then to determine which side of the activity of a leader +expresses the nation's life, we have first of all to know in what +the nation's life consists. + +Met by this difficulty historians of that class devise some most +obscure, impalpable, and general abstraction which can cover all +conceivable occurrences, and declare this abstraction to be the aim of +humanity's movement. The most usual generalizations adopted by +almost all the historians are: freedom, equality, enlightenment, +progress, civilization, and culture. Postulating some generalization +as the goal of the movement of humanity, the historians study the +men of whom the greatest number of monuments have remained: kings, +ministers, generals, authors, reformers, popes, and journalists, to +the extent to which in their opinion these persons have promoted or +hindered that abstraction. But as it is in no way proved that the +aim of humanity does consist in freedom, equality, enlightenment, or +civilization, and as the connection of the people with the rulers +and enlighteners of humanity is only based on the arbitrary assumption +that the collective will of the people is always transferred to the +men whom we have noticed, it happens that the activity of the millions +who migrate, burn houses, abandon agriculture, and destroy one another +never is expressed in the account of the activity of some dozen people +who did not burn houses, practice agriculture, or slay their fellow +creatures. + +History proves this at every turn. Is the ferment of the peoples +of the west at the end of the eighteenth century and their drive +eastward explained by the activity of Louis XIV, XV, and XVI, their +mistresses and ministers, and by the lives of Napoleon, Rousseau, +Diderot, Beaumarchais, and others? + +Is the movement of the Russian people eastward to Kazan and +Siberia expressed by details of the morbid character of Ivan the +Terrible and by his correspondence with Kurbski? + +Is the movement of the peoples at the time of the Crusades explained +by the life and activity of the Godfreys and the Louis-es and their +ladies? For us that movement of the peoples from west to east, without +leaders, with a crowd of vagrants, and with Peter the Hermit, +remains incomprehensible. And yet more incomprehensible is the +cessation of that movement when a rational and sacred aim for the +Crusade--the deliverance of Jerusalem--had been clearly defined by +historic leaders. Popes, kings, and knights incited the peoples to +free the Holy Land; but the people did not go, for the unknown cause +which had previously impelled them to go no longer existed. The +history of the Godfreys and the Minnesingers can evidently not cover +the life of the peoples. And the history of the Godfreys and the +Minnesingers has remained the history of Godfreys and Minnesingers, +but the history of the life of the peoples and their impulses has +remained unknown. + +Still less does the history of authors and reformers explain to us +the life of the peoples. + +The history of culture explains to us the impulses and conditions of +life and thought of a writer or a reformer. We learn that Luther had a +hot temper and said such and such things; we learn that Rousseau was +suspicious and wrote such and such books; but we do not learn why +after the Reformation the peoples massacred one another, nor why +during the French Revolution they guillotined one another. + +If we unite both these kinds of history, as is done by the newest +historians, we shall have the history of monarchs and writers, but not +the history of the life of the peoples. + + + + + +CHAPTER V + + +The life of the nations is not contained in the lives of a few +men, for the connection between those men and the nations has not been +found. The theory that this connection is based on the transference of +the collective will of a people to certain historical personages is an +hypothesis unconfirmed by the experience of history. + +The theory of the transference of the collective will of the +people to historic persons may perhaps explain much in the domain of +jurisprudence and be essential for its purposes, but in its +application to history, as soon as revolutions, conquests, or civil +wars occur--that is, as soon as history begins--that theory explains +nothing. + +The theory seems irrefutable just because the act of transference of +the people's will cannot be verified, for it never occurred. + +Whatever happens and whoever may stand at the head of affairs, the +theory can always say that such and such a person took the lead +because the collective will was transferred to him. + +The replies this theory gives to historical questions are like the +replies of a man who, watching the movements of a herd of cattle and +paying no attention to the varying quality of the pasturage in +different parts of the field, or to the driving of the herdsman, +should attribute the direction the herd takes to what animal happens +to be at its head. + +"The herd goes in that direction because the animal in front leads +it and the collective will of all the other animals is vested in +that leader." This is what historians of the first class say--those +who assume the unconditional transference of the people's will. + +"If the animals leading the herd change, this happens because the +collective will of all the animals is transferred from one leader to +another, according to whether the animal is or is not leading them +in the direction selected by the whole herd." Such is the reply +historians who assume that the collective will of the people is +delegated to rulers under conditions which they regard as known. (With +this method of observation it often happens that the observer, +influenced by the direction he himself prefers, regards those as +leaders who, owing to the people's change of direction, are no +longer in front, but on one side, or even in the rear.) + +"If the animals in front are continually changing and the +direction of the whole herd is constantly altered, this is because +in order to follow a given direction the animals transfer their will +to the animals that have attracted our attention, and to study the +movements of the herd we must watch the movements of all the prominent +animals moving on all sides of the herd." So say the third class of +historians who regard all historical persons, from monarchs to +journalists, as the expression of their age. + +The theory of the transference of the will of the people to historic +persons is merely a paraphrase--a restatement of the question in other +words. + +What causes historical events? Power. What is power? Power is the +collective will of the people transferred to one person. Under what +condition is the will of the people delegated to one person? On +condition that that person expresses the will of the whole people. +That is, power is power: in other words, power is a word the meaning +of which we do not understand. + + +If the realm of human knowledge were confined to abstract reasoning, +then having subjected to criticism the explanation of "power" that +juridical science gives us, humanity would conclude that power is +merely a word and has no real existence. But to understand phenomena +man has, besides abstract reasoning, experience by which he verifies +his reflections. And experience tells us that power is not merely a +word but an actually existing phenomenon. + +Not to speak of the fact that no description of the collective +activity of men can do without the conception of power, the +existence of power is proved both by history and by observing +contemporary events. + +Whenever an event occurs a man appears or men appear, by whose +will the event seems to have taken place. Napoleon III issues a decree +and the French go to Mexico. The King of Prussia and Bismarck issue +decrees and an army enters Bohemia. Napoleon I issues a decree and +an army enters Russia. Alexander I gives a command and the French +submit to the Bourbons. Experience shows us that whatever event occurs +it is always related to the will of one or of several men who have +decreed it. + +The historians, in accord with the old habit of acknowledging divine +intervention in human affairs, want to see the cause of events in +the expression of the will of someone endowed with power, but that +supposition is not confirmed either by reason or by experience. + +On the one side reflection shows that the expression of a man's +will--his words--are only part of the general activity expressed in an +event, as for instance in a war or a revolution, and so without +assuming an incomprehensible, supernatural force--a miracle--one +cannot admit that words can be the immediate cause of the movements of +millions of men. On the other hand, even if we admitted that words +could be the cause of events, history shows that the expression of the +will of historical personages does not in most cases produce any +effect, that is to say, their commands are often not executed, and +sometimes the very opposite of what they order occurs. + +Without admitting divine intervention in the affairs of humanity +we cannot regard "power" as the cause of events. + +Power, from the standpoint of experience, is merely the relation +that exists between the expression of someone's will and the execution +of that will by others. + +To explain the conditions of that relationship we must first +establish a conception of the expression of will, referring it to +man and not to the Deity. + +If the Deity issues a command, expresses His will, as ancient +history tells us, the expression of that will is independent of time +and is not caused by anything, for the Divinity is not controlled by +an event. But speaking of commands that are the expression of the will +of men acting in time and in relation to one another, to explain the +connection of commands with events we must restore: (1) the +condition of all that takes place: the continuity of movement in +time both of the events and of the person who commands, and (2) the +inevitability of the connection between the person commanding and +those who execute his command. + + + + + +CHAPTER VI + + +Only the expression of the will of the Deity, not dependent on time, +can relate to a whole series of events occurring over a period of +years or centuries, and only the Deity, independent of everything, can +by His sole will determine the direction of humanity's movement; but +man acts in time and himself takes part in what occurs. + +Reinstating the first condition omitted, that of time, we see that +no command can be executed without some preceding order having been +given rendering the execution of the last command possible. + +No command ever appears spontaneously, or itself covers a whole +series of occurrences; but each command follows from another, and +never refers to a whole series of events but always to one moment only +of an event. + +When, for instance, we say that Napoleon ordered armies to go to +war, we combine in one simultaneous expression a whole series of +consecutive commands dependent one on another. Napoleon could not have +commanded an invasion of Russia and never did so. Today he ordered +such and such papers to be written to Vienna, to Berlin, and to +Petersburg; tomorrow such and such decrees and orders to the army, the +fleet, the commissariat, and so on and so on--millions of commands, +which formed a whole series corresponding to a series of events +which brought the French armies into Russia. + +If throughout his reign Napoleon gave commands concerning an +invasion of England and expended on no other undertaking so much +time and effort, and yet during his whole reign never once attempted +to execute that design but undertook an expedition into Russia, with +which country he considered it desirable to be in alliance (a +conviction he repeatedly expressed)--this came about because his +commands did not correspond to the course of events in the first case, +but did so correspond in the latter. + +For an order to be certainly executed, it is necessary that a man +should order what can be executed. But to know what can and what +cannot be executed is impossible, not only in the case of Napoleon's +invasion of Russia in which millions participated, but even in the +simplest event, for in either case millions of obstacles may arise +to prevent its execution. Every order executed is always one of an +immense number unexecuted. All the impossible orders inconsistent with +the course of events remain unexecuted. Only the possible ones get +linked up with a consecutive series of commands corresponding to a +series of events, and are executed. + +Our false conception that an event is caused by a command which +precedes it is due to the fact that when the event has taken place and +out of thousands of others those few commands which were consistent +with that event have been executed, we forget about the others that +were not executed because they could not be. Apart from that, the +chief source of our error in this matter is due to the fact that in +the historical accounts a whole series of innumerable, diverse, and +petty events, such for instance as all those which led the French +armies to Russia, is generalized into one event in accord with the +result produced by that series of events, and corresponding with +this generalization the whole series of commands is also generalized +into a single expression of will. + +We say that Napoleon wished to invade Russia and invaded it. In +reality in all Napoleon's activity we never find anything resembling +an expression of that wish, but find a series of orders, or +expressions of his will, very variously and indefinitely directed. +Amid a long series of unexecuted orders of Napoleon's one series, +for the campaign of 1812, was carried out--not because those orders +differed in any way from the other, unexecuted orders but because they +coincided with the course of events that led the French army into +Russia; just as in stencil work this or that figure comes out not +because the color was laid on from this side or in that way, but +because it was laid on from all sides over the figure cut in the +stencil. + +So that examining the relation in time of the commands to the +events, we find that a command can never be the cause of the event, +but that a certain definite dependence exists between the two. + +To understand in what this dependence consists it is necessary to +reinstate another omitted condition of every command proceeding not +from the Deity but from a man, which is, that the man who gives the +command himself takes part in. + +This relation of the commander to those he commands is just what +is called power. This relation consists in the following: + +For common action people always unite in certain combinations, in +which regardless of the difference of the aims set for the common +action, the relation between those taking part in it is always the +same. + +Men uniting in these combinations always assume such relations +toward one another that the larger number take a more direct share, +and the smaller number a less direct share, in the collective action +for which they have combined. + +Of all the combinations in which men unite for collective action one +of the most striking and definite examples is an army. + +Every army is composed of lower grades of the service--the rank +and file--of whom there are always the greatest number; of the next +higher military rank--corporals and noncommissioned officers of whom +there are fewer, and of still-higher officers of whom there are +still fewer, and so on to the highest military command which is +concentrated in one person. + +A military organization may be quite correctly compared to a cone, +of which the base with the largest diameter consists of the rank and +file; the next higher and smaller section of the cone consists of +the next higher grades of the army, and so on to the apex, the point +of which will represent the commander in chief. + +The soldiers, of whom there are the most, form the lower section +of the cone and its base. The soldier himself does the stabbing, +hacking, burning, and pillaging, and always receives orders for +these actions from men above him; he himself never gives an order. The +noncommissioned officers (of whom there are fewer) perform the +action itself less frequently than the soldiers, but they already give +commands. An officer still less often acts directly himself, but +commands still more frequently. A general does nothing but command the +troops, indicates the objective, and hardly ever uses a weapon +himself. The commander in chief never takes direct part in the +action itself, but only gives general orders concerning the movement +of the mass of the troops. A similar relation of people to one another +is seen in every combination of men for common activity--in +agriculture, trade, and every administration. + +And so without particularly analyzing all the contiguous sections of +a cone and of the ranks of an army, or the ranks and positions in +any administrative or public business whatever from the lowest to +the highest, we see a law by which men, to take associated action, +combine in such relations that the more directly they participate in +performing the action the less they can command and the more +numerous they are, while the less their direct participation in the +action itself, the more they command and the fewer of them there +are; rising in this way from the lowest ranks to the man at the top, +who takes the least direct share in the action and directs his +activity chiefly to commanding. + +This relation of the men who command to those they command is what +constitutes the essence of the conception called power. + +Having restored the condition of time under which all events +occur, find that a command is executed only when it is related to a +corresponding series of events. Restoring the essential condition of +relation between those who command and those who execute, we find that +by the very nature of the case those who command take the smallest +part in the action itself and that their activity is exclusively +directed to commanding. + + + + + +CHAPTER VII + + +When an event is taking place people express their opinions and +wishes about it, and as the event results from the collective activity +of many people, some one of the opinions or wishes expressed is sure +to be fulfilled if but approximately. When one of the opinions +expressed is fulfilled, that opinion gets connected with the event +as a command preceding it. + +Men are hauling a log. Each of them expresses his opinion as to +how and where to haul it. They haul the log away, and it happens +that this is done as one of them said. He ordered it. There we have +command and power in their primary form. The man who worked most +with his hands could not think so much about what he was doing, or +reflect on or command what would result from the common activity; +while the man who commanded more would evidently work less with his +hands on account of his greater verbal activity. + +When some larger concourse of men direct their activity to a +common aim there is a yet sharper division of those who, because their +activity is given to directing and commanding, take less less part +in the direct work. + +When a man works alone he always has a certain set of reflections +which as it seems to him directed his past activity, justify his +present activity, and guide him in planning his future actions. Just +the same is done by a concourse of people, allowing those who do not +take a direct part in the activity to devise considerations, +justifications, and surmises concerning their collective activity. + +For reasons known or unknown to us the French began to drown and +kill one another. And corresponding to the event its justification +appears in people's belief that this was necessary for the welfare +of France, for liberty, and for equality. People ceased to kill one +another, and this event was accompanied by its justification in the +necessity for a centralization of power, resistance to Europe, and +so on. Men went from the west to the east killing their fellow men, +and the event was accompanied by phrases about the glory of France, +the baseness of England, and so on. History shows us that these +justifications of the events have no common sense and are all +contradictory, as in the case of killing a man as the result of +recognizing his rights, and the killing of millions in Russia for +the humiliation of England. But these justifications have a very +necessary significance in their own day. + +These justifications release those who produce the events from moral +responsibility. These temporary aims are like the broom fixed in front +of a locomotive to clear the snow from the rails in front: they +clear men's moral responsibilities from their path. + +Without such justification there would be no reply to the simplest +question that presents itself when examining each historical event. +How is it that millions of men commit collective crimes--make war, +commit murder, and so on? + +With the present complex forms of political and social life in +Europe can any event that is not prescribed, decreed, or ordered by +monarchs, ministers, parliaments, or newspapers be imagined? Is +there any collective action which cannot find its justification in +political unity, in patriotism, in the balance of power, or in +civilization? So that every event that occurs inevitably coincides +with some expressed wish and, receiving a justification, presents +itself as the result of the will of one man or of several men. + +In whatever direction a ship moves, the flow of the waves it cuts +will always be noticeable ahead of it. To those on board the ship +the movement of those waves will be the only perceptible motion. + +Only by watching closely moment by moment the movement of that +flow and comparing it with the movement of the ship do we convince +ourselves that every bit of it is occasioned by the forward movement +of the ship, and that we were led into error by the fact that we +ourselves were imperceptibly moving. + +We see the same if we watch moment by moment the movement of +historical characters (that is, re-establish the inevitable +condition of all that occurs--the continuity of movement in time) +and do not lose sight of the essential connection of historical +persons with the masses. + +When the ship moves in one direction there is one and the same +wave ahead of it, when it turns frequently the wave ahead of it also +turns frequently. But wherever it may turn there always will be the +wave anticipating its movement. + +Whatever happens it always appears that just that event was foreseen +and decreed. Wherever the ship may go, the rush of water which neither +directs nor increases its movement foams ahead of it, and at a +distance seems to us not merely to move of itself but to govern the +ship's movement also. + + +Examining only those expressions of the will of historical persons +which, as commands, were related to events, historians have assumed +that the events depended on those commands. But examining the events +themselves and the connection in which the historical persons stood to +the people, we have found that they and their orders were dependent on +events. The incontestable proof of this deduction is that, however +many commands were issued, the event does not take place unless +there are other causes for it, but as soon as an event occurs--be it +what it may--then out of all the continually expressed wishes of +different people some will always be found which by their meaning +and their time of utterance are related as commands to the events. + +Arriving at this conclusion we can reply directly and positively +to these two essential questions of history: + +(1) What is power? + +(2) What force produces the movement of the nations? + +(1) Power is the relation of a given person to other individuals, in +which the more this person expresses opinions, predictions, and +justifications of the collective action that is performed, the less is +his participation in that action. + +(2) The movement of nations is caused not by power, nor by +intellectual activity, nor even by a combination of the two as +historians have supposed, but by the activity of all the people who +participate in the events, and who always combine in such a way that +those taking the largest direct share in the event take on +themselves the least responsibility and vice versa. + +Morally the wielder of power appears to cause the event; +physically it is those who submit to the power. But as the moral +activity is inconceivable without the physical, the cause of the event +is neither in the one nor in the other but in the union of the two. + +Or in other words, the conception of a cause is inapplicable to +the phenomena we are examining. + +In the last analysis we reach the circle of infinity--that final +limit to which in every domain of thought man's reason arrives if it +is not playing with the subject. Electricity produces heat, heat +produces electricity. Atoms attract each other and atoms repel one +another. + +Speaking of the interaction of heat and electricity and of atoms, we +cannot say why this occurs, and we say that it is so because it is +inconceivable otherwise, because it must be so and that it is a law. +The same applies to historical events. Why war and revolution occur we +do not know. We only know that to produce the one or the other action, +people combine in a certain formation in which they all take part, and +we say that this is so because it is unthinkable otherwise, or in +other words that it is a law. + + + + + +CHAPTER VIII + + +If history dealt only with external phenomena, the establishment +of this simple and obvious law would suffice and we should have +finished our argument. But the law of history relates to man. A +particle of matter cannot tell us that it does not feel the law of +attraction or repulsion and that that law is untrue, but man, who is +the subject of history, says plainly: I am free and am therefore not +subject to the law. + +The presence of the problem of man's free will, though +unexpressed, is felt at every step of history. + +All seriously thinking historians have involuntarily encountered +this question. All the contradictions and obscurities of history and +the false path historical science has followed are due solely to the +lack of a solution of that question. + +If the will of every man were free, that is, if each man could act +as he pleased, all history would be a series of disconnected +incidents. + +If in a thousand years even one man in a million could act freely, +that is, as he chose, it is evident that one single free act of that +man's in violation of the laws governing human action would destroy +the possibility of the existence of any laws for the whole of +humanity. + +If there be a single law governing the actions of men, free will +cannot exist, for then man's will is subject to that law. + +In this contradiction lies the problem of free will, which from most +ancient times has occupied the best human minds and from most +ancient times has been presented in its whole tremendous significance. + +The problem is that regarding man as a subject of observation from +whatever point of view--theological, historical, ethical, or +philosophic--we find a general law of necessity to which he (like +all that exists) is subject. But regarding him from within ourselves +as what we are conscious of, we feel ourselves to be free. + +This consciousness is a source of self-cognition quite apart from +and independent of reason. Through his reason man observes himself, +but only through consciousness does he know himself. + +Apart from consciousness of self no observation or application of +reason is conceivable. + +To understand, observe, and draw conclusions, man must first of +all be conscious of himself as living. A man is only conscious of +himself as a living being by the fact that he wills, that is, is +conscious of his volition. But his will--which forms the essence of +his life--man recognizes (and can but recognize) as free. + +If, observing himself, man sees that his will is always directed +by one and the same law (whether he observes the necessity of taking +food, using his brain, or anything else) he cannot recognize this +never-varying direction of his will otherwise than as a limitation +of it. Were it not free it could not be limited. A man's will seems to +him to be limited just because he is not conscious of it except as +free. + +You say: I am not and am not free. But I have lifted my hand and let +it fall. Everyone understands that this illogical reply is an +irrefutable demonstration of freedom. + +That reply is the expression of a consciousness that is not +subject to reason. + +If the consciousness of freedom were not a separate and +independent source of self-consciousness it would be subject to +reasoning and to experience, but in fact such subjection does not +exist and is inconceivable. + +A series of experiments and arguments proves to every man that he, +as an object of observation, is subject to certain laws, and man +submits to them and never resists the laws of gravity or +impermeability once he has become acquainted with them. But the same +series of experiments and arguments proves to him that the complete +freedom of which he is conscious in himself is impossible, and that +his every action depends on his organization, his character, and the +motives acting upon him; yet man never submits to the deductions of +these experiments and arguments. Having learned from experiment and +argument that a stone falls downwards, a man indubitably believes this +and always expects the law that he has learned to be fulfilled. + +But learning just as certainly that his will is subject to laws, +he does not and cannot believe this. + +However often experiment and reasoning may show a man that under the +same conditions and with the same character he will do the same +thing as before, yet when under the same conditions and with the +same character he approaches for the thousandth time the action that +always ends in the same way, he feels as certainly convinced as before +the experiment that he can act as he pleases. Every man, savage or +sage, however incontestably reason and experiment may prove to him +that it is impossible to imagine two different courses of action in +precisely the same conditions, feels that without this irrational +conception (which constitutes the essence of freedom) he cannot +imagine life. He feels that however impossible it may be, it is so, +for without this conception of freedom not only would he be unable +to understand life, but he would be unable to live for a single +moment. + +He could not live, because all man's efforts, all his impulses to +life, are only efforts to increase freedom. Wealth and poverty, fame +and obscurity, power and subordination, strength and weakness, +health and disease, culture and ignorance, work and leisure, repletion +and hunger, virtue and vice, are only greater or lesser degrees of +freedom. + +A man having no freedom cannot be conceived of except as deprived of +life. + +If the conception of freedom appears to reason to be a senseless +contradiction like the possibility of performing two actions at one +and the same instant of time, or of an effect without a cause, that +only proves that consciousness is not subject to reason. + +This unshakable, irrefutable consciousness of freedom, +uncontrolled by experiment or argument, recognized by all thinkers and +felt by everyone without exception, this consciousness without which +no conception of man is possible constitutes the other side of the +question. + +Man is the creation of an all-powerful, all-good, and all-seeing +God. What is sin, the conception of which arises from the +consciousness of man's freedom? That is a question for theology. + +The actions of men are subject to general immutable laws expressed +in statistics. What is man's responsibility to society, the conception +of which results from the conception of freedom? That is a question +for jurisprudence. + +Man's actions proceed from his innate character and the motives +acting upon him. What is conscience and the perception of right and +wrong in actions that follows from the consciousness of freedom? +That is a question for ethics. + +Man in connection with the general life of humanity appears +subject to laws which determine that life. But the same man apart from +that connection appears to free. How should the past life of nations +and of humanity be regarded--as the result of the free, or as the +result of the constrained, activity of man? That is a question for +history. + +Only in our self-confident day of the popularization of knowledge- +thanks to that most powerful engine of ignorance, the diffusion of +printed matter--has the question of the freedom of will been put on +a level on which the question itself cannot exist. In our time the +majority of so-called advanced people--that is, the crowd of +ignoramuses--have taken the work of the naturalists who deal with +one side of the question for a solution of the whole problem. + +They say and write and print that the soul and freedom do not exist, +for the life of man is expressed by muscular movements and muscular +movements are conditioned by the activity of the nerves; the soul +and free will do not exist because at an unknown period of time we +sprang from the apes. They say this, not at all suspecting that +thousands of years ago that same law of necessity which with such +ardor they are now trying to prove by physiology and comparative +zoology was not merely acknowledged by all the religions and all the +thinkers, but has never been denied. They do not see that the role +of the natural sciences in this matter is merely to serve as an +instrument for the illumination of one side of it. For the fact +that, from the point of view of observation, reason and the will are +merely secretions of the brain, and that man following the general law +may have developed from lower animals at some unknown period of +time, only explains from a fresh side the truth admitted thousands +of years ago by all the religious and philosophic theories--that +from the point of view of reason man is subject to the law of +necessity; but it does not advance by a hair's breadth the solution of +the question, which has another, opposite, side, based on the +consciousness of freedom. + +If men descended from the apes at an unknown period of time, that is +as comprehensible as that they were made from a handful of earth at +a certain period of time (in the first case the unknown quantity is +the time, in the second case it is the origin); and the question of +how man's consciousness of freedom is to be reconciled with the law of +necessity to which he is subject cannot be solved by comparative +physiology and zoology, for in a frog, a rabbit, or an ape, we can +observe only the muscular nervous activity, but in man we observe +consciousness as well as the muscular and nervous activity. + +The naturalists and their followers, thinking they can solve this +question, are like plasterers set to plaster one side of the walls +of a church who, availing themselves of the absence of the chief +superintendent of the work, should in an access of zeal plaster over +the windows, icons, woodwork, and still unbuttressed walls, and should +be delighted that from their point of view as plasterers, everything +is now so smooth and regular. + + + + + +CHAPTER IX + + +For the solution of the question of free will or inevitability, +history has this advantage over other branches of knowledge in which +the question is dealt with, that for history this question does not +refer to the essence of man's free will but its manifestation in the +past and under certain conditions. + +In regard to this question, history stands to the other sciences +as experimental science stands to abstract science. + +The subject for history is not man's will itself but our +presentation of it. + +And so for history, the insoluble mystery presented by the +incompatibility of free will and inevitability does not exist as it +does for theology, ethics, and philosophy. History surveys a +presentation of man's life in which the union of these two +contradictions has already taken place. + +In actual life each historic event, each human action, is very +clearly and definitely understood without any sense of +contradiction, although each event presents itself as partly free +and partly compulsory. + +To solve the question of how freedom and necessity are combined +and what constitutes the essence of these two conceptions, the +philosophy of history can and should follow a path contrary to that +taken by other sciences. Instead of first defining the conceptions +of freedom and inevitability in themselves, and then ranging the +phenomena of life under those definitions, history should deduce a +definition of the conception of freedom and inevitability themselves +from the immense quantity of phenomena of which it is cognizant and +that always appear dependent on these two elements. + +Whatever presentation of the activity of many men or of an +individual we may consider, we always regard it as the result partly +of man's free will and partly of the law of inevitability. + +Whether we speak of the migration of the peoples and the +incursions of the barbarians, or of the decrees of Napoleon III, or of +someone's action an hour ago in choosing one direction out of +several for his walk, we are unconscious of any contradiction. The +degree of freedom and inevitability governing the actions of these +people is clearly defined for us. + +Our conception of the degree of freedom often varies according to +differences in the point of view from which we regard the event, but +every human action appears to us as a certain combination of freedom +and inevitability. In every action we examine we see a certain measure +of freedom and a certain measure of inevitability. And always the more +freedom we see in any action the less inevitability do we perceive, +and the more inevitability the less freedom. + +The proportion of freedom to inevitability decreases and increases +according to the point of view from which the action is regarded, +but their relation is always one of inverse proportion. + +A sinking man who clutches at another and drowns him; or a hungry +mother exhausted by feeding her baby, who steals some food; or a man +trained to discipline who on duty at the word of command kills a +defenseless man--seem less guilty, that is, less free and more subject +to the law of necessity, to one who knows the circumstances in which +these people were placed, and more free to one who does not know +that the man was himself drowning, that the mother was hungry, that +the soldier was in the ranks, and so on. Similarly a man who committed +a murder twenty years ago and has since lived peaceably and harmlessly +in society seems less guilty and his action more due to the law of +inevitability, to someone who considers his action after twenty +years have elapsed than to one who examined it the day after it was +committed. And in the same way every action of an insane, intoxicated, +or highly excited man appears less free and more inevitable to one who +knows the mental condition of him who committed the action, and +seems more free and less inevitable to one who does not know it. In +all these cases the conception of freedom is increased or diminished +and the conception of compulsion is correspondingly decreased or +increased, according to the point of view from which the action is +regarded. So that the greater the conception of necessity the +smaller the conception of freedom and vice versa. + +Religion, the common sense of mankind, the science of jurisprudence, +and history itself understand alike this relation between necessity +and freedom. + +All cases without exception in which our conception of freedom and +necessity is increased and diminished depend on three considerations: + +(1) The relation to the external world of the man who commits the +deeds. + +(2) His relation to time. + +(3) His relation to the causes leading to the action. + +The first consideration is the clearness of our perception of the +man's relation to the external world and the greater or lesser +clearness of our understanding of the definite position occupied by +the man in relation to everything coexisting with him. This is what +makes it evident that a drowning man is less free and more subject +to necessity than one standing on dry ground, and that makes the +actions of a man closely connected with others in a thickly +populated district, or of one bound by family, official, or business +duties, seem certainly less free and more subject to necessity than +those of a man living in solitude and seclusion. + +If we consider a man alone, apart from his relation to everything +around him, each action of his seems to us free. But if we see his +relation to anything around him, if we see his connection with +anything whatever--with a man who speaks to him, a book he reads, +the work on which he is engaged, even with the air he breathes or +the light that falls on the things about him--we see that each of +these circumstances has an influence on him and controls at least some +side of his activity. And the more we perceive of these influences the +more our conception of his freedom diminishes and the more our +conception of the necessity that weighs on him increases. + +The second consideration is the more or less evident time relation +of the man to the world and the clearness of our perception of the +place the man's action occupies in time. That is the ground which +makes the fall of the first man, resulting in the production of the +human race, appear evidently less free than a man's entry into +marriage today. It is the reason why the life and activity of people +who lived centuries ago and are connected with me in time cannot +seem to me as free as the life of a contemporary, the consequences +of which are still unknown to me. + +The degree of our conception of freedom or inevitability depends +in this respect on the greater or lesser lapse of time between the +performance of the action and our judgment of it. + +If I examine an act I performed a moment ago in approximately the +same circumstances as those I am in now, my action appears to me +undoubtedly free. But if I examine an act performed a month ago, +then being in different circumstances, I cannot help recognizing +that if that act had not been committed much that resulted from it- +good, agreeable, and even essential--would not have taken place. If +I reflect on an action still more remote, ten years ago or more, +then the consequences of my action are still plainer to me and I +find it hard to imagine what would have happened had that action not +been performed. The farther I go back in memory, or what is the same +thing the farther I go forward in my judgment, the more doubtful +becomes my belief in the freedom of my action. + +In history we find a very similar progress of conviction +concerning the part played by free will in the general affairs of +humanity. A contemporary event seems to us to be indubitably the doing +of all the known participants, but with a more remote event we already +see its inevitable results which prevent our considering anything else +possible. And the farther we go back in examining events the less +arbitrary do they appear. + +The Austro-Prussian war appears to us undoubtedly the result of +the crafty conduct of Bismarck, and so on. The Napoleonic wars still +seem to us, though already questionably, to be the outcome of their +heroes' will. But in the Crusades we already see an event occupying +its definite place in history and without which we cannot imagine +the modern history of Europe, though to the chroniclers of the +Crusades that event appeared as merely due to the will of certain +people. In regard to the migration of the peoples it does not enter +anyone's head today to suppose that the renovation of the European +world depended on Attila's caprice. The farther back in history the +object of our observation lies, the more doubtful does the free will +of those concerned in the event become and the more manifest the law +of inevitability. + +The third consideration is the degree to which we apprehend that +endless chain of causation inevitably demanded by reason, in which +each phenomenon comprehended, and therefore man's every action, must +have its definite place as a result of what has gone before and as a +cause of what will follow. + +The better we are acquainted with the physiological, +psychological, and historical laws deduced by observation and by which +man is controlled, and the more correctly we perceive the +physiological, psychological, and historical causes of the action, and +the simpler the action we are observing and the less complex the +character and mind of the man in question, the more subject to +inevitability and the less free do our actions and those of others +appear. + +When we do not at all understand the cause of an action, whether a +crime, a good action, or even one that is simply nonmoral, we +ascribe a greater amount of freedom to it. In the case of a crime we +most urgently demand the punishment for such an act; in the case of +a virtuous act we rate its merit most highly. In an indifferent case +we recognize in it more individuality, originality, and +independence. But if even one of the innumerable causes of the act +is known to us we recognize a certain element of necessity and are +less insistent on punishment for the crime, or the acknowledgment of +the merit of the virtuous act, or the freedom of the apparently +original action. That a criminal was reared among male factors +mitigates his fault in our eyes. The self-sacrifice of a father or +mother, or self-sacrifice with the possibility of a reward, is more +comprehensible than gratuitous self-sacrifice, and therefore seems +less deserving of sympathy and less the result of free will. The +founder of a sect or party, or an inventor, impresses us less when +we know how or by what the way was prepared for his activity. If we +have a large range of examples, if our observation is constantly +directed to seeking the correlation of cause and effect in people's +actions, their actions appear to us more under compulsion and less +free the more correctly we connect the effects with the causes. If +we examined simple actions and had a vast number of such actions under +observation, our conception of their inevitability would be still +greater. The dishonest conduct of the son of a dishonest father, the +misconduct of a woman who had fallen into bad company, a drunkard's +relapse into drunkenness, and so on are actions that seem to us less +free the better we understand their cause. If the man whose actions we +are considering is on a very low stage of mental development, like a +child, a madman, or a simpleton--then, knowing the causes of the act +and the simplicity of the character and intelligence in question, we +see so large an element of necessity and so little free will that as +soon as we know the cause prompting the action we can foretell the +result. + +On these three considerations alone is based the conception of +irresponsibility for crimes and the extenuating circumstances admitted +by all legislative codes. The responsibility appears greater or less +according to our greater or lesser knowledge of the circumstances in +which the man was placed whose action is being judged, and according +to the greater or lesser interval of time between the commission of +the action and its investigation, and according to the greater or +lesser understanding of the causes that led to the action. + + + + + +CHAPTER X + + +Thus our conception of free will and inevitability gradually +diminishes or increases according to the greater or lesser +connection with the external world, the greater or lesser remoteness +of time, and the greater or lesser dependence on the causes in +relation to which we contemplate a man's life. + +So that if we examine the case of a man whose connection with the +external world is well known, where the time between the action and +its examination is great, and where the causes of the action are +most accessible, we get the conception of a maximum of inevitability +and a minimum of free will. If we examine a man little dependent on +external conditions, whose action was performed very recently, and the +causes of whose action are beyond our ken, we get the conception of +a minimum of inevitability and a maximum of freedom. + +In neither case--however we may change our point of view, however +plain we may make to ourselves the connection between the man and +the external world, however inaccessible it may be to us, however long +or short the period of time, however intelligible or +incomprehensible the causes of the action may be--can we ever conceive +either complete freedom or complete necessity. + +(1) To whatever degree we may imagine a man to be exempt from the +influence of the external world, we never get a conception of +freedom in space. Every human action is inevitably conditioned by what +surrounds him and by his own body. I lift my arm and let it fall. My +action seems to me free; but asking myself whether I could raise my +arm in every direction, I see that I raised it in the direction in +which there was least obstruction to that action either from things +around me or from the construction of my own body. I chose one out +of all the possible directions because in it there were fewest +obstacles. For my action to be free it was necessary that it should +encounter no obstacles. To conceive of a man being free we must +imagine him outside space, which is evidently impossible. + +(2) However much we approximate the time of judgment to the time +of the deed, we never get a conception of freedom in time. For if I +examine an action committed a second ago I must still recognize it +as not being free, for it is irrevocably linked to the moment at which +it was committed. Can I lift my arm? I lift it, but ask myself: +could I have abstained from lifting my arm at the moment that has +already passed? To convince myself of this I do not lift it the next +moment. But I am not now abstaining from doing so at the first +moment when I asked the question. Time has gone by which I could not +detain, the arm I then lifted is no longer the same as the arm I now +refrain from lifting, nor is the air in which I lifted it the same +that now surrounds me. The moment in which the first movement was made +is irrevocable, and at that moment I could make only one movement, and +whatever movement I made would be the only one. That I did not lift my +arm a moment later does not prove that I could have abstained from +lifting it then. And since I could make only one movement at that +single moment of time, it could not have been any other. To imagine it +as free, it is necessary to imagine it in the present, on the boundary +between the past and the future--that is, outside time, which is +impossible. + +(3) However much the difficulty of understanding the causes may be +increased, we never reach a conception of complete freedom, that is, +an absence of cause. However inaccessible to us may be the cause of +the expression of will in any action, our own or another's, the +first demand of reason is the assumption of and search for a cause, +for without a cause no phenomenon is conceivable. I raise my arm to +perform an action independently of any cause, but my wish to perform +an action without a cause is the cause of my action. + +But even if--imagining a man quite exempt from all influences, +examining only his momentary action in the present, unevoked by any +cause--we were to admit so infinitely small a remainder of +inevitability as equaled zero, we should even then not have arrived at +the conception of complete freedom in man, for a being uninfluenced by +the external world, standing outside of time and independent of cause, +is no longer a man. + +In the same way we can never imagine the action of a man quite +devoid of freedom and entirely subject to the law of inevitability. + +(1) However we may increase our knowledge of the conditions of space +in which man is situated, that knowledge can never be complete, for +the number of those conditions is as infinite as the infinity of +space. And therefore so long as not all the conditions influencing men +are defined, there is no complete inevitability but a certain +measure of freedom remains. + +(2) However we may prolong the period of time between the action +we are examining and the judgment upon it, that period will be finite, +while time is infinite, and so in this respect too there can never +be absolute inevitability. + +(3) However accessible may be the chain of causation of any +action, we shall never know the whole chain since it is endless, and +so again we never reach absolute inevitability. + +But besides this, even if, admitting the remaining minimum of +freedom to equal zero, we assumed in some given case--as for +instance in that of a dying man, an unborn babe, or an idiot--complete +absence of freedom, by so doing we should destroy the very +conception of man in the case we are examining, for as soon as there +is no freedom there is also no man. And so the conception of the +action of a man subject solely to the law of inevitability without any +element of freedom is just as impossible as the conception of a +man's completely free action. + +And so to imagine the action of a man entirely subject to the law of +inevitability without any freedom, we must assume the knowledge of +an infinite number of space relations, an infinitely long period of +time, and an infinite series of causes. + +To imagine a man perfectly free and not subject to the law of +inevitability, we must imagine him all alone, beyond space, beyond +time, and free from dependence on cause. + +In the first case, if inevitability were possible without freedom we +should have reached a definition of inevitability by the laws of +inevitability itself, that is, a mere form without content. + +In the second case, if freedom were possible without inevitability +we should have arrived at unconditioned freedom beyond space, time, +and cause, which by the fact of its being unconditioned and +unlimited would be nothing, or mere content without form. + +We should in fact have reached those two fundamentals of which man's +whole outlook on the universe is constructed--the incomprehensible +essence of life, and the laws defining that essence. + +Reason says: (1) space with all the forms of matter that give it +visibility is infinite, and cannot be imagined otherwise. (2) Time +is infinite motion without a moment of rest and is unthinkable +otherwise. (3) The connection between cause and effect has no +beginning and can have no end. + +Consciousness says: (1) I alone am, and all that exists is but me, +consequently I include space. (2) I measure flowing time by the +fixed moment of the present in which alone I am conscious of myself as +living, consequently I am outside time. (3) I am beyond cause, for I +feel myself to be the cause of every manifestation of my life. + +Reason gives expression to the laws of inevitability. +Consciousness gives expression to the essence of freedom. + +Freedom not limited by anything is the essence of life, in man's +consciousness. Inevitability without content is man's reason in its +three forms. + +Freedom is the thing examined. Inevitability is what examines. +Freedom is the content. Inevitability is the form. + +Only by separating the two sources of cognition, related to one +another as form to content, do we get the mutually exclusive and +separately incomprehensible conceptions of freedom and inevitability. + +Only by uniting them do we get a clear conception of man's life. + +Apart from these two concepts which in their union mutually define +one another as form and content, no conception of life is possible. + +All that we know of the life of man is merely a certain relation +of free will to inevitability, that is, of consciousness to the laws +of reason. + +All that we know of the external world of nature is only a certain +relation of the forces of nature to inevitability, or of the essence +of life to the laws of reason. + +The great natural forces lie outside us and we are not conscious +of them; we call those forces gravitation, inertia, electricity, +animal force, and so on, but we are conscious of the force of life +in man and we call that freedom. + +But just as the force of gravitation, incomprehensible in itself but +felt by every man, is understood by us only to the extent to which +we know the laws of inevitability to which it is subject (from the +first knowledge that all bodies have weight, up to Newton's law), so +too the force of free will, incomprehensible in itself but of which +everyone is conscious, is intelligible to us only in as far as we know +the laws of inevitability to which it is subject (from the fact that +every man dies, up to the knowledge of the most complex economic and +historic laws). + +All knowledge is merely a bringing of this essence of life under the +laws of reason. + +Man's free will differs from every other force in that man is +directly conscious of it, but in the eyes of reason it in no way +differs from any other force. The forces of gravitation, +electricity, or chemical affinity are only distinguished from one +another in that they are differently defined by reason. Just so the +force of man's free will is distinguished by reason from the other +forces of nature only by the definition reason gives it. Freedom, +apart from necessity, that is, apart from the laws of reason that +define it, differs in no way from gravitation, or heat, or the force +that makes things grow; for reason, it is only a momentary undefinable +sensation of life. + +And as the undefinable essence of the force moving the heavenly +bodies, the undefinable essence of the forces of heat and electricity, +or of chemical affinity, or of the vital force, forms the content of +astronomy, physics, chemistry, botany, zoology, and so on, just in the +same way does the force of free will form the content of history. +But just as the subject of every science is the manifestation of +this unknown essence of life while that essence itself can only be the +subject of metaphysics, even the manifestation of the force of free +will in human beings in space, in time, and in dependence on cause +forms the subject of history, while free will itself is the subject of +metaphysics. + +In the experimental sciences what we know we call the laws of +inevitability, what is unknown to us we call vital force. Vital +force is only an expression for the unknown remainder over and above +what we know of the essence of life. + +So also in history what is known to us we call laws of +inevitability, what is unknown we call free will. Free will is for +history only an expression for the unknown remainder of what we know +about the laws of human life. + + + + + +CHAPTER XI + + +History examines the manifestations of man's free will in connection +with the external world in time and in dependence on cause, that is, +it defines this freedom by the laws of reason, and so history is a +science only in so far as this free will is defined by those laws. + +The recognition of man's free will as something capable of +influencing historical events, that is, as not subject to laws, is the +same for history as the recognition of a free force moving the +heavenly bodies would be for astronomy. + +That assumption would destroy the possibility of the existence of +laws, that is, of any science whatever. If there is even a single body +moving freely, then the laws of Kepler and Newton are negatived and no +conception of the movement of the heavenly bodies any longer exists. +If any single action is due to free will, then not a single historical +law can exist, nor any conception of historical events. + +For history, lines exist of the movement of human wills, one end +of which is hidden in the unknown but at the other end of which a +consciousness of man's will in the present moves in space, time, and +dependence on cause. + +The more this field of motion spreads out before our eyes, the +more evident are the laws of that movement. To discover and define +those laws is the problem of history. + +From the standpoint from which the science of history now regards +its subject on the path it now follows, seeking the causes of events +in man's freewill, a scientific enunciation of those laws is +impossible, for however man's free will may be restricted, as soon +as we recognize it as a force not subject to law, the existence of law +becomes impossible. + +Only by reducing this element of free will to the infinitesimal, +that is, by regarding it as an infinitely small quantity, can we +convince ourselves of the absolute inaccessibility of the causes, +and then instead of seeking causes, history will take the discovery of +laws as its problem. + +The search for these laws has long been begun and the new methods of +thought which history must adopt are being worked out simultaneously +with the self-destruction toward which--ever dissecting and dissecting +the causes of phenomena--the old method of history is moving. + +All human sciences have traveled along that path. Arriving at +infinitesimals, mathematics, the most exact of sciences, abandons +the process of analysis and enters on the new process of the +integration of unknown, infinitely small, quantities. Abandoning the +conception of cause, mathematics seeks law, that is, the property +common to all unknown, infinitely small, elements. + +In another form but along the same path of reflection the other +sciences have proceeded. When Newton enunciated the law of gravity +he did not say that the sun or the earth had a property of attraction; +he said that all bodies from the largest to the smallest have the +property of attracting one another, that is, leaving aside the +question of the cause of the movement of the bodies, he expressed +the property common to all bodies from the infinitely large to the +infinitely small. The same is done by the natural sciences: leaving +aside the question of cause, they seek for laws. History stands on the +same path. And if history has for its object the study of the movement +of the nations and of humanity and not the narration of episodes in +the lives of individuals, it too, setting aside the conception of +cause, should seek the laws common to all the inseparably +interconnected infinitesimal elements of free will. + + + + + +CHAPTER XII + + +From the time the law of Copernicus was discovered and proved, the +mere recognition of the fact that it was not the sun but the earth +that moves sufficed to destroy the whole cosmography of the +ancients. By disproving that law it might have been possible to retain +the old conception of the movements of the bodies, but without +disproving it, it would seem impossible to continue studying the +Ptolemaic worlds. But even after the discovery of the law of +Copernicus the Ptolemaic worlds were still studied for a long time. + +From the time the first person said and proved that the number of +births or of crimes is subject to mathematical laws, and that this +or that mode of government is determined by certain geographical and +economic conditions, and that certain relations of population to +soil produce migrations of peoples, the foundations on which history +had been built were destroyed in their essence. + +By refuting these new laws the former view of history might have +been retained; but without refuting them it would seem impossible to +continue studying historic events as the results of man's free will. +For if a certain mode of government was established or certain +migrations of peoples took place in consequence of such and such +geographic, ethnographic, or economic conditions, then the free will +of those individuals who appear to us to have established that mode of +government or occasioned the migrations can no longer be regarded as +the cause. + +And yet the former history continues to be studied side by side with +the laws of statistics, geography, political economy, comparative +philology, and geology, which directly contradict its assumptions. + +The struggle between the old views and the new was long and +stubbornly fought out in physical philosophy. Theology stood on +guard for the old views and accused the new of violating revelation. +But when truth conquered, theology established itself just as firmly +on the new foundation. + +Just as prolonged and stubborn is the struggle now proceeding +between the old and the new conception of history, and theology in the +same way stands on guard for the old view, and accuses the new view of +subverting revelation. + +In the one case as in the other, on both sides the struggle provokes +passion and stifles truth. On the one hand there is fear and regret +for the loss of the whole edifice constructed through the ages, on the +other is the passion for destruction. + +To the men who fought against the rising truths of physical +philosophy, it seemed that if they admitted that truth it would +destroy faith in God, in the creation of the firmament, and in the +miracle of Joshua the son of Nun. To the defenders of the laws of +Copernicus and Newton, to Voltaire for example, it seemed that the +laws of astronomy destroyed religion, and he utilized the law of +gravitation as a weapon against religion. + +Just so it now seems as if we have only to admit the law of +inevitability, to destroy the conception of the soul, of good and +evil, and all the institutions of state and church that have been +built up on those conceptions. + +So too, like Voltaire in his time, uninvited defenders of the law of +inevitability today use that law as a weapon against religion, +though the law of inevitability in history, like the law of Copernicus +in astronomy, far from destroying, even strengthens the foundation +on which the institutions of state and church are erected. + +As in the question of astronomy then, so in the question of +history now, the whole difference of opinion is based on the +recognition or nonrecognition of something absolute, serving as the +measure of visible phenomena. In astronomy it was the immovability +of the earth, in history it is the independence of personality--free +will. + +As with astronomy the difficulty of recognizing the motion of the +earth lay in abandoning the immediate sensation of the earth's +fixity and of the motion of the planets, so in history the +difficulty of recognizing the subjection of personality to the laws of +space, time, and cause lies in renouncing the direct feeling of the +independence of one's own personality. But as in astronomy the new +view said: "It is true that we do not feel the movement of the +earth, but by admitting its immobility we arrive at absurdity, while +by admitting its motion (which we do not feel) we arrive at laws," +so also in history the new view says: "It is true that we are not +conscious of our dependence, but by admitting our free will we +arrive at absurdity, while by admitting our dependence on the external +world, on time, and on cause, we arrive at laws." + +In the first case it was necessary to renounce the consciousness +of an unreal immobility in space and to recognize a motion we did +not feel; in the present case it is similarly necessary to renounce +a freedom that does not exist, and to recognize a dependence of +which we are not conscious. + + + + +*** END OF THE PROJECT GUTENBERG EBOOK, WAR AND PEACE *** + +This file should be named wrnpc11.txt or wrnpc11.zip +Corrected EDITIONS of our eBooks get a new NUMBER, wrnpc12.txt +VERSIONS based on separate sources get new LETTER, wrnpc11a.txt + +Project Gutenberg eBooks are often created from several printed +editions, all of which are confirmed as Public Domain in the US +unless a copyright notice is included. Thus, we usually do not +keep eBooks in compliance with any particular paper edition. + +We are now trying to release all our eBooks one year in advance +of the official release dates, leaving time for better editing. +Please be encouraged to tell us about any error or corrections, +even years after the official publication date. + +Please note neither this listing nor its contents are final til +midnight of the last day of the month of any such announcement. +The official release date of all Project Gutenberg eBooks is at +Midnight, Central Time, of the last day of the stated month. A +preliminary version may often be posted for suggestion, comment +and editing by those who wish to do so. + +Most people start at our Web sites at: +http://gutenberg.net or +http://promo.net/pg + +These Web sites include award-winning information about Project +Gutenberg, including how to donate, how to help produce our new +eBooks, and how to subscribe to our email newsletter (free!). + + +Those of you who want to download any eBook before announcement +can get to them as follows, and just download by date. This is +also a good way to get them instantly upon announcement, as the +indexes our cataloguers produce obviously take a while after an +announcement goes out in the Project Gutenberg Newsletter. + +http://www.ibiblio.org/gutenberg/etext05 or +ftp://ftp.ibiblio.org/pub/docs/books/gutenberg/etext05 + +Or /etext04, 03, 02, 01, 00, 99, 98, 97, 96, 95, 94, 93, 92, 92, +91 or 90 + +Just search by the first five letters of the filename you want, +as it appears in our Newsletters. + + +Information about Project Gutenberg (one page) + +We produce about two million dollars for each hour we work. The +time it takes us, a rather conservative estimate, is fifty hours +to get any eBook selected, entered, proofread, edited, copyright +searched and analyzed, the copyright letters written, etc. Our +projected audience is one hundred million readers. If the value +per text is nominally estimated at one dollar then we produce $2 +million dollars per hour in 2002 as we release over 100 new text +files per month: 1240 more eBooks in 2001 for a total of 4000+ +We are already on our way to trying for 2000 more eBooks in 2002 +If they reach just 1-2% of the world's population then the total +will reach over half a trillion eBooks given away by year's end. + +The Goal of Project Gutenberg is to Give Away 1 Trillion eBooks! +This is ten thousand titles each to one hundred million readers, +which is only about 4% of the present number of computer users. + +Here is the briefest record of our progress (* means estimated): + +eBooks Year Month + + 1 1971 July + 10 1991 January + 100 1994 January + 1000 1997 August + 1500 1998 October + 2000 1999 December + 2500 2000 December + 3000 2001 November + 4000 2001 October/November + 6000 2002 December* + 9000 2003 November* +10000 2004 January* + + +The Project Gutenberg Literary Archive Foundation has been created +to secure a future for Project Gutenberg into the next millennium. + +We need your donations more than ever! + +As of February, 2002, contributions are being solicited from people +and organizations in: Alabama, Alaska, Arkansas, Connecticut, +Delaware, District of Columbia, Florida, Georgia, Hawaii, Illinois, +Indiana, Iowa, Kansas, Kentucky, Louisiana, Maine, Massachusetts, +Michigan, Mississippi, Missouri, Montana, Nebraska, Nevada, New +Hampshire, New Jersey, New Mexico, New York, North Carolina, Ohio, +Oklahoma, Oregon, Pennsylvania, Rhode Island, South Carolina, South +Dakota, Tennessee, Texas, Utah, Vermont, Virginia, Washington, West +Virginia, Wisconsin, and Wyoming. + +We have filed in all 50 states now, but these are the only ones +that have responded. + +As the requirements for other states are met, additions to this list +will be made and fund raising will begin in the additional states. +Please feel free to ask to check the status of your state. + +In answer to various questions we have received on this: + +We are constantly working on finishing the paperwork to legally +request donations in all 50 states. If your state is not listed and +you would like to know if we have added it since the list you have, +just ask. + +While we cannot solicit donations from people in states where we are +not yet registered, we know of no prohibition against accepting +donations from donors in these states who approach us with an offer to +donate. + +International donations are accepted, but we don't know ANYTHING about +how to make them tax-deductible, or even if they CAN be made +deductible, and don't have the staff to handle it even if there are +ways. + +Donations by check or money order may be sent to: + + PROJECT GUTENBERG LITERARY ARCHIVE FOUNDATION + 809 North 1500 West + Salt Lake City, UT 84116 + +Contact us if you want to arrange for a wire transfer or payment +method other than by check or money order. + +The Project Gutenberg Literary Archive Foundation has been approved by +the US Internal Revenue Service as a 501(c)(3) organization with EIN +[Employee Identification Number] 64-622154. Donations are +tax-deductible to the maximum extent permitted by law. As fund-raising +requirements for other states are met, additions to this list will be +made and fund-raising will begin in the additional states. + +We need your donations more than ever! + +You can get up to date donation information online at: + +http://www.gutenberg.net/donation.html + + +*** + +If you can't reach Project Gutenberg, +you can always email directly to: + +Michael S. Hart + +Prof. Hart will answer or forward your message. + +We would prefer to send you information by email. + + +**The Legal Small Print** + + +(Three Pages) + +***START**THE SMALL PRINT!**FOR PUBLIC DOMAIN EBOOKS**START*** +Why is this "Small Print!" statement here? You know: lawyers. +They tell us you might sue us if there is something wrong with +your copy of this eBook, even if you got it for free from +someone other than us, and even if what's wrong is not our +fault. So, among other things, this "Small Print!" statement +disclaims most of our liability to you. It also tells you how +you may distribute copies of this eBook if you want to. + +*BEFORE!* YOU USE OR READ THIS EBOOK +By using or reading any part of this PROJECT GUTENBERG-tm +eBook, you indicate that you understand, agree to and accept +this "Small Print!" statement. If you do not, you can receive +a refund of the money (if any) you paid for this eBook by +sending a request within 30 days of receiving it to the person +you got it from. If you received this eBook on a physical +medium (such as a disk), you must return it with your request. + +ABOUT PROJECT GUTENBERG-TM EBOOKS +This PROJECT GUTENBERG-tm eBook, like most PROJECT GUTENBERG-tm eBooks, +is a "public domain" work distributed by Professor Michael S. Hart +through the Project Gutenberg Association (the "Project"). +Among other things, this means that no one owns a United States copyright +on or for this work, so the Project (and you!) can copy and +distribute it in the United States without permission and +without paying copyright royalties. Special rules, set forth +below, apply if you wish to copy and distribute this eBook +under the "PROJECT GUTENBERG" trademark. + +Please do not use the "PROJECT GUTENBERG" trademark to market +any commercial products without permission. + +To create these eBooks, the Project expends considerable +efforts to identify, transcribe and proofread public domain +works. Despite these efforts, the Project's eBooks and any +medium they may be on may contain "Defects". Among other +things, Defects may take the form of incomplete, inaccurate or +corrupt data, transcription errors, a copyright or other +intellectual property infringement, a defective or damaged +disk or other eBook medium, a computer virus, or computer +codes that damage or cannot be read by your equipment. + +LIMITED WARRANTY; DISCLAIMER OF DAMAGES +But for the "Right of Replacement or Refund" described below, +[1] Michael Hart and the Foundation (and any other party you may +receive this eBook from as a PROJECT GUTENBERG-tm eBook) disclaims +all liability to you for damages, costs and expenses, including +legal fees, and [2] YOU HAVE NO REMEDIES FOR NEGLIGENCE OR +UNDER STRICT LIABILITY, OR FOR BREACH OF WARRANTY OR CONTRACT, +INCLUDING BUT NOT LIMITED TO INDIRECT, CONSEQUENTIAL, PUNITIVE +OR INCIDENTAL DAMAGES, EVEN IF YOU GIVE NOTICE OF THE +POSSIBILITY OF SUCH DAMAGES. + +If you discover a Defect in this eBook within 90 days of +receiving it, you can receive a refund of the money (if any) +you paid for it by sending an explanatory note within that +time to the person you received it from. If you received it +on a physical medium, you must return it with your note, and +such person may choose to alternatively give you a replacement +copy. If you received it electronically, such person may +choose to alternatively give you a second opportunity to +receive it electronically. + +THIS EBOOK IS OTHERWISE PROVIDED TO YOU "AS-IS". NO OTHER +WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ARE MADE TO YOU AS +TO THE EBOOK OR ANY MEDIUM IT MAY BE ON, INCLUDING BUT NOT +LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A +PARTICULAR PURPOSE. + +Some states do not allow disclaimers of implied warranties or +the exclusion or limitation of consequential damages, so the +above disclaimers and exclusions may not apply to you, and you +may have other legal rights. + +INDEMNITY +You will indemnify and hold Michael Hart, the Foundation, +and its trustees and agents, and any volunteers associated +with the production and distribution of Project Gutenberg-tm +texts harmless, from all liability, cost and expense, including +legal fees, that arise directly or indirectly from any of the +following that you do or cause: [1] distribution of this eBook, +[2] alteration, modification, or addition to the eBook, +or [3] any Defect. + +DISTRIBUTION UNDER "PROJECT GUTENBERG-tm" +You may distribute copies of this eBook electronically, or by +disk, book or any other medium if you either delete this +"Small Print!" and all other references to Project Gutenberg, +or: + +[1] Only give exact copies of it. Among other things, this + requires that you do not remove, alter or modify the + eBook or this "small print!" statement. You may however, + if you wish, distribute this eBook in machine readable + binary, compressed, mark-up, or proprietary form, + including any form resulting from conversion by word + processing or hypertext software, but only so long as + *EITHER*: + + [*] The eBook, when displayed, is clearly readable, and + does *not* contain characters other than those + intended by the author of the work, although tilde + (~), asterisk (*) and underline (_) characters may + be used to convey punctuation intended by the + author, and additional characters may be used to + indicate hypertext links; OR + + [*] The eBook may be readily converted by the reader at + no expense into plain ASCII, EBCDIC or equivalent + form by the program that displays the eBook (as is + the case, for instance, with most word processors); + OR + + [*] You provide, or agree to also provide on request at + no additional cost, fee or expense, a copy of the + eBook in its original plain ASCII form (or in EBCDIC + or other equivalent proprietary form). + +[2] Honor the eBook refund and replacement provisions of this + "Small Print!" statement. + +[3] Pay a trademark license fee to the Foundation of 20% of the + gross profits you derive calculated using the method you + already use to calculate your applicable taxes. If you + don't derive profits, no royalty is due. Royalties are + payable to "Project Gutenberg Literary Archive Foundation" + the 60 days following each date you prepare (or were + legally required to prepare) your annual (or equivalent + periodic) tax return. Please contact us beforehand to + let us know your plans and to work out the details. + +WHAT IF YOU *WANT* TO SEND MONEY EVEN IF YOU DON'T HAVE TO? +Project Gutenberg is dedicated to increasing the number of +public domain and licensed works that can be freely distributed +in machine readable form. + +The Project gratefully accepts contributions of money, time, +public domain materials, or royalty free copyright licenses. +Money should be paid to the: +"Project Gutenberg Literary Archive Foundation." + +If you are interested in contributing scanning equipment or +software or other items, please contact Michael Hart at: +hart@pobox.com + +[Portions of this eBook's header and trailer may be reprinted only +when distributed free of all fees. Copyright (C) 2001, 2002 by +Michael S. Hart. Project Gutenberg is a TradeMark and may not be +used in any sales of Project Gutenberg eBooks or other materials be +they hardware or software or any other related product without +express permission.] + +*END THE SMALL PRINT! FOR PUBLIC DOMAIN EBOOKS*Ver.02/11/02*END* + + the + be + of + and + a + in + to + have + it + to + for + i + that + you + he + on + with + do + at + by + not + this + but + from + they + his + that + she + or + which + as + we + an + say + will + would + can + if + their + go + what + there + all + get + her + make + who + as + out + up + see + know + time + take + them + some + could + so + him + year + into + its + then + think + my + come + than + more + about + now + last + your + me + no + other + give + just + should + these + people + also + well + any + only + new + very + when + may + way + look + like + use + her + such + how + because + when + as + good + find + man + our + want + day + between + even + there + many + those + one + after + down + yeah + so + thing + tell + through + back + still + must + child + here + over + too + put + own + on + no + work + become + more + old + government + mean + part + leave + life + great + where + case + woman + over + seem + same + us + work + need + feel + system + each + might + may + much + ask + group + number + yes + however + another + again + world + area + show + course + company + shall + under + problem + against + never + all + most + service + try + call + hand + party + high + about + something + school + in + small + place + before + why + while + away + keep + point + house + different + country + really + provide + week + hold + large + member + off + always + next + follow + without + turn + end + within + local + where + during + bring + most + word + begin + although + example + next + family + rather + fact + like + social + write + state + percent + quite + both + start + run + long + right + set + help + every + home + month + side + night + important + eye + head + information + question + business + play + power + money + change + move + interest + order + book + often + development + young + national + pay + hear + room + whether + water + form + car + other + yet + perhaps + meet + level + until + though + policy + include + believe + council + already + possible + nothing + line + allow + need + effect + big + use + lead + stand + idea + study + lot + live + job + since + name + result + body + happen + friend + right + least + right + almost + much + carry + authority + long + early + view + himself + public + together + talk + report + after + only + before + bit + face + sit + market + appear + continue + able + political + later + hour + rate + law + door + court + office + let + war + produce + reason + less + minister + subject + person + term + particular + full + involve + sort + require + suggest + far + towards + anything + period + consider + read + change + society + process + mother + offer + late + voice + both + once + police + kind + lose + add + probably + expect + ever + available + no + price + little + action + issue + far + remember + position + low + cost + little + matter + community + remain + figure + type + research + actually + education + fall + speak + few + today + enough + open + bad + buy + programme + minute + moment + girl + age + centre + stop + control + value + send + health + decide + main + win + understand + decision + develop + class + industry + receive + back + several + return + build + spend + force + condition + itself + paper + themselves + off + major + describe + agree + economic + increase + upon + learn + general + century + therefore + father + section + patient + around + activity + road + table + including + church + reach + real + lie + mind + likely + among + team + experience + death + soon + act + sense + staff + certain + student + half + around + language + walk + die + special + difficult + international + particularly + department + management + morning + draw + hope + across + plan + product + city + early + committee + ground + letter + create + evidence + foot + clear + boy + game + food + role + practice + bank + else + support + sell + event + building + range + behind + sure + report + pass + black + stage + meeting + sometimes + thus + accept + town + art + further + club + cause + arm + history + parent + land + trade + watch + white + situation + whose + ago + teacher + record + manager + relation + common + strong + whole + field + free + break + yesterday + support + window + account + explain + stay + few + wait + usually + difference + material + air + wife + cover + apply + project + raise + sale + relationship + indeed + light + claim + form + base + care + someone + everything + certainly + rule + home + cut + grow + similar + story + quality + tax + worker + nature + structure + data + necessary + pound + method + unit + central + bed + union + movement + board + true + well + simply + contain + especially + open + short + personal + detail + model + bear + single + join + reduce + establish + herself + wall + face + easy + private + computer + former + hospital + chapter + scheme + theory + choose + wish + property + achieve + financial + poor + officer + up + charge + director + drive + deal + place + approach + chance + application + seek + cos + foreign + along + top + amount + son + operation + fail + human + opportunity + simple + leader + look + share + production + recent + firm + picture + source + security + serve + according + end + contract + wide + occur + agreement + better + kill + act + site + either + labour + plan + various + since + test + eat + loss + close + represent + love + colour + clearly + shop + benefit + animal + heart + election + purpose + standard + due + secretary + rise + date + hard + music + hair + prepare + factor + other + anyone + pattern + manage + piece + discuss + prove + front + evening + royal + tree + population + fine + plant + pressure + response + catch + street + pick + performance + knowledge + despite + design + page + enjoy + individual + suppose + rest + instead + wear + basis + size + environment + per + fire + series + success + natural + wrong + near + round + thought + list + argue + final + future + introduce + analysis + enter + space + arrive + ensure + demand + statement + to + attention + love + principle + pull + set + doctor + choice + refer + feature + couple + step + following + thank + machine + income + training + present + association + film + region + effort + player + everyone + present + award + village + control + organisation + whatever + news + nice + difficulty + modern + cell + close + current + legal + energy + finally + degree + mile + means + growth + whom + treatment + sound + above + task + provision + affect + please + red + happy + behaviour + concerned + point + function + identify + resource + defence + garden + floor + technology + style + feeling + science + relate + doubt + horse + force + answer + compare + suffer + individual + forward + announce + user + fund + character + risk + normal + myself + nor + dog + obtain + quickly + army + indicate + forget + station + glass + cup + previous + husband + recently + publish + serious + anyway + visit + capital + either + note + season + argument + listen + show + responsibility + significant + deal + prime + economy + element + finish + duty + fight + train + maintain + attempt + leg + investment + save + throughout + design + suddenly + brother + improve + avoid + wonder + tend + title + hotel + aspect + increase + help + industrial + express + summer + determine + generally + daughter + exist + used + share + baby + nearly + smile + sorry + sea + skill + claim + treat + remove + concern + university + labour + left + dead + discussion + specific + customer + box + outside + state + conference + whole + total + profit + division + throw + procedure + fill + king + assume + image + oil + obviously + unless + appropriate + circumstance + military + proposal + mention + client + sector + direction + admit + though + replace + basic + hard + instance + sign + original + successful + okay + reflect + aware + measure + attitude + yourself + disease + exactly + above + commission + intend + beyond + seat + president + encourage + addition + goal + round + miss + popular + affair + technique + respect + drop + professional + less + once + item + fly + reveal + version + maybe + ability + operate + good + campaign + heavy + advice + institution + top + discover + surface + library + pupil + record + refuse + prevent + advantage + dark + teach + memory + culture + blood + cost + majority + answer + variety + press + depend + bill + competition + ready + general + access + hit + stone + useful + extent + employment + regard + apart + present + appeal + text + parliament + cause + terms + bar + attack + effective + mouth + down + result + fish + future + visit + little + easily + attempt + enable + trouble + traditional + payment + best + post + county + lady + holiday + realise + importance + chair + facility + complete + article + object + context + survey + notice + complete + turn + direct + immediately + collection + reference + card + interesting + considerable + television + extend + communication + agency + physical + except + check + sun + species + possibility + official + chairman + speaker + second + career + laugh + weight + sound + responsible + base + document + solution + return + medical + hot + recognise + talk + budget + river + fit + organization + existing + start + push + tomorrow + requirement + cold + edge + opposition + opinion + drug + quarter + option + sign + worth + call + define + stock + influence + occasion + eventually + software + highly + exchange + lack + shake + study + concept + blue + star + radio + no + arrangement + examine + bird + green + band + sex + finger + past + independent + equipment + north + mind + move + message + fear + afternoon + drink + fully + race + gain + strategy + extra + scene + slightly + kitchen + speech + arise + network + tea + peace + failure + employee + ahead + scale + hardly + attend + shoulder + otherwise + railway + directly + supply + expression + owner + associate + corner + past + match + sport + status + beautiful + offer + marriage + hang + civil + perform + sentence + crime + ball + marry + wind + truth + protect + safety + partner + completely + copy + balance + sister + reader + below + trial + rock + damage + adopt + newspaper + meaning + light + essential + obvious + nation + confirm + south + length + branch + deep + none + planning + trust + working + pain + studio + positive + spirit + college + accident + star + hope + mark + works + league + clear + imagine + through + cash + normally + play + strength + train + travel + target + very + pair + male + gas + issue + contribution + complex + supply + beat + artist + agent + presence + along + environmental + strike + contact + protection + beginning + demand + media + relevant + employ + shoot + executive + slowly + relatively + aid + huge + late + speed + review + test + order + route + consequence + telephone + release + proportion + primary + consideration + reform + driver + annual + nuclear + latter + practical + commercial + rich + emerge + apparently + ring + distance + exercise + key + close + skin + island + separate + aim + danger + credit + usual + link + candidate + track + safe + interested + assessment + path + merely + plus + district + regular + reaction + impact + collect + debate + lay + rise + belief + conclusion + shape + vote + aim + politics + reply + press + approach + file + western + earth + public + survive + estate + boat + prison + additional + settle + largely + wine + observe + limit + deny + for + straight + somebody + writer + weekend + clothes + active + sight + video + reality + hall + nevertheless + regional + vehicle + worry + powerful + possibly + cross + colleague + charge + lead + farm + respond + employer + carefully + understanding + connection + comment + grant + concentrate + ignore + phone + hole + insurance + content + confidence + sample + transport + objective + alone + flower + injury + lift + stick + front + mainly + battle + generation + currently + winter + inside + impossible + somewhere + arrange + will + sleep + progress + volume + ship + legislation + commitment + enough + conflict + bag + fresh + entry + smile + fair + promise + introduction + senior + manner + background + key + touch + vary + sexual + ordinary + cabinet + painting + entirely + engine + previously + administration + tonight + adult + prefer + author + actual + song + investigation + debt + visitor + forest + repeat + wood + contrast + extremely + wage + domestic + commit + threat + bus + warm + sir + regulation + drink + relief + internal + strange + excellent + run + fairly + technical + tradition + measure + insist + his + farmer + until + traffic + dinner + consumer + meal + warn + living + package + half + increasingly + description + soft + stuff + award + existence + improvement + coffee + appearance + standard + attack + sheet + category + distribution + equally + session + cultural + loan + bind + museum + conversation + threaten + link + launch + proper + victim + audience + famous + master + lip + religious + joint + cry + potential + broad + exhibition + experience + judge + formal + housing + past + concern + freedom + gentleman + attract + explanation + appoint + note + chief + total + lovely + official + date + demonstrate + construction + middle + yard + unable + acquire + surely + crisis + propos + west + impose + market + care + god + favour + before + name + equal + capacity + flat + selection + alone + football + victory + factory + rural + twice + sing + whereas + own + head + examination + deliver + nobody + substantial + invite + intention + egg + reasonable + onto + retain + aircraft + decade + cheap + quiet + bright + contribute + row + search + limit + definition + unemployment + spread + mark + flight + account + output + last + tour + address + immediate + reduction + interview + assess + promote + everybody + suitable + ought + growing + nod + reject + while + high + dream + vote + divide + declare + handle + detailed + challenge + notice + rain + destroy + mountain + concentration + limited + finance + pension + influence + afraid + murder + neck + weapon + hide + offence + absence + error + representative + enterprise + criticism + average + quick + sufficient + appointment + match + transfer + acid + spring + birth + ear + recognize + recommend + module + instruction + democratic + park + weather + bottle + address + bedroom + kid + pleasure + realize + assembly + expensive + select + teaching + desire + whilst + contact + implication + combine + temperature + wave + magazine + totally + mental + used + store + scientific + frequently + thanks + beside + settlement + absolutely + critical + recognition + touch + consist + below + silence + expenditure + institute + dress + dangerous + familiar + asset + belong + educational + sum + publication + partly + block + seriously + youth + tape + elsewhere + cover + fee + program + treaty + necessarily + unlikely + properly + guest + code + hill + screen + household + sequence + correct + female + phase + crowd + welcome + metal + human + widely + undertake + cut + sky + brain + expert + experiment + tiny + perfect + disappear + initiative + assumption + photograph + ministry + congress + transfer + reading + scientist + fast + fast + closely + thin + solicitor + secure + plate + pool + gold + emphasis + recall + shout + generate + location + display + heat + gun + shut + journey + imply + violence + dry + historical + step + curriculum + noise + lunch + fear + succeed + fall + bottom + initial + theme + characteristic + pretty + empty + display + combination + interpretation + rely + escape + score + justice + upper + tooth + organise + cat + tool + spot + bridge + double + direct + conclude + relative + soldier + climb + breath + afford + urban + nurse + narrow + liberal + coal + priority + wild + revenue + membership + grant + approve + tall + apparent + faith + under + fix + slow + troop + motion + leading + component + bloody + literature + conservative + variation + remind + inform + alternative + neither + outside + mass + busy + chemical + careful + investigate + roll + instrument + guide + criterion + pocket + suggestion + aye + entitle + tone + attractive + wing + surprise + male + ring + pub + fruit + passage + illustrate + pay + ride + foundation + restaurant + vital + alternative + burn + map + united + device + jump + estimate + conduct + derive + comment + east + advise + advance + motor + satisfy + hell + winner + effectively + mistake + incident + focus + exercise + representation + release + leaf + border + wash + prospect + blow + trip + observation + gather + ancient + brief + gate + elderly + persuade + overall + rare + index + hand + circle + creation + drawing + anybody + flow + matter + external + capable + recover + shot + request + impression + neighbour + theatre + beneath + hurt + mechanism + potential + lean + defendant + atmosphere + slip + chain + accompany + wonderful + earn + enemy + desk + engineering + panel + distinction + deputy + discipline + strike + married + plenty + establishment + fashion + roof + milk + entire + tear + secondary + finding + welfare + increased + attach + typical + meanwhile + leadership + walk + negotiation + clean + religion + count + grey + hence + alright + first + fuel + mine + appeal + servant + liability + constant + hate + shoe + expense + vast + soil + writing + nose + origin + lord + rest + drive + ticket + editor + switch + provided + northern + significance + channel + convention + damage + funny + bone + severe + search + iron + vision + via + somewhat + inside + trend + revolution + terrible + knee + dress + unfortunately + steal + criminal + signal + notion + comparison + academic + outcome + lawyer + strongly + surround + explore + achievement + odd + expectation + corporate + prisoner + question + rapidly + deep + southern + amongst + withdraw + afterwards + paint + judge + citizen + permanent + weak + separate + ourselves + plastic + connect + fundamental + plane + height + opening + lesson + similarly + shock + rail + tenant + owe + originally + middle + somehow + minor + negative + knock + root + pursue + inner + crucial + occupy + that + independence + column + proceeding + female + beauty + perfectly + struggle + gap + house + database + stretch + stress + passenger + boundary + easy + view + manufacturer + sharp + formation + queen + waste + virtually + expand + contemporary + politician + back + territory + championship + exception + thick + inquiry + topic + resident + transaction + parish + supporter + massive + light + unique + challenge + inflation + assistance + list + identity + suit + parliamentary + unknown + preparation + elect + badly + moreover + tie + cancer + champion + exclude + review + licence + breakfast + minority + appreciate + fan + chief + accommodation + subsequent + democracy + brown + taste + crown + permit + buyer + gift + resolution + angry + metre + wheel + clause + break + tank + benefit + engage + alive + complaint + inch + firm + abandon + blame + clean + quote + yours + quantity + rule + guilty + prior + round + eastern + coat + involvement + tension + diet + enormous + score + rarely + prize + remaining + significantly + glance + dominate + trust + naturally + interpret + land + frame + extension + mix + spokesman + friendly + acknowledge + register + regime + fault + mine + dispute + grass + quietly + decline + dismiss + delivery + complain + conservative + shift + port + beach + string + depth + unusual + travel + pilot + obligation + gene + yellow + republic + shadow + dear + analyse + anywhere + average + phrase + long + crew + lucky + restore + convince + coast + engineer + heavily + extensive + glad + charity + oppose + defend + alter + warning + arrest + framework + approval + bother + novel + accuse + surprised + currency + restrict + possess + moral + protein + distinguish + gently + reckon + incorporate + proceed + assist + sure + stress + justify + behalf + councillor + setting + command + maintenance + stair + poem + chest + like + secret + restriction + efficient + suspect + hat + tough + firmly + willing + healthy + focus + construct + occasionally + mode + saving + comfortable + camp + trade + export + wake + partnership + daily + abroad + profession + load + countryside + boot + mostly + sudden + implement + reputation + print + calculate + keen + guess + recommendation + autumn + conventional + cope + constitute + poll + voluntary + valuable + recovery + cast + premise + resolve + regularly + solve + plaintiff + critic + agriculture + ice + constitution + communist + layer + recession + slight + dramatic + golden + temporary + suit + shortly + initially + arrival + protest + resistance + silent + presentation + soul + self + judgment + feed + muscle + shareholder + opposite + pollution + wealth + video + kingdom + bread + perspective + camera + prince + illness + cake + meat + submit + ideal + relax + penalty + purchase + tired + beer + specify + short + monitor + electricity + specifically + bond + statutory + laboratory + federal + captain + deeply + pour + boss + creature + urge + locate + being + struggle + lifespan + flat + valley + like + guard + emergency + dark + bomb + dollar + efficiency + mood + convert + possession + marketing + please + habit + subsequently + round + purchase + sort + outside + gradually + expansion + competitive + co + acceptable + angle + cook + net + sensitive + ratio + kiss + amount + sleep + finance + essentially + fund + preserve + wedding + personality + bishop + dependent + landscape + pure + mirror + lock + symptom + promotion + global + aside + tendency + conservation + reply + estimate + qualification + pack + governor + expected + invest + cycle + alright + philosophy + gallery + sad + intervention + emotional + advertising + regard + dance + cigarette + predict + adequate + variable + net + retire + sugar + pale + frequency + guy + feature + furniture + administrative + wooden + input + phenomenon + surprising + jacket + actor + kick + producer + hearing + chip + equation + certificate + hello + remarkable + alliance + smoke + awareness + throat + discovery + festival + dance + promise + rose + principal + brilliant + proposed + coach + absolute + drama + recording + precisely + bath + celebrate + substance + swing + for + rapid + rough + investor + fire + rank + compete + sweet + decline + rent + dealer + bend + solid + cloud + across + level + enquiry + fight + abuse + golf + guitar + electronic + cottage + scope + pause + mixture + emotion + comprehensive + shirt + allowance + retirement + breach + infection + resist + qualify + paragraph + sick + near + researcher + consent + written + literary + ill + wet + lake + entrance + peak + successfully + sand + breathe + cold + cheek + platform + interaction + need + watch + borrow + birthday + knife + extreme + core + peasant + armed + permission + supreme + overcome + greatly + visual + lad + genuine + personnel + judgement + exciting + stream + perception + guarantee + disaster + darkness + bid + sake + organize + tourist + policeman + castle + figure + race + demonstration + anger + briefly + presumably + clock + hero + expose + custom + maximum + wish + earning + priest + resign + store + widespread + comprise + chamber + acquisition + involved + confident + circuit + radical + detect + stupid + grand + consumption + hold + zone + mean + altogether + rush + numerous + sink + everywhere + classical + respectively + distinct + mad + honour + statistics + false + square + differ + disk + truly + survival + proud + tower + deposit + pace + compensation + adviser + consultant + drag + advanced + landlord + whenever + delay + green + car + holder + secret + edition + occupation + agricultural + intelligence + empire + definitely + negotiate + host + relative + mass + helpful + fellow + sweep + poet + journalist + defeat + unlike + primarily + tight + indication + dry + cricket + whisper + routine + print + anxiety + witness + concerning + mill + gentle + curtain + mission + supplier + basically + assure + poverty + snow + prayer + pipe + deserve + shift + split + near + consistent + carpet + ownership + joke + fewer + workshop + salt + aged + symbol + slide + cross + anxious + tale + preference + inevitably + mere + behave + gain + nervous + guide + remark + pleased + province + steel + practise + flow + holy + dose + alcohol + guidance + constantly + climate + enhance + reasonably + waste + smooth + dominant + conscious + formula + tail + ha + electric + sheep + medicine + strategic + disabled + smell + operator + mount + advance + remote + measurement + favour + neither + architecture + worth + tie + barrier + practitioner + outstanding + enthusiasm + theoretical + implementation + worried + pitch + drop + phone + shape + clinical + lane + apple + catalogue + tip + publisher + opponent + live + burden + tackle + historian + bury + stomach + percentage + evaluation + outline + talent + lend + silver + pack + fun + democrat + fortune + storage + professional + reserve + interval + dimension + honest + awful + manufacture + confusion + pink + impressive + satisfaction + visible + vessel + stand + curve + pot + replacement + accurate + mortgage + salary + impress + constitutional + emphasise + developing + proof + furthermore + dish + interview + considerably + distant + lower + favourite + tear + fixed + by + luck + count + precise + determination + bite + dear + consultation + range + residential + conduct + capture + ultimately + cheque + economics + sustain + secondly + silly + merchant + lecture + musical + leisure + check + cheese + lift + participate + fabric + distribute + lover + childhood + cool + ban + supposed + mouse + strain + specialist + consult + minimum + approximately + participant + monetary + confuse + dare + smoke + movie + seed + cease + open + journal + shopping + equivalent + palace + exceed + isolated + poetry + perceive + lack + strengthen + snap + readily + spite + conviction + corridor + behind + ward + profile + fat + comfort + bathroom + shell + reward + deliberately + automatically + vegetable + imagination + junior + unemployed + mystery + pose + violent + march + found + dig + dirty + straight + psychological + grab + pleasant + surgery + inevitable + transform + bell + announcement + draft + unity + airport + upset + pretend + plant + till + known + admission + tissue + magistrate + joy + free + pretty + operating + headquarters + grateful + classroom + turnover + project + shrug + sensible + limitation + specialist + newly + tongue + refugee + delay + dream + composition + alongside + ceiling + highlight + stick + favourite + tap + universe + request + label + confine + scream + rid + acceptance + detective + sail + adjust + designer + running + summit + participation + weakness + block + so + adapt + absorb + encounter + defeat + excitement + brick + blind + wire + crop + square + transition + thereby + protest + roll + stop + assistant + deaf + constituency + continuous + concert + breast + extraordinary + squad + wonder + cream + tennis + personally + communicate + pride + bowl + file + expertise + govern + leather + observer + margin + uncertainty + reinforce + ideal + injure + holding + universal + evident + dust + overseas + desperate + swim + occasional + trouser + surprisingly + register + album + guideline + disturb + amendment + architect + objection + chart + cattle + doubt + react + consciousness + right + purely + tin + tube + fulfil + commonly + sufficiently + coin + frighten + grammar + diary + flesh + summary + infant + stir + storm + mail + rugby + virtue + specimen + psychology + paint + constraint + trace + privilege + completion + progress + hers + grade + exploit + import + potato + repair + passion + seize + low + underlying + heaven + nerve + park + collapse + win + printer + coalition + button + pray + ultimate + venture + timber + companion + horror + gesture + moon + remark + clever + van + consequently + raw + glance + broken + jury + gaze + burst + charter + feminist + discourse + reflection + carbon + sophisticated + ban + taxation + prosecution + softly + asleep + aids + publicity + departure + welcome + sharply + reception + cousin + relieve + linguistic + vat + forward + blue + multiple + pass + outer + vulnerable + patient + evolution + allocate + creative + potentially + just + out + judicial + risk + ideology + smell + agenda + transport + illegal + chicken + plain + innovation + opera + lock + grin + shelf + pole + punishment + strict + wave + inside + carriage + fit + conversion + hurry + essay + integration + resignation + treasury + traveller + chocolate + assault + schedule + undoubtedly + twin + format + murder + sigh + seller + lease + bitter + double + ally + stake + processing + informal + flexible + cap + stable + till + sympathy + tunnel + pen + instal + suspend + blow + wander + notably + disappoint + wipe + folk + attraction + disc + inspire + machinery + undergo + nowhere + inspector + wise + balance + purchaser + resort + pop + organ + ease + friendship + deficit + dear + convey + reserve + planet + frequent + loose + intense + retail + wind + lost + grain + particle + destruction + witness + pit + registration + conception + steady + rival + steam + back + chancellor + crash + belt + logic + premium + confront + precede + experimental + alarm + rational + incentive + roughly + bench + wrap + regarding + inadequate + ambition + since + fate + vendor + stranger + spiritual + increasing + anticipate + logical + fibre + attribute + sense + black + petrol + maker + generous + allocation + depression + declaration + spot + modest + bottom + dividend + devote + condemn + integrate + pile + identification + acute + barely + providing + directive + bet + modify + bare + swear + final + accordingly + valid + wherever + mortality + medium + silk + funeral + depending + cow + correspond + cite + classic + inspection + calculation + rubbish + minimum + hypothesis + youngster + slope + patch + invitation + ethnic + federation + duke + wholly + closure + dictionary + withdrawal + automatic + liable + cry + slow + borough + well + suspicion + portrait + local + jew + fragment + revolutionary + evaluate + competitor + sole + reliable + weigh + medieval + clinic + shine + knit + complexity + remedy + fence + bike + freeze + eliminate + interior + intellectual + established + voter + garage + era + pregnant + plot + greet + electrical + lie + disorder + formally + excuse + socialist + cancel + harm + excess + exact + oblige + accountant + mutual + fat + volunteer + laughter + trick + load + disposal + taxi + murmur + tonne + spell + clerk + curious + satisfactory + identical + applicant + removal + processor + cotton + reverse + hesitate + professor + admire + namely + electoral + delight + urgent + prompt + mate + exposure + server + distinctive + marginal + structural + rope + miner + entertainment + acre + pig + encouraging + guarantee + gear + anniversary + past + ceremony + rub + monopoly + left + flee + yield + discount + above + uncle + audit + advertisement + explosion + contrary + tribunal + swallow + typically + fun + rat + cloth + cable + interrupt + crash + flame + controversy + rabbit + everyday + allegation + strip + stability + tide + illustration + insect + correspondent + devise + determined + brush + adjustment + controversial + organic + escape + thoroughly + interface + historic + collapse + temple + shade + craft + nursery + piano + desirable + assurance + jurisdiction + advertise + bay + specification + disability + presidential + arrest + unexpected + switch + penny + respect + celebration + gross + aid + superb + process + innocent + leap + colony + wound + hardware + satellite + float + bible + statistical + marked + hire + cathedral + motive + correct + gastric + raid + comply + accommodate + mutter + induce + trap + invasion + humour + bulk + traditionally + commission + upstairs + translate + rhythm + emission + collective + transformation + battery + stimulus + naked + white + menu + toilet + butter + surprise + needle + effectiveness + accordance + molecule + fiction + learning + statute + reluctant + overlook + junction + necessity + nearby + experienced + lorry + exclusive + graphics + stimulate + warmth + therapy + convenient + cinema + domain + tournament + doctrine + sheer + proposition + grip + widow + discrimination + bloody + ruling + fit + nonetheless + myth + episode + drift + assert + terrace + uncertain + twist + insight + undermine + tragedy + enforce + criticise + march + leaflet + fellow + object + pond + adventure + diplomatic + mixed + rebel + equity + literally + magnificent + loyalty + tremendous + airline + shore + restoration + physically + render + institutional + emphasize + mess + commander + straightforward + singer + squeeze + full + breed + successor + triumph + heading + mathematics + laugh + clue + still + ease + specially + biological + forgive + trustee + photo + fraction + chase + whereby + mud + pensioner + functional + copy + strictly + desperately + await + coverage + wildlife + indicator + lightly + hierarchy + evolve + mechanical + expert + creditor + capitalist + essence + compose + mentally + gaze + seminar + target + label + fig + continent + chap + flexibility + verse + minute + whisky + equivalent + recruit + echo + unfair + launch + cupboard + bush + shortage + prominent + merger + command + subtle + capital + gang + fish + unhappy + lifetime + elite + refusal + finish + aggressive + superior + landing + exchange + debate + educate + separation + productivity + initiate + probability + virus + reporter + fool + pop + capitalism + painful + correctly + complex + rumour + imperial + justification + availability + spectacular + remain + ocean + cliff + sociology + sadly + missile + situate + artificial + apartment + provoke + oral + maximum + angel + spare + shame + intelligent + discretion + businessman + explicit + book + uniform + push + counter + subject + objective + hungry + clothing + ride + romantic + attendance + part + trace + backing + sensation + carrier + interest + classification + classic + beg + appendix + doorway + density + working + legislative + hint + shower + current + succession + nasty + duration + desert + receipt + native + chapel + amazing + hopefully + fleet + comparable + oxygen + installation + developer + disadvantage + recipe + crystal + modification + schedule + midnight + successive + formerly + loud + value + physics + truck + stroke + kiss + envelope + speculation + canal + unionist + directory + receiver + isolation + fade + chemistry + unnecessary + hit + defender + stance + sin + realistic + socialist + subsidy + content + toy + darling + decent + liberty + forever + skirt + coordinate + tactic + influential + import + accent + compound + bastard + ingredient + dull + cater + scholar + faint + ghost + sculpture + ridiculous + diagnosis + delegate + neat + kit + lion + dialogue + repair + tray + fantasy + leave + export + forth + lamp + allege + pavement + brand + constable + compromise + flag + filter + reign + execute + pity + merit + diagram + wool + organism + elegant + red + undertaking + lesser + reach + marvellous + improved + locally + entity + rape + secure + descend + backwards + peer + excuse + genetic + fold + portfolio + consensus + thesis + shop + nest + frown + builder + administer + tip + lung + delegation + outside + heating + like + instinct + teenager + lonely + residence + radiation + extract + concession + autonomy + norm + musician + graduate + glory + bear + persist + rescue + equip + partial + officially + capability + worry + liberation + hunt + daily + heel + contract + update + assign + spring + single + commons + weekly + stretch + pregnancy + happily + spectrum + interfere + suicide + panic + invent + intensive + damp + simultaneously + giant + casual + sphere + precious + sword + envisage + bean + time + crazy + changing + primary + concede + besides + unite + severely + separately + instruct + insert + go + exhibit + brave + tutor + tune + debut + continued + bid + incidence + downstairs + cafe + regret + killer + delicate + subsidiary + gender + entertain + cling + vertical + fetch + strip + plead + duck + breed + assistant + pint + abolish + translation + princess + line + excessive + digital + steep + jet + hey + grave + exceptional + boost + random + correlation + outline + intervene + packet + motivation + safely + harsh + spell + spread + draw + concrete + complicated + alleged + redundancy + progressive + intensity + crack + fly + fancy + alternatively + waiting + scandal + resemble + parameter + fierce + tropical + colour + ours + engagement + contest + edit + courage + hip + delighted + sponsor + carer + crack + substantially + occupational + trainer + remainder + related + inherit + resume + assignment + conceal + disclose + exclusively + working + mild + chronic + splendid + function + rider + clay + firstly + conceive + politically + terminal + accuracy + coup + ambulance + living + offender + similarity + orchestra + brush + systematic + striker + guard + casualty + steadily + painter + opt + handsome + banking + sensitivity + navy + fascinating + disappointment + auditor + hostility + spending + scarcely + compulsory + photographer + ok + neighbourhood + ideological + wide + pardon + double + criticize + supervision + guilt + deck + payable + execution + suite + elected + solely + moral + collector + questionnaire + flavour + couple + faculty + tour + basket + mention + kick + horizon + drain + happiness + fighter + estimated + copper + legend + relevance + decorate + continental + ship + operational + incur + parallel + divorce + opposed + equilibrium + trader + ton + can + juice + forum + spin + research + hostile + consistently + technological + nightmare + medal + diamond + speed + peaceful + accounting + scatter + monster + horrible + nonsense + chaos + accessible + humanity + frustration + chin + bureau + advocate + polytechnic + inhabitant + evil + slave + reservation + slam + handle + provincial + fishing + facilitate + yield + elbow + bye + warm + sleeve + exploration + creep + adjacent + theft + round + grace + predecessor + supermarket + smart + sergeant + regulate + clash + assemble + arrow + nowadays + giant + waiting + tap + shit + sandwich + vanish + commerce + pursuit + post + will + waste + collar + socialism + skill + rice + exclusion + upwards + transmission + instantly + forthcoming + appointed + geographical + fist + abstract + embrace + dynamic + drawer + dismissal + magic + endless + definite + broadly + affection + dawn + principal + bloke + organiser + trap + communist + competence + complicate + neutral + fortunately + commonwealth + breakdown + combined + candle + venue + supper + analyst + vague + publicly + marine + fair + pause + notable + freely + counterpart + lively + script + sue + legitimate + geography + reproduce + moving + lamb + gay + contemplate + terror + stable + founder + utility + signal + shelter + poster + hitherto + mature + cooking + head + wealthy + fucking + confess + age + miracle + magic + jaw + pan + coloured + tent + telephone + reduced + tumour + super + funding + dump + stitch + shared + ladder + keeper + endorse + invariably + smash + shield + heat + surgeon + centre + orange + explode + comedy + classify + artistic + ruler + biscuit + workstation + prey + manual + cure + overall + tighten + tax + pope + manufacturing + adult + rush + blanket + republican + referendum + palm + nearby + mix + devil + adoption + workforce + segment + regardless + contractor + portion + differently + deposit + cook + prediction + oven + matrix + liver + fraud + beam + signature + limb + verdict + dramatically + container + aunt + dock + submission + arm + odd + certainty + boring + electron + drum + wisdom + antibody + unlike + terrorist + post + circulation + alteration + fluid + ambitious + socially + riot + petition + fox + recruitment + well + top + service + flood + taste + memorial + helicopter + correspondence + ye + beef + overall + lighting + harbour + empirical + shallow + seal + decrease + constituent + exam + toe + reward + thrust + bureaucracy + wrist + nut + plain + magnetic + evil + widen + hazard + dispose + dealing + absent + reassure + model + inn + initial + suspension + respondent + over + naval + monthly + log + advisory + fitness + blank + indirect + tile + rally + economist + vein + strand + disturbance + stuff + seldom + coming + cab + grandfather + flash + destination + actively + regiment + closed + boom + handful + remarkably + encouragement + awkward + required + flood + defect + surplus + champagne + liquid + shed + welcome + rejection + discipline + halt + electronics + administrator + sentence + ill + contradiction + nail + senior + lacking + colonial + primitive + whoever + lap + commodity + planned + intellectual + imprisonment + coincide + sympathetic + atom + tempt + sanction + praise + favourable + dissolve + tightly + surrounding + soup + encounter + abortion + grasp + custody + composer + charm + short + metropolitan + waist + equality + tribute + bearing + auction + standing + manufacture + horn + barn + mayor + emperor + rescue + integrated + conscience + commence + grandmother + discharge + profound + takeover + nationalist + effect + dolphin + fortnight + elephant + seal + spoil + plea + forwards + breeze + prevention + mineral + runner + pin + integrity + thereafter + quid + owl + rigid + orange + draft + reportedly + hedge + formulate + associated + position + thief + tomato + exhaust + evidently + eagle + specified + resulting + blade + peculiar + killing + desktop + bowel + long + ugly + expedition + saint + variable + supplement + stamp + slide + faction + enthusiastic + enquire + brass + inequality + eager + bold + neglect + saying + ridge + earl + yacht + suck + missing + extended + valuation + delight + beat + worship + fossil + diminish + taxpayer + corruption + accurately + honour + depict + pencil + drown + stem + lump + applicable + rate + mobility + immense + goodness + price + preliminary + graph + referee + calm + onwards + omit + genuinely + excite + dreadful + cave + revelation + grief + erect + tuck + meantime + barrel + lawn + hut + swing + subject + ruin + slice + transmit + thigh + practically + dedicate + mistake + corresponding + albeit + sound + nurse + discharge + comparative + cluster + propose + obstacle + motorway + heritage + counselling + breeding + characteristic + bucket + migration + campaign + ritual + originate + hunting + crude + protocol + prejudice + inspiration + dioxide + chemical + uncomfortable + worthy + inspect + summon + parallel + outlet + okay + collaboration + booking + salad + productive + charming + polish + oak + access + tourism + independently + cruel + diversity + accused + supplement + fucking + forecast + amend + soap + ruling + interference + executive + mining + minimal + clarify + strain + novel + try + coastal + rising + quota + minus + kilometre + characterise + suspicious + pet + beneficial + fling + deprive + covenant + bias + trophy + verb + honestly + extract + straw + stem + eyebrow + noble + mask + lecturer + girlfriend + forehead + timetable + symbolic + farming + lid + librarian + injection + sexuality + irrelevant + bonus + abuse + thumb + survey + ankle + psychologist + occurrence + profitable + deliberate + bow + tribe + rightly + representative + code + validity + marble + bow + plunge + maturity + hidden + contrast + tobacco + middle + grip + clergy + trading + passive + decoration + racial + well + embarrassment + sauce + fatal + banker + compensate + make + seat + popularity + interior + eligible + continuity + bunch + hook + wicket + pronounce + ballet + heir + positively + insufficient + substitute + mysterious + dancer + trail + caution + donation + added + weaken + tyre + sufferer + managerial + elaborate + restraint + renew + gardener + dilemma + configuration + rear + embark + misery + importantly + continually + appreciation + radical + diverse + revive + trip + lounge + dwelling + parental + loyal + privatisation + outsider + forbid + yep + prospective + manuscript + inherent + deem + telecommunication + intermediate + worthwhile + calendar + basin + utterly + rebuild + pulse + suppress + predator + width + stiff + spine + betray + punish + stall + lifestyle + compile + arouse + partially + headline + divine + unpleasant + sacred + useless + cool + tremble + statue + obey + drunk + tender + molecular + circulate + exploitation + explicitly + utterance + linear + chat + revision + distress + spill + steward + knight + sum + semantic + selective + learner + dignity + senate + grid + fiscal + activate + rival + fortunate + jeans + select + fitting + commentator + weep + handicap + crush + towel + stay + skilled + repeatedly + defensive + calm + temporarily + rain + pin + villa + rod + frontier + enforcement + protective + philosophical + lordship + disagree + boyfriend + activist + viewer + slim + this + textile + mist + harmony + deed + merge + invention + commissioner + caravan + bolt + ending + publishing + gut + stamp + map + loud + stroke + shock + rug + picture + slip + praise + fine + monument + material + garment + toward + realm + melt + reproduction + reactor + furious + distinguished + characterize + alike + pump + probe + feedback + aspiration + suspect + solar + fare + carve + qualified + membrane + dependence + convict + bacteria + trading + ambassador + wound + drug + conjunction + cabin + trail + shaft + treasure + inappropriate + half + attribute + liquid + embassy + terribly + exemption + array + tablet + sack + erosion + bull + warehouse + unfortunate + promoter + compel + motivate + burning + vitamin + sail + lemon + foreigner + powder + persistent + bat + ancestor + predominantly + mathematical + compliance + arch + woodland + serum + overnight + doubtful + doing + coach + binding + surrounding + peer + ozone + mid + invisible + depart + brigade + manipulate + consume + temptation + intact + glove + aggression + emergence + stag + coffin + beautifully + clutch + wit + underline + trainee + scrutiny + neatly + follower + sterling + tariff + bee + relaxation + negligence + sunlight + penetrate + knot + temper + skull + openly + grind + whale + throne + supervise + sickness + package + intake + within + inland + beast + rear + morality + competent + sink + uniform + reminder + permanently + optimistic + bargain + seemingly + respective + horizontal + decisive + bless + bile + spatial + bullet + respectable + overseas + convincing + unacceptable + confrontation + swiftly + paid + joke + instant + illusion + cheer + congregation + worldwide + winning + wake + toss + medium + jewellery + fond + alarm + guerrilla + dive + desire + cooperation + thread + prescribe + calcium + redundant + marker + chemist + mammal + legacy + debtor + testament + tragic + silver + grin + spectacle + inheritance + heal + sovereignty + enzyme + host + neighbouring + corn + layout + dictate + rip + regain + probable + inclusion + booklet + bar + privately + laser + fame + bronze + mobile + metaphor + complication + narrow + old + chop + synthesis + diameter + bomb + silently + shed + fusion + trigger + printing + onion + dislike + embody + curl + sunshine + sponsorship + rage + loop + halt + cop + bang + toxic + thinking + orientation + likelihood + wee + up + polite + apology + exile + brow + miserable + outbreak + comparatively + pump + fuck + forecast + timing + headmaster + terrify + sigh + premier + joint + incredible + gravity + regulatory + cylinder + curiosity + resident + narrative + cognitive + lengthy + gothic + dip + adverse + accountability + hydrogen + gravel + willingness + inhibit + attain + specialise + steer + selected + like + confer + usage + portray + planner + manual + boast + unconscious + jail + fertility + documentation + wolf + patent + exit + corps + proclaim + multiply + brochure + screen + orthodox + locomotive + considering + unaware + syndrome + reform + confirmation + printed + curve + costly + underground + territorial + designate + comfort + plot + misleading + weave + scratch + echo + ideally + endure + verbal + stride + nursing + exert + compatible + causal + mosaic + manor + implicit + following + fashionable + valve + proceed + sofa + snatch + jazz + patron + provider + interim + intent + chosen + applied + shiver + pie + fury + abolition + soccer + corpse + accusation + kind + dead + nursing + contempt + prevail + murderer + liberal + gathering + adequately + subjective + disagreement + cleaner + boil + static + scent + civilian + monk + abruptly + keyboard + hammer + despair + controller + yell + entail + cheerful + reconstruction + patience + legally + habitat + queue + spectator + given + purple + outlook + genius + dual + canvas + grave + pepper + conform + cautious + dot + conspiracy + butterfly + sponsor + sincerely + rating + weird + teenage + salmon + recorder + postpone + maid + furnish + ethical + bicycle + sick + sack + renaissance + luxury + gasp + wardrobe + native + fringe + adaptation + quotation + hunger + enclose + disastrous + choir + overwhelming + glimpse + divorce + circular + locality + ferry + balcony + sailor + precision + desert + dancing + alert + surrender + archive + jump + philosopher + revival + presume + node + fantastic + herb + assertion + thorough + quit + grim + fair + broadcast + annoy + divert + accelerate + polymer + sweat + survivor + subscription + repayment + anonymous + summarise + punch + lodge + landowner + ignorance + discourage + bride + likewise + depressed + abbey + quarry + archbishop + sock + large + glare + descent + stumble + mistress + empty + prosperity + harm + formulation + atomic + agreed + wicked + threshold + lobby + repay + varying + track + crawl + tolerate + salvation + pudding + counter + propaganda + cage + broker + ashamed + scan + document + apparatus + theology + analogy + efficiently + bitterly + performer + individually + amid + squadron + sentiment + making + exotic + dominance + coherent + placement + flick + colourful + mercy + angrily + amuse + mainstream + appraisal + annually + torch + intimate + gold + arbitrary + venture + preservation + shy + disclosure + lace + inability + motif + listener + hunt + delicious + term + substitute + highway + haul + dragon + chair + accumulate + unchanged + sediment + sample + exclaim + fan + volunteer + root + parcel + psychiatric + delightful + confidential + calorie + flash + crowd + aggregate + scholarship + monitor + disciplinary + rock + hatred + pill + noisy + feather + lexical + staircase + autonomous + viewpoint + projection + offensive + controlled + flush + racism + flourish + resentment + pillow + courtesy + photography + monkey + glorious + evolutionary + gradual + bankruptcy + sacrifice + uphold + sketch + presidency + formidable + differentiate + continuing + cart + stadium + dense + catch + beyond + immigration + clarity + worm + slot + rifle + screw + harvest + foster + academic + impulse + guardian + ambiguity + triangle + terminate + retreat + pony + outdoor + deficiency + decree + apologise + yarn + staff + renewal + rebellion + incidentally + flour + developed + chorus + ballot + appetite + stain + notebook + loudly + homeless + census + bizarre + striking + greenhouse + part + burial + embarrassed + ash + actress + cassette + privacy + fridge + feed + excess + calf + associate + ruin + jointly + drill + photograph + devoted + indirectly + driving + memorandum + default + costume + variant + shatter + methodology + frame + allegedly + swell + investigator + imaginative + bored + bin + awake + recycle + group + enjoyment + contemporary + texture + donor + bacon + sunny + stool + prosecute + commentary + bass + theirs + sniff + repetition + eventual + credit + suburb + organisational + newcomer + romance + film + experiment + daylight + warrant + fur + parking + nuisance + civilian + foolish + bulb + balloon + vivid + surveyor + spontaneous + biology + injunction + appalling + amusement + aesthetic + vegetation + stab + rude + offset + thinking + mainframe + flock + amateur + academy + shilling + reluctance + velocity + spare + wartime + soak + rib + mighty + shocked + vocational + spit + gall + bowl + prescription + fever + axis + reservoir + magnitude + rape + cutting + bracket + agony + strive + strangely + pledge + recipient + moor + invade + dairy + chord + shrink + poison + pillar + washing + warrior + supervisor + outfit + innovative + dressing + dispute + jungle + brewery + adjective + straighten + restrain + monarchy + trunk + herd + deadline + tiger + supporting + moderate + kneel + ego + sexually + ministerial + bitch + wheat + stagger + snake + ribbon + mainland + fisherman + economically + unwilling + nationalism + knitting + irony + handling + desired + bomber + voltage + unusually + toast + feel + suffering + polish + technically + meaningful + aloud + waiter + tease + opposite + goat + conceptual + ant + inflict + bowler + roar + drain + wrong + galaxy + aluminium + receptor + preach + parade + opposite + critique + query + outset + integral + grammatical + testing + patrol + pad + unreasonable + sausage + criminal + constructive + worldwide + highlight + doll + frightened + biography + vocabulary + offend + accumulation + linen + fairy + disco + hint + versus + ray + pottery + immune + retreat + master + injured + holly + battle + solidarity + embarrassing + cargo + theorist + reluctantly + preferred + dash + total + reconcile + drill + credibility + copyright + beard + bang + vigorous + vaguely + punch + prevalence + uneasy + boost + scrap + ironically + fog + faithful + bounce + batch + smooth + sleeping + poorly + accord + vice + duly + blast + square + prohibit + brake + asylum + obscure + nun + heap + smoothly + rhetoric + privileged + liaison + jockey + concrete + allied + rob + indulge + except + distort + whatsoever + viable + nucleus + exaggerate + compact + nationality + direct + cast + altar + refuge + presently + mandatory + authorise + accomplish + startle + indigenous + worse + retailer + compound + admiration + absurd + coincidence + principally + passport + depot + soften + secretion + invoke + dirt + scared + mug + convenience + calm + optional + unsuccessful + consistency + umbrella + solo + hemisphere + extreme + brandy + belly + attachment + wash + uncover + treat + repeated + pine + offspring + communism + nominate + soar + geological + frog + donate + co + nicely + innocence + housewife + disguise + demolish + counsel + cord + semi + reasoning + litre + inclined + evoke + courtyard + arena + simplicity + inhibition + frozen + vacuum + immigrant + bet + revenge + jail + helmet + unclear + jerk + disruption + attainment + sip + program + lunchtime + cult + chat + accord + supposedly + offering + broadcast + secular + overwhelm + momentum + infinite + manipulation + inquest + decrease + cellar + counsellor + avenue + rubber + labourer + lab + damn + comfortably + tense + socket + par + thrust + scenario + frankly + slap + recreation + rank + spy + filter + clearance + blessing + embryo + varied + predictable + mutation + equal + can + burst + retrieve + elder + rehearsal + optical + hurry + conflict + combat + absorption + ion + wrong + heroin + bake + x + vector + stolen + sacrifice + robbery + probe + organizational + chalk + bourgeois + villager + morale + express + climb + notify + jam + bureaucratic + literacy + frustrate + freight + clearing + aviation + legislature + curiously + banana + deploy + passionate + monastery + kettle + enjoyable + diagnose + quantitative + distortion + monarch + kindly + glow + acquaintance + unexpectedly + handy + deprivation + attacker + assault + screening + retired + quick + portable + hostage + underneath + jealous + proportional + gown + chimney + bleak + seasonal + plasma + stunning + spray + referral + promptly + fluctuation + decorative + unrest + resent + plaster + chew + grouping + gospel + distributor + differentiation + blonde + aquarium + witch + renewed + jar + approved + advocate + worrying + minimise + footstep + delete + underneath + lone + level + exceptionally + drift + spider + hectare + colonel + swimming + realism + insider + hobby + computing + infrastructure + co + burn + cereal + fold + compromise + boxing + rear + lick + constrain + clerical + hire + contend + amateur + instrumental + terminal + electorate + congratulate + balanced + manufacturing + split + domination + blink + bleed + unlawful + precedent + notorious + indoor + upgrade + trench + therapist + illuminate + bargain + warranty + scar + consortium + anger + insure + extensively + appropriately + spoon + sideways + enhanced + disrupt + satisfied + precaution + kite + instant + gig + continuously + consolidate + fountain + graduate + gloom + bite + structure + noun + nomination + armchair + virtual + unprecedented + tumble + ski + architectural + violation + rocket + inject + departmental + row + luxury + fax + deer + climber + photographic + haunt + fiercely + dining + sodium + gossip + bundle + bend + recruit + hen + fragile + deteriorate + dependency + swift + scramble + overview + imprison + trolley + rotation + denial + boiler + amp + trivial + shout + overtake + make + hunter + guess + doubtless + syllable + obscure + mould + limestone + leak + beneficiary + veteran + surplus + manifestation + vicar + textbook + novelist + halfway + contractual + swap + guild + ulcer + slab + detector + detection + cough + whichever + spelling + lender + glow + raised + prolonged + voucher + t + linger + humble + honey + scream + postcard + managing + alien + trouble + reverse + odour + fundamentally + discount + blast + syntactic + scrape + residue + procession + pioneer + intercourse + deter + deadly + complement + restrictive + nitrogen + citizenship + pedestrian + detention + wagon + microphone + hastily + fixture + choke + wet + weed + programming + power + nationally + dozen + carrot + bulletin + wording + vicious + urgency + spoken + skeleton + motorist + interactive + compute + whip + urgently + telly + shrub + porter + ethics + banner + velvet + omission + hook + gallon + financially + superintendent + plug + continuation + reliance + justified + fool + detain + damaging + orbit + mains + discard + dine + compartment + revised + privatization + memorable + lately + distributed + disperse + blame + basement + slump + puzzle + monitoring + talented + nominal + mushroom + instructor + fork + board + want + disposition + cemetery + attempted + nephew + magical + ivory + hospitality + besides + astonishing + tract + proprietor + license + differential + affinity + talking + royalty + neglect + irrespective + whip + sticky + regret + incapable + franchise + dentist + contrary + profitability + enthusiast + crop + utter + pile + pier + dome + bubble + treasurer + stocking + sanctuary + ascertain + arc + quest + mole + marathon + feast + crouch + storm + hardship + entitlement + circular + walking + strap + sore + complementary + understandable + noticeable + mankind + majesty + course + pigeon + goalkeeper + ambiguous + walker + virgin + prestige + preoccupation + upset + municipal + groan + craftsman + anticipation + revise + knock + infect + denounce + confession + turkey + toll + pal + transcription + sulphur + provisional + hug + particular + intent + fascinate + conductor + feasible + vacant + trait + meadow + creed + unfamiliar + optimism + wary + twist + sweet + substantive + excavation + destiny + thick + pasture + archaeological + tick + profit + pat + papal + cultivate + awake + trained + civic + voyage + siege + enormously + distract + stroll + jewel + immediately + honourable + helpless + hay + expel + eternal + demonstrator + correction + civilization + ample + retention + rehabilitation + premature + encompass + distinctly + diplomat + articulate + restricted + prop + intensify + deviation + contest + workplace + lazy + kidney + insistence + whisper + multimedia + forestry + excited + decay + screw + rally + pest + invaluable + homework + harmful + bump + bodily + grasp + finished + facade + cushion + conversely + urge + tune + solvent + slogan + petty + perceived + install + fuss + rack + imminent + short + revert + ram + contraction + tread + supplementary + ham + defy + athlete + sociological + physician + crossing + bail + unwanted + tight + plausible + midfield + alert + feminine + drainage + cruelty + abnormal + relate + poison + symmetry + stake + rotten + prone + marsh + litigation + curl + urine + latin + hover + greeting + chase + spouse + produce + forge + salon + handicapped + sway + homosexual + handicap + colon + upstairs + stimulation + spray + original + lay + garlic + suitcase + skipper + moan + manpower + manifest + incredibly + historically + decision + wildly + reformer + quantum + considering + +the of and to in I that was his he it with is for as had you not be her on at by which have or from this him but all she they were my are me one their so an said them we who would been will no when there if more out up into do any your what has man could other than our some very time upon about may its only now like little then can should made did us such a great before must two these see know over much down after first mr good men + + + +own never most old shall day where those came come himself way work life without go make well through being long say might how am too even def again many back here think every people went same last thought away under take found hand eyes still place while just also young yet though against things get ever give god years off face nothing right once another left part saw house world head three took new love always mrs put night each king between tell mind heart few because thing whom far seemed looked called whole de set both got find + + + +done heard look name days told let lord country asked going seen better p having home knew side something moment father among course hands woman enough words mother soon full end gave room almost small thou cannot water want however light quite brought nor word whose given door best turned taken does use morning myself gutenberg felt until since power themselves used rather began present voice others white works less money next poor death stood form within together till thy large matter kind often certain herself year friend half order round true anything keep sent wife means believe passed feet + + + +near public state son hundred children thus hope alone above case dear thee says person high read city already received fact gone girl known hear times least perhaps sure indeed english open body itself along land return leave air nature answered either law help lay point child letter four wish fire cried women speak number therefore hour friends held free war during several business whether er manner second reason replied united call general why behind became john become dead earth boy lost forth thousand looking i'll family soul feel coming england spirit question care truth ground really rest mean + + + + +different making possible fell towards human kept short town following need cause met evening returned five strong able french live lady subject sn answer sea fear understand hard terms doubt around ask arms turn sense seems black bring followed beautiful close dark hold character sort sight ten show party fine ye ready story common book electronic talk account mark interest written can't bed necessary age else force idea longer art spoke across brother early ought sometimes line saying table appeared river continued eye ety sun information later everything reached suddenly past hours strange deep change miles feeling act meet paid + + + +further purpose happy added seem taking blood rose south beyond cold neither forward view i've position sound none entered clear road late stand suppose la daughter real nearly mine laws knowledge comes toward bad cut copy husband six france living peace didn't low north remember effect natural pretty fall fair service below except american hair london laid pass led copyright doing army run horse future opened pleasure history west pay red an' hath note although wanted gold makes desire play master office tried front big dr lived certainly wind receive attention government unto church strength length company placed paper + + + +letters probably glad important especially greater yourself fellow bear opinion window ran faith ago agreement charge beauty lips remained arm latter duty send distance silence foot wild object die save gentleman trees green trouble smile books wrong various sleep persons blockquote happened particular drew minutes hardly walked chief chance according beginning action deal loved visit thinking follow standing knows try presence heavy sweet plain donations immediately wrote mouth rich thoughts months u won't afraid paris single joy enemy broken unless states ship condition carry exclaimed including filled seeing influence write boys appear outside secret parts please appearance evil march george + + + +whatever slowly tears horses places caught stay instead struck blue york impossible period sister battle school mary raised occasion married man's former food youth learned merely reach system twenty dinner quiet easily moved afterwards giving walk stopped laughed language expression week hall danger property wonder usual figure born court generally grew showed getting ancient respect third worth simple tree leaving remain society fight wall result heaven william started command tone regard expected mere month beside silent perfect experience street writing goes circumstances entirely fresh duke covered bound east wood stone quickly notice bright christ boat noble meant somewhat sudden value + + + +c direction chair due support tom date waiting christian village lives reading agree lines considered field observed scarcely wished wait greatest permission success piece british ex charles formed speaking trying conversation proper hill music opportunity that's german afternoon cry cost allowed girls considerable c broke honour seven private sit news top scene discovered marriage step garden race begin per individual sitting learn political difficult bit speech henry lie cast eat authority etc floor ill ways officers offered original happiness flowers produced summer provide study religion picture walls personal america watch pleased leaves declared hot understood effort prepared escape attempt supposed + + + + +killed fast author indian brown determined pain spring takes drawn soldiers houses beneath talking turning century steps intended soft straight matters likely corner trademark justice simply produce trust appears rome laugh forget europe passage eight closed ourselves gives dress passing terrible required medium efforts sake breath wise ladies possession pleasant perfectly o' memory usually grave fixed modern spot troops rise break fifty island meeting camp nation existence reply i'd copies sky touch equal fortune v shore domain named situation looks promise orders degree middle winter plan spent allow pale conduct running religious surprise minute roman cases shot lead move names + + + +stop higher et father's threw worse built spoken glass board vain affairs instance safe loss doctor offer class complete access lower wouldn't repeated forms darkness military warm drink passion ones physical example ears questions start lying smiled keeping spite shown directly james hart serious hat dog silver sufficient main mentioned servant pride crowd train wonderful moral instant associated path greek meaning fit ordered lot he's proved obliged enter rule sword attack seat game health paragraph statement social refund sorry courage members grace official dream worthy rock jack provided special shook request mighty glance heads movement fee share expect couldn't dollars + + + +spread opposite glory twelve space engaged peter wine ordinary mountains taste iron isn't distribute trade consider greatly accepted forced advantage ideas decided using officer rate clothes sign feelings native promised judge difference working anxious marry captain finished extent watched curious foreign besides method excellent confidence marked 'em jesus exactly importance finally bill vast prove fancy quick yes sought prevent neck hearts liberty interesting sides legal gentlemen dry serve aside pure concerning forgotten lose powers possessed thrown evidence distant michael progress similar narrow altogether building page particularly knowing weeks settled holding mountain search sad sin lies proud pieces clearly price ships + + + +thirty sick honest shut talked bank fate dropped judgment conditions king's accept hills removed forest measure species seek highest otherwise stream honor carefully obtained ear bread bottom additional presented aid fingers q remembered choose agreed animal events there's fully delight rights amount obtain tax servants sons cross shoulders thick points stranger woods facts dare grow creature hung rain false tall gate nations created refused quietly surface freely holy streets blow july regarded fashion report coast daily file shoulder surprised faces succeeded birds distribution royal song wealth comfort failed freedom peculiar anyone advance gentle surely animals waited secure desired grass touched + + + + +occupied draw stage portion expressed opening june spirits fish tongue capital angry growing served carriage weather breast presently snow david papers necessity practice claim hast education sharp prince permitted group enemies robert played throughout pity expense yours million add pray taught explained tired leading kill shadow companion weight mass established suffered gray brave thin satisfied check virtue golden numerous frequently famous telling powerful alive waters national weak divine material principal gathered suggested frank valley guess finding yellow heat remains bent seized guard equally naturally box remarkable gods moon slight style pointed saved windows crossed louis pounds ain't evidently principle immediate + + + +willing consequence richard principles characters paul season remarked science tender worked grown whispered interested quarter midst liked advanced apparently bore pwh active noticed aware thomas uncle list dangerous august calm genius sacred kingdom entire popular unknown nice habit spanish familiar reader published direct handsome you'll joined actually kings sd posted approach washington hearing needed increased walking twice throw intellectual appointed wisdom ceased truly numbers demanded priest wounded sorrow drive fault listened palace affair contact distinguished station beat distributed e listen italy fool becomes watching hurt wants express occurred favour height size edge subjects task follows interests nine sympathy burst putting + + + + +dressed lifted hopes suffer noise smiling rode tells minds farther literature vessel affection suffering proceeded flesh advice grand carrying legs spain post collection empty rank storm god's imagine wore duties admitted countries pocket arrival imagination driven loud sentence lovely extraordinary november december happen absence breakfast population thank rules inhabitants series laughing address relief bird owner impression satisfaction coat prepare relations shape birth rapidly smoke january mother's machine content consideration accompanied regular moving stands wholly teeth busy treated burning shame quality bay discover inside brain soil completely message ring resolved calling phrase acts mention square pair won title understanding sunday fruit + + + +mad forces included tea rocks nearer slaves falling absolutely slow bearing mercy larger explain contain grief soldier wasn't countenance previous explanation welcome proposed prayer stars germany belief informed moments poetry constant buy final faithful ride policy supper drawing excitement dying demand fighting fields drove upper sum philip motion assistance forty april stones edward fees kindly dignity catch october seated knees amongst current sending parties objects gained bitter possibly slave separate loose text receiving worst sold don credit chosen hoped printed terror features fond control capable fifteen doesn't firm superior cruel spiritual harry splendid proof pressed sooner join process crime dust + + + +instantly lands relation doors concerned deeply practical colour sing destroy anger distributing results increase reasons nose friendly entrance rooms admit supply clean useful yesterday delicate fail continue remove addressed choice huge needs wear blind unable cover double victory dozen constantly level india release rough ended shows fly praise devil ahead smith connected degrees gain addition committed chamber notes italian gradually acquaintance bought souls mission sacrifice cities mistake exercise conscience based car buried theory commanded nobody minister closely energy dick bare fought partly mistress hate arose playing color lake safety provisions description asleep centre faint thinks parents escaped careful enjoy drop + + + +brilliant brief bringing worship goods tale skin roof grey highly crown castle excited throne stated despair ease attached total kindness mile citizens circle dull extreme clouds figures intention prison term assured hidden thoroughly cup member civil apply labor everywhere intelligence strike fairly comply fellows haven't event gently connection protection conscious edition directed pulled flight evident surrounded wishes yards voices weary couple variety whilst volume details older requirements custom apart bow awful everybody labour asking lover showing introduced suit becoming composed plans rendered pictures lest volunteers singing eager precious paused require meat whenever milk dogs successful plants vision rare granted raise + + + +egypt manners cousin you've development arthur obs cool trial learning approached bridge abroad devoted paying literary writer fn israel disappeared interrupted stock readers dreadful female protect accustomed virginia type recognized salt destroyed signs innocent temper plenty pope avoid hurried represented favor mental attitude returning admiration brothers anxiety queen teach count curiosity solemn causes vessels compelled dance hotel wicked fled kissed guns fill visible younger guide earnest actual companions prisoner miserable lad harm views irish utterly ends shop stairs pardon gay beg seldom kinds record fat sand violent branches inquired iv september worn ireland flat departure delivered gift ruin skill cattle + + + +equipment temple calls earlier license visited en consent sufficiently natives wound laughter contained perceived scattered whence rushed chiefly bold anywhere witness foolish helped kitchen sell anybody self extremely treatment throat dreams patient speed growth quantity latin immense conclusion computer affected severe excuse triumph origin joseph slept eternal thine audience pages sounds swift limited wings stepped services library remaining containing base confusion win maid charming editions attended softly reality performed glorious likewise site sail frightened acquainted unhappy feared article prisoners store adopted shalt remark cook thousands pause inclined convinced band valuable hence desert effects kiss plant ice ball stick absolute readily + + + + +behold fierce argument observe blessed bosom rage striking discovery creatures shouted guilty related setting forgot punishment gun slightly articles police mysterious extended confess shade murder emotion destruction wondered increasing hide expedition horror local expenses ignorant doctrine generous range host wet cloud mystery ed waste changes possess consciousness february trembling disease formerly spend production source mankind universal deck sees habits estate aunt reign humble compliance delay shining reported hers unfortunate midnight listening flower hero accomplished doth classes thanks banks philosophy belong finger comfortable market cap waves woman's glanced troubled difficulties picked european purposes somewhere delighted pushed press household fleet baby region + + + + +lately uttered exact image ages murmured melancholy suspicion bowed refuse elizabeth staff liability we'll enjoyed stretched gaze belonged ashamed reward meal blame nodded status opinions indicate poem savage arise voyage misery guests painted attend afford donate job proceed loves forehead regret plainly risk ad lighted angel rapid distinct doubtless properly wit fame singular error utmost methods reputation appeal she's w strongly margaret lack breaking dawn violence fatal render career design displayed gets commercial forgive lights agreeable suggestion utter sheep resolution spare patience domestic concluded 'tis farm reference chinese exist corn approaching alike mounted jane issue key providing majority measures towns + + + +flame boston dared ignorance reduced occasionally y weakness furnished china priests flying cloth gazed profit fourth bell hitherto benefit movements eagerly acted urged ascii disposed electronically atmosphere chapter begged helen hole invited borne departed catholic files reasonable sugar replacement sigh humanity thrust frame opposition disk haste lonely artist knight quarters charm substance rolled email flung celebrated division slavery verse decision probable painful governor forever turns branch ocean rear leader delightful stared boats keen disposition senses occasions readable beloved inches bones enthusiasm materials luck derived managed community apparent preserved magnificent hurry scheme oil thence reaching dim wretched hanging pipe useless nevertheless + + + +print smooth solid pursued necessarily build attempted centuries eggs equivalent hastily burned you'd recent oh travel cries noon crying generations located cabin announcement britain compared handed cease smaller circumstance tent frequent alarm nervous beast what's aloud independent gates distinction essential observation stronger recovered belonging loving masters writers cf permanent mortal stern gratitude preserve burden aspect millions merry knife dread clever applicable district shadows jim silk failure links cent sentiment amid profits agent finds russia bade russian desperate union imagined contempt raising lords hell separated grant seriously tribes hit enormous defective conviction secured mixed insisted wooden prefer prayers fever selected daughters + + + +treat warning flew speaks developed impulse slipped ours johnson mistaken damages ambition resumed christmas yield ideal schools confirmed descended rush falls deny calculated correct perform hadn't somehow accordingly stayed acquired counsel distress sins notion discussion constitution anne hundreds instrument firmly actions steady remarks empire elements idle pen entering online africa permit th' tide vol leaned college maintain sovereign tail generation crowded fears nights limitation tied horrible cat displaying port male experienced opposed treaty contents rested mode poured les occur seeking practically abandoned reports eleven sank begins founded brings trace instinct collected scotland characteristic chose cheerful tribe costs threatened arrangement western + + + + +sang beings sam pressure politics sorts shelter rude scientific revealed winds riding scenes shake industry claims pp merit profession lamp interview territory sleeping sex coffee devotion thereof creation trail romans supported requires fathers prospect obey alexander shone operation northern nurse profound hungry scott sisters assure exceedingly match wrath continually rest gifts folly chain uniform debt teaching venture execution shoes mood crew perceive accounts eating multitude declare yard o'er astonishment version vague odd grateful nearest infinite elsewhere copying apartment activity wives parted security cared sensible owing martin saturday cottage jews leaning capacity joe settle referred francis holder involved sunshine dutch council + + + +princes ate examination steel strangers beheld test noted slightest widow charity realized element shed errors communication reflection attacked organization maintained restored folks concealed accordance heavens star examined deeds wordforms somebody incident oath guest bar row poverty bottle prevented bless stir intense completed quarrel touching inner available fix resistance unusual deed derive hollow suspected contains sighed province deserted establishment vote muttered thither oxford cavalry lofty endure succeed leg bid alice hated civilization u s acting landed christians passions interior scarce lightly disturbed rev supreme hang notwithstanding shock exception offering display strain drank confined o exhausted poets sounded aim critical jerusalem directions negro + + + + +fearful standard studied bag n buildings consequences commenced deeper repeat driving beasts track rid holds residence steadily intimate drinking swear treasure fun throwing apt enterprise queer seed tower runs defend favourite desires heavily assembled existed depends poems hesitated stuff section settlement staring sole roads plate mexico overcome pains performing dwell grounds taxes marble recently tones ability awake walter wave shaking folk possibility butter fury marched moses writes issued sailed instructions hatred pursuit pull furniture additions hid rope vi adventure royalty vanished arts elder signal wanting supplied feast safely burn describe references lesson annual card passes application intelligent county beaten presents + + + +format flow sixty scale damage marks obtaining moreover commerce startled southern consequently outer belongs ben wrought average naked conducted rivers songs obvious foundation concern ceremony magic campaign hunting carolina liberal whisper largely commonly torn exists contributions hunt teacher christianity lawyer operations detail shortly caesar wondering leaders blessing princess he'd altar tenderness tiny web cardinal sharply regiment chest distinctly purple creating gather depth indignation performance election prosperity gloomy conception clerk decide drunk victim reflected pour preceding individuals gazing absurd lift gesture armies limbs manage brethren hugh plays hastened dragged motive whatsoever pointing verses pronounced exchange definite emperor tendency remote finish flag + + + +boots enabled administration denied churches rarely earnestly considering previously ugly bears signed genuine harmless mingled obedience walks training badly feed central contrast relieved romance mississippi structure payment pace passages succession persuaded sources inquiry inspired angels roll wilt inch troubles perfection lee wherever owe handle advantages trip shoot fortunate newspaper employment fitted refuge misfortune providence owns cutting beard stirred tear dan resist bob depths maiden determine commission merchant whereas crossing independence lively breeze provinces jean virtues conceived relative solitary smell wandering thereby eighteen locked provision courts eaten historical regarding florence preferred pick ruined wherein vanity condemned deliver unexpected desk gross lane + + + +happens represent billy root holland mud respectable cleared feels fruits testimony milton existing bride rang ranks responsibility beating disappointed suitable depend judges giant grasp arrive simplicity autumn absent legally veil gloom doubtful suspect weapons limits determination feeble prophet shak gathering basis examine corrupt payments returns laying prize instances greeks d they're theatre purchase comparison composition rival someone realize defeat demands foe shared consists studies balance intercourse id forming slender coach criminal knocked silly humour masses indifferent recall occupation discourse keeps regions intervals assist novel intellect leads hither tales sale revenge lucy yonder resources jealous we're wheel invitation narrative risen burnt + + + +sentiments inferior amusement marie flash recognize swiftly portrait create summoned suggest induced conflict fed curse disappointment helpless preparing construction lincoln zeal responsible indicated groups positive germans attracted vengeance fort club cure stout missed gracious include flood satisfy agony respects ventured implied maria stupid seas spaniards grain enjoyment wearing indifference conceal horizon pleasures therein precisely canada day's assume registered estimate steep route gardens visitor closer harmony non thunder wire graceful crept greece childhood knee saddle supplies weeping mostly paragraphs unconscious mutual scorn grows external agents software institutions losing universe clock attempts instruction injury roots receipt jumped dearest sore earliest finest enable + + + +discipline motives fastened introduction converted wilderness confused fancied offices slip revolution wedding girl's farmer silently fires wept behalf reckon responded uncertain neglected stroke exquisite engagement dirty rolling platform messenger privilege admirable offers mischief physician imposed organized covering student daring cave wars convey he'll sincere tradition gravely combined gallant sensation travelling charges submit tragedy specific commander inn stiff accompany score virgin farewell paradise villages hunger trembled favorite criticism proprietary customs cotton ruth hospital restrictions outward impressed blows plains flashed rent prey owed longing musical satisfactory ridiculous sheet disgrace colored shouldn't originally samuel wages papa gas inevitable extensive leisure deadly chin claimed + + + +glow husband's emotions adam jealousy leaf publication englishman allah jones hostile wandered railway translation procession betrayed pound admired elected pierre sunk ruins eastern roses citizen reminded deceived tables beach starting funeral arrested flour feature correspondence consisted counted reserve proceedings roar romantic twenty five hut strangely absorbed propose seats bark reception pleasing attained wake research prayed monarch clothing dollar illness calmly obeyed heartily pressing daylight warriors jest abruptly washed comment metal preparations nerves solution pretended sixteen assembly tobacco entity dwelling depart swung bitterly alteration colony disclaimers wing peaceful lion opportunities alarmed furnish resting accused culture writings dwelt conquered trick trusted column financial + + + +cunning preparation drama joke entertained mist hypertext shell medicine proofread nest reverence situated yielded conceive appointment lessons fetch tomb candle offence coarse heap mixture homes model men's defect destined occasional fourteen hint knights solicit dreamed objection craft acid namely asia neglect data weapon confessed arrangements repose complying copied pink user heels grandfather other's income i e regards streams vigorous accepting bishop lightning authors flames observations compressed sport powder beds orange painting shout austria bath careless chap derivative roused primitive doorway climbed volumes vulgar arguments st sunset convenient mail recalled wrapped abode planted paint surrender establish mild promptly appearing department parish stephen + + + +nay lit handkerchief basket easier deserve quit assurance mirror plot yer upward sadly secretary adding modest dish cares straw net advised heavenly largest proceeding impatient wounds warmth certainty restless meantime rays salvation lovers experiment shores today tremendous afforded moonlight intend california cultivated flushed shakespeare newspapers rocky pious wont steam improvement garments ned treasury merchants perpetual trained products affectionate dispute visitors poison proposition maybe rifle warned parting shield erected employ prevailed talent rises climate chairs searched unlike recover mate arrange fortunes puzzled committee aged ohio ashes ghost b promises bushes effective distinguish manifest comparatively esteem blew revelation wash recognition confession clay + + + +nonsense trunk management undoubtedly dried dorothy chiefs coal stolen earthly restore indirectly lasted selfish renewed canoe protest vice races deemed temporary pile frederick chapel moderate spell massachusetts upright quoted area bone solitude instruments formal students greatness struggling monday reproach altered grim leaped venice federal questioned editor desirable acknowledge motionless remedy bestowed pursue representative pole gladly linen vital sink pacific hopeless dangers gratefully president travelled ward nephew ms cheer bloody siege commands justified atlantic stomach improved admire openly sailors abide advancing forests records polly recorded modification dramatic statements upstairs varied letting wilson comrades sets descent whither envy load pretend folded brass + + + +internal furious curtain healthy obscure summit alas fifth center faced cheap saints colonel egyptian contest owned adventures exclusion seize chances springs alter landing fence leagues glimpse statue contract luxury artillery doubts saving fro string combination awakened faded arrest protected temperature strict contented professional intent brother's injured neighborhood andrew abundance smoking yourselves medical garrison likes corps heroic inform wife's retained agitation nobles prominent institution judged embrace wheels closing damaged pack affections eldest anguish surrounding obviously strictly capture drops inquire ample remainder justly recollection deer answers bedroom purely bush plunged thyself joint refer expecting madam railroad spake respecting jan columns weep identify + + + +discharge bench ralph heir oak rescue limit unpleasant anxiously innocence awoke expectation incomplete program reserved secretly we've invention faults disagreeable piano defeated charms purse persuade deprived electric endless interval chase heroes invisible well known occupy jacob gown cruelty lock lowest hesitation withdrew proposal destiny recognised commons foul loaded amidst titles ancestors types commanding madness happily assigned declined temptation lady's subsequent jewels breathed willingly youthful bells spectacle uneasy shine formidable stately machinery fragments rushing attractive product economic sickness uses dashed engine ashore dates theirs adv clasped international leather spared crushed interfere subtle waved slope floating worry effected passengers violently donation steamer witnesses + + + +specified learnt stores designed guessed roger timber talents heed jackson murdered vivid woe calculate killing laura savages wasted trifle funny pockets philosopher insult den representation incapable eloquence dine temples ann sensitive robin appetite wishing picturesque douglas courtesy flowing remembrance lawyers sphere murmur elegant honourable stopping guilt welfare avoided fishing perish sober steal delicious infant lip norman offended dost memories wheat japanese humor exhibited encounter footsteps marquis smiles amiable twilight arrows consisting park retire economy sufferings secrets na halted govern favourable colors translated stretch formation immortal gallery parallel lean tempted frontier continent knock impatience unity dealing prohibition decent fiery images tie + + + +punished submitted julia albert rejoined speedily consented major preliminary cell void placing prudence egg amazement border artificial hereafter fanny crimes breathe exempt anchor chicago sits purchased eminent neighbors glowing sunlight examples exercised wealthy seeming bonaparte shouting thanked illustrious curiously inspiration seeds naval foes everyone longed abundant doubted painter greeted erect glasses meanwhile shooting athens wagon lend lent crisis undertake particulars eh veins polite anna experiences seal header clergy mount array corners magazine loudly bitterness texas guardian searching rejected harsh includes boldly maurice kate lunch pine shells seconds despite hoping injustice expressions flies push tight problems landscape sue protested scarlet abandon + + + + +artistic mainly measured loyal boiling desirous suited alliance advise waist sinking apprehension stable gregory maximum commit hideous hamilton sweetness dismissed tore affect shaken evils unworthy significance modified miracle lieu peasant considerably observing conveyed resemblance extend riches personally morality rebellion thread dumb inclination forbidden copper differences sailor requested alfred response promoting imperial blank purity victor bending solemnly twenty four minor del crimson republic teachers ma'am danced bargain dealt fatigue telephone cents whip adams dislike witnessed infantry acres checked countrymen enemy's companies normal shirt addresses introduce sofa mothers sweep conversion sketch african deserved answering virtuous persian anyway thief driver retain constructed daniel ut + + + +philadelphia conspicuous channel nobility edith berlin editing cambridge declaration guards personality smallest excess separation disgust ha accomplish speeches herbert convent rightly suspended reform mob thirst unnecessary treasures asks viewed designs gleam threatening palm missouri filling quoth fur fortnight holes addressing frightful encourage speaker tribute procure frankly recommended relieve intentions unjust legislation project threshold merits morrow traces induce spear inward pupils corresponding fairy conclude clung neat lucky lap session torture damp ridge spoil liable swords hearty bc abraham thoughtful traveller chains favorable tin imp strongest horace dependent couch bills warrant complaint endeavour sails dined convention guarded angle widely illinois charlotte endeavoured + + + + +ardent cow mill victims prejudice foremost map probability porch lieutenant surprising fountain sustained appropriate ford clara assisted lewis rejoice extending marvellous clothed jew collar bands confident hasty nigh organ prose privileges selection inquiries codes replace saint districts deliberately awe beforehand strife released compare beer retorted relate cheerfully pistol presume velvet wretch susan pennsylvania stirring righteousness missing fain facing fashionable producing peoples positively reasoning gravity disturb sermon exchanged partner brains lowered association estates abuse flock niece languages asserted bodily notions oliver faculty cannon thirteen sailing rings smart possessions disciples petty widest divisions prudent caution justify awhile boxes manuscript cigar warrior impressions + + + +aught lifting inaccurate tidings friday liquid staying concept creek lo brush download specially cream meetings jump unwilling adapted practised combat subdued jewish innumerable blowing extra civilized invented japan pitch cliff crowned portions awkward horrid pulling appreciate communicated kentucky jury encountered attacks monster simon maintaining sites frozen invariably dies survive literally consolation m phenomena pot ellen briefly rice planned barbara respected sublime dropping guy behaviour desolate penny adopt replaced revenue formats hired regularly infringement curtains eagerness helping investigation constitutional insist occurs fools inheritance latest leap games apple visiting travellers experiments hasn't pupil enjoying totally twisted discuss firing background subscribe tenderly transcribe + + + +descend differ majesty's avail disaster bet periodic bull entertainment computers cursed raw fulfilled georgia virus log skies scotch embraced hospitality faintly solomon robbed cart influences ascended incidents childish robe aboard resembling reflect dominion dreary serving complexion engage tents herd attain collect disclaims pan relatives borrowed convert outline blown comprehend peasants opera assault deceive doctrines representatives dedicated struggled officials hiding paths backs prominently prices procured mourning compliment heights approval gasped breadth withdraw tune compassion polished latitude dishes parent contrived delicacy projected akin f betray traced resentment indemnify pseud sacrifices disguise transcription document neighbour squire punish bars glittering tossed block lots worldly + + + +muscles elbow obligation trifling decline attachment ambitious filename artists bloom holiday brute repair fist recollect eagle honorable significant barren functions guided dense fiction viz adds rows recommend suspicious resulting seventy shillings educational duly governed scripture upwards sworn nicholas horn brook fund vienna lodge infinitely clergyman marshal ruled fiercely portuguese costume pit disorder sheer exalted fare applause chaucer remind binary packed pillow jersey abbey nowhere anyhow agitated marching catching el grasped arrow tend carved fitting bonds instructed elaborate corpse bewildered essence positions emily edited continues harold elevation realm debts glancing shops complained loyalty coin clad staircase documents interpreted th extremity accord + + + +sally lace tremble exile gospel mechanical successfully scholar wonders arab temperament expressing fred trap spots awaiting potatoes likeness harbour proofs jolly contributed wits generosity ruler lawrence cake lamps crazy sincerity entertain madame sir faculties hesitate deepest seventeen lordship greeting feminine monstrous tongues barely d mansion facility praised warranties sarah happier indicating rob gigantic honey ladder ending wales swallowed sunny knelt tyranny decree stake divide dreaming proclaimed dignified tread mines viewing defense oldest incredible bidding brick arch everlasting elect sprung harder winding deductible magistrate respective liquor imitation shy perished prime studying eighty hebrew unfortunately licensed fog coloured bits consult moves r + + + + +warn taylor vile depended phil legend locations shallow doom dreaded encouragement impatiently scent varieties irregular battles compass neighbouring bliss harvest promotion stove faithfully anthony excellence transfer awaited heathen poetic consulted illustrated gilbert br fundamental bundle rebel cultivation joys rigid tragic review representing flowed brows whereupon terribly melted venerable towers cooking mustn't suspicions old fashioned oppressed australia friend's revolt swell improve williams describes goddess wreck tennessee convince sentences bowl radiant prussia westward indignant refined unseen illustration pertaining swamp austrian saxon congregation nerve undertaking disclaimer characteristics stare specimens ascertain pledge earn warfare supposing subsequently attending angrily select animated industrial hurriedly manhood quantities interpretation + + + +dressing rejoiced edinburgh catherine challenge produces forbid gang boiled shouts so called theme thankful admission enters elevated frenchman pool terrified lads persisted conference equality genus didst newly generals surroundings sorrows occasioned invasion workmen monks sends turkish discretion pattern reveal endured resolve columbia preach exceeding ringing triumphant defiance errand woke grandmother weighed wool orleans communicate strikes promising scenery righteous essentially oppose joyous specimen doctors eloquent manager organs sticks drag haunted chorus rational crop processing accurate wolf adorned sheets resort refusal bond vicinity preacher sympathetic casting opens prophets horns warmly salary continuous satan continual defended breaks workers lantern balls rod blaze examining naples + + + +peculiarly vegetables ingenious excite howard horseback re use louisiana farmers wildly mouths carpet sadness customary circles aren't wonderfully max juan successor allied ceiling confirmation glances diamonds goal representations cash vacant antiquity despise lawn they'll appealed turkey texts neighbor spreading discharged phrases ultimate tastes submission entry rachel blush monument hardy thorough ein ecclesiastical fertile exciting captive severity considerations shew faster louise grandeur winning solely globe malice echoed lodging conservative throng prosperous whistle floated transferred declaring reckoned cheese bite thoughtfully breach enthusiastic cars downstairs allowing invite adjoining dusk cathedral truths plague sandy boil caroline beautifully inhabited tomorrow exclamation finishing shocked escort forgetting hanged + + + +hats mirth uncomfortable connecticut bows pierced harbor tricks rubbed apparatus mysteries honesty negroes concerns wander assert ceremonies sacrificed utterance dismay fright rail reflections crops pushing proves jimmy pathetic imperfect haughty navy fortress hurrying x blessings attempting insects selling appreciation suppressed acquire offensive ripe dresses reigned coldly candles km sixth blazing youngest mask florida lecture parlor decidedly whereby gordon reverend successive perception buffalo sire quitted keys develop function morals damned vexed d pouring bullet excessive bind identical cliffs tools byron mexican piety superstition git substantial bulk prevail wiser preaching prolonged annoyed westminster splendour remembering richmond upset cab bunch pencil subjected vegetable + + + +exhibit emerged cooked hay kansas gale preached arnold trousers debate dated tumult corruption summons comrade eternity hears lingered propriety stillness partial welcomed cabinet proceeds vow quaint soup beef rests slay surgeon irresistible sealed repeating needn't allowance undertaken treachery posts borders attendant unite murderer owners nm sweeping unconsciously blade saviour theories graham behaved pleaded spy possesses lawful tommy seasons withdrawn reckless factory shades gossip seventh attendance robes journal systems dryden maine token intimacy abstract machines bestow chanced locks honestly legitimate accent symptoms votes ragged thursday manifested fidelity swinging descending sincerely bred whereof indies novels league failing succeeding santa approve cautiously miller + + + + +afflicted lodgings petition traffic sparkling limb architecture disposal carriages crack kindred naught ornament slew steward fantastic evolution patiently reverse survey dug amuse stretching isaac forthwith contemporary foliage receives scandal donors deliberate influenced intolerable hearth symbol governments repaired pleasantly homage victorious columbus recovery defined attendants modesty diana washing pavement unnatural decisive wisely precise negative occurrence snatched shaft linked festival exclusively jove wickedness visions maggie rosy carelessly stem corporation dec feeding allen cows schemes preference urge husbands labours shrill exercises sovereignty reduce distressed clearing removal dean scottish assertion accessible comedy flush code philosophers adequate vaguely treason hunter chambers split yielding newsletter snake + + + +pub historian ass intensity democracy battery draws netherlands creed liking luke tyrant strove attraction slaughter dismal deposited assent cups concert downward canal evenings wax detective fancies spoiled revolver murray earned analysis finer paces roaring prompt paperwork wherefore emphasis sharing delayed inherited bronze waking garment redistributing wholesome remorse plato morris stooped dew monk thrill hue exclusive funds porter uncommon dash strained confounded swim strip middle aged ultimately team missionary esteemed tracks envelope whoever expensive headquarters cherished brandy startling homer talks acute cigarette motor embarrassed janet volunteer offspring network reaches indispensable plane reaction regiments g sums partially prejudices proudly baggage terrace deaf allusion + + + +grip juice isabel resigned humility benjamin blast ministry sexual nile diameter troop onward crowds marrying tightly sullen brutal axe holmes penalty tops diamond boards corridor endowed strengthened cells proportions alternate echo restraint trials reads identity headed softened quivering stages sway poetical objected screen professed dirt ascertained era wider ambassador constituted breed interference eyebrows shapes afar consist acceptance displays flashing hunted beauties lazy shrewd extravagant momentary cordial engineer rapidity nov halt alternative devils stamp compact whites breathless encoding drift disappear roared revived counter venus imaginary diminished honoured th despatched objections ray climbing attract astonishing competition suggestions ink oft crystal shower diseases + + + +ferdinand obedient draught wondrous await armour massive bottles kin cellar falsehood pillars edgar philosophical martha worlds memorable jacques detected stealing noisy henceforth cicero laden frost device glare touches senate lasting communion transport constantinople coffin eventually johnny enclosed forgiveness awfully clinging darkened contemplation termed manufacture swallow commonplace nancy resembled she'd labors contracted inscription comfortably indulge indulgence bravely kneeling yea keenly exhibition agricultural enlightened quest compliments crest extension uneasiness constitute inflicted lakes swing meadow noblest downloading complex controversy freed resignation tempest guidance prospects humbly lined serene shrugged honours roughly checks remarkably dainty overhead commencement singularly brightness oppression repeatedly conspiracy restrain splendor preservation + + + +pub pepper basin creeping matthew publicly percy continuing grove calamity pony vigour melody profitable descendants hire speculation discoveries accepts drunken candidate principally worried obstinate hasten foreigners elderly overwhelmed instincts telegraph russell university ghastly patron varying barbarous celestial t' patriotism modify earnestness exertion fox refusing horsemen inspection stations grieved louder bursting regretted mournful pursuing traitor associations cautious foundations stamped prior undertook telegram beggar chimney complicated davis striving magistrates converse graces wiped oars apology scared imprisonment eastward substitute yahweh handful usage lodged of villain banished restoration serpent hedge k jurisdiction captains settlers gaining valiant primary storms beam victoria tour prophecy spectacles obsolete + + + +buying shepherd wells harriet exaggerated heated penetrated travels earl hereditary ali supernatural competent piled hostess agriculture boughs urgent gratified suffice ports drifted accuracy deceased circular securing possibilities rhine alert neighboring democratic quebec bud accounted aided augustus blanket hail pretence beams andy pig shaped oven rounded ivory northward isolated policeman aug conventional babylon dusty bishops complaints stripped plead hinder vo cord flows personage classical alongside wrongs extract rewarded lungs lighter kisses serves pint forgiven sternly proclamation realised pipes arising pitched tube observer smote avenue elephant burke footing statesman rebels nails wears doomed edges esther indiana affecting stormy bee bury efficient mix + + + +supporting actor disturbance sweat executive seemingly tenth blossoms ethel folds painfully polish shudder oe roofs comparative begging imposing notable invested imprisoned mute amy cage esq pg cured cargo prof negotiations assented jail skilful ideals conferred resulted illusion torment troublesome crowns feb repentance blankets proprietor uncertainty concentrated mediterranean covers scream compromise respectful chariot ammunition bonnet secondary persia persecution lesser assistant saluted fits indulged springing cane fold boundary valued she'll rugged aloft thieves parlour indebted tons processes dave moore argue dearly logic panic restrained lb vainly weariness enlarged franklin tasted rural torrent resolute refrain kissing gorgeous meets circulation passionately inasmuch unexpectedly stress + + + + +consumption groan suits sustain hosts crash resemble epoch quote lacking nominally choked aristocracy granite gradual delights hurled joyful sack slumber detached snapped shadowy accompanying annoyance crush needle repent phenomenon execute canst smoked greet monarchy behave richly controlled strive endeavor barrier canadian curve politeness flora rely flank convenience courteous logs lamb effectually robinson logical shan't dimly withered diet praises fulfil mantle ne'er discussing chicken judicial consistent ridicule as reins barrel distrust trunks verily hunters feather desperately goodly habitual voluntary luncheon eighteenth exertions expert coolly mistakes tedious contemplated clark jacket gleaming shrank swimming kent perplexed impressive universally displeasure maids rates underneath expedient + + + +emma impress bees bounded worshipped resisted provincial popularity baker shattered merciful olive tramp compensation ernest martial genial syria conjecture van waiter detained items promote delaware covenant nought interposed seizing sinner vigor devote decorated sentimental yoke properties warlike perilous threats kindled lays hostility dragging mare regulations obstacle sage destitute pays sleepy dublin jonathan posterity they'd nod mason patriotic plantation pitiful foster requisite expose oxen patch anderson stuart interruption lance payable definition birthday thumb wolves hammer overwhelming intensely revolutionary fragrant bleeding sheltered circuit dominions sales energetic insignificant repetition we'd amazing trains skirts tip trivial kick tended rejoicing dig pet skull lectures ness + + + +threat legislature plunder removing jungle ghosts numbered famine palaces sorrowful improvements coleridge fuller asp blocks darted shrine heel typical throws fortunately recognise fuel th tranquil frown destination plunge moor pin mars associate here's owen th arabic vicious framed banquet expressive instinctively lighting scanning subordinate jaws patent courtyard gulf destroying detailed regulating closet compel inland excepting pretext legislative stationed rash margin champion settling billion shorter betwixt admiring morgan nick chemical chapters worthless aristocratic nan especial hon attentive maintenance charlie explanatory differently furiously pulse scanty flee admiral clause resume compound pilot growled charmed imitate happening knot rags mock majestic messages prussian suspense + + + + +clare relationship skirt agency arisen grin unusually michigan hoarse mills intently dining demonstration depression lain expectations joining weekly trenches technical vehicle aimed borrow flattering portugal prodigious scope vegetation switzerland arkansas swelling fortified favoured salute topic blushed superb strengthen confidential crow shawl sunrise sings coats sturdy dissolved lifetime dispersed sergeant contribute strode brigade verdict they've honors panting females richest attribute brighter hook discontent orderly airs tiger messengers penetrate sabbath identification holiness crooked housekeeper productions prescribed rector spark sleeve honored tame highway alabama edmund militia nobleman energies spacious tearing affliction photograph ally hampshire ascent ditch fishes jupiter rubbing tract standards afore ribbon + + + +cecilia oregon integrity plus transparent farms pulpit ropes nineteen rescued counting perfume socrates hounds solicited bother fascinating qualified desolation essay rains renew odious assuredly suggests rider loneliness pond activities dazzling leaping squadron bowing novelty wrist keeper homeward alexandria finely li efficiency marvel tranquillity agnes charities spenser condemn elephants elders julian tries nd sweetly endurance bags reared jaw unique navigation inevitably admirably sect drum poles verge piercing sanction russians forlorn approbation organic stanley allegiance bin expressly ingenuity dispose stained theology withal duration fundraising adj collecting weigh sweetest float consul monastery raging publish knocking precaution privately aaron endeavored insight definitely stature troy + + + +miriam judah oblige urging shift mould courses countless associates hymn rapture tonight trumpet parker entrusted firmness comic breeding ken questioning factor monuments loveliness handled communities saloon stumbled witch confronted traveling seamen backed profoundly gladness pomp mess practise sanctuary superstitious casual iowa analyzed historic bored shrink judging treating expenditure encouraging diplomatic forcing studio exposure crude compilation vermont eve ascend unbroken apollo countess binding exceed frail hans champagne shuddered carter mule inserted parson rascal inspire banner divorce treacherous nineteenth invalid weaker organizations bolt ticket backwards captivity lame provoked vein lists gallop communications dagger passive shoe thrice corrected mystic infancy foam keith tavern + + + +fraud th cradle rifles vigorously censure gentleness jr sobbing monotonous explosion catastrophe respectfully wearied cats blamed needful fireplace gravel affords discovering jar selfishness tolerably clerks ark moist wid sauce prompted exceptions bullets writ bruce insolent moisture thompson furnace healing fewer deem apron humiliation punctuation rolls doe rotten richer swiss behavior nowadays pamphlet loan beads divers unreasonable realise lust ah annually detach gaily shares gifted planet feverish resurrection saul consecrated enforced vincent shelf fan fluid brightly damsel gabriel kid frantic neatly anon ascribed insane tropical th milan hardened overthrow phase achievement immortality obscurity assumption discern hopeful humorous composure turf poland dame + + + + +missionaries orator perpetually arbitrary ecstasy retirement pronounce authorized familiarity nl hastings clubs reconciled grievous mercury elegance chivalry luminous beseech benevolent confided dances perplexity escaping terrific companionship commence daisy parliament th creep pleading disdain pm sympathies guides emergency parcel suicide replies drawer contribution supposition vii weren't link homely pluck ruling patrick statesmen hannah printing joshua synonymous sinister advocate destructive environment blossom bridle yon waistcoat extends confirm listing solemnity projects reporter deprive detachment infernal traversed moss skilled announce hateful fugitive gothic coolness insurrection cum med coachman expend stepping julius resign despatch excluded reject tough plea roy fragment lacked wordsworth balcony darker mac + + + +nevada christopher fork flatter iniquity meditation disastrous stain patches hints ordained drinks whipped burial matt employee employer hypothesis steed width sweden transaction victories devout outrage vary attorney rouse doubled sidney schooner flaming offend sheriff encamped magnificence vent politely vines flags italians necessities austin nobler accusation impulses packet shabby irritated dakota industrious classic ranch ascending cruelly happiest antonio accuse insulted bridges players sixteenth solicitation embarked idol odds aims illuminated enchanted adversary pie reflecting pension luxurious pigs choir tumbled conqueror irritation verb monkey acceptable dynasty accurately divinity signature heretofore hazard dora sq stead attire fling marine occupations soothing devised singer spaces emerson + + + +disguised antique orthodox poisoned dove gratification sydney electricity alien sorely cracked supremacy summon depressed sexes offerings pledged irony recourse tortured thickly correspondent sounding sombre brushed reasonably th duel reluctantly implies cable ridden acre grieve inquiring colonists addison republican illustrate tim liverpool gilded clumsy satin displeased odor clearer prairie hudson feudal flint easter freshness nursery explanations adoption reluctance crosses blushing imported notorious equipped sinful starving eugene bedside sovereigns abrupt excused injure incessant correctly drooping adored embroidered pasture pillar import founder torch vault worm ay bravery confinement trusting butler rattle transported estimation edit gotten cuts headlong outfit insolence secrecy thereupon unlucky + + + +eighth valour grammar relaxed mentions adjacent knives attacking exceptional recollections deposit establishing muddy arches aspects senior fragrance colonial penetrating refinement te yacht intelligible stray forcibly jenny superficial tends identified wan choosing frighten grotesque reprinted tutor contributing welsh gaiety besieged robbery transmitted swam consequential slid stony donald gratify heavier confidently mabel demon treatise mechanically batteries trading cock pilgrimage extinct idleness sicily merrily excursion handling utah eminence lump boyhood montana superfluous wee dome shivering accidental thickness darwin continuance fixing harris rustic cheered vernon premises delivery nodding snowy curved productive discouraged variations shilling swollen miraculous stubborn belgium drives jerome orchard persuasion invaded alps + + + +ungrateful insensible muscle madrid flanders cultivate involuntarily speedy variation marian harp peaks daybreak magnitude precautions rub requiring coral grapes fairest locality opponent bondage beans cowardly grandson leo gertrude nail protecting hospitable proving benevolence brussels civilisation mounting desiring rushes precision watchful harness perchance forbade channels indication zealous tact seventeenth theodore stating toast dreadfully judith asterisk virgil edifice swelled accomplishment sundry reckoning mouse prostrate helm slim whistling syllable handwriting commissioners lime spur unfit gen relish reduction sown venetian cordially hush breasts slipping pat arabian dialogue forwards entreat fascination belly neutral grasping diligence disgusted retiring strokes sob vine compose valentine harvey icy inconvenience + + + +v pots dimensions abused armor detect contradiction banker infamous powerless passenger crust historians disclaim norway peculiarities sting simultaneously watches cong episode achieve populace sherman incense rebecca jordan persistent wisconsin ho ta fruitful scoundrel coasts starve denmark scots consultation habitation goat howling tailor flourish trifles dashing disappearance sour practicable shameful inviting criminals leisurely accumulated audible topics expends radiance underline parade spoils helmet consternation expenditures impose originator pa unequal wooded enduring ox valet proclaim carl impossibility lydia territories deference ravine geoffrey blanche accommodation boyish spray theological anonymous injurious formally sports ab scales wyoming discontinue calf manual disturbing potent anticipation melt tilde thames + + + +grade mischievous pang pathos alternately brisk stool justification foreigner endeavouring satire al delete masculine spies umbrella transportation yell remnant boot ignored thrilling ale mineral goose nebraska truce lastly airy sketches groves col th comprehension cling duck abyss alaska baffled planning abominable aversion drawings customers weird stewart traveled alan incessantly flattery director improbable moderation awakening males pairs temporal con nicely lapse vitality soap patriot malicious eyed pirates enforce doll briskly sez skeleton comprehensive buttons crushing personages threaten nuts undone wright frankness hides progressive rogers villa aristotle resource irs confine sewing co congratulate walt reconcile insurance terminated dusky appoint pearl thrilled gains + + + +interrupt extravagance jokes suppress quod signify layer clue kettle contemplate aforesaid tooth sensibility boldness mature cuba tolerable rabbit befallen needless yankee awaken clasp lets blinded conductor dependence guarantee affectionately player wires thicket walker outstretched procedure wheeled aye oneself recommendation projecting shriek futile cheerfulness deity fifteenth gap muscular dripping insect values brooding restaurant baptism imaginative rhyme exhaustion intrigue senseless hercules yearly baron occupying imply absurdity launched resolutely vowed attach characterized fellowship posture caps leon demanding owl beset ensuring suite tennyson thereto heaped jewel regained voluntarily longitude permanently jumping babe secondly violin rogue rainy reconciliation emotional radical accursed tendencies concrete resident lustre + + + +hull ominous overboard uproar cavern combine respectively menace pilgrims jeff peak currency silken violet khan mastery objective plucked litter memorial bids fondly clapped tariff beneficial unsolicited reluctant separately patronage revenues dragon zeus mike ranges vexation indicates overheard tray raymond thereafter exporting mound taxation frenzy horizontal thirsty disputed charter redistribution boasted item moscow termination eminently suggestive linger shady calculation expansion mast confer sophia commanders pitied twist traditional involve interfered achilles wanton repay brother in law routine son in law gaul groom solve grassy tempt unsuccessful witty politician yearning lid noticing courtiers cheering bounty consequent renown regulation fowl mayor wrinkled defy threads violation junction boss particles + + + +glories signifies constrained paternal piles hardware engaging e g peer counties mocking ch avoiding rebuke abolished cheers idiot rd morbid wrung e mail outcome gilt coldness applying strand renowned fishermen creative circus moustache proverb lowering biggest sly nursing boon weighing oklahoma brink degraded avenge hum minority spaniard ridges perils larry merchandise aloof despairing acquisition asylum chickens placid affirm trod gardener schedule calmness protector concealment trench fore accession h dey connexion cairo mend considers twenty one municipal achievements cherish deserving exert riot veteran advancement inventor meek cameron hopelessly judicious tending testify governess orchestra garb condemnation foregoing bacon maternal wasting australian strata hushed maryland sculpture + + + + +miniature corrections tangled completion regulated athenian flavor brand intimately unlimited dipped luggage inconsistent forsaken feebly woven lloyd rubbish tool spirited christendom chaos twinkling muffled accents accidentally degradation emancipation prosecution cleveland outbreak defending dwarf abundantly turner disadvantage abolition disregard deliberation filthy ak notifies dealings demonstrated paced tense drums interpreter vanish astray hen workman asunder baked baltimore bustle winged mentioning pastoral fabric trim musician twenty two patty mentally wrecked discreet godfrey apostle ledge roast accessed preface convincing quiver stocks mourn commented redistribute precipice outdated juliet dialect elementary freight cowardice wipe deserts shelves denial b traits denounced eric underground phantom whirling pecuniary dire hostilities + + + +gait it'll vividly instruct dickens puritan clutched acknowledgment conjunction oppressive intermediate formula hungary sneer ore plentiful plump combinations purest cheat doubly inadequate leslie blest forbear haunt treaties fearless constable enveloped enmity watson bridegroom curate developing frock mining audacity improper motto parisian faction architect melting delicately register heroine indefinite console defensive perceptible fruitless ransom surplus solicitude effectual shiver gal wed contemptuous plough snakes felicity reef outset constitutes lament tissue draft impelled epic fisherman hawaii obstinacy ulysses lemon voltaire hound measuring conscientious robber toy impart statute barry girdle basil rebellious stair biting consulting perseverance manila massacre cough blazed claude transition button headache + + + +tenant burns harmonious dreamy burgundy collections unkind inscribed cushions programme din laborious manufacturing markets zone humane ac fertility languid ninth curses introducing alcohol impending declining advantageous heal millennium karl ft staid planting theatrical spectator winchester greedy commonwealth suffrage tremulous commodities stuffed admitting aching ninety discomfort imperative montreal bobby bachelor geographical longest courageous carpenter sundays concluding danish steer influential surround random ounce afresh dictated ruddy rusty drown irving slide sow appalling profess sickly rides spoon imminent dominant leadership pinch wearily ducks diary duchess regain rum churchyard fondness apprehend ordinarily quicker thereon ni balloon individuality securely connecting celebrate bluff dawned amiss chalk + + + +sticking fuss dazed deputy forsake automobile discussions harrison refreshment amendment appealing eden vertical insufficient manchester hem gorge baptized damn silvery pastor inherent preventing inference advertisement mutton packing enclosure theft publisher spontaneous otto rats apparition refreshing irene sweetheart renounce lifeless adore vinegar normandy uncovered utility orphan symbols gracefully mightily peculiarity ash floods partake contemptible deities profane foreseen ti conceit commend twelfth bristol manifestation revive prone connect princely overtake improving downwards ferocious intervention subsistence susceptible tunnel disciple revival twins ivy puzzle citadel temporarily despotism internet mechanism stoop directors mathematics raft fade soothe pork substituted physically brilliancy dot loaf expanse shocking rudely isle + + + +balanced extracted fable matches index gerard cigars liver transmit dispatch onto veranda dip inexplicable liar diminish dungeon unit pagan phillips brig monopoly rim sordid complaining temperate chat gambling maps amber trot howl shipping ton magazines bricks submarine roberts cumberland cecil semblance palestine perpendicular regardless fervent sane wreath animation earthquake sloping smoothly tension intrigues fearfully macaulay laboratory cork comments whale wedded whiteness convicted deception paved scruple paintings therewith religions governing colleagues shrinking tickets prophetic undergo hare haze poisonous omit beware sagacity concession worker ted incline caste leapt dissatisfied hardest self control toilet buddha offense woodland gentry starvation grudge penance tips rooted outburst + + + +fortitude turk devour malignant accorded brandon anticipate speechless inquisition eccentric anecdote annals scrutiny burroughs rhythm discord marius diversion archie rat knit correspond detain dis esp interpret vehement soda naughty salon operate idly imperious peru candid whig blooming wharf disgraceful stunned redemption drain wage cooper embassy unfinished nasty impetuous cemetery oblivion prohibited breeches abound christine frivolous hugo essays plaster tap chairman dismiss katherine provoke reside deficient decoration heroism toe wade apparel hazel inability farthest invent knave twain carelessness affectation connections climax avowed industries brood tempting define antwerp forefathers stretches gratifying plight restricted cupboard ludicrous alms colossal stupidity monotony stimulus vigilance digest + + + +vale overcoat colorado wink nous rack incomprehensible antagonist methinks barley plateau superintendent indescribable expanded presentation archbishop devise rubber adieu exclude carts lone whisky abuses inflict nightfall counts chocolate privileged hermit exultation overtook coincidence scratch screw caravan divert eliza comparing hood explore glove chaste whirl adventurous skipper tiresome implements recompense plank insure laboured exaggeration mi shepherds lilies ballad befall cylinder teddy summary daresay photographs colleges dissolution geneva marches instituted seals vehemence chaplain knots wail kneel unlikely deceit challenged geography herald lowly peep swarm clarke joyfully engraved ll bowels purposely blindness systematic virtually conformity remedies maxim indexes marshall baking invincible impertinent bust + + + + +visage intuition mingle bathing arched investment tabernacle client ghostly furs catalogue dock tenor arouse verbal excessively brazil strenuous irishman recess unclean psalms analogy chemistry peninsula infer maritime secular hawk rein averted bake constantine oracle alley softness pierce spinning snatch manufactured launch psychology worms regulate farming fasten actress etiquette theater thanksgiving valor untouched tactics drug adverse gaunt conducting veritable overtaken distorted rosa nina quart caprice candy obliging planets soothed sic opium pavilion strait sanguine cords odour trout paste regularity metallic scrap convict instructive investigate celtic package pirate fiend moan revealing trades rounds accomplishments crawl aft prevalent role dose evans hypocrisy + + + +l salmon snap alma magical tire hetty impenetrable geese madly manifold noticeable pudding volcanic locke magnetic deals core decency observance durst scratched predecessor diplomacy wert impartial disinterested wig pump swedish norfolk reigns similarly reap dam facilities slippery transformation oxygen suburbs dares ornamental pondered fringe raiment henrietta wellington foreman feat thirteenth sultan certificate rue heresy arabia medal location ether ruby heading subdue adorn ancestor warmer cluster quotation fullest exposition custody thermometer plausible toss desperation rhetoric scornful bailey rung civility dingy scaffold concentration avarice scrape pools oar flutter martyr handy montague bait login commotion congenial drawers telescope deposits edwards craving bureau oscar + + + + +speculative huddled diverse slice renaissance angelo meg murderous serenity perspiration coventry impudent ardor necklace alight stimulated clifford steadfast genoa anglo saxon courier inflamed xi drill spelling respond seriousness fourteenth womb literal singers usefulness cloudy mortality profusion fleeting twentieth maturity surf weed phases overcame womanhood envious tapped latent whiskey relatively forbidding cleopatra willow mathematical sojourn booty camel implore amateur morally qualifications gasp gliding tested racing brightest joel extremes damascus labored peggy exit originality humming isolation sometime glee adult solace biography ff hardship lied donkey trader rumour amply confide favors perspective belgian withstand robust pro val eats snare monthly wines ignore envoy + + + +flown reverie jehovah contrive chatter judas nourishment reforms clatter adrian allude corrupted thorn junior tony calcutta re holt psychological constancy misunderstood signals drying harshly distressing novelist cyril editors intricate limestone forty five collision pebbles willie knitting ordeal foresee peas repast supplying clan abject dart berth bridal indirect unnoticed tint insults precedent twisting bully vacation 'll canon aisle click inspiring oval impracticable delirium cedar contradict ingratitude soften bewilderment servitude comely stump redeem spun elastic poultry horseman dictionary prettiest adoration icel wager involving pathway essex wistful advent gear celebration conceivable drowning faintest acquiring befell good looking wares rendezvous snug watery accompaniment chaps crawling lumber + + + +publishing customer mediaeval prints lavish md genesis rug analogous eleventh noah galley partition blunder glasgow fanciful ham rainbow sentinel hereby outlook smitten unmarried mice installed vivacity marking aesthetic consume resent pose contentment sterling veneration p m barking bower organism unintelligible emphatic occurring factors guise editorial impudence midday corporal sg aright nigger lily noun scout spit cursing friedrich manifestly marco battalion heritage brotherhood nun wad folding discerned powerfully mitchell helpful persist ellis frigate spotted atoms curves outlet erroneous violated withheld fairies inherit sledge taller supervision butt handsomely tank velocity arctic colleague pins butcher drowsy butterfly chart twin sunken exasperated narrowly collins insulting + + + +deficiency operating overthrown gallows diligent hindu blunt omen bleak vehemently wretchedness e'er ensure denotes sentenced unfair encampment possessor absorbing descendant sub drugs engineers independently bucket clerical ache glitter ordinance bamboo amsterdam vocation admirer limp pallid mildly organisation timothy dealer yorkshire auspicious deuce emblem gibson primarily reducing ritual decorations thigh groaning scant fiscal mien charging cor railing peers inferred sanctity accumulation cynical inspector wardrobe jesuit texture adjustment epistle adventurer priesthood seaman turbulent chant marsh palmer unaware vase ty initial baths weighty minimum correction morsel overlook meagre unanimous magician mystical twenty three inhabit shaggy unaccountable nightmare carbon coil lawless stairway willingness sarcasm crisp + + + +jerk tout vocabulary stroll poorly composing parliamentary controlling fitness thoughtless soames temperance illumination translations martyrdom mellow nationality jam austere shoots casually pensive flavour nets dice satisfactorily shrunk administer ante swine baptist listener unimportant genera contrivance deplorable museum benefactor tints alphabet rout scatter boer ftp steve extant bohemia misunderstanding universities dexterity rag inseparable punch brazen economical pernicious craig mythology drained bolted abel stride circumference meddle axis gum las kinder closes ferocity giddy secluded resisting satisfying reliable disgusting thirty six ethical raleigh crouching lash recital buddhist collapse unsatisfactory lore varies mainland scot repute cushion confound scrub myth flights oats layers ownership cape glimmer + + + + +scare waked bengal scrupulous equals redress brake nut stability crafty kirk bough momentous albeit enlarge hardness civilised dotted defiant timidity solar heartless thomson mat shun raid disclose suppression puff juncture beak unjustly foresaw rot aggressive predicted quaker grate lease ponderous maketh repaid charcoal chilly arrogance friction participation pier stale intoxicated commissioned ratio comb masterpiece wholesale embraces trodden ephraim shaw translate mortar recreation rite truthful cavalier caress si curling rivalry whim abreast thebes faust peg wilhelm pestilence ceremonial receiver sample distinctive consummate matron claiming plural initiative inexhaustible a m spider reed streak blocked titus smashed populous baronet commodore jelly advocates dinah + + + +salutation mutiny chronicles comforting serviceable parchment playful potato transient administrative anarchy barber revision operated farce germ profile provides noting disordered menacing heightened finance averse azure bathe campaigns lessen slate acquaint gin humiliating cleft conveyance chivalrous capricious tribune pilgrim entreaty womanly paltry sporting maker digestion bart infamy lambs gaping periodical standpoint amorous tub luxuriant basic mutually chris greed premature extinction boiler intimation scandalous separating oratory banish electrical herb multiply prosper friar nightly ole monkeys interminable enjoys similarity riddle cleaning subscription copious exclaim forged voting scourge darkly privacy arena bearded vera alacrity sensual spin neutrality flannel fasting trailer avert trustworthy jamaica unchanged + + + +traveler unfamiliar puffed mirrors phoebe father in law conform particle railways stupendous paddle innate reformation volley statistics agrees simpler padre congratulations lids muse inhabitant ishmael rustle clump calendar flute inaccessible yore jay repulsive fray po nomination conclusive peaceable beth inconceivable e'en emerald lava trillion uppermost arduous lyric downright reproduction foresight consistency ape senators pallor span salad snuff drooped greetings chestnut inquisitive vicar noel attic savings affirmative ills applications t dye gloucester nominal demonstrate dispense dissatisfaction merciless trusty coloring perusal plaintive discarded precarious infection ruinous bolts arithmetic considerate lark ethics conventions stumbling pitcher slips seine officially danube annoy glide impunity amends sol conveying + + + +abandonment mane tinge brim forenoon seventy five sparkle syllables shrug enchantment franz trait bribe composer preparatory audacious outskirts soiled fiddle football isaiah partnership continuation pioneer vest bass derby quarry rigging dizzy abnormal omission idolatry sequence squeeze cabbage canopy athletic shirley drunkenness intrusion 'cause assign tackle dreamt sceptre exacting parched eddy percentage twinkle curb sandstone invaluable fathom preferable adelaide advertising scraps lever muster cavity barbarian sleepless fried abstraction forefinger spade erection scorned pail withdrawal senator mortgage ancestral succour ma forbearance repress spouse valid witchcraft workmanship legacy proximity bombay paula incorporated muzzle reuben clusters valve compelling dissipated flickering guinea sup tarry derision vehicles + + + +accommodate glossy iris relic ant heath bug vocal downfall construct undue vapor bat whimsical contradictory unlocked foretold automatic explicit indolent mates artful downcast well being winston ordinances catharine effectively missions stalk indistinct pregnant reddish coveted fret peeping buck sumptuous indefinitely reliance panama cocked dad everyday intoxication aghast subterranean turmoil forfeit chasm inspect perverse precipitate dover ambush evermore mass blot nook verdure parapet jake cessation ankle classification fervently oddly haul saxony embarrassing hairy northwest disabled laurel preston arrogant hurts demonstrations splash curl livelihood wary scattering brace converts detestable abandoning somerset weakly clothe gem tremor surveying variable anniversary thirty two wrap curly diversity + + + + +prestige desertion freezing heedless sentry believer ram rowing negligence self sulphur discrimination cooling millionaire flowering meridian wins awed beastly nuisance abstain continental stanza target unwonted whit jason stall sham dictate empress gout jobs manure nigel sidewalk sate grievance axes bony invest birmingham ebb rabble restlessness cruise rally rumor hysterical girlish actively shortest marseilles cheque disregarded retort rocking emerge perch flask ka countryman lonesome manned unarmed wast frog twenty eight unscrupulous yarn victuals outrageous appropriation foolishness quickness adversity parma diseased iliad salutary smelt territorial hurricane irons canyon jeremiah brooklyn indulging vapour disobedience atrocious leaps tapestry provocation twenty six impotent smite acquitted os tumultuous + + + +barge palpable apprentice lances compartment godly sarcastic therefrom specifically uniformity emerging atonement whereabouts davy framework sponge mountainous annoying cot squirrel wand grind bang unreal blacksmith injunction scarcity withhold outright bavaria cement growl aggregate fraction exaltation inexorable jug purer sap illegal sister in law presses stealthily dissolve volcano hungarian equilibrium obstinately sullenly assassination commissions respectability bases maxwell resounded closest embroidery gunpowder reproof yale combining weaving earnings hamburg indoors manufacturers pitiless scarf picnic misled pompous brian respite exploit tracing geological passport confines dishonour executioner township vacancy acquiescence cornwall crumbling three quarters exploration needy stationary disconcerted wanderer beaver lookout onion depicted boisterous couples speakers woollen lightness + + + +bitten aux toleration lucia scar bohemian vested affinity carlo sous penitent simpson abiding ca immoral dishonest yawning mustache supplement whirlwind clash terence lamentable bennett farthing speck biscuit appellation gdp reserves uncouth birch armchair judy greasy leaden dough lining cleverness ascetic clutch krishna embark quotations friendliness liberally trance untrue rejection grating hanover inexperienced mon wintry stalwart meats stamping variance apiece firmament absorption apprehensive terminate wilful conveniently 'n' cleanliness collective angela filth philippines timely herein ignoble canton lamentations moslem ware adjective glen invade livid buggy prolong weaken folio dismissal quay enchanting heave purified syrian significantly experimental film repressed cooperation sequel wench calves +Retrieved from "http //en wiktionary org/wiki/Wiktionary Frequency_lists/PG/ / / " + +def g(): + global big + big = file('big.txt').read() + N = len(big) + s = set() + for i in xrange(6, N): + c = big[i] + if ord(c) > 127 and c not in s: + print i, c, ord(c), big[max(0, i-10):min(N, i+10)] + s.add(c) + print s + print [ord(c) for c in s] diff --git a/New-Second-Edition/Ch03 - Processing and Understanding Text/contractions.py b/New-Second-Edition/Ch03 - Processing and Understanding Text/contractions.py new file mode 100644 index 0000000..9018a85 --- /dev/null +++ b/New-Second-Edition/Ch03 - Processing and Understanding Text/contractions.py @@ -0,0 +1,132 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Aug 01 01:11:02 2016 + +@author: DIP +""" + +CONTRACTION_MAP = { +"ain't": "is not", +"aren't": "are not", +"can't": "cannot", +"can't've": "cannot have", +"'cause": "because", +"could've": "could have", +"couldn't": "could not", +"couldn't've": "could not have", +"didn't": "did not", +"doesn't": "does not", +"don't": "do not", +"hadn't": "had not", +"hadn't've": "had not have", +"hasn't": "has not", +"haven't": "have not", +"he'd": "he would", +"he'd've": "he would have", +"he'll": "he will", +"he'll've": "he he will have", +"he's": "he is", +"how'd": "how did", +"how'd'y": "how do you", +"how'll": "how will", +"how's": "how is", +"I'd": "I would", +"I'd've": "I would have", +"I'll": "I will", +"I'll've": "I will have", +"I'm": "I am", +"I've": "I have", +"i'd": "i would", +"i'd've": "i would have", +"i'll": "i will", +"i'll've": "i will have", +"i'm": "i am", +"i've": "i have", +"isn't": "is not", +"it'd": "it would", +"it'd've": "it would have", +"it'll": "it will", +"it'll've": "it will have", +"it's": "it is", +"let's": "let us", +"ma'am": "madam", +"mayn't": "may not", +"might've": "might have", +"mightn't": "might not", +"mightn't've": "might not have", +"must've": "must have", +"mustn't": "must not", +"mustn't've": "must not have", +"needn't": "need not", +"needn't've": "need not have", +"o'clock": "of the clock", +"oughtn't": "ought not", +"oughtn't've": "ought not have", +"shan't": "shall not", +"sha'n't": "shall not", +"shan't've": "shall not have", +"she'd": "she would", +"she'd've": "she would have", +"she'll": "she will", +"she'll've": "she will have", +"she's": "she is", +"should've": "should have", +"shouldn't": "should not", +"shouldn't've": "should not have", +"so've": "so have", +"so's": "so as", +"that'd": "that would", +"that'd've": "that would have", +"that's": "that is", +"there'd": "there would", +"there'd've": "there would have", +"there's": "there is", +"they'd": "they would", +"they'd've": "they would have", +"they'll": "they will", +"they'll've": "they will have", +"they're": "they are", +"they've": "they have", +"to've": "to have", +"wasn't": "was not", +"we'd": "we would", +"we'd've": "we would have", +"we'll": "we will", +"we'll've": "we will have", +"we're": "we are", +"we've": "we have", +"weren't": "were not", +"what'll": "what will", +"what'll've": "what will have", +"what're": "what are", +"what's": "what is", +"what've": "what have", +"when's": "when is", +"when've": "when have", +"where'd": "where did", +"where's": "where is", +"where've": "where have", +"who'll": "who will", +"who'll've": "who will have", +"who's": "who is", +"who've": "who have", +"why's": "why is", +"why've": "why have", +"will've": "will have", +"won't": "will not", +"won't've": "will not have", +"would've": "would have", +"wouldn't": "would not", +"wouldn't've": "would not have", +"y'all": "you all", +"y'all'd": "you all would", +"y'all'd've": "you all would have", +"y'all're": "you all are", +"y'all've": "you all have", +"you'd": "you would", +"you'd've": "you would have", +"you'll": "you will", +"you'll've": "you will have", +"you're": "you are", +"you've": "you have" +} \ No newline at end of file diff --git a/New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04a - Feature Engineering Text Data - Traditional Strategies.ipynb b/New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04a - Feature Engineering Text Data - Traditional Strategies.ipynb new file mode 100644 index 0000000..a000c39 --- /dev/null +++ b/New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04a - Feature Engineering Text Data - Traditional Strategies.ipynb @@ -0,0 +1,3973 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import necessary dependencies and settings" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "import warnings\n", + "warnings.filterwarnings('ignore')" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import re\n", + "import nltk\n", + "import matplotlib.pyplot as plt\n", + "\n", + "pd.options.display.max_colwidth = 200\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Sample corpus of text documents" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentCategory
0The sky is blue and beautiful.weather
1Love this blue and beautiful sky!weather
2The quick brown fox jumps over the lazy dog.animals
3A king's breakfast has sausages, ham, bacon, eggs, toast and beansfood
4I love green eggs, ham, sausages and bacon!food
5The brown fox is quick and the blue dog is lazy!animals
6The sky is very blue and the sky is very beautiful todayweather
7The dog is lazy but the brown fox is quick!animals
\n", + "
" + ], + "text/plain": [ + " Document Category\n", + "0 The sky is blue and beautiful. weather\n", + "1 Love this blue and beautiful sky! weather\n", + "2 The quick brown fox jumps over the lazy dog. animals\n", + "3 A king's breakfast has sausages, ham, bacon, eggs, toast and beans food\n", + "4 I love green eggs, ham, sausages and bacon! food\n", + "5 The brown fox is quick and the blue dog is lazy! animals\n", + "6 The sky is very blue and the sky is very beautiful today weather\n", + "7 The dog is lazy but the brown fox is quick! animals" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "corpus = ['The sky is blue and beautiful.',\n", + " 'Love this blue and beautiful sky!',\n", + " 'The quick brown fox jumps over the lazy dog.',\n", + " \"A king's breakfast has sausages, ham, bacon, eggs, toast and beans\",\n", + " 'I love green eggs, ham, sausages and bacon!',\n", + " 'The brown fox is quick and the blue dog is lazy!',\n", + " 'The sky is very blue and the sky is very beautiful today',\n", + " 'The dog is lazy but the brown fox is quick!' \n", + "]\n", + "labels = ['weather', 'weather', 'animals', 'food', 'food', 'animals', 'weather', 'animals']\n", + "\n", + "corpus = np.array(corpus)\n", + "corpus_df = pd.DataFrame({'Document': corpus, \n", + " 'Category': labels})\n", + "corpus_df = corpus_df[['Document', 'Category']]\n", + "corpus_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Simple text pre-processing" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "wpt = nltk.WordPunctTokenizer()\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "\n", + "def normalize_document(doc):\n", + " # lower case and remove special characters\\whitespaces\n", + " doc = re.sub(r'[^a-zA-Z\\s]', '', doc, re.I|re.A)\n", + " doc = doc.lower()\n", + " doc = doc.strip()\n", + " # tokenize document\n", + " tokens = wpt.tokenize(doc)\n", + " # filter stopwords out of document\n", + " filtered_tokens = [token for token in tokens if token not in stop_words]\n", + " # re-create document from filtered tokens\n", + " doc = ' '.join(filtered_tokens)\n", + " return doc\n", + "\n", + "normalize_corpus = np.vectorize(normalize_document)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['sky blue beautiful', 'love blue beautiful sky',\n", + " 'quick brown fox jumps lazy dog',\n", + " 'kings breakfast sausages ham bacon eggs toast beans',\n", + " 'love green eggs ham sausages bacon',\n", + " 'brown fox quick blue dog lazy', 'sky blue sky beautiful today',\n", + " 'dog lazy brown fox quick'],\n", + " dtype=''\n", + "\twith 42 stored elements in Compressed Sparse Row format>" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "# get bag of words features in sparse format\n", + "cv = CountVectorizer(min_df=0., max_df=1.)\n", + "cv_matrix = cv.fit_transform(norm_corpus)\n", + "cv_matrix" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " (0, 2)\t1\n", + " (0, 3)\t1\n", + " (0, 17)\t1\n", + " (1, 14)\t1\n", + " (1, 2)\t1\n", + " (1, 3)\t1\n", + " (1, 17)\t1\n", + " (2, 6)\t1\n", + " (2, 13)\t1\n", + " (2, 11)\t1\n", + " (2, 8)\t1\n", + " (2, 5)\t1\n", + " (2, 15)\t1\n", + " (3, 1)\t1\n", + " (3, 18)\t1\n", + " (3, 7)\t1\n", + " (3, 0)\t1\n", + " (3, 10)\t1\n", + " (3, 16)\t1\n", + " (3, 4)\t1\n", + " (3, 12)\t1\n", + " (4, 9)\t1\n", + " (4, 7)\t1\n", + " (4, 0)\t1\n", + " (4, 10)\t1\n", + " (4, 16)\t1\n", + " (4, 14)\t1\n", + " (5, 6)\t1\n", + " (5, 13)\t1\n", + " (5, 8)\t1\n", + " (5, 5)\t1\n", + " (5, 15)\t1\n", + " (5, 3)\t1\n", + " (6, 19)\t1\n", + " (6, 2)\t1\n", + " (6, 3)\t1\n", + " (6, 17)\t2\n", + " (7, 6)\t1\n", + " (7, 13)\t1\n", + " (7, 8)\t1\n", + " (7, 5)\t1\n", + " (7, 15)\t1\n" + ] + } + ], + "source": [ + "# view non-zero feature positions in the sparse matrix\n", + "print(cv_matrix)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0],\n", + " [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0],\n", + " [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0],\n", + " [1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0],\n", + " [1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0],\n", + " [0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0],\n", + " [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 1],\n", + " [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0]], dtype=int64)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# view dense representation \n", + "# warning might give a memory error if data is too big\n", + "cv_matrix = cv_matrix.toarray()\n", + "cv_matrix" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
000110000000000000100
100110000000000100100
200000110100101010000
311001001001010001010
410000001011000101000
500010110100001010000
600110000000000000201
700000110100001010000
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 0 0 1 1 0 0 0 0 0 0 \n", + "1 0 0 1 1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 1 1 0 1 0 \n", + "3 1 1 0 0 1 0 0 1 0 0 \n", + "4 1 0 0 0 0 0 0 1 0 1 \n", + "5 0 0 0 1 0 1 1 0 1 0 \n", + "6 0 0 1 1 0 0 0 0 0 0 \n", + "7 0 0 0 0 0 1 1 0 1 0 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 0 0 0 0 0 0 0 1 0 0 \n", + "1 0 0 0 0 1 0 0 1 0 0 \n", + "2 0 1 0 1 0 1 0 0 0 0 \n", + "3 1 0 1 0 0 0 1 0 1 0 \n", + "4 1 0 0 0 1 0 1 0 0 0 \n", + "5 0 0 0 1 0 1 0 0 0 0 \n", + "6 0 0 0 0 0 0 0 2 0 1 \n", + "7 0 0 0 1 0 1 0 0 0 0 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# get all unique words in the corpus\n", + "vocab = cv.get_feature_names()\n", + "# show document feature vectors\n", + "pd.DataFrame(cv_matrix, columns=vocab)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bag of N-Grams Model" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
bacon eggsbeautiful skybeautiful todayblue beautifulblue dogblue skybreakfast sausagesbrown foxdog lazyeggs ham...lazy doglove bluelove greenquick bluequick brownsausages baconsausages hamsky beautifulsky bluetoast beans
00001000000...0000000010
10101000000...0100000000
20000000100...1000100000
31000001000...0000001001
40000000001...0010010000
50000100110...0001000000
60010010000...0000000110
70000000110...0000000000
\n", + "

8 rows × 29 columns

\n", + "
" + ], + "text/plain": [ + " bacon eggs beautiful sky beautiful today blue beautiful blue dog \\\n", + "0 0 0 0 1 0 \n", + "1 0 1 0 1 0 \n", + "2 0 0 0 0 0 \n", + "3 1 0 0 0 0 \n", + "4 0 0 0 0 0 \n", + "5 0 0 0 0 1 \n", + "6 0 0 1 0 0 \n", + "7 0 0 0 0 0 \n", + "\n", + " blue sky breakfast sausages brown fox dog lazy eggs ham ... \\\n", + "0 0 0 0 0 0 ... \n", + "1 0 0 0 0 0 ... \n", + "2 0 0 1 0 0 ... \n", + "3 0 1 0 0 0 ... \n", + "4 0 0 0 0 1 ... \n", + "5 0 0 1 1 0 ... \n", + "6 1 0 0 0 0 ... \n", + "7 0 0 1 1 0 ... \n", + "\n", + " lazy dog love blue love green quick blue quick brown sausages bacon \\\n", + "0 0 0 0 0 0 0 \n", + "1 0 1 0 0 0 0 \n", + "2 1 0 0 0 1 0 \n", + "3 0 0 0 0 0 0 \n", + "4 0 0 1 0 0 1 \n", + "5 0 0 0 1 0 0 \n", + "6 0 0 0 0 0 0 \n", + "7 0 0 0 0 0 0 \n", + "\n", + " sausages ham sky beautiful sky blue toast beans \n", + "0 0 0 1 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 1 0 0 1 \n", + "4 0 0 0 0 \n", + "5 0 0 0 0 \n", + "6 0 1 1 0 \n", + "7 0 0 0 0 \n", + "\n", + "[8 rows x 29 columns]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# you can set the n-gram range to 1,2 to get unigrams as well as bigrams\n", + "bv = CountVectorizer(ngram_range=(2,2))\n", + "bv_matrix = bv.fit_transform(norm_corpus)\n", + "\n", + "bv_matrix = bv_matrix.toarray()\n", + "vocab = bv.get_feature_names()\n", + "pd.DataFrame(bv_matrix, columns=vocab)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# TF-IDF Model" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
00.000.000.600.530.000.000.000.000.000.000.000.000.000.000.000.000.000.600.000.0
10.000.000.490.430.000.000.000.000.000.000.000.000.000.000.570.000.000.490.000.0
20.000.000.000.000.000.380.380.000.380.000.000.530.000.380.000.380.000.000.000.0
30.320.380.000.000.380.000.000.320.000.000.320.000.380.000.000.000.320.000.380.0
40.390.000.000.000.000.000.000.390.000.470.390.000.000.000.390.000.390.000.000.0
50.000.000.000.370.000.420.420.000.420.000.000.000.000.420.000.420.000.000.000.0
60.000.000.360.320.000.000.000.000.000.000.000.000.000.000.000.000.000.720.000.5
70.000.000.000.000.000.450.450.000.450.000.000.000.000.450.000.450.000.000.000.0
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 0.00 0.00 0.60 0.53 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "1 0.00 0.00 0.49 0.43 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "2 0.00 0.00 0.00 0.00 0.00 0.38 0.38 0.00 0.38 0.00 \n", + "3 0.32 0.38 0.00 0.00 0.38 0.00 0.00 0.32 0.00 0.00 \n", + "4 0.39 0.00 0.00 0.00 0.00 0.00 0.00 0.39 0.00 0.47 \n", + "5 0.00 0.00 0.00 0.37 0.00 0.42 0.42 0.00 0.42 0.00 \n", + "6 0.00 0.00 0.36 0.32 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "7 0.00 0.00 0.00 0.00 0.00 0.45 0.45 0.00 0.45 0.00 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.60 0.00 0.0 \n", + "1 0.00 0.00 0.00 0.00 0.57 0.00 0.00 0.49 0.00 0.0 \n", + "2 0.00 0.53 0.00 0.38 0.00 0.38 0.00 0.00 0.00 0.0 \n", + "3 0.32 0.00 0.38 0.00 0.00 0.00 0.32 0.00 0.38 0.0 \n", + "4 0.39 0.00 0.00 0.00 0.39 0.00 0.39 0.00 0.00 0.0 \n", + "5 0.00 0.00 0.00 0.42 0.00 0.42 0.00 0.00 0.00 0.0 \n", + "6 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.72 0.00 0.5 \n", + "7 0.00 0.00 0.00 0.45 0.00 0.45 0.00 0.00 0.00 0.0 " + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfTransformer\n", + "\n", + "tt = TfidfTransformer(norm='l2', use_idf=True, smooth_idf=True)\n", + "tt_matrix = tt.fit_transform(cv_matrix)\n", + "\n", + "tt_matrix = tt_matrix.toarray()\n", + "vocab = cv.get_feature_names()\n", + "pd.DataFrame(np.round(tt_matrix, 2), columns=vocab)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
00.000.000.600.530.000.000.000.000.000.000.000.000.000.000.000.000.000.600.000.0
10.000.000.490.430.000.000.000.000.000.000.000.000.000.000.570.000.000.490.000.0
20.000.000.000.000.000.380.380.000.380.000.000.530.000.380.000.380.000.000.000.0
30.320.380.000.000.380.000.000.320.000.000.320.000.380.000.000.000.320.000.380.0
40.390.000.000.000.000.000.000.390.000.470.390.000.000.000.390.000.390.000.000.0
50.000.000.000.370.000.420.420.000.420.000.000.000.000.420.000.420.000.000.000.0
60.000.000.360.320.000.000.000.000.000.000.000.000.000.000.000.000.000.720.000.5
70.000.000.000.000.000.450.450.000.450.000.000.000.000.450.000.450.000.000.000.0
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 0.00 0.00 0.60 0.53 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "1 0.00 0.00 0.49 0.43 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "2 0.00 0.00 0.00 0.00 0.00 0.38 0.38 0.00 0.38 0.00 \n", + "3 0.32 0.38 0.00 0.00 0.38 0.00 0.00 0.32 0.00 0.00 \n", + "4 0.39 0.00 0.00 0.00 0.00 0.00 0.00 0.39 0.00 0.47 \n", + "5 0.00 0.00 0.00 0.37 0.00 0.42 0.42 0.00 0.42 0.00 \n", + "6 0.00 0.00 0.36 0.32 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "7 0.00 0.00 0.00 0.00 0.00 0.45 0.45 0.00 0.45 0.00 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.60 0.00 0.0 \n", + "1 0.00 0.00 0.00 0.00 0.57 0.00 0.00 0.49 0.00 0.0 \n", + "2 0.00 0.53 0.00 0.38 0.00 0.38 0.00 0.00 0.00 0.0 \n", + "3 0.32 0.00 0.38 0.00 0.00 0.00 0.32 0.00 0.38 0.0 \n", + "4 0.39 0.00 0.00 0.00 0.39 0.00 0.39 0.00 0.00 0.0 \n", + "5 0.00 0.00 0.00 0.42 0.00 0.42 0.00 0.00 0.00 0.0 \n", + "6 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.72 0.00 0.5 \n", + "7 0.00 0.00 0.00 0.45 0.00 0.45 0.00 0.00 0.00 0.0 " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "tv = TfidfVectorizer(min_df=0., max_df=1., norm='l2',\n", + " use_idf=True, smooth_idf=True)\n", + "tv_matrix = tv.fit_transform(norm_corpus)\n", + "tv_matrix = tv_matrix.toarray()\n", + "\n", + "vocab = tv.get_feature_names()\n", + "pd.DataFrame(np.round(tv_matrix, 2), columns=vocab)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Understanding TF-IDF from Scratch" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Feature Names: ['lazy', 'fox', 'love', 'jumps', 'sausages', 'blue', 'ham', 'beautiful', 'brown', 'kings', 'eggs', 'quick', 'bacon', 'breakfast', 'toast', 'beans', 'green', 'today', 'dog', 'sky']\n", + "Default Feature Dict: {'lazy': 0, 'fox': 0, 'kings': 0, 'love': 0, 'jumps': 0, 'sausages': 0, 'breakfast': 0, 'today': 0, 'brown': 0, 'ham': 0, 'beautiful': 0, 'green': 0, 'eggs': 0, 'blue': 0, 'bacon': 0, 'toast': 0, 'beans': 0, 'dog': 0, 'sky': 0, 'quick': 0}\n" + ] + } + ], + "source": [ + "# get unique words as feature names\n", + "unique_words = list(set([word for doc in [doc.split() for doc in norm_corpus] \n", + " for word in doc]))\n", + "def_feature_dict = {w: 0 for w in unique_words}\n", + "print('Feature Names:', unique_words)\n", + "print('Default Feature Dict:', def_feature_dict)" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
000110000000000000100
100110000000000100100
200000110100101010000
311001001001010001010
410000001011000101000
500010110100001010000
600110000000000000201
700000110100001010000
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 0 0 1 1 0 0 0 0 0 0 \n", + "1 0 0 1 1 0 0 0 0 0 0 \n", + "2 0 0 0 0 0 1 1 0 1 0 \n", + "3 1 1 0 0 1 0 0 1 0 0 \n", + "4 1 0 0 0 0 0 0 1 0 1 \n", + "5 0 0 0 1 0 1 1 0 1 0 \n", + "6 0 0 1 1 0 0 0 0 0 0 \n", + "7 0 0 0 0 0 1 1 0 1 0 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 0 0 0 0 0 0 0 1 0 0 \n", + "1 0 0 0 0 1 0 0 1 0 0 \n", + "2 0 1 0 1 0 1 0 0 0 0 \n", + "3 1 0 1 0 0 0 1 0 1 0 \n", + "4 1 0 0 0 1 0 1 0 0 0 \n", + "5 0 0 0 1 0 1 0 0 0 0 \n", + "6 0 0 0 0 0 0 0 2 0 1 \n", + "7 0 0 0 1 0 1 0 0 0 0 " + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from collections import Counter\n", + "# build bag of words features for each document - term frequencies\n", + "bow_features = []\n", + "for doc in norm_corpus:\n", + " bow_feature_doc = Counter(doc.split())\n", + " all_features = Counter(def_feature_dict)\n", + " bow_feature_doc.update(all_features)\n", + " bow_features.append(bow_feature_doc)\n", + "\n", + "bow_features = pd.DataFrame(bow_features)\n", + "bow_features" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
032452443423224343422
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 3 2 4 5 2 4 4 3 4 2 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 3 2 2 4 3 4 3 4 2 2 " + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import scipy.sparse as sp\n", + "feature_names = list(bow_features.columns)\n", + "\n", + "# build the document frequency matrix\n", + "df = np.diff(sp.csc_matrix(bow_features, copy=True).indptr)\n", + "df = 1 + df # adding 1 to smoothen idf later\n", + "\n", + "# show smoothened document frequencies\n", + "pd.DataFrame([df], columns=feature_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
02.12.51.811.592.51.811.812.11.812.52.12.52.51.812.11.812.11.812.52.5
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 2.1 2.5 1.81 1.59 2.5 1.81 1.81 2.1 1.81 2.5 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 2.1 2.5 2.5 1.81 2.1 1.81 2.1 1.81 2.5 2.5 " + ] + }, + "execution_count": 85, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute inverse document frequencies\n", + "total_docs = 1 + len(norm_corpus)\n", + "idf = 1.0 + np.log(float(total_docs) / df)\n", + "\n", + "# show smoothened idfs\n", + "pd.DataFrame([np.round(idf, 2)], columns=feature_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 87, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012345678910111213141516171819
02.10.00.000.000.00.000.000.00.000.00.00.00.00.000.00.000.00.000.00.0
10.02.50.000.000.00.000.000.00.000.00.00.00.00.000.00.000.00.000.00.0
20.00.01.810.000.00.000.000.00.000.00.00.00.00.000.00.000.00.000.00.0
30.00.00.001.590.00.000.000.00.000.00.00.00.00.000.00.000.00.000.00.0
40.00.00.000.002.50.000.000.00.000.00.00.00.00.000.00.000.00.000.00.0
50.00.00.000.000.01.810.000.00.000.00.00.00.00.000.00.000.00.000.00.0
60.00.00.000.000.00.001.810.00.000.00.00.00.00.000.00.000.00.000.00.0
70.00.00.000.000.00.000.002.10.000.00.00.00.00.000.00.000.00.000.00.0
80.00.00.000.000.00.000.000.01.810.00.00.00.00.000.00.000.00.000.00.0
90.00.00.000.000.00.000.000.00.002.50.00.00.00.000.00.000.00.000.00.0
100.00.00.000.000.00.000.000.00.000.02.10.00.00.000.00.000.00.000.00.0
110.00.00.000.000.00.000.000.00.000.00.02.50.00.000.00.000.00.000.00.0
120.00.00.000.000.00.000.000.00.000.00.00.02.50.000.00.000.00.000.00.0
130.00.00.000.000.00.000.000.00.000.00.00.00.01.810.00.000.00.000.00.0
140.00.00.000.000.00.000.000.00.000.00.00.00.00.002.10.000.00.000.00.0
150.00.00.000.000.00.000.000.00.000.00.00.00.00.000.01.810.00.000.00.0
160.00.00.000.000.00.000.000.00.000.00.00.00.00.000.00.002.10.000.00.0
170.00.00.000.000.00.000.000.00.000.00.00.00.00.000.00.000.01.810.00.0
180.00.00.000.000.00.000.000.00.000.00.00.00.00.000.00.000.00.002.50.0
190.00.00.000.000.00.000.000.00.000.00.00.00.00.000.00.000.00.000.02.5
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 9 10 11 12 \\\n", + "0 2.1 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "1 0.0 2.5 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "2 0.0 0.0 1.81 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "3 0.0 0.0 0.00 1.59 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "4 0.0 0.0 0.00 0.00 2.5 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "5 0.0 0.0 0.00 0.00 0.0 1.81 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "6 0.0 0.0 0.00 0.00 0.0 0.00 1.81 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "7 0.0 0.0 0.00 0.00 0.0 0.00 0.00 2.1 0.00 0.0 0.0 0.0 0.0 \n", + "8 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 1.81 0.0 0.0 0.0 0.0 \n", + "9 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 2.5 0.0 0.0 0.0 \n", + "10 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 2.1 0.0 0.0 \n", + "11 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 2.5 0.0 \n", + "12 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 2.5 \n", + "13 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "14 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "15 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "16 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "17 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "18 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "19 0.0 0.0 0.00 0.00 0.0 0.00 0.00 0.0 0.00 0.0 0.0 0.0 0.0 \n", + "\n", + " 13 14 15 16 17 18 19 \n", + "0 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "1 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "2 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "3 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "4 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "5 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "6 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "7 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "8 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "9 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "10 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "11 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "12 0.00 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "13 1.81 0.0 0.00 0.0 0.00 0.0 0.0 \n", + "14 0.00 2.1 0.00 0.0 0.00 0.0 0.0 \n", + "15 0.00 0.0 1.81 0.0 0.00 0.0 0.0 \n", + "16 0.00 0.0 0.00 2.1 0.00 0.0 0.0 \n", + "17 0.00 0.0 0.00 0.0 1.81 0.0 0.0 \n", + "18 0.00 0.0 0.00 0.0 0.00 2.5 0.0 \n", + "19 0.00 0.0 0.00 0.0 0.00 0.0 2.5 " + ] + }, + "execution_count": 87, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute idf diagonal matrix \n", + "total_features = bow_features.shape[1]\n", + "idf_diag = sp.spdiags(idf, diags=0, m=total_features, n=total_features)\n", + "idf_dense = idf_diag.todense()\n", + "\n", + "# print the idf diagonal matrix\n", + "pd.DataFrame(np.round(idf_dense, 2))" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
00.00.01.811.590.00.000.000.00.000.00.00.00.00.000.00.000.01.810.00.0
10.00.01.811.590.00.000.000.00.000.00.00.00.00.002.10.000.01.810.00.0
20.00.00.000.000.01.811.810.01.810.00.02.50.01.810.01.810.00.000.00.0
32.12.50.000.002.50.000.002.10.000.02.10.02.50.000.00.002.10.002.50.0
42.10.00.000.000.00.000.002.10.002.52.10.00.00.002.10.002.10.000.00.0
50.00.00.001.590.01.811.810.01.810.00.00.00.01.810.01.810.00.000.00.0
60.00.01.811.590.00.000.000.00.000.00.00.00.00.000.00.000.03.620.02.5
70.00.00.000.000.01.811.810.01.810.00.00.00.01.810.01.810.00.000.00.0
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 0.0 0.0 1.81 1.59 0.0 0.00 0.00 0.0 0.00 0.0 \n", + "1 0.0 0.0 1.81 1.59 0.0 0.00 0.00 0.0 0.00 0.0 \n", + "2 0.0 0.0 0.00 0.00 0.0 1.81 1.81 0.0 1.81 0.0 \n", + "3 2.1 2.5 0.00 0.00 2.5 0.00 0.00 2.1 0.00 0.0 \n", + "4 2.1 0.0 0.00 0.00 0.0 0.00 0.00 2.1 0.00 2.5 \n", + "5 0.0 0.0 0.00 1.59 0.0 1.81 1.81 0.0 1.81 0.0 \n", + "6 0.0 0.0 1.81 1.59 0.0 0.00 0.00 0.0 0.00 0.0 \n", + "7 0.0 0.0 0.00 0.00 0.0 1.81 1.81 0.0 1.81 0.0 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 0.0 0.0 0.0 0.00 0.0 0.00 0.0 1.81 0.0 0.0 \n", + "1 0.0 0.0 0.0 0.00 2.1 0.00 0.0 1.81 0.0 0.0 \n", + "2 0.0 2.5 0.0 1.81 0.0 1.81 0.0 0.00 0.0 0.0 \n", + "3 2.1 0.0 2.5 0.00 0.0 0.00 2.1 0.00 2.5 0.0 \n", + "4 2.1 0.0 0.0 0.00 2.1 0.00 2.1 0.00 0.0 0.0 \n", + "5 0.0 0.0 0.0 1.81 0.0 1.81 0.0 0.00 0.0 0.0 \n", + "6 0.0 0.0 0.0 0.00 0.0 0.00 0.0 3.62 0.0 2.5 \n", + "7 0.0 0.0 0.0 1.81 0.0 1.81 0.0 0.00 0.0 0.0 " + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute tfidf feature matrix\n", + "tf = np.array(bow_features, dtype='float64')\n", + "tfidf = tf * idf\n", + "# view raw tfidf feature matrix\n", + "pd.DataFrame(np.round(tfidf, 2), columns=feature_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 3.013 3.672 4.761 6.534 5.319 4.35 5.019 4.049]\n" + ] + } + ], + "source": [ + "from numpy.linalg import norm\n", + "# compute L2 norms \n", + "norms = norm(tfidf, axis=1)\n", + "\n", + "# print norms for each document\n", + "print (np.round(norms, 3))" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
00.000.000.600.530.000.000.000.000.000.000.000.000.000.000.000.000.000.600.000.0
10.000.000.490.430.000.000.000.000.000.000.000.000.000.000.570.000.000.490.000.0
20.000.000.000.000.000.380.380.000.380.000.000.530.000.380.000.380.000.000.000.0
30.320.380.000.000.380.000.000.320.000.000.320.000.380.000.000.000.320.000.380.0
40.390.000.000.000.000.000.000.390.000.470.390.000.000.000.390.000.390.000.000.0
50.000.000.000.370.000.420.420.000.420.000.000.000.000.420.000.420.000.000.000.0
60.000.000.360.320.000.000.000.000.000.000.000.000.000.000.000.000.000.720.000.5
70.000.000.000.000.000.450.450.000.450.000.000.000.000.450.000.450.000.000.000.0
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 0.00 0.00 0.60 0.53 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "1 0.00 0.00 0.49 0.43 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "2 0.00 0.00 0.00 0.00 0.00 0.38 0.38 0.00 0.38 0.00 \n", + "3 0.32 0.38 0.00 0.00 0.38 0.00 0.00 0.32 0.00 0.00 \n", + "4 0.39 0.00 0.00 0.00 0.00 0.00 0.00 0.39 0.00 0.47 \n", + "5 0.00 0.00 0.00 0.37 0.00 0.42 0.42 0.00 0.42 0.00 \n", + "6 0.00 0.00 0.36 0.32 0.00 0.00 0.00 0.00 0.00 0.00 \n", + "7 0.00 0.00 0.00 0.00 0.00 0.45 0.45 0.00 0.45 0.00 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.60 0.00 0.0 \n", + "1 0.00 0.00 0.00 0.00 0.57 0.00 0.00 0.49 0.00 0.0 \n", + "2 0.00 0.53 0.00 0.38 0.00 0.38 0.00 0.00 0.00 0.0 \n", + "3 0.32 0.00 0.38 0.00 0.00 0.00 0.32 0.00 0.38 0.0 \n", + "4 0.39 0.00 0.00 0.00 0.39 0.00 0.39 0.00 0.00 0.0 \n", + "5 0.00 0.00 0.00 0.42 0.00 0.42 0.00 0.00 0.00 0.0 \n", + "6 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.72 0.00 0.5 \n", + "7 0.00 0.00 0.00 0.45 0.00 0.45 0.00 0.00 0.00 0.0 " + ] + }, + "execution_count": 90, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# compute normalized tfidf\n", + "norm_tfidf = tfidf / norms[:, None]\n", + "\n", + "# show final tfidf feature matrix\n", + "pd.DataFrame(np.round(norm_tfidf, 2), columns=feature_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
baconbeansbeautifulbluebreakfastbrowndogeggsfoxgreenhamjumpskingslazylovequicksausagesskytoasttoday
00.00.00.00.00.00.00.00.00.00.630.00.00.00.00.00.00.00.460.00.63
\n", + "
" + ], + "text/plain": [ + " bacon beans beautiful blue breakfast brown dog eggs fox green \\\n", + "0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.63 \n", + "\n", + " ham jumps kings lazy love quick sausages sky toast today \n", + "0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.46 0.0 0.63 " + ] + }, + "execution_count": 97, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_doc = 'the sky is green today'\n", + "\n", + "pd.DataFrame(np.round(tv.transform([new_doc]).toarray(), 2), \n", + " columns=tv.get_feature_names())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Document Similarity" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
01234567
01.0000000.8205990.0000000.0000000.0000000.1923530.8172460.000000
10.8205991.0000000.0000000.0000000.2254890.1578450.6706310.000000
20.0000000.0000001.0000000.0000000.0000000.7918210.0000000.850516
30.0000000.0000000.0000001.0000000.5068660.0000000.0000000.000000
40.0000000.2254890.0000000.5068661.0000000.0000000.0000000.000000
50.1923530.1578450.7918210.0000000.0000001.0000000.1154880.930989
60.8172460.6706310.0000000.0000000.0000000.1154881.0000000.000000
70.0000000.0000000.8505160.0000000.0000000.9309890.0000001.000000
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 1.000000 0.820599 0.000000 0.000000 0.000000 0.192353 0.817246 \n", + "1 0.820599 1.000000 0.000000 0.000000 0.225489 0.157845 0.670631 \n", + "2 0.000000 0.000000 1.000000 0.000000 0.000000 0.791821 0.000000 \n", + "3 0.000000 0.000000 0.000000 1.000000 0.506866 0.000000 0.000000 \n", + "4 0.000000 0.225489 0.000000 0.506866 1.000000 0.000000 0.000000 \n", + "5 0.192353 0.157845 0.791821 0.000000 0.000000 1.000000 0.115488 \n", + "6 0.817246 0.670631 0.000000 0.000000 0.000000 0.115488 1.000000 \n", + "7 0.000000 0.000000 0.850516 0.000000 0.000000 0.930989 0.000000 \n", + "\n", + " 7 \n", + "0 0.000000 \n", + "1 0.000000 \n", + "2 0.850516 \n", + "3 0.000000 \n", + "4 0.000000 \n", + "5 0.930989 \n", + "6 0.000000 \n", + "7 1.000000 " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.metrics.pairwise import cosine_similarity\n", + "\n", + "similarity_matrix = cosine_similarity(tv_matrix)\n", + "similarity_df = pd.DataFrame(similarity_matrix)\n", + "similarity_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Clustering documents using similarity features" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Document\\Cluster 1Document\\Cluster 2DistanceCluster Size
0270.2530982
1060.3085392
2580.3869523
3190.4898453
4340.7329452
511122.695655
610133.451088
\n", + "
" + ], + "text/plain": [ + " Document\\Cluster 1 Document\\Cluster 2 Distance Cluster Size\n", + "0 2 7 0.253098 2\n", + "1 0 6 0.308539 2\n", + "2 5 8 0.386952 3\n", + "3 1 9 0.489845 3\n", + "4 3 4 0.732945 2\n", + "5 11 12 2.69565 5\n", + "6 10 13 3.45108 8" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from scipy.cluster.hierarchy import dendrogram, linkage\n", + "\n", + "Z = linkage(similarity_matrix, 'ward')\n", + "pd.DataFrame(Z, columns=['Document\\Cluster 1', 'Document\\Cluster 2', \n", + " 'Distance', 'Cluster Size'], dtype='object')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(8, 3))\n", + "plt.title('Hierarchical Clustering Dendrogram')\n", + "plt.xlabel('Data point')\n", + "plt.ylabel('Distance')\n", + "dendrogram(Z)\n", + "plt.axhline(y=1.0, c='k', ls='--', lw=0.5)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentCategoryClusterLabel
0The sky is blue and beautiful.weather2
1Love this blue and beautiful sky!weather2
2The quick brown fox jumps over the lazy dog.animals1
3A king's breakfast has sausages, ham, bacon, eggs, toast and beansfood3
4I love green eggs, ham, sausages and bacon!food3
5The brown fox is quick and the blue dog is lazy!animals1
6The sky is very blue and the sky is very beautiful todayweather2
7The dog is lazy but the brown fox is quick!animals1
\n", + "
" + ], + "text/plain": [ + " Document \\\n", + "0 The sky is blue and beautiful. \n", + "1 Love this blue and beautiful sky! \n", + "2 The quick brown fox jumps over the lazy dog. \n", + "3 A king's breakfast has sausages, ham, bacon, eggs, toast and beans \n", + "4 I love green eggs, ham, sausages and bacon! \n", + "5 The brown fox is quick and the blue dog is lazy! \n", + "6 The sky is very blue and the sky is very beautiful today \n", + "7 The dog is lazy but the brown fox is quick! \n", + "\n", + " Category ClusterLabel \n", + "0 weather 2 \n", + "1 weather 2 \n", + "2 animals 1 \n", + "3 food 3 \n", + "4 food 3 \n", + "5 animals 1 \n", + "6 weather 2 \n", + "7 animals 1 " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from scipy.cluster.hierarchy import fcluster\n", + "max_dist = 1.0\n", + "\n", + "cluster_labels = fcluster(Z, max_dist, criterion='distance')\n", + "cluster_labels = pd.DataFrame(cluster_labels, columns=['ClusterLabel'])\n", + "pd.concat([corpus_df, cluster_labels], axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Topic Models" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Program Files\\Anaconda3\\lib\\site-packages\\sklearn\\decomposition\\online_lda.py:508: DeprecationWarning: The default value for 'learning_method' will be changed from 'online' to 'batch' in the release 0.20. This warning was introduced in 0.18.\n", + " DeprecationWarning)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
T1T2T3
00.8321910.0834800.084329
10.8635540.0691000.067346
20.0477940.0477760.904430
30.0372430.9255590.037198
40.0491210.9030760.047802
50.0549010.0477780.897321
60.8882870.0556970.056016
70.0557040.0556890.888607
\n", + "
" + ], + "text/plain": [ + " T1 T2 T3\n", + "0 0.832191 0.083480 0.084329\n", + "1 0.863554 0.069100 0.067346\n", + "2 0.047794 0.047776 0.904430\n", + "3 0.037243 0.925559 0.037198\n", + "4 0.049121 0.903076 0.047802\n", + "5 0.054901 0.047778 0.897321\n", + "6 0.888287 0.055697 0.056016\n", + "7 0.055704 0.055689 0.888607" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.decomposition import LatentDirichletAllocation\n", + "\n", + "lda = LatentDirichletAllocation(n_topics=3, max_iter=10000, random_state=0)\n", + "dt_matrix = lda.fit_transform(cv_matrix)\n", + "features = pd.DataFrame(dt_matrix, columns=['T1', 'T2', 'T3'])\n", + "features" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Show topics and their weights" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('sky', 4.3324395825632624), ('blue', 3.373753174831771), ('beautiful', 3.3323652405224857), ('today', 1.3325579841038182), ('love', 1.3304224288080069)]\n", + "\n", + "[('bacon', 2.332695948479998), ('eggs', 2.332695948479998), ('ham', 2.332695948479998), ('sausages', 2.332695948479998), ('love', 1.335454457601996), ('beans', 1.332773525378464), ('breakfast', 1.332773525378464), ('kings', 1.332773525378464), ('toast', 1.332773525378464), ('green', 1.3325433207547732)]\n", + "\n", + "[('brown', 3.3323474595768783), ('dog', 3.3323474595768783), ('fox', 3.3323474595768783), ('lazy', 3.3323474595768783), ('quick', 3.3323474595768783), ('jumps', 1.3324193736202712), ('blue', 1.2919635624485213)]\n", + "\n" + ] + } + ], + "source": [ + "tt_matrix = lda.components_\n", + "for topic_weights in tt_matrix:\n", + " topic = [(token, weight) for token, weight in zip(vocab, topic_weights)]\n", + " topic = sorted(topic, key=lambda x: -x[1])\n", + " topic = [item for item in topic if item[1] > 0.6]\n", + " print(topic)\n", + " print()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Clustering documents using topic model features" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentCategoryClusterLabel
0The sky is blue and beautiful.weather2
1Love this blue and beautiful sky!weather2
2The quick brown fox jumps over the lazy dog.animals1
3A king's breakfast has sausages, ham, bacon, eggs, toast and beansfood0
4I love green eggs, ham, sausages and bacon!food0
5The brown fox is quick and the blue dog is lazy!animals1
6The sky is very blue and the sky is very beautiful todayweather2
7The dog is lazy but the brown fox is quick!animals1
\n", + "
" + ], + "text/plain": [ + " Document \\\n", + "0 The sky is blue and beautiful. \n", + "1 Love this blue and beautiful sky! \n", + "2 The quick brown fox jumps over the lazy dog. \n", + "3 A king's breakfast has sausages, ham, bacon, eggs, toast and beans \n", + "4 I love green eggs, ham, sausages and bacon! \n", + "5 The brown fox is quick and the blue dog is lazy! \n", + "6 The sky is very blue and the sky is very beautiful today \n", + "7 The dog is lazy but the brown fox is quick! \n", + "\n", + " Category ClusterLabel \n", + "0 weather 2 \n", + "1 weather 2 \n", + "2 animals 1 \n", + "3 food 0 \n", + "4 food 0 \n", + "5 animals 1 \n", + "6 weather 2 \n", + "7 animals 1 " + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.cluster import KMeans\n", + "\n", + "km = KMeans(n_clusters=3, random_state=0)\n", + "km.fit_transform(features)\n", + "cluster_labels = km.labels_\n", + "cluster_labels = pd.DataFrame(cluster_labels, columns=['ClusterLabel'])\n", + "pd.concat([corpus_df, cluster_labels], axis=1)" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python [conda root]", + "language": "python", + "name": "conda-root-py" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04b - Feature Engineering Text Data - Advanced Deep Learning Strategies.ipynb b/New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04b - Feature Engineering Text Data - Advanced Deep Learning Strategies.ipynb new file mode 100644 index 0000000..914abcc --- /dev/null +++ b/New-Second-Edition/Ch04 - Feature Engineering for Text Representation/Ch04b - Feature Engineering Text Data - Advanced Deep Learning Strategies.ipynb @@ -0,0 +1,3189 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import necessary dependencies and settings" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import re\n", + "import nltk\n", + "import matplotlib.pyplot as plt\n", + "\n", + "pd.options.display.max_colwidth = 200\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Sample corpus of text documents" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentCategory
0The sky is blue and beautiful.weather
1Love this blue and beautiful sky!weather
2The quick brown fox jumps over the lazy dog.animals
3A king's breakfast has sausages, ham, bacon, eggs, toast and beansfood
4I love green eggs, ham, sausages and bacon!food
5The brown fox is quick and the blue dog is lazy!animals
6The sky is very blue and the sky is very beautiful todayweather
7The dog is lazy but the brown fox is quick!animals
\n", + "
" + ], + "text/plain": [ + " Document Category\n", + "0 The sky is blue and beautiful. weather\n", + "1 Love this blue and beautiful sky! weather\n", + "2 The quick brown fox jumps over the lazy dog. animals\n", + "3 A king's breakfast has sausages, ham, bacon, eggs, toast and beans food\n", + "4 I love green eggs, ham, sausages and bacon! food\n", + "5 The brown fox is quick and the blue dog is lazy! animals\n", + "6 The sky is very blue and the sky is very beautiful today weather\n", + "7 The dog is lazy but the brown fox is quick! animals" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "corpus = ['The sky is blue and beautiful.',\n", + " 'Love this blue and beautiful sky!',\n", + " 'The quick brown fox jumps over the lazy dog.',\n", + " \"A king's breakfast has sausages, ham, bacon, eggs, toast and beans\",\n", + " 'I love green eggs, ham, sausages and bacon!',\n", + " 'The brown fox is quick and the blue dog is lazy!',\n", + " 'The sky is very blue and the sky is very beautiful today',\n", + " 'The dog is lazy but the brown fox is quick!' \n", + "]\n", + "labels = ['weather', 'weather', 'animals', 'food', 'food', 'animals', 'weather', 'animals']\n", + "\n", + "corpus = np.array(corpus)\n", + "corpus_df = pd.DataFrame({'Document': corpus, \n", + " 'Category': labels})\n", + "corpus_df = corpus_df[['Document', 'Category']]\n", + "corpus_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Simple text pre-processing" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "wpt = nltk.WordPunctTokenizer()\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "\n", + "def normalize_document(doc):\n", + " # lower case and remove special characters\\whitespaces\n", + " doc = re.sub(r'[^a-zA-Z\\s]', '', doc, re.I|re.A)\n", + " doc = doc.lower()\n", + " doc = doc.strip()\n", + " # tokenize document\n", + " tokens = wpt.tokenize(doc)\n", + " # filter stopwords out of document\n", + " filtered_tokens = [token for token in tokens if token not in stop_words]\n", + " # re-create document from filtered tokens\n", + " doc = ' '.join(filtered_tokens)\n", + " return doc\n", + "\n", + "normalize_corpus = np.vectorize(normalize_document)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['sky blue beautiful', 'love blue beautiful sky',\n", + " 'quick brown fox jumps lazy dog',\n", + " 'kings breakfast sausages ham bacon eggs toast beans',\n", + " 'love green eggs ham sausages bacon',\n", + " 'brown fox quick blue dog lazy', 'sky blue sky beautiful today',\n", + " 'dog lazy brown fox quick'],\n", + " dtype=' 2]\n", + "\n", + "print('Total lines:', len(bible))\n", + "print('\\nSample line:', bible[10])\n", + "print('\\nProcessed line:', norm_bible[10])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Implementing a word2vec model using a CBOW (Continuous Bag of Words) neural network architecture" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build Vocabulary" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Vocabulary Size: 12425\n", + "Vocabulary Sample: [('base', 2338), ('feller', 10771), ('sanctuary', 455), ('plunge', 10322), ('azariah', 1120), ('enlightened', 4438), ('horns', 838), ('kareah', 2920), ('nursing', 5943), ('baken', 3492)]\n" + ] + } + ], + "source": [ + "from keras.preprocessing import text\n", + "from keras.utils import np_utils\n", + "from keras.preprocessing import sequence\n", + "\n", + "tokenizer = text.Tokenizer()\n", + "tokenizer.fit_on_texts(norm_bible)\n", + "word2id = tokenizer.word_index\n", + "\n", + "word2id['PAD'] = 0\n", + "id2word = {v:k for k, v in word2id.items()}\n", + "wids = [[word2id[w] for w in text.text_to_word_sequence(doc)] for doc in norm_bible]\n", + "\n", + "vocab_size = len(word2id)\n", + "embed_size = 100\n", + "window_size = 2\n", + "\n", + "print('Vocabulary Size:', vocab_size)\n", + "print('Vocabulary Sample:', list(word2id.items())[:10])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build (context_words, target_word) pair generator" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "def generate_context_word_pairs(corpus, window_size, vocab_size):\n", + " context_length = window_size*2\n", + " for words in corpus:\n", + " sentence_length = len(words)\n", + " for index, word in enumerate(words):\n", + " context_words = []\n", + " label_word = [] \n", + " start = index - window_size\n", + " end = index + window_size + 1\n", + " \n", + " context_words.append([words[i] \n", + " for i in range(start, end) \n", + " if 0 <= i < sentence_length \n", + " and i != index])\n", + " label_word.append(word)\n", + "\n", + " x = sequence.pad_sequences(context_words, maxlen=context_length)\n", + " y = np_utils.to_categorical(label_word, vocab_size)\n", + " yield (x, y)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Context (X): ['old', 'testament', 'james', 'bible'] -> Target (Y): king\n", + "Context (X): ['first', 'book', 'called', 'genesis'] -> Target (Y): moses\n", + "Context (X): ['beginning', 'god', 'heaven', 'earth'] -> Target (Y): created\n", + "Context (X): ['earth', 'without', 'void', 'darkness'] -> Target (Y): form\n", + "Context (X): ['without', 'form', 'darkness', 'upon'] -> Target (Y): void\n", + "Context (X): ['form', 'void', 'upon', 'face'] -> Target (Y): darkness\n", + "Context (X): ['void', 'darkness', 'face', 'deep'] -> Target (Y): upon\n", + "Context (X): ['spirit', 'god', 'upon', 'face'] -> Target (Y): moved\n", + "Context (X): ['god', 'moved', 'face', 'waters'] -> Target (Y): upon\n", + "Context (X): ['god', 'said', 'light', 'light'] -> Target (Y): let\n", + "Context (X): ['god', 'saw', 'good', 'god'] -> Target (Y): light\n" + ] + } + ], + "source": [ + "i = 0\n", + "for x, y in generate_context_word_pairs(corpus=wids, window_size=window_size, vocab_size=vocab_size):\n", + " if 0 not in x[0]:\n", + " print('Context (X):', [id2word[w] for w in x[0]], '-> Target (Y):', id2word[np.argwhere(y[0])[0][0]])\n", + " \n", + " if i == 10:\n", + " break\n", + " i += 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build CBOW Deep Network Model" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "_________________________________________________________________\n", + "Layer (type) Output Shape Param # \n", + "=================================================================\n", + "embedding_1 (Embedding) (None, 4, 100) 1242500 \n", + "_________________________________________________________________\n", + "lambda_1 (Lambda) (None, 100) 0 \n", + "_________________________________________________________________\n", + "dense_1 (Dense) (None, 12425) 1254925 \n", + "=================================================================\n", + "Total params: 2,497,425\n", + "Trainable params: 2,497,425\n", + "Non-trainable params: 0\n", + "_________________________________________________________________\n", + "None\n" + ] + } + ], + "source": [ + "import keras.backend as K\n", + "from keras.models import Sequential\n", + "from keras.layers import Dense, Embedding, Lambda\n", + "\n", + "cbow = Sequential()\n", + "cbow.add(Embedding(input_dim=vocab_size, output_dim=embed_size, input_length=window_size*2))\n", + "cbow.add(Lambda(lambda x: K.mean(x, axis=1), output_shape=(embed_size,)))\n", + "cbow.add(Dense(vocab_size, activation='softmax'))\n", + "\n", + "cbow.compile(loss='categorical_crossentropy', optimizer='rmsprop')\n", + "print(cbow.summary())" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "G\n", + "\n", + "\n", + "1879610447800\n", + "\n", + "InputLayer\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 4)\n", + "\n", + "(None, 4)\n", + "\n", + "\n", + "1879610447352\n", + "\n", + "Embedding\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 4)\n", + "\n", + "(None, 4, 100)\n", + "\n", + "\n", + "1879610447800->1879610447352\n", + "\n", + "\n", + "\n", + "\n", + "1879610447688\n", + "\n", + "Lambda\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 4, 100)\n", + "\n", + "(None, 100)\n", + "\n", + "\n", + "1879610447352->1879610447688\n", + "\n", + "\n", + "\n", + "\n", + "1879610448584\n", + "\n", + "Dense\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 100)\n", + "\n", + "(None, 12425)\n", + "\n", + "\n", + "1879610447688->1879610448584\n", + "\n", + "\n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from IPython.display import SVG\n", + "from keras.utils.vis_utils import model_to_dot\n", + "\n", + "SVG(model_to_dot(cbow, show_shapes=True, show_layer_names=False, \n", + " rankdir='TB').create(prog='dot', format='svg'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Train model for 5 epochs" + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processed 100000 (context, word) pairs\n", + "Processed 200000 (context, word) pairs\n", + "Processed 300000 (context, word) pairs\n", + "Epoch: 1 \tLoss: 4257900.60084\n", + "\n", + "Processed 100000 (context, word) pairs\n", + "Processed 200000 (context, word) pairs\n", + "Processed 300000 (context, word) pairs\n", + "Epoch: 2 \tLoss: 4256209.59646\n", + "\n", + "Processed 100000 (context, word) pairs\n", + "Processed 200000 (context, word) pairs\n", + "Processed 300000 (context, word) pairs\n", + "Epoch: 3 \tLoss: 4247990.90456\n", + "\n", + "Processed 100000 (context, word) pairs\n", + "Processed 200000 (context, word) pairs\n", + "Processed 300000 (context, word) pairs\n", + "Epoch: 4 \tLoss: 4225663.18927\n", + "\n", + "Processed 100000 (context, word) pairs\n", + "Processed 200000 (context, word) pairs\n", + "Processed 300000 (context, word) pairs\n", + "Epoch: 5 \tLoss: 4104501.48929\n", + "\n" + ] + } + ], + "source": [ + "for epoch in range(1, 6):\n", + " loss = 0.\n", + " i = 0\n", + " for x, y in generate_context_word_pairs(corpus=wids, window_size=window_size, vocab_size=vocab_size):\n", + " i += 1\n", + " loss += cbow.train_on_batch(x, y)\n", + " if i % 100000 == 0:\n", + " print('Processed {} (context, word) pairs'.format(i))\n", + "\n", + " print('Epoch:', epoch, '\\tLoss:', loss)\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Get word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(12424, 100)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...90919293949596979899
shall-1.183386-2.8662141.0464310.943265-1.021784-0.0470692.108584-0.458692-1.6988810.905800...0.6557860.7038280.821803-0.093732-2.4745362.3095050.713962-0.1751760.2627000.818652
unto-1.725262-1.7659721.4119710.9177130.7938320.3106311.541964-0.082523-1.3468110.095824...1.682762-0.8722931.9085970.977152-0.8350051.1286180.8340681.852117-2.522386-0.053387
lord1.694633-0.650949-0.0957960.9500020.8138371.5382061.125482-1.655581-1.3526730.409504...1.553925-0.8192611.086127-1.545129-0.0352511.8955982.378903-1.6328351.3751050.599096
thou-1.590623-0.8019681.6590411.314925-0.4558221.733872-0.233771-0.6389220.1047440.490223...0.652781-0.362778-0.1903550.040719-1.9881842.3300421.441790-1.771272-1.738142-3.210077
thy0.386488-0.8346050.5859850.801969-0.1651320.9999171.224088-0.317555-0.671106-1.073181...1.267184-0.5646600.089618-0.979835-0.2156042.1895680.529003-1.682130-0.6324600.578122
\n", + "

5 rows × 100 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "shall -1.183386 -2.866214 1.046431 0.943265 -1.021784 -0.047069 2.108584 \n", + "unto -1.725262 -1.765972 1.411971 0.917713 0.793832 0.310631 1.541964 \n", + "lord 1.694633 -0.650949 -0.095796 0.950002 0.813837 1.538206 1.125482 \n", + "thou -1.590623 -0.801968 1.659041 1.314925 -0.455822 1.733872 -0.233771 \n", + "thy 0.386488 -0.834605 0.585985 0.801969 -0.165132 0.999917 1.224088 \n", + "\n", + " 7 8 9 ... 90 91 92 \\\n", + "shall -0.458692 -1.698881 0.905800 ... 0.655786 0.703828 0.821803 \n", + "unto -0.082523 -1.346811 0.095824 ... 1.682762 -0.872293 1.908597 \n", + "lord -1.655581 -1.352673 0.409504 ... 1.553925 -0.819261 1.086127 \n", + "thou -0.638922 0.104744 0.490223 ... 0.652781 -0.362778 -0.190355 \n", + "thy -0.317555 -0.671106 -1.073181 ... 1.267184 -0.564660 0.089618 \n", + "\n", + " 93 94 95 96 97 98 99 \n", + "shall -0.093732 -2.474536 2.309505 0.713962 -0.175176 0.262700 0.818652 \n", + "unto 0.977152 -0.835005 1.128618 0.834068 1.852117 -2.522386 -0.053387 \n", + "lord -1.545129 -0.035251 1.895598 2.378903 -1.632835 1.375105 0.599096 \n", + "thou 0.040719 -1.988184 2.330042 1.441790 -1.771272 -1.738142 -3.210077 \n", + "thy -0.979835 -0.215604 2.189568 0.529003 -1.682130 -0.632460 0.578122 \n", + "\n", + "[5 rows x 100 columns]" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "weights = cbow.get_weights()[0]\n", + "weights = weights[1:]\n", + "print(weights.shape)\n", + "\n", + "pd.DataFrame(weights, index=list(id2word.values())[1:]).head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build a distance matrix to view the most similar words (contextually)" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(12424, 12424)\n" + ] + }, + { + "data": { + "text/plain": [ + "{'egypt': ['destroy', 'none', 'whole', 'jacob', 'sea'],\n", + " 'famine': ['wickedness', 'sore', 'countries', 'cease', 'portion'],\n", + " 'god': ['therefore', 'heard', 'may', 'behold', 'heaven'],\n", + " 'gospel': ['church', 'fowls', 'churches', 'preached', 'doctrine'],\n", + " 'jesus': ['law', 'heard', 'world', 'many', 'dead'],\n", + " 'john': ['dream', 'bones', 'held', 'present', 'alive'],\n", + " 'moses': ['pharaoh', 'gate', 'jews', 'departed', 'lifted'],\n", + " 'noah': ['abram', 'plagues', 'hananiah', 'korah', 'sarah']}" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.metrics.pairwise import euclidean_distances\n", + "\n", + "# compute pairwise distance matrix\n", + "distance_matrix = euclidean_distances(weights)\n", + "print(distance_matrix.shape)\n", + "\n", + "# view contextually similar words\n", + "similar_words = {search_term: [id2word[idx] for idx in distance_matrix[word2id[search_term]-1].argsort()[1:6]+1] \n", + " for search_term in ['god', 'jesus', 'noah', 'egypt', 'john', 'gospel', 'moses','famine']}\n", + "\n", + "similar_words" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Implementing a word2vec model using a skip-gram neural network architecture" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build Vocabulary" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Vocabulary Size: 12425\n", + "Vocabulary Sample: [('base', 2338), ('feller', 10771), ('sanctuary', 455), ('plunge', 10322), ('azariah', 1120), ('enlightened', 4438), ('horns', 838), ('kareah', 2920), ('nursing', 5943), ('baken', 3492)]\n" + ] + } + ], + "source": [ + "from keras.preprocessing import text\n", + "\n", + "tokenizer = text.Tokenizer()\n", + "tokenizer.fit_on_texts(norm_bible)\n", + "\n", + "word2id = tokenizer.word_index\n", + "id2word = {v:k for k, v in word2id.items()}\n", + "\n", + "vocab_size = len(word2id) + 1 \n", + "embed_size = 100\n", + "\n", + "wids = [[word2id[w] for w in text.text_to_word_sequence(doc)] for doc in norm_bible]\n", + "print('Vocabulary Size:', vocab_size)\n", + "print('Vocabulary Sample:', list(word2id.items())[:10])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build and View sample skip grams ((word1, word2) -> relevancy)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(bible (5766), stank (5220)) -> 0\n", + "(james (1154), izri (9970)) -> 0\n", + "(king (13), bad (2285)) -> 0\n", + "(king (13), james (1154)) -> 1\n", + "(king (13), lucius (8272)) -> 0\n", + "(james (1154), king (13)) -> 1\n", + "(james (1154), bazluth (10091)) -> 0\n", + "(james (1154), bible (5766)) -> 1\n", + "(king (13), bible (5766)) -> 1\n", + "(bible (5766), james (1154)) -> 1\n" + ] + } + ], + "source": [ + "from keras.preprocessing.sequence import skipgrams\n", + "\n", + "# generate skip-grams\n", + "skip_grams = [skipgrams(wid, vocabulary_size=vocab_size, window_size=10) for wid in wids]\n", + "\n", + "# view sample skip-grams\n", + "pairs, labels = skip_grams[0][0], skip_grams[0][1]\n", + "for i in range(10):\n", + " print(\"({:s} ({:d}), {:s} ({:d})) -> {:d}\".format(\n", + " id2word[pairs[i][0]], pairs[i][0], \n", + " id2word[pairs[i][1]], pairs[i][1], \n", + " labels[i]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build Skip-gram Deep Network Model" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "____________________________________________________________________________________________________\n", + "Layer (type) Output Shape Param # Connected to \n", + "====================================================================================================\n", + "embedding_12_input (InputLayer) (None, 1) 0 \n", + "____________________________________________________________________________________________________\n", + "embedding_13_input (InputLayer) (None, 1) 0 \n", + "____________________________________________________________________________________________________\n", + "embedding_12 (Embedding) (None, 1, 100) 1242500 embedding_12_input[0][0] \n", + "____________________________________________________________________________________________________\n", + "embedding_13 (Embedding) (None, 1, 100) 1242500 embedding_13_input[0][0] \n", + "____________________________________________________________________________________________________\n", + "reshape_11 (Reshape) (None, 100) 0 embedding_12[0][0] \n", + "____________________________________________________________________________________________________\n", + "reshape_12 (Reshape) (None, 100) 0 embedding_13[0][0] \n", + "____________________________________________________________________________________________________\n", + "dot_4 (Dot) (None, 1) 0 reshape_11[0][0] \n", + " reshape_12[0][0] \n", + "____________________________________________________________________________________________________\n", + "dense_5 (Dense) (None, 1) 2 dot_4[0][0] \n", + "====================================================================================================\n", + "Total params: 2,485,002\n", + "Trainable params: 2,485,002\n", + "Non-trainable params: 0\n", + "____________________________________________________________________________________________________\n", + "None\n" + ] + } + ], + "source": [ + "from keras.layers import Dot\n", + "from keras.layers.core import Dense, Reshape\n", + "from keras.layers.embeddings import Embedding\n", + "from keras.models import Sequential\n", + "from keras.models import Model\n", + "\n", + "word_model = Sequential()\n", + "word_model.add(Embedding(vocab_size, embed_size,\n", + " embeddings_initializer=\"glorot_uniform\",\n", + " input_length=1))\n", + "word_model.add(Reshape((embed_size, )))\n", + "\n", + "context_model = Sequential()\n", + "context_model.add(Embedding(vocab_size, embed_size,\n", + " embeddings_initializer=\"glorot_uniform\",\n", + " input_length=1))\n", + "context_model.add(Reshape((embed_size,)))\n", + "\n", + "model_arch = Dot(axes=1)([word_model.output, context_model.output])\n", + "model_arch = Dense(1, kernel_initializer=\"glorot_uniform\", activation=\"sigmoid\")(model_arch)\n", + "model = Model([word_model.input,context_model.input], model_arch)\n", + "#model.add(Merge([word_model, context_model], mode=\"dot\"))\n", + "#model.add(Dense(1, kernel_initializer=\"glorot_uniform\", activation=\"sigmoid\"))\n", + "model.compile(loss=\"mean_squared_error\", optimizer=\"rmsprop\")\n", + "print(model.summary())" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "G\n", + "\n", + "\n", + "1879585006088\n", + "\n", + "InputLayer\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1)\n", + "\n", + "(None, 1)\n", + "\n", + "\n", + "1879585005808\n", + "\n", + "Embedding\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1)\n", + "\n", + "(None, 1, 100)\n", + "\n", + "\n", + "1879585006088->1879585005808\n", + "\n", + "\n", + "\n", + "\n", + "1879585007656\n", + "\n", + "InputLayer\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1)\n", + "\n", + "(None, 1)\n", + "\n", + "\n", + "1879644457168\n", + "\n", + "Embedding\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1)\n", + "\n", + "(None, 1, 100)\n", + "\n", + "\n", + "1879585007656->1879644457168\n", + "\n", + "\n", + "\n", + "\n", + "1879585006312\n", + "\n", + "Reshape\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1, 100)\n", + "\n", + "(None, 100)\n", + "\n", + "\n", + "1879585005808->1879585006312\n", + "\n", + "\n", + "\n", + "\n", + "1879585006200\n", + "\n", + "Reshape\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1, 100)\n", + "\n", + "(None, 100)\n", + "\n", + "\n", + "1879644457168->1879585006200\n", + "\n", + "\n", + "\n", + "\n", + "1879585006928\n", + "\n", + "Dot\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "[(None, 100), (None, 100)]\n", + "\n", + "(None, 1)\n", + "\n", + "\n", + "1879585006312->1879585006928\n", + "\n", + "\n", + "\n", + "\n", + "1879585006200->1879585006928\n", + "\n", + "\n", + "\n", + "\n", + "1879585008496\n", + "\n", + "Dense\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1)\n", + "\n", + "(None, 1)\n", + "\n", + "\n", + "1879585006928->1879585008496\n", + "\n", + "\n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from IPython.display import SVG\n", + "from keras.utils.vis_utils import model_to_dot\n", + "\n", + "SVG(model_to_dot(model, show_shapes=True, show_layer_names=False, \n", + " rankdir='TB').create(prog='dot', format='svg'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Train the model for 5 epochs" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Processed 0 (skip_first, skip_second, relevance) pairs\n", + "Processed 10000 (skip_first, skip_second, relevance) pairs\n", + "Processed 20000 (skip_first, skip_second, relevance) pairs\n", + "Epoch: 1 Loss: 4474.41281086\n", + "Processed 0 (skip_first, skip_second, relevance) pairs\n", + "Processed 10000 (skip_first, skip_second, relevance) pairs\n", + "Processed 20000 (skip_first, skip_second, relevance) pairs\n", + "Epoch: 2 Loss: 3735.81375903\n", + "Processed 0 (skip_first, skip_second, relevance) pairs\n", + "Processed 10000 (skip_first, skip_second, relevance) pairs\n", + "Processed 20000 (skip_first, skip_second, relevance) pairs\n", + "Epoch: 3 Loss: 3759.779281\n", + "Processed 0 (skip_first, skip_second, relevance) pairs\n", + "Processed 10000 (skip_first, skip_second, relevance) pairs\n", + "Processed 20000 (skip_first, skip_second, relevance) pairs\n", + "Epoch: 4 Loss: 3793.27816557\n", + "Processed 0 (skip_first, skip_second, relevance) pairs\n", + "Processed 10000 (skip_first, skip_second, relevance) pairs\n", + "Processed 20000 (skip_first, skip_second, relevance) pairs\n", + "Epoch: 5 Loss: 3718.15081862\n" + ] + } + ], + "source": [ + "for epoch in range(1, 6):\n", + " loss = 0\n", + " for i, elem in enumerate(skip_grams):\n", + " pair_first_elem = np.array(list(zip(*elem[0]))[0], dtype='int32')\n", + " pair_second_elem = np.array(list(zip(*elem[0]))[1], dtype='int32')\n", + " labels = np.array(elem[1], dtype='int32')\n", + " X = [pair_first_elem, pair_second_elem]\n", + " Y = labels\n", + " if i % 10000 == 0:\n", + " print('Processed {} (skip_first, skip_second, relevance) pairs'.format(i))\n", + " loss += model.train_on_batch(X,Y) \n", + "\n", + " print('Epoch:', epoch, 'Loss:', loss)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Get word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(12424, 100)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...90919293949596979899
shall0.0432520.030233-0.016057-0.0718560.0059150.0531700.0135780.0002010.037018-0.151811...0.2898110.014798-0.0223500.0599660.107588-0.006052-0.1120830.0642910.110624-0.033265
unto-0.072916-0.0149410.018243-0.206662-0.0182530.0716340.0947200.008018-0.003973-0.076268...0.0442760.097791-0.1200940.0571710.2397570.0633030.0185240.2032820.093460-0.110360
lord-0.0243380.066582-0.057416-0.1123750.0341310.103507-0.0007330.0714660.015607-0.119505...0.115495-0.027881-0.215636-0.0284940.0970590.050633-0.2345690.106756-0.0145400.028276
thou0.0842240.0482170.0085290.0251980.019296-0.0055080.041746-0.012590-0.299545-0.030134...0.079110-0.037630-0.0166090.0322800.0558970.180336-0.2185250.0781870.077540-0.039218
thy0.0404580.054175-0.033665-0.0310590.0536220.157648-0.0098120.032927-0.2298370.002110...-0.033932-0.079629-0.0704540.0519920.029190-0.023169-0.259643-0.0160680.122141-0.088576
\n", + "

5 rows × 100 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "shall 0.043252 0.030233 -0.016057 -0.071856 0.005915 0.053170 0.013578 \n", + "unto -0.072916 -0.014941 0.018243 -0.206662 -0.018253 0.071634 0.094720 \n", + "lord -0.024338 0.066582 -0.057416 -0.112375 0.034131 0.103507 -0.000733 \n", + "thou 0.084224 0.048217 0.008529 0.025198 0.019296 -0.005508 0.041746 \n", + "thy 0.040458 0.054175 -0.033665 -0.031059 0.053622 0.157648 -0.009812 \n", + "\n", + " 7 8 9 ... 90 91 92 \\\n", + "shall 0.000201 0.037018 -0.151811 ... 0.289811 0.014798 -0.022350 \n", + "unto 0.008018 -0.003973 -0.076268 ... 0.044276 0.097791 -0.120094 \n", + "lord 0.071466 0.015607 -0.119505 ... 0.115495 -0.027881 -0.215636 \n", + "thou -0.012590 -0.299545 -0.030134 ... 0.079110 -0.037630 -0.016609 \n", + "thy 0.032927 -0.229837 0.002110 ... -0.033932 -0.079629 -0.070454 \n", + "\n", + " 93 94 95 96 97 98 99 \n", + "shall 0.059966 0.107588 -0.006052 -0.112083 0.064291 0.110624 -0.033265 \n", + "unto 0.057171 0.239757 0.063303 0.018524 0.203282 0.093460 -0.110360 \n", + "lord -0.028494 0.097059 0.050633 -0.234569 0.106756 -0.014540 0.028276 \n", + "thou 0.032280 0.055897 0.180336 -0.218525 0.078187 0.077540 -0.039218 \n", + "thy 0.051992 0.029190 -0.023169 -0.259643 -0.016068 0.122141 -0.088576 \n", + "\n", + "[5 rows x 100 columns]" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "word_embed_layer = model.layers[2]\n", + "weights = word_embed_layer.get_weights()[0][1:]\n", + "\n", + "print(weights.shape)\n", + "pd.DataFrame(weights, index=id2word.values()).head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build a distance matrix to view the most similar words (contextually)" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(12424, 12424)\n" + ] + }, + { + "data": { + "text/plain": [ + "{'egypt': ['taken', 'pharaoh', 'wilderness', 'gods', 'became'],\n", + " 'famine': ['moved', 'awake', 'driven', 'howl', 'snare'],\n", + " 'god': ['strength', 'given', 'blessed', 'wherefore', 'lord'],\n", + " 'gospel': ['preached', 'must', 'preach', 'desire', 'grace'],\n", + " 'jesus': ['disciples', 'christ', 'dead', 'peter', 'jews'],\n", + " 'john': ['peter', 'hold', 'mountain', 'ghost', 'preached'],\n", + " 'moses': ['commanded', 'third', 'congregation', 'tabernacle', 'tribes'],\n", + " 'noah': ['ham', 'terah', 'amon', 'adin', 'zelophehad']}" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.metrics.pairwise import euclidean_distances\n", + "\n", + "distance_matrix = euclidean_distances(weights)\n", + "print(distance_matrix.shape)\n", + "\n", + "similar_words = {search_term: [id2word[idx] for idx in distance_matrix[word2id[search_term]-1].argsort()[1:6]+1] \n", + " for search_term in ['god', 'jesus', 'noah', 'egypt', 'john', 'gospel', 'moses','famine']}\n", + "\n", + "similar_words" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Visualize word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total words: 48 \tWord Embedding shapes: (48, 100)\n" + ] + }, + { + "data": { + "image/png": "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\nnnuOvLw8LBYLb775Jn5+fjYfh4iIVE1GVXiY4+vra2pfCxGR8ufg6Ej3yatwcPzvzOyiwgI2TRtA\n0W880REREbE3wzCSTNP0tUVf5flESUREqhiXNm3JPrz3inPZh/fi0qatnSISERGxDyVKIiJiFR0V\nSfr6GLIOpVBUWEDWoRTS18cQHRVp79BEREQqlC2q3omISDUxpKTkd2RUNElLiqvexcyeaT0vIiJy\ns9AaJRERERERqRa0RklERERERKQcKVESEREREREpRYmSiIiIiIhIKUqURERERERESlGiJCIiIiIi\nUooSJRERERERkVKUKImIiIiIiJSiRElERERERKQUJUoiIiIiIiKlKFESEREREREpRYmSiIiIiIhI\nKUqURERERERESlGiJCIiIiIiUooSJRERERERkVKUKImIiIiIiJSiRElERERERKQUJUoiIiIiIiKl\nKFESEREREREpRYmSiNw0+vTpQ3Z2NgBOTk5lthk+fDgrVqyoyLBERESkEqph7wBERCrK+vXrbd5n\nQUEBNWron1IREZHqRk+URKTaePPNN5k7dy4AY8aM4b777gNg06ZNDB06FGdnZ06dOnXFPaZpMmrU\nKNzd3QkNDeXnn3+2XktKSiI4OBgfHx969+7N8ePHAQgJCeGVV14hODiYt99+m+HDh/Piiy/StWtX\nXF1dr3giNXPmTDp37ozFYmHKlCkAnDt3jtDQUDw9PenYsSPLly8HYOLEibi7u2OxWBg3blz5fVAi\nIiLym/Q1qIhUG0FBQbz11lu8+OKLJCYm8uuvv5Kfn8+2bdsIDAxk27ZtV92zevVq9u/fz549ezhx\n4gTu7u488cQT5OfnM3r0aNasWUOzZs1Yvnw5r776KgsWLAAgOzubb775Biiernf8+HG2bdtGWloa\nYWFhPPzww2zYsIGDBw+SkJCAaZqEhYURHx/PyZMnadGiBV9++SUAOTk5ZGVlsXr1atLS0jAMwzpF\nUEREROxDT5REpMqKXbqUNu3ccHB0pE07N/YfOEBSUhK5ubnUrl0bf39/EhMT2bp1K4GBgWX2ER8f\nz+DBg3F0dKRFixbWp1D79+8nNTWVnj174uXlxeuvv87Ro0et94WHh1/Rz0MPPYSDgwPu7u6cOHEC\ngA0bNrBhwwY6deqEt7c3aWlpHDx4EA8PDzZu3MiECRPYunUrjRo1omHDhtSpU4ennnqKVatWUa9e\nvXL61EREROT30BMlEamSYpcuZdSY8dzVZxSuEe5kH97Ly+Mn0aJpYxYuXEjXrl2xWCxs2bKFjIwM\n7r777mv2ZRjGVedM06RDhw7s3LmzzHvq169/xXHt2rWvuPfS70mTJjFy5Mir7k9KSmL9+vVMmjSJ\nXr16ERkZSUJCAps2bWLZsmXExMSwefPm3/VZiIiIiO3piZKIVEmRUdHc1WcUTVwtODjWoImrhbv6\njOKn/3eCWbNmERQURGBgIPPmzcPLy6vMZAiKp+stW7aMwsJCjh8/zpYtWwBo3749J0+etCZK+fn5\n/PDDD/9TjL1792bBggXk5eUBcOzYMX7++Wd++ukn6tWrx9ChQxk3bhzff/89eXl55OTk0KdPH+bM\nmUNycvINfDoiIiJyo/RESUSqpB8zDuIa4X7FucZ3upN9Jou8szn4+/tTv3596tSpc81pdwD9+/dn\n8+bNeHh40K5dO4KDgwGoVasWK1as4MUXXyQnJ4eCggJefvllOnTo8Ltj7NWrF/v27cPf3x8oLkn+\n8ccfk56ezvjx43FwcKBmzZq8//775Obm0q9fPy5cuIBpmsyePfsPfCoiIiJiK8alKSKVma+vr5mY\nmGjvMESkEmnTzo0mAcNo4mqxnss6lELW9sVkHEizY2QiIiJiL4ZhJJmm6WuLvjT1TkSqpOioSNLX\nx5B1KIWiwgKyDqWQvj6G6KhIe4cmIiIi1YCm3olIlTQkIgIoXquUtOQgLm3aEjN7pvW8iIiIyI3Q\n1DsREREREakWNPVORERERESkHClREhERERERKUWJkoiIiIiISClKlEREREREREpRoiQiIiIiIlKK\nEiUREREREZFSbjhRMgyjjmEYCYZh7DYM4wfDMKaWnHcxDOPfhmEcNAxjuWEYtUrO1y45Ti+57nyj\nMYiIiIiIiNiSLZ4o/QrcZ5qmJ+AF3G8YRhfgr8Bs0zTbAmeAJ0vaPwmcMU3zLmB2STsREREREZFK\n44YTJbNYXslhzZIfE7gPWFFyfjHwUMnrfiXHlFzvbhiGcaNxiIiIiIiI2IpN1igZhuFoGEYy8DPw\nLyADyDZNs6CkyVGgZcnrlsB/AEqu5wC32iIOERERERERW7BJomSaZqFpml5AK8APuLusZiW/y3p6\nZJY+YRjGM4ZhJBqGkXjy5ElbhCkiIiIiIvK72LTqnWma2UAc0AVobBhGjZJLrYCfSl4fBVoDlFxv\nBGSV0deHpmn6mqbp26xZM1uGKSIiIiIicl22qHrXzDCMxiWv6wI9gH3AFuDhkmbDgDUlr9eWHFNy\nfbNpmlc9URIREREREbGXGr/d5DfdDiw2DMOR4sTrU9M0vzAMYy+wzDCM14FdwPyS9vOBjwzDSKf4\nSdKjNohBRERERETEZm44UTJNMwXoVMb5QxSvVyp9/gIw6EbfV0REREREpLzYdI2SiIiIiIhIdaBE\nSUREREREpBQlSiIiIiIiIqUoURIRERERESlFiZKIiIiIiEgpSpRERERERERKUaIkIiIiIiJSihIl\nERERERGRUpQoiYjITS8kJITExMQb6iM7O5v33nvPRhGJiIi9KVESERGxASVKIiLVixIlERG5qUyb\nNg03Nzd69uzJ4MGDmTVrFgCfffYZfn5+tGvXjq1btwJw4cIFRowYgYeHB506dWLLli0A/PDDD/j5\n+eHl5YXFYuHgwYNMnDiRjIwMvLy8GD9+vN3GJyIitlHD3gGIiIhUlMTERFauXMmuXbsoKCjA29sb\nHx8fAAoKCkhISGD9+vVMnTqVjRs38u677wKwZ88e0tLS6NWrFwcOHGDevHm89NJLDBkyhIsXL1JY\nWMgbb7xBamoqycnJ9hyiiIjYiBIlERG5aWzbto1+/fpRt25dAB588EHrtQEDBgDg4+NDZmamtf3o\n0aMBcHNz48477+TAgQP4+/szffp0jh49yoABA2jbtm3FDkRERMqdpt6JiEi1Frt0KW3aueHg6Mi0\n6TPYs2dPme1q164NgKOjIwUFBQCYpllm24iICNauXUvdunXp3bs3mzdvLp/gRUTEbpQoiYhItRW7\ndCmjxoynScAwuk9eRfMug1i77gsWLlpEXl4eX3755XXvDwoKIjY2FoADBw5w5MgR2rdvz6FDh3B1\ndeXFF18kLCyMlJQUGjRoQG5ubkUMS0REKoASJRERqbYio6K5q88omrhacHCsQWu/PtzWIZCRzzzD\ngAED8PX1pVGjRte8//nnn6ewsBAPDw/Cw8NZtGgRtWvXZvny5XTs2BEvLy/S0tJ4/PHHufXWWwkI\nCKBjx44q5iAiUg0Y15pWUJn4+vqaN7q/hYiI3HwcHB3pPnkVDo7/XZJ78Xwu3/x1CHm5uQQFBfHh\nhx/i7e1txyhFRMRWDMNIMk3T1xZ96YmSiIhUWy5t2pJ9eO8V51KW/YWaNWri7e3NwIEDlSSJiEiZ\nlCiJiEi1FR0VSfr6GLIOpVBUWFD8+9wpFixcQFpaGpMmTbJ3iFeIioqy7ut0I5ydnTl16pQNIhIR\nuXmpPLiIiFRbQyIigOK1SklLDuLSpi0xs2daz4uIiFyLniiJiEi1NiQigowDaRQVFpJxIK3SJUnT\np0+nffv29OjRg/379wOQkZHB/fffj4+PD4GBgaSlpQGwbt067rnnHjp16kSPHj04ceIEAKdPn6ZX\nr1506tSJkSNHXrOsuYiI/H5KlEREROwkKSmJZcuWsWvXLlatWsV3330HwDPPPMM777xDUlISs2bN\n4vnnnwegW7dufPvtt+zatYtHH32UN998E4CpU6fSrVs3du3aRVhYGEeOHLHbmEREqgtNvRMREbGT\nrVu30r9/f+rVqwdAWFgYFy5cYMeOHQwaNMja7tdffwXg6NGjhIeHc/z4cS5evIiLiwsA8fHxrFq1\nCoDQ0FBuueWWCh6JiEj1oydKIiIiFSR26VLatHPDwdGRNu3cSEpKwjCMK9oUFRXRuHFjkpOTrT/7\n9u0DYPTo0YwaNYo9e/bwwQcfcOHCBet9pfsREZEbo0RJRESkAsQuXcqoMeNpEjCM7pNX0SRgGJ9/\n+TULFy7k/Pnz5Obmsm7dOurVq4eLiwufffYZAKZpsnv3bgBycnJo2bIlAIsXL7b2HRQURGxsLABf\nffUVZ86cqeDRiYhUP0qUREREKkBkVDR39RlFE1cLDo41aOJqwa3fWPJ+OY+XlxcDBw4kMDAQgNjY\nWObPn4+npycdOnRgzZo1QHH58EGDBhEYGEjTpk2tfU+ZMoX4+Hi8vb3ZsGEDd9xxh13GKCJSnRhV\noTKOr6+vmZiYaO8wRERE/jAHR0e6T16Fg+N/lwcXFRawadoAigoL7RiZiEj1YRhGkmmavrboS0+U\nREREKoBLm7ZkH957xbnsw3txadPWThGJiMj1KFESERGpANFRkaSvjyHrUApFhQVkHUohfX0M0VGR\n9g5NRETKoPLgIiIiFeDSRreRUdEkLTmIS5u2xMyeWek2wBURkWJaoyQiIiIiItWC1iiJiIiIiIiU\nIyVKIiIiIiIipShREhERERERKUWJkoiIiIiISClKlEREpFpwdnbm1KlT9g5DRESqCSVKIiIiIiIi\npShREhERm8nMzMTNzY2nnnqKjh07MmTIEDZu3EhAQABt27YlISGBrKwsHnroISwWC126dCElJYWi\noiKcnZ3Jzs629nXXXXdx4sQJTp48ycCBA+ncuTOdO3dm+/btAJw+fZpevXrRqVMnRo4cSVXY7kJE\nRKoOJUoiImJT6enpvPTSS6SkpJCWlsbSpUvZtm0bs2bNYsaMGUyZMoVOnTqRkpLCjBkzePzxx3Fw\ncKBfv36sXr0agH//+984OzvTvHlzXnrpJcaMGcN3333HypUreeqppwCYOnUq3bp1Y9euXYSFhXHk\nyBF7DltERKqZGvYOQEREqhcXFxc8PDwA6NChA927d8cwDDw8PMjMzOTw4cOsXLkSgPvuu4/Tp0+T\nk5NDeHg40dHRjBgxgmXLlhEeHg7Axo0b2bt3r7X/s2fPkpubS3x8PKtWrQIgNDSUW265pYJHKiIi\n1ZmeKImIyB8Wu3Qpbdq54eDoSJt2bny+Zg21a9e2XndwcLAeOzg4UFBQUOYUOcMw8Pf3Jz09nZMn\nT/L5558zYMAAAIqKiti5cyfJyckkJydz7NgxGjRoYL1PRESkPNxwomQYRmvDMLYYhrHPMIwfDMN4\nqeR8E8Mw/mUYxsGS37eUnDcMw5hrGEa6YRgphmF432gM9vJH5+IDfPPNN3h5eeHl5UWnTp3Izc0F\nYObMmXTu3BmLxcKUKVMAOHfuHKGhoXh6etKxY0eWL19utzGLiFwSu3Qpo8aMp0nAMLpPXkWTgGFE\nTptBTk7Ode8LCgoiNjYWgLi4OJo2bUrDhg0xDIP+/fszduxY7r77bm699VYAevXqRUxMjPX+5OTk\nq/r56quvOHPmTHkMU0REblK2mHpXAPzJNM3vDcNoACQZhvEvYDiwyTTNNwzDmAhMBCYADwBtS37u\nAd4v+V0lpaen89lnn/Hhhx/SuXNn61z8tWvXMmPGDFq3bk2nTp34/PPP2bx5M48//jjJycnMmjWL\nd999l4CAAPLy8qhTpw4bNmzg4MGDJCQkYJomYWFhxMfHc/LkSVq0aMGXX34J8Jt/hIiIVITIqGju\n6jOKJq4WAJq4WnAOGUbaureve19UVBQjRozAYrFQr149Fi9ebL0WHh5O586dWbRokfXc3LlzeeGF\nF7BYLBQUFBAUFMS8efOYMmUKgwcPxtvbm+DgYO64445yGaeIiNycDFtXCTIMYw0QU/ITYprmccMw\nbgfiTNNsbxjGByWvPylpv/9Su2v16evrayYmJto0TlvIzMykZ8+eHDx4EIDHH3+c3r17M2TIEA4d\nOsSAAQMwDIOVK1fi6uoKQOvWrUlNTeX9999n9erVDBkyhAEDBtCqVSvGjRvHihUraNy4MQB5eXlM\nmjSJwMBAevfuzSOPPELfvn0JDAy025hFRC5xcHSk++RVODj+9zu3osICNk0bQFFhoR0jExGRm5Vh\nGEmmafraoi+brlEyDMMZ6AT8G2h+Kfkp+X1bSbOWwH8uu+1oybnSfT1jGEaiYRiJJ0+etGWYf5gt\n5+JPnDiRf/zjH5w/f54uXbqQlpaGaZpMmjTJOg8/PT2dJ598knbt2pGUlISHhweTJk0iOjq6wsYs\nInItLm3akn147xXnsg/vxaVNWztFJNVddnY277333jWvd+3aFSie0tm3b9+KCktEqimbJUqGYTgB\nK4GXTdM8e72mZZy7KpswTfND0zR9TdP0bdasma3C/MNsPRc/IyMDDw8PJkyYgK+vL2lpafTu3ZsF\nCxaQl5cHwLFjx/j555/56aefqFevHkOHDmXcuHF8//335T5eEZHfEh0VSfr6GLIOpVBUWEDWoRTS\n18cQHRVp79CkmrpWolRY8gRzx44dFR2SiFRjNikPbhhGTYqTpFjTNFeVnD5hGMbtl029+7nk/FGg\n9WW3twJ+skUc5cnWc/HnzJnDli1bcHR0xN3dnQceeIDatWuzb98+/P39AXBycuLjjz8mPT2d8ePH\n4+DgQM2aNXn//ffLd7AiIr/DkIgIoPjfx6QlB3Fp05aY2TOt50VsbeLEiWRkZODl5UXNmjVxcnLi\n9ttvJzk5mb179+Lk5GT9svHs2bP079+f/fv3ExQUxHvvvYeDgwMbNmxgypQp/Prrr7Rp04aFCxfi\n5OTExIkTWbt2LTVq1KBXr17MmjXLzqMVEXu74TVKRnFt1sVAlmmaL192fiZw+rJiDk1M0/yzYRih\nwCigD8VFHOaapul3vfeoDGuUNBdfRETEvjIzM+nbty+pqanExcURGhpKamoqLi4uANZEKS4ujvvv\nv5+9e/dy5513cv/99zNy5EhCQkIYMGAAX331FfXr1+evf/0rv/76K6NGjcLf35+0tDQMwyA7O9u6\nXlhEqhZbrlGyxROlAOAxYI9hGMkl514B3gA+NQzjSeAIMKjk2nqKk6R04BdghA1iKHeX5uJfeqIE\nmosvIiJS3mKXLiUyKpofMw7S6g5nzIKL1mt+fn7WJKk0Pz8/ayGlwYMHs23bNurUqcPevXsJCAgA\n4OLFi/j7+9OwYUPq1KnDU089RWhoqNY3iQhgg0TJNM1tlL3uCKB7Ge1N4IUbfd+KFh0Vyagx47mr\nzyga3+lO9uG9pK+PIWb2THuHJiIi5aSgoIAaNWwyS13+gEvrg+/qMwrXCHdOpG7nh89nE7t0KS1b\ntKB+/frXvLf0ZsSGYWCaJj179uSTTz65qn1CQgKbNm1i2bJlxMTEsHnzZpuPR0SqFptWvavOhkRE\nEDN7JlnbF7Np2gCyti/WXHwRkSpu2rRpuLm50bNnTwYPHsysWbMICQnhlVdeITg4mLfffpt169Zx\nzz330KlTJ3r06MGJEyeA4i0cRowYgYeHBxaLhZUrVwKwYcMG/P398fb2ZtCgQdY1M/K/u3x9sINj\nDW5t24kadZyIjPrt6q8JCQn8+OOPFBUVsXz5crp160aXLl3Yvn076enpAPzyyy8cOHCAvLw8cnJy\n6NOnD3PmzLFuaiwiNzd9TfY/GBIRocRIRKSaSExMZOXKlezatYuCggK8vb3x8fEBiqurffPNNwCc\nOXOGb7/9FsMw+Mc//sGbb77JW2+9xbRp02jUqBF79uyxtjt16hSvv/46GzdutK6B+dvf/kZkpCoB\n/hE/ZhzENcLdelyrXkNucfHgUOpWxo8fT/Pmza95r7+/PxMnTmTPnj0EBQXRv39/HBwcWLRoEYMH\nD+bXX38F4PXXX6dBgwb069ePCxcuYJoms2fPLvexiUjlp0RJRERuStu2baNfv37UrVsXgAcffNB6\nLTw83Pr66NGjhIeHc/z4cS5evGhdE7Nx40aWLVtmbXfLLbfwxRdflLkGRv6YstYHt/Z9gPq//sx3\n3313VftLT+9CQkIICQkps8/77ruvzHsTEhJsE7SIVBuaeiciIjeNyzcOnzZ9hvVpUGmXr30ZPXo0\no0aNYs+ePXzwwQdcuHABANM0r1oHc2kNzKWNw/fu3cv8+fPLb0DVnPbqEhF7UqIkIiI3hdIbhzfv\nMoi1675g4aJF5OXl8eWXX5Z5X05ODi1btgSw7oUH0KtXL2JiYqzHZ86cueYaGPljtD5YROxJiZKI\niNwUShcGaO3Xh9s6BDLymWcYMGAAvr6+NGrU6Kr7oqKiGDRoEIGBgTRt2tR6/rXXXuPMmTN07NgR\nT09PtmzZQrNmzaxrYCwWC126dCEtLa0ih1ntDImIIONAGkWFhWQcSFOSJCIV5oY3nK0IlWHDWRER\nqdrK2jj84vlcvvnrEPJycwkKCuLDDz/E29vbjlGKiMiNsOWGs3qiJCIiN4VLhQEul7LsL9SsURNv\nb28GDhyoJElERKyUKImIyE2hrMIARedOsWDhAtLS0pg0aZK9QxQRkUpE5cFFROSmcGltS2RUNElL\nDuLSpq0KA4iIyDVpjZKIiIj9X+eXAAAgAElEQVSIiFQLWqMkIiIiIiJSjpQoiYiIVFFdu3a1dwgi\nItWWEiUREZEqaseOHfYOQUSk2lKiJCIiUkU5OTkBMHPmTDp37ozFYmHKlCkAvPnmm8ydOxeAMWPG\ncN999wGwadMmhg4dSmFhIcOHD6djx454eHgwe/Zs+wxCRKSSUqIkIiJShW3YsIGDBw+SkJBAcnIy\nSUlJxMfHExQUxNatWwFITEwkLy+P/Px8tm3bRmBgIMnJyRw7dozU1FT27NnDiBEj7DwSEZHKRYmS\niIhIFRC7dClt2rnh4OhIm3ZuxC5dChQnShs2bKBTp054e3uTlpbGwYMH8fHxISkpidzcXGrXro2/\nvz+JiYls3bqVwMBAXF1dOXToEKNHj+brr7+mYcOGdh6hiEjlon2UREREKrnYpUsZNWY8d/UZhWuE\nO9mH9zJqzHgKCgowTZNJkyYxcuTIq+5zdnZm4cKFdO3aFYvFwpYtW8jIyODuu+/GMAx2797NP//5\nT959910+/fRTFixYYIfRiYhUTnqiJCJSiamqmUDxJrl39RlFE1cLDo41aOJq4a4+o7h48SK9e/dm\nwYIF5OXlAXDs2DF+/vlnAIKCgpg1axZBQUEEBgYyb948vLy8MAyDU6dOUVRUxMCBA5k2bRrff/+9\nPYcoIlLp6ImSiEglpqpmAvBjxkFcI9yvONf4TndM06RXr17s27cPf39/oLjAw8cff8xtt91GYGAg\n06dPx9/fn/r161OnTh0CAwOB4oRqxIgRFBUVAfCXv/ylYgclIlLJGaZp2juG3+Tr62smJibaOwwR\nkQrn5OREXl4eM2fO5NNPP+XXX3+lf//+TJ06lXPnzvHII49w9OhRCgsLmTx5MuHh4Tg7O5OYmEjT\npk1JTExk3LhxxMXF8c033/DSSy8BYBgG8fHxNGjQwM4jlN+jTTs3mgQMo4mrxXru573fkrriDfLz\n8+0YmYhI5WIYRpJpmr626EtPlEREKrnLq5qZpklYWBjx8fGcPHmSFi1a8OWXXwKQk5Nz3X5mzZrF\nu+++S0BAAHl5edSpU6ciwhcbiI6KtK5RanynOz/v+5bUlTMZOmSIvUMTEam2tEZJRKSSu1ZVMw8P\nDzZu3MiECRPYunUrjRo1um4/AQEBjB07lrlz55KdnU2NGvqurKoYEhFBzOyZZG1fzKZpA8jbtZol\nS5awePFie4dWqVzaV+qPioqKYtasWTaKRkSqOiVKIiKVxLXKP1+qapacnExycjLp6ek8+eSTtGvX\njqSkJDw8PJg0aRLR0dEA1KhRw7ru5MKFC9b+J06cyD/+8Q/Onz9Ply5dSEtLq/hByh82JCKCjANp\nFBUWknEgjSEREfYOqUorLCy0dwgiUskpURIRqQQulX9uEjCM7pNX0SRgmLX887Wqmv3000/Uq1eP\noUOHMm7cOGvVMmdnZ5KSkgBYuXKl9T0yMjLw8PBgwoQJ+Pr6KlGSass0TcaPH0/Hjh3x8PBg+fLl\nAMTFxXHvvfcSERGBh4cHANOnT6d9+/b06NGD/fv32zNsEalkNO9CRKQSuLz8M2At/5y0+NVrVjVL\nT09n/PjxODg4ULNmTd5//30ApkyZwpNPPsmMGTO45557rO8xZ84ctmzZgqOjI+7u7jzwwAMVP1CR\nCrBq1SqSk5PZvXs3p06donPnzgQFBQGQkJBAamoqLi4uJCUlsWzZMnbt2kVBQQHe3t74+PjYOXoR\nqSyUKImIVAJllX+u16wVlyqTvvTSS9aKdZe0adOG3r17X9VXYGAgBw4cuOr8O++8Y8OIq7eCggKt\n4arCtm3bxuDBg3F0dKR58+YEBwfz3Xff0bBhQ/z8/HBxcQFg69at9O/fn3r16gEQFhZmz7BFpJLR\n1DsRkUrApU1bsg/vtR5fOHuaf38whlub3WbHqKqOc+fOERoaiqenJx07dmT58uU4OzszZcoUvL29\n8fDwsE41TEhIoGvXrnTq1ImuXbtap1stWrSIQYMG8eCDD9KrVy8AZs6cSefOnbFYLEyZMsVu45Oy\nlV7XV1BQAMD1tj6pX7/+FceGYZRrjOXtRgtYiMi1KVESEakEoqMiSV8fQ9ahFIoKC/jl1DHq1qnN\n23Nm2zu0KuHrr7+mRYsW7N69m9TUVO6//34AmjZtyvfff89zzz1nrWbm5uZGfHw8u3btIjo6mlde\necXaz86dO1m8eDGbN2++oix7cnIySUlJxMfH22V8crWy1vX9evEisUuXEhQUxPLlyyksLOTkyZPE\nx8fj5+d3VR9BQUGsXr2a8+fPk5uby7p16+wwEhGprDSvQESkErhUwSwyKpqkJQdxadOWmNkzVdns\nd/Lw8GDcuHFMmDCBvn37EhgYCMCAAQMA8PHxYdWqVUDxflPDhg3j4MGDGIZxxYatPXv2pEmTJsCV\nZdkB8vLyOHjwoHWti9hXWev6HBxrEhkVTfr+fezcuRNPT08Mw+DNN9/k//7v/64qYOLt7U14eDhe\nXl7ceeed1v9u/qhp06YRGxtL69atadq0KT4+PvTo0YNnn32WX375hTZt2rBgwQJuueUW5s6dy7x5\n86hRowbu7u4sW7aMqKgoMjIyOHbsGP/5z3/485//zNNPPw1Q5qbTIlK+lCiJiFQSQyIilBj9TrFL\nlxIZFc2PGcVJZXRUJElJSaxfv55JkyZZp87Vrl0bAEdHR+u0rMmTJ3PvvfeyevVqMjMzCQkJsfZ7\n+bSsS2XZR44cWXEDk9+trHV99736KZumDcAwDGbOnMnMmTOvuB4SEnLF/94Ar776Kq+++uoNx5OY\nmMjKlSuvKgzx+OOP88477xAcHExkZCRTp05lzpw5vPHGG/z444/Url2b7Oxsaz8pKSl8++23nDt3\njk6dOhEaGkpqamqZm04raRcpX5p6JyIiVUpZU66ef3Esa9auvapUellycnJo2bIlULwu6VquVZZd\nKofS6/oAsg/vxaVNW7vEs23bNvr160fdunVp0KABDz74IOfOnSM7O5vg4GAAhg0bZp2+abFYGDJk\nCB9//PEVhUMu9dG0aVPuvfdeEhISrrnptIiULyVKIiJSoaKioqzrhS43b948lixZ8pv3Xz7lysGx\nBk1cLTT3foBnR47Ey8uL6dOn89prr13z/j//+c9MmjSJgICA62462qtXLyIiIvD398fDw4OHH36Y\n3Nzc3zdIKXel1/VlHUohfX0M0VGRFfL+pQtJJJbsXfZ7ffnll7zwwgskJSXh4+NjfeJZuriEYRjX\n3HRaRMqXcb3KMJWFr6+vmZiYaO8wRETEBqKionBycmLcuHHWc/9LOW4HR0e6T16Fg+N/2xcVFrBp\n2gCKrpP4SPVT1hTMipi+eump5l19RtH4TneyD+8lbc3fuLWRE2n79lFQUICPjw9PP/00H330ETEx\nMQQGBhIVFUVOTg5vvfUWR44cwdnZmfz8fFq1asX+/fuZM2cOn3/++RVT77799ltSU1OZPHkymzZt\nwsnJiWPHjlGzZk1uu+02nJycrE89RQQMw0gyTdPXFn1pjZKIiJS76dOns2TJElq3bk2zZs3w8fEh\nJCSErl27sn37dsLCwsjNzcXJyYnQ0FCGDRtGQkICAJmZmYSFhZGSkkJSUhK1a9dmR8zz1G3cnI4D\nxlC7QRO+nTeGho0a4+fnR3Z2NvPnz7/hhflS+dlrXV9ZhSTc+o0lfe1beHp6cuedd+Lr60ujRo1Y\nvHixtZiDq6srCxcupLCwkKFDh5KTk4NpmowZM4bGjRsD4OfnR2hoKEeOHGHy5Mm0aNGCFi1alLnp\n9G23afsAkfKkRElERMpVUlISy5Ytu2qRO0B2djbffPMNUPykCeDuu+/m4sWLHDp0CFdXV5YvX84j\njzxCfn4+o0eP5m9/+xuvTJlGo1btOfCvxbT06s75rGP06tGd9evXs379eqZOncrGjRvtNWSp5soq\nJNH4Tneyz2Rx5vQpfvnlF4KCgvjTn/6El5cX33777VV9bNu2rcy+27Vrx4cffnjV+bI2nQb0NEmk\nHGmNkoiIlKutW7fSv39/6tWrR8OGDQkLC7NeCw8PL/OeRx55hE8//RSA5cuXEx4ezv79+0lNTeWD\nefNoWKcG/9m5iuPJm8javpi2d7WxVi7z8fEhMzOz3MclN69rFZKoX98JLy8vvL29GThwIN7e3naK\nUERsQU+URETE5i5fO9Kkya0EBXYrs93l5bgvFx4ezqBBgxgwoLjUc9u2bdmzZw8dOnRg586dV7UP\nCQkpsxS4SHmIjoq8ao1S+voYPvhg3g1NBbz0VFVEKgc9URIREZsqXb77Nv9HWLN2HQsXLSI3N5d1\n69b9Zh9t2rTB0dGRadOmWZ86tW/fnpMnT1oTpfz8fH744YdyHUtl4+TkdEP3Ozs7c+rUKRtFc/Ma\nEhFBzOyZZG1fzKZpA8javlgbRItUQ3qiJCIiNlV6oXvrzg+Qc/QAI595hk+WLv3dRRbCw8MZP348\nP/74IwC1atVixYoVvPjii+Tk5FBQUMDLL79Mhw4dym0stlBYWIijo6O9w6gSFi1aRK9evWjRooW9\nQ/lN2iBapPpTeXAREbGpm6l8d2ZmJvfffz/33HMPu3btol27dixZsgR3d3eeeOIJNmzYwKhRo+jc\nuTMvvPACJ0+epF69evz973/Hzc2NdevW8frrr3Px4kVuvfVWYmNjad68OXl5eYwePZrExEQMw2DK\nlCkMHDgQJycnXnrpJb744gvq1q3LmjVraN68OSdPnuTZZ5/lyJEjAMyZM4eAgABOnz7N4MGDOXny\nJH5+fnz99dckJSXRtGlTO39yZQsJCWHWrFn4+v7+yr7/S2l5Ean+bFke3CZT7wzDWGAYxs+GYaRe\ndq6JYRj/MgzjYMnvW0rOG4ZhzDUMI90wjBTDMLTSUUSkGrnWQneXNm3tFFH52r9/P8888wwpKSk0\nbNiQ9957D4A6deqwbds2Hn30UZ555hneeecdkpKSmDVrFs8//zwA3bp149tvv2XXrl08+uijvPnm\nmwBMmzaNRo0asWfPHlJSUrjvvvsAOHfuHF26dGH37t0EBQXx97//HSiuiDZmzBi+++47Vq5cyVNP\nPQXA1KlT6datG7t27SIsLMyaSFWUzMxM3NzcGDZsGBaLhYcffphffvmFpKQkgoOD8fHxoXfv3hw/\nfpwVK1aQmJjIkCFD8PLy4vz582W2g+KE6pVXXiE4OJi33367QsckIjcPW30FswiIAS7fUn0isMk0\nzTcMw5hYcjwBeABoW/JzD/B+yW8REakGrrXQPWb2THuHVi5at25NQEAAAEOHDmXu3LnAfyv65eXl\nsWPHDgYNGmS959dffwXg6NGjhIeHc/z4cS5evIiLiwsAGzduZNmyZdb2t9xyC1A8/bBv375AcXW/\nf/3rX9b2e/f+Nzk9e/Ysubm5xMfHs2rVKgBCQ0Ot/VSk/fv3M3/+fAICAnjiiSd49913Wb16NWvW\nrKFZs2YsX76cV199lQULFhATE2N9onSpHHxZ7eDK0vI3m0ubNp89e5agoCB69OjxP93ftWtXduzY\ncd02zs7OJCYmVtqnjyIVwSaJkmma8YZhOJc63Q8IKXm9GIijOFHqBywxi+f8fWsYRmPDMG43TfO4\nLWIRERk+fDh9+/bl4Ycf/s22v/UHw4wZM3jllVdsGV61d2ndRmRUNElLDuLSpm21Weh+eTU/lzZt\nGf3CcxiGcUWbS8eXKvoVFRXRuHFjkpOTr+pv9OjRjB07lrCwMOLi4qxVz0zTvKpfgJo1a1rPX17d\nr6ioiJ07d1K3bt2r7imrn4pUOpGcMWMGqamp9OzZEyhew3X77bdfdd+lcvDXanet0vI3k+jo6D90\n328lSSJSrDyr3jW/lPyU/L60fXRL4D+XtTtacu4KhmE8YxhGomEYiSdPnizHMEXkZlRYslbmt/5g\nmDFjRkWEU+0MiYgg40AaRYWFZBxIqzZJ0uXV/JoEDCNy2gyOHDlircT3ySef0K3blaXQGzZsiIuL\nC5999hlQnATt3r0bgJycHFq2LP6/wMWLF1vv6dWrFzExMdbjM2fOXDe20u0vJWVBQUHExsYC8NVX\nX/1mPzcqdulS2rRzw8HRkTbt3Ph8zZqrErUGDRrQoUMHkpOTSU5OZs+ePWzYsOGqvkzTvG67a5WW\nr66mT59O+/bt6dGjB/v37weKvxRasWIFABMnTsTd3R2LxcK4ceMAOHHiBP3798fT0xNPT0/rv3eX\nqifGxcURFBRE//79cXd359lnn6WoqOiq9/7444/x8/PDy8uLkSNHUlhYSGFhIcOHD6djx454eHgw\ne/bsivgYRCqUPcqDl/XV1lUVJUzT/NA0TV/TNH2bNWtWAWGJSFW1ZMkSLBYLnp6ePPbYYwDEx8fT\ntWtXXF1drX9IxMXFce+99xIREYGHhwfw3z8Yjh8/TlBQEF5eXnTs2JGtW7cyceJEzp8/j5eXF0OG\nDLHP4KTSuLyan4NjDZq4WnAOGUbNWrVYvHgxFouFrKwsnnvuuavujY2NZf78+Xh6etKhQwfWrFkD\nFE+hGjRoEIGBgVdMcXrttdc4c+YMHTt2xNPTky1btlw3trlz55KYmIjFYsHd3Z158+YBMGXKFOLj\n4/H29mbDhg3ccccdNvxESo3xdyaSXbp0uWaZ9wYNGpCbmwuoHPzlkpKSWLZsGbt27WLVqlV89913\nV1zPyspi9erV/PDDD6SkpPDaa68B8OKLLxIcHMzu3bv5/vvvy6wQmZCQwFtvvcWePXvIyMiwTtW8\nZN++fSxfvpzt27eTnJyMo6MjsbGxJCcnc+zYMVJTU9mzZw8jRowovw9AxE5sVvWuZOrdF6Zpdiw5\n3g+EmKZ53DCM24E40zTbG4bxQcnrT0q3u1bfqnonItfyww8/MGDAALZv307Tpk3Jyspi7NixnDt3\njuXLl5OWlkZYWBjp6enExcURGhpKamqqdS2Ik5MTeXl5vPXWW1y4cIFXX32VwsJCfvnlFxo0aGC9\nLlJWNb9zp4+x/e2RVIUKsuWtTTs3mgQMs5aFBzi++xvS1r3NEyNGsGPHDtq2bctHH33EgQMHrirz\n/vTTT7Ny5UpeeeUV6taty86dO9m/f3+Z7f5IdbyqbM6cOWRlZVmn2o0dO5YWLVqQmppK3759eeih\nh/Dx8cHX15fQ0FD69u1LrVq1aNasGUePHrVuxnzJpX/X4uLiiIyMJD4+HoAFCxaQkpLCnDlzrGuU\nli1bxowZM7jttuKJQefPn2fw4MG89NJL+Pr60qdPH0JDQ+nVqxcODtqeU+zPllXvyrOe5lpgGPBG\nye81l50fZRjGMoqLOORofZKI/FGbN2/m4Ycftn4b36RJEwAeeughHBwccHd358SJE9b2fn5+1iTp\ncp07d+aJJ54gPz+fhx56CC8vr4oZgFQZl6r5XZ4InD2aTs1atewYVeXxY8ZBXCPcrzjXsNVd5F+8\naH3CdYmXl5f1j/PLDRw4kIEDB/5mu7i4ONsEXYldvh6uSZNbCQrsds22NWrUICEhgU2bNrFs2TJi\nYmLYvHnz73qfa62xu8Q0TYYNG8Zf/vKXq+7dvXs3//znP3n33Xf59NNPrYU2RKoLW5UH/wTYCbQ3\nDOOoYRhPUpwg9TQM4yDQs+QYYD1wCEgH/g48b4sYROTmUHoNxHfffVfmYvXLv0G9/Nv+a61rCAoK\nIj4+npYtW/LYY4+xZMmSMtvJzSs6KpL09TFkHUqhqLCArEMp/GdrLAsXLrR3aJVCWWXhlUj+MaWn\nMd7m/whr1q5j4aJF5Obmsm7duiva5+XlkZOTQ58+fZgzZ451jVr37t15//33geJ1mWfPnr3qvRIS\nEvjxxx8pKipi+fLlV62x6969OytWrODnn38Giqf5HT58mFOnTlFUVMTAgQOZNm0a33//fXl8FCJ2\nZauqd4Ovcal7GW1N4AVbvK+I3Fwu/fFwV59RuEYUl53+fO1s6tdyZMyYMdx6661kZWX9ob4PHz5M\ny5Ytefrppzl37hzff/89jz/+ODVr1iQ/P5+aNWvaeDRS1VTnan62UFZZeCWSf8zl6+EAWnd+gJyj\nBxj5zDN8snQpgYGBV7TPzc2lX79+XLhwAdM0rYUV3n77bZ555hnmz5+Po6Mj77//Pv7+/lfc6+/v\nz8SJE9mzZ4+1sMPl3N3def311+nVqxdFRUXUrFmTd999l7p16zJixAhr8YeynjiJVHU2W6NUnrRG\nSUSg7DUQWYdSOPzVXG5reiuOjo506tQJ4Iry4JfPx581axZffPGF9f5L1xYvXszMmTOpWbMmTk5O\nLFmyBBcXFyZMmMDatWvx9va2Vg8TkbKVLp8eHRWpRPIPKGs9XFFhAZumDaCopGKnLZT1b6JIVWfL\nNUpKlESkyqioPx5EROzpWl8KZW1fTMaBNJu9jxIlqY5smSipPImIVBllrYHIPrwXlzZt7RSRiFQn\nixYt4qeffrJ3GGWuh0tfH0N0VKRN3yckJERJksh1KFESkSqjov54EJGb0x9JlAoKCmwex5CICGJm\nzyRr+2I2TRtA1vbFWg8nYgeaeiciVYrWQIjI75WZmcn999/PPffcw65du2jXrh1Llixh3759jB07\nlry8PJo2bcqiRYvYvn07w4cPp2XLltZ9nPbu3XtVu9tvv52QkBC6du3K9u3bCQsL409/+pO9hyoi\nJbRGSUREROQ3ZGZm4uLiwrZt2wgICOCJJ57g7rvvZvXq1axZs4ZmzZqxfPly/vnPf7JgwYIrNrLN\nz88nODj4mu3c3d1577337D1EESmlqmw4KyIiImJXrVu3JiAgAIChQ4cyY8YMUlNT6dmzJ1C8v9Dt\nt99+1X379++/brvw8PAKiF5E7EmJkoiIiFSYzMxM+vbtS2pqarn0f/n03FZ3OPPLL79ccb1BgwZ0\n6NCBnTt3Xrcf0zSv2+5am1eLSPWhYg4iIiJSLVzalLpJwDC6T15FY5+BnD59mqipUwH45JNP6NKl\nCydPnrQmQPn5+fzwww9AcRKVm5sLQPv27a/ZTkRuDkqURESqiEWLFjFq1CgA5s2bx5IlS+wckdzM\npk2bhpubGz179mTw4MHMmjWL5ORkunTpgsVioX///pw5cwaApKQkPD098ff3591337X28cMPP+Dn\n54eXlxcWi4WDBw/eUEyRUdHc1WcUTVwtODjWoPEdbtRp1Iy//W02FouFrKwsRo8ezYoVK5gwYQKe\nnp54eXmxY8cOAIYPH86zzz6Ll5cXhYWF12wnIjcHFXMQEakiFi1aRGJiIjExMfYOxSbi4uKoVasW\nXbt2tXco8j9KTEzkqaeeYufOnRQUFODt7c3IkSNZsmQJ77zzDsHBwURGRnL27FnmzJmDxWKxnh8/\nfjxfffUVqampjB49mi5dujBkyBAuXrxIYWEhdevW/cNxld6U+vyZE3z/8VR+OX1Um1JXsMjISIKC\ngujRo4e9Q5GbjDacFRGphh566CF8fHzo0KEDH374IQALFy6kXbt2BAcHs337dmvbqKgoZs2aBRRv\nGjlhwgT8/Pxo164dW7dutUv8/6u4uDh9Q19Fbdu2jX79+lG3bl0aNGjAgw8+yLlz58jOziY4OBiA\nYcOGER8fT05OzhXnH3vsMWs//v7+zJgxg7/+9a8cPnz4hpIkKHtT6sL8C9qU2g6io6OVJEmVp0RJ\nRKSSWLBgAUlJSSQmJjJ37lyOHTvGlClT2L59O//617/Yu3fvNe8tKCggISGBOXPmMLVkPYYtfPzx\nx9apUSNHjqSwsJD58+fTrl07QkJCePrppxk1ahS5ubm4uLiQn58PwNmzZ3F2diY/P5+QkBBefvll\nunbtSseOHUlISCAzM5N58+Yxe/ZsvLy8yjW5y8zMpGPHjuXW/80idulS2rRzw8HRkWnTZ7Bnz57f\ndZ9pmhiGUea1iIgI1q5dS926denduzebN2++oRhLb0p9/swJ6tSqoU2py1lZ0zCHDx/OihUr+Oqr\nr3jkkUesbePi4njwwQcB2LBhw/9n784DqqrWxo9/DzhPIBczTZMhEREORwZBGUTJITNzwGuCifpT\nS8V87cbVNIlwuKlcMzUzvSboBbOcp7e8Jg4oJoMHRF4QUNTMzCFMRIph//4g9gVES2X2+fx1zj57\nr7328UT72etZz6Jnz544ODgwcuRIcnJyADAzM+P999/HwcEBOzs7UlNTa+S6hJBASQghaokVK1Zg\nb2+Pq6srly9fZtOmTXh5edGmTRsaNWr00HLEw4cPB8DR0ZGsrKxK6c///d//sWXLFo4fP45er8fQ\n0JCIiAjmz5/PyZMn+c9//qPewLRs2RIvLy/27dsHwBdffMGIESNo2LAhAHfv3uXEiROsXr2aCRMm\nYGZmxptvvsnMmTPR6/V4eHhUSp9F1ShfJKGt60h279nLhrAwcnJy2LdvH82bN6d169Zq0Ltp0yZ6\n9+6NsbExRkZGREdHF7cVEaG2e/78eSwsLHjrrbcYMmQISUlJT9RPP19fVn20lFvHw/l2/nBuHQ9n\n1UdLZVHqKhQXF8e2bds4ffo027dvp/xUiX79+nHy5Enu3r0LwJYtWxg1ahQ3btxgwYIFHDx4kISE\nBJycnFi2bJl6nKmpKQkJCUyZMkUdPReiukmgJIQQNaD003lLK2vmvvceBw8eJCYmhsTERLp37461\ntfUDn8SX17hxYwAMDQ0pKCiolH559PYiOjoaZ2dndDod3377LcuWLaN3796YmJjQsGFDRo4cqR47\nceJENmzYABSnDI4fP179bPTo0QB4enryyy+/kJ2d/ch9q4ziAeLxlC+S0LHHIJ7p5sEbkyczfPhw\nnJycMDIyIjw8nMDAQLRaLXq9nqCg4pGcDRs2MG3aNHr27FkmvW7Lli3Y2tqi0+lITU1l7NixT9xX\nP19fMs+lUlRYSOa5VAmSqkDpvxMDXxqEhYVFmTTM0ho0aMDAgQPZs2cPBQUF7Nu3j1dffZWTJ0+S\nkpKCm5sbOp2O8PBwLp75ksoAACAASURBVF68qB5XFQ9/hHhUEigJIUQ1K/903sTNn49XrSY3N5dm\nzZqRmprKyZMnuXfvHocPH+bmzZvk5+fz1VdfVWu/mln04N5vBQT+/e/o9XrS0tJ4//33H3i8m5sb\nWVlZHDlyhMLCwjLpbuUDvj8bAJZ40FPrsWPHsnjxYpKSkrCzs1PTDsePH8+KFSv+cK0c8edcyEzH\nuJNNmW1dBk2ioLCQnTt3kpaWhqOjIzqdjpMnT5KUlMTOnTtp3bo1UHyzm5iYSExMDMHBweoaSu++\n+y5nz55Fr9fz9ddfY2JiUu3XJh5N+b8TTc2d2f/Nf4iIjHzgMaNGjeLLL7/k0KFDODs707JlSxRF\noV+/fuj1evR6PSkpKaxfv149prIe/gjxJCRQEkKIalb+6byJhZYuQ2aSmnYOrVbLvHnzcHV1pV27\ndgQHB9OzZ09efPFFHBwcqrVfHZ0HgWFj5r5XPCpw69YtHBwcOHLkCD///DMFBQVs27atTBtjx45l\n9OjRZUaToHjkAIqLABgZGWFkZFRmzZo/UlnFA8TjqahIQtIX/6Bhg4Y4ODgwYsSIKv99itqh/N+J\n5xxexLBJK94LClbTMMvz8vIiISGBdevWqSnErq6uHD9+nIyMDAByc3M5d+5ctV6LEH+kQU13QAgh\nnjYXMtOx8C37dN7EQkte3r375mh4eXndF3RAcdW7EocPH1Zfm5qaPnaaSvl+tXjmeTr3H0/ytlC0\nWi0NGzbkk08+Yc6cObi4uNC+fXtsbGwwMjJSj/Hz8+O9995TU+1KtG7dml69evHLL7/w+eefA/DK\nK6/g4+PDrl27WLly5X3zlCIiIwkKDuFCZjqtTf5Cbw/3P3UdDyseIB5PSHAQATMDeWFQAMadbMi+\nmELR3Rt8vuFzSW17ypT/O2H0nBVt7Ty4cGRLmTTM0gwNDRk8eDBhYWGEh4cD0KZNG8LCwhg9ejS/\n/vorAAsWLMDKyqr6LkaIPyCBkhBCVLOSp/MmFlp1W/bFlBovYVxRv5q0NMGic5cyAZytrS2TJ0+m\noKCAYcOG0b9/f/Wz6OhofHx8MDY2LtP2iBEj+Mc//lFmm5WV1QMn75ek97wwKAALXxuuxB9g9551\nbAgLY6SPD/v27WPSpElq8QAPD48Kiwe4u7uXKR4gHk9JMBQUHEL8xnTMLTtLkYSnVEV/J4w7WGPR\nuQs7d+7E09OTv/3tb0yaNKnMcatWrbpvDbi+ffsSGxt73zlKP+xxcnIq8zBIiOokqXdCCFHNypcw\nvnU+iYz9q2q8hPGf7VdwcDA6nQ5bW1vMzc0ZOnQoANOnT2f27NnMmzfviftSVcUDxOOTIgkCKv47\nkbx1CQW/3pM0TFHvaBRFqek+/CEnJyelfLlJIYSoy0qnlZlbdiYkOKhW3HjWln4ZGBriPW87Bob/\nTXz47d4djiz2I+fOHTw9PVm7dq3ckAlRA2rL3wkhKqLRaOIVRXGqlLYkUBJCCFHbWFpZY+LmXya9\nJ27DHHKupGFuboa/vz/vvvtujfVPCCFE7VSZgZKk3gkhhKh1KkrvKSkekJqaKkGSEEKIKifFHIQQ\nQtQ6UjxACCFETZPUOyGEEEIIIUS9IKl3QgghhBBVICsrC1tb2z+9/7hx49i6det92w8fPszgwYMr\ns2tCiGomgZIQQogHMjMz48aNG9V2vke9SRVCCCGqigRKQgghqkRBQUFNd0GIx1JYWMikSZPo1q0b\n/fv35969e+j1elxdXdFqtQwbNoyff/75vuO+/vprrK2tcXd3Z/v27TXQcyFEZZJASQghBFlZWVhb\nW+Pv749Wq8XHx4fc3FwAVq5ciYODA3Z2dqSmpgJw6tQpevXqRffu3enVqxdpaWkAhIWFMXLkSF55\n5RX69+9PTk4O3t7e6vG7du1Sz7ls2TJsbW2xtbVl+fLl6vaKblKFqE7p6elMmzaNs2fPYmxszLZt\n2xg7diyLFy8mKSkJOzs7PvjggzLH5OXlMWnSJPbs2cOxY8f48ccfa6j3QojKIoGSEEIIANLS0pg8\neTJJSUm0atWK1atXA2BqakpCQgJTpkwhNDQUAGtra44ePcrp06cJCQlhzpw5ajsxMTGEh4dz6NAh\nmjRpwo4dO0hISCAqKoq//e1vKIpCfHw8GzZs4LvvvuPkyZOsW7eO06dPAxXfpIqqsXz5cjUgrmqL\nFi1SX9f2FEtzc3N0Oh0Ajo6OZGZmkp2dTe/evQHw9/fn6NGjZY5JTU3F3Nyczp07o9FoGDNmTLX3\nWwhRuSRQEkIIAUDHjh1xc3MDYMyYMURHRwMwfPhwoPiGMSsrC4Dbt28zcuRIbG1tmTlzJmfPnlXb\n6devHyYmJgAoisKcOXPQarW8+OKLXLlyhWvXrhEdHc2wYcNo3rw5LVq0YPjw4Rw7dgy4/ya15Jyi\n8j0sUCosLKzUc5UOlGqTiMhILK2sMTA0xNLKmp27dtG4cWP1c0NDQ7Kzs/9UWxqNpqq6KYSoARIo\nCSHEU6iim8PyN3kl70tuGg0NDdV5R/PmzaNPnz4kJyezZ88e8vLy1OOaN2/+3/NERHD9+nXi4+PR\n6/W0bduWvLw8HrY0RfmbVJnrVDnu3r3Lyy+/jL29Pba2tnzwwQf88MMP9OnThz59+gDQokULgoKC\ncHFxISYmhvj4eHr37o2joyMDBgzg6tWrAHh5eTFr1ix69OiBlZWVGuTm5uby17/+Fa1Wy6hRo3Bx\ncSEuLo7Zs2dz7949dDodfn5+QO1IsYyIjCRgZiAmbv54z9uOiZs/QfMXcfv27TL7GRkZ0bp1a/U6\nN23apI4ulbC2tubChQtkZmYCsHnz5uq5CCFElZFASQgh6pns7Gw1bQ7ghx9+wMfHR33/oJvDS5cu\nERMTAxTf5Lm7uz/wHLdv3+a5554DiuclPWy/Z555hoYNGxIVFcXFixcB8PT0ZOfOneTm5nL37l12\n7NiBh4fHk1y2+ANff/017du3JzExkeTkZP7nf/6H9u3bExUVRVRUFFAcTNna2vLdd9/h4uLC9OnT\n2bp1K/Hx8UyYMIG5c+eq7RUUFHDq1CmWL1+uztdZvXo1rVu3JikpiXnz5hEfHw/Ahx9+SNOmTdHr\n9URERAC1I8UyKDiEFwYFYGKhxcCwASYWWsy8/Ln200/37RseHk5gYCBarRa9Xk9QUFCZz5s0acLa\ntWt5+eWXcXd3p1OnTtV1GUKIKtKgpjsghBCi+Om6oaFhpbRVEihNnToVgPbt25dZ56X0zSGg3hym\n7vmY8PBw3njjDTp37syUKVNYuXJlhef4+9//jr+/P8uWLaNv374P7Iufnx+vvPIKTk5O6HQ6rK2t\nAXBwcGDcuHH06NEDgIkTJ9K9e3dJs6tCdnZ2vPPOO8yaNYvBgwdXGJgaGhoyYsQIoHjOWnJyMv36\n9QOKf6Pt2rVT960oJTM6OpoZM2YAYGtri1arfWB/akOK5YXMdCx8bcpsa2vrRvKOf6rv33nnHfX1\nyZMn72uj9IOCgQMHqgVPhBB1nwRKQgjxEBs3biQ0NBSNRoNWq2XBggVMmDCB69ev06ZNGzZs2MDz\nzz/PuHHjaNWqFXFxcfz4448sWbIEHx8fioqKCAgI4MiRI5ibm1NUVMSECRPw8fHBzMyMCRMmcODA\nAQICAnB2duaNN97g3LlzdOrUiXXr1mFtbU1mZiZ+fn4UFhby0ksv8c9//hNzc3NOnjzJq6++ys8/\n/0x+fj4LFizg1VdfZfbs2WRmZqLT6ejXrx/Tpk1j8ODBJCcnk5eXx/n0NK7dXoOBQQO6DJyIiYWW\ne7/8RP5vv5GVlcW9e/ewtLSkWbNmZW5enZycOHz4MAA9e/bk3Llz6mfz588HihffHDdunLrd1NRU\nHaUq7+233+btt98us83MzIzk5GT1fembVPFoIiIjCQoO4UJmOuaWnQkJDiI+Pp79+/fz7rvv0r9/\n//uOadKkiRqwK4pCt27dHvjvV1FK5sNSKh90fEkbNZF6Z27ZmeyLKepDA4DsiymYW3au9r4IIWof\nSb0TQogHOHv2LAsXLuTQoUMkJiby8ccfExAQwNixY0lKSsLPz4+33npL3f/q1atER0ezd+9eZs+e\nDcD27dvJysrizJkz/Otf/7rvprNJkyZER0fz2muvMXnyZObOnUurVq0IDQ1VR4RmzJjBjBkziI2N\npX379mWOraii3IcffoilpSV6vZ6lS5eWOd8nn3xCi5at6DroTbQjA0ne8RGF+b+Rd6s41WjLli2c\nOXOGLVu2cPny5Sr5XkXVqyi9cupbb7Nr927GjBnDO++8Q0JCAi1btuTOnTsVttGlSxeuX7+u/mbz\n8/PLFO2oiLu7O19++SUAKSkpnDlzRv2sYcOG5OfnV9IVVo6Q4CAy9q/i1vkkigoLuHU+iYz9qwgJ\nDvrjg4UQ9Z4ESkII8bvyBQ5KRoVMTU0BMDExISYmBl9fXwBef/11tTIcwNChQzEwMMDGxoZr164B\nxalII0eOxMDAgGeffVadNF9i1KhRAOTk5HDixAmGDx9OSkoKXl5e6PV6vL29+frrr1m4cCG7du1S\nzw3FT+8DAgJo2rQpvXr14sqVK0ybNo0hQ4aQkZHBZ599BhSnC124cAEfHx+Cg4Pp9HxH0vet5Nc7\nP9PEyJSriVHcPBeDl5cXRkZGNGnSBBsbG3U+kah7Kpp709bhJd584w10Oh0LFy7kvffeY/Lkybz0\n0kv3/S4BGjVqxNatW5k1axb29vbodDpOnDjx0PNOnTqV69evo9VqWbx4MVqtFiMjIwAmT56MVqtV\niznUBn6+vqz6aCm3jofz7fzh3DoezqqPluJX6r8zIcTTS1LvhBCC/z6Bf2FQABa+NmRfTOGrrR/S\n3/v+G8jSSleKK51KVJKC9EepSCUV4oqKijA2NiYmJkZNkysoKCA3Nxdzc3MOHjyIu7u7OjkeIDQ0\nlD179nD06FGcnZ0xNTWladOm7N69m5dffpl169ap6VV5eXksX76cadOmkZ6ezltTJhGxOZzsS2k0\nJ5fXR/+Vhg0bqm1Ltbm6raK5N516DSXj243o9Xp1m5OTE9OnT1ff5+TklDlGp9Pdt14QoKZgQnF6\nZUmKZpMmTfj3v/9NkyZNyMzMxNvbWy1qsHjxYhYvXqweV1tSLP18fSUwEkJUSEaUhBCCip/AW3iP\nZ//+/dy8eROAW7du0atXL7744guguPT1wyrDQXEq0rZt2ygqKuLatWtlbjBLa9WqFebm5uzbtw8o\nDrD0ej1z5swhPz8fFxcXrly5wtq1awG4fv06y5cvZ9CgQTg7OxMVFcXNmzfZvn07gwcPJj09nZs3\nb5Keng5A06ZN6dChA71790ZRFKw6d+Z/9+7m+eefJ/NcGj179qyMr1HUEiVzb0qrjrk3ubm5uLu7\nY29vz7Bhw/j0009p1KhRlZ5TCCGqiowoCSEEFT+Bb6frw9ndK+jduzeGhoZ0796dFStWMGHCBJYu\nXaoWc3iYESNG8O2332Jra4uVlRUuLi5qKlKJkkn35zPOcfq0nsLCArp160aXLl1o1KgRJ0+eZPz4\n8fz444/88MMPtGzZklatWtGuXTtiYmLUinItW7YkODgYf39/fH19SUpK4j//+Q+Ojo7qyNfUqVNZ\nt24ds2fPpk2bNoSFhZUZCRP1Q0hwkDpCatypeIQ0Y/8qVn209I8PfgItW7YkLi6uSs8hhBDVRfMo\nFWoq9cQazUDgY8AQ+JeiKB8+aF8nJydF/vAKIaqSpZU1Jm7+Zapf3TqfxK3j4WSee7Jyvzk5ObRo\n0YKbN2/So0cPjh8/zrPPPguUTfkz7mTDjbQ4Er/8B5s2beTG9etkZGSwePFiTp48ibe3NytWrGD3\n7t1cvXqV7777jgEDBjB16lR8fX1Zu3Yt+/fv56uvvqJhw4acO3eO5557jtjYWEJDQ9m7dy8AAQEB\nODk5lalOJ+qfiqreSYqZEKK+02g08YqiOFVGWzUyoqTRaAyBT4B+wPdArEaj2a0oSsrDjxRCiKpR\nlU/gBw8eTHZ2Nr/99hvz5s1TgyS4f02jZ2xcad2pG+PHj8fP15fU1FS6d+/OjRs3aNy4MZs2bWLJ\nkiUEBATQvHlz9u7dS79+/WjevDkTJ04kKysLBwcHFEWhTZs27Ny584n7L+ommXsjhBBPpkZGlDQa\nTU8gWFGUAb+/fxdAUZR/VLS/jCgJIapDTTyBNzA0xHvedgwM//vcqqiwgG/nD6eosLBKz11fZWdn\nExkZqZZXf1JmZmbExcWp1Q+FEELUXpU5olRTxRyeA0ov0PH979tUGo1mskajidNoNHHXr1+v1s4J\nIZ5Ofr6+ZJ5LpaiwkMxzqdXyNL6mJt3XZ9nZ2axevfpP768oCkVFRVXYIyGEEHVRTQVKmgq2lRna\nUhRlraIoToqiOLVp06aauiWEENVLFrysfLNnzyYzMxOdTkdgYCBLly7F2dkZrVbL+++/D0BWVhZd\nu3Zl6tSpODg4cPnyZaZMmYKTkxPdunVT9yuxcuVKHBwcsLOzIzX1yeasCSGEqBtqKlD6HuhY6n0H\n4Ica6osQQtQYWfCy8n344YdYWlqi1+vp168f6enpnDp1Cr1eT3x8vLouUFpaGmPHjuX06dN06tSJ\nhQsXEhcXR1JSEkeOHCEpKUlt09TUlISEBKZMmUJoaGhNXZoQQohqVFPlwWOBzhqNxhy4ArwGyF2B\nEOKpJJPuq86BAwc4cOAA3bt3B4orEKanp/P888/TqVMnXF1d1X2//PJL1q5dS0FBAVevXiUlJQWt\ntrjIxvDhwwFwdHRk+/bt1X8hQgghql2NBEqKohRoNJoA4BuKy4N/rijK2ZroixBCiLqvdCGODs+b\noRT8BhTPP3r33Xd54403yuyflZVF8+bN1fcXLlwgNDSU2NhYWrduzbhx48jLy1M/L1lrytDQkIKC\ngmq4IiGEEDWtplLvUBRlv6IoVoqiWCqKsrCm+iGEEKJuK1mLysTNH+952/mLqy9XfrhKRGQkAwYM\n4PPPPycnJweAK1eu8NNPP93Xxi+//ELz5s0xMjLi2rVr/O///m91X4YQQohapqZS74QQQohK8bC1\nqGa89Ra+vr707NkTgBYtWvDvf/8bQ0PDMm3Y29vTvXt3unXrhoWFBW5ubtV+HUIIIWqXGllH6VHJ\nOkpCCCEeRNaiEkIIUaI+rKMkhBBCVApZi0oIIURVkEBJCCFEpcnKysLW1rZazylrUQkhhKgKMkdJ\nCCFEnVZSWj0oOIT4jemYW3aWtaiEEEI8MRlREkIIUakKCgrw9/dHq9Xi4+NDbm4u8fHx9O7dG0dH\nRwYMGMDVq1cByMjI4MUXX8Te3h4HBwcyMzPJycnB29sbBwcH7Ozs2LVrF1A8WmVtbc3EiROxtbXF\nz8+PgwcP4ubmRvD777P53xspKiwk6XQ83x48iLOzM927d1ePF0IIIR6FBEpCiHojODiY0NDQRzom\nLi6Ot956q4p69HRKS0tj8uTJJCUl0apVKz755BOmT5/O1q1biY+PZ8KECcydOxcAPz8/pk2bRmJi\nIidOnKBdu3Y0adKEHTt2kJCQQFRUFH/7298oKTyUkZHBjBkzSEpKIjU1lcjISKKjowkNDWXRokUA\nLFy4kL59+xIbG0tUVBSBgYHcvXv3ka/Dy8uLxy0k9KjHHj58mMGDBz/WuaBmUh6FEKK+k9Q7IcRT\nzcnJCSen+4vjFBQU0KCB/Il8HB07dlTLa48ZM4ZFixaRnJxMv379ACgsLKRdu3bcuXOHK1euMGzY\nMACaNGkCQH5+PnPmzOHo0aMYGBhw5coVrl27BoC5uTl2dnYAdOvWDW9vbzQaDXZ2dmRlZQFw4MAB\ndu/erQbNeXl5XLp0ia5du1bbdyCEEKLukxElIUSdtnDhQrp06cKLL75IWloaAJmZmQwcOBBHR0c8\nPDxITU0F4KuvvsLW1hZ7e3s8PT2Bsk/yg4ODmTx5Mv3792fs2LEUFhYSGBiIs7MzWq2Wzz77rGYu\nshaLiIzE0soaA0NDLK2s2blrFxqNpsw+LVu2pFu3buj1evR6PWfOnOHAgQM8aHmKiIgIrl+/Tnx8\nPHq9nrZt25KXlwdA48aN1f0MDAzU9wYGBhQUFACgKArbtm1Tz1c6SFqzZg06nQ6dToe5uTl9+vTh\nwIED9OzZEwcHB0aOHKkuTlva5s2bsbOzw9bWllmzZqnbW7Rowd/+9jccHBzw9vbm+vXr6mdfffUV\nPXr0wMrKimPHjgE89DeVk5ODj48P1tbW+Pn5qd9PSEgIzs7O2NraMnnyZHV7fHw89vb29OzZk08+\n+eTP/HMJIYR4BBIoCSHqrPj4eL744gtOnz7N9u3biY2NBWDy5MmsXLmS+Ph4QkNDmTp1KlB8w/nN\nN9+QmJjI7t27H9jmrl27iIyMZP369RgZGREbG0tsbCzr1q3jwoUL1XZ9tV1EZCQBMwMxcfPHe952\nTNz8CZq/iEuXLhETEwMUBxiurq5cv35d3Zafn8/Zs2dp1aoVHTp0YOfOnQD8+uuv5Obmcvv2bZ55\n5hkaNmxIVFQUFy9efKR+DRgwgJUrV6oBxenTp9XP3nzzTfR6PbGxsXTo0IEJEyawYMECDh48SEJC\nAk5OTixbtqxMez/88AOzZs3i0KFD6rElfb579y4ODg4kJCTQu3dvPvjgA/W4goICTp06xfLly9Xt\nD/tNnT59muXLl5OSksL58+c5fvw4AAEBAcTGxpKcnMy9e/fYu3cvAOPHj2fFihXq9yqEEKJySaAk\nhKizjh07xrBhw2jWrBmtWrViyJAh5OXlceLECUaOHIlOp+ONN95QCwe4ubkxbtw41q1bR+EDFiId\nMmQITZs2BYpTuDZu3IhOp8PFxYWbN2+Snp5ebddX2wUFh/DCoABMLLQYGDbAxEKLmZc/DRs1Ijw8\nHK1Wy61bt9T5SbNmzcLe3h6dTseJEycA2LRpEytWrECr1dKrVy9+/PFH/Pz8iIuLw8nJiYiICKyt\nrR+pX/PmzSM/Px+tVoutrS3z5s27b58ZM2bQt29fWrduTUpKCm5ubuh0OsLDw+8LzGJjY/Hy8qJN\nmzY0aNAAPz8/jh49ChSPZI0aNQooTjOMjo5Wjxs+fDgAjo6OZdICH/Sb6tGjBx06dMDAwACdTqce\nExUVhYuLC3Z2dhw6dIizZ89y+/ZtsrOz6d27NwCvv/76I31HQggh/pgk4Ash6oyIyEiCgkO4kFlc\nArqXizMWFhZl9ikqKsLY2Bi9Xn/f8WvWrOG7775j37596HS6Cvdp3ry5+lpRFFauXMmAAQMq/2Lq\ngQuZ6Vj42pTZ1tbWjeQd/2TNmjVltut0OjW4KK1z584cOnTovu0PGiVJTk5WX4eFhamvzczM1M+a\nNm1aJqWtJD2w5HfzYp/efP/996xatYp9+/bRr18/Nm/e/MDrfFCKYEVKpx2WpAUaGhqWSQus6Dd1\n+PDhMmmFJcfk5eUxdepU4uLi6NixI8HBweTl5aEoyn0pjkIIISqXjCgJIeqEitK8du77mg0bNnDv\n3j3u3LnDnj17aNasGebm5nz11VdA8Y1pYmIiUDx3ycXFhZCQEExNTbl8+fJDzzlgwAA+/fRT8vPz\nATh37txjVU+rr8wtO5N9MaXMtuyLKZhbdq6hHt2v/O+mcZcX+df6z3l16FAMDAxwdXXl+PHjZGRk\nAJCbm8u5c+fKtOHi4sKRI0e4ceMGhYWFbN68WR3JKSoqYuvWrQBERkbi7u7+0P486m+qZG6Wqakp\nOTk56rmMjY0xMjJSR7AiIiIe9asRQgjxB2RESQhRJ5RO8wIwsdBi/erbZO5Zhk6no1OnTnh4eADF\nN41TpkxhwYIF5Ofn89prr2Fvb09gYCDp6ekoioK3tzf29vYcOXLkgeecOHEiWVlZODg4oCgKbdq0\nUeemCAgJDiJgZiAvDArAuJMN2RdTyNi/ilUfLa3prqnK/25uX0nDsFFTpgdMZ/Unn+Dk5ERYWBij\nR4/m119/BWDBggVYWVmpbbRr145//OMf9OnTB0VRGDRoEK+++ipQPAJ59uxZHB0dMTIyYsuWLQ/t\nz6P+poyNjZk0aRJ2dnaYmZnh7OysfrZhwwYmTJhAs2bNZNRTCCGqgOZRUgpqipOTk/K4a1kIIeoH\nA0NDvOdtx8Dwv893igoL+Hb+cIoeMN9IVL3y6ZAhwUH4+frWdLdUVf27adGiRYVV8oQQQtQMjUYT\nryjK/et+PAYZURJC1AklaV4lIwNQ+9K8nkZ+vr61KjAqT343QgghHpfMURJC1AkhwUFk7F/FrfNJ\nFBUWcOt8Ehn7VxESHFTTXRO1WFX/bmQ0SQgh6i8ZURJC1AkloxZBwSHEbyxO81r10dJaPZohap78\nboQQQjwumaMkhBBCCCGEqBcqc46SpN4JIYQQQgghRDkSKAkhhBBCCCFEORIoCSGEEEIIIUQ5EigJ\nUQ9kZWVha2t733YvLy+qe37fuHHj2Lp1a7WeUwghhBCiskmgJIQQQgghhBDlSKAkRD1RUFCAv78/\nWq0WHx8fcnNzy3x+4MABevbsiYODAyNHjlTXf5k9ezY2NjZotVreeecdAL766itsbW2xt7fH09MT\ngMLCQgIDA3F2dkar1fLZZ58BoCgKAQEB2NjY8PLLL/PTTz9V41WLFi1aVFnbgYGBdOvWjcDAwCo7\nhxC1VXZ2NqtXrwbg8OHDDB48uML9Jk6cSEpKyh+297A2hBC1k6yjJEQ9kZaWxvr163Fzc2PChAnq\n/+ABbty4wYIFCzh48CDNmzdn8eLFLFu2jICAAHbs2EFqaioajYbs7GwAQkJC+Oabb3juuefUbevX\nr8fIyIjY2Fh+/fVX3Nzc6N+/P6dPnyYtLY0zZ85w7do1bGxsmDBhQo18B+LRFBQU0KDBg/838Nln\nn3H9+nUaN25cKe0JUZeUBEpTp0596H7/+te/KtxeWFiIoaFhVXRNCFFNZERJiHqiY8eOuLm5ATBm\nzBiio6PVz06eCaS3LwAAIABJREFUPElKSgpubm7odDrCw8O5ePEirVq1okmTJkycOJHt27fTrFkz\nANzc3Bg3bhzr1q2jsLAQKB6R2rhxIzqdDhcXF27evEl6ejpHjx5l9OjRGBoa0r59e/r27Vv9F1+P\nLVmyhBUrVgAwc+ZM9fv99ttvGTNmDABz587F3t4eV1dXrl27BsD169cZMWIEzs7OODs7c/z4cQCC\ng4OZPHky/fv3Z+zYsQ8cKRwyZAh3797FxcWFLVu2cPHiRby9vdFqtXh7e3Pp0iWgeE7a22+/TZ8+\nfZg1axZ3795lwoQJODs70717d3bt2lWt35cQlWX27NlkZmai0+kIDAwkJycHHx8frK2t8fPzo2Qd\nytJzQVu0aEFQUBAuLi7ExMTw9ddfY21tjbu7O9u3b6/JyxFCPAYJlISogyIiI7G0ssbA0BBLK2t2\n7tqFRqMps0/p94qi0K9fP/R6PXq9npSUFNavX0+DBg04deoUI0aMYOfOnQwcOBCANWvWsGDBAi5f\nvoxOp+PmzZsoisLKlSvVNi5cuED//v3vO5eoXJ6enhw7dgyAuLg4cnJyyM/PJzo6Gg8PD+7evYur\nqyuJiYl4enqybt06AGbMmMHMmTOJjY1l27ZtTJw4UW0zPj6eXbt2ERkZWWakMDY2lnXr1nHhwgV2\n795N06ZN0ev1jBo1ioCAAMaOHUtSUhJ+fn689dZbanvnzp3j4MGD/POf/2ThwoX07duX2NhYoqKi\nCAwM5O7du9X7pdUBUvSk9vvwww+xtLREr9ezdOlSTp8+zfLly0lJSeH8+fPqw4fS7t69i62tLd99\n9x1OTk5MmjSJPXv2cOzYMX788ccauAohxJOQQEmIOiYiMpKAmYGYuPnjPW87Jm7+BM1fxKVLl4iJ\niQFg8+bNuLu7q8e4urpy/PhxMjIyAMjNzeXcuXPk5ORw+/ZtBg0axPLly9Hr9QBkZmbi4uJCSEgI\npqamXL58mQEDBvDpp5+Sn58PFN8c3717F09PT7744gsKCwu5evUqUVFR1fyN1G+Ojo7Ex8dz584d\nGjduTM+ePYmLi+PYsWN4eHjQqFEjdd6Do6MjWVlZABw8eJCAgAB0Oh1Dhgzhl19+4c6dO0DxaFHT\npk2BB48UlhcTE4Ovry8Ar7/+epkRy5EjR6opRgcOHODDDz9Ep9Ph5eVFXl6eOvokRG1W0QOo0nr0\n6EGHDh0wMDBAp9Op/62VZmhoyIgRIwBITU3F3Nyczp07o9Fo1BFgIUTdIcnkQtQxQcEhvDAoABML\nLQAmFlrMvPxJ3fMx4eHhvPHGG3Tu3JkpU6awZ88eANq0aUNYWBijR4/m119/BWDBggW0bNmSV199\nlby8PBRF4aOPPgKKJ/Gnp6ejKAre3t7Y29uj1WrJysrCwcEBRVFo06YNO3fuZNiwYRw6dAg7Ozus\nrKzo3bt3zXwx9UREZCRBwSFcyEzH3LIzIcFBmJmZsWHDBnr16oVWqyUqKorMzEy6du1Kw4YN1RE9\nQ0NDCgoKACgqKiImJkYNiEpr3ry5+rpkpHDAgAGP1M/So4jl29u2bRtdunR5pPbqiqysLF566SXc\n3d05ceIEzz33HLt27SItLY0333yT3NxcLC0t+fzzz2ndujXr1q1j7dq1/Pbbb7zwwgts2rRJTXE9\nevQoy5Yt48cff2TJkiX4+PjU8NU9vUoeQL0wKAALXxuyL6YQNH8RRk0bqfuUnqtX+r+10po0aVJm\nXpKMtgtRt8mIkhB1zIXMdIw72ZTZ1tbWjYKCAtasWUNSUhLbtm2jWbNmHD58GCcnJwA1HSopKYmk\npCSGDBlCu3btOHXqFElJSZw5cwZ/f38Atm/fzpkzZ0hOTubjjz9Go9FgYGDAokWL1O1RUVEYGRmh\n0WhYtWoVKSkp7Ny5k507d8oN32OqaLQwYGYgxq1bExoaiqenJx4eHqxZswadTvfQm7D+/fuzatUq\n9X3JaGF5DxopLK9Xr1588cUXxf2MiCgzYlm+vZUrV6rzN06fPv3nLr4OSU9PZ9q0aZw9exZjY2O2\nbdvG2LFjWbx4MUlJSdjZ2fHBBx8AMHz4cGJjY0lMTKRr166sX79ebefq1atER0ezd+9eZs+eXVOX\nIyj7AMrAsAEmFlos+01+onQ5a2trLly4QGZmJlA80i+EqFskUBKijjG37Ez2xbKlaLMvpmBu2bmG\neiQqS0U3ay8MCuDkd6e4evUqPXv2pG3btjRp0gQPD4+HtrVixQri4uLQarXY2NiwZs2aCvebOHEi\nNjY2ODg4YGtryxtvvFHhk/IVK1awYcMGtFotmzZt4uOPP66wvXnz5pGfn49Wq8XW1pZ58+Y9+hdR\ny5mbm6PT6YDidMfMzEyys7PV0VR/f3+OHj0KQHJyMh4eHtjZ2REREcHZs2fVdoYOHYqBgQE2NjZq\nEQ5RMyp6AGXaxYmCggJsbW0fq0R+kyZNWLt2LS+//DLu7u506tSpsrorhKgmmpKnfrWZk5OTUlJR\nRoinXekUEeNOxSkiGftXseqjpfj9PodE1E0GhoZ4z9uOgeF/s6KLCgv4dv5win6vPvi0Gjp0KJcv\nXyYvL48ZM2YwefJkWrRowbRp0zh48CCtW7dm0aJF/P3vf+fSpUssX76cIUOGkJeXx5QpU4iLi6NB\ngwYsW7aMPn36EBYWxu7du8nNzSUzM5Nhw4axZMmS+85bPhVy+rQp/GvdOpKTkwEIDQ3lypUrbNu2\nTZ2LlZmZyciRI0lISMDc3JydO3dib29PWFgYhw8fJiwsjHHjxjF48GB19LVFixbq2mai+llaWWPi\n5q+mNAPcOp/ErePhZJ5LrcGeCSEelUajiVcUxaky2pIRJSHqGD9fX1Z9tJRbx8P5dv5wbh0PlyCp\nnpDRwgf7/PPPiY+PJy4ujhUrVnDz5k3u3r2Ll5cX8fHxtGzZkvfee4///Oc/7Nixg6CgIAA++eQT\nAM6cOcPmzZvx9/cnLy8PKE5H3LJlC2fOnGHLli1cvny5zDkfVDjl9u3bZfYzMjKidevWanXCTZs2\nqaNLd+7coV27duTn5xMREVGl35F4fCHBQWTsX8Wt80kUFRZw63wSGftXERIcVNNdE0LUICnmIEQd\n5OfrK4FRPRQSHPTA0cKn3YoVK9ixYwcAly9fJj09nUaNGqkl7e3s7GjcuDENGzbEzs5OrUgWHR3N\n9OnTgeI5I506deLcuXMAeHt7Y2RkBICNjQ0XL16kY8eO6jkfVjilvPDwcLWYg4WFBRs2bABg/vz5\nuLi40KlTJ+zs7NTKg+LJeHl5ERoaqs7BfFIlf0+DgkOI31g8eigPoIQQEigJIUQtITdr/1U65e3Z\nds/RsnlTTp8+TbNmzdSy46Ur/hkYGKhVyQwMDNR5Vg9LL/+jKmYXMtOx8L2/cEryjn+q79955x31\n9cmTJ+87x5QpU5gyZcp928PCwsq8l7S7micPoIQQ5UnqnRBC1CJ+vr5knkulqLCQzHOpT+WNW/mU\nt2ZdenM+6yI7du4kNTW1woDkQTw9PdWUt3PnznHp0qU/XbpcUiEr19ChQ3F0dKRbt26sXbuWL7/8\nkrfffhuAjz/+GAsLC6B4jldJVcWQkBCcnZ2xtbVl8uTJ9wW+RUVF+Pv789577wHF63j17NkTBwcH\nRo4cKQGoEOKJSKAkhBCiVilf/c/cfQTN2nRiwvjxzJs3D1dX1z/d1tSpUyksLMTOzo5Ro0YRFhZW\nZiTpYWTeSuUqP8/Mzc1Nndd17Ngx/vKXv3DlyhWio6PVqo4BAQHExsaSnJzMvXv32Lt3r9peQUEB\nfn5+WFlZsWDBAm7cuMGCBQs4ePAgCQkJODk5sWzZshq5ViFE/SBV74QQQtQqtan6X0ULAD+No3yV\nITg4WJ1nlpWVxTfffMP48eM5deoUL774Iq+99hrPPvss3377LcOHD2fQoEFs27aNJUuWkJuby61b\nt5g+fTqzZ8/Gy8uLn3/+mb/+9a/MnTsXgL179zJu3Dg6dOgAwG+//UbPnj3LrF0lhKj/pOqdEEKI\neqs2pbxJKuTji4iMxNLKGgNDQ9p3eJ7NmzcTExNDYmIi3bt3Jy8vj549e7Jhwwa6dOmCh4cHx44d\nIyYmBjc3N/Ly8pg6dSpbt27lzJkzTJo0Sa1YCMWLIEdFRanbFEWhX79+6PV69Ho9KSkpEiQJIZ6I\nBEpCCCFqFUl5q/v+7DwzT09PQkND8fT0pHv37kRFRdG4cWOMjIzUAMjU1JScnBy2bt1a5hz/7//9\nPwYNGsTIkSMpKCjA1dWV48ePk5GRAUBubq5a4VAIIR7HEwVKGo1mpEajOavRaIo0Go1Tuc/e1Wg0\nGRqNJk2j0QwotX3g79syNBrN7Cc5vxBCiPpH1gqr+/7sPDMPDw8uX76Mp6cnhoaGdOzYUS3kYGxs\nzKRJk7Czs2Po0KE4Ozvfd563334bBwcHXn/9df7yl78QFhbG6NGj0Wq1uLq6kpoqi8UKIR7fE81R\n0mg0XYEi4DPgHUVR4n7fbgNsBnoA7YGDgNXvh50D+gHfA7HAaEVRUngImaMkhBBC1B21aZ6ZEOLp\nUmvmKCmK8n+KoqRV8NGrwBeKovyqKMoFIIPioKkHkKEoynlFUX4Dvvh9XyGEEELUE7VpnpkQQjyu\nqpqj9BxwudT773/f9qDt99FoNJM1Gk2cRqOJu379ehV1UwghhBCVrb7OM1u+fDm5ubk13Q0hRDVp\n8Ec7aDSag8CzFXw0V1GUXQ86rIJtChUHZhXm/imKshZYC8Wpd3/UTyGEEELUDiXzyYKCQ4jfWFxa\nvT7MM1u+fDljxoyhWbNmNd0VIUQ1+MNASVGUFx+j3e+BjqXedwB++P31g7YLIYR4CmVlZTF48GCS\nk5NruiuiEvn5+tZoYJSVlcXAgQNxd3fn5MmT2NvbM378eN5//31++uknIiIi2L9/Py1atOCdd94B\nwNbWlr1799KmTRv++te/8v3331NYWMi8efO4du0aP/zwA3369MHU1JSoqKgauzYhRPWoqtS73cBr\nGo2msUajMQc6A6coLt7QWaPRmGs0mkbAa7/vK4QQQohaZMWKFXTt2hU/P78naicoKIiDBw9WUq8e\nTUZGBjNmzCApKYnU1FQiIyOJjo4mNDSURYsWPfC4r7/+mvbt25OYmEhycjIDBw7krbfeon379kRF\nRUmQJMRT4knLgw/TaDTfAz2BfRqN5hsARVHOAl8CKcDXwDRFUQoVRSkAAoBvgP8Dvvx9XyGEEE+x\nwsJCJk2aRLdu3ejfvz/37t1j3bp1ODs7Y29vz4gRI9S5IePGjWPKlCn06dMHCwsLjhw5woQJE+ja\ntSvjxo2r2QupR1avXs3+/fuJiIh4onZCQkJ48cXHSU55cubm5tjZ2WFgYEC3bt3w9vZGo9FgZ2dH\nVlbWA4+zs7Pj4MGDzJo1i2PHjmFkZFR9nRZC1BpPWvVuh6IoHRRFaawoSltFUQaU+myhoiiWiqJ0\nURTlf0tt368oitXvny18kvMLIYSoH9LT05k2bRpnz57F2NiYbdu2MXz4cGJjY0lMTKRr166sX79e\n3f/nn3/m0KFDfPTRR7zyyivMnDmTs2fPcubMGfR6fQ1eSf3w5ptvcv78eYYMGcLixYvp1asX3bt3\np1evXqSlFRe7DQsLY+jQobzyyiuYm5uzatUqli1bRvfu3XF1deXWrVtAcWBbslismZkZ77//Pg4O\nDtjZ2anrHN29e5cJEybg7OxM9+7d2bXrQVOgHywiMhJLK2sMDA2xtLJm565dNG7cWP3cwMBAfW9g\nYEBBQQENGjSgqKhI3adkkVsrKyvi4+Oxs7Pj3XffJSQk5DG+RSFEXVdVqXdCCCFEhSq6oTU3N0en\n0wHg6OhIVlYWycnJeHh4YGdnR0REBGfP/jcB4ZVXXlFHBtq2bVtm1OBhIwXiz1mzZo2aZjZlyhSO\nHj3K6dOnCQkJYc6cOep+ycnJREZGcurUKebOnUuzZs04ffo0PXv2ZOPGjRW2bWpqSkJCAlOmTCE0\nNBSAhQsX0rdvX2JjY4mKiiIwMJC7d+/+6f5GREYSMDMQEzd/vOdtx8TNn6D5i7h9+/ZDjzMzMyMh\nIQGAhIQELly4AMAPP/xAs2bNGDNmDO+88466T8uWLblz586f7pcQom77w2IOQgghRGUpuaF9YVAA\nFr42ZF9MIWj+IoyaNlL3MTQ05N69e4wbN46dO3dib29PWFgYhw8fVvcpPTJQftSgoKCg2q6nPomI\njCQoOIQLmcVV6koCldu3b+Pv7096ejoajYb8/Hz1mD59+tCyZUtatmyJkZERr7zyClCcupaUlFTh\neYYPHw4UB8Tbt28H4MCBA+zevVsNnPLy8rh06RJdu3b9U30PCg7hhUEBmFhoATCx0GLm5U/qno8f\netyIESPYuHEjOp0OZ2dnrKysADhz5gyBgYEYGBjQsGFDPv30UwAmT57MSy+9RLt27WSekhBPAQmU\nhBBCVJtHuaG9c+cO7dq1Iz8/n4iICJ57rsJl90QlqCiAvbBxHlu3beNkTAx9+vRhx44dZGVl4eXl\npR73R6ltFSnZx9DQUN1HURS2bdtGly5dHqv/FzLTsfC1KbOtra0byTv+qb4PCwtTX5uZmalVFg8c\nOHBfe2ZmZgwYMOC+7dOnT2f69OmP1UchRN0jqXdCCFHHZWVlYWtrW2ntBQcHq0/2K9uFzHSMO5W9\noW3V4QXyf/vtvn3nz5+Pi4sL/fr1w9raukr6I4qVDmANDBtgYqGlYdOWfLhkKbdv31aD1NLBRmUa\nMGAAK1euRFGKl008ffr0Ix1vbtmZ7IspZbZlX0zB3LJzpfVRCPH0kRElIYQQ1abkhrZkRAng19s3\nsej835GEkjVtAKZMmXJfGw8aGSj/mfjzKhqRMWjQkIsXzrP535vw9/dn2bJl9O3bt0rOP2/ePP7n\nf/4HrVaLoiiYmZmxd+/eP318SHCQOiJm3Kl4RCxj/ypWfbS0SvorhHg6aEqe3tRmTk5OSlxcXE13\nQwghaqWsrCxeeukl3N3dOXHiBM899xy7du0iLS2NN998k9zcXCwtLfn888/Jz8/npZdeIj4+nsTE\nRHQ6HRcvXuT555/H0tKSM2fOsGTJkjKLcFam0ile5W9oa3Jx0qedpZU1Jm7+ZQLYW+eTuHU8nMxz\nqTXYsz+v/ByrkOAg+U0J8RTSaDTxiqI4VUZbknonhBD1QEXltceOHcvixYtJSkrCzs6ODz74gGee\neYa8vDx++eUXjh07hpOTE8eOHePixYs888wzNGvWrEr76efry6qPlnLreDjfzh/OrePhEiTVAiHB\nQWTsX8Wt80kUFRZw63wSGftXERIcVNNd+9P8fH3JPJdKUWEhmedS5TclhHhiknonhBD1QPny2pmZ\nmWRnZ9O7d28A/P39GTlyJAC9evXi+PHjHD16lDlz5vD111+jKAoeHh7V0lc/X996fRPbq1cvTpw4\nUeFnhw8fJjQ09JHSyqpDyb9HUHAI8RuLR2QkgBVCPO1kREkIIeqg0msRefbxVhfKhOJqYtnZ2Q88\n1sPDQx1FevXVV0lMTCQ6OhpPT8/q6Hq996AgqbaTERkhhChLAiUhhKhjyi+uaew4gh+u/khEZKS6\nj5GREa1bt+bYsWMAbNq0SR1d8vT05N///jedO3fGwMAAExMT9u/fj5ubW41cT33TokULFEUhMDAQ\nW1tb7Ozs2LJli/p5Tk4OPj4+WFtb4+fnp1Z6MzMz4/3338fBwQE7OztSU+vG3CAhhKivJFASQog6\npnwpZ+PnrWnU0oSg4JAy+4WHhxMYGIhWq0Wv1xMUVDzfxMzMDEAdQXJ3d8fY2JjWrVtX63XUZ9u3\nb0ev15OYmMjBgwcJDAzk6tWrQHHp6+XLl5OSksL58+c5fvy4epypqSkJCQlMmTKlykq0CyGE+HNk\njpIQQtQx5Us5N23dFvcZa/l2/nCgbHntkydPVtjGpUuX1Ndz5sxhzpw56vvg4OBK7nH9VVGlNYDo\n6GhGjx6NoaEhbdu2pXfv3sTGxtKqVSt69OhBhw4dANDpdGRlZeHu7g7A8OHF/4aOjo5s3769Zi5K\nCCEEIIGSEELUORWtRSSLa1a/0qXOLXyLS50HzAykoKCAhy290bhxY/W1oaEhBQUF931WfrsQQojq\nJ6l3QghRx9SHUs71QfkUSBMLLS8MCuC3337D09OTLVu2UFhYyPXr1zl69Cg9evSo6S4LIYR4BDKi\nJIQQdYyUcq4dyqdAAhh3skFRFIYNG0ZMTAz29vZoNBqWLFnCs88+KwUahBCiDtE8LD2gtnByclLi\n4uJquhtCCCGEytLKGhM3/zIpkD+lnCR564fk5+fXYM+EEOLppdFo4hVFcaqMtiT1TgghhHgM5VMg\nf0yOJumrf+ArI3tCCFEvSOqdEEII8RgqSoHcuHGjpEAKIUQ9Ial3QgghhBBCiHpBUu+EEEIIIYQQ\nogpJoCSEEEIIIYQQ5UigJIQQQgghhBDlSKAkhBBCCCGEEOVIoCSEEEIIIYQQ5UigJIQQQgghhBDl\nSKAkhBBCCCGEEOVIoCSEEEIIIYQQ5UigJIQQQgghhBDlSKAkhBBCCCGEEOVIoCSEEEIIIYQQ5Uig\nJIQQQgghhBDlSKAkhBBCCCGEEOVIoCSEEEIIIYQQ5UigJIQQQlSS7OxsVq9e/dB9srKysLW1raYe\nPVxwcDChoaE13Q0hhKiVJFASQgghKsmfCZSeVEFBQZW2L4QQopgESkIIIUQlmT17NpmZmeh0OmbO\nnIm3tzcODg7Y2dmxa9cudb+CggL8/f3RarX4+PiQm5sLQHx8PL1798bR0ZEBAwZw9epVALy8vJgz\nZw69e/fm448/Zty4cbz11lv06tULCwsLtm7dCkBOTs4Dz7lx40a0Wi329va8/vrr9/U9MzOTgQMH\n4ujoiIeHB6mpqVX5VQkhRK3XoKY7IIQQQtQXH374IcnJyej1egoKCsjNzaVVq1bcuHEDV1dXhgwZ\nAkBaWhrr16/Hzc2NCRMmsHr1ambMmMH06dPZtWsXbdq0YcuWLcydO5fPP/8cKB6tOnLkCADjxo3j\n6tWrREdHk5qaypAhQ/Dx8aFJkybs2LHjvnOmpKSwcOFCjh8/jqmpKbdu3bqv75MnT2bNmjV07tyZ\n7777jqlTp3Lo0KHq+/KEEKKWkUBJCCGEqAKKojBnzhyOHj2KgYEBV65c4dq1awB07NgRNzc3AMaM\nGcOKFSsYOHAgycnJ9OvXD4DCwkLatWuntjdq1Kgy7Q8dOhQDAwNsbGzUdh90zkOHDuHj44OpqSkA\nJiYmZdrKycnhxIkTjBw5Ut3266+/VvI3IoQQdYsESkIIIcQTiIiMJCg4hAuZ6XR43gyl4Lfi7RER\nXL9+nfj4eBo2bIiZmRl5eXkAaDSaMm1oNBoURaFbt27ExMRUeJ7mzZuXed+4cWP1taIoDz2noij3\nnbO0oqIijI2N0ev1j/4FCCFEDWjRogU5OTmPfbxGo8kCnBRFufGgfWSOkhBCCPGYIiIjCZgZiImb\nP97ztvMXV1+u/HCViMhIbt++zTPPPEPDhg2Jiori4sWL6nGXLl1SA6LNmzfj7u5Oly5duH79uro9\nPz+fs2fPPlJ/HnROb29vvvzyS27evAlwX+pdq1atMDc356uvvgKKA6/ExMTH+1KEEOIBCgsLa7oL\nj+SJAiWNRrNUo9GkajSaJI1Gs0Oj0RiX+uxdjUaTodFo0jQazYBS2wf+vi1Do9HMfpLzCyGEEDUp\nKDiEFwYFYGKhxcCwAc/YuNK6UzfGjx+PXq8nLi4OJycnIiIisLa2Vo/r2rUr/7+9+4/uqr7zPP58\nE0B7rBQodMciHSLFopAEJQp7QNsRBq1j1bFyZKAV7VbWH7jd9kz9MVhIw+ppq61dm1NrW21xN5RR\ncMYfdVah4pmlHqsRIajQGm2sVEatiVgL6gKf/eN7iV8vIUHzTULg+TjnHu593/u938/3jecrr9x7\nP1myZAmVlZW0tLRwySWXMHDgQJYvX86VV15JVVUVEyZM4JFHHnlf45kzZ0677zlu3DgWLFjApz/9\naaqqqvja1762x2vr6+u59dZbqaqqYty4ce+ZCEKSOtPc3MzYsWP3mKhm1KhR1NbWMnXqVO688869\nThxz7733MmnSJI477jimT5/edkvxm2++yYUXXkhFRQWVlZWsWLGi7T0XLFhAVVUVkydPbjse6B8R\nKyLi8WyZAhARH42IByPiyYi4Bdj7ZfZM7L5c/0FExAzgoZTSjoj4NkBK6cqIOBb4BXAi8HFgFXB0\n9rLfAX8LbAYeB/4hpfRMR+9TXV2dGhoaPvA4JUnqDv3Kypj2jbvoV/buney7du7gV4vPYVcf+8mp\nJHVFc3Mz5eXlrFmzpm2immOPPZa6ujouvfRSrrjiCqBwhbt44pirr76ahx56iNbWVgYPHkxE8NOf\n/pSNGzfy3e9+lyuvvJK3336b73//+wC0trYyZMgQIoJ77rmHz33uc1xxxRUMGjSIa665hohoAc5K\nKa2JiE8AD6SUjomIm4A/pZRqI+LvgPuA4R3detelZ5RSSg8WbT4KnJutnwUsSym9Dfw+IpoohCaA\nppTS8wARsSw7tsOgJEnS/qh89Bhef+EZhh5V2VZ7/YVnKB89phdHJUm9o72JauDdyWg6mjhm8+bN\nnHfeeWzZsoV33nmH8vJyAFatWsWyZcvajh8yZAgAAwcO5IwzzgBg4sSJrFy5cvchg4C6oucyB0XE\n4cDJwDkAKaVfRkRrZ5+nlM8ofQn4t2x9BPBi0b7NWW1v9T1ExLyIaIiIhldffbWEw5QkqTRqaxbS\ndH8dLc83smvnDlqeb6Tp/jpqaxb29tAkqVvVL13K6KPH0q+sjNFHj+Vf77673Ylq4N3JaIonjtm9\nbNy4EYDLL7+c+fPns2HDBm655Za2yW/2NhnNgAED2uplZWX5X8b9n1NKE7JlRErpz1n9fd1K12lQ\niohVEfFjVnI1AAAUfklEQVRUO8tZRccsAHYA9btL7ZwqdVDfs5jSj1NK1Sml6uHDh3f+SSRJ6mFz\nZs+m7sbrafn1En61+Bxafr2EuhuvZ87s2b09NEnqNvmJbIZOmcvCxde1O1FNsY4mjtm6dSsjRhSu\nnyxZsqTtNTNmzKCurq5tu7W10wtBbwDzd29ExIRs9d+BOVnts8CQzk7UaVBKKU1PKY1vZ7k7e6O5\nwBnAnPTuA0+bgZFFpzkSeKmDuiRJfdKc2bN57neb2LVzJ8/9bpMhSdIBLz+RzdCjKhn1mbkMGDhw\nj4lq8vY2cUxNTQ0zZ87kpJNOavudbwDXXHMNra2tjB8/nqqqKlavXt3Z8F4EqrPJ5p4BLs7q3wRO\njoi1wAzgD52dqKuTOZwGfA/4dErp1aL6OGAp707m8CtgDIUrSr8DpgF/pDCZw+yUUofznzqZgyRJ\nkrR/aG8im7+89kd+/T//K13JFqUQEU+klKpLca6uPqNUBxwOrIyIdRHxI4As+NxBYZKG/wNcllLa\nmVLaQeFS2APARuCOzkKSJEmSpP3H7olsir2xuYkBAwf20oi6R1dnvftkB/uuBa5tp34/cH9X3leS\nJElS76itWcj8r36dT54+n8F/fSyvv/AML/7fen72s5/19tBKqktBSZIkSdLBZfezmAtranni9mcp\nHz3mgJzIpkvPKPUUn1GSJEmS1Jn96RklSZIkSTrgGJQkSZIkKcegJEmSJEk5BiVJkiRJyjEoSZIk\nSVKOQUmSJEmScgxKkiRJkpRjUJIkSZKkHIOSJEmSJOUYlCRJkiQpx6AkSZIkSTkGJUmSJEnKMShJ\nkiRJUo5BSZIkSZJyDEqSJEmSlGNQkiRJkqQcg5IkSZIk5RiUJEmSJCnHoCRJkiRJOQYlSZIkScox\nKEmSpAPahz/84d4egqQ+yKAkSZL2Ozt37uztIUg6yBmUJElSj2pubmbs2LHMnTuXyspKzj33XLZt\n28aoUaOora1l6tSp3HnnnTz33HOcdtppTJw4kZNOOolNmzYBcO+99zJp0iSOO+44pk+fzssvvwzA\nm2++yYUXXkhFRQWVlZWsWLGi7T0XLFhAVVUVkydPbjtekjpiUJIkST3ut7/9LfPmzaOxsZFBgwbx\nwx/+EIBDDz2UNWvWMGvWLObNm8cPfvADnnjiCW644QYuvfRSAKZOncqjjz7Kk08+yaxZs/jOd74D\nwOLFi/nIRz7Chg0baGxs5JRTTgHgL3/5C5MnT2b9+vWcfPLJ/OQnP+mdDy2pT+nf2wOQJEkHn5Ej\nRzJlyhQAvvCFL3DTTTcBcN555wGFq0OPPPIIM2fObHvN22+/DcDmzZs577zz2LJlC++88w7l5eUA\nrFq1imXLlrUdP2TIEAAGDhzIGWecAcDEiRNZuXJlN386SQcCryhJkqRuV790KaOPHku/sjJO/ptp\nbNu27T37IwKAww47DIBdu3YxePBg1q1b17Zs3LgRgMsvv5z58+ezYcMGbrnlFt566y0AUkpt5yk2\nYMCAtnpZWRk7duzots8p6cBhUJIkSd2qfulS5n/16wydMpdp37iLwRM/z2uvvUbNN78JwC9+8Qum\nTp36ntcMGjSI8vJy7rzzTqAQgtavXw/A1q1bGTFiBABLlixpe82MGTOoq6tr225tbe3WzyXpwGZQ\nkiRJ3WphTS2fPH0+Q4+qpF9ZfwZ/YiyHfmQ43/vejVRWVtLS0sIll1yyx+vq6+u59dZbqaqqYty4\ncdx9990A1NTUMHPmTE466SSGDRvWdvw111xDa2sr48ePp6qqitWrV/fYZ5R04ImUUm+PoVPV1dWp\noaGht4chSZI+gH5lZUz7xl30Kys8Gr299WXW/u9vsu21zexyGnBJJRQRT6SUqktxLq8oSZKkblU+\negyvv/DMe2o7/99blI8e00sjkqTOGZQkSVK3qq1ZSNP9dbQ838iunTvY3voyhw7sT23Nwt4emiTt\nldODS5KkbjVn9myg8KzSE7c/S/noMdTdeH1bXZL2Rz6jJEmSJOmA4DNKkiRJktSNDEqSJEmSlGNQ\nkiRJkqQcg5IkSZIk5RiUJEmSJCnHoCRJkiRJOV0KShGxOCIaI2JdRDwYER/P6hERN0VEU7b/+KLX\nzI2IZ7Nlblc/gCRJkiSVWlevKF2fUqpMKU0A7gN2/4rtzwJjsmUecDNARAwFFgGTgBOBRRExpItj\nkCRJkqSS6lJQSim9UbR5GLD7t9eeBdyeCh4FBkfEEcCpwMqUUktKqRVYCZzWlTFIkiRJUqn17+oJ\nIuJa4HxgK/A3WXkE8GLRYZuz2t7q7Z13HoWrUXziE5/o6jAlSZIkaZ91ekUpIlZFxFPtLGcBpJQW\npJRGAvXA/N0va+dUqYP6nsWUfpxSqk4pVQ8fPnzfPo0kSZIklUCnV5RSStP38VxLgV9SeAZpMzCy\naN+RwEtZ/TO5+sP7eH5JkiRJ6hFdnfVuTNHmmcCmbP0e4Pxs9rvJwNaU0hbgAWBGRAzJJnGYkdUk\nSZIkab/R1WeUvhURnwJ2AS8AF2f1+4HTgSZgG3AhQEqpJSIWA49nx9WmlFq6OAZJkiRJKqkuBaWU\n0uf3Uk/AZXvZdxtwW1feV5IkSZK6U1d/j5IkSZIkHXAMSpIkSZKUY1CSJEmSpByDkiRJkiTlGJQk\nSZIkKcegJEmSJEk5BiVJkiRJyjEoSZIkSVKOQUmSJEmScgxKkiRJkpRjUJIkSZKkHIOSJEmSJOUY\nlCRJkiQpx6AkSZIkSTkGJUmSJEnKMShJkiRJUo5BSZIkSZJyDEqSJEmSlGNQkiRJkqQcg5IkSZIk\n5RiUJEmSJCnHoCRJkiRJOQYlSZIkScoxKEmSJElSjkFJkiRJknIMSpIkSZKUY1CSJEmSpByDkiRJ\nkiTlGJQkSZIkKcegJEmSJEk5BiVJkiRJyjEoSZIkSVKOQUmSJEmScgxKkiRJkpRjUJIkSZKkHIOS\nJEmSJOUYlCRJkiQpx6AkSZIkSTkGJUmSJEnKMShJkvQB/fznP+ell17q9LiFCxeyatWqHhiRJKlU\nShKUIuIfIyJFxLBsOyLipohoiojGiDi+6Ni5EfFstswtxftLktQb9jUo1dbWMn369B4YkSSpVLoc\nlCJiJPC3wB+Kyp8FxmTLPODm7NihwCJgEnAisCgihnR1DJIkATQ3NzN27Fi+/OUvM378eObMmcOq\nVauYMmUKY8aM4bHHHqOlpYWzzz6byspKJk+eTGNjIwA1NTXccMMNbecaP348zc3NNDc3c8wxx3DR\nRRcxbtw4ZsyYwfbt21m+fDkNDQ3MmTOHCRMmsH37dmpraznhhBMYP3488+bNI6UEwAUXXMDy5csB\nGDVqFIsWLeL444+noqKCTZs29XyjJEmdKsUVpRuBK4BUVDsLuD0VPAoMjogjgFOBlSmllpRSK7AS\nOK0EY5AkCYCmpia+8pWv0NjYyKZNm1i6dClr1qzhhhtu4LrrrmPRokUcd9xxNDY2ct1113H++ed3\nes5nn32Wyy67jKeffprBgwezYsUKzj33XKqrq6mvr2fdunV86EMfYv78+Tz++OM89dRTbN++nfvu\nu6/d8w0bNoy1a9dyySWXvCecSZL2H10KShFxJvDHlNL63K4RwItF25uz2t7q7Z17XkQ0RETDq6++\n2pVhSpIOIuXl5VRUVNCvXz/GjRvHtGnTiAgqKipobm5mzZo1fPGLXwTglFNO4bXXXmPr1q2dnnPC\nhAkATJw4kebm5naPW716NZMmTaKiooKHHnqIp59+ut3jzjnnnE7PJUnqXZ0GpYhYFRFPtbOcBSwA\nFrb3snZqqYP6nsWUfpxSqk4pVQ8fPryzYUqSDkL1S5cy+uix9CsrY/TRY/nXu+/mkEMOadvfr1+/\ntu1+/fqxY8eOttvhikUE/fv3Z9euXW21t956q229+JxlZWXs2LFjj3O89dZbXHrppSxfvpwNGzZw\n0UUXveccxXafb2/nkiT1vk6DUkppekppfH4BngfKgfUR0QwcCayNiL+icKVoZNFpjgRe6qAuSdL7\nUr90KfO/+nWGTpnLtG/cxdApc1m4+LpOrw6dfPLJ1NfXA/Dwww8zbNgwBg0axKhRo1i7di0Aa9eu\n5fe//32nYzj88MP585//DLwbrIYNG8abb77Z9kySJKlv+sC33qWUNqSUPpZSGpVSGkUhBB2fUvoP\n4B7g/Gz2u8nA1pTSFuABYEZEDMkmcZiR1SRJel8W1tTyydPnM/SoSvqV9WfoUZWM+sxcXn7llQ5f\nV1NTQ0NDA5WVlVx11VUsWbIEgM9//vO0tLQwYcIEbr75Zo4++uhOx3DBBRdw8cUXM2HCBA455BAu\nuugiKioqOPvssznhhBNK8jklSb0j2rsF4QOdqHBVqTql9KeICKCOwkQN24ALU0oN2XFfAv4pe9m1\nKaWfdXbu6urq1NDQUJJxSpIODP3Kypj2jbvoV9a/rbZr5w5+tfgcdu3c2YsjkyT1loh4IqVUXYpz\n9e/8kH2TXVXavZ6Ay/Zy3G3AbaV6X0nSwal89Bhef+EZhh5V2VZ7/YVnKB89phdHJUk6UJTkF85K\nktTTamsW0nR/HS3PN7Jr5w5anm+k6f46amvam2NIkqT3p2RXlCRJ6klzZs8GCs8qPXH7s5SPHkPd\njde31SVJ6oqSPaPUnXxGSZIkSVJnSvmMkrfeSZIkSVKOQUmSJEmScgxKkiRJkpRjUJIkSZKkHIOS\nJEmSJOUYlCRJkiQpx6AkSZIkSTkGJUmSJEnKMShJkiRJUo5BSZIkSZJyDEqSJEmSlGNQkiRJkqQc\ng5IkSZIk5RiUJEmSJCnHoCRJkiRJOZFS6u0xdCoiXgVe6O1xZIYBf+rtQRwk7HXPsdc9x173DPvc\nc+x1z7HXPcM+95zu6PVfp5SGl+JEfSIo7U8ioiGlVN3b4zgY2OueY697jr3uGfa559jrnmOve4Z9\n7jn7e6+99U6SJEmScgxKkiRJkpRjUHr/ftzbAziI2OueY697jr3uGfa559jrnmOve4Z97jn7da99\nRkmSJEmScryiJEmSJEk5BiVJkiRJyjEo7YOI+MeISBExLNuOiLgpIpoiojEiji86dm5EPJstc3tv\n1H1LRCzOerkuIh6MiI9ndXtdQhFxfURsynr5LxExuGjf1VmffxsRpxbVT8tqTRFxVe+MvO+JiJkR\n8XRE7IqI6tw+e92N7GNpRcRtEfFKRDxVVBsaESuz79+VETEkq+/1O1sdi4iREbE6IjZm3x1fyer2\nusQi4tCIeCwi1me9/mZWL4+I32S9/ueIGJjVD8m2m7L9o3pz/H1NRJRFxJMRcV+23Xf6nFJy6WAB\nRgIPUPiFt8Oy2unAvwEBTAZ+k9WHAs9nfw7J1of09mfoCwswqGj9vwE/stfd0ucZQP9s/dvAt7P1\nY4H1wCFAOfAcUJYtzwFHAQOzY47t7c/RFxbgGOBTwMNAdVHdXndv3+1j6Xt6MnA88FRR7TvAVdn6\nVUXfJe1+Z7vsU5+PAI7P1g8Hfpd9X9jr0vc6gA9n6wOA32Q9vAOYldV/BFySrV9a9O+SWcA/9/Zn\n6EsL8DVgKXBftt1n+uwVpc7dCFwBFM96cRZweyp4FBgcEUcApwIrU0otKaVWYCVwWo+PuA9KKb1R\ntHkY7/bbXpdQSunBlNKObPNR4Mhs/SxgWUrp7ZTS74Em4MRsaUopPZ9SegdYlh2rTqSUNqaUftvO\nLnvdvexjiaWU/h1oyZXPApZk60uAs4vq7X1nqxMppS0ppbXZ+p+BjcAI7HXJZT17M9sckC0JOAVY\nntXzvd79d7AcmBYR0UPD7dMi4kjg74CfZttBH+qzQakDEXEm8MeU0vrcrhHAi0Xbm7Pa3uraBxFx\nbUS8CMwBFmZle919vkThp5Fgn3uSve5e9rFn/KeU0hYo/AMf+FhWt/8lkN1ydByFKx32uhtkt4Ot\nA16h8MPW54DXi36YWNzPtl5n+7cCH+3ZEfdZ36dwwWFXtv1R+lCf+/fmm+8PImIV8Fft7FoA/BOF\nW5X2eFk7tdRBXXTc65TS3SmlBcCCiLgamA8swl6/b531OTtmAbADqN/9snaOT7T/wxT7nNmXXrf3\nsnZq9rp0/G7oXfa/iyLiw8AK4L+nlN7o4Afq9roLUko7gQnZs7r/QuF26T0Oy/601x9ARJwBvJJS\neiIiPrO73M6h+22fD/qglFKa3l49IiooPD+wPvuSOhJYGxEnUki/I4sOPxJ4Kat/Jld/uOSD7qP2\n1ut2LAV+SSEo2ev3qbM+ZxNfnAFMS9mNwOy9z3RQP+i9j/+mi9nr7tVRf1U6L0fEESmlLdntXq9k\ndfvfBRExgEJIqk8p3ZWV7XU3Sim9HhEPU3hGaXBE9M+uZhT3c3evN0dEf+Aj7Hk7qvY0BTgzIk4H\nDgUGUbjC1Gf67K13e5FS2pBS+lhKaVRKaRSFv7zjU0r/AdwDnJ/NODMZ2JpdDn8AmBERQ7JZaWZk\nNXUiIsYUbZ4JbMrW7XUJRcRpwJXAmSmlbUW77gFmZTPOlANjgMeAx4Ex2Qw1Ayk8XHlPT4/7AGOv\nu5d97Bn3ALtnG50L3F1Ub+87W53InsW4FdiYUvpe0S57XWIRMTy7kkREfAiYTuGZsNXAudlh+V7v\n/js4F3io6AeN2ouU0tUppSOzf0fPotC3OfShPh/0V5Q+oPspzDbTBGwDLgRIKbVExGIK/6MGqE0p\n+ROHffOtiPgUhXtYXwAuzur2urTqKMy2tjK7UvpoSunilNLTEXEH8AyFW/Iuy25LICLmUwihZcBt\nKaWne2fofUtE/D3wA2A48MuIWJdSOtVed6+U0g77WFoR8QsKV/CHRcRmClf7vwXcERH/BfgDMDM7\nvN3vbO2TKcAXgQ3ZszNQeATAXpfeEcCSiCijcNHgjpTSfRHxDLAsIv4H8CSF4Er25/+KiCYKVzhm\n9cagDyBX0kf6HAZiSZIkSXovb72TJEmSpByDkiRJkiTlGJQkSZIkKcegJEmSJEk5BiVJkiRJyjEo\nSZIkSVKOQUmSJEmScv4/DT8F1IcITyIAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.manifold import TSNE\n", + "\n", + "words = sum([[k] + v for k, v in similar_words.items()], [])\n", + "words_ids = [word2id[w] for w in words]\n", + "word_vectors = np.array([weights[idx] for idx in words_ids])\n", + "print('Total words:', len(words), '\\tWord Embedding shapes:', word_vectors.shape)\n", + "\n", + "tsne = TSNE(n_components=2, random_state=0, n_iter=10000, perplexity=3)\n", + "np.set_printoptions(suppress=True)\n", + "T = tsne.fit_transform(word_vectors)\n", + "labels = words\n", + "\n", + "plt.figure(figsize=(14, 8))\n", + "plt.scatter(T[:, 0], T[:, 1], c='steelblue', edgecolors='k')\n", + "for label, x, y in zip(labels, T[:, 0], T[:, 1]):\n", + " plt.annotate(label, xy=(x+1, y+1), xytext=(0, 0), textcoords='offset points')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Leveraging gensim for building a word2vec model" + ] + }, + { + "cell_type": "code", + "execution_count": 1065, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'egypt': ['pharaoh', 'egyptians', 'bondage', 'rod', 'flowing'],\n", + " 'famine': ['pestilence', 'peril', 'blasting', 'mildew', 'morever'],\n", + " 'god': ['lord', 'promised', 'worldly', 'glory', 'reasonable'],\n", + " 'gospel': ['faith', 'afflictions', 'christ', 'persecutions', 'godly'],\n", + " 'jesus': ['peter', 'messias', 'apostles', 'immediately', 'neverthless'],\n", + " 'john': ['baptist', 'james', 'peter', 'galilee', 'zebedee'],\n", + " 'moses': ['congregation', 'children', 'aaron', 'ordinance', 'doctor'],\n", + " 'noah': ['shem', 'japheth', 'ham', 'noe', 'henoch']}" + ] + }, + "execution_count": 1065, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from gensim.models import word2vec\n", + "\n", + "# tokenize sentences in corpus\n", + "wpt = nltk.WordPunctTokenizer()\n", + "tokenized_corpus = [wpt.tokenize(document) for document in norm_bible]\n", + "\n", + "# Set values for various parameters\n", + "feature_size = 100 # Word vector dimensionality \n", + "window_context = 30 # Context window size \n", + "min_word_count = 1 # Minimum word count \n", + "sample = 1e-3 # Downsample setting for frequent words\n", + "\n", + "w2v_model = word2vec.Word2Vec(tokenized_corpus, size=feature_size, \n", + " window=window_context, min_count=min_word_count,\n", + " sample=sample, iter=50)\n", + "\n", + "# view similar words based on gensim's model\n", + "similar_words = {search_term: [item[0] for item in w2v_model.wv.most_similar([search_term], topn=5)]\n", + " for search_term in ['god', 'jesus', 'noah', 'egypt', 'john', 'gospel', 'moses','famine']}\n", + "similar_words" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualizing word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 1080, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA0EAAAHVCAYAAAA3lfClAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XtYVWX+///nAh3LE+poZaWifRUQOQkaggfUsay0PHYQ\nFTRzwMaaZnTUzGMxV038OmiWY6OYDkylppZTM2ZJSupHUZFAJbSQDo6RgaFocrh/f2zcgaKiAhvc\nr8d1ea297nWve73X3uq13/u+131bxhhERERERESchYujAxAREREREalJSoJERERERMSpKAkSERER\nERGnoiRIREREREScipIgERERERFxKkqCRERERETEqSgJEhERERERp6IkSEREREREnMo1J0GWZbWx\nLGuzZVn7LctKtyzrydLyFpZlfWxZVmbptnmZc2ZYlnXIsqwMy7LuvtYYREREREREKssyxlxbA5bV\nGmhtjNljWVYTYDcwBIgEfjLGPG9Z1nSguTFmmmVZnYF/Ad2BW4FNQCdjTPGlrtOyZUvj7u5+TbGK\niIiIiMj1a/fu3T8aY1pdrl69a72QMeYocLT0db5lWQeA24AHgLDSam8BicC00vK3jTG/AF9blnUI\nW0K0/VLXcXd3Jzk5+VrDFRERERGR65RlWUcqU69KnwmyLMsdCAD+D7i5NEEC+B9wc+nr24Bvypz2\nbWlZRe1NtCwr2bKs5JycnKoMVUREREREnFSVJUGWZTUG1gB/NMb8XPaYsY25u+Jxd8aYJcaYIGNM\nUKtWl+3VEhERERERuawqSYIsy6qPLQGKN8a8V1p8rPR5oXPPDf1QWv4d0KbM6beXlomIiIiIiFS7\nqpgdzgKWAgeMMS+VOfQ+EFH6OgJYX6b8YcuyGliW1R7oCOy81jhEREREREQq45onRgBCgTHAF5Zl\npZSWPQ08D7xrWdajwBHgQQBjTLplWe8C+4Ei4PHLzQwnIiIiIiJSVapidrgkwLrI4f4XOScGiLnW\na4uIiIiIiFypKp0dTkREREREpLZTEiQiIiIiIk5FSZCIiIiIiDgVJUHilLKysujSpcsF5WFhYSQn\nJ19xe+vWrWP//v32/dmzZ7Np06ZrilFEREREqoeSIJEqcH4SNH/+fH73u985MCIRERERuRglQeK0\nioqKCA8Px8vLixEjRlBQUFDueHR0NEFBQXh7ezNnzhx7+fTp0+ncuTO+vr5MmTKFbdu28f777zN1\n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\ncfLkSQC+++47fvjhB77//nsaNmzI6NGjmTp1Knv27Kn2271i82fCuALwBupBtwFwf7DBd+JE7rnn\nHnx8fHBzc+Ott95i6tSp+Pr6kpKSwuzZswGIi4vj8ccfx9/fH2PMRS9z//33c/LkSQ2FE5FaR88E\niYjI9afsl3ywbUeegX8cu+Rpc+fOZfz48fj6+tKwYUPeeustAF555RU2b95sH0Z3zz330KBBAw4c\nOECPHj0AaNy4Mf/85z85dOgQU6dOxcXFhfr16/PGG29U441epcxs8ChfNGUMzN1WTMF//0vv3r0J\nDAzE39+fHTt2XHB6YGBguUkR/va3vwEQFhZGWFiYvXzfvn34+fnh6elZLbchInK1rEv9glObBAUF\nmXOz1YiIiFySq4utB6jsT31F2BbhLS5xVFS1h6e7rXfM+9eiUTGw/3B9zrh3ICIighkzZlzTJZ5/\n/nneeOMN4uPj6dmz57XFKyJSSZZl7TbGBF22npIgERG57lTwJZ90YE07OJjlmJhqk3PDBccV2HqE\nMoC4hhC7RIsVi0idVtkkSM8EiYjI9Wd2jO1LfTq2HqB0bPuzYxwcWC0xKtyW8KxpZ+sdW9NOCZCI\nOBU9EyQiItefc1/m58+0Pf/SsS3ExuhLflmjwvV+iIjTUhIkIiLXJ33JFxGRi9BwOBERERERcSpK\ngkRERERExKkoCRIREREREaeiJEhERERERJyKkiAREREREXEqSoJERERERMSpKAkSERERERGnoiRI\nREREREScipIgERERERFxKkqCRERERETEqSgJEhERERERp6IkSEREREREnIqSIBERERERcSpKgkRE\nRERExKkoCRIREREREaeiJEhERERERJyKw5Igy7IGWpaVYVnWIcuypjsqDhERERERcS4OSYIsy3IF\nFgH3AJ2BRyzL6uyIWERERERExLk4qieoO3DIGPOVMeYs8DbwgINiERERERERJ+KoJOg24Jsy+9+W\nlolcUmJiItu2bbPvL168mBUrVjgwIoELPxcRERGR2qyeowO4FMuyJgITAdq2bevgaKQ2SExMpHHj\nxoSEhAAQFRXl4IgELvxcRERERGozR/UEfQe0KbN/e2lZOcaYJcaYIGNMUKtWrWosOLk2//znP+ne\nvTv+/v78/ve/p7i4mKVLl9KpUye6d+/OY489xh/+8Afy8/Np3749hYWFAPz888/2/bCwMJ588kn8\n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\nTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.manifold import TSNE\n", + "\n", + "words = sum([[k] + v for k, v in similar_words.items()], [])\n", + "wvs = w2v_model.wv[words]\n", + "\n", + "tsne = TSNE(n_components=2, random_state=0, n_iter=10000, perplexity=2)\n", + "np.set_printoptions(suppress=True)\n", + "T = tsne.fit_transform(wvs)\n", + "labels = words\n", + "\n", + "plt.figure(figsize=(14, 8))\n", + "plt.scatter(T[:, 0], T[:, 1], c='orange', edgecolors='r')\n", + "for label, x, y in zip(labels, T[:, 0], T[:, 1]):\n", + " plt.annotate(label, xy=(x+1, y+1), xytext=(0, 0), textcoords='offset points')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Applying the word2vec model on our sample corpus" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "wpt = nltk.WordPunctTokenizer()\n", + "tokenized_corpus = [wpt.tokenize(document) for document in norm_corpus]\n", + "\n", + "# Set values for various parameters\n", + "feature_size = 10 # Word vector dimensionality \n", + "window_context = 10 # Context window size \n", + "min_word_count = 1 # Minimum word count \n", + "sample = 1e-3 # Downsample setting for frequent words\n", + "\n", + "w2v_model = word2vec.Word2Vec(tokenized_corpus, size=feature_size, \n", + " window=window_context, min_count = min_word_count,\n", + " sample=sample, iter=100)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualize word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\nFUmqmJz+TlLl0b9o3O7EcbBpa2FPdOrkr9qP0l/+8hcyMzNZvXo1O3fuJDk5mc6dO9OvXz/+/Oc/\nc9lll/Hll1/y1ltv8eijjzJ9+nTq1q3LypUr+eKLL+jQoQPdu3enUaNGJXiT5cPSpUsji9RcdNFF\nfPrpp3z22WfUqVOHJ554gs6dO/Pggw9y/vnnl3GlkhQ9uwEkVS79U2BjNhwoKHyNMkRDYVi8/vrr\niYmJoX79+nTp0oWVK1dy6aWXsnDhQr744gteffVVOnfuzA9+8APeeOMNZs6cSWJiIu3atePTTz9l\n06ZNJXZrRyonJ4du3brRunVr4uPjefHFF4HCHuXExEQSExNp1KgRF154IU899RS33npr5NwnnniC\n22677Zg+f82aNZx22ml8/PHHx3QdSSprBmlJKmE1atSga9euvP7668yZM4d+/foBhUNBHnroITIz\nM8nMzOSDDz6ge/fuZVLf888/z6pVq1i4cCH/+7//SxiG3HjjjWRmZrJy5UrOOeccfvGLX3Dttdfy\n0ksvsX//fgDS0tIYMmTIVxcrPi9301j4/HMAOnXqxKxZs4DCpdXr1atHnTp12LJlCw888ADvvPMO\nr776Km+//XYp370klRyDtCQdieKBMTcXZs+iU6dOzJkzhwMHDrBjxw4WL15M27ZtAejXrx9paWks\nWbKEnj17AtCjRw8effTRSCj917/+xedFwbM0hWHIHXfcQUJCAhdffDHbtm3jk08+iewfNWoUF110\nEZdffjm1atXioosuYv78+WzcuJH9+/cTHx9feODX5uWm7xbY9SnMm8uECRPIyMggISGBsWPH8vTT\nTxOGIT/96U9JTU3lrLPOYvr06QwdOvSoF72RpPLC6e8k6XAOBsbBudAEag2FnHo1CX/3GL/MXM2r\nr75KEASMHz8+0vu8f/9+6tevT+/evUlLSwOgoKCA8ePH89JLLxGGIaeffjovvPACdevWPX51FxsP\nXiv73+Tk5TFjxgxeffVVnnnmGapVq0ZsbCyLFi0iNjaWGTNm8Nxzz/HSSy9FHgJ8++23+c1vfkPT\npk0599xzGTFiROH1m8YWhucWxT5zHTDv3MJhM5JUAR3N9HcGaUk6nIoYGL8W/smCWr+FnGee4Y87\ndvLee+/x0EMPsXDhQi666CI++OADPv30UwYOHMiSJUs45ZRTyM7OplevXqxdu5bWrVuzY8cO3n33\n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\n1KpVi5kzZ/LHP/7xiMstq27LtsB7YRi+DxAEwbNAb6D8BOliK4J93OgsTh0/iQGDBnPyySfz5JNP\nAlCvXj1ycnKYO3duZMqm2NhYMjIyaNu2beSJUID333+f8847j1tuuYWtW7fy7rvv0qhRI0455RRq\n1qzJxo0bI/8jSk5O5tZbb2XXrl3Url2befPmRZbk7d69Ow899BBjxowBIDMzk8TERDZv3kx8fDzx\n8fGsXLmSjRs3GqQlHZ2KOM2fpBPLEX6hT0xMjDzYXNxNN930rb+cfdcX94EDBzJw4MCoyy2roR1n\nAx8W2/6oqK18+NrPCmuSt9F22E9JPPdc7r77bsaPH8+wYcOIi4ujR48eJCcnR04dPXo0jz76KK1a\ntWLnzp2R9j//+c/ExcWRmJjI2rVrueGGG+jZsyf5+fk0a9aMsWPH0r59ewDOPvts7rjjDtq2bUuH\nDh2IjY2NLCE8ZcoU0tPTSUhIoHnz5kybNg2AP/zhD8TFxZGQkEC1atW49NJLS/EPJumEUBGn+ZN0\nYimhqTtLS5ksER4EwdVAzzAMhxZt/w/QLgzDkV87bjgwHKBhw4ZttmzZUjoFloPlgHNycqhVqxb5\n+fn06dOHIUOG0KdPn1L5bEmVWLFf42jcsDBEl/cZSiSdOA52Zg7OLeyZzqLwC30pTjlaEZYI3wY0\nKLZ9TlHbIcIwfBx4HCApKan0En85WA54woQJLFiwgLy8PLp3786VV15Zap8tqRLrn2JwllR2Dv73\np/gX+tTy+4W+rHqkqwL/ArpRGKBXAv3DMPzOqS+SkpLCg/MzH3floEdakiRJpe9oeqTLZIx0GIb5\nwEjgdWAD8OfvC9GlznGCkiRJOowym2w4DMNXgFfK6vO/VwX7WUGSJEmlz1U7vovjBCVJkvQ9XCJc\nkiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqS\nJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIk\nSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJ\nioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmK\ngkFakiRJioJBWpIkSYqCQVqSJEmKgkFako5Afn5+WZcgSSpnDNKSBEyaNIkmTZrQsWNHrr/+elJT\nU+natSu33norSUlJ/PGPf2THjh307duX5ORkkpOTWbZsGQCff/45Q4YMoW3btrRq1YoXX3wRgBkz\nZnDVVVfRs2dPGjduzC9/+cuyvEVJUgmrWtYFSFJZW7lyJfPmzWP16tXs37+f1q1b06ZNGwC+/PJL\n0tPTAejfvz+33XYbHTt2ZOvWrfTo0YMNGzYwefJkLrroIp566il2795N27ZtufjiiwHIzMzknXfe\noXr16jRp0oSbb76ZBg0alNm9SpJKjkFaUqW3bNkyevfuTY0aNahRowaXX355ZF+/fv0i7xcsWMD6\n9esj25999hk5OTm88cYb/PWvfyU1NRWAvLw8tm7dCkC3bt2oW7cuAM2bN2fLli0GaUk6QRikJel7\nnHTSSZH3BQUFrFixgho1ahxyTBiGzJs3jyZNmhzS/vbbb1O9evXIdkxMjGOtJekE4hhpSZXX7FnQ\nNJYOv7iNl+67l7wZaeTk5DB//vxvPbx79+489NBDke3MzEwAevTowUMPPUQYhgC88847x792SVKZ\nM0hLqpxmz4LRw6HvFpJnwBXJX5Iw9KdcmtSG+Pj4yHCM4qZMmUJ6ejoJCQk0b96cadOmAXDnnXey\nf/9+EhISaNGiBXfeeWcp34wkqSwEB3tQyrukpKTw4AM/knTMmsZC3y3QonAzJw9qbYbc5xrQuc4Z\nPP7447Ru3bpMS5Qklb4gCDLCMEw6kmOPqUc6CIJrgiBYFwRBQRAESV/b96sgCN4LgiArCIIexdrb\nBEGwpmjflCAIgmOpQZKismkrFBvSPPxJSHwGWm/6kL59+xqiJUmHdawPG64FrgIeK94YBEFz4DoK\n+3rOAhYEQXBBGIYHgEeBYcDbwCtAT+DVY6xDko5O44aQ9VWP9OyRwDpg3rnwq1+VZWWSpArimHqk\nwzDcEIZh1rfs6g08G4bhF2EYfgC8B7QNguBMoE4YhivCwjElM4Erj6UGSYrKXZMhrWZheM6n8DWt\nZmG7JElH4HhNf3c2sKLY9kdFbfuL3n+9XZJKV/+UwteJ4wqHeTRuCKmTv2qXJOkwDhukgyBYAPzw\nW3aNC8PwxZIv6ZDPHg4MB2jYsOHx/ChJlVH/FIOzJClqhw3SYRheHMV1twHFl+46p6htW9H7r7d/\n12c/DjwOhbN2RFGHJEmSdFwcr3mk/wpcFwRB9SAIGgGNgX+GYbgd+CwIgvZFs3XcABzXXm1JkiTp\neDjW6e/6BEHwEfBj4OUgCF4HCMNwHfBnYD3wGvDzohk7AEYAT1L4AOJmnLFDkiRJFZALskiSJElF\nSm1BFkmSJKmyMkhLkiRJUTBIS5IkSVEwSEuSJElRMEhLkiRJUTBIS5IkSVEwSEuSJElRMEhLkiRJ\nUTBIS5IkSVEwSEuSJElRMEhLkiRJUTBIS5IkSVEwSEuSJElRMEhLkiRJUTBIS5IkSVEwSEtSJfHM\nM8/Qtm1bEhMT+dnPfsaBAweYPn06F1xwAW3btmXYsGGMHDkSgM2bN9O+fXvi4+MZP348tWrVAmD7\n9u107tyZxMRE4uLiWLJkSVnekiSVKYO0pCO2e/dupk6delTnDBo0iLlz5x6ninSkNmzYwJw5c1i2\nbBmZmZnExMQwa9YsJk2axIoVK1i2bBkbN26MHD9q1ChGjRrFmjVrOOeccyLts2fPpkePHmRmZrJ6\n9WoSExPL4nYkqVwwSEs6YtEEaZUPb731FhkZGSQnJ5OYmMhbb73F73//e7p06cKpp55KtWrVuOaa\nayLHL1++PLLdv3//SHtycjJpaWlMmDCBNWvWULt27VK/F0kqLwzSko7Y2LFj2bx5M4mJiYwZM4Yx\nY8YQFxdHfHw8c+bMASAMQ0aOHEmTJk24+OKL+c9//hM5f+LEiSQnJxMXF8fw4cMJw5DNmzfTunXr\nyDGbNm06ZFslIwxDBg4cSGZmJpmZmWRlZTFhwoSjvk7nzp1ZvHgxZ599NoMGDWLmzJklX6wkVRAG\naUlH7N577+X8888nMzOT9u3bR37eX7BgAWPGjGH79u08//zzZGVlsX79embOnMk//vGPyPkjR45k\n5cqVrF27ln379jF//nzOP/986tatS2ZmJgBpaWkMHjy4rG7xxDN7FjSNpduoW5j7QCr/ebTwF4X/\n+7//o1WrVvz9739n165d5OfnM2/evMhp7du3j2w/++yzkfYtW7ZQv359hg0bxtChQ1m1alXp3o8k\nlSMGaUlRWbp0Kddffz0xMTHUr1+fLl26sHLlShYvXhxpP+uss7jooosi5yxcuJB27doRHx/P3/72\nN9atWwfA0KFDSUtL48CBA8yZM+eQoQQ6BrNnwejh0HcLzWfAPZfl0/2WkSQ0bMgll1zC9u3bueOO\n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\nZ0mqAJz+TpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqS\nJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIk\nSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJioJBWpIkSYqCQVqSJEmKgkFakiRJ\nioJBWpIkSYqCQVqSKqns7Gzi4uLKugxJqrAM0pIkSVIUDNKSVIkdOHCAYcOG0aJFC7p3786+fft4\n4oknSE5OpmXLlvTt25fc3FwABg0axE033UT79u0577zzWLRoEUOGDKFZs2YMGjSobG9EksqAQVqS\nKrFNmzbx85//nHXr1nHyySczb948rrrqKlauXMnq1atp1qwZ06dPjxy/a9culi9fzoMPPsgVV1zB\nbbfdxrp161izZg2ZmZlleCeSVPoM0pJUiTVq1IjExEQA2rRpQ3Z2NmvXrqVTp07Ex8cza9Ys1q1b\nFzn+8ssvJwgC4uPjqV+/PvHx8VSpUoUWLVqQnZ1dRnchSWXDIC1JlVj16tUj72NiYsjPz2fQoEE8\n/PDDrFmzhl//+tfk5eV94/gqVaoccm6VKlXIz88vvcIlqRwwSEtSZTJ7FjSNhZgq0K0j7NnzjUP2\n7t3LmWeeyf79+5k1a1bp1yhJFYRBWpIqi9mzYPRw6LsF0kLouQ3+va2wvZhJkybR7v+3d7+hltR1\nHMffH1a0lIzMzUxdd4VtN4WIvKhgBZGkCbFGBYuCQpGE1bMeKAsmidDfJxIpBpmGpP2hXCQp16ge\n2bbG+mfLzVW32mXTMtAnsWl+e3B+N8d1r957zu6ZM3vfL/hx5n5n5u7vng8z89s5M3POPZfzzz+f\n9evX99RZSZp9qaq++7Aoc3NztW3btr67IUnDtX71aBB9Vqe2A/jJ6fDY7n76JEkzJsmDVTW3mGU9\nIy1Jy8Xjf4V1B9TWtbokackmGkgnuT7Jw0m2J/llknd05l2TZFeSnUku7NTPTvJIm3djkkzSB0nS\nIq1dBTsPqO1sdUnSkk16RvrrVfXuqnoPcA9wLUCSM4GNjD5AvAj4dpIVbZ2bgM8Aa1u7aMI+SJIW\n49ob4NZjR5dzvMjo9dZjR3VJ0pIdNcnKVfV858fjgPkLrjcAd1bVfuCpJLuAc5LsBo6vqgcAktwO\nXALcO0k/JEmLcOllo9cvbxpdzrF2FXzjhpfrkqQlmWggDZDkBuBy4Dngg618CvBAZ7E9rfZCmz6w\nvtDvvhK4EmDVKj96lKSJXXqZA2dJOkRe99KOJFuSPHqQtgGgqjZV1WnAHcDnD2XnquqWqpqrqrmV\nK1ceyl8tSZIkTeR1z0hX1QWL/F13AD8HvgTsBU7rzDu11fa26QPrkiRJ0qBM+tSOtZ0fNwCPtenN\nwMYkxyRZw+imwq1VtQ94Psl57WkdlwN3T9IHSZIkqQ+TXiP9lSTrgJeAvwCfBaiqHUl+CPyR0b3h\nn6uq/7Z1rgK+B7yR0U2G3mgoSZKkwfGbDSVJkqTGbzaUJEmSDjMH0pIkSdIYHEhLkiRJY3AgLUmS\nJI3BgbQkSZI0hsE8tSPJPxg9Yg/gROCfPXZHi2NOw2FWw2FWw2BOw2FWwzDNnE6vqkV9pfZgBtJd\nSbYt9rEk6o85DYdZDYdZDYM5DYdZDcOs5uSlHZIkSdIYHEhLkiRJYxjqQPqWvjugRTGn4TCr4TCr\nYTCn4TCrYZjJnAZ5jbQkSZLUt6GekZYkSZJ6NXMD6SSfTLIjyUtJ5jr11Un+nWR7azd35p2d5JEk\nu5LcmCStfkySu1r9d0lWT/8vOnItlFWbd01733cmubBTN6seJbkuyd7OdnRxZ96SMtN0JbmoZbMr\nydV992e5S7K7bRfbk2xrtROS3Jfk8fb6ls7yB92+dOgl+W6SZ5I82qktORv3fYffAlkN6zhVVTPV\ngHcB64BfA3Od+mrg0QXW2QqcBwS4F/hIq18F3NymNwJ39f33HUntNbI6E3gIOAZYAzwBrDCr/htw\nHfDFg9SXnJltqrmtaJmcARzdsjqz734t5wbsBk48oPY14Oo2fTXw1Ta94PZlOyzZfAB4b3fMME42\n7vt6y2pQx6mZOyNdVX+qqp2LXT7JycDxVfVAjd7N24FL2uwNwG1t+sfAh/wf5aHzGlltAO6sqv1V\n9RSwCzjHrGbaOJlpes4BdlXVk1X1H+BORplptnT3Y7fxyv3bq7avHvq3LFTVb4F/HVBeUjbu+6Zj\ngawWMpNZzdxA+nWsaaf5f5Pk/a12CrCns8yeVpuf9zeAqnoReA5467Q6u4z9/31v5jMxq9nwhSQP\nt4/U5j/eHCczTc9C+ag/BWxJ8mCSK1vtpKra16b/DpzUps2vf0vNxn1fvwZznDpqWv9QV5ItwNsP\nMmtTVd29wGr7gFVV9WySs4GfJTnrsHVSwNhZqUevlRlwE3A9o0HA9cA3gU9Nr3fSEeN9VbU3yduA\n+x2vn4gAAAHbSURBVJI81p1ZVZXEx2LNILOZeYM6TvUykK6qC8ZYZz+wv00/mOQJ4J3AXuDUzqKn\nthrt9TRgT5KjgDcDz07Q9WVnnKx4+X2fN5+JWU3BYjNL8h3gnvbjOJlpehbKRz2pqr3t9ZkkP2V0\nqcbTSU6uqn3t4+Zn2uLm17+lZuO+rydV9fT89BCOU4O5tCPJyiQr2vQZwFrgyfZRzfNJzmvX1F4O\nzJ8p3Qxc0aY/AfyqXT+jw2szsLE9iWMNo6y2mlX/2gFk3seA+Tulx8lM0/N7YG2SNUmOZnRD7uae\n+7RsJTkuyZvmp4EPM9qWuvuxK3jl/u1V29d0e73sLSkb9339Gdxxqs+7NQ/W2pu2h9HZ56eBX7T6\nx4EdwHbgD8BHO+vMMXqjnwC+xctfNPMG4EeMLkjfCpzR9993JLWFsmrzNrU8dtK5e9ases/s+8Aj\nwMOMdkonj5uZberZXQz8ueWwqe/+LOfG6OkpD7W2Yz4PRvd13A88DmwBTuisc9Dty3ZY8vkBo8tB\nX2jHqE+Pk437vt6yGtRxym82lCRJksYwmEs7JEmSpFniQFqSJEkagwNpSZIkaQwOpCVJkqQxOJCW\nJEmSxuBAWpIkSRqDA2lJkiRpDA6kJUmSpDH8DxRV1lZiwMFXAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.manifold import TSNE\n", + "\n", + "words = w2v_model.wv.index2word\n", + "wvs = w2v_model.wv[words]\n", + "\n", + "tsne = TSNE(n_components=2, random_state=0, n_iter=5000, perplexity=2)\n", + "np.set_printoptions(suppress=True)\n", + "T = tsne.fit_transform(wvs)\n", + "labels = words\n", + "\n", + "plt.figure(figsize=(12, 6))\n", + "plt.scatter(T[:, 0], T[:, 1], c='orange', edgecolors='r')\n", + "for label, x, y in zip(labels, T[:, 0], T[:, 1]):\n", + " plt.annotate(label, xy=(x+1, y+1), xytext=(0, 0), textcoords='offset points')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Sample word embedding" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.04576328, 0.02328374, -0.04483001, 0.0086611 , 0.05173225,\n", + " 0.00953358, -0.04087641, -0.00427487, -0.0456274 , 0.02155695], dtype=float32)" + ] + }, + "execution_count": 81, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "w2v_model.wv['sky']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Build framework for getting document level embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "def average_word_vectors(words, model, vocabulary, num_features):\n", + " \n", + " feature_vector = np.zeros((num_features,),dtype=\"float64\")\n", + " nwords = 0.\n", + " \n", + " for word in words:\n", + " if word in vocabulary: \n", + " nwords = nwords + 1.\n", + " feature_vector = np.add(feature_vector, model[word])\n", + " \n", + " if nwords:\n", + " feature_vector = np.divide(feature_vector, nwords)\n", + " \n", + " return feature_vector\n", + " \n", + " \n", + "def averaged_word_vectorizer(corpus, model, num_features):\n", + " vocabulary = set(model.wv.index2word)\n", + " features = [average_word_vectors(tokenized_sentence, model, vocabulary, num_features)\n", + " for tokenized_sentence in corpus]\n", + " return np.array(features)" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789
00.0046900.009370-0.0096670.0260140.0349890.010402-0.033441-0.011956-0.0002430.010552
10.0057510.003210-0.0019640.0165500.0309620.004340-0.019463-0.0091490.0082560.019600
20.0167120.004806-0.001924-0.0272260.029162-0.017201-0.023197-0.008610-0.0119760.020602
3-0.0092160.003900-0.009232-0.0052320.042718-0.032432-0.0062430.0135240.0080950.021227
4-0.016321-0.008715-0.001633-0.0005010.027367-0.0378610.0085150.0210660.0203730.016512
50.0185380.007522-0.009302-0.0254400.037199-0.009890-0.021419-0.011769-0.0022210.018277
60.0085320.008041-0.0165730.0186530.0361400.004038-0.0228910.000484-0.0059000.015766
70.0244190.012915-0.010596-0.0393500.037018-0.013378-0.020677-0.004417-0.0118640.013540
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 0.004690 0.009370 -0.009667 0.026014 0.034989 0.010402 -0.033441 \n", + "1 0.005751 0.003210 -0.001964 0.016550 0.030962 0.004340 -0.019463 \n", + "2 0.016712 0.004806 -0.001924 -0.027226 0.029162 -0.017201 -0.023197 \n", + "3 -0.009216 0.003900 -0.009232 -0.005232 0.042718 -0.032432 -0.006243 \n", + "4 -0.016321 -0.008715 -0.001633 -0.000501 0.027367 -0.037861 0.008515 \n", + "5 0.018538 0.007522 -0.009302 -0.025440 0.037199 -0.009890 -0.021419 \n", + "6 0.008532 0.008041 -0.016573 0.018653 0.036140 0.004038 -0.022891 \n", + "7 0.024419 0.012915 -0.010596 -0.039350 0.037018 -0.013378 -0.020677 \n", + "\n", + " 7 8 9 \n", + "0 -0.011956 -0.000243 0.010552 \n", + "1 -0.009149 0.008256 0.019600 \n", + "2 -0.008610 -0.011976 0.020602 \n", + "3 0.013524 0.008095 0.021227 \n", + "4 0.021066 0.020373 0.016512 \n", + "5 -0.011769 -0.002221 0.018277 \n", + "6 0.000484 -0.005900 0.015766 \n", + "7 -0.004417 -0.011864 0.013540 " + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "w2v_feature_array = averaged_word_vectorizer(corpus=tokenized_corpus, model=w2v_model,\n", + " num_features=feature_size)\n", + "pd.DataFrame(w2v_feature_array)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Clustering with word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentCategoryClusterLabel
0The sky is blue and beautiful.weather2
1Love this blue and beautiful sky!weather2
2The quick brown fox jumps over the lazy dog.animals1
3A king's breakfast has sausages, ham, bacon, eggs, toast and beansfood0
4I love green eggs, ham, sausages and bacon!food0
5The brown fox is quick and the blue dog is lazy!animals1
6The sky is very blue and the sky is very beautiful todayweather2
7The dog is lazy but the brown fox is quick!animals1
\n", + "
" + ], + "text/plain": [ + " Document \\\n", + "0 The sky is blue and beautiful. \n", + "1 Love this blue and beautiful sky! \n", + "2 The quick brown fox jumps over the lazy dog. \n", + "3 A king's breakfast has sausages, ham, bacon, eggs, toast and beans \n", + "4 I love green eggs, ham, sausages and bacon! \n", + "5 The brown fox is quick and the blue dog is lazy! \n", + "6 The sky is very blue and the sky is very beautiful today \n", + "7 The dog is lazy but the brown fox is quick! \n", + "\n", + " Category ClusterLabel \n", + "0 weather 2 \n", + "1 weather 2 \n", + "2 animals 1 \n", + "3 food 0 \n", + "4 food 0 \n", + "5 animals 1 \n", + "6 weather 2 \n", + "7 animals 1 " + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.cluster import AffinityPropagation\n", + "\n", + "ap = AffinityPropagation()\n", + "ap.fit(w2v_feature_array)\n", + "cluster_labels = ap.labels_\n", + "cluster_labels = pd.DataFrame(cluster_labels, columns=['ClusterLabel'])\n", + "pd.concat([corpus_df, cluster_labels], axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.decomposition import PCA\n", + "\n", + "pca = PCA(n_components=2, random_state=0)\n", + "pcs = pca.fit_transform(w2v_feature_array)\n", + "labels = ap.labels_\n", + "categories = list(corpus_df['Category'])\n", + "plt.figure(figsize=(8, 6))\n", + "\n", + "for i in range(len(labels)):\n", + " label = labels[i]\n", + " color = 'orange' if label == 0 else 'blue' if label == 1 else 'green'\n", + " annotation_label = categories[i]\n", + " x, y = pcs[i]\n", + " plt.scatter(x, y, c=color, edgecolors='k')\n", + " plt.annotate(annotation_label, xy=(x+1e-4, y+1e-3), xytext=(0, 0), textcoords='offset points')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## GloVe Embeddings with spaCy" + ] + }, + { + "cell_type": "raw", + "metadata": {}, + "source": [ + "# Use the following command to install spaCy\n", + "> pip install -U spacy\n", + "\n", + "OR\n", + "\n", + "> conda install -c conda-forge spacy\n", + "\n", + "\n", + "# Download the following language model and store it in disk\n", + "https://github.com/explosion/spacy-models/releases/tag/en_vectors_web_lg-2.0.0\n", + "\n", + "\n", + "# Link the same to spacy \n", + "> python -m spacy link ./spacymodels/en_vectors_web_lg-2.0.0/en_vectors_web_lg en_vecs\n", + "\n", + " Linking successful\n", + " ./spacymodels/en_vectors_web_lg-2.0.0/en_vectors_web_lg --> ./Anaconda3/lib/site-packages/spacy/data/en_vecs\n", + "\n", + " You can now load the model via spacy.load('en_vecs')" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total word vectors: 1070971\n" + ] + } + ], + "source": [ + "import spacy\n", + "\n", + "nlp = spacy.load('en_vecs')\n", + "\n", + "total_vectors = len(nlp.vocab.vectors)\n", + "print('Total word vectors:', total_vectors)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualize GloVe word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...290291292293294295296297298299
fox-0.348680-0.0777200.177750-0.094953-0.4528900.2377900.2094400.0378860.0350640.899010...-0.2830500.270240-0.6548000.105300-0.068738-0.5347500.0617830.123610-0.553700-0.544790
ham-0.773320-0.2825400.5807600.8414800.2585400.585210-0.021890-0.4636800.1390700.658720...0.4644700.481400-0.8292000.3549100.224530-0.4939200.456930-0.649100-0.1319300.372040
brown-0.374120-0.0762640.1092600.1866200.0299430.182700-0.6319800.133060-0.1289800.603430...-0.0154040.392890-0.034826-0.720300-0.3653200.7405100.108390-0.365760-0.2881900.114630
beautiful0.1712000.534390-0.348540-0.0972340.101800-0.1708600.295650-0.041816-0.5165502.117200...-0.2855400.1046700.1263100.1200400.2543800.2474000.2076700.1725800.0638750.350990
jumps-0.3348400.215990-0.350440-0.2600200.4110700.154010-0.3861100.2063800.3867001.460500...-0.107030-0.279480-0.186200-0.543140-0.479980-0.2846800.0360220.1902900.692290-0.071501
eggs-0.417810-0.035192-0.126150-0.215930-0.6697400.513250-0.797090-0.0686110.6346601.256300...-0.232860-0.139740-0.681080-0.370920-0.5455100.0737280.111620-0.3247000.0597210.159160
beans-0.423290-0.2645000.2008700.0821870.0669441.027600-0.989140-0.2599500.1459600.766450...0.0487600.351680-0.786260-0.368790-0.5286400.287650-0.273120-1.1140000.0643220.223620
sky0.312550-0.3030800.019587-0.3549400.100180-0.141530-0.5142700.886110-0.5305401.556600...-0.6670500.2791100.500970-0.277580-0.1437200.3427100.2875800.5377400.3634900.496920
bacon-0.430730-0.0160250.4846200.101390-0.2992000.761820-0.353130-0.3252900.1567300.873210...0.3042400.413440-0.540730-0.035930-0.429450-0.2465900.161490-1.065400-0.2449400.269540
breakfast0.0733780.2276700.208420-0.456790-0.0782190.601960-0.024494-0.4679800.0546272.283700...0.6477100.3738200.019931-0.033672-0.0731840.2968300.340420-0.599390-0.0611140.232200
toast0.130740-0.1937300.2532700.090102-0.272580-0.0305710.096945-0.1150600.4840000.848380...0.1420800.4819100.0451670.057151-0.149520-0.495130-0.086677-0.569040-0.3592900.097443
today-0.1565700.594890-0.031445-0.0775860.278630-0.509210-0.066350-0.081890-0.0479862.803600...-0.326580-0.4133800.367910-0.262630-0.203690-0.296560-0.014873-0.250060-0.1159400.083741
blue0.1294500.0365180.032298-0.0600340.399840-0.103020-0.5078800.076630-0.4229200.815730...-0.5012800.1690100.548250-0.319380-0.0728870.3829500.2374100.0522890.1820600.412640
green-0.0723680.2332000.137260-0.1566300.2484400.349870-0.241700-0.091426-0.5301501.341300...-0.4051700.2435700.437300-0.461520-0.3527100.3362500.069899-0.1115500.5329300.712680
kings0.259230-0.8546900.360010-0.6420000.568530-0.3214200.1732500.133030-0.0897201.528600...-0.4700900.063743-0.545210-0.192310-0.3010201.0685000.231160-0.1473300.662490-0.577420
dog-0.0571200.0526850.003026-0.0485170.0070430.041856-0.024704-0.0397830.0096140.308416...0.003257-0.036864-0.0438780.000249-0.0269590.0778950.0443500.0351070.042551-0.010643
sausages-0.174290-0.064869-0.0469760.287420-0.1281500.6476300.056315-0.240440-0.0250940.502220...0.3022400.195470-0.653980-0.291150-0.684290-0.2663700.304310-0.8068300.6195400.201200
lazy-0.353320-0.299710-0.176230-0.321940-0.3856400.5861100.411160-0.4186800.0730931.486500...0.402310-0.038554-0.288670-0.2441300.4609900.5141700.1362600.344190-0.845300-0.077383
love0.1394900.534530-0.252470-0.1256500.0487480.1524400.199060-0.0659700.1288302.055900...-0.1243800.178440-0.0994690.0086820.089213-0.075513-0.049069-0.0152280.0884080.302170
quick-0.4456300.191510-0.2492100.4659000.1619500.212780-0.0464800.0211700.4176601.686900...-0.3294600.421860-0.0395430.1501800.3382200.0495540.149420-0.038789-0.0190690.348650
\n", + "

20 rows × 300 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 \\\n", + "fox -0.348680 -0.077720 0.177750 -0.094953 -0.452890 0.237790 \n", + "ham -0.773320 -0.282540 0.580760 0.841480 0.258540 0.585210 \n", + "brown -0.374120 -0.076264 0.109260 0.186620 0.029943 0.182700 \n", + "beautiful 0.171200 0.534390 -0.348540 -0.097234 0.101800 -0.170860 \n", + "jumps -0.334840 0.215990 -0.350440 -0.260020 0.411070 0.154010 \n", + "eggs -0.417810 -0.035192 -0.126150 -0.215930 -0.669740 0.513250 \n", + "beans -0.423290 -0.264500 0.200870 0.082187 0.066944 1.027600 \n", + "sky 0.312550 -0.303080 0.019587 -0.354940 0.100180 -0.141530 \n", + "bacon -0.430730 -0.016025 0.484620 0.101390 -0.299200 0.761820 \n", + "breakfast 0.073378 0.227670 0.208420 -0.456790 -0.078219 0.601960 \n", + "toast 0.130740 -0.193730 0.253270 0.090102 -0.272580 -0.030571 \n", + "today -0.156570 0.594890 -0.031445 -0.077586 0.278630 -0.509210 \n", + "blue 0.129450 0.036518 0.032298 -0.060034 0.399840 -0.103020 \n", + "green -0.072368 0.233200 0.137260 -0.156630 0.248440 0.349870 \n", + "kings 0.259230 -0.854690 0.360010 -0.642000 0.568530 -0.321420 \n", + "dog -0.057120 0.052685 0.003026 -0.048517 0.007043 0.041856 \n", + "sausages -0.174290 -0.064869 -0.046976 0.287420 -0.128150 0.647630 \n", + "lazy -0.353320 -0.299710 -0.176230 -0.321940 -0.385640 0.586110 \n", + "love 0.139490 0.534530 -0.252470 -0.125650 0.048748 0.152440 \n", + "quick -0.445630 0.191510 -0.249210 0.465900 0.161950 0.212780 \n", + "\n", + " 6 7 8 9 ... 290 \\\n", + "fox 0.209440 0.037886 0.035064 0.899010 ... -0.283050 \n", + "ham -0.021890 -0.463680 0.139070 0.658720 ... 0.464470 \n", + "brown -0.631980 0.133060 -0.128980 0.603430 ... -0.015404 \n", + "beautiful 0.295650 -0.041816 -0.516550 2.117200 ... -0.285540 \n", + "jumps -0.386110 0.206380 0.386700 1.460500 ... -0.107030 \n", + "eggs -0.797090 -0.068611 0.634660 1.256300 ... -0.232860 \n", + "beans -0.989140 -0.259950 0.145960 0.766450 ... 0.048760 \n", + "sky -0.514270 0.886110 -0.530540 1.556600 ... -0.667050 \n", + "bacon -0.353130 -0.325290 0.156730 0.873210 ... 0.304240 \n", + "breakfast -0.024494 -0.467980 0.054627 2.283700 ... 0.647710 \n", + "toast 0.096945 -0.115060 0.484000 0.848380 ... 0.142080 \n", + "today -0.066350 -0.081890 -0.047986 2.803600 ... -0.326580 \n", + "blue -0.507880 0.076630 -0.422920 0.815730 ... -0.501280 \n", + "green -0.241700 -0.091426 -0.530150 1.341300 ... -0.405170 \n", + "kings 0.173250 0.133030 -0.089720 1.528600 ... -0.470090 \n", + "dog -0.024704 -0.039783 0.009614 0.308416 ... 0.003257 \n", + "sausages 0.056315 -0.240440 -0.025094 0.502220 ... 0.302240 \n", + "lazy 0.411160 -0.418680 0.073093 1.486500 ... 0.402310 \n", + "love 0.199060 -0.065970 0.128830 2.055900 ... -0.124380 \n", + "quick -0.046480 0.021170 0.417660 1.686900 ... -0.329460 \n", + "\n", + " 291 292 293 294 295 296 \\\n", + "fox 0.270240 -0.654800 0.105300 -0.068738 -0.534750 0.061783 \n", + "ham 0.481400 -0.829200 0.354910 0.224530 -0.493920 0.456930 \n", + "brown 0.392890 -0.034826 -0.720300 -0.365320 0.740510 0.108390 \n", + "beautiful 0.104670 0.126310 0.120040 0.254380 0.247400 0.207670 \n", + "jumps -0.279480 -0.186200 -0.543140 -0.479980 -0.284680 0.036022 \n", + "eggs -0.139740 -0.681080 -0.370920 -0.545510 0.073728 0.111620 \n", + "beans 0.351680 -0.786260 -0.368790 -0.528640 0.287650 -0.273120 \n", + "sky 0.279110 0.500970 -0.277580 -0.143720 0.342710 0.287580 \n", + "bacon 0.413440 -0.540730 -0.035930 -0.429450 -0.246590 0.161490 \n", + "breakfast 0.373820 0.019931 -0.033672 -0.073184 0.296830 0.340420 \n", + "toast 0.481910 0.045167 0.057151 -0.149520 -0.495130 -0.086677 \n", + "today -0.413380 0.367910 -0.262630 -0.203690 -0.296560 -0.014873 \n", + "blue 0.169010 0.548250 -0.319380 -0.072887 0.382950 0.237410 \n", + "green 0.243570 0.437300 -0.461520 -0.352710 0.336250 0.069899 \n", + "kings 0.063743 -0.545210 -0.192310 -0.301020 1.068500 0.231160 \n", + "dog -0.036864 -0.043878 0.000249 -0.026959 0.077895 0.044350 \n", + "sausages 0.195470 -0.653980 -0.291150 -0.684290 -0.266370 0.304310 \n", + "lazy -0.038554 -0.288670 -0.244130 0.460990 0.514170 0.136260 \n", + "love 0.178440 -0.099469 0.008682 0.089213 -0.075513 -0.049069 \n", + "quick 0.421860 -0.039543 0.150180 0.338220 0.049554 0.149420 \n", + "\n", + " 297 298 299 \n", + "fox 0.123610 -0.553700 -0.544790 \n", + "ham -0.649100 -0.131930 0.372040 \n", + "brown -0.365760 -0.288190 0.114630 \n", + "beautiful 0.172580 0.063875 0.350990 \n", + "jumps 0.190290 0.692290 -0.071501 \n", + "eggs -0.324700 0.059721 0.159160 \n", + "beans -1.114000 0.064322 0.223620 \n", + "sky 0.537740 0.363490 0.496920 \n", + "bacon -1.065400 -0.244940 0.269540 \n", + "breakfast -0.599390 -0.061114 0.232200 \n", + "toast -0.569040 -0.359290 0.097443 \n", + "today -0.250060 -0.115940 0.083741 \n", + "blue 0.052289 0.182060 0.412640 \n", + "green -0.111550 0.532930 0.712680 \n", + "kings -0.147330 0.662490 -0.577420 \n", + "dog 0.035107 0.042551 -0.010643 \n", + "sausages -0.806830 0.619540 0.201200 \n", + "lazy 0.344190 -0.845300 -0.077383 \n", + "love -0.015228 0.088408 0.302170 \n", + "quick -0.038789 -0.019069 0.348650 \n", + "\n", + "[20 rows x 300 columns]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "unique_words = list(set([word for sublist in [doc.split() for doc in norm_corpus] for word in sublist]))\n", + "\n", + "word_glove_vectors = np.array([nlp(word).vector for word in unique_words])\n", + "pd.DataFrame(word_glove_vectors, index=unique_words)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\nWvd58vPzbXBwsD18+LA9cOCAveaaa+z3339vf/75Z9u9e3c7duxYa621gwcPtuvWrbPWWrtv3z7b\nvn17a621t912m12/fr211trc3FxbWFhYJb+LmghItxXMpxraUVudnElgWD4E4vrq+SlXe1xcHLff\nfjuhoaE4HA7at28PwEsvvcQPP/zAjTfeCIDD4eBvf/sbAPfccw9Op5OmTZv66IJEajDN3S0iXhQa\nGsr//u//8vDDD3PbbbfRo0cPlixZwrPPPkt+fj4//PADwcHB7iGY5bn++uuZOXMm3377LXfeeSft\n2rUDYPbs2SxduhSAb775ht27d/Of//yHXr16cemllwJw99138+WXXwKwcuVKduzY4T7vjz/+SF5e\nHt26deP//b//R1xcHHfeeSdXX301ciYF6dpq+hRXiD45bjMY8h5xtTcbEsfGjRvPOCQxMfGsp1u/\nfj0PPfRQ1dQqIiIibtdddx2bN2/mvffeY+rUqfTp04c5c+aQnp5Oq1atmDZtmntIZp06dSgpcd3Y\nXHYKzSFDhtClSxdWrFjBb3/7W1599VX8/PxYuXIlGzdupH79+vTu3ftXp90sKSlh06ZN1KtX75T2\nyZMn079/f9577z26devGhx9+6O6Yk//SGOnaavd+V090WYGl7efg6NGjXHfddVx88cX06dPHa+WJ\niIhIqdMe6vTvOS9Rv359hg4dyqRJk9i8eTMAzZo1Iy8vj9TUVPehAQEBZGRkAJzSvnfvXtq0acOE\nCRMYMGAAX3zxBceOHaNp06bUr1+fXbt2sWnTJgAiIyP59NNPOXLkCEVFRSxZssR9nr59+/Liiy+6\n151OJwB79uwhNDSUhx9+mMjISHbt2lVlv57aTD3StZWXZhJo0qSJ++sdERER8bJyhmJufWwik555\nFr9LL+Wiiy7ilVdeYdmyZYSEhHDFFVcQGRnpPnzixIncc889zJs3j/79+7vb33rrLd544w0uuugi\nrrjiCh599FEuueQS5s6dS1BQEIGBgXTt2hWAq666ikcffZSoqCguvfRS2rdvT+PGjQHXUJCxY8cS\nFhZGUVERPXv2ZO7cucyaNYvVq1fj5+dHcHAw/fr1q9ZfW22heaRrqzP+YeKaSSBhnsZyioiI1BQ1\n5KFOeXl5NGjQgKKiImJiYhg+fDgxMTHV9v61ieaRvhCcDMvTp7iGc7RrDQkzFaJFRERqEi8Nxays\nadOmsXLlSgoKCujbty8DBw6s1vc/X6lHWkRERKSq1JAeaam4c+mR1s2GIiIiIlVFD3U6r2loh4iI\niEhV0VDM85qCtIiIiEhV0kOdzlsa2iEiIiIi4gEFaRERERERDyhIi4iIiIh4QEFaRERERMQDCtIi\nIiIiIh5QkBYRERER8YCCtIgPpKenM2HChF/cp0GDBtVUjYiIiHhC80iL+IDD4cDhqNDTR0VERKSG\nUo+0iJfMnDmT6667ju7duzN48GASEhLo3bs36enpABw+fJiAgAAA1qxZw2233QZAXl4ew4YNIzQ0\nlLCwMJYsWXLKeQ8fPsz111/PihUrqvV6RERE5JepR1rECzIyMli8eDFOp5OioiI6depE586dK3Ts\njBkzaNy4MVu3bgXgyJEj7m0HDx7kjjvu4IknnuCWW26pktpFRETEMwrSIl6wbt06YmJiqF+/PgB3\n3HFHhY9duXIlixcvdq83bdoUgMLCQvr06cOcOXPo1auXdwsWERGRStPQDpEqVKdOHUpKSgAoKCg4\n52M7d+7Mhx9+WBWliYiISCUpSIt4IjkJ2geAvx+0D6DnT3ksW7aM48ePk5uby7vvvgtAQEAAGRkZ\nAKSmppZ7qltuuYU5c+a4108O7TDG8Nprr7Fr1y6eeeaZqr0eEREROWcK0iLnKjkJJo6C2H2QaCF2\nH53mPMW97dsTHh5Ov379iIyMBGDixIm88sordOzYkcOHD5d7uqlTp3LkyBFCQkIIDw9n9erV7m3+\n/v78/e9/Z9WqVbz88svVcnkiUjMdPXrU638HZs2aRX5+vlfPKXIhMdZaX9dQIQ6Hw56c/UDEp9oH\nuEJ0cJm27cCSa2BXNgD/v727jZGquuM4/v2J1JTy0OrCgiJdTMDHBapIaCoaU9KCga628RGjtU2J\nadLYpFCpYENRX0htXzRNINhqtSHVpKA2bcFCQ0VfgDxkBSxSWAvtLnQFNYhSKeK/L+5ZnW5nYGd2\ndmdm+X2Sm7l7zt3h8Mu5d8/euefswoULGThwIHPmzKlAA82sL9q7dy8zZsxgx44dZXvPhoYGNm/e\nTF1dXdne06zWSdoSEV1ao9aTDc2KtfsfcGGnsgtTuZlZD5k3bx4tLS1MmDDho1V8Vq1ahSQWLFjA\nzTffzLvvvktTUxNvv/02x48f58EHH6SpqYn33nuPm266idbWVk6cOMH9999Pe3s7+/fv59prr6Wu\nru5/Pg0zs67xHWmzYnXhjrSZWbnl3pFesWIFS5cuZfXq1Rw6dIgrr7ySjRs3MnToUI4ePcrgwYM5\ndOgQkydPZvfu3axcuZLVq1fz6KOPAnD48GGGDBniO9JmeRRzR9rPSJsV64cPweMDssHzB2Svjw/I\nys3MesFLL73ErbfeSr9+/aivr+eaa65h06ZNRAT33Xcf48aNY+rUqbS1tdHe3k5jYyNr1qzh3nvv\n5cUXX2TIkCGV/i+Y9QkeSJsV67ZZ8Miy7A70XcpeH1mWlZuZVdDy5cs5ePAgW7Zsobm5mfr6et5/\n/33Gjh3L1q1baWxsZMGCBSxatKjSTTXrEzyQNivFbbOyxzhOfJi9ehBtZuXWaZnNQc+v5siRIwBM\nmTKFp59+mhMnTnDw4EHWr1/PpEmTOHz4MMOGDaN///6sW7eOffv2AbB//34GDBjA7bffzty5c9m6\ndSsAgwYN+ug9zax4nmxoZmZWbTqW2bzraDaZedc+zvnR9/hCw3guu+wypk+fzrhx4xg/fjySWLx4\nMcOHD2fWrFnMnDmTxsZGJk6cyEUXXQTA9u3bmTt3LmeccQb9+/dnyZIlAMyePZtp06Zx7rnnerKh\nWQm6NdlQ0o3AQuBiYFJEbE7lDcBOYFc6dENE3J3qrgB+BXwS+CNwT3ShEZ5saGZmpw1PajarmN6c\nbLgD+CqwPk9dS0RMSNvdOeVLgG8BY9I2rZttMDMz61u8zKZZTejWQDoidkbErlMfmZE0AhgcERvS\nXegngeu70wYzM7M+Z8yojz/T7bArlZtZ1ejJyYajJTVLekHSlFR2HtCac0xrKjMzM7MOXmbTrCac\ncrKhpLXA8DxV8yPiuQLfdgAYFRFvpmein5V0aYFjT/ZvzwZmA4wa5d/CzczsNNGxEtCi+dnjHGNG\nwSMPeYUgsypzyoF0REwt9k0j4hhwLO1vkdQCjAXagJE5h45MZYXeZxmwDLLJhsW2w8zMrGbdNssD\nZ7Mq1yOPdkgaKqlf2r+AbFLh6xFxAHhH0mRJAu4ACt3VNjMzMzOrWt0aSEu6QVIr8HngD5KeT1VX\nA9skNQO/Be6OiLdS3beBXwB7gBZgVXfaYGZmZmZWCd1aR7o3eR1pMzMzM+tpvbmOtJmZmZnZackD\naTMzMzOzEnggbWZmZmZWAg+kzczMzMxK4IG0mZmZmVkJPJA2MzMzMyuBB9JmZmZmZiWomXWkJR0E\n9uUU1QGHKtScvsQ5lodzLA/nWB7OsTycY3k4x/JwjuXRlRw/GxFDu/JmNTOQ7kzS5q4ulm2FOcfy\ncC5hby0AAATMSURBVI7l4RzLwzmWh3MsD+dYHs6xPMqdox/tMDMzMzMrgQfSZmZmZmYlqOWB9LJK\nN6CPcI7l4RzLwzmWh3MsD+dYHs6xPJxjeZQ1x5p9RtrMzMzMrJJq+Y60mZmZmVnFVP1AWtKPJb0m\naZukZyR9OqfuB5L2SNol6cs55VdI2p7qfiZJlWl99ZB0o6RXJX0oaWJOeYOkf0tqTtvSnDrn2Emh\nHFOd+2MJJC2U1JbTB6/LqcubqeUnaVrKao+keZVuTy2RtDedp82SNqeysyWtkbQ7vX6m0u2sRpIe\nk/SGpB05ZQWz83mdX4EcfX0sgqTzJa2T9Nf0s/qeVN5z/TEiqnoDvgScmfYfBh5O+5cArwBnAaOB\nFqBfqnsZmAwIWAVMr/T/o9IbcDFwIfAXYGJOeQOwo8D3OMeu5+j+WHqmC4E5ecoLZuotb479UkYX\nAJ9I2V1S6XbVygbsBeo6lS0G5qX9eR0/f7z9X3ZXA5fn/iwplJ3P66Jz9PWxuAxHAJen/UHA31JW\nPdYfq/6OdET8KSI+SF9uAEam/SbgqYg4FhF/B/YAkySNAAZHxIbIUnoSuL7XG15lImJnROzq6vHO\nMb+T5Oj+WH55M61wm6rZJGBPRLweEf8BniLL0ErXBDyR9p/A525eEbEeeKtTcaHsfF4XUCDHQpxj\nHhFxICK2pv0jwE7gPHqwP1b9QLqTb5Dd0YMsmH/m1LWmsvPSfudyK2x0+sjoBUlTUplzLI77Y/d8\nJz2+9VjOR26FMrX8nFf3BLBW0hZJs1NZfUQcSPv/Auor07SaVCg799Pi+fpYAkkNwOeAjfRgfzyz\nW60sE0lrgeF5quZHxHPpmPnAB8Dy3mxbLelKjnkcAEZFxJuSrgCelXRpjzWyBpSYo53EyTIFlgAP\nkA1kHgB+QvZLs1lvuioi2iQNA9ZIei23MiJCkpe5KoGz6xZfH0sgaSCwAvhuRLyTOzWp3P2xKgbS\nETH1ZPWSvg7MAL6YPh4HaAPOzzlsZCpr4+PHP3LL+7xT5Vjge44Bx9L+FkktwFicY7HcH0+iq5lK\nehT4ffqyUKaWn/PqhohoS69vSHqG7OPddkkjIuJAekzrjYo2srYUys79tAgR0d6x7+tj10jqTzaI\nXh4RK1Nxj/XHqn+0Q9I04PvAVyLiaE7V74BbJJ0laTQwBng53bp/R9LktDrCHYDvIhYgaaikfmn/\nArIcX3eORXN/LFG6qHW4AeiYsZ43095uXw3ZBIyRNFrSJ4BbyDK0U5D0KUmDOvbJJrnvIMvvznTY\nnfjcLUah7HxeF8HXx+Kkn7O/BHZGxE9zqnquP1Z6hmUXZmDuIXt+pTltS3Pq5pPNsNxFzkoIwESy\nztYC/Jz0h2dO543sBGwlu/vcDjyfyr8GvJqy3QrMdI7F55jq3B9Ly/TXwHZgW7qojThVpt4KZnkd\n2Sz1FrJHkSreplrYyFY6eSVtr3ZkB5wD/BnYDawFzq50W6txA35D9pjg8XR9/ObJsvN5XVSOvj4W\nl+FVZI/BbMsZN17Xk/3Rf9nQzMzMzKwEVf9oh5mZmZlZNfJA2szMzMysBB5Im5mZmZmVwANpMzMz\nM7MSeCBtZmZmZlYCD6TNzMzMzErggbSZmZmZWQk8kDYzMzMzK8F/AQJ2F/DoRWUAAAAAAElFTkSu\nQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.manifold import TSNE\n", + "\n", + "tsne = TSNE(n_components=2, random_state=0, n_iter=5000, perplexity=3)\n", + "np.set_printoptions(suppress=True)\n", + "T = tsne.fit_transform(word_glove_vectors)\n", + "labels = unique_words\n", + "\n", + "plt.figure(figsize=(12, 6))\n", + "plt.scatter(T[:, 0], T[:, 1], c='orange', edgecolors='r')\n", + "for label, x, y in zip(labels, T[:, 0], T[:, 1]):\n", + " plt.annotate(label, xy=(x+1, y+1), xytext=(0, 0), textcoords='offset points')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Cluster documents with GloVe Embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentCategoryClusterLabel
0The sky is blue and beautiful.weather2
1Love this blue and beautiful sky!weather2
2The quick brown fox jumps over the lazy dog.animals1
3A king's breakfast has sausages, ham, bacon, eggs, toast and beansfood0
4I love green eggs, ham, sausages and bacon!food0
5The brown fox is quick and the blue dog is lazy!animals1
6The sky is very blue and the sky is very beautiful todayweather2
7The dog is lazy but the brown fox is quick!animals1
\n", + "
" + ], + "text/plain": [ + " Document \\\n", + "0 The sky is blue and beautiful. \n", + "1 Love this blue and beautiful sky! \n", + "2 The quick brown fox jumps over the lazy dog. \n", + "3 A king's breakfast has sausages, ham, bacon, eggs, toast and beans \n", + "4 I love green eggs, ham, sausages and bacon! \n", + "5 The brown fox is quick and the blue dog is lazy! \n", + "6 The sky is very blue and the sky is very beautiful today \n", + "7 The dog is lazy but the brown fox is quick! \n", + "\n", + " Category ClusterLabel \n", + "0 weather 2 \n", + "1 weather 2 \n", + "2 animals 1 \n", + "3 food 0 \n", + "4 food 0 \n", + "5 animals 1 \n", + "6 weather 2 \n", + "7 animals 1 " + ] + }, + "execution_count": 86, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "doc_glove_vectors = np.array([nlp(str(doc)).vector for doc in norm_corpus])\n", + "\n", + "km = KMeans(n_clusters=3, random_state=0)\n", + "km.fit_transform(doc_glove_vectors)\n", + "cluster_labels = km.labels_\n", + "cluster_labels = pd.DataFrame(cluster_labels, columns=['ClusterLabel'])\n", + "pd.concat([corpus_df, cluster_labels], axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Leveraging gensim for building a FastText model" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from gensim.models.fasttext import FastText\n", + "\n", + "wpt = nltk.WordPunctTokenizer()\n", + "tokenized_corpus = [wpt.tokenize(document) for document in norm_bible]\n", + "\n", + "# Set values for various parameters\n", + "feature_size = 100 # Word vector dimensionality \n", + "window_context = 50 # Context window size \n", + "min_word_count = 5 # Minimum word count \n", + "sample = 1e-3 # Downsample setting for frequent words\n", + "\n", + "\n", + "ft_model = FastText(tokenized_corpus, size=feature_size, window=window_context, \n", + " min_count=min_word_count,sample=sample, sg=1, iter=50)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'egypt': ['land', 'pharaoh', 'egyptians', 'pathros', 'assyrian'],\n", + " 'famine': ['pestilence', 'sword', 'egypt', 'dearth', 'blasted'],\n", + " 'god': ['lord', 'therefore', 'jesus', 'christ', 'truth'],\n", + " 'gospel': ['preached', 'preach', 'christ', 'preaching', 'gentiles'],\n", + " 'jesus': ['christ', 'god', 'disciples', 'paul', 'grace'],\n", + " 'john': ['baptist', 'baptize', 'peter', 'philip', 'baptized'],\n", + " 'moses': ['aaron', 'commanded', 'congregation', 'spake', 'tabernacle'],\n", + " 'noah': ['shem', 'methuselah', 'creepeth', 'adam', 'milcah']}" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# view similar words based on gensim's model\n", + "similar_words = {search_term: [item[0] for item in ft_model.wv.most_similar([search_term], topn=5)]\n", + " for search_term in ['god', 'jesus', 'noah', 'egypt', 'john', 'gospel', 'moses','famine']}\n", + "similar_words" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABB0AAAJCCAYAAACMDb+GAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XlcVde9///3EqemTqnYNBgS5AciIoOCiBNV1Ggbk5sB\nb5za2DRGHDKRmuQ2A5KkfSQpD28q1Zr40xpzQ2pFk6hN+60TQRyqRwRxLEdKHPBaS5ynAK7vH+r5\nimLUcDYH9PV8PHjk7LXXXuuzzyP/7LfrrG2stQIAAAAAAPC2Rr4uAAAAAAAA3JwIHQAAAAAAgCMI\nHQAAAAAAgCMIHQAAAAAAgCMIHQAAAAAAgCMIHQAAAAAAgCMIHQAAAAAAgCMIHQAAAAAAgCMIHQAA\nAAAAgCMa+7qAq/H397dBQUG+LgMAAAAAAFxm06ZN/7bWtrtWv3obOgQFBcnlcvm6DAAAAAAAcBlj\nzJfX04+fVwAAAAAAAEcQOgAAAAAAAEcQOgAAAAAAAEcQOgAAAAAAAEcQOgAAAAAAAEcQOgAAAAAA\nAEfUOnQwxjQ3xmwwxhQaY7YZY9Jr6NPMGDPfGOM2xvzdGBNU23kBAAAAAED95o2VDmclJVlroyXF\nSBpijEm4rM/PJR221oZI+m9Jb3thXgAAAAAAUI/VOnSw5524cNjkwp+9rNt/SPrgwudsSQOMMaa2\ncwMAAAAAgPrLK3s6GGP8jDEFkv4laZm19u+XdWkvaa8kWWsrJR2V1NYbcwMAAAAAgPrJK6GDtbbK\nWhsj6S5J8caYLt9mHGPMk8YYlzHGdejQIW+UBgAAAAAAfMSrb6+w1h6RtErSkMtO7ZcUKEnGmMaS\nWksqr+H69621cdbauHbt2nmzNAAAAAAAUMe88faKdsaYNhc+f0fSIEk7L+u2WNJjFz4nS1pprb18\n34dbSmlpqbp0+VYLQqrJycnR2rVrPcczZ87UvHnzrrs/AAAAAABOaeyFMe6U9IExxk/nQ4w/WWuX\nGmNel+Sy1i6WNFvSh8YYt6SvJA33wrzQ+RChRYsW6tWrlyQpJSXlhvoDAAAAAOAUU18XHMTFxVmX\ny+XrMhxTWlqqIUOGKDY2Vvn5+YqIiNC8efOUkZGhJUuW6PTp0+rVq5fee+89GWPUr18/RUdH64sv\nvlBlZaXmzJmjr7/+Wv369dMdd9yhdu3aKTMzUytWrFCLFi30i1/8QtOmTdPMmTPVuHFjde7cWW+9\n9ZYSEhLk5+fn6d+3b1/l5OSoadOmniBi5syZuu222/TTn/7Ux98SAAAAAKA+MsZsstbGXaufV/d0\nwI3ZtWuXJkyYoB07dqhVq1aaMWOGJk2apI0bN2rr1q06ffq0li5d6ul/6tQpFRQUaMaMGXr88cd1\n11136Xvf+56ee+45FRQUqG/fvtXGf+utt7R582Zt2bJFM2fOVFBQkFJSUq7of/lPLlJSUggcAAAA\nAAC1RujgQ4GBgerdu7ckafTo0crLy9OqVavUo0cPRUZGauXKldq2bZun/4gRIyRJiYmJOnbsmI4d\nO6Zz584pKytL4eHhSk5OVkVFhZYtW6bu3bvr+PHj6tSpkz788EM1btxY/fr101/+8hdNnTpVXbp0\n0YYNG1RaWqqZM2fqv//7vxUTE6PVq1drypQpysjIUFlZmWJiYjx/fn5++vLLL3Xo0CE98sgj6t69\nu7p37641a9b45PsDAAAA0DAsXrxYb731liR5njdulLf2xUPdInTwIWPMFccTJkxQdna2ioqKNHbs\nWJ05c+aq/SWpvLxcPXv29KyW2Lhxo3r37q2NGzfqyJEjCgkJUXZ2trp37y5rrSoqKpSamupZLXG1\n1Q+SFBAQoIKCAhUUFGjs2LF65JFHdM899+iZZ57Rc889p40bN2rhwoV64oknnPuSAAAAADR4Dzzw\ngF566SVflwEfIHTwoT179mjdunWSpKysLPXp00eS5O/vrxMnTig7O7ta//nz50uS8vLy1Lp1a7Vq\n1Upt2rSRv7+/pPOrJfbs2SO3260ePXooIiJC27dvV3x8vI4ePaqqqirFx8fr+PHjntUSR44cuWad\na9as0axZszRnzhxJ0vLlyzVp0iTFxMTogQce0LFjx3TixAmvfS8AAAAAGo7S0lJ16tRJY8aMUceO\nHTVq1CgtX75cvXv3VmhoqDZs2KC5c+dq0qRJV1zrdrs1cOBARUdHq1u3btq9e7dOnDihAQMGqFu3\nboqMjNRnn33m6V9VVaWxY8cqIiJC9957r06fPl2Xt4pvgdDBh8LCwjR9+nSFh4fr8OHDGj9+vMaO\nHasuXbpo8ODB6t69e7X+zZs3V9euXZWSkqLZs2dLkm677TZ98skniomJ0ZYtW2SM0SeffKKPP/5Y\n/v7+qqio0G9/+1s9/fTTaty4sXr16uXpf/bs2RpXT1zqwIED+vnPf64//elPatGihSTp3LlzWr9+\n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\nUnXp0qXW4+Tk5Gjt2rWe45kzZ2revHm1HjcoKEj//ve/az0OAAAAAKD+auzrAlC/5eTkqEWLFurV\nq5ckKSUlxccVAQAAAAAaCkKHm1hlZaVGjRql/Px8RUREaN68ecrIyNCSJUt0+vRp9erVS++9956M\nMerXr5+io6P1xRdfqLKyUnPmzNH3v/99zZw5U35+fvqf//kfZWZmasWKFWrRooVGjhypH//4x565\nioqKVFJSottuu00pKSnas2ePJOndd99V7969VV5erhEjRmj//v3q2bOnrLW++loAAAAAAHWEn1fc\nxHbt2qUJEyZox44datWqlWbMmKFJkyZp48aN2rp1q06fPq2lS5d6+p86dUoFBQWaMWOGHn/8cQUF\nBSklJUXPPfecCgoK1LdvX0/fgIAAFRQUqKCgQGPHjtUjjzyie+65R88884yee+45bdy4UQsXLtQT\nTzwhSUpPT1efPn20bds2PfTQQ55QAgAAAABw82Klw00sMDBQvXv3liSNHj1a06ZNU4cOHfTOO+/o\n1KlT+uqrrxQREaH7779fkjRixAhJUmJioo4dO6YjR45cc441a9Zo1qxZysvLkyQtX75c27dv95w/\nduyYTpw4odzcXC1atEiSdN999+n222/36r0CAAAAAOofQoebmDHmiuMJEybI5XIpMDBQU6ZM0Zkz\nZ76x/zc5cOCAfv7zn2vx4sVq0aKFJOncuXNav369mjdv7qW7AAAAAAA0VPy84ia2Z88erVu3TpKU\nlZWlPn36SJL8/f114sQJZWdnV+s/f/58SVJeXp5at26t1q1bq2XLljp+/PgVY1dUVGjYsGF6++23\n1bFjR0/7vffeq8zMTM9xQUGBpPOrJ7KysiRJf/nLX3T48GEv3ikAAAAAoD4idLiJhYWFafr06QoP\nD9fhw4c1fvx4jR07Vl26dNHgwYPVvXv3av2bN2+url27KiUlRbNnz5Yk3X///frkk08UExOj1atX\ne/quXbtWLpdLaWlpiomJUUxMjMrKyjRt2jS5XC5FRUWpc+fOmjlzpiQpLS1Nubm5ioiI0KJFi3T3\n3XfX3RcBAAAAAPAJU1/fIhAXF2ddLpevy7hl9OvXTxkZGYqLi/N1KQAAAACAes4Ys8lae80HSFY6\nNCBZRVkKmx4mv9f9FDY9TFlFWb4uCQAAAACAq2IjyQYiqyhLqStSlZyUrHEB41RSVqLUFamSpJGR\n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\n586dkyT97W9/U8+ePdWtWzcNGzZMJ06c0LRp01RWVqb+/furf//+nrpefvllRUdHKyEhQQcPHqz7\nLwbATY/QAQAAAHDQtm3b9Oabb2rlypUqLCzUb3/7W0nSvn37tHbtWk2dOlW/+tWvlJSUpA0bNmjV\nqlWaPHmyTp48qdmzZ6t169bauHGjNm7cqFmzZumf//ynJGnDhg3KzMzU9u3btXv3bi1atEj//ve/\n9eabb2r58uXKz89XXFycpk6dqqeffloBAQFatWqVVq1aJUk6efKkEhISVFhYqMTERM2aNctn3xGA\nm1djXxcAAAAA3MxWrlypYcOGyd/fX5L0ve99T5I0bNgw+fn5STq/OmHx4sXKyMiQJJ05c0Z79uzR\n3/72N23ZskXZ2dmSpKNHj6q4uFhNmzZVfHy8goODJUkjRoxQXl6emjdvru3bt6t3796SpK+//lo9\ne/assa6mTZtq6NChkqTY2FgtW7bMoW8AwK2M0AEAAADwge9+97uez9ZaLVy4UGFhYdX6WGuVmZmp\nwYMHV2vPycmRMaZamzFG1loNGjRIH3/88TXnb9KkiWcMPz+/OttbAsCthZ9XAAAAAA5KSkrSggUL\nVF5eLkn66quvrugzePBgZWZmylorSdq8ebOn/fe//70qKiokSf/4xz908uRJSed/XvHPf/5T586d\n0/z589WnTx8lJCRozZo1crvdks7/hOIf//iHJKlly5Y6fvy4szcLAJdhpQMAAADgoIiICL388sv6\n4Q9/KD8/P3Xt2vWKPq+++qqeffZZRUVF6dy5c+rQoYOWLl2qJ554QqWlperWrZustWrXrp0+/fRT\nSVL37t01adIkud1u9e/fXw899JAaNWqkuXPnasSIETp79qwk6c0331THjh315JNPasiQIZ69HQCg\nLpiLaWp9ExcXZ10ul6/LAAAAAK6QVZSl9Nx0ucvdCmkborTENI2MHFln8+fk5CgjI0NLly6tszkB\n4FLGmE3W2rhr9WOlAwAAAHADsoqylLoiVclJyRoXME4lZSVKXZEqSXUaPABAQ8BKBwAAAOAGhE0P\n06C+gxQaGOppK95brGWrl2nXxF0+rAwA6s71rnRgI0kAAADgBrjL3QoOCK7WFhwQLHe520cVAUD9\nRegAAAAA3ICQtiEqKSup1lZSVqKQtiE+qggA6i9CBwAAAOAGpCWmKXtltor3FquqqkrFe4uVvTJb\n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\nniEyMpIhQ4YUu7KhuDkLW5wuXLjQ2V9RRERuEko6iIiIlLHY3bFMjp/s0m4O5aXwe13+fWd0m1Em\n37c01zErKwsoSJpcrW5FYa0DwNHpAwrqO+zcudOx/c4779xw7M7Ws2dP5s6dS0BAADabjfbt23P0\n6FG6dOlCfn4+AH/6058cq2MyMzOxLMuxOgYgPDycp556qsirFdcyadIkBgwYwG233UbXrl358ccf\nnfb9RETk5qGWmSIiImWo8Ml/RNeIK57836yJB2e4Fa9jeSertm7dyvPPP3/VV3JERESupaQtM5V0\nEBERKUO22TbCQsMc3RwAUg+nsjphNSkjU1wYWeVyq13H8k6yTJs2jTlz5hATE0PHjh3LfHwREbn5\nlTTpoEKSIiIiZejAmQM09mlcZJ8ruzlUVrfadZwcP5mIrhH4+/rj7u5epPWoM7zyyiscOnRICQcR\nEXE6JR1ERETKUJO6TUg7llZknyu7OVRWt9p1vNWSLCIicutQ0kFERKQMTew0kbh1caQeTiUvL4/U\nw6nErYtjYqeJrg6tUrnVruOtlmQREZFbh7pXiIiIlCFndnO4ldxq13Fip4lXrekgIiJSmamQpIiI\niEgFcCu1WhURkcpP3StERERERERExCnUvUJEREREREREXEpJBxERERERERFxCiUdRERERERERMQp\nlHQQEREREREREadQ0kFEREREREREnEJJBxERERERERFxCiUdRERERERERMQplHQQEREREREREadQ\n0kFEREREREREnEJJBxERERERERFxCiUdRERERERERMQplHQQEREREREREadQ0kFEREREREREnEJJ\nBxERERERERFxCiUdRERERERERMQplHQQEREREREREadQ0kFEREREREREnEJJBxERERERERFxCiUd\nRERERERERMQplHQQEREREREREadQ0kFEREREREREnMJYluXqGIpljDkFHHJ1HOJS9YDTrg5CKg3d\nL1Iaul+ktHTPSGnofpHS0j0jpVFR7pd7LMuqf72DKmzSQcQYs9WyrDaujkMqB90vUhq6X6S0dM9I\naeh+kdLSPSOlUdnuF71eISIiIiIiIiJOoaSDiIiIiIiIiDiFkg5SkX3s6gCkUtH9IqWh+0VKS/eM\nlIbuFykt3TNSGpXqflFNBxERERERERFxCq10EBERERERERGnUNJBKixjzHRjzD5jzC5jzDJjjLer\nY5KKzRgzwBizxxiTb4ypNBV9pXwZY3oaY1KMMQeMMa+4Oh6p2Iwx840xJ40xya6ORSo+Y4yvMWa9\nMeafl/4+GuvqmKTiMsZUN8b8YIzZeel+mezqmKRyMMa4G2N2GGNWuTqWklDSQSqy1UALy7KCgP3A\nqy6ORyq+ZOBRIN7VgUjFZIxxB2YDvYBA4HFjTKBro5IKbgHQ09VBSKWRC7xgWVYg0B4Yqf/HyDX8\nAnS1LCsYCAF6GmPauzgmqRzGAntdHURJKekgFZZlWf+wLCv30uZm4G5XxiMVn2VZey3LSnF1HFKh\ntQMOWJaVZlnWRWAJ0MfFMUkFZllWPPCTq+OQysGyrOOWZW2/9PM5Cn4puMu1UUlFZRXIurRZ5dIf\nFdyTazLG3A08DMxzdSwlpaSDVBbDgK9dHYSIVHp3AYcv2z6CfiEQEScwxjQCWgLfuzYSqcguLZNP\nAk4Cqy3L0v0i1zMTeAnId3UgJeXh6gDk1maMWQM0LOaj1y3LWnHpmNcpWK4YU56xScVUkntGRETE\nlYwxXsAXwDjLsv7j6nik4rIsKw8IuVS7bJkxpoVlWaohI8UyxvQGTlqWtc0Y08XV8ZSUkg7iUpZl\ndb/W58aYoUBvoJul/q7C9e8Zkes4Cvhetn33pX0iImXCGFOFgoRDjGVZS10dj1QOlmWdNcasp6CG\njJIOcjUdgHBjzENAdaC2MWaxZVmRLo7rmvR6hVRYxpieFCwdCrcs62dXxyMiN4UtgL8xxs8YUxUY\nCHzp4phE5CZhjDHA/wX2WpY1w9XxSMVmjKlf2J3NGFMDCAP2uTYqqcgsy3rVsqy7LctqRMG/YdZV\n9IQDKOkgFdsHQC1gtTEmyRgz19UBScVmjOlnjDkC3A/83RjzratjkorlUnHaUcC3FBR4+5tlWXtc\nG5VUZMaYvwKbAJsx5ogx5mlXxyQVWgdgCND10r9dki49kRQpzp3AemPMLgqS4qsty6oULRBFSsNo\nxbqIiIiIiIiIOINWOoiIiIiIiIiIUyjpICIiIiIiIiJOoaSDiIiIiIiIiDiFkg4iIiIiIiIi4hRK\nOoiIiIiIiIiIUyjpICIiIiIiIiJOoaSDiIiIiIiIiDiFkg4iIiIiIiIi4hT/HzifDGjDHKGBAAAA\nAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from sklearn.decomposition import PCA\n", + "\n", + "words = sum([[k] + v for k, v in similar_words.items()], [])\n", + "wvs = ft_model.wv[words]\n", + "\n", + "pca = PCA(n_components=2)\n", + "np.set_printoptions(suppress=True)\n", + "P = pca.fit_transform(wvs)\n", + "labels = words\n", + "\n", + "plt.figure(figsize=(18, 10))\n", + "plt.scatter(P[:, 0], P[:, 1], c='lightgreen', edgecolors='g')\n", + "for label, x, y in zip(labels, P[:, 0], P[:, 1]):\n", + " plt.annotate(label, xy=(x+0.06, y+0.03), xytext=(0, 0), textcoords='offset points')" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-0.23493268, 0.14237943, 0.35635167, 0.34680951, 0.09342121,\n", + " 0.11546664, 0.06848907, -0.35488272, 0.03399122, 0.26420799,\n", + " 0.05554794, -0.41830763, -0.38671952, 0.38901171, -0.26265353,\n", + " 0.03854577, -0.22641954, 0.16377565, -0.0347381 , -0.43721643,\n", + " -0.18751772, 0.03163779, 0.12475108, 0.28285024, 0.11760047,\n", + " -0.24720524, -0.25686634, -0.01248573, 0.10454553, 0.29713026,\n", + " -0.04111641, -0.44567475, -0.14127477, -0.20297718, 0.05123538,\n", + " -0.19558378, -0.24215269, -0.22690177, 0.45923024, 0.10298209,\n", + " 0.07537983, 0.23333244, -0.34262201, 0.36080933, -0.05114703,\n", + " -0.19241138, -0.46164852, -0.25011861, -0.25578389, -0.11737192,\n", + " 0.05247249, -0.00788139, -0.4545919 , 0.0890988 , -0.58961135,\n", + " -0.15117864, 0.25921214, 0.50884134, -0.03514979, -0.48242396,\n", + " -0.20581312, 0.1193359 , 0.02668546, 0.22564436, -0.00703725,\n", + " 0.34001571, -0.19389269, -0.59574127, 0.13655224, -0.4419246 ,\n", + " -0.12572952, -0.24745932, 0.23438101, -0.17981783, -0.72245467,\n", + " 0.06801575, 0.02291457, -0.52627361, 0.06928489, 0.31512719,\n", + " -0.24033862, 0.41592884, -0.01954436, -0.10545548, 0.05702253,\n", + " 0.38872063, -0.26490289, 0.34405881, -0.41851836, -0.28361416,\n", + " 0.27255496, -0.15021783, -0.08518736, -0.28278247, 0.09768565,\n", + " 0.13725466, -0.09564053, -0.05963023, -0.31269372, -0.19060139], dtype=float32)" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ft_model.wv['jesus']" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.333260876685\n", + "0.698824900473\n" + ] + } + ], + "source": [ + "print(ft_model.wv.similarity(w1='god', w2='satan'))\n", + "print(ft_model.wv.similarity(w1='god', w2='jesus'))" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Odd one out for [ god jesus satan john ]: satan\n", + "Odd one out for [ john peter james judas ]: judas\n" + ] + } + ], + "source": [ + "st1 = \"god jesus satan john\"\n", + "print('Odd one out for [',st1, ']:', ft_model.wv.doesnt_match(st1.split()))\n", + "\n", + "st2 = \"john peter james judas\"\n", + "print('Odd one out for [',st2, ']:', ft_model.wv.doesnt_match(st2.split()))" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python [default]", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.2" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/New-Second-Edition/Ch05 - Text Classification/Ch05a - Classification Performance Evaluation Metrics.ipynb b/New-Second-Edition/Ch05 - Text Classification/Ch05a - Classification Performance Evaluation Metrics.ipynb new file mode 100644 index 0000000..32576d4 --- /dev/null +++ b/New-Second-Edition/Ch05 - Text Classification/Ch05a - Classification Performance Evaluation Metrics.ipynb @@ -0,0 +1,310 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load Wisconsin Breast Cancer Dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(569, 30) ['mean radius' 'mean texture' 'mean perimeter' 'mean area'\n", + " 'mean smoothness' 'mean compactness' 'mean concavity'\n", + " 'mean concave points' 'mean symmetry' 'mean fractal dimension'\n", + " 'radius error' 'texture error' 'perimeter error' 'area error'\n", + " 'smoothness error' 'compactness error' 'concavity error'\n", + " 'concave points error' 'symmetry error' 'fractal dimension error'\n", + " 'worst radius' 'worst texture' 'worst perimeter' 'worst area'\n", + " 'worst smoothness' 'worst compactness' 'worst concavity'\n", + " 'worst concave points' 'worst symmetry' 'worst fractal dimension']\n" + ] + } + ], + "source": [ + "import numpy as np\n", + "from sklearn.datasets import load_breast_cancer\n", + "import matplotlib.pyplot as plt\n", + "\n", + "%matplotlib inline\n", + "\n", + "# load data\n", + "data = load_breast_cancer()\n", + "X = data.data\n", + "y = data.target\n", + "print(X.shape, data.feature_names)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Classification Model Evaluation Metrics" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(398, 30) (171, 30)\n" + ] + } + ], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.3, random_state=42)\n", + "print(X_train.shape, X_test.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "LogisticRegression(C=1.0, class_weight=None, dual=False, fit_intercept=True,\n", + " intercept_scaling=1, max_iter=100, multi_class='ovr', n_jobs=1,\n", + " penalty='l2', random_state=None, solver='liblinear', tol=0.0001,\n", + " verbose=0, warm_start=False)" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn import linear_model\n", + "\n", + "logistic = linear_model.LogisticRegression()\n", + "logistic.fit(X_train,y_train)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Confusion Matrix" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Predicted: \n", + " 0 1\n", + "Actual: 0 59 4\n", + " 1 2 106\n" + ] + } + ], + "source": [ + "import model_evaluation_utils as meu\n", + "\n", + "y_pred = logistic.predict(X_test)\n", + "meu.display_confusion_matrix(true_labels=y_test, predicted_labels=y_pred, classes=[0, 1])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## True Positive, False Positive, True Negative and False Negative" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "positive_class = 1\n", + "TP = 106\n", + "FP = 4\n", + "TN = 59\n", + "FN = 2" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Accuracy" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Framework Accuracy: 0.96491\n", + "Manually Computed Accuracy: 0.96491\n" + ] + } + ], + "source": [ + "fw_acc = round(meu.metrics.accuracy_score(y_true=y_test, y_pred=y_pred), 5)\n", + "mc_acc = round((TP + TN) / (TP + TN + FP + FN), 5)\n", + "print('Framework Accuracy:', fw_acc)\n", + "print('Manually Computed Accuracy:', mc_acc)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Precision" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Framework Precision: 0.96364\n", + "Manually Computed Precision: 0.96364\n" + ] + } + ], + "source": [ + "fw_prec = round(meu.metrics.precision_score(y_true=y_test, y_pred=y_pred), 5)\n", + "mc_prec = round((TP) / (TP + FP), 5)\n", + "print('Framework Precision:', fw_prec)\n", + "print('Manually Computed Precision:', mc_prec)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Recall" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Framework Recall: 0.98148\n", + "Manually Computed Recall: 0.98148\n" + ] + } + ], + "source": [ + "fw_rec = round(meu.metrics.recall_score(y_true=y_test, y_pred=y_pred), 5)\n", + "mc_rec = round((TP) / (TP + FN), 5)\n", + "print('Framework Recall:', fw_rec)\n", + "print('Manually Computed Recall:', mc_rec)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## F1-Score" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Framework F1-Score: 0.97248\n", + "Manually Computed F1-Score: 0.97248\n" + ] + } + ], + "source": [ + "fw_f1 = round(meu.metrics.f1_score(y_true=y_test, y_pred=y_pred), 5)\n", + "mc_f1 = round((2*mc_prec*mc_rec) / (mc_prec+mc_rec), 5)\n", + "print('Framework F1-Score:', fw_f1)\n", + "print('Manually Computed F1-Score:', mc_f1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## ROC Curve and AUC" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYoAAAEWCAYAAAB42tAoAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XmcTfX/wPHX2zqyZSnKVBTZB9kljWRpQyWUhBaNSJZk\nScnSLiFbvi3qp6hEUspWooTGziASmZJ9b0xm5v3745wZ1zRz5xpz753l/Xw85jH3nPO557zv5557\n3ud8zjmfI6qKMcYYk5pcwQ7AGGNM5maJwhhjjFeWKIwxxnhlicIYY4xXliiMMcZ4ZYnCGGOMV5Yo\nMhkR6SQiC4MdR2YiIqdE5NogLLesiKiI5An0sv1BRLaISHg63pfudVJEWorIF+l5b3qJSH4R2SYi\nlwVyudmZJQovRGS3iMS4G6q/RWSaiBTy5zJV9SNVbeHPZXgSkUYi8p2InBSR4yIyT0SqBGr5KcSz\nVEQe9RynqoVUdZeflne9iHwmIofcz79RRPqJSG5/LC+93IRV/mLmoapVVXVpGsv5T3K8yHXyReAV\nj/mriJx2f1N/isiY5HUtIneKyGq33GER+UhEQpOVuUJE3hWRfe66u01EhotIQVWNBd4DBqXxWbPE\nd58ZWKJI212qWgioCdQCBgc5nnRJaa9YRBoCC4G5wJVAOWAD8JM/9uAz2565iFwHrAL2AtVVtShw\nH1AbKJzBywraZw/WskWkLlBUVVcmm1TD/U3dDHQAHvZ4TzvgY2AsUBKoCsQCP4pIMbdMceBnoADQ\nUFULA82BosB17qw+BrqISP5UYsvQ7z6zrdsZTlXtL5U/YDdwq8fwa8DXHsP5gdHAH8B+YApQwGN6\nG2A9cAL4DWjlji8KvAvsA/4ERgG53WldgR/d15OB0climgv0c19fCXwOHAR+B3p7lHsBmAVMd5f/\naAqfbzkwKYXx3wAfuq/DgWhgCHDIrZNOvtSBx3sHAn8D/wcUA75yYz7qvg51y78IxANngFPABHe8\nAuXd19OAicDXwEmcH/t1HvG0ALYDx4FJwA8pfXa37HTP7zOF6WXdZXdxP98h4FmP6fVwNljH3O9y\nApDPY7oCPYEdwO/uuHE4G6cTwBrgJo/yud16/s39bGuAq4Bl7rxOu/XSwS1/J876dQxYAYQlW3cH\nAhtxNrR58Fif3dgj3Tj2A2Pc8X+4yzrl/jXEY510y1QFFgFH3PcOSaX+ngfeSTYu6bt0hz8FJrqv\nBdgDPJPsPbmAzcAId3gUsAnIlcbvdwdwczq/+3AgOrXtAf/9fT0PxADFPcrXcteZvO7ww8BWnPV+\nAXBNoLdp6f0LegCZ+S/ZihHqrpzjPKa/CXwJFMfZC5kHvOxOq4ezsWruruhlgErutDnA20BB4HJg\nNfC4Oy3pRwk0wdmoiDtczF0Zr3TnucZdQfMB1wK7gJYeK/JZoK1btkCyz3YJzka5aQqfuxuwz30d\nDsQBY3CSws04G6yKPtRB4ntfdd9bACgB3OsuvzDwGfCFx7KXkmzDzn8TxWG3fvMAHwEz3Wkl3R/t\nPe60p9w6SC1R/A108/L9l3WX/T839ho4G93K7vTaQAN3WWVxNgJ9ksW9yK2bxOT5oFsHeYD+bgwh\n7rQBOOtYRZyNZg2gRPI6cIdrAQeA+jgJpgvO+prfY91dj5NoCniMS1yffwY6u68LAQ2SfeY8Hsvq\nyrl1sjBOUuwPhLjD9VOpv8+AAV6+y0ruvPp6DCtQLoV5DQd+dl+vBIb78Pv9Eo+dpwv87sNJO1Gc\n9/sCvgMe8yj/OjDFfd0G2AlUdr/7ocCKYG/jfP0LegCZ+c9dMU7h7N0psAS41J0mOBtMz73Zhpzb\nc3wbeDOFeZbC2dh4HnncD3zvvvb8UQrOHl4Td/gx4Dv3dX3gj2TzHgy8775+AVjm5bOFup+pUgrT\nWgFn3dfhOBv7gh7TPwWe86EOwoF/cTeEqcRREzjqMbyUtBPFOx7Tbge2ua8fStyYeNTf3uTz85h+\nFvcoL5XpZd1lh3qMWw10TKV8H2BOsrhvSWMdO4rTFAPOkVCbVMolTxSTgZHJymzH3YN2192HU1if\nEzd0y3A2viVT+cypJYr7gXU+/n4WAREpfI4T7nqjwAzOJbfG7rj/rC9ABLDDfb0j+XxTWf5HwPPp\n/O7DSTtRLEs2/VHO/T4T173E3+43wCMeZXMB/5BFjirsHEXa2qrTBhqOs8dT0h1/Gc5e8RoROSYi\nx4Bv3fHg7Mn9lsL8rgHyAvs83vc2zpHFedRZo2bi/DgBHsBZ+RPnc2XiPNz5DMFJRIn2evlcR4EE\n4IoUpl2Bc8icVFZVT3sM78E5qkmrDgAOquqZxAERuURE3haRPSJyAmeDdekFnkD82+P1Pzh7xLgx\nJX1mt/6ivcznMCl/fp+W554M/cq90OEE8BLn1o9E530HIvK0iGx1T54ew2mGTHxPautMSq4B+if7\n/q/CqYMUl53MI8D1wDYR+UVE7vRxuRcS41FSbu+/AacOO+Ds8BR0xyeuc2mtk75+b4VxmuVS4us8\nvElev58DDUXkCpzWgASc5l1wvq9xHt/VEZxkUuYiYwgISxQ+UtUfcPZmR7ujDuE0A1VV1Uvdv6Lq\nnKQDZyW67r9zYi/OEUVJj/cVUdWqqSx6BtBORK7B+VF97jGf3z3mcamqFlbV2z3D9vJ5TuM0P9yX\nwuT2OEdPiYqJSEGP4auBv3yog5Ri6I/TtFJfVYvg/KDA+dF4jdkH+3COlJwZiojncAoW4zSDpddk\nYBtQwf0sQzj3ORIlfR4RuQl4Bqd+i6nqpTjNk4nvSW2dScle4MVk3/8lqjojpWUnp6o7VPV+nB2U\nV4FZ7necVv3vxWnm9MVGnGSU0vJVVT/FWQefd0dvx0ns562TIpIL53tKXCcXA3e7472pjHNxRkrS\n+u5P4+wEJcaQm/N3gCBZXanqUZyLQzrg7NTNdHdWwKm3x5N9XwVUdUUanyFTsERxYcYCzUWkhqom\n4LRdvykilwOISBkRaemWfRfoJiLNRCSXO62Squ7DWZneEJEi7rTrROTmlBaoqutwNsjvAAtUNXEP\naTVwUkQGikgBEcktItXcK018NQjnypDeIlJYRIqJyCic5qPhycoOF5F87sbuTuAzH+ogJYVxkssx\n9+qVYcmm78f3DVFyXwPVRaStexVKT6C0l/LDgEYi8rqIlHbjLy8i00XkUh+WVxinGeWUiFQCevhQ\nPg7nRH4eEXkeKOIx/R1gpIhUEEeYiJRwpyWvl/8BESJS3y1bUETuEBGfrtgRkQdF5DL3O0xcpxLc\n2BJI/Tv4CrhCRPqIc79CYRGpn0rZ+TjntLx5BXhMREq7G9WngaEi8oCIhLjfyzs49fSm+54x7vAH\n7g5U4no3RkTCEodxzg0lv+IqUVrf/a9AiFuneXHOKaR4BVUyH+M0gSZevZVoCjBYRKq6yyoqIint\npGVKligugKoeBD7k3B7QQJwTVCvdpofFOHvLqOpqnJPCb+LsNf6Ac/gJzoqUD4jCOTyfhffD4I+B\nW/FY8VQ1HmeDXRPniqfEZFL0Aj7Pj0BLnJO/+3CalGoBjVV1h0fRv904/8Jp+opQ1W1p1UEqxuKc\n+DuE8yP+Ntn0cThHUEdFZLyvn8X9PIdw9kZfw2laqIJzZU9sKuV/w0mKZYEtInIc54gtEue8VFqe\nxtlzPImz4f4kjfILcD7vrzh1fYbzmy/G4Jz/WYiTgN7FqStw2sQ/cJsu2qtqJM45qwk4381OnHMJ\nvmqF85lP4dR5R1WNUdV/cK4++8ldVgPPN6nqSZwLNO7CWS92AE1TWoCqrgWOe0kkqOomnObHAe7w\nJ0BnoC/Odxjl1sGNqnrYLXMEaIRznmGViJzEOdo47tYDON/LB+rcU5HScr1+96p6HHgC5zf1J84R\nhrdmzERfAhWAv1U16WhGVefgHLnNdH8nm4HbfJhfppB4NY0xKRLnTt7pquqtCSdTcpsmonEu5/0+\n2PHkRCLSAnhCVdsGcJn5cZqcmqjqgUAtNzvL3jeJmBzHbfZahdO8NQCn/T+15gfjZ6q6EOcIKZDL\njMW58MRkEGt6MtlNQ5yrcg7hNI+0VdWY4IZkTNZmTU/GGGO8siMKY4wxXmW5cxQlS5bUsmXLBjsM\nY4zJUtasWXNIVdPV9XqWSxRly5YlMjIy2GEYY0yWIiJ70vtea3oyxhjjlSUKY4wxXlmiMMYY45Ul\nCmOMMV5ZojDGGOOVJQpjjDFe+S1RiMh7InJARDanMl1EZLyI7BSRjSJyg79iMcYYk37+PKKYhtOV\ncWpuw+mOtwLQHechMMYYYzIZv91wp6rLRKSslyJtgA/dh5WsFJFLReQK98E+Qbd+7zHeWrKDU7Fx\nwQ7FGGPS7cCv6/h1ycyLmkcw78wuw/kPbYl2x/0nUYhId5yjDq6++uqABPfWkh0s2WZd2Rtjsqb4\nf45z9Pv3OL15CbmLlrqoeWWJLjxUdSowFaBOnToB6e428UiicEgeqlxRJI3SxhiTufz09mj+iVpO\npVYPUeX2rszufUu65xXMRPEncJXHcKg7LlOpckURPnm8YbDDMMaYNG3ZsoVLL72UMmXKsLPZ/4iN\njaVq1aoASO/0zzeYieJLoJeIzATqA8fTe37CH+cTovadyLB5GWOMP50+fZqRI0fyxhtv0KlTJ6ZN\nm0b58uUzbP5+SxQiMgMIB0qKSDQwDMgLoKpTgPnA7TgPQ/8H6JbeZfnzfEKh/Fmidc4Yk0N9/fXX\n9OzZkz179vDwww/z6quvZvgy/HnV0/1pTFegZ0Ysy1/nEwrlz0PvZhUybH7GGJORJk2aRM+ePalS\npQrLli3jpptu8stystXusp1PMMZkd3FxcRw8eJArrriC9u3bExMTw5NPPkm+fPn8tkzrwsMYY7KI\n1atXU7duXVq3bk18fDwlS5akf//+fk0SYInCGGMyvWPHjvHEE0/QoEEDDhw4wMCBA8mVK3Cb72zV\n9GSMMdnNpk2baN68OQcPHqR3796MGDGCIkUCe2+XJQpjjMmEzp49S968ebn++utp2rQpAwYM4IYb\ngtN3qjU9GWNMJhIbG8uIESOoWrUqp06dIn/+/MyYMSNoSQKy4BHF7sOn6fD2z+eNs5vjjDHZwXff\nfUePHj349ddf6dChA7GxsRQqVCjYYWW9RHHyTByrfj+S4jS7Oc4YkxXFxMTQvXt3pk+fzrXXXsu3\n335Ly5Ytgx1Wkiy5ZU3pxjq7Oc4Yk1WFhIRw6NAhhg4dypAhQyhQoECwQzpPlkwUdmOdMSar27hx\nIwMGDODdd98lNDSUr7/+OqCXvF6IzBmVMcZkU6dPn066gmnt2rXs2LEDINMmCbBEYYwxAfPll19S\npUoVRo8ezcMPP8z27dtp2rRpsMNKU5ZsejLGmKzoiy++oEiRIvz444/ceOONwQ7HZ5YojDHGT86e\nPcv48eNp2rQpN9xwA+PGjSMkJIS8efMGO7QLYk1PxhjjBytXrqROnTo8/fTTfPrppwAULlw4yyUJ\nsERhjDEZ6ujRo0RERNCoUSOOHDnCnDlzePnll4Md1kWxRGGMMRlo6tSpvPPOO/Tt25eoqCjatm2L\niAQ7rIti5yiMMeYibd++nYMHD9K4cWP69OnDbbfdRlhYWLDDyjB2RGGMMel05swZhg0bRlhYGD17\n9kRVyZ8/f7ZKEmCJwhhj0mXRokVUr16dESNG0K5dOxYsWJDlm5hSY01PxhhzgZYtW0aLFi2oUKEC\nixYt4tZbbw12SH5lRxTGGOOD+Ph4Nm3aBMBNN93Eu+++y8aNG7N9kgBLFMYYk6Z169bRqFEjbrzx\nRvbv34+I8PDDDxMSEhLs0ALCEoUxxqTi5MmT9OvXjzp16rB7924mT57M5ZdfHuywAs7OURhjTAqO\nHz9O9erV2bt3L48//jgvv/wyxYoVC3ZYQWGJwhhjPJw4cYIiRYpQtGhRunfvTrNmzWjYMGc//8aa\nnowxBqcDv9dee43Q0FDWrl0LwNChQ3N8kgA7ojDGGH766SciIiLYvHkzbdu25bLLLgt2SJmKHVEY\nY3K0J598ksaNG3P8+HHmzp3LnDlzuOqqq4IdVqZiicIYk+OoatLr0qVL8/TTTxMVFUXr1q2DGFXm\nZYnCGJOjbNu2jaZNmzJ37lwAnn32WV5//XUKFSoU5MgyL0sUxpgcISYmhueee46wsDA2bNhATExM\nsEPKMvyaKESklYhsF5GdIjIohelFRWSeiGwQkS0i0s2f8RhjcqYlS5ZQvXp1Ro0aRceOHdm+fTsd\nO3YMdlhZht+uehKR3MBEoDkQDfwiIl+qapRHsZ5AlKreJSKXAdtF5CNV/ddfcRljcp7o6Gjy5MnD\nkiVLuOWWW4IdTpbjz8tj6wE7VXUXgIjMBNoAnolCgcLi9M1bCDgCxPkxJmNMDhAfH8+UKVPIly8f\njz32GA899BAdO3Ykf/78wQ4tS/Jn01MZYK/HcLQ7ztMEoDLwF7AJeEpVE5LPSES6i0ikiET6K1hj\nTPawdu1aGjRoQK9evViwYAEAImJJ4iIE+2R2S2A9cCVQE5ggIkWSF1LVqapaR1XrBDpAY0zWcOLE\nCZ566inq1q3L3r17mTFjBp999lmww8oW/Jko/gQ871oJdcd56gbMVsdO4Hegkh9jMsZkUxs2bGDC\nhAlERESwbds2OnbsmG2fOBdo/kwUvwAVRKSciOQDOgJfJivzB9AMQERKARWBXX6MyRiTjfz++++8\n9957gPMwoZ07dzJx4kQuvfTSIEeWvfgtUahqHNALWABsBT5V1S0iEiEiEW6xkUAjEdkELAEGquoh\nf8VkjMke/v33X15++WWqVKlC//79OXr0KADlypULcmTZk187BVTV+cD8ZOOmeLz+C2jhzxiMMdnL\n8uXLiYiIICoqinvuuYdx48bl2OdEBIr1HmuMyTIOHjxIixYtKFWqFPPmzePOO+8Mdkg5QrCvejLG\nGK9UlUWLFgFw2WWX8dVXX7FlyxZLEgFkicIYk2lt2bKFm2++mRYtWrB06VIAmjVrRsGCBYMbWA5j\nicIYk+n8888/DBkyhJo1a7JlyxbeeecdmjRpEuywciw7R2GMyVRUlaZNm7J69Wq6dOnC66+/bk+c\nCzJLFMaYTGHfvn1cfvnl5M6dmyFDhlC0aFHCw8ODHZbBmp6MMUEWHx/P+PHjqVixIpMmTQKgTZs2\nliQyEZ8ShYjkE5Hy/g7GGJOzREZGUq9ePZ566ikaNWrE7bffHuyQTArSTBQicgdOz66L3OGaIjLH\n34EZY7K31157jXr16rFv3z4++eQTvvnmG6677rpgh2VS4MsRxQigPnAMQFXXA3Z0YYy5YKrK2bNn\nAahXrx49e/Zk69attG/f3jrwy8R8SRRnVfVYsnHqj2CMMdnXb7/9RqtWrRg0yHkqcnh4OG+99RZF\nixYNcmQmLb4kiq0i0h7I5fYE+yaw0s9xGWOyidjYWEaNGkW1atX4+eefrXkpC/IlUfQCagMJwGwg\nFnjKn0EZY7KHNWvWULNmTZ577jnuuusutm3bxhNPPBHssMwF8uU+ipaqOhAYmDhCRO7BSRrGGJOq\nQoUKISLMnz+f2267LdjhmHTy5YhiaArjns3oQIwxWV9CQgLvvvsujz76KAAVK1Zk8+bNliSyuFSP\nKESkJdAKKCMiYzwmFcFphjLGmCSbN28mIiKCn376iSZNmnD69GkKFixIrlx2X29W5+0bPABsBs4A\nWzz+FgK2e2CMAeD06dMMHDiQWrVqsW3bNt5//32WLl1qPbxmI6keUajqOmCdiHykqmcCGJMxJgs5\nc+YM77//Pg899BCvvfYaJUqUCHZIJoP5cjK7jIi8CFQBQhJHqur1fovKGJOpRUdHM378eF5++WVK\nlCjBtm3bKF68eLDDMn7iS+PhNOB9QHCanD4FPvFjTMaYTCouLo4333yTypUrM2HCBNavXw9gSSKb\n8yVRXKKqCwBU9TdVHYqdozAmx1m1ahV16tShX79+NGnShC1btlC7du1gh2UCwJemp1gRyQX8JiIR\nwJ9AYf+GZYzJTBISEujWrRvHjx9n1qxZ3HPPPdY3Uw7iS6LoCxQEegMvAkWBh/0ZlDEm+FSVWbNm\n0apVKwoXLszs2bMpU6YMhQvbfmJOk2bTk6quUtWTqvqHqnZW1dbAbv+HZowJlh07dtCyZUvat2/P\n1KlTAahUqZIliRzKa6IQkboi0lZESrrDVUXkQ2BVQKIzxgRUbGwsI0aMoHr16qxatYoJEybQp0+f\nYIdlgizVRCEiLwMfAZ2Ab0XkBeB7YANgl8Yakw317NmTYcOGcffdd7Nt2zZ69uxJ7ty5gx2WCTJv\n5yjaADVUNUZEigN7geqquiswoRljAuHAgQMkJCRQunRpBg4cyH333UfLli2DHZbJRLw1PZ1R1RgA\nVT0C/GpJwpjsIyEhgalTp1KxYkWeesp5ckCFChUsSZj/8HZEca2IJHYlLkA5j2FU9R6/RmaM8ZuN\nGzcSERHBzz//THh4OMOHDw92SCYT85Yo7k02PMGfgRhjAmPWrFl07NiRYsWK8eGHH/Lggw/aPRHG\nK2+dAi4JZCDGGP86ceIERYoUITw8POmktXW9YXxhHcUbk8398ccftGnThmbNmhEfH0/JkiUZN26c\nJQnjM78mChFpJSLbRWSniAxKpUy4iKwXkS0i8oM/4zEmJzl79iyjR4+mcuXKLF68mPbt26OqwQ7L\nZEG+dOEBgIjkV9XYCyifG5gINAeigV9E5EtVjfIocykwCWilqn+IyOW+h26MSc2ePXto3bo1Gzdu\n5K677uKtt97immuuCXZYJotK84hCROqJyCZghztcQ0Te8mHe9YCdqrpLVf8FZuLcm+HpAWC2qv4B\noKoHLih6Y8x5Eo8YSpcuTalSpZgzZw5z5861JGEuii9NT+OBO4HDAKq6AWjqw/vK4NyklyjaHefp\neqCYiCwVkTUi8pAP8zXGJKOqTJ8+nbp163Lq1Cny58/PwoULadu2rV3RZC6aL4kil6ruSTYuPoOW\nnweoDdwBtASeE5H/dA8iIt1FJFJEIjNoucZkG9u3b6dZs2Z07tyZPHnycPjw4WCHZLIZXxLFXhGp\nB6iI5BaRPsCvPrzvT+Aqj+FQd5ynaGCBqp5W1UPAMqBG8hmp6lRVraOqdXxYrjE5QlxcHMOGDSMs\nLIy1a9cyefJkVqxYYc1MJsP5kih6AP2Aq4H9QAN3XFp+ASqISDkRyQd0BL5MVmYu0FhE8ojIJUB9\nYKuvwRuTk+XOnZvly5fTrl07tm/fTkREBLly2RXvJuP5ctVTnKp2vNAZq2qciPQCFgC5gfdUdYv7\nlDxUdYqqbhWRb4GNQALwjqpuvtBlGZNT/P333wwZMoThw4dz1VVXMX/+fEJCQoIdlsnmfEkUv4jI\nduATnCuUTvo6c1WdD8xPNm5KsuHXgdd9nacxOVF8fDxTp05l8ODBxMTEcNttt3HVVVdZkjAB4csT\n7q4DRuGcdN4kIl+IyAUfYRhj0mfdunU0atSIJ554gjp16rBp0ybuu+++YIdlchCfGjRVdYWq9gZu\nAE7gPNDIGBMAEyZMYPfu3Xz00UcsWrSI66+354aZwPLlhrtCItJJROYBq4GDQCO/R2ZMDqWqzJkz\nh3Xr1gEwevRotm3bxgMPPGD3RJig8OWIYjPOlU6vqWp5Ve2vqvbMbGP8YPfu3bRu3Zp77rmHsWPH\nAlCsWDGKFSsW5MhMTubLyexrVTXB75EYk4OdPXuWMWPGMHz4cHLlysXo0aOTnjpnTLClmihE5A1V\n7Q98LiL/6XLSnnBnTMZ5++23GTRoEG3btmXcuHFcffXVwQ7JmCTejig+cf/bk+2M8YPDhw+ze/du\nateuzWOPPUb58uVp1apVsMMy5j9SPUehqqvdl5VVdYnnH1A5MOEZk/2oKh988AGVKlXivvvuIy4u\njvz581uSMJmWLyezH05h3CMZHYgxOcHWrVtp2rQpXbt2pUKFCnzxxRfkyePzY2GMCQpv5yg64PTP\nVE5EZntMKgwc83dgxmQ3GzZsoG7duhQqVIipU6fyyCOPWN9MJkvwtiuzGucZFKE4T6pLdBJY58+g\njMlOoqOjCQ0NJSwsjOHDh/PII49w+eX2MEeTdaSaKFT1d+B3YHHgwjEm+/jrr7/o27cv8+fPZ9u2\nbZQpU4bBgwcHOyxjLliqx70i8oP7/6iIHPH4OyoiRwIXojFZS3x8PBMmTKBy5crMnTuXZ555hpIl\nSwY7LGPSzVvTU+LjTm0NN8ZHZ86coUmTJvzyyy80b96cSZMmUb58+WCHZcxF8XZ5bOLd2FcBuVU1\nHmgIPA4UDEBsxmQZZ8+eBSAkJISmTZsyY8YMFixYYEnCZAu+XHLxBc5jUK8D3gcqAB/7NSpjsghV\nZdasWZQvX561a9cC8Oqrr9KxY0frwM9kG74kigRVPQvcA7ylqn2BMv4Ny5jMb9euXdxxxx3cd999\nlChRwi51NdmWL2t2nIjcB3QGvnLH5fVfSMZkfmPGjKFq1aosX76csWPHsnr1amrWrBnssIzxC19u\nCX0YeAKnm/FdIlIOmOHfsIzJ3E6dOsXtt9/OuHHjCA0NDXY4xvhVmolCVTeLSG+gvIhUAnaq6ov+\nD82YzOPQoUMMGDCAu+++m9atWzN06FBrajI5RpqJQkRuAv4P+BMQoLSIdFbVn/wdnDHBlpCQwLRp\n0xgwYAAnTpygevXqAJYkTI7iS9PTm8DtqhoFICKVcRJHHX8GZkywRUVFERERwfLly2ncuDFTpkyh\natWqwQ7LmIDzJVHkS0wSAKq6VUTy+TEmYzKFyMhItmzZwrvvvkvXrl3tKMLkWL4kirUiMgWY7g53\nwjoFNNnU/PnzOXz4MJ07d6Zz587ceeedFC9ePNhhGRNUvuwiRQC7gGfcv104d2cbk21ER0fTrl07\n7rjjDiZMmICqIiKWJIwhjSMKEakOXAfMUdXXAhOSMYETFxfHxIkTGTp0KHFxcbz44os8/fTTdle1\nMR689R47BKf7jk7AIhFJ6Ul3xmRpa9asoU+fPjRu3JgtW7YwZMgQ8uWzU3DGePLW9NQJCFPV+4C6\nQI/AhGQtl754AAAdBklEQVSMfx0/fpzZs52HNtavX59Vq1Yxf/58rr322iBHZkzm5C1RxKrqaQBV\nPZhGWWMyPVXlk08+oVKlSnTs2JG//voLgHr16llTkzFeeDtHca3Hs7IFuM7z2dmqeo9fIzMmA/32\n22/07NmTBQsWULt2bebNm8eVV14Z7LCMyRK8JYp7kw1P8GcgxvjLyZMnqV27NgkJCYwfP54nnniC\n3LlzBzssY7IMb8/MXhLIQIzJaBs3biQsLIzChQvz7rvv0qBBA8qUsR7yjblQdt7BZDsHDx6kS5cu\n1KhRg/nz5wNw7733WpIwJp38mihEpJWIbBeRnSIyyEu5uiISJyLt/BmPyd4SEhJ45513qFixIjNm\nzGDIkCGEh4cHOyxjsjxfuvAAQETyq2rsBZTPDUwEmgPRwC8i8qVnv1Ee5V4FFvo6b2NScu+99/LF\nF1/QpEkTJk+eTJUqVYIdkjHZQppHFCJST0Q2ATvc4Roi8pYP866H8+yKXar6LzATaJNCuSeBz4ED\nvodtjOP06dPExcUBcP/99zNt2jSWLl1qScKYDORL09N44E7gMICqbgCa+vC+MsBej+Fokj1rW0TK\nAHcDk73NSES6i0ikiET6sFyTQ8ybN48qVaowadIkANq3b0+XLl3snghjMpgviSKXqu5JNi4+g5Y/\nFhioqgneCqnqVFWto6r2DAzD3r17ueeee2jdujWFCxemdu3awQ7JmGzNl3MUe0WkHqDu+YQngV99\neN+fwFUew6HuOE91gJnuHmBJ4HYRiVPVL3yYv8mBpk+fTkREBAkJCbzyyiv07dvX+mYyxs98SRQ9\ncJqfrgb2A4vxrd+nX4AKIlIOJ0F0BB7wLKCq5RJfi8g04CtLEiYlid1+h4aGEh4ezltvvUW5cuXS\nfqMx5qKlmShU9QDORv6CqGqciPQCFgC5gfdUdYuIRLjTp1zoPE3Oc+zYMQYPHkzBggUZPXo04eHh\ndsmrMQGWZqIQkf8Bmny8qnZP672qOh+Yn2xciglCVbumNT+Tc6gqM2bMoF+/fhw8eJC+ffsmHVUY\nYwLLl6anxR6vQ3CuUtqbSlljLtrvv/9O9+7dWbx4MXXr1uWbb76hVq1awQ7LmBzLl6anTzyHReT/\ngB/9FpHJ8c6ePcvGjRuZOHEijz/+uHXgZ0yQ+XxntodyQKmMDsTkbEuWLOHrr79mzJgxXH/99ezZ\ns4eQkJBgh2WMwbc7s4+KyBH37xiwCBjs/9BMTrB//34efPBBbr31Vr788ksOHz4MYEnCmEzEa6IQ\n58xhDeAy96+Yql6rqp8GIjiTfSUkJPD2229TqVIlPv30U5577jk2bdpEiRIlgh2aMSYZr01Pqqoi\nMl9VqwUqIJMzHD9+nKFDh1KzZk0mT55MpUqVgh2SMSYVvnThsV5E7JITc9FOnTrFmDFjiI+Pp1ix\nYqxatYrvvvvOkoQxmVyqiUJEEo82auF0Eb5dRNaKyDoRWRuY8Ex2MXfuXKpUqUL//v354YcfALj2\n2mvtvghjsgBvTU+rgRuA1gGKxWRDe/bsoXfv3nz55ZdUr16dmTNn0qhRo2CHZYy5AN4ShQCo6m8B\nisVkM6pKu3btiIqK4rXXXqNPnz7kzZs32GEZYy6Qt0RxmYj0S22iqo7xQzwmG1i5ciVVq1alcOHC\nTJ06leLFi3PNNdcEOyxjTDp5O5mdGygEFE7lz5jzHDlyhMcff5yGDRsyevRoAGrVqmVJwpgsztsR\nxT5VHRGwSEyWpapMnz6d/v37c+TIEfr378+AAQOCHZYxJoOkeY7CmLQMGTKEV155hQYNGrBo0SJq\n1KgR7JCMMRnIW6JoFrAoTJZz5swZTp06RcmSJenWrRvXXHMN3bt3J1cuX27NMcZkJan+qlX1SCAD\nMVnHokWLqF69Oo899hgA119/PREREZYkjMmm7JdtfPb333/zwAMP0KJFC0SEXr16BTskY0wApKeb\ncZMDff/999x9993ExMTwwgsvMHDgQOvh1ZgcwhKF8ers2bPkzZuXsLAwmjdvzosvvsj1118f7LCM\nMQFkTU8mRSdPnqRv377cdNNNxMfHU6JECT777DNLEsbkQJYozHlUldmzZ1O5cmXGjRtHrVq1iI2N\nDXZYxpggskRhkhw6dIi77rqLe++9l5IlS7JixQomT57MJZdcEuzQjDFBZInCJClcuDD79+9nzJgx\nREZG0qBBg2CHZIzJBCxR5HA//vgjt912G6dOnSJ//vysWrWKvn37kiePXedgjHFYosihDh8+zKOP\nPspNN91EVFQUu3btArCb5owx/2FbhRxGVZk2bRoVK1Zk2rRpDBgwgKioKMLCwoIdmjEmk7L2hRzo\nww8/pGLFikyZMoXq1asHOxxjTCZnRxQ5QExMDMOGDSM6OhoR4fPPP2f58uWWJIwxPrFEkc0tWLCA\natWqMWLECObOnQtAsWLF7FyEMcZntrXIpv766y86dOhAq1atyJs3L9999x09e/YMdljGmCzIEkU2\nNWrUKObOncuIESPYsGEDTZs2DXZIxpgsyk5mZyNr1qxJ6sBv5MiR9OvXj/Llywc7LGNMFufXIwoR\naSUi20Vkp4gMSmF6JxHZKCKbRGSFiNgzNNPhxIkT9O7dm3r16jFkyBAASpQoYUnCGJMh/JYoRCQ3\nMBG4DagC3C8iVZIV+x24WVWrAyOBqf6KJztSVT777DMqVarEhAkT6NGjB9OnTw92WMaYbMafTU/1\ngJ2qugtARGYCbYCoxAKqusKj/Eog1I/xZDsff/wxDz74ILVq1WLu3LnUrVs32CEZY7IhfyaKMsBe\nj+FooL6X8o8A36Q0QUS6A90B8pXO2c0p//77L7t27aJSpUq0a9eOmJgYunbtan0zGWP8JlNc9SQi\nTXESxcCUpqvqVFWto6p1AhtZ5rJs2TJq1qxJixYtOHPmDPnz5+fRRx+1JGGM8St/Joo/gas8hkPd\ncecRkTDgHaCNqh72YzxZ1qFDh+jWrRs333wzMTExTJkyxZ5XbYwJGH/uiv4CVBCRcjgJoiPwgGcB\nEbkamA10VtVf/RhLlrVr1y7q1q3LiRMnGDRoEM8995w9SMgYE1B+SxSqGicivYAFQG7gPVXdIiIR\n7vQpwPNACWCSiADE5fTmpUQnTpygSJEilCtXjm7dutG1a1eqVasW7LCMMTmQqGqwY7gg+a+ooG1f\n+JBPHm8Y7FD84p9//mHkyJFMnTqVDRs2EBpqF4IZYy6eiKxJ7464nQXNRL7++mt69erF7t276dat\nGwUKFAh2SMYYY4kiM4iLi+P+++9n1qxZVK5cmR9++IEmTZoEOyxjjAEyyeWxOVVis1+ePHkoVaoU\nL730EuvXr7ckYYzJVCxRBMkvv/xC/fr1Wbt2LQATJkxg8ODB5MuXL8iRGWPM+SxRBNjx48fp1asX\n9evXJzo6msOH7dYRY0zmZokigBI78Js8eTK9evVi27ZtNG/ePNhhGWOMV3YyO4C2bt1KmTJlmDdv\nHnXq2O0ixpiswY4o/Cg2NpZRo0Yxb948AAYPHsyqVassSRhjshRLFH7y/fffU6NGDZ577jmWLFkC\nQN68ecmdO3eQIzPGmAtjiSKDHThwgC5dunDLLbdw9uxZvvnmG8aOHRvssIwxJt0sUWSwhQsXMmPG\nDJ599lk2b95Mq1atgh2SMcZcFDuZnQE2bdrE9u3badeuHZ06daJRo0Zce+21wQ7LGGMyhB1RXITT\np0/zzDPPUKtWLZ555hnOnj2LiFiSMMZkK3ZEkU7z5s2jV69e/PHHHzzyyCO8+uqr5M2bN9hhmUzk\n7NmzREdHc+bMmWCHYnKQkJAQQkNDM3R7ZIkiHTZv3kzr1q2pWrUqy5cvp3HjxsEOyWRC0dHRFC5c\nmLJly+I+b8UYv1JVDh8+THR0NOXKlcuw+VrTk4/i4uJYunQpANWqVeOrr75i3bp1liRMqs6cOUOJ\nEiUsSZiAERFKlCiR4Uexlih8kHiTXLNmzdixYwcAd9xxhzU1mTRZkjCB5o91zhKFF0ePHqVHjx40\nbNiQQ4cO8dlnn1G+fPlgh2WMMQFliSIVsbGx1KpVi6lTp9KnTx+2bt3KPffcY3uIJkvJnTs3NWvW\npFq1atx1110cO3YsadqWLVu45ZZbqFixIhUqVGDkyJF4Phr5m2++oU6dOlSpUoVatWrRv3//YHwE\nr9atW8cjjzwS7DBSdfjwYZo2bUqhQoXo1atXquWOHDlC8+bNqVChAs2bN+fo0aNJ015++WXKly9P\nxYoVWbBgQdL4W2+99bxy/mSJIpk///wTgPz58/PCCy8QGRnJmDFjKFy4cJAjM+bCFShQgPXr17N5\n82aKFy/OxIkTAYiJiaF169YMGjSI7du3s2HDBlasWMGkSZMA54KNXr16MX36dKKiooiMjMzwo+m4\nuLiLnsdLL71E7969A7rMCxESEsLIkSMZPXq013KvvPJKUtN2s2bNeOWVVwCIiopi5syZbNmyhW+/\n/ZYnnniC+Ph4ADp37pz0ffmbXfXkOnPmDK+++iovvfQSn376KW3atKFr167BDstkE8PnbSHqrxMZ\nPt8qVxZh2F1VfSrbsGFDNm7cCMDHH3/MjTfeSIsWLQC45JJLmDBhAuHh4fTs2ZPXXnuNZ599lkqV\nKgHOkUmPHj3+M89Tp07x5JNPEhkZiYgwbNgw7r33XgoVKsSpU6cAmDVrFl999RXTpk2ja9euhISE\nsG7dOm688UZmz57N+vXrufTSSwGoUKECP/74I7ly5SIiIoI//vgDgLFjx3LjjTeet+yTJ0+yceNG\natSoAcDq1at56qmnOHPmDAUKFOD999+nYsWKTJs2jdmzZ3Pq1Cni4+P54YcfeP311/n000+JjY3l\n7rvvZvjw4QC0bduWvXv3cubMGZ566im6d+9+Qd9HcgULFqRx48bs3LnTa7m5c+cmXSzTpUsXwsPD\nefXVV5k7dy4dO3Ykf/78lCtXjvLly7N69WoaNmxI69atuemmm3j22WcvKkZfWKIAlixZQo8ePdix\nYwf3338/9evXD3ZIJpuJ+usEq34/ErTlx8fHs2TJkqRmmi1btlC7du3zylx33XWcOnWKEydOsHnz\nZp+amkaOHEnRokXZtGkTgE9NIdHR0axYsYLcuXMTHx/PnDlz6NatG6tWreKaa66hVKlSPPDAA/Tt\n25fGjRvzxx9/0LJlS7Zu3XrefCIjI6lWrVrScKVKlVi+fDl58uRh8eLFDBkyhM8//xyAtWvXsnHj\nRooXL87ChQvZsWMHq1evRlVp3bo1y5Yto0mTJrz33nsUL16cmJgY6taty7333kuJEiXOW27fvn35\n/vvv//O5OnbsyKBBg9L8/CnZv38/V1xxBQClS5dm//79gNPC0aBBg6RyoaGhSa0exYoVIzY2lsOH\nD/8nxoyW4xNFnz59GDduHOXLl2fhwoX2ICHjF1WuLBKU+cbExFCzZk3+/PNPKleunOHr9+LFi5k5\nc2bScLFixdJ8z3333ZfUi3KHDh0YMWIE3bp1Y+bMmXTo0CFpvlFRUUnvOXHiBKdOnaJQoUJJ4/bt\n28dll12WNHz8+HG6dOnCjh07EBHOnj2bNK158+YUL14ccPpjW7hwIbVq1QKco6IdO3bQpEkTxo8f\nz5w5cwDYu3cvO3bs+M9G+M033/StctJJRHw+F3r55Zfz119/WaLwh4SEBFSV3LlzU69ePZ5//nkG\nDx5MSEhIsEMz2ZSvzUMZLfEcxT///EPLli2ZOHEivXv3pkqVKixbtuy8srt27aJQoUIUKVKEqlWr\nsmbNmqRmnQvluaFLfk1/wYIFk143bNiQnTt3cvDgQb744guGDh0KOL/RlStXev1NFihQ4Lx5P/fc\nczRt2pQ5c+awe/duwsPDU1ymqjJ48GAef/zx8+a3dOlSFi9ezM8//8wll1xCeHh4ivcj+OOIolSp\nUuzbt48rrriCffv2cfnllwNQpkwZ9u7dm1QuOjqaMmXKJA0nNrP5W447mb1hwwYaNWqUdFLvgQce\nYPjw4ZYkTLZ2ySWXMH78eN544w3i4uLo1KkTP/74I4sXLwacI4/evXvzzDPPADBgwABeeuklfv31\nV8DZcE+ZMuU/823evHnSbwnONT2VKlWKrVu3kpCQkLSHnhIR4e6776Zfv35Urlw5ac+4RYsWvPXW\nW0nl1q9f/5/3Vq5c+by2/+PHjydtRKdNm5bqMlu2bMl7772XdA7lzz//5MCBAxw/fpxixYpxySWX\nsG3bNlauXJni+998803Wr1//n7/0JgmA1q1b88EHHwDwwQcf0KZNm6TxM2fOJDY2lt9//50dO3ZQ\nr149wEl4f//9N2XLlk33cn2VYxLFqVOn6N+/P7Vr12bXrl2ULl062CEZE1C1atUiLCyMGTNmUKBA\nAebOncuoUaOoWLEi1atXp27dukmXcIaFhTF27Fjuv/9+KleuTLVq1di1a9d/5jl06FCOHj1KtWrV\nqFGjRtKe9iuvvMKdd95Jo0aNktreU9OhQwemT5+e1OwEMH78eCIjIwkLC6NKlSopJqlKlSpx/Phx\nTp48CcAzzzzD4MGDqVWrlterm1q0aMEDDzxAw4YNqV69Ou3atePkyZO0atWKuLg4KleuzKBBg847\nN3AxypYtS79+/Zg2bRqhoaFJTWqPPvookZGRAAwaNIhFixZRoUIFFi9enJR0qlatSvv27alSpQqt\nWrVi4sSJSc12a9asoUGDBuTJE4CGIVXNUn/5SpfX9lNW6IVYtGiRhoaGKqDdu3fXI0eOXND7jUmP\nqKioYIeQ7Y0ZM0b/97//BTuMoOjdu7cuXrw4xWkprXtApKZzu5sjjijy5ctH8eLF+emnn3j77bd9\nOuFmjMn8evToQf78+YMdRlBUq1aNZs2aBWRZ2fJk9tmzZxk7dizHjx9n1KhRNGnShHXr1pErV47I\ni8bkGCEhIXTu3DnYYQTFY489FrBlZbst54oVK6hduzbPPPNM0sk0wJKECQr16BLDmEDwxzqXbbae\nR44coXv37tx4440cO3aML774gs8//9wShAmakJAQDh8+bMnCBIy6z6PI6Ks4s03T0+HDh/n44495\n+umnGTZs2Hk35hgTDKGhoURHR3Pw4MFgh2JykMQn3GWkLJ0otm/fzieffMLzzz9PhQoV2LNnj9/v\nUDTGV3nz5s3Qp4wZEyx+bZcRkVYisl1EdorIf+5GEcd4d/pGEbnBl/nG/RvL888/T1hYGG+++WbS\nnYuWJIwxJuOJv9pPRSQ38CvQHIgGfgHuV9UojzK3A08CtwP1gXGq6rVHvrzFy2hIHuHUwT/p1KkT\nb7zxBqVKlfLLZzDGmOxCRNaoap30vNefTU/1gJ2qugtARGYCbYAojzJtgA/dm0FWisilInKFqu5L\nbabxx/eTr3QoixcvDtg1xMYYk5P5M1GUAfZ6DEfjHDWkVaYMcF6iEJHuQGLH8LFH/tqz+dZbb83Y\naLOmksChYAeRSVhdnGN1cY7VxTkV0/vGLHEyW1WnAlMBRCQyvYdP2Y3VxTlWF+dYXZxjdXGOiESm\n973+PJn9J3CVx3CoO+5CyxhjjAkifyaKX4AKIlJORPIBHYEvk5X5EnjIvfqpAXDc2/kJY4wxgee3\npidVjRORXsACIDfwnqpuEZEId/oUYD7OFU87gX+Abj7MeqqfQs6KrC7Osbo4x+riHKuLc9JdF367\nPNYYY0z2YB0hGWOM8coShTHGGK8ybaLwV/cfWZEPddHJrYNNIrJCRGoEI85ASKsuPMrVFZE4EWkX\nyPgCyZe6EJFwEVkvIltE5IdAxxgoPvxGiorIPBHZ4NaFL+dDsxwReU9EDojI5lSmp2+7md5H4/nz\nD+fk92/AtUA+YANQJVmZ24FvAAEaAKuCHXcQ66IRUMx9fVtOrguPct/hXCzRLthxB3G9uBSnJ4Sr\n3eHLgx13EOtiCPCq+/oy4AiQL9ix+6EumgA3AJtTmZ6u7WZmPaJI6v5DVf8FErv/8JTU/YeqrgQu\nFRHvT3HPmtKsC1VdoapH3cGVOPejZEe+rBfg9B/2OXAgkMEFmC918QAwW1X/AFDV7FofvtSFAoVF\nRIBCOIkiLrBh+p+qLsP5bKlJ13YzsyaK1Lr2uNAy2cGFfs5HcPYYsqM060JEygB3A5MDGFcw+LJe\nXA8UE5GlIrJGRB4KWHSB5UtdTAAqA38Bm4CnVDUhMOFlKunabmaJLjyMb0SkKU6iaBzsWIJoLDBQ\nVROcncccLQ9QG2gGFAB+FpGVqvprcMMKipbAeuAW4DpgkYgsV9UTwQ0ra8isicK6/zjHp88pImHA\nO8Btqno4QLEFmi91UQeY6SaJksDtIhKnql8EJsSA8aUuooHDqnoaOC0iy4AaON3/Zye+1EU34BV1\nGup3isjvQCVgdWBCzDTStd3MrE1P1v3HOWnWhYhcDcwGOmfzvcU060JVy6lqWVUtC8wCnsiGSQJ8\n+43MBRqLSB4RuQSn9+atAY4zEHypiz9wjqwQkVI4PanuCmiUmUO6tpuZ8ohC/df9R5bjY108D5QA\nJrl70nGaDXvM9LEucgRf6kJVt4rIt8BGIAF4R1VTvGwyK/NxvRgJTBORTThX/AxU1WzX/biIzADC\ngZIiEg0MA/LCxW03rQsPY4wxXmXWpidjjDGZhCUKY4wxXlmiMMYY45UlCmOMMV5ZojDGGOOVJQqT\n6YhIvNvjaeJfWS9ly6bWU+YFLnOp2/voBhH5SUQqpmMeEYndZIhIVxG50mPaOyJSJYPj/EVEavrw\nnj7ufRTGpIslCpMZxahqTY+/3QFabidVrQF8ALx+oW9271340B3sClzpMe1RVY3KkCjPxTkJ3+Ls\nA1iiMOlmicJkCe6Rw3IRWev+NUqhTFURWe0ehWwUkQru+Ac9xr8tIrnTWNwyoLz73mYisk6cZ328\nJyL53fGviEiUu5zR7rgXRORpcZ6BUQf4yF1mAfdIoI571JG0cXePPCakM86f8ejQTUQmi0ikOM9b\nGO6O642TsL4Xke/dcS1E5Ge3Hj8TkUJpLMfkcJYoTGZUwKPZaY477gDQXFVvADoA41N4XwQwTlVr\n4myoo0Wkslv+Rnd8PNApjeXfBWwSkRBgGtBBVavj9GTQQ0RK4PRQW1VVw4BRnm9W1VlAJM6ef01V\njfGY/Ln73kQdcPqmSk+crQDP7kmede/IDwNuFpEwVR2P02NqU1VtKiIlgaHArW5dRgL90liOyeEy\nZRceJseLcTeWnvICE9w2+XicLrST+xl4VkRCcZ7DsENEmuH0oPqL271JAVJ/TsVHIhID7MZ5pkVF\n4HeP/rM+AHridFl9BnhXRL4CvvL1g6nqQRHZ5fazswOnY7qf3PleSJz5cJ6r4FlP7UWkO87v+gqg\nCk73HZ4auON/cpeTD6fejEmVJQqTVfQF9uP0fpoLZ0N9HlX9WERWAXcA80XkcZx+fT5Q1cE+LKOT\nqkYmDohI8ZQKuX0L1cPpZK4d0Aun+2pfzQTaA9uAOaqq4my1fY4TWINzfuIt4B4RKQc8DdRV1aMi\nMg0ISeG9AixS1fsvIF6Tw1nTk8kqigL73IfNdMbp/O08InItsMttbpmL0wSzBGgnIpe7ZYqLyDU+\nLnM7UFZEyrvDnYEf3Db9oqo6HyeBpfSM8pNA4VTmOwfnSWP34yQNLjROt7vs54AGIlIJKAKcBo6L\n0zvqbanEshK4MfEziUhBEUnp6MyYJJYoTFYxCegiIhtwmmtOp1CmPbBZRNYD1XAe+RiF0ya/UEQ2\nAotwmmXSpKpncHrX/MztdTQBmIKz0f3Knd+PpNzGPw2YkngyO9l8j+J0932Nqq52x11wnO65jzeA\nAaq6AViHc5TyMU5zVqKpwLci8r2qHsS5ImuGu5yfcerTmFRZ77HGGGO8siMKY4wxXlmiMMYY45Ul\nCmOMMV5ZojDGGOOVJQpjjDFeWaIwxhjjlSUKY4wxXv0/dgIM06KuZaQAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "meu.plot_model_roc_curve(clf=logistic, features=X_test, true_labels=y_test)" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/New-Second-Edition/Ch05 - Text Classification/Ch05b - Text Classification - I.ipynb b/New-Second-Edition/Ch05 - Text Classification/Ch05b - Text Classification - I.ipynb new file mode 100644 index 0000000..db7fe42 --- /dev/null +++ b/New-Second-Edition/Ch05 - Text Classification/Ch05b - Text Classification - I.ipynb @@ -0,0 +1,4307 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.datasets import fetch_20newsgroups\n", + "import numpy as np\n", + "import text_normalizer as tn\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import warnings\n", + "warnings.filterwarnings('ignore')\n", + "\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Downloading 20news dataset. This may take a few minutes.\n", + "Downloading dataset from https://ndownloader.figshare.com/files/5975967 (14 MB)\n" + ] + } + ], + "source": [ + "data = fetch_20newsgroups(subset='all', shuffle=True,\n", + " remove=('headers', 'footers', 'quotes'))\n", + "data_labels_map = dict(enumerate(data.target_names))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(18846, 3)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ArticleTarget LabelTarget Name
0\\n\\nI am sure some bashers of Pens fans are pr...10rec.sport.hockey
1My brother is in the market for a high-perform...3comp.sys.ibm.pc.hardware
2\\n\\n\\n\\n\\tFinally you said what you dream abou...17talk.politics.mideast
3\\nThink!\\n\\nIt's the SCSI card doing the DMA t...3comp.sys.ibm.pc.hardware
41) I have an old Jasmine drive which I cann...4comp.sys.mac.hardware
5\\n\\nBack in high school I worked as a lab assi...12sci.electronics
6\\n\\nAE is in Dallas...try 214/241-6060 or 214/...4comp.sys.mac.hardware
7\\n[stuff deleted]\\n\\nOk, here's the solution t...10rec.sport.hockey
8\\n\\n\\nYeah, it's the second one. And I believ...10rec.sport.hockey
9\\nIf a Christian means someone who believes in...19talk.religion.misc
\n", + "
" + ], + "text/plain": [ + " Article Target Label \\\n", + "0 \\n\\nI am sure some bashers of Pens fans are pr... 10 \n", + "1 My brother is in the market for a high-perform... 3 \n", + "2 \\n\\n\\n\\n\\tFinally you said what you dream abou... 17 \n", + "3 \\nThink!\\n\\nIt's the SCSI card doing the DMA t... 3 \n", + "4 1) I have an old Jasmine drive which I cann... 4 \n", + "5 \\n\\nBack in high school I worked as a lab assi... 12 \n", + "6 \\n\\nAE is in Dallas...try 214/241-6060 or 214/... 4 \n", + "7 \\n[stuff deleted]\\n\\nOk, here's the solution t... 10 \n", + "8 \\n\\n\\nYeah, it's the second one. And I believ... 10 \n", + "9 \\nIf a Christian means someone who believes in... 19 \n", + "\n", + " Target Name \n", + "0 rec.sport.hockey \n", + "1 comp.sys.ibm.pc.hardware \n", + "2 talk.politics.mideast \n", + "3 comp.sys.ibm.pc.hardware \n", + "4 comp.sys.mac.hardware \n", + "5 sci.electronics \n", + "6 comp.sys.mac.hardware \n", + "7 rec.sport.hockey \n", + "8 rec.sport.hockey \n", + "9 talk.religion.misc " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "corpus, target_labels, target_names = (data.data, data.target, \n", + " [data_labels_map[label] for label in data.target])\n", + "data_df = pd.DataFrame({'Article': corpus, 'Target Label': target_labels, 'Target Name': target_names})\n", + "print(data_df.shape)\n", + "data_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Empty documents: 515\n" + ] + } + ], + "source": [ + "total_nulls = data_df[data_df.Article.str.strip() == ''].shape[0]\n", + "print(\"Empty documents:\", total_nulls)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(18331, 3)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_df = data_df[~(data_df.Article.str.strip() == '')]\n", + "data_df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "import nltk\n", + "stopword_list = nltk.corpus.stopwords.words('english')\n", + "# just to keep negation if any in bi-grams\n", + "stopword_list.remove('no')\n", + "stopword_list.remove('not')\n", + "\n", + "# normalize our corpus\n", + "norm_corpus = tn.normalize_corpus(corpus=data_df['Article'], html_stripping=True, contraction_expansion=True, \n", + " accented_char_removal=True, text_lower_case=True, text_lemmatization=True, \n", + " text_stemming=False, special_char_removal=True, remove_digits=True,\n", + " stopword_removal=True, stopwords=stopword_list)\n", + "data_df['Clean Article'] = norm_corpus" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ArticleClean ArticleTarget LabelTarget Name
0\\n\\nI am sure some bashers of Pens fans are pr...sure basher pen fan pretty confused lack kind ...10rec.sport.hockey
1My brother is in the market for a high-perform...brother market high performance video card sup...3comp.sys.ibm.pc.hardware
2\\n\\n\\n\\n\\tFinally you said what you dream abou...finally say dream mediterranean new area great...17talk.politics.mideast
3\\nThink!\\n\\nIt's the SCSI card doing the DMA t...think scsi card dma transfer not disk scsi car...3comp.sys.ibm.pc.hardware
41) I have an old Jasmine drive which I cann...old jasmine drive not use new system understan...4comp.sys.mac.hardware
5\\n\\nBack in high school I worked as a lab assi...back high school work lab assistant bunch expe...12sci.electronics
6\\n\\nAE is in Dallas...try 214/241-6060 or 214/...ae dallas try tech support may line one get start4comp.sys.mac.hardware
7\\n[stuff deleted]\\n\\nOk, here's the solution t...stuff delete ok solution problem move canada y...10rec.sport.hockey
8\\n\\n\\nYeah, it's the second one. And I believ...yeah second one believe price try get good loo...10rec.sport.hockey
9\\nIf a Christian means someone who believes in...christian mean someone believe divinity jesus ...19talk.religion.misc
\n", + "
" + ], + "text/plain": [ + " Article \\\n", + "0 \\n\\nI am sure some bashers of Pens fans are pr... \n", + "1 My brother is in the market for a high-perform... \n", + "2 \\n\\n\\n\\n\\tFinally you said what you dream abou... \n", + "3 \\nThink!\\n\\nIt's the SCSI card doing the DMA t... \n", + "4 1) I have an old Jasmine drive which I cann... \n", + "5 \\n\\nBack in high school I worked as a lab assi... \n", + "6 \\n\\nAE is in Dallas...try 214/241-6060 or 214/... \n", + "7 \\n[stuff deleted]\\n\\nOk, here's the solution t... \n", + "8 \\n\\n\\nYeah, it's the second one. And I believ... \n", + "9 \\nIf a Christian means someone who believes in... \n", + "\n", + " Clean Article Target Label \\\n", + "0 sure basher pen fan pretty confused lack kind ... 10 \n", + "1 brother market high performance video card sup... 3 \n", + "2 finally say dream mediterranean new area great... 17 \n", + "3 think scsi card dma transfer not disk scsi car... 3 \n", + "4 old jasmine drive not use new system understan... 4 \n", + "5 back high school work lab assistant bunch expe... 12 \n", + "6 ae dallas try tech support may line one get start 4 \n", + "7 stuff delete ok solution problem move canada y... 10 \n", + "8 yeah second one believe price try get good loo... 10 \n", + "9 christian mean someone believe divinity jesus ... 19 \n", + "\n", + " Target Name \n", + "0 rec.sport.hockey \n", + "1 comp.sys.ibm.pc.hardware \n", + "2 talk.politics.mideast \n", + "3 comp.sys.ibm.pc.hardware \n", + "4 comp.sys.mac.hardware \n", + "5 sci.electronics \n", + "6 comp.sys.mac.hardware \n", + "7 rec.sport.hockey \n", + "8 rec.sport.hockey \n", + "9 talk.religion.misc " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_df = data_df[['Article', 'Clean Article', 'Target Label', 'Target Name']]\n", + "data_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Int64Index: 18331 entries, 0 to 18845\n", + "Data columns (total 4 columns):\n", + "Article 18331 non-null object\n", + "Clean Article 18304 non-null object\n", + "Target Label 18331 non-null int64\n", + "Target Name 18331 non-null object\n", + "dtypes: int64(1), object(3)\n", + "memory usage: 1.3+ MB\n" + ] + } + ], + "source": [ + "data_df = data_df.replace(r'^(\\s?)+$', np.nan, regex=True)\n", + "data_df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 18304 entries, 0 to 18303\n", + "Data columns (total 4 columns):\n", + "Article 18304 non-null object\n", + "Clean Article 18304 non-null object\n", + "Target Label 18304 non-null int64\n", + "Target Name 18304 non-null object\n", + "dtypes: int64(1), object(3)\n", + "memory usage: 572.1+ KB\n" + ] + } + ], + "source": [ + "data_df = data_df.dropna().reset_index(drop=True)\n", + "data_df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "data_df.to_csv('clean_newsgroups.csv', index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "data_df = pd.read_csv('clean_newsgroups.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((12263,), (6041,))" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "\n", + "train_corpus, test_corpus, train_label_nums, test_label_nums, train_label_names, test_label_names =\\\n", + " train_test_split(np.array(data_df['Clean Article']), np.array(data_df['Target Label']),\n", + " np.array(data_df['Target Name']), test_size=0.33, random_state=42)\n", + "\n", + "train_corpus.shape, test_corpus.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Target LabelTrain CountTest Count
19comp.windows.x693287
0rec.sport.hockey666308
1comp.graphics664289
6sci.crypt660302
5soc.religion.christian653321
9sci.electronics649307
13misc.forsale645314
2comp.sys.ibm.pc.hardware639324
10sci.med638322
17comp.sys.mac.hardware632295
15comp.os.ms-windows.misc631315
7sci.space629324
18rec.motorcycles618351
14rec.sport.baseball615336
16rec.autos606328
8talk.politics.guns604281
4talk.politics.mideast592326
11talk.politics.misc512244
3alt.atheism511268
12talk.religion.misc406199
\n", + "
" + ], + "text/plain": [ + " Target Label Train Count Test Count\n", + "19 comp.windows.x 693 287\n", + "0 rec.sport.hockey 666 308\n", + "1 comp.graphics 664 289\n", + "6 sci.crypt 660 302\n", + "5 soc.religion.christian 653 321\n", + "9 sci.electronics 649 307\n", + "13 misc.forsale 645 314\n", + "2 comp.sys.ibm.pc.hardware 639 324\n", + "10 sci.med 638 322\n", + "17 comp.sys.mac.hardware 632 295\n", + "15 comp.os.ms-windows.misc 631 315\n", + "7 sci.space 629 324\n", + "18 rec.motorcycles 618 351\n", + "14 rec.sport.baseball 615 336\n", + "16 rec.autos 606 328\n", + "8 talk.politics.guns 604 281\n", + "4 talk.politics.mideast 592 326\n", + "11 talk.politics.misc 512 244\n", + "3 alt.atheism 511 268\n", + "12 talk.religion.misc 406 199" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from collections import Counter\n", + "\n", + "trd = dict(Counter(train_label_names))\n", + "tsd = dict(Counter(test_label_names))\n", + "\n", + "(pd.DataFrame([[key, trd[key], tsd[key]] for key in trd], \n", + " columns=['Target Label', 'Train Count', 'Test Count'])\n", + ".sort_values(by=['Train Count', 'Test Count'],\n", + " ascending=False))" + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "from sklearn.model_selection import cross_val_score\n", + "\n", + "# build BOW features on train articles\n", + "cv = CountVectorizer(binary=False, min_df=0.0, max_df=1.0)\n", + "cv_train_features = cv.fit_transform(train_corpus)" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [], + "source": [ + "# transform test articles into features\n", + "cv_test_features = cv.transform(test_corpus)" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BOW model:> Train features shape: (12263, 66865) Test features shape: (6041, 66865)\n" + ] + } + ], + "source": [ + "print('BOW model:> Train features shape:', cv_train_features.shape, ' Test features shape:', cv_test_features.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.68468102 0.68241042 0.67835304 0.67741935 0.6792144 ]\n", + "Mean CV Accuracy: 0.680415648396\n", + "Test Accuracy: 0.680185399768\n" + ] + } + ], + "source": [ + "from sklearn.naive_bayes import MultinomialNB\n", + "\n", + "mnb = MultinomialNB(alpha=1)\n", + "mnb.fit(cv_train_features, train_label_names)\n", + "mnb_bow_cv_scores = cross_val_score(mnb, cv_train_features, train_label_names, cv=5)\n", + "mnb_bow_cv_mean_score = np.mean(mnb_bow_cv_scores)\n", + "print('CV Accuracy (5-fold):', mnb_bow_cv_scores)\n", + "print('Mean CV Accuracy:', mnb_bow_cv_mean_score)\n", + "mnb_bow_test_score = mnb.score(cv_test_features, test_label_names)\n", + "print('Test Accuracy:', mnb_bow_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.70418529 0.69788274 0.69384427 0.6998775 0.69599018]\n", + "Mean CV Accuracy: 0.698355996012\n", + "Test Accuracy: 0.703856977322\n" + ] + } + ], + "source": [ + "from sklearn.linear_model import LogisticRegression\n", + "\n", + "lr = LogisticRegression(penalty='l2', max_iter=100, C=1, random_state=42)\n", + "lr.fit(cv_train_features, train_label_names)\n", + "lr_bow_cv_scores = cross_val_score(lr, cv_train_features, train_label_names, cv=5)\n", + "lr_bow_cv_mean_score = np.mean(lr_bow_cv_scores)\n", + "print('CV Accuracy (5-fold):', lr_bow_cv_scores)\n", + "print('Mean CV Accuracy:', lr_bow_cv_mean_score)\n", + "lr_bow_test_score = lr.score(cv_test_features, test_label_names)\n", + "print('Test Accuracy:', lr_bow_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.64120276 0.64169381 0.64900122 0.64107799 0.63993453]\n", + "Mean CV Accuracy: 0.642582064348\n", + "Test Accuracy: 0.656679357722\n" + ] + } + ], + "source": [ + "from sklearn.svm import LinearSVC\n", + "\n", + "svm = LinearSVC(penalty='l2', C=1, random_state=42)\n", + "svm.fit(cv_train_features, train_label_names)\n", + "svm_bow_cv_scores = cross_val_score(svm, cv_train_features, train_label_names, cv=5)\n", + "svm_bow_cv_mean_score = np.mean(svm_bow_cv_scores)\n", + "print('CV Accuracy (5-fold):', svm_bow_cv_scores)\n", + "print('Mean CV Accuracy:', svm_bow_cv_mean_score)\n", + "svm_bow_test_score = svm.score(cv_test_features, test_label_names)\n", + "print('Test Accuracy:', svm_bow_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.66030069 0.62459283 0.65185487 0.63209473 0.64157119]\n", + "Mean CV Accuracy: 0.642082864709\n", + "Test Accuracy: 0.633007780169\n" + ] + } + ], + "source": [ + "from sklearn.linear_model import SGDClassifier\n", + "\n", + "svm_sgd = SGDClassifier(loss='hinge', penalty='l2', max_iter=5, random_state=42)\n", + "svm_sgd.fit(cv_train_features, train_label_names)\n", + "svmsgd_bow_cv_scores = cross_val_score(svm_sgd, cv_train_features, train_label_names, cv=5)\n", + "svmsgd_bow_cv_mean_score = np.mean(svmsgd_bow_cv_scores)\n", + "print('CV Accuracy (5-fold):', svmsgd_bow_cv_scores)\n", + "print('Mean CV Accuracy:', svmsgd_bow_cv_mean_score)\n", + "svmsgd_bow_test_score = svm_sgd.score(cv_test_features, test_label_names)\n", + "print('Test Accuracy:', svmsgd_bow_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.52052011 0.51669381 0.53485528 0.51327072 0.5212766 ]\n", + "Mean CV Accuracy: 0.521323304518\n", + "Test Accuracy: 0.52987915908\n" + ] + } + ], + "source": [ + "from sklearn.ensemble import RandomForestClassifier\n", + "\n", + "rfc = RandomForestClassifier(n_estimators=10, random_state=42)\n", + "rfc.fit(cv_train_features, train_label_names)\n", + "rfc_bow_cv_scores = cross_val_score(rfc, cv_train_features, train_label_names, cv=5)\n", + "rfc_bow_cv_mean_score = np.mean(rfc_bow_cv_scores)\n", + "print('CV Accuracy (5-fold):', rfc_bow_cv_scores)\n", + "print('Mean CV Accuracy:', rfc_bow_cv_mean_score)\n", + "rfc_bow_test_score = rfc.score(cv_test_features, test_label_names)\n", + "print('Test Accuracy:', rfc_bow_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.55424624 0.53827362 0.54219323 0.55206207 0.55441899]\n", + "Mean CV Accuracy: 0.548238828239\n", + "Test Accuracy: 0.547922529383\n" + ] + } + ], + "source": [ + "from sklearn.ensemble import GradientBoostingClassifier\n", + "\n", + "gbc = GradientBoostingClassifier(n_estimators=10, random_state=42)\n", + "gbc.fit(cv_train_features, train_label_names)\n", + "gbc_bow_cv_scores = cross_val_score(gbc, cv_train_features, train_label_names, cv=5)\n", + "gbc_bow_cv_mean_score = np.mean(gbc_bow_cv_scores)\n", + "print('CV Accuracy (5-fold):', gbc_bow_cv_scores)\n", + "print('Mean CV Accuracy:', gbc_bow_cv_mean_score)\n", + "gbc_bow_test_score = gbc.score(cv_test_features, test_label_names)\n", + "print('Test Accuracy:', gbc_bow_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "# build BOW features on train articles\n", + "tv = TfidfVectorizer(use_idf=True, min_df=0.0, max_df=1.0)\n", + "tv_train_features = tv.fit_transform(train_corpus)" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "metadata": {}, + "outputs": [], + "source": [ + "# transform test articles into features\n", + "tv_test_features = tv.transform(test_corpus)" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TFIDF model:> Train features shape: (12263, 66865) Test features shape: (6041, 66865)\n" + ] + } + ], + "source": [ + "print('TFIDF model:> Train features shape:', tv_train_features.shape, ' Test features shape:', tv_test_features.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.71759447 0.70969055 0.71585813 0.7121274 0.7111293 ]\n", + "Mean CV Accuracy: 0.713279971122\n", + "Test Accuracy: 0.713954643271\n" + ] + } + ], + "source": [ + "mnb = MultinomialNB(alpha=1)\n", + "mnb.fit(tv_train_features, train_label_names)\n", + "mnb_tfidf_cv_scores = cross_val_score(mnb, tv_train_features, train_label_names, cv=5)\n", + "mnb_tfidf_cv_mean_score = np.mean(mnb_tfidf_cv_scores)\n", + "print('CV Accuracy (5-fold):', mnb_tfidf_cv_scores)\n", + "print('Mean CV Accuracy:', mnb_tfidf_cv_mean_score)\n", + "mnb_tfidf_test_score = mnb.score(tv_test_features, test_label_names)\n", + "print('Test Accuracy:', mnb_tfidf_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.74725721 0.73493485 0.73257236 0.74520212 0.73076923]\n", + "Mean CV Accuracy: 0.738147156079\n", + "Test Accuracy: 0.745240854163\n" + ] + } + ], + "source": [ + "lr = LogisticRegression(penalty='l2', max_iter=100, C=1, random_state=42)\n", + "lr.fit(tv_train_features, train_label_names)\n", + "lr_tfidf_cv_scores = cross_val_score(lr, tv_train_features, train_label_names, cv=5)\n", + "lr_tfidf_cv_mean_score = np.mean(lr_tfidf_cv_scores)\n", + "print('CV Accuracy (5-fold):', lr_tfidf_cv_scores)\n", + "print('Mean CV Accuracy:', lr_tfidf_cv_mean_score)\n", + "lr_tfidf_test_score = lr.score(tv_test_features, test_label_names)\n", + "print('Test Accuracy:', lr_tfidf_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.76635514 0.7536645 0.75743987 0.76439363 0.75695581]\n", + "Mean CV Accuracy: 0.75976178901\n", + "Test Accuracy: 0.762456546929\n" + ] + } + ], + "source": [ + "svm = LinearSVC(penalty='l2', C=1, random_state=42)\n", + "svm.fit(tv_train_features, train_label_names)\n", + "svm_tfidf_cv_scores = cross_val_score(svm, tv_train_features, train_label_names, cv=5)\n", + "svm_tfidf_cv_mean_score = np.mean(svm_tfidf_cv_scores)\n", + "print('CV Accuracy (5-fold):', svm_tfidf_cv_scores)\n", + "print('Mean CV Accuracy:', svm_tfidf_cv_mean_score)\n", + "svm_tfidf_test_score = svm.score(tv_test_features, test_label_names)\n", + "print('Test Accuracy:', svm_tfidf_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.76513612 0.75570033 0.75377089 0.76112699 0.75695581]\n", + "Mean CV Accuracy: 0.75853802856\n", + "Test Accuracy: 0.765767257077\n" + ] + } + ], + "source": [ + "svm_sgd = SGDClassifier(loss='hinge', penalty='l2', max_iter=5, random_state=42)\n", + "svm_sgd.fit(tv_train_features, train_label_names)\n", + "svmsgd_tfidf_cv_scores = cross_val_score(svm_sgd, tv_train_features, train_label_names, cv=5)\n", + "svmsgd_tfidf_cv_mean_score = np.mean(svmsgd_tfidf_cv_scores)\n", + "print('CV Accuracy (5-fold):', svmsgd_tfidf_cv_scores)\n", + "print('Mean CV Accuracy:', svmsgd_tfidf_cv_mean_score)\n", + "svmsgd_tfidf_test_score = svm_sgd.score(tv_test_features, test_label_names)\n", + "print('Test Accuracy:', svmsgd_tfidf_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.53596099 0.5252443 0.53852426 0.51204573 0.54296236]\n", + "Mean CV Accuracy: 0.53094752738\n", + "Test Accuracy: 0.545936103294\n" + ] + } + ], + "source": [ + "rfc = RandomForestClassifier(n_estimators=10, random_state=42)\n", + "rfc.fit(tv_train_features, train_label_names)\n", + "rfc_tfidf_cv_scores = cross_val_score(rfc, tv_train_features, train_label_names, cv=5)\n", + "rfc_tfidf_cv_mean_score = np.mean(rfc_tfidf_cv_scores)\n", + "print('CV Accuracy (5-fold):', rfc_tfidf_cv_scores)\n", + "print('Mean CV Accuracy:', rfc_tfidf_cv_mean_score)\n", + "rfc_tfidf_test_score = rfc.score(tv_test_features, test_label_names)\n", + "print('Test Accuracy:', rfc_tfidf_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.55790329 0.53827362 0.55768447 0.55859535 0.54541735]\n", + "Mean CV Accuracy: 0.551574813725\n", + "Test Accuracy: 0.548584671412\n" + ] + } + ], + "source": [ + "gbc = GradientBoostingClassifier(n_estimators=10, random_state=42)\n", + "gbc.fit(tv_train_features, train_label_names)\n", + "gbc_tfidf_cv_scores = cross_val_score(gbc, tv_train_features, train_label_names, cv=5)\n", + "gbc_tfidf_cv_mean_score = np.mean(gbc_tfidf_cv_scores)\n", + "print('CV Accuracy (5-fold):', gbc_tfidf_cv_scores)\n", + "print('Mean CV Accuracy:', gbc_tfidf_cv_mean_score)\n", + "gbc_tfidf_test_score = gbc.score(tv_test_features, test_label_names)\n", + "print('Test Accuracy:', gbc_tfidf_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012345
ModelNaive BayesLogistic RegressionLinear SVMLinear SVM (SGD)Random ForestGradient Boosted Machines
CV Score (TF)0.6804160.6983560.6425820.6420830.5213230.548239
Test Score (TF)0.6801850.7038570.6566790.6330080.5298790.547923
CV Score (TF-IDF)0.713280.7381470.7597620.7585380.5309480.551575
Test Score (TF-IDF)0.7139550.7452410.7624570.7657670.5459360.548585
\n", + "
" + ], + "text/plain": [ + " 0 1 2 \\\n", + "Model Naive Bayes Logistic Regression Linear SVM \n", + "CV Score (TF) 0.680416 0.698356 0.642582 \n", + "Test Score (TF) 0.680185 0.703857 0.656679 \n", + "CV Score (TF-IDF) 0.71328 0.738147 0.759762 \n", + "Test Score (TF-IDF) 0.713955 0.745241 0.762457 \n", + "\n", + " 3 4 \\\n", + "Model Linear SVM (SGD) Random Forest \n", + "CV Score (TF) 0.642083 0.521323 \n", + "Test Score (TF) 0.633008 0.529879 \n", + "CV Score (TF-IDF) 0.758538 0.530948 \n", + "Test Score (TF-IDF) 0.765767 0.545936 \n", + "\n", + " 5 \n", + "Model Gradient Boosted Machines \n", + "CV Score (TF) 0.548239 \n", + "Test Score (TF) 0.547923 \n", + "CV Score (TF-IDF) 0.551575 \n", + "Test Score (TF-IDF) 0.548585 " + ] + }, + "execution_count": 125, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.DataFrame([['Naive Bayes', mnb_bow_cv_mean_score, mnb_bow_test_score, \n", + " mnb_tfidf_cv_mean_score, mnb_tfidf_test_score],\n", + " ['Logistic Regression', lr_bow_cv_mean_score, lr_bow_test_score, \n", + " lr_tfidf_cv_mean_score, lr_tfidf_test_score],\n", + " ['Linear SVM', svm_bow_cv_mean_score, svm_bow_test_score, \n", + " svm_tfidf_cv_mean_score, svm_tfidf_test_score],\n", + " ['Linear SVM (SGD)', svmsgd_bow_cv_mean_score, svmsgd_bow_test_score, \n", + " svmsgd_tfidf_cv_mean_score, svmsgd_tfidf_test_score],\n", + " ['Random Forest', rfc_bow_cv_mean_score, rfc_bow_test_score, \n", + " rfc_tfidf_cv_mean_score, rfc_tfidf_test_score],\n", + " ['Gradient Boosted Machines', gbc_bow_cv_mean_score, gbc_bow_test_score, \n", + " gbc_tfidf_cv_mean_score, gbc_tfidf_test_score]],\n", + " columns=['Model', 'CV Score (TF)', 'Test Score (TF)', 'CV Score (TF-IDF)', 'Test Score (TF-IDF)'],\n", + " ).T" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fitting 5 folds for each of 10 candidates, totalling 50 fits\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 1) .....................\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Using backend SequentialBackend with 1 concurrent workers.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 1) .....................\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 1 out of 1 | elapsed: 2.4s remaining: 0.0s\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 1) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 1), total= 1.4s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 1) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 1), total= 1.4s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 1) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 2) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 2), total= 6.3s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 2) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 2), total= 6.4s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 2) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 2), total= 6.6s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 2) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 2), total= 6.6s\n", + "[CV] mnb__alpha=1e-05, tfidf__ngram_range=(1, 2) .....................\n", + "[CV] ...... mnb__alpha=1e-05, tfidf__ngram_range=(1, 2), total= 8.7s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 1) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 1) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 1) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 1) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 1) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 2) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 2), total= 6.0s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 2) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 2), total= 6.1s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 2) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 2), total= 6.3s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 2) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 2), total= 6.3s\n", + "[CV] mnb__alpha=0.0001, tfidf__ngram_range=(1, 2) ....................\n", + "[CV] ..... mnb__alpha=0.0001, tfidf__ngram_range=(1, 2), total= 6.3s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 1) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 1), total= 1.4s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 1) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 1) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 1) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 1) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 2) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 2), total= 6.4s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 2) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 2), total= 6.1s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 2) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 2), total= 6.0s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 2) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 2), total= 6.0s\n", + "[CV] mnb__alpha=0.01, tfidf__ngram_range=(1, 2) ......................\n", + "[CV] ....... mnb__alpha=0.01, tfidf__ngram_range=(1, 2), total= 5.9s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 1) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 1) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 1) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 1) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 1) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 1), total= 1.3s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 2) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 2), total= 6.1s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 2) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 2), total= 6.1s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 2) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 2), total= 6.0s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 2) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 2), total= 7.0s\n", + "[CV] mnb__alpha=0.1, tfidf__ngram_range=(1, 2) .......................\n", + "[CV] ........ mnb__alpha=0.1, tfidf__ngram_range=(1, 2), total= 6.3s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 1) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 1), total= 1.6s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 1) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 1), total= 1.6s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 1) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 1), total= 1.4s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 1) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 1), total= 1.5s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 1) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 1), total= 1.4s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 2) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 2), total= 6.9s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 2) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 2), total= 6.5s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 2) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 2), total= 6.3s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 2) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 2), total= 6.3s\n", + "[CV] mnb__alpha=1, tfidf__ngram_range=(1, 2) .........................\n", + "[CV] .......... mnb__alpha=1, tfidf__ngram_range=(1, 2), total= 6.2s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 50 out of 50 | elapsed: 4.7min finished\n" + ] + } + ], + "source": [ + "from sklearn.pipeline import Pipeline\n", + "from sklearn.model_selection import GridSearchCV\n", + "from sklearn.naive_bayes import MultinomialNB\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "mnb_pipeline = Pipeline([('tfidf', TfidfVectorizer()),\n", + " ('mnb', MultinomialNB())\n", + " ])\n", + "\n", + "param_grid = {'tfidf__ngram_range': [(1, 1), (1, 2)],\n", + " 'mnb__alpha': [1e-5, 1e-4, 1e-2, 1e-1, 1]\n", + "}\n", + "\n", + "gs_mnb = GridSearchCV(mnb_pipeline, param_grid, cv=5, verbose=2)\n", + "gs_mnb = gs_mnb.fit(train_corpus, train_label_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'memory': None,\n", + " 'steps': [('tfidf',\n", + " TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), norm='l2', preprocessor=None, smooth_idf=True,\n", + " stop_words=None, strip_accents=None, sublinear_tf=False,\n", + " token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b', tokenizer=None, use_idf=True,\n", + " vocabulary=None)),\n", + " ('mnb', MultinomialNB(alpha=0.01, class_prior=None, fit_prior=True))],\n", + " 'tfidf': TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), norm='l2', preprocessor=None, smooth_idf=True,\n", + " stop_words=None, strip_accents=None, sublinear_tf=False,\n", + " token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b', tokenizer=None, use_idf=True,\n", + " vocabulary=None),\n", + " 'mnb': MultinomialNB(alpha=0.01, class_prior=None, fit_prior=True),\n", + " 'tfidf__analyzer': 'word',\n", + " 'tfidf__binary': False,\n", + " 'tfidf__decode_error': 'strict',\n", + " 'tfidf__dtype': numpy.float64,\n", + " 'tfidf__encoding': 'utf-8',\n", + " 'tfidf__input': 'content',\n", + " 'tfidf__lowercase': True,\n", + " 'tfidf__max_df': 1.0,\n", + " 'tfidf__max_features': None,\n", + " 'tfidf__min_df': 1,\n", + " 'tfidf__ngram_range': (1, 2),\n", + " 'tfidf__norm': 'l2',\n", + " 'tfidf__preprocessor': None,\n", + " 'tfidf__smooth_idf': True,\n", + " 'tfidf__stop_words': None,\n", + " 'tfidf__strip_accents': None,\n", + " 'tfidf__sublinear_tf': False,\n", + " 'tfidf__token_pattern': '(?u)\\\\b\\\\w\\\\w+\\\\b',\n", + " 'tfidf__tokenizer': None,\n", + " 'tfidf__use_idf': True,\n", + " 'tfidf__vocabulary': None,\n", + " 'mnb__alpha': 0.01,\n", + " 'mnb__class_prior': None,\n", + " 'mnb__fit_prior': True}" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "gs_mnb.best_estimator_.get_params()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
cv score (mean)cv score (std)paramsrank
50.7737100.007229{'mnb__alpha': 0.01, 'tfidf__ngram_range': (1, 2)}1
40.7686540.003437{'mnb__alpha': 0.01, 'tfidf__ngram_range': (1, 1)}2
60.7629450.003709{'mnb__alpha': 0.1, 'tfidf__ngram_range': (1, 1)}3
30.7574000.006856{'mnb__alpha': 0.0001, 'tfidf__ngram_range': (1, 2)}4
70.7543830.006655{'mnb__alpha': 0.1, 'tfidf__ngram_range': (1, 2)}5
10.7492460.006356{'mnb__alpha': 1e-05, 'tfidf__ngram_range': (1, 2)}6
20.7422330.006627{'mnb__alpha': 0.0001, 'tfidf__ngram_range': (1, 1)}7
00.7308160.007727{'mnb__alpha': 1e-05, 'tfidf__ngram_range': (1, 1)}8
80.7149960.002637{'mnb__alpha': 1, 'tfidf__ngram_range': (1, 1)}9
90.7043140.003039{'mnb__alpha': 1, 'tfidf__ngram_range': (1, 2)}10
\n", + "
" + ], + "text/plain": [ + " cv score (mean) cv score (std) \\\n", + "5 0.773710 0.007229 \n", + "4 0.768654 0.003437 \n", + "6 0.762945 0.003709 \n", + "3 0.757400 0.006856 \n", + "7 0.754383 0.006655 \n", + "1 0.749246 0.006356 \n", + "2 0.742233 0.006627 \n", + "0 0.730816 0.007727 \n", + "8 0.714996 0.002637 \n", + "9 0.704314 0.003039 \n", + "\n", + " params rank \n", + "5 {'mnb__alpha': 0.01, 'tfidf__ngram_range': (1, 2)} 1 \n", + "4 {'mnb__alpha': 0.01, 'tfidf__ngram_range': (1, 1)} 2 \n", + "6 {'mnb__alpha': 0.1, 'tfidf__ngram_range': (1, 1)} 3 \n", + "3 {'mnb__alpha': 0.0001, 'tfidf__ngram_range': (1, 2)} 4 \n", + "7 {'mnb__alpha': 0.1, 'tfidf__ngram_range': (1, 2)} 5 \n", + "1 {'mnb__alpha': 1e-05, 'tfidf__ngram_range': (1, 2)} 6 \n", + "2 {'mnb__alpha': 0.0001, 'tfidf__ngram_range': (1, 1)} 7 \n", + "0 {'mnb__alpha': 1e-05, 'tfidf__ngram_range': (1, 1)} 8 \n", + "8 {'mnb__alpha': 1, 'tfidf__ngram_range': (1, 1)} 9 \n", + "9 {'mnb__alpha': 1, 'tfidf__ngram_range': (1, 2)} 10 " + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cv_results = gs_mnb.cv_results_\n", + "results_df = pd.DataFrame({'rank': cv_results['rank_test_score'],\n", + " 'params': cv_results['params'], \n", + " 'cv score (mean)': cv_results['mean_test_score'], \n", + " 'cv score (std)': cv_results['std_test_score']} \n", + " )\n", + "results_df = results_df.sort_values(by=['rank'], ascending=True)\n", + "pd.set_option('display.max_colwidth', 100)\n", + "results_df" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test Accuracy : 0.7735474259228604\n" + ] + } + ], + "source": [ + "best_mnb_test_score = gs_mnb.score(test_corpus, test_label_names)\n", + "print('Test Accuracy :', best_mnb_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.linear_model import LogisticRegression, SGDClassifier\n", + "from sklearn.svm import LinearSVC" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fitting 5 folds for each of 6 candidates, totalling 30 fits\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 1), total= 5.9s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 1 out of 1 | elapsed: 7.1s remaining: 0.0s\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[CV] lr__C=1, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 1), total= 6.5s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 1), total= 5.9s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 1), total= 6.2s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 1), total= 6.1s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 2), total= 27.4s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 2), total= 27.7s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 2), total= 28.2s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 2), total= 28.8s\n", + "[CV] lr__C=1, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=1, tfidf__ngram_range=(1, 2), total= 35.5s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 1), total= 8.8s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 1), total= 9.4s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 1), total= 9.1s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 1), total= 9.9s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 1) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 1), total= 8.4s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 2), total= 38.7s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 2), total= 39.7s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 2), total= 40.6s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 2), total= 36.4s\n", + "[CV] lr__C=5, tfidf__ngram_range=(1, 2) ..............................\n", + "[CV] ............... lr__C=5, tfidf__ngram_range=(1, 2), total= 39.2s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 1) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 1), total= 9.2s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 1) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 1), total= 9.1s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 1) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 1), total= 11.1s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 1) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 1), total= 9.1s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 1) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 1), total= 9.1s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 2) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 2), total= 42.1s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 2) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 2), total= 49.5s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 2) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 2), total= 47.7s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 2) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 2), total= 42.0s\n", + "[CV] lr__C=10, tfidf__ngram_range=(1, 2) .............................\n", + "[CV] .............. lr__C=10, tfidf__ngram_range=(1, 2), total= 47.8s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 30 out of 30 | elapsed: 13.0min finished\n" + ] + } + ], + "source": [ + "from sklearn.pipeline import Pipeline\n", + "from sklearn.model_selection import GridSearchCV\n", + "\n", + "lr_pipeline = Pipeline([('tfidf', TfidfVectorizer()),\n", + " ('lr', LogisticRegression(penalty='l2', max_iter=100, random_state=42))\n", + " ])\n", + "\n", + "param_grid = {'tfidf__ngram_range': [(1, 1), (1, 2)],\n", + " 'lr__C': [1, 5, 10]\n", + "}\n", + "\n", + "gs_lr = GridSearchCV(lr_pipeline, param_grid, cv=5, verbose=2)\n", + "gs_lr = gs_lr.fit(train_corpus, train_label_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Pipeline(memory=None,\n", + " steps=[('tfidf', TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), norm='l2', preprocessor=None, smooth_idf=True,\n", + " ...alty='l2', random_state=42, solver='liblinear', tol=0.0001,\n", + " verbose=0, warm_start=False))])" + ] + }, + "execution_count": 98, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "gs_lr.best_estimator_" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test Accuracy : 0.766926005628\n" + ] + } + ], + "source": [ + "best_lr_test_score = gs_lr.score(test_corpus, test_label_names)\n", + "print('Test Accuracy :', best_lr_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fitting 5 folds for each of 8 candidates, totalling 40 fits\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 1), svm__C=0.01, total= 2.7s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 1 out of 1 | elapsed: 4.0s remaining: 0.0s\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 1), svm__C=0.01, total= 3.1s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 1), svm__C=0.01, total= 3.0s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 1), svm__C=0.01, total= 2.9s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 1), svm__C=0.01, total= 3.3s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 2), svm__C=0.01, total= 11.6s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 2), svm__C=0.01, total= 12.5s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 2), svm__C=0.01, total= 11.3s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 2), svm__C=0.01, total= 13.8s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.01 ..........................\n", + "[CV] ........... tfidf__ngram_range=(1, 2), svm__C=0.01, total= 10.5s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 1), svm__C=0.1, total= 2.7s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 1), svm__C=0.1, total= 2.5s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 1), svm__C=0.1, total= 2.5s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 1), svm__C=0.1, total= 2.5s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 1), svm__C=0.1, total= 2.4s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 2), svm__C=0.1, total= 11.5s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 2), svm__C=0.1, total= 11.3s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 2), svm__C=0.1, total= 11.2s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 2), svm__C=0.1, total= 11.2s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=0.1 ...........................\n", + "[CV] ............ tfidf__ngram_range=(1, 2), svm__C=0.1, total= 10.9s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=1, total= 2.9s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=1, total= 2.9s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=1, total= 2.9s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=1, total= 2.9s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=1, total= 2.9s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=1, total= 14.5s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=1, total= 14.4s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=1, total= 14.7s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=1, total= 14.4s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=1 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=1, total= 13.8s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=5, total= 4.8s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=5, total= 4.5s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=5, total= 4.8s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=5, total= 5.1s\n", + "[CV] tfidf__ngram_range=(1, 1), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 1), svm__C=5, total= 4.7s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=5, total= 30.4s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=5, total= 26.4s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=5, total= 28.3s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=5, total= 33.5s\n", + "[CV] tfidf__ngram_range=(1, 2), svm__C=5 .............................\n", + "[CV] .............. tfidf__ngram_range=(1, 2), svm__C=5, total= 31.4s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 40 out of 40 | elapsed: 8.3min finished\n" + ] + } + ], + "source": [ + "from sklearn.pipeline import Pipeline\n", + "from sklearn.model_selection import GridSearchCV\n", + "\n", + "svm_pipeline = Pipeline([('tfidf', TfidfVectorizer()),\n", + " ('svm', LinearSVC(random_state=42))\n", + " ])\n", + "\n", + "param_grid = {'tfidf__ngram_range': [(1, 1), (1, 2)],\n", + " 'svm__C': [0.01, 0.1, 1, 5]\n", + "}\n", + "\n", + "gs_svm = GridSearchCV(svm_pipeline, param_grid, cv=5, verbose=2)\n", + "gs_svm = gs_svm.fit(train_corpus, train_label_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'memory': None,\n", + " 'steps': [('tfidf',\n", + " TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), norm='l2', preprocessor=None, smooth_idf=True,\n", + " stop_words=None, strip_accents=None, sublinear_tf=False,\n", + " token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b', tokenizer=None, use_idf=True,\n", + " vocabulary=None)),\n", + " ('svm', LinearSVC(C=5, class_weight=None, dual=True, fit_intercept=True,\n", + " intercept_scaling=1, loss='squared_hinge', max_iter=1000,\n", + " multi_class='ovr', penalty='l2', random_state=42, tol=0.0001,\n", + " verbose=0))],\n", + " 'svm': LinearSVC(C=5, class_weight=None, dual=True, fit_intercept=True,\n", + " intercept_scaling=1, loss='squared_hinge', max_iter=1000,\n", + " multi_class='ovr', penalty='l2', random_state=42, tol=0.0001,\n", + " verbose=0),\n", + " 'svm__C': 5,\n", + " 'svm__class_weight': None,\n", + " 'svm__dual': True,\n", + " 'svm__fit_intercept': True,\n", + " 'svm__intercept_scaling': 1,\n", + " 'svm__loss': 'squared_hinge',\n", + " 'svm__max_iter': 1000,\n", + " 'svm__multi_class': 'ovr',\n", + " 'svm__penalty': 'l2',\n", + " 'svm__random_state': 42,\n", + " 'svm__tol': 0.0001,\n", + " 'svm__verbose': 0,\n", + " 'tfidf': TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), norm='l2', preprocessor=None, smooth_idf=True,\n", + " stop_words=None, strip_accents=None, sublinear_tf=False,\n", + " token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b', tokenizer=None, use_idf=True,\n", + " vocabulary=None),\n", + " 'tfidf__analyzer': 'word',\n", + " 'tfidf__binary': False,\n", + " 'tfidf__decode_error': 'strict',\n", + " 'tfidf__dtype': numpy.int64,\n", + " 'tfidf__encoding': 'utf-8',\n", + " 'tfidf__input': 'content',\n", + " 'tfidf__lowercase': True,\n", + " 'tfidf__max_df': 1.0,\n", + " 'tfidf__max_features': None,\n", + " 'tfidf__min_df': 1,\n", + " 'tfidf__ngram_range': (1, 2),\n", + " 'tfidf__norm': 'l2',\n", + " 'tfidf__preprocessor': None,\n", + " 'tfidf__smooth_idf': True,\n", + " 'tfidf__stop_words': None,\n", + " 'tfidf__strip_accents': None,\n", + " 'tfidf__sublinear_tf': False,\n", + " 'tfidf__token_pattern': '(?u)\\\\b\\\\w\\\\w+\\\\b',\n", + " 'tfidf__tokenizer': None,\n", + " 'tfidf__use_idf': True,\n", + " 'tfidf__vocabulary': None}" + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "gs_svm.best_estimator_.get_params()" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test Accuracy : 0.77685813607\n" + ] + } + ], + "source": [ + "best_svm_test_score = gs_svm.score(test_corpus, test_label_names)\n", + "print('Test Accuracy :', best_svm_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Fitting 5 folds for each of 8 candidates, totalling 40 fits\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-07, total= 2.0s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 1 out of 1 | elapsed: 3.2s remaining: 0.0s\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-07, total= 2.3s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-07, total= 3.4s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-07, total= 3.0s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-07, total= 2.3s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-07, total= 9.0s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-07, total= 10.2s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-07, total= 9.8s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-07, total= 11.0s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-07 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-07, total= 10.7s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-06, total= 2.2s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-06, total= 2.1s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-06, total= 2.1s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-06, total= 2.1s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-06, total= 2.0s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-06, total= 9.7s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-06, total= 13.4s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-06, total= 10.1s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-06, total= 11.8s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-06 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-06, total= 13.6s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-05, total= 2.8s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-05, total= 2.9s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-05, total= 3.6s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-05, total= 3.0s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 1), sgd__alpha=1e-05, total= 2.8s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-05, total= 13.4s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-05, total= 13.9s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-05, total= 11.3s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-05, total= 11.0s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=1e-05 .....................\n", + "[CV] ...... tfidf__ngram_range=(1, 2), sgd__alpha=1e-05, total= 11.0s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 1), sgd__alpha=0.0001, total= 2.3s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 1), sgd__alpha=0.0001, total= 2.3s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 1), sgd__alpha=0.0001, total= 2.3s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 1), sgd__alpha=0.0001, total= 2.4s\n", + "[CV] tfidf__ngram_range=(1, 1), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 1), sgd__alpha=0.0001, total= 2.3s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 2), sgd__alpha=0.0001, total= 10.8s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 2), sgd__alpha=0.0001, total= 10.7s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 2), sgd__alpha=0.0001, total= 11.6s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 2), sgd__alpha=0.0001, total= 11.3s\n", + "[CV] tfidf__ngram_range=(1, 2), sgd__alpha=0.0001 ....................\n", + "[CV] ..... tfidf__ngram_range=(1, 2), sgd__alpha=0.0001, total= 13.1s\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "[Parallel(n_jobs=1)]: Done 40 out of 40 | elapsed: 6.6min finished\n" + ] + } + ], + "source": [ + "from sklearn.pipeline import Pipeline\n", + "from sklearn.model_selection import GridSearchCV\n", + "\n", + "sgd_pipeline = Pipeline([('tfidf', TfidfVectorizer()),\n", + " ('sgd', SGDClassifier(random_state=42))\n", + " ])\n", + "\n", + "param_grid = {'tfidf__ngram_range': [(1, 1), (1, 2)],\n", + " 'sgd__alpha': [1e-7, 1e-6, 1e-5, 1e-4]\n", + "}\n", + "\n", + "gs_sgd = GridSearchCV(sgd_pipeline, param_grid, cv=5, verbose=2)\n", + "gs_sgd = gs_sgd.fit(train_corpus, train_label_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'memory': None,\n", + " 'sgd': SGDClassifier(alpha=0.0001, average=False, class_weight=None, epsilon=0.1,\n", + " eta0=0.0, fit_intercept=True, l1_ratio=0.15,\n", + " learning_rate='optimal', loss='hinge', max_iter=None, n_iter=None,\n", + " n_jobs=1, penalty='l2', power_t=0.5, random_state=42, shuffle=True,\n", + " tol=None, verbose=0, warm_start=False),\n", + " 'sgd__alpha': 0.0001,\n", + " 'sgd__average': False,\n", + " 'sgd__class_weight': None,\n", + " 'sgd__epsilon': 0.1,\n", + " 'sgd__eta0': 0.0,\n", + " 'sgd__fit_intercept': True,\n", + " 'sgd__l1_ratio': 0.15,\n", + " 'sgd__learning_rate': 'optimal',\n", + " 'sgd__loss': 'hinge',\n", + " 'sgd__max_iter': None,\n", + " 'sgd__n_iter': None,\n", + " 'sgd__n_jobs': 1,\n", + " 'sgd__penalty': 'l2',\n", + " 'sgd__power_t': 0.5,\n", + " 'sgd__random_state': 42,\n", + " 'sgd__shuffle': True,\n", + " 'sgd__tol': None,\n", + " 'sgd__verbose': 0,\n", + " 'sgd__warm_start': False,\n", + " 'steps': [('tfidf',\n", + " TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), norm='l2', preprocessor=None, smooth_idf=True,\n", + " stop_words=None, strip_accents=None, sublinear_tf=False,\n", + " token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b', tokenizer=None, use_idf=True,\n", + " vocabulary=None)),\n", + " ('sgd',\n", + " SGDClassifier(alpha=0.0001, average=False, class_weight=None, epsilon=0.1,\n", + " eta0=0.0, fit_intercept=True, l1_ratio=0.15,\n", + " learning_rate='optimal', loss='hinge', max_iter=None, n_iter=None,\n", + " n_jobs=1, penalty='l2', power_t=0.5, random_state=42, shuffle=True,\n", + " tol=None, verbose=0, warm_start=False))],\n", + " 'tfidf': TfidfVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=None, min_df=1,\n", + " ngram_range=(1, 2), norm='l2', preprocessor=None, smooth_idf=True,\n", + " stop_words=None, strip_accents=None, sublinear_tf=False,\n", + " token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b', tokenizer=None, use_idf=True,\n", + " vocabulary=None),\n", + " 'tfidf__analyzer': 'word',\n", + " 'tfidf__binary': False,\n", + " 'tfidf__decode_error': 'strict',\n", + " 'tfidf__dtype': numpy.int64,\n", + " 'tfidf__encoding': 'utf-8',\n", + " 'tfidf__input': 'content',\n", + " 'tfidf__lowercase': True,\n", + " 'tfidf__max_df': 1.0,\n", + " 'tfidf__max_features': None,\n", + " 'tfidf__min_df': 1,\n", + " 'tfidf__ngram_range': (1, 2),\n", + " 'tfidf__norm': 'l2',\n", + " 'tfidf__preprocessor': None,\n", + " 'tfidf__smooth_idf': True,\n", + " 'tfidf__stop_words': None,\n", + " 'tfidf__strip_accents': None,\n", + " 'tfidf__sublinear_tf': False,\n", + " 'tfidf__token_pattern': '(?u)\\\\b\\\\w\\\\w+\\\\b',\n", + " 'tfidf__tokenizer': None,\n", + " 'tfidf__use_idf': True,\n", + " 'tfidf__vocabulary': None}" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "gs_sgd.best_estimator_.get_params()" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test Accuracy : 0.768415825195\n" + ] + } + ], + "source": [ + "best_sgd_test_score = gs_sgd.score(test_corpus, test_label_names)\n", + "print('Test Accuracy :', best_sgd_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "import model_evaluation_utils as meu" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy: 0.7735\n", + "Precision: 0.7825\n", + "Recall: 0.7735\n", + "F1 Score: 0.7696\n" + ] + } + ], + "source": [ + "mnb_predictions = gs_mnb.predict(test_corpus)\n", + "unique_classes = list(set(test_label_names))\n", + "meu.get_metrics(true_labels=test_label_names, predicted_labels=mnb_predictions)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " comp.os.ms-windows.misc 0.76 0.72 0.74 315\n", + " talk.politics.misc 0.72 0.68 0.70 244\n", + " comp.graphics 0.64 0.75 0.69 289\n", + " comp.windows.x 0.79 0.84 0.81 287\n", + " talk.religion.misc 0.67 0.21 0.32 199\n", + "comp.sys.ibm.pc.hardware 0.69 0.76 0.72 324\n", + " comp.sys.mac.hardware 0.78 0.77 0.77 295\n", + " sci.crypt 0.79 0.85 0.82 302\n", + " talk.politics.mideast 0.85 0.87 0.86 326\n", + " misc.forsale 0.83 0.77 0.80 314\n", + " sci.med 0.88 0.88 0.88 322\n", + " rec.motorcycles 0.88 0.74 0.80 351\n", + " sci.electronics 0.80 0.72 0.76 307\n", + " rec.sport.hockey 0.88 0.92 0.90 308\n", + " talk.politics.guns 0.65 0.81 0.72 281\n", + " sci.space 0.84 0.81 0.83 324\n", + " rec.sport.baseball 0.94 0.88 0.91 336\n", + " alt.atheism 0.80 0.57 0.67 268\n", + " rec.autos 0.82 0.74 0.78 328\n", + " soc.religion.christian 0.57 0.92 0.70 321\n", + "\n", + " micro avg 0.77 0.77 0.77 6041\n", + " macro avg 0.78 0.76 0.76 6041\n", + " weighted avg 0.78 0.77 0.77 6041\n", + "\n" + ] + } + ], + "source": [ + "meu.display_classification_report(true_labels=test_label_names, \n", + " predicted_labels=mnb_predictions, classes=unique_classes)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Label NameLabel Number
0alt.atheism0
1comp.graphics1
2comp.os.ms-windows.misc2
3comp.sys.ibm.pc.hardware3
4comp.sys.mac.hardware4
5comp.windows.x5
6misc.forsale6
7rec.autos7
8rec.motorcycles8
9rec.sport.baseball9
10rec.sport.hockey10
11sci.crypt11
12sci.electronics12
13sci.med13
14sci.space14
15soc.religion.christian15
16talk.politics.guns16
17talk.politics.mideast17
18talk.politics.misc18
19talk.religion.misc19
\n", + "
" + ], + "text/plain": [ + " Label Name Label Number\n", + "0 alt.atheism 0\n", + "1 comp.graphics 1\n", + "2 comp.os.ms-windows.misc 2\n", + "3 comp.sys.ibm.pc.hardware 3\n", + "4 comp.sys.mac.hardware 4\n", + "5 comp.windows.x 5\n", + "6 misc.forsale 6\n", + "7 rec.autos 7\n", + "8 rec.motorcycles 8\n", + "9 rec.sport.baseball 9\n", + "10 rec.sport.hockey 10\n", + "11 sci.crypt 11\n", + "12 sci.electronics 12\n", + "13 sci.med 13\n", + "14 sci.space 14\n", + "15 soc.religion.christian 15\n", + "16 talk.politics.guns 16\n", + "17 talk.politics.mideast 17\n", + "18 talk.politics.misc 18\n", + "19 talk.religion.misc 19" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "label_data_map = {v:k for k, v in data_labels_map.items()}\n", + "label_map_df = pd.DataFrame(list(label_data_map.items()), columns=['Label Name', 'Label Number'])\n", + "label_map_df" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Predicted:
012345678910111213141516171819
Actual:015310002032131014571015510
12218101151640220420921010
21222262461531011343311000
31152224520293000150001000
4071022227551001940020011
5126104024110000100111000
6024171302427101381543210
7233332924216104953412331
8031023625260272364810180
903022400129712601133100
102000032115282112111230
1105404101213256301213240
12014322527500192225432120
131800010300006284572230
1421121222222045526448240
154210210001000312954322
1630011100412930262276123
1721110000410401195284111
18011001012155025143161663
19180100411012424193154642
\n", + "
" + ], + "text/plain": [ + " Predicted: \\\n", + " 0 1 2 3 4 5 6 7 8 9 10 11 \n", + "Actual: 0 153 1 0 0 0 2 0 3 2 1 3 1 \n", + " 1 2 218 10 11 5 16 4 0 2 2 0 4 \n", + " 2 1 22 226 24 6 15 3 1 0 1 1 3 \n", + " 3 1 15 22 245 20 2 9 3 0 0 0 1 \n", + " 4 0 7 10 22 227 5 5 1 0 0 1 9 \n", + " 5 1 26 10 4 0 241 1 0 0 0 0 1 \n", + " 6 0 2 4 17 13 0 242 7 1 0 1 3 \n", + " 7 2 3 3 3 3 2 9 242 16 1 0 4 \n", + " 8 0 3 1 0 2 3 6 25 260 2 7 2 \n", + " 9 0 3 0 2 2 4 0 0 1 297 12 6 \n", + " 10 2 0 0 0 0 3 2 1 1 5 282 1 \n", + " 11 0 5 4 0 4 1 0 1 2 1 3 256 \n", + " 12 0 14 3 22 5 2 7 5 0 0 1 9 \n", + " 13 1 8 0 0 0 1 0 3 0 0 0 0 \n", + " 14 2 11 2 1 2 2 2 2 2 2 0 4 \n", + " 15 4 2 1 0 2 1 0 0 0 1 0 0 \n", + " 16 3 0 0 1 1 1 0 0 4 1 2 9 \n", + " 17 2 1 1 1 0 0 0 0 4 1 0 4 \n", + " 18 0 1 1 0 0 1 0 1 2 1 5 5 \n", + " 19 18 0 1 0 0 4 1 1 0 1 2 4 \n", + "\n", + " \n", + " 12 13 14 15 16 17 18 19 \n", + "Actual: 0 0 1 4 57 10 15 5 10 \n", + " 1 2 0 9 2 1 0 1 0 \n", + " 2 4 3 3 1 1 0 0 0 \n", + " 3 5 0 0 0 1 0 0 0 \n", + " 4 4 0 0 2 0 0 1 1 \n", + " 5 0 0 1 1 1 0 0 0 \n", + " 6 8 1 5 4 3 2 1 0 \n", + " 7 9 5 3 4 12 3 3 1 \n", + " 8 3 6 4 8 10 1 8 0 \n", + " 9 0 1 1 3 3 1 0 0 \n", + " 10 1 2 1 1 1 2 3 0 \n", + " 11 3 0 1 2 13 2 4 0 \n", + " 12 222 5 4 3 2 1 2 0 \n", + " 13 6 284 5 7 2 2 3 0 \n", + " 14 5 5 264 4 8 2 4 0 \n", + " 15 0 3 1 295 4 3 2 2 \n", + " 16 3 0 2 6 227 6 12 3 \n", + " 17 0 1 1 9 5 284 11 1 \n", + " 18 0 2 5 14 31 6 166 3 \n", + " 19 2 4 1 93 15 4 6 42 " + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "unique_class_nums = label_map_df['Label Number'].values\n", + "mnb_prediction_class_nums = [label_data_map[item] for item in mnb_predictions]\n", + "meu.display_confusion_matrix_pretty(true_labels=test_label_nums, \n", + " predicted_labels=mnb_prediction_class_nums, classes=unique_class_nums)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Predicted:
alt.atheismcomp.graphicscomp.os.ms-windows.misccomp.sys.ibm.pc.hardwarecomp.sys.mac.hardwarecomp.windows.xmisc.forsalerec.autosrec.motorcyclesrec.sport.baseballrec.sport.hockeysci.cryptsci.electronicssci.medsci.spacesoc.religion.christiantalk.politics.gunstalk.politics.mideasttalk.politics.misctalk.religion.misc
Actual:alt.atheism15310002032131014571015510
comp.graphics2218101151640220420921010
comp.os.ms-windows.misc1222262461531011343311000
comp.sys.ibm.pc.hardware1152224520293000150001000
comp.sys.mac.hardware071022227551001940020011
comp.windows.x126104024110000100111000
misc.forsale024171302427101381543210
rec.autos233332924216104953412331
rec.motorcycles031023625260272364810180
rec.sport.baseball03022400129712601133100
rec.sport.hockey2000032115282112111230
sci.crypt05404101213256301213240
sci.electronics014322527500192225432120
sci.med1800010300006284572230
sci.space21121222222045526448240
soc.religion.christian4210210001000312954322
talk.politics.guns30011100412930262276123
talk.politics.mideast21110000410401195284111
talk.politics.misc011001012155025143161663
talk.religion.misc180100411012424193154642
\n", + "
" + ], + "text/plain": [ + " Predicted: \\\n", + " alt.atheism comp.graphics \n", + "Actual: alt.atheism 153 1 \n", + " comp.graphics 2 218 \n", + " comp.os.ms-windows.misc 1 22 \n", + " comp.sys.ibm.pc.hardware 1 15 \n", + " comp.sys.mac.hardware 0 7 \n", + " comp.windows.x 1 26 \n", + " misc.forsale 0 2 \n", + " rec.autos 2 3 \n", + " rec.motorcycles 0 3 \n", + " rec.sport.baseball 0 3 \n", + " rec.sport.hockey 2 0 \n", + " sci.crypt 0 5 \n", + " sci.electronics 0 14 \n", + " sci.med 1 8 \n", + " sci.space 2 11 \n", + " soc.religion.christian 4 2 \n", + " talk.politics.guns 3 0 \n", + " talk.politics.mideast 2 1 \n", + " talk.politics.misc 0 1 \n", + " talk.religion.misc 18 0 \n", + "\n", + " \\\n", + " comp.os.ms-windows.misc \n", + "Actual: alt.atheism 0 \n", + " comp.graphics 10 \n", + " comp.os.ms-windows.misc 226 \n", + " comp.sys.ibm.pc.hardware 22 \n", + " comp.sys.mac.hardware 10 \n", + " comp.windows.x 10 \n", + " misc.forsale 4 \n", + " rec.autos 3 \n", + " rec.motorcycles 1 \n", + " rec.sport.baseball 0 \n", + " rec.sport.hockey 0 \n", + " sci.crypt 4 \n", + " sci.electronics 3 \n", + " sci.med 0 \n", + " sci.space 2 \n", + " soc.religion.christian 1 \n", + " talk.politics.guns 0 \n", + " talk.politics.mideast 1 \n", + " talk.politics.misc 1 \n", + " talk.religion.misc 1 \n", + "\n", + " \\\n", + " comp.sys.ibm.pc.hardware \n", + "Actual: alt.atheism 0 \n", + " comp.graphics 11 \n", + " comp.os.ms-windows.misc 24 \n", + " comp.sys.ibm.pc.hardware 245 \n", + " comp.sys.mac.hardware 22 \n", + " comp.windows.x 4 \n", + " misc.forsale 17 \n", + " rec.autos 3 \n", + " rec.motorcycles 0 \n", + " rec.sport.baseball 2 \n", + " rec.sport.hockey 0 \n", + " sci.crypt 0 \n", + " sci.electronics 22 \n", + " sci.med 0 \n", + " sci.space 1 \n", + " soc.religion.christian 0 \n", + " talk.politics.guns 1 \n", + " talk.politics.mideast 1 \n", + " talk.politics.misc 0 \n", + " talk.religion.misc 0 \n", + "\n", + " \\\n", + " comp.sys.mac.hardware comp.windows.x \n", + "Actual: alt.atheism 0 2 \n", + " comp.graphics 5 16 \n", + " comp.os.ms-windows.misc 6 15 \n", + " comp.sys.ibm.pc.hardware 20 2 \n", + " comp.sys.mac.hardware 227 5 \n", + " comp.windows.x 0 241 \n", + " misc.forsale 13 0 \n", + " rec.autos 3 2 \n", + " rec.motorcycles 2 3 \n", + " rec.sport.baseball 2 4 \n", + " rec.sport.hockey 0 3 \n", + " sci.crypt 4 1 \n", + " sci.electronics 5 2 \n", + " sci.med 0 1 \n", + " sci.space 2 2 \n", + " soc.religion.christian 2 1 \n", + " talk.politics.guns 1 1 \n", + " talk.politics.mideast 0 0 \n", + " talk.politics.misc 0 1 \n", + " talk.religion.misc 0 4 \n", + "\n", + " \\\n", + " misc.forsale rec.autos rec.motorcycles \n", + "Actual: alt.atheism 0 3 2 \n", + " comp.graphics 4 0 2 \n", + " comp.os.ms-windows.misc 3 1 0 \n", + " comp.sys.ibm.pc.hardware 9 3 0 \n", + " comp.sys.mac.hardware 5 1 0 \n", + " comp.windows.x 1 0 0 \n", + " misc.forsale 242 7 1 \n", + " rec.autos 9 242 16 \n", + " rec.motorcycles 6 25 260 \n", + " rec.sport.baseball 0 0 1 \n", + " rec.sport.hockey 2 1 1 \n", + " sci.crypt 0 1 2 \n", + " sci.electronics 7 5 0 \n", + " sci.med 0 3 0 \n", + " sci.space 2 2 2 \n", + " soc.religion.christian 0 0 0 \n", + " talk.politics.guns 0 0 4 \n", + " talk.politics.mideast 0 0 4 \n", + " talk.politics.misc 0 1 2 \n", + " talk.religion.misc 1 1 0 \n", + "\n", + " \\\n", + " rec.sport.baseball rec.sport.hockey \n", + "Actual: alt.atheism 1 3 \n", + " comp.graphics 2 0 \n", + " comp.os.ms-windows.misc 1 1 \n", + " comp.sys.ibm.pc.hardware 0 0 \n", + " comp.sys.mac.hardware 0 1 \n", + " comp.windows.x 0 0 \n", + " misc.forsale 0 1 \n", + " rec.autos 1 0 \n", + " rec.motorcycles 2 7 \n", + " rec.sport.baseball 297 12 \n", + " rec.sport.hockey 5 282 \n", + " sci.crypt 1 3 \n", + " sci.electronics 0 1 \n", + " sci.med 0 0 \n", + " sci.space 2 0 \n", + " soc.religion.christian 1 0 \n", + " talk.politics.guns 1 2 \n", + " talk.politics.mideast 1 0 \n", + " talk.politics.misc 1 5 \n", + " talk.religion.misc 1 2 \n", + "\n", + " \\\n", + " sci.crypt sci.electronics sci.med sci.space \n", + "Actual: alt.atheism 1 0 1 4 \n", + " comp.graphics 4 2 0 9 \n", + " comp.os.ms-windows.misc 3 4 3 3 \n", + " comp.sys.ibm.pc.hardware 1 5 0 0 \n", + " comp.sys.mac.hardware 9 4 0 0 \n", + " comp.windows.x 1 0 0 1 \n", + " misc.forsale 3 8 1 5 \n", + " rec.autos 4 9 5 3 \n", + " rec.motorcycles 2 3 6 4 \n", + " rec.sport.baseball 6 0 1 1 \n", + " rec.sport.hockey 1 1 2 1 \n", + " sci.crypt 256 3 0 1 \n", + " sci.electronics 9 222 5 4 \n", + " sci.med 0 6 284 5 \n", + " sci.space 4 5 5 264 \n", + " soc.religion.christian 0 0 3 1 \n", + " talk.politics.guns 9 3 0 2 \n", + " talk.politics.mideast 4 0 1 1 \n", + " talk.politics.misc 5 0 2 5 \n", + " talk.religion.misc 4 2 4 1 \n", + "\n", + " \\\n", + " soc.religion.christian talk.politics.guns \n", + "Actual: alt.atheism 57 10 \n", + " comp.graphics 2 1 \n", + " comp.os.ms-windows.misc 1 1 \n", + " comp.sys.ibm.pc.hardware 0 1 \n", + " comp.sys.mac.hardware 2 0 \n", + " comp.windows.x 1 1 \n", + " misc.forsale 4 3 \n", + " rec.autos 4 12 \n", + " rec.motorcycles 8 10 \n", + " rec.sport.baseball 3 3 \n", + " rec.sport.hockey 1 1 \n", + " sci.crypt 2 13 \n", + " sci.electronics 3 2 \n", + " sci.med 7 2 \n", + " sci.space 4 8 \n", + " soc.religion.christian 295 4 \n", + " talk.politics.guns 6 227 \n", + " talk.politics.mideast 9 5 \n", + " talk.politics.misc 14 31 \n", + " talk.religion.misc 93 15 \n", + "\n", + " \\\n", + " talk.politics.mideast talk.politics.misc \n", + "Actual: alt.atheism 15 5 \n", + " comp.graphics 0 1 \n", + " comp.os.ms-windows.misc 0 0 \n", + " comp.sys.ibm.pc.hardware 0 0 \n", + " comp.sys.mac.hardware 0 1 \n", + " comp.windows.x 0 0 \n", + " misc.forsale 2 1 \n", + " rec.autos 3 3 \n", + " rec.motorcycles 1 8 \n", + " rec.sport.baseball 1 0 \n", + " rec.sport.hockey 2 3 \n", + " sci.crypt 2 4 \n", + " sci.electronics 1 2 \n", + " sci.med 2 3 \n", + " sci.space 2 4 \n", + " soc.religion.christian 3 2 \n", + " talk.politics.guns 6 12 \n", + " talk.politics.mideast 284 11 \n", + " talk.politics.misc 6 166 \n", + " talk.religion.misc 4 6 \n", + "\n", + " \n", + " talk.religion.misc \n", + "Actual: alt.atheism 10 \n", + " comp.graphics 0 \n", + " comp.os.ms-windows.misc 0 \n", + " comp.sys.ibm.pc.hardware 0 \n", + " comp.sys.mac.hardware 1 \n", + " comp.windows.x 0 \n", + " misc.forsale 0 \n", + " rec.autos 1 \n", + " rec.motorcycles 0 \n", + " rec.sport.baseball 0 \n", + " rec.sport.hockey 0 \n", + " sci.crypt 0 \n", + " sci.electronics 0 \n", + " sci.med 0 \n", + " sci.space 0 \n", + " soc.religion.christian 2 \n", + " talk.politics.guns 3 \n", + " talk.politics.mideast 1 \n", + " talk.politics.misc 3 \n", + " talk.religion.misc 42 " + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "unique_classes = label_map_df['Label Name'].values\n", + "meu.display_confusion_matrix_pretty(true_labels=test_label_names, \n", + " predicted_labels=mnb_predictions, classes=unique_classes)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Label NameLabel Number
0alt.atheism0
15soc.religion.christian15
19talk.religion.misc19
\n", + "
" + ], + "text/plain": [ + " Label Name Label Number\n", + "0 alt.atheism 0\n", + "15 soc.religion.christian 15\n", + "19 talk.religion.misc 19" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "label_map_df[label_map_df['Label Number'].isin([0, 15, 19])]" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 4105, 12650, 7039, ..., 4772, 7803, 9616])" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train_idx, test_idx = train_test_split(np.array(range(len(data_df['Article']))), test_size=0.33, random_state=42)\n", + "test_idx" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ArticleClean ArticleTarget LabelTarget NamePredicted NamePredicted Confidence
4105Just a little nitpicking. Wasn't it the government that required\\r\\na standard railway gauge ? D...little nitpicking not government require standard railway gauge not improve thing please not mis...11sci.cryptsci.crypt0.975658
12650\\r\\nIt means that the EFF's public stance is complicated with issues irrelevant\\r\\nto the encryp...mean eff public stance complicate issue irrelevant encryption issue per se may well people care ...11sci.cryptsci.crypt0.988600
7039\\r\\n\\r\\n\\r\\n\\r\\n\\r\\nSo after I've flashed my lights at the chap in front and he doesn't\\r\\n'pass...flash light chap front not pass next major highway lane direction keep extreme right block folk ...7rec.autosrec.motorcycles0.729504
3310: I think most of the problems mainly arose from Manager Gene Mauch's\\r\\n: ineptitude in managin...think problem mainly arise manager gene mauchs ineptitude manage pitching staff stretch abuse ji...9rec.sport.baseballrec.sport.baseball0.999942
16360OK... quick scenario... you're at home, not bothering anybody... next thing you\\r\\nknow, somebod...ok quick scenario home not bother anybody next thing know somebody come crash upstairs window he...16talk.politics.gunstalk.politics.guns0.998837
\n", + "
" + ], + "text/plain": [ + " Article \\\n", + "4105 Just a little nitpicking. Wasn't it the government that required\\r\\na standard railway gauge ? D... \n", + "12650 \\r\\nIt means that the EFF's public stance is complicated with issues irrelevant\\r\\nto the encryp... \n", + "7039 \\r\\n\\r\\n\\r\\n\\r\\n\\r\\nSo after I've flashed my lights at the chap in front and he doesn't\\r\\n'pass... \n", + "3310 : I think most of the problems mainly arose from Manager Gene Mauch's\\r\\n: ineptitude in managin... \n", + "16360 OK... quick scenario... you're at home, not bothering anybody... next thing you\\r\\nknow, somebod... \n", + "\n", + " Clean Article \\\n", + "4105 little nitpicking not government require standard railway gauge not improve thing please not mis... \n", + "12650 mean eff public stance complicate issue irrelevant encryption issue per se may well people care ... \n", + "7039 flash light chap front not pass next major highway lane direction keep extreme right block folk ... \n", + "3310 think problem mainly arise manager gene mauchs ineptitude manage pitching staff stretch abuse ji... \n", + "16360 ok quick scenario home not bother anybody next thing know somebody come crash upstairs window he... \n", + "\n", + " Target Label Target Name Predicted Name \\\n", + "4105 11 sci.crypt sci.crypt \n", + "12650 11 sci.crypt sci.crypt \n", + "7039 7 rec.autos rec.motorcycles \n", + "3310 9 rec.sport.baseball rec.sport.baseball \n", + "16360 16 talk.politics.guns talk.politics.guns \n", + "\n", + " Predicted Confidence \n", + "4105 0.975658 \n", + "12650 0.988600 \n", + "7039 0.729504 \n", + "3310 0.999942 \n", + "16360 0.998837 " + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "predict_probas = gs_mnb.predict_proba(test_corpus).max(axis=1)\n", + "test_df = data_df.iloc[test_idx]\n", + "test_df['Predicted Name'] = mnb_predictions\n", + "test_df['Predicted Confidence'] = predict_probas\n", + "test_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ArticleClean ArticleTarget LabelTarget NamePredicted NamePredicted Confidence
8968\\r\\nZoroaster is far older than Daniel. If anything, one could claim that,\\r\\nin a sense, Daniel is a descendant of Zoroaster; as Daniel, though being\\r\\nHebrew, has assimilated into Zoroastrianis...zoroaster far old daniel anything one could claim sense daniel descendant zoroaster daniel though hebrew assimilate zoroastrianism successfully introduce religion tanakh judaism however majority b...19talk.religion.miscsoc.religion.christian0.999557
3299There were some recent developments in the dispute about Masonry among\\r\\nSouthern Baptists. I posted a summary over in bit.listserv.christia, and\\r\\nI suppose that it might be useful here. Note...recent development dispute masonry among southern baptists post summary bit listserv christia suppose may useful note not necessarily agree disagree follow present information short summary southe...19talk.religion.miscsoc.religion.christian0.999384
4367:\\r\\n (lots of stuff about the Nicene Creed deleted which can be read in the\\r\\n original basenote. I will also leave it up to other LDS netters to\\r\\n take Mr. Weiss to task on using Mormon Do...lot stuff nicene creed delete read original basenote also leave lds netter take mr weiss task use mormon doctrine declare difinitive word lds church teach doctrine hopefully lds netter amiable exp...19talk.religion.miscsoc.religion.christian0.999254
12608: >: >> Gilligan = Sloth\\r\\n: >: >> Skipper = Anger\\r\\n: >: >> Thurston Howell III = Greed\\r\\n: >: >> Lovey Howell = Gluttony\\r\\n: >: >> Ginger = Lust\\r\\n: >: >> Professor = Pride\\r\\n: >: >> Mary ...gilligan sloth skipper anger thurston howell iii greed lovey howell gluttony ginger lust professor pride mary ann envy assorted monkeys secular humanism assorted headhunters godless heathen savage...19talk.religion.miscsoc.religion.christian0.998755
16758\\r\\n\\r\\nThere were many injustices in the middle ages. And this is truely sad.\\r\\nI would hate to see a day when churches put people to death or torchured\\r\\nthem for practicing homosexuality, or...many injustice middle age truely sad would hate see day church put people death torchur practice homosexuality crime church not call take government world may homosexual treat cruelly today not me...19talk.religion.miscsoc.religion.christian0.998243
\n", + "
" + ], + "text/plain": [ + " Article \\\n", + "8968 \\r\\nZoroaster is far older than Daniel. If anything, one could claim that,\\r\\nin a sense, Daniel is a descendant of Zoroaster; as Daniel, though being\\r\\nHebrew, has assimilated into Zoroastrianis... \n", + "3299 There were some recent developments in the dispute about Masonry among\\r\\nSouthern Baptists. I posted a summary over in bit.listserv.christia, and\\r\\nI suppose that it might be useful here. Note... \n", + "4367 :\\r\\n (lots of stuff about the Nicene Creed deleted which can be read in the\\r\\n original basenote. I will also leave it up to other LDS netters to\\r\\n take Mr. Weiss to task on using Mormon Do... \n", + "12608 : >: >> Gilligan = Sloth\\r\\n: >: >> Skipper = Anger\\r\\n: >: >> Thurston Howell III = Greed\\r\\n: >: >> Lovey Howell = Gluttony\\r\\n: >: >> Ginger = Lust\\r\\n: >: >> Professor = Pride\\r\\n: >: >> Mary ... \n", + "16758 \\r\\n\\r\\nThere were many injustices in the middle ages. And this is truely sad.\\r\\nI would hate to see a day when churches put people to death or torchured\\r\\nthem for practicing homosexuality, or... \n", + "\n", + " Clean Article \\\n", + "8968 zoroaster far old daniel anything one could claim sense daniel descendant zoroaster daniel though hebrew assimilate zoroastrianism successfully introduce religion tanakh judaism however majority b... \n", + "3299 recent development dispute masonry among southern baptists post summary bit listserv christia suppose may useful note not necessarily agree disagree follow present information short summary southe... \n", + "4367 lot stuff nicene creed delete read original basenote also leave lds netter take mr weiss task use mormon doctrine declare difinitive word lds church teach doctrine hopefully lds netter amiable exp... \n", + "12608 gilligan sloth skipper anger thurston howell iii greed lovey howell gluttony ginger lust professor pride mary ann envy assorted monkeys secular humanism assorted headhunters godless heathen savage... \n", + "16758 many injustice middle age truely sad would hate see day church put people death torchur practice homosexuality crime church not call take government world may homosexual treat cruelly today not me... \n", + "\n", + " Target Label Target Name Predicted Name \\\n", + "8968 19 talk.religion.misc soc.religion.christian \n", + "3299 19 talk.religion.misc soc.religion.christian \n", + "4367 19 talk.religion.misc soc.religion.christian \n", + "12608 19 talk.religion.misc soc.religion.christian \n", + "16758 19 talk.religion.misc soc.religion.christian \n", + "\n", + " Predicted Confidence \n", + "8968 0.999557 \n", + "3299 0.999384 \n", + "4367 0.999254 \n", + "12608 0.998755 \n", + "16758 0.998243 " + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.set_option('display.max_colwidth', 200)\n", + "res_df = (test_df[(test_df['Target Name'] == 'talk.religion.misc') & (test_df['Predicted Name'] == 'soc.religion.christian')]\n", + " .sort_values(by=['Predicted Confidence'], ascending=False).head(5))\n", + "res_df" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ArticleClean ArticleTarget LabelTarget NamePredicted NamePredicted Confidence
914\\r\\n\\r\\nAtoms are not objective. They aren't even real. What scientists call\\r\\nan atom is nothing more than a mathematical model that describes \\r\\ncertain physical, observable properties of ou...atom not objective not even real scientist call atom nothing mathematical model describe certain physical observable property surrounding subjective objective though approach scientist take discus...19talk.religion.miscalt.atheism0.996075
2334In <1ren9a$94q@morrow.stanford.edu> salem@pangea.Stanford.EDU (Bruce Salem) \\r\\n\\r\\n\\r\\n\\r\\nThis brings up another something I have never understood. I asked this once\\r\\nbefore and got a few int...renaqmorrow stanford edu salempangea stanford edu bruce salem bring another something never understand ask get interesting response somehow not seem satisfied would nt not consider good source may...19talk.religion.miscalt.atheism0.996051
11117\\r\\n\\r\\n\\tUnless God admits that he didn't do it....\\r\\n\\r\\n\\t=)\\r\\n\\r\\n\\r\\n--- \\r\\n\\r\\n \" I'd Cheat on Hillary Too.\"unless god admit not would cheat hillary19talk.religion.miscalt.atheism0.965725
12386\\r\\nAh, you taking everything as literal quotation. No wonder you're confused.\\r\\n\\r\\nFirst, can I ask that we decide on a definition of \"objective\"?\\r\\n\\r\\n\\r\\nAnd?\\r\\n\\r\\n\\r\\nI'd guess that it ...ah take everything literal quotation no wonder confused first ask decide definition objective would guess may may case people unable evaluate complex moral issue rather leave behave immorally may ...19talk.religion.miscalt.atheism0.772658
9360\\r\\nYes, as a philosophy weak atheism is worthless. This is true in\\r\\nexactly the same sense that as a philosophy Christians' disbelief in\\r\\nZeus is worthless. Atheists construct their persona...yes philosophy weak atheism worthless true exactly sense philosophy christian disbelief zeus worthless atheists construct personal philosophy many different source build non god base idea way chri...19talk.religion.miscalt.atheism0.757788
\n", + "
" + ], + "text/plain": [ + " Article \\\n", + "914 \\r\\n\\r\\nAtoms are not objective. They aren't even real. What scientists call\\r\\nan atom is nothing more than a mathematical model that describes \\r\\ncertain physical, observable properties of ou... \n", + "2334 In <1ren9a$94q@morrow.stanford.edu> salem@pangea.Stanford.EDU (Bruce Salem) \\r\\n\\r\\n\\r\\n\\r\\nThis brings up another something I have never understood. I asked this once\\r\\nbefore and got a few int... \n", + "11117 \\r\\n\\r\\n\\tUnless God admits that he didn't do it....\\r\\n\\r\\n\\t=)\\r\\n\\r\\n\\r\\n--- \\r\\n\\r\\n \" I'd Cheat on Hillary Too.\" \n", + "12386 \\r\\nAh, you taking everything as literal quotation. No wonder you're confused.\\r\\n\\r\\nFirst, can I ask that we decide on a definition of \"objective\"?\\r\\n\\r\\n\\r\\nAnd?\\r\\n\\r\\n\\r\\nI'd guess that it ... \n", + "9360 \\r\\nYes, as a philosophy weak atheism is worthless. This is true in\\r\\nexactly the same sense that as a philosophy Christians' disbelief in\\r\\nZeus is worthless. Atheists construct their persona... \n", + "\n", + " Clean Article \\\n", + "914 atom not objective not even real scientist call atom nothing mathematical model describe certain physical observable property surrounding subjective objective though approach scientist take discus... \n", + "2334 renaqmorrow stanford edu salempangea stanford edu bruce salem bring another something never understand ask get interesting response somehow not seem satisfied would nt not consider good source may... \n", + "11117 unless god admit not would cheat hillary \n", + "12386 ah take everything literal quotation no wonder confused first ask decide definition objective would guess may may case people unable evaluate complex moral issue rather leave behave immorally may ... \n", + "9360 yes philosophy weak atheism worthless true exactly sense philosophy christian disbelief zeus worthless atheists construct personal philosophy many different source build non god base idea way chri... \n", + "\n", + " Target Label Target Name Predicted Name Predicted Confidence \n", + "914 19 talk.religion.misc alt.atheism 0.996075 \n", + "2334 19 talk.religion.misc alt.atheism 0.996051 \n", + "11117 19 talk.religion.misc alt.atheism 0.965725 \n", + "12386 19 talk.religion.misc alt.atheism 0.772658 \n", + "9360 19 talk.religion.misc alt.atheism 0.757788 " + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.set_option('display.max_colwidth', 200)\n", + "res_df = (test_df[(test_df['Target Name'] == 'talk.religion.misc') & (test_df['Predicted Name'] == 'alt.atheism')]\n", + " .sort_values(by=['Predicted Confidence'], ascending=False).head(5))\n", + "res_df" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch05 - Text Classification/Ch05c - Text Classification - II.ipynb b/New-Second-Edition/Ch05 - Text Classification/Ch05c - Text Classification - II.ipynb new file mode 100644 index 0000000..9689ba9 --- /dev/null +++ b/New-Second-Edition/Ch05 - Text Classification/Ch05c - Text Classification - II.ipynb @@ -0,0 +1,354 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import text_normalizer as tn" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "data_df = pd.read_csv('clean_newsgroups.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((12263,), (6041,))" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "\n", + "train_corpus, test_corpus, train_label_nums, test_label_nums, train_label_names, test_label_names =\\\n", + " train_test_split(np.array(data_df['Clean Article']), np.array(data_df['Target Label']),\n", + " np.array(data_df['Target Name']), test_size=0.33, random_state=42)\n", + "\n", + "train_corpus.shape, test_corpus.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "tokenized_train = [tn.tokenizer.tokenize(text)\n", + " for text in train_corpus]\n", + "tokenized_test = [tn.tokenizer.tokenize(text)\n", + " for text in test_corpus]" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import gensim\n", + "# build word2vec model\n", + "w2v_num_features = 1000\n", + "w2v_model = gensim.models.Word2Vec(tokenized_train, size=w2v_num_features, window=100,\n", + " min_count=2, sample=1e-3, sg=1, iter=5, workers=10)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def document_vectorizer(corpus, model, num_features):\n", + " vocabulary = set(model.wv.index2word)\n", + " \n", + " def average_word_vectors(words, model, vocabulary, num_features):\n", + " feature_vector = np.zeros((num_features,), dtype=\"float64\")\n", + " nwords = 0.\n", + " \n", + " for word in words:\n", + " if word in vocabulary: \n", + " nwords = nwords + 1.\n", + " feature_vector = np.add(feature_vector, model.wv[word])\n", + " if nwords:\n", + " feature_vector = np.divide(feature_vector, nwords)\n", + "\n", + " return feature_vector\n", + "\n", + " features = [average_word_vectors(tokenized_sentence, model, vocabulary, num_features)\n", + " for tokenized_sentence in corpus]\n", + " return np.array(features)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "# generate averaged word vector features from word2vec model\n", + "avg_wv_train_features = document_vectorizer(corpus=tokenized_train, model=w2v_model,\n", + " num_features=w2v_num_features)\n", + "avg_wv_test_features = document_vectorizer(corpus=tokenized_test, model=w2v_model,\n", + " num_features=w2v_num_features)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Word2Vec model:> Train features shape: (12263, 1000) Test features shape: (6041, 1000)\n" + ] + } + ], + "source": [ + "print('Word2Vec model:> Train features shape:', avg_wv_train_features.shape, \n", + " ' Test features shape:', avg_wv_test_features.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [0.76026006 0.74796417 0.73746433 0.73989383 0.74386252]\n", + "Mean CV Accuracy: 0.7458889820674891\n", + "Test Accuracy: 0.7381228273464658\n" + ] + } + ], + "source": [ + "from sklearn.model_selection import cross_val_score\n", + "from sklearn.linear_model import SGDClassifier\n", + "\n", + "svm = SGDClassifier(loss='hinge', penalty='l2', random_state=42, max_iter=500)\n", + "svm.fit(avg_wv_train_features, train_label_names)\n", + "svm_w2v_cv_scores = cross_val_score(svm, avg_wv_train_features, train_label_names, cv=5)\n", + "svm_w2v_cv_mean_score = np.mean(svm_w2v_cv_scores)\n", + "print('CV Accuracy (5-fold):', svm_w2v_cv_scores)\n", + "print('Mean CV Accuracy:', svm_w2v_cv_mean_score)\n", + "svm_w2v_test_score = svm.score(avg_wv_test_features, test_label_names)\n", + "print('Test Accuracy:', svm_w2v_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GloVe model:> Train features shape: (12263, 300) Test features shape: (6041, 300)\n" + ] + } + ], + "source": [ + "# feature engineering with GloVe model\n", + "train_nlp = [tn.nlp(item) for item in train_corpus]\n", + "train_glove_features = np.array([item.vector for item in train_nlp])\n", + "\n", + "test_nlp = [tn.nlp(item) for item in test_corpus]\n", + "test_glove_features = np.array([item.vector for item in test_nlp])\n", + "\n", + "print('GloVe model:> Train features shape:', train_glove_features.shape, \n", + " ' Test features shape:', test_glove_features.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [ 0.68996343 0.67711726 0.67101508 0.67006942 0.66448445]\n", + "Mean CV Accuracy: 0.674529928944\n", + "Test Accuracy: 0.666777023672\n" + ] + } + ], + "source": [ + "svm = SGDClassifier(loss='hinge', penalty='l2', random_state=42, max_iter=500)\n", + "svm.fit(train_glove_features, train_label_names)\n", + "svm_glove_cv_scores = cross_val_score(svm, train_glove_features, train_label_names, cv=5)\n", + "svm_glove_cv_mean_score = np.mean(svm_glove_cv_scores)\n", + "print('CV Accuracy (5-fold):', svm_glove_cv_scores)\n", + "print('Mean CV Accuracy:', svm_glove_cv_mean_score)\n", + "svm_glove_test_score = svm.score(test_glove_features, test_label_names)\n", + "print('Test Accuracy:', svm_glove_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "from gensim.models.fasttext import FastText\n", + "\n", + "ft_num_features = 1000\n", + "# sg decides whether to use the skip-gram model (1) or CBOW (0)\n", + "ft_model = FastText(tokenized_train, size=ft_num_features, window=100, \n", + " min_count=2, sample=1e-3, sg=1, iter=5, workers=10)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "# generate averaged word vector features from word2vec model\n", + "avg_ft_train_features = document_vectorizer(corpus=tokenized_train, model=ft_model,\n", + " num_features=ft_num_features)\n", + "avg_ft_test_features = document_vectorizer(corpus=tokenized_test, model=ft_model,\n", + " num_features=ft_num_features)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "FastText model:> Train features shape: (12263, 1000) Test features shape: (6041, 1000)\n" + ] + } + ], + "source": [ + "print('FastText model:> Train features shape:', avg_ft_train_features.shape, \n", + " ' Test features shape:', avg_ft_test_features.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CV Accuracy (5-fold): [0.76391711 0.74307818 0.74194863 0.74724377 0.74795417]\n", + "Mean CV Accuracy: 0.7488283727085712\n", + "Test Accuracy: 0.7434199635821884\n" + ] + } + ], + "source": [ + "svm = SGDClassifier(loss='hinge', penalty='l2', random_state=42, max_iter=500)\n", + "svm.fit(avg_ft_train_features, train_label_names)\n", + "svm_ft_cv_scores = cross_val_score(svm, avg_ft_train_features, train_label_names, cv=5)\n", + "svm_ft_cv_mean_score = np.mean(svm_ft_cv_scores)\n", + "print('CV Accuracy (5-fold):', svm_ft_cv_scores)\n", + "print('Mean CV Accuracy:', svm_ft_cv_mean_score)\n", + "svm_ft_test_score = svm.score(avg_ft_test_features, test_label_names)\n", + "print('Test Accuracy:', svm_ft_test_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "MLPClassifier(activation='relu', alpha=1e-05, batch_size='auto', beta_1=0.9,\n", + " beta_2=0.999, early_stopping=True, epsilon=1e-08,\n", + " hidden_layer_sizes=(512, 512), learning_rate='adaptive',\n", + " learning_rate_init=0.001, max_iter=200, momentum=0.9,\n", + " n_iter_no_change=10, nesterovs_momentum=True, power_t=0.5,\n", + " random_state=42, shuffle=True, solver='adam', tol=0.0001,\n", + " validation_fraction=0.1, verbose=False, warm_start=False)" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.neural_network import MLPClassifier\n", + "\n", + "mlp = MLPClassifier(solver='adam', alpha=1e-5, learning_rate='adaptive', early_stopping=True,\n", + " activation = 'relu', hidden_layer_sizes=(512, 512), random_state=42)\n", + "mlp.fit(avg_ft_train_features, train_label_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test Accuracy: 0.7328256911107432\n" + ] + } + ], + "source": [ + "svm_ft_test_score = mlp.score(avg_ft_test_features, test_label_names)\n", + "print('Test Accuracy:', svm_ft_test_score)" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch05 - Text Classification/contractions.py b/New-Second-Edition/Ch05 - Text Classification/contractions.py new file mode 100644 index 0000000..9018a85 --- /dev/null +++ b/New-Second-Edition/Ch05 - Text Classification/contractions.py @@ -0,0 +1,132 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Aug 01 01:11:02 2016 + +@author: DIP +""" + +CONTRACTION_MAP = { +"ain't": "is not", +"aren't": "are not", +"can't": "cannot", +"can't've": "cannot have", +"'cause": "because", +"could've": "could have", +"couldn't": "could not", +"couldn't've": "could not have", +"didn't": "did not", +"doesn't": "does not", +"don't": "do not", +"hadn't": "had not", +"hadn't've": "had not have", +"hasn't": "has not", +"haven't": "have not", +"he'd": "he would", +"he'd've": "he would have", +"he'll": "he will", +"he'll've": "he he will have", +"he's": "he is", +"how'd": "how did", +"how'd'y": "how do you", +"how'll": "how will", +"how's": "how is", +"I'd": "I would", +"I'd've": "I would have", +"I'll": "I will", +"I'll've": "I will have", +"I'm": "I am", +"I've": "I have", +"i'd": "i would", +"i'd've": "i would have", +"i'll": "i will", +"i'll've": "i will have", +"i'm": "i am", +"i've": "i have", +"isn't": "is not", +"it'd": "it would", +"it'd've": "it would have", +"it'll": "it will", +"it'll've": "it will have", +"it's": "it is", +"let's": "let us", +"ma'am": "madam", +"mayn't": "may not", +"might've": "might have", +"mightn't": "might not", +"mightn't've": "might not have", +"must've": "must have", +"mustn't": "must not", +"mustn't've": "must not have", +"needn't": "need not", +"needn't've": "need not have", +"o'clock": "of the clock", +"oughtn't": "ought not", +"oughtn't've": "ought not have", +"shan't": "shall not", +"sha'n't": "shall not", +"shan't've": "shall not have", +"she'd": "she would", +"she'd've": "she would have", +"she'll": "she will", +"she'll've": "she will have", +"she's": "she is", +"should've": "should have", +"shouldn't": "should not", +"shouldn't've": "should not have", +"so've": "so have", +"so's": "so as", +"that'd": "that would", +"that'd've": "that would have", +"that's": "that is", +"there'd": "there would", +"there'd've": "there would have", +"there's": "there is", +"they'd": "they would", +"they'd've": "they would have", +"they'll": "they will", +"they'll've": "they will have", +"they're": "they are", +"they've": "they have", +"to've": "to have", +"wasn't": "was not", +"we'd": "we would", +"we'd've": "we would have", +"we'll": "we will", +"we'll've": "we will have", +"we're": "we are", +"we've": "we have", +"weren't": "were not", +"what'll": "what will", +"what'll've": "what will have", +"what're": "what are", +"what's": "what is", +"what've": "what have", +"when's": "when is", +"when've": "when have", +"where'd": "where did", +"where's": "where is", +"where've": "where have", +"who'll": "who will", +"who'll've": "who will have", +"who's": "who is", +"who've": "who have", +"why's": "why is", +"why've": "why have", +"will've": "will have", +"won't": "will not", +"won't've": "will not have", +"would've": "would have", +"wouldn't": "would not", +"wouldn't've": "would not have", +"y'all": "you all", +"y'all'd": "you all would", +"y'all'd've": "you all would have", +"y'all're": "you all are", +"y'all've": "you all have", +"you'd": "you would", +"you'd've": "you would have", +"you'll": "you will", +"you'll've": "you will have", +"you're": "you are", +"you've": "you have" +} \ No newline at end of file diff --git a/New-Second-Edition/Ch05 - Text Classification/model_evaluation_utils.py b/New-Second-Edition/Ch05 - Text Classification/model_evaluation_utils.py new file mode 100644 index 0000000..88708c7 --- /dev/null +++ b/New-Second-Edition/Ch05 - Text Classification/model_evaluation_utils.py @@ -0,0 +1,229 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Jul 31 20:05:23 2017 + +@author: DIP +@Copyright: Dipanjan Sarkar +""" + +from sklearn import metrics +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt +from sklearn.preprocessing import LabelEncoder +from sklearn.base import clone +from sklearn.preprocessing import label_binarize +from scipy import interp +from sklearn.metrics import roc_curve, auc + + +def get_metrics(true_labels, predicted_labels): + + print('Accuracy:', np.round( + metrics.accuracy_score(true_labels, + predicted_labels), + 4)) + print('Precision:', np.round( + metrics.precision_score(true_labels, + predicted_labels, + average='weighted'), + 4)) + print('Recall:', np.round( + metrics.recall_score(true_labels, + predicted_labels, + average='weighted'), + 4)) + print('F1 Score:', np.round( + metrics.f1_score(true_labels, + predicted_labels, + average='weighted'), + 4)) + + +def train_predict_model(classifier, + train_features, train_labels, + test_features, test_labels): + # build model + classifier.fit(train_features, train_labels) + # predict using model + predictions = classifier.predict(test_features) + return predictions + + +def display_confusion_matrix(true_labels, predicted_labels, classes=[1,0]): + + total_classes = len(classes) + level_labels = [total_classes*[0], list(range(total_classes))] + + cm = metrics.confusion_matrix(y_true=true_labels, y_pred=predicted_labels, + labels=classes) + cm_frame = pd.DataFrame(data=cm, + columns=pd.MultiIndex(levels=[['Predicted:'], classes], + labels=level_labels), + index=pd.MultiIndex(levels=[['Actual:'], classes], + labels=level_labels)) + print(cm_frame) + + +def display_confusion_matrix_pretty(true_labels, predicted_labels, classes=[1,0]): + + total_classes = len(classes) + level_labels = [total_classes*[0], list(range(total_classes))] + + cm = metrics.confusion_matrix(y_true=true_labels, y_pred=predicted_labels, + labels=classes) + cm_frame = pd.DataFrame(data=cm, + columns=pd.MultiIndex(levels=[['Predicted:'], classes], + labels=level_labels), + index=pd.MultiIndex(levels=[['Actual:'], classes], + labels=level_labels)) + return cm_frame + +def display_classification_report(true_labels, predicted_labels, classes=[1,0]): + + report = metrics.classification_report(y_true=true_labels, + y_pred=predicted_labels, + labels=classes) + print(report) + + + +def display_model_performance_metrics(true_labels, predicted_labels, classes=[1,0]): + print('Model Performance metrics:') + print('-'*30) + get_metrics(true_labels=true_labels, predicted_labels=predicted_labels) + print('\nModel Classification report:') + print('-'*30) + display_classification_report(true_labels=true_labels, predicted_labels=predicted_labels, + classes=classes) + print('\nPrediction Confusion Matrix:') + print('-'*30) + display_confusion_matrix(true_labels=true_labels, predicted_labels=predicted_labels, + classes=classes) + + +def plot_model_decision_surface(clf, train_features, train_labels, + plot_step=0.02, cmap=plt.cm.RdYlBu, + markers=None, alphas=None, colors=None): + + if train_features.shape[1] != 2: + raise ValueError("X_train should have exactly 2 columnns!") + + x_min, x_max = train_features[:, 0].min() - plot_step, train_features[:, 0].max() + plot_step + y_min, y_max = train_features[:, 1].min() - plot_step, train_features[:, 1].max() + plot_step + xx, yy = np.meshgrid(np.arange(x_min, x_max, plot_step), + np.arange(y_min, y_max, plot_step)) + + clf_est = clone(clf) + clf_est.fit(train_features,train_labels) + if hasattr(clf_est, 'predict_proba'): + Z = clf_est.predict_proba(np.c_[xx.ravel(), yy.ravel()])[:,1] + else: + Z = clf_est.predict(np.c_[xx.ravel(), yy.ravel()]) + Z = Z.reshape(xx.shape) + cs = plt.contourf(xx, yy, Z, cmap=cmap) + + le = LabelEncoder() + y_enc = le.fit_transform(train_labels) + n_classes = len(le.classes_) + plot_colors = ''.join(colors) if colors else [None] * n_classes + label_names = le.classes_ + markers = markers if markers else [None] * n_classes + alphas = alphas if alphas else [None] * n_classes + for i, color in zip(range(n_classes), plot_colors): + idx = np.where(y_enc == i) + plt.scatter(train_features[idx, 0], train_features[idx, 1], c=color, + label=label_names[i], cmap=cmap, edgecolors='black', + marker=markers[i], alpha=alphas[i]) + plt.legend() + plt.show() + + +def plot_model_roc_curve(clf, features, true_labels, label_encoder=None, class_names=None): + + ## Compute ROC curve and ROC area for each class + fpr = dict() + tpr = dict() + roc_auc = dict() + if hasattr(clf, 'classes_'): + class_labels = clf.classes_ + elif label_encoder: + class_labels = label_encoder.classes_ + elif class_names: + class_labels = class_names + else: + raise ValueError('Unable to derive prediction classes, please specify class_names!') + n_classes = len(class_labels) + y_test = label_binarize(true_labels, classes=class_labels) + if n_classes == 2: + if hasattr(clf, 'predict_proba'): + prob = clf.predict_proba(features) + y_score = prob[:, prob.shape[1]-1] + elif hasattr(clf, 'decision_function'): + prob = clf.decision_function(features) + y_score = prob[:, prob.shape[1]-1] + else: + raise AttributeError("Estimator doesn't have a probability or confidence scoring system!") + + fpr, tpr, _ = roc_curve(y_test, y_score) + roc_auc = auc(fpr, tpr) + plt.plot(fpr, tpr, label='ROC curve (area = {0:0.2f})' + ''.format(roc_auc), + linewidth=2.5) + + elif n_classes > 2: + if hasattr(clf, 'predict_proba'): + y_score = clf.predict_proba(features) + elif hasattr(clf, 'decision_function'): + y_score = clf.decision_function(features) + else: + raise AttributeError("Estimator doesn't have a probability or confidence scoring system!") + + for i in range(n_classes): + fpr[i], tpr[i], _ = roc_curve(y_test[:, i], y_score[:, i]) + roc_auc[i] = auc(fpr[i], tpr[i]) + + ## Compute micro-average ROC curve and ROC area + fpr["micro"], tpr["micro"], _ = roc_curve(y_test.ravel(), y_score.ravel()) + roc_auc["micro"] = auc(fpr["micro"], tpr["micro"]) + + ## Compute macro-average ROC curve and ROC area + # First aggregate all false positive rates + all_fpr = np.unique(np.concatenate([fpr[i] for i in range(n_classes)])) + # Then interpolate all ROC curves at this points + mean_tpr = np.zeros_like(all_fpr) + for i in range(n_classes): + mean_tpr += interp(all_fpr, fpr[i], tpr[i]) + # Finally average it and compute AUC + mean_tpr /= n_classes + fpr["macro"] = all_fpr + tpr["macro"] = mean_tpr + roc_auc["macro"] = auc(fpr["macro"], tpr["macro"]) + + ## Plot ROC curves + plt.figure(figsize=(6, 4)) + plt.plot(fpr["micro"], tpr["micro"], + label='micro-average ROC curve (area = {0:0.2f})' + ''.format(roc_auc["micro"]), linewidth=3) + + plt.plot(fpr["macro"], tpr["macro"], + label='macro-average ROC curve (area = {0:0.2f})' + ''.format(roc_auc["macro"]), linewidth=3) + + for i, label in enumerate(class_labels): + plt.plot(fpr[i], tpr[i], label='ROC curve of class {0} (area = {1:0.2f})' + ''.format(label, roc_auc[i]), + linewidth=2, linestyle=':') + else: + raise ValueError('Number of classes should be atleast 2 or more') + + plt.plot([0, 1], [0, 1], 'k--') + plt.xlim([0.0, 1.0]) + plt.ylim([0.0, 1.05]) + plt.xlabel('False Positive Rate') + plt.ylabel('True Positive Rate') + plt.title('Receiver Operating Characteristic (ROC) Curve') + plt.legend(loc="lower right") + plt.show() + + diff --git a/New-Second-Edition/Ch05 - Text Classification/text_normalizer.py b/New-Second-Edition/Ch05 - Text Classification/text_normalizer.py new file mode 100644 index 0000000..9190606 --- /dev/null +++ b/New-Second-Edition/Ch05 - Text Classification/text_normalizer.py @@ -0,0 +1,156 @@ +import nltk +import spacy +import unicodedata +from contractions import CONTRACTION_MAP +import re +from nltk.corpus import wordnet +import collections +#from textblob import Word +from nltk.tokenize.toktok import ToktokTokenizer +from bs4 import BeautifulSoup + +tokenizer = ToktokTokenizer() +stopword_list = nltk.corpus.stopwords.words('english') +nlp = spacy.load('en', parse=True, tag=True, entity=True) +# nlp_vec = spacy.load('en_vectors_web_lg', parse=True, tag=True, entity=True) + + + +def strip_html_tags(text): + soup = BeautifulSoup(text, "html.parser") + if bool(soup.find()): + [s.extract() for s in soup(['iframe', 'script'])] + stripped_text = soup.get_text() + stripped_text = re.sub(r'[\r|\n|\r\n]+', '\n', stripped_text) + else: + stripped_text = text + return stripped_text + + +#def correct_spellings_textblob(tokens): +# return [Word(token).correct() for token in tokens] + + +def simple_porter_stemming(text): + ps = nltk.porter.PorterStemmer() + text = ' '.join([ps.stem(word) for word in text.split()]) + return text + + +def lemmatize_text(text): + text = nlp(text) + text = ' '.join([word.lemma_ if word.lemma_ != '-PRON-' else word.text for word in text]) + return text + + +def remove_repeated_characters(tokens): + repeat_pattern = re.compile(r'(\w*)(\w)\2(\w*)') + match_substitution = r'\1\2\3' + def replace(old_word): + if wordnet.synsets(old_word): + return old_word + new_word = repeat_pattern.sub(match_substitution, old_word) + return replace(new_word) if new_word != old_word else new_word + + correct_tokens = [replace(word) for word in tokens] + return correct_tokens + + +def expand_contractions(text, contraction_mapping=CONTRACTION_MAP): + + contractions_pattern = re.compile('({})'.format('|'.join(contraction_mapping.keys())), + flags=re.IGNORECASE|re.DOTALL) + def expand_match(contraction): + match = contraction.group(0) + first_char = match[0] + expanded_contraction = contraction_mapping.get(match)\ + if contraction_mapping.get(match)\ + else contraction_mapping.get(match.lower()) + expanded_contraction = first_char+expanded_contraction[1:] + return expanded_contraction + + expanded_text = contractions_pattern.sub(expand_match, text) + expanded_text = re.sub("'", "", expanded_text) + return expanded_text + + +def remove_accented_chars(text): + text = unicodedata.normalize('NFKD', text).encode('ascii', 'ignore').decode('utf-8', 'ignore') + return text + + +def remove_special_characters(text, remove_digits=False): + pattern = r'[^a-zA-Z0-9\s]|\[|\]' if not remove_digits else r'[^a-zA-Z\s]|\[|\]' + text = re.sub(pattern, '', text) + return text + + +def remove_stopwords(text, is_lower_case=False, stopwords=stopword_list): + tokens = tokenizer.tokenize(text) + tokens = [token.strip() for token in tokens] + if is_lower_case: + filtered_tokens = [token for token in tokens if token not in stopwords] + else: + filtered_tokens = [token for token in tokens if token.lower() not in stopwords] + filtered_text = ' '.join(filtered_tokens) + return filtered_text + + +def normalize_corpus(corpus, html_stripping=True, contraction_expansion=True, + accented_char_removal=True, text_lower_case=True, + text_stemming=False, text_lemmatization=True, + special_char_removal=True, remove_digits=True, + stopword_removal=True, stopwords=stopword_list): + + normalized_corpus = [] + # normalize each document in the corpus + for doc in corpus: + + # strip HTML + if html_stripping: + doc = strip_html_tags(doc) + + # remove extra newlines + doc = doc.translate(doc.maketrans("\n\t\r", " ")) + + # remove accented characters + if accented_char_removal: + doc = remove_accented_chars(doc) + + # expand contractions + if contraction_expansion: + doc = expand_contractions(doc) + + # lemmatize text + if text_lemmatization: + doc = lemmatize_text(doc) + + # stem text + if text_stemming and not text_lemmatization: + doc = simple_porter_stemming(doc) + + # remove special characters and\or digits + if special_char_removal: + # insert spaces between special characters to isolate them + special_char_pattern = re.compile(r'([{.(-)!}])') + doc = special_char_pattern.sub(" \\1 ", doc) + doc = remove_special_characters(doc, remove_digits=remove_digits) + + # remove extra whitespace + doc = re.sub(' +', ' ', doc) + + # lowercase the text + if text_lower_case: + doc = doc.lower() + + # remove stopwords + if stopword_removal: + doc = remove_stopwords(doc, is_lower_case=text_lower_case, stopwords=stopwords) + + # remove extra whitespace + doc = re.sub(' +', ' ', doc) + doc = doc.strip() + + normalized_corpus.append(doc) + + return normalized_corpus \ No newline at end of file diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06a - Text Keyphrase Extraction.ipynb b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06a - Text Keyphrase Extraction.ipynb new file mode 100644 index 0000000..5946fe3 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06a - Text Keyphrase Extraction.ipynb @@ -0,0 +1,736 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.corpus import gutenberg\n", + "import text_normalizer as tn\n", + "import nltk\n", + "from operator import itemgetter" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# load corpus\n", + "alice = gutenberg.sents(fileids='carroll-alice.txt')\n", + "alice = [' '.join(ts) for ts in alice]\n", + "norm_alice = list(filter(None, tn.normalize_corpus(alice, text_lemmatization=False)))" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ Alice ' s Adventures in Wonderland by Lewis Carroll 1865 ] \n", + " alice adventures wonderland lewis carroll\n" + ] + } + ], + "source": [ + "print(alice[0], '\\n', norm_alice[0])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Collocations" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def compute_ngrams(sequence, n):\n", + " return list(\n", + " zip(*(sequence[index:] \n", + " for index in range(n)))\n", + " )" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(1, 2), (2, 3), (3, 4)]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "compute_ngrams([1,2,3,4], 2)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(1, 2, 3), (2, 3, 4)]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "compute_ngrams([1,2,3,4], 3)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "def flatten_corpus(corpus):\n", + " return ' '.join([document.strip() \n", + " for document in corpus])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## N-grams" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def get_top_ngrams(corpus, ngram_val=1, limit=5):\n", + "\n", + " corpus = flatten_corpus(corpus)\n", + " tokens = nltk.word_tokenize(corpus)\n", + "\n", + " ngrams = compute_ngrams(tokens, ngram_val)\n", + " ngrams_freq_dist = nltk.FreqDist(ngrams)\n", + " sorted_ngrams_fd = sorted(ngrams_freq_dist.items(), \n", + " key=itemgetter(1), reverse=True)\n", + " sorted_ngrams = sorted_ngrams_fd[0:limit]\n", + " sorted_ngrams = [(' '.join(text), freq) \n", + " for text, freq in sorted_ngrams]\n", + "\n", + " return sorted_ngrams" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('said alice', 123),\n", + " ('mock turtle', 56),\n", + " ('march hare', 31),\n", + " ('said king', 29),\n", + " ('thought alice', 26),\n", + " ('white rabbit', 22),\n", + " ('said hatter', 22),\n", + " ('said mock', 20),\n", + " ('said caterpillar', 18),\n", + " ('said gryphon', 18)]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "get_top_ngrams(corpus=norm_alice, ngram_val=2,\n", + " limit=10)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('said mock turtle', 20),\n", + " ('said march hare', 10),\n", + " ('poor little thing', 6),\n", + " ('little golden key', 5),\n", + " ('certainly said alice', 5),\n", + " ('white kid gloves', 5),\n", + " ('march hare said', 5),\n", + " ('mock turtle said', 5),\n", + " ('know said alice', 4),\n", + " ('might well say', 4)]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "get_top_ngrams(corpus=norm_alice, ngram_val=3,\n", + " limit=10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## N-grams and Pointwise Mututal Information" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.collocations import BigramCollocationFinder\n", + "from nltk.collocations import BigramAssocMeasures\n", + "\n", + "finder = BigramCollocationFinder.from_documents([item.split() \n", + " for item \n", + " in norm_alice])\n", + "finder" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('said', 'alice'),\n", + " ('mock', 'turtle'),\n", + " ('march', 'hare'),\n", + " ('said', 'king'),\n", + " ('thought', 'alice'),\n", + " ('said', 'hatter'),\n", + " ('white', 'rabbit'),\n", + " ('said', 'mock'),\n", + " ('said', 'caterpillar'),\n", + " ('said', 'gryphon')]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bigram_measures = BigramAssocMeasures() \n", + "finder.nbest(bigram_measures.raw_freq, 10)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('abide', 'figures'),\n", + " ('acceptance', 'elegant'),\n", + " ('accounting', 'tastes'),\n", + " ('accustomed', 'usurpation'),\n", + " ('act', 'crawling'),\n", + " ('adjourn', 'immediate'),\n", + " ('adoption', 'energetic'),\n", + " ('affair', 'trusts'),\n", + " ('agony', 'terror'),\n", + " ('alarmed', 'proposal')]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "finder.nbest(bigram_measures.pmi, 10) " + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.collocations import TrigramCollocationFinder\n", + "from nltk.collocations import TrigramAssocMeasures\n", + "\n", + "finder = TrigramCollocationFinder.from_documents([item.split() \n", + " for item \n", + " in norm_alice])" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('said', 'mock', 'turtle'),\n", + " ('said', 'march', 'hare'),\n", + " ('poor', 'little', 'thing'),\n", + " ('little', 'golden', 'key'),\n", + " ('march', 'hare', 'said'),\n", + " ('mock', 'turtle', 'said'),\n", + " ('white', 'kid', 'gloves'),\n", + " ('beau', 'ootiful', 'soo'),\n", + " ('certainly', 'said', 'alice'),\n", + " ('might', 'well', 'say')]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "trigram_measures = TrigramAssocMeasures() \n", + "finder.nbest(trigram_measures.raw_freq, 10)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('accustomed', 'usurpation', 'conquest'),\n", + " ('adjourn', 'immediate', 'adoption'),\n", + " ('adoption', 'energetic', 'remedies'),\n", + " ('ancient', 'modern', 'seaography'),\n", + " ('apple', 'roast', 'turkey'),\n", + " ('arithmetic', 'ambition', 'distraction'),\n", + " ('brother', 'latin', 'grammar'),\n", + " ('canvas', 'bag', 'tied'),\n", + " ('cherry', 'tart', 'custard'),\n", + " ('circle', 'exact', 'shape')]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "finder.nbest(trigram_measures.pmi, 10) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Weighted Tag-based Phrase Extraction" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "29" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = open('elephants.txt', 'r+').readlines()\n", + "sentences = nltk.sent_tokenize(data[0])\n", + "len(sentences)" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Elephants are large mammals of the family Elephantidae and the order Proboscidea.',\n", + " 'Three species are currently recognised: the African bush elephant (Loxodonta africana), the African forest elephant (L. cyclotis), and the Asian elephant (Elephas maximus).',\n", + " 'Elephants are scattered throughout sub-Saharan Africa, South Asia, and Southeast Asia.']" + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentences[:3]" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Elephants are large mammals of the family Elephantidae and the order Proboscidea',\n", + " 'Three species are currently recognised the African bush elephant Loxodonta africana the African forest elephant L cyclotis and the Asian elephant Elephas maximus',\n", + " 'Elephants are scattered throughout subSaharan Africa South Asia and Southeast Asia']" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "norm_sentences = tn.normalize_corpus(sentences, text_lower_case=False, \n", + " text_stemming=False, text_lemmatization=False, stopword_removal=False)\n", + "norm_sentences[:3]" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "metadata": {}, + "outputs": [], + "source": [ + "import itertools\n", + "stopwords = nltk.corpus.stopwords.words('english')\n", + "\n", + "def get_chunks(sentences, grammar = r'NP: {
? * +}', stopword_list=stopwords):\n", + " \n", + " all_chunks = []\n", + " chunker = nltk.chunk.regexp.RegexpParser(grammar)\n", + " \n", + " for sentence in sentences:\n", + " \n", + " tagged_sents = [nltk.pos_tag(nltk.word_tokenize(sentence))] \n", + " \n", + " chunks = [chunker.parse(tagged_sent) \n", + " for tagged_sent in tagged_sents]\n", + " \n", + " wtc_sents = [nltk.chunk.tree2conlltags(chunk)\n", + " for chunk in chunks] \n", + " \n", + " flattened_chunks = list(\n", + " itertools.chain.from_iterable(\n", + " wtc_sent for wtc_sent in wtc_sents)\n", + " )\n", + " \n", + " valid_chunks_tagged = [(status, [wtc for wtc in chunk]) \n", + " for status, chunk \n", + " in itertools.groupby(flattened_chunks, \n", + " lambda word_pos_chunk: word_pos_chunk[2] != 'O')]\n", + " \n", + " valid_chunks = [' '.join(word.lower() \n", + " for word, tag, chunk in wtc_group \n", + " if word.lower() not in stopword_list) \n", + " for status, wtc_group in valid_chunks_tagged\n", + " if status]\n", + " \n", + " all_chunks.append(valid_chunks)\n", + " \n", + " return all_chunks" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['elephants', 'large mammals', 'family elephantidae', 'order proboscidea'],\n", + " ['species',\n", + " 'african bush elephant loxodonta',\n", + " 'african forest elephant l cyclotis',\n", + " 'asian elephant elephas maximus'],\n", + " ['elephants', 'subsaharan africa south asia', 'southeast asia'],\n", + " ['elephantidae',\n", + " 'family',\n", + " 'order proboscidea',\n", + " 'extinct members',\n", + " 'order',\n", + " 'deinotheres gomphotheres mammoths',\n", + " 'mastodons'],\n", + " ['elephants',\n", + " 'several distinctive features',\n", + " 'long trunk',\n", + " 'proboscis',\n", + " 'many purposes',\n", + " 'water',\n", + " 'grasping objects'],\n", + " ['incisors', 'tusks', 'weapons', 'tools', 'objects'],\n", + " ['elephants', 'flaps', 'body temperature'],\n", + " ['pillarlike legs', 'great weight'],\n", + " ['african elephants',\n", + " 'ears',\n", + " 'backs',\n", + " 'asian elephants',\n", + " 'ears',\n", + " 'convex',\n", + " 'level backs'],\n", + " ['elephants', 'different habitats', 'savannahs forests deserts', 'marshes'],\n", + " ['water'],\n", + " ['keystone species', 'impact', 'environments'],\n", + " ['animals',\n", + " 'distance',\n", + " 'elephants',\n", + " 'predators',\n", + " 'lions tigers hyenas',\n", + " 'wild dogs',\n", + " 'young elephants',\n", + " 'calves'],\n", + " ['elephants', 'fissionfusion society', 'multiple family groups'],\n", + " ['females cows',\n", + " 'family groups',\n", + " 'female',\n", + " 'calves',\n", + " 'several related females'],\n", + " ['groups', 'individual known', 'matriarch', 'cow'],\n", + " ['males bulls', 'family groups', 'males'],\n", + " ['adult',\n", + " 'family groups',\n", + " 'mate',\n", + " 'enter state',\n", + " 'increased testosterone',\n", + " 'aggression',\n", + " 'musth',\n", + " 'dominance',\n", + " 'reproductive success'],\n", + " ['calves', 'centre', 'attention', 'family groups', 'mothers', 'years'],\n", + " ['elephants', 'years', 'wild'],\n", + " ['touch sight smell',\n", + " 'sound elephants',\n", + " 'infrasound',\n", + " 'seismic communication',\n", + " 'long distances'],\n", + " ['elephant intelligence', 'primates', 'cetaceans'],\n", + " ['selfawareness', 'dead individuals', 'kind'],\n", + " ['african elephants',\n", + " 'international union',\n", + " 'conservation',\n", + " 'nature iucn',\n", + " 'asian elephant'],\n", + " ['threats', 'populations', 'ivory trade', 'animals', 'ivory tusks'],\n", + " ['threats', 'elephants', 'habitat destruction', 'conflicts', 'local people'],\n", + " ['elephants', 'animals', 'asia'],\n", + " ['past', 'war today', 'display', 'zoos', 'entertainment', 'circuses'],\n", + " ['elephants', 'art folklore religion literature', 'popular culture']]" + ] + }, + "execution_count": 97, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "chunks = get_chunks(norm_sentences)\n", + "chunks" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [], + "source": [ + "from gensim import corpora, models\n", + "\n", + "def get_tfidf_weighted_keyphrases(sentences, \n", + " grammar=r'NP: {
? * +}',\n", + " top_n=10):\n", + " \n", + " valid_chunks = get_chunks(sentences, grammar=grammar)\n", + " \n", + " dictionary = corpora.Dictionary(valid_chunks)\n", + " corpus = [dictionary.doc2bow(chunk) for chunk in valid_chunks]\n", + " \n", + " tfidf = models.TfidfModel(corpus)\n", + " corpus_tfidf = tfidf[corpus]\n", + " \n", + " weighted_phrases = {dictionary.get(idx): value \n", + " for doc in corpus_tfidf \n", + " for idx, value in doc}\n", + " \n", + " weighted_phrases = sorted(weighted_phrases.items(), \n", + " key=itemgetter(1), reverse=True)\n", + " weighted_phrases = [(term, round(wt, 3)) for term, wt in weighted_phrases]\n", + " \n", + " return weighted_phrases[:top_n]" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('water', 1.0),\n", + " ('asia', 0.807),\n", + " ('wild', 0.764),\n", + " ('great weight', 0.707),\n", + " ('pillarlike legs', 0.707),\n", + " ('southeast asia', 0.693),\n", + " ('subsaharan africa south asia', 0.693),\n", + " ('body temperature', 0.693),\n", + " ('flaps', 0.693),\n", + " ('fissionfusion society', 0.693),\n", + " ('multiple family groups', 0.693),\n", + " ('art folklore religion literature', 0.693),\n", + " ('popular culture', 0.693),\n", + " ('ears', 0.681),\n", + " ('males', 0.653),\n", + " ('males bulls', 0.653),\n", + " ('family elephantidae', 0.607),\n", + " ('large mammals', 0.607),\n", + " ('years', 0.607),\n", + " ('environments', 0.577),\n", + " ('impact', 0.577),\n", + " ('keystone species', 0.577),\n", + " ('cetaceans', 0.577),\n", + " ('elephant intelligence', 0.577),\n", + " ('primates', 0.577),\n", + " ('dead individuals', 0.577),\n", + " ('kind', 0.577),\n", + " ('selfawareness', 0.577),\n", + " ('different habitats', 0.57),\n", + " ('marshes', 0.57)]" + ] + }, + "execution_count": 101, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "get_tfidf_weighted_keyphrases(sentences=norm_sentences, top_n=30)" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('african bush elephant', 0.261),\n", + " ('including', 0.141),\n", + " ('family', 0.137),\n", + " ('cow', 0.124),\n", + " ('forests', 0.108),\n", + " ('female', 0.103),\n", + " ('asia', 0.102),\n", + " ('objects', 0.098),\n", + " ('tigers', 0.098),\n", + " ('sight', 0.098),\n", + " ('ivory', 0.098),\n", + " ('males', 0.088),\n", + " ('folklore', 0.087),\n", + " ('known', 0.087),\n", + " ('religion', 0.087),\n", + " ('larger ears', 0.085),\n", + " ('water', 0.075),\n", + " ('highly recognisable', 0.075),\n", + " ('breathing lifting', 0.074),\n", + " ('flaps', 0.073),\n", + " ('africa', 0.072),\n", + " ('gomphotheres', 0.072),\n", + " ('animals tend', 0.071),\n", + " ('success', 0.071),\n", + " ('south', 0.07)]" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from gensim.summarization import keywords\n", + "\n", + "key_words = keywords(data[0], ratio=1.0, scores=True, lemmatize=True)\n", + "[(item, round(score, 3)) for item, score in key_words][:25]" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06b - Topic Modeling with gensim.ipynb b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06b - Topic Modeling with gensim.ipynb new file mode 100644 index 0000000..b716871 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06b - Topic Modeling with gensim.ipynb @@ -0,0 +1,4072 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Data Retrieval\n", + "\n", + "This may not work on windows so just use the extracted NIPS papers data from the __`nipstxt/`__ folder present in the same directory as this notebook which already has the data pre-downloaded and extracted" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "--2018-11-07 18:59:33-- https://cs.nyu.edu/~roweis/data/nips12raw_str602.tgz\n", + "Resolving cs.nyu.edu (cs.nyu.edu)... 128.122.49.30\n", + "Connecting to cs.nyu.edu (cs.nyu.edu)|128.122.49.30|:443... connected.\n", + "HTTP request sent, awaiting response... 200 OK\n", + "Length: 12851423 (12M) [application/x-gzip]\n", + "Saving to: ‘nips12raw_str602.tgz’\n", + "\n", + "nips12raw_str602.tg 100%[===================>] 12.26M 1.75MB/s in 7.4s \n", + "\n", + "2018-11-07 18:59:41 (1.65 MB/s) - ‘nips12raw_str602.tgz’ saved [12851423/12851423]\n", + "\n" + ] + } + ], + "source": [ + "!wget https://cs.nyu.edu/~roweis/data/nips12raw_str602.tgz" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Data Extraction" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "!tar -xzf nips12raw_str602.tgz" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load and Pre-process Data" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['nips01', 'nips04', 'MATLAB_NOTES', 'nips10', 'nips02', 'idx', 'nips11', 'nips03', 'nips07', 'README_yann', 'nips05', 'nips12', 'nips06', 'RAW_DATA_NOTES', 'orig', 'nips00', 'nips08', 'nips09']\n" + ] + } + ], + "source": [ + "import os\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "DATA_PATH = 'nipstxt/'\n", + "print(os.listdir(DATA_PATH))" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1740" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "folders = [\"nips{0:02}\".format(i) for i in range(0,13)]\n", + "# Read all texts into a list.\n", + "papers = []\n", + "for folder in folders:\n", + " file_names = os.listdir(DATA_PATH + folder)\n", + " for file_name in file_names:\n", + " with open(DATA_PATH + folder + '/' + file_name, encoding='utf-8', errors='ignore', mode='r+') as f:\n", + " data = f.read()\n", + " papers.append(data)\n", + "len(papers)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "652 \n", + "Scaling Properties of Coarse-Coded Symbol Memories \n", + "Ronald Rosenfeld \n", + "David S. Touretzky \n", + "Computer Science Department \n", + "Carnegie Mellon University \n", + "Pittsburgh, Pennsylvania 15213 \n", + "Abstract\n", + "Coarse-coded symbol memories have appeared in several neural network \n", + "symbol processing models. In order to determine how these models would scale, one \n", + "must first have some understanding of the mathematics of coarse-coded representa- \n", + "tions. We define the general structure of coarse-coded symbol memories and derive \n", + "mathematical relationships among their essential parameters: memort size, slmbol-set \n", + "size and capacitor. The computed capacity of one of the schemes agrees well with actual \n", + "measurements of the coarse-coded working memory of DCPS, Touretzky and Hinton's \n", + "distributed connectionist production system. \n", + "1 Introduction \n", + "A dstributed representation is a memory scheme in which each entity (concept, symbol) \n", + "is represented by a pattern of activity over many units [3]. If each unit partic\n" + ] + } + ], + "source": [ + "print(papers[0][:1000])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Basic Text Wrangling" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1740\n", + "CPU times: user 38.6 s, sys: 92 ms, total: 38.7 s\n", + "Wall time: 38.7 s\n" + ] + } + ], + "source": [ + "%%time\n", + "import nltk\n", + "\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "wtk = nltk.tokenize.RegexpTokenizer(r'\\w+')\n", + "wnl = nltk.stem.wordnet.WordNetLemmatizer()\n", + "\n", + "def normalize_corpus(papers):\n", + " norm_papers = []\n", + " for paper in papers:\n", + " paper = paper.lower()\n", + " paper_tokens = [token.strip() for token in wtk.tokenize(paper)]\n", + " paper_tokens = [wnl.lemmatize(token) for token in paper_tokens if not token.isnumeric()]\n", + " paper_tokens = [token for token in paper_tokens if len(token) > 1]\n", + " paper_tokens = [token for token in paper_tokens if token not in stop_words]\n", + " paper_tokens = list(filter(None, paper_tokens))\n", + " if paper_tokens:\n", + " norm_papers.append(paper_tokens)\n", + " \n", + " return norm_papers\n", + " \n", + "norm_papers = normalize_corpus(papers)\n", + "print(len(norm_papers))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['scaling', 'property', 'coarse', 'coded', 'symbol', 'memory', 'ronald', 'rosenfeld', 'david', 'touretzky', 'computer', 'science', 'department', 'carnegie', 'mellon', 'university', 'pittsburgh', 'pennsylvania', 'abstract', 'coarse', 'coded', 'symbol', 'memory', 'appeared', 'several', 'neural', 'network', 'symbol', 'processing', 'model', 'order', 'determine', 'model', 'would', 'scale', 'one', 'must', 'first', 'understanding', 'mathematics', 'coarse', 'coded', 'representa', 'tions', 'define', 'general', 'structure', 'coarse', 'coded', 'symbol']\n" + ] + } + ], + "source": [ + "print(norm_papers[0][:50])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Text Representation with Feature Engineering" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['scaling', 'property', 'coarse_coded', 'symbol', 'memory', 'ronald', 'rosenfeld', 'david_touretzky', 'computer_science', 'department', 'carnegie_mellon', 'university_pittsburgh', 'pennsylvania', 'abstract', 'coarse_coded', 'symbol', 'memory', 'appeared', 'several', 'neural_network', 'symbol', 'processing', 'model', 'order', 'determine', 'model', 'would', 'scale', 'one', 'must', 'first', 'understanding', 'mathematics', 'coarse_coded', 'representa_tions', 'define', 'general', 'structure', 'coarse_coded', 'symbol', 'memory', 'derive', 'mathematical', 'relationship', 'among', 'essential', 'parameter', 'memor', 'size', 'lmbol']\n" + ] + } + ], + "source": [ + "import gensim\n", + "\n", + "bigram = gensim.models.Phrases(norm_papers, min_count=20, threshold=20, delimiter=b'_') # higher threshold fewer phrases.\n", + "bigram_model = gensim.models.phrases.Phraser(bigram)\n", + "\n", + "print(bigram_model[norm_papers[0]][:50])" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sample word to number mappings: [(0, '8a'), (1, 'abandon'), (2, 'able'), (3, 'abo'), (4, 'abstract'), (5, 'accommodate'), (6, 'accuracy'), (7, 'achieved'), (8, 'acknowledgment_thank'), (9, 'across'), (10, 'active'), (11, 'activity'), (12, 'actual'), (13, 'adjusted'), (14, 'adjusting')]\n", + "Total Vocabulary Size: 78892\n" + ] + } + ], + "source": [ + "norm_corpus_bigrams = [bigram_model[doc] for doc in norm_papers]\n", + "\n", + "# Create a dictionary representation of the documents.\n", + "dictionary = gensim.corpora.Dictionary(norm_corpus_bigrams)\n", + "print('Sample word to number mappings:', list(dictionary.items())[:15])\n", + "print('Total Vocabulary Size:', len(dictionary))" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Vocabulary Size: 7756\n" + ] + } + ], + "source": [ + "# Filter out words that occur less than 20 documents, or more than 50% of the documents.\n", + "dictionary.filter_extremes(no_below=20, no_above=0.6)\n", + "print('Total Vocabulary Size:', len(dictionary))" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(4, 1), (14, 2), (20, 1), (28, 1), (33, 1), (43, 1), (50, 1), (60, 2), (61, 1), (62, 2), (63, 1), (72, 1), (84, 1), (88, 3), (102, 2), (109, 2), (112, 5), (122, 6), (125, 4), (127, 3), (129, 2), (130, 4), (133, 5), (141, 3), (157, 1), (158, 1), (173, 1), (174, 1), (177, 1), (183, 1), (189, 1), (192, 1), (207, 1), (213, 1), (214, 3), (227, 2), (234, 1), (237, 1), (239, 1), (244, 4), (252, 4), (256, 4), (272, 1), (277, 1), (280, 2), (286, 39), (296, 6), (306, 1), (307, 2), (316, 1)]\n" + ] + } + ], + "source": [ + "# Transforming corpus into bag of words vectors\n", + "bow_corpus = [dictionary.doc2bow(text) for text in norm_corpus_bigrams]\n", + "print(bow_corpus[1][:50])" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('achieved', 1), ('allow', 2), ('american_institute', 1), ('another', 1), ('appeared', 1), ('argument', 1), ('assume', 1), ('become', 2), ('becomes', 1), ('behavior', 2), ('behavioral', 1), ('bounded', 1), ('cause', 1), ('certain', 3), ('column', 2), ('complete', 2), ('computational', 5), ('connection', 6), ('consider', 4), ('considered', 3), ('consists', 2), ('constant', 4), ('constraint', 5), ('corresponding', 3), ('denote', 1), ('density', 1), ('determines', 1), ('developed', 1), ('dimension', 1), ('distributed_processing', 1), ('ed_parallel', 1), ('effect', 1), ('enforced', 1), ('equal', 1), ('equation', 3), ('every', 2), ('except', 1), ('expected', 1), ('experiment', 1), ('expression', 4), ('finally', 4), ('fixed', 4), ('furthermore', 1), ('give', 1), ('good', 2), ('group', 39), ('hence', 6), ('implementation', 1), ('implemented', 2), ('independent', 1)]\n" + ] + } + ], + "source": [ + "print([(dictionary[idx] , freq) for idx, freq in bow_corpus[1][:50]])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total number of papers: 1740\n" + ] + } + ], + "source": [ + "print('Total number of papers:', len(bow_corpus))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Topic Models with Latent Semantic Indexing (LSI)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 54min 30s, sys: 3min 21s, total: 57min 51s\n", + "Wall time: 3min 51s\n" + ] + } + ], + "source": [ + "%%time\n", + "\n", + "TOTAL_TOPICS = 10\n", + "lsi_bow = gensim.models.LsiModel(bow_corpus, id2word=dictionary, num_topics=TOTAL_TOPICS,\n", + " onepass=True, chunksize=1740, power_iters=1000)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "0.215*\"unit\" + 0.212*\"state\" + 0.187*\"training\" + 0.177*\"neuron\" + 0.162*\"pattern\" + 0.145*\"image\" + 0.140*\"vector\" + 0.125*\"feature\" + 0.122*\"cell\" + 0.110*\"layer\" + 0.101*\"task\" + 0.097*\"class\" + 0.091*\"probability\" + 0.089*\"signal\" + 0.087*\"step\" + 0.086*\"response\" + 0.085*\"representation\" + 0.083*\"noise\" + 0.082*\"rule\" + 0.081*\"distribution\"\n", + "\n", + "Topic #2:\n", + "-0.487*\"neuron\" + -0.396*\"cell\" + 0.257*\"state\" + -0.191*\"response\" + 0.187*\"training\" + -0.170*\"stimulus\" + -0.117*\"activity\" + 0.109*\"class\" + -0.099*\"spike\" + -0.097*\"pattern\" + -0.096*\"circuit\" + -0.096*\"synaptic\" + 0.095*\"vector\" + -0.090*\"signal\" + -0.090*\"firing\" + -0.088*\"visual\" + 0.084*\"classifier\" + 0.083*\"action\" + 0.078*\"word\" + -0.078*\"cortical\"\n", + "\n", + "Topic #3:\n", + "-0.627*\"state\" + 0.395*\"image\" + -0.219*\"neuron\" + 0.209*\"feature\" + -0.188*\"action\" + 0.137*\"unit\" + 0.131*\"object\" + -0.130*\"control\" + 0.129*\"training\" + -0.109*\"policy\" + 0.103*\"classifier\" + 0.090*\"class\" + -0.081*\"step\" + -0.081*\"dynamic\" + 0.080*\"classification\" + 0.078*\"layer\" + 0.076*\"recognition\" + -0.074*\"reinforcement_learning\" + 0.069*\"representation\" + 0.068*\"pattern\"\n", + "\n", + "Topic #4:\n", + "-0.686*\"unit\" + 0.433*\"image\" + -0.182*\"pattern\" + -0.131*\"layer\" + -0.123*\"hidden_unit\" + -0.121*\"net\" + -0.114*\"training\" + 0.112*\"feature\" + -0.109*\"activation\" + -0.107*\"rule\" + 0.097*\"neuron\" + -0.078*\"word\" + 0.070*\"pixel\" + -0.070*\"connection\" + 0.067*\"object\" + 0.065*\"state\" + 0.060*\"distribution\" + 0.059*\"face\" + -0.057*\"architecture\" + 0.055*\"estimate\"\n", + "\n", + "Topic #5:\n", + "-0.428*\"image\" + -0.348*\"state\" + 0.266*\"neuron\" + -0.264*\"unit\" + 0.181*\"training\" + 0.174*\"class\" + -0.168*\"object\" + 0.167*\"classifier\" + -0.147*\"action\" + -0.122*\"visual\" + 0.117*\"vector\" + 0.115*\"node\" + 0.105*\"distribution\" + -0.103*\"motion\" + -0.099*\"feature\" + 0.097*\"classification\" + -0.097*\"control\" + -0.095*\"task\" + -0.087*\"cell\" + -0.083*\"representation\"\n", + "\n", + "Topic #6:\n", + "0.660*\"cell\" + -0.508*\"neuron\" + -0.213*\"image\" + -0.103*\"chip\" + -0.097*\"unit\" + 0.093*\"response\" + -0.090*\"object\" + 0.083*\"rat\" + 0.076*\"distribution\" + -0.070*\"circuit\" + 0.069*\"probability\" + 0.064*\"stimulus\" + -0.061*\"memory\" + -0.058*\"analog\" + -0.058*\"activation\" + 0.055*\"class\" + -0.053*\"bit\" + -0.052*\"net\" + 0.051*\"cortical\" + 0.050*\"firing\"\n", + "\n", + "Topic #7:\n", + "-0.353*\"word\" + 0.281*\"unit\" + -0.272*\"training\" + -0.257*\"classifier\" + -0.177*\"recognition\" + 0.159*\"distribution\" + -0.152*\"feature\" + -0.144*\"state\" + -0.142*\"pattern\" + 0.141*\"vector\" + -0.128*\"cell\" + -0.128*\"task\" + 0.122*\"approximation\" + 0.121*\"variable\" + 0.110*\"equation\" + -0.107*\"classification\" + 0.106*\"noise\" + -0.103*\"class\" + 0.101*\"matrix\" + -0.098*\"neuron\"\n", + "\n", + "Topic #8:\n", + "-0.303*\"pattern\" + 0.243*\"signal\" + 0.236*\"control\" + 0.202*\"training\" + -0.181*\"rule\" + -0.178*\"state\" + 0.167*\"noise\" + -0.166*\"class\" + 0.162*\"word\" + -0.155*\"cell\" + -0.154*\"feature\" + 0.147*\"motion\" + 0.140*\"task\" + -0.127*\"node\" + -0.124*\"neuron\" + 0.116*\"target\" + 0.114*\"circuit\" + -0.114*\"probability\" + -0.110*\"classifier\" + -0.109*\"image\"\n", + "\n", + "Topic #9:\n", + "-0.472*\"node\" + -0.254*\"circuit\" + 0.214*\"word\" + -0.201*\"chip\" + 0.190*\"neuron\" + 0.172*\"stimulus\" + -0.160*\"classifier\" + -0.152*\"current\" + 0.147*\"feature\" + -0.146*\"voltage\" + 0.145*\"distribution\" + -0.141*\"control\" + -0.124*\"rule\" + -0.110*\"layer\" + -0.105*\"analog\" + -0.091*\"tree\" + 0.084*\"response\" + 0.080*\"state\" + 0.079*\"probability\" + 0.079*\"estimate\"\n", + "\n", + "Topic #10:\n", + "0.518*\"word\" + -0.254*\"training\" + 0.236*\"vector\" + -0.222*\"task\" + -0.194*\"pattern\" + -0.156*\"classifier\" + 0.149*\"node\" + 0.146*\"recognition\" + -0.139*\"control\" + 0.138*\"sequence\" + -0.126*\"rule\" + 0.125*\"circuit\" + 0.123*\"cell\" + -0.113*\"action\" + -0.105*\"neuron\" + 0.094*\"hmm\" + 0.093*\"character\" + 0.088*\"chip\" + 0.088*\"matrix\" + 0.085*\"structure\"\n", + "\n" + ] + } + ], + "source": [ + "for topic_id, topic in lsi_bow.print_topics(num_topics=10, num_words=20):\n", + " print('Topic #'+str(topic_id+1)+':')\n", + " print(topic)\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "==================================================\n", + "Direction 1: [('unit', 0.215), ('state', 0.212), ('training', 0.187), ('neuron', 0.177), ('pattern', 0.162), ('image', 0.145), ('vector', 0.14), ('feature', 0.125), ('cell', 0.122), ('layer', 0.11), ('task', 0.101), ('class', 0.097), ('probability', 0.091), ('signal', 0.089), ('step', 0.087), ('response', 0.086), ('representation', 0.085), ('noise', 0.083), ('rule', 0.082), ('distribution', 0.081)]\n", + "--------------------------------------------------\n", + "Direction 2: []\n", + "--------------------------------------------------\n", + "\n", + "Topic #2:\n", + "==================================================\n", + "Direction 1: [('state', 0.257), ('training', 0.187), ('class', 0.109), ('vector', 0.095), ('classifier', 0.084), ('action', 0.083), ('word', 0.078)]\n", + "--------------------------------------------------\n", + "Direction 2: [('neuron', -0.487), ('cell', -0.396), ('response', -0.191), ('stimulus', -0.17), ('activity', -0.117), ('spike', -0.099), ('pattern', -0.097), ('circuit', -0.096), ('synaptic', -0.096), ('signal', -0.09), ('firing', -0.09), ('visual', -0.088), ('cortical', -0.078)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #3:\n", + "==================================================\n", + "Direction 1: [('image', 0.395), ('feature', 0.209), ('unit', 0.137), ('object', 0.131), ('training', 0.129), ('classifier', 0.103), ('class', 0.09), ('classification', 0.08), ('layer', 0.078), ('recognition', 0.076), ('representation', 0.069), ('pattern', 0.068)]\n", + "--------------------------------------------------\n", + "Direction 2: [('state', -0.627), ('neuron', -0.219), ('action', -0.188), ('control', -0.13), ('policy', -0.109), ('step', -0.081), ('dynamic', -0.081), ('reinforcement_learning', -0.074)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #4:\n", + "==================================================\n", + "Direction 1: [('image', 0.433), ('feature', 0.112), ('neuron', 0.097), ('pixel', 0.07), ('object', 0.067), ('state', 0.065), ('distribution', 0.06), ('face', 0.059), ('estimate', 0.055)]\n", + "--------------------------------------------------\n", + "Direction 2: [('unit', -0.686), ('pattern', -0.182), ('layer', -0.131), ('hidden_unit', -0.123), ('net', -0.121), ('training', -0.114), ('activation', -0.109), ('rule', -0.107), ('word', -0.078), ('connection', -0.07), ('architecture', -0.057)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #5:\n", + "==================================================\n", + "Direction 1: [('neuron', 0.266), ('training', 0.181), ('class', 0.174), ('classifier', 0.167), ('vector', 0.117), ('node', 0.115), ('distribution', 0.105), ('classification', 0.097)]\n", + "--------------------------------------------------\n", + "Direction 2: [('image', -0.428), ('state', -0.348), ('unit', -0.264), ('object', -0.168), ('action', -0.147), ('visual', -0.122), ('motion', -0.103), ('feature', -0.099), ('control', -0.097), ('task', -0.095), ('cell', -0.087), ('representation', -0.083)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #6:\n", + "==================================================\n", + "Direction 1: [('cell', 0.66), ('response', 0.093), ('rat', 0.083), ('distribution', 0.076), ('probability', 0.069), ('stimulus', 0.064), ('class', 0.055), ('cortical', 0.051), ('firing', 0.05)]\n", + "--------------------------------------------------\n", + "Direction 2: [('neuron', -0.508), ('image', -0.213), ('chip', -0.103), ('unit', -0.097), ('object', -0.09), ('circuit', -0.07), ('memory', -0.061), ('analog', -0.058), ('activation', -0.058), ('bit', -0.053), ('net', -0.052)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #7:\n", + "==================================================\n", + "Direction 1: [('unit', 0.281), ('distribution', 0.159), ('vector', 0.141), ('approximation', 0.122), ('variable', 0.121), ('equation', 0.11), ('noise', 0.106), ('matrix', 0.101)]\n", + "--------------------------------------------------\n", + "Direction 2: [('word', -0.353), ('training', -0.272), ('classifier', -0.257), ('recognition', -0.177), ('feature', -0.152), ('state', -0.144), ('pattern', -0.142), ('cell', -0.128), ('task', -0.128), ('classification', -0.107), ('class', -0.103), ('neuron', -0.098)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #8:\n", + "==================================================\n", + "Direction 1: [('signal', 0.243), ('control', 0.236), ('training', 0.202), ('noise', 0.167), ('word', 0.162), ('motion', 0.147), ('task', 0.14), ('target', 0.116), ('circuit', 0.114)]\n", + "--------------------------------------------------\n", + "Direction 2: [('pattern', -0.303), ('rule', -0.181), ('state', -0.178), ('class', -0.166), ('cell', -0.155), ('feature', -0.154), ('node', -0.127), ('neuron', -0.124), ('probability', -0.114), ('classifier', -0.11), ('image', -0.109)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #9:\n", + "==================================================\n", + "Direction 1: [('word', 0.214), ('neuron', 0.19), ('stimulus', 0.172), ('feature', 0.147), ('distribution', 0.145), ('response', 0.084), ('state', 0.08), ('probability', 0.079), ('estimate', 0.079)]\n", + "--------------------------------------------------\n", + "Direction 2: [('node', -0.472), ('circuit', -0.254), ('chip', -0.201), ('classifier', -0.16), ('current', -0.152), ('voltage', -0.146), ('control', -0.141), ('rule', -0.124), ('layer', -0.11), ('analog', -0.105), ('tree', -0.091)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #10:\n", + "==================================================\n", + "Direction 1: [('word', 0.518), ('vector', 0.236), ('node', 0.149), ('recognition', 0.146), ('sequence', 0.138), ('circuit', 0.125), ('cell', 0.123), ('hmm', 0.094), ('character', 0.093), ('chip', 0.088), ('matrix', 0.088), ('structure', 0.085)]\n", + "--------------------------------------------------\n", + "Direction 2: [('training', -0.254), ('task', -0.222), ('pattern', -0.194), ('classifier', -0.156), ('control', -0.139), ('rule', -0.126), ('action', -0.113), ('neuron', -0.105)]\n", + "--------------------------------------------------\n", + "\n" + ] + } + ], + "source": [ + "for n in range(TOTAL_TOPICS):\n", + " print('Topic #'+str(n+1)+':')\n", + " print('='*50)\n", + " d1 = []\n", + " d2 = []\n", + " for term, wt in lsi_bow.show_topic(n, topn=20):\n", + " if wt >= 0:\n", + " d1.append((term, round(wt, 3)))\n", + " else:\n", + " d2.append((term, round(wt, 3)))\n", + "\n", + " print('Direction 1:', d1)\n", + " print('-'*50)\n", + " print('Direction 2:', d2)\n", + " print('-'*50)\n", + " print()\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((7756, 10), (10,), (10, 1740))" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "term_topic = lsi_bow.projection.u\n", + "singular_values = lsi_bow.projection.s\n", + "topic_document = (gensim.matutils.corpus2dense(lsi_bow[bow_corpus], len(singular_values)).T / singular_values).T\n", + "term_topic.shape, singular_values.shape, topic_document.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
T1T2T3T4T5T6T7T8T9T10
00.0380.0020.009-0.077-0.010-0.0180.030-0.0720.0000.005
10.0220.000-0.0220.0080.011-0.0160.013-0.0170.0010.007
20.021-0.028-0.0040.003-0.0030.000-0.0080.0090.008-0.014
30.024-0.0480.0110.003-0.0230.044-0.002-0.011-0.0030.016
40.032-0.020-0.0130.013-0.0030.058-0.006-0.050-0.0610.036
50.085-0.183-0.003-0.022-0.0190.307-0.087-0.137-0.0400.020
60.020-0.034-0.0190.0030.017-0.042-0.012-0.014-0.002-0.012
70.0120.0060.007-0.0180.008-0.001-0.0040.005-0.003-0.013
80.033-0.071-0.0170.0030.0180.009-0.020-0.0190.011-0.011
90.0270.0070.0270.041-0.016-0.0080.0360.006-0.0050.006
100.046-0.011-0.012-0.0330.029-0.0310.009-0.0600.0150.023
110.023-0.0030.0060.031-0.016-0.0040.0280.021-0.0460.021
120.034-0.034-0.017-0.0020.023-0.059-0.002-0.024-0.0560.021
130.041-0.030-0.019-0.0210.019-0.0560.0180.009-0.018-0.011
140.0150.004-0.000-0.023-0.003-0.0030.020-0.0130.0050.010
\n", + "
" + ], + "text/plain": [ + " T1 T2 T3 T4 T5 T6 T7 T8 T9 T10\n", + "0 0.038 0.002 0.009 -0.077 -0.010 -0.018 0.030 -0.072 0.000 0.005\n", + "1 0.022 0.000 -0.022 0.008 0.011 -0.016 0.013 -0.017 0.001 0.007\n", + "2 0.021 -0.028 -0.004 0.003 -0.003 0.000 -0.008 0.009 0.008 -0.014\n", + "3 0.024 -0.048 0.011 0.003 -0.023 0.044 -0.002 -0.011 -0.003 0.016\n", + "4 0.032 -0.020 -0.013 0.013 -0.003 0.058 -0.006 -0.050 -0.061 0.036\n", + "5 0.085 -0.183 -0.003 -0.022 -0.019 0.307 -0.087 -0.137 -0.040 0.020\n", + "6 0.020 -0.034 -0.019 0.003 0.017 -0.042 -0.012 -0.014 -0.002 -0.012\n", + "7 0.012 0.006 0.007 -0.018 0.008 -0.001 -0.004 0.005 -0.003 -0.013\n", + "8 0.033 -0.071 -0.017 0.003 0.018 0.009 -0.020 -0.019 0.011 -0.011\n", + "9 0.027 0.007 0.027 0.041 -0.016 -0.008 0.036 0.006 -0.005 0.006\n", + "10 0.046 -0.011 -0.012 -0.033 0.029 -0.031 0.009 -0.060 0.015 0.023\n", + "11 0.023 -0.003 0.006 0.031 -0.016 -0.004 0.028 0.021 -0.046 0.021\n", + "12 0.034 -0.034 -0.017 -0.002 0.023 -0.059 -0.002 -0.024 -0.056 0.021\n", + "13 0.041 -0.030 -0.019 -0.021 0.019 -0.056 0.018 0.009 -0.018 -0.011\n", + "14 0.015 0.004 -0.000 -0.023 -0.003 -0.003 0.020 -0.013 0.005 0.010" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "document_topics = pd.DataFrame(np.round(topic_document.T, 3), \n", + " columns=['T'+str(i) for i in range(1, TOTAL_TOPICS+1)])\n", + "document_topics.head(15)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Document #13:\n", + "Dominant Topics (top 3): ['T6', 'T1', 'T2']\n", + "Paper Summary:\n", + "9 \n", + "Stochastic Learning Networks and their Electronic Implementation \n", + "Joshua Alspector*, Robert B. Allen, Victor Hut, and Srinagesh Satyanarayana \n", + "Bell Communications Research, Morristown, NJ 07960 \n", + "ABSTRACT\n", + "We describe a family of learning algorithms that operate on a recurrent, symmetrically \n", + "connected, neuromorphic network that, like the Boltzmann machine, settles in the \n", + "presence of noise. These networks learn by modifying synaptic connection strengths on \n", + "the basis of correlations seen loca\n", + "\n", + "Document #250:\n", + "Dominant Topics (top 3): ['T3', 'T5', 'T8']\n", + "Paper Summary:\n", + "266 Zemel, Mozer and Hinton \n", + "TRAFFIC: Recognizing Objects Using \n", + "Hierarchical Reference Frame Transformations \n", + "Richard S. Zemel \n", + "Computer Science Dept. \n", + "University of Toronto \n", + "Toronto, ONT M5S 1A4 \n", + "Michael C. Mozer \n", + "Computer Science Dept. \n", + "University of Colorado \n", + "Boulder, CO 80309-0430 \n", + "Geoffrey E. Hinton \n", + "Computer Science Dept. \n", + "University of Toronto \n", + "Toronto, ONT M5S 1A4 \n", + "ABSTRACT \n", + "We describe a model that can recognize two-dimensional shapes in \n", + "an unsegmented image, independent of their orie\n", + "\n", + "Document #500:\n", + "Dominant Topics (top 3): ['T9', 'T8', 'T10']\n", + "Paper Summary:\n", + "Constrained Optimization Applied to the \n", + "Parameter Setting Problem for Analog Circuits \n", + "David Kirk, Kurt Fleischer, Lloyd Watts Alan Bart \n", + "Computer Graphics 350-74 \n", + "California Institute of Technology \n", + "Pasadena, CA 91125 \n", + "Abstract \n", + "We use constrained optimization to select operating parameters for two \n", + "circuits: a simple 3-transistor square root circuit, and an analog VLSI \n", + "artificial cochlea. This automated method uses computer controlled mea- \n", + "surement and test equipment to choose chip paramet\n", + "\n" + ] + } + ], + "source": [ + "document_numbers = [13, 250, 500]\n", + "\n", + "for document_number in document_numbers:\n", + " top_topics = list(document_topics.columns[np.argsort(-np.absolute(document_topics.iloc[document_number].values))[:3]])\n", + " print('Document #'+str(document_number)+':')\n", + " print('Dominant Topics (top 3):', top_topics)\n", + " print('Paper Summary:')\n", + " print(papers[document_number][:500])\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Implementing LSI Topic Models from Scratch" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(7756, 1740)\n" + ] + }, + { + "data": { + "text/plain": [ + "array([[1., 0., 1., ..., 0., 2., 1.],\n", + " [1., 0., 1., ..., 1., 1., 0.],\n", + " [1., 0., 0., ..., 0., 0., 0.],\n", + " ...,\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.],\n", + " [0., 0., 0., ..., 0., 0., 0.]], dtype=float32)" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "td_matrix = gensim.matutils.corpus2dense(corpus=bow_corpus, num_terms=len(dictionary))\n", + "print(td_matrix.shape)\n", + "td_matrix" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total vocabulary size: 7756\n" + ] + }, + { + "data": { + "text/plain": [ + "array(['able', 'abstract', 'accommodate', ..., 'support_vector',\n", + " 'mozer_jordan', 'kearns_solla'], dtype='\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
T1T2T3T4T5T6T7T8T9T10
0-0.0050.0000.0720.0300.0180.010-0.0770.009-0.002-0.038
1-0.0070.0010.0170.0130.016-0.0110.008-0.022-0.000-0.022
20.0140.008-0.009-0.008-0.0000.0030.003-0.0040.028-0.021
3-0.016-0.0030.011-0.002-0.0440.0230.0030.0110.048-0.024
4-0.036-0.0610.050-0.006-0.0580.0030.013-0.0130.020-0.032
5-0.020-0.0400.137-0.087-0.3070.019-0.022-0.0030.183-0.085
60.012-0.0020.014-0.0120.042-0.0170.003-0.0190.034-0.020
70.013-0.003-0.005-0.0040.001-0.008-0.0180.007-0.006-0.012
80.0110.0110.019-0.020-0.009-0.0180.003-0.0170.071-0.033
9-0.006-0.005-0.0060.0360.0080.0160.0410.027-0.007-0.027
10-0.0230.0150.0600.0090.031-0.029-0.033-0.0120.011-0.046
11-0.021-0.046-0.0210.0280.0040.0160.0310.0060.003-0.023
12-0.021-0.0560.024-0.0020.059-0.023-0.002-0.0170.034-0.034
130.011-0.018-0.0090.0180.056-0.019-0.021-0.0190.030-0.041
14-0.0100.0050.0130.0200.0030.003-0.023-0.000-0.004-0.015
\n", + "" + ], + "text/plain": [ + " T1 T2 T3 T4 T5 T6 T7 T8 T9 T10\n", + "0 -0.005 0.000 0.072 0.030 0.018 0.010 -0.077 0.009 -0.002 -0.038\n", + "1 -0.007 0.001 0.017 0.013 0.016 -0.011 0.008 -0.022 -0.000 -0.022\n", + "2 0.014 0.008 -0.009 -0.008 -0.000 0.003 0.003 -0.004 0.028 -0.021\n", + "3 -0.016 -0.003 0.011 -0.002 -0.044 0.023 0.003 0.011 0.048 -0.024\n", + "4 -0.036 -0.061 0.050 -0.006 -0.058 0.003 0.013 -0.013 0.020 -0.032\n", + "5 -0.020 -0.040 0.137 -0.087 -0.307 0.019 -0.022 -0.003 0.183 -0.085\n", + "6 0.012 -0.002 0.014 -0.012 0.042 -0.017 0.003 -0.019 0.034 -0.020\n", + "7 0.013 -0.003 -0.005 -0.004 0.001 -0.008 -0.018 0.007 -0.006 -0.012\n", + "8 0.011 0.011 0.019 -0.020 -0.009 -0.018 0.003 -0.017 0.071 -0.033\n", + "9 -0.006 -0.005 -0.006 0.036 0.008 0.016 0.041 0.027 -0.007 -0.027\n", + "10 -0.023 0.015 0.060 0.009 0.031 -0.029 -0.033 -0.012 0.011 -0.046\n", + "11 -0.021 -0.046 -0.021 0.028 0.004 0.016 0.031 0.006 0.003 -0.023\n", + "12 -0.021 -0.056 0.024 -0.002 0.059 -0.023 -0.002 -0.017 0.034 -0.034\n", + "13 0.011 -0.018 -0.009 0.018 0.056 -0.019 -0.021 -0.019 0.030 -0.041\n", + "14 -0.010 0.005 0.013 0.020 0.003 0.003 -0.023 -0.000 -0.004 -0.015" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "document_topics = pd.DataFrame(np.round(topic_document.T, 3), \n", + " columns=['T'+str(i) for i in range(1, TOTAL_TOPICS+1)])\n", + "document_topics.head(15)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Document #13:\n", + "Dominant Topics (top 3): ['T5', 'T10', 'T9']\n", + "Paper Summary:\n", + "9 \n", + "Stochastic Learning Networks and their Electronic Implementation \n", + "Joshua Alspector*, Robert B. Allen, Victor Hut, and Srinagesh Satyanarayana \n", + "Bell Communications Research, Morristown, NJ 07960 \n", + "ABSTRACT\n", + "We describe a family of learning algorithms that operate on a recurrent, symmetrically \n", + "connected, neuromorphic network that, like the Boltzmann machine, settles in the \n", + "presence of noise. These networks learn by modifying synaptic connection strengths on \n", + "the basis of correlations seen loca\n", + "\n", + "Document #250:\n", + "Dominant Topics (top 3): ['T6', 'T8', 'T3']\n", + "Paper Summary:\n", + "266 Zemel, Mozer and Hinton \n", + "TRAFFIC: Recognizing Objects Using \n", + "Hierarchical Reference Frame Transformations \n", + "Richard S. Zemel \n", + "Computer Science Dept. \n", + "University of Toronto \n", + "Toronto, ONT M5S 1A4 \n", + "Michael C. Mozer \n", + "Computer Science Dept. \n", + "University of Colorado \n", + "Boulder, CO 80309-0430 \n", + "Geoffrey E. Hinton \n", + "Computer Science Dept. \n", + "University of Toronto \n", + "Toronto, ONT M5S 1A4 \n", + "ABSTRACT \n", + "We describe a model that can recognize two-dimensional shapes in \n", + "an unsegmented image, independent of their orie\n", + "\n", + "Document #500:\n", + "Dominant Topics (top 3): ['T2', 'T3', 'T1']\n", + "Paper Summary:\n", + "Constrained Optimization Applied to the \n", + "Parameter Setting Problem for Analog Circuits \n", + "David Kirk, Kurt Fleischer, Lloyd Watts Alan Bart \n", + "Computer Graphics 350-74 \n", + "California Institute of Technology \n", + "Pasadena, CA 91125 \n", + "Abstract \n", + "We use constrained optimization to select operating parameters for two \n", + "circuits: a simple 3-transistor square root circuit, and an analog VLSI \n", + "artificial cochlea. This automated method uses computer controlled mea- \n", + "surement and test equipment to choose chip paramet\n", + "\n" + ] + } + ], + "source": [ + "document_numbers = [13, 250, 500]\n", + "\n", + "for document_number in document_numbers:\n", + " top_topics = list(document_topics.columns[np.argsort(-np.absolute(document_topics.iloc[document_number].values))[:3]])\n", + " print('Document #'+str(document_number)+':')\n", + " print('Dominant Topics (top 3):', top_topics)\n", + " print('Paper Summary:')\n", + " print(papers[document_number][:500])\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Topic Models with Latent Dirichlet Allocation (LDA)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 5min 32s, sys: 10.7 s, total: 5min 43s\n", + "Wall time: 2min 31s\n" + ] + } + ], + "source": [ + "%%time\n", + "lda_model = gensim.models.LdaModel(corpus=bow_corpus, id2word=dictionary, chunksize=1740, \n", + " alpha='auto', eta='auto', random_state=42,\n", + " iterations=500, num_topics=TOTAL_TOPICS, \n", + " passes=20, eval_every=None)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "0.016*\"training\" + 0.012*\"classifier\" + 0.007*\"pattern\" + 0.007*\"classification\" + 0.006*\"class\" + 0.006*\"task\" + 0.006*\"vector\" + 0.005*\"training_set\" + 0.005*\"feature\" + 0.004*\"control\" + 0.004*\"size\" + 0.003*\"trained\" + 0.003*\"teacher\" + 0.003*\"rate\" + 0.003*\"student\" + 0.003*\"average\" + 0.003*\"robot\" + 0.003*\"random\" + 0.003*\"rule\" + 0.003*\"search\"\n", + "\n", + "Topic #2:\n", + "0.008*\"vector\" + 0.006*\"equation\" + 0.006*\"matrix\" + 0.006*\"neuron\" + 0.005*\"state\" + 0.005*\"dynamic\" + 0.005*\"solution\" + 0.005*\"unit\" + 0.004*\"node\" + 0.004*\"pattern\" + 0.004*\"linear\" + 0.004*\"let\" + 0.003*\"layer\" + 0.003*\"convergence\" + 0.003*\"rule\" + 0.003*\"size\" + 0.003*\"theorem\" + 0.003*\"threshold\" + 0.003*\"memory\" + 0.003*\"theory\"\n", + "\n", + "Topic #3:\n", + "0.017*\"training\" + 0.011*\"word\" + 0.008*\"recognition\" + 0.007*\"trained\" + 0.006*\"net\" + 0.006*\"unit\" + 0.006*\"feature\" + 0.006*\"speech\" + 0.006*\"task\" + 0.005*\"architecture\" + 0.005*\"class\" + 0.005*\"character\" + 0.004*\"layer\" + 0.004*\"classification\" + 0.004*\"context\" + 0.004*\"test\" + 0.004*\"sequence\" + 0.004*\"hidden_unit\" + 0.004*\"experiment\" + 0.004*\"vector\"\n", + "\n", + "Topic #4:\n", + "0.017*\"motion\" + 0.009*\"rule\" + 0.008*\"direction\" + 0.007*\"stimulus\" + 0.006*\"velocity\" + 0.006*\"task\" + 0.006*\"human\" + 0.006*\"unit\" + 0.005*\"location\" + 0.005*\"target\" + 0.005*\"subject\" + 0.005*\"memory\" + 0.005*\"prediction\" + 0.005*\"position\" + 0.004*\"concept\" + 0.004*\"field\" + 0.004*\"response\" + 0.004*\"cue\" + 0.004*\"layer\" + 0.004*\"hand\"\n", + "\n", + "Topic #5:\n", + "0.008*\"distribution\" + 0.005*\"estimate\" + 0.005*\"sample\" + 0.005*\"training\" + 0.005*\"class\" + 0.005*\"probability\" + 0.005*\"approximation\" + 0.004*\"variable\" + 0.004*\"gaussian\" + 0.004*\"linear\" + 0.004*\"vector\" + 0.004*\"prior\" + 0.004*\"noise\" + 0.004*\"density\" + 0.004*\"prediction\" + 0.003*\"kernel\" + 0.003*\"variance\" + 0.003*\"mixture\" + 0.003*\"bound\" + 0.003*\"regression\"\n", + "\n", + "Topic #6:\n", + "0.037*\"state\" + 0.011*\"action\" + 0.008*\"step\" + 0.008*\"control\" + 0.007*\"policy\" + 0.006*\"sequence\" + 0.006*\"reinforcement_learning\" + 0.005*\"probability\" + 0.005*\"optimal\" + 0.004*\"task\" + 0.004*\"transition\" + 0.004*\"environment\" + 0.003*\"variable\" + 0.003*\"reward\" + 0.003*\"stochastic\" + 0.003*\"goal\" + 0.003*\"machine\" + 0.003*\"current\" + 0.003*\"controller\" + 0.003*\"agent\"\n", + "\n", + "Topic #7:\n", + "0.012*\"circuit\" + 0.011*\"signal\" + 0.011*\"chip\" + 0.009*\"neuron\" + 0.008*\"current\" + 0.007*\"voltage\" + 0.006*\"analog\" + 0.006*\"control\" + 0.005*\"channel\" + 0.004*\"noise\" + 0.004*\"neural\" + 0.004*\"bit\" + 0.004*\"implementation\" + 0.004*\"source\" + 0.003*\"design\" + 0.003*\"gain\" + 0.003*\"processor\" + 0.003*\"synapse\" + 0.003*\"device\" + 0.003*\"array\"\n", + "\n", + "Topic #8:\n", + "0.021*\"neuron\" + 0.019*\"cell\" + 0.009*\"response\" + 0.007*\"activity\" + 0.007*\"stimulus\" + 0.007*\"pattern\" + 0.006*\"spike\" + 0.005*\"synaptic\" + 0.004*\"cortical\" + 0.004*\"neural\" + 0.004*\"signal\" + 0.004*\"firing\" + 0.004*\"connection\" + 0.004*\"effect\" + 0.004*\"layer\" + 0.004*\"et_al\" + 0.004*\"cortex\" + 0.003*\"visual\" + 0.003*\"simulation\" + 0.003*\"synapsis\"\n", + "\n", + "Topic #9:\n", + "0.032*\"image\" + 0.012*\"object\" + 0.012*\"feature\" + 0.006*\"pixel\" + 0.006*\"visual\" + 0.005*\"representation\" + 0.005*\"face\" + 0.005*\"vector\" + 0.004*\"view\" + 0.004*\"recognition\" + 0.004*\"transformation\" + 0.004*\"local\" + 0.003*\"map\" + 0.003*\"structure\" + 0.003*\"region\" + 0.003*\"filter\" + 0.003*\"position\" + 0.003*\"distance\" + 0.003*\"part\" + 0.003*\"location\"\n", + "\n", + "Topic #10:\n", + "0.030*\"unit\" + 0.009*\"pattern\" + 0.007*\"representation\" + 0.007*\"activation\" + 0.006*\"hidden_unit\" + 0.006*\"node\" + 0.006*\"structure\" + 0.006*\"layer\" + 0.005*\"activity\" + 0.004*\"connection\" + 0.004*\"task\" + 0.004*\"component\" + 0.004*\"map\" + 0.004*\"rule\" + 0.004*\"architecture\" + 0.004*\"signal\" + 0.004*\"level\" + 0.003*\"response\" + 0.003*\"connectionist\" + 0.003*\"training\"\n", + "\n" + ] + } + ], + "source": [ + "for topic_id, topic in lda_model.print_topics(num_topics=10, num_words=20):\n", + " print('Topic #'+str(topic_id+1)+':')\n", + " print(topic)\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Avg. Coherence Score: -1.0433305600965899\n" + ] + } + ], + "source": [ + "topics_coherences = lda_model.top_topics(bow_corpus, topn=20)\n", + "avg_coherence_score = np.mean([item[1] for item in topics_coherences])\n", + "print('Avg. Coherence Score:', avg_coherence_score)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LDA Topics with Weights\n", + "==================================================\n", + "Topic #1:\n", + "[('training', 0.017), ('word', 0.011), ('recognition', 0.008), ('trained', 0.007), ('net', 0.006), ('unit', 0.006), ('feature', 0.006), ('speech', 0.006), ('task', 0.006), ('architecture', 0.005), ('class', 0.005), ('character', 0.005), ('layer', 0.004), ('classification', 0.004), ('context', 0.004), ('test', 0.004), ('sequence', 0.004), ('hidden_unit', 0.004), ('experiment', 0.004), ('vector', 0.004)]\n", + "\n", + "Topic #2:\n", + "[('unit', 0.03), ('pattern', 0.009), ('representation', 0.007), ('activation', 0.007), ('hidden_unit', 0.006), ('node', 0.006), ('structure', 0.006), ('layer', 0.006), ('activity', 0.005), ('connection', 0.004), ('task', 0.004), ('component', 0.004), ('map', 0.004), ('rule', 0.004), ('architecture', 0.004), ('signal', 0.004), ('level', 0.004), ('response', 0.003), ('connectionist', 0.003), ('training', 0.003)]\n", + "\n", + "Topic #3:\n", + "[('neuron', 0.021), ('cell', 0.019), ('response', 0.009), ('activity', 0.007), ('stimulus', 0.007), ('pattern', 0.007), ('spike', 0.006), ('synaptic', 0.005), ('cortical', 0.004), ('neural', 0.004), ('signal', 0.004), ('firing', 0.004), ('connection', 0.004), ('effect', 0.004), ('layer', 0.004), ('et_al', 0.004), ('cortex', 0.004), ('visual', 0.003), ('simulation', 0.003), ('synapsis', 0.003)]\n", + "\n", + "Topic #4:\n", + "[('image', 0.032), ('object', 0.012), ('feature', 0.012), ('pixel', 0.006), ('visual', 0.006), ('representation', 0.005), ('face', 0.005), ('vector', 0.005), ('view', 0.004), ('recognition', 0.004), ('transformation', 0.004), ('local', 0.004), ('map', 0.003), ('structure', 0.003), ('region', 0.003), ('filter', 0.003), ('position', 0.003), ('distance', 0.003), ('part', 0.003), ('location', 0.003)]\n", + "\n", + "Topic #5:\n", + "[('vector', 0.008), ('equation', 0.006), ('matrix', 0.006), ('neuron', 0.006), ('state', 0.005), ('dynamic', 0.005), ('solution', 0.005), ('unit', 0.005), ('node', 0.004), ('pattern', 0.004), ('linear', 0.004), ('let', 0.004), ('layer', 0.003), ('convergence', 0.003), ('rule', 0.003), ('size', 0.003), ('theorem', 0.003), ('threshold', 0.003), ('memory', 0.003), ('theory', 0.003)]\n", + "\n", + "Topic #6:\n", + "[('distribution', 0.008), ('estimate', 0.005), ('sample', 0.005), ('training', 0.005), ('class', 0.005), ('probability', 0.005), ('approximation', 0.005), ('variable', 0.004), ('gaussian', 0.004), ('linear', 0.004), ('vector', 0.004), ('prior', 0.004), ('noise', 0.004), ('density', 0.004), ('prediction', 0.004), ('kernel', 0.003), ('variance', 0.003), ('mixture', 0.003), ('bound', 0.003), ('regression', 0.003)]\n", + "\n", + "Topic #7:\n", + "[('training', 0.016), ('classifier', 0.012), ('pattern', 0.007), ('classification', 0.007), ('class', 0.006), ('task', 0.006), ('vector', 0.006), ('training_set', 0.005), ('feature', 0.005), ('control', 0.004), ('size', 0.004), ('trained', 0.003), ('teacher', 0.003), ('rate', 0.003), ('student', 0.003), ('average', 0.003), ('robot', 0.003), ('random', 0.003), ('rule', 0.003), ('search', 0.003)]\n", + "\n", + "Topic #8:\n", + "[('state', 0.037), ('action', 0.011), ('step', 0.008), ('control', 0.008), ('policy', 0.007), ('sequence', 0.006), ('reinforcement_learning', 0.006), ('probability', 0.005), ('optimal', 0.005), ('task', 0.004), ('transition', 0.004), ('environment', 0.004), ('variable', 0.003), ('reward', 0.003), ('stochastic', 0.003), ('goal', 0.003), ('machine', 0.003), ('current', 0.003), ('controller', 0.003), ('agent', 0.003)]\n", + "\n", + "Topic #9:\n", + "[('motion', 0.017), ('rule', 0.009), ('direction', 0.008), ('stimulus', 0.007), ('velocity', 0.006), ('task', 0.006), ('human', 0.006), ('unit', 0.006), ('location', 0.005), ('target', 0.005), ('subject', 0.005), ('memory', 0.005), ('prediction', 0.005), ('position', 0.005), ('concept', 0.004), ('field', 0.004), ('response', 0.004), ('cue', 0.004), ('layer', 0.004), ('hand', 0.004)]\n", + "\n", + "Topic #10:\n", + "[('circuit', 0.012), ('signal', 0.011), ('chip', 0.011), ('neuron', 0.009), ('current', 0.008), ('voltage', 0.007), ('analog', 0.006), ('control', 0.006), ('channel', 0.005), ('noise', 0.004), ('neural', 0.004), ('bit', 0.004), ('implementation', 0.004), ('source', 0.004), ('design', 0.003), ('gain', 0.003), ('processor', 0.003), ('synapse', 0.003), ('device', 0.003), ('array', 0.003)]\n", + "\n" + ] + } + ], + "source": [ + "topics_with_wts = [item[0] for item in topics_coherences]\n", + "print('LDA Topics with Weights')\n", + "print('='*50)\n", + "for idx, topic in enumerate(topics_with_wts):\n", + " print('Topic #'+str(idx+1)+':')\n", + " print([(term, round(wt, 3)) for wt, term in topic])\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "LDA Topics without Weights\n", + "==================================================\n", + "Topic #1:\n", + "['training', 'word', 'recognition', 'trained', 'net', 'unit', 'feature', 'speech', 'task', 'architecture', 'class', 'character', 'layer', 'classification', 'context', 'test', 'sequence', 'hidden_unit', 'experiment', 'vector']\n", + "\n", + "Topic #2:\n", + "['unit', 'pattern', 'representation', 'activation', 'hidden_unit', 'node', 'structure', 'layer', 'activity', 'connection', 'task', 'component', 'map', 'rule', 'architecture', 'signal', 'level', 'response', 'connectionist', 'training']\n", + "\n", + "Topic #3:\n", + "['neuron', 'cell', 'response', 'activity', 'stimulus', 'pattern', 'spike', 'synaptic', 'cortical', 'neural', 'signal', 'firing', 'connection', 'effect', 'layer', 'et_al', 'cortex', 'visual', 'simulation', 'synapsis']\n", + "\n", + "Topic #4:\n", + "['image', 'object', 'feature', 'pixel', 'visual', 'representation', 'face', 'vector', 'view', 'recognition', 'transformation', 'local', 'map', 'structure', 'region', 'filter', 'position', 'distance', 'part', 'location']\n", + "\n", + "Topic #5:\n", + "['vector', 'equation', 'matrix', 'neuron', 'state', 'dynamic', 'solution', 'unit', 'node', 'pattern', 'linear', 'let', 'layer', 'convergence', 'rule', 'size', 'theorem', 'threshold', 'memory', 'theory']\n", + "\n", + "Topic #6:\n", + "['distribution', 'estimate', 'sample', 'training', 'class', 'probability', 'approximation', 'variable', 'gaussian', 'linear', 'vector', 'prior', 'noise', 'density', 'prediction', 'kernel', 'variance', 'mixture', 'bound', 'regression']\n", + "\n", + "Topic #7:\n", + "['training', 'classifier', 'pattern', 'classification', 'class', 'task', 'vector', 'training_set', 'feature', 'control', 'size', 'trained', 'teacher', 'rate', 'student', 'average', 'robot', 'random', 'rule', 'search']\n", + "\n", + "Topic #8:\n", + "['state', 'action', 'step', 'control', 'policy', 'sequence', 'reinforcement_learning', 'probability', 'optimal', 'task', 'transition', 'environment', 'variable', 'reward', 'stochastic', 'goal', 'machine', 'current', 'controller', 'agent']\n", + "\n", + "Topic #9:\n", + "['motion', 'rule', 'direction', 'stimulus', 'velocity', 'task', 'human', 'unit', 'location', 'target', 'subject', 'memory', 'prediction', 'position', 'concept', 'field', 'response', 'cue', 'layer', 'hand']\n", + "\n", + "Topic #10:\n", + "['circuit', 'signal', 'chip', 'neuron', 'current', 'voltage', 'analog', 'control', 'channel', 'noise', 'neural', 'bit', 'implementation', 'source', 'design', 'gain', 'processor', 'synapse', 'device', 'array']\n", + "\n" + ] + } + ], + "source": [ + "print('LDA Topics without Weights')\n", + "print('='*50)\n", + "for idx, topic in enumerate(topics_with_wts):\n", + " print('Topic #'+str(idx+1)+':')\n", + " print([term for wt, term in topic])\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Avg. Coherence Score (Cv): 0.47028476052247825\n", + "Avg. Coherence Score (UMass): -1.0433305600965896\n", + "Model Perplexity: -7.792233498252204\n" + ] + } + ], + "source": [ + "cv_coherence_model_lda = gensim.models.CoherenceModel(model=lda_model, corpus=bow_corpus, \n", + " texts=norm_corpus_bigrams,\n", + " dictionary=dictionary, \n", + " coherence='c_v')\n", + "avg_coherence_cv = cv_coherence_model_lda.get_coherence()\n", + "\n", + "umass_coherence_model_lda = gensim.models.CoherenceModel(model=lda_model, corpus=bow_corpus, \n", + " texts=norm_corpus_bigrams,\n", + " dictionary=dictionary, \n", + " coherence='u_mass')\n", + "avg_coherence_umass = umass_coherence_model_lda.get_coherence()\n", + "\n", + "perplexity = lda_model.log_perplexity(bow_corpus)\n", + "\n", + "print('Avg. Coherence Score (Cv):', avg_coherence_cv)\n", + "print('Avg. Coherence Score (UMass):', avg_coherence_umass)\n", + "print('Model Perplexity:', perplexity)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# LDA Models with MALLET" + ] + }, + { + "cell_type": "code", + "execution_count": 267, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "--2018-11-08 20:06:13-- http://mallet.cs.umass.edu/dist/mallet-2.0.8.zip\n", + "Resolving mallet.cs.umass.edu (mallet.cs.umass.edu)... 128.119.246.70\n", + "Connecting to mallet.cs.umass.edu (mallet.cs.umass.edu)|128.119.246.70|:80... connected.\n", + "HTTP request sent, awaiting response... 200 OK\n", + "Length: 16184794 (15M) [application/zip]\n", + "Saving to: ‘mallet-2.0.8.zip’\n", + "\n", + "mallet-2.0.8.zip 100%[===================>] 15.43M 1.35MB/s in 12s \n", + "\n", + "2018-11-08 20:06:25 (1.28 MB/s) - ‘mallet-2.0.8.zip’ saved [16184794/16184794]\n", + "\n" + ] + } + ], + "source": [ + "!wget http://mallet.cs.umass.edu/dist/mallet-2.0.8.zip" + ] + }, + { + "cell_type": "code", + "execution_count": 271, + "metadata": {}, + "outputs": [], + "source": [ + "!unzip -q mallet-2.0.8.zip" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "MALLET_PATH = 'mallet-2.0.8/bin/mallet'\n", + "lda_mallet = gensim.models.wrappers.LdaMallet(mallet_path=MALLET_PATH, corpus=bow_corpus, \n", + " num_topics=TOTAL_TOPICS, id2word=dictionary,\n", + " iterations=500, workers=16)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "['neuron', 'cell', 'response', 'stimulus', 'activity', 'pattern', 'signal', 'spike', 'effect', 'synaptic', 'frequency', 'neural', 'unit', 'connection', 'layer', 'cortical', 'firing', 'et_al', 'brain', 'temporal']\n", + "\n", + "Topic #2:\n", + "['prediction', 'control', 'trajectory', 'target', 'task', 'expert', 'training', 'nonlinear', 'dynamic', 'linear', 'local', 'change', 'adaptive', 'mapping', 'hand', 'movement', 'controller', 'position', 'motor', 'architecture']\n", + "\n", + "Topic #3:\n", + "['vector', 'equation', 'linear', 'bound', 'solution', 'theory', 'matrix', 'convergence', 'theorem', 'defined', 'size', 'constant', 'optimal', 'class', 'eq', 'property', 'approximation', 'condition', 'rate', 'probability']\n", + "\n", + "Topic #4:\n", + "['state', 'action', 'step', 'policy', 'environment', 'recurrent', 'transition', 'optimal', 'task', 'reinforcement_learning', 'control', 'path', 'goal', 'stochastic', 'sequence', 'current', 'cost', 'iteration', 'machine', 'update']\n", + "\n", + "Topic #5:\n", + "['image', 'object', 'feature', 'motion', 'visual', 'map', 'direction', 'location', 'pixel', 'field', 'region', 'position', 'filter', 'local', 'view', 'representation', 'face', 'distance', 'surface', 'edge']\n", + "\n", + "Topic #6:\n", + "['distribution', 'estimate', 'gaussian', 'variable', 'probability', 'prior', 'sample', 'approximation', 'variance', 'mixture', 'density', 'noise', 'kernel', 'component', 'estimation', 'bayesian', 'vector', 'matrix', 'log', 'linear']\n", + "\n", + "Topic #7:\n", + "['rule', 'node', 'unit', 'structure', 'representation', 'tree', 'level', 'pattern', 'graph', 'cluster', 'activation', 'sequence', 'connectionist', 'symbol', 'similarity', 'instance', 'represented', 'string', 'memory', 'clustering']\n", + "\n", + "Topic #8:\n", + "['neuron', 'circuit', 'chip', 'current', 'memory', 'signal', 'analog', 'bit', 'voltage', 'neural', 'code', 'implementation', 'noise', 'connection', 'parallel', 'attractor', 'design', 'element', 'operation', 'processor']\n", + "\n", + "Topic #9:\n", + "['training', 'unit', 'pattern', 'hidden_unit', 'layer', 'net', 'classifier', 'class', 'training_set', 'classification', 'trained', 'test', 'task', 'back_propagation', 'hidden_layer', 'table', 'generalization', 'feature', 'size', 'architecture']\n", + "\n", + "Topic #10:\n", + "['word', 'recognition', 'speech', 'sequence', 'feature', 'context', 'training', 'character', 'hmm', 'module', 'signal', 'letter', 'frame', 'trained', 'experiment', 'classification', 'architecture', 'speaker', 'window', 'class']\n", + "\n" + ] + } + ], + "source": [ + "topics = [[(term, round(wt, 3)) \n", + " for term, wt in lda_mallet.show_topic(n, topn=20)] \n", + " for n in range(0, TOTAL_TOPICS)]\n", + "\n", + "for idx, topic in enumerate(topics):\n", + " print('Topic #'+str(idx+1)+':')\n", + " print([term for term, wt in topic])\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Avg. Coherence Score (Cv): 0.5008326905758488\n", + "Avg. Coherence Score (UMass): -1.0635635291342118\n", + "Model Perplexity: -8.53533\n" + ] + } + ], + "source": [ + "cv_coherence_model_lda_mallet = gensim.models.CoherenceModel(model=lda_mallet, corpus=bow_corpus, \n", + " texts=norm_corpus_bigrams,\n", + " dictionary=dictionary, \n", + " coherence='c_v')\n", + "avg_coherence_cv = cv_coherence_model_lda_mallet.get_coherence()\n", + "\n", + "umass_coherence_model_lda_mallet = gensim.models.CoherenceModel(model=lda_mallet, corpus=bow_corpus, \n", + " texts=norm_corpus_bigrams,\n", + " dictionary=dictionary, \n", + " coherence='u_mass')\n", + "avg_coherence_umass = umass_coherence_model_lda_mallet.get_coherence()\n", + "\n", + "# from STDOUT: <500> LL/token: -8.53533\n", + "perplexity = -8.53533\n", + "print('Avg. Coherence Score (Cv):', avg_coherence_cv)\n", + "print('Avg. Coherence Score (UMass):', avg_coherence_umass)\n", + "print('Model Perplexity:', perplexity)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# LDA Tuning - Finding Optimal Number of Topics" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "from tqdm import tqdm\n", + "\n", + "def topic_model_coherence_generator(corpus, texts, dictionary, \n", + " start_topic_count=2, end_topic_count=10, step=1,\n", + " cpus=1):\n", + " \n", + " models = []\n", + " coherence_scores = []\n", + " for topic_nums in tqdm(range(start_topic_count, end_topic_count+1, step)):\n", + " mallet_lda_model = gensim.models.wrappers.LdaMallet(mallet_path=MALLET_PATH, corpus=corpus,\n", + " num_topics=topic_nums, id2word=dictionary,\n", + " iterations=500, workers=cpus)\n", + " cv_coherence_model_mallet_lda = gensim.models.CoherenceModel(model=mallet_lda_model, corpus=corpus, \n", + " texts=texts, dictionary=dictionary, \n", + " coherence='c_v')\n", + " coherence_score = cv_coherence_model_mallet_lda.get_coherence()\n", + " coherence_scores.append(coherence_score)\n", + " models.append(mallet_lda_model)\n", + " \n", + " return models, coherence_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|██████████| 29/29 [37:48<00:00, 92.53s/it]\n" + ] + } + ], + "source": [ + "lda_models, coherence_scores = topic_model_coherence_generator(corpus=bow_corpus, texts=norm_corpus_bigrams,\n", + " dictionary=dictionary, start_topic_count=2,\n", + " end_topic_count=30, step=1, cpus=16)" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Number of TopicsCoherence Score
24260.5461
23250.5427
17190.5419
16180.5412
22240.5405
18200.5401
21230.5375
20220.5369
19210.5369
27290.5363
\n", + "
" + ], + "text/plain": [ + " Number of Topics Coherence Score\n", + "24 26 0.5461\n", + "23 25 0.5427\n", + "17 19 0.5419\n", + "16 18 0.5412\n", + "22 24 0.5405\n", + "18 20 0.5401\n", + "21 23 0.5375\n", + "20 22 0.5369\n", + "19 21 0.5369\n", + "27 29 0.5363" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "coherence_df = pd.DataFrame({'Number of Topics': range(2, 31, 1),\n", + " 'Coherence Score': np.round(coherence_scores, 4)})\n", + "coherence_df.sort_values(by=['Coherence Score'], ascending=False).head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "plt.style.use('fivethirtyeight')\n", + "%matplotlib inline\n", + "\n", + "x_ax = range(2, 31, 1)\n", + "y_ax = coherence_scores\n", + "plt.figure(figsize=(12, 6))\n", + "plt.plot(x_ax, y_ax, c='r')\n", + "plt.axhline(y=0.535, c='k', linestyle='--', linewidth=2)\n", + "plt.rcParams['figure.facecolor'] = 'white'\n", + "xl = plt.xlabel('Number of Topics')\n", + "yl = plt.ylabel('Coherence Score')" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "20" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "best_model_idx = coherence_df[coherence_df['Number of Topics'] == 20].index[0]\n", + "best_lda_model = lda_models[best_model_idx]\n", + "best_lda_model.num_topics" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "['class', 'classification', 'classifier', 'training', 'pattern', 'feature', 'kernel', 'machine', 'training_set', 'test', 'sample', 'vector', 'database', 'error_rate', 'margin', 'experiment', 'support_vector', 'nearest_neighbor', 'decision', 'size']\n", + "\n", + "Topic #2:\n", + "['neuron', 'memory', 'pattern', 'dynamic', 'connection', 'phase', 'attractor', 'capacity', 'state', 'hopfield', 'neural', 'fixed_point', 'oscillator', 'delay', 'stable', 'fig', 'oscillation', 'associative_memory', 'behavior', 'stored']\n", + "\n", + "Topic #3:\n", + "['word', 'recognition', 'training', 'speech', 'character', 'context', 'hmm', 'letter', 'mlp', 'speaker', 'feature', 'frame', 'trained', 'speech_recognition', 'phoneme', 'experiment', 'hybrid', 'segmentation', 'vowel', 'level']\n", + "\n", + "Topic #4:\n", + "['noise', 'rate', 'equation', 'curve', 'average', 'correlation', 'rule', 'distribution', 'theory', 'limit', 'solution', 'optimal', 'eq', 'teacher', 'effect', 'size', 'temperature', 'student', 'line', 'random']\n", + "\n", + "Topic #5:\n", + "['bound', 'theorem', 'class', 'probability', 'size', 'threshold', 'proof', 'polynomial', 'theory', 'complexity', 'loss', 'approximation', 'linear', 'assume', 'definition', 'defined', 'hypothesis', 'constant', 'define', 'bounded']\n", + "\n", + "Topic #6:\n", + "['vector', 'matrix', 'linear', 'equation', 'solution', 'gradient', 'constraint', 'convergence', 'optimization', 'nonlinear', 'optimal', 'eq', 'minimum', 'operator', 'gradient_descent', 'condition', 'constant', 'derivative', 'quadratic', 'energy']\n", + "\n", + "Topic #7:\n", + "['search', 'task', 'experiment', 'table', 'instance', 'test', 'domain', 'target', 'query', 'feature', 'user', 'random', 'technique', 'run', 'accuracy', 'block', 'application', 'evaluation', 'strategy', 'important']\n", + "\n", + "Topic #8:\n", + "['distribution', 'probability', 'prior', 'gaussian', 'variable', 'mixture', 'density', 'bayesian', 'estimate', 'approximation', 'log', 'likelihood', 'sample', 'component', 'expert', 'em', 'posterior', 'probabilistic', 'estimation', 'entropy']\n", + "\n", + "Topic #9:\n", + "['visual', 'motion', 'cell', 'response', 'stimulus', 'direction', 'receptive_field', 'map', 'spatial', 'orientation', 'unit', 'eye', 'field', 'activity', 'location', 'velocity', 'center', 'contrast', 'cortical', 'pattern']\n", + "\n", + "Topic #10:\n", + "['neuron', 'cell', 'spike', 'synaptic', 'activity', 'response', 'stimulus', 'firing', 'synapsis', 'et_al', 'effect', 'neural', 'neuronal', 'current', 'pattern', 'inhibitory', 'connection', 'brain', 'simulation', 'firing_rate']\n", + "\n", + "Topic #11:\n", + "['state', 'sequence', 'step', 'recurrent', 'transition', 'stochastic', 'iteration', 'update', 'dynamic', 'probability', 'convergence', 'trajectory', 'xt', 'length', 'observation', 'continuous', 'rate', 'machine', 'current', 'string']\n", + "\n", + "Topic #12:\n", + "['node', 'tree', 'structure', 'graph', 'code', 'level', 'bit', 'path', 'local', 'size', 'variable', 'stage', 'length', 'solution', 'edge', 'link', 'component', 'match', 'binary', 'coding']\n", + "\n", + "Topic #13:\n", + "['image', 'object', 'feature', 'pixel', 'face', 'view', 'recognition', 'representation', 'shape', 'scale', 'part', 'visual', 'region', 'position', 'scene', 'surface', 'vision', 'frame', 'texture', 'location']\n", + "\n", + "Topic #14:\n", + "['control', 'action', 'state', 'policy', 'environment', 'controller', 'reinforcement_learning', 'task', 'optimal', 'robot', 'goal', 'step', 'reward', 'td', 'agent', 'adaptive', 'cost', 'reinforcement', 'trial', 'exploration']\n", + "\n", + "Topic #15:\n", + "['unit', 'layer', 'training', 'hidden_unit', 'net', 'architecture', 'pattern', 'activation', 'trained', 'task', 'back_propagation', 'hidden_layer', 'connection', 'hidden', 'backpropagation', 'learn', 'training_set', 'epoch', 'simulation', 'generalization']\n", + "\n", + "Topic #16:\n", + "['circuit', 'chip', 'current', 'analog', 'voltage', 'implementation', 'processor', 'bit', 'design', 'device', 'computation', 'parallel', 'digital', 'operation', 'array', 'neural', 'synapse', 'element', 'hardware', 'transistor']\n", + "\n", + "Topic #17:\n", + "['rule', 'representation', 'module', 'structure', 'human', 'movement', 'motor', 'target', 'language', 'subject', 'connectionist', 'position', 'task', 'context', 'trajectory', 'hand', 'role', 'symbol', 'learned', 'theory']\n", + "\n", + "Topic #18:\n", + "['vector', 'map', 'distance', 'cluster', 'local', 'dimension', 'clustering', 'mapping', 'dimensional', 'region', 'structure', 'center', 'rbf', 'pca', 'basis_function', 'linear', 'representation', 'global', 'principal_component', 'projection']\n", + "\n", + "Topic #19:\n", + "['signal', 'filter', 'frequency', 'source', 'channel', 'noise', 'component', 'response', 'temporal', 'sound', 'auditory', 'detection', 'phase', 'ica', 'adaptation', 'amplitude', 'subject', 'eeg', 'change', 'correlation']\n", + "\n", + "Topic #20:\n", + "['prediction', 'training', 'estimate', 'regression', 'test', 'noise', 'selection', 'variance', 'training_set', 'sample', 'ensemble', 'estimation', 'average', 'nonlinear', 'linear', 'estimator', 'cross_validation', 'pruning', 'bias', 'risk']\n", + "\n" + ] + } + ], + "source": [ + "topics = [[(term, round(wt, 3)) \n", + " for term, wt in best_lda_model.show_topic(n, topn=20)] \n", + " for n in range(0, best_lda_model.num_topics)]\n", + "\n", + "for idx, topic in enumerate(topics):\n", + " print('Topic #'+str(idx+1)+':')\n", + " print([term for term, wt in topic])\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Topic 1Topic 2Topic 3Topic 4Topic 5Topic 6Topic 7Topic 8Topic 9Topic 10Topic 11Topic 12Topic 13Topic 14Topic 15Topic 16Topic 17Topic 18Topic 19Topic 20
Term1classneuronwordnoiseboundvectorsearchdistributionvisualneuronstatenodeimagecontrolunitcircuitrulevectorsignalprediction
Term2classificationmemoryrecognitionratetheoremmatrixtaskprobabilitymotioncellsequencetreeobjectactionlayerchiprepresentationmapfiltertraining
Term3classifierpatterntrainingequationclasslinearexperimentpriorcellspikestepstructurefeaturestatetrainingcurrentmoduledistancefrequencyestimate
Term4trainingdynamicspeechcurveprobabilityequationtablegaussianresponsesynapticrecurrentgraphpixelpolicyhidden_unitanalogstructureclustersourceregression
Term5patternconnectioncharacteraveragesizesolutioninstancevariablestimulusactivitytransitioncodefaceenvironmentnetvoltagehumanlocalchanneltest
Term6featurephasecontextcorrelationthresholdgradienttestmixturedirectionresponsestochasticlevelviewcontrollerarchitectureimplementationmovementdimensionnoisenoise
Term7kernelattractorhmmruleproofconstraintdomaindensityreceptive_fieldstimulusiterationbitrecognitionreinforcement_learningpatternprocessormotorclusteringcomponentselection
Term8machinecapacityletterdistributionpolynomialconvergencetargetbayesianmapfiringupdatepathrepresentationtaskactivationbittargetmappingresponsevariance
Term9training_setstatemlptheorytheoryoptimizationqueryestimatespatialsynapsisdynamiclocalshapeoptimaltraineddesignlanguagedimensionaltemporaltraining_set
Term10testhopfieldspeakerlimitcomplexitynonlinearfeatureapproximationorientationet_alprobabilitysizescalerobottaskdevicesubjectregionsoundsample
Term11sampleneuralfeaturesolutionlossoptimaluserloguniteffectconvergencevariablepartgoalback_propagationcomputationconnectioniststructureauditoryensemble
Term12vectorfixed_pointframeoptimalapproximationeqrandomlikelihoodeyeneuraltrajectorystagevisualstephidden_layerparallelpositioncenterdetectionestimation
Term13databaseoscillatortrainedeqlinearminimumtechniquesamplefieldneuronalxtlengthregionrewardconnectiondigitaltaskrbfphaseaverage
Term14error_ratedelayspeech_recognitionteacherassumeoperatorruncomponentactivitycurrentlengthsolutionpositiontdhiddenoperationcontextpcaicanonlinear
Term15marginstablephonemeeffectdefinitiongradient_descentaccuracyexpertlocationpatternobservationedgesceneagentbackpropagationarraytrajectorybasis_functionadaptationlinear
Term16experimentfigexperimentsizedefinedconditionblockemvelocityinhibitorycontinuouslinksurfaceadaptivelearnneuralhandlinearamplitudeestimator
Term17support_vectoroscillationhybridtemperaturehypothesisconstantapplicationposteriorcenterconnectionratecomponentvisioncosttraining_setsynapserolerepresentationsubjectcross_validation
Term18nearest_neighborassociative_memorysegmentationstudentconstantderivativeevaluationprobabilisticcontrastbrainmachinematchframereinforcementepochelementsymbolglobaleegpruning
Term19decisionbehaviorvowellinedefinequadraticstrategyestimationcorticalsimulationcurrentbinarytexturetrialsimulationhardwarelearnedprincipal_componentchangebias
Term20sizestoredlevelrandomboundedenergyimportantentropypatternfiring_ratestringcodinglocationexplorationgeneralizationtransistortheoryprojectioncorrelationrisk
\n", + "
" + ], + "text/plain": [ + " Topic 1 Topic 2 Topic 3 \\\n", + "Term1 class neuron word \n", + "Term2 classification memory recognition \n", + "Term3 classifier pattern training \n", + "Term4 training dynamic speech \n", + "Term5 pattern connection character \n", + "Term6 feature phase context \n", + "Term7 kernel attractor hmm \n", + "Term8 machine capacity letter \n", + "Term9 training_set state mlp \n", + "Term10 test hopfield speaker \n", + "Term11 sample neural feature \n", + "Term12 vector fixed_point frame \n", + "Term13 database oscillator trained \n", + "Term14 error_rate delay speech_recognition \n", + "Term15 margin stable phoneme \n", + "Term16 experiment fig experiment \n", + "Term17 support_vector oscillation hybrid \n", + "Term18 nearest_neighbor associative_memory segmentation \n", + "Term19 decision behavior vowel \n", + "Term20 size stored level \n", + "\n", + " Topic 4 Topic 5 Topic 6 Topic 7 \\\n", + "Term1 noise bound vector search \n", + "Term2 rate theorem matrix task \n", + "Term3 equation class linear experiment \n", + "Term4 curve probability equation table \n", + "Term5 average size solution instance \n", + "Term6 correlation threshold gradient test \n", + "Term7 rule proof constraint domain \n", + "Term8 distribution polynomial convergence target \n", + "Term9 theory theory optimization query \n", + "Term10 limit complexity nonlinear feature \n", + "Term11 solution loss optimal user \n", + "Term12 optimal approximation eq random \n", + "Term13 eq linear minimum technique \n", + "Term14 teacher assume operator run \n", + "Term15 effect definition gradient_descent accuracy \n", + "Term16 size defined condition block \n", + "Term17 temperature hypothesis constant application \n", + "Term18 student constant derivative evaluation \n", + "Term19 line define quadratic strategy \n", + "Term20 random bounded energy important \n", + "\n", + " Topic 8 Topic 9 Topic 10 Topic 11 Topic 12 \\\n", + "Term1 distribution visual neuron state node \n", + "Term2 probability motion cell sequence tree \n", + "Term3 prior cell spike step structure \n", + "Term4 gaussian response synaptic recurrent graph \n", + "Term5 variable stimulus activity transition code \n", + "Term6 mixture direction response stochastic level \n", + "Term7 density receptive_field stimulus iteration bit \n", + "Term8 bayesian map firing update path \n", + "Term9 estimate spatial synapsis dynamic local \n", + "Term10 approximation orientation et_al probability size \n", + "Term11 log unit effect convergence variable \n", + "Term12 likelihood eye neural trajectory stage \n", + "Term13 sample field neuronal xt length \n", + "Term14 component activity current length solution \n", + "Term15 expert location pattern observation edge \n", + "Term16 em velocity inhibitory continuous link \n", + "Term17 posterior center connection rate component \n", + "Term18 probabilistic contrast brain machine match \n", + "Term19 estimation cortical simulation current binary \n", + "Term20 entropy pattern firing_rate string coding \n", + "\n", + " Topic 13 Topic 14 Topic 15 \\\n", + "Term1 image control unit \n", + "Term2 object action layer \n", + "Term3 feature state training \n", + "Term4 pixel policy hidden_unit \n", + "Term5 face environment net \n", + "Term6 view controller architecture \n", + "Term7 recognition reinforcement_learning pattern \n", + "Term8 representation task activation \n", + "Term9 shape optimal trained \n", + "Term10 scale robot task \n", + "Term11 part goal back_propagation \n", + "Term12 visual step hidden_layer \n", + "Term13 region reward connection \n", + "Term14 position td hidden \n", + "Term15 scene agent backpropagation \n", + "Term16 surface adaptive learn \n", + "Term17 vision cost training_set \n", + "Term18 frame reinforcement epoch \n", + "Term19 texture trial simulation \n", + "Term20 location exploration generalization \n", + "\n", + " Topic 16 Topic 17 Topic 18 Topic 19 \\\n", + "Term1 circuit rule vector signal \n", + "Term2 chip representation map filter \n", + "Term3 current module distance frequency \n", + "Term4 analog structure cluster source \n", + "Term5 voltage human local channel \n", + "Term6 implementation movement dimension noise \n", + "Term7 processor motor clustering component \n", + "Term8 bit target mapping response \n", + "Term9 design language dimensional temporal \n", + "Term10 device subject region sound \n", + "Term11 computation connectionist structure auditory \n", + "Term12 parallel position center detection \n", + "Term13 digital task rbf phase \n", + "Term14 operation context pca ica \n", + "Term15 array trajectory basis_function adaptation \n", + "Term16 neural hand linear amplitude \n", + "Term17 synapse role representation subject \n", + "Term18 element symbol global eeg \n", + "Term19 hardware learned principal_component change \n", + "Term20 transistor theory projection correlation \n", + "\n", + " Topic 20 \n", + "Term1 prediction \n", + "Term2 training \n", + "Term3 estimate \n", + "Term4 regression \n", + "Term5 test \n", + "Term6 noise \n", + "Term7 selection \n", + "Term8 variance \n", + "Term9 training_set \n", + "Term10 sample \n", + "Term11 ensemble \n", + "Term12 estimation \n", + "Term13 average \n", + "Term14 nonlinear \n", + "Term15 linear \n", + "Term16 estimator \n", + "Term17 cross_validation \n", + "Term18 pruning \n", + "Term19 bias \n", + "Term20 risk " + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "topics_df = pd.DataFrame([[term for term, wt in topic] \n", + " for topic in topics], \n", + " columns = ['Term'+str(i) for i in range(1, 21)],\n", + " index=['Topic '+str(t) for t in range(1, best_lda_model.num_topics+1)]).T\n", + "topics_df" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Terms per Topic
Topic1class, classification, classifier, training, pattern, feature, kernel, machine, training_set, test, sample, vector, database, error_rate, margin, experiment, support_vector, nearest_neighbor, decision, size
Topic2neuron, memory, pattern, dynamic, connection, phase, attractor, capacity, state, hopfield, neural, fixed_point, oscillator, delay, stable, fig, oscillation, associative_memory, behavior, stored
Topic3word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level
Topic4noise, rate, equation, curve, average, correlation, rule, distribution, theory, limit, solution, optimal, eq, teacher, effect, size, temperature, student, line, random
Topic5bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded
Topic6vector, matrix, linear, equation, solution, gradient, constraint, convergence, optimization, nonlinear, optimal, eq, minimum, operator, gradient_descent, condition, constant, derivative, quadratic, energy
Topic7search, task, experiment, table, instance, test, domain, target, query, feature, user, random, technique, run, accuracy, block, application, evaluation, strategy, important
Topic8distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, entropy
Topic9visual, motion, cell, response, stimulus, direction, receptive_field, map, spatial, orientation, unit, eye, field, activity, location, velocity, center, contrast, cortical, pattern
Topic10neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate
Topic11state, sequence, step, recurrent, transition, stochastic, iteration, update, dynamic, probability, convergence, trajectory, xt, length, observation, continuous, rate, machine, current, string
Topic12node, tree, structure, graph, code, level, bit, path, local, size, variable, stage, length, solution, edge, link, component, match, binary, coding
Topic13image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location
Topic14control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, exploration
Topic15unit, layer, training, hidden_unit, net, architecture, pattern, activation, trained, task, back_propagation, hidden_layer, connection, hidden, backpropagation, learn, training_set, epoch, simulation, generalization
Topic16circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor
Topic17rule, representation, module, structure, human, movement, motor, target, language, subject, connectionist, position, task, context, trajectory, hand, role, symbol, learned, theory
Topic18vector, map, distance, cluster, local, dimension, clustering, mapping, dimensional, region, structure, center, rbf, pca, basis_function, linear, representation, global, principal_component, projection
Topic19signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlation
Topic20prediction, training, estimate, regression, test, noise, selection, variance, training_set, sample, ensemble, estimation, average, nonlinear, linear, estimator, cross_validation, pruning, bias, risk
\n", + "
" + ], + "text/plain": [ + " Terms per Topic\n", + "Topic1 class, classification, classifier, training, pattern, feature, kernel, machine, training_set, test, sample, vector, database, error_rate, margin, experiment, support_vector, nearest_neighbor, decision, size \n", + "Topic2 neuron, memory, pattern, dynamic, connection, phase, attractor, capacity, state, hopfield, neural, fixed_point, oscillator, delay, stable, fig, oscillation, associative_memory, behavior, stored \n", + "Topic3 word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level \n", + "Topic4 noise, rate, equation, curve, average, correlation, rule, distribution, theory, limit, solution, optimal, eq, teacher, effect, size, temperature, student, line, random \n", + "Topic5 bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded \n", + "Topic6 vector, matrix, linear, equation, solution, gradient, constraint, convergence, optimization, nonlinear, optimal, eq, minimum, operator, gradient_descent, condition, constant, derivative, quadratic, energy \n", + "Topic7 search, task, experiment, table, instance, test, domain, target, query, feature, user, random, technique, run, accuracy, block, application, evaluation, strategy, important \n", + "Topic8 distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, entropy \n", + "Topic9 visual, motion, cell, response, stimulus, direction, receptive_field, map, spatial, orientation, unit, eye, field, activity, location, velocity, center, contrast, cortical, pattern \n", + "Topic10 neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate \n", + "Topic11 state, sequence, step, recurrent, transition, stochastic, iteration, update, dynamic, probability, convergence, trajectory, xt, length, observation, continuous, rate, machine, current, string \n", + "Topic12 node, tree, structure, graph, code, level, bit, path, local, size, variable, stage, length, solution, edge, link, component, match, binary, coding \n", + "Topic13 image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location \n", + "Topic14 control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, exploration \n", + "Topic15 unit, layer, training, hidden_unit, net, architecture, pattern, activation, trained, task, back_propagation, hidden_layer, connection, hidden, backpropagation, learn, training_set, epoch, simulation, generalization\n", + "Topic16 circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor \n", + "Topic17 rule, representation, module, structure, human, movement, motor, target, language, subject, connectionist, position, task, context, trajectory, hand, role, symbol, learned, theory \n", + "Topic18 vector, map, distance, cluster, local, dimension, clustering, mapping, dimensional, region, structure, center, rbf, pca, basis_function, linear, representation, global, principal_component, projection \n", + "Topic19 signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlation \n", + "Topic20 prediction, training, estimate, regression, test, noise, selection, variance, training_set, sample, ensemble, estimation, average, nonlinear, linear, estimator, cross_validation, pruning, bias, risk " + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.set_option('display.max_colwidth', -1)\n", + "topics_df = pd.DataFrame([', '.join([term for term, wt in topic]) \n", + " for topic in topics],\n", + " columns = ['Terms per Topic'],\n", + " index=['Topic'+str(t) for t in range(1, best_lda_model.num_topics+1)]\n", + " )\n", + "topics_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Interpreting Topic Model Results" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "tm_results = best_lda_model[bow_corpus]" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(16, 0.2115988756613756),\n", + " (5, 0.29989652050187554),\n", + " (9, 0.3307915758896151),\n", + " (8, 0.5447463768115942),\n", + " (9, 0.18093823158652983)]" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "corpus_topics = [sorted(topics, key=lambda record: -record[1])[0] \n", + " for topics in tm_results]\n", + "corpus_topics[:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "corpus_topic_df = pd.DataFrame()\n", + "corpus_topic_df['Document'] = range(0, len(papers))\n", + "corpus_topic_df['Dominant Topic'] = [item[0]+1 for item in corpus_topics]\n", + "corpus_topic_df['Contribution %'] = [round(item[1]*100, 2) for item in corpus_topics]\n", + "corpus_topic_df['Topic Desc'] = [topics_df.iloc[t[0]]['Terms per Topic'] for t in corpus_topics]\n", + "corpus_topic_df['Paper'] = papers" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Dominant Topics Distribution across Corpus" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/paperspace/anaconda3/lib/python3.6/site-packages/pandas/core/groupby/groupby.py:4656: FutureWarning: using a dict with renaming is deprecated and will be removed in a future version\n", + " return super(DataFrameGroupBy, self).aggregate(arg, *args, **kwargs)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Dominant TopicDoc Count% Total DocsTopic Desc
01754.31class, classification, classifier, training, pattern, feature, kernel, machine, training_set, test, sample, vector, database, error_rate, margin, experiment, support_vector, nearest_neighbor, deci...
12693.97neuron, memory, pattern, dynamic, connection, phase, attractor, capacity, state, hopfield, neural, fixed_point, oscillator, delay, stable, fig, oscillation, associative_memory, behavior, stored
23784.48word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level
34683.91noise, rate, equation, curve, average, correlation, rule, distribution, theory, limit, solution, optimal, eq, teacher, effect, size, temperature, student, line, random
451056.03bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded
56804.60vector, matrix, linear, equation, solution, gradient, constraint, convergence, optimization, nonlinear, optimal, eq, minimum, operator, gradient_descent, condition, constant, derivative, quadratic...
67663.79search, task, experiment, table, instance, test, domain, target, query, feature, user, random, technique, run, accuracy, block, application, evaluation, strategy, important
781488.51distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, ent...
891176.72visual, motion, cell, response, stimulus, direction, receptive_field, map, spatial, orientation, unit, eye, field, activity, location, velocity, center, contrast, cortical, pattern
9101418.10neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate
1011412.36state, sequence, step, recurrent, transition, stochastic, iteration, update, dynamic, probability, convergence, trajectory, xt, length, observation, continuous, rate, machine, current, string
1112412.36node, tree, structure, graph, code, level, bit, path, local, size, variable, stage, length, solution, edge, link, component, match, binary, coding
12131136.49image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location
13141106.32control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, exploration
1415844.83unit, layer, training, hidden_unit, net, architecture, pattern, activation, trained, task, back_propagation, hidden_layer, connection, hidden, backpropagation, learn, training_set, epoch, simulati...
15161045.98circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor
1617764.37rule, representation, module, structure, human, movement, motor, target, language, subject, connectionist, position, task, context, trajectory, hand, role, symbol, learned, theory
1718633.62vector, map, distance, cluster, local, dimension, clustering, mapping, dimensional, region, structure, center, rbf, pca, basis_function, linear, representation, global, principal_component, projec...
1819693.97signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlation
1920925.29prediction, training, estimate, regression, test, noise, selection, variance, training_set, sample, ensemble, estimation, average, nonlinear, linear, estimator, cross_validation, pruning, bias, risk
\n", + "
" + ], + "text/plain": [ + " Dominant Topic Doc Count % Total Docs \\\n", + "0 1 75 4.31 \n", + "1 2 69 3.97 \n", + "2 3 78 4.48 \n", + "3 4 68 3.91 \n", + "4 5 105 6.03 \n", + "5 6 80 4.60 \n", + "6 7 66 3.79 \n", + "7 8 148 8.51 \n", + "8 9 117 6.72 \n", + "9 10 141 8.10 \n", + "10 11 41 2.36 \n", + "11 12 41 2.36 \n", + "12 13 113 6.49 \n", + "13 14 110 6.32 \n", + "14 15 84 4.83 \n", + "15 16 104 5.98 \n", + "16 17 76 4.37 \n", + "17 18 63 3.62 \n", + "18 19 69 3.97 \n", + "19 20 92 5.29 \n", + "\n", + " Topic Desc \n", + "0 class, classification, classifier, training, pattern, feature, kernel, machine, training_set, test, sample, vector, database, error_rate, margin, experiment, support_vector, nearest_neighbor, deci... \n", + "1 neuron, memory, pattern, dynamic, connection, phase, attractor, capacity, state, hopfield, neural, fixed_point, oscillator, delay, stable, fig, oscillation, associative_memory, behavior, stored \n", + "2 word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level \n", + "3 noise, rate, equation, curve, average, correlation, rule, distribution, theory, limit, solution, optimal, eq, teacher, effect, size, temperature, student, line, random \n", + "4 bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded \n", + "5 vector, matrix, linear, equation, solution, gradient, constraint, convergence, optimization, nonlinear, optimal, eq, minimum, operator, gradient_descent, condition, constant, derivative, quadratic... \n", + "6 search, task, experiment, table, instance, test, domain, target, query, feature, user, random, technique, run, accuracy, block, application, evaluation, strategy, important \n", + "7 distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, ent... \n", + "8 visual, motion, cell, response, stimulus, direction, receptive_field, map, spatial, orientation, unit, eye, field, activity, location, velocity, center, contrast, cortical, pattern \n", + "9 neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate \n", + "10 state, sequence, step, recurrent, transition, stochastic, iteration, update, dynamic, probability, convergence, trajectory, xt, length, observation, continuous, rate, machine, current, string \n", + "11 node, tree, structure, graph, code, level, bit, path, local, size, variable, stage, length, solution, edge, link, component, match, binary, coding \n", + "12 image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location \n", + "13 control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, exploration \n", + "14 unit, layer, training, hidden_unit, net, architecture, pattern, activation, trained, task, back_propagation, hidden_layer, connection, hidden, backpropagation, learn, training_set, epoch, simulati... \n", + "15 circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor \n", + "16 rule, representation, module, structure, human, movement, motor, target, language, subject, connectionist, position, task, context, trajectory, hand, role, symbol, learned, theory \n", + "17 vector, map, distance, cluster, local, dimension, clustering, mapping, dimensional, region, structure, center, rbf, pca, basis_function, linear, representation, global, principal_component, projec... \n", + "18 signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlation \n", + "19 prediction, training, estimate, regression, test, noise, selection, variance, training_set, sample, ensemble, estimation, average, nonlinear, linear, estimator, cross_validation, pruning, bias, risk " + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.set_option('display.max_colwidth', 200)\n", + "topic_stats_df = corpus_topic_df.groupby('Dominant Topic').agg({\n", + " 'Dominant Topic': {\n", + " 'Doc Count': np.size,\n", + " '% Total Docs': np.size }\n", + " })\n", + "topic_stats_df = topic_stats_df['Dominant Topic'].reset_index()\n", + "topic_stats_df['% Total Docs'] = topic_stats_df['% Total Docs'].apply(lambda row: round((row*100) / len(papers), 2))\n", + "topic_stats_df['Topic Desc'] = [topics_df.iloc[t]['Terms per Topic'] for t in range(len(topic_stats_df))]\n", + "topic_stats_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Dominant Topics in Specific Research Papers" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentDominant TopicContribution %Topic DescPaper
991329.10image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location622 \\nLEARNING A COLOR ALGORITHM FROM EXAMPLES \\nAnya C. Hurlbert and Tomaso A. Poggio \\nArtificial Intelligence Laboratory and Department of Brain and Cognitive Sciences, \\nMassachusetts Institut...
13131627.12circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor9 \\nStochastic Learning Networks and their Electronic Implementation \\nJoshua Alspector*, Robert B. Allen, Victor Hut, and Srinagesh Satyanarayana \\nBell Communications Research, Morristown, NJ 0...
1717523.00bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded338 \\nThe Connectivity Analysis of Simple Association \\nHow Many Connections Do You Need? \\nDan Hammerstrom * \\nOregon Graduate Center, Beaverton, OR 97006 \\nABSTRACT \\nThe efficient realization, ...
3923921467.03control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, explorationIntegrated Modeling and Control \\nBased on Reinforcement Learning \\nand Dynamic Programming \\nRichard S. Sutton \\nGTE Laboratories Incorporated \\nWaltham, MA 02254 \\nAbstract \\nThis is a summary o...
503503360.76word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, levelMulti-State Time Delay Neural Networks \\nfor Continuous Speech Recognition \\nPatrick Haffner \\nCNET Lannion A TSS/RCP \\n22301 LANNION, FRANCE \\nhaffnerlannion.cnet. fr \\nAlex Waibel \\nCarnegie Me...
681681367.58word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, levelConnected Letter Recognition with a \\nMulti-State Time Delay Neural Network \\nHermann Hild and Alex Waibel \\nSchool of Computer Science \\nCarnegie Mellon University \\nPittsburgh, PA 15213-3891, US...
7337331645.55circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistorHigh Performance Neural Net Simulation \\non a Multiprocessor System with \\n\"Intelligent\" Communication \\nUrs A. Miiller, Michael Kocheisen, and Anton Gunzinger \\nElectronics Laboratory, Swiss Fede...
9069061056.44neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rateA model of the hippocampus combining self- \\norganization and associative memory function. \\nMichael E. Hasselmo, Eric Schnell \\nJoshua Berke and Edi Barkai \\nDept. of Psychology, Harvard Universi...
9969961965.69signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlationUsing Feedforward Neural Networks to \\nMonitor Alertness from Changes in EEG \\nCorrelation and Coherence \\nScott Makeig \\nNaval Health Research Center, P.O. Box 85122 \\nSan Diego, CA 92186-5122 \\n...
16221622856.70distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, ent...The Infinite Gaussian Mixture Model \\nCarl Edward Rasmussen \\nDepartment of Mathematical Modelling \\nTechnical University of Denmark \\nBuilding 321, DK-2800 Kongens Lyngby, Denmark \\ncarl@imm.dtu....
\n", + "
" + ], + "text/plain": [ + " Document Dominant Topic Contribution % \\\n", + "9 9 13 29.10 \n", + "13 13 16 27.12 \n", + "17 17 5 23.00 \n", + "392 392 14 67.03 \n", + "503 503 3 60.76 \n", + "681 681 3 67.58 \n", + "733 733 16 45.55 \n", + "906 906 10 56.44 \n", + "996 996 19 65.69 \n", + "1622 1622 8 56.70 \n", + "\n", + " Topic Desc \\\n", + "9 image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location \n", + "13 circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor \n", + "17 bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded \n", + "392 control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, exploration \n", + "503 word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level \n", + "681 word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level \n", + "733 circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor \n", + "906 neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate \n", + "996 signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlation \n", + "1622 distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, ent... \n", + "\n", + " Paper \n", + "9 622 \\nLEARNING A COLOR ALGORITHM FROM EXAMPLES \\nAnya C. Hurlbert and Tomaso A. Poggio \\nArtificial Intelligence Laboratory and Department of Brain and Cognitive Sciences, \\nMassachusetts Institut... \n", + "13 9 \\nStochastic Learning Networks and their Electronic Implementation \\nJoshua Alspector*, Robert B. Allen, Victor Hut, and Srinagesh Satyanarayana \\nBell Communications Research, Morristown, NJ 0... \n", + "17 338 \\nThe Connectivity Analysis of Simple Association \\nHow Many Connections Do You Need? \\nDan Hammerstrom * \\nOregon Graduate Center, Beaverton, OR 97006 \\nABSTRACT \\nThe efficient realization, ... \n", + "392 Integrated Modeling and Control \\nBased on Reinforcement Learning \\nand Dynamic Programming \\nRichard S. Sutton \\nGTE Laboratories Incorporated \\nWaltham, MA 02254 \\nAbstract \\nThis is a summary o... \n", + "503 Multi-State Time Delay Neural Networks \\nfor Continuous Speech Recognition \\nPatrick Haffner \\nCNET Lannion A TSS/RCP \\n22301 LANNION, FRANCE \\nhaffnerlannion.cnet. fr \\nAlex Waibel \\nCarnegie Me... \n", + "681 Connected Letter Recognition with a \\nMulti-State Time Delay Neural Network \\nHermann Hild and Alex Waibel \\nSchool of Computer Science \\nCarnegie Mellon University \\nPittsburgh, PA 15213-3891, US... \n", + "733 High Performance Neural Net Simulation \\non a Multiprocessor System with \\n\"Intelligent\" Communication \\nUrs A. Miiller, Michael Kocheisen, and Anton Gunzinger \\nElectronics Laboratory, Swiss Fede... \n", + "906 A model of the hippocampus combining self- \\norganization and associative memory function. \\nMichael E. Hasselmo, Eric Schnell \\nJoshua Berke and Edi Barkai \\nDept. of Psychology, Harvard Universi... \n", + "996 Using Feedforward Neural Networks to \\nMonitor Alertness from Changes in EEG \\nCorrelation and Coherence \\nScott Makeig \\nNaval Health Research Center, P.O. Box 85122 \\nSan Diego, CA 92186-5122 \\n... \n", + "1622 The Infinite Gaussian Mixture Model \\nCarl Edward Rasmussen \\nDepartment of Mathematical Modelling \\nTechnical University of Denmark \\nBuilding 321, DK-2800 Kongens Lyngby, Denmark \\ncarl@imm.dtu.... " + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.set_option('display.max_colwidth', 200)\n", + "(corpus_topic_df[corpus_topic_df['Document']\n", + " .isin([681, 9, 392, 1622, 17, \n", + " 906, 996, 503, 13, 733])])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Relevant Research Papers per Topic based on Dominance" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DocumentDominant TopicContribution %Topic DescPaper
Dominant Topic
11138161.01class, classification, classifier, training, pattern, feature, kernel, machine, training_set, test, sample, vector, database, error_rate, margin, experiment, support_vector, nearest_neighbor, deci...Improving the Accuracy and Speed of \\nSupport Vector Machines \\nChris J.C. Burges \\nBell Laboratories \\nLucent Technologies, Room 3G429 \\n101 Crawford's Corner Road \\nHolmdel, NJ 07733-3030 \\nburg...
2131256.71neuron, memory, pattern, dynamic, connection, phase, attractor, capacity, state, hopfield, neural, fixed_point, oscillator, delay, stable, fig, oscillation, associative_memory, behavior, stored568 \\nDYNAMICS OF ANALOG NEURAL \\nNETWORKS WITH TIME DELAY \\nC.M. Marcus and R.M. Westervelt \\nDivision of Applied Sciences and Department of Physics \\nHarvard University, Cambridge Massachusetts ...
3681367.58word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, levelConnected Letter Recognition with a \\nMulti-State Time Delay Neural Network \\nHermann Hild and Alex Waibel \\nSchool of Computer Science \\nCarnegie Mellon University \\nPittsburgh, PA 15213-3891, US...
41570473.69noise, rate, equation, curve, average, correlation, rule, distribution, theory, limit, solution, optimal, eq, teacher, effect, size, temperature, student, line, randomDynamics of Supervised Learning with \\nRestricted Training Sets \\nA.C.C. Coolen \\nDept of Mathematics \\nKing's College London \\nStrand, London WC2R 2LS, UK \\ntcoolen @mth.kcl.ac.uk \\nD. Saad \\nNeu...
5431581.06bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, boundedPolynomial Uniform Convergence of \\nRelative Frequencies to Probabilities \\nAlberto Bertoni, Paola Campadelll;' Anna Morpurgo, Sandra Panlzza \\nDipartimento di Scienze dell'Informazione \\nUniversi...
682657.12vector, matrix, linear, equation, solution, gradient, constraint, convergence, optimization, nonlinear, optimal, eq, minimum, operator, gradient_descent, condition, constant, derivative, quadratic...612 \\nConstrained Differential Optimization \\nJohn C. Platt \\nAlan H. Ban' \\nCalifornia Institute of Technology, Pasadena, CA 91125 \\nAbstract \\nMany optimization models of neural networks need co...
7741762.82search, task, experiment, table, instance, test, domain, target, query, feature, user, random, technique, run, accuracy, block, application, evaluation, strategy, importantWhen Will a Genetic Algorithm \\nOutperform Hill Climbing? \\nMelanie Mitchell \\nSanta Fe Institute \\n1660 Old Pecos Trail, Suite A \\nSanta Fe, NM 87501 \\nJohn H. Holland \\nDept. of Psychology \\nUni...
81375861.11distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, ent...Approximating Posterior Distributions \\nin Belief Networks using Mixtures \\nChristopher M. Bishop \\nNeil Lawrence \\nNeural Computing Research Group \\nDept. Computer Science & Applied Mathematics \\...
9808966.59visual, motion, cell, response, stimulus, direction, receptive_field, map, spatial, orientation, unit, eye, field, activity, location, velocity, center, contrast, cortical, patternDevelopment of Orientation and Ocular \\nDominance Columns in Infant Macaques \\nKlaus Obermayer \\nHoward Hughes Medical Institute \\nSMk-Institute \\nLa Jolla, CA 92037 \\nLynne Kiorpes \\nCenter for N...
10281074.86neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate82 \\nSIMULATIONS SUGGEST \\nINFORMATION PROCESSING ROLES \\nFOR THE DIVERSE CURRENTS IN \\nHIPPOCAMPAL NEURONS \\nLyle J. Borg-Graham \\nHarvard-MIT Division of Health Sciences and Technology and \\nCen...
1111281149.68state, sequence, step, recurrent, transition, stochastic, iteration, update, dynamic, probability, convergence, trajectory, xt, length, observation, continuous, rate, machine, current, stringFinite State Automata that Recurrent \\nCascade-Correlation Cannot Represent \\nStefan C. Kremer \\nDepartment of Computing Science \\nUniversity of Alberta \\nEdmonton, Alberta, CANADA T6H 5B5 \\nAbstr...
1210341245.28node, tree, structure, graph, code, level, bit, path, local, size, variable, stage, length, solution, edge, link, component, match, binary, codingPrediction of Beta Sheets in Proteins \\nAnders Krogh \\nThe Sanger Centre \\nHinxton, Carnbs CB10 1RQ, UK. \\nEmail: krogh@sanger. ac.uk \\nSoren Kamaric Riis \\nElectronics Institute, Building 349 \\nT...
132501356.75image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location266 Zemel, Mozer and Hinton \\nTRAFFIC: Recognizing Objects Using \\nHierarchical Reference Frame Transformations \\nRichard S. Zemel \\nComputer Science Dept. \\nUniversity of Toronto \\nToronto, ONT M...
143921467.03control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, explorationIntegrated Modeling and Control \\nBased on Reinforcement Learning \\nand Dynamic Programming \\nRichard S. Sutton \\nGTE Laboratories Incorporated \\nWaltham, MA 02254 \\nAbstract \\nThis is a summary o...
152771562.31unit, layer, training, hidden_unit, net, architecture, pattern, activation, trained, task, back_propagation, hidden_layer, connection, hidden, backpropagation, learn, training_set, epoch, simulati...524 Fahlman and Lebiere \\nThe Cascade-Correlation Learning Architecture \\nScott E. Fahlman and Christian Lebiere \\nSchool of Computer Science \\nCarnegie-Mellon University \\nPittsburgh, PA 15213 \\n...
168951670.96circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistorSingle Transistor Learning Synapses \\nPaul Hasler, Chris Diorio, Bradley A. Minch, Carver Mead \\nCalifornia Institute of Technology \\nPasadena, CA 91125 \\n(SlS) 95- 2S12 \\npaul@hobiecat.pcmp.calt...
175181758.33rule, representation, module, structure, human, movement, motor, target, language, subject, connectionist, position, task, context, trajectory, hand, role, symbol, learned, theoryA Connectionist Learning Approach to Analyzing \\nLinguistic Stress \\nPrahlad Gupta \\nDepartment of Psychology \\nCarnegie Mellon University \\nPittsburgh, PA 15213 \\nDavid S. Touretzky \\nSchool of C...
1813621855.02vector, map, distance, cluster, local, dimension, clustering, mapping, dimensional, region, structure, center, rbf, pca, basis_function, linear, representation, global, principal_component, projec...Mapping a manifold of perceptual observations \\nJoshua B. Tenenbaum \\nDepartment of Brain and Cognitive Sciences \\nMassachusetts Institute of Technology, Cambridge, MA 02139 \\nj bt @psyche. mi t. ...
199961965.69signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlationUsing Feedforward Neural Networks to \\nMonitor Alertness from Changes in EEG \\nCorrelation and Coherence \\nScott Makeig \\nNaval Health Research Center, P.O. Box 85122 \\nSan Diego, CA 92186-5122 \\n...
2012492064.87prediction, training, estimate, regression, test, noise, selection, variance, training_set, sample, ensemble, estimation, average, nonlinear, linear, estimator, cross_validation, pruning, bias, riskBalancing between bagging and bumping \\nTom Heskes \\nRWCP Novel Functions SNN Laboratory,* University of Nijmegen \\nGeert Grooteplein 21, 6525 EZ Nijmegen, The Netherlands \\ntom@mbfys.kun.nl \\nAbs...
\n", + "
" + ], + "text/plain": [ + " Document Dominant Topic Contribution % \\\n", + "Dominant Topic \n", + "1 1138 1 61.01 \n", + "2 131 2 56.71 \n", + "3 681 3 67.58 \n", + "4 1570 4 73.69 \n", + "5 431 5 81.06 \n", + "6 82 6 57.12 \n", + "7 741 7 62.82 \n", + "8 1375 8 61.11 \n", + "9 808 9 66.59 \n", + "10 28 10 74.86 \n", + "11 1128 11 49.68 \n", + "12 1034 12 45.28 \n", + "13 250 13 56.75 \n", + "14 392 14 67.03 \n", + "15 277 15 62.31 \n", + "16 895 16 70.96 \n", + "17 518 17 58.33 \n", + "18 1362 18 55.02 \n", + "19 996 19 65.69 \n", + "20 1249 20 64.87 \n", + "\n", + " Topic Desc \\\n", + "Dominant Topic \n", + "1 class, classification, classifier, training, pattern, feature, kernel, machine, training_set, test, sample, vector, database, error_rate, margin, experiment, support_vector, nearest_neighbor, deci... \n", + "2 neuron, memory, pattern, dynamic, connection, phase, attractor, capacity, state, hopfield, neural, fixed_point, oscillator, delay, stable, fig, oscillation, associative_memory, behavior, stored \n", + "3 word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level \n", + "4 noise, rate, equation, curve, average, correlation, rule, distribution, theory, limit, solution, optimal, eq, teacher, effect, size, temperature, student, line, random \n", + "5 bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded \n", + "6 vector, matrix, linear, equation, solution, gradient, constraint, convergence, optimization, nonlinear, optimal, eq, minimum, operator, gradient_descent, condition, constant, derivative, quadratic... \n", + "7 search, task, experiment, table, instance, test, domain, target, query, feature, user, random, technique, run, accuracy, block, application, evaluation, strategy, important \n", + "8 distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, ent... \n", + "9 visual, motion, cell, response, stimulus, direction, receptive_field, map, spatial, orientation, unit, eye, field, activity, location, velocity, center, contrast, cortical, pattern \n", + "10 neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate \n", + "11 state, sequence, step, recurrent, transition, stochastic, iteration, update, dynamic, probability, convergence, trajectory, xt, length, observation, continuous, rate, machine, current, string \n", + "12 node, tree, structure, graph, code, level, bit, path, local, size, variable, stage, length, solution, edge, link, component, match, binary, coding \n", + "13 image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location \n", + "14 control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, exploration \n", + "15 unit, layer, training, hidden_unit, net, architecture, pattern, activation, trained, task, back_propagation, hidden_layer, connection, hidden, backpropagation, learn, training_set, epoch, simulati... \n", + "16 circuit, chip, current, analog, voltage, implementation, processor, bit, design, device, computation, parallel, digital, operation, array, neural, synapse, element, hardware, transistor \n", + "17 rule, representation, module, structure, human, movement, motor, target, language, subject, connectionist, position, task, context, trajectory, hand, role, symbol, learned, theory \n", + "18 vector, map, distance, cluster, local, dimension, clustering, mapping, dimensional, region, structure, center, rbf, pca, basis_function, linear, representation, global, principal_component, projec... \n", + "19 signal, filter, frequency, source, channel, noise, component, response, temporal, sound, auditory, detection, phase, ica, adaptation, amplitude, subject, eeg, change, correlation \n", + "20 prediction, training, estimate, regression, test, noise, selection, variance, training_set, sample, ensemble, estimation, average, nonlinear, linear, estimator, cross_validation, pruning, bias, risk \n", + "\n", + " Paper \n", + "Dominant Topic \n", + "1 Improving the Accuracy and Speed of \\nSupport Vector Machines \\nChris J.C. Burges \\nBell Laboratories \\nLucent Technologies, Room 3G429 \\n101 Crawford's Corner Road \\nHolmdel, NJ 07733-3030 \\nburg... \n", + "2 568 \\nDYNAMICS OF ANALOG NEURAL \\nNETWORKS WITH TIME DELAY \\nC.M. Marcus and R.M. Westervelt \\nDivision of Applied Sciences and Department of Physics \\nHarvard University, Cambridge Massachusetts ... \n", + "3 Connected Letter Recognition with a \\nMulti-State Time Delay Neural Network \\nHermann Hild and Alex Waibel \\nSchool of Computer Science \\nCarnegie Mellon University \\nPittsburgh, PA 15213-3891, US... \n", + "4 Dynamics of Supervised Learning with \\nRestricted Training Sets \\nA.C.C. Coolen \\nDept of Mathematics \\nKing's College London \\nStrand, London WC2R 2LS, UK \\ntcoolen @mth.kcl.ac.uk \\nD. Saad \\nNeu... \n", + "5 Polynomial Uniform Convergence of \\nRelative Frequencies to Probabilities \\nAlberto Bertoni, Paola Campadelll;' Anna Morpurgo, Sandra Panlzza \\nDipartimento di Scienze dell'Informazione \\nUniversi... \n", + "6 612 \\nConstrained Differential Optimization \\nJohn C. Platt \\nAlan H. Ban' \\nCalifornia Institute of Technology, Pasadena, CA 91125 \\nAbstract \\nMany optimization models of neural networks need co... \n", + "7 When Will a Genetic Algorithm \\nOutperform Hill Climbing? \\nMelanie Mitchell \\nSanta Fe Institute \\n1660 Old Pecos Trail, Suite A \\nSanta Fe, NM 87501 \\nJohn H. Holland \\nDept. of Psychology \\nUni... \n", + "8 Approximating Posterior Distributions \\nin Belief Networks using Mixtures \\nChristopher M. Bishop \\nNeil Lawrence \\nNeural Computing Research Group \\nDept. Computer Science & Applied Mathematics \\... \n", + "9 Development of Orientation and Ocular \\nDominance Columns in Infant Macaques \\nKlaus Obermayer \\nHoward Hughes Medical Institute \\nSMk-Institute \\nLa Jolla, CA 92037 \\nLynne Kiorpes \\nCenter for N... \n", + "10 82 \\nSIMULATIONS SUGGEST \\nINFORMATION PROCESSING ROLES \\nFOR THE DIVERSE CURRENTS IN \\nHIPPOCAMPAL NEURONS \\nLyle J. Borg-Graham \\nHarvard-MIT Division of Health Sciences and Technology and \\nCen... \n", + "11 Finite State Automata that Recurrent \\nCascade-Correlation Cannot Represent \\nStefan C. Kremer \\nDepartment of Computing Science \\nUniversity of Alberta \\nEdmonton, Alberta, CANADA T6H 5B5 \\nAbstr... \n", + "12 Prediction of Beta Sheets in Proteins \\nAnders Krogh \\nThe Sanger Centre \\nHinxton, Carnbs CB10 1RQ, UK. \\nEmail: krogh@sanger. ac.uk \\nSoren Kamaric Riis \\nElectronics Institute, Building 349 \\nT... \n", + "13 266 Zemel, Mozer and Hinton \\nTRAFFIC: Recognizing Objects Using \\nHierarchical Reference Frame Transformations \\nRichard S. Zemel \\nComputer Science Dept. \\nUniversity of Toronto \\nToronto, ONT M... \n", + "14 Integrated Modeling and Control \\nBased on Reinforcement Learning \\nand Dynamic Programming \\nRichard S. Sutton \\nGTE Laboratories Incorporated \\nWaltham, MA 02254 \\nAbstract \\nThis is a summary o... \n", + "15 524 Fahlman and Lebiere \\nThe Cascade-Correlation Learning Architecture \\nScott E. Fahlman and Christian Lebiere \\nSchool of Computer Science \\nCarnegie-Mellon University \\nPittsburgh, PA 15213 \\n... \n", + "16 Single Transistor Learning Synapses \\nPaul Hasler, Chris Diorio, Bradley A. Minch, Carver Mead \\nCalifornia Institute of Technology \\nPasadena, CA 91125 \\n(SlS) 95- 2S12 \\npaul@hobiecat.pcmp.calt... \n", + "17 A Connectionist Learning Approach to Analyzing \\nLinguistic Stress \\nPrahlad Gupta \\nDepartment of Psychology \\nCarnegie Mellon University \\nPittsburgh, PA 15213 \\nDavid S. Touretzky \\nSchool of C... \n", + "18 Mapping a manifold of perceptual observations \\nJoshua B. Tenenbaum \\nDepartment of Brain and Cognitive Sciences \\nMassachusetts Institute of Technology, Cambridge, MA 02139 \\nj bt @psyche. mi t. ... \n", + "19 Using Feedforward Neural Networks to \\nMonitor Alertness from Changes in EEG \\nCorrelation and Coherence \\nScott Makeig \\nNaval Health Research Center, P.O. Box 85122 \\nSan Diego, CA 92186-5122 \\n... \n", + "20 Balancing between bagging and bumping \\nTom Heskes \\nRWCP Novel Functions SNN Laboratory,* University of Nijmegen \\nGeert Grooteplein 21, 6525 EZ Nijmegen, The Netherlands \\ntom@mbfys.kun.nl \\nAbs... " + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "corpus_topic_df.groupby('Dominant Topic').apply(lambda topic_set: (topic_set.sort_values(by=['Contribution %'], \n", + " ascending=False)\n", + " .iloc[0]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Predicting Topics for New Research Papers" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total New Papers: 4\n" + ] + } + ], + "source": [ + "import glob\n", + "# papers manually downloaded from NIPS 16\n", + "# https://papers.nips.cc/book/advances-in-neural-information-processing-systems-29-2016\n", + "\n", + "new_paper_files = glob.glob('nips16*.txt')\n", + "new_papers = []\n", + "for fn in new_paper_files:\n", + " with open(fn, encoding='utf-8', errors='ignore', mode='r+') as f:\n", + " data = f.read()\n", + " new_papers.append(data)\n", + " \n", + "print('Total New Papers:', len(new_papers))" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [], + "source": [ + "def text_preprocessing_pipeline(documents, normalizer_fn, bigram_model):\n", + " norm_docs = normalizer_fn(documents)\n", + " norm_docs_bigrams = bigram_model[norm_docs]\n", + " return norm_docs_bigrams\n", + "\n", + "def bow_features_pipeline(tokenized_docs, dictionary):\n", + " paper_bow_features = [dictionary.doc2bow(text) \n", + " for text in tokenized_docs]\n", + " return paper_bow_features\n", + "\n", + "norm_new_papers = text_preprocessing_pipeline(documents=new_papers, normalizer_fn=normalize_corpus, \n", + " bigram_model=bigram_model)\n", + "norm_bow_features = bow_features_pipeline(tokenized_docs=norm_new_papers, dictionary=dictionary)" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['cooperative', 'graphical_model', 'josip', 'djolonga', 'dept_computer', 'science', 'eth', 'zurich', 'josipd', 'inf', 'ethz', 'ch', 'stefanie', 'jegelka', 'csail', 'mit', 'stefje', 'mit_edu', 'sebastian', 'tschiatschek', 'dept_computer', 'science', 'eth', 'zurich', 'stschia', 'inf', 'ethz', 'ch', 'andreas', 'krause']\n" + ] + } + ], + "source": [ + "print(norm_new_papers[0][:30])" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(0, 1), (1, 1), (6, 1), (17, 1), (18, 1), (19, 1), (25, 1), (31, 2), (36, 2), (38, 1), (39, 17), (41, 3), (43, 1), (45, 1), (49, 2), (50, 4), (51, 1), (52, 2), (54, 1), (60, 1), (65, 1), (66, 3), (68, 7), (71, 8), (76, 4), (77, 2), (87, 1), (88, 3), (105, 1), (106, 1)]\n" + ] + } + ], + "source": [ + "print(norm_bow_features[0][:30])" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [], + "source": [ + "def get_topic_predictions(topic_model, corpus, topn=3):\n", + " topic_predictions = topic_model[corpus]\n", + " best_topics = [[(topic, round(wt, 3)) \n", + " for topic, wt in sorted(topic_predictions[i], \n", + " key=lambda row: -row[1])[:topn]] \n", + " for i in range(len(topic_predictions))]\n", + " return best_topics" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[[(7, 0.241), (4, 0.199)],\n", + " [(13, 0.293), (4, 0.248)],\n", + " [(12, 0.238), (9, 0.113)],\n", + " [(2, 0.263), (12, 0.145)]]" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "topic_preds = get_topic_predictions(topic_model=best_lda_model, \n", + " corpus=norm_bow_features, topn=2)\n", + "topic_preds" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [], + "source": [ + "results_df = pd.DataFrame()\n", + "results_df['Papers'] = range(1, len(new_papers)+1)\n", + "results_df['Dominant Topics'] = [[topic_num+1 for topic_num, wt in item] for item in topic_preds]\n", + "res = results_df.set_index(['Papers'])['Dominant Topics'].apply(pd.Series).stack().reset_index(level=1, drop=True)\n", + "results_df = pd.DataFrame({'Dominant Topics': res.values}, index=res.index)\n", + "results_df['Contribution %'] = [topic_wt for topic_list in \n", + " [[round(wt*100, 2) \n", + " for topic_num, wt in item] \n", + " for item in topic_preds] \n", + " for topic_wt in topic_list]\n", + "\n", + "results_df['Topic Desc'] = [topics_df.iloc[t-1]['Terms per Topic'] for t in results_df['Dominant Topics'].values]\n", + "results_df['Paper Desc'] = [new_papers[i-1][:200] for i in results_df.index.values]" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Dominant TopicsContribution %Topic DescPaper Desc
Papers
1824.1distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, entropyCooperative Graphical Models\\nJosip Djolonga\\nDept. of Computer Science, ETH Zurich ¨\\njosipd@inf.ethz.ch\\nStefanie Jegelka\\nCSAIL, MIT\\nstefje@mit.edu\\nSebastian Tschiatschek\\nDept. of Computer Science, ETH
1519.9bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, boundedCooperative Graphical Models\\nJosip Djolonga\\nDept. of Computer Science, ETH Zurich ¨\\njosipd@inf.ethz.ch\\nStefanie Jegelka\\nCSAIL, MIT\\nstefje@mit.edu\\nSebastian Tschiatschek\\nDept. of Computer Science, ETH
21429.3control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, explorationPAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York, NY 10011\\na
2524.8bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, boundedPAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York, NY 10011\\na
31323.8image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, locationAutomated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\nUniversit
31011.3neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rateAutomated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\nUniversit
4326.3word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, levelUnsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute of Tech
41314.5image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, locationUnsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute of Tech
\n", + "
" + ], + "text/plain": [ + " Dominant Topics Contribution % \\\n", + "Papers \n", + "1 8 24.1 \n", + "1 5 19.9 \n", + "2 14 29.3 \n", + "2 5 24.8 \n", + "3 13 23.8 \n", + "3 10 11.3 \n", + "4 3 26.3 \n", + "4 13 14.5 \n", + "\n", + " Topic Desc \\\n", + "Papers \n", + "1 distribution, probability, prior, gaussian, variable, mixture, density, bayesian, estimate, approximation, log, likelihood, sample, component, expert, em, posterior, probabilistic, estimation, entropy \n", + "1 bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded \n", + "2 control, action, state, policy, environment, controller, reinforcement_learning, task, optimal, robot, goal, step, reward, td, agent, adaptive, cost, reinforcement, trial, exploration \n", + "2 bound, theorem, class, probability, size, threshold, proof, polynomial, theory, complexity, loss, approximation, linear, assume, definition, defined, hypothesis, constant, define, bounded \n", + "3 image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location \n", + "3 neuron, cell, spike, synaptic, activity, response, stimulus, firing, synapsis, et_al, effect, neural, neuronal, current, pattern, inhibitory, connection, brain, simulation, firing_rate \n", + "4 word, recognition, training, speech, character, context, hmm, letter, mlp, speaker, feature, frame, trained, speech_recognition, phoneme, experiment, hybrid, segmentation, vowel, level \n", + "4 image, object, feature, pixel, face, view, recognition, representation, shape, scale, part, visual, region, position, scene, surface, vision, frame, texture, location \n", + "\n", + " Paper Desc \n", + "Papers \n", + "1 Cooperative Graphical Models\\nJosip Djolonga\\nDept. of Computer Science, ETH Zurich ¨\\njosipd@inf.ethz.ch\\nStefanie Jegelka\\nCSAIL, MIT\\nstefje@mit.edu\\nSebastian Tschiatschek\\nDept. of Computer Science, ETH \n", + "1 Cooperative Graphical Models\\nJosip Djolonga\\nDept. of Computer Science, ETH Zurich ¨\\njosipd@inf.ethz.ch\\nStefanie Jegelka\\nCSAIL, MIT\\nstefje@mit.edu\\nSebastian Tschiatschek\\nDept. of Computer Science, ETH \n", + "2 PAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York, NY 10011\\na \n", + "2 PAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York, NY 10011\\na \n", + "3 Automated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\nUniversit \n", + "3 Automated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\nUniversit \n", + "4 Unsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute of Tech \n", + "4 Unsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute of Tech " + ] + }, + "execution_count": 73, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.set_option('display.max_colwidth', 300)\n", + "results_df" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06c - Topic Modeling with scikit-learn.ipynb b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06c - Topic Modeling with scikit-learn.ipynb new file mode 100644 index 0000000..043a921 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06c - Topic Modeling with scikit-learn.ipynb @@ -0,0 +1,3280 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load and Pre-process Data" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['nips01', 'nips04', 'MATLAB_NOTES', 'nips10', 'nips02', 'idx', 'nips11', 'nips03', 'nips07', 'README_yann', 'nips05', 'nips12', 'nips06', 'RAW_DATA_NOTES', 'orig', 'nips00', 'nips08', 'nips09']\n" + ] + } + ], + "source": [ + "import os\n", + "import numpy as np\n", + "import pandas as pd\n", + "\n", + "DATA_PATH = 'nipstxt/'\n", + "print(os.listdir(DATA_PATH))" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1740" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "folders = [\"nips{0:02}\".format(i) for i in range(0,13)]\n", + "# Read all texts into a list.\n", + "papers = []\n", + "for folder in folders:\n", + " file_names = os.listdir(DATA_PATH + folder)\n", + " for file_name in file_names:\n", + " with open(DATA_PATH + folder + '/' + file_name, encoding='utf-8', errors='ignore', mode='r+') as f:\n", + " data = f.read()\n", + " papers.append(data)\n", + "len(papers)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "652 \n", + "Scaling Properties of Coarse-Coded Symbol Memories \n", + "Ronald Rosenfeld \n", + "David S. Touretzky \n", + "Computer Science Department \n", + "Carnegie Mellon University \n", + "Pittsburgh, Pennsylvania 15213 \n", + "Abstract\n", + "Coarse-coded symbol memories have appeared in several neural network \n", + "symbol processing models. In order to determine how these models would scale, one \n", + "must first have some understanding of the mathematics of coarse-coded representa- \n", + "tions. We define the general structure of coarse-coded symbol memories and derive \n", + "mathematical relationships among their essential parameters: memort size, slmbol-set \n", + "size and capacitor. The computed capacity of one of the schemes agrees well with actual \n", + "measurements of the coarse-coded working memory of DCPS, Touretzky and Hinton's \n", + "distributed connectionist production system. \n", + "1 Introduction \n", + "A dstributed representation is a memory scheme in which each entity (concept, symbol) \n", + "is represented by a pattern of activity over many units [3]. If each unit partic\n" + ] + } + ], + "source": [ + "print(papers[0][:1000])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Basic Text Wrangling" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1740\n", + "CPU times: user 39.8 s, sys: 159 ms, total: 40 s\n", + "Wall time: 40 s\n" + ] + } + ], + "source": [ + "%%time\n", + "import nltk\n", + "\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "wtk = nltk.tokenize.RegexpTokenizer(r'\\w+')\n", + "wnl = nltk.stem.wordnet.WordNetLemmatizer()\n", + "\n", + "def normalize_corpus(papers):\n", + " norm_papers = []\n", + " for paper in papers:\n", + " paper = paper.lower()\n", + " paper_tokens = [token.strip() for token in wtk.tokenize(paper)]\n", + " paper_tokens = [wnl.lemmatize(token) for token in paper_tokens if not token.isnumeric()]\n", + " paper_tokens = [token for token in paper_tokens if len(token) > 1]\n", + " paper_tokens = [token for token in paper_tokens if token not in stop_words]\n", + " paper_tokens = list(filter(None, paper_tokens))\n", + " if paper_tokens:\n", + " norm_papers.append(paper_tokens)\n", + " \n", + " return norm_papers\n", + " \n", + "norm_papers = normalize_corpus(papers)\n", + "print(len(norm_papers))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Text Representation with Feature Engineering" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1740, 14408)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "cv = CountVectorizer(min_df=20, max_df=0.6, ngram_range=(1,2),\n", + " token_pattern=None, tokenizer=lambda doc: doc,\n", + " preprocessor=lambda doc: doc)\n", + "cv_features = cv.fit_transform(norm_papers)\n", + "cv_features.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Vocabulary Size: 14408\n" + ] + } + ], + "source": [ + "vocabulary = np.array(cv.get_feature_names())\n", + "print('Total Vocabulary Size:', len(vocabulary))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Topic Models with Latent Semantic Indexing (LSI)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 15min 25s, sys: 1min 3s, total: 16min 28s\n", + "Wall time: 1min 1s\n" + ] + } + ], + "source": [ + "%%time\n", + "from sklearn.decomposition import TruncatedSVD\n", + "\n", + "TOTAL_TOPICS = 20\n", + "\n", + "lsi_model = TruncatedSVD(n_components=TOTAL_TOPICS, n_iter=500, random_state=42)\n", + "document_topics = lsi_model.fit_transform(cv_features)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(20, 14408)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "topic_terms = lsi_model.components_\n", + "topic_terms.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "==================================================\n", + "Direction 1: [('state', 0.221), ('neuron', 0.169), ('image', 0.138), ('cell', 0.13), ('layer', 0.13), ('feature', 0.127), ('probability', 0.121), ('hidden', 0.114), ('distribution', 0.105), ('rate', 0.098), ('signal', 0.095), ('task', 0.093), ('class', 0.092), ('noise', 0.09), ('net', 0.089), ('recognition', 0.089), ('representation', 0.088), ('field', 0.082), ('rule', 0.082), ('step', 0.08)]\n", + "--------------------------------------------------\n", + "Direction 2: []\n", + "--------------------------------------------------\n", + "\n", + "Topic #2:\n", + "==================================================\n", + "Direction 1: [('cell', 0.417), ('neuron', 0.39), ('response', 0.175), ('stimulus', 0.155), ('visual', 0.131), ('spike', 0.13), ('firing', 0.117), ('synaptic', 0.11), ('activity', 0.104), ('cortex', 0.097), ('field', 0.085), ('frequency', 0.085), ('direction', 0.082), ('circuit', 0.082), ('motion', 0.082)]\n", + "--------------------------------------------------\n", + "Direction 2: [('state', -0.289), ('probability', -0.109), ('hidden', -0.098), ('class', -0.091), ('policy', -0.081)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #3:\n", + "==================================================\n", + "Direction 1: [('state', 0.574), ('neuron', 0.212), ('action', 0.187), ('policy', 0.149), ('control', 0.12), ('dynamic', 0.1), ('cell', 0.083), ('reinforcement', 0.081), ('optimal', 0.075), ('reinforcement learning', 0.068)]\n", + "--------------------------------------------------\n", + "Direction 2: [('image', -0.364), ('feature', -0.223), ('object', -0.144), ('recognition', -0.143), ('classifier', -0.111), ('class', -0.106), ('layer', -0.092), ('classification', -0.085), ('face', -0.073), ('test', -0.069)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #4:\n", + "==================================================\n", + "Direction 1: [('image', 0.425), ('state', 0.326), ('object', 0.215), ('feature', 0.159), ('action', 0.147), ('visual', 0.143), ('control', 0.126), ('task', 0.111), ('policy', 0.103), ('recognition', 0.103), ('face', 0.092), ('representation', 0.086), ('motion', 0.086)]\n", + "--------------------------------------------------\n", + "Direction 2: [('neuron', -0.216), ('distribution', -0.166), ('class', -0.112), ('bound', -0.109), ('probability', -0.108), ('spike', -0.104), ('variable', -0.087)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #5:\n", + "==================================================\n", + "Direction 1: [('layer', 0.261), ('net', 0.225), ('hidden', 0.222), ('neuron', 0.216), ('word', 0.206), ('recognition', 0.17), ('speech', 0.152), ('hidden unit', 0.11), ('architecture', 0.102), ('task', 0.094), ('activation', 0.092), ('memory', 0.091)]\n", + "--------------------------------------------------\n", + "Direction 2: [('cell', -0.227), ('distribution', -0.222), ('image', -0.175), ('gaussian', -0.125), ('variable', -0.112), ('density', -0.108), ('probability', -0.099), ('approximation', -0.091)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #6:\n", + "==================================================\n", + "Direction 1: [('cell', 0.548), ('layer', 0.139), ('word', 0.124), ('hidden', 0.111), ('classifier', 0.097), ('direction', 0.09), ('head', 0.078), ('rule', 0.073), ('rat', 0.073), ('speech', 0.071)]\n", + "--------------------------------------------------\n", + "Direction 2: [('neuron', -0.416), ('image', -0.336), ('circuit', -0.126), ('noise', -0.124), ('chip', -0.121), ('analog', -0.099), ('object', -0.09), ('spike', -0.075), ('signal', -0.071), ('voltage', -0.069)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #7:\n", + "==================================================\n", + "Direction 1: [('word', 0.294), ('recognition', 0.252), ('speech', 0.213), ('probability', 0.194), ('classifier', 0.181), ('spike', 0.179), ('state', 0.162), ('class', 0.14), ('neuron', 0.136), ('rate', 0.123), ('hmm', 0.119), ('feature', 0.112), ('classification', 0.097), ('speaker', 0.093), ('cell', 0.091)]\n", + "--------------------------------------------------\n", + "Direction 2: [('hidden', -0.207), ('layer', -0.179), ('hidden unit', -0.16), ('net', -0.136), ('field', -0.117)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #8:\n", + "==================================================\n", + "Direction 1: [('signal', 0.278), ('noise', 0.208), ('speech', 0.197), ('word', 0.165), ('hidden', 0.123), ('control', 0.117), ('motion', 0.116), ('filter', 0.108), ('frequency', 0.102)]\n", + "--------------------------------------------------\n", + "Direction 2: [('classifier', -0.225), ('node', -0.21), ('class', -0.197), ('feature', -0.186), ('neuron', -0.177), ('tree', -0.162), ('cell', -0.133), ('image', -0.119), ('rule', -0.115), ('object', -0.106), ('decision', -0.103)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #9:\n", + "==================================================\n", + "Direction 1: [('circuit', 0.244), ('control', 0.242), ('classifier', 0.229), ('chip', 0.167), ('node', 0.137), ('current', 0.132), ('analog', 0.13), ('voltage', 0.129), ('signal', 0.118), ('controller', 0.088)]\n", + "--------------------------------------------------\n", + "Direction 2: [('hidden', -0.27), ('neuron', -0.247), ('state', -0.175), ('distribution', -0.158), ('hidden unit', -0.143), ('layer', -0.125), ('object', -0.115), ('probability', -0.108), ('image', -0.1), ('representation', -0.098)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #10:\n", + "==================================================\n", + "Direction 1: [('circuit', 0.245), ('cell', 0.225), ('node', 0.211), ('state', 0.183), ('image', 0.166), ('chip', 0.163), ('analog', 0.147), ('layer', 0.144), ('net', 0.12), ('voltage', 0.115)]\n", + "--------------------------------------------------\n", + "Direction 2: [('task', -0.201), ('rule', -0.193), ('spike', -0.166), ('feature', -0.165), ('control', -0.157), ('neuron', -0.144), ('rate', -0.134), ('stimulus', -0.116), ('classifier', -0.116), ('action', -0.112)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #11:\n", + "==================================================\n", + "Direction 1: [('image', 0.315), ('cell', 0.225), ('hidden', 0.205), ('spike', 0.192), ('noise', 0.163), ('rate', 0.141), ('hidden unit', 0.141), ('rule', 0.138), ('signal', 0.119), ('net', 0.111)]\n", + "--------------------------------------------------\n", + "Direction 2: [('field', -0.203), ('object', -0.2), ('word', -0.184), ('node', -0.161), ('motion', -0.136), ('visual', -0.134), ('neuron', -0.128), ('structure', -0.121), ('tree', -0.119), ('map', -0.107)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #12:\n", + "==================================================\n", + "Direction 1: [('rule', 0.581), ('representation', 0.156), ('word', 0.146), ('memory', 0.137), ('structure', 0.125), ('matrix', 0.108), ('cell', 0.086)]\n", + "--------------------------------------------------\n", + "Direction 2: [('classifier', -0.293), ('layer', -0.17), ('hidden', -0.16), ('motion', -0.129), ('neuron', -0.129), ('field', -0.12), ('class', -0.109), ('visual', -0.101), ('net', -0.092), ('state', -0.085), ('region', -0.084), ('hidden unit', -0.076), ('stimulus', -0.076)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #13:\n", + "==================================================\n", + "Direction 1: [('node', 0.396), ('tree', 0.262), ('spike', 0.226), ('stimulus', 0.208), ('signal', 0.169), ('representation', 0.147), ('motion', 0.142), ('response', 0.138), ('frequency', 0.109), ('visual', 0.1), ('rate', 0.097)]\n", + "--------------------------------------------------\n", + "Direction 2: [('cell', -0.231), ('feature', -0.157), ('neuron', -0.147), ('control', -0.13), ('matrix', -0.119), ('word', -0.114), ('recognition', -0.113), ('distance', -0.104), ('equation', -0.098)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #14:\n", + "==================================================\n", + "Direction 1: [('feature', 0.506), ('noise', 0.196), ('map', 0.171), ('signal', 0.133), ('classifier', 0.129), ('state', 0.124), ('memory', 0.122), ('orientation', 0.109), ('component', 0.103)]\n", + "--------------------------------------------------\n", + "Direction 2: [('image', -0.254), ('control', -0.187), ('word', -0.162), ('recognition', -0.132), ('neuron', -0.131), ('object', -0.113), ('rate', -0.105), ('character', -0.099), ('probability', -0.096), ('bound', -0.089), ('rule', -0.086)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #15:\n", + "==================================================\n", + "Direction 1: [('rule', 0.365), ('classifier', 0.365), ('mixture', 0.171), ('node', 0.156), ('gaussian', 0.148), ('layer', 0.128), ('neuron', 0.114), ('field', 0.109), ('control', 0.108), ('image', 0.104), ('component', 0.098)]\n", + "--------------------------------------------------\n", + "Direction 2: [('bound', -0.189), ('word', -0.156), ('feature', -0.136), ('threshold', -0.135), ('object', -0.125), ('representation', -0.118), ('size', -0.117), ('task', -0.098), ('theorem', -0.097)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #16:\n", + "==================================================\n", + "Direction 1: [('object', 0.291), ('control', 0.206), ('mixture', 0.178), ('feature', 0.158), ('task', 0.132), ('cell', 0.13), ('variable', 0.125), ('expert', 0.117), ('current', 0.117), ('circuit', 0.115), ('tree', 0.101), ('distribution', 0.098)]\n", + "--------------------------------------------------\n", + "Direction 2: [('word', -0.21), ('field', -0.172), ('rule', -0.138), ('rate', -0.121), ('motion', -0.116), ('character', -0.108), ('orientation', -0.107), ('image', -0.104)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #17:\n", + "==================================================\n", + "Direction 1: [('rule', 0.372), ('motion', 0.325), ('circuit', 0.193), ('direction', 0.175), ('neuron', 0.153), ('chip', 0.127), ('task', 0.123), ('visual', 0.113), ('velocity', 0.092), ('action', 0.091)]\n", + "--------------------------------------------------\n", + "Direction 2: [('memory', -0.231), ('node', -0.215), ('control', -0.182), ('dynamic', -0.148), ('spike', -0.128), ('rate', -0.116), ('matrix', -0.108), ('noise', -0.103), ('fig', -0.097), ('cell', -0.093)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #18:\n", + "==================================================\n", + "Direction 1: [('object', 0.419), ('signal', 0.26), ('layer', 0.258), ('rule', 0.209), ('feature', 0.164), ('view', 0.162), ('net', 0.113), ('noise', 0.112), ('bound', 0.105), ('speech', 0.1)]\n", + "--------------------------------------------------\n", + "Direction 2: [('memory', -0.18), ('task', -0.161), ('representation', -0.14), ('hidden', -0.137), ('image', -0.135), ('hidden unit', -0.121), ('tree', -0.117), ('structure', -0.094), ('test', -0.093), ('word', -0.092)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #19:\n", + "==================================================\n", + "Direction 1: [('class', 0.287), ('memory', 0.275), ('classifier', 0.144), ('response', 0.139), ('sequence', 0.112), ('component', 0.11), ('stimulus', 0.101), ('region', 0.092), ('bound', 0.088)]\n", + "--------------------------------------------------\n", + "Direction 2: [('node', -0.292), ('feature', -0.244), ('field', -0.202), ('rate', -0.152), ('word', -0.146), ('spike', -0.139), ('map', -0.132), ('character', -0.127), ('policy', -0.108), ('tree', -0.092), ('noise', -0.088)]\n", + "--------------------------------------------------\n", + "\n", + "Topic #20:\n", + "==================================================\n", + "Direction 1: [('map', 0.222), ('control', 0.2), ('region', 0.181), ('ii', 0.145), ('feature', 0.132), ('image', 0.122), ('bound', 0.11), ('orientation', 0.109), ('rule', 0.109), ('threshold', 0.094), ('class', 0.092)]\n", + "--------------------------------------------------\n", + "Direction 2: [('object', -0.31), ('motion', -0.252), ('direction', -0.229), ('memory', -0.223), ('classifier', -0.193), ('view', -0.136), ('matrix', -0.13), ('rate', -0.121), ('distance', -0.11)]\n", + "--------------------------------------------------\n", + "\n" + ] + } + ], + "source": [ + "top_terms = 20\n", + "topic_key_term_idxs = np.argsort(-np.absolute(topic_terms), axis=1)[:, :top_terms]\n", + "topic_keyterm_weights = np.array([topic_terms[row, columns] \n", + " for row, columns in list(zip(np.arange(TOTAL_TOPICS), topic_key_term_idxs))])\n", + "topic_keyterms = vocabulary[topic_key_term_idxs]\n", + "topic_keyterms_weights = list(zip(topic_keyterms, topic_keyterm_weights))\n", + "for n in range(TOTAL_TOPICS):\n", + " print('Topic #'+str(n+1)+':')\n", + " print('='*50)\n", + " d1 = []\n", + " d2 = []\n", + " terms, weights = topic_keyterms_weights[n]\n", + " term_weights = sorted([(t, w) for t, w in zip(terms, weights)], \n", + " key=lambda row: -abs(row[1]))\n", + " for term, wt in term_weights:\n", + " if wt >= 0:\n", + " d1.append((term, round(wt, 3)))\n", + " else:\n", + " d2.append((term, round(wt, 3)))\n", + "\n", + " print('Direction 1:', d1)\n", + " print('-'*50)\n", + " print('Direction 2:', d2)\n", + " print('-'*50)\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...1730173117321733173417351736173717381739
T134.98228.54225.90734.16344.592108.12724.2099.86343.86730.974...26.53051.69722.31939.65637.70042.73822.21926.26232.83144.796
T2-5.852-1.01318.40634.2959.328124.26716.700-1.87149.2511.370...-13.144-4.074-7.387-17.564-11.74941.314-5.562-6.2121.31241.708
T31.41010.8893.165-5.64210.17020.19011.138-1.27217.976-15.393...-8.551-51.893-3.767-4.917-0.491-5.136-5.486-18.2486.8817.501
T4-6.324-4.1242.86212.258-0.979-6.059-6.440-3.087-9.03512.518...-9.46449.427-6.691-20.647-14.67411.011-2.0551.5092.634-12.566
T53.7412.9860.767-6.996-7.441-28.59211.7263.4550.471-12.691...-5.500-21.342-7.650-26.803-16.937-20.949-1.934-0.972-19.4161.184
T6-3.479-8.3862.63420.38220.870124.431-14.8950.6727.873-13.965...3.976-33.519-0.643-4.786-6.35216.011-2.6381.39215.578-18.402
T7-9.397-6.295-3.280-11.858-1.96311.538-1.289-3.8616.792-5.678...12.96214.565-2.7141.8835.691-0.6361.3082.477-1.71529.722
T8-14.575-3.000-1.043-1.868-19.290-35.256-6.6770.189-14.8353.065...-1.531-11.503-4.12122.62928.148-17.6735.222-11.032-0.81832.775
T9-1.051-3.5570.694-6.498-2.187-6.040-3.9790.098-6.4262.538...1.861-9.0457.977-9.376-6.113-5.2742.863-1.993-1.68622.510
T101.7581.996-8.66310.10827.03728.986-4.8391.068-4.5214.474...-2.4624.377-5.835-3.0055.6217.271-0.363-15.3184.018-1.234
T11-13.387-2.227-6.642-15.198-0.02652.437-8.1591.714-0.2979.864...-8.34130.282-1.4273.7884.6544.525-5.7050.127-2.84028.388
T1218.9723.014-2.120-8.1303.86044.542-0.532-0.4730.3200.930...7.01811.1403.283-2.10615.821-13.83713.0282.5231.8692.264
T130.862-9.514-0.1575.1509.025-20.882-5.257-1.425-10.169-0.960...-5.1065.355-8.155-3.5095.128-8.875-5.253-9.501-7.42239.037
T1411.769-0.9140.316-1.705-3.632-15.151-3.593-0.770-7.154-5.271...-1.385-8.8360.1828.45912.415-0.1692.79031.5553.72110.198
T15-17.4195.586-0.5813.8474.443-5.5495.545-1.4900.5712.809...-4.40512.439-8.0378.06015.974-5.808-4.523-14.4120.235-13.658
T16-12.213-6.1771.563-6.3412.28527.8764.732-0.2109.721-10.141...-0.902-11.936-6.75711.2622.770-25.380-2.38612.2457.2740.568
T17-18.585-2.763-0.49610.605-16.839-14.887-0.128-0.182-3.819-4.649...4.494-10.0544.3024.390-1.295-13.236-1.6783.280-0.878-13.707
T18-12.8487.486-8.3350.4935.07915.669-6.052-0.120-11.230-0.579...-3.699-24.1942.532-0.17712.251-8.193-2.6015.075-2.32311.345
T1918.8853.5594.630-2.531-11.83120.8363.319-0.5575.287-1.905...7.21222.311-1.514-5.8623.24918.5300.712-16.380-7.774-2.067
T20-16.822-1.3666.807-8.2223.332-1.283-3.011-0.3992.7180.907...-0.531-0.725-4.4150.537-0.52955.384-7.9296.5375.4760.848
\n", + "

20 rows × 1740 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 \\\n", + "T1 34.982 28.542 25.907 34.163 44.592 108.127 24.209 9.863 43.867 \n", + "T2 -5.852 -1.013 18.406 34.295 9.328 124.267 16.700 -1.871 49.251 \n", + "T3 1.410 10.889 3.165 -5.642 10.170 20.190 11.138 -1.272 17.976 \n", + "T4 -6.324 -4.124 2.862 12.258 -0.979 -6.059 -6.440 -3.087 -9.035 \n", + "T5 3.741 2.986 0.767 -6.996 -7.441 -28.592 11.726 3.455 0.471 \n", + "T6 -3.479 -8.386 2.634 20.382 20.870 124.431 -14.895 0.672 7.873 \n", + "T7 -9.397 -6.295 -3.280 -11.858 -1.963 11.538 -1.289 -3.861 6.792 \n", + "T8 -14.575 -3.000 -1.043 -1.868 -19.290 -35.256 -6.677 0.189 -14.835 \n", + "T9 -1.051 -3.557 0.694 -6.498 -2.187 -6.040 -3.979 0.098 -6.426 \n", + "T10 1.758 1.996 -8.663 10.108 27.037 28.986 -4.839 1.068 -4.521 \n", + "T11 -13.387 -2.227 -6.642 -15.198 -0.026 52.437 -8.159 1.714 -0.297 \n", + "T12 18.972 3.014 -2.120 -8.130 3.860 44.542 -0.532 -0.473 0.320 \n", + "T13 0.862 -9.514 -0.157 5.150 9.025 -20.882 -5.257 -1.425 -10.169 \n", + "T14 11.769 -0.914 0.316 -1.705 -3.632 -15.151 -3.593 -0.770 -7.154 \n", + "T15 -17.419 5.586 -0.581 3.847 4.443 -5.549 5.545 -1.490 0.571 \n", + "T16 -12.213 -6.177 1.563 -6.341 2.285 27.876 4.732 -0.210 9.721 \n", + "T17 -18.585 -2.763 -0.496 10.605 -16.839 -14.887 -0.128 -0.182 -3.819 \n", + "T18 -12.848 7.486 -8.335 0.493 5.079 15.669 -6.052 -0.120 -11.230 \n", + "T19 18.885 3.559 4.630 -2.531 -11.831 20.836 3.319 -0.557 5.287 \n", + "T20 -16.822 -1.366 6.807 -8.222 3.332 -1.283 -3.011 -0.399 2.718 \n", + "\n", + " 9 ... 1730 1731 1732 1733 1734 1735 1736 \\\n", + "T1 30.974 ... 26.530 51.697 22.319 39.656 37.700 42.738 22.219 \n", + "T2 1.370 ... -13.144 -4.074 -7.387 -17.564 -11.749 41.314 -5.562 \n", + "T3 -15.393 ... -8.551 -51.893 -3.767 -4.917 -0.491 -5.136 -5.486 \n", + "T4 12.518 ... -9.464 49.427 -6.691 -20.647 -14.674 11.011 -2.055 \n", + "T5 -12.691 ... -5.500 -21.342 -7.650 -26.803 -16.937 -20.949 -1.934 \n", + "T6 -13.965 ... 3.976 -33.519 -0.643 -4.786 -6.352 16.011 -2.638 \n", + "T7 -5.678 ... 12.962 14.565 -2.714 1.883 5.691 -0.636 1.308 \n", + "T8 3.065 ... -1.531 -11.503 -4.121 22.629 28.148 -17.673 5.222 \n", + "T9 2.538 ... 1.861 -9.045 7.977 -9.376 -6.113 -5.274 2.863 \n", + "T10 4.474 ... -2.462 4.377 -5.835 -3.005 5.621 7.271 -0.363 \n", + "T11 9.864 ... -8.341 30.282 -1.427 3.788 4.654 4.525 -5.705 \n", + "T12 0.930 ... 7.018 11.140 3.283 -2.106 15.821 -13.837 13.028 \n", + "T13 -0.960 ... -5.106 5.355 -8.155 -3.509 5.128 -8.875 -5.253 \n", + "T14 -5.271 ... -1.385 -8.836 0.182 8.459 12.415 -0.169 2.790 \n", + "T15 2.809 ... -4.405 12.439 -8.037 8.060 15.974 -5.808 -4.523 \n", + "T16 -10.141 ... -0.902 -11.936 -6.757 11.262 2.770 -25.380 -2.386 \n", + "T17 -4.649 ... 4.494 -10.054 4.302 4.390 -1.295 -13.236 -1.678 \n", + "T18 -0.579 ... -3.699 -24.194 2.532 -0.177 12.251 -8.193 -2.601 \n", + "T19 -1.905 ... 7.212 22.311 -1.514 -5.862 3.249 18.530 0.712 \n", + "T20 0.907 ... -0.531 -0.725 -4.415 0.537 -0.529 55.384 -7.929 \n", + "\n", + " 1737 1738 1739 \n", + "T1 26.262 32.831 44.796 \n", + "T2 -6.212 1.312 41.708 \n", + "T3 -18.248 6.881 7.501 \n", + "T4 1.509 2.634 -12.566 \n", + "T5 -0.972 -19.416 1.184 \n", + "T6 1.392 15.578 -18.402 \n", + "T7 2.477 -1.715 29.722 \n", + "T8 -11.032 -0.818 32.775 \n", + "T9 -1.993 -1.686 22.510 \n", + "T10 -15.318 4.018 -1.234 \n", + "T11 0.127 -2.840 28.388 \n", + "T12 2.523 1.869 2.264 \n", + "T13 -9.501 -7.422 39.037 \n", + "T14 31.555 3.721 10.198 \n", + "T15 -14.412 0.235 -13.658 \n", + "T16 12.245 7.274 0.568 \n", + "T17 3.280 -0.878 -13.707 \n", + "T18 5.075 -2.323 11.345 \n", + "T19 -16.380 -7.774 -2.067 \n", + "T20 6.537 5.476 0.848 \n", + "\n", + "[20 rows x 1740 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dt_df = pd.DataFrame(np.round(document_topics, 3), \n", + " columns=['T'+str(i) for i in range(1, TOTAL_TOPICS+1)])\n", + "dt_df.T" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Document #13:\n", + "Dominant Topics (top 3): ['T1', 'T6', 'T4']\n", + "Paper Summary:\n", + "9 \n", + "Stochastic Learning Networks and their Electronic Implementation \n", + "Joshua Alspector*, Robert B. Allen, Victor Hut, and Srinagesh Satyanarayana \n", + "Bell Communications Research, Morristown, NJ 07960 \n", + "ABSTRACT\n", + "We describe a family of learning algorithms that operate on a recurrent, symmetrically \n", + "connected, neuromorphic network that, like the Boltzmann machine, settles in the \n", + "presence of noise. These networks learn by modifying synaptic connection strengths on \n", + "the basis of correlations seen loca\n", + "\n", + "Document #250:\n", + "Dominant Topics (top 3): ['T3', 'T18', 'T4']\n", + "Paper Summary:\n", + "266 Zemel, Mozer and Hinton \n", + "TRAFFIC: Recognizing Objects Using \n", + "Hierarchical Reference Frame Transformations \n", + "Richard S. Zemel \n", + "Computer Science Dept. \n", + "University of Toronto \n", + "Toronto, ONT M5S 1A4 \n", + "Michael C. Mozer \n", + "Computer Science Dept. \n", + "University of Colorado \n", + "Boulder, CO 80309-0430 \n", + "Geoffrey E. Hinton \n", + "Computer Science Dept. \n", + "University of Toronto \n", + "Toronto, ONT M5S 1A4 \n", + "ABSTRACT \n", + "We describe a model that can recognize two-dimensional shapes in \n", + "an unsegmented image, independent of their orie\n", + "\n", + "Document #500:\n", + "Dominant Topics (top 3): ['T9', 'T1', 'T10']\n", + "Paper Summary:\n", + "Constrained Optimization Applied to the \n", + "Parameter Setting Problem for Analog Circuits \n", + "David Kirk, Kurt Fleischer, Lloyd Watts Alan Bart \n", + "Computer Graphics 350-74 \n", + "California Institute of Technology \n", + "Pasadena, CA 91125 \n", + "Abstract \n", + "We use constrained optimization to select operating parameters for two \n", + "circuits: a simple 3-transistor square root circuit, and an analog VLSI \n", + "artificial cochlea. This automated method uses computer controlled mea- \n", + "surement and test equipment to choose chip paramet\n", + "\n" + ] + } + ], + "source": [ + "document_numbers = [13, 250, 500]\n", + "\n", + "for document_number in document_numbers:\n", + " top_topics = list(dt_df.columns[np.argsort(-np.absolute(dt_df.iloc[document_number].values))[:3]])\n", + " print('Document #'+str(document_number)+':')\n", + " print('Dominant Topics (top 3):', top_topics)\n", + " print('Paper Summary:')\n", + " print(papers[document_number][:500])\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Topic Models with Latent Dirichlet Allocation (LDA)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 13min 14s, sys: 1min 41s, total: 14min 56s\n", + "Wall time: 55min 32s\n" + ] + } + ], + "source": [ + "%%time\n", + "from sklearn.decomposition import LatentDirichletAllocation\n", + "\n", + "lda_model = LatentDirichletAllocation(n_components =TOTAL_TOPICS, max_iter=500, max_doc_update_iter=50,\n", + " learning_method='online', batch_size=1740, learning_offset=50., \n", + " random_state=42, n_jobs=16)\n", + "document_topics = lda_model.fit_transform(cv_features)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "topic_terms = lda_model.components_" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Terms per Topic
Topic1neuron, circuit, analog, chip, current, voltage, signal, threshold, bit, noise, vlsi, implementation, channel, gate, pulse, processor, element, synapse, parallel, fig
Topic2image, feature, structure, state, layer, neuron, distribution, local, cell, recognition, node, motion, matrix, net, sequence, object, gaussian, hidden, size, line
Topic3neuron, cell, image, class, state, response, rule, feature, rate, probability, representation, hidden, dynamic, et al, frequency, spike, distribution, component, level, recognition
Topic4cell, neuron, response, visual, stimulus, activity, field, spike, motion, synaptic, direction, frequency, signal, cortex, firing, orientation, spatial, eye, rate, map
Topic5image, feature, recognition, layer, hidden, task, object, speech, trained, representation, test, net, classification, classifier, class, level, architecture, experiment, node, rule
Topic6state, dynamic, rule, matrix, recurrent, equation, gradient, net, signal, fixed, sequence, node, source, attractor, hidden, structure, step, fixed point, component, activation
Topic7sequence, chain, region, structure, markov, protein, prediction, hmms, markov model, hidden markov, site, hidden, gene, class, receptor, length, human, distance, mouse, bengio
Topic8memory, word, context, similarity, item, recall, probability, phoneme, short, representation, association, activation, list, serial, short term, address, term memory, store, proximity, phone
Topic9activation, motor, behavior, winner, take, winner take, competitive, active, command, connection, movement, sensory, feedback, wta, net, sensor, body, activation function, level, self
Topic10state, cell, distribution, neuron, probability, control, response, signal, task, rate, layer, architecture, random, hidden, test, image, change, fig, generalization, field
Topic11generalization, face, hidden unit, hidden, capacity, teacher, pca, student, generalization error, solution, principal, committee, phase, image, limit, correlation, average, line, training set, principal component
Topic12feature, image, distribution, neuron, class, state, hidden, probability, node, layer, equation, size, prediction, line, rate, matrix, et, signal, noise, recognition
Topic13image, state, cell, object, rule, layer, et al, step, distribution, ii, neuron, visual, signal, field, dynamic, feature, probability, matrix, et, map
Topic14neuron, map, state, cell, rate, hidden, field, equation, probability, node, representation, signal, layer, dynamic, et al, noise, test, sequence, recognition, prediction
Topic15distribution, probability, variable, class, approximation, gaussian, sample, bound, estimate, noise, matrix, let, optimal, prior, size, variance, xi, equation, prediction, density
Topic16state, neuron, rule, probability, layer, rate, image, distribution, memory, equation, signal, solution, response, theory, class, et, step, variable, feature, high
Topic17state, feature, probability, layer, image, cell, field, neuron, task, rate, recognition, dynamic, rule, control, variable, distribution, equation, net, representation, class
Topic18state, control, action, policy, reinforcement, step, task, optimal, dynamic, controller, trajectory, robot, reinforcement learning, environment, reward, path, goal, value function, decision, arm
Topic19control, state, feature, probability, architecture, hidden, neuron, task, rate, level, estimate, et, local, component, net, distribution, signal, response, dynamic, optimal
Topic20mixture, likelihood, em, cluster, clustering, density, component, log, em algorithm, maximum, code, maximum likelihood, mixture model, hmm, entropy, mi, unsupervised, gaussian, mutual, eq
\n", + "
" + ], + "text/plain": [ + " Terms per Topic\n", + "Topic1 neuron, circuit, analog, chip, current, voltage, signal, threshold, bit, noise, vlsi, implementation, channel, gate, pulse, processor, element, synapse, parallel, fig \n", + "Topic2 image, feature, structure, state, layer, neuron, distribution, local, cell, recognition, node, motion, matrix, net, sequence, object, gaussian, hidden, size, line \n", + "Topic3 neuron, cell, image, class, state, response, rule, feature, rate, probability, representation, hidden, dynamic, et al, frequency, spike, distribution, component, level, recognition \n", + "Topic4 cell, neuron, response, visual, stimulus, activity, field, spike, motion, synaptic, direction, frequency, signal, cortex, firing, orientation, spatial, eye, rate, map \n", + "Topic5 image, feature, recognition, layer, hidden, task, object, speech, trained, representation, test, net, classification, classifier, class, level, architecture, experiment, node, rule \n", + "Topic6 state, dynamic, rule, matrix, recurrent, equation, gradient, net, signal, fixed, sequence, node, source, attractor, hidden, structure, step, fixed point, component, activation \n", + "Topic7 sequence, chain, region, structure, markov, protein, prediction, hmms, markov model, hidden markov, site, hidden, gene, class, receptor, length, human, distance, mouse, bengio \n", + "Topic8 memory, word, context, similarity, item, recall, probability, phoneme, short, representation, association, activation, list, serial, short term, address, term memory, store, proximity, phone \n", + "Topic9 activation, motor, behavior, winner, take, winner take, competitive, active, command, connection, movement, sensory, feedback, wta, net, sensor, body, activation function, level, self \n", + "Topic10 state, cell, distribution, neuron, probability, control, response, signal, task, rate, layer, architecture, random, hidden, test, image, change, fig, generalization, field \n", + "Topic11 generalization, face, hidden unit, hidden, capacity, teacher, pca, student, generalization error, solution, principal, committee, phase, image, limit, correlation, average, line, training set, principal component\n", + "Topic12 feature, image, distribution, neuron, class, state, hidden, probability, node, layer, equation, size, prediction, line, rate, matrix, et, signal, noise, recognition \n", + "Topic13 image, state, cell, object, rule, layer, et al, step, distribution, ii, neuron, visual, signal, field, dynamic, feature, probability, matrix, et, map \n", + "Topic14 neuron, map, state, cell, rate, hidden, field, equation, probability, node, representation, signal, layer, dynamic, et al, noise, test, sequence, recognition, prediction \n", + "Topic15 distribution, probability, variable, class, approximation, gaussian, sample, bound, estimate, noise, matrix, let, optimal, prior, size, variance, xi, equation, prediction, density \n", + "Topic16 state, neuron, rule, probability, layer, rate, image, distribution, memory, equation, signal, solution, response, theory, class, et, step, variable, feature, high \n", + "Topic17 state, feature, probability, layer, image, cell, field, neuron, task, rate, recognition, dynamic, rule, control, variable, distribution, equation, net, representation, class \n", + "Topic18 state, control, action, policy, reinforcement, step, task, optimal, dynamic, controller, trajectory, robot, reinforcement learning, environment, reward, path, goal, value function, decision, arm \n", + "Topic19 control, state, feature, probability, architecture, hidden, neuron, task, rate, level, estimate, et, local, component, net, distribution, signal, response, dynamic, optimal \n", + "Topic20 mixture, likelihood, em, cluster, clustering, density, component, log, em algorithm, maximum, code, maximum likelihood, mixture model, hmm, entropy, mi, unsupervised, gaussian, mutual, eq " + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "topic_key_term_idxs = np.argsort(-np.absolute(topic_terms), axis=1)[:, :top_terms]\n", + "topic_keyterms = vocabulary[topic_key_term_idxs]\n", + "topics = [', '.join(topic) for topic in topic_keyterms]\n", + "pd.set_option('display.max_colwidth', -1)\n", + "topics_df = pd.DataFrame(topics,\n", + " columns = ['Terms per Topic'],\n", + " index=['Topic'+str(t) for t in range(1, TOTAL_TOPICS+1)])\n", + "topics_df" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...1730173117321733173417351736173717381739
T10.0110.1370.0170.0000.2190.0340.4770.2180.1200.063...0.0000.0000.0000.0000.0000.0000.1150.0000.0000.482
T20.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T30.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T40.0280.0000.6630.7730.2620.8020.0300.0000.7860.269...0.0000.1070.0000.0000.0000.9990.0000.0000.1300.518
T50.2270.0350.0450.2120.0240.0860.0860.3700.0890.402...0.2100.5910.0430.0070.0190.0000.4310.4660.0000.000
T60.4460.5790.0000.0000.2380.0220.1020.0220.0000.036...0.0000.0940.0000.0000.3300.0000.1620.0000.0000.000
T70.0000.0000.0260.0150.0080.0000.0000.0000.0050.000...0.0000.0000.0000.0030.0020.0000.0000.0000.0030.000
T80.0620.0000.0000.0000.0000.0170.0410.0130.0000.000...0.0400.0000.0000.0000.0000.0000.0140.0000.0000.000
T90.0000.0250.1130.0000.0000.0210.1160.0000.0000.000...0.0030.0000.0000.0000.0000.0000.0150.0000.0000.000
T100.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T110.0370.0020.0260.0000.0000.0000.0000.0420.0000.000...0.0000.1700.0000.0110.0000.0000.0000.0740.0000.000
T120.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T130.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T140.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T150.1830.2220.0000.0000.1910.0040.0000.3330.0000.225...0.7100.0280.9370.9070.5970.0000.2380.4460.4030.000
T160.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T170.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T180.0000.0000.1090.0000.0570.0080.1460.0000.0000.004...0.0190.0000.0190.0370.0000.0000.0140.0000.4330.000
T190.0000.0000.0000.0000.0000.0000.0000.0000.0000.000...0.0000.0000.0000.0000.0000.0000.0000.0000.0000.000
T200.0060.0000.0000.0000.0000.0040.0000.0000.0000.000...0.0180.0090.0000.0340.0510.0000.0100.0140.0300.000
\n", + "

20 rows × 1740 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 9 ... 1730 \\\n", + "T1 0.011 0.137 0.017 0.000 0.219 0.034 0.477 0.218 0.120 0.063 ... 0.000 \n", + "T2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T4 0.028 0.000 0.663 0.773 0.262 0.802 0.030 0.000 0.786 0.269 ... 0.000 \n", + "T5 0.227 0.035 0.045 0.212 0.024 0.086 0.086 0.370 0.089 0.402 ... 0.210 \n", + "T6 0.446 0.579 0.000 0.000 0.238 0.022 0.102 0.022 0.000 0.036 ... 0.000 \n", + "T7 0.000 0.000 0.026 0.015 0.008 0.000 0.000 0.000 0.005 0.000 ... 0.000 \n", + "T8 0.062 0.000 0.000 0.000 0.000 0.017 0.041 0.013 0.000 0.000 ... 0.040 \n", + "T9 0.000 0.025 0.113 0.000 0.000 0.021 0.116 0.000 0.000 0.000 ... 0.003 \n", + "T10 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T11 0.037 0.002 0.026 0.000 0.000 0.000 0.000 0.042 0.000 0.000 ... 0.000 \n", + "T12 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T13 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T14 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T15 0.183 0.222 0.000 0.000 0.191 0.004 0.000 0.333 0.000 0.225 ... 0.710 \n", + "T16 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T17 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T18 0.000 0.000 0.109 0.000 0.057 0.008 0.146 0.000 0.000 0.004 ... 0.019 \n", + "T19 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 ... 0.000 \n", + "T20 0.006 0.000 0.000 0.000 0.000 0.004 0.000 0.000 0.000 0.000 ... 0.018 \n", + "\n", + " 1731 1732 1733 1734 1735 1736 1737 1738 1739 \n", + "T1 0.000 0.000 0.000 0.000 0.000 0.115 0.000 0.000 0.482 \n", + "T2 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T3 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T4 0.107 0.000 0.000 0.000 0.999 0.000 0.000 0.130 0.518 \n", + "T5 0.591 0.043 0.007 0.019 0.000 0.431 0.466 0.000 0.000 \n", + "T6 0.094 0.000 0.000 0.330 0.000 0.162 0.000 0.000 0.000 \n", + "T7 0.000 0.000 0.003 0.002 0.000 0.000 0.000 0.003 0.000 \n", + "T8 0.000 0.000 0.000 0.000 0.000 0.014 0.000 0.000 0.000 \n", + "T9 0.000 0.000 0.000 0.000 0.000 0.015 0.000 0.000 0.000 \n", + "T10 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T11 0.170 0.000 0.011 0.000 0.000 0.000 0.074 0.000 0.000 \n", + "T12 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T13 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T14 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T15 0.028 0.937 0.907 0.597 0.000 0.238 0.446 0.403 0.000 \n", + "T16 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T17 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T18 0.000 0.019 0.037 0.000 0.000 0.014 0.000 0.433 0.000 \n", + "T19 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "T20 0.009 0.000 0.034 0.051 0.000 0.010 0.014 0.030 0.000 \n", + "\n", + "[20 rows x 1740 columns]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.options.display.float_format = '{:,.3f}'.format\n", + "dt_df = pd.DataFrame(document_topics, \n", + " columns=['T'+str(i) for i in range(1, TOTAL_TOPICS+1)])\n", + "dt_df.T" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Dominant TopicContribution %Paper NumTopicPaper Name
Topic1T10.999381122neuron, circuit, analog, chip, current, voltage, signal, threshold, bit, noise, vlsi, implementation, channel, gate, pulse, processor, element, synapse, parallel, figImproved Silicon Cochlea \\nusing \\nCompatible Lateral Bipolar Transistors \\nAndr6 van Schaik, Eric Fragnire, Eric Vittoz \\nMANTRA Center for Neuromimetic Systems \\nSwiss Federal Institute of Tech...
Topic2T20.00033151image, feature, structure, state, layer, neuron, distribution, local, cell, recognition, node, motion, matrix, net, sequence, object, gaussian, hidden, size, line794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic3T30.00033151neuron, cell, image, class, state, response, rule, feature, rate, probability, representation, hidden, dynamic, et al, frequency, spike, distribution, component, level, recognition794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic4T40.999471735cell, neuron, response, visual, stimulus, activity, field, spike, motion, synaptic, direction, frequency, signal, cortex, firing, orientation, spatial, eye, rate, mapCan V1 mechanisms account for \\nfigure-ground and medial axis effects? \\nZhaoping Li \\nGatsby Computational Neuroscience Unit \\nUniversity College London \\nzhaopinggat shy. ucl. ac. uk \\nAbstract...
Topic5T50.99949177image, feature, recognition, layer, hidden, task, object, speech, trained, representation, test, net, classification, classifier, class, level, architecture, experiment, node, rule215 \\nConsonant Recognition by Modular Construction of \\nLarge Phonemic Time-Delay Neural Networks \\nAlex Waibel \\nCarnegie-Mellon University \\nPittsburgh, PA 15213, \\nATR Interpreting Telephony R...
Topic6T60.996841128state, dynamic, rule, matrix, recurrent, equation, gradient, net, signal, fixed, sequence, node, source, attractor, hidden, structure, step, fixed point, component, activationFinite State Automata that Recurrent \\nCascade-Correlation Cannot Represent \\nStefan C. Kremer \\nDepartment of Computing Science \\nUniversity of Alberta \\nEdmonton, Alberta, CANADA T6H 5B5 \\nAbstr...
Topic7T70.99956283sequence, chain, region, structure, markov, protein, prediction, hmms, markov model, hidden markov, site, hidden, gene, class, receptor, length, human, distance, mouse, bengioA Neural Network to Detect \\nHomologies in Proteins \\nYoshua Bengio \\nSchool of Computer Science \\nMcGill University \\nMontreal, Canada H3A 2A7 \\nSamy Bengio \\nDepartement d'Informatique \\nUnivers...
Topic8T80.98167892memory, word, context, similarity, item, recall, probability, phoneme, short, representation, association, activation, list, serial, short term, address, term memory, store, proximity, phoneA solvable connectionist model of \\nimmediate recall of ordered lists \\nNell Burgess \\nDepartment of Anatomy, University College London \\nLondon WCiE 6BT, England \\n(e-mail: n .burgessucl. ac. uk...
Topic9T90.99929227activation, motor, behavior, winner, take, winner take, competitive, active, command, connection, movement, sensory, feedback, wta, net, sensor, body, activation function, level, self44 Beer and Chiei \\nNeural \\nImplementation of Motivated Behavior: \\nFeeding in an Artificial Insect \\nRandall D. Beer t,2 and Hillel J. Chiel 2 \\nDepartments of t Computer Engineering and Science...
Topic10T100.00033151state, cell, distribution, neuron, probability, control, response, signal, task, rate, layer, architecture, random, hidden, test, image, change, fig, generalization, field794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic11T110.999171396generalization, face, hidden unit, hidden, capacity, teacher, pca, student, generalization error, solution, principal, committee, phase, image, limit, correlation, average, line, training set, pri...I I II \\nThe Storage Capacity \\nof a Fully-Connected Committee Machine \\nYuansheng Xiong \\nDepartment of Physics, Pohang Institute of Science and Technology, \\nHyoja San 31, Pohang, Kyongbuk, Kore...
Topic12T120.00033151feature, image, distribution, neuron, class, state, hidden, probability, node, layer, equation, size, prediction, line, rate, matrix, et, signal, noise, recognition794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic13T130.00033151image, state, cell, object, rule, layer, et al, step, distribution, ii, neuron, visual, signal, field, dynamic, feature, probability, matrix, et, map794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic14T140.00033151neuron, map, state, cell, rate, hidden, field, equation, probability, node, representation, signal, layer, dynamic, et al, noise, test, sequence, recognition, prediction794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic15T150.99947609distribution, probability, variable, class, approximation, gaussian, sample, bound, estimate, noise, matrix, let, optimal, prior, size, variance, xi, equation, prediction, densityOn the Use of Evidence in Neural Networks \\nDavid H. Wolpert \\nThe Santa Fe Institute \\n1660 Old Pecos Trail \\nSanta Fe, NM 87501 \\nAbstract \\nThe Bayesian \"evidence\" approximation has recently be...
Topic16T160.00033151state, neuron, rule, probability, layer, rate, image, distribution, memory, equation, signal, solution, response, theory, class, et, step, variable, feature, high794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic17T170.00033151state, feature, probability, layer, image, cell, field, neuron, task, rate, recognition, dynamic, rule, control, variable, distribution, equation, net, representation, class794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic18T180.99929940state, control, action, policy, reinforcement, step, task, optimal, dynamic, controller, trajectory, robot, reinforcement learning, environment, reward, path, goal, value function, decision, armAn Actor/Critic Algorithm that is \\nEquivalent to Q-Learning \\nRobert H. Crites \\nComputer Science Department \\nUniversity of Massachusetts \\nAmherst, MA 01003 \\ncrit escs .umass. edu \\nAndrew G....
Topic19T190.00033151control, state, feature, probability, architecture, hidden, neuron, task, rate, level, estimate, et, local, component, net, distribution, signal, response, dynamic, optimal794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\...
Topic20T200.999391089mixture, likelihood, em, cluster, clustering, density, component, log, em algorithm, maximum, code, maximum likelihood, mixture model, hmm, entropy, mi, unsupervised, gaussian, mutual, eqA Unified Learning Scheme: \\nBayesian-Kullback Ying-Yang Machine \\nLei Xu \\n1. Computer Science Dept., The Chinese University of HK, Hong Kong \\n2. National Machine Perception Lab, Peking Universi...
\n", + "
" + ], + "text/plain": [ + " Dominant Topic Contribution % Paper Num \\\n", + "Topic1 T1 0.99938 1122 \n", + "Topic2 T2 0.00033 151 \n", + "Topic3 T3 0.00033 151 \n", + "Topic4 T4 0.99947 1735 \n", + "Topic5 T5 0.99949 177 \n", + "Topic6 T6 0.99684 1128 \n", + "Topic7 T7 0.99956 283 \n", + "Topic8 T8 0.98167 892 \n", + "Topic9 T9 0.99929 227 \n", + "Topic10 T10 0.00033 151 \n", + "Topic11 T11 0.99917 1396 \n", + "Topic12 T12 0.00033 151 \n", + "Topic13 T13 0.00033 151 \n", + "Topic14 T14 0.00033 151 \n", + "Topic15 T15 0.99947 609 \n", + "Topic16 T16 0.00033 151 \n", + "Topic17 T17 0.00033 151 \n", + "Topic18 T18 0.99929 940 \n", + "Topic19 T19 0.00033 151 \n", + "Topic20 T20 0.99939 1089 \n", + "\n", + " Topic \\\n", + "Topic1 neuron, circuit, analog, chip, current, voltage, signal, threshold, bit, noise, vlsi, implementation, channel, gate, pulse, processor, element, synapse, parallel, fig \n", + "Topic2 image, feature, structure, state, layer, neuron, distribution, local, cell, recognition, node, motion, matrix, net, sequence, object, gaussian, hidden, size, line \n", + "Topic3 neuron, cell, image, class, state, response, rule, feature, rate, probability, representation, hidden, dynamic, et al, frequency, spike, distribution, component, level, recognition \n", + "Topic4 cell, neuron, response, visual, stimulus, activity, field, spike, motion, synaptic, direction, frequency, signal, cortex, firing, orientation, spatial, eye, rate, map \n", + "Topic5 image, feature, recognition, layer, hidden, task, object, speech, trained, representation, test, net, classification, classifier, class, level, architecture, experiment, node, rule \n", + "Topic6 state, dynamic, rule, matrix, recurrent, equation, gradient, net, signal, fixed, sequence, node, source, attractor, hidden, structure, step, fixed point, component, activation \n", + "Topic7 sequence, chain, region, structure, markov, protein, prediction, hmms, markov model, hidden markov, site, hidden, gene, class, receptor, length, human, distance, mouse, bengio \n", + "Topic8 memory, word, context, similarity, item, recall, probability, phoneme, short, representation, association, activation, list, serial, short term, address, term memory, store, proximity, phone \n", + "Topic9 activation, motor, behavior, winner, take, winner take, competitive, active, command, connection, movement, sensory, feedback, wta, net, sensor, body, activation function, level, self \n", + "Topic10 state, cell, distribution, neuron, probability, control, response, signal, task, rate, layer, architecture, random, hidden, test, image, change, fig, generalization, field \n", + "Topic11 generalization, face, hidden unit, hidden, capacity, teacher, pca, student, generalization error, solution, principal, committee, phase, image, limit, correlation, average, line, training set, pri... \n", + "Topic12 feature, image, distribution, neuron, class, state, hidden, probability, node, layer, equation, size, prediction, line, rate, matrix, et, signal, noise, recognition \n", + "Topic13 image, state, cell, object, rule, layer, et al, step, distribution, ii, neuron, visual, signal, field, dynamic, feature, probability, matrix, et, map \n", + "Topic14 neuron, map, state, cell, rate, hidden, field, equation, probability, node, representation, signal, layer, dynamic, et al, noise, test, sequence, recognition, prediction \n", + "Topic15 distribution, probability, variable, class, approximation, gaussian, sample, bound, estimate, noise, matrix, let, optimal, prior, size, variance, xi, equation, prediction, density \n", + "Topic16 state, neuron, rule, probability, layer, rate, image, distribution, memory, equation, signal, solution, response, theory, class, et, step, variable, feature, high \n", + "Topic17 state, feature, probability, layer, image, cell, field, neuron, task, rate, recognition, dynamic, rule, control, variable, distribution, equation, net, representation, class \n", + "Topic18 state, control, action, policy, reinforcement, step, task, optimal, dynamic, controller, trajectory, robot, reinforcement learning, environment, reward, path, goal, value function, decision, arm \n", + "Topic19 control, state, feature, probability, architecture, hidden, neuron, task, rate, level, estimate, et, local, component, net, distribution, signal, response, dynamic, optimal \n", + "Topic20 mixture, likelihood, em, cluster, clustering, density, component, log, em algorithm, maximum, code, maximum likelihood, mixture model, hmm, entropy, mi, unsupervised, gaussian, mutual, eq \n", + "\n", + " Paper Name \n", + "Topic1 Improved Silicon Cochlea \\nusing \\nCompatible Lateral Bipolar Transistors \\nAndr6 van Schaik, Eric Fragnire, Eric Vittoz \\nMANTRA Center for Neuromimetic Systems \\nSwiss Federal Institute of Tech... \n", + "Topic2 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic3 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic4 Can V1 mechanisms account for \\nfigure-ground and medial axis effects? \\nZhaoping Li \\nGatsby Computational Neuroscience Unit \\nUniversity College London \\nzhaopinggat shy. ucl. ac. uk \\nAbstract... \n", + "Topic5 215 \\nConsonant Recognition by Modular Construction of \\nLarge Phonemic Time-Delay Neural Networks \\nAlex Waibel \\nCarnegie-Mellon University \\nPittsburgh, PA 15213, \\nATR Interpreting Telephony R... \n", + "Topic6 Finite State Automata that Recurrent \\nCascade-Correlation Cannot Represent \\nStefan C. Kremer \\nDepartment of Computing Science \\nUniversity of Alberta \\nEdmonton, Alberta, CANADA T6H 5B5 \\nAbstr... \n", + "Topic7 A Neural Network to Detect \\nHomologies in Proteins \\nYoshua Bengio \\nSchool of Computer Science \\nMcGill University \\nMontreal, Canada H3A 2A7 \\nSamy Bengio \\nDepartement d'Informatique \\nUnivers... \n", + "Topic8 A solvable connectionist model of \\nimmediate recall of ordered lists \\nNell Burgess \\nDepartment of Anatomy, University College London \\nLondon WCiE 6BT, England \\n(e-mail: n .burgessucl. ac. uk... \n", + "Topic9 44 Beer and Chiei \\nNeural \\nImplementation of Motivated Behavior: \\nFeeding in an Artificial Insect \\nRandall D. Beer t,2 and Hillel J. Chiel 2 \\nDepartments of t Computer Engineering and Science... \n", + "Topic10 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic11 I I II \\nThe Storage Capacity \\nof a Fully-Connected Committee Machine \\nYuansheng Xiong \\nDepartment of Physics, Pohang Institute of Science and Technology, \\nHyoja San 31, Pohang, Kyongbuk, Kore... \n", + "Topic12 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic13 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic14 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic15 On the Use of Evidence in Neural Networks \\nDavid H. Wolpert \\nThe Santa Fe Institute \\n1660 Old Pecos Trail \\nSanta Fe, NM 87501 \\nAbstract \\nThe Bayesian \"evidence\" approximation has recently be... \n", + "Topic16 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic17 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic18 An Actor/Critic Algorithm that is \\nEquivalent to Q-Learning \\nRobert H. Crites \\nComputer Science Department \\nUniversity of Massachusetts \\nAmherst, MA 01003 \\ncrit escs .umass. edu \\nAndrew G.... \n", + "Topic19 794 \\nNEURAL ARCHITECTURE \\nValentino Braitenberg \\nMax Planck Institute \\nFederal Republic of Germany \\nABSTRACT\\nWhile we are waiting for the ultimate biophysics of cell membranes and synapses \\... \n", + "Topic20 A Unified Learning Scheme: \\nBayesian-Kullback Ying-Yang Machine \\nLei Xu \\n1. Computer Science Dept., The Chinese University of HK, Hong Kong \\n2. National Machine Perception Lab, Peking Universi... " + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.options.display.float_format = '{:,.5f}'.format\n", + "pd.set_option('display.max_colwidth', 200)\n", + "\n", + "max_contrib_topics = dt_df.max(axis=0)\n", + "dominant_topics = max_contrib_topics.index\n", + "contrib_perc = max_contrib_topics.values\n", + "document_numbers = [dt_df[dt_df[t] == max_contrib_topics.loc[t]].index[0]\n", + " for t in dominant_topics]\n", + "documents = [papers[i] for i in document_numbers]\n", + "\n", + "results_df = pd.DataFrame({'Dominant Topic': dominant_topics, 'Contribution %': contrib_perc,\n", + " 'Paper Num': document_numbers, 'Topic': topics_df['Terms per Topic'], \n", + " 'Paper Name': documents})\n", + "results_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Topic Models with Non-Negative Matrix Factorization (NMF)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 11min 39s, sys: 47.5 s, total: 12min 26s\n", + "Wall time: 46.7 s\n" + ] + } + ], + "source": [ + "%%time\n", + "from sklearn.decomposition import NMF\n", + "\n", + "nmf_model = NMF(n_components=TOTAL_TOPICS, solver='cd', max_iter=500,\n", + " random_state=42, alpha=.1, l1_ratio=.85)\n", + "document_topics = nmf_model.fit_transform(cv_features)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Terms per Topic
Topic1bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimum
Topic2neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firing
Topic3state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, decision
Topic4image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surface
Topic5hidden, layer, net, hidden unit, task, hidden layer, architecture, back, propagation, trained, connection, back propagation, activation, representation, generalization, output unit, neural net, training set, learn, test
Topic6cell, firing, direction, head, rat, response, layer, synaptic, activity, spatial, inhibitory, synapsis, ii, cue, cortex, simulation, lot, active, complex, property
Topic7word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, state
Topic8signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, fig
Topic9control, controller, trajectory, motor, dynamic, movement, forward, task, feedback, arm, inverse, position, robot, architecture, hand, force, adaptive, change, command, plant
Topic10circuit, chip, current, analog, voltage, vlsi, gate, threshold, transistor, pulse, design, implementation, synapse, bit, digital, device, analog vlsi, element, cmos, pp
Topic11spike, rate, firing, stimulus, train, spike train, firing rate, response, frequency, neuron, potential, current, fig, signal, temporal, synaptic, probability, change, timing, distribution
Topic12rule, learning rule, knowledge, category, condition, domain, symbolic, change, fuzzy, step, extraction, table, interval, eq, expert, trained, learn, activation, language, learned
Topic13node, tree, decision, level, graph, structure, decision tree, layer, probability, leaf, bound, path, variable, activation, parent, child, split, routing, architecture, propagation
Topic14feature, map, task, search, classification, experiment, part, representation, target, location, feature vector, feature space, attention, test, feature map, dimensional, kernel, cluster, block, extra
Topic15classifier, class, classification, decision, region, rbf, rate, error rate, test, center, nearest, layer, probability, neighbor, nearest neighbor, boundary, sample, training set, trained, gaussian
Topic16distribution, probability, gaussian, mixture, variable, density, likelihood, prior, bayesian, component, posterior, em, log, estimate, sample, approximation, estimation, matrix, conditional, maximum
Topic17motion, direction, velocity, visual, moving, target, stage, stimulus, eye, flow, filter, head, movement, location, response, signal, position, field, spatial, speed
Topic18object, view, recognition, representation, layer, visual, 3d, 2d, human, part, position, object recognition, transformation, scheme, image, aspect, frame, shape, rotation, viewpoint
Topic19field, visual, orientation, stimulus, response, map, cortex, cortical, receptive, receptive field, eye, activity, center, spatial, connection, ocular, dominance, ocular dominance, region, correlation
Topic20memory, representation, structure, capacity, sequence, associative, role, distributed, matrix, associative memory, bit, activity, stored, product, binding, code, local, connection, activation, symbol
\n", + "
" + ], + "text/plain": [ + " Terms per Topic\n", + "Topic1 bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimum \n", + "Topic2 neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firing \n", + "Topic3 state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, decision \n", + "Topic4 image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surface \n", + "Topic5 hidden, layer, net, hidden unit, task, hidden layer, architecture, back, propagation, trained, connection, back propagation, activation, representation, generalization, output unit, neural net, training set, learn, test\n", + "Topic6 cell, firing, direction, head, rat, response, layer, synaptic, activity, spatial, inhibitory, synapsis, ii, cue, cortex, simulation, lot, active, complex, property \n", + "Topic7 word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, state \n", + "Topic8 signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, fig \n", + "Topic9 control, controller, trajectory, motor, dynamic, movement, forward, task, feedback, arm, inverse, position, robot, architecture, hand, force, adaptive, change, command, plant \n", + "Topic10 circuit, chip, current, analog, voltage, vlsi, gate, threshold, transistor, pulse, design, implementation, synapse, bit, digital, device, analog vlsi, element, cmos, pp \n", + "Topic11 spike, rate, firing, stimulus, train, spike train, firing rate, response, frequency, neuron, potential, current, fig, signal, temporal, synaptic, probability, change, timing, distribution \n", + "Topic12 rule, learning rule, knowledge, category, condition, domain, symbolic, change, fuzzy, step, extraction, table, interval, eq, expert, trained, learn, activation, language, learned \n", + "Topic13 node, tree, decision, level, graph, structure, decision tree, layer, probability, leaf, bound, path, variable, activation, parent, child, split, routing, architecture, propagation \n", + "Topic14 feature, map, task, search, classification, experiment, part, representation, target, location, feature vector, feature space, attention, test, feature map, dimensional, kernel, cluster, block, extra \n", + "Topic15 classifier, class, classification, decision, region, rbf, rate, error rate, test, center, nearest, layer, probability, neighbor, nearest neighbor, boundary, sample, training set, trained, gaussian \n", + "Topic16 distribution, probability, gaussian, mixture, variable, density, likelihood, prior, bayesian, component, posterior, em, log, estimate, sample, approximation, estimation, matrix, conditional, maximum \n", + "Topic17 motion, direction, velocity, visual, moving, target, stage, stimulus, eye, flow, filter, head, movement, location, response, signal, position, field, spatial, speed \n", + "Topic18 object, view, recognition, representation, layer, visual, 3d, 2d, human, part, position, object recognition, transformation, scheme, image, aspect, frame, shape, rotation, viewpoint \n", + "Topic19 field, visual, orientation, stimulus, response, map, cortex, cortical, receptive, receptive field, eye, activity, center, spatial, connection, ocular, dominance, ocular dominance, region, correlation \n", + "Topic20 memory, representation, structure, capacity, sequence, associative, role, distributed, matrix, associative memory, bit, activity, stored, product, binding, code, local, connection, activation, symbol " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "topic_terms = nmf_model.components_\n", + "topic_key_term_idxs = np.argsort(-np.absolute(topic_terms), axis=1)[:, :top_terms]\n", + "topic_keyterms = vocabulary[topic_key_term_idxs]\n", + "topics = [', '.join(topic) for topic in topic_keyterms]\n", + "pd.set_option('display.max_colwidth', -1)\n", + "topics_df = pd.DataFrame(topics,\n", + " columns = ['Terms per Topic'],\n", + " index=['Topic'+str(t) for t in range(1, TOTAL_TOPICS+1)])\n", + "topics_df" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
T1T2T3T4T5T6T7T8T9T10T11T12T13T14T15T16T17T18T19T20
00.4440.0000.0000.0000.0000.0000.0000.0000.0000.0000.0000.0000.0040.2630.0000.0000.0000.0000.0003.437
10.3940.5950.4630.0190.1870.0370.0000.2280.1300.0290.0000.2540.0000.0000.0000.0000.0000.1060.0000.210
20.0320.6190.0030.0670.0160.3780.0290.0270.4480.0000.0750.0360.0240.1840.1000.0000.1260.0000.6560.277
30.0000.2740.0000.1020.2651.0190.0000.0000.0000.0000.0000.0000.2180.0110.0000.0041.2990.2911.2680.295
40.0600.1880.6820.2570.1671.4020.0000.0930.0000.0010.0000.0201.7490.0370.0000.3440.0000.0000.1640.121
50.0000.3830.0000.0000.6797.5100.0160.0000.0000.3261.1461.9230.0980.0000.0000.2020.0000.4260.6460.641
60.0001.4150.0200.0000.0460.0440.0000.1140.3330.0400.0000.0320.1240.0000.0410.0410.0750.0300.0000.615
70.1470.0290.0000.0000.2740.0080.0420.0000.0450.0800.0080.0250.0220.0090.0000.0230.0000.0070.0000.096
80.0841.7600.0130.0120.0001.5920.0000.0000.2570.0680.2730.0550.1220.0000.1190.0000.0000.0270.5140.353
90.3950.0000.0401.2580.1270.0000.0000.3700.0750.0760.0000.0420.0000.0170.0000.0530.0410.1330.4270.000
\n", + "
" + ], + "text/plain": [ + " T1 T2 T3 T4 T5 T6 T7 T8 T9 T10 T11 T12 \\\n", + "0 0.444 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "1 0.394 0.595 0.463 0.019 0.187 0.037 0.000 0.228 0.130 0.029 0.000 0.254 \n", + "2 0.032 0.619 0.003 0.067 0.016 0.378 0.029 0.027 0.448 0.000 0.075 0.036 \n", + "3 0.000 0.274 0.000 0.102 0.265 1.019 0.000 0.000 0.000 0.000 0.000 0.000 \n", + "4 0.060 0.188 0.682 0.257 0.167 1.402 0.000 0.093 0.000 0.001 0.000 0.020 \n", + "5 0.000 0.383 0.000 0.000 0.679 7.510 0.016 0.000 0.000 0.326 1.146 1.923 \n", + "6 0.000 1.415 0.020 0.000 0.046 0.044 0.000 0.114 0.333 0.040 0.000 0.032 \n", + "7 0.147 0.029 0.000 0.000 0.274 0.008 0.042 0.000 0.045 0.080 0.008 0.025 \n", + "8 0.084 1.760 0.013 0.012 0.000 1.592 0.000 0.000 0.257 0.068 0.273 0.055 \n", + "9 0.395 0.000 0.040 1.258 0.127 0.000 0.000 0.370 0.075 0.076 0.000 0.042 \n", + "\n", + " T13 T14 T15 T16 T17 T18 T19 T20 \n", + "0 0.004 0.263 0.000 0.000 0.000 0.000 0.000 3.437 \n", + "1 0.000 0.000 0.000 0.000 0.000 0.106 0.000 0.210 \n", + "2 0.024 0.184 0.100 0.000 0.126 0.000 0.656 0.277 \n", + "3 0.218 0.011 0.000 0.004 1.299 0.291 1.268 0.295 \n", + "4 1.749 0.037 0.000 0.344 0.000 0.000 0.164 0.121 \n", + "5 0.098 0.000 0.000 0.202 0.000 0.426 0.646 0.641 \n", + "6 0.124 0.000 0.041 0.041 0.075 0.030 0.000 0.615 \n", + "7 0.022 0.009 0.000 0.023 0.000 0.007 0.000 0.096 \n", + "8 0.122 0.000 0.119 0.000 0.000 0.027 0.514 0.353 \n", + "9 0.000 0.017 0.000 0.053 0.041 0.133 0.427 0.000 " + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.options.display.float_format = '{:,.3f}'.format\n", + "dt_df = pd.DataFrame(document_topics, \n", + " columns=['T'+str(i) for i in range(1, TOTAL_TOPICS+1)])\n", + "dt_df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Dominant TopicMax ScorePaper NumTopicPaper Name
Topic1T11.64138991bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimumA Bound on the Error of Cross Validation Using \\nthe Approximation and Estimation Rates, with \\nConsequences for the Training-Test Split \\nMichael Kearns \\nAT&T Research \\nABSTRACT\\n1 INTRODUCTION...
Topic2T23.58149383neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firingSignal Processing by Multiplexing and \\nDemultiplexing in Neurons \\nDavid C. Tam \\nDivision of Neuroscience \\nBaylor College of Medicine \\nHouston, TX 77030 \\ndtamCnext-cns.neusc.bcm.tmc.edu \\nAb...
Topic3T35.830721167state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, de...Reinforcement Learning for Mixed \\nOpen-loop and Closed-loop Control \\nEric A. Hansen, Andrew G. Barto, and Shlomo Zilbersteln \\nDepartment of Computer Science \\nUniversity of Massachusetts \\nAmhe...
Topic4T43.933491731image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surfaceImage representations for facial expression \\ncoding \\nMarian Stewart Bartlett* \\nU.C. San Diego \\nmarnisalk. edu \\nJavier R. Movellan \\nU.C. San Diego \\nmovellancogsc. ucsd. edu \\nPaul Ekman \\n...
Topic5T52.9875033hidden, layer, net, hidden unit, task, hidden layer, architecture, back, propagation, trained, connection, back propagation, activation, representation, generalization, output unit, neural net, tr...5O5 \\nCONNECTING TO THE PAST \\nBruce A. MacDonald, Assistant Professor \\nKnowledge Sciences Laboratory, Computer Science Department \\nThe University of Calgary, 2500 University Drive NW \\nCalgary,...
Topic6T67.510035cell, firing, direction, head, rat, response, layer, synaptic, activity, spatial, inhibitory, synapsis, ii, cue, cortex, simulation, lot, active, complex, property317 \\nPARTITIONING OF SENSORY DATA BY A COPTICAI, NETWOPK  \\nRichard Granger, Jos Ambros-Ingerson, Howard Henry, Gary Lynch \\nCenter for the Neurobiology of Learning and Memory \\nUniversity of...
Topic7T74.895251318word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, stateComparison of Human and Machine Word \\nRecognition \\nM. Schenkel \\nDept of Electrical Eng. \\nUniversity of Sydney \\nSydney, NSW 2006, Australia \\nschenkel@sedal.usyd.edu.au \\nC. Latimer \\nDept of ...
Topic8T83.67982235signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, fig232 Sejnowski, Yuhas, Goldstein and Jenkins \\nCombining Visual and \\nwith a Neural Network \\nAcoustic Speech Signals \\nImproves Intelligibility \\nT.J. Sejnowski \\nThe Salk Institute \\nand \\nDepart...
Topic9T94.88831948control, controller, trajectory, motor, dynamic, movement, forward, task, feedback, arm, inverse, position, robot, architecture, hand, force, adaptive, change, command, plantAn Integrated Architecture of Adaptive Neural Network \\nControl for Dynamic Systems \\nLiu Ke '2 Robert L. Tokaf Brian D.McVey z \\nCenter for Nonlinear Studies, 2Applied Theoretical Physics Divis...
Topic10T102.959731690circuit, chip, current, analog, voltage, vlsi, gate, threshold, transistor, pulse, design, implementation, synapse, bit, digital, device, analog vlsi, element, cmos, ppKirchoff Law Markov Fields for Analog \\nCircuit Design \\nRichard M. Golden * \\nRMG Consulting Inc. \\n2000 Fresno Road, Plano, Texas 75074 \\nRMG CONS UL T@A OL. COM, \\nwww. neural-network. corn \\nA...
Topic11T116.04910987spike, rate, firing, stimulus, train, spike train, firing rate, response, frequency, neuron, potential, current, fig, signal, temporal, synaptic, probability, change, timing, distributionInformation through a Spiking Neuron \\nCharles F. Stevens and Anthony Zador \\nSalk Institute MNL/S \\nLa Jolla, CA 92037 \\nzador@salk.edu \\nAbstract \\nWhile it is generally agreed that neurons tran...
Topic12T126.18613902rule, learning rule, knowledge, category, condition, domain, symbolic, change, fuzzy, step, extraction, table, interval, eq, expert, trained, learn, activation, language, learnedExtracting Rules from Artificial Neural Networks \\nwith Distributed Representations \\nSebastian Thrun \\nUniversity of Bonn \\nDepartment of Computer Science III \\nR6merstr. 164, D-53117 Bonn, Germa...
Topic13T133.553121665node, tree, decision, level, graph, structure, decision tree, layer, probability, leaf, bound, path, variable, activation, parent, child, split, routing, architecture, propagationBoosting with Multi-Way Branching in \\nDecision Trees \\nYishay Mansour \\nDavid McAllester \\nAT&T Labs-Research \\n180 Park Ave \\nFlorham Park NJ 07932 \\n{mansour, dmac}@research.att.com \\nAbstract ...
Topic14T143.98397250feature, map, task, search, classification, experiment, part, representation, target, location, feature vector, feature space, attention, test, feature map, dimensional, kernel, cluster, block, extra266 Zemel, Mozer and Hinton \\nTRAFFIC: Recognizing Objects Using \\nHierarchical Reference Frame Transformations \\nRichard S. Zemel \\nComputer Science Dept. \\nUniversity of Toronto \\nToronto, ONT M...
Topic15T155.13757679classifier, class, classification, decision, region, rbf, rate, error rate, test, center, nearest, layer, probability, neighbor, nearest neighbor, boundary, sample, training set, trained, gaussianA Boundary Hunting Radial Basis Function \\nClassifier Which Allocates Centers \\nConstructively \\nEric I. Chang and Richard P. Lippmann \\nMIT Lincoln Laboratory \\nLexington, MA 02173-0073, USA \\nAb...
Topic16T162.713691124distribution, probability, gaussian, mixture, variable, density, likelihood, prior, bayesian, component, posterior, em, log, estimate, sample, approximation, estimation, matrix, conditional, maximumDiscovering Structure in Continuous \\nVariables Using Bayesian Networks \\nReimar Hofmann and Volker Tresp* \\nSiemens AG, Central Research \\nOtto-Hahn-Ring 6 \\n81730 Mfinchen, Germany \\nAbstract \\n...
Topic17T175.559431102motion, direction, velocity, visual, moving, target, stage, stimulus, eye, flow, filter, head, movement, location, response, signal, position, field, spatial, speedA model of transparent motion and \\nnon-transparent motion aftereffects \\nAlexander Grunewald* \\nMax-Planck Institut fiir biologische Kybernetik \\nSpemannstral]e 38 \\nD-72076 Tiibingen, Germany \\n...
Topic18T185.65911537object, view, recognition, representation, layer, visual, 3d, 2d, human, part, position, object recognition, transformation, scheme, image, aspect, frame, shape, rotation, viewpointLinear Operator for Object Recognition \\nPonen Basil Shimon Ullman* \\nM.I.T. Artificial Intelligence Laboratory \\nand Department of Brain and Cognitive Science \\n545 Technology Square \\nCambridge...
Topic19T193.73027911field, visual, orientation, stimulus, response, map, cortex, cortical, receptive, receptive field, eye, activity, center, spatial, connection, ocular, dominance, ocular dominance, region, correlationOcular Dominance and Patterned Lateral \\nConnections in a Self-Organizing Model of the \\nPrimary Visual Cortex \\nJoseph Sirosh and Risto Miikkulainen \\nDepartment of Computer Sciences \\nUniversity...
Topic20T206.0109072memory, representation, structure, capacity, sequence, associative, role, distributed, matrix, associative memory, bit, activity, stored, product, binding, code, local, connection, activation, symbol73O \\nAnalysis of distributed representation of \\nconstituent structure in connectionist systems \\nPaul Smolensky \\nDepartment of Computer Science, University of Colorado, Boulder, CO 80309-0430 \\...
\n", + "
" + ], + "text/plain": [ + " Dominant Topic Max Score Paper Num \\\n", + "Topic1 T1 1.64138 991 \n", + "Topic2 T2 3.58149 383 \n", + "Topic3 T3 5.83072 1167 \n", + "Topic4 T4 3.93349 1731 \n", + "Topic5 T5 2.98750 33 \n", + "Topic6 T6 7.51003 5 \n", + "Topic7 T7 4.89525 1318 \n", + "Topic8 T8 3.67982 235 \n", + "Topic9 T9 4.88831 948 \n", + "Topic10 T10 2.95973 1690 \n", + "Topic11 T11 6.04910 987 \n", + "Topic12 T12 6.18613 902 \n", + "Topic13 T13 3.55312 1665 \n", + "Topic14 T14 3.98397 250 \n", + "Topic15 T15 5.13757 679 \n", + "Topic16 T16 2.71369 1124 \n", + "Topic17 T17 5.55943 1102 \n", + "Topic18 T18 5.65911 537 \n", + "Topic19 T19 3.73027 911 \n", + "Topic20 T20 6.01090 72 \n", + "\n", + " Topic \\\n", + "Topic1 bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimum \n", + "Topic2 neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firing \n", + "Topic3 state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, de... \n", + "Topic4 image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surface \n", + "Topic5 hidden, layer, net, hidden unit, task, hidden layer, architecture, back, propagation, trained, connection, back propagation, activation, representation, generalization, output unit, neural net, tr... \n", + "Topic6 cell, firing, direction, head, rat, response, layer, synaptic, activity, spatial, inhibitory, synapsis, ii, cue, cortex, simulation, lot, active, complex, property \n", + "Topic7 word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, state \n", + "Topic8 signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, fig \n", + "Topic9 control, controller, trajectory, motor, dynamic, movement, forward, task, feedback, arm, inverse, position, robot, architecture, hand, force, adaptive, change, command, plant \n", + "Topic10 circuit, chip, current, analog, voltage, vlsi, gate, threshold, transistor, pulse, design, implementation, synapse, bit, digital, device, analog vlsi, element, cmos, pp \n", + "Topic11 spike, rate, firing, stimulus, train, spike train, firing rate, response, frequency, neuron, potential, current, fig, signal, temporal, synaptic, probability, change, timing, distribution \n", + "Topic12 rule, learning rule, knowledge, category, condition, domain, symbolic, change, fuzzy, step, extraction, table, interval, eq, expert, trained, learn, activation, language, learned \n", + "Topic13 node, tree, decision, level, graph, structure, decision tree, layer, probability, leaf, bound, path, variable, activation, parent, child, split, routing, architecture, propagation \n", + "Topic14 feature, map, task, search, classification, experiment, part, representation, target, location, feature vector, feature space, attention, test, feature map, dimensional, kernel, cluster, block, extra \n", + "Topic15 classifier, class, classification, decision, region, rbf, rate, error rate, test, center, nearest, layer, probability, neighbor, nearest neighbor, boundary, sample, training set, trained, gaussian \n", + "Topic16 distribution, probability, gaussian, mixture, variable, density, likelihood, prior, bayesian, component, posterior, em, log, estimate, sample, approximation, estimation, matrix, conditional, maximum \n", + "Topic17 motion, direction, velocity, visual, moving, target, stage, stimulus, eye, flow, filter, head, movement, location, response, signal, position, field, spatial, speed \n", + "Topic18 object, view, recognition, representation, layer, visual, 3d, 2d, human, part, position, object recognition, transformation, scheme, image, aspect, frame, shape, rotation, viewpoint \n", + "Topic19 field, visual, orientation, stimulus, response, map, cortex, cortical, receptive, receptive field, eye, activity, center, spatial, connection, ocular, dominance, ocular dominance, region, correlation \n", + "Topic20 memory, representation, structure, capacity, sequence, associative, role, distributed, matrix, associative memory, bit, activity, stored, product, binding, code, local, connection, activation, symbol \n", + "\n", + " Paper Name \n", + "Topic1 A Bound on the Error of Cross Validation Using \\nthe Approximation and Estimation Rates, with \\nConsequences for the Training-Test Split \\nMichael Kearns \\nAT&T Research \\nABSTRACT\\n1 INTRODUCTION... \n", + "Topic2 Signal Processing by Multiplexing and \\nDemultiplexing in Neurons \\nDavid C. Tam \\nDivision of Neuroscience \\nBaylor College of Medicine \\nHouston, TX 77030 \\ndtamCnext-cns.neusc.bcm.tmc.edu \\nAb... \n", + "Topic3 Reinforcement Learning for Mixed \\nOpen-loop and Closed-loop Control \\nEric A. Hansen, Andrew G. Barto, and Shlomo Zilbersteln \\nDepartment of Computer Science \\nUniversity of Massachusetts \\nAmhe... \n", + "Topic4 Image representations for facial expression \\ncoding \\nMarian Stewart Bartlett* \\nU.C. San Diego \\nmarnisalk. edu \\nJavier R. Movellan \\nU.C. San Diego \\nmovellancogsc. ucsd. edu \\nPaul Ekman \\n... \n", + "Topic5 5O5 \\nCONNECTING TO THE PAST \\nBruce A. MacDonald, Assistant Professor \\nKnowledge Sciences Laboratory, Computer Science Department \\nThe University of Calgary, 2500 University Drive NW \\nCalgary,... \n", + "Topic6 317 \\nPARTITIONING OF SENSORY DATA BY A COPTICAI, NETWOPK  \\nRichard Granger, Jos Ambros-Ingerson, Howard Henry, Gary Lynch \\nCenter for the Neurobiology of Learning and Memory \\nUniversity of... \n", + "Topic7 Comparison of Human and Machine Word \\nRecognition \\nM. Schenkel \\nDept of Electrical Eng. \\nUniversity of Sydney \\nSydney, NSW 2006, Australia \\nschenkel@sedal.usyd.edu.au \\nC. Latimer \\nDept of ... \n", + "Topic8 232 Sejnowski, Yuhas, Goldstein and Jenkins \\nCombining Visual and \\nwith a Neural Network \\nAcoustic Speech Signals \\nImproves Intelligibility \\nT.J. Sejnowski \\nThe Salk Institute \\nand \\nDepart... \n", + "Topic9 An Integrated Architecture of Adaptive Neural Network \\nControl for Dynamic Systems \\nLiu Ke '2 Robert L. Tokaf Brian D.McVey z \\nCenter for Nonlinear Studies, 2Applied Theoretical Physics Divis... \n", + "Topic10 Kirchoff Law Markov Fields for Analog \\nCircuit Design \\nRichard M. Golden * \\nRMG Consulting Inc. \\n2000 Fresno Road, Plano, Texas 75074 \\nRMG CONS UL T@A OL. COM, \\nwww. neural-network. corn \\nA... \n", + "Topic11 Information through a Spiking Neuron \\nCharles F. Stevens and Anthony Zador \\nSalk Institute MNL/S \\nLa Jolla, CA 92037 \\nzador@salk.edu \\nAbstract \\nWhile it is generally agreed that neurons tran... \n", + "Topic12 Extracting Rules from Artificial Neural Networks \\nwith Distributed Representations \\nSebastian Thrun \\nUniversity of Bonn \\nDepartment of Computer Science III \\nR6merstr. 164, D-53117 Bonn, Germa... \n", + "Topic13 Boosting with Multi-Way Branching in \\nDecision Trees \\nYishay Mansour \\nDavid McAllester \\nAT&T Labs-Research \\n180 Park Ave \\nFlorham Park NJ 07932 \\n{mansour, dmac}@research.att.com \\nAbstract ... \n", + "Topic14 266 Zemel, Mozer and Hinton \\nTRAFFIC: Recognizing Objects Using \\nHierarchical Reference Frame Transformations \\nRichard S. Zemel \\nComputer Science Dept. \\nUniversity of Toronto \\nToronto, ONT M... \n", + "Topic15 A Boundary Hunting Radial Basis Function \\nClassifier Which Allocates Centers \\nConstructively \\nEric I. Chang and Richard P. Lippmann \\nMIT Lincoln Laboratory \\nLexington, MA 02173-0073, USA \\nAb... \n", + "Topic16 Discovering Structure in Continuous \\nVariables Using Bayesian Networks \\nReimar Hofmann and Volker Tresp* \\nSiemens AG, Central Research \\nOtto-Hahn-Ring 6 \\n81730 Mfinchen, Germany \\nAbstract \\n... \n", + "Topic17 A model of transparent motion and \\nnon-transparent motion aftereffects \\nAlexander Grunewald* \\nMax-Planck Institut fiir biologische Kybernetik \\nSpemannstral]e 38 \\nD-72076 Tiibingen, Germany \\n... \n", + "Topic18 Linear Operator for Object Recognition \\nPonen Basil Shimon Ullman* \\nM.I.T. Artificial Intelligence Laboratory \\nand Department of Brain and Cognitive Science \\n545 Technology Square \\nCambridge... \n", + "Topic19 Ocular Dominance and Patterned Lateral \\nConnections in a Self-Organizing Model of the \\nPrimary Visual Cortex \\nJoseph Sirosh and Risto Miikkulainen \\nDepartment of Computer Sciences \\nUniversity... \n", + "Topic20 73O \\nAnalysis of distributed representation of \\nconstituent structure in connectionist systems \\nPaul Smolensky \\nDepartment of Computer Science, University of Colorado, Boulder, CO 80309-0430 \\... " + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.options.display.float_format = '{:,.5f}'.format\n", + "pd.set_option('display.max_colwidth', 200)\n", + "\n", + "max_score_topics = dt_df.max(axis=0)\n", + "dominant_topics = max_score_topics.index\n", + "term_score = max_score_topics.values\n", + "document_numbers = [dt_df[dt_df[t] == max_score_topics.loc[t]].index[0]\n", + " for t in dominant_topics]\n", + "documents = [papers[i] for i in document_numbers]\n", + "\n", + "results_df = pd.DataFrame({'Dominant Topic': dominant_topics, 'Max Score': term_score,\n", + " 'Paper Num': document_numbers, 'Topic': topics_df['Terms per Topic'], \n", + " 'Paper Name': documents})\n", + "results_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Predicting Topics for New Research Papers" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total New Papers: 4\n" + ] + } + ], + "source": [ + "import glob\n", + "# papers manually downloaded from NIPS 16\n", + "# https://papers.nips.cc/book/advances-in-neural-information-processing-systems-29-2016\n", + "\n", + "new_paper_files = glob.glob('./test_data/nips16*.txt')\n", + "new_papers = []\n", + "for fn in new_paper_files:\n", + " with open(fn, encoding='utf-8', errors='ignore', mode='r+') as f:\n", + " data = f.read()\n", + " new_papers.append(data)\n", + " \n", + "print('Total New Papers:', len(new_papers))" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(4, 14408)" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "norm_new_papers = normalize_corpus(new_papers)\n", + "cv_new_features = cv.transform(norm_new_papers)\n", + "cv_new_features.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[[(0, 1.312), (7, 0.966)],\n", + " [(2, 4.121), (0, 0.864)],\n", + " [(3, 2.154), (1, 1.335)],\n", + " [(3, 3.074), (6, 2.19)]]" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "topic_predictions = nmf_model.transform(cv_new_features)\n", + "best_topics = [[(topic, round(sc, 3)) \n", + " for topic, sc in sorted(enumerate(topic_predictions[i]), \n", + " key=lambda row: -row[1])[:2]] \n", + " for i in range(len(topic_predictions))]\n", + "best_topics" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Dominant TopicsTopic ScoreTopic DescPaper Desc
Papers
11131.20000bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimumCorrelated-PCA: Principal Components’ Analysis\\nwhen Data and Noise are Correlated\\nNamrata Vaswani and Han Guo\\nIowa State University, Ames, IA, USA\\nEmail: {namrata,hanguo}@iastate.edu\\nAbstract...
1896.60000signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, figCorrelated-PCA: Principal Components’ Analysis\\nwhen Data and Noise are Correlated\\nNamrata Vaswani and Han Guo\\nIowa State University, Ames, IA, USA\\nEmail: {namrata,hanguo}@iastate.edu\\nAbstract...
23412.10000state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, de...PAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York,...
2186.40000bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimumPAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York,...
34215.40000image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surfaceAutomated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\...
32133.50000neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firingAutomated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\...
44307.40000image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surfaceUnsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute...
47219.00000word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, stateUnsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute...
\n", + "
" + ], + "text/plain": [ + " Dominant Topics Topic Score \\\n", + "Papers \n", + "1 1 131.20000 \n", + "1 8 96.60000 \n", + "2 3 412.10000 \n", + "2 1 86.40000 \n", + "3 4 215.40000 \n", + "3 2 133.50000 \n", + "4 4 307.40000 \n", + "4 7 219.00000 \n", + "\n", + " Topic Desc \\\n", + "Papers \n", + "1 bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimum \n", + "1 signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, fig \n", + "2 state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, de... \n", + "2 bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimum \n", + "3 image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surface \n", + "3 neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firing \n", + "4 image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surface \n", + "4 word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, state \n", + "\n", + " Paper Desc \n", + "Papers \n", + "1 Correlated-PCA: Principal Components’ Analysis\\nwhen Data and Noise are Correlated\\nNamrata Vaswani and Han Guo\\nIowa State University, Ames, IA, USA\\nEmail: {namrata,hanguo}@iastate.edu\\nAbstract... \n", + "1 Correlated-PCA: Principal Components’ Analysis\\nwhen Data and Noise are Correlated\\nNamrata Vaswani and Han Guo\\nIowa State University, Ames, IA, USA\\nEmail: {namrata,hanguo}@iastate.edu\\nAbstract... \n", + "2 PAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York,... \n", + "2 PAC Reinforcement Learning with Rich Observations\\nAkshay Krishnamurthy\\nUniversity of Massachusetts, Amherst\\nAmherst, MA, 01003\\nakshay@cs.umass.edu\\nAlekh Agarwal\\nMicrosoft Research\\nNew York,... \n", + "3 Automated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\... \n", + "3 Automated scalable segmentation of neurons from\\nmultispectral images\\nUygar Sümbül\\nGrossman Center for the Statistics of Mind\\nand Dept. of Statistics, Columbia University\\nDouglas Roossien Jr.\\... \n", + "4 Unsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute... \n", + "4 Unsupervised Learning of Spoken Language with\\nVisual Context\\nDavid Harwath, Antonio Torralba, and James R. Glass\\nComputer Science and Artificial Intelligence Laboratory\\nMassachusetts Institute... " + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results_df = pd.DataFrame()\n", + "results_df['Papers'] = range(1, len(new_papers)+1)\n", + "results_df['Dominant Topics'] = [[topic_num+1 for topic_num, sc in item] for item in best_topics]\n", + "res = results_df.set_index(['Papers'])['Dominant Topics'].apply(pd.Series).stack().reset_index(level=1, drop=True)\n", + "results_df = pd.DataFrame({'Dominant Topics': res.values}, index=res.index)\n", + "results_df['Topic Score'] = [topic_sc for topic_list in \n", + " [[round(sc*100, 2) \n", + " for topic_num, sc in item] \n", + " for item in best_topics] \n", + " for topic_sc in topic_list]\n", + "\n", + "results_df['Topic Desc'] = [topics_df.iloc[t-1]['Terms per Topic'] for t in results_df['Dominant Topics'].values]\n", + "results_df['Paper Desc'] = [new_papers[i-1][:200] for i in results_df.index.values]\n", + "\n", + "results_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Persisting Model and Transformers\n", + "\n", + "### This is just for visualizing the topics in the other notebook (since PyLDAViz expands the notebook size)" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [], + "source": [ + "import dill\n", + "\n", + "with open('nmf_model.pkl', 'wb') as f:\n", + " dill.dump(nmf_model, f)\n", + "with open('cv_features.pkl', 'wb') as f:\n", + " dill.dump(cv_features, f)\n", + "with open('cv.pkl', 'wb') as f:\n", + " dill.dump(cv, f)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06d - Visualizing Topic Models with pyLDAvis.ipynb b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06d - Visualizing Topic Models with pyLDAvis.ipynb new file mode 100644 index 0000000..09d4158 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06d - Visualizing Topic Models with pyLDAvis.ipynb @@ -0,0 +1,851 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import pyLDAvis\n", + "import pyLDAvis.sklearn\n", + "import dill\n", + "import warnings\n", + "\n", + "warnings.filterwarnings('ignore')\n", + "pyLDAvis.enable_notebook()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "with open('nmf_model.pkl', 'rb') as f:\n", + " nmf_model = dill.load(f)\n", + "with open('cv_features.pkl', 'rb') as f:\n", + " cv_features = dill.load(f)\n", + "with open('cv.pkl', 'rb') as f:\n", + " cv = dill.load(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Terms per Topic
Topic1bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimum
Topic2neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firing
Topic3state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, decision
Topic4image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surface
Topic5hidden, layer, net, hidden unit, task, hidden layer, architecture, back, propagation, trained, connection, back propagation, activation, representation, generalization, output unit, neural net, training set, learn, test
Topic6cell, firing, direction, head, rat, response, layer, synaptic, activity, spatial, inhibitory, synapsis, ii, cue, cortex, simulation, lot, active, complex, property
Topic7word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, state
Topic8signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, fig
Topic9control, controller, trajectory, motor, dynamic, movement, forward, task, feedback, arm, inverse, position, robot, architecture, hand, force, adaptive, change, command, plant
Topic10circuit, chip, current, analog, voltage, vlsi, gate, threshold, transistor, pulse, design, implementation, synapse, bit, digital, device, analog vlsi, element, cmos, pp
Topic11spike, rate, firing, stimulus, train, spike train, firing rate, response, frequency, neuron, potential, current, fig, signal, temporal, synaptic, probability, change, timing, distribution
Topic12rule, learning rule, knowledge, category, condition, domain, symbolic, change, fuzzy, step, extraction, table, interval, eq, expert, trained, learn, activation, language, learned
Topic13node, tree, decision, level, graph, structure, decision tree, layer, probability, leaf, bound, path, variable, activation, parent, child, split, routing, architecture, propagation
Topic14feature, map, task, search, classification, experiment, part, representation, target, location, feature vector, feature space, attention, test, feature map, dimensional, kernel, cluster, block, extra
Topic15classifier, class, classification, decision, region, rbf, rate, error rate, test, center, nearest, layer, probability, neighbor, nearest neighbor, boundary, sample, training set, trained, gaussian
Topic16distribution, probability, gaussian, mixture, variable, density, likelihood, prior, bayesian, component, posterior, em, log, estimate, sample, approximation, estimation, matrix, conditional, maximum
Topic17motion, direction, velocity, visual, moving, target, stage, stimulus, eye, flow, filter, head, movement, location, response, signal, position, field, spatial, speed
Topic18object, view, recognition, representation, layer, visual, 3d, 2d, human, part, position, object recognition, transformation, scheme, image, aspect, frame, shape, rotation, viewpoint
Topic19field, visual, orientation, stimulus, response, map, cortex, cortical, receptive, receptive field, eye, activity, center, spatial, connection, ocular, dominance, ocular dominance, region, correlation
Topic20memory, representation, structure, capacity, sequence, associative, role, distributed, matrix, associative memory, bit, activity, stored, product, binding, code, local, connection, activation, symbol
\n", + "
" + ], + "text/plain": [ + " Terms per Topic\n", + "Topic1 bound, generalization, size, let, optimal, solution, theorem, equation, approximation, class, gradient, xi, loss, rate, matrix, convergence, theory, dimension, sample, minimum \n", + "Topic2 neuron, synaptic, connection, potential, dynamic, synapsis, activity, excitatory, layer, synapse, simulation, inhibitory, delay, biological, equation, state, et, et al, activation, firing \n", + "Topic3 state, action, policy, step, optimal, reinforcement, transition, reinforcement learning, probability, reward, dynamic, value function, markov, machine, task, agent, finite, iteration, sequence, decision \n", + "Topic4 image, face, pixel, recognition, local, distance, scale, digit, texture, filter, scene, vision, facial, pca, edge, region, visual, representation, transformation, surface \n", + "Topic5 hidden, layer, net, hidden unit, task, hidden layer, architecture, back, propagation, trained, connection, back propagation, activation, representation, generalization, output unit, neural net, training set, learn, test\n", + "Topic6 cell, firing, direction, head, rat, response, layer, synaptic, activity, spatial, inhibitory, synapsis, ii, cue, cortex, simulation, lot, active, complex, property \n", + "Topic7 word, recognition, speech, context, hmm, speaker, speech recognition, character, phoneme, probability, frame, sequence, rate, test, level, acoustic, experiment, letter, segmentation, state \n", + "Topic8 signal, noise, source, filter, component, frequency, channel, speech, matrix, independent, separation, sound, ica, phase, eeg, blind, auditory, dynamic, delay, fig \n", + "Topic9 control, controller, trajectory, motor, dynamic, movement, forward, task, feedback, arm, inverse, position, robot, architecture, hand, force, adaptive, change, command, plant \n", + "Topic10 circuit, chip, current, analog, voltage, vlsi, gate, threshold, transistor, pulse, design, implementation, synapse, bit, digital, device, analog vlsi, element, cmos, pp \n", + "Topic11 spike, rate, firing, stimulus, train, spike train, firing rate, response, frequency, neuron, potential, current, fig, signal, temporal, synaptic, probability, change, timing, distribution \n", + "Topic12 rule, learning rule, knowledge, category, condition, domain, symbolic, change, fuzzy, step, extraction, table, interval, eq, expert, trained, learn, activation, language, learned \n", + "Topic13 node, tree, decision, level, graph, structure, decision tree, layer, probability, leaf, bound, path, variable, activation, parent, child, split, routing, architecture, propagation \n", + "Topic14 feature, map, task, search, classification, experiment, part, representation, target, location, feature vector, feature space, attention, test, feature map, dimensional, kernel, cluster, block, extra \n", + "Topic15 classifier, class, classification, decision, region, rbf, rate, error rate, test, center, nearest, layer, probability, neighbor, nearest neighbor, boundary, sample, training set, trained, gaussian \n", + "Topic16 distribution, probability, gaussian, mixture, variable, density, likelihood, prior, bayesian, component, posterior, em, log, estimate, sample, approximation, estimation, matrix, conditional, maximum \n", + "Topic17 motion, direction, velocity, visual, moving, target, stage, stimulus, eye, flow, filter, head, movement, location, response, signal, position, field, spatial, speed \n", + "Topic18 object, view, recognition, representation, layer, visual, 3d, 2d, human, part, position, object recognition, transformation, scheme, image, aspect, frame, shape, rotation, viewpoint \n", + "Topic19 field, visual, orientation, stimulus, response, map, cortex, cortical, receptive, receptive field, eye, activity, center, spatial, connection, ocular, dominance, ocular dominance, region, correlation \n", + "Topic20 memory, representation, structure, capacity, sequence, associative, role, distributed, matrix, associative memory, bit, activity, stored, product, binding, code, local, connection, activation, symbol " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "\n", + "top_terms = 20\n", + "TOTAL_TOPICS = 20\n", + "vocabulary = np.array(cv.get_feature_names())\n", + "topic_terms = nmf_model.components_\n", + "topic_key_term_idxs = np.argsort(-np.absolute(topic_terms), axis=1)[:, :top_terms]\n", + "topic_keyterms = vocabulary[topic_key_term_idxs]\n", + "topics = [', '.join(topic) for topic in topic_keyterms]\n", + "pd.set_option('display.max_colwidth', -1)\n", + "topics_df = pd.DataFrame(topics,\n", + " columns = ['Terms per Topic'],\n", + " index=['Topic'+str(t) for t in range(1, TOTAL_TOPICS+1)])\n", + "topics_df" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + "
\n", + "" + ], + "text/plain": [ + "PreparedData(topic_coordinates= x y topics cluster Freq\n", + "topic \n", + "15 -0.260115 -0.132182 1 1 8.949317\n", + "0 -0.169232 -0.057779 2 1 8.736219\n", + "4 -0.095199 0.115760 3 1 6.925146\n", + "2 -0.204185 -0.249352 4 1 6.833288\n", + "19 0.090671 -0.002315 5 1 5.589408\n", + "13 0.003816 0.199239 6 1 5.551435\n", + "7 -0.252052 0.096757 7 1 5.546576\n", + "18 0.014703 -0.310935 8 1 5.253598\n", + "8 0.019121 -0.131388 9 1 5.229802\n", + "1 0.106777 -0.332599 10 1 5.043136\n", + "3 0.177097 0.190724 11 1 4.557814\n", + "6 0.081807 0.300827 12 1 4.271660\n", + "12 -0.326660 -0.019355 13 1 4.153102\n", + "11 -0.039922 -0.026440 14 1 3.954702\n", + "9 -0.233315 0.236775 15 1 3.855881\n", + "14 -0.069992 0.371659 16 1 3.845450\n", + "5 0.213361 -0.249280 17 1 3.275969\n", + "10 0.292863 -0.165666 18 1 3.169629\n", + "17 0.325647 0.027301 19 1 2.714555\n", + "16 0.324807 0.138248 20 1 2.543315, topic_info= Category Freq Term Total loglift logprob\n", + "term \n", + "8195 Default 10835.000000 neuron 10835.000000 30.0000 30.0000\n", + "4180 Default 9142.000000 feature 9142.000000 29.0000 29.0000\n", + "5595 Default 7885.000000 image 7885.000000 28.0000 28.0000\n", + "1607 Default 6778.000000 cell 6778.000000 27.0000 27.0000\n", + "11919 Default 11531.000000 state 11531.000000 26.0000 26.0000\n", + "10858 Default 6156.000000 rule 6156.000000 25.0000 25.0000\n", + "8516 Default 5011.000000 object 5011.000000 24.0000 24.0000\n", + "8319 Default 5965.000000 node 5965.000000 23.0000 23.0000\n", + "1822 Default 5211.000000 classifier 5211.000000 22.0000 22.0000\n", + "7687 Default 3491.000000 motion 3491.000000 21.0000 21.0000\n", + "11831 Default 3650.000000 spike 3650.000000 20.0000 20.0000\n", + "5314 Default 5907.000000 hidden 5907.000000 19.0000 19.0000\n", + "7274 Default 4212.000000 memory 4212.000000 18.0000 18.0000\n", + "14222 Default 3439.000000 word 3439.000000 17.0000 17.0000\n", + "2360 Default 4317.000000 control 4317.000000 16.0000 16.0000\n", + "11429 Default 5681.000000 signal 5681.000000 15.0000 15.0000\n", + "13072 Default 3530.000000 tree 3530.000000 14.0000 14.0000\n", + "8333 Default 4956.000000 noise 4956.000000 13.0000 13.0000\n", + "10295 Default 5035.000000 recognition 5035.000000 12.0000 12.0000\n", + "1775 Default 5111.000000 class 5111.000000 11.0000 11.0000\n", + "3143 Default 3187.000000 direction 3187.000000 10.0000 10.0000\n", + "1750 Default 2722.000000 circuit 2722.000000 9.0000 9.0000 \n", + "10185 Default 4941.000000 rate 4941.000000 8.0000 8.0000 \n", + "6465 Default 7240.000000 layer 7240.000000 7.0000 7.0000 \n", + "13863 Default 4366.000000 visual 4366.000000 6.0000 6.0000 \n", + "11816 Default 3080.000000 speech 3080.000000 5.0000 5.0000 \n", + "12029 Default 3708.000000 stimulus 3708.000000 4.0000 4.0000 \n", + "5321 Default 2878.000000 hidden unit 2878.000000 3.0000 3.0000 \n", + "3247 Default 4792.000000 distribution 4792.000000 2.0000 2.0000 \n", + "4238 Default 4464.000000 field 4464.000000 1.0000 1.0000 \n", + "... ... ... ... ... ... ... \n", + "4496 Topic20 404.272390 flow 784.358126 3.0089 -5.0528 \n", + "9724 Topic20 135.760839 primate 264.759847 3.0038 -6.1440 \n", + "10053 Topic20 178.623938 pursuit 396.583335 2.8741 -5.8696 \n", + "3146 Topic20 129.620031 directional 295.956467 2.8461 -6.1902 \n", + "11888 Topic20 518.180886 stage 1646.483868 2.5156 -4.8045 \n", + "5267 Topic20 383.570032 head 1171.614620 2.5551 -5.1053 \n", + "12941 Topic20 193.816181 tracking 505.033431 2.7140 -5.7879 \n", + "13863 Topic20 918.196567 visual 4366.618529 2.1124 -4.2324 \n", + "8742 Topic20 122.178295 opposite 283.923609 2.8285 -6.2494 \n", + "11654 Topic20 204.712632 smooth 601.432929 2.5940 -5.7332 \n", + "12488 Topic20 566.792549 target 2775.137307 2.0832 -4.7149 \n", + "4102 Topic20 419.733742 eye 1803.543122 2.2138 -5.0152 \n", + "11823 Topic20 272.007954 speed 1040.217188 2.3303 -5.4490 \n", + "7242 Topic20 210.857104 measurement 690.252612 2.4858 -5.7037 \n", + "7707 Topic20 343.772387 movement 1564.223057 2.1565 -5.2149 \n", + "2971 Topic20 209.734846 detector 700.334218 2.4660 -5.7090 \n", + "4365 Topic20 399.641246 filter 2499.862430 1.8383 -5.0643 \n", + "12029 Topic20 473.526107 stimulus 3708.354822 1.6136 -4.8946 \n", + "6023 Topic20 180.519010 integration 580.402913 2.5038 -5.8590 \n", + "6855 Topic20 331.332556 location 2142.952038 1.8049 -5.2517 \n", + "2969 Topic20 263.716319 detection 1353.966481 2.0358 -5.4800 \n", + "10836 Topic20 207.247658 rotation 894.157254 2.2097 -5.7209 \n", + "3438 Topic20 246.556042 edge 1414.195630 1.9250 -5.5473 \n", + "11777 Topic20 275.082036 spatial 1998.259843 1.6887 -5.4378 \n", + "9509 Topic20 297.546623 position 2775.706690 1.4386 -5.3593 \n", + "10624 Topic20 327.831217 response 4364.630743 1.0829 -5.2624 \n", + "12558 Topic20 269.600126 temporal 2245.696805 1.5519 -5.4579 \n", + "11429 Topic20 326.199172 signal 5681.226604 0.8143 -5.2673 \n", + "4238 Topic20 291.092933 field 4464.893998 0.9413 -5.3812 \n", + "6830 Topic20 210.535199 local 3422.007849 0.8834 -5.7052 \n", + "\n", + "[1338 rows x 6 columns], token_table= Topic Freq Term\n", + "term \n", + "26 1 0.049672 2d \n", + "26 2 0.037254 2d \n", + "26 7 0.065638 2d \n", + "26 11 0.010644 2d \n", + "26 13 0.010644 2d \n", + "26 15 0.044350 2d \n", + "26 19 0.672348 2d \n", + "26 20 0.108214 2d \n", + "49 1 0.049326 3d \n", + "49 6 0.026718 3d \n", + "49 19 0.836483 3d \n", + "49 20 0.088375 3d \n", + "221 7 0.442808 acoustic \n", + "221 9 0.010934 acoustic \n", + "221 12 0.539023 acoustic \n", + "221 20 0.006560 acoustic \n", + "222 7 0.803396 acoustic signal \n", + "222 11 0.036189 acoustic signal \n", + "222 12 0.159232 acoustic signal \n", + "234 4 0.803899 action \n", + "234 6 0.003809 action \n", + "234 9 0.071820 action \n", + "234 11 0.022036 action \n", + "234 14 0.034006 action \n", + "234 17 0.002993 action \n", + "234 18 0.061483 action \n", + "235 2 0.021232 action pair \n", + "235 4 0.962502 action pair \n", + "235 18 0.014154 action pair \n", + "236 6 0.064287 action potential\n", + "... .. ... ... \n", + "14226 12 0.995347 word word \n", + "14285 5 0.065855 writer \n", + "14285 6 0.065855 writer \n", + "14285 12 0.823184 writer \n", + "14285 16 0.046098 writer \n", + "14291 1 0.037068 wta \n", + "14291 5 0.137151 wta \n", + "14291 15 0.726528 wta \n", + "14291 16 0.051895 wta \n", + "14291 19 0.044481 wta \n", + "14306 1 0.321704 xi \n", + "14306 2 0.501480 xi \n", + "14306 6 0.083701 xi \n", + "14306 10 0.039303 xi \n", + "14306 13 0.032753 xi \n", + "14306 19 0.020379 xi \n", + "14319 2 0.094345 xor \n", + "14319 3 0.619136 xor \n", + "14319 10 0.165103 xor \n", + "14319 14 0.058965 xor \n", + "14319 15 0.050121 xor \n", + "14319 16 0.008845 xor \n", + "14341 1 0.071723 yi xi \n", + "14341 2 0.932402 yi xi \n", + "14373 2 0.103026 z_ \n", + "14373 5 0.794774 z_ \n", + "14373 7 0.103026 z_ \n", + "14402 6 0.107194 zone \n", + "14402 8 0.786090 zone \n", + "14402 15 0.107194 zone \n", + "\n", + "[6432 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[16, 1, 5, 3, 20, 14, 8, 19, 9, 2, 4, 7, 13, 12, 10, 15, 6, 11, 18, 17])" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pyLDAvis.sklearn.prepare(nmf_model, cv_features, cv, mds='mmds')" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + "
\n", + "" + ], + "text/plain": [ + "PreparedData(topic_coordinates= x y topics cluster Freq\n", + "topic \n", + "15 261.866913 15.744661 1 1 8.949317\n", + "0 22.730736 -149.245560 2 1 8.736219\n", + "4 164.130554 -252.668655 3 1 6.925146\n", + "2 98.716347 329.619263 4 1 6.833288\n", + "19 132.582458 60.872810 5 1 5.589408\n", + "13 51.697769 177.871597 6 1 5.551435\n", + "7 -202.110870 174.386536 7 1 5.546576\n", + "18 -68.771095 283.931549 8 1 5.253598\n", + "8 -156.386017 -193.580460 9 1 5.229802\n", + "1 -247.678421 1.908665 10 1 5.043136\n", + "3 366.535126 144.723511 11 1 4.557814\n", + "6 -106.229080 -49.626228 12 1 4.271660\n", + "12 407.124603 -29.954910 13 1 4.153102\n", + "11 205.654541 176.936356 14 1 3.954702\n", + "9 25.666317 -7.783872 15 1 3.855881\n", + "14 157.937012 -89.598343 16 1 3.845450\n", + "5 -5.215083 -298.734161 17 1 3.275969\n", + "10 -68.576965 100.054794 18 1 3.169629\n", + "17 301.500580 -162.898071 19 1 2.714555\n", + "16 276.904633 309.956238 20 1 2.543315, topic_info= Category Freq Term Total loglift logprob\n", + "term \n", + "8195 Default 10835.000000 neuron 10835.000000 30.0000 30.0000\n", + "4180 Default 9142.000000 feature 9142.000000 29.0000 29.0000\n", + "5595 Default 7885.000000 image 7885.000000 28.0000 28.0000\n", + "1607 Default 6778.000000 cell 6778.000000 27.0000 27.0000\n", + "11919 Default 11531.000000 state 11531.000000 26.0000 26.0000\n", + "10858 Default 6156.000000 rule 6156.000000 25.0000 25.0000\n", + "8516 Default 5011.000000 object 5011.000000 24.0000 24.0000\n", + "8319 Default 5965.000000 node 5965.000000 23.0000 23.0000\n", + "1822 Default 5211.000000 classifier 5211.000000 22.0000 22.0000\n", + "7687 Default 3491.000000 motion 3491.000000 21.0000 21.0000\n", + "11831 Default 3650.000000 spike 3650.000000 20.0000 20.0000\n", + "5314 Default 5907.000000 hidden 5907.000000 19.0000 19.0000\n", + "7274 Default 4212.000000 memory 4212.000000 18.0000 18.0000\n", + "14222 Default 3439.000000 word 3439.000000 17.0000 17.0000\n", + "2360 Default 4317.000000 control 4317.000000 16.0000 16.0000\n", + "11429 Default 5681.000000 signal 5681.000000 15.0000 15.0000\n", + "13072 Default 3530.000000 tree 3530.000000 14.0000 14.0000\n", + "8333 Default 4956.000000 noise 4956.000000 13.0000 13.0000\n", + "10295 Default 5035.000000 recognition 5035.000000 12.0000 12.0000\n", + "1775 Default 5111.000000 class 5111.000000 11.0000 11.0000\n", + "3143 Default 3187.000000 direction 3187.000000 10.0000 10.0000\n", + "1750 Default 2722.000000 circuit 2722.000000 9.0000 9.0000 \n", + "10185 Default 4941.000000 rate 4941.000000 8.0000 8.0000 \n", + "6465 Default 7240.000000 layer 7240.000000 7.0000 7.0000 \n", + "13863 Default 4366.000000 visual 4366.000000 6.0000 6.0000 \n", + "11816 Default 3080.000000 speech 3080.000000 5.0000 5.0000 \n", + "12029 Default 3708.000000 stimulus 3708.000000 4.0000 4.0000 \n", + "5321 Default 2878.000000 hidden unit 2878.000000 3.0000 3.0000 \n", + "3247 Default 4792.000000 distribution 4792.000000 2.0000 2.0000 \n", + "4238 Default 4464.000000 field 4464.000000 1.0000 1.0000 \n", + "... ... ... ... ... ... ... \n", + "4496 Topic20 404.272390 flow 784.358126 3.0089 -5.0528 \n", + "9724 Topic20 135.760839 primate 264.759847 3.0038 -6.1440 \n", + "10053 Topic20 178.623938 pursuit 396.583335 2.8741 -5.8696 \n", + "3146 Topic20 129.620031 directional 295.956467 2.8461 -6.1902 \n", + "11888 Topic20 518.180886 stage 1646.483868 2.5156 -4.8045 \n", + "5267 Topic20 383.570032 head 1171.614620 2.5551 -5.1053 \n", + "12941 Topic20 193.816181 tracking 505.033431 2.7140 -5.7879 \n", + "13863 Topic20 918.196567 visual 4366.618529 2.1124 -4.2324 \n", + "8742 Topic20 122.178295 opposite 283.923609 2.8285 -6.2494 \n", + "11654 Topic20 204.712632 smooth 601.432929 2.5940 -5.7332 \n", + "12488 Topic20 566.792549 target 2775.137307 2.0832 -4.7149 \n", + "4102 Topic20 419.733742 eye 1803.543122 2.2138 -5.0152 \n", + "11823 Topic20 272.007954 speed 1040.217188 2.3303 -5.4490 \n", + "7242 Topic20 210.857104 measurement 690.252612 2.4858 -5.7037 \n", + "7707 Topic20 343.772387 movement 1564.223057 2.1565 -5.2149 \n", + "2971 Topic20 209.734846 detector 700.334218 2.4660 -5.7090 \n", + "4365 Topic20 399.641246 filter 2499.862430 1.8383 -5.0643 \n", + "12029 Topic20 473.526107 stimulus 3708.354822 1.6136 -4.8946 \n", + "6023 Topic20 180.519010 integration 580.402913 2.5038 -5.8590 \n", + "6855 Topic20 331.332556 location 2142.952038 1.8049 -5.2517 \n", + "2969 Topic20 263.716319 detection 1353.966481 2.0358 -5.4800 \n", + "10836 Topic20 207.247658 rotation 894.157254 2.2097 -5.7209 \n", + "3438 Topic20 246.556042 edge 1414.195630 1.9250 -5.5473 \n", + "11777 Topic20 275.082036 spatial 1998.259843 1.6887 -5.4378 \n", + "9509 Topic20 297.546623 position 2775.706690 1.4386 -5.3593 \n", + "10624 Topic20 327.831217 response 4364.630743 1.0829 -5.2624 \n", + "12558 Topic20 269.600126 temporal 2245.696805 1.5519 -5.4579 \n", + "11429 Topic20 326.199172 signal 5681.226604 0.8143 -5.2673 \n", + "4238 Topic20 291.092933 field 4464.893998 0.9413 -5.3812 \n", + "6830 Topic20 210.535199 local 3422.007849 0.8834 -5.7052 \n", + "\n", + "[1338 rows x 6 columns], token_table= Topic Freq Term\n", + "term \n", + "26 1 0.049672 2d \n", + "26 2 0.037254 2d \n", + "26 7 0.065638 2d \n", + "26 11 0.010644 2d \n", + "26 13 0.010644 2d \n", + "26 15 0.044350 2d \n", + "26 19 0.672348 2d \n", + "26 20 0.108214 2d \n", + "49 1 0.049326 3d \n", + "49 6 0.026718 3d \n", + "49 19 0.836483 3d \n", + "49 20 0.088375 3d \n", + "221 7 0.442808 acoustic \n", + "221 9 0.010934 acoustic \n", + "221 12 0.539023 acoustic \n", + "221 20 0.006560 acoustic \n", + "222 7 0.803396 acoustic signal \n", + "222 11 0.036189 acoustic signal \n", + "222 12 0.159232 acoustic signal \n", + "234 4 0.803899 action \n", + "234 6 0.003809 action \n", + "234 9 0.071820 action \n", + "234 11 0.022036 action \n", + "234 14 0.034006 action \n", + "234 17 0.002993 action \n", + "234 18 0.061483 action \n", + "235 2 0.021232 action pair \n", + "235 4 0.962502 action pair \n", + "235 18 0.014154 action pair \n", + "236 6 0.064287 action potential\n", + "... .. ... ... \n", + "14226 12 0.995347 word word \n", + "14285 5 0.065855 writer \n", + "14285 6 0.065855 writer \n", + "14285 12 0.823184 writer \n", + "14285 16 0.046098 writer \n", + "14291 1 0.037068 wta \n", + "14291 5 0.137151 wta \n", + "14291 15 0.726528 wta \n", + "14291 16 0.051895 wta \n", + "14291 19 0.044481 wta \n", + "14306 1 0.321704 xi \n", + "14306 2 0.501480 xi \n", + "14306 6 0.083701 xi \n", + "14306 10 0.039303 xi \n", + "14306 13 0.032753 xi \n", + "14306 19 0.020379 xi \n", + "14319 2 0.094345 xor \n", + "14319 3 0.619136 xor \n", + "14319 10 0.165103 xor \n", + "14319 14 0.058965 xor \n", + "14319 15 0.050121 xor \n", + "14319 16 0.008845 xor \n", + "14341 1 0.071723 yi xi \n", + "14341 2 0.932402 yi xi \n", + "14373 2 0.103026 z_ \n", + "14373 5 0.794774 z_ \n", + "14373 7 0.103026 z_ \n", + "14402 6 0.107194 zone \n", + "14402 8 0.786090 zone \n", + "14402 15 0.107194 zone \n", + "\n", + "[6432 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[16, 1, 5, 3, 20, 14, 8, 19, 9, 2, 4, 7, 13, 12, 10, 15, 6, 11, 18, 17])" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pyLDAvis.sklearn.prepare(nmf_model, cv_features, cv, mds='tsne')" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + "
\n", + "" + ], + "text/plain": [ + "PreparedData(topic_coordinates= x y topics cluster Freq\n", + "topic \n", + "15 0.114020 0.040762 1 1 8.949317\n", + "0 0.099219 0.093564 2 1 8.736219\n", + "4 0.105059 0.020454 3 1 6.925146\n", + "2 0.093346 0.133310 4 1 6.833288\n", + "19 -0.007240 0.049852 5 1 5.589408\n", + "13 0.109491 -0.080463 6 1 5.551435\n", + "7 -0.041086 0.042637 7 1 5.546576\n", + "18 -0.213157 -0.099618 8 1 5.253598\n", + "8 0.010708 0.007436 9 1 5.229802\n", + "1 -0.189084 0.157860 10 1 5.043136\n", + "3 0.034540 -0.179072 11 1 4.557814\n", + "6 0.139007 -0.063421 12 1 4.271660\n", + "12 0.102378 0.087348 13 1 4.153102\n", + "11 0.075546 0.040492 14 1 3.954702\n", + "9 -0.059594 0.052797 15 1 3.855881\n", + "14 0.179427 -0.053959 16 1 3.845450\n", + "5 -0.211402 0.032226 17 1 3.275969\n", + "10 -0.178456 0.085371 18 1 3.169629\n", + "17 -0.002201 -0.190718 19 1 2.714555\n", + "16 -0.160520 -0.176858 20 1 2.543315, topic_info= Category Freq Term Total loglift logprob\n", + "term \n", + "8195 Default 10835.000000 neuron 10835.000000 30.0000 30.0000\n", + "4180 Default 9142.000000 feature 9142.000000 29.0000 29.0000\n", + "5595 Default 7885.000000 image 7885.000000 28.0000 28.0000\n", + "1607 Default 6778.000000 cell 6778.000000 27.0000 27.0000\n", + "11919 Default 11531.000000 state 11531.000000 26.0000 26.0000\n", + "10858 Default 6156.000000 rule 6156.000000 25.0000 25.0000\n", + "8516 Default 5011.000000 object 5011.000000 24.0000 24.0000\n", + "8319 Default 5965.000000 node 5965.000000 23.0000 23.0000\n", + "1822 Default 5211.000000 classifier 5211.000000 22.0000 22.0000\n", + "7687 Default 3491.000000 motion 3491.000000 21.0000 21.0000\n", + "11831 Default 3650.000000 spike 3650.000000 20.0000 20.0000\n", + "5314 Default 5907.000000 hidden 5907.000000 19.0000 19.0000\n", + "7274 Default 4212.000000 memory 4212.000000 18.0000 18.0000\n", + "14222 Default 3439.000000 word 3439.000000 17.0000 17.0000\n", + "2360 Default 4317.000000 control 4317.000000 16.0000 16.0000\n", + "11429 Default 5681.000000 signal 5681.000000 15.0000 15.0000\n", + "13072 Default 3530.000000 tree 3530.000000 14.0000 14.0000\n", + "8333 Default 4956.000000 noise 4956.000000 13.0000 13.0000\n", + "10295 Default 5035.000000 recognition 5035.000000 12.0000 12.0000\n", + "1775 Default 5111.000000 class 5111.000000 11.0000 11.0000\n", + "3143 Default 3187.000000 direction 3187.000000 10.0000 10.0000\n", + "1750 Default 2722.000000 circuit 2722.000000 9.0000 9.0000 \n", + "10185 Default 4941.000000 rate 4941.000000 8.0000 8.0000 \n", + "6465 Default 7240.000000 layer 7240.000000 7.0000 7.0000 \n", + "13863 Default 4366.000000 visual 4366.000000 6.0000 6.0000 \n", + "11816 Default 3080.000000 speech 3080.000000 5.0000 5.0000 \n", + "12029 Default 3708.000000 stimulus 3708.000000 4.0000 4.0000 \n", + "5321 Default 2878.000000 hidden unit 2878.000000 3.0000 3.0000 \n", + "3247 Default 4792.000000 distribution 4792.000000 2.0000 2.0000 \n", + "4238 Default 4464.000000 field 4464.000000 1.0000 1.0000 \n", + "... ... ... ... ... ... ... \n", + "4496 Topic20 404.272390 flow 784.358126 3.0089 -5.0528 \n", + "9724 Topic20 135.760839 primate 264.759847 3.0038 -6.1440 \n", + "10053 Topic20 178.623938 pursuit 396.583335 2.8741 -5.8696 \n", + "3146 Topic20 129.620031 directional 295.956467 2.8461 -6.1902 \n", + "11888 Topic20 518.180886 stage 1646.483868 2.5156 -4.8045 \n", + "5267 Topic20 383.570032 head 1171.614620 2.5551 -5.1053 \n", + "12941 Topic20 193.816181 tracking 505.033431 2.7140 -5.7879 \n", + "13863 Topic20 918.196567 visual 4366.618529 2.1124 -4.2324 \n", + "8742 Topic20 122.178295 opposite 283.923609 2.8285 -6.2494 \n", + "11654 Topic20 204.712632 smooth 601.432929 2.5940 -5.7332 \n", + "12488 Topic20 566.792549 target 2775.137307 2.0832 -4.7149 \n", + "4102 Topic20 419.733742 eye 1803.543122 2.2138 -5.0152 \n", + "11823 Topic20 272.007954 speed 1040.217188 2.3303 -5.4490 \n", + "7242 Topic20 210.857104 measurement 690.252612 2.4858 -5.7037 \n", + "7707 Topic20 343.772387 movement 1564.223057 2.1565 -5.2149 \n", + "2971 Topic20 209.734846 detector 700.334218 2.4660 -5.7090 \n", + "4365 Topic20 399.641246 filter 2499.862430 1.8383 -5.0643 \n", + "12029 Topic20 473.526107 stimulus 3708.354822 1.6136 -4.8946 \n", + "6023 Topic20 180.519010 integration 580.402913 2.5038 -5.8590 \n", + "6855 Topic20 331.332556 location 2142.952038 1.8049 -5.2517 \n", + "2969 Topic20 263.716319 detection 1353.966481 2.0358 -5.4800 \n", + "10836 Topic20 207.247658 rotation 894.157254 2.2097 -5.7209 \n", + "3438 Topic20 246.556042 edge 1414.195630 1.9250 -5.5473 \n", + "11777 Topic20 275.082036 spatial 1998.259843 1.6887 -5.4378 \n", + "9509 Topic20 297.546623 position 2775.706690 1.4386 -5.3593 \n", + "10624 Topic20 327.831217 response 4364.630743 1.0829 -5.2624 \n", + "12558 Topic20 269.600126 temporal 2245.696805 1.5519 -5.4579 \n", + "11429 Topic20 326.199172 signal 5681.226604 0.8143 -5.2673 \n", + "4238 Topic20 291.092933 field 4464.893998 0.9413 -5.3812 \n", + "6830 Topic20 210.535199 local 3422.007849 0.8834 -5.7052 \n", + "\n", + "[1338 rows x 6 columns], token_table= Topic Freq Term\n", + "term \n", + "26 1 0.049672 2d \n", + "26 2 0.037254 2d \n", + "26 7 0.065638 2d \n", + "26 11 0.010644 2d \n", + "26 13 0.010644 2d \n", + "26 15 0.044350 2d \n", + "26 19 0.672348 2d \n", + "26 20 0.108214 2d \n", + "49 1 0.049326 3d \n", + "49 6 0.026718 3d \n", + "49 19 0.836483 3d \n", + "49 20 0.088375 3d \n", + "221 7 0.442808 acoustic \n", + "221 9 0.010934 acoustic \n", + "221 12 0.539023 acoustic \n", + "221 20 0.006560 acoustic \n", + "222 7 0.803396 acoustic signal \n", + "222 11 0.036189 acoustic signal \n", + "222 12 0.159232 acoustic signal \n", + "234 4 0.803899 action \n", + "234 6 0.003809 action \n", + "234 9 0.071820 action \n", + "234 11 0.022036 action \n", + "234 14 0.034006 action \n", + "234 17 0.002993 action \n", + "234 18 0.061483 action \n", + "235 2 0.021232 action pair \n", + "235 4 0.962502 action pair \n", + "235 18 0.014154 action pair \n", + "236 6 0.064287 action potential\n", + "... .. ... ... \n", + "14226 12 0.995347 word word \n", + "14285 5 0.065855 writer \n", + "14285 6 0.065855 writer \n", + "14285 12 0.823184 writer \n", + "14285 16 0.046098 writer \n", + "14291 1 0.037068 wta \n", + "14291 5 0.137151 wta \n", + "14291 15 0.726528 wta \n", + "14291 16 0.051895 wta \n", + "14291 19 0.044481 wta \n", + "14306 1 0.321704 xi \n", + "14306 2 0.501480 xi \n", + "14306 6 0.083701 xi \n", + "14306 10 0.039303 xi \n", + "14306 13 0.032753 xi \n", + "14306 19 0.020379 xi \n", + "14319 2 0.094345 xor \n", + "14319 3 0.619136 xor \n", + "14319 10 0.165103 xor \n", + "14319 14 0.058965 xor \n", + "14319 15 0.050121 xor \n", + "14319 16 0.008845 xor \n", + "14341 1 0.071723 yi xi \n", + "14341 2 0.932402 yi xi \n", + "14373 2 0.103026 z_ \n", + "14373 5 0.794774 z_ \n", + "14373 7 0.103026 z_ \n", + "14402 6 0.107194 zone \n", + "14402 8 0.786090 zone \n", + "14402 15 0.107194 zone \n", + "\n", + "[6432 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[16, 1, 5, 3, 20, 14, 8, 19, 9, 2, 4, 7, 13, 12, 10, 15, 6, 11, 18, 17])" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pyLDAvis.sklearn.prepare(nmf_model, cv_features, cv, mds='pcoa')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06e - Document Summarization.ipynb b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06e - Document Summarization.ipynb new file mode 100644 index 0000000..c67048d --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/Ch06e - Document Summarization.ipynb @@ -0,0 +1,854 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "DOCUMENT = \"\"\"\n", + "The Elder Scrolls V: Skyrim is an action role-playing video game developed by Bethesda Game Studios \n", + "and published by Bethesda Softworks. It is the fifth main installment in The Elder Scrolls series, \n", + "following The Elder Scrolls IV: Oblivion.\n", + "The game's main story revolves around the player character's quest to defeat Alduin the World-Eater, \n", + "a dragon who is prophesied to destroy the world. The game is set 200 years after the events of Oblivion \n", + "and takes place in the fictional province of Skyrim. Over the course of the game, the player completes \n", + "quests and develops the character by improving skills. The game continues the open-world tradition of \n", + "its predecessors by allowing the player to travel anywhere in the game world at any time, and to ignore \n", + "or postpone the main storyline indefinitely.\n", + "The team opted for a unique and more diverse open world than Oblivion's Imperial Province of Cyrodiil, \n", + "which game director and executive producer Todd Howard considered less interesting by comparison. \n", + "The game was released to critical acclaim, with reviewers particularly mentioning the character advancement \n", + "and setting, and is considered to be one of the greatest video games of all time.\n", + "\n", + "\n", + "The Elder Scrolls V: Skyrim is an action role-playing game, playable from either a first or \n", + "third-person perspective. The player may freely roam over the land of Skyrim which is an open world \n", + "environment consisting of wilderness expanses, dungeons, cities, towns, fortresses, and villages. \n", + "Players may navigate the game world more quickly by riding horses or by utilizing a fast-travel system \n", + "which allows them to warp to previously discovered locations. The game's main quest can be completed or \n", + "ignored at the player's preference after the first stage of the quest is finished. However, some quests \n", + "rely on the main storyline being at least partially completed. Non-player characters (NPCs) populate the \n", + "world and can be interacted with in a number of ways: the player may engage them in conversation, \n", + "marry an eligible NPC, kill them or engage in a nonlethal \"brawl\". The player may \n", + "choose to join factions which are organized groups of NPCs — for example, the Dark Brotherhood, a band \n", + "of assassins. Each of the factions has an associated quest path to progress through. Each city and town \n", + "in the game world has jobs that the player can engage in, such as farming.\n", + "\n", + "Players have the option to develop their character. At the beginning of the game, players create \n", + "their character by selecting their sex and choosing between one of several races including humans, \n", + "orcs, elves, and anthropomorphic cat or lizard-like creatures and then customizing their character's \n", + "appearance. Over the course of the game, players improve their character's skills which are numerical \n", + "representations of their ability in certain areas. There are eighteen skills divided evenly among the \n", + "three schools of combat, magic, and stealth. When players have trained skills enough to meet the \n", + "required experience, their character levels up. Health is depleted primarily when the player \n", + "takes damage and the loss of all health results in death. Magicka is depleted by the use of spells, \n", + "certain poisons and by being struck by lightning-based attacks. Stamina determines the player's \n", + "effectiveness in combat and is depleted by sprinting, performing heavy \"power attacks\" \n", + "and being struck by frost-based attacks. Skyrim is the first entry in The Elder Scrolls to \n", + "include dragons in the game's wilderness. Like other creatures, dragons are generated randomly in \n", + "the world and will engage in combat with NPCs, creatures and the player. Some dragons may attack \n", + "cities and towns when in their proximity. The player character can absorb the souls of dragons \n", + "in order to use powerful spells called \"dragon shouts\" or \"Thu'um\". A regeneration \n", + "period limits the player's use of shouts in gameplay.\n", + "\n", + "Skyrim is set around 200 years after the events of The Elder Scrolls IV: Oblivion, although it is \n", + "not a direct sequel. The game takes place in Skyrim, a province of the Empire on the continent of \n", + "Tamriel, amid a civil war between two factions: the Stormcloaks, led by Ulfric Stormcloak, and the \n", + "Imperial Legion, led by General Tullius. The player character is a Dragonborn, a mortal born with \n", + "the soul and power of a dragon. Alduin, a large black dragon who returns to the land after being \n", + "lost in time, serves as the game's primary antagonist. Alduin is the first dragon created by Akatosh, \n", + "one of the series' gods, and is prophesied to destroy and consume the world.\n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Text Wrangling" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "\n", + "DOCUMENT = re.sub(r'\\n|\\r', ' ', DOCUMENT)\n", + "DOCUMENT = re.sub(r' +', ' ', DOCUMENT)\n", + "DOCUMENT = DOCUMENT.strip()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The game's main story revolves around the player character's quest to defeat Alduin the World-Eater, a dragon who is prophesied to destroy the world.\n", + "Over the course of the game, the player completes quests and develops the character by improving skills.\n", + "The game continues the open-world tradition of its predecessors by allowing the player to travel anywhere in the game world at any time, and to ignore or postpone the main storyline indefinitely.\n", + "The player may freely roam over the land of Skyrim which is an open world environment consisting of wilderness expanses, dungeons, cities, towns, fortresses, and villages.\n", + "Each city and town in the game world has jobs that the player can engage in, such as farming.\n", + "Over the course of the game, players improve their character's skills which are numerical representations of their ability in certain areas.\n", + "Like other creatures, dragons are generated randomly in the world and will engage in combat with NPCs, creatures and the player.\n" + ] + } + ], + "source": [ + "from gensim.summarization import summarize\n", + "\n", + "print(summarize(DOCUMENT, ratio=0.2, split=False))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The game's main story revolves around the player character's quest to defeat Alduin the World-Eater, a dragon who is prophesied to destroy the world.\n", + "Over the course of the game, the player completes quests and develops the character by improving skills.\n", + "The player may freely roam over the land of Skyrim which is an open world environment consisting of wilderness expanses, dungeons, cities, towns, fortresses, and villages.\n" + ] + } + ], + "source": [ + "print(summarize(DOCUMENT, word_count=75, split=False))" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "35" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import nltk\n", + "\n", + "sentences = nltk.sent_tokenize(DOCUMENT)\n", + "len(sentences)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import re\n", + "\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "\n", + "def normalize_document(doc):\n", + " # lower case and remove special characters\\whitespaces\n", + " doc = re.sub(r'[^a-zA-Z\\s]', '', doc, re.I|re.A)\n", + " doc = doc.lower()\n", + " doc = doc.strip()\n", + " # tokenize document\n", + " tokens = nltk.word_tokenize(doc)\n", + " # filter stopwords out of document\n", + " filtered_tokens = [token for token in tokens if token not in stop_words]\n", + " # re-create document from filtered tokens\n", + " doc = ' '.join(filtered_tokens)\n", + " return doc\n", + "\n", + "normalize_corpus = np.vectorize(normalize_document)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['elder scrolls v skyrim action roleplaying video game developed bethesda game studios published bethesda softworks',\n", + " 'fifth main installment elder scrolls series following elder scrolls iv oblivion',\n", + " 'games main story revolves around player characters quest defeat alduin worldeater dragon prophesied destroy world'],\n", + " dtype='\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...25262728293031323334
ability0.000.00.000.00.00.000.00.000.000.0...0.00.00.00.000.00.000.00.00.000.00
absorb0.000.00.000.00.00.000.00.000.000.0...0.00.00.00.310.00.000.00.00.000.00
acclaim0.000.00.000.00.00.000.00.280.000.0...0.00.00.00.000.00.000.00.00.000.00
action0.250.00.000.00.00.000.00.000.320.0...0.00.00.00.000.00.000.00.00.000.00
advancement0.000.00.000.00.00.000.00.280.000.0...0.00.00.00.000.00.000.00.00.000.00
akatosh0.000.00.000.00.00.000.00.000.000.0...0.00.00.00.000.00.000.00.00.000.33
alduin0.000.00.250.00.00.000.00.000.000.0...0.00.00.00.000.00.000.00.00.260.27
allowing0.000.00.000.00.00.270.00.000.000.0...0.00.00.00.000.00.000.00.00.000.00
allows0.000.00.000.00.00.000.00.000.000.0...0.00.00.00.000.00.000.00.00.000.00
although0.000.00.000.00.00.000.00.000.000.0...0.00.00.00.000.00.330.00.00.000.00
\n", + "

10 rows × 35 columns

\n", + "" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 7 8 9 ... 25 \\\n", + "ability 0.00 0.0 0.00 0.0 0.0 0.00 0.0 0.00 0.00 0.0 ... 0.0 \n", + "absorb 0.00 0.0 0.00 0.0 0.0 0.00 0.0 0.00 0.00 0.0 ... 0.0 \n", + "acclaim 0.00 0.0 0.00 0.0 0.0 0.00 0.0 0.28 0.00 0.0 ... 0.0 \n", + "action 0.25 0.0 0.00 0.0 0.0 0.00 0.0 0.00 0.32 0.0 ... 0.0 \n", + "advancement 0.00 0.0 0.00 0.0 0.0 0.00 0.0 0.28 0.00 0.0 ... 0.0 \n", + "akatosh 0.00 0.0 0.00 0.0 0.0 0.00 0.0 0.00 0.00 0.0 ... 0.0 \n", + "alduin 0.00 0.0 0.25 0.0 0.0 0.00 0.0 0.00 0.00 0.0 ... 0.0 \n", + "allowing 0.00 0.0 0.00 0.0 0.0 0.27 0.0 0.00 0.00 0.0 ... 0.0 \n", + "allows 0.00 0.0 0.00 0.0 0.0 0.00 0.0 0.00 0.00 0.0 ... 0.0 \n", + "although 0.00 0.0 0.00 0.0 0.0 0.00 0.0 0.00 0.00 0.0 ... 0.0 \n", + "\n", + " 26 27 28 29 30 31 32 33 34 \n", + "ability 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.00 0.00 \n", + "absorb 0.0 0.0 0.31 0.0 0.00 0.0 0.0 0.00 0.00 \n", + "acclaim 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.00 0.00 \n", + "action 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.00 0.00 \n", + "advancement 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.00 0.00 \n", + "akatosh 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.00 0.33 \n", + "alduin 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.26 0.27 \n", + "allowing 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.00 0.00 \n", + "allows 0.0 0.0 0.00 0.0 0.00 0.0 0.0 0.00 0.00 \n", + "although 0.0 0.0 0.00 0.0 0.33 0.0 0.0 0.00 0.00 \n", + "\n", + "[10 rows x 35 columns]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "import pandas as pd\n", + "\n", + "tv = TfidfVectorizer(min_df=0., max_df=1., use_idf=True)\n", + "dt_matrix = tv.fit_transform(norm_sentences)\n", + "dt_matrix = dt_matrix.toarray()\n", + "\n", + "vocab = tv.get_feature_names()\n", + "td_matrix = dt_matrix.T\n", + "print(td_matrix.shape)\n", + "pd.DataFrame(np.round(td_matrix, 2), index=vocab).head(10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Latent Semantic Analysis" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "from scipy.sparse.linalg import svds\n", + " \n", + "def low_rank_svd(matrix, singular_count=2):\n", + " u, s, vt = svds(matrix, k=singular_count)\n", + " return u, s, vt" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(270, 3) (3,) (3, 35)\n" + ] + } + ], + "source": [ + "num_sentences = 8\n", + "num_topics = 3\n", + "\n", + "u, s, vt = low_rank_svd(td_matrix, singular_count=num_topics) \n", + "print(u.shape, s.shape, vt.shape)\n", + "term_topic_mat, singular_values, topic_document_mat = u, s, vt" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "# remove singular values below threshold \n", + "sv_threshold = 0.5\n", + "min_sigma_value = max(singular_values) * sv_threshold\n", + "singular_values[singular_values < min_sigma_value] = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0.53291263, 0.61639562, 0.60427539, 0.52307109, 0.50141128,\n", + " 0.32352969, 0.1506046 , 0.25383436, 0.60567083, 0.35902104,\n", + " 0.22562997, 0.34608934, 0.15781555, 0.40522541, 0.24505982,\n", + " 0.19874104, 0.39317895, 0.45392878, 0.31638528, 0.47353378,\n", + " 0.18348908, 0.45731421, 0.13929749, 0.38932101, 0.36829067,\n", + " 0.57822992, 0.40853736, 0.26260062, 0.38904585, 0.32776714,\n", + " 0.67662776, 0.21866561, 0.34687796, 0.3234621 , 0.46107093])" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "salience_scores = np.sqrt(np.dot(np.square(singular_values), \n", + " np.square(topic_document_mat)))\n", + "salience_scores" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "top_sentence_indices = (-salience_scores).argsort()[:num_sentences]\n", + "top_sentence_indices.sort()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The Elder Scrolls V: Skyrim is an action role-playing video game developed by Bethesda Game Studios and published by Bethesda Softworks.\n", + "It is the fifth main installment in The Elder Scrolls series, following The Elder Scrolls IV: Oblivion.\n", + "The game's main story revolves around the player character's quest to defeat Alduin the World-Eater, a dragon who is prophesied to destroy the world.\n", + "The game is set 200 years after the events of Oblivion and takes place in the fictional province of Skyrim.\n", + "Over the course of the game, the player completes quests and develops the character by improving skills.\n", + "The Elder Scrolls V: Skyrim is an action role-playing game, playable from either a first or third-person perspective.\n", + "Skyrim is the first entry in The Elder Scrolls to include dragons in the game's wilderness.\n", + "Skyrim is set around 200 years after the events of The Elder Scrolls IV: Oblivion, although it is not a direct sequel.\n" + ] + } + ], + "source": [ + "print('\\n'.join(np.array(sentences)[top_sentence_indices]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# TextRank" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(35, 35)\n" + ] + }, + { + "data": { + "text/plain": [ + "array([[1. , 0.182, 0. , ..., 0. , 0. , 0. ],\n", + " [0.182, 1. , 0.05 , ..., 0. , 0. , 0.084],\n", + " [0. , 0.05 , 1. , ..., 0.101, 0.165, 0.319],\n", + " ...,\n", + " [0. , 0. , 0.101, ..., 1. , 0.066, 0.069],\n", + " [0. , 0. , 0.165, ..., 0.066, 1. , 0.123],\n", + " [0. , 0.084, 0.319, ..., 0.069, 0.123, 1. ]])" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "similarity_matrix = np.matmul(dt_matrix, dt_matrix.T)\n", + "print(similarity_matrix.shape)\n", + "np.round(similarity_matrix, 3)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import networkx\n", + "\n", + "similarity_graph = networkx.from_numpy_array(similarity_matrix)\n", + "similarity_graph" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import matplotlib.pyplot as plt\n", + "%matplotlib inline\n", + "\n", + "plt.figure(figsize=(12, 6))\n", + "networkx.draw_networkx(similarity_graph, node_color='lime')" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(0.03729704979721473, 2),\n", + " (0.03490843547537587, 25),\n", + " (0.03460086870923609, 4),\n", + " (0.03240744530656926, 8),\n", + " (0.03218748996523769, 28),\n", + " (0.03183673426880143, 11),\n", + " (0.031566658693076226, 26),\n", + " (0.03150616293402057, 3),\n", + " (0.031376143577383796, 5),\n", + " (0.031123481531894214, 16)]" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "scores = networkx.pagerank(similarity_graph)\n", + "ranked_sentences = sorted(((score, index) for index, score \n", + " in scores.items()), \n", + " reverse=True)\n", + "ranked_sentences[:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "top_sentence_indices = [ranked_sentences[index][1] \n", + " for index in range(num_sentences)]\n", + "top_sentence_indices.sort()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The game's main story revolves around the player character's quest to defeat Alduin the World-Eater, a dragon who is prophesied to destroy the world.\n", + "The game is set 200 years after the events of Oblivion and takes place in the fictional province of Skyrim.\n", + "Over the course of the game, the player completes quests and develops the character by improving skills.\n", + "The Elder Scrolls V: Skyrim is an action role-playing game, playable from either a first or third-person perspective.\n", + "The game's main quest can be completed or ignored at the player's preference after the first stage of the quest is finished.\n", + "Skyrim is the first entry in The Elder Scrolls to include dragons in the game's wilderness.\n", + "Like other creatures, dragons are generated randomly in the world and will engage in combat with NPCs, creatures and the player.\n", + "The player character can absorb the souls of dragons in order to use powerful spells called \"dragon shouts\" or \"Thu'um\".\n" + ] + } + ], + "source": [ + "print('\\n'.join(np.array(sentences)[top_sentence_indices]))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/elephants.txt b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/elephants.txt new file mode 100644 index 0000000..c823ea3 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/elephants.txt @@ -0,0 +1 @@ +Elephants are large mammals of the family Elephantidae and the order Proboscidea. Three species are currently recognised: the African bush elephant (Loxodonta africana), the African forest elephant (L. cyclotis), and the Asian elephant (Elephas maximus). Elephants are scattered throughout sub-Saharan Africa, South Asia, and Southeast Asia. Elephantidae is the only surviving family of the order Proboscidea; other, now extinct, members of the order include deinotheres, gomphotheres, mammoths, and mastodons. All elephants have several distinctive features, the most notable of which is a long trunk (also called a proboscis), used for many purposes, particularly breathing, lifting water, and grasping objects. Their incisors grow into tusks, which can serve as weapons and as tools for moving objects and digging. Elephants' large ear flaps help to control their body temperature. Their pillar-like legs can carry their great weight. African elephants have larger ears and concave backs while Asian elephants have smaller ears and convex or level backs. Elephants are herbivorous and can be found in different habitats including savannahs, forests, deserts, and marshes. They prefer to stay near water. They are considered to be a keystone species due to their impact on their environments. Other animals tend to keep their distance from elephants while predators, such as lions, tigers, hyenas, and any wild dogs, usually target only young elephants (or "calves"). Elephants have a fission-fusion society in which multiple family groups come together to socialise. Females ("cows") tend to live in family groups, which can consist of one female with her calves or several related females with offspring. The groups are led by an individual known as the matriarch, often the oldest cow. Males ("bulls") leave their family groups when they reach puberty and may live alone or with other males. Adult bulls mostly interact with family groups when looking for a mate and enter a state of increased testosterone and aggression known as musth, which helps them gain dominance and reproductive success. Calves are the centre of attention in their family groups and rely on their mothers for as long as three years. Elephants can live up to 70 years in the wild. They communicate by touch, sight, smell, and sound; elephants use infrasound, and seismic communication over long distances. Elephant intelligence has been compared with that of primates and cetaceans. They appear to have self-awareness and show empathy for dying or dead individuals of their kind. African elephants are listed as vulnerable by the International Union for Conservation of Nature (IUCN) while the Asian elephant is classed as endangered. One of the biggest threats to elephant populations is the ivory trade, as the animals are poached for their ivory tusks. Other threats to wild elephants include habitat destruction and conflicts with local people. Elephants are used as working animals in Asia. In the past, they were used in war; today, they are often controversially put on display in zoos, or exploited for entertainment in circuses. Elephants are highly recognisable and have been featured in art, folklore, religion, literature, and popular culture. \ No newline at end of file diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_01.txt b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_01.txt new file mode 100644 index 0000000..bf37790 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_01.txt @@ -0,0 +1,768 @@ +Cooperative Graphical Models +Josip Djolonga +Dept. of Computer Science, ETH Zurich ¨ +josipd@inf.ethz.ch +Stefanie Jegelka +CSAIL, MIT +stefje@mit.edu +Sebastian Tschiatschek +Dept. of Computer Science, ETH Zurich ¨ +stschia@inf.ethz.ch +Andreas Krause +Dept. of Computer Science, ETH Zurich ¨ +krausea@inf.ethz.ch +Abstract +We study a rich family of distributions that capture variable interactions significantly more expressive than those representable with low-treewidth or pairwise +graphical models, or log-supermodular models. We call these cooperative graphical models. Yet, this family retains structure, which we carefully exploit for +efficient inference techniques. Our algorithms combine the polyhedral structure of +submodular functions in new ways with variational inference methods to obtain +both lower and upper bounds on the partition function. While our fully convex upper +bound is minimized as an SDP or via tree-reweighted belief propagation, our lower +bound is tightened via belief propagation or mean-field algorithms. The resulting +algorithms are easy to implement and, as our experiments show, effectively obtain +good bounds and marginals for synthetic and real-world examples. +1 Introduction +X1,1 X1,2 X1,3 X1,4 +X2,1 X2,2 X2,3 X2,4 +X3,1 X3,2 X3,3 X3,4 +Figure 1: Example cooperative model. Edge colors indicate the edge cluster. Dotted edges are cut under the +current assignment. +Probabilistic inference in high-order discrete graphical models has +been an ongoing computational challenge, and all existing methods +rely on exploiting specific structure: either low-treewidth or pairwise +graphical models, or functional properties of the distribution such as +log-submodularity. Here, we aim to compute approximate marginal +probabilities in complex models with long-range variable interactions +that do not possess any of these properties. Instead, we exploit a +combination of structural and functional properties in new ways. +The classical example of image segmentation may serve to motivate +our family of models: we would like to estimate a posterior marginal +distribution over k labels for each pixel in an image. A common +approach uses Conditional Random Fields on a pixel neighborhood +graph with pairwise potentials that encourage neighboring pixels to +take on the same label. From the perspective of the graph, this model +prefers configurations with few edges cut, where an edge is said to +be cut if its endpoints have different labels. Such cut-based models, +however, short-cut elongated structures (e.g. tree branches), a problem known as shrinking bias. +Jegelka and Bilmes [1] hence replace the bias towards short cuts (boundaries) by a bias towards +configurations with certain higher-order structure: the cut edges occur at similar-looking pixel pairs. +They group the graph edges into clusters (based on, say, color gradients across the endpoints), +observing that the true object boundary is captured by few of these clusters. To encourage cutting +edges from few clusters, the cost of cutting an edge decreases as more edges in its cluster are cut. +In short, the edges “cooperate”. In Figure 1, each pixel takes on one of two labels (colors), and cut +30th Conference on Neural Information Processing Systems (NIPS 2016), Barcelona, Spain. +edges are indicated by dotted lines. The current configuration cuts three red edges and one blue edge, +and has lower probability than the configuration that swaps X3,1 to gray, cutting only red edges. Such +a model can be implemented by an energy (cost) h(#red edges cut) + h(#blue edges cut), where +e.g. h(u) = √ +u. Similar cooperative models can express a preference for shapes [2]. +While being expressive, such models are computationally very challenging: the nonlinear function +on pairs of variables (edges) is equivalent to a graphical model of extremely high order (up to the +number of variables). Previous work hence addressed only MAP inference [3, 4]; the computation of +marginals and partition functions was left as an open problem. In this paper, we close this gap, even +for a larger family of models. +We address models, which we call cooperative graphical models, that are specified by an undirected +graph G = (V, E): each node i ∈ V is associated with a random variable Xi +that takes values in +X = {1, 2, . . . , k}. To each vertex i ∈ V and edge {i, j}, we attach a potential function θi +: X → R +and θi,j : X +2 → R, respectively. Our distribution is then +P(x) = 1 +Z +exp + +− +X +i∈V +θi(xi) + X +{i,j}∈E +θi,j (xi +, xj ) + f(y(x)) + + ν(x), (1) +where we call y: X +n → {0, 1} +E the disagreement variable1 +, defined as yi,j = Jxi 6= xj K. The term +ν : X +n → R≥0 is the base-measure and allows to encode constraints, e.g., conditioning on some +variables. With f ≡ 0 we obtain a Markov random field. +Probabilistic inference in our model class (1) is very challenging, since we make no factorization +assumption about f. One solution would be to encode P(x) as a log-linear model via a new +variable z ∈ {0, 1} +E and constraints ν(x, z) = Jy(x) = zK, but this in general requires computing +exponential-sized sufficient statistics from z. In contrast, we make one additional key assumption +that will enable the development of efficiently computable variational lower and upper bounds: we +henceforth assume that f : {0, 1} +E → R is submodular, i.e., it satisfies +f(min(y, y +0 +)) + f(max(y, y +0 +)) ≤ f(y) + f(y +0 +) for all y, y +0 ∈ {0, 1} +E, +where the min and max operations are taken element-wise. For example, the pairwise potentials θi,j +are submodular if θi,j (0, 0) + θi,j (1, 1) ≤ θi,j (0, 1) + θi,j (1, 0). In our introductory example, f is +submodular if h is concave. As opposed to [3], we do not assume that f is monotone increasing. +Importantly, even if f is submodular, P(x) neither has low treewdith, nor is its logarithm sub- or +supermodular in x, properties that have commonly been exploited for inference. +Contributions. We make the following contributions: (1) We introduce a new family of probabilistic models that can capture rich non-submodular interactions, while still admitting efficient +inference. This family includes pairwise and certain higher-order graphical models, cooperative cuts +[1], and other, new models. We develop new inference methods for these models; in particular, (2) +upper bounds that are amenable to convex optimization, and (3) lower bounds that we optimize with +traditional variational methods. Finally, we demonstrate the efficacy of our methods empirically. +1.1 Related work +Maximum-a-posteriori (MAP). Computing the mode of (1) for binary models is also known as +the cooperative cut problem, and has been analyzed for the case when both the pairwise interactions +θi,j are submodular and f is monotone [1]. While the general problem is NP-hard, it can be solved if +f is defined by a piecewise linear concave function [4]. +Variational inference. Since computing marginal probabilities for (1) is #P-hard even for pairwise +models (when f ≡ 0) [5, 6], we revert to approximate inference. Variational inference methods for +discrete pairwise models have been studied extensively; a comprehensive overview may be found +in [7]. We will build on a selection of techniques that we discuss in the next section. Most existing +methods focus on pairwise models (f ≡ 0), and many scale exponentially with the size of the largest +factor, which is infeasible for our cooperative models. Some specialized tractable inference methods +exist for higher-order models [8, 9], but they do not apply to our family of models (1). +1The results presented in this paper can be easily extended to arbitrary binary-valued functions y(x). +2 +Log-supermodular models. A related class of relatively tractable models are distributions P(x) = +1 +Z +exp(−g(x)) for some submodular function g; Djolonga and Krause [10] showed variational +inference methods for those models. However, our models are not log-supermodular. While [10] +also obtain upper and lower bounds, we need different optimization techniques, and also different +polytopes. In fact, submodular and multi-class submodular [11] settings are a strict subset of ours: +the function g(x) can be expressed via an auxiliary variable z ∈ {0, 1} that is fixed to zero using +ν(x, z) = Jz = 0K. We then set f(y(x, z)) = g(x1 6= z, x2 6= z, . . . , xn 6= z). +2 Notation and Background +Throughout this paper, we have n variables in a graph of m edges, and the potentials θi and θi,j are +stored in a vector θ. The characteristic vector (or indicator vector) 1A of a set A is the binary vector +which contains 1 in the positions corresponding to elements in A, and zeros elsewhere. Moreover, +the vector of all ones is 1, and the neighbours of i ∈ V are denoted by δ(i) ⊆ V . +Submodularity. We assume that f in Eqn. (1) is submodular. Occasionally (in Sec. 4 and 5, where +stated), we assume that f is monotone: for any y and y +0 +in {0, 1} +E such that y ≤ y +0 +coordinate-wise, +it holds that f(y) ≤ f(y +0 +). When defining the inference schemes, we make use of two polytopes +associated with f. First, the base polytope of a submodular function f is +B(f) = {g ∈ R +m | ∀y ∈ {0, 1} +E : g +T y ≤ f(y)} ∩ {g ∈ R +m | g +T 1 = f(1)}. +Although B(f) is defined by exponentially many inequalities, an influential result [12] states that +it is tractable: we can optimize linear functions over B(f) in time O(m log m + mF), where F is +the time complexity of evaluating f. This algorithm is part of our scheme in Figure 2. Moreover, +as a result of this (linear) tractability, it is possible to compute orthogonal projections onto B(f). +Projection is equivalent to the minimum norm point problem [13]. While the general projection +problem has a high degree polynomial time complexity, there are many very commonly used models +that admit practically fast projections [14, 15, 16]. +The second polytope is the upper submodular polyhedron of f [17], defined as +U(f) = {(g, c) ∈ R +m+1 | ∀y ∈ {0, 1} +E : g +T y + c ≥ f(y)}. +Unfortunately, U(f) is not as tractable as B(f): even checking membership in U(f) is hard [17]. +However, we can still succinctly describe specific elements of U(f). In §4, we show how to efficiently +optimize over those elements. +Variational inference. We briefly summarize key results for variational inference for pairwise +models, following Wainwright and Jordan [7]. We write pairwise models as2 +P(x) = exp + +− +X +i∈V +θi(xi) + X +{i,j}∈E +(gi,j Jxi 6= xj K + θi,j (xi +, xj ) + +− A(g) + + ν(x), +where g ∈ R +E is an arbitrary vector and A(g) is the log-partition function. For any choice of +parameters (θ, g), there is a resulting vector of marginals µ ∈ [0, 1]k|V |+k +2 +|E| +. Specifically, for every +i ∈ V , µ has k elements µi,xi = P(Xi = xi), one for each xi ∈ X . Similarly, for each {i, j} ∈ E, +there are k +2 +elements µij,xixj +so that µij,xixj = P(Xi = xi +, Xj = xj ). The marginal polytope M is +now the set of all such vectors µ that are realizable under some distribution P(x), and the partition +function can equally be expressed in terms of the marginals [7]: +A(g) = sup +µ∈M + +− +X +i∈V,xi +µi,xi +θi(xi) − +X +{i,j}∈E +X +xi,xj +µij,xixj +θi,j (xi +, xj ) − ∆(µ) +T g + + +| {z } +hstack(θ,g),µi ++ H(µ), (2) +where H(µ) is the entropy of the distribution, ∆(µ) is the vector of disagreement probabilities with +entries ∆(µ)i,j = +P +xi6=xj +µij,xixj +, and stack(θ, g) adds the elements of θ and g into a single +2This formulation is slightly nonstandard, but will be very useful for the subsequent discussion in §3. +3 +vector so that the sum can be written as an inner product. Alas, neither M nor H(µ) have succinct +descriptions and we will have to approximate them. Because the vectors in the approximation of +M are in general not correct marginals, they are called pseudo-marginals and will be denoted by +τ instead of µ. Different approximations of M and H yield various methods, e.g. mean-field [7], +the semidefinite programming (SDP) relaxation of Wainwright and Jordan [18], tree-reweighted +belief propagation (TRWBP) [19], or the family of weighted entropies [20, 21]. Due to the space +constraints, we only discuss the latter. They approximate M with the local polytope +L = {τ ≥ 0 | (∀i ∈ V ) +X +xi +τi,xi = 1 and (∀j ∈ δ(i)) τi,xi = +X +xj +τij,xixj +}. +The approximations H to the entropy H are parametrized by one weight ρi,j per edge and one ρi per +vertex i, all collected in a vector ρ ∈ R +|V |+|E| +. Then, they take the following form +H(τ , ρ) = X +i∈V +ρiHi(τ i)+ X +{i,j}∈E +ρi,jHi,j (τ i,j ), where +Hi(τ i) = − +P +xi +τi,xi +log τi,xi +, and +Hi,j (τ i,j ) = − +P +xi,xj +τij,xijxj +log τij,xixj +. +The most prominent example is traditional belief propagation, i.e., using the Bethe entropy, which +sets ρe = 1 for all e ∈ E, and assigns to each vertex i ∈ V a weight of ρi = 1 − |δ(i)|. +3 Convex upper bounds +The above variational methods do not directly generalize to our cooperative models: the vectors of +marginals could be exponentially large. Hence, we derive a different approach that relies on the +submodularity of f. Our first step is to approximate f(y(x)) by a linear lower bound, f(y(x)) ≈ +g +T y(x), so that the resulting (pairwise) linearized model will have a partition function upper +bounding that of the original model. Ensuring that g indeed remains a lower bound means to satisfy +an exponential number of constraints f(y(x)) ≥ g +T y(x), one for each x ∈ {0, 1} +n. While this is +hard in general, the submodularity of f implies that these constraints are easily satisfied if g ∈ B(f), +a very tractable constraint. For g ∈ B(f), we have +log Z = log X +x∈{0,1}V +exp +− ( +X +i∈V +X +xi +θi(xi) + X +{i,j}∈E +θi,j (xi +, xj ) + f(y(x))) +≤ log X +x∈{0,1}V +exp +− ( +X +i∈V +X +xi +θi(xi) + X +{i,j}∈E +(θi,j (xi +, xj ) + gi,j Jxi 6= xj K)) +≡ A(g). +Unfortunately, A(g) is still very hard to compute and we need to approximate it. If we use an +approximation A(g) that upper bounds A(g), then the above inequality will still hold when we +replace A by A. Such approximations can be obtained by relaxing the marginal polytope M to an +outer bound M ⊇ M, and using a concave entropy surrogate H that upper bounds the true entropy +H. TRWBP [19] or the SDP formulation [18] implement this approach. Our central optimization +problem is now to find the tightest upper bound, an optimization problem3 +in g: +minimize +g∈B(f) +sup +τ∈M +hstack(θ, g), τ i + H(τ ). (3) +Because the inner problem is linear in g, this is a convex optimization problem over the base polytope. +To obtain the gradient with respect to g (equal to the negative disagreement probabilities −∆(τ )), we +have to solve the inner problem. This subproblem corresponds to performing variational inference in +a pairwise model, e.g. via TRWBP or an SDP. The optimization properties of the problem (3) depend +on its Lipschitz continuity of the gradients (smoothness). Informally, the inferred pseudomarginals +should not drastically change if we perturb the linearization g. The formal condition is that there +exists some σ > 0 so that k∆(τ ) − ∆(τ +0 +)k ≤ σkτ − τ +0k for all τ , τ +0 ∈ M. We discuss below +when this condition holds. Before that, we discuss two different algorithms for solving problem (3), +and how their convergence depends on σ. +3 +If we compute the Fenchel dual, we obtain a special case of the problem considered in [22] with the Lovasz ´ +extension acting as a non-smooth non-local energy function (in the terminology introduced therein). +Frank-Wolfe. Given that we can efficiently solve linear programs over B(f), the Frank-Wolfe [23] +algorithm is a natural candidate for solving the problem. We present it in Figure 2. It iteratively +moves towards the minimizer of a linearization of the objective around the current iterate. The method +has a convergence rate of O(σ/t) [24], where σ is the assumed smoothness parameter. One can +either use a fixed step size γ = 2/(t + 2), or determine it using line search. In each iteration, the +algorithm calls the procedure LINEAR-ORACLE, which finds the vector s ∈ B(f) that minimizes the +linearization of the objective function in (3) over the base polytope B(f). The linearization is given +by the (approximate) gradient ∆(τ ), determined by the computed approximate marginals τ . +When taking a step towards s, the weight of edge ei +is changed by sei = f({e1, e2, . . . , ei}) − +f({e1, e2, . . . , ei−1}). Due to the submodularity4 of f, an edge will obtain a higher weight if it +appears earlier in the order determined by the disagreement probabilities ∆(τ ). Hence, in every +iteration, the algorithm will re-adjusts the pairwise potentials, by encouraging the variables to agree +more as a function of their (approximate) disagreement probability. +1: procedure FW-INFERENCE(f, θ) +2: g ← LINEAR-ORACLE(f, 0) +3: for t = 0, 1, . . . , max steps do +4: τ ← VAR-INFERENCE(θ, g) +5: s ← LINEAR-ORACLE(f, τ ) +6: γ ← COMPUTE-STEP-SIZE(g, s) +7: g ← (1 − γ)g + γs +8: return τ , Aˆ +1: procedure LINEAR-ORACLE(f, τ ) +2: Let e1, e2, . . . , e|E| be the edges E sorted so +that ∆(τ )e1 ≥ ∆(τ )e2 ≥ . . . ≥ ∆(τ )e|E| +3: for i = 0, 1, . . . , |E| do +4: f−i ← f({e1, e2, . . . , ei−1}) +5: f+i ← f({e1, e2, . . . , ei}) +6: sei ← f+i − f−i +7: return s +Figure 2: Inference with Frank-Wolfe, assuming that VAR-INFERENCE guarantees an upper bound. +Projected gradient descent (PGD). Since it is possible to compute projections onto B(f), and +practically so for many submodular functions f, we can alternatively use projected gradient or +subgradient descent (PGD). Without smoothness, PGD converges at a rate of O(1/ +√ +t). If the +objective is smooth, we can use an accelerated methods like FISTA [25], which has both a much +better O(σ/t2 +) rate and seems to converge faster than many Frank-Wolfe variants in our experiments. +Smoothness and convergence. The final question that remains to be answered is under which +conditions problem (3) is smooth (the proof can be found in the appendix). +Theorem 1 Problem (3) is k +2σ-smooth over B(f) if the entropy surrogate −H is 1 +σ +-strongly convex. +This result follows from the duality between smoothness and strong convexity for convex conjugates, +see e.g. [26]. It implies that the convergence rates of the proposed algorithms depend on the strong +convexity of the entropy approximation −H. The benefits of strongly convex entropy approximations +are known. For instance, the tree-reweighted entropy approximation is strongly convex with a +modulus σ depending on the size of the graph; similarly, the SDP relaxation is strongly convex [27]. +London et al. [28] provide an even sharper bound for the tree reweighted entropy, and show how one +can strong-convexify any weighted entropy by solving a QP over the weights ρ. +In practice, because the inner problem is typically solved using an iterative algorithm and because the +problem is smooth, we obtain speedups by warm-starting the solver with the solution at the previous +iterate. We can moreover easily obtain duality certificates using the results in [24]. +Joint optimization. When using weighted entropy approximations, it makes sense to optimize over +both the linearization g and the weights ρ jointly. Specifically, let T be some set of weights that yield +an entropy approximation H that upper bounds H. Then, if we expand H in problem (3), we obtain +minimize +g∈B(f),ρ∈T +sup +τ∈L +hstack(θ, g), τ i + +X +i∈V +ρiHi(τ i) + X +{i,j}∈E +ρi,jHi,j (τ i,j ). +Note that inside the supremum, both g and ρ appear only linearly, and there is no summand that has +terms from both of them. Thus, the problem is convex in (g, ρ), and we can optimize jointly over +4This is also known as the diminishing returns property. +5 +both variables. As a final remark, if we already perform inference in a pairwise model and repeatedly +tighten the approximation by optimizing over ρ via Frank-Wolfe (as suggested in [19]), then the +complexity per iteration remains the same even if we use the higher-order term f. +4 Submodular lower bounds +While we just derived variational upper bounds, we next develop lower bounds on the partition +function. Specifically, analogously to the linearization for the upper bound, if we pick an element +(g, c) of U(f), the partition function of the resulting pairwise approximation always lower bounds +the partition function of (1). Formally, +log Z ≥ log X +x∈{0,1}V +exp +− (a +T x + +X +{i,j}∈E +θij,xixj + +X +{i,j}∈E +gi,j Jxi 6= xj K + c) + += A(g) − c. +As before, after plugging in a lower bound estimate of A, we obtain a variational lower bound over +the partition function, which takes the form +log Z ≥ sup +(g,c)∈U(f),τ∈M +−c + hstack(θ, g), τ i + H(τ ), (4) +for any pair of approximations of M and H that guarantee a lower bound of the pairwise model. +We propose to optimize this lower bound in a block-coordinate-wise manner: first with respect to +the pseudo-marginals τ (which amounts to approximate inference in the linearized model), and +then with respect to the supergradient (g, c) ∈ U(f). As already noted, this step is in general +intractable. However, it is well-known [29] that for any Y ⊆ E we can construct a point (so +called bar supergradient) in U(f) as follows. First, define the vectors ai,j = f(1{i,j}) and bi,j = +f(1)−f(1−1{i,j}). Then, the vector (g, c) with g = b 1Y +(1−1Y ) a and c = f(Y )−b +T 1Y +belongs to U(f), where denotes element-wise multiplication. +Theorem 2 Optimizing problem (4) for a fixed τ over all bar supergradients is equal to the following +submodular minimization problem minY ⊆E f(Y ) + +∆(τ ) (b − a) − b +T +1Y . +In contrast to computing the MAP, the above problem has no constraints and can be easily solved +using existing algorithms. As the approximation algorithm for the linearized pairwise model, one +can always use mean-field [7]. Moreover, if (i) the problem is binary with submodular pairwise +potentials θi,j and (ii) f is monotone, we can also use belief propagation. This is an implication +of the result of Ruozzi [30], who shows that traditional belief-propagation yields a lower bound on +the partition function for binary pairwise log-supermodular models. It is easy to see that the above +conditions are sufficient for the log-supermodularity of the linearized model, as g ≥ 0 when f is +monotone (because both a and b have non-negative components). Moreover, in this setting both +the mean-field and belief propagation objectives (i.e. computing τ ) can be cast as an instance of +continuous submodular minimization (see e.g. [31]), which means that they can be solved to arbitrary +precision in polynomial time. Unfortunately, problem (4) will not be jointly submodular, so we still +need to use the block-coordinate ascent method we have just outlined. +5 Approximate inference via MAP perturbations +For binary models with submodular pairwise potentials and monotone f we can (approximately) +solve the MAP problem using the techniques in [1, 4]. Hence, this opens as an alternative approach +the perturb-and-MAP method of Papandreou and Yuille [32]. This method relies on a set of tractable +first order perturbations: For any i ∈ V define θ +0 +i +(xi) = θi(xi) − ηi,xi +, where η = (ηi,xi +)i∈V,xi∈X +are a set of independently drawn Gumbel random variables. The optimizer argminxGη(x) of the +perturbed model energy Gη(x) = P +i∈V +θ +0 +i +(xi) + P +{i,j}∈E +θi,j (xi +, xj ) + f(y(x)) is then a sample +from (an approximation to) the true distribution. If this MAP problem can be solved exactly (which is +not always the case here), then it is possible to obtain an upper bound on the partition function [33]. +6 Experiments +Synthetic experiments. Our first set of experiments uses a complete graph on n variables. The +unary potentials were sampled as θi(xi) ∼ Uniform(−α, α). The edges E were randomly split +into five disjoint buckets E1, E2, . . . , E5, and we used f(y) = P5 +j=1 hj (yEj +), where yEi +are the +coordinates of y corresponding to that group, and the functions {hj} will be defined below. To +perform inference in the linearized pairwise models, we used: trwbp, jtree+ (exact inference, upper +bound), jtree- (same, lower bound), sdp (SDP), mf (mean-field), bp (belief propagation), pmap +(perturb-and-MAP with approximate MAP) and epmap (perturb-and-MAP with exact MAP). We +used libDAI [34] and implemented sdp using cvxpy [35] and SCS [36]. As a maxflow solver we +used [37]. Errors bars denote three standard errors. +Figure 3 shows the results for hi(yEi +) = wi +qP +e∈Ei +ye/ +p +|Ei +|, with weights wi ∼ Uniform(0, β). +In panel (c) we use mixed (attractive and repulsive) pairwise potentials, chosen as θi,j (xi +, xj ) = +wi,j Jxi 6= xj K, where wi,j ∼ Uniform(−β, β). First, the results imply that the methods optimizing +the fully convex upper bound yield very good marginal probabilities over a large set of parameter +configurations. The estimate of the log-partition function from trwbp is also very good, while sdp is +much worse, which we believe can be attributed to the very loose entropy bound used in the relaxation. +The lower bounds (bp and mf) work well for settings when the pairwise strength β is small compared +to the unary strength α. Otherwise, both the bound and the marginals become worse, while jtreestill performs very well. This could be explained by the hardness of the pairwise models obtained +after linearizing f. Finally, pmap (when applicable) seems very promising for small β. +To better understand the regimes when one should use trwbp or pmap, we compare their marginal +errors in Figure 5. We see that for most parameter configurations, trwbp performs better, and +significantly so when the edge interactions are strong. +Finally, we evaluate the effects of the approximate MAP solver for pmap in Figure 4. To be able +to solve the MAP problem exactly (see [4]), we used h(yEj +) = max{ +P +e∈Ej +yeve, +P +e∈Ej +ve/2}, +where ve ∼ Uniform(0, β). As evident from the figure, the gains from the exact solver seem minimal, +and it seems that solving the MAP problem approximately does not strongly affect the results. +An example from computer vision. To demonstrate the scalability of our method and obtain a +better qualitative understanding of the resulting marginals, we ran trwbp and pmap on a real world +image segmentation task. We use the same setting, data and models as [1], as implemented in +the pycoop5 package. Because libDAI was too slow, we wrote our own TRWBP implementation. +Figure 6 shows the results for two specific images (size 305 × 398 and 214 × 320). The example +in the first row is particularly difficult for pairwise models, but the rich higher-order model has no +problem capturing the details even in the challenging shaded regions of the image. The second row +shows results for two different model parameters. The second model uses a function f that is closer to +being linear, while the first one is more curved (see the appendix for details). We observe that trwbp +requires lower temperature parameters (i.e. relatively larger functions θi +, θi,j and f) than pmap, and +that the bottleneck of the complete inference procedure is running the trwbp updates. In other words, +the added complexity from our method is minimal and the runtime is dominated by the message +passing updates of TRWBP. Hence, any algorithms that speed up TRWBP (e.g., by parallelization or +better message scheduling) will result in a direct improvement on the proposed inference procedure. +7 Conclusion +We developed new inference techniques for a new broad family of discrete probabilistic models by +exploiting the (indirect) submodularity in the model, and carefully combining it with ideas from +classical variational inference in graphical models. The result are inference schemes that optimize +rigorous bounds on the partition function. For example, our upper bounds lead to convex variational +inference problems. Our experiments indicate the scalability, efficacy and quality of these schemes. +Acknowledgements. This research was supported in part by SNSF grant CRSII2 147633, ERC StG 307036, +a Microsoft Research Faculty Fellowship, a Google European Doctoral Fellowship, and NSF CAREER 1553284. +References +[1] S. Jegelka and J. Bilmes. “Submodularity beyond submodular energies: coupling edges in graph cuts”. +CVPR. 2011. +5 +https://github.com/shelhamer/coop-cut. +7 +−0.1 +0.0 +0.1 +0.2 +0.3 +0.4 +0.5 +0.6 +0.7 +Mean absolute error in marginals +bp +jtree+ +jtreemf +pmap +sdp +trwbp +10−1 100 101 102 +Pairwise strength β +−8 +−6 +−4 +−2 +0 +2 +4 +6 +Error in the estimate log +ˆ +Z − log +Z +(a) α = 2, binary, K15 +0.00 +0.02 +0.04 +0.06 +0.08 +0.10 +0.12 +0.14 +Mean absolute error in marginals +bp +jtree+ +jtreemf +pmap +sdp +trwbp +10−1 100 101 102 +Pairwise strength β +−6 +−4 +−2 +0 +2 +4 +6 +Error in the estimate log +ˆ +Z − log +Z +(b) α = 0.1, binary, K15 +−0.1 +0.0 +0.1 +0.2 +0.3 +0.4 +0.5 +Absolute mean error in marginals +jtree+ +jtreemf +trwbp +10−1 100 101 102 +Pairwise strength β +−8 +−6 +−4 +−2 +0 +2 +4 +Error in the estimate log +ˆ +Z − log +Z +(c) α = 0.1, mixed, 4 labels, K10 +Figure 3: Results on several synthetic models. The methods that optimize the convex upper bound +(trwbp, sdp) obtain very good marginals for a large set of parameter settings. Those maximizing the +lower bound (bp, mf) fail when there is strong coupling between the edges. In the strong coupling +regime the results of pmap also deteriorate, but not as strongly. In (c) bp, pmap, sdp are not applicable. +10−1 100 101 102 +0.0 +0.2 +0.4 +0.6 +0.8 +Mean absolute error in marginals +bp +epmap +jtree+ +jtreemf +pmap +sdp +trwbp +10−1 100 101 10 +2 +Pairwise strength β +−6 +−4 +−2 +0 +2 +4 +6 +8 +Error in the estimate log +ˆ +Z − log +Z +Figure 4: α = 2, K15, model where epmap is applicable. Solving +the MAP problem exactly only marginally improves over pmap. +The other observations are similar to those in Fig. 3b. +0.1 0.5 1.0 2.0 4.0 8.0 16.0 32.0 64.0 +Pairwise strength β +16.0 8.0 4.0 2.0 1.0 0.5 0.1 +Unary strength +α +0.002 0.0021 0.0014 0.091 0.26 0.034 +0.0036 0.0023 0.058 0.24 0.069 +0.0056 0.0012 -0.0052 -0.013 0.16 0.12 0.1 0.073 +0.0088 -0.0011 -0.015 -0.032 0.057 0.086 0.15 0.2 0.12 +0.01 -0.0095-0.0095 0.097 0.2 0.2 0.068 +0.0099 0.0072 0.0046 0.085 0.17 0.12 +0.012 0.012 0.011 0.0087 0.019 0.037 -0.049 -0.23 +Figure 5: errorpmap - errortrwbp +on K15. Missing entries were +not significant at the 0.05 level. +(a) Original image (b) trwbp, pairwise (c) pmap, pairwise (d) trwbp, coop. (e) pmap, coop. +(f) Original image (g) trwbp, model 1 (h) pmap, model 1 (i) trwbp, model 2 (j) pmap, model 2 +Figure 6: Inferred marginals on an image segmentation task. The first row showcases an example +that is particularly hard for pairwise models. In the second row we show the results for two different +models (the cooperative function f is more curved for model 1). +8 +[2] N. Silberman, L. Shapira, R. Gal, and P. Kohli. “A Contour Completion Model for Augmenting Surface +Reconstructions”. ECCV. 2014. +[3] S. Jegelka and J. Bilmes. “Approximation Bounds for Inference using Cooperative Cuts”. ICML. 2011. +[4] P. Kohli, A. Osokin, and S. Jegelka. “A principled deep random field model for image segmentation”. +CVPR. 2013. +[5] M. Jerrum and A. Sinclair. “Polynomial-time approximation algorithms for the Ising model”. SIAM +Journal on computing 22.5 (1993), pp. 1087–1116. +[6] L. A. Goldberg and M. Jerrum. “The complexity of ferromagnetic Ising with local fields”. Combinatorics, +Probability and Computing 16.01 (2007), pp. 43–61. +[7] M. J. Wainwright and M. I. Jordan. “Graphical models, exponential families, and variational inference”. +Foundations and Trends +R in Machine Learning 1.1-2 (2008). +[8] D. Tarlow, K. Swersky, R. S. Zemel, R. P. Adams, and B. J. Frey. “Fast Exact Inference for Recursive +Cardinality Models”. UAI. 2012. +[9] V. Vineet, J. Warrell, and P. H. Torr. “Filter-based mean-field inference for random fields with higher-order +terms and product label-spaces”. IJCV 110 (2014). +[10] J. Djolonga and A. Krause. “From MAP to Marginals: Variational Inference in Bayesian Submodular +Models”. NIPS. 2014. +[11] J. Zhang, J. Djolonga, and A. Krause. “Higher-Order Inference for Multi-class Log-supermodular +Models”. ICCV. 2015. +[12] J. Edmonds. “Submodular functions, matroids, and certain polyhedra”. Combinatorial structures and +their applications (1970), pp. 69–87. +[13] S. Fujishige and S. Isotani. “A submodular function minimization algorithm based on the minimum-norm +base”. Pacific Journal of Optimization 7.1 (2011), pp. 3–17. +[14] P. Stobbe and A. Krause. “Efficient Minimization of Decomposable Submodular Functions”. NIPS. 2010. +[15] S. Jegelka, F. Bach, and S. Sra. “Reflection methods for user-friendly submodular optimization”. NIPS. +2013. +[16] F. Bach. “Learning with submodular functions: a convex optimization perspective”. Foundations and +Trends +R in Machine Learning 6.2-3 (2013). +[17] R. Iyer and J. Bilmes. “Polyhedral aspects of Submodularity, Convexity and Concavity”. +arXiv:1506.07329 (2015). +[18] M. J. Wainwright and M. I. Jordan. “Log-determinant relaxation for approximate inference in discrete +Markov random fields”. Signal Processing, IEEE Trans. on 54.6 (2006). +[19] M. J. Wainwright, T. S. Jaakkola, and A. S. Willsky. “A new class of upper bounds on the log partition +function”. UAI. 2002. +[20] T. Heskes. “Convexity Arguments for Efficient Minimization of the Bethe and Kikuchi Free Energies.” +JAIR 26 (2006). +[21] O. Meshi, A. Jaimovich, A. Globerson, and N. Friedman. “Convexifying the Bethe free energy”. UAI. +2009. +[22] L. Vilnis, D. Belanger, D. Sheldon, and A. McCallum. “Bethe Projections for Non-Local Inference”. +UAI. 2015. +[23] M. Frank and P. Wolfe. “An algorithm for quadratic programming”. Naval Res. Logist. Quart. (1956). +[24] M. Jaggi. “Revisiting Frank-Wolfe: Projection-free sparse convex optimization”. ICML. 2013. +[25] A. Beck and M. Teboulle. “A fast iterative shrinkage-thresholding algorithm for linear inverse problems”. +SIAM Journal on imaging sciences 2.1 (2009), pp. 183–202. +[26] S. Kakade, S. Shalev-Shwartz, and A. Tewari. “On the duality of strong convexity and strong smoothness: +Learning applications and matrix regularization”. Technical Report (2009). +[27] M. J. Wainwright. “Estimating the wrong graphical model: Benefits in the computation-limited setting”. +JMLR 7 (2006). +[28] B. London, B. Huang, and L. Getoor. “The benefits of learning with strongly convex approximate +inference”. ICML. 2015. +[29] R. Iyer, S. Jegelka, and J. Bilmes. “Fast Semidifferential-based Submodular Function Optimization”. +ICML. 2013. +[30] N. Ruozzi. “The Bethe partition function of log-supermodular graphical models”. NIPS. 2012. +[31] A. Weller and T. Jebara. “Approximating the Bethe Partition Function”. UAI. 2014. +[32] G. Papandreou and A. L. Yuille. “Perturb-and-MAP random fields: Using discrete optimization to learn +and sample from energy models”. ICCV. 2011. +[33] T. Hazan and T. Jaakkola. “On the partition function and random maximum a-posteriori perturbations”. +ICML (2012). +[34] J. M. Mooij. “libDAI: A Free and Open Source C++ Library for Discrete Approximate Inference in +Graphical Models”. Journal of Machine Learning Research (2010), pp. 2169–2173. +[35] S. Diamond and S. Boyd. “CVXPY: A Python-Embedded Modeling Language for Convex Optimization”. +JMLR (2016). To appear. +[36] B. O’Donoghue, E. Chu, N. Parikh, and S. Boyd. “Conic Optimization via Operator Splitting and +Homogeneous Self-Dual Embedding”. Journal of Optimization Theory and Applications (2016). +[37] Y. Boykov and V. Kolmogorov. “An experimental comparison of min-cut/max-flow algorithms for energy +minimization in vision”. Pattern Analysis and Machine Intelligence, IEEE Trans. on 26 (2004). +9 \ No newline at end of file diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_02.txt b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_02.txt new file mode 100644 index 0000000..e88c331 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_02.txt @@ -0,0 +1,513 @@ +PAC Reinforcement Learning with Rich Observations +Akshay Krishnamurthy +University of Massachusetts, Amherst +Amherst, MA, 01003 +akshay@cs.umass.edu +Alekh Agarwal +Microsoft Research +New York, NY 10011 +alekha@microsoft.com +John Langford +Microsoft Research +New York, NY 10011 +jcl@microsoft.com +Abstract +We propose and study a new model for reinforcement learning with rich observations, generalizing contextual bandits to sequential decision making. These +models require an agent to take actions based on observations (features) with the +goal of achieving long-term performance competitive with a large set of policies. +To avoid barriers to sample-efficient learning associated with large observation +spaces and general POMDPs, we focus on problems that can be summarized by a +small number of hidden states and have long-term rewards that are predictable by a +reactive function class. In this setting, we design and analyze a new reinforcement +learning algorithm, Least Squares Value Elimination by Exploration. We prove +that the algorithm learns near optimal behavior after a number of episodes that is +polynomial in all relevant parameters, logarithmic in the number of policies, and +independent of the size of the observation space. Our result provides theoretical +justification for reinforcement learning with function approximation. +1 Introduction +The Atari Reinforcement Learning research program [21] has highlighted a critical deficiency of +practical reinforcement learning algorithms in settings with rich observation spaces: they cannot effectively solve problems that require sophisticated exploration. How can we construct Reinforcement +Learning (RL) algorithms which effectively plan and plan to explore? +In RL theory, this is a solved problem for Markov Decision Processes (MDPs) [6, 13, 26]. Why do +these results not apply? +An easy response is, “because the hard games are not MDPs.” This may be true for some of the hard +games, but it is misleading—popular algorithms like Q-learning with ✏-greedy exploration do not +even engage in minimal planning and global exploration1 as is required to solve MDPs efficiently. +MDP-optimized global exploration has also been avoided because of a polynomial dependence on +the number of unique observations which is intractably large with observations from a visual sensor. +In contrast, supervised and contextual bandit learning algorithms have no dependence on the number +of observations and at most a logarithmic dependence on the size of the underlying policy set. +Approaches to RL with a weak dependence on these quantities exist [15] but suffer from an exponential +dependence on the time horizon—with K actions and a horizon of H, they require ⌦(KH) samples. +Examples show that this dependence is necessary, although they typically require a large number of +states. Can we find an RL algorithm with no dependence on the number of unique observations and a +polynomial dependence on the number of actions K, the number of necessary states M, the horizon +H, and the policy complexity log(|⇧|)? +1 +We use “global exploration” to distinguish the sophisticated exploration strategies required to solve an MDP +efficiently from exponentially less efficient alternatives such as ✏-greedy. +30th Conference on Neural Information Processing Systems (NIPS 2016), Barcelona, Spain. +To begin answering this question we consider a simplified setting with episodes of bounded length H +and deterministic state transitions. We further assume that we have a function class that contains the +optimal observation-action value function Q?. These simplifications make the problem significantly +more tractable without trivializing the core goal of designing a Poly(K,M, H, log(|⇧|))) algorithm. +To this end, our contributions are: +1. A new class of models for studying reinforcement learning with rich observations. These +models generalize both contextual bandits and small-state MDPs, but do not exhibit the partial +observability issues of more complex models like POMDPs. We show exponential lower bounds +on sample complexity in the absence of the assumptions to justify our model. +2. A new reinforcement learning algorithm Least Squares Value Elimination by Exploration +(LSVEE) and a PAC guarantee that it finds a policy that is at most ✏ sub-optimal (with the +above assumptions) using O +⇣MK2H6 +✏3 log(|⇧|) +⌘ +samples, with no dependence on the number of +unique observations. This is done by combining ideas from contextual bandits with a novel state +equality test and a global exploration technique. Like initial contextual bandit approaches [1], +the algorithm is computationally inefficient since it requires enumeration of the policy class, an +aspect we hope to address in future work. +LSVEE uses a function class to approximate future rewards, and thus lends theoretical backing for +reinforcement learning with function approximation, which is the empirical state-of-the-art. +2 The Model +Our model is a Contextual Decision Process, a term we use broadly to refer to any sequential +decision making task where an agent must make decision on the basis of rich features (context) to +optimize long-term reward. In this section, we introduce the model, starting with basic notation. Let +H 2 N denote an episode length, X ✓ Rd an observation space, A a finite set of actions, and S a +finite set of latent states. Let K , |A|. We partition S into H disjoint groups S1,..., SH, each of +size at most M. For a set P, (P) denotes the set of distributions over P. +2.1 Basic Definitions +Our model is defined by the tuple (1, , D) where 1 2 (S1) denotes a starting state distribution, + : (S ⇥ A) ! (S) denotes the transition dynamics, and Ds 2 (X ⇥ [0, 1]K) associates a +distribution over observation-reward pairs with each state s 2 S. We also use Ds to denote the +marginal distribution over observations (usage will be clear from context) and use Ds|x for the +conditional distribution over reward given the observation x in state s. The marginal and conditional +probabilities are referred to as Ds(x) and Ds|x(r). +We assume that the process is layered (also known as loop-free or acyclic) so that for any sh 2 Sh +and action a 2 A, (sh, a) 2 (Sh+1). Thus, the environment transitions from state space S1 up to +SH via a sequence of actions. Layered structure allows us to avoid indexing policies and Q-functions +with time, which enables concise notation. +Each episode produces a full record of interaction (s1, x1, a1, r1,...,sH, xH, aH, rH) where s1 ⇠ +1, sh ⇠ (sh1, ah1), (xh, rh) ⇠ Dsh and all actions ah are chosen by the learning agent. The +record of interaction observed by the learner is (x1, a1, r1(a1),...,xH, aH, rH(aH)) and at time +point h, the learner may use all observable information up to and including xh to select ah. Notice +that all state information and rewards for alternative actions are unobserved by the learning agent. +The learner’s reward for an episode is PH +h=1 rh(ah), and the goal is to maximize the expected +cumulative reward, R = E[ +PH +h=1 rh(ah)], where the expectation accounts for all the randomness +in the model and the learner. We assume that almost surely PH +h=1 rh(ah) 2 [0, 1] for any action +sequence. +In this model, the optimal expected reward achievable can be computed recursively as +V ? , Es⇠1 [V ?(s)] with V ?(s) , Ex⇠Ds maxa Er⇠Ds|x +⇥ +r(a) + Es0⇠(s,a)V ?(s0 +) +⇤ +. (1) +2 +As the base case, we assume that for states s 2 SH, all actions transition to a terminal state sH+1 +with V ?(sH+1) , 0. For each (s, x) pair such that Ds(x) > 0 we also define a Q? function as +Q? +s(x, a) , Er⇠Ds|x +⇥ +r(a) + Es0⇠(s,a)V ?(s0 +) +⇤ +. (2) +This function captures the optimal choice of action given this (state, observation) pair and therefore +encodes optimal behavior in the model. +With no further assumptions, the above model is a layered episodic Partially Observable Markov +Decision Process (LE-POMDP). Both learning and planning are notoriously challenging in POMDPs, +because the optimal policy depends on the entire trajectory and the complexity of learning such a +policy grows exponentially with H (see e.g. Kearns et al. [15] as well as Propositions 1 and 2 below). +Our model avoids this statistical barrier with two assumptions: (a) we consider only reactive policies, +and (b) we assume access to a class of functions that can realize the Q? function. Both assumptions +are implicit in the empirical state of the art RL results. They also eliminate issues related to partial +observability, allowing us to focus on our core goal of systematic exploration. We describe both +assumptions in detail before formally defining the model. +Reactive Policies: One approach taken by some prior theoretical work is to consider reactive (or +memoryless) policies that use only the current observation to select an action [4, 20]. Memorylessness +is slightly generalized in the recent empirical advances in RL, which typically employ policies that +depend only on the few most recent observations [21]. +A reactive policy ⇡ : X ! A is a strategy for navigating the search space by taking actions ⇡(x) +given observation x. The expected reward for a policy is defined recursively through +V (⇡) , Es⇠1 [V (s, ⇡)] and V (s, ⇡) , E(x,r)⇠Ds +⇥ +r(⇡(x)) + Es0⇠(s,⇡(x))V (s0 +, ⇡) +⇤ +. +A natural learning goal is to identify a policy with maximal value V (⇡) from a given collection of +reactive policies ⇧. Unfortunately, even when restricting to reactive policies, learning in POMDPs +requires exponentially many samples, as we show in the next lower bound. +Proposition 1. Fix H,K 2 N with K 2 and ✏ 2 (0, +p1/8). For any algorithm, there exists a +LE-POMDP with horizon H, K actions, and 2H total states; a class ⇧ of reactive policies with +|⇧| = KH; and a constant c > 0 such that the probability that the algorithm outputs a policy ⇡ˆ with +V (ˆ⇡) > max⇡2⇧ V (⇡) ✏ after collecting T trajectories is at most 2/3 for all T  cKH/✏2. +This lower bound precludes a Poly(K,M, H, log(|⇧|)) sample complexity bound for learning reactive policies in general POMDPs as log(|⇧|) = H log(K) in the construction, but the number of +samples required is exponential in H. The lower bound instance provides essentially no instantaneous +feedback and therefore forces the agent to reason over KH paths independently. +Predictability of Q?: The assumption underlying the empirical successes in RL is that the Q? +function can be well-approximated by some large set of functions F. To formalize this assumption, note that for some POMDPs, we may be able to write Q? as a function of the observed +history (x1, a1, r1(a1),...,xh) at time h. For example, this is always true in deterministic-transition +POMDPs, since the sequence of previous actions encodes the state and Q? as in Eq. (2) depends only +on the state, the current observation, and the proposed action. In the realizable setting, we have access +to a collection of functions F mapping the observed history to [0, 1], and we assume that Q? 2 F. +Unfortunately, even with realizability, learning in POMDPs can require exponentially many samples. +Proposition 2. Fix H,K 2 N with K 2 and ✏ 2 (0, +p1/8). For any algorithm, there exists +a LE-POMDP with time horizon H, K actions, and 2H total states; a class of predictors F with +|F| = KH and Q? 2 F; and a constant c 0 such that the probability that the algorithm outputs a +policy ⇡ˆ with V (ˆ⇡) > V ? ✏ after collecting T trajectories is at most 2/3 for all T  cKH/✏2. +As with Proposition 1, this lower bound precludes a Poly(K,M, H, log(|⇧|)) sample complexity +bound for learning POMDPs with realizability. The lower bound shows that even with realizability, +the agent may have to reason over KH paths independently since the functions can depend on the +entire history. Proofs of both lower bounds here are deferred to Appendix A. +Both lower bounds use POMDPs with deterministic transitions and an extremely small observation +space. Consequently, even learning in deterministic-transition POMDPs requires further assumptions. +3 +2.2 Main Assumptions +As we have seen, neither restricting to reactive policies, nor imposing realizability enable tractable +learning in POMDPs on their own. Combined however, we will see that sample-efficient learning is +possible, and the combination of these two assumptions is precisely how we characterize our model. +Specifically, we study POMDPs for which Q? can be realized by a predictor that uses only the current +observation and proposed action. +Assumption 1 (Reactive Value Functions). We assume that for all x 2 X , a 2 A and any two state +s, s0 such that Ds(x), Ds0 (x) > 0, we have Q? +s(x, a) = Q? +s0 (x, a). +The restriction on Q? implies that the optimal policy is reactive and also that the optimal predictor of +long-term reward depends only on the current observation. In the following section, we describe how +this condition relates to other RL models in the literature. We first present a natural example. +Example 1 (Disjoint observations). The simplest example is one where each state s can be identified +with a subset Xs with Ds(x) > 0 only for x 2 Xs and where Xs \ Xs0 = ; when s 6= s0 +. A realized +observation then uniquely identifies the underlying state s so that Assumption 1 trivially holds, but +this mapping from s to Xs is unknown to the agent. Thus, the problem cannot be easily reduced +to a small-state MDP. This setting is quite natural in several robotics and navigation tasks, where +the visual signals are rich enough to uniquely identify the agent’s position (and hence state). It also +applies to video game playing, where the raw pixel intensities suffice to decode the game’s memory +state, but learning this mapping is challenging. +Thinking of x as the state, the above example is an MDP with infinite state space but with structured +transition operator. While our model is more general, we are primarily motivated by these infinitestate MDPs, for which the reactivity assumptions are completely non-restrictive. For infinite-state +MDPs, our model describes a particular structure on the transition operator that we show enables +efficient learning. We emphasize that our focus is not on partial observability issues. +As we are interested in understanding function approximation, we make a realizability assumption. +Assumption 2 (Realizability). We are given access to a class of predictors F ✓ (X ⇥ A ! [0, 1]) +of size |F| = N and assume that Q? = f ? 2 F. We identify each predictor f with a policy +⇡f (x) , argmaxa f(x, a). Observe that the optimal policy is ⇡f ? which satisfies V (⇡f ? ) = V ?. +Assumptions 1 and 2 exclude the lower bounds from Propositions 1 and 2. Our algorithm requires +one further assumption. +Assumption 3 (Deterministic Transitions). We assume that the transition model is deterministic. +This means that the starting distribution 1 is a point-mass on some state s1 and : (S ⇥ A) ! S. +Even with deterministic transitions, learning requires systematic global exploration that is unaddressed +in previous work. Recall that the lower bound constructions for Propositions 1 and 2 actually use +deterministic transition POMDPs. Therefore, deterministic transitions combined with either the +reactive or the realizability assumption by itself still precludes tractable learning. Nevertheless, we +hope to relax this final assumption in future work. +More broadly, this model provides a framework to reason about reinforcement learning with function +approximation. This is highly desirable as such approaches are the empirical state-of-the-art, but the +limited supporting theory provides little advice on systematic global exploration. +2.3 Connections to Other Models and Techniques +The above model is closely related to several well-studied models in the literature, namely: +Contextual Bandits: If H = 1, then our model reduces to stochastic contextual bandits [8, 16], a +well-studied simplification of the general reinforcement learning problem. The main difference is +that the choice of action does not influence the future observations (there is only one state), and +algorithms do not need to perform long-term planning to obtain low sample complexity. +Markov Decision Processes: If X = S and Ds(x) for each state s is concentrated on s, then our +model reduces to small-state MDPs, which can be efficiently solved by tabular approaches [6, 13, 26]. +The key differences in our setting are that the observation space X is extremely large or infinite +4 +and the underlying state is unobserved, so tabular methods are not viable and algorithms need to +generalize across observations. +When the number of states is large, existing methods typically require exponentially many samples +such as the O(KH) result of Kearns et al. [15]. Others depend poorly on the complexity of the policy +set or scale linearly in the size of a covering over the state space [10, 12, 23]. Lastly, policy gradient +methods avoid dependence on size of the state space, but do not achieve global optimality [11, 27] in +theory and in practice, unlike our algorithm which is guaranteed to find the globally optimal policy. +POMDPs: By definition our model is a POMDP where the Q? function is consistent across states. +This restriction implies that the agent does not have to reason over belief states as is required in +POMDPs. There are some sample complexity guarantees for learning in arbitrarily complex POMDPs, +but the bounds we are aware of are quite weak as they scale linearly with |⇧| [14, 19], or require +discrete observations from a small set [4]. +State Abstraction: State abstraction (see [18] for a survey) focuses on understanding what optimality +properties are preserved in an MDP after the state space is compressed. While our model does have a +small number of underlying states, they do not necessarily admit non-trivial state abstractions that are +easy to discover (i.e. that do not amount to learning the optimal behavior) as the optimal behavior +can depend on the observation in an arbitrary manner. Furthermore, most sample complexity results +cannot search over large abstraction sets (see e.g. Jiang et al. [9]), limiting their scope. +Function Approximation: Our approach uses function approximation to address the generalization +problem implicit in our model. Function approximation is the empirical state-of-the-art in reinforcement learning [21], but theoretical analysis has been quite limited. Several authors have studied linear +or more general function approximation (See [5, 24, 28]), but none of these results give finite sample +bounds, as they do not address the exploration question. Li and Littman [17] do give finite sample +bounds, but they assume access to a “Knows-what-it-knows" (KWIK) oracle, which cannot exist +even for simple problems. Other theoretical results either make stronger realizability assumptions +(c.f., [2]) or scale poorly with problem parameters (e.g., polynomial in the number of functions [22] +or the size of the observation space [23]). +3 The Result +We consider the task of Probably Approximately Correct (PAC) learning the models defined in +Section 2. Given F (Assumption 2), we say that an algorithm PAC learns our model if for any +✏, 2 (0, 1), the algorithm outputs a policy ⇡ˆ satisfying V (ˆ⇡) V ? ✏ with probability at least +1 . The sample complexity is a function n : (0, 1)2 ! N such that for any ✏, 2 (0, 1), the +algorithm returns an ✏-suboptimal policy with probability at least 1 using at most n(✏, ) episodes. +We refer to a Poly(M, K, H, 1/✏, log N, log(1/)) sample complexity bound as polynomial in all +relevant parameters. Notably, there should be no dependence on |X |, which may be infinite. +3.1 The Algorithm +Before turning to the algorithm, it is worth clarifying some additional notation. Since we are focused +on the deterministic transition setting, it is natural to think about the environment as an exponentially +large search tree with fan-out K and depth H. Each node in the search tree is labeled with an +(unobserved) state s 2 S, and each edge is labeled with an action a 2 A, consistent with the +transition model. A path p 2 A? is a sequence of actions from the root of the search tree, and we also +use p to denote the state reached after executing the path p from the root. Thus, Dp is the observation +distribution of the state at the end of the path p. We use p a to denote a path formed by executing +all actions in p and then executing action a, and we use |p| to denote the length of the path. Let ? +denote the empty path, which corresponds to the root of the search tree. +The pseudocode for the algorithm, which we call Least Squares Value Elimination by Exploration +(LSVEE), is displayed in Algorithm 1 (See also Appendix B). LSVEE has two main components: a +depth-first-search routine with a learning step (step 6 in Algorithm 2) and an on-demand exploration +technique (steps 5-8 in Algorithm 1). The high-level idea of the algorithm is to eliminate regression +functions that do not meet Bellman-like consistency properties of the Q? function. We now describe +both components and their properties in detail. +5 +Algorithm 1 Least Squares Value Elimination by Exploration: LSVEE (F, ✏, ) +1: F DFS-LEARN(?, F, ✏, /2). +2: Choose any f 2 F. Let Vˆ ? be a Monte Carlo estimate of V f (?, ⇡f ). (See Eq. (3)) +3: Set ✏demand = ✏/2, n1 = 32 log(12MH/) +✏2 and n2 = 8 log(6MH/) +✏ . +4: while true do +5: Fix a regressor f 2 F. +6: Collect n1 trajectories according to ⇡f and estimate V (⇡f ) via Monte-Carlo estimate Vˆ (⇡f ). +7: If |Vˆ (⇡f ) Vˆ ?|  ✏demand, return ⇡f . +8: Otherwise update F by calling DFS-LEARN (p, F, ✏, +6MH2n2 +) on each of the H 1 prefixes +p of each of the first n2 paths collected in step 6. +9: end while +Algorithm 2 DFS-LEARN (p, F, ✏, ) +1: Set = ✏ +320H2 +pK and ✏test = 20(H |p| 5/4)p +K. +2: for a 2 A, if not CONSENSUS(p a, F, ✏test, , /2 +MKH ) do +3: F DFS-LEARN(p a, F, ✏, ). +4: end for +5: Collect ntrain = 24 +2 log 8MHN + + +observations (xi, ai, ri) where (xi, r0 +i) ⇠ Dp, ai is chosen +uniformly at random, and ri = r0 +i(ai). +6: Return n +f 2 F : R˜(f)  minf02F R˜(f0 +)+22 + 22 log(4MHN/) +ntrain o +, R˜(f) defined in Eq. (4). +The DFS routine: When the DFS routine, displayed in Algorithm 2, is run at some path p, we first +decide whether to recursively expand the descendants p a by performing a consensus test. Given a +path p0 +, this test, displayed in Algorithm 3, computes estimates of value predictions, +V f (p0 +, ⇡f ) , Ex⇠Dp0 f(x, ⇡f (x)), (3) +for all the surviving regressors. These value predictions are easily estimated by collecting many +observations after rolling in to p0 and using empirical averages (See line 2 in Algorithm 3). If all the +functions agree on this value for p0 the DFS need not visit this path. +After the recursive calls, the DFS routine performs the elimination step (line 6). When this step is +invoked at path p, the algorithm collects ntrain observations (xi, ai, ri) where (xi, r0 +i) ⇠ Dp, ai is +chosen uniformly at random, and ri = r0 +i(ai) and eliminates regressors that have high empirical risk, +R˜(f) , 1 +ntrain +n +Xtrain +i=1 +(f(xi, ai) ri Vˆ f (p ai, ⇡f ))2. (4) +Intuition for DFS: This regression problem is motivated by the realizability assumption and the +definition of Q? in Eq. (2), which imply that at path p and for all actions a, +f ?(x, a) = Er⇠Dp|x r(a) + V (p a, ⇡f ? ) = Er⇠Dp|x r(a) + Ex0⇠Dpa f ?(x0 +, ⇡f ? (x0 +)). (5) +Thus f ? is consistent between its estimate at the current state s and the future state s0 = (s, a). +The regression problem (4) is essentially a finite sample version of this identity. However, some +care must be taken as the target for the regression function f includes V f (p a, ⇡f ), which is f’s +value prediction for the future. The fact that the target differs across functions can cause instability in +the regression problem, as some targets may have substantially lower variance than f ?’s. To ensure +correct behavior, we must obtain high-quality future value prediction estimates, and so, we re-use +the Monte-Carlo estimates Vˆ f (p a, ⇡f ) in Eq. (3) from the consensus tests. Each time we perform +elimination, the regression targets are close for all considered f in Equation (4) owing to consensus +being satisfied at the successor nodes in Step 2 of Algorithm 2. +Given consensus at all the descendants, each elimination step inductively propagates learning towards +the start state by ensuring the following desirable properties hold: (i) f ? is not eliminated, (ii) +6 +Algorithm 3 CONSENSUS(p, F, ✏test, , ) +1: Set ntest = 2 +2 log(2N/). Collect ntest observations xi ⇠ Dp. +2: Compute for each function, Vˆ f (p, ⇡f ) = 1 +ntest +Pntest +i=1 f(xi, ⇡f (xi)). +3: Return 1 +h +|Vˆ f (p, ⇡f ) Vˆ g(p, ⇡g)|  ✏test 8f,g 2 F +i +. +consensus is reached at p, and (iii) surviving policies choose good actions at p. Property (ii) controls +the sample complexity, since consensus tests at state s return true once elimination has been invoked +on s, so DFS avoids exploring the entire search space. Property (iii) leads to the PAC-bound; if we +have run the elimination step on all states visited by a policy, that policy must be near-optimal. +To bound the sample complexity of the DFS routine, since there are M states per level and the +consensus test returns true once elimination has been performed, we know that the DFS does not visit +a large fraction of the search tree. Specifically, this means DFS is invoked on at most MH nodes +in total, so we run elimination at most MH times, and we perform at most MKH consensus tests. +Each of these operations requires polynomially many samples. +The elimination step is inspired by the RegressorElimination algorithm of Agarwal et. al [1] for +contextual bandit learning in the realizable setting. In addition to forming a different regression +problem, RegressorElimination carefully chooses actions to balance exploration and exploitation +which leads to an optimal regret bound. In contrast, we are pursuing a PAC-guarantee here, for which +it suffices to focus exclusively on exploration. +On-demand Exploration: While DFS is guaranteed to estimate the optimal value V ?, it unfortunately does not identify the optimal policy. For example, if consensus is satisfied at a state s +without invoking the elimination step, then each function accurately predicts the value V ?(s), but +the associated policies are not guaranteed to achieve this value. To overcome this issue, we use an +on-demand exploration technique in the second phase of the algorithm (Algorithm 1, steps 5-8). +At each iteration of this phase, we select a policy ⇡f and estimate its value via Monte Carlo sampling. +If the policy has sub-optimal value, we invoke the DFS procedure on many of the paths visited. If the +policy has near-optimal value, we have found a good policy, so we are done. This procedure requires +an accurate estimate of the optimal value, which we already obtained by invoking the DFS routine at +the root, since it guarantees that all surviving regressors agree with f ?’s value on the starting state +distribution. f ?’s value is precisely the optimal value. +Intuition for On-demand Exploration: Running the elimination step at some path p ensures that +all surviving regressors take good actions at p, in the sense that taking one action according to any +surviving policy and then behaving optimally thereafter achieves near-optimal reward for path p. +This does not ensure that all surviving policies achieve near-optimal reward, because they may take +highly sub-optimal actions after the first one. On the other hand, if a surviving policy ⇡f visits only +states for which the elimination step has been invoked, then it must have near-optimal reward. More +precisely, letting L denote the set of states for which the elimination step has been invoked (the +“learned" states), we prove that any surviving ⇡f satisfies +V ? V (⇡f )  ✏/8 + P [⇡f visits a states /2 L] +Thus, if ⇡f is highly sub-optimal, it must visit some unlearned states with substantial probability. By +calling DFS-LEARN on the paths visited by ⇡f , we ensure that the elimination step is run on at least +one unlearned states. Since there are only MH distinct states and each non-terminal iteration ensures +training on an unlearned state, the algorithm must terminate and output a near-optimal policy. +Computationally, the running time of the algorithm may be O(N), since eliminating regression +functions according to Eq. (4) may require enumerating over the class and the consensus function +requires computing the maximum and minimum of N numbers, one for each function. This may +be intractably slow for rich function classes, but our focus is on statistical efficiency, so we ignore +computational issues here. +3.2 The PAC Guarantee +Our main result certifies that LSVEE PAC-learns our models with polynomial sample complexity. +7 +Theorem 1 (PAC bound). For any (✏, ) 2 (0, 1) and under Assumptions 1, 2, and 3, with probability +at least 1 , the policy ⇡ returned by LSVEE is at most ✏-suboptimal. Moreover, the number of +episodes required is at most +O˜ +✓MH6K2 +✏3 log(N/) log(1/) +◆ +. +This result uses the O˜ notation to suppress logarithmic dependence in all parameters except for N +and . The precise dependence on all parameters can be recovered by examination of our proof and is +shortened here simply for clarity. See Appendix C for the full proof of the result. +This theorem states that LSVEE produces a policy that is at most ✏-suboptimal using a number of +episodes that is polynomial in all relevant parameters. To our knowledge, this is the first polynomial +sample complexity bound for reinforcement learning with infinite observation spaces, without +prohibitively strong assumptions (e.g., [2, 22, 23]). We also believe this is the first finite-sample +guarantee for reinforcement learning with general function approximation without prohibitively +strong assumptions (e.g., [2]). +Since our model generalizes both contextual bandits and MDPs, it is worth comparing the sample +complexity bounds. +1. In contextual bandits, we have M = H = 1 so that the sample complexity of LSVEE is +O˜( K2 +✏3 log(N/) log(1/)), in contrast with known O˜( K +✏2 log(N/)) results. +2. Prior results establish the sample complexity for learning layered episodic MDPs with deterministic transitions is O˜(MKpoly(H) +✏2 log(1/)) [7, 25]. +Both comparisons show our sample complexity bound may be suboptimal in its dependence on K +and ✏. Looking into our proof, the additional factor of K comes from collecting observations to +estimate the value of future states, while the additional 1/✏ factor arises from trying to identify a +previously unexplored state. In contextual bandits, these issues do not arise since there is only one +state, while, in tabular MDPs, they can be trivially resolved as the states are observed. Thus, with +minor modifications, LSVEE can avoid these dependencies for both special cases. In addition, our +bound disagrees with the MDP results in the dependence on the policy complexity log(N); which we +believe is unavoidable when working with rich observation spaces. +Finally, our bound depends on the number of states M in the worst case, but the algorithm actually +uses a more refined notion. Since the states are unobserved, the algorithm considers two states distinct +only if they have reasonably different value functions, meaning learning on one does not lead to +consensus on the other. Thus, a more distribution-dependent analysis defining states through the +function class is a promising avenue for future work. +4 Discussion +This paper introduces a new model in which it is possible to design and analyze principled reinforcement learning algorithms engaging in global exploration. As a first step, we develop a new +algorithm and show that it learns near-optimal behavior under a deterministic-transition assumption +with polynomial sample complexity. This represents a significant advance in our understanding of +reinforcement learning with rich observations. However, there are major open questions: +1. Do polynomial sample bounds for this model with stochastic transitions exist? +2. Can we design an algorithm for learning this model that is both computationally and statistically +efficient? The sample complexity of our algorithm is logarithmic in the size of the function class +F but uses an intractably slow enumeration of these functions. +Good answers to both of these questions may yield new practical reinforcement learning algorithms. +Acknowledgements +We thank Akshay Balsubramani and Hal Daumé III for formative discussions, and we thank Tzu-Kuo +Huang and Nan Jiang for carefully reading an early draft of this paper. This work was carried out +while AK was at Microsoft Research. +8 +References +[1] A. Agarwal, M. Dudík, S. Kale, J. Langford, and R. E. Schapire. Contextual bandit learning with predictable +rewards. In AISTATS, 2012. +[2] A. Antos, C. Szepesvári, and R. Munos. Learning near-optimal policies with Bellman-residual minimization +based fitted policy iteration and a single sample path. MLJ, 2008. +[3] P. Auer, N. Cesa-Bianchi, Y. Freund, and R. E. Schapire. The nonstochastic multiarmed bandit problem. +SICOMP, 2002. +[4] K. Azizzadenesheli, A. Lazaric, and A. Anandkumar. Reinforcement learning of POMDPs using spectral +methods. In COLT, 2016. +[5] L. Baird. Residual algorithms: Reinforcement learning with function approximation. In ICML, 1995. +[6] R. I. Brafman and M. Tennenholtz. R-max – a general polynomial time algorithm for near-optimal +reinforcement learning. JMLR, 2003. +[7] C. Dann and E. Brunskill. Sample complexity of episodic fixed-horizon reinforcement learning. In NIPS, +2015. +[8] M. Dudik, D. Hsu, S. Kale, N. Karampatziakis, J. Langford, L. Reyzin, and T. Zhang. Efficient optimal +learning for contextual bandits. In UAI, 2011. +[9] N. Jiang, A. Kulesza, and S. Singh. Abstraction selection in model-based reinforcement learning. In ICML, +2015. +[10] N. K. Jong and P. Stone. Model-based exploration in continuous state spaces. In Abstraction, Reformulation, +and Approximation, 2007. +[11] S. Kakade and J. Langford. Approximately optimal approximate reinforcement learning. In ICML, 2002. +[12] S. Kakade, M. J. Kearns, and J. Langford. Exploration in metric state spaces. In ICML, 2003. +[13] M. Kearns and S. Singh. Near-optimal reinforcement learning in polynomial time. MLJ, 2002. +[14] M. J. Kearns, Y. Mansour, and A. Y. Ng. Approximate planning in large POMDPs via reusable trajectories. +In NIPS, 1999. +[15] M. J. Kearns, Y. Mansour, and A. Y. Ng. A sparse sampling algorithm for near-optimal planning in large +markov decision processes. MLJ, 2002. +[16] J. Langford and T. Zhang. The epoch-greedy algorithm for multi-armed bandits with side information. In +NIPS, 2008. +[17] L. Li and M. L. Littman. Reducing reinforcement learning to KWIK online regression. Ann. Math AI, +2010. +[18] L. Li, T. J. Walsh, and M. L. Littman. Towards a unified theory of state abstraction for MDPs. In ISAIM, +2006. +[19] Y. Mansour. Reinforcement learning and mistake bounded algorithms. In COLT, 1999. +[20] N. Meuleau, L. Peshkin, K.-E. Kim, and L. P. Kaelbling. Learning finite-state controllers for partially +observable environments. In UAI, 1999. +[21] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. Riedmiller, +A. K. Fidjeland, G. Ostrovski, S. Petersen, B. Charles, S. Amir, I. Antonoglou, H. King, D. Kumaran, +D. Wierstra, S. Legg, and D. Hassabis. Human-level control through deep reinforcement learning. Nature, +2015. +[22] P. Nguyen, O.-A. Maillard, D. Ryabko, and R. Ortner. Competing with an infinite set of models in +reinforcement learning. In AISTATS, 2013. +[23] J. Pazis and R. Parr. Efficient PAC-optimal exploration in concurrent, continuous state MDPs with delayed +updates. In AAAI, 2016. +[24] T. J. Perkins and D. Precup. A convergent form of approximate policy iteration. In NIPS, 2002. +[25] S. Reveliotis and T. Bountourelis. Efficient PAC learning for episodic tasks with acyclic state spaces. +DEDS, 2007. +[26] A. L. Strehl, L. Li, E. Wiewiora, J. Langford, and M. L. Littman. PAC model-free reinforcement learning. +In ICML, 2006. +[27] R. S. Sutton, D. A. McAllester, S. P. Singh, and Y. Mansour. Policy gradient methods for reinforcement +learning with function approximation. In NIPS, 1999. +[28] J. N. Tsitsiklis and B. Van Roy. An analysis of temporal-difference learning with function approximation. +IEEE TAC, 1997. +9 \ No newline at end of file diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_03.txt b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_03.txt new file mode 100644 index 0000000..90c6c52 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_03.txt @@ -0,0 +1,502 @@ +Automated scalable segmentation of neurons from +multispectral images +Uygar Sümbül +Grossman Center for the Statistics of Mind +and Dept. of Statistics, Columbia University +Douglas Roossien Jr. +University of Michigan Medical School +Fei Chen +MIT Media Lab and McGovern Institute +Nicholas Barry +MIT Media Lab and McGovern Institute +Edward S. Boyden +MIT Media Lab and McGovern Institute +Dawen Cai +University of Michigan Medical School +John P. Cunningham +Grossman Center for the Statistics of Mind +and Dept. of Statistics, Columbia University +Liam Paninski +Grossman Center for the Statistics of Mind +and Dept. of Statistics, Columbia University +Abstract +Reconstruction of neuroanatomy is a fundamental problem in neuroscience. +Stochastic expression of colors in individual cells is a promising tool, although its +use in the nervous system has been limited due to various sources of variability in +expression. Moreover, the intermingled anatomy of neuronal trees is challenging +for existing segmentation algorithms. Here, we propose a method to automate the +segmentation of neurons in such (potentially pseudo-colored) images. The method +uses spatio-color relations between the voxels, generates supervoxels to reduce +the problem size by four orders of magnitude before the final segmentation, and is +parallelizable over the supervoxels. To quantify performance and gain insight, we +generate simulated images, where the noise level and characteristics, the density +of expression, and the number of fluorophore types are variable. We also present +segmentations of real Brainbow images of the mouse hippocampus, which reveal +many of the dendritic segments. +1 Introduction +Studying the anatomy of individual neurons and the circuits they form is a classical approach +to understanding how nervous systems function since Ramón y Cajal’s founding work. Despite +a century of research, the problem remains open due to a lack of technological tools: mapping +neuronal structures requires a large field of view, a high resolution, a robust labeling technique, and +computational methods to sort the data. Stochastic labeling methods have been developed to endow +individual neurons with color tags [1, 2]. This approach to neural circuit mapping can utilize the +light microscope, provides a high-throughput and the potential to monitor the circuits over time, and +complements the dense, small scale connectomic studies using electron microscopy [3] with its large +field-of-view. However, its use has been limited due to its reliance on manual segmentation. +The initial stochastic, spectral labeling (Brainbow) method had a number of limitations for neuroscience applications including incomplete filling of neuronal arbors, disproportionate expression +of the nonrecombined fluorescent proteins in the transgene, suboptimal fluorescence intensity, and +color shift during imaging. Many of these limitations have since improved [4] and developments +30th Conference on Neural Information Processing Systems (NIPS 2016), Barcelona, Spain. +in various aspects of light microscopy provide further opportunities [5, 6, 7, 8]. Moreover, recent +approaches promise a dramatic increase in the number of (pseudo) color sources [9, 10, 11]. Taken +together, these advances have made light microscopy a much more powerful tool for neuroanatomy +and connectomics. However, existing automated segmentation methods are inadequate due to the +spatio-color nature of the problem, the size of the images, and the complicated anatomy of neuronal +arbors. Scalable methods that take into account the high-dimensional nature of the problem are +needed. +Here, we propose a series of operations to segment 3-D images of stochastically tagged nervous +tissues. Fundamentally, the computational problem arises due to insufficient color consistency within +individual cells, and the voxels occupied by more than one neuron. We denoise the image stack +through collaborative filtering [12], and obtain a supervoxel representation that reduces the problem +size by four orders of magnitude. We consider the segmentation of neurons as a graph segmentation +problem [13], where the nodes are the supervoxels. Spatial discontinuities and color inhomogeneities +within segmented neurons are penalized using this graph representation. While we concentrate on +neuron segmentation in this paper, our method should be equally applicable to the segmentation of +other cell classes such as glia. +To study various aspects of stochastic multispectral labeling, we present a basic simulation algorithm +that starts from actual single neuron reconstructions. We apply our method on such simulated images +of retinal ganglion cells, and on two different real Brainbow images of hippocampal neurons, where +one dataset is obtained by expansion microscopy [5]. +2 Methods +Successful segmentations of color-coded neural images should consider both the connected nature +of neuronal anatomy and the color consistency of the Brainbow construct. However, the size and +the noise level of the problem prohibit a voxel-level approach (Fig. 1). Methods that are popular in +hyperspectral imaging applications, such as nonnegative matrix factorization [14], are not immediately +suitable either because the number of color channels are too few and it is not easy to model neuronal +anatomy within these frameworks. Therefore, we develop (i) a supervoxelization strategy, (ii) +explicitly define graph representations on the set of supervoxels, and (iii) design the edge weights to +capture the spatio-color relations (Fig. 2a). +2.1 Denoising the image stack +Voxel colors within a neurite can drift along the neurite, exhibit high frequency variations, and differ +between the membrane and the cytoplasm when the expressed fluorescent protein is membranebinding (Fig. 1). Collaborative filtering generates an extra dimension consisting of similar patches +within the stack, and applies filtering in this extra dimension rather than the physical dimensions. +We use the BM4D denoiser [12] on individual channels of the datasets, assuming that the noise is +Gaussian. Figure 2 demonstrates that the boundaries are preserved in the denoised image. +2.2 Dimensionality reduction +We make two basic observations to reduce the size of the dataset: (i) Voxels expressing fluorescent +proteins form the foreground, and the dark voxels form the much larger background in typical +Brainbow settings. (ii) The basic promise of Brainbow suggests that nearby voxels within a neurite +have very similar colors. Hence, after denoising, there must be many topologically connected voxel +sets that also have consistent colors. +The watershed transform [15] considers its input as a topographic map and identifies regions associated +with local minima (“catchment basins” in a flooding interpretation of the topographic map). It can +be considered as a minimum spanning forest algorithm, and obtained in linear time with respect +to the input size [16, 17]. For an image volume V = V (x, y, z, c), we propose to calculate the +topographical map T (disaffinity map) as +T(x, y, z) = max +t∈{x,y,z} +max +c +|Gt(x, y, z, c)|, (1) +where x, y, z denote the spatial coordinates, c denotes the color coordinate, and Gx, Gy, Gz denote +the spatial gradients of V (nearest neighbor differencing). That is, any edge with significant deviation +in any color channel will correspond to a “mountain” in the topographic map. A flooding parameter, +f, assigns the local minima of T to catchment basins, which partition V together with the boundary +voxels. We assign the boundaries to neighboring basins based on color proximity. The background is +2 +A B +C D E +F G H +0 5 10 15 +0 +0.1 +0.2 +0.3 +0.4 +0.5 +0.6 +0.7 +0.8 +0.9 +1 +x−position (µm) +normalized intensity +0 2 4 6 8 10 12 14 +0 +0.1 +0.2 +0.3 +0.4 +0.5 +0.6 +0.7 +0.8 +y−position (µm) +normalized intensity +0 2 4 6 8 10 12 14 +0 +0.1 +0.2 +0.3 +0.4 +0.5 +0.6 +0.7 +y−position (µm) +normalized intensity +0 5 10 15 +0 +0.1 +0.2 +0.3 +0.4 +0.5 +0.6 +0.7 +0.8 +0.9 +1 +x−position (µm) +normalized intensity +Figure 1: Multiple noise sources affect the color consistency in Brainbow images. a, An 85×121 +Brainbow image patch from a single slice (physical size: 8.5µ × 12.1µ). Expression level differs +significantly between the membrane and the cytoplasm along a neurite (arrows). b, A maximum +intensity projection view of the 3-d image stack. Color shifts along a single neurite, which travels +to the top edge and into the page (arrows). c, A 300 × 300 image patch from a single slice of a +different Brainbow image (physical size: 30µ × 30µ). d, The intensity variations of the different +color channels along the horizontal line in c. e, Same as d for the vertical line in c. f, The image +patch in c after denoising. g–h, Same as d and e after denoising. For the plots, the range of individual +color channels is [0, 1]. +the largest and darkest basin. We call the remaining objects supervoxels [18, 19]. Let F denote the +binary image identifying all of the foreground voxels. +Objects without interior voxels (e.g., single-voxel thick dendritic segments) may not be detected by +Eq. 1 (Supp. Fig. 1). We recover such “bridges” using a topology-preserving warping (in this case, +only shrinking is used.) of the thresholded image stack into F [20, 21]: +B = W(Iθ, F), (2) +where Iθ is binary and obtained by thresholding the intensity image at θ. W returns a binary image +B such that B has the same topology as Iθ and agrees with F as much as possible. Each connected +component of B ∧ F¯ (foreground of B and background of F) is added to a neighboring supervoxel +based on color proximity, and discarded if no spatial neighbors exist (Supp. Text). +We ensure the color homogeneity within supervoxels by dividing non-homogeneous supervoxels (e.g., +large color variation across voxels) into connected subcomponents based on color until the desired +homogeneity is achieved (Supp. Text). We summarize each supervoxel’s color by its mean color. +We apply local heuristics and spatio-color constraints iteratively to further reduce the data size and +demix overlapping neurons in voxel space (Fig. 2f,g and Supp. Text). Supp. Text provides details on +the parallelization and complexity of these steps and the method in general. +3 +Figure 2: Best +viewed digitally. +a, A schematic +of the processing +steps b, Max. +intensity projection of a raw +Brainbow image +c, Max. intensity +projection of the +denoised image +d, A zoomed-in +version of the +patch indicated by +the dashed square +in b. e, The +corresponding +denoised image. f, +One-third of the +supervoxels in the +top-left quadrant +(randomly chosen). g, Same as f +after the merging +step. h1-h4, +Same as b,c,f,g +for simulated +data. Scale bars, +20µm. +2.3 Clustering the supervoxel set +We consider the supervoxels as the nodes of a graph and express their spatio-color similarities +through the existence (and the strength) of the edges connecting them, summarized by a highly +sparse adjacency matrix. Removing edges between supervoxels that aren’t spatio-color neighbors +avoids spurious links. However, this procedure also removes many genuine links due to high color +variability (Fig. 1). Moreover, it cannot identify disconnected segments of the same neuron (e.g., due +to limited field-of-view). Instead, we adjust the spatio-color neighborhoods based on the “reliability” +of the colors of the supervoxels. Let S denote the set of supervoxels in the dataset. We define +the sets of reliable and unreliable supervoxels as Sr = {s ∈ S : n(s) > ts, h(s) < td} and +Su = S \ Sr, respectively, where n(s) denotes the number of voxels in s, h(s) is a measure of the +color heterogeneity (e.g., the maximum difference between intensities across all color channels), ts +and td are the corresponding thresholds. +We describe a graph G = (V, E), where V denotes the vertex set (supervoxels) and E = Es∪Ec∪Es¯ +denotes the edges between them: +Es = {(ij) : δij < s, i 6= j} +Ec = {(ij) : si +, sj ∈ Sr, dij < c, i 6= j} +Es¯ = {(ij),(ji) : si ∈ Su,(ij) ∈/ Es, Oi(j) < kmin − Ki +, i 6= j}, (3) +where δij , dij are the spatial and color distances between si and sj , respectively. s and c are +the corresponding maximum distances. An unreliable supervoxel with too few spatial neighbors is +allowed to have up to kmin edges via proximity in color space. Here, Oi(j) is the order of supervoxel +sj in terms of the color distance from supervoxel si +, and Ki +is the number of s-spatial neighbors of +si +. (Note the symmetric formulation in Es¯.) Then, we construct the adjacency matrix as +A(i, j) =  +e +−αd2 +ij , (ij) ∈ E +0, otherwise (4) +4 +where α controls the decay in affinity with respect to distance in color. We use k-d tree structures +to efficiently retrieve the color neighborhoods [22]. Here, the distance between two supervoxels is +minv∈V,u∈U D(v, u), where V and U are the voxel sets of the two supervoxels and D(v, u) is the +Euclidean distance between voxels v and u. +A classical way of partitioning graph nodes that are nonlinearly separable is by minimizing a function +(e.g., the sum or the maximum) of the edge weights that are severed during the partitioning [23]. +Here, we use the normalized cuts algorithm [24, 13] with two simple modifications: the k-means step +is weighted by the sizes of the supervoxels and initialized by a few iterations of k-means clustering +of the supervoxel colors only (Supp. Text). The resulting clusters partition the image stack (together +with the background), and represent a segmentation of the individual neurons within the image stack. +An estimate of the number of neurons can be obtained from a Dirichlet process mixture model [25]. +While this estimate is often rough [26], the segmentation accuracy appears resilient to imperfect +estimates (Fig. 4c). +2.4 Simulating Brainbow tissues +We create basic simulated Brainbow image stacks from volumetric reconstructions of single neurons +(Algorithm 1). For simplicity, we model the neuron color shifts by a Brownian noise component on +the tree, and the background intensity by a white Gaussian noise component (Supp. Text). +We quantify the segmentation quality of the voxels using the adjusted Rand index (ARI), whose +maximum value is 1 (perfect agreement), and expected value is 0 for random clusters [27]. (Supp. +Text) +Algorithm 1 Brainbow image stack simulation +Require: number of color channels C, set of neural shapes S = {ni}i, stack (empty, 3d space + color), +background noise variability σ1, neural color variability σ2, r, saturation level M +1: for ni ∈ S do +2: Shift and rotate neuron ni to minimize overlap with existing neurons in the stack +3: Generate a uniformly random color vector vi of length C +4: Identify the connected components of cij of ni within the stack +5: for cij ∈ {cij}j do +6: Pre-assign vi to r% of the voxels of cij +7: C-dimensional random walk on cij with steps N (0, σ2 +1I) (Supp. Text) +8: end for +9: Add neuron ni to the stack (with additive colors for shared voxels) +10: end for +11: Add white noise to each voxel generated by N (0, σ2 +2I) +12: if brightness exceeds M then +13: Saturate at M +14: end if +15: return stack +3 Datasets +To simulate Brainbow image stacks, we used volumetric single neuron reconstructions of mouse +retinal ganglion cells in Algorithm 1. The dataset is obtained from previously published studies [28, +29]. Briefly, the voxel size of the images is 0.4µ × 0.4µ × 0.5µ, and the field of view of individual +stacks is 320µ × 320µ × 70µ or larger. We evaluate the effects of different conditions on a central +portion of the simulated image stack. +Both real datasets are images of the mouse hippocampal tissue. The first dataset has 1020×1020×225 +voxels (voxel size: 0.1×0.1×0.3µ +3 +), and the tissue was imaged at 4 different frequencies (channels). +The second dataset has 1080 × 1280 × 134 voxels with an effective voxel size of 70 × 70 × 40nm, +where the tissue was 4× linearly expanded [5], and imaged at 3 different channels. The Brainbow +constructs were delivered virally, and approximately 5% of the neurons express a fluorescence gene. +4 Results +Parameters used in the experiments are reported in Supp. Text. +Fig. 1b, d, and e depict the variability of color within individual neurites in a single slice and through +the imaging plane. Together, they demonstrate that the voxel colors of even a small segment of a +5 +Figure 3: Segmentation +of a simulated Brainbow +image stack. Adjusted +Rand index of the foreground is 0.80. Pseudocolor representation of 4- +channel data. Top: maximum intensity projection +of the ground truth. Only +the supervoxels that are occupied by a single neuron +are shown. Bottom: maximum intensity projection +of the reconstruction. The +top-left corners show the +whole image stack. All +other panels show the maximum intensity projections +of the supervoxels assigned +to a single cluster (inferred +neuron). +3 4 5 +0.5 +0.55 +0.6 +0.65 +0.7 +0.75 +0.8 +0.85 +0.9 +channel count +true (9) +6 +7 +8 +10 +11 +12 +0 0.02 0.04 0.06 0.08 0.1 0.55 +0.6 +0.65 +0.7 +0.75 +0.8 +0.85 +0.9 +0.95 +step size (σ1 +) −− range per channel: [0, 1] +3 ch. +4 ch. +5 ch. +0.06 0.08 0.1 0.12 0.14 0.16 0.18 +0.65 +0.7 +0.75 +0.8 +0.85 +0.9 +0.95 +1 +expression density (ratio of occupied voxels) +adjusted Rand index +3 ch. +4 ch. +5 ch. +Figure 4: Segmentation accuracy of simulated data a, Expression density (ratio of voxels occupied +by at least one neuron) vs. ARI. b, σ1 (Algorithm 1) vs. ARI. c, Channel count vs. ARI for a 9-neuron +simulation, where K ∈ [6, 12]. ARI is calculated for the foreground voxels. See Supp. Fig. 7 for +ARI values for all voxels. +neuron’s arbor can occupy a significant portion of the dynamic range in color with the state-of-theart Brainbow data. Fig. 1c-e show that collaborative denoising removes much of this noise while +preserving the edges, which is crucial for segmentation. Fig. 2b-e and h demonstrate a similar effect +on a larger scale with real and simulated Brainbow images. +Fig. 2 shows the raw and denoised versions of the 1020 × 1020 × 225 image, and a randomly chosen +subset of its supervoxels (one-third). The original set had 6.2 × 104 +supervoxels, and the merging +routine decreased this number to 3.9 × 104 +. The individual supervoxels grew in size while avoiding +mergers with supervoxels of different neurons. This set of supervoxels, together with a (sparse) +spatial connectivity matrix, characterizes the image stack. Similar reductions are obtained for all the +real and simulated datasets. +Fig. 3 shows the segmentation of a simulated 200×200×100 (physical size: 80µ×80µ×50µ) image +patch. (Supp. Fig. 2 shows all three projections, and Supp. Fig. 3 shows the density plot through +the z-axis.) In this particular example, the number of neurons within the image is 9, σ1 = 0.04, +σ2 = 0.1, and the simulated tissue is imaged using 4 independent channels. Supp. Fig. 4 shows a +patch from a single slice to visualize the amount of noise. The segmentation has an adjusted Rand +index of 0.80 when calculated for the detected foreground voxels, and 0.73 when calculated for all +voxels. (In some cases, the value based on all voxels is higher.) The ground truth image displays only +those supervoxels all of whose voxels belong to a single neuron. The bottom part of Fig. 3 shows +6 +Figure 5: Segmentation of a Brainbow stack – best viewed digitally. Pseudo-color representation of 4-channel data. The physical size of the stack is 102µ × 102µ × 68µ. The top-left +corner shows the maximum intensity projection of the whole image stack, all other panels show the +maximum intensity projections of the supervoxels assigned to a single cluster (inferred neuron). +7 +that many of these supervoxels are correctly clustered to preserve the connectivity of neuronal arbors. +There are two important mistakes in clusters 4 (merger) and 9 (spurious cluster). These are caused by +aggressive merging of supervoxels (Supp. Fig. 5), and the segmentation quality improves with the +inclusion of an extra imaging channel and more conservative merging (Supp. Fig. 6). We plot the +performance of our method under different conditions in Fig. 4 (and Supp. Fig. 7). We set the noise +standard deviation to σ1 in the denoiser, and ignored the contribution of σ2. Increasing the number +of observation channels improves the segmentation performance. The clustering accuracy degrades +gradually with increasing neuron-color noise (σ1) in the reported range (Fig. 4b). The accuracy does +not seem to degrade when the cluster count is mildly overestimated, while it decays quickly when the +count is underestimated (Fig. 4c). +Fig. 5 displays the segmentation of the 1020 × 1020 × 225 image. While some mistakes can be +spotted by eye, most of the neurites can be identified and simple tracing tools can be used to obtain +final skeletons/segmentations [30, 31]. In particular, the identified clusters exhibit homogeneous +colors and dendritic pieces that either form connected components or miss small pieces that do not +preclude the use of those tracing tools. Some clusters appear empty while a few others seem to +comprise segments from more than one neuron, in line with the simulation image (Fig. 2.4). +Supp. Fig. 8 displays the segmentation of the 4× expanded, 1080×1280×134 image. While the two +real datasets have different characteristics and voxel sizes, we used essentially the same parameters +for both of them throughout denoising, supervoxelization, merging, and clustering (Supp. Text). +Similar to Fig. 5, many of the processes can be identified easily. On the other hand, Supp. Fig. 8 +appears more fragmented, which can be explained by the smaller number of color channels (Fig. 4). +5 Discussion +Tagging individual cells with (pseudo)colors stochastically is an important tool in biological sciences. +The versatility of genetic tools for tagging synapses or cell types and the large field-of-view of light +microscopy positions multispectral labeling as a complementary approach to electron microscopy +based, small-scale, dense reconstructions [3]. However, its use in neuroscience has been limited due +to various sources of variability in expression. Here, we demonstrate that automated segmentation of +neurons in such image stacks is possible. Our approach considers both accuracy and scalability as +design goals. +The basic simulation proposed here (Algo. 1) captures the key aspects of the problem and may +guide the relevant genetics research. Yet, more detailed biophysical simulations represent a valuable +direction for future work. Our simulations suggest that the segmentation accuracy increases significantly with the inclusion of additional color channels, which coincides with ongoing experimental +efforts [9, 10, 11]. We also note that color constancy of individual neurons plays an important role +both in the accuracy of the segmentation (Fig. 4) and the supervoxelized problem size. +While we did not focus on post-processing in this paper, basic algorithms (e.g., reassignment of small, +isolated supervoxels) may improve both the visualization and the segmentation quality. Similarly, +more elaborate formulations of the adjacency relationship between supervoxels can increase the +accuracy. Finally, supervised learning of this relationship (when labeled data is present) is a promising +direction, and our methods can significantly accelerate the generation of training sets. +6 Acknowledgments +The authors thank Suraj Keshri and Min-hwan Oh (Columbia University) for useful conversations. +Funding for this research was provided by ARO MURI W911NF-12-1-0594, DARPA N66001- +15-C-4032 (SIMPLEX), and a Google Faculty Research award; in addition, this work was supported +by the Intelligence Advanced Research Projects Activity (IARPA) via Department of Interior/ Interior +Business Center (DoI/IBC) contract number D16PC00008. The U.S. Government is authorized to +reproduce and distribute reprints for Governmental purposes notwithstanding any copyright annotation +thereon. Disclaimer: The views and conclusions contained herein are those of the authors and should +not be interpreted as necessarily representing the official policies or endorsements, either expressed +or implied, of IARPA, DoI/IBC, or the U.S. Government. +8 +References +[1] J Livet et al. Transgenic strategies for combinatorial expression of fluorescent proteins in the nervous +system. Nature, 450(7166):56–62, 2007. +[2] A H Marblestone et al. Rosetta brains: A strategy for molecularly-annotated connectomics. arXiv preprint +arXiv:1404.5103, 2014. +[3] Shin-ya Takemura, Arjun Bharioke, Zhiyuan Lu, Aljoscha Nern, Shiv Vitaladevuni, Patricia K Rivlin, +William T Katz, Donald J Olbris, Stephen M Plaza, Philip Winston, et al. A visual motion detection circuit +suggested by drosophila connectomics. Nature, 500(7461):175–181, 2013. +[4] D Cai et al. Improved tools for the brainbow toolbox. Nature methods, 10(6):540–547, 2013. +[5] F Chen et al. Expansion microscopy. Science, 347(6221):543–548, 2015. +[6] K Chung and K Deisseroth. Clarity for mapping the nervous system. Nat. methods, 10(6):508–513, 2013. +[7] E Betzig et al. Imaging intracellular fluorescent proteins at nanometer resolution. Science, 313(5793):1642– +1645, 2006. +[8] M J Rust et al. Sub-diffraction-limit imaging by stochastic optical reconstruction microscopy (storm). +Nature methods, 3(10):793–796, 2006. +[9] A M Zador et al. Sequencing the connectome. PLoS Biol, 10(10):e1001411, 2012. +[10] J H Lee et al. Highly multiplexed subcellular rna sequencing in situ. Science, 343(6177):1360–1363, 2014. +[11] K H Chen et al. Spatially resolved, highly multiplexed rna profiling in single cells. Science, +348(6233):aaa6090, 2015. +[12] M Maggioni et al. Nonlocal transform-domain filter for volumetric data denoising and reconstruction. +Image Processing, IEEE Transactions on, 22(1):119–133, 2013. +[13] U Von Luxburg. A tutorial on spectral clustering. Statistics and computing, 17(4):395–416, 2007. +[14] D Lee and H S Seung. Algorithms for non-negative matrix factorization. In Advances in neural information +processing systems, pages 556–562, 2001. +[15] F Meyer. Topographic distance and watershed lines. Signal processing, 38(1):113–125, 1994. +[16] F Meyer. Minimum spanning forests for morphological segmentation. In Mathematical morphology and +its applications to image processing, pages 77–84. Springer, 1994. +[17] J Cousty et al. Watershed cuts: Minimum spanning forests and the drop of water principle. Pattern Analysis +and Machine Intelligence, IEEE Transactions on, 31(8):1362–1374, 2009. +[18] Xiaofeng Ren and Jitendra Malik. Learning a classification model for segmentation. In Computer Vision, +2003. Proceedings. Ninth IEEE International Conference on, pages 10–17. IEEE, 2003. +[19] J S Kim et al. Space-time wiring specificity supports direction selectivity in the retina. Nature, +509(7500):331–336, 2014. +[20] Gilles Bertrand and Grégoire Malandain. A new characterization of three-dimensional simple points. +Pattern Recognition Letters, 15(2):169–175, 1994. +[21] Viren Jain, Benjamin Bollmann, Mark Richardson, Daniel R Berger, Moritz N Helmstaedter, Kevin L +Briggman, Winfried Denk, Jared B Bowden, John M Mendenhall, Wickliffe C Abraham, et al. Boundary +learning by optimization with topological constraints. In Computer Vision and Pattern Recognition (CVPR), +2010 IEEE Conference on, pages 2488–2495. IEEE, 2010. +[22] J L Bentley. Multidimensional binary search trees used for associative searching. Communications of the +ACM, 18(9):509–517, 1975. +[23] Z Wu and R Leahy. An optimal graph theoretic approach to data clustering: Theory and its application to +image segmentation. IEEE Trans. Pattern Anal. Mach. Intell., 15(11):1101–1113, 1993. +[24] A Y Ng et al. On spectral clustering: Analysis and an algorithm. Advances in neural information processing +systems, 2:849–856, 2002. +[25] K Kurihara et al. Collapsed variational dirichlet process mixture models. In IJCAI, volume 7, pages +2796–2801, 2007. +[26] Jeffrey W Miller and Matthew T Harrison. A simple example of dirichlet process mixture inconsistency for +the number of components. In Advances in neural information processing systems, pages 199–206, 2013. +[27] Lawrence Hubert and Phipps Arabie. Comparing partitions. Journal of classification, 2(1):193–218, 1985. +[28] U Sümbül et al. A genetic and computational approach to structurally classify neuronal types. Nature +communications, 5, 2014. +[29] U Sümbül et al. Automated computation of arbor densities: a step toward identifying neuronal cell types. +Frontiers in neuroscience, 2014. +[30] M H Longair et al. Simple neurite tracer: open source software for reconstruction, visualization and +analysis of neuronal processes. Bioinformatics, 27(17):2453–2454, 2011. +[31] H Peng et al. V3d enables real-time 3d visualization and quantitative analysis of large-scale biological +image data sets. Nature biotechnology, 28(4):348–353, 2010. +9 \ No newline at end of file diff --git a/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_04.txt b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_04.txt new file mode 100644 index 0000000..ee4fd25 --- /dev/null +++ b/New-Second-Edition/Ch06 - Text Summarization and Topic Models/test_data/nips16_04.txt @@ -0,0 +1,398 @@ +Unsupervised Learning of Spoken Language with +Visual Context +David Harwath, Antonio Torralba, and James R. Glass +Computer Science and Artificial Intelligence Laboratory +Massachusetts Institute of Technology +Cambridge, MA 02115 +{dharwath, torralba, jrg}@csail.mit.edu +Abstract +Humans learn to speak before they can read or write, so why can’t computers +do the same? In this paper, we present a deep neural network model capable of +rudimentary spoken language acquisition using untranscribed audio training data, +whose only supervision comes in the form of contextually relevant visual images. +We describe the collection of our data comprised of over 120,000 spoken audio +captions for the Places image dataset and evaluate our model on an image search +and annotation task. We also provide some visualizations which suggest that our +model is learning to recognize meaningful words within the caption spectrograms. +1 Introduction +1.1 Problem Statement +Conventional automatic speech recognition (ASR) is performed by highly supervised systems which +utilize large amounts of training data and expert knowledge. These resources take the form of +audio with parallel transcriptions for training acoustic models, collections of text for training language models, and linguist-crafted lexicons mapping words to their pronunciations. The cost of +accumulating these resources is immense, so it is no surprise that very few of the more than 7,000 +languages spoken across the world [1] support ASR (at the time of writing the Google Speech API +supports approximately 80). This highly supervised paradigm is not the only perspective on speech +processing. Glass [2] defines a spectrum of learning scenarios for speech and language systems. +Highly supervised approaches place less burden on the machine learning algorithms and more on +human annotators. With less annotation comes more learning difficulty, but more flexibility. At the +extreme end of the spectrum, a machine would need to make do with only sensory-level inputs, the +same way that humans do. It would need to infer the set of acoustic phonetic units, the subword +structures such as syllables and morphs, the lexical dictionaries of words and their pronunciations, as +well as higher level information about the syntactic and semantic elements of the language. While +such a machine does not exist today, there has been a significant amount of research in the speech +community in recent years working towards this goal. Sensor-based learning would allow a machine +to acquire language by observation and interaction, and could be applied to any language universally. +In this paper, we investigate novel neural network architectures for the purpose of learning high-level +semantic concepts across both audio and visual modalities. Contextually correlated streams of sensor +data from multiple modalities - in this case a visual image accompanied by a spoken audio caption +describing that image - are used to train networks capable of discovering patterns using otherwise +unlabelled training data. For example, these networks are able to pick out instances of the spoken +word “water" from within continuous speech signals and associate them with images containing +bodies of water. The networks learn these associations directly from the data, without the use of +conventional speech recognition, text transcriptions, or any expert linguistic knowledge whatsoever. +30th Conference on Neural Information Processing Systems (NIPS 2016), Barcelona, Spain. +This represents a new direction in training neural networks that is a step closer to human learning, +where the brain must utilize parallel sensory input to reason about its environment. +1.2 Previous Work +In recent years, there has been much work in the speech community towards developing completely +unsupervised techniques that can learn the elements of a language solely from untranscribed audio +data. A seminal paper in this sub-field [3] introduced Segmental Dynamic Time Warping (S-DTW), +which enabled the discovery of repetitions of the same word-like units in an untranscribed audio +stream. Many works followed this, some focusing on improving the computational complexity of the +algorithm [4; 5], and others on applications [6; 7; 8; 9]. Other approaches have focused on inferring +the lexicon of a language from strings of phonemes [10; 11], as well as inferring phone-like and +higher level units directly from the speech audio itself [12; 13]. +Completely separately, multimodal modeling of images and text has been an extremely popular +pursuit in the machine learning field during the past decade, with many approaches focusing on +accurately annotating objects and regions within images. For example, Barnard et al. [14] relied +on pre-segmented and labelled images to estimate joint distributions over words and objects, while +Socher [15] learned a latent meaning space covering images and words learned on non-parallel data. +Other work has focused on natural language caption generation. While a large number of papers +have been published on this subject, recent efforts using recurrent deep neural networks [16; 17] have +generated much interest in the field. In [16], Karpathy uses a refined version of the alignment model +presented in [18] to produce training exemplars for a caption-generating RNN language model that +can be conditioned on visual features. Through the alignment process, a semantic embedding space +containing both images and words is learned. Other works have also attempted to learn multimodal +semantic embedding spaces, such as Frome et al. [19] who trained separate deep neural networks for +language modeling as well as visual object classification. They then embedded the object classes into +a dense word vector space with the neural network language model, and fine-tuned the visual object +network to predict the embedding vectors of the words corresponding to the object classes. Fang et al. +[20] also constructed a model which learned a DNN-based multimodal similarity function between +images and text for the purpose of generating captions. +The work most similar to ours is Harwath and Glass [21], in which the authors attempted to associate +individual words from read spoken captions to relevant regions in images. While the authors did not +employ ASR to first transcribe the speech, they did use the oracle word boundaries to segment the +audio caption and used a CNN to embed each word into a high dimensional space. This CNN was +pretrained to perform supervised isolated word classification on a separate dataset. Additionally, the +authors used an off-the-shelf RCNN object detection network [22] to segment the image into regions +as well as provide embedding vectors for each region. A neural network alignment model matched +the words to regions, and the resulting network was used to perform image search and annotation. In +this paper, we eschew the RCNN object detection, the oracle audio caption segmentation, and the +pretrained audio CNN. Instead, we present a network which is able to take as input the raw audio +signal of the spoken caption and compute a similarity score against the entire image frame. The +network discovers semantically meaningful words and phrases directly from the audio waveform, +and is able to reliably localize them within captions. We use our network to perform image search +and annotation on a new dataset of free form spoken audio captions for the Places205 dataset [23]. +2 Data Collection +Recent work on natural language image caption generation [17; 18] have used training data comprised +of parallel images and human generated text captions. There are several widely used image captioning +datasets such as Flickr8k [24], Flickr30k [25], and MSCOCO [26], but the captions for these datasets +are in text form. Since we desire spontaneously spoken audio captions, we collected a new corpus of +captions for the Places205 dataset [23]. Places205 contains over 2.5 million images categorized into +205 different scene classes, providing a rich variety of object types in many different contexts. +To collect audio captions, we turned to Amazon’s Mechanical Turk, an online service which allows +requesters to post “Human Intelligence Tasks,” or HITs, which anonymous workers can then complete +for a small monetary compensation. We use a modified version of the Spoke JavaScript framework +[27] as the basis of our audio collection HIT. Spoke is a flexible framework for creating speech2 +enabled websites, acting as a wrapper around the HTML5 getUserMedia API while also supporting +streaming audio from the client to a backend server via the Socket.io library. The Spoke client-side +framework also includes an interface to Google’s SpeechRecognition service, which can be used +to provide near-instantaneous feedback to the Turker. In our Mechanical Turk collection interface, +four randomly selected images are shown to the user, and a start/stop record button is paired with +each image. The user is instructed to record a free-form spoken caption for each image, describing +the salient objects in the scene. The backend sends the audio off to the Google speech recognition +service, which returns a text hypothesis of the words spoken. Because we do not have a ground truth +transcription to check against, we use the number of recognized words as a means of quality control. +If the Google recognizer was able to recognize at least eight words, we accept the caption. If not, +the Turker is notified in real-time that their caption cannot be accepted, and is given the option to +re-record their caption. Each HIT cannot be submitted until all 4 captions have been successfully +recorded. We paid the Turkers $0.03 per caption, and have to date collected approximately 120,000 +captions from 1,163 unique turkers, equally sampled across the 205 Places scene categories. We plan +to make our dataset publicly available in the near future. +For the experiments in this paper, we split a subset of our captions into a 114,000 utterance training +set, a 2,400 utterance development set, and a 2,400 utterance testing set, covering a 27,891 word +vocabulary (as specified by the Google ASR). The average caption duration was 9.5 seconds, and +contained an average of 21.9 words. All the sets were randomly sampled, so many of the same +speakers will appear in all three sets. We do not have ground truth text transcriptions for analysis +purposes, so we use the Google speech recognition hypotheses as a proxy. Given the difficult nature +of our data, these hypothesis are by no means error free. To get an idea of the error rates offered by +the Google recognizer, we manually transcribed 100 randomly selected captions and found that the +Google transcriptions had an estimated word error rate of 23.17%, indicating that the transcriptions +are somewhat erroneous but generally reliable. To estimate the word start and end times for our +analysis figures, we used Kaldi [28] to train a speech recognizer using the standard Wall Street Journal +recipe, which was then used to force align the caption audio to the transcripts. +3 Multimodal Modeling of Images and Speech +3.1 Data Preprocessing +To preprocess our images we rely on the off-the-shelf VGG 16 layer network [29] pretrained on the +ImageNet ILSVRC 2014 task. The mean pixel value for the VGG network is first subtracted from +each image, and then we take the center 224 by 224 crop and feed it forward through the network. +We discard the classification layer and take the 4096-dimensional activations of the penultimate +layer to represent the input image features. We use a log mel-filterbank spectrogram to represent +the spoken audio caption associated with each image. Generating the spectrogram transforms the +1-dimensional waveform into a 2-dimensional signal with both frequency and time information. We +use a 25 millisecond window size and a 10 millisecond shift between consecutive frames, specifying +40 filters for the mel-scale filterbank. In order to take advantage of the additional computational +efficiency offered by performing gradient computation across batched input, we force every caption +spectrogram to have the same size. We do this by fixing the spectrogram size at L frames (1024 to +2048 in our experiments, respectively corresponding to approximately 10 and 20 seconds of audio). +We truncate any captions longer than L, and zero pad any shorter captions; approximately 66% of our +captions were found to be 10 seconds or shorter, while 97% were under 20 seconds. It is important +that the zero padding take place after any mean subtraction from the spectrograms, lest the padding +bias the mean. +3.2 Multimodal Network Description +In its simplest sense, our model is designed to calculate a similarity score for any given image and +caption pair, where the score should be high if the caption is relevant to the image and low otherwise. +It is similar in spirit to previously published models which attempt to learn a similarity measure +within one modality such as [30], but our model spans across multiple modalities. The specific +architecture we use is illustrated in Figure 1. Essentially, we use a two branched network, with one +branch devoted to modeling the image and the other devoted to modeling the spectrogram of the +audio caption. The final layer of each branch outputs a vector of activations, and the dot product of +3 +Figure 1: The architecture of our audio/visual neural network with the embedding dimension denoted +by d and the caption length by L. Separate branches of the network model the image and the audio +spectrogram, and are subsequently tied together at the top level with a dot product node which +calculates a similarity score for any given image and audio caption pair. +these vectors is taken to represent the similarity between the image and the caption. As described in +Section 3.1, the VGG 16 layer network effectively forms the bulk of the image branch, but we need +to have a means of mapping the 4096-dimensional VGG embeddings into the multimodal embedding +space that the images and audio will share. For this purpose we employ a simple linear transform. +The audio branch of our network is convolutional in nature and treats the spectrogram as a 1-channel +image. However, our spectrograms have a few interesting properties that differentiate them from +images. While it is easy to imagine how visual objects in images can be translated along both the +vertical and horizontal axes, the same is not quite true for words in spectrograms. A time delay +manifests itself as a translation in the temporal (horizontal) direction, but a fixed pitch will always +be mapped to the same frequency bin on the vertical axis. The same phone pronounced by two +different speakers will not necessarily contain energy at exactly the same frequencies, but the physics +is more complex than simply shifting the entire phone up and down the frequency axis. Following the +example of [21], we size the filters of the first layer of the network to capture the entire 40-dimensional +frequency axis over a context window of 5 frames, or approximately 50 milliseconds. This means +that the vertical dimension is effectively collapsed out in the first layer, and so subsequent layers are +only convolutional in the temporal dimension. After the final layer, we pool across the entire caption +in the temporal dimension (using either mean or max pooling), and then apply L2 normalization to +the caption embedding before computing the similarity score. +3.3 Training Procedure +By taking the dot product of an image embedding vector with an audio caption embedding vector, we +obtain a similarity score S. We want this score to be high for ground-truth pairs, and low otherwise. +We train with stochastic gradient descent using an objective function which compares the similarity +scores between matched image/caption pairs and mismatched pairs. Each minibatch consists of +B ground truth pairs, each of which is paired with one impostor image and one impostor caption +randomly sampled from the same minibatch. Let S +p +j +denote the similarity score between the jth +ground truth pair, S +c +j +be the score between the original image and the impostor caption, and S +i +j +be the +score between the original caption and the impostor image. The loss for the minibatch as a function +4 +Figure 2: Examples of ground truth image/caption pairs along with the time-dependent similarity +profile showing which regions of the spectrogram the model believes are highly relevant to the +image. Overlaid on the similarity curve is the recognition text of the speech, along with vertical +lines to denote word boundaries. Note that the neural network model had no access to these (or any) +transcriptions during the training or testing phases. +of the network parameters θ is defined as: +L(θ) = X +B +j=1 +max(0, Sc +j − S +p +j + 1) + max(0, Si +j − S +p +j + 1) (1) +This loss function was encourages the model to assign a higher similarity score to a ground truth +image/caption pair than a mismatched pair by a margin of 1. In [18] the authors used a similar +objective function to align images with text captions, but every single mismatched pair of images and +captions within a minibatch was considered. Here, we only sample two negative training examples +for each positive training example. In practice, we set our minibatch size to 128, used a constant +momentum of 0.9, and ran SGD training for 50 epochs. Learning rates took a bit of tuning to get +right. In the end, we settled on an initial value of 1e-5, and employed a schedule which decreased the +learning rate by a factor between 2 and 5 every 5 to 10 epochs. +4 Experiments and Analysis +4.1 Image Query and Annotation +To objectively evaluate our models, we adopt an image search and annotation task similar to the one +used by [18; 21; 31]. We subsample a validation set of 1,000 image/caption pairs from the testing set +described in Section 2. To perform image search given a caption, we keep the caption fixed and use +our model to compute the similarity score between the caption and each of the 1,000 images in the +validation set. Image annotation works similarly, but instead the image is kept fixed and the network +is tasked with finding the caption which best fits the image. Some example search and annotation +results are displayed in Figures 3 and 4, and we report recall scores for the top 1, 5, and 10 hits in +Table 1. We experimented with many different variations on our model architecture, including varying +the number of hidden units, number of layers, filter sizes, embedding dimension, and embedding +normalization schemes. We found that an embedding dimension of d = 1024 worked well, and that +normalizing the caption embeddings prior to the similarity score computation helped. When only +the acoustic embedding vectors were L2 normalized, we saw a consistent increase in performance. +However, when the image embeddings were also L2 normalized (equivalent to replacing the dot +product similarity with a cosine similarity), the recall scores suffered. In Table 1, we show the impact +of various truncation lengths for the audio captions, as well as using a mean or max pooling scheme +5 +Figure 3: Example search results from our system. Shown on the top is the spectrogram of the query +caption, along with its speech recognition hypothesis text. Below each caption are its five highest +scoring images from the test set. +Figure 4: Example annotation results from our system. Shown on the left is the query image, and +on the right are the Google speech recognition hypotheses of the five highest scoring audio captions +from the test set. We do not show the spectrograms here to avoid clutter. +6 +Model Variant Search Annotation +Pooling Caption +type length (s) R@1 R@5 R@10 R@1 R@5 R@10 +Mean 10 .056 .192 .289 .051 .194 .283 +Mean 20 .066 .215 .299 .082 .195 .295 +Max 10 .069 .192 .278 .068 .190 .274 +Max 20 .068 .223 .309 .061 .192 .291 +Table 1: Experimental results for image search and annotation on the Places audio caption data. All +models shown used an embedding dimension of 1024. +across the audio caption. We found that truncating the captions to 20 seconds instead of 10 only +slightly boosts the scores, and that mean and max pooling work about equally well. All models were +trained on an NVIDIA Titan X GPU, which usually took about 2 days. +4.2 Analysis of Image-Caption Pairs +In order to gain a better understanding of what kind of acoustic patterns are being learned by our +models, we computed time-dependent similarity profiles for each ground truth image/caption pair. +This was done by removing the final pooling layer from the spectrogram branch of a trained model, +leaving a temporal sequence of vectors reflecting the activations of the top-level convolutional units +with respect to time. We computed the dot product of the image embedding vector with each of these +vectors individually, rectified the signal to show only positive similarities, and then applied a 5th order +median smoothing filter. We time aligned the recognition hypothesis to the spectrogram, allowing +us to see exactly which words overlapped the audio regions that were highly similar to the image. +Figure 2 displays several examples of these similarity curves along with the overlaid recognition +text. In the majority of cases, the regions of the spectrogram which have the highest similarity to +the accompanying image turn out to be highly informative words or phrases, often making explicit +references to the salient objects in the image scenes. This suggests that our network is in fact learning +to recognize audio patterns consistent with words using zero linguistic supervision whatsoever, and +perhaps even more impressively is able to learn their semantics. +4.3 Analysis of Learned Acoustic Representations +To further examine the high-level acoustic representations learned by our networks, we extracted +spectrograms for 1645 instances of 14 different ground truth words from the development set by +force aligning the Google recognizer hypotheses to the audio. We did a forward pass of each of these +individual words through the audio branch of our network, leaving us with an embedding vector for +each spoken word instance. We performed t-SNE [32] analysis on these points, shown in Figure 5. +We observed that the points form pure clusters, indicating that the top-level activations of the audio +network carry information which is discriminative across different words. +We also examined the acoustic representations being learned at the bottom of the audio network +by using the first convolutional layer and its nonlinearity as a feature extractor for a query-byexample keyword spotting task on the TIMIT data [33]. We then concatenate delta and double +delta features (in the same style as the standard MFCC39 scheme), and finally apply PCA to +reduce the dimensionality of the resulting features to 60. Exemplars of 10 different keywords are +selected from the TIMIT training set, and frame-by-frame dynamic time warping using the cosine +distance measure is used to search for occurrences of those keywords in the TIMIT testing set. +Precision@N (P@N) and equal error rate (EER) are reported as evaluation metrics. We follow exactly +the same experimental setup, including the same keywords, described in detail by [9] and [12], and +compare against their published results in Table 2, along with a baseline system using standard +MFCC39 features. The features extracted by our network are competitive against the best previously +published baseline [12] in term of P@N, while outperforming it on EER. Because [12] and [9] are +unsupervised approaches trained only on the TIMIT training set, this experiment is not a completely +fair comparison, but serves to demonstrate that discriminative phonetic information is indeed being +7 +modelled by our networks, even though we do not use any conventional linguistic supervision. +Figure 5: t-SNE visualization in 2 dimensions for 1645 spoken instances of 14 different word types taken from the development data. +System P@N EER +MFCC baseline 0.50 0.127 +[9] 0.53 0.164 +[12] 0.63 0.169 +This work 0.62 0.049 +Table 2: Precision @ N and equal +error rate (EER) results for the +TIMIT keyword spotting task. The +10 keywords used for the task were: +development, organizations, money, +age, artists, surface, warm, year, +problem, children. +5 Conclusion +In this paper, we have presented a deep neural network architecture capable of learning associations +between natural image scenes and accompanying free-form spoken audio captions. The networks +do not rely on any form of conventional speech recognition, text transcriptions, or expert linguistic +knowledge, but are able to learn to recognize semantically meaningful words and phrases at the +spectral feature level. Aside from the pre-training of the off-the-shelf VGG network used in the image +branch of the network, contextual information derived from the images is the only form of supervision +used. We presented experimental results in which the networks were used to perform image search +and annotation tasks, as well as some preliminary analysis geared towards understanding the kinds of +acoustic representations are being learned by the network. +There are many possible paths that future work might take. In the near term, the embeddings learned +by the networks could be used to perform acoustic segmentation and clustering, effectively learning a +lexicon of word-like units. The embeddings might be combined with other forms of word clustering +such as those based on dynamic time warping [3] to perform acoustically and semantically aware +word clustering. Further work should also more directly explore the regions of the images which +hold the highest affinity for different word or phrase-like units in the caption; this would enrich the +learned lexicon of units with visual semantics. One interesting long-term idea would be to collect +spoken captions for the same set of images across multiple languages and then train a network to +learn words across each of the languages. By identifying which words across the languages are highly +associated with the same kinds of visual objects, the network would have a means of performing +speech-to-speech translation. Yet another long-term idea would be to train networks capable of +synthesizing spoken captions for an arbitrary image, or alternatively synthesizing images given a +spoken description. Finally, it would be possible to apply our model to more generic forms audio +with visual context, such as environmental sounds. +References +[1] M.P. Lewis, G.F. Simon, and C.D. Fennig, Ethnologue: Languages of the World, Nineteenth edition, SIL +International. Online version: http://www.ethnologue.com, 2016. +[2] James Glass, “Towards unsupervised speech processing,” in ISSPA Keynote, Montreal, 2012. +[3] A. Park and J. Glass, “Unsupervised pattern discovery in speech,” in IEEE Transactions on Audio, Speech, +and Language Processing vol. 16, no.1, pp. 186-197, 2008. +8 +[4] A. Jansen, K. Church, and H. Hermansky, “Toward spoken term discovery at scale with zero resources,” in +Proceedings of Interspeech, 2010. +[5] A. Jansen and B. Van Durme, “Efficient spoken term discovery using randomized algorithms,” in +Proceedings of IEEE Workshop on Automatic Speech Recognition and Understanding, 2011. +[6] I. Malioutov, A. Park, R. Barzilay, and J. Glass, “Making sense of sound: Unsupervised topic segmentation +over acoustic input,” in Proceedings of the Association for Computational Linguistics (ACL), 2007. +[7] M. Dredze, A. Jansen, G. Coppersmith, and K. Church, “NLP on spoken documents without ASR,” in +Proceedings of EMNLP, 2010. +[8] D. Harwath, T.J. Hazen, and J. Glass, “Zero resource spoken audio corpus analysis,” in Proceedings of +ICASSP, 2012. +[9] Y. Zhang and J. Glass, “Unsupervised spoken keyword spotting via segmental DTW on Gaussian +posteriorgrams,” in Proceedings ASRU, 2009. +[10] M. Johnson, “Unsupervised word segmentation for sesotho using adaptor grammars,” in Proceedings of +ACL SIG on Computational Morphology and Phonology, 2008. +[11] S. Goldwater, T. Griffiths, and M. Johnson, “A Bayesian framework for word segmentation: exploring the +effects of context,” in Cognition, vol. 112 pp.21-54, 2009. +[12] C. Lee and J. Glass, “A nonparametric Bayesian approach to acoustic model discovery,” in Proceedings of +the 2012 meeting of the Association for Computational Linguistics, 2012. +[13] C. Lee, T.J. O’Donnell, and J. Glass, “Unsupervised lexicon discovery from acoustic input,” in Transactions +of the Association for Computational Linguistics, 2015. +[14] K. Barnard, P. Duygulu, D. Forsyth, N. DeFreitas, D.M. Blei, and M.I. Jordan, “Matching words and +pictures,” in Journal of Machine Learning Research, 2003. +[15] R. Socher and F. Li, “Connecting modalities: Semi-supervised segmentation and annotation of images +using unaligned text corpora,” in Proceedings of CVPR, 2010. +[16] A. Karpathy and F. Li, “Deep visual-semantic alignments for generating image descriptions,” in Proceedings of the 2015 Conference on Computer Vision and Pattern Recognition, 2015. +[17] O. Vinyals, A. Toshev, S. Bengio, and D. Erhan, “Show and tell: A neural image caption generator,” in +Proceedings of the 2015 Conference on Computer Vision and Pattern Recognition, 2015. +[18] A. Karpathy, A. Joulin, and F. Li, “Deep fragment embeddings for bidirectional image sentence mapping,” +in Proceedings of the Neural Information Processing Society, 2014. +[19] A. Frome, G. Corrado, J. Shlens, S. Bengio, J. Dean, M. Ranzato, and T. Mikolov, “Devise: A deep +visual-semantic embedding model,” in Proceedings of the Neural Information Processing Society, 2013. +[20] H. Fang, S. Gupta, F. Iandola, Srivastava R., L. Deng, P. Dollar, J. Gao, X. He, M. Mitchell, J.C. Platt, C.L. +Zitnick, and G. Zweig, “From captions to visual concepts and back,” in Proceedings of CVPR, 2015. +[21] D. Harwath and J. Glass, “Deep multimodal semantic embeddings for speech and images,” in Proceedings +of the IEEE Workshop on Automatic Speech Recognition and Understanding, 2015. +[22] R. Girshick, J. Donahue, T. Darrell, and J. Malik, “Rich feature hierarchies for accurate object detection +and semantic segmentation,” in Proceedings of CVPR, 2013. +[23] B. Zhou, A. Lapedriza, J. Xiao, A. Torralba, and A. Oliva, “Learning deep features for scene recognition +using places database,” in Proceedings of the Neural Information Processing Society, 2014. +[24] C. Rashtchian, P. Young, M. Hodosh, and J. Hockenmaier, “Collecting image annotations using amazon’s +mechanical turk,” in Proceedings of the NAACL HLT 2010 Workshop on Creating Speech and Language +Data with Amazon’s Mechanical Turk, 2010. +[25] P. Young, A. Lai, M. Hodosh, and J. Hockenmaier, “From image descriptions to visual denotations: New +similarity metrics for semantic inference over event descriptions,” in Transactions for the Association of +Computational Linguistics, 2014. +[26] T. Lin, M. Marie, S. Belongie, L. Bourdev, R. Girshick, P. Perona, D. Ramanan, C.L. Zitnick, and P. Dollar, +“Microsoft COCO: Common objects in context,” in arXiv:1405.0312, 2015. +[27] P. Saylor, “Spoke: A framework for building speech-enabled websites,” M.S. thesis, Massachusetts Institute of Technology, 32 Vassar Street, Cambridge, MA 02139, 2015, Available at +https://github.com/psaylor/spoke. +[28] D. Povey, A. Ghoshal, G. Boulianne, L. Burget, O. Glembek, N. Goel, M. Hannemann, P. Motlicek, +Y. Qian, P. Schwarz, J. Silovsky, G. Stemmer, and K. Vesely, “The Kaldi speech recognition toolkit,” in +IEEE 2011 Workshop on Automatic Speech Recognition and Understanding, 2011. +[29] K. Simonyan and A. Zisserman, “Very deep convolutional networks for large-scale image recognition,” +CoRR, vol. abs/1409.1556, 2014. +[30] S. Chopra, R. Hadsell, and Y. LeCun, “Learning a similarity metric discriminatively, with application to +face verification,” in Proceedings of CVPR, 2005. +[31] R. Socher, A. Karpathy, Q.V. Le, C.D. Manning, and A.Y. Ng, “Grounded compositional semantics for +finding and describing images with sentences,” in Transactions of the Association for Computational +Linguistics, 2014. +[32] L. van der Maaten and G. Hinton, “Visualizing high-dimensional data using t-sne,” in Journal of Machine +Learning Research, 2008. +[33] J. Garofolo, L. Lamel, W. Fisher, J. Fiscus, D. Pallet, N. Dahlgren, and V. Zue, “The timit acoustic-phonetic +continuous speech corpus,” 1993. +9 \ No newline at end of file diff --git a/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07a - Analyzing Term Similarity.ipynb b/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07a - Analyzing Term Similarity.ipynb new file mode 100644 index 0000000..939a448 --- /dev/null +++ b/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07a - Analyzing Term Similarity.ipynb @@ -0,0 +1,544 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def vectorize_terms(terms):\n", + " terms = [term.lower() for term in terms]\n", + " terms = [np.array(list(term)) for term in terms]\n", + " terms = [np.array([ord(char) for char in term]) \n", + " for term in terms]\n", + " return terms" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Believe', 'beleive', 'bargain', 'Elephant']" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "root = 'Believe'\n", + "term1 = 'beleive'\n", + "term2 = 'bargain'\n", + "term3 = 'Elephant' \n", + "\n", + "terms = [root, term1, term2, term3]\n", + "terms" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " 0 1 2 3 4 5 6 7\n", + "Believe 98 101 108 105 101 118 101 NaN\n", + "beleive 98 101 108 101 105 118 101 NaN\n", + "bargain 98 97 114 103 97 105 110 NaN\n", + "Elephant 101 108 101 112 104 97 110 116.0\n" + ] + } + ], + "source": [ + "# Character vectorization\n", + "term_vectors = vectorize_terms(terms)\n", + "\n", + "# show vector representations\n", + "vec_df = pd.DataFrame(term_vectors, index=terms)\n", + "print(vec_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "root_term = root\n", + "other_terms = [term1, term2, term3]\n", + "\n", + "root_term_vec = vec_df[vec_df.index == root_term].dropna(axis=1).values[0]\n", + "other_term_vecs = [vec_df[vec_df.index == term].dropna(axis=1).values[0]\n", + " for term in other_terms]" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [], + "source": [ + "def hamming_distance(u, v, norm=False):\n", + " if u.shape != v.shape:\n", + " raise ValueError('The vectors must have equal lengths.')\n", + " return (u != v).sum() if not norm else (u != v).mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hamming distance between root: Believe and term: beleive is 2\n", + "Hamming distance between root: Believe and term: bargain is 6\n" + ] + }, + { + "ename": "ValueError", + "evalue": "The vectors must have equal lengths.", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[0mterm\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m hamming_distance(root_term_vec, \n\u001b[1;32m----> 5\u001b[1;33m term_vector, norm=False)))\n\u001b[0m", + "\u001b[1;32m\u001b[0m in \u001b[0;36mhamming_distance\u001b[1;34m(u, v, norm)\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mhamming_distance\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mnorm\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mu\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[1;32mraise\u001b[0m \u001b[0mValueError\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'The vectors must have equal lengths.'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msum\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0mnorm\u001b[0m \u001b[1;32melse\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mmean\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mValueError\u001b[0m: The vectors must have equal lengths." + ] + } + ], + "source": [ + "for term, term_vector in zip(other_terms, other_term_vecs):\n", + " print('Hamming distance between root: {} and term: {} is {}'.format(root_term,\n", + " term,\n", + " hamming_distance(root_term_vec, \n", + " term_vector, norm=False)))" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Normalized Hamming distance between root: Believe and term: beleive is 0.29\n", + "Normalized Hamming distance between root: Believe and term: bargain is 0.86\n" + ] + }, + { + "ename": "ValueError", + "evalue": "The vectors must have equal lengths.", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[0mterm\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m round(hamming_distance(root_term_vec, \n\u001b[1;32m----> 5\u001b[1;33m term_vector, norm=True),\n\u001b[0m\u001b[0;32m 6\u001b[0m 2)\n\u001b[0;32m 7\u001b[0m ))\n", + "\u001b[1;32m\u001b[0m in \u001b[0;36mhamming_distance\u001b[1;34m(u, v, norm)\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mhamming_distance\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mnorm\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mu\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[1;32mraise\u001b[0m \u001b[0mValueError\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'The vectors must have equal lengths.'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msum\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0mnorm\u001b[0m \u001b[1;32melse\u001b[0m \u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mmean\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mValueError\u001b[0m: The vectors must have equal lengths." + ] + } + ], + "source": [ + "for term, term_vector in zip(other_terms, other_term_vecs):\n", + " print('Normalized Hamming distance between root: {} and term: {} is {}'.format(root_term,\n", + " term,\n", + " round(hamming_distance(root_term_vec, \n", + " term_vector, norm=True),\n", + " 2)\n", + " ))" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [], + "source": [ + "def manhattan_distance(u, v, norm=False):\n", + " if u.shape != v.shape:\n", + " raise ValueError('The vectors must have equal lengths.')\n", + " return abs(u - v).sum() if not norm else abs(u - v).mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Manhattan distance between root: Believe and term: beleive is 8\n", + "Manhattan distance between root: Believe and term: bargain is 38\n" + ] + }, + { + "ename": "ValueError", + "evalue": "The vectors must have equal lengths.", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[0mterm\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m manhattan_distance(root_term_vec, \n\u001b[1;32m----> 5\u001b[1;33m term_vector, norm=False)))\n\u001b[0m", + "\u001b[1;32m\u001b[0m in \u001b[0;36mmanhattan_distance\u001b[1;34m(u, v, norm)\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mmanhattan_distance\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mnorm\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mu\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[1;32mraise\u001b[0m \u001b[0mValueError\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'The vectors must have equal lengths.'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mabs\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m-\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msum\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0mnorm\u001b[0m \u001b[1;32melse\u001b[0m \u001b[0mabs\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m-\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mmean\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mValueError\u001b[0m: The vectors must have equal lengths." + ] + } + ], + "source": [ + "for term, term_vector in zip(other_terms, other_term_vecs):\n", + " print('Manhattan distance between root: {} and term: {} is {}'.format(root_term,\n", + " term,\n", + " manhattan_distance(root_term_vec, \n", + " term_vector, norm=False)))" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Normalized Manhattan distance between root: Believe and term: beleive is 1.14\n", + "Normalized Manhattan distance between root: Believe and term: bargain is 5.43\n" + ] + }, + { + "ename": "ValueError", + "evalue": "The vectors must have equal lengths.", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[0mterm\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m round(manhattan_distance(root_term_vec, \n\u001b[1;32m----> 5\u001b[1;33m term_vector, norm=True),\n\u001b[0m\u001b[0;32m 6\u001b[0m 2)\n\u001b[0;32m 7\u001b[0m ))\n", + "\u001b[1;32m\u001b[0m in \u001b[0;36mmanhattan_distance\u001b[1;34m(u, v, norm)\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mmanhattan_distance\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mnorm\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mu\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[1;32mraise\u001b[0m \u001b[0mValueError\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'The vectors must have equal lengths.'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mabs\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m-\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msum\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mif\u001b[0m \u001b[1;32mnot\u001b[0m \u001b[0mnorm\u001b[0m \u001b[1;32melse\u001b[0m \u001b[0mabs\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m-\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mmean\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mValueError\u001b[0m: The vectors must have equal lengths." + ] + } + ], + "source": [ + "for term, term_vector in zip(other_terms, other_term_vecs):\n", + " print('Normalized Manhattan distance between root: {} and term: {} is {}'.format(root_term,\n", + " term,\n", + " round(manhattan_distance(root_term_vec, \n", + " term_vector, norm=True),\n", + " 2)\n", + " ))" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [], + "source": [ + "def euclidean_distance(u,v):\n", + " if u.shape != v.shape:\n", + " raise ValueError('The vectors must have equal lengths.')\n", + " distance = np.sqrt(np.sum(np.square(u - v)))\n", + " return distance" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Euclidean distance between root: Believe and term: beleive is 5.66\n", + "Euclidean distance between root: Believe and term: bargain is 17.94\n" + ] + }, + { + "ename": "ValueError", + "evalue": "The vectors must have equal lengths.", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[0mterm\u001b[0m\u001b[1;33m,\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m round(euclidean_distance(root_term_vec, \n\u001b[1;32m----> 5\u001b[1;33m term_vector),\n\u001b[0m\u001b[0;32m 6\u001b[0m 2)\n\u001b[0;32m 7\u001b[0m ))\n", + "\u001b[1;32m\u001b[0m in \u001b[0;36meuclidean_distance\u001b[1;34m(u, v)\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0meuclidean_distance\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mif\u001b[0m \u001b[0mu\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m \u001b[1;33m!=\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mshape\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[1;32mraise\u001b[0m \u001b[0mValueError\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m'The vectors must have equal lengths.'\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 4\u001b[0m \u001b[0mdistance\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msqrt\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msum\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnp\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msquare\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mu\u001b[0m \u001b[1;33m-\u001b[0m \u001b[0mv\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 5\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mdistance\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mValueError\u001b[0m: The vectors must have equal lengths." + ] + } + ], + "source": [ + "for term, term_vector in zip(other_terms, other_term_vecs):\n", + " print('Euclidean distance between root: {} and term: {} is {}'.format(root_term,\n", + " term,\n", + " round(euclidean_distance(root_term_vec, \n", + " term_vector),\n", + " 2)\n", + " ))" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "metadata": {}, + "outputs": [], + "source": [ + "import copy\n", + "import pandas as pd\n", + "\n", + "def levenshtein_edit_distance(u, v):\n", + " # convert to lower case\n", + " u = u.lower()\n", + " v = v.lower()\n", + " # base cases\n", + " if u == v: return 0\n", + " elif len(u) == 0: return len(v)\n", + " elif len(v) == 0: return len(u)\n", + " # initialize edit distance matrix\n", + " edit_matrix = []\n", + " # initialize two distance matrices \n", + " du = [0] * (len(v) + 1)\n", + " dv = [0] * (len(v) + 1)\n", + " # du: the previous row of edit distances\n", + " for i in range(len(du)):\n", + " du[i] = i\n", + " # dv : the current row of edit distances \n", + " for i in range(len(u)):\n", + " dv[0] = i + 1\n", + " # compute cost as per algorithm\n", + " for j in range(len(v)):\n", + " cost = 0 if u[i] == v[j] else 1\n", + " dv[j + 1] = min(dv[j] + 1, du[j + 1] + 1, du[j] + cost)\n", + " # assign dv to du for next iteration\n", + " for j in range(len(du)):\n", + " du[j] = dv[j]\n", + " # copy dv to the edit matrix\n", + " edit_matrix.append(copy.copy(dv))\n", + " # compute the final edit distance and edit matrix \n", + " distance = dv[len(v)]\n", + " edit_matrix = np.array(edit_matrix)\n", + " edit_matrix = edit_matrix.T\n", + " edit_matrix = edit_matrix[1:,]\n", + " edit_matrix = pd.DataFrame(data=edit_matrix,\n", + " index=list(v),\n", + " columns=list(u))\n", + " return distance, edit_matrix" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Computing distance between root: Believe and term: beleive\n", + "Levenshtein edit distance is 2\n", + "The complete edit distance matrix is depicted below\n", + " b e l i e v e\n", + "b 0 1 2 3 4 5 6\n", + "e 1 0 1 2 3 4 5\n", + "l 2 1 0 1 2 3 4\n", + "e 3 2 1 1 1 2 3\n", + "i 4 3 2 1 2 2 3\n", + "v 5 4 3 2 2 2 3\n", + "e 6 5 4 3 2 3 2\n", + "------------------------------\n", + "Computing distance between root: Believe and term: bargain\n", + "Levenshtein edit distance is 6\n", + "The complete edit distance matrix is depicted below\n", + " b e l i e v e\n", + "b 0 1 2 3 4 5 6\n", + "a 1 1 2 3 4 5 6\n", + "r 2 2 2 3 4 5 6\n", + "g 3 3 3 3 4 5 6\n", + "a 4 4 4 4 4 5 6\n", + "i 5 5 5 4 5 5 6\n", + "n 6 6 6 5 5 6 6\n", + "------------------------------\n", + "Computing distance between root: Believe and term: Elephant\n", + "Levenshtein edit distance is 7\n", + "The complete edit distance matrix is depicted below\n", + " b e l i e v e\n", + "e 1 1 2 3 4 5 6\n", + "l 2 2 1 2 3 4 5\n", + "e 3 2 2 2 2 3 4\n", + "p 4 3 3 3 3 3 4\n", + "h 5 4 4 4 4 4 4\n", + "a 6 5 5 5 5 5 5\n", + "n 7 6 6 6 6 6 6\n", + "t 8 7 7 7 7 7 7\n", + "------------------------------\n" + ] + } + ], + "source": [ + "for term in other_terms:\n", + " edit_d, edit_m = levenshtein_edit_distance(root_term, term)\n", + " print('Computing distance between root: {} and term: {}'.format(root_term,\n", + " term))\n", + " print('Levenshtein edit distance is {}'.format(edit_d))\n", + " print('The complete edit distance matrix is depicted below')\n", + " print(edit_m)\n", + " print('-'*30)" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "metadata": {}, + "outputs": [], + "source": [ + "def boc_term_vectors(word_list):\n", + " word_list = [word.lower() for word in word_list]\n", + " unique_chars = np.unique(\n", + " np.hstack([list(word) \n", + " for word in word_list]))\n", + " word_list_term_counts = [{char: count \n", + " for char, count in np.stack(\n", + " np.unique(list(word), \n", + " return_counts=True),\n", + " axis=1)}\n", + " for word in word_list]\n", + " \n", + " boc_vectors = [np.array([int(word_term_counts.get(char, 0)) \n", + " for char in unique_chars])\n", + " for word_term_counts in word_list_term_counts]\n", + " return list(unique_chars), boc_vectors" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " a b e g h i l n p r t v\n", + "Believe 0 1 3 0 0 1 1 0 0 0 0 1\n", + "beleive 0 1 3 0 0 1 1 0 0 0 0 1\n", + "bargain 2 1 0 1 0 1 0 1 0 1 0 0\n", + "Elephant 1 0 2 0 1 0 1 1 1 0 1 0\n" + ] + } + ], + "source": [ + "# Bag of characters vectorization\n", + "import pandas as pd\n", + "\n", + "feature_names, feature_vectors = boc_term_vectors(terms)\n", + "boc_df = pd.DataFrame(feature_vectors, columns=feature_names, index=terms)\n", + "print(boc_df)" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [], + "source": [ + "root_term_boc = boc_df[vec_df.index == root_term].values[0]\n", + "other_term_bocs = [boc_df[vec_df.index == term].values[0]\n", + " for term in other_terms]" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": {}, + "outputs": [], + "source": [ + "def cosine_distance(u, v):\n", + " distance = 1.0 - (np.dot(u, v) / \n", + " (np.sqrt(sum(np.square(u))) * np.sqrt(sum(np.square(v))))\n", + " )\n", + " return distance" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Analyzing similarity between root: Believe and term: beleive\n", + "Cosine distance is -0.0\n", + "Cosine similarity is 1.0\n", + "----------------------------------------\n", + "Analyzing similarity between root: Believe and term: bargain\n", + "Cosine distance is 0.82\n", + "Cosine similarity is 0.18\n", + "----------------------------------------\n", + "Analyzing similarity between root: Believe and term: Elephant\n", + "Cosine distance is 0.39\n", + "Cosine similarity is 0.61\n", + "----------------------------------------\n" + ] + } + ], + "source": [ + "for term, boc_term in zip(other_terms, other_term_bocs):\n", + " print('Analyzing similarity between root: {} and term: {}'.format(root_term,\n", + " term))\n", + " distance = round(cosine_distance(root_term_boc, boc_term), 2)\n", + " similarity = round(1 - distance, 2) \n", + " print('Cosine distance is {}'.format(distance))\n", + " print('Cosine similarity is {}'.format(similarity))\n", + " print('-'*40)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07b - Movie Recommender with Document Similarity.ipynb b/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07b - Movie Recommender with Document Similarity.ipynb new file mode 100644 index 0000000..bd6c02d --- /dev/null +++ b/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07b - Movie Recommender with Document Similarity.ipynb @@ -0,0 +1,1804 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Movie Recommendations with Document Similarity\n", + "\n", + "Recommender systems are one of the popular and most adopted applications of machine learning. They are typically used to recommend entities to users and these entites can be anything like products, movies, services and so on. \n", + "\n", + "Popular examples of recommendations include,\n", + "- Amazon suggesting products on its website\n", + "- Amazon Prime, Netflix, Hotstar recommending movies\\shows\n", + "- YouTube recommending videos to watch\n", + "\n", + "Typically recommender systems can be implemented in three ways:\n", + "\n", + "- Simple Rule-based Recommenders: Typically based on specific global metrics and thresholds like movie popularity, global ratings etc.\n", + "- Content-based Recommenders: This is based on providing similar entities based on a specific entity of interest. Content metadata can be used here like movie descriptions, genre, cast, director and so on\n", + "- Collaborative filtering Recommenders: Here we don't need metadata but we try to predict recommendations and ratings based on past ratings of different users and specific items.\n", + "\n", + "We will be building a movie recommendation system here where based on data\\metadata pertaining to different movies, we try and recommend similar movies of interest!\n", + "\n", + "![](netflix_rec.png)\n", + "\n", + "Since our focus in not really recommendation engines but NLP, we will be leveraging the text-based metadata for each movie to try and recommend similar movies based on specific movies of interest. This falls under content-based recommenders. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load Dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 4803 entries, 0 to 4802\n", + "Data columns (total 20 columns):\n", + "budget 4803 non-null int64\n", + "genres 4803 non-null object\n", + "homepage 1712 non-null object\n", + "id 4803 non-null int64\n", + "keywords 4803 non-null object\n", + "original_language 4803 non-null object\n", + "original_title 4803 non-null object\n", + "overview 4800 non-null object\n", + "popularity 4803 non-null float64\n", + "production_companies 4803 non-null object\n", + "production_countries 4803 non-null object\n", + "release_date 4802 non-null object\n", + "revenue 4803 non-null int64\n", + "runtime 4801 non-null float64\n", + "spoken_languages 4803 non-null object\n", + "status 4803 non-null object\n", + "tagline 3959 non-null object\n", + "title 4803 non-null object\n", + "vote_average 4803 non-null float64\n", + "vote_count 4803 non-null int64\n", + "dtypes: float64(3), int64(4), object(13)\n", + "memory usage: 750.5+ KB\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "df = pd.read_csv('tmdb_5000_movies.csv.gz', compression='gzip')\n", + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
budgetgenreshomepageidkeywordsoriginal_languageoriginal_titleoverviewpopularityproduction_companiesproduction_countriesrelease_daterevenueruntimespoken_languagesstatustaglinetitlevote_averagevote_count
0237000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...http://www.avatarmovie.com/19995[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":...enAvatarIn the 22nd century, a paraplegic Marine is di...150.437577[{\"name\": \"Ingenious Film Partners\", \"id\": 289...[{\"iso_3166_1\": \"US\", \"name\": \"United States o...2009-12-102787965087162.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso...ReleasedEnter the World of Pandora.Avatar7.211800
1300000000[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"...http://disney.go.com/disneypictures/pirates/285[{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na...enPirates of the Caribbean: At World's EndCaptain Barbossa, long believed to be dead, ha...139.082615[{\"name\": \"Walt Disney Pictures\", \"id\": 2}, {\"...[{\"iso_3166_1\": \"US\", \"name\": \"United States o...2007-05-19961000000169.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedAt the end of the world, the adventure begins.Pirates of the Caribbean: At World's End6.94500
2245000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...http://www.sonypictures.com/movies/spectre/206647[{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name...enSpectreA cryptic message from Bond’s past sends him o...107.376788[{\"name\": \"Columbia Pictures\", \"id\": 5}, {\"nam...[{\"iso_3166_1\": \"GB\", \"name\": \"United Kingdom\"...2015-10-26880674609148.0[{\"iso_639_1\": \"fr\", \"name\": \"Fran\\u00e7ais\"},...ReleasedA Plan No One EscapesSpectre6.34466
3250000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam...http://www.thedarkknightrises.com/49026[{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,...enThe Dark Knight RisesFollowing the death of District Attorney Harve...112.312950[{\"name\": \"Legendary Pictures\", \"id\": 923}, {\"...[{\"iso_3166_1\": \"US\", \"name\": \"United States o...2012-07-161084939099165.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedThe Legend EndsThe Dark Knight Rises7.69106
4260000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...http://movies.disney.com/john-carter49529[{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":...enJohn CarterJohn Carter is a war-weary, former military ca...43.926995[{\"name\": \"Walt Disney Pictures\", \"id\": 2}][{\"iso_3166_1\": \"US\", \"name\": \"United States o...2012-03-07284139100132.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedLost in our world, found in another.John Carter6.12124
\n", + "
" + ], + "text/plain": [ + " budget genres \\\n", + "0 237000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... \n", + "1 300000000 [{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"... \n", + "2 245000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... \n", + "3 250000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... \n", + "4 260000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... \n", + "\n", + " homepage id \\\n", + "0 http://www.avatarmovie.com/ 19995 \n", + "1 http://disney.go.com/disneypictures/pirates/ 285 \n", + "2 http://www.sonypictures.com/movies/spectre/ 206647 \n", + "3 http://www.thedarkknightrises.com/ 49026 \n", + "4 http://movies.disney.com/john-carter 49529 \n", + "\n", + " keywords original_language \\\n", + "0 [{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... en \n", + "1 [{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na... en \n", + "2 [{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name... en \n", + "3 [{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,... en \n", + "4 [{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":... en \n", + "\n", + " original_title \\\n", + "0 Avatar \n", + "1 Pirates of the Caribbean: At World's End \n", + "2 Spectre \n", + "3 The Dark Knight Rises \n", + "4 John Carter \n", + "\n", + " overview popularity \\\n", + "0 In the 22nd century, a paraplegic Marine is di... 150.437577 \n", + "1 Captain Barbossa, long believed to be dead, ha... 139.082615 \n", + "2 A cryptic message from Bond’s past sends him o... 107.376788 \n", + "3 Following the death of District Attorney Harve... 112.312950 \n", + "4 John Carter is a war-weary, former military ca... 43.926995 \n", + "\n", + " production_companies \\\n", + "0 [{\"name\": \"Ingenious Film Partners\", \"id\": 289... \n", + "1 [{\"name\": \"Walt Disney Pictures\", \"id\": 2}, {\"... \n", + "2 [{\"name\": \"Columbia Pictures\", \"id\": 5}, {\"nam... \n", + "3 [{\"name\": \"Legendary Pictures\", \"id\": 923}, {\"... \n", + "4 [{\"name\": \"Walt Disney Pictures\", \"id\": 2}] \n", + "\n", + " production_countries release_date revenue \\\n", + "0 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2009-12-10 2787965087 \n", + "1 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2007-05-19 961000000 \n", + "2 [{\"iso_3166_1\": \"GB\", \"name\": \"United Kingdom\"... 2015-10-26 880674609 \n", + "3 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2012-07-16 1084939099 \n", + "4 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2012-03-07 284139100 \n", + "\n", + " runtime spoken_languages status \\\n", + "0 162.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso... Released \n", + "1 169.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", + "2 148.0 [{\"iso_639_1\": \"fr\", \"name\": \"Fran\\u00e7ais\"},... Released \n", + "3 165.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", + "4 132.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", + "\n", + " tagline \\\n", + "0 Enter the World of Pandora. \n", + "1 At the end of the world, the adventure begins. \n", + "2 A Plan No One Escapes \n", + "3 The Legend Ends \n", + "4 Lost in our world, found in another. \n", + "\n", + " title vote_average vote_count \n", + "0 Avatar 7.2 11800 \n", + "1 Pirates of the Caribbean: At World's End 6.9 4500 \n", + "2 Spectre 6.3 4466 \n", + "3 The Dark Knight Rises 7.6 9106 \n", + "4 John Carter 6.1 2124 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Int64Index: 4800 entries, 0 to 4802\n", + "Data columns (total 6 columns):\n", + "title 4800 non-null object\n", + "tagline 4800 non-null object\n", + "overview 4800 non-null object\n", + "genres 4800 non-null object\n", + "popularity 4800 non-null float64\n", + "description 4800 non-null object\n", + "dtypes: float64(1), object(5)\n", + "memory usage: 262.5+ KB\n" + ] + } + ], + "source": [ + "df = df[['title', 'tagline', 'overview', 'genres', 'popularity']]\n", + "df.tagline.fillna('', inplace=True)\n", + "df['description'] = df['tagline'].map(str) + ' ' + df['overview']\n", + "df.dropna(inplace=True)\n", + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titletaglineoverviewgenrespopularitydescription
0AvatarEnter the World of Pandora.In the 22nd century, a paraplegic Marine is di...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...150.437577Enter the World of Pandora. In the 22nd centur...
1Pirates of the Caribbean: At World's EndAt the end of the world, the adventure begins.Captain Barbossa, long believed to be dead, ha...[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"...139.082615At the end of the world, the adventure begins....
2SpectreA Plan No One EscapesA cryptic message from Bond’s past sends him o...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...107.376788A Plan No One Escapes A cryptic message from B...
3The Dark Knight RisesThe Legend EndsFollowing the death of District Attorney Harve...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam...112.312950The Legend Ends Following the death of Distric...
4John CarterLost in our world, found in another.John Carter is a war-weary, former military ca...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...43.926995Lost in our world, found in another. John Cart...
\n", + "
" + ], + "text/plain": [ + " title \\\n", + "0 Avatar \n", + "1 Pirates of the Caribbean: At World's End \n", + "2 Spectre \n", + "3 The Dark Knight Rises \n", + "4 John Carter \n", + "\n", + " tagline \\\n", + "0 Enter the World of Pandora. \n", + "1 At the end of the world, the adventure begins. \n", + "2 A Plan No One Escapes \n", + "3 The Legend Ends \n", + "4 Lost in our world, found in another. \n", + "\n", + " overview \\\n", + "0 In the 22nd century, a paraplegic Marine is di... \n", + "1 Captain Barbossa, long believed to be dead, ha... \n", + "2 A cryptic message from Bond’s past sends him o... \n", + "3 Following the death of District Attorney Harve... \n", + "4 John Carter is a war-weary, former military ca... \n", + "\n", + " genres popularity \\\n", + "0 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 150.437577 \n", + "1 [{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"... 139.082615 \n", + "2 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 107.376788 \n", + "3 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... 112.312950 \n", + "4 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 43.926995 \n", + "\n", + " description \n", + "0 Enter the World of Pandora. In the 22nd centur... \n", + "1 At the end of the world, the adventure begins.... \n", + "2 A Plan No One Escapes A cryptic message from B... \n", + "3 The Legend Ends Following the death of Distric... \n", + "4 Lost in our world, found in another. John Cart... " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build a Movie Recommender System\n", + "\n", + "Here you will build your own movie recommender system. We will use the following pipeline:\n", + "- Text pre-processing\n", + "- Feature Engineering\n", + "- Document Similarity Computation\n", + "- Find top similar movies\n", + "- Build a movie recommendation function\n", + "\n", + "\n", + "## Document Similarity\n", + "\n", + "Recommendations are about understanding the underlying features which make us favour one choice over the other. Similarity between items(in this case movies) is one way to understanding why we choose one movie over another. There are different ways to calculate similarity between two items. One of the most widely used measures is __cosine similarity__ which we have already used in the previous unit.\n", + "\n", + "### Cosine Similarity\n", + "\n", + "Cosine Similarity is used to calculate a numeric score to denote the similarity between two text documents. Mathematically, it is defined as follows:\n", + "\n", + "$$ cosine(x,y) = \\frac{x. y^\\intercal}{||x||.||y||} $$" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Text pre-processing\n", + "\n", + "We will do some basic text pre-processing on our movie descriptions before we build our features" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4800" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import nltk\n", + "import re\n", + "import numpy as np\n", + "\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "\n", + "def normalize_document(doc):\n", + " # lower case and remove special characters\\whitespaces\n", + " doc = re.sub(r'[^a-zA-Z0-9\\s]', '', doc, re.I|re.A)\n", + " doc = doc.lower()\n", + " doc = doc.strip()\n", + " # tokenize document\n", + " tokens = nltk.word_tokenize(doc)\n", + " # filter stopwords out of document\n", + " filtered_tokens = [token for token in tokens if token not in stop_words]\n", + " # re-create document from filtered tokens\n", + " doc = ' '.join(filtered_tokens)\n", + " return doc\n", + "\n", + "normalize_corpus = np.vectorize(normalize_document)\n", + "\n", + "norm_corpus = normalize_corpus(list(df['description']))\n", + "len(norm_corpus)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Extract TF-IDF Features" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(4800, 20667)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "tf = TfidfVectorizer(ngram_range=(1, 2), min_df=2)\n", + "tfidf_matrix = tf.fit_transform(norm_corpus)\n", + "tfidf_matrix.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Compute Pairwise Document Similarity" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...4790479147924793479447954796479747984799
01.0000000.0107010.0000000.0190300.0286870.0249010.0000000.0265160.0000000.007420...0.0097020.00.0233360.0335490.0000000.0000000.00.0068920.0000000.000000
10.0107011.0000000.0118910.0000000.0416230.0000000.0145640.0271220.0346880.007614...0.0099560.00.0048180.0000000.0000000.0125930.00.0223910.0137240.000000
20.0000000.0118911.0000000.0000000.0000000.0000000.0000000.0222420.0158540.004891...0.0426170.00.0000000.0000000.0165190.0000000.00.0116820.0000000.004000
30.0190300.0000000.0000001.0000000.0087930.0000000.0159760.0231720.0274520.073610...0.0000000.00.0096670.0000000.0000000.0000000.00.0283540.0217850.027735
40.0286870.0416230.0000000.0087931.0000000.0000000.0229120.0286760.0000000.023538...0.0148000.00.0000000.0000000.0000000.0107600.00.0105140.0000000.000000
\n", + "

5 rows × 4800 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 1.000000 0.010701 0.000000 0.019030 0.028687 0.024901 0.000000 \n", + "1 0.010701 1.000000 0.011891 0.000000 0.041623 0.000000 0.014564 \n", + "2 0.000000 0.011891 1.000000 0.000000 0.000000 0.000000 0.000000 \n", + "3 0.019030 0.000000 0.000000 1.000000 0.008793 0.000000 0.015976 \n", + "4 0.028687 0.041623 0.000000 0.008793 1.000000 0.000000 0.022912 \n", + "\n", + " 7 8 9 ... 4790 4791 4792 4793 \\\n", + "0 0.026516 0.000000 0.007420 ... 0.009702 0.0 0.023336 0.033549 \n", + "1 0.027122 0.034688 0.007614 ... 0.009956 0.0 0.004818 0.000000 \n", + "2 0.022242 0.015854 0.004891 ... 0.042617 0.0 0.000000 0.000000 \n", + "3 0.023172 0.027452 0.073610 ... 0.000000 0.0 0.009667 0.000000 \n", + "4 0.028676 0.000000 0.023538 ... 0.014800 0.0 0.000000 0.000000 \n", + "\n", + " 4794 4795 4796 4797 4798 4799 \n", + "0 0.000000 0.000000 0.0 0.006892 0.000000 0.000000 \n", + "1 0.000000 0.012593 0.0 0.022391 0.013724 0.000000 \n", + "2 0.016519 0.000000 0.0 0.011682 0.000000 0.004000 \n", + "3 0.000000 0.000000 0.0 0.028354 0.021785 0.027735 \n", + "4 0.000000 0.010760 0.0 0.010514 0.000000 0.000000 \n", + "\n", + "[5 rows x 4800 columns]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.metrics.pairwise import cosine_similarity\n", + "\n", + "doc_sim = cosine_similarity(tfidf_matrix)\n", + "doc_sim_df = pd.DataFrame(doc_sim)\n", + "doc_sim_df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Get List of Movie Titles" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(array(['Avatar', \"Pirates of the Caribbean: At World's End\", 'Spectre',\n", + " ..., 'Signed, Sealed, Delivered', 'Shanghai Calling',\n", + " 'My Date with Drew'], dtype=object), (4800,))" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "movies_list = df['title'].values\n", + "movies_list, movies_list.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Find Top Similar Movies for a Sample Movie\n", + "\n", + "Let's take __Minions__ the most popular movie the the dataframe above and try and find the most similar movies which can be recommended" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Find movie ID" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "546" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "movie_idx = np.where(movies_list == 'Minions')[0][0]\n", + "movie_idx" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Get movie similarities" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([0.0104544 , 0.01072835, 0. , ..., 0.00690954, 0. ,\n", + " 0. ])" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "movie_similarities = doc_sim_df.iloc[movie_idx].values\n", + "movie_similarities" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Get top 5 similar movie IDs" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([506, 614, 241, 813, 154], dtype=int64)" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "similar_movie_idxs = np.argsort(-movie_similarities)[1:6]\n", + "similar_movie_idxs" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Get top 5 similar movies" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Despicable Me 2', 'Despicable Me',\n", + " 'Teenage Mutant Ninja Turtles: Out of the Shadows', 'Superman',\n", + " 'Rise of the Guardians'], dtype=object)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "similar_movies = movies_list[similar_movie_idxs]\n", + "similar_movies" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build a movie recommender function to recommend top 5 similar movies for any movie \n", + "\n", + "The movie title, movie title list and document similarity matrix dataframe will be given as inputs to the function" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "def movie_recommender(movie_title, movies=movies_list, doc_sims=doc_sim_df):\n", + " # find movie id\n", + " movie_idx = np.where(movies == movie_title)[0][0]\n", + " # get movie similarities\n", + " movie_similarities = doc_sims.iloc[movie_idx].values\n", + " # get top 5 similar movie IDs\n", + " similar_movie_idxs = np.argsort(-movie_similarities)[1:6]\n", + " # get top 5 movies\n", + " similar_movies = movies[similar_movie_idxs]\n", + " # return the top 5 movies\n", + " return similar_movies" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Sort Dataset by Popular Movies" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titletaglineoverviewgenrespopularitydescription
546MinionsBefore Gru, they had a history of bad bossesMinions Stuart, Kevin and Bob are recruited by...[{\"id\": 10751, \"name\": \"Family\"}, {\"id\": 16, \"...875.581305Before Gru, they had a history of bad bosses M...
95InterstellarMankind was born on Earth. It was never meant ...Interstellar chronicles the adventures of a gr...[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 18, \"...724.247784Mankind was born on Earth. It was never meant ...
788DeadpoolWitness the beginning of a happy endingDeadpool tells the origin story of former Spec...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...514.569956Witness the beginning of a happy ending Deadpo...
94Guardians of the GalaxyAll heroes start somewhere.Light years from Earth, 26 years after being a...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 878, \"na...481.098624All heroes start somewhere. Light years from E...
127Mad Max: Fury RoadWhat a Lovely Day.An apocalyptic story set in the furthest reach...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...434.278564What a Lovely Day. An apocalyptic story set in...
\n", + "
" + ], + "text/plain": [ + " title \\\n", + "546 Minions \n", + "95 Interstellar \n", + "788 Deadpool \n", + "94 Guardians of the Galaxy \n", + "127 Mad Max: Fury Road \n", + "\n", + " tagline \\\n", + "546 Before Gru, they had a history of bad bosses \n", + "95 Mankind was born on Earth. It was never meant ... \n", + "788 Witness the beginning of a happy ending \n", + "94 All heroes start somewhere. \n", + "127 What a Lovely Day. \n", + "\n", + " overview \\\n", + "546 Minions Stuart, Kevin and Bob are recruited by... \n", + "95 Interstellar chronicles the adventures of a gr... \n", + "788 Deadpool tells the origin story of former Spec... \n", + "94 Light years from Earth, 26 years after being a... \n", + "127 An apocalyptic story set in the furthest reach... \n", + "\n", + " genres popularity \\\n", + "546 [{\"id\": 10751, \"name\": \"Family\"}, {\"id\": 16, \"... 875.581305 \n", + "95 [{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 18, \"... 724.247784 \n", + "788 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 514.569956 \n", + "94 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 878, \"na... 481.098624 \n", + "127 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 434.278564 \n", + "\n", + " description \n", + "546 Before Gru, they had a history of bad bosses M... \n", + "95 Mankind was born on Earth. It was never meant ... \n", + "788 Witness the beginning of a happy ending Deadpo... \n", + "94 All heroes start somewhere. Light years from E... \n", + "127 What a Lovely Day. An apocalyptic story set in... " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pop_movies = df.sort_values(by='popularity', ascending=False)\n", + "pop_movies.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "popular_movies = ['Minions', 'Interstellar', 'Deadpool', 'Jurassic World', 'Pirates of the Caribbean: The Curse of the Black Pearl',\n", + " 'Dawn of the Planet of the Apes', 'The Hunger Games: Mockingjay - Part 1', 'Terminator Genisys', \n", + " 'Captain America: Civil War', 'The Dark Knight', 'The Martian', 'Batman v Superman: Dawn of Justice', \n", + " 'Pulp Fiction', 'The Godfather', 'The Shawshank Redemption', 'The Lord of the Rings: The Fellowship of the Ring', \n", + " 'Harry Potter and the Chamber of Secrets', 'Star Wars', 'The Hobbit: The Battle of the Five Armies',\n", + " 'Iron Man']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Get Popular Movie Recommendations" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Movie: Minions\n", + "Top 5 recommended Movies: ['Despicable Me 2' 'Despicable Me'\n", + " 'Teenage Mutant Ninja Turtles: Out of the Shadows' 'Superman'\n", + " 'Rise of the Guardians']\n", + "\n", + "Movie: Interstellar\n", + "Top 5 recommended Movies: ['Gattaca' 'Space Pirate Captain Harlock' 'Space Cowboys'\n", + " 'Starship Troopers' 'Final Destination 2']\n", + "\n", + "Movie: Deadpool\n", + "Top 5 recommended Movies: ['Silent Trigger' 'Underworld: Evolution' 'Bronson' 'Shaft' 'Don Jon']\n", + "\n", + "Movie: Jurassic World\n", + "Top 5 recommended Movies: ['Jurassic Park' 'The Lost World: Jurassic Park' 'The Nut Job'\n", + " \"National Lampoon's Vacation\" 'Vacation']\n", + "\n", + "Movie: Pirates of the Caribbean: The Curse of the Black Pearl\n", + "Top 5 recommended Movies: [\"Pirates of the Caribbean: Dead Man's Chest\" 'The Pirate'\n", + " 'Pirates of the Caribbean: On Stranger Tides'\n", + " 'The Pirates! In an Adventure with Scientists!' 'Joyful Noise']\n", + "\n", + "Movie: Dawn of the Planet of the Apes\n", + "Top 5 recommended Movies: ['Battle for the Planet of the Apes' 'Groove' 'The Other End of the Line'\n", + " 'Chicago Overcoat' 'Definitely, Maybe']\n", + "\n", + "Movie: The Hunger Games: Mockingjay - Part 1\n", + "Top 5 recommended Movies: ['The Hunger Games: Catching Fire' 'The Hunger Games: Mockingjay - Part 2'\n", + " 'John Carter' 'For Greater Glory - The True Story of Cristiada'\n", + " 'The Proposition']\n", + "\n", + "Movie: Terminator Genisys\n", + "Top 5 recommended Movies: ['Terminator 2: Judgment Day' 'Terminator Salvation'\n", + " 'Terminator 3: Rise of the Machines' 'Mad Max'\n", + " 'X-Men: Days of Future Past']\n", + "\n", + "Movie: Captain America: Civil War\n", + "Top 5 recommended Movies: ['Captain America: The Winter Soldier' 'This Means War'\n", + " 'Avengers: Age of Ultron' 'Iron Man 2' 'Escape from Tomorrow']\n", + "\n", + "Movie: The Dark Knight\n", + "Top 5 recommended Movies: ['The Dark Knight Rises' 'Batman Forever' 'Batman Returns'\n", + " 'Batman: The Dark Knight Returns, Part 2' 'Slow Burn']\n", + "\n", + "Movie: The Martian\n", + "Top 5 recommended Movies: ['The Last Days on Mars' 'Swept Away' 'Alive' 'All Is Lost' 'Red Planet']\n", + "\n", + "Movie: Batman v Superman: Dawn of Justice\n", + "Top 5 recommended Movies: ['Batman Returns' 'The Punisher' 'Batman: The Dark Knight Returns, Part 2'\n", + " 'Defendor' 'Nowhere to Run']\n", + "\n", + "Movie: Pulp Fiction\n", + "Top 5 recommended Movies: ['Sliding Doors' 'You Kill Me' 'New York Stories' 'Timecrimes'\n", + " 'All or Nothing']\n", + "\n", + "Movie: The Godfather\n", + "Top 5 recommended Movies: ['The Godfather: Part II' 'Blood Ties' 'Made' 'Lords of London'\n", + " 'Mickey Blue Eyes']\n", + "\n", + "Movie: The Shawshank Redemption\n", + "Top 5 recommended Movies: ['Civil Brand' 'Les Misérables' 'The Chorus' 'Prison' 'Fortress']\n", + "\n", + "Movie: The Lord of the Rings: The Fellowship of the Ring\n", + "Top 5 recommended Movies: ['The Lord of the Rings: The Two Towers'\n", + " 'The Hobbit: The Desolation of Smaug'\n", + " 'The Lord of the Rings: The Return of the King'\n", + " \"What's the Worst That Could Happen?\" 'The Hobbit: An Unexpected Journey']\n", + "\n", + "Movie: Harry Potter and the Chamber of Secrets\n", + "Top 5 recommended Movies: ['Harry Potter and the Prisoner of Azkaban'\n", + " 'Harry Potter and the Goblet of Fire'\n", + " 'Harry Potter and the Order of the Phoenix'\n", + " 'Harry Potter and the Half-Blood Prince'\n", + " \"Harry Potter and the Philosopher's Stone\"]\n", + "\n", + "Movie: Star Wars\n", + "Top 5 recommended Movies: ['The Empire Strikes Back' 'Return of the Jedi' 'Shrek the Third'\n", + " 'The Ice Pirates' 'The Tale of Despereaux']\n", + "\n", + "Movie: The Hobbit: The Battle of the Five Armies\n", + "Top 5 recommended Movies: ['The Hobbit: The Desolation of Smaug' 'The Hobbit: An Unexpected Journey'\n", + " \"Dragon Nest: Warriors' Dawn\"\n", + " 'A Funny Thing Happened on the Way to the Forum' 'X-Men: Apocalypse']\n", + "\n", + "Movie: Iron Man\n", + "Top 5 recommended Movies: ['Iron Man 2' 'Avengers: Age of Ultron' 'Hostage' 'Iron Man 3'\n", + " 'Baahubali: The Beginning']\n", + "\n" + ] + } + ], + "source": [ + "for movie in popular_movies:\n", + " print('Movie:', movie)\n", + " print('Top 5 recommended Movies:', movie_recommender(movie_title=movie))\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# BM25 Similarity" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [], + "source": [ + "\"\"\"\n", + "Data:\n", + "-----\n", + ".. data:: PARAM_K1 - Free smoothing parameter for BM25.\n", + ".. data:: PARAM_B - Free smoothing parameter for BM25.\n", + ".. data:: EPSILON - Constant used for negative idf of document in corpus.\n", + "\"\"\"\n", + "\n", + "import math\n", + "from six import iteritems\n", + "from six.moves import xrange\n", + "\n", + "PARAM_K1 = 2.5\n", + "PARAM_B = 0.85\n", + "EPSILON = 0.2\n", + "\n", + "class BM25(object):\n", + " \"\"\"Implementation of Best Matching 25 ranking function.\n", + " Attributes\n", + " ----------\n", + " corpus_size : int\n", + " Size of corpus (number of documents).\n", + " avgdl : float\n", + " Average length of document in `corpus`.\n", + " corpus : list of list of str\n", + " Corpus of documents.\n", + " f : list of dicts of int\n", + " Dictionary with terms frequencies for each document in `corpus`. Words used as keys and frequencies as values.\n", + " df : dict\n", + " Dictionary with terms frequencies for whole `corpus`. Words used as keys and frequencies as values.\n", + " idf : dict\n", + " Dictionary with inversed terms frequencies for whole `corpus`. Words used as keys and frequencies as values.\n", + " doc_len : list of int\n", + " List of document lengths.\n", + " \"\"\"\n", + "\n", + " def __init__(self, corpus):\n", + " \"\"\"\n", + " Parameters\n", + " ----------\n", + " corpus : list of list of str\n", + " Given corpus.\n", + " \"\"\"\n", + " self.corpus_size = len(corpus)\n", + " self.avgdl = sum(float(len(x)) for x in corpus) / self.corpus_size\n", + " self.corpus = corpus\n", + " self.f = []\n", + " self.df = {}\n", + " self.idf = {}\n", + " self.doc_len = []\n", + " self.initialize()\n", + "\n", + " def initialize(self):\n", + " \"\"\"Calculates frequencies of terms in documents and in corpus. Also computes inverse document frequencies.\"\"\"\n", + " for document in self.corpus:\n", + " frequencies = {}\n", + " self.doc_len.append(len(document))\n", + " for word in document:\n", + " if word not in frequencies:\n", + " frequencies[word] = 0\n", + " frequencies[word] += 1\n", + " self.f.append(frequencies)\n", + "\n", + " for word, freq in iteritems(frequencies):\n", + " if word not in self.df:\n", + " self.df[word] = 0\n", + " self.df[word] += 1\n", + "\n", + " for word, freq in iteritems(self.df):\n", + " self.idf[word] = math.log(self.corpus_size - freq + 0.5) - math.log(freq + 0.5)\n", + "\n", + " def get_score(self, document, index, average_idf):\n", + " \"\"\"Computes BM25 score of given `document` in relation to item of corpus selected by `index`.\n", + " Parameters\n", + " ----------\n", + " document : list of str\n", + " Document to be scored.\n", + " index : int\n", + " Index of document in corpus selected to score with `document`.\n", + " average_idf : float\n", + " Average idf in corpus.\n", + " Returns\n", + " -------\n", + " float\n", + " BM25 score.\n", + " \"\"\"\n", + " score = 0\n", + " for word in document:\n", + " if word not in self.f[index]:\n", + " continue\n", + " idf = self.idf[word] if self.idf[word] >= 0 else EPSILON * average_idf\n", + " score += (idf * self.f[index][word] * (PARAM_K1 + 1)\n", + " / (self.f[index][word] + PARAM_K1 * (1 - PARAM_B + PARAM_B * self.doc_len[index] / self.avgdl)))\n", + " return score\n", + "\n", + " def get_scores(self, document, average_idf):\n", + " \"\"\"Computes and returns BM25 scores of given `document` in relation to\n", + " every item in corpus.\n", + " Parameters\n", + " ----------\n", + " document : list of str\n", + " Document to be scored.\n", + " average_idf : float\n", + " Average idf in corpus.\n", + " Returns\n", + " -------\n", + " list of float\n", + " BM25 scores.\n", + " \"\"\"\n", + " scores = []\n", + " for index in xrange(self.corpus_size):\n", + " score = self.get_score(document, index, average_idf)\n", + " scores.append(score)\n", + " return scores\n", + "\n", + "\n", + "def get_bm25_weights(corpus):\n", + " \"\"\"Returns BM25 scores (weights) of documents in corpus.\n", + " Each document has to be weighted with every document in given corpus.\n", + " Parameters\n", + " ----------\n", + " corpus : list of list of str\n", + " Corpus of documents.\n", + " Returns\n", + " -------\n", + " list of list of float\n", + " BM25 scores.\n", + " Examples\n", + " --------\n", + " >>> from gensim.summarization.bm25 import get_bm25_weights\n", + " >>> corpus = [\n", + " ... [\"black\", \"cat\", \"white\", \"cat\"],\n", + " ... [\"cat\", \"outer\", \"space\"],\n", + " ... [\"wag\", \"dog\"]\n", + " ... ]\n", + " >>> result = get_bm25_weights(corpus)\n", + " \"\"\"\n", + " bm25 = BM25(corpus)\n", + " average_idf = sum(float(val) for val in bm25.idf.values()) / len(bm25.idf)\n", + "\n", + " weights = []\n", + " for doc in corpus:\n", + " scores = bm25.get_scores(doc, average_idf)\n", + " weights.append(scores)\n", + "\n", + " return weights" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([list(['enter', 'world', 'pandora', '22nd', 'century', 'paraplegic', 'marine', 'dispatched', 'moon', 'pandora', 'unique', 'mission', 'becomes', 'torn', 'following', 'orders', 'protecting', 'alien', 'civilization']),\n", + " list(['end', 'world', 'adventure', 'begins', 'captain', 'barbossa', 'long', 'believed', 'dead', 'come', 'back', 'life', 'headed', 'edge', 'earth', 'turner', 'elizabeth', 'swann', 'nothing', 'quite', 'seems']),\n", + " list(['plan', 'one', 'escapes', 'cryptic', 'message', 'bonds', 'past', 'sends', 'trail', 'uncover', 'sinister', 'organization', 'battles', 'political', 'forces', 'keep', 'secret', 'service', 'alive', 'bond', 'peels', 'back', 'layers', 'deceit', 'reveal', 'terrible', 'truth', 'behind', 'spectre'])],\n", + " dtype=object)" + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "norm_corpus_tokens = np.array([nltk.word_tokenize(doc) for doc in norm_corpus])\n", + "norm_corpus_tokens[:3]" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wall time: 2min 28s\n" + ] + } + ], + "source": [ + "%%time\n", + "wts = get_bm25_weights(norm_corpus_tokens)" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...4790479147924793479447954796479747984799
0149.0606472.5292270.0000003.6924765.7652054.7158670.0000004.5051930.0000001.750501...2.5898650.03.3101845.061290.0000000.0000000.01.6192990.0000000.000000
12.653483119.9034902.7201990.0000007.2973720.0000002.4966505.7747635.8708721.750501...2.5898650.01.0111850.000000.0000002.7258880.04.5322922.9240230.000000
20.0000003.229716153.7564700.0000000.0000000.0000000.0000004.5387404.3782621.399834...9.0880090.00.0000000.000003.2535470.0000000.02.8031160.0000001.377511
36.1414190.0000000.000000214.2772483.1824210.0000005.4332096.8395247.44583718.496688...0.0000000.02.7184500.000000.0000000.0000000.08.0379136.9580007.156812
49.18683110.7910340.0000002.665414184.7784860.0000005.1681037.2782040.0000006.643382...5.1797310.00.0000000.000000.0000002.9966970.03.2385990.0000000.000000
\n", + "

5 rows × 4800 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 \\\n", + "0 149.060647 2.529227 0.000000 3.692476 5.765205 4.715867 \n", + "1 2.653483 119.903490 2.720199 0.000000 7.297372 0.000000 \n", + "2 0.000000 3.229716 153.756470 0.000000 0.000000 0.000000 \n", + "3 6.141419 0.000000 0.000000 214.277248 3.182421 0.000000 \n", + "4 9.186831 10.791034 0.000000 2.665414 184.778486 0.000000 \n", + "\n", + " 6 7 8 9 ... 4790 4791 \\\n", + "0 0.000000 4.505193 0.000000 1.750501 ... 2.589865 0.0 \n", + "1 2.496650 5.774763 5.870872 1.750501 ... 2.589865 0.0 \n", + "2 0.000000 4.538740 4.378262 1.399834 ... 9.088009 0.0 \n", + "3 5.433209 6.839524 7.445837 18.496688 ... 0.000000 0.0 \n", + "4 5.168103 7.278204 0.000000 6.643382 ... 5.179731 0.0 \n", + "\n", + " 4792 4793 4794 4795 4796 4797 4798 4799 \n", + "0 3.310184 5.06129 0.000000 0.000000 0.0 1.619299 0.000000 0.000000 \n", + "1 1.011185 0.00000 0.000000 2.725888 0.0 4.532292 2.924023 0.000000 \n", + "2 0.000000 0.00000 3.253547 0.000000 0.0 2.803116 0.000000 1.377511 \n", + "3 2.718450 0.00000 0.000000 0.000000 0.0 8.037913 6.958000 7.156812 \n", + "4 0.000000 0.00000 0.000000 2.996697 0.0 3.238599 0.000000 0.000000 \n", + "\n", + "[5 rows x 4800 columns]" + ] + }, + "execution_count": 108, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "bm25_wts_df = pd.DataFrame(wts)\n", + "bm25_wts_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 139, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Movie: Minions\n", + "Top 5 recommended Movies: ['Despicable Me 2' 'Despicable Me'\n", + " 'Teenage Mutant Ninja Turtles: Out of the Shadows' 'Intolerance'\n", + " 'Superman']\n", + "\n", + "Movie: Interstellar\n", + "Top 5 recommended Movies: ['Space Pirate Captain Harlock' 'Prometheus' 'Starship Troopers' 'Gattaca'\n", + " 'Space Cowboys']\n", + "\n", + "Movie: Deadpool\n", + "Top 5 recommended Movies: ['Underworld: Evolution' 'Shaft' 'Rabbit Hole' 'X-Men Origins: Wolverine'\n", + " 'Victor Frankenstein']\n", + "\n", + "Movie: Jurassic World\n", + "Top 5 recommended Movies: ['Jurassic Park' 'The Lost World: Jurassic Park'\n", + " \"National Lampoon's Vacation\" 'The Nut Job' 'Meet the Deedles']\n", + "\n", + "Movie: Pirates of the Caribbean: The Curse of the Black Pearl\n", + "Top 5 recommended Movies: ['Pirates of the Caribbean: On Stranger Tides'\n", + " \"Pirates of the Caribbean: Dead Man's Chest\" 'The Pirate'\n", + " 'Space Pirate Captain Harlock' 'Joyful Noise']\n", + "\n", + "Movie: Dawn of the Planet of the Apes\n", + "Top 5 recommended Movies: ['Battle for the Planet of the Apes' 'Groove'\n", + " 'Conquest of the Planet of the Apes' 'The Other End of the Line'\n", + " 'Inside Out']\n", + "\n", + "Movie: The Hunger Games: Mockingjay - Part 1\n", + "Top 5 recommended Movies: ['The Hunger Games: Catching Fire' 'The Hunger Games: Mockingjay - Part 2'\n", + " 'Bananas' 'Out of Inferno' 'Circumstance']\n", + "\n", + "Movie: Terminator Genisys\n", + "Top 5 recommended Movies: ['Terminator 2: Judgment Day' 'Terminator Salvation'\n", + " 'X-Men: Days of Future Past' 'Sound of My Voice' 'The Love Letter']\n", + "\n", + "Movie: Captain America: Civil War\n", + "Top 5 recommended Movies: ['Avengers: Age of Ultron' 'Captain America: The Winter Soldier'\n", + " 'Star Trek: Insurrection' 'This Means War' 'The Time Machine']\n", + "\n", + "Movie: The Dark Knight\n", + "Top 5 recommended Movies: ['The Dark Knight Rises' 'Batman: The Dark Knight Returns, Part 2'\n", + " 'Batman Returns' 'Batman Forever' 'Batman Begins']\n", + "\n", + "Movie: The Martian\n", + "Top 5 recommended Movies: ['Red Planet' 'Alien' 'Planet of the Apes' 'Alive' 'Mission to Mars']\n", + "\n", + "Movie: Batman v Superman: Dawn of Justice\n", + "Top 5 recommended Movies: ['Defendor' 'Batman: The Dark Knight Returns, Part 2' 'The Dark Knight'\n", + " 'Thor' 'Observe and Report']\n", + "\n", + "Movie: Pulp Fiction\n", + "Top 5 recommended Movies: ['All or Nothing' 'Sliding Doors' 'Timecrimes' 'Locker 13' '2046']\n", + "\n", + "Movie: The Godfather\n", + "Top 5 recommended Movies: ['The Godfather: Part II' 'Blood Ties' 'The Godfather: Part III'\n", + " 'Road to Perdition' 'Made']\n", + "\n", + "Movie: The Shawshank Redemption\n", + "Top 5 recommended Movies: ['Civil Brand' 'Les Misérables' 'The Chorus' 'Prison' 'Escape Plan']\n", + "\n", + "Movie: The Lord of the Rings: The Fellowship of the Ring\n", + "Top 5 recommended Movies: ['The Lord of the Rings: The Two Towers'\n", + " 'The Lord of the Rings: The Return of the King'\n", + " 'The Hobbit: The Desolation of Smaug' 'The Hobbit: An Unexpected Journey'\n", + " \"What's the Worst That Could Happen?\"]\n", + "\n", + "Movie: Harry Potter and the Chamber of Secrets\n", + "Top 5 recommended Movies: ['Harry Potter and the Goblet of Fire'\n", + " 'Harry Potter and the Prisoner of Azkaban'\n", + " 'Harry Potter and the Half-Blood Prince'\n", + " 'Harry Potter and the Order of the Phoenix'\n", + " \"Harry Potter and the Philosopher's Stone\"]\n", + "\n", + "Movie: Star Wars\n", + "Top 5 recommended Movies: ['The Empire Strikes Back' 'Return of the Jedi' 'Shanghai Noon'\n", + " 'The Ice Pirates' 'The Tale of Despereaux']\n", + "\n", + "Movie: The Hobbit: The Battle of the Five Armies\n", + "Top 5 recommended Movies: ['The Hobbit: The Desolation of Smaug' 'The Hobbit: An Unexpected Journey'\n", + " \"Dragon Nest: Warriors' Dawn\" 'Harry Potter and the Order of the Phoenix'\n", + " '300: Rise of an Empire']\n", + "\n", + "Movie: Iron Man\n", + "Top 5 recommended Movies: ['Iron Man 2' 'Avengers: Age of Ultron' 'Iron Man 3' 'Batman Begins'\n", + " 'Street Fighter']\n", + "\n" + ] + } + ], + "source": [ + "for movie in popular_movies:\n", + " print('Movie:', movie)\n", + " print('Top 5 recommended Movies:', movie_recommender(movie_title=movie, doc_sims=bm25_wts_df))\n", + " print()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07c - Document Clustering.ipynb b/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07c - Document Clustering.ipynb new file mode 100644 index 0000000..6254d44 --- /dev/null +++ b/New-Second-Edition/Ch07 - Text Similarity and Clustering/Ch07c - Document Clustering.ipynb @@ -0,0 +1,1033 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Understanding Document Clustering\n", + "\n", + "Clustering is one of the most important Unsupervised Machine Learning Techniques. These algorithms come in handy, especially in situations where labelled data is a luxury. Clustering techniques help us understand the underlying patterns in data (more so around them being similar) along with the ability to bootstrap certain supervised learning approaches as well.\n", + "\n", + "![](avengers.jpg)\n", + "\n", + "Clustering techniques have been studied in depth over the years and there are some very powerful clustering algorithms available. For this tutorial, we will be working with a movie dataset containing movie plot, cast, genres and related other information. We will be working with __K-Means__ and __Ward-Hierarchical-Clustering__ methods." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load Dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 4803 entries, 0 to 4802\n", + "Data columns (total 20 columns):\n", + "budget 4803 non-null int64\n", + "genres 4803 non-null object\n", + "homepage 1712 non-null object\n", + "id 4803 non-null int64\n", + "keywords 4803 non-null object\n", + "original_language 4803 non-null object\n", + "original_title 4803 non-null object\n", + "overview 4800 non-null object\n", + "popularity 4803 non-null float64\n", + "production_companies 4803 non-null object\n", + "production_countries 4803 non-null object\n", + "release_date 4802 non-null object\n", + "revenue 4803 non-null int64\n", + "runtime 4801 non-null float64\n", + "spoken_languages 4803 non-null object\n", + "status 4803 non-null object\n", + "tagline 3959 non-null object\n", + "title 4803 non-null object\n", + "vote_average 4803 non-null float64\n", + "vote_count 4803 non-null int64\n", + "dtypes: float64(3), int64(4), object(13)\n", + "memory usage: 750.5+ KB\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "df = pd.read_csv('tmdb_5000_movies.csv.gz', \n", + " compression='gzip')\n", + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
budgetgenreshomepageidkeywordsoriginal_languageoriginal_titleoverviewpopularityproduction_companiesproduction_countriesrelease_daterevenueruntimespoken_languagesstatustaglinetitlevote_averagevote_count
0237000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...http://www.avatarmovie.com/19995[{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":...enAvatarIn the 22nd century, a paraplegic Marine is di...150.437577[{\"name\": \"Ingenious Film Partners\", \"id\": 289...[{\"iso_3166_1\": \"US\", \"name\": \"United States o...2009-12-102787965087162.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso...ReleasedEnter the World of Pandora.Avatar7.211800
1300000000[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"...http://disney.go.com/disneypictures/pirates/285[{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na...enPirates of the Caribbean: At World's EndCaptain Barbossa, long believed to be dead, ha...139.082615[{\"name\": \"Walt Disney Pictures\", \"id\": 2}, {\"...[{\"iso_3166_1\": \"US\", \"name\": \"United States o...2007-05-19961000000169.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedAt the end of the world, the adventure begins.Pirates of the Caribbean: At World's End6.94500
2245000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...http://www.sonypictures.com/movies/spectre/206647[{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name...enSpectreA cryptic message from Bond’s past sends him o...107.376788[{\"name\": \"Columbia Pictures\", \"id\": 5}, {\"nam...[{\"iso_3166_1\": \"GB\", \"name\": \"United Kingdom\"...2015-10-26880674609148.0[{\"iso_639_1\": \"fr\", \"name\": \"Fran\\u00e7ais\"},...ReleasedA Plan No One EscapesSpectre6.34466
3250000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam...http://www.thedarkknightrises.com/49026[{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,...enThe Dark Knight RisesFollowing the death of District Attorney Harve...112.312950[{\"name\": \"Legendary Pictures\", \"id\": 923}, {\"...[{\"iso_3166_1\": \"US\", \"name\": \"United States o...2012-07-161084939099165.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedThe Legend EndsThe Dark Knight Rises7.69106
4260000000[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...http://movies.disney.com/john-carter49529[{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":...enJohn CarterJohn Carter is a war-weary, former military ca...43.926995[{\"name\": \"Walt Disney Pictures\", \"id\": 2}][{\"iso_3166_1\": \"US\", \"name\": \"United States o...2012-03-07284139100132.0[{\"iso_639_1\": \"en\", \"name\": \"English\"}]ReleasedLost in our world, found in another.John Carter6.12124
\n", + "
" + ], + "text/plain": [ + " budget genres \\\n", + "0 237000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... \n", + "1 300000000 [{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"... \n", + "2 245000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... \n", + "3 250000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... \n", + "4 260000000 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... \n", + "\n", + " homepage id \\\n", + "0 http://www.avatarmovie.com/ 19995 \n", + "1 http://disney.go.com/disneypictures/pirates/ 285 \n", + "2 http://www.sonypictures.com/movies/spectre/ 206647 \n", + "3 http://www.thedarkknightrises.com/ 49026 \n", + "4 http://movies.disney.com/john-carter 49529 \n", + "\n", + " keywords original_language \\\n", + "0 [{\"id\": 1463, \"name\": \"culture clash\"}, {\"id\":... en \n", + "1 [{\"id\": 270, \"name\": \"ocean\"}, {\"id\": 726, \"na... en \n", + "2 [{\"id\": 470, \"name\": \"spy\"}, {\"id\": 818, \"name... en \n", + "3 [{\"id\": 849, \"name\": \"dc comics\"}, {\"id\": 853,... en \n", + "4 [{\"id\": 818, \"name\": \"based on novel\"}, {\"id\":... en \n", + "\n", + " original_title \\\n", + "0 Avatar \n", + "1 Pirates of the Caribbean: At World's End \n", + "2 Spectre \n", + "3 The Dark Knight Rises \n", + "4 John Carter \n", + "\n", + " overview popularity \\\n", + "0 In the 22nd century, a paraplegic Marine is di... 150.437577 \n", + "1 Captain Barbossa, long believed to be dead, ha... 139.082615 \n", + "2 A cryptic message from Bond’s past sends him o... 107.376788 \n", + "3 Following the death of District Attorney Harve... 112.312950 \n", + "4 John Carter is a war-weary, former military ca... 43.926995 \n", + "\n", + " production_companies \\\n", + "0 [{\"name\": \"Ingenious Film Partners\", \"id\": 289... \n", + "1 [{\"name\": \"Walt Disney Pictures\", \"id\": 2}, {\"... \n", + "2 [{\"name\": \"Columbia Pictures\", \"id\": 5}, {\"nam... \n", + "3 [{\"name\": \"Legendary Pictures\", \"id\": 923}, {\"... \n", + "4 [{\"name\": \"Walt Disney Pictures\", \"id\": 2}] \n", + "\n", + " production_countries release_date revenue \\\n", + "0 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2009-12-10 2787965087 \n", + "1 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2007-05-19 961000000 \n", + "2 [{\"iso_3166_1\": \"GB\", \"name\": \"United Kingdom\"... 2015-10-26 880674609 \n", + "3 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2012-07-16 1084939099 \n", + "4 [{\"iso_3166_1\": \"US\", \"name\": \"United States o... 2012-03-07 284139100 \n", + "\n", + " runtime spoken_languages status \\\n", + "0 162.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}, {\"iso... Released \n", + "1 169.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", + "2 148.0 [{\"iso_639_1\": \"fr\", \"name\": \"Fran\\u00e7ais\"},... Released \n", + "3 165.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", + "4 132.0 [{\"iso_639_1\": \"en\", \"name\": \"English\"}] Released \n", + "\n", + " tagline \\\n", + "0 Enter the World of Pandora. \n", + "1 At the end of the world, the adventure begins. \n", + "2 A Plan No One Escapes \n", + "3 The Legend Ends \n", + "4 Lost in our world, found in another. \n", + "\n", + " title vote_average vote_count \n", + "0 Avatar 7.2 11800 \n", + "1 Pirates of the Caribbean: At World's End 6.9 4500 \n", + "2 Spectre 6.3 4466 \n", + "3 The Dark Knight Rises 7.6 9106 \n", + "4 John Carter 6.1 2124 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Int64Index: 4800 entries, 0 to 4802\n", + "Data columns (total 6 columns):\n", + "title 4800 non-null object\n", + "tagline 4800 non-null object\n", + "overview 4800 non-null object\n", + "genres 4800 non-null object\n", + "popularity 4800 non-null float64\n", + "description 4800 non-null object\n", + "dtypes: float64(1), object(5)\n", + "memory usage: 262.5+ KB\n" + ] + } + ], + "source": [ + "df = df[['title', 'tagline', 'overview', 'genres', 'popularity']]\n", + "df.tagline.fillna('', inplace=True)\n", + "df['description'] = df['tagline'].map(str) + ' ' + df['overview']\n", + "df.dropna(inplace=True)\n", + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
titletaglineoverviewgenrespopularitydescription
0AvatarEnter the World of Pandora.In the 22nd century, a paraplegic Marine is di...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...150.437577Enter the World of Pandora. In the 22nd centur...
1Pirates of the Caribbean: At World's EndAt the end of the world, the adventure begins.Captain Barbossa, long believed to be dead, ha...[{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"...139.082615At the end of the world, the adventure begins....
2SpectreA Plan No One EscapesA cryptic message from Bond’s past sends him o...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...107.376788A Plan No One Escapes A cryptic message from B...
3The Dark Knight RisesThe Legend EndsFollowing the death of District Attorney Harve...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam...112.312950The Legend Ends Following the death of Distric...
4John CarterLost in our world, found in another.John Carter is a war-weary, former military ca...[{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam...43.926995Lost in our world, found in another. John Cart...
\n", + "
" + ], + "text/plain": [ + " title \\\n", + "0 Avatar \n", + "1 Pirates of the Caribbean: At World's End \n", + "2 Spectre \n", + "3 The Dark Knight Rises \n", + "4 John Carter \n", + "\n", + " tagline \\\n", + "0 Enter the World of Pandora. \n", + "1 At the end of the world, the adventure begins. \n", + "2 A Plan No One Escapes \n", + "3 The Legend Ends \n", + "4 Lost in our world, found in another. \n", + "\n", + " overview \\\n", + "0 In the 22nd century, a paraplegic Marine is di... \n", + "1 Captain Barbossa, long believed to be dead, ha... \n", + "2 A cryptic message from Bond’s past sends him o... \n", + "3 Following the death of District Attorney Harve... \n", + "4 John Carter is a war-weary, former military ca... \n", + "\n", + " genres popularity \\\n", + "0 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 150.437577 \n", + "1 [{\"id\": 12, \"name\": \"Adventure\"}, {\"id\": 14, \"... 139.082615 \n", + "2 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 107.376788 \n", + "3 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 80, \"nam... 112.312950 \n", + "4 [{\"id\": 28, \"name\": \"Action\"}, {\"id\": 12, \"nam... 43.926995 \n", + "\n", + " description \n", + "0 Enter the World of Pandora. In the 22nd centur... \n", + "1 At the end of the world, the adventure begins.... \n", + "2 A Plan No One Escapes A cryptic message from B... \n", + "3 The Legend Ends Following the death of Distric... \n", + "4 Lost in our world, found in another. John Cart... " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Your Turn: Cluster Similar Movies\n", + "\n", + "Here you will learn how to cluster text documents (in this case movies). We will use the following pipeline:\n", + "- Text pre-processing\n", + "- Feature Engineering\n", + "- Clustering Using K-Means\n", + "- Finding Optimal Value for K\n", + "- Prepare Movie Clusters\n", + "\n", + "Clustering is an unsupervised approach to find groups of similar items in any given dataset. There are different clustering algorithms and __K-Means__ is a pretty simple yet affect one. Most movies span different emotions and can be categorized into multiple genres (same is the case with movies listed in our current dataset). Can clustering of movie descriptions help us understand these groupings?\n", + "\n", + "Similarity analysis (in the previous section) was a good starting point, but can we do better? " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Text pre-processing\n", + "\n", + "We will do some basic text pre-processing on our movie descriptions before we build our features" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4800" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import nltk\n", + "import re\n", + "import numpy as np\n", + "\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "\n", + "def normalize_document(doc):\n", + " # lower case and remove special characters\\whitespaces\n", + " doc = re.sub(r'[^a-zA-Z0-9\\s]', '', doc, re.I|re.A)\n", + " doc = doc.lower()\n", + " doc = doc.strip()\n", + " # tokenize document\n", + " tokens = nltk.word_tokenize(doc)\n", + " # filter stopwords out of document\n", + " filtered_tokens = [token for token in tokens if token not in stop_words]\n", + " # re-create document from filtered tokens\n", + " doc = ' '.join(filtered_tokens)\n", + " return doc\n", + "\n", + "normalize_corpus = np.vectorize(normalize_document)\n", + "\n", + "norm_corpus = normalize_corpus(list(df['description']))\n", + "len(norm_corpus)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Extract TF-IDF Features" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(4800, 3012)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "stop_words = stop_words + ['one', 'two', 'get']\n", + "cv = CountVectorizer(ngram_range=(1, 2), min_df=10, max_df=0.8, stop_words=stop_words)\n", + "cv_matrix = cv.fit_transform(norm_corpus)\n", + "cv_matrix.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Cluster Movies using K-Means" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "KMeans(algorithm='auto', copy_x=True, init='k-means++', max_iter=10000,\n", + " n_clusters=6, n_init=50, n_jobs=None, precompute_distances='auto',\n", + " random_state=42, tol=0.0001, verbose=0)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.cluster import KMeans\n", + "\n", + "NUM_CLUSTERS = 6\n", + "km = KMeans(n_clusters=NUM_CLUSTERS, max_iter=10000, n_init=50, random_state=42).fit(cv_matrix)\n", + "km" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Counter({2: 429, 1: 2832, 3: 539, 5: 238, 4: 706, 0: 56})" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from collections import Counter\n", + "\n", + "Counter(km.labels_)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "df['kmeans_cluster'] = km.labels_" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "movie_clusters = (df[['title', 'kmeans_cluster', 'popularity']]\n", + " .sort_values(by=['kmeans_cluster', 'popularity'], \n", + " ascending=False)\n", + " .groupby('kmeans_cluster').head(20))\n", + "movie_clusters = movie_clusters.copy(deep=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CLUSTER #1\n", + "Key Features: ['film', 'movie', 'story', 'first', 'love', 'making', 'director', 'new', 'time', 'feature', 'made', 'young', '3d', 'american', 'america']\n", + "Popular Movies: ['Contact', 'Snatch', 'The Pianist', 'Boyhood', 'Tropic Thunder', 'Movie 43', 'Night of the Living Dead', 'Almost Famous', 'My Week with Marilyn', 'Jackass 3D', 'Inside Job', 'Grindhouse', 'The Young Victoria', 'Disaster Movie', 'Jersey Boys', 'Seed of Chucky', 'Bowling for Columbine', 'Walking With Dinosaurs', 'Me and You and Everyone We Know', 'Urban Legends: Final Cut']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #2\n", + "Key Features: ['young', 'man', 'story', 'love', 'family', 'find', 'must', 'time', 'back', 'friends', 'way', 'years', 'help', 'father', 'take']\n", + "Popular Movies: ['Interstellar', 'Guardians of the Galaxy', 'Pirates of the Caribbean: The Curse of the Black Pearl', 'Dawn of the Planet of the Apes', 'The Hunger Games: Mockingjay - Part 1', 'Big Hero 6', 'Whiplash', 'The Martian', 'Frozen', \"Pirates of the Caribbean: Dead Man's Chest\", 'Gone Girl', 'X-Men: Apocalypse', 'Rise of the Planet of the Apes', 'The Lord of the Rings: The Fellowship of the Ring', 'Pirates of the Caribbean: On Stranger Tides', \"One Flew Over the Cuckoo's Nest\", 'Star Wars', 'Brave', 'The Lord of the Rings: The Return of the King', 'Pulp Fiction']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #3\n", + "Key Features: ['world', 'young', 'find', 'story', 'man', 'new', 'must', 'save', 'way', 'time', 'life', 'evil', 'love', 'family', 'finds']\n", + "Popular Movies: ['Minions', 'Jurassic World', 'Captain America: Civil War', 'Avatar', 'The Avengers', \"Pirates of the Caribbean: At World's End\", 'The Maze Runner', 'Tomorrowland', 'Ant-Man', 'Spirited Away', 'Chappie', 'Monsters, Inc.', 'The Matrix', 'Man of Steel', 'Skyfall', 'The Adventures of Tintin', 'Nightcrawler', 'Allegiant', 'V for Vendetta', 'Penguins of Madagascar']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #4\n", + "Key Features: ['new', 'york', 'new york', 'city', 'young', 'family', 'love', 'man', 'york city', 'find', 'friends', 'years', 'home', 'must', 'story']\n", + "Popular Movies: ['Terminator Genisys', 'Fight Club', 'Teenage Mutant Ninja Turtles', 'Pixels', 'Despicable Me 2', 'Avengers: Age of Ultron', 'Night at the Museum: Secret of the Tomb', 'Batman Begins', 'The Dark Knight Rises', 'The Lord of the Rings: The Two Towers', 'The Godfather: Part II', 'How to Train Your Dragon 2', '12 Years a Slave', 'The Wolf of Wall Street', 'Men in Black II', \"Pan's Labyrinth\", 'The Bourne Legacy', 'The Amazing Spider-Man 2', 'The Devil Wears Prada', 'Non-Stop']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #5\n", + "Key Features: ['life', 'love', 'man', 'family', 'story', 'young', 'new', 'back', 'years', 'finds', 'hes', 'time', 'find', 'way', 'father']\n", + "Popular Movies: ['Deadpool', 'Mad Max: Fury Road', 'Inception', 'The Godfather', 'Forrest Gump', 'The Shawshank Redemption', 'Harry Potter and the Chamber of Secrets', 'Inside Out', 'Twilight', 'Maleficent', \"Harry Potter and the Philosopher's Stone\", 'Bruce Almighty', 'The Hobbit: An Unexpected Journey', 'The Twilight Saga: Eclipse', 'Titanic', 'Fifty Shades of Grey', 'Blade Runner', 'Psycho', 'Up', 'The Lion King']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #6\n", + "Key Features: ['war', 'world', 'world war', 'ii', 'war ii', 'story', 'young', 'man', 'love', 'army', 'find', 'american', 'battle', 'first', 'must']\n", + "Popular Movies: ['The Dark Knight', 'Batman v Superman: Dawn of Justice', 'The Imitation Game', 'Fury', 'The Hunger Games: Mockingjay - Part 2', 'X-Men: Days of Future Past', 'Transformers: Age of Extinction', \"Schindler's List\", 'The Good, the Bad and the Ugly', 'American Sniper', 'Thor', 'Shutter Island', 'Underworld', 'Indiana Jones and the Kingdom of the Crystal Skull', 'Captain America: The First Avenger', 'The Matrix Revolutions', 'Inglourious Basterds', '300: Rise of an Empire', 'The Matrix Reloaded', 'Oblivion']\n", + "--------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "feature_names = cv.get_feature_names()\n", + "topn_features = 15\n", + "ordered_centroids = km.cluster_centers_.argsort()[:, ::-1]\n", + "\n", + "# get key features for each cluster\n", + "# get movies belonging to each cluster\n", + "for cluster_num in range(NUM_CLUSTERS):\n", + " key_features = [feature_names[index] \n", + " for index in ordered_centroids[cluster_num, :topn_features]]\n", + " movies = movie_clusters[movie_clusters['kmeans_cluster'] == cluster_num]['title'].values.tolist()\n", + " print('CLUSTER #'+str(cluster_num+1))\n", + " print('Key Features:', key_features)\n", + " print('Popular Movies:', movies)\n", + " print('-'*80)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Counter({4: 427, 3: 724, 1: 1913, 2: 504, 0: 879, 5: 353})" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.metrics.pairwise import cosine_similarity\n", + "\n", + "cosine_sim_features = cosine_similarity(cv_matrix)\n", + "km = KMeans(n_clusters=NUM_CLUSTERS, max_iter=10000, n_init=50, random_state=42).fit(cosine_sim_features)\n", + "Counter(km.labels_)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CLUSTER #1\n", + "Popular Movies: ['Pirates of the Caribbean: The Curse of the Black Pearl', 'Whiplash', 'The Martian', 'Frozen', 'Gone Girl', 'The Lord of the Rings: The Fellowship of the Ring', 'Pirates of the Caribbean: On Stranger Tides', 'Pulp Fiction', 'The Fifth Element', 'Quantum of Solace', 'Furious 7', 'Cinderella', 'Man of Steel', 'Gladiator', 'Aladdin', 'The Amazing Spider-Man', 'Prisoners', 'The Good, the Bad and the Ugly', 'American Sniper', 'Finding Nemo']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #2\n", + "Popular Movies: ['Interstellar', 'Guardians of the Galaxy', 'Dawn of the Planet of the Apes', 'The Hunger Games: Mockingjay - Part 1', 'Big Hero 6', 'The Dark Knight', \"Pirates of the Caribbean: Dead Man's Chest\", 'X-Men: Apocalypse', 'Rise of the Planet of the Apes', \"One Flew Over the Cuckoo's Nest\", 'The Hunger Games: Mockingjay - Part 2', 'Star Wars', 'Brave', 'The Lord of the Rings: The Return of the King', 'The Hobbit: The Battle of the Five Armies', 'Iron Man', 'X-Men: Days of Future Past', 'Transformers: Age of Extinction', 'Spider-Man 3', 'Lucy']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #3\n", + "Popular Movies: ['Terminator Genisys', 'Fight Club', 'Teenage Mutant Ninja Turtles', 'Pixels', 'Despicable Me 2', 'Avengers: Age of Ultron', 'Night at the Museum: Secret of the Tomb', 'Batman Begins', 'The Dark Knight Rises', 'The Lord of the Rings: The Two Towers', 'The Godfather: Part II', 'How to Train Your Dragon 2', '12 Years a Slave', 'The Wolf of Wall Street', 'Men in Black II', \"Pan's Labyrinth\", 'The Bourne Legacy', 'The Amazing Spider-Man 2', 'The Devil Wears Prada', 'Non-Stop']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #4\n", + "Popular Movies: ['Deadpool', 'Mad Max: Fury Road', 'Inception', 'The Godfather', \"Pirates of the Caribbean: At World's End\", 'Forrest Gump', 'The Shawshank Redemption', 'Harry Potter and the Chamber of Secrets', 'Inside Out', 'Twilight', 'Maleficent', \"Harry Potter and the Philosopher's Stone\", 'Bruce Almighty', 'The Hobbit: An Unexpected Journey', 'The Twilight Saga: Eclipse', 'Fifty Shades of Grey', 'Blade Runner', 'Psycho', 'Up', 'The Lion King']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #5\n", + "Popular Movies: ['Minions', 'Jurassic World', 'Captain America: Civil War', 'Batman v Superman: Dawn of Justice', 'Avatar', 'The Avengers', 'Fury', 'The Maze Runner', 'Tomorrowland', 'Ant-Man', 'Spirited Away', 'Chappie', 'Monsters, Inc.', \"Schindler's List\", 'The Matrix', 'Skyfall', 'The Adventures of Tintin', 'Nightcrawler', 'Thor', 'Allegiant']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #6\n", + "Popular Movies: ['The Imitation Game', 'Titanic', 'The Pursuit of Happyness', 'The Prestige', 'The Grand Budapest Hotel', 'The Fault in Our Stars', 'Catch Me If You Can', 'Cloud Atlas', 'The Conjuring 2', 'Apollo 13', 'Aliens', 'The Usual Suspects', 'GoodFellas', 'The Princess and the Frog', 'The Theory of Everything', \"The Huntsman: Winter's War\", 'Mary Poppins', 'The Lego Movie', 'Starship Troopers', 'The Big Short']\n", + "--------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "df['kmeans_cluster'] = km.labels_\n", + "\n", + "movie_clusters = (df[['title', 'kmeans_cluster', 'popularity']]\n", + " .sort_values(by=['kmeans_cluster', 'popularity'], \n", + " ascending=False)\n", + " .groupby('kmeans_cluster').head(20))\n", + "movie_clusters = movie_clusters.copy(deep=True)\n", + "\n", + "# get movies belonging to each cluster\n", + "for cluster_num in range(NUM_CLUSTERS):\n", + " movies = movie_clusters[movie_clusters['kmeans_cluster'] == cluster_num]['title'].values.tolist()\n", + " print('CLUSTER #'+str(cluster_num+1))\n", + " print('Popular Movies:', movies)\n", + " print('-'*80)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Affinity Propagation" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[(183, 1355),\n", + " (182, 93),\n", + " (159, 80),\n", + " (54, 74),\n", + " (81, 57),\n", + " (16, 51),\n", + " (26, 47),\n", + " (24, 45),\n", + " (48, 43),\n", + " (89, 42)]" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.cluster import AffinityPropagation\n", + "\n", + "ap = AffinityPropagation(max_iter=1000)\n", + "ap.fit(cosine_sim_features)\n", + "res = Counter(ap.labels_)\n", + "res.most_common(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CLUSTER #183\n", + "Popular Movies: ['Interstellar', 'Dawn of the Planet of the Apes', 'Big Hero 6', 'The Dark Knight', \"Pirates of the Caribbean: Dead Man's Chest\", 'The Hunger Games: Mockingjay - Part 2', 'Star Wars', 'Brave', 'The Lord of the Rings: The Return of the King', 'The Hobbit: The Battle of the Five Armies', 'Iron Man', 'Transformers: Age of Extinction', 'Lucy', 'Mission: Impossible - Rogue Nation', 'Maze Runner: The Scorch Trials', 'Spectre', 'The Green Mile', 'Terminator 2: Judgment Day', 'Exodus: Gods and Kings', 'Harry Potter and the Goblet of Fire']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #182\n", + "Popular Movies: ['Inception', 'Harry Potter and the Chamber of Secrets', 'The Hobbit: An Unexpected Journey', 'Django Unchained', 'American Beauty', 'Snowpiercer', 'Trainspotting', 'First Blood', 'The Bourne Supremacy', 'Yes Man', 'The Secret Life of Walter Mitty', 'RED', 'Casino', 'The Passion of the Christ', 'Annie', 'Fantasia', 'Vicky Cristina Barcelona', 'The Butler', 'The Secret Life of Pets', 'Edge of Darkness']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #159\n", + "Popular Movies: ['Gone Girl', 'Pulp Fiction', 'Gladiator', 'Saving Private Ryan', 'The Game', 'Jack Reacher', 'The Fugitive', 'The Purge: Election Year', 'The Thing', 'The Rock', '3:10 to Yuma', 'Wild Card', 'Blackhat', 'Knight and Day', 'Equilibrium', 'Black Hawk Down', 'Immortals', '1408', 'The Call', 'Up in the Air']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #54\n", + "Popular Movies: ['Despicable Me 2', 'The Lord of the Rings: The Two Towers', 'The Bourne Legacy', 'Horrible Bosses 2', 'Sherlock Holmes: A Game of Shadows', \"Ocean's Twelve\", 'Raiders of the Lost Ark', 'Star Trek Beyond', 'Fantastic 4: Rise of the Silver Surfer', 'Sherlock Holmes', 'Dead Poets Society', 'Batman & Robin', 'Madagascar: Escape 2 Africa', 'Paul Blart: Mall Cop 2', 'Kick-Ass 2', 'Anchorman 2: The Legend Continues', 'The Pacifier', \"The Devil's Advocate\", 'Tremors', 'Wild Hogs']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #81\n", + "Popular Movies: ['Whiplash', 'Sicario', 'Jack Ryan: Shadow Recruit', 'The Untouchables', 'Young Frankenstein', 'Point Break', '8 Mile', 'The Final Destination', 'Savages', 'Scooby-Doo', 'The Artist', 'The Last King of Scotland', 'Sinister 2', 'Another Earth', 'The Darkest Hour', 'Wall Street: Money Never Sleeps', 'The Score', 'Doubt', 'Revolutionary Road', 'Crimson Tide']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #16\n", + "Popular Movies: ['The Shawshank Redemption', 'Inside Out', 'Batman Begins', 'Psycho', 'Cars', 'Ice Age: Dawn of the Dinosaurs', 'The Chronicles of Narnia: Prince Caspian', 'Kung Fu Panda 2', 'The Witch', 'Madagascar', 'Wild', 'Shame', 'Scream 2', '16 Blocks', 'Last Action Hero', 'Garden State', '25th Hour', 'The House Bunny', 'The Jacket', 'Any Given Sunday']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #26\n", + "Popular Movies: ['Minions', 'Avatar', 'Penguins of Madagascar', 'Iron Man 3', 'London Has Fallen', 'The Great Gatsby', 'Transcendence', 'The 5th Wave', 'Zombieland', 'Hotel Transylvania', 'Ghost Rider: Spirit of Vengeance', 'Warm Bodies', 'Paul', 'The Road', 'Alexander', 'This Is the End', \"Bridget Jones's Diary\", 'G.I. Joe: The Rise of Cobra', 'Hairspray', 'Step Up Revolution']\n", + "--------------------------------------------------------------------------------\n", + "CLUSTER #24\n", + "Popular Movies: ['Spider-Man', 'Chronicle', '21 Jump Street', '22 Jump Street', 'Project X', 'Kick-Ass', 'Grown Ups', 'American Wedding', 'Kiss Kiss Bang Bang', 'I Know What You Did Last Summer', 'Here Comes the Boom', 'Dazed and Confused', 'Not Another Teen Movie', 'WarGames', 'Fast Times at Ridgemont High', 'American Graffiti', 'The Gallows', 'Dumb and Dumberer: When Harry Met Lloyd', 'Bring It On', 'The New Guy']\n", + "--------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "df['affprop_cluster'] = ap.labels_\n", + "filtered_clusters = [item[0] for item in res.most_common(8)]\n", + "filtered_df = df[df['affprop_cluster'].isin(filtered_clusters)]\n", + "movie_clusters = (filtered_df[['title', 'affprop_cluster', 'popularity']]\n", + " .sort_values(by=['affprop_cluster', 'popularity'], \n", + " ascending=False)\n", + " .groupby('affprop_cluster').head(20))\n", + "movie_clusters = movie_clusters.copy(deep=True)\n", + "\n", + "# get key features for each cluster\n", + "# get movies belonging to each cluster\n", + "for cluster_num in range(len(filtered_clusters)):\n", + " movies = movie_clusters[movie_clusters['affprop_cluster'] == filtered_clusters[cluster_num]]['title'].values.tolist()\n", + " print('CLUSTER #'+str(filtered_clusters[cluster_num]))\n", + " print('Popular Movies:', movies)\n", + " print('-'*80)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Hierarchical Clustering\n", + "So far, we were successfull in clustering movies using __K-Means__. But is there any further level of understanding we can extract from this dataset in an unsupervised manner?\n", + "\n", + "Hierarchical Clustering to the rescue. K-Means helped us understand similarities amongst movies, with hierarchical clustering we can aim at understanding abstract or higher level concepts which are common across groups of movies. There are primarily two ways in which hierarchical clustering can be performed:\n", + "\n", + "- Divisive : The algorithm begins with every element in one big generic cluster and then goes on dividing them into specific clusters in a recursive manner.\n", + "- Agglomerative : In this case, the algorithm starts by placing every element into a cluster of its own and then goes on merging them into more general clusters in a recursive manner (till they all merge into one big cluster).\n", + "\n", + "For this tutorial, we will work with __Ward clustering algorithm__. Ward clustering is an agglomerative clustering method, i.e. at each stage, the pair of clusters with minimum _between-cluster distance_ (or wcss) are merged. \n", + "\n", + "To work with Ward Clustering Algorithm, we perform the following steps:\n", + "- Prepare a cosine distance matrix\n", + "- Calclate a linkage_matrix\n", + "- Plot the hierarchical structure as a dendrogram. " + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [], + "source": [ + "from scipy.cluster.hierarchy import ward, dendrogram\n", + "from sklearn.metrics.pairwise import cosine_similarity" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Calculate Linkage Matrix using Cosine Similarity" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [], + "source": [ + "def ward_hierarchical_clustering(feature_matrix):\n", + " \n", + " cosine_distance = 1 - cosine_similarity(feature_matrix)\n", + " linkage_matrix = ward(cosine_distance)\n", + " return linkage_matrix" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Plot Hierarchical Structure as a Dendrogram" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [], + "source": [ + "def plot_hierarchical_clusters(linkage_matrix, movie_data, p=100, figure_size=(8,12)):\n", + " # set size\n", + " fig, ax = plt.subplots(figsize=figure_size) \n", + " movie_titles = movie_data['title'].values.tolist()\n", + " # plot dendrogram\n", + " R = dendrogram(linkage_matrix, orientation=\"left\", labels=movie_titles,\n", + " truncate_mode='lastp', \n", + " p=p, \n", + " no_plot=True)\n", + " temp = {R[\"leaves\"][ii]: movie_titles[ii] for ii in range(len(R[\"leaves\"]))}\n", + " def llf(xx):\n", + " return \"{}\".format(temp[xx])\n", + " ax = dendrogram(\n", + " linkage_matrix,\n", + " truncate_mode='lastp',\n", + " orientation=\"left\",\n", + " p=p, \n", + " leaf_label_func=llf, \n", + " leaf_font_size=10.,\n", + " )\n", + " plt.tick_params(axis= 'x', \n", + " which='both', \n", + " bottom='off',\n", + " top='off',\n", + " labelbottom='off')\n", + " plt.tight_layout()\n", + " plt.savefig('movie_hierachical_clusters.png', dpi=200)" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [], + "source": [ + "linkage_matrix = ward_hierarchical_clustering(cv_matrix)" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Anaconda3\\lib\\site-packages\\matplotlib\\cbook\\deprecation.py:107: MatplotlibDeprecationWarning: Passing one of 'on', 'true', 'off', 'false' as a boolean is deprecated; use an actual boolean (True/False) instead.\n", + " warnings.warn(message, mplDeprecation, stacklevel=1)\n" + ] + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plot_hierarchical_clusters(linkage_matrix,\n", + " p=100,\n", + " movie_data=df,\n", + " figure_size=(12, 14))" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch07 - Text Similarity and Clustering/movie_hierachical_clusters.png b/New-Second-Edition/Ch07 - Text Similarity and Clustering/movie_hierachical_clusters.png new file mode 100644 index 0000000000000000000000000000000000000000..e274f595bb4c1638e7b9d2d4a57ca614b295755e GIT binary patch literal 589390 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

wA-+8 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

!jF2~|I>oUXO;ga+p?@%pQIfo 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

!-W5-tk_ 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

A|e`8 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

t|GcOs3)g;@u>tie7++0;57bT^m&K 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

Ej%=XbJ{zyZBUc%&$w+SE}^66~_eo|y* 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 Serj5=iitCRiJY)#%l`#d?Ikh* literal 0 HcmV?d00001 diff --git a/New-Second-Edition/Ch07 - Text Similarity and Clustering/netflix_rec.png b/New-Second-Edition/Ch07 - Text Similarity and Clustering/netflix_rec.png new file mode 100644 index 0000000000000000000000000000000000000000..8108418ba4f3bdb0e70e61da9754c51bbf14fbe4 GIT binary patch literal 294040 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

    1+yd!#ZTUFi z|I@}uYLT@5?NZgo6jJ_6P(=YoUP;H)SJ-RM-w57ZbOa;4(EbvRcrm?fDTsd54t;$46&S;QC&O?j1p#D%muAJt zJ;NlCP)it^l^13Tp6F3rRc}M{%caU2v1SP(ffZ5u^7RH+n|HnLfxyS)0{5eEwj2;l zN3;hwk<=Wnz<`pX;y`@n3H);OG;IYC*V>QMI!o;6qo5!%-lS=eU+0!MNwLO=tvt@4 zyOK24dR2=-#hij_ir)hj&APIH0;H#{`H3K-*D~9d9o#>!T5>xjoS8J24bSzh>$00u-{-_B`stodczp_TSnHzn>fx3c zr_~*29qQp;r6HaN6Y(?jD%mgQGF92Yue=qWjv1c39&qgo1?e^g#WassmHUeJek@c-;_oR9>P`6NFZ8xq z%dM4GpOmrpF0cP>MB2tz5WmhshXX5!c;*o5x<2hum`Hs~UV97}GhdM#&$qT)jkYtf z?L_0gJfekVh1?z87T=4ZG=n%-T0f1CbLTTde9!ot+a7y>Rqw;dncYy2M5taZ&sQNo zaNeKp*ZrlI!AQos>){j#59L2G8!dhHt+PGfP)$OFE+t&^Cvp}ffV_Bdbci^qWk3>_ zsnn2wt`+wDU$b+)wr++Sr^@ORt2~7KHgqPE4oeTaa+i+H8dCd-meAv3v1y<3Ap~uW`)I@C?$QOHptqmsH~P>^_^DI5ALqM zYP)XTAzE<{E(iK2jp&RzRC1+SZta1)kDola^6J8oTfM6v^sam|RQ-5k^~1r+M}w6Q z2dkbBH$B`?_k3&1%k6DXH@7_5)cAC${>7HYJ3ZxBTNhtxUIgxbwzl+iP07u!@@GR0 zw|iDU9%^{FvEfQr`NK_3?+*+--`RC{s8K}2y`jcCgLOC8)!f_I_-se_qpj`thMI2< z)LrOUb-H!=rJgkxx>jFXR|WZ1@c7;}SNhgo>|TATcg>~ViredJp&RgOTj!B^Syg8G z2gAdTEnJeZu#ON=gpFK=ERq`Y=Ly}BO3~DiRFS*G^Y$lSA4e?i2tUPrR`?&*X7cd~ zaC7r^be!$w<>xxv)5&qRi>oK#=I-t7GY2X?JbgXA`~hg`BRfr>B>fmyeIPkB^V9uYW+moWMXJ zBs3HuEG#@CGBi9gI4IOmU;xUC*fv`Yas;HH@++e8X=ODwSB%)vHI+1Z$_QFq9$!TZ zaxqZmtMUzmM%FeCy86Zffxf1imb$8jKwD^GVP#=vt)ZsH=L_u|T%6s!Os#Beom}ml zXWKfu*f=cNSV;m&~bpRw@tleUiKvR?_D=@~w-;tqraQ8py`@adEA_7>vv3#M`GS{gSh;g8W~-XdRxx$q=-Daj+pC+pvUP1W zE!{P(JOuWBI^gb(bF}Pygib+be(^f4p*n71x}M>BUXft%dfw6cUO)`Uy1s9`zJHRQ zf09W^hG}4mEK5^DmMDWKqDgcNSph@gU};JKn!-j?6#x`P9xcZ~)0Jf?TwN<~kAzZ9 z_hhr!<>BR9{1^1wrLA#Fsj!P(>Y1@NY+jpN#wv_p_AC`^hKaw?oNV)ue0|?^@KJ$J zine!xQDBaNf2OWaik5q{nsb=8SDb-gl3_rKX(;%8j%gTzeo%&9K)OwQnPqILx<`UZ zq_`A4|h&1!NNZ&;X0xH6;Ad`*vJ{m?wCgi?o;`PR{M4gAt{JrZ<15(QoO?ZryjdZSS#;J;z&j9^7~4BGL%{gG1n7#NEH{Id^IB)TON#Z|=NyZ|o5lB}Ja_ z@7%NH7L=5`j~B}H=vTMWx?Z9YRI`Q%;Ii^vVKBlBQd*)R@gD7sz2QwBYOQ5V3n%xS|RgYk{n>}Fhc3o)w&gj)#AaMTV-<)WU^ZT>C9#kO=7^~GN zmOdJ&ez30k=}^=Cfy&$cm3Ief-t6o7bZGsn-Cg%K)Lrjgb7y_cqs>kCLEksjgN5JQ z-1uNi)9IF_SNqo78)~@TUwO85`MI{0XIhq=ZCiG^XEkuKtNc<|`IVm4S9&X8^G5gD zdm9=a4!57JU354<=jO~UO3%qlNJ&dfO^=FC2nvhz4Gi({ znd9c=@8a$ac57|#WM*Y!WNxl!Y$7x?G%z;N($?YY2(<({e1VXs#n%KSh8jSiqb)*5 zsH>x^2WSg~0MrYFx&j@cK%l21G!W?M1DcxJAk!KuJPodv*u_Po&c6;zkHO=ri_zk0 zX{+)DYT7>$=%^zIHFU)2Xz1t)3@j{c^$ksR^^EvhLS0>bK2O`q%*x!-7Cuy6UCY$M z#?EE7v8A<%m94p*gR{FAh`WW2y}gU8os%`KNFYH0rnU7lbJP2s=i_pkHwY~x=UzCOTL;lr&E!5hDIVy7P;svqa~ z@oxncG0O5{pi*5;NmGp{6q;BIbWPP%1!`PvRj#&%ia?#Kt)|T9a(H9>GORvs=bBtC zF+3G*Emgr^;EUnGpIBJ~`GG=o6o@`_0FW>nIVA-un?;r%*LP$(%RlM+zj$etfaEyh z3?iGtHPp3YVCBgY|G4`<>3>QZd&)&gmad3qa)}&G4Fg+q*C0((7cFyFbyFub6Gxtf z3(vw;)!bRt+J$TCsHktv(KcuE%~TET<#jAHEnPLO+%>E`v>f~dPJwzZ!TPg-AZ=%V zfoq_FcesI9q?U7_mP@d}B~;ffO6V4)?H`IFK2gJhuH$GKm|^UfW))tf=by>*h&Kt&GYZJj^Gh`e&fHDYZ z`X(9$rXg1nl5G--U=*C8ACPJpRp61mQhjzT-#ghLDBCzR*CsMwFgqfuaOK-?-@pF= zulzCY?jV<9#uH+m2*_~!=h4vvmu~BNMi~cXnne_tipH(YqvmRPCkg$N+xMRtI(c>I z*yW7}&Tl$&VZ*^o(PdTYuF>Wp*`0e%ZaZ>r_{h1TqZfycT-bE@!qCBULkG_c9Xiv$ z=XlTdgZ(=XZ`}Xe_T%RUb|2qz_}up6m$n=}zwOxN%w-MGHPZ2pSFsNgdch;H)4ar_2(~vYfqnFdHne7{fFIP z?K}3i?A+HlysLim_Qs)YH=n-zF#>7K-Jw(TZDjQF-Fs{LHq;L7tlPS`e#gFs?FXBN z57uwpz3b#zMD#`D?#LY<9sTg->-OKyuK(@g=JVILU%fl_h>Oy{9CxQ@HDVLiN`x&D zyE}kOtb|JGsFmcjI%M|u^m^?T!{m%cd}^HxSZQXX=CaLFv8y>{{Zz2?1?%ODdQeGK zfNVk~G?0#8gGs7l6}EHd^>a#l$XN}_^ZTi}En;_P7Wc49dNFCWe{lDVCd9l`5O)WI zhrIwPrx_Y^=C32?w@D_gCBhlf8^*1D+}&kUe|LH`bRlxU*Vo~)n_2S*RLZweOZz0# z>(IH#?21T)dKNNwJLvnEwTot5lufUPvdXe8%u?trG!sPeHb_W}2vkn9RCc5C>h1Kh ze&_&z+zTuBahGnzW`RQ^F*9O!=dayKFY3f()a$I>Mb2%d6?8L82B0N2yIt(=<01}H zE(RQZOybiT6&7ux{o?L`$lb^EotWQ=&ut^-wPUiHq*AMKxy_jLIuSMa#HGu(ZhQ6q z;loP@?{03m*|Xwy|LQya*NnVS<;kQgfv&>?~|U zBV#OW9E93>uI}DZ2}xda0{ue5=7dG~hlB@)Mh1jLgh$6l#KeY0NBaf@n%me|+dJ@e z_26(oPe;!{M<3AFHW)*o2Z$>HLmdMnf#Dy~{}aYK20t`Ubjb$LJc(`PYo$( zs_KBgixD>#Gj8YF>OwIB4P6~gy+89y4@X;Ftnvb$nm|KUTbZq7VrfVj6qOMM<8g5AKeY zSH&^aHH{oKOq?`L9aN2MR1B@vOzi=#nVqVYqr9FuOUsDOH|FY?E9qKr3@p{mop{zB zJR5IyD=)so9HC2~nNO6^*-zcpg=gofW$!0&4d%N9YtIhTaSapBjxh9&GxST;^8>St z1G&`mj+Nt?U`Q-UGy&WlLu7)rqe*O80!x;_kR~#4G)0b@?lf7-3=C}smcmdI5S6s$ zg!a}^WwxnnoU-dJ5?AO1=W<<>RqRukMj;BObJ#{6By}^Qx;aJQWD$~Q6;bSvu+TKL z0NmXyB;UY4OUpeD#9iQ(U>1^X8IcPYqdzCvFen2N_t0#EkaXR^6w|P5v(Rjido||> z4d+PXpbYcS44d%ml!evr5Op5~wfuv-i;~FO#X^e!|A|96K;N4-?$Gm2FbP4T>MbG) zZDLAv{8IUDk$2vG`Z5Zq8u==U*#0y!x}c`R&?nwLJnQz0*P;#p67!9ObpI}>2;xsd zJ{^wwG4fdytMhGiehY%$))FRAychGV^I>F01g(VFW-NB z8yR`@{!3ZykW1`*tH@&0@IvE=e3OVm(}=m|5e0_9xn>b_Eg}lS^A}%!{PGjB+|m!| zzrgoHZUOSYQTWg=qoeOfNAJG-QryrUQnWm~va50UK^XG#*-K~! zpA5h^g7V9+Upsc~YuLK8aoeuC&D*Pow$=;`U3u^rxp%*eyF+^S`D<10hE?4g)~+9} z+`OY|)9#v~-IW`Lw;ww-?(X7gH^JSvojkkl`JYbO{sx0CBL0n+9w8|)hv#R8FzQEZE>(W)XS#SLV=p! zrMPgT{JixFi#Fm5I#7A7vf#~mZP@&FOm>S5C}4IgfXi+r%cRz`N(UVKFKe#a31@)wU^1F9nN48Ts>`>~ z=62EwJJptN!KT&YGh1kLd)1e1#bmXj5qEEc^N80;MT59!BJM7g)hwOWEGv3DR&miL z)n!{4#a+yjZdPdztF#xP41jXaSY=5kyR4g0)K1H5Wac!oavNz`_4vePnXNs~-hjIw zzP+X8dhhBRz2&#S;JX&z>t1xfYth~Ig?Bp^-)Ucbt98+}y3)(l#n{~$-p1Q?T`QLNCsI&xNlSSuJskey_H-0R&DB9)Yr7IyRN8p zZ9#o`LEXyqibY9FOA{9s#gybl7w3iMW_l;Zc_c);M29(q2iXP(SkLjZ4-T;O^|JEy zw(|9|^zk(FbT{>Iv-I+?^6~_rU=218_;}g)c>e_-D=#lgPftrXcS{FXQ%idzV@o4_ zb3+|t@Na!BaB*D(#LIQ{w1m1^I)ENuC`Mmf-#}ns1a>RJSjX5zXabn(nwsgE0mg=A zmR5Fdo<8<=&Q@kNCI)7PMrQgZX4Z~Q?p}UoR%*N0&G1oH|0R<7T*8o8FS{RuBiuoTgGcYsLM=*u2CgP{o8;^tZ zQUrzu(2L;fBWUUAYJ$)sPA|531Wg2O4S^WGy0(@YG7!#J6Y$l*r-fP?Is!O@v8BF= zwZ4J54&P9~)93T_b+inipslILQ_~THI6CqR1A>mGt`I>_PYXUBuEEGqU~H&k@+$@c zV*`Pa7=3L+Azxp>)793{CIBpWuz(4<2($AX%|03TNu5GI5 zP9pa~+yE~6mm35i*<{!++L{DkZVFsEoJDk7|)GBmaFTCZSh-oUcxfy}8biZUIA}6Q z3NI&tp-5oJl31!V4$9P-Xo@UF9>?TLQ50oa+C2MkkMs(Y@C9;K5oBFA65ol!cjcM~ zs@Vo9ntG6Vmg=^_>P|5_-Wg_L#dh%vZDUJyd{fNA3QdCZ_?`)T&p18*RHL9wWZXR{ zP1`$8KOoI8IMXmR(=a5%ASBHwIL$a9#n?aDz&AnFE|6;*AaIK`4@%8i-uMAgcO=0- z;I6>?FW;ZP|NQLT=T{%Uei7;8kMG~$zY%2g7-{(J$HR%8~CM~gytFt=NO0N zAWKJiMm>D<;S03>_WcK_ut>p|)U})X#yEtg+ITNs}G+bUlTbwa(eM+d>t9xbl}L+_MT;Z8&oyM`If;BbxIyCUf-c0DufxYr_a8sI@${vw7jKL`;iAMhw)%T_r)4&<^4dtq z+DvuSjC!zbYDNPyw*{N92A@)mO!S^q1!|5?s+LJuD;c{Q3KCH(MKx8h3Hpu_O%o|b z?C$vF8fJEr(%cSCK|3p_MJ}remr_m1Z()^m(+j&~603g=bQz0Q2YpX(K!Rt$!bKtM zP=HPGUP?iy@{&!^SaH!tB6#pmcW0FJK?7)p&u-z&A5>hhftuGXSi4`YWF02EO(wfV zHn&YS4_VaNDhQRgX3`Jl)jr zczw;ozRKI3*H+)czfIX`1}<+QEolk&C1c$!rIXU znP1Yh+t`GF@}*Pf}w@E2vdDCxF^QC#>T?2yEi^&j||&`+zSl#wGH&N4RrbXy5RR( zx;h~DJm>-$8|a!E7?_)y*;raRLT+eat}8GCggQogI>tyr8&qCT3>+v%5Bdp6hrz&* zZ)BuxY@!3bCJO|83o`>tF{b)(VF)IA<|cY(pz`{n6YB7xOQ44syqbeDiC8y&gr~SfY?5v41ry%AD z8aV~*{|{>TUri!~90M}w0mw|5h?kf^lAJ)6nn;nJh?AI#ll+w_c*zN*SyKs;Q%KU2 z@KO^crXpfI5ix0zyTi3WujKzqf)5fov*`20<~x1z1l+7iB&jKIm&hXic;6=Dq^1&O zr{biiVx^{Hq$bMDoC?AYOqx6mL>^8GC;VSe$e#~EbmyRi{0X4z^E=Q7`V&*8OqngpCPlkVfzg7Q#c6Vi=F;iVgR8W&4Dxe5V6p@8zauo%}n#OiK6MJP{OL+}r z1r1}4ma(d?xtgAZvW|s{fxW7+le(#kwzZeQ+S_DysGegG*VI+n)J4nM2YJuc%2U~N zwwkRE&m~CRA%JV;&9e_Q^^G_1j?wjw6?(_;T*HlglW~ehk~jqnfh8eB0`PRM1XgZ3 ziZla5ltANWq6jl(Nx&>DU6#zoGBu{-6_s=ybsfXaeA75)!Dv+n0>_lVHpD3Cj%7(#-@-CdD{5aRCcGMUN5ZQOk_ad&rj z!QEjOcSx|sVHam{kG|DCfo0`-uKT&(>wf-cf7|r*)Kpj3^r!PZHK$H7?a?GV;98(a z_6WRXSemI{oSA>Dsede`sOcjV?hc?F0&{?v09c2&?Q;o4+5010!(s^Btm}8~L2pe@ z!iWk9pz^2b+4}w+4hXV+9NRvQ1!Nb)bc!atc=H)TRDhna0rW3z>$i_e3reOwdie?- zO@;v$LRmnjpvE6eh`>Owiva3@FdVS^&=yA&*(H|g9ZS6R=mj_oy#Z>0=oUi!DM0yC zfaAf5zcmr^3ufPboh0N|`=(?#C$NEc0UGHP$MQ(#hY_={{Q3-F_x$)aEb!qE(2A~b zli(i>fIz1JSLOcm*Tj;R#KM+}_51n`oao(mw0GCfy}J%v`Ry?%^R3Nupeb)ZeeKzE z5P*B@jy=s=chzp#Qa8Nu_R|+oyM7#Z2cSPUcjMus@`1tPu}x)TTdLOYtlzk|cKx

    fxVrnw&G}m#Hfwjke`a?zMu#@H2e3Qfbu~u2zF-jS z1DaPLH%Z}Zfh6(Jiu5w%X29;kb(+Aw5YwT|kJQ%h;QpQ6fn=!7(&R=NN)wP28CuRs znbV`0IV3}AlO(lBl3TyC`*%UG&VmxO100`!3A4K-r4>j`Ftnm;tfE#AmNyD=p}$@Mz>D(2Hl*E zTA5=IVZ+oe)OU6VoDC!o8~|Yi&Np_Khn)vmM!O{F6GoQ;q;CDZEvw3R3E5pPW1ih1 zw*gcR`v#C}0T06~@rS_K6?srj6q+qdEN=Jq=qo9?c!xjS5PuRs4@PuBge?0a1~w>xw0_Y_{J zV%}`adDLHVueap+rshX*oXowEx|h3pUhnODwY%@>j_#-1yYCEE-|4Hk(O!I|Dert$ z#;IcF;S9naX6hzVTt&D`L5N*_oL_$;sy8jZ939H=b7c5Cvi)td!|i(L$m7jfmj|nE zZfLx>x%I|a{k7qmtAO1HAzd1&x;R=jK2m#YwE0$7?SrI#rx9lFN+tFXK zsjGHlcj;(bPIrAyTP>@hj9FXEsV>GBWhQ5_5_k+0lN3!SL{hLJxRek~QeYAQccfQL zlzViz7aHLn6$a!1ga~(w40VeL@r(@fiV7FX2N~rXjrdpWE)-yQ@1Srm{}6W%e|Hxj z82H>=?Op#YXQA92U4;??tEY?CcX_$^0(rao`FRBTdIb7-2l@quB2ckm;fSEXFn^yQ zA5TBufRMvRn1W15ic3z7OHPSRN{UHHj7>~JCnUxt zB%$LHqERt1=!B5q2v83)Iup*en|eVegUq20R4R-H^9f+ z*$be&yA#wcLTBcW-UCh!ELU3>AQvIrTRAyeIs%x6e(P}baCYI$q5(RltMO8(Eb>@ynn#LNE>KgxFu=^r_eSp(M0YCz3U$jtU$pXp6ORcq} zTu0;4O$P5L+aoBrfKrCxvyEpt;Ke(LJPTu743|usqdW zp6sSTc9X+7ElIEtHCI`9D&9^jY{aMHh-JU9?DI@j}_EYO1J%@waUS7wM&4RYcSASk1%Urq^Vn&nOCH_ z55n9VY2%ABbq-zO7-AWkXceAf8J4ofKXzSUf(M%7f+pFch*nWpt7u{%xxy}jEN^I| zqH89jq$4h?uBvCIpk=Z|Rs~{rc_ndq6$u56z*b=I|X)wOZgSnFu-7d~hD zvvXUHocBuNxF>R*;@P$_4Eq?GWjLn1cPnTmJhTlq(7)i^0H)u3`~Wlsh0n~hJJh~e z$ZOef^lT)j0$d{TL zLmU3W?m{jHr~5EHT|c@$r)RKWXnoo6)~ey{W_o?$^C(my= zcX{XdFY~uJY_?v3|IF^PfXi`pQkWWfVgnGscTIMe5~W3p+apb=1Ck;%0A2^+4t6B* z^-x4Rp;5^33bb~x1^6xv$R3sqpms`&G_^&F-X_iHkf64TQ(Gjdtx}X`Sw@?>U;wbY zG^I_7+6JIpW&fdGO-3ox;Iq=2^obG$sW zSA{d6pT7kfcW3uOsn&Ue3NXQg0=mW9RCC6J><%PFZ`Ur^sF}MS5WI56Ah-&72<734 zu)rSxEvI(qMkDZ?9;;R`jQkTI$t7?Wo8=?XSz^T(v|EeeDhRW!SFbjNSE zt~~f@``sOVccICqb$14f@ATx{>(2VMFaKUw-tCU;>&=4v@ zp_+F;jlBPP^y9IOPj+-Z+1mN*Sj)q)=KFoszcdw`D`6hbAsyhPZY9NRz#=>10sy%4 zz0LC@oyy|?i50{M(SKr&*^>C>Bd3Wb{Q)3Jy2&jr~ypQPF`B zNdMpnU%yaq&j3$XKMxmg4}jyY-tNwxo~}OdzL%#PBp-Kgp?p33fC9V#ItTc9`3L!h z_yf}Q4GZ)M4e<{T_74vX2#bh70_H|Uqr)PigM-6^gTg~Y0lFt9$0kQdph6>}V^h=P z({aee=wYPoP9a#UK#qv^0EbDwaT` z5^&ViWL#KCWN=VeP+(}Fe@LKTaDZP>kbg*MKxm+EP@r#ch<|91Z!jdEpg`|HunqDF z4iAh7^$!p8j|lM%3-b>T_m2SEFu$-+ztAxMu<*ceAg}`phx&&F`-VWr1H!+;mkZ`28SD>?#r>l!Mkh`0&tCN?jqo=cj2Pi3&i@hrl z@UJ{vz_$Z^O`a}3fX;n90>D=Qyrw{};Gk~;`+=T8KmkA=fk1w40X{B%fZ(AzZCvcu zIohnXvoy0=yUG&a`zrm_CfWesjr3IYwS`0PaJqM8X;mm}=5Oo{$IK|oi>oTD8Qa*n z8*7{B$Y|?`tIyx!u+1~h|FVfe+dD&9j0p@g4&?{6HWQ(pQL((rhk~ObBLyTkgBtnuHFzW8DY9mb(!eG1xpu- zL4L&l+W0Z37&r$@MF9AUifG8l`>#>1iqP9bS3OMAJWK;^);dJhJp3oAAET>*PWy?X zeuSoWm?FC~O`hYmWVIp`N3#eTyk87|4gc2$ngV-Y3&q96QD{MWCtep+5Tvph6o4bUpfJ5QU-GgicqD)=pjzEs^1XCc7lDgP3)0iJ2>0 z!sNAAODSnDmR3>LSuLkwv{*)Yv8=*UIr-)CDw0at0Nl;oBFwzw70i59SGlR^+sJ9H zmD99P)U#F6x7AR}g6Gxkn0^-c0h$?(PHd8TFg z67oao74E5-wrHjmk_rgkK8^;!-8P2ohskz{V>qHHF0nMn7!qi(b$F^}X!6>?cpzi9 zNFB!@4QroxX8uROst}_7iQSDY-Jq}{dtZIW039oLdUh!UxzJ#@5UZi=@7L} zqe=k!f1a6Z7~EkWO?E_4f4*=7j%J_dTHp!1pPd`qdx)4-gyR+0c8$IM42}2;$LnFo zVD8TISD|=;ODw|{^bZQKJKZy$a{Kp>;4(ooAef$=o|>6?@&0qm=vG{ADJHA5b$HkF zw*dR$3k48AH#0Ri{o>2lc#Y<;vomn+J5Dse$=BcQxd$u>2?kZJWk?VOF8nInpsYVc9)O*`r{q zp0nPdc)KJGTx`1%Z_ub@hXT7_n$abnF(@k-l;#ZrK$p!}FUc8}6O$e?>dgX`M^ZeJb{4Kn6#aAmYU7;c#;b@T^8+Ek4 z_H0Y_>6YBvqqSH2%TKrD+!?C_x;YHkz4Bs5!6gXai>~+QT^lOAJX~>ebN9*S+BQ5f zAICI{U`WIjh$a_^q~t73FP6sE$zbcHF~FIGBn*6qLS-;@5@`^Z3#lCl9282p5Ac0i zYW32TO7YZc;m|uMJb#PBR=sVsZ2L&|SXasVzTBY>Zf8BGy_V8gLaHq!SLP)aaAWwi zST+SoCqz+j5v24GTyjuaLO@cie*zj%yB8Ya83R$fP~X{I2<`!~$iO%hP;gvq7)^9;^P_U?cwj??&IeR#gqdQ_4f(%^Y-`i_5%v= z_7@7EZ7_gifUy1$Hv{$z0>~Z^5f&018iD|dii|-b@~ zk0BATWK1d!6@|uON$A*=3kC%|-F-bhe7(Gbyg)Z1&>=B#;c*^tJOcofd${;`!ds!dUA-Z>`S^H3-hv-+8@z)2y@UOIL%^qk0wRI~BSU~^ z@=d{h;jqGjd_(;_0o(_81JL&j^z{q^wK?0m0erVMw_9gwZDz7|wV~Mxos~vfP~f|c zik_yTwlLj0%4t8$gE{!6y{72c21yv#GW#Mi&b1Jb*|g>;UueSj{_ z_YyHx5Lp7psQ(8Bg@B7JkQNiQ){tg+=xiqFoMY==&d|8RQyOQhU*T(B;p<)E{V3f_ zT+IoN<~UdN3Qy-+mhKU{N?nv_u*m|MB~aWxbaDS%22dI5H_&NX65>b;{d%fC)jG2Ie+Oly>Y(&B|hjb!;3uQ@eKWQ9GxwANvz!hedz^DApVB&`9Csn ztrCkDDTy!El3A=Lzv#~r)dy1eQH%8yz;O}byBabg$`T^Wmn;y2?gD741I+OM+ctlf z!zQO?q^!S6Tv1b6NmoW$M^?>9&Dhp0I8N1ItI1aSCwPUU$7&Z}Gxvy<&S6erDXx*}=I#-z9D~<*L^&a`F7aeXC~IVjU07;h z8rMIK>z>4PK$D!4*uLaa728lbV_R9R6%v5mWmUx$b);1EmdL3tS5#Z7pdhZGCaI*a zW$Iipu&;LOc|UxaqN$g-mbsd#i_SVPd1E^%JxeKl8*yz*b5E3sZLqSDql$s8nvtcX zzV#~acmr3|O800NG~FvL8^{-*7sjmg!RJ|{m`({iK=78)WV5ieHKD2Y(G=HMx>F3* zC6;O%l@1NJha{Q#q4k|Y^_)VCTq8_9{>D&9;`9}c2odTE(03OE5$?4hqFMeO`9c2|sv_X(-wr6y z9;v>faK|Dv#t=ahirYcKy_`W!Eo{p8vq^U_1NzxndOQ9V)CYWgsZn zy#*S57a}{%?ohfIYO4&bLx$EVO$BeY0jY5M)cAv7D+`YNncZbsT~dq=30m8a>@E){ zYZpe*d>@GiJK%_L^j$r37`!wp*{ZY?sjF}Y!O^*;9hUcxYL#k2>$Vgx;J~e-X9)% zd8q%z;en?I`+nQiadWipYFF9C`s|YhjB|PP(;37)gqTe!VMDP2UC~~hi9yvUue?wP zhNpStN(Fk5jgOI1lAT#?B652U??`Rw+4hQ~b%JxPxmWtiF87t)8mW1(sR^L`<(|?j zy``7BiY|2IUh2)bHkf;TsA6J6`|h4b|Ijc~6iF^TLm{z3CbdL5twaU`ZbE3hT#?kG zL}?RBk=&|4X_X~53Ab{jW}##VjY26<+LY-XaNv6#C?JDxlm_&Vtq0IQe~ZIbvvsIq z>tOCkd+BIb{y;0gqlVvFO{*)RRuxjq@=|iSXf8FDNk&oe2of~n9)d{u@Jk5#Ki$jkHzD;g@qNZZS}pqP5u3_1{z`2c6K#% z^=1}Tghj;$21EpUhxmC1`S}Hfgd++|D(V_q^72c9Ln8eAg9H2m1EGQKz+k_?5dYAS zfUvNji13ie$Ou$!UU74CS9M)mQW`NdA~rlCCOiU(LZC4iLVaUvOIJ@*S5He{e{)Y? zOYcBy??7{RUvpPa=g@HX$Y@J%e_Ky~ab-0pD+fcR;plVf5|+VB60Atvma+?C9RKrEkl&!R@<7_v{_mz5~3~ zy>UzX`i=b3@+2$)hbL2MEFy^>pP16x)!Q?=VPwb7!L8c{w{0KYxqEEao{^oqfW~(3 z8QQvi{jS{`cJJA=YtO*OO|`A4DL9hZhBVzDGTlZzveDRdT-n?dLBn>)KVZr{0K z+pfIwY7&cwr_k|KI*G;t4g*k1DmD#6z>}y%DyyQVv1?#xc;nW*ikgV{R6L!Pluk&) zlT)xHWPA!DE-5TF!9N=19Tev08{+R5?Bf%H#ZYT&n(J#@Q&aGMzM;NeLB3uAKmp!? zLIwGU1_y)%2S6@Ua8M)`OKEQHZf@yrYU{4=0O}E{t{temuC1%Kt*g4FqpGQ`qOO@i z<%R}DyE^%}I(j--JKI_~Sgo-&U%AfAXw52p(?5pZm36-ly?;*@DP(tf2}KzRMOkqL z#ijDfVoIu#I=1F6dK$*M3i_JM|36@NDB1!r+aeJ$B`L`uQ{MLfX&$1OMJDfd~M)hT;yntv$Zbsb;bohO5+k&=ZZk*a)!=C zhW>;Abg#}ymfBG2@@Okjd2!&lELilPbQ~1uv|LO~L0n8zMpRF3k-i+j_a7w&09{Y+ zM=jM=5YvU(9iTjTS4(!WtmML_(9B+FuJ8YovG@7A95(G$77Ds1DtaqrRCJ}4v}ILw zWYlzIH1sr9tkW^GH?neHVdrD&5@=-SZsOpsW8nb6-N?>$m5b*pXAeDVdp#?AQy1Tr zjzI?2zN=lsto>uHd{L&ZVHUnI?r|iy1d3}M*)Af@34seIWQP#5ywkWY33Sgiu5~0% z$;?&WaIKQ=Y9-y3;wm}{+ADQd+sJAe$?F(MsA-5RX-KFTEK@hN4JVYWKVP-yUe?%o zX3rsV^Y(B~^@_m6l>zZap2(G+NTpS73Wg4P=02Jx_Q2(k(zDRA@>N;uwbCuZDVpSw zl;NG8{c(!NL zKJ%a?!0xsv`r2?@b^jJ9(gw;bGtcfX-@HQ;dDanW)={Ze5g6MDJQ62({qZw2bPqcU zGjmYdnW4j{z3_qndTDG{U2gmO<_$ZqJ^U8$4mS#7_YYrMw(O|g0D*hu@P^{vA;9jp zo;-&Od}H@-244UA{8dqFH?OfhyJHaGdv;sTrh`BK&)MD4H{_q$T?XcLIC7>|8VFwp zBtvXaVYCCSDc`2T=m4k$s7Q*?pvdUZ$r@f+vQ;N@SW7Sn_5r&CnisM=kTejj6-prU zoz7uNQCn5`eG2eeOER=pPzFef-YN-))<`ouW#AQ;z6Y`kgJ%@j&_bu+xRBjJJ%I0l zR5J#RO19}2Y_zG}2PLU2-U5Y&vj!EIg9VoXrJ3J!|Rjf_sMd5rJ3y-83StU9$8Au za#FPvu0}PfkXSSL;QaOb2Y3InumAe4)*B-gclxrg_HwSb^KUd~{L%z%A9NQy9jSb| zz4_VJhKK9xUhZgnw5k5iVCB`0!m~BJlclVq`P2iP^nj`7pA*eq@i4}o>a1p0YAj0Dlx1%ExMZ&x2ur(b4}*Ka^|VVoNEJ>_ct^?*x2~n zrsiKaHr*YoztmnZ-cdN-U3k7X_v&EL&7q3Z0}Y#d+XIsDMk#svxO!c3lL5O`m(#At z?={FAG!P6MWsjNUZZOWX99_*SIdza zb-_K!@6%v)X>)t^1%vaqIBeD1MoYE~@&{WBN4l~HTG{Qj-1a(ZLj|e2gji9ST9Aq6 z(@|`46rB)B#f6hGA-Lq=^u)l_c>knWFEnCaF+fpZ>mQ5sjY0T8;EoDF#{|ZrLlWXc zlM+MX6KGjEXRlp<`QgL6$;sDKQ?I9|f7Gj~so$rkZ+-e)(lrHAdwBP+ z-}Ls&myc6Z&)CQzvRj~sb7IrU{~>Lc9dH&fGZ zzSZ^~)H68+ZKt3sdI_#;YWn5W^ux)iUDs~%iYo*;`TX1h426bcFb^I-IXOM^b$a^q z^wfJu({DkAP@T{g>Jv~2s1`JMa`M%O4<|3*$Zu%nXBTB=7w|GNd4ddXRu)4bsA+3| z^!hcpDA1C_H=koOOGqp>iOEbz$0T7ecnXz7qNSyQJpwI5@Zi~tPjHidy7R;z&yR@5 zMj_K8qf?{MNim73(Q(NU=!AeMRA2-O>e`_2n7GvYkADC7Y4X$8=~I_}iHyew1VQ2c z!9n2>L1B@Q!XtyDqCyZ+p@@jk=!kG+S#|xZPhY^_2GB*IA3(Q&(}8PwHwo6sFX@2P4XpM>9N@Hl~-9QJPv??5W{|mb-0(@Vt zpaA8ZQB+&5sN3z(dpj1oPl16q3GZ;X+Xn5mB(WeBokI70Jc%=4u-f z^)Kmn^(>8v4A4kD;CKM9tuC{4@!|!`7K3I&5D$G% zpvnLA1ID*Fe)ubd+qGn&sO-|E8nR1;qv^V`OLgS_BwhJsf0me%w79;SsIl@w18C@7 zOiNZuQF@__*g|oUC5sj=0$&#tza*@Gp~xa|F0l7sw)wjpHhFDh?Ufd)`l}QGG^-oP zs_IIs>uRlBr)TcC!oh2$qt_}&Uvt-BBU_J^cAh$Bb}JlwRyuhb+PNFpI2%|w7_751 zwstYFbk(tNUE>jEACh3{A7kboVIP|8okDj{qPfLW?ISU+XmThqE0~lONXYg|<@lts z4ek9^Osr+KR?2IykXAR8R51XgE~8;0r?o;!&s0j)Kw8~ksj`lk>Pj`sV5Fdj(0(dN zFp$0BV*Qa{Ykt0$x#@I7Zl^h#W8jyjY7;7^Woc*|q`lT#cb%t#fsLw(ql}*QO1IEZ zLXH!P>6MZR;X6LxpIqdgp6i9p_rm14Ci7jB_%_iLc={~XHX7>`L$rxZu?UV^?E@jZ zWk|eLXuN$?vR!DRxeo%LSp**A5Te2+WcTKwjhg1pT5H{Ptvq#Yd<|@T4A(kcxqb^S z0mqWhK6QqrB?50AlFX}Y2A%^HiUSic;MFtN9~iqt0%yQ79B&gzw2mZNMG$OJB&&$j z{D#i?A$ zzG*x!Y+eYxES6te(6w>mHz-x*w_=c9fB4+EVQbaM#`59ySlycZepPl4Kz41x zkY>h!GOG))yF9g3nc4Msb_awlNpF{+LeorT=+MHb%Di4^c~mMiDi47>6bIiTL2H4- zW*|W$>q2~oXQ=|I@&{FTP*xcsz5|;7E`aYQMVsAP4jbf+NHAJupt18|10K}^ZptLi9-N6Ti zOC|vsSM1cx9n&t@s8_IQRpo9#@TJmhD);IZZc!187?$r+77T;t$#8&E0o5$@B7R_Z*iV23mErXQc9-LH z%P`v1Gx}B7-M|rAMrn{F)=8&VtR$6f+I8~!;RDzA^k3WEaeYJe&HlWJ9{$xf9-wxh zyB#^d_7*-FE`Pkf`oVDdoxY+w-NisR+w)Hr(+*^$?cpTtWhd<*$L_|(?8C?G!J)Tc zQ0vnWBUn^xawx;iG;Wn@poVz-8qLfQr*d>aMT~!STtEjQdUGaze=+l5Df4Iz|9CC` zcs2J}HTP7#;CxH&rMCR5J*5+!Md#b|&h{2v8!EdqSbce{eMetcU;BZEBM<09de&F_Q4UR@5LSv92(Ln)0M=o6WG&lQx zc6Q?Bhwi<{eInu`LlIHo;fU}EpqTIobT|SXiH=3596mGtac=JQ%-qFy)4j)kiNXs| z37Gh}l$2x~mzRCx_OD-Op#Z_FAEypHpW6FkX8((sgHNXqJ^6Cr#mv6v(+8h@JoD<) zuU`Q=&w+ZbKYd!*)JW!Y*gP(a#i3H^WI6+xkg#?CzBe;ducl{ie4g6>;_LqB)B9dP zI{0knrx&w_U(5gp^kA}S{BayzkeY^1PRGZlq{XIVb{;$o z0q)$~gRe8k-hSEt{OkT_Q~O?khE45#4mt$l}?y#xlA z&SbLK3>KF|VR5$XJqS?v-R#`;x0BoMeWX@*(Ybu!Vx-G!hXK6&;F*4nstTM#n^;P!TampeS^CUE|xy$;r97r;{@$ z-+tZu?CYN2zwZ5g3Ut(g7jTcg_`2`;mqRb7F1(+43;)G>^YL>{YqyP~r-Os1gSCsb zxt;mSb%5QWl#$5vrzRrlY=EQ&M~W7Kd$~asJx| zVIknz`FWfo3zscgWGJ`HW5seW6S-6e^|3U~3w+H>8CnyWI+wF_C$jV>vUJ8Xf0XXH zK<~0ZZvyZrPvZhdYn%s_KgCz=OOhfuN&2r8cQO!DUJk{9Kx_^O`X9$}p@u915Da$2 z7B19~S!}1j%+){^VXoYWP(8`gJkQg)B+!LU_b;VAF3`EmH=M{+8|SNC&(t}?*V%}d z%MDzHG?R2USYo6kvTTVc6x#w(Ft}QnLjQAihm*4amt(<#WnyBhm8D%x7JD1Zusk)k z;`GM_1{VcdpzFpnv_aQF9R&gUpLCJ013C)&tw5lCS)g%|tMwB@r2!#@wO<-yw%k@< zM1DDF;$qNg@CiY${X@UOGgF~11)C)z3&h11N-PqQT>`m1I&z|V@{4rk#QvR@=_rcn zDT?UIEz*@=tSi4%LvEp#q^PZyxSP=u9r=Y~z;6Io3Y{Gilyv5wzQF(gZ2m5XO@EEG zhVdFXO+!U(V|fh&8Fd3d&wA!AD{Op?Y`u-_J&bJKOl-Z3Y&?vt+_YBP0f;xU^VGL; zHL`Klw{Tct?PTHVXX@l@Z0l(kgm#QbwhoG2=ZEq{6GKS?9}L?gk?x4Vc_h+8DLEmO z>_9@MS1Q*LNzhnrudKgDO4U$K%S2v#rGoZqWxcfuI;P6{=7wuslyuG2SJ@fZ2UrCs z8@nR3olpUsPG@`-tLIq$_N#);mom1D-6jXrg&&ilD0P%goGob_b|>{+C}@x+ConB->~T0QY$z z@D?En1r43xp$daCXakf~=GvWKSG$JlI)=%bdT3e)n|Q<-IV1YUcEO=85Sd{T*BOA(w#!7mG?EV<~JX8%- z5nLHmczSAfYI^4Eg>hC<1;4(P+t8lb+`fL_0pNQG+Xurv#O^y_cHeON;$PU^GZgvH z?5@M>Qy@1PW)1zw?((!2RZf=-xzVI>gCea>j?}D3ZIh$40A5sNbU-8SnZpY7c2!P~ zB)&n8(h49F8c+xLPHlmfTVl3L(^~lJL!&K(6is=Pi`ejnIT;`Tsm z`}2D>b4P&GbD#t=>Vjd7tP$P3jX+x2V_G?5U@Ocm0|dQ|1Pzh^%{8_HS;%V7HkGm%U!RM1a7PS9l-R zz22gmU3pjAvaU8~U#jDuE~D*Y$FIkS52gkUCI<~A2970$Y)wOKO^@D6jNQ#n+r&uj zz(g`!%@}Ux7%L;JjS1V`vM|iOG}5y=#;+R}y`Gu8Gm~(*lzFN?>tbucL|eh7_JS*2 z#n-w^u6C772*=$!3orB*Km#nZ|qF@W7` zz^y0?{r=McoJJsNVv{%yN_GSUADoYt5lWWW3>-`G^y=klmCMp9#nUR6r&LI!Rf(ro z&fns&Rcz=j9P8qA)#mj!@jGj24JFi?LR@K9dO=27E3;E0H0S1-Stoq07gd+@iHEqi|U ziHwboK*vTzqaqQ}QHa>6sHAXIQdE3wZ0d>g*8p?>`ek@us#)(JN)32zfp0Q3nsGN8*cKg-kmtWpZ z&VB+<(mM|d>sqq1a&vR?^70B8Yz{g(dFSCnZ)Rt2PR=ykcuhL{lyK@9`Q#JIi6`Xa z&uAxKQcwI2>G%ukiDy8h<4=bOf~L$;{l~ zjaRI*&+x~eFwVTBpLz!AB&g~sq!W*GE<7E)_wM%RnGb-5r)PIwy`8||BqgU{Qc|#K zn51Ov;KtowreYuib5x$vcp77Aidp_rL?^lY0IkMYC6fE% zRSHX%La8rd;)S3WX88YmgNEA|E`b}pKxNrtYb}{9U$v%KDXy19f~7)kfX-f;_IbAU z1W#jvr#8+3JK7VVqu4)6=K^2*a+dN0Uv(lw=R$_YVTwX+q&(J6lI|ke7Nb-WF6C*k zP;nVxa_HNEpc($>&j#8Lku-Q?spvwvWumH5q6*6w$ShtUw?tG;YN@vTVx2!C-T#$D zjTJ<6WS8hDEY(&N(~@1Huedm5rE*@VdPAH!&u$eYNd_;3LAez0HZdZ`j##_7WPJVZaQo2HC9{cSveWlxEKSV zw{tUC=eWYgb*-EK3P(Ws-kvcSXGE$^Xo6)R+B=>SPR;hi@w`%)&M1O+GBbjaA3@Le z#|gYrIcEN`3i@m1v{p*18!Kq9QqnU6TLrx}3i@V>`fJoptd$Md8QF)L2jEOR;?>PP zmui_A`^1|g*_gT=)Se@>f#amUqw#e+66=K-rpFzw=4uIX7`_yWN0UYI=3)Eqxtp<5D^WX2Xn0@Q06mTr$A znE5A~2SQ6qtqB0^p0qX)Wf_2m*gYfn@9f^TahsWEn7(bG<~lEJD<8n_E3G|l-1<$3 z!@|f9px=IfY3UKFxz2LSxV{@_wF~0-~fS-oVj*uT}ZM$n*JAdhhZD~h2RHv z$5}_>tRnDsQMj|$??8kNUn;l|V1V6ylQ_=te3#@5KYV@^y>S1*3*fpw}P2 zG_8ln-AC3#>^?v4{?F_VU-8_V51;buT6r}soVwPmhSm+c_fLUJ;gkMbc6SSk`e$|* zhPewhKRK09FHLHYCN&DDrOJ|;rEv8Cl9cHkfZzct$&*`z(%|?vm$p$#c6Ecs*b%2liR>p)yMFqNhIy zfd0Vum&&|;p;XvC7NuL17_D-=ZfU@{>>)YUpgd=DJRAvr-mq>Mpfz`Z1|M+#mcRoDQ~5~08m(3l@F9W)GVg+B!dBl3ZS z6Ka7Z*`3ntZW(~=tZv{lD9}6QX&q9yCJADVII&VRAxkNSUOTw;^6nj%H?-c|SbKf2 z^m=c_^{%4p9a%t+#wu?01vVXV_y{PRv#1CgF$X)r|rtX zAIzhjuFbmIS$w^x?0R?Ut$~WW!&P?%D{pic-|8>F)>Ay*kvra7)GiEdmnB14M}-70`E81-44esG z4&SIkZHEWiD}k0Kl>%@F=nsy7o%vfFwvtUF1)GPNT}@g2o$T%wa&rx}sV1$wFr_Fb zsUR~xmmkTdgfmDXRBQ-2JpiBVn-(9Kp5UJx>m85uKt>AX850G~SdBph#GwGz`^Tcf zk`lv{lOj@*LlP4Pwr`u9nR`1sxBjw=tZ5oX%YmYALOspHjckN7R+r%8**Lv!gU#FoY0B>jJZoQxF+WB*7Wqny`MM+6n zc3wV-$vk-S#E040D_>>@f1NJ6_%^X~Z({3~gw_pdom+sC+cp9vwQfji*?_7U2rFrg z$ghoH7b38{^b{&75l=|Q5z{G{6ykyXKTXZeKA)Z2{@`QD_}ie$v8bXxL}53guq(Q# zTPRdvdvax0-?6K&r)Phko;&>L&FHP?*un||0Z+!@DL7I(hCICaz~toYi>cY2&%Sg& z_>x-O3J&7Z3F(0ClQ8MYSWFTwJqZ&ZpO}$f{9$VL-R#`X2k&}reTgpYiHc24K*zo% zCNUmXLTplETyhd{OJY-#;!|sy+TTx3zMGue^XOB{{i)c#1OEBVp}F#Y(-y$f@_ z3)x*oQsw)MRY=QWh+nR#vP@Y|PRGX4Ptkat@d|s*|NWR5h`^wb2mpW!7s!Y%bJ0=G z^wHT%);%lG-AR=b_%4lGCs*ueunA*$oU3w@sd|c~b)2nzob?xJ9;a&_rRkq!860P+ z?ZYcJBV|d>(j+IO2ofGUIrF(*-bDX7moTYb!qurk>m*Fi-c2O^n z(A-N^yCBfmPLLuvh#JZR7G4C1cM;T#zcu84W{aRSiV#UFi7p8+)+`9qJWSQNAkf}U zQl`0!p)I6KBUJX2K$Eo3aMe$+w4mmJ1~Yz?#tE**DZcs%uKv$lgUv+c`Y3U%jbet6 z`cR7YNuI%BhEiq7QZM}lkjn#yseu3g=4gPh)nyhcEL$KW zCL+IViL&HUH5pMYD2L2?-j0r?r4lN3TG3ZWD$t=Pi6+; zc>!3idjiE3O$fm9!pJ#6#Oxqq4q$g<_b5rtRZ^;kvYIOtbXEg!S2MIw)G-56(luAo zU8AgTp|{Rg*EURPwdZn8^CcRqO@mU*5R4#hTX1GiTFd_A=Dktn8)IvCqN}!(yG}-z zZS!DvtV=G6%IQxo8`JYlk~j5V>y^0HJ1IG%IiBAbKrD1f;MyhfJurFh>A8M{Vqbir zCnnbuljEKy@Wf=U4a2Ps!L0C2F!qeK48;I21r)o&J#wX2l$m$*Iv)g10OgtaJG-xP z3o&v83f8jpRx@>S_KSuFgJB8({W?2$>e3Y>8!v53Ul|ie*%gk;Ydsx8<6pl0Bm{S% z0e0tAwHbS%OhfRdVdRy;_?3a_7EuI;Sh@`Ym*3n6V=7c3u-TcJi93(2gH!FJ|HSS9 zrq}q#=GL|U!S2&=qMJLv>f8CNSOprmp-g;YR|cf0+lTaR-S-84VuPB6I&<|V%j+|P5>caMmSLbhW*laxf|2@0Q!0awV1mON7 zyEn=Zp+QhU?LwCN&hD!09!Y#XKr11;LxNU0g(OXH6{r5e?(*zTHNgPbmuIxg0Wmw| zSRJy=4jC3CX-1nA1IijHoWm-|==wq3vOo~iLlHGX0m@hA_G@Mg*w^mS%^Hy7^+v(9nmwkJF`|?K{0hjm08)Yl{YsEMs+=>To;RkRJEoBf{qmrhIikfIQD+RO zusT#2O`4WL+94_Tp209I+A}4;QK(~Fa7yI_t%%-7$~?mTKd~a#pAK+ z+r5P+OR0x)F#V~4tthvqD5u6qr-m@c`e6IED9^2=_#=7b3ys-V`YKK~6&$Y09OGg} znCbP2;l<&e<&i%1$iViv(4M5IAq;XoDQ-I}?dL+q>1zIXbKWoArMCgQ4^`cT+5K`` z-b8!ecze#JuG}lVMK=a(t`AmU?l0QZQ*RO{P(wsaIdFqfT4ab#5X8sn3tz`3X z;pQP$Pg7=Z8>_Q{)KEdLD@!fONy--_0k-Oba5U_+b*flhJ<3alY{} z&_vbf2%$Uyz9S>OP>}&}yt{u4GBhC}JSj0OF)_QU>gk8~ALiyRzMCw(^qlKy@!CvfBQJO<<~cLC$A+GR?$jp(z)5GtSn-739qbykzY+MsAg8Rp1=PHlzcWl zbMfue<|~h~%j&Xo^7HZv1lc)w8g2jaW3Ojtu20Qwd^FW~;dfkdE3u#gpIb~RsG#JR zlX6Rd2-(G?tYR!D2Tfwc5va*Ha#{+Olu9C}kcnwT5{`yVryM$T96XC(0FwUoW5dKt zbXG$GH8X{lnL^D>r2%E7(X!HMf>f%YW8=QhQ!}ro=k`7R*njsUuB4GnBvElh3XztE zrw?t}_howe`PB5TCm*}-e@HEE!eJ=HbP^$r0E>uAA!1T-35m(vg3@=Bv+ri+cHDo{ zcjHq`Zg)&W1?`(Xe=`t!-zfq@Jhs^+X{~=kV z@&AF{RhC1UB9)gZDlJwtRx$GOL#VB^H8QkOm(rcT#bKLgod2#t?7nc}!bJLqEzRof| zPSrlc*15z}pAe`XVX78}N`;v%jj@!aLv8p`3T)p$iRCB5@R6Wo3gmEjceSjz<(;){Ws07nV^XY4L2A_kGP+VZ8rD-^54^$s(&E^t+^ z@U_ozb^4N*W9-F{YsK+SpoO5jq?ul_OmBIXw>;bHM=fW0NHIN?IeyACFR65gWl7eu zdET0vF!~p=^ezbuFJ`D8Ajs$YFS1k>StAJ$# zI?YvUj1do8vq(V-@~xnio&HyB{w{}2)5Kg^cZIa7uA;V)y3uMiLsNOJm5O>6`fELm zZG3dsIqO+D8(6#PTDz*QwozVbrDkTMX}V6&+*;4v#@N=)*v@06i=UCRuSEdDH5TU> zgR_cAvYPR`j_eGU&56NHe z$M5sybVcS4TgDgKr<5dBZQ=ACA=Pd%^T#Th`a6VCypsfR{Dx3^g7qd7pn| z_gQFCW=;QymZh7%U7(?3kcmsErnyTxE%Qfq2hYUG*}087_L;ea7&wF|uW?seU@oaMJ1sx@iQ>G?cI=9Pbdzu!$n%HuOxwL4%-9VBgu@ z4nYFozAhXOFxn;x>;ra>%dPt%X675aTlmH3xgazhBaOV#t3oll9>}gOdp^T0`~t1& zItzS^ljFab`6mEyhuA&xAK3lIBbePI2;bS=5lOyu>mhWmZ|n{#{ORH~4>a91p6?LH zc1h0g$7Jk2b8Vj8zv<1#FHIZan3UQ)*Z-Z}Wg&8^lOxwk5Ia<3Ss|Vn_EUjIZ-XR6vB{#{^Ta;KG@{CqxUavH{8Ol^chk|M( zp^2)klC%~{8rVX4B;{xwa`a9)T9+&hY&&IXZL-vMX?mw56qw#F#eg!{0Ljo>q^K>* z+yQODs7dayUiP3$#-J>_Uyj``%j$#KeNc%r1hxv?p>G-ltPBubIFnV8Kd2%Y0SCcH zq?z47QmkGn)_^o?P>DCJleZoY=^0Sr4X&!(tC_z^fj0zd29ysGKfe#sH+Bb-1LE~V zb76Uqr1<^Pf&swpasse32-qFC77FZ6MGoXt`~mK)9$8keEUQ}$|HKd$5q>?!VYJ+}-02fQ{23)H^s8dU+*2mNu zB<2xodX8<|aB;Bw+DQJ@(SqwEMK?!^Z;ck;Szmf>^T!bGZg?Gey zmIql?h1pkz+Es>vtwUvqLj%HV2Rrp@d%MfIFd_0U!6JLm~*YQ@Mc%(-TsREgH`tiDsOccpRMDcZ^{Df zexXw^-jjcIpyHRo%Ip2P`-kf+(=$}#^W@?Rq~i-E5{ji#%cavRJ~oZeJ{ zuPaI^&n8slC+6|uvRE-0^k^7Eetikdg_6Bs@L| zhfBob5^*?mN?KAHF+KqwhsL0giO6VV6apEZM5*6-TZbd4dj7i0iaAXRJm6KNj*d08V zfBW=x{hen`$0x{zl|>b`JWeK^%E>P(s;#N3EGn<6sLd^}`T6{X&$F`+rl$8idf$HT zSAInkoyBLfxhyUZLn7@t^7HGN>FZN78y|meJ^veql|!a7iDU|e%%G5&Bs`Ubrx0-z zGL}LG42>b;u|zzcgvS%fI0_X@1zQS{g~QViA3619Zua@y+@AYyn$JH@<`rY`R2+_i z$5QZMiznmppiU+hPwyVv_H`O!_uWsv^#3|VDC=O5>2wl>MrGkh%%N?&KTm&sJ~g%P z$%p>?@35sUWCD`{s!GR!%LhIK4nxLai76?m8Aavqrsm$x0dL`T|ILr_d3}lTcx)Ud zJsz79k4cJ4PfNyQQ%OMSsl+rK?e?!v0kyxMnY;OB>eidtyB}wN`SA77?Z+4zACr)l z2J?Dq68IDrlY#@nCKE7egod`BkI?krxnmFCZ~N^FrEVxbm7bP_Pf5YY#iho?r^Li3 zBjXYyk!UQ5{_xfNmveK6o_!p<_la0K=;$8h=IHHg>uR&sUN~bFu)8p9<~zHq%c%dA z-Ipnl!qqM*1~L0{R>#?nn%UfW1_t*WHf{4EZf5OMzN2FP7xk(j8SiYhZe=O>2d zc!tgep7v#)(m2cDG+(nBz1YEEp^mJGn&e`28Bt{^F*O-cHR&IQA>5Lq6od8 z7>d_;`j;}b$N7pEnfj-AY6W3S>~zGGr2s>Vz!K8{%>#WU`6p>fi>XR1Rg)4?TP|X* zsvPg4ye(DlBwPD(rpg3Q|7xc08J60nR2ih@A~^}rWB=Szv4snzmWruKFV=+<$mqz5 zLDNqa#8jmgh(i~-aPjQ09`RVc$tY7G|?CS$>cxkvwvgrcR6fIIwp$R#){g8vg*3B8oF|t`ii8w^VT&r*CXlUbVXydWUH9*tcQPITG#y?8O%u3JPO5egx*TT`r-qSuL#?&j+DkRn! zjdeg_Eh7@GLlYthS)l~JKbGT>NOg@Ngc1b^W>Gk;Fp!W1@ZHQWR!S2ZZU=sXlCG(u z&T18-weX0$P!PK-8(B*0nu%+zlF(SGvC3J`9--@=WQyQAlWG$hc88a)cVaY0mhJS( z7z)W8^rkkf3TH~Kja(Vb4B&L7)bC*p9JfUC6xN05JE1kL!<ksQtXT(+k~W=dZP^N16Mi+{fXTH zS^`*{n`;~x)3tC`UFE26=eNQ+*xW7n@aYRM>jHy@m%mQWe*8Mg%q(8#jaca(rD^3W zzsgxH+P=A zy7&C;_G1@}JyF&OnBAlPiQOMU><&$e{ej)bZ~wvWU;_-R|B&6mAK!mw zcR=bA*lIa4l!H%(0O64|9ttB?ptPy6x|PVS@}z17ak?WNRwMy7> z<`-8KsR9aTv}^JE70IoN z#4c6(pd7hNhS4g+hGx@BFuRs=yCk_iO3WTb9%x3FBpsRxEKTbKlA(0VP}*dPb<(Nj zQVIFeahZnkj6M7JUfR%md$8{IXz{JFqFZAnKoh-rw?@m}AMC!~o_#1MZ3r7&6>6XB zW?JlT#ql<$x|-n}jMHrlh|Vk7-s?I@h>e#n z4*+om;O~)}pdAuGc_`gGpm~7x@XDzWugk#sktEV9CDJMsDUI5^9`I6~*{MuzoxjCl z%ihqNv7v|1QN!wPBDL41)t6xFN|VcSQMp`X4hNCR3ZfJJh!{UYx<5A6FD=4$;1>QA(a3rjYt+M2}evwhmxJgp;Kd!i7^N?G8%=5jzgrATJ{|| z_~PTS7at#df+EqMefrwa*@KEtEUjz!{mt9=v+#)f&9~%p&tgVTh0#kAurwT=NW?+J zOd&9`vWsrq{S7=;?|+^gyZd|B+1u3o`kcJ#+?)~)N06PFU0PC_m!F?gTu8~}?>~9$ zAr9ua(bRq)}vHNN8cjEQz+}WqE4?K81 za^S@Jod>q=IlO((!7aP@Z{2@z^Pat%cJ4WN{M6kS&)(0@UjH=Hd;3$%jgR<}b{3V* zrZF<8JSLepwqxJt>FH-vGkczX>AU}xP}aqwaw%kLMOEecEn5aQZDHpWV+m9|CM~C= z>fPiV_%3!l{Lp>#Q(RGhY6=CHipQkl(vz`(!c&tl*fcygjgXv(tE=w-&t>qp=lIJn zIj0}jUV3`)>HG1wA1=K4nqS+Ql7Iunz6*~b;W1=9hDyLu8aw-5PfmTEoxA?~$8*m= z?>cvFbla{?TXt^Vyl?ZC17lnF4s6}oy?M*#{rk^fzV`OZ)NiwMgTH?0y!RPf)aUFT z?cwa}V&`sa;b3WIvu1_GDg#p?yMN0Rsi`5Wp(>>cq#~&Xq%5JTuuKU`@ea026iw7t zx_gAG8e5pGc2H4WF@KB0HqSW!Z4(t)B(iA1B6~HZcC^NMp4NG;<^)e?oTqbcZ$x2ng?xN5Q1GVCRRO|nZ&EMrh)6iGc)R$M+l~>o3 z*U(qcGEmSmRMa(5)LSjDyGqm4R%?x&)>;Q`3ui5JMfTa!x2QBLJ{_64ez=2&d#CS*1~c-Er9gn9OxS zNm4p%l=RHxG>jEAR>NTqghd`kqw9?c6NmiZG)0Kt2tWxFJBZIP5!en~;N zyf8|UM;yb_KidGrMJQWjNU) zKF1<1%L2u-M6t}n3AQm*dlaRxWnc^py_si?~zb)7&{boT}X1? z59|&~0;s)u=Qr!XMB6B`zGu9KTkNWE>KY__4T52bX4%AZY-5@0A_?X}sjK}GR|lk8 zMv|?8ClH0(xc>xrID?PFl|k(O%Wuz}BGatG@ld>b1Rg-VBa#AI0+j&8;F6%&!SmOg zkz~s#Dqwf#B)&%?d*{h35W9nVzS+xle~EXG!3+MG-BpmhMd;b09#XP)bVxUUE6AoPZS=w=$+e@v2EO;piiD!t_bmcogA%R zf!?4%Zo3TSjiGxSXvwEfR^(y2xWnvrf2V|%%BDkuhGXQ(^g0<#y&|D`c~Yfw#m?324jEjd6z~B++bDH1M9vOP4 z1i4ilTqdrME@kF`3V&EFXH=R2r`@CjF9P6uj}*0Ciqs&5t&mA8kxI^! zLsGI@TF>p@c4esP#z^Un;i6xL3c>clmYT;q8}5#k9xh28BL_FdxRph^=R^Wu)i~Hp z%ga#7PIbA1x}=+~T(r4XZlv>to}#CFJD>0AeZFVt$@altH+A0~Yn|w*o@lGQ+*WzI zBI{yx?zP(ds}(sH^V#PMS?9~R=gPR}%Q@qfysI^W>vdUI>$4^rv&NgV$J=u+b>^P$ z%0A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

    XM0 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�_Jo)#B-5y_v(L@jFzVl= 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∾&T=jcEop6gpGd25z($&DHC%%F1bO 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
    >y)Sj6E+2pPSJ-b#y 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.(_`v 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
    X~@sf${5!Fb7kenyr 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

    x-I6i&QQ@@0s|k@-y4Y#`Lf#{A=y{2h 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%0D8GtF!KK<$BI?P(+MFIp}7kbSF^)QE_dBYHT! zTF1D-$NYDZ<2lzT#3gvtLfZHC2#H(<*1A;+2*um58UP9fcEfQgSVr=UUB*f^1Ss!I zVhs&gV6A}HOLL7*v)9xf0^z_U3V=g+F~l1UyIZJ32CZiaZ@=ntyLumg_U!Ym-m)>K z(_NE=&4%#RTVLS6zl1+%P*|d`(dK(2^k|ISlsF@P{*;;% ztyA~)yys@u-W)sHePpT=)uM@O8dE7>xnHv>8YgNlEk%~(x10%AQbv6mcyzlSgMx!h zU2pZ!G~Wwl$(z>?! z41-dWbf-}-k;$zt*Ka)g2Mw@a2-t1hq;Qr~cxMo+q2jXyB6oflk^U+V@tZRNuKU5^`3<5mrhWSYtH=+ zt3+~wgr4njjHA$>CmJZTpUMh2h?Pz&tKe=DWh|tdFU1UXx)tSsh=Kf7lfeWQWFEMx z$PTWs=r(OU>ZlVQ@W~d!5)yO%DDDj+1Qw#xX7h2FZiI_%Ap|Y|cp2(iIT%Ch7LY6K zxKqQHzTT@HVn1PBWFH4nlO`A)00?ECylM+Aq8=9om<5Z?du`c;*RH|tSyL7$(B#6; zz?iMQw{+oi$!6JXIuu~Q|2n+$k=L9vi?(76+C4()FU4hCNZMlD`k><|$@~`T0VA9?RdCV(1=>lBx=v5P)BW0c=!cKAPZjacN!amnN5ZZaVo; z^zeD~<)qyf6)>hluv)3@T4@AtL&8_V|@fJa_Lv)t98Ldn7{qZyd5p`CBVSA z;zO)~&7hFKKQM{{c@x`#c58kfhY#f>80!Q+Z9kA->+VYh-V{6L@{=N2r%h<_-&JBbuen` zcXBmkknU3A!{*_)CuF3D@N)@ZTV4ht)aNGPL|KN-4i4bp`>M;4zl1V^JpAdR-UE6h zI_?vx+i>J!)H(49Pa(=-8ypd!q|u*VP(o)9(G%y_Yz&cf$C>@)lJaL>$XpP#gXF9t z@|juC+e4y+thuk^Evi@w*P+slIeD$}V@{{<6l9ZTEk%L1ddJeaWGYIE@K^_yNpnXG zz>DD@(x*{gHoMAtVlIrLdEHcXFTeqO5D-e4D_s#(;Ia_BVA|3}9((ATmFxkcpF$^a_!a&VLI>P!f_a#yDLDH{P){G`SmS2~HEFn-DrF z_wm{3=bpX&y1p~eoooQuA`LYg_4+!-e(7m5&-sMHO<@GHY5nAu3gJms2TpsxAanW^o#^d%x~OQS4*0#|-3PTNJMnScp|#;QtG? zZoE|y=t^!*h%vH)25*l^q_U(ooa`8_K_72X@vIj%!ejQ1>*yrGbRlV+Q4zrHEp)h)Z>V2Tx)KO`akOtdSR zq?*&1FZ;{mG$qvb+-<GqKx8MR$u9|f{02~G4X7yjmVPLot+@q3@lVm1uC+N$o_s-mDKk;OF29}877M`JiD zor*_6Q6OMvD@x9;pm!(=JVOI};SF0(AmP<{z8+TKEg#tzVDU}%Dd`oZF!@LJsp>C{ zW&)6~W(iwhqGyn5#zqtOTawX^QeU;Bah0Da;8{eB;CWVvj>R>?Q!Ez;8jfc_E!U%5XFY zrW={!!7G8vJXp*=;2+jtELx5XsfrtmL*H!Bj?z7OMi}{Cyw1$V{~gG2%;~ z2pC(4B89@ii&+_>LC735wF1ggLuCCcyV35Zx1XP9veA^qn~c^(5?FWs%` zbQL#FR#WBh_tZhi9l_jWaiIV(XnCVv8AHdIc5`LqSnJP>paHcUf_430=4ueT^xtjs z7q~efl;dcK2yQk$7I4nbw>ew_Vn@Ozah{) zjz(?6IEey9f7+(Zl-F)fvaO193_^pcYOvs$ZHJ7x}lzhl26`{WQ%}IH;+H%WYvJzMSJ2OerZ5ivQ@CSk{Y2W zRs^cZV!}ig!W0s|0RQBkMJQ4v!r`5{Re>7?K!S3vJgY7vy|jShE$Tp8N+noOT^h$R z81lC8CzehH>{aB-;R!A8Vy?u3F;-`R6}OKXT@MI;S`fJ%1*8UuPqHHSR3v;=z){fB zxlIf=&TD_ka(Gxv+06iN+$3P#CNvRWE;pTbLc!aIjZV0%0TTxm5MIxW90>nOKgF#K z_#X5AeD?1EtB*!%Yi~J2{cXR_JT$M3WY^$BJjoB&mgG)-;1fqn)Yeta;*uV@<& zG8Fl3h@xnJOordT{n{|V3zBxDAek;=0p9Bh_+7hr9=HVCqijOA)tmPPJ{J*81WIm1 z;IZ#`(~xAluG|K0Js?eX*(8QlLV`_{Oc5=t#4FZbk~Kla^K6zbt!-;u&7(kaS=-)< z+K4uS=+@j6?06xOX3%OSu zz$sEIrLda4rP5D{N}K9rH25>Exwq9@N*GDb36r9QA#d^x(R)@pS2c6bjS!5bnaF8u zN>Me%Xu*-GBqV{(yf5}%D$Qymd1~ny)vfQ6BJc`tLs%EC5;&K4t{<{Vk0aDD|D(F2 zhY5EUv3)`n zrAUl@6|_K_vL%;^7#DqPx;E<#4b_Pp10%l7r(^0D(6KqLEELT5DS*-Q2d6qYUOHL#dbA`9A3%dz&dSF_OFB=>zGXm3V)nHDztr3Un zU{mTwq>J?&+s5PPRtu(LAdq5bNcQD*wP#CQLmC&=DyCf8B}x=PtDgu_4;;+05$0_c zX04+46BczY3#LCfLsiFKoKC&C@bufPi3)TY3(!q->4M-7FiwaCrSh#Tz2u4>gG0M( z_k@>_bs!_b+VYSoh6M>isdjs;z{+lZ+}5{XGUyT3)u3w`|$WT2a?0 z$jUn3`faa|ZYYv=X1!qeG3#~GIm061t78;m$Tg*{(p*c@tZx!E*d;?7fd?>_tiW|) zbpf0SXFQQe7m!x?-4fB@L>KMOhitGy!09dc4^;-#U+Dwt6EUqPrky9l@#>!Hm3gDG ztS_*t+fo#O_PvMDifF`>)sidOsfF|DHHpa+OO`-?L53X#HPj`Y^-4lC;ffMtaa$7A z#`rH5mDyaOc#iuL^@`aXi-Qbe_%A2>^kf8SXR=I9=h1Y|nC57K=a(=|_|GX^1Huy- zT8esYk$;-qO{#@&hddRK6DP%)KJ#6(k2)0O&pp5mYt4ETUYYec!5L51R2Q`K9&88E zvYj9Id+<_$kc6PW$vCL^7kOC22TmE1c31{L|`-tkg>SO29wc>q=&=Dv*1pe zN^HLqqrP8rV9wYokH_A#q}2tX347?eXZBMIo{sBK397jMxJRp| zw8Th6@BqsJmrCbH)hDVc!`$8GMMhUj+pJlT*0h_X{Uy&&pSdtB23d;Zk15v;vvt*u zVLgVom~)wnnqGQtJZz0>wy?HmrL`940!0dLgWLLGwJ>H z$jZ41ey5|FF?~pHU@34YGEOe0;LDpF3x_(Zks6WtQ7cY`7DEbNxx{!G%80_qCU~=f zo6M{?jF#gM9qt$ey2&qD7~7Qxr$BtPunT^%;a0lc>unBHET!NUXFkMyybP=)HPjC` zfG$*yt7~;VPIDkLkX2#44656zhUZXm{bYX)f^M^$sL3nxk5~At{5fV5;iwgKP0vJ zYpXRTvCf)_XrYmi-=z6xyFch`fTI26fcbtj`*}zTC>X?1x^!k};i4=`Q)+}?#mQD#x@zkXmg>3zXrxYC-&Vj_NpGE8_}|o(oUs=Zj4RGLPe!P8oJ(`Qy&{g)8+{U& zg+LF)Ebg)&+F|6pZR^|Xdjyb0Q^L~wRiv5{fmaxabpc7vvYU9u!!dN5qFc{+B!+*) zbtB|q$C3xj467`nP(GMMzBs{u=fN&hHPR$#;VkR;0IhyJm!oQ& zM%aS($yh)3xMU~Cvz&zb%ooBll8>vIqBP&-0k52F7iW5cbeK)pk__Kw7Rj0zgXt+{ z6e2Z-#SGBF`F{eDrQ3)s2V_N#b%4O!iboXFUr|M0c`K9v&E=?T<~n86O)M=a&JE>| zx&++tv+l)5+$s)Z4pi;%2~2okD+S(KL0ie^24G`SIpC@;?DAemVC;U;N5JFXgU!uXtNn zy?g(1DHz!tl{1+iRfTu!D@htPSjW#xLoE@NjJ!p#GjuXs{K(ok5`jIRb^zE~B@Tgw zmE|m}TJ@DUmw9A=V;`T_ekzYByCa2X3$P#xq^94~TW8x+wGWXecwLckvV-zzR2b7P zwG`G!@pk9NnmGOw+tz zyCh21-Z%ys0gp22)PDE6&tY>(r4Hoy9R=1M@4b7%b1Lm;(TZYH#^QjiO$@^&7R(|| z`7eE=?}<2-E=*>l%S1xq*{(iEC+VPC{9);rrso25V5sn;>}g3V#j=3rCT|5g>xEp)BQ_#G1-w$)^v zvM)2Op@jeT&70Tu-?#Et$dEz9=^o5@v&c_$bA_?SU~7#j^N~k$aPpwAhmMWEH=(jZ z1a6uraKFO5G31xLVPwgCFL$6XH0{5QdvEaH29U&N4P!2{JGP$-tWN5z zQxX$(mcF&u{Dl?uv?Z1c5dnxxaosS4wNq)R=C006vUVg3{@{YCX}ioy0|S{Dl>ucK zZL*y>uann15w!*NDT#EzuRr$Y^vUyApGSM-)2A<Sz`17S3h)gF8Oe9r08i&o64+a3f8xC%Dcl1VdbRjKByBQw>01bqZ|@0!a}DOl|;k{aSo;Tnwe zAiho=DR;(~ZcmuI2fR|rL`|XFxKW#W^m}XnwI+)hm^G3T|mM`*52tpr0;@5a_B)n{b`H`Bg**=w^kmFt>H6WB&cg{iraBCJ3a?ar#sJTU1O zbjcism&QGT368H|V98z)JCax4Aiw+@!xE_q_wnYJP7;Vgv)nj$(HpwPRv6oXu82pj z;Js^;B+tuCv_3qOOl6bVZTWeHhA`eg*}&=X$^%ta+(>P9%-r}6Vq9-=5(0^H>BJ~* zq;-5c7%$KVH40Qjuz(#Hxc5X?ZwuSRiqpY-f=b!8>eeQlD3@y}XE?b_&ai`e?r9ot z@Cv)?Uejsk-NcsCFJ{QJKOXW|A;%yhrmRSz>>w^!Yj_m&k+97FB|}w&?IV18Nca+!PHd_y8|%^?QN+>C4=4_?A$bE#nI4g9E3o%MDtHeBP2*?1%Rz(oT3hV@mV)Pg#rbtxLW#pD6m9`8D`u3 zfJv!AVjlJ9^GPe^H1%sX(oj;d-=s~jBwPF> z;KUpU5rOhP1gaK8AHC=@+Lrt=xREKe7CN3k0AbGNLCqV?a&@4IgH8-TlE~R65@59= zfWSK5fH!CyExke8bskq~v-SthJrhqzU+x5ol#Rs`;sAwzw`wY_ouxysfB*w zOkV+OPW+9+W(=bl>fIE!fi|2Y^3t>e#2WP7>S1)Pi7^adJ5zj4J7Fms*W^beGZgy} zsflW=SP=J|y$6>9CIcP*4~7Min8FVEq&)pDl)-6I;Ieqb1Hd&HwIH+#DuCKTndW;9 z-`Bq6=nPBqPNVuXDC+4$>^EUd08IztQLD|PA#ddVI)u-3CuCW)zH;qq1Q>AgYSRM% zY;cff{l#?jAuG^uxSP~XL)SK`Otl)e>7yl9`!Ap^-Ad!rSo#*6Up#9$DX&a{x-d_p z?HP`RMaH6NgO5!2#g>6y6jcvSxe)<>joWM6)b>7=%!=L16U5g|skvzfaiF|OQ*Tco z1S%bTTI-gUCZ`*UugJ<%PCP3MbLqJRjO48Eu42uG(?u9dZ|K6jDOOaQc@>K5&S&%K-BbNb;rz_ku@+s)rbDlDFQ$M}P6>Kif@6hDDueaTSiU}~OoucS6KpwBf7(Vp8L#g_!@wQ{dO+udjFMmnK?HGAm z!$ENsianO^!xN)qFg+fUw!{V@d&CfGj<%tEa@0H)Z8QhRj}g=e}#YZn$zw{I3Ra0%kX*wdpEIeDf5-@BMj-C%gq5aHe zsXk7^vrn{kqYu{Rk|N}ZK~h;&2xUL28!~3;lUgnIoKR9}!`WP!m2D|Gcb$2AS>d>H zh#I*^C7N*jelBb@$)yovUP|$*vP>CagjU!Pp(6Uj zkOZbe=~c~@7O_}sA_)u^{BnTs9Utal_`hGqEDM-!snhxBVL5moA#H{ zah#dTSfa0rF9|P;uW2xF?Y-v>IG?naTblw0_G8Z35FaMD{<$lMr4PbQMK!)I8p{v# zIefS)ZcL;v$YYT;C}7CNvl0NHVW=YiN`#a=PYnTs^rYx!5ixdBY%0sDKu&*Yd%W54 zc=QrsqQ`J!c~CaSAsQt?pwJXS-daBY_iUt~n`Y67{MAK0z&A=+YE5>)zD>$_>jZ=% z{oQ2~;S)|O*HntjHPmwuOt7GBtYO5-Rnd~^7JW{oQlWMu9UUU%PO2hi7Zy7@U2T`Q zsu^3&2Rm+E+5k&I0kVC|kgvUsPQz2)A1}3s`KfBN={b0fTv^C2(LoGK$AE_}+2YB! zp{Cbpj&y#=m7k=Y(Vfc!E+#<;xv~UHT?Iozih~25K!E+*Y14blriCX>##M=f2mXPF zlP$RbZH84SP)4P5qH1e_PmlW1q7}pi$=qtQy$4(5WIXo08yCQAm$0SsX4M{0CJZ|hV@5!!H!VW3Z6s228*J;;LERbfL(S+T2LqMLGlo=2Iy)1v>j^{K%)-hsi__d-S(p2V( z(=2ZY`0t*k(O`nMZb&B%53Z)(oumw550^!vgmjYoA5RvoEBRC^%*^|SeYxxsBd8VJ zR&fUluz_R$5G#}=w-N}~&*y$Phd_x7AZQ8jA&9Ycn=Q|ARR)7;2KjV#HkS;q)vB zGfe?tH<<(kmC7p97&9z!PjN%eiIa0<#nDPq9mY*=i4bFqgv$;>28>om78O@XmJ4&t zWB}n`2pJv8#CnJZTIScSPHh9T3_0Gf@{J{Gp0LBwPeJ?;O zHYxj=4<8kFiIo#X=2OsTb&$F<#Sw^Q`_Lu?6hVD_7G(9~paijmfeO7wzwO6|s410n zP#O%Ncfl6|)Au~k6vIll0F;2LVc{2On)N#D{T$AG&k*6fHv@@r@N+73o5E4Ppc03lnKakUl>4W>QD4($3&9*1Xc@SewpqV z7$6*KDPCY;jr7S}oLn|ISbIe=h~*6XA^Lg`y^nvRD9n}&nzW}T z!=?Ni zYSnjz@0JwSH1~UaGo{&Kn)*n!MK4`z129o$%g;;T$_p_iAZ!qS9MR0`StC!j>;W~zB>e15Y7tn5k z+=PK{Gz`RM<18qRPdcH&EM+xS*yT8mW{Z&E;JbKNT|)!vTYz)@K}+v}lo&6$gNAkz zWF0mPqIQMhU~o`5sLALP4D%DvDcy3u)L^8y^HR0}!FSUAx}u>!{koqDK+Ntk1Q*l& z`b;&G@tSW(TWNM3pzn(6B@~jl_j2|5GFEWvZHs9lyCqBvDpf@p z_bvUrxlnjEtds6n=Z4oIQm9V?wX9K!?2X)v@PP^$#5e4`!FX)@176uOLO4pKbyFij zjZ+xgx-Shs?$?sKmI%pB7R#ca5rniy#eE7Zp2R5${Ky1RgZ0pY%d`bavnD(kzZQw& zx^PGJd1Eb_2VS$pRxKc1*=1jHYM)pyAtU1=dIm5^yndj>k=Zd6+qZ%dCQcNiUK1wP zmo51uruEwCre};NnMj!rA|RNC0dA15?@R#1UnO;(Eu(&vf<5NF@O`6I1!*YLmJeHW zwQru1U|Mn!t{AHc`Zm@7BJ9IVA8&iCQ|=E0QEvc6{30`7kR)0EgIvyZxVW2~;MF($ zU2|{#+?7K={jz_Md(?vwz#4ZhCoB(-mQ1qG6%sZcJ%~H8PW|yA6inB%D6s?dbJ!Mt z2y442ZLZU6WsAFs2|qxioedf1kf$HsBat)m_w0)d%O>$}FVF}k0s2O0{QP}$x`<}J zfyIL60n`9TK)Ao<2va})c9R!`|K8FY^SO~8y#|Vsf6~d`7l3nT?mJOZn^_fI7zL{+ zd5pA1r-_PP3H7+P>1Za$mcF#;7OMuK#EuvTgRF>-W@Ewrebp_MA7V-XE?WRjLNq_v z0TDcgUG5;THn~`Xc{FP^10!e+2$f5W18lbP{qv7Mf8J`Lo=lgEhXg;3#stNaJ}!cX zK7vld(OL*r#30KUX$?fuK>6csJLO>iLo+MG{N{%qxZi|*GvgNRYBcgUZbFTGM>Og# z6@^YPjixV*EwVQv)#1~5_~iYT0lCvDoDO|=L_$HS;{~aMp3b%(ejNwxgyxG(~Jh#Y-ZD-sq#g8O}m%hG@3adb-jBc`fNdc>}O zl*u9|uZXt{`-|gnnrx10L_o#QZF9Ai{zeL^#8cYzPyso#9^h z@bSpc$RuTh_@RvH;(KF*kQYm+5Z1h;@?&owSBK{+Qon3J@=tNt0e7y>53Qy|Y&wGTV zMG=hhd(AOBDHwQPJeclzFLq?8SZeH}>F0T_~YT1ZsXG1Bi!TEkw0A@bm_3 z7CtNpcXb=>p@dUh_ResZ^dGCMEhQ{0X$z&(9DA?U;kZn`j;?25aA2efqjC3%Uukx> zfd$VP?m621>jMItK=7FM7bv;K`%poQhX4w`{fq&;y_l1QL6UZurD1)0O*K)pLEN#w4^^T<- z7VWcAl4!jNeu$Kvv98%dPmLLjr)OFVwWs;af4)lemrg}v(dPFKZt<;IApH6n*P#k8*ntw|ZN7hoxY>A#EfI5DvCDQlnWczbU4 zF}hZk?$M`RcAOZDEH9Fh!8=L4wwUn78J00cd+7&rZXSe z;E{!Tw$Xq7^gW5Bf-08(o-C%!)dPBWUt|n0iQkHWVsz~tqV^cDVx5dMuAGh^QECku z5K3gHiR~A}5V5iD9%yUYOzp%Xn|e=riL4ur_)B@@W6^6?g@&CZDQ{4vvd9p;XTRI( z&b#qe?1pTU%fVZs-Q0ZN^|zR;BHFE>(#d+AUTDEMdnVuwzNU64>wq@C$qi=iIzb zt1?S~EHNw~z`SSIn3Z|+4(Fb;j21^Lwjqo*rZvssR`ZuK2c>-jzxYs$il zJBY@^PesvF1z106)|4{9WEH{nT@hAfTSsjXRz&Y(-`;VoLSVOxX8kniy-AWV{V!a; zA-5RDgAi6ma#diW7GeFgz9kzuNC6EzBN=((0P`FYgPX^>#O??Y5f=m0pfN z-AJzQ-NQA%tJmZ%1^3Dzb(n~g7Wedx25i7z0v;T=E|+D>ELZ0Ohgw~@!kNX3I#%om zEiF8HKU*!wQRqu-z-~QgYChFaYhfJlHFTQR)tc}&L__9QPFUVIV z7@_^{*L<`LU*ubj(?ttjhG#^>Q&tK_(w!OgCuqM01>Et%iWlUh!n^NeYwu&nnj|}c zx@rj{Av8}bIG0PxGSgdbv9un9Q&8y0XVFvZbdgtFNV&mzt2+#^s9h>m4*o;dtnR>Y zg+`GUx#!T&Pf!p+jFO*v@)3U;QB(m&bK)IH%2QxiM7S9293e9xERXjPAA~H;hfpjg zofk$SG&s^5utx$p->LGUDTD-`J-pib(II(-A*Afit!nGazrV$p4lt)LcU=xA)ruou zCik==?|bj45PlEKBK!s}d2(TLQp^En@tmfIVg{`TsC!cHIAgt|@|4<_v!Mb5Ao&!9 zy>DY6qW5J@76BD8A=@0w4elSF<(&E9o~Y~1j!djGPhb4rn{T(x&@f`>JwbFFEES01TjUI-Br}e7F zqxl}?=s>%E;rU>DN)$6c?qsV;2uEB5oX+IkXhd|!a$p3q661ZR`20Hl$OVJ3IC0>o%Z3Ogdze!a;vBe<87saZX0%f>67aS? z-D(*Ci>}RoJyLY_dtV^s31MoYg!Kh$xzT?BKKxTi5*C5v4sc{}Zeog^JN7Oi2>)El7H!)<53MrJ`an=0$6xCZ93(Uc zr}6G3FKk_>+IQ_S3|1%$F7Z9ysV(L z3XWXN16GvMP|!;`Py7?+fyOO7jxI7fh_FT-b>S@3F&a&R{(b|G291 zgcc9Y;i={A%O;28FBH`?#NMNjqFU{Ew@LNQFG-PK7YOK3O|JHO_9FyrCu|;F!muvR z#xuOcbjWVtW2v4rNi8Ypb-^}zlGYLYUJC`Rk}}`2^ii4&&@C(U>%N5;;ROJ_%M(L= z{$1Mhif>#D+d!YC-@j-Cj@xC|ux7l2EzJNL^q|P`6iYdo`pA+-wBr39r13b+eLzUI z?kY9~W_44b>KQA`DI(_s1nZwpC52R%f4miv4nD6RGh8<}DHU`BL+sm>j!_2?ckI{N z64A$BgzB72|vsVSO!Q1={)dIGrzI*lVOYNl3X*n{;U``n)70sqsx;!#Ppov$T z2yjdm_&QeiUB9I=4qGx4Z)69(@5so?*)p)CvTV(Qh-xj-@_!jki9qek7!7>M{ES;K z<@)9Gn*8illapX?d=Rkma5yAdJHmoX$|P>-le`5&DF|2@v--ZUPuHfj7-<#WeH7q( zZt(VpJH&^>41KRmnbrIqX5#Y`0|a+h+y#gEzVmII@@<3TWO2 z5Aam zN+e`Jx%z*WJ8nNyAxa+gmw4{6?Z4~BW7W4Ex_xFmW^t7ysHgImX5xMs&qs2-<95jP?i$c(f73{xNr{;&B}+BHtZMx;%iSkGFH;)9kv{dQ91FCk7adfeoZ$&yW+5xS9j#?gNBlAcu30BvWM5g6#l|~ zD!#Rn>2F;RTM5rY5dW4pkv()b++!L6_TJD|aMNOqn%x5HSZekZ$H~$)O$pzCWe}3& zm|CzV1LiB{V`Qd+8b+FZFd+y=hqEL7gV`Mu+Rn@FJ8gbS;xGYv!D@|%<5`4F1U&oy z2{xF3-Gw!qbS?C!{%2<2m!}fD-_9P;kGh;VQB1c$ed1|0{rN?{XcEk9lgLB}j-2|| z=0i}`3jq0X*?}O&$S(a1g`e+04b8tF=Ij+Ftbd%(+Cl7k8YH~}Mw!hf&X}E!pT^S# z_j%lv52FtW_*W64Xc$s^uWj2yW1wC6DcgQA`KK@o9_c+aM<1^Ml;t15o$=8%FO;U? z;!r>vJ`Gp)v3jsWcs;uRstb?jSu)41fCF zSC)iKVsoptkO4?17fqu!+w$ng8}S*fK!V_e3FMs&rU-umO$4f=BVF6klRBBrCn2_` zzO@qF?dIH2=I)yX(im&A*GHeuu-P52+BK6#rUiQ#mdByyICg8v!w7s;3J+|yUq@vowo#NgydMeCB1Zi2 z76LG16I?}sXYiVnTC=ywBz4xl4nbM><}A&fsw3MSK+C}5wcXdvEoPo1Y52xEk&0Y? zv%=WaJ-eyzvfx}7T>Fwp)aTU|LS>W{tU~V@!p;ioPBvZ>;|9eU|KE8|Jor0xe2Wd^ zCqH?BhoP)7?|t*xIi@BeQ!Jiuqccjk6nl?n#TClGa1JaJyyHB?MEPR8=DM~z+90#j zN8$ibv~!0TRNur@!UbA!^}ZyAjqO8rwc`Ow1B#%yW-rwREVBJ=Nd&EtIVsXyiwSUL zK~VeV-TC+1TocpziQ9N)qO&tXN|iw8>2dAb-yttaQ5g|873a;^j4`XKNKf9}uv)f% zhRz49K6%mCKi|sdON>KnFOMd}nZGOXtLcQ>EdV07g~|P*F{BS}a&7@Dj+)bTQf?D% zSGyM24J@VT8d8Bh+upNn>4!9#{I(ZNejvvsfW|Bvfd6?gpN_yc9H690UznO2cn{fR zwms4fD(z5-RUJrtVvck}2fJa)iboG{eHX9xpFj=c$th9FQzR&8XF-2Bnb5~v9G@YV z&xXRpJ=y+VQ5E5JDj%`+K`9S69y!4Asr$zIV;s;zh)kD00<21W9h6BxL|QnhBAdZ~ zXq61k^c&P;Am>!?-+%IvAL^z%;8ao_@9;b0o_qkwhrG~k40urqy6{x>&~bK{dnM@y zpeQ4JW|KmH@tGl!hGhS~Ke057uEX_=-W;}}^UJT< zhpdDP_Lg}2EX7Xyo~E`$p4H@-WYw3X+Z2BFWIPSZXDQQ1AG<)vr$ie>B$Y=bKWB;xcrU>zDlldq_3swb8V@B#W z7-}oQp5T{V_nG^>YZbn>D*-(*K}-6q$Ol1`3`&FJ{EYJo?o!CcHR@gj|2fdybTRav zKy$Z;OO)w>z7K$%<0{PYjIbQL7k00LUmK*mCxOJ5p$t~dnuDW{Y0_ExUKA2V2zQ6~s%m7z`& zq{9P6*bPZenL-bdjt~{_EiDbWUO5mrn~wd$^*Y7Yg$3r%9|b;4hf%k=?@W}bi~Qbh z9@@GkR)-tn>!J}_9Ga7%1R_ij{OzZ|qLU@@>~-cS8yGuV{IE$LaX!NA%%Q-88+u|F zb~osKZ=0Abvp!d^LV-DvY<$Ve!`jyHD#}Fugj1Ebq(dffm~X*8xh4cFJkSRP$JMsa zF;TKx1rG@!M_iURv!Io0(wN-JodyUN5*4Yp=`rG*?qg;RW%KB({HuJ;D!t;uu|5ND zQqqh5$p?&*cnbQ;hz)VPddGcsO)$9XK`^Pw5@E2^70CJmCBD@0*b)3qbG;U#8YTtM z=}bIk&>Hbp8dG24dAl-iAuVk#-M+E(0GRyB)FuVQwBb8_pL-qNMXBwA z`(*JN;v&;HfY)H);XDB|bt%OHO&QGU< zW@){zncsBv(cIvQS4D{{ip?SF{M;&`kYXu=Ad^a1N=?JSh{953sc@`FG`fltgAM61 zX<9udNiWVX5r->4lniWX?UbkEyj2Vla$g|;f8hR=V_eNe^`sE+(;3OIRjN8BLUe&3 zDfl$*@gw%}2mJ-7p!_SG5>!-4AEAFy?l#L#0u0Y6>QMYBO;tmKE@e>8Zn6tByrpPl z>+TA6N(hTin$fz$dd{Yyp?wptzjgWg<@^1Kx!D4n!6_4S)8G4uw>OJTT3fR|9 zbTpR?=JPS|9Ra$a!KU7n?FrK*9*!)_@RTW>r8bO!q<%#3e1FN^@?e#}<531>6UdWc zFNUC%{2V?0oW$~TAwQSitZjYbXfVclIG_UYPqQ_`6Ai)qvk~hpHc&;v26+n)z3fff zhQ#V3q*D2Ngufr(ig7e1e`2E0C4wwSoGLK?Z05$cpw5`uBo^qjrMnK^O2UsHmh_nG7eKhkGYfu}ruQ{5!Bi$~}GaS+TVUe@3-pN0w6)n2$*H`H>?IyHZEk;Gyd0wj6C@E}SpMfiP7cE!P54^GBY1-FcV)n?{!myYnd^+o(nFs%i=i8bC zPjpI}pc1tdGvwg3baQfs1&%A-k=|uv3anKg$5)p9%&xE0>c<&otT;h9k)^01rx74v zC&4xTNiWKFpWy(L0v)9o-;*`%EHJZeptn3uSm8y%Eu398z-`eRE!GpY#vBCHUOCn5AqYbl`y_Ozo*@D}eT@*XFV^5&hY_ zQ1)hkx4F37zskC4Qyy}Lmq@!1j)=9hTSx3X9)3yDULAp?|ylE@f!>FL>m6-!c$mU2g#`-{k2XWwF7$K>~}O`yR}e z#Vih*8d#eI*b-(N}-5MH^a`O+0Ut*c=oEYj5RYGb5%(`X!in<7GrG z57$t!JZpT4oC}WE;tI#oh3kj`ZRs^3`q}o*!TyU;v{0~!*~S3MKHvUPGD40P@BgBIgOsg9C`fydIYD@!3s?(_c$5? zAsRdlD7{NEW1H?qS_jP`lbR`NJM=uqrc2 znp7}j8Fv0SlPdRBW_{Gs#Mv3MJ?iXgMI4rEhx@({8#NhL@RW1njE%swAPmkOn=Y*k zD~Yqsy;ue^>68V#g)K^@fq$%zvBj6rj1ip_I^G0^zL!$-9?EQ=bwa+ex)O0G?0g&+(yhQKPYc&6QabN)+gP`c*+Re+2Xe6Ti8K zedrp5`rS=Frarz2i?U$X@cH`b^ad5vDDnwp$E z!$$;;%66|mD=7RyGT*Ag(rhR}T8Uf$l7jGT{F}Xkbzz|+fma51<%i-1{C zI?AHz*ZhBkYjG*XNg=N@nK+|vRB$TBT~h6K0u`-6-p#+GZs-ak1NTI<_8Gx)DrX>9 z7mki>@af*=&aG6sv(olQv*y;o12|k9w3K25hW_Y;!!v^XDVnsT#GiIAfm#lCDgEGFeQ5meJKJ=#4__ppOP=D#=znSt|G$UP&kSTY0HI zdQ$Qf!J!Q`V;Vq$VVToUB{dUM>!-ml3oES1_>7AxB_h$RcM4=1PGix?jvE3icx6u2 z+)~x7<$hDu#bRu#1>Tw^&W?|{T4iM z&NtSo@MZfl9po1>7wGnft7ksIBTSYj*WeEj2r-v~xXe3Qko9^zH_n^)In7XWG^16 zwW*Nxk_-Eu)6kF6%Od223KR!c=p_NpV|b>Kk&cG;Nqa)CuH552l#Qu0%9RMjt#|Bwj_Z_=!=>bV)iY&dN19zIE|lk+|g|Q zb$*3DT|&CNl8`qsL*8;@=v-J{qg>;W$|$Jm*0`EQk!x_(=dVb+ms==Q>12xWWZFF2 zYJ252h?7^VW|Nwd?Wepw%+uMKbbP0^STO0ZH(BZ#%#tC#FrK*BwR0=E2a@D9Ta#+ zk5Rll@A%7i`gLJn*_8=_bxguzi}dv4Q1bkE z_N~Med1z^8Kogy+bZ{8;w&VC%kmF+kj!`mgj-un}UH|clptDEU^N67H__8P&0@@B= z)a9Rfx1ELRx*z?no<(p()6w`b36hoS$M_O?(+-)KfPZ#4@kx@=)YDYH;<9hgBt`ER zFXkO`fluPZ24ryRSDIl14(>zs6SyP4V@6%we=q8GKJ`(z4W+R#w~wKq9?pZt9=0I1 zAiUpd>Wbo3q5_bJAqH!Iuco=Quw!D!@M2n;?~^D8-OV`)%3AGB6a-tG<%O+cn~zwD z)~Ht;Y-KH??_CKgvrP|Jrx{4y8|{Wr$26@(&s6=`e(wcFtO7oc_z(Eq0sg#XEqh*h>2{2pzz9HYZMkGwt=y6stIF}UYwP8%+VkwR*voDpT zj?*jeWm4F=Z~HGInz3!3O1@xo?3v(4XhJ_@qg&kvu&Es#p59 zUP;hw&-4Wd=St$*vbGQ*bKcO}U~Z^HkXEMCTqT>|l@;ZZ?~tVsYJHk%mr7(2NlMr# z23@gmWGgqOv`DZfS0~Pio8nrIV7}z#D;vMD|2;GCK5?t8j6V_M_5!G%t(Z>UkiKFq zSqXg{!Q~livH*-V75^wTmQ`AUCx?w$4++kqD4CHcKzX2kG--ZtJC(;v6|5Hv0;#k! z$r4thl^F!z3Ss-NDq2m2@J(tDqZ6sNryW2LkgLhhYyKQB_;Z@bKS%PY^K^KMJcC<2n#zCu@b9#r=j{HgS-oQSHRY78`f<1p zZT)_95Fg(04HgF|G4=r^Z`n);D~BTW#HKVs>3if`C)?-Q)BoF_>;#=f6u=%U7HUJ} zZ$M@c!+MpRH9mSingRooPtc&vLo4CrHohbnBjpG@~K=LKkk zfS472VCc(&z6dTv5YwPO)FrF7oS>U?&nV|ibCxMwP7|CpkA{2C3LZ;Qg|pxsy?mSn z#|GrKdmd$sFB61Q1}rshgM81n`}zz{4HL1>ZO1!|xP`C`_V^qqrj=Qx-O1J$)+EY? zilmxL*XCcgOjioMu8G;U96Z#Tu$mY(0OU5?ZE8h{3)!K$+ii>ZmK`qfT}NYlyiw3U zgsvmWjGwy&u$v!VPJ@Ovcc9I3;786q&XH9~;q3ftUwht`T$qoiLE)?cP5?fB+>tJs zgXt*H)y*n{PDS%!>mRz`VLty3kL`SZw;hf}=z2;d_;E=Q;7ui%_yK*E*S0jKzhYn_ zGvu@3tg(V)&>Q=gb*%fN*=#X7gb?t1to_;tdmbmr_Nyw;gX7pyAYAY~9Pnng9BCeh zB8(;PefG_wCJN+rd`}7?R7TSqxPs}IY*(nMw8w7^=!Yq3n5<>%r59ZQR^AYcpZ6A5P3mhz^nYB#r#R5q70FNxF7{g2{ zesnd(O@_hrcB;?eq(pvzrQH9n-Uuh`Tzb^!{iCHwJEp~i6qSol%}*|Rw;%0yK*P;p zGJ3)#(_T~KMIbLxgu3j@KwL<|+>kqodhF4>D}5*IWkj7l77;G6QmAx{WJe+!g+|Y| zr|hi=mB?yvh!PVcszg!MA|^CxPvHcv2_>zRW@@A{jNpT%D{X*v+L%&EJaG^~AyR+b zAc zeg*X?&{|-aZuT}=Gm{=<-(9WtAMqvv4?YRB-@pHZANIc1*zDLh2j3m|CoGQSm}N7L z5NwY6vtv7rUK{CQ(XbbD$9*4d@Td#vKcw<{d$!F6^L{k>_b3`12IC0&M!&`mO1G~? zk@sdBX8pX5DV?TrvN*7Fodnvnxhp{whLhNs%~ zA=jy3Qe|{1Y{QzPl}e|I4~ylX7s)?mvF*fg1P;oOL-`RSPOw-HadA2AV~Zqnk8#x$ zTjZAHCIVu!(BK5jL8%Z-$&Ci`Kz!c1#b!+ajf{K-E7rs}mIH`|(Y|(H#hEx0^ih;$ z(rnJ)i*e;TnG0SD{#&l2$h#=rqDv?1*V0x;U4WWn5(OQDA#PVb-H@D7=h`G1BW!Ue z*Is77er0JT(`v;RsvKcC{)Ex2I4^V>t!c=coEg__ON+na;COQxWjKuS?u+@!5r)jCEi+|Ey zbPi>G%mj>MQ?lH#-)uy%tfT3_3Dwr0j@#xC!{A-@VM-PRt@AVbWmKHvD^_Ji?Zan% zc`j@6NCs&9`r$m#McKr6WG@YcXeUueraZ_g%>4c3E=C-XmJTzb5Wf^^AErF}VT_QG zd}W$Wu?te|9Eh#%xk2(sxDbFwZv@(NOGDFpBbj<@bL28`l(sRPs&Cx#*9cGaO;RM} zVtd7^KpDvhidX4sbC`EFG{@4NJiv093;-fn%mT0H2Y8X*`}mVC`j=?Accr}frawLT z;Jf+T(MSY4mJ7iz`0DM5T z8OKE%;F8eN?capEoRnw6V;3GKtoa0+W)mLh>x^i7VI7AT4YUGtqIemo+=a*b7&0y5 zbR6hC0L_(`(e+OWzKOwh*LB>&?}Ex9Y-J_xIFVe=&LmeRs}X;RdsE{6MX~1AN9K=w zm0~yd2(iA}lg8#t!)9&^zO8yX$hImJ;~lmNALTwR>HUGwkv}WJW5{fol29WKtBm?- zg5ED`W=||eTIdEV#fZsWowta0&^3WAA6t_2Bw5~v^{x<+z{dcCw}Q&ObLEs^^|iWB zQQVTtvP>73>L+4UG=>ugA+a=&D(y()Y)FHTo)fLtAunuNw2|bi+}+g2g{*;FITNcGQe*+6~O3fSC0NU zPe*!|K@xOM2Wwpmh@LT{O)9&GvC2kQxRIs3x9KO>dC6x}I!#4>lLfSBMONLV-ZHdN zw5j)fb1`uIpmLCY%pROxou<(MQQ2f7rHhj$g3!>nbbLy^7sXBQTd0;WHfAi3mnll_ zfI^_V?Q8ejHwor)E8>RTrIw3Vdp0r>@xT)E->kh&vpW&DkOQ)mbeMhJb7_q*U}bGT zSdPG=+;APOls8772GtPZLK+iLi-K5R>OESD$ zx1P8HESx043x6?2iKY3FN;8b+eJdFHWGjCrbAlL1_aI;5t6Rkit_=Q5&gOFdi=&Cc z&P8paJSMD=f1w^mjB2)a>S)eO`+a3dxzDdPA=1}J?g9HL2L6fn zGRn5a(x=m#rVPWP@DSDPEw9D(eU&q+=tcHn)9qk`Er$>jB|L14cBD9k8|w^ z+R&3XrBF$Mwis~}rWXIJ06D3q91D#L=c(*e(Z3ua9Z=aoMXAjkI14!D`4O8WWWNnG z{gNib*c{dTHW>$z{&kA)5jMI64JY*nQ6Tfl<%fPImsQkHimRa8WZn_w9gr4o56v(N zpxr9uiVfhu0QCS1#C*8#kse#~7)uJ*5fOUYAPoj!a8ikz-OeFLL+s?jB2`KS?nbDw zUYoKYmPuW0QAUIPl%_i&nC^*^cP8p*8o!*$cE3ivtI>#EoQ1T~Rd;q>s*;4YvX2ih zHl(EIqiIbriPiS2$ax}$yW8Z?B(n9#>E_pFN4ptq=NsL&7&s+c2U@myP?NLPY@2ah z^WVc9kc@D`<)^#{6`5G=%VS*Fn3CBpMJ3fsB|^(G>q@PiRkC9uR%(}Xc!l98Qw)#c zX?ANhB;RC{#B2oI=Tm(8Kv=OXAn}1)cXj#AgTr58pMxzY?}ceoTw$%8GF})SaJqWwawtB z_QuWG<&*Wm91qMJ`+&PN@90K>{}FtTCv~h$XN#bRorcp-KSo2p+1*BzY3;u=MTY&) zwlX0~FAC&W!tp>@vz$)?79*|*r#r{ph7^e?3koDcJ*TR_%SfAfV(dChuyOPXn|(&~QGRAvC5Qla0K?e1Q~ zXe)_nDx@BLK7v!V;~!k{LC#r$8A@rD_(ZxNXq+4}zmmu(t)vN^Pq0I9;ZtEvT>WYQAh)G7Y2K(O^m~sFT2=-VWXjzBafV?8L*Kz+?vHGNY`hd&*Z&CpTK8GioqyH^rwGp*4cVRQ?Q4R@vr~9&>@@GIXajip zVhx$_Ra+~DMCFU8(dh3-b+uAlcjSr~6x9lU!cWS2q|V`PtE>)4&VKyBHH{%nC$Ux?Ii_yWSd5I^)v# zrb!-2Sqm17c9P81g$pDEy>D|RaV5qr5y#n4T99Pq+VWR`=4lZHLX*#)J@0T-7mEP% zyEF58Z;7Ukg%!H31wNlL$^GB%s~L^Rv;#m@G(?I4J|klEBjK6*zr3x!&gZAgyalOk zOe#w(fnW~%U6Pp{J{?pDC$nkGOZFEP=T7FkqN6~ytt7X-Z<>6GyALec-uQ8P=lWZOXS@z@{}hhU#G$YvImUJUv^|xql{UyMRm7Od ziNTRpN_|72fym+nrgJ;cqB~s&x*taJYvY+BhF~jXh^>v23%aZ5_d>v`RlcH;vSqA| za(V!|=v0VI(`^jl^>4zdlYWqs^ee%H?7TXtMx_r}m>U=T`mxO;CuFbC*EgtcP;a-# zEP-BLKu{b463{D6?K*ZHdVDebN+i+eOMK(Ndc1+lvTEt@^xnRG-VS8Pi=csk;B)D| zvYgW%zaKc{{1Yt7y|@ec$0pG-G*&NRR)y`V>jo2GEk^$fR%+si??=Pq@TkaQr$!y% zcXoz!uZ|h}8=j0l?Y3#5v08KJx6q5MtcjW~qA~AwAi`rY@iU|=Y@-Bq2LhPBQPGVU z`DXGgm*MfV?h9)(S$KRvAd#~iuZOoR(mQ#1=5#6-NLez$`A{fD8AiQFOyPnawN!*J zRCflALPP`>$O+jJBaG6vFD)Flap}1}tFmzs-6)ZgjZjc45-XLX?zpu%vAiIUJrj+> zMWgYFYr(In!PQG`hM#tJDLb3TrJYAU3wOrkNiHJH!EUun-2^oS7#DW9}} z8`m3!l?bA7IYAJ)L%7N#;2l7wH2*^H4Iob!#_rWi=G@p=zl(Cx zk<`?=EZOfB1rr!AV$wuiY|=!XiSKc6vW$n^6gI4=3^#NYvfqV%Ym@$#rp7w5=_gH` z$H2wNoat-lnBdEJJ_yKCK5<{TQKf8AN)EoSjtqNOjIMe2y0XG&GhicUzO$e=+?Rov zP5h=1o^plvX)4=Jvj0SlIu0Ua!o5zzAUqK$&Vqo-2=zej=Kp!-Jld@ciFd-ScC-f6 z7!#^L*qMRT!3-i4|1Plf1Z-}e@Tq@U*2Y;i*O1v~GxEXJ`F4%6RHt0`Fwp0EaLRF z#6lZ)UdC5eQbNGKunU@X@Sa_JyU@o%L9g^SPVndoq7sy$mh)}PRR0l7kV2kN$%wGA zDSS|RJQibQcmwNkUP&#DtMQc)U7R4XNfnX6$GAvKjL1DT5R!Hc9(()j=&sW_n#750 zQX%tW3_yFri8!h*{)3cWx&xOdi7k$xNZIO852~eXz{5j4Rm_DEj-Lq3zy!5bzBqs7 zPKQya^}uFZg_K=>{E!z{Y36+P>$3mWR5qz+0N>*hPX&2T_I;Kx`P66jsWs%-Q3o-e z2QF2Cdu+L^EG5X-P^8p)+g}tdgZCyczO;j4!9w63t|PeP!DA)4juk-*vsGL&C~lV~ zC2LUvBPh>EGFpiZaw>CFz#5ym2zHa<|Iw0mlIAS(f{04(&$Ln@&r(%H#S->_&wfDefSqZ#=v9Gd#S-2Io`y zV6k)|yB92gdNyl3M`RiRdB9+fVc)N%H3#1fPYUJXdXo?45xOOZpIV%*DIiQTRx2l_rK$qp zRP?lILrVZK=&?BmQ1|#UPrDN?JUZmH&Sgqs;%6M}c=+UU-=khbV$D;NXuB%I+z3v+Jo1sy@l`0q^vvb;Z0dDRSq8t{7 z?d=DX=y@x0=krHG^1S$WXxc(KTR21x%}yQ;U5*0(yh6EZvk8&|XcGyjV>Sot=^ieS ztE=t}*4M_^c7Y3Q&18|aI&81uk-$f2B*B>&?$6AMTOU~fx@lgB(6hX_rf@CT9SJQfVA}!J;b^Jt1Pr_d1TX_cf4oG% zfQ|6Du7ZE|H`HD7$(V^!szST$gHJ5#X^&xk zErZ%W*A}#^VoM9-2)1K=3C4apE0DU z@b7C^Jz^u3U6gj?hY7zD+ ztTR=`*AP^&B*DGbJsg>z(ob17P);o+BoyFZZiI3n}9`P6xPO@Qbb~L9Zmvm{QaW#hgWCz*LieN&Z3t0 z0?*P{M8u?521m~a9Y!Gv1aJ1#stXSEER1Sf$PVr^1kF5q@E8mDrR1@n25K0SgisQ1 zsCFb*{9y-2S1?G%N3Y@APW|B*)M%DU%>yt-6i6E5pEVnfeUJ(w*WyEUw>8y|gX71u zVKnL*3TMe)ku9fxd0#j{2@g$r@_TjgImAvf!M=?qh-&GaXLwc?v^`B}1<2B}C2!3b zPSdQkWuz3eJP=qb@&}DXubWaFER9G9SO$b>hjc10H&vPyIanJx^}4IUqj{M40e-Cr z4IP|PH-5Yx98>{W_)!V<4^JJX2%zEC}ZiYoL89z4xkN^$Q~U;?yE`2wSK zD@|D{4V326?6brodu~md% ze$3&Go?a0>RLn))JrYUF=i9#8ngB!0@%6%7#zwd`NRkq*t{Ghqv2R}+bE z;|5QJufkO*tUj(R&u+&R{;Gc@8@y7oUzyxoJIZM%C!T8nYB`|8R}Iy>U*^dT{^cJ)f5sinki@ED7=>7EyZ_u7&YhexAe<4S z40Q5r4kv4Nv}r%zA-8x?tk$e6IlCzS?Pd#;qZFDvq(Bg&`pw6hi!0yFSX-gYFKNBM>=e;LeFS064wo1W4+H2j+)%f2Q4etAfLG~BFjp8%_x~Sj_M-U={ zY-_2TOsP8-I1Oz*jevVisg{LGrG9PDQ?jeH{>cr|D~YX=sJ>P#{K&YbS(8XPt|Wa$ zol*mAS2xPbf!OCCGhy>Sk3a3Kp!h&gY-!$|fg)~+}NyWApj zc+FBas|X|zGWl6?Rl#%+>sXwTOwh6)A+G!e?5JV66ZwuWS+Zm_;svJVdqhY+YXHn@ zg|M?I=&iQg%@KzbAUX`aL#(k;y4i&7D~QQ8cbuRqHX{PqoAAq(&@wDyR}#LY_J5O?qS~Q;kYGg z64GfcoBm&Z{nwxV_2+;2{a^n0mp}FX^4q`u;;%pZ>o4&SfBDm2euw}4fm}Wgm{;+7 z?DH4pV+QsPNJ2r*8Xx%%sbChpgbrs1F}Ff_o-kfMNB_|g)v)WGVuFAo#_;i0X>A!W zZ>^$Ne>c$Tl>`onI7`PicQ?1YllhtiVVMUCP=P=RUV_N)3p-Tr>xHs zS7UgjoFW~{a`DFj=)I?Af6QX0u?;~qI_`Dl@{*>4dsOXeDs7rv^<{WFeHz6Ixp;F^ zR6?UFQq-xKOQ+3`GGmE%k?hxf(PW8aLX!fwq;mHc6ifKk-V5DB$lSV6zB@yy20V0x^td4^tC~gKu^BaPYdd~nV?v4Dz=X(v>`#=y%uCd!5iEw4iLfdFa zmYC7JyRD*Z0)j=vAE<}P&(Y)0Ni07X@^k5jCa>dCCc`ssa<2*nS9kVE>`#Rspw#nE z%fn;bd3v04wLfpJ)!+DYx58A0e2n0D1(qkAq>}2PpfP4)CfV(a7#%pblpR)#qH^^D zBblYfgC}0cD;EXGDmq)Kvaui|7)03leMRT1a%wlcGCUhAG5GB*9_ky-Rl0g?E=-D| z#2+`b3-*AF9t)q2C+pLw3R|;=;cHqV7;YVTN%rUDAG<*p6lta96*dh%n3bi_;)?#G zLN6Xtqej#*;tW^eyBX=&;PFn(zxTJF{)*`YHT90tQ9j0i;6pULLt!B7u14JuPLnox z)@>+r6biXrO4o|z6f>=aJ(;w|C$DeOSwOOSL0{p&kxtrS?67{ zr7KdIe}S;&#xgEd2ESCth-AvPs5P2$i`6@&l{5{|L3c2+_i&+TwqH_U1>3n4!Wimc zVT#*VwcD+@0Nty*2*lO>xg$H6i$SZQJdqSWO7h6>4{E>?T=^1^D}+X8vnZ^j-zavn{ilT#!7 z@I2_TlI3vTS`LRnoZ;roL{Hr|Rvky5z#g)#_NfVGL_Ke(UE~&4G?;)tAv%CR;V_?I zzjG1hWB$(El`OfjRM9&||*Ny)W@x-TYXi&4qHr@eB0)pKeTZxNTz~jCN^k+u+ zq(Ps0SR>;=-@Iqk0{2FRw1=7ntvdzWu?hGI+YL>|nV_V%v>W=Nde{6?$|!H0%&V-R z^I({%q6;Bvn%3&j$6!y`ZGthRoXL=*Iegbt?<@*+OsuWiEU-ptO778080&hgO>VMHmzEg`X=nn~VNgtT!jE$Z#@a>$|@nB2?^s&o@ zN*V^m3hP}J{qOhw{>xwe?dQMMRxCO%ngW05cwc6>w^F>9v|PsM1%5`luUDH?5W9@w zzd;EEO*G?Yb(o&J?VTUU4b;@g`!c8KIKBCp6puOQx*J4F`s~N1s0sflN|8Yj%(gk; zi6q7Qnv73wtqBJNmsFD4X@Om*5~PtkGh7>eAWf}+*^LPX9{u9WPrhtPU%0R(+pWTZ zA|wOO^+L#MO0;$FV=Pk9kvh2oS26AwPvkOD-$(0KRcT0R_$2TWpjok_It~}6dlajA zDkw?bHMezVBl_SONHnALl`Y#r`V327z>!!-XmZ~|0F&?^Co0d7;KE9OjEz^Ze zKC)qy=F{lGZII69SGKyYl3`MjKhSM{<>gnOeDIatSHJzuXM-M#LCl@;IfVg~;2pNj zNJ2Uhy&WMpfo-CB54Q6qWRpJMeI-+1 z8H6Cqd4M#(!)y#_{)W>|cvf$%h&Sg)@dYwfW$#ZjOVU>^oSv+L8~Q?3MX-il{PkKe z9CSaD+NpmC=RB~K#D0tOWV>ZnY<;7onLW0BA8Pm|HLYPg(ovXp)&(Quf@ctUV;}BIMp^`mMlLG>m4^Y2Aftr7lPxIvTNs&AXv7kr!$f**c79j#B}szB798T>fpaOKgUa{3KGvwrMbi1qvJ>Y@&x- zZfriRb(T#cOcg4-&Lz81K?%jO^$D&_6Bg`Lbx+ou{S^-^QnvMhioju*Y?iXkgtxfRkW9GjIQ5@4=T^3 zbv*Yi#o06LY8O`;7E4wsdeEX#fP_naY#@|hA7dv6*z@rPAuC}qBF~mx6mj$)EC`_( zBU7M|7xrUGZ&sF3wl76I{vBT`|3b!K>9*hIjIHoqKy;k-m#g>GMc!RNIt>Jl{uB!T zs=`+eM?q%6>owfNFJOaH#aWj{zE18DAP^_^WlR)n9OSUt9VcAW!cxICrsUSH1f!s_ z58z@SC~JqO9>@>}EV(c98>vkjU8A{G;+7e2<-P6)wCXt7Q&XV$Tff8bPr*a_A|`%g z=?-Yk>ro-(8qVq{l#UI=6Jz>5kzsktpNjkI!9c&l zMAnF)qhk~(0XIP!JDQLD0D$&%tvfFs<*|AMFjgIU1f~kwG~%(JPG)U49JtWtkMLH5 zu?vLJ-qUO4TB-G1!15-^4eC=VJ5n_eIeY;tSS2wThEZi!??VK7-Z`8gaR=x+OI50H zv^$PgPX-JiN|jNJ1(G0(-*4In2T;yMy$lBfY8$^jGCCYcWPUwpnK`tS1q~snTqbqt_s}X{e{nhaUh;}D z(Sg_-j8&BSngfw`Ueh|$bn3X~T9q~FLu16@e2hsKGV4ON9QPF-hq6PBQe8yHq#gTM z-)fCww{K(SLw}WlXTF;tY#RG~Ad-SBh$ByOo1&`&Y<}12JG#dfzOM#&mU&p@bT&|~ zF|x%F`NvQF7HgO#_~%!no>e3^RzO#PGlHI@oD!0VVYdU!h`h-U{YZ_w?v!T3y0w~3H$Q9M^ z!(S6G?Q%MJ5lqbL#YL~(8pr#R-`WO6rZDTw)B>%+b~TxYRHMuxTs?bKerKF)toR zgHGqt_Xb5x0mdlAU5_WziT_Bq5}VW{&uG~4{?J^Xu;3&#w!$4~lzrJJOLU;?w|v`z z;;9|~pCtuFScC!kl5LM6vI3%PBEr%fPPs!G-4BHNCWk0+xl8+&wWFkA!5q(6samrh z!HT(5bACu{h31EW7#`T;_BBT)zv-$qD!Izr&+Ae&lxsMAr7fo$Je!(%?E}Z*%7uv7M^J&0)sQ;Gb$A>JrLKh-D>8)%^xcRI?FmC z(YnM;)T}uwv>ss%bkUEXqAPA61?+HmN6rU&50~WmnFz1bv`?9@;bd{PPYl2ecX*Qpn!kclv5|lq|>W6!;s8kqKo3KYB!AQVuVR9)r(GuA;BHD&Y4(eE- z6kD8vvg)is=wFPa=fyS z+8c`{l7PxqhuJ)|N<`e!xZ?GL++>ppl(*F=j7_XWchdKhRqrblVg9THdbTu}>WVji z{mIWbyKij4nNMN;o5MTR!cHS&X&bbJC5>yFWGBCW=1C1Rw1b>O4eMq;D}{Aw0>i4e zy2$s5=Bu73WLiQ&z4w{#B+RuZy{~OyNQ(Nif(w#tyXtF7N}ph&FCi(FyWR`?BH*aq z^Ul>8+X|Sz2f1~*wYMTNkGn1Jtpwc=mTDGse#&eG09&SOyBU8pxuhgztcXDke9qQD z?w&y+c08ZLR9swF0fg%Dq|F#N@=VY}&C?fXk2-{Qt2!_-kJx}?J&%ZuWL zM8=>m;lL6T*oqi!bDMEcU9(#wz&F>^$O~*3qDh@nfj))EB_J%ceKnH>^5l+Oa1?1b zFB|F4n?v32DIz^g9ERw}F$WiAYoem@IBv}}fB<|dTh^w+blMyg8XZk1#MvMnwDx8k zd7*sjx+S3&_x`xW(5I4777?F9WjJ2=@?Ml~U(+mjW69<_4XG6ChVU=n!;J#9r6pBl z<53|s&C;D}L}IoqN48H!mzxP-&U z7jB~mKyt{1cb@TnY4&@#u!L!1;{hn!`Spkv0{-}9)9&Zrzh+xHPqhD-u5CH|@zA%` z6{2)s>C-1_`k}cGXhKJUkj64gQ)Bs6F2Zc#TO?$wN=S8eac2O#JDPP~!tra_HPG@a$zo+xW%JsgMt;@o5aaSd(a=CJ{%Trat^R!Ig>w=F~(#KapxTwt)gTB4a6 z49QtQs2ob+CO1ZOj}AGK>r8>`!X%;<1$j?QBe8@bu|DnJlkF`l8KVWmm8N}ZMbU7W z98AICM5a2>(ROCpG>#o*5YLm2Z8#dCSHUk_TTj)dinr zq!FIm!u${_;}`HeMZafMo1^N|Tj4$*T3`QRKy+T7N6qD0Ye)E z&DYDNfi3WV(T;e>1b&DbmsRaa-sB4Y*^-6)N}PzE)l$zAsrlnJEWwoO>pi24$902} zRBj&f*H|tovs4H4-F?Q0%Isa5nxYCzYXfM9EKH1t$l=nC$jmBr_=GXzU7%WWcO!rq?jXQGg9J+ux#*3A(5+8z}#`ZW2%Ci59yQTe}#JEkPCHdOVuQEI3$^9 zb{h%DYgF3p7NzYA7;3xRnHAyuE#*YoPNMu1fLiEk7XN{N#4EtpBbzf3iqbuC#dTP4 z@uf90GJT0`NzFm6esWV`g|`%LR2r8ECR4~Nk=TgOAsOpl!o$?JcUP-RIr^aIiqZ%S z97OJ4MynnY{8vJoUnX4OUpGaOsYAl|fbl}jfotGbUhe8jlhe}e&mGtm_m>HxV4NO{ zcgolTtla^ks6@uPv6|ey=Sneis7peT zP&vbD9NDEfIu8K+lH7%;08{y~Zt$_-iU^WWzTC$@p_88}qj_*e4_AE6JW5^w80Q*V=F{xyGeD5F&tJ8^3>mFg!kT#;s`2DcwLciQ5e ze*VugpFdW;bLLmep_uELgm}IPDouH|4r=oOW-&(;nD|!0hg3=`0Y%v$g*hAf1~q)l zMIaCkn_J_m#p7DBsFmbnlJ2uLi~Z8i7*O2@eN)uOTU90;82dMBR_`_?o<1Bp4;$ti z@uGNg8u!l5d1S*wMu0$5b>f#eS!;4ai!b&Q&)Hv+cCo~-O(qt)#4|G`!%~q&3T5yO z7?ZfZ3R>J(oOD{n%L+wdxiX!wZLt&wSE*r$lP1y@tdQ;>rWq2MTU5=+B$lkOKr+Tn zY}4%b+>J`4CKlJ>jt(g&n?&+WEJUcmXBbD;llSEgU*F{$%ZlTKTj+{6#LXaSDi|Hx z&U>ZpRriTj2uxua2PBuTdU=t`qNZ~Zz9r(7RlkiyMY6}?2iv1%MjcD%XE0&kB4 zCuabjPUHSi*)?DQ*ikZ>6KVJ;k;CqG`6M_BM*!Z#e@>_PC&tP@NAmkzeoy4j3pwR^ zKr5ZDO9MB3zmMRv(3N*{*sT%UAa$^QVqmAH@#5qZb$7Pu)C%Q%5qr&QKE08tO1Ase zN=ltI{SPtzryU1 zUN;e*Fj%a7)v&SSs#og}yP^L>HuCAnZ6G*nLcUMbSb+oV^6guMlbR|IRZH|Eyfs(uwj z*5(0Pny{KuXEr&eZ&1@^dh?E#y|1rTSsJuq4Yo_}-jM<0OSvGn=EZv(XW_&TW)!b& zZ0^Y<#U|bH9Af|9Qk&v(j^tfXzEH`Ya0TEw*>S=@gX^pQqc$a&7mLP9&qU>+6G^H)AZl+EAu6M1s?(4;0spsd5cSf z!Qu~y61Bq{Zr~h?RE&LhU$^hB4~JvJWD{8qR~au++7R#Q>o;HNedbzk_l^DPulF)n zHNgU$01DhpY67rr-OS_y3DG(^K|A&SCJtV&?Nre+Iw1s{djfJ>?lcMLZX01Z(|Ve9 z&&w2*1IBbvh=kiQ31d2P7#VUV;U8U{YLk!^^7}wDYrC)AdPChp z)MLXodYiP52y^w{+R`WNeVP16{1{zVRk3>@oGST?5hia^duJYpLX`0LLTXFalS3{=v%W5M}lK>Ty9}3;F8ZnL9f_HJi{3spqo&^r779>R!hOnS-W;p3;5$+m0 zL-NEoWQ@)N?xjiOW7Rv(7LCS{Z+P+Wl;&aBX#|TCYyyhE3U0S4cXgUVyCEvcS|LgRtSHcMBPt^F(}X~G#Wp)d8ofebcEy^Y zNdN{yri(=U-9vTKh$IqeRBX48lR3}^N1jL{_W@*J zEIxlp=ZOKN_Ga7QqI7y-qG=~MD!5Up1i!ol>(Ua|@{Ew+sf@&xHV|h8mn!-1<@y%W zSy(?zE4x`Li5x4cUAgR_qe3Um|2A`46KS$8j8ZU({=hve67F4M2Z@G*@fe$QP_(74 z%S%{bHN$N#;;sgt>jZ=q;a;OUo}nre?4#(mgmqz;e2l}YQqsIhR#(rq|5T)Rgt+;l zoD+)T9?xcDR69TmzF3?~_~d+)FUvF#9UG?VL?Ns7iQJ#1CWL4oc<=v6cTvzG4Le}q z)SR5$1MvTpj-k^vp0EwVU)vg>iN*7?g)`geQ{IrDV&)2{JOQhmvTPk1S`6UcDa+Db zp2Gw%<+U+Hl}I_IYDfq`^Kpg4>pS^IDo-F8FUMUbm~kg}z)GJ(bR24mSBCfrC%+`l zA&s1nA*g(=7+2N5)PBW`Hcq64Ek~OwqnOmSi?8V9@_8-pvof47!jjHQY;j4~+{3Ht zwfuqzt;E*xy{TXV@0EhXVn>A~a)^C?7P%e=#-nqDr2QBO0{rA=dFv~+|Ids{lYy^r zem_DqYxh7*y&9H$OtnYcETtaL+E_+eFY>yhJh-7k6}q}>W4K~?ta{pm4>NZrvCru8q;tE za_*`!zFi^2t2reZhAX2i!zpHbZF=8MN^v``GZ;$|9CLU})veK7xH88|*no4qENLj^ zE^WNz2>d10=U8}oBp7ro34mRuE)0{UY{Rh3N(N*#ctYX8^V)%9kPX+@EU(M)m0YJ$N{7y=i zgJ3$a@pTgU0l@JUdrHr0A1`k_e8iSAnGStsd&xKY-uM)1t==$l-Pj$ZW3Vp*%Ahm9 z%~s)1A0n_e9|@sYqRe6)N6h?G57AQ6N*)f5CIPQg#;htq5^m+bOpvR99AN)xR^H-o z?)aiys8_X5B4JDI5Pb~C_3vOT^e1y3x5W9aH;w+UR!vvIdi%SvhQH$+?^aSz-m z1p#zJ=a)vl7aoL#n@a%ZsOW6za`5m`Bk47Y&gcm^N7NZ_dvYM^ENyGocusttzUmBF zXwMb7K1gVjH+MUYrUXZe@Gx0vO3k&iWrgZ(_SLQHqn`s3Iu=d$p<}ih7^N z#S(rGHjj*=6H+w)9$f4skm(3Wj7d8K@12!AX*C-h17)MBZ}Y+Go_SZFE&^>3oT=G1 zCV+$azTtL>SrmjMi;!T?RDR{c2QQR`xw5_PWFboZ;q%zH+C@gMsiT}Y^pi<)T1;o- zQ-06==P_Ee3V0d(BpRBg?7k3aSo{6kiY^VXwNcP>OC%U#32zDo;I$-YRAX*SzlbvK z^tzc z+bnMazsB#r64_-na|)ISX8d&OH&=3NUxC0TEKkkmu9M#3Y!M3RhCFVLtNNbEl25A~ zx@=s|J}IauYYKZ~SwoIiVD^UdIHCs?prv80j<`UhNl@IeS-f5xchyEFm-U#2LRvWM z!zL{jmOx{6Hm%r8UJWA3a4ea*c!9j3y!_xxia#`qb(=dCz;T?~@Pc$bnkSpa*vRkhcxR5jw`lIOkTEBp3ib1Ct69{|0IMzo z(Nju!7hwKInRjV<4P7cu%y3Cj9*U<4nV}_{e?^=1_MWkH4H+zBHf^$N!M=USJ}D)- zaXeuE>>eaopjBcO{D%p6h?t7`j4YV4ay4 z@PO`*y$@{4^0R%Ruval3qNfZ>BZTzS(B@GxeQ-|_9O855oG0>4WF*v}~6q2%8Ew%YRLllt-P^3+~2Wp11z1GGEyStZ39)`gd)3X*hHE(F9EF za>q*f^iNksgw*bIe0py8c-VScfC02vJNdNmnV8M0CRe+!78p+^N02Zb{v?8-aB!fL z2yW@XiW=L;+?0DL>?*5P+d4dUGzwWF!%_ZrwahG8M%M-aDmUM&X1afqD~uWsdf*{F zFA>0(D(oN{7*Yi$e22h3`ZR~=>*cnP-U+R`d>O9|W}?UvhV>P*Y1;U0+rn4a$DuAE zP-%I|_Gi9EcCxbFL3>^~0M8^`4Va|gp=>~3`4$UPi2{~Wa#h65ww7CA>~FoO(R4hS zAI(E`H<@12*02kKH4?OsgMA0_{o=eF(i2ifzB7er&5KsuUeztpU-knA{E(z_9xYtx z|G&r-%@^{>hf11Z3m89`g2DX&bK>2DAnLvLsN+)RCrBi>#!dbB|Hk^CkFH#P)ke^^ zboh$5hR{Qzfm)y=1w47)jR-75(8OK!505oNM^fEmUTJ60H(X!T9;ehX>oK(2fs^w4%{W*t(l!2n?h#`+WwSo$OBdhpV%gT7d7I z_gG0Lg>?ezh((Q8@_GBrVJq&6(q9j$0!0sS7Zt*FMK1~Aea(u!z+gGjX_NEM-@fiW z$tps+NVG(tDpl*;%pA_^)GuA~|^et1?5&|wK6 zK0^ttDGaGlkjSOfVgc|7N2Q6&$yp znl$xSsloC6r23}6S!7>wb{ZW{V*dM`@YZ$coJika>BvUIJj`{*opmzSpw3^l~p{TR1#!cpPRxo zb}hSAiPP4)JbXpIgnwych{kEh*ycf1jIYMHct6 z5yfc8LLqjj#o3EyXXkOvD4sHPX|=O&atb$TGLw1w?{UdNMx!-0NZ^r4P#VNK)$IJ* z6t7%;-#{_oYxVBDQ#! zAkb;EWb*J7KQ(Y(kZ4SE?u4X$tkH|}E3L>4bwO3Y@@`u%sf{T~ zR00MB+r-z%Tlj`4b_qP2#`+%p{begd-hRu)nJPVwdQirt}c7k4=r^$QN zy}~wPCeg$0o1$(+hU}no@|}nI(9b?5@38^efDn^ zX(@p8M54a$;WkVqDfs$sD=1e2uvcpJ?ioRgyu*z#sraF)+Fxs&V5LcO%8lwZRRkP2 zp%h^_hyW?e2WWP!|i`r|~4@4Ey#sWE{)} zlFwP*8jcEPC|;9iH02#9pN#@rc5TcR^*=*LZaj*+*vqDegBFwNBGgCS)Tp=~>nBHo zRLk&Zbcc^d+N&~xzd2#U99o>uau0Rt(uU0A*$GDEa!jBh8<_@qWFs4F-+i7Y@O_q= z^7A<*+Eyt1f}NQd-TwjqFmevS{pm z8DCKIX!NlReIX`h6oGUF_eji{tI=6T8L$MSdi`Dei-FDjTTGD3SXG*J-<1n~xYa2T{Dj~778`0n45mc??wM3?ns?wHFd^!Ma z%CtL~?f}qAuh*tk3TFgiWka7caXYQj$9`D};@4a0F6ei!l+1eGBvijP?v z2mHvlIBpJDvoo759`C!{V}r#v!&d|XtlHV$VuYoW(E)7vLkx0}|8tJ(y?F732h8>N zvl3}tn61OHZ}(%pfgk{`jTPc(gY01nG^hmj!le5GFaQ*6)aMY*GimAqBLB=FOZ!y{ zwuAk7ULiIp3r&Y&$K@t2d${~9m8FUFc%Nyvs}gKWT2Hj8?AD_!r64`veviSDT9*W} zy}z2vO_sUDL|g+7pPkgMPrSHo9A}<1puV?{DN9U$y&(ZcE-{R4%^{Xcv#<}Y1|Tz9 z^U?rg z_DQ}&nf7EQLR;4VelPq&P3yIokFecjwbq@b!HAf?^@CLN4K?_3c|O&3@a9o-d>(BJ z!&HCATvE9PZ7aMg26H#O6zFC|IXW?xmayE z%+??FneN)Q;;oY(V$ABH7mBTj5hcsxSr90pg4X~KOIXfvf~wgWe!-$*?nIISyAjK{sW-XybRs6JOcZ z?)9BX`ueljdOLJ8d67-f5rSa>Z5X z0s^t$Ps`eJnt5^%aQwBhuR6Pgxn`)ptT~0(2DpzSQ(U_uknxtAq6bxTB{HAK z=`b)yW*5~xm`X<^sa|KC2U(;^ZcU^28zL>}4q#P=>ikEnXt&(lSNo?ydJG!{;f&2~2@4G=>8FO= zT}oF7fEca`@S;Ukz`r8OOv)0H;;LTYnth+okS3PrA=f9;GSm!g zc4P=8+m?+IYf}-JG&sDUtQIBe!c^)gJF3OEWwA$%eTE$?yB;>O%H%c36j{|3N^BOf(P;(&#Es{r3KyNG1*ro_fiE>;Ov{M!CS%ULFkCNRKS~H8l}m-z}TXRS1hPbYM0{e}O!Ug6V}WXWganj+vbpEqzizvQmGxMJ>~ zyYiUia$KhuN#B_|7!S~)ur!X!Jj9Z~<|me04T>W@&Qap_8zK<7uX~d?9`H^VCwA*y zzVvXs?Js1PMZjjr&valw5$NZcW8YC)_(&`}@90Y}!Or zD;g)O#blV}T*4$xFmafM+Saxyhm?O781R&#YJIm~1p`p1C8;EQELq%bC4}q}eR78r zCT8w%rHEq4)+w3m#BvVy71_z7-O1q$t#Pc?6u@e?>WBj9(%h4yy~2GcQK@YctZfxi zQe*lY45U$%#JMqwmy#_qE2N1QfVhcZPq#*1ljZ9%m7}e)1T_xn;9e}Zf0M#Ofesh; zgib#m@v}lMQCk=Yo&nWWVJ_5LsSRcdaUtw?g3$ddk_U?Y5%ZYU?xnjr%8}RpAv{(m zFfLvXY@%v>-~{A4gn(vC@UTZng=WnhV)L8d7b7VOk3HV4cF)NlZOT-M05g8K`fi2t zl3a+#)dzXx#BturM{d3GCk1RTZ;Tl_M8V^bwEpejYlE*0!T=w?4XZEv zhNVA44X{mt8nnSMv&${N3(PQ%eZ-gnLLh`;g6SbdNH98nT=T#*@TJHP>XUi+s0pyz zz4OMze)Y97)Bv&hvx1hm366-mj!^xFK*A{=bq~+UxEK&;#2u7VC&yLiGdWBJWf|T| zj}FR%s=Q1mFdOI}_9cy_l0dPPfYb_r{F!F-N%*%XeR@GE&n;y%`zm%x8?Uhx4YG2{ z5rIqXR!h4WPkM?ZQORJc~w}Z#k&18fV@glW&9YWftaRJ=V} z$2~@~Wla{N04Bn0QF4>R3-d;X7V1?XR>yI1Ktfew{|7+C8yA?zfP$N?)t+$D{5UN5 z>u-GH^Yvt-0D%8dO1JwAPrmJ+;mMYvdY(P_r?H6bMg2KuFZ-KDJZrwbU5jh@$yZBYOdP#{dC$j=#} zvQ2vS13HmDTb9yNKJLd|824ktkEWzOo=OnGIPMyDlp#S;;O3MFa9iM{cxvnMr%GhU zL%5v?8jwiv1OIe9Vxx^jSES;`SFkq@ga#?lcgP_ijF&brZD-rU%ei9foP}b$N;d)5 zpxB`UByvxMyiFGIEE?y=P&7Za_f2gsBE?-J$3cf)R_q(BC{yENtaUsp&p{C`j|#r2C3p2$Ait?rax&bua5m{{1VTbu#tS_;}sWv)0L@m z;q}S$fLE?l{if!}^NSB-zm(xWI1s6w-9Vbi4*=qE7)9(8asNzuI`TdBO+sC&CZr*Y zWAC1sCWe`y7=tw6uW+5sc8O;Wj`a8G?na?eAUZ8s#U%?fE9Aw3UYzlg2)XRYe`nJ8dJD zRMx}X7WI2x%hD~?^r@I6A_$ZSD)#?qi}E{T_?u>**omvX$O%eBB;H1CVbgcsG8-di* z@8jKWLUR=`AsOmd32buLG1>>KQ{!5kxuD4qI+b0wNf5@mG<$Cs5&xn_%_)gIReiM z-GbN!#jPyfc3#i&AD_RVLW*T$Tpr~HF>n3kPUhQ98 z;Se?_&af|8Gdv$tzaYT@oDuYB$LIHG=fruh1=nczp%c)FK+oUA};2o~+GKzI$F&tTRJZ3@ci`ezQfC-L3ZQb67Mpwb|$*At$c zX@(w`pY5;-yR%_46aP&SBaoy4j&B~wfuSyxb#XP2EyFwKk4r2&<7bHjb+ZlPV5tBE z%)rrT5l}mX!(!NE?=2Z@sbIPcMh3j3Fs4>^i?%)(4k%?HhG`VW7z_w`4>Q6V zhs@coFqUVMRpY1dkHi%MWzPKFkwlb6Uc9 zTInG?kR{*Q{(V#m^OO27i>>rPg**KXivsLt875Fw8YJ zoUJx5aJ1Dkze)D~ zAr>Rf=4fK$08~J$zvvDTErK4)@*}$o^UE-Qj|K{9nu~W-`VRn2?8$#y@v&1#0FQ3?7~o z_95tl_H5F`C-}IzXLX3Y^k+i4-U|tukiA)YHPH#(>+bM>&;=e*~43^`{eGjLi+lP*biae zxFulZfNqDMgw?-j07?5elwZP1SmTzCkPyaU!}sPc5lh?wJ3tTMI8@Cy_ke@HGxx`P zDi)JVnvjKUX&NGq9FMULgTM9?7KCo0#vm~1ToZ#{=U=fs^5L&QfTDjla9>zp)d*@& zG$Sg=Huhp;Z&d?^E5&@(HhP3|TfFcLfU*|*aM8Knn;~E+=UttsEXAfOZ~d{qD6fK$ zck0&{Z%c$?8$Xd3^l>ntWC$BHT|gD{NP|c%BCFx;D%+}mBhY9q!TruOS%u2PSwdGc z*e?J5aza)e0|Tm|{Dz6Jy2(w)Xz#OG)B)M;R$ZgL$*7J@+EXhQ9^qTj4YGd1DcmvC z&qhnbN1dfELm<$=u8a7fowDQ<4F}Gqoli?8q*b;_@&|HedAt3GGJDZurGR#qWx67@ zdyResgnmV_v&qk_uyLg8v8hF0NrZPLD{5W7ZDGZI4LwNs?khXqnUMRv;jX!Xlbc!r zA$_3|laWk$BuWTb!DHmkqx(Z;tpw|Z2y*tn8sX}PdED<5sJulnB+lowATdo(b_+3h{w)N9u-Nl@?y*RMa@uCc}QOEMkK1wJ36XAJ*F_(mB0S*@!& z0~FLlGrs>xBm4QtGuS5-r~Cl?L*G1i<0{nVLxQqR^z4JnZus45OY$8EGx)6MrYgNL zfpAR7D+o|y?CbrQ2LCUV)tpUyPm>Nq2eEWeGrJ9MAF*TXd41cCS_^0{eJlXK;A1-n zrcsdjO`6b}&S#;^xW-67{+%!UC*>=DXtsR=uNMXk#;0~7yCQFsFqaAdT?Mo&&BJ%> zJ4d@7AT_n78Ods3c;LE(;Zo*0F+8jw-N2?chcdl)l2_uI;-_7`qKl`|A!KJBy?u;KF~6=$&fgh(fBg7X74k9{M+mY+mTt`;5&au{k~qj+3GUH!@VA02J8bgt%RN2=*)2C; z>Fe}IhMB6Mh#ojabz=VCmBwZs=vBH>|srXY)uhf|U8C-^svbvQ$7OO$s@7!vVCyt1@GN$>r5xR{6a zkQcA0QUgzAx&3igdPIfeS&+FhYz~k{VAod?3f|A-%hKpiRfcOsnuaN+G*(Zm` zr^9pnm_zYe|29`yACZ&STj<9;yONAnehtFk?jP8I*b5U9w?aY5w^MmpHp0+%sA2`z zeg)hfQGYftP`&&@!YJ%csXz^dj2)~7!@BpOy}^F3eW-ey1f?&D&RapUPrFnoylBA# zHofFJP__+PebKm`yIjwQL}EObR-mtGGZC{xw&G%2hm@%XGa*|^X8MY_(%z>J@A=bc z7ESp*;1@hf21hRYG3J<_?4C>?k|JLTW>D#$?IZTx>o}k-x|Mr``yvr` zTHcDmv9vz*#t`qLty4Te@?0r?O(o)C0I%m^i*ZwG`;snG0il%}yL2IZn7V|zZ5R?+ zLA@PXEE+sZCN^E*Us2GsbI-mj!zN3GR%*Wds3!yWGDw;y@(J>zlp>RPmmo9YnQZUF z{~kZ^lG4*DU3Kc*n5p_;GhWYUHe29PxA;P1q>1SumvT43q`gAXc`f)NG} zW8Ixs*W;!^I{V$Zw6c$iRL8-CGJ45Uy17A#(B~FsHYOP4zhn|T;Kc>w0>$?r9XAeA zn1C^(_P?{bgQj{^#uJ{JU#ysd!)sy_DpCy>TO4RI(q;c-^CZ*D!QE)9CbLo; zdrj2*m3$fL|GddFA;x{6+(vP>GTOb%PFl<$*PCAP25VPbCM>14H1C+!DhN`ph()q~ zDUAjt87&^?;r5d(-S?YUg7@_FB;{kvrgP8zVQH{27;;%?f3C&YlUruN+Usom&lMKC zO*KvPC2ckQ&^bUbwAJI7|L!9sIV<<|0@@AQ=Rlb`y8RdhzyflX#NejoiqNQ!w`U(s z>j?ObQ}SXGZAL&xv^lP09}_LO(PYcXzYqkg|#N+3;`r)E30B{)3~&)3Yt5qFz$vz#ZytN_4r_8{rS`u3U#SPcYCk&@M3e zpchG3Pu?Q0MG)NvJ}D-W|mi1fY?S!#Gb1q3FW9rEmk28DN;i-Pk;L?J6< zk%zij$@Qc~!NOEB_TGd3j_xggP-HPpVN>dj5A?-Yhl2rk+UA|QFI9=r@p(F4jh&N;&#(%Gz2Vr{<1Hp^ct;c@nZMlRU5!`n8QHXi;iPzvEh)4-#-hkT!nSAP9b5FUZckFsXxqA1a z3`k_qG`XQxZ@jo;^GMNmIuqD2WhsmHU`e}o_0WHBjKIiiWmDm4sgYAlTE;YHFE=5x z*PW&^tk`1v(3Qt|^2RRM4|v{M`K0fle$GFacxqYm@^fLZ4ADM%$4$c88ge;V!bM9I z&4t?9#dzhKAvX6ji5IE#qwG}%ApV0p?2{-;OWvB8(%p}#Vg%1jr~vdn8I4pTC){tI zR1^qo^Pq&#a^{>dv^@^IyCH*nR#7Isa|2xr!AEgP&s(%0Mso!85wtAF0{A{#U$3?> z`b4zeO^at+WDa}gkce{c`|QcJwb_rs+g`&VnBpQ=GhdvL1JNB1h4#3uem4wiw)u^Z za2(Dcna=jK(mDzgO05*P+QzwWF#^X47SJ!enN z$u=t-nrSfa++U^zxWx;UdqOfW=lO7s#H)u3e+z>afacXrP5%>@0> z5q*v2;{3In7c19@uiFTI^4Y_Q77e04?8Rq3ic0tx{SxEzco`S-r4J$zT$W9wrzT4} z4)87^n@lZPm~9Kh|ICJGlFDLe;4$;xa`q}encG|GOJIW*`oG>6ViMqxD2kb{g6eww zo3f#*qL)arfUE&8_>0U&$(}6Qlao)5$ z(_ikyF5axAi&tVx#?F8CP$*UE;+FmeHUZaDP?|Ik|+l!k_WgCHKB_2eLe9#6UlB70w1QS&4`#=C|4 z29}%M%Hha>%t3m_TDz3Iy`Fn}z_n#$;-QoHa&SGsUj>_VXOT2C7X9824cLn^BGu}B z_L6hR3i`n6SpQ5a827dtjTy3ak531OkN8uNY3?cld5ZVuKuXKJgA=D^QQ=9*szNI$ zym{$W6~bOiGPiLCN_JCa5Y`s9xF;eYR~t+!-g{DH)EdObv?sniC@| z@tl+-KQ33e=-+hSax_pc+PKggRocxU*%JAaxBvV4_!@;py(_n)k=Ir$9I-chI68>!fXZi+mg1m^C$7vNFrAy8~>Q#J)2*x+GjJ>|5 zOBxe}TCFeB9E%PuHlH#VPpp0-aL2C2xS#_V4UfFDJzbIyGhg*+f<3ryQ8 zUIk2|exh$fsb3S|!hMo6pbCOC^JF*~cC_YhV!y~91yY5FYbX#O3^?tuo=elk8cpDu z5BjdcVUwYMPOR|`0qsd3{|L8>Vq@!F&}Fyqv!E%cBm)%uWHAZar)?FRu6Ee59B|8- zx(O7OAVRnZWWHDasM*+`4hboes{>t^PxW&Nz310~FuJjIg4vgQLNvhfKux7odAVjj zxUYeQT3AglItmL$qlj?$Xlg(YE>Rh}cYT#<;_tMt+1?fopa>Gv0N*JaBigogEO-LJ zPiaZKC-EAjb@y1UxXC$2shv%!YBDJsn_E=PRc6dqMk-W5o(N`LneW6g6(n0ge!U{C z9tX)yFzf01uyOC1@Hwgo9(PKn(lp%5ElZs~SSnkPJhze^$!^MVayN|Uj1kxX!McLJ zmuGzvr8E+_vCjEbDey(J>2MZoIm{G`F|*y%ZHBr_CO6>!E~v&m9uvd}WunDdhyVhy z9`$XJ5{j|4&3@e*`FCaXqpQKV2ixvRvv@{|QPlEgC&Y)R1b@Wmj$1o{4`TA^GESk^ zIH5s%68TV7P5T8~hR;`#6>QHIXEI=y2$(VnrQDG~C+t`b(mg=p$ZGBw84xD}h#}kj zG90`d`(?$ujzPZi6=nwh-!ahVKx65n6z#h$^&U;fAxj_az%J;_)Zs2V!s49z0nR&# zUYr&FG*-mMOJFvU+?8qmLl^{B-KjqC^mkFUSQ(RdWOHw&BZs+JB3ARA6}8#J4=VBz z320y2WsMjfUWeCHQn~}FN!m4nZYzuAcKk<0t|=syBqFJhNcqNGG0ik6lppDdpH$0CLdzju*@#>DND#agcb`X#w4;TTH2A4ZmO z0WPK44+bEqq2N&QC;}F)OVYi>4b1y{noZfG2zgdMI~E9d#0w-foXi7mH(?~B0YiTH z)f5-T>>aa$DciWD0tYM4;u_OxvjONZr^`iv0FJjLG40S!U(ADwm6WyO{J3fuScxwx zPcoLw-LelL@LcG4m*CY=Lz+OpjlpN@(F#%iVd7%50JUo$j<)&qN?9}u zd3?&0b!`822Y_D29Yr9VNGSL?fbW{1!zpCMC|8m(D1)(6A8xV#n&H48_DGOHaY$H~ z)YaqR7K<3!{(QaHY}wYd{%g|P_0X@J=E|y^6=H{~T8!D2xdk!9q=U<7aurQpvhCv& z8W^Wx$V9`H`%Y+zDA%yF1LSN)UPP=Lk!5ko#)h(~Dbs93$rR3$T0Ffys<%kfgt*e8 zb=*HFB+^kYnl^k}Ev-DkRhnPnj;`v0j3N84tpz>$__j|R38&nw6%@-W(WqGgR-KpH ztS;q08Uf1;t%b+ZRioJgqjnf|e@Wx8%yDbGDP%8T;+f5(!@+0?2uP^W&PX%wFsPGJ z7uXHA1vQS=z**!EL`tSE-WPFaxp9s}kbl6NVvE_ZHQu<3_KGclonwDGxzZ-fC5s{F zIpi;k2N>n=G4!&U%7gX-AU6@b$gt#cy#GplXed%9DOCDksriLV8_pcdGA_@YH>A6hs|anroN9;vd9YMXmWDGGS_NE ze-6K*NK-|u+-Z^Gpg6aRxx)q3;2`>h{jyg zw2#Ca`y^bMj_1|PApfX|FW%g2`We$@tC6q^B3%vq|b6bIx^VYe&lVI|mKITbCOMH)s;MLlCx0gcxsX|r{rGSRe+ zh3`l-!MN%1zFmxh6Bf-%xK4aH6VGeo8(y!a6MS{0%4WM;boUAa>z%v`W^`n4LP*fM zH$JT^qDv{Z6q3Ei0#AgkQ>a$h_bNYix8R^YEO6Lht~9o6Pf*Knu;eEV>;?MF7(Kkk zR5(zhCWu#{3dn7F%&Zz?oUc@6wYI z+NX0OFaVi^6b26@2M&R}k#`4VB@XFQmVSyKNX%kFeg@bQ6nUMX8ZgxI-E{BGMwSR1DtQ?QSv7fQ7-9EHKWv1Q*ax~FpDOE=z$vE!g@(f0> zlbjcbaBdIWbno#IxaEr`>appH__8$0BHz^Ffgq7o30mRccd0rj$fKD-_v(s}YC=SH zDKMo*K+#+qDF1yciZ1;dOCXN%pnJ|F{|addHtfWW1}O4#i| z`r^hgi3yaJl-AJevPOFKOBLP$T$w3izBZJ>yT*Y_A2jSQ0&31Y(b9taojb_!?j}^1 z{9=9qOsZe{^4o$e?_m!Q;YVpxKLJq}X=duv`?{18F080wa%WG83Bj;GM*)NM8+|mB zD7!Xtcw9ePBiYj})<6PC>Ez%6h;uTfII)U?%CHs_i>4Bgzmzd`X&I3t7j%Ccswv;J z#BvwUl_PVhJahAv>o9R4y`sY6CVVP6JzfH;5`G!mu8*urJBFiCbiG47(ZCj=0alp@ zjW-anz~bg{n&$9!!+DS(D^sk&vfC8QF1Dgo#BzcEk;icfBfL1bZvDm)aQa#yjCpBI z2mbs30SsuyKQqD#i@@o6Vqa-@G;;#!H?cG07Qo2Qeg8@tG4QZ{2WTKh%-l0IZp#j4 z)}g;>3g7V^``P)VY=ooVp`q4!|L=eL%|Cwg+kgD=FMt2@pZnJ==jW!v3safKY^+IElzhMWdB?y(oB`sip# zU*FsE6a&llHzei+!cG6p4zq4fw^P^85a_cux2|_-mP#^m?A)4=TPR#MreuH+=ypZk zPUPRLk`2y%90ksfWs_S?+xCrvKDT0_R7H*L=K!0@MZ0;Ij zAz)=Xpo_BrejaCHma-ny^j=+t?H_$3#21sNP-;@oVtZy)sm3VTXYYUE7 zmRX~h=8_m*Mx~`Eo%o1gVjk^tYU!zx|Qa zXm7MM#Y!4Dj=QJqqq?h19({G-EhjeqPG-~7Seh=_ zu)_|}C~Bi$JcG+m9Tb!Tm^KqUNU8>kc{AVCylr}Kv*sQCh;yH!De5X}DJ(2Ro=$=#6 z#6n{qUfATOWb&)n97z4enNbu1ZPPc4g06x>*m`=13!o&#v7L@?4BoXYE!947y@uLm zyGd)0@-RBn?Td^#;~fNG2ZOP*Zcr${vmn7R^E=fGq$hVF-Q*}x zW!}JIVGh2P#|{Lw1C1O~(}Y4>!OnyDBk0}+m89=SS3CIUam`$LFxdZmop(5kkY(`4 zv6(Lz2c=G5LvRO+AB>xgXQ9#>Ji|Z{cQ*0kkrW~SE&RbyFLJc#c<`bwDdQ1z!UtHp zjVcIjcBXu4H)o=~kaUGM=DsEz_fDKyr#Z9}PA=|b4dQ75=<8k@GnrA;S4DHcv;Iw# zR7uxQUKAVT^xNmM&3f1h$ZeUEyDvFNZp0bRb9JT7CB%ub#?H=3TNUCceny)g=PylRNf4=QZ4 zLG?OMET_O5I&vzYYX!PL`?(V)?Tl)Ti^<8Y<>ymL)9^3HGp}4SU-}NaLO98gQFjEz zo<;N{+|$D7VDxO{oj<0eLnEcAxTDN68Tvi$loWgaJ~JKF8!`n3T9Or)i2AS<fzYAe^1zD!%_aeUZX-u*7>(x z*Y`iJeL$Kb5>CADJY*coqL`{uG`H{~1qTIvmNrs3B0c_$jrK;l@l;$#E5vFeaR8_v zN+DXRi$`7=*qIWkZMKHL`7y#G+>tb8gc%uodMs;`uPvPPIr(?l}$1@BZ^Nmw#}o8vwiHEPFMBilksd?v?eHMho-4}kov(@e7dgntR* zMea;~`NHSh_dEGr79r)CK8z2fiK|jjex7L%y8v}5H-@ijN zN^MNXz)4_7*$CBES9)&WfkjsTi1%K>-GD5man$hNU7I*py4u9OW^yJQ<@YN^JHXsl zPx3|g*k$FU+WLy+=YFf{0{-h8K)_;crxq1Il=j%zf#GhYE9H|Uo?16n@W#H3aT)ye zgXf@OMWRmWJ!wfTQuUk7W-BhZ`m<`@Xt6906PkGKG2FoMzk?(AV#IJ3Pz_Sk;>?Y0oWnhfw7EDB6k>N(6HRcUH!`N#0WZs@-XHOX;>7CpKj%I{ow#| zKT*i@GeCe?|N1F#2
    vQ~6o-$VWS5>*Ahr5}R}Tm_z5CIcg1lX$hV*$cv1GQ{n_(14L!D*G5ae z&X-&>ulAHYC04y~Zo|!!He;Mmotu@pyHhGU%D3^sdChObWH8{-Ykax)ExJtYj$l=o z+QzbWaeHAG%~t_rWaP)^v|4i+FwBxg5DY_WeaCsA^hQ&}e`q@mc?RlQPz&OLsZNK~ zQ+sw2z$r_ttx@7uOidxx zzj1yTK9p1`gm*zCs540}fI0}qC8#5m>R+3(gRNsZ83kV7Pt99%)PGw}$Fqy~MGqrs z1R9^|gh{vq>>v?0ob@t?w9Zox+{%as1b}{2MsuVXTgZl>V2If#Su=!G=HYA>glT|p z{uhc!3zT1cPmy=_KbQ0E0=d4%ol2H7}y}^@c&AdYi%8qW1lsX=ktVMUR*Td7O;)7n@`jjvkGV zp8x0}-ZRFu!IrZMAHHnUTHzTn(cNE(&d2J|{I(u}P`=zDyNxhL_B5x)tx7^lb5#}O zc+zBc#sj$>s{f)t7L=n%2dIqHyIPqtbQ0=|5F(BeT&<2?Rq={fQaw)-vPa3?^@J0v za&mrJ@^&eIvcsl2L*2&PUm5?3AHsPRo@-sOe`N^aIjh;0*U6!6T2jivttFe2bt?QF`IN7C#5+wKw#f)wdw}j<_3)Y z>%!lT1G(0sgqKDWqFLQQsUYfT&&vuQ_JaU5Fi*VYFiY%bfW#PhN#gTT%SbxLz$2qX z)B7Ipp$}XLSavi?5X&c3N@d-C9Sc|)gZj@6fzI=JZbI(_lrv#2~_aYU43JOfS5M zCyd&M{l)Zuui^iVCeKsGbX+6iHGGm~^hZk}4jhD&VkTli|GAFz3Ej2mCTh3z!mxR# zv}I|(t9Kf(KoiZRG5P7Nn^BM&&`OoPdKIYN`8Gs(QM^Z=!ixA1zh;GYJ@LJR!OMW) zx#s&UwcLFhrw2=yq3yRUm5Zg(MBh!pte+Oy=yOQl0yq5%^$1AQG4_ul0Ne>k7*5Zl3@8CPQndm}`-;b* zbECBkBKDk(JUewR4ZwdE3H@gvg^+GU1jW*|r5nMN7Xr&ZlAfcMRh)%-8%4zeXC3m8 zMIGofDnt6+(aSD2fodZevB2Ei5zXn-lN(N^hD@i^%j|VW?OFlt9<7;g~>i3Xmoh$ru!U4&0_0dmuMf@fd? zhDjA-DsUz_yK1vm(pR?}Oj*xl_U9ZB_18$JhD#Pl#jqw}huznS`w6pMju62gFUvx1 z3$Grlu@&-;Lofglhn76DjTj#W{Lrrr5gu{Y(dmaCi6E3VcWGts1O92^4L?q4^Q{1^ z{Vi*goU=VbxGWJf@RtBvAH~Jp#R2R)Hfg3rkLNMo$Q&w-u8F$ftQVZ4O@wG#lz9$E z`}x$($BYqtCN4Sr`{2NGMuP=H>hWjhr|CxP7NlYhq$ocm>jxWl8yP)W1R5%hn6A^6 zR5Xv$9>)HD3;sEs=8B5^e!sRY{B$YO17k56AJZ`jB&mRK2*(PQ?(WG6SNV-=Th@OB zlNFvrDSU|@F-jv*8kKghgx8ElJ}pY&#<4)dUaUx0eQUxRWm|r^*Kg_dK8Ws7b&nM; zd^r;&fEIz8r>Vh!ue=0TAnU~}`@*XiufEtS_`pJ4mQEf2gO3%BCqt4+EYEZK+s6^i{)tSPj8p-{%L`U?yCe0FI&(do@~Sb z29e(!z_R&yh-yc`-#>U$@KjWqtxp$*BB-lu$2?n{0UX~*@%^nNwc%ZKekp3)f;!@| zq??P`w8e`Nh@t4m0`Na+Yhd{4+t7@sKBooxTfHprQw{LkGU;&a=U|ipD$qU*z`v}; zcizNoF%9@0net$*CcQHUh&4e`;gj*1v80&6ZE-beLxGJ#4hOS0_vH_r_Z#Xq}3cQ%_>S;eVXDjtYraMfQmQoI%BH@PxWHlm%Kak=Igu51=A z&+FB4v90h1a6&E_oD-Y3L0A;S672ef&%zAlOrw;At=c}s)*uwMwodS0RI|-~h)U#5 z=%7;;Q>m8t?EH0wRe@b!1X>&_%wVh@tI!R{aY2&12C%W6D3$6ND;o^Z^Ash}@ zM62bD_E&bZoZPPlh1S1%J;ol2t~TlZhrsJkrg zfZl4JD3Fb)dV${ky1{Uxsf|a+7j$n)%?AA?7|BK`M|LUS0F?(1tLUT_n?#e#r))_r zb}qfEZg89$0(8>SA16q^_jR^Z7z)_bwa@;lEQ*OsS!uN7PZ%O!Nc$vK7o-^AI{)0^ zd?j7QeEyl)?DCbW3FF5$Hg)JT!J5Z&y_NCA?-gL7#J&f-t`7?YAlI|-9$&GKvSYSF zfgdp;^sU~H;)=bJ^jXpbi~m_Bs`+uxKd`T^f?ak^wGwTCw8GoeDS(yCU#fbWV}Z3r zrI>)T3~!m^EyoV9al}$O2z|$8Ns&=98o+Io8T5Fq=evCLTfM@-=jWHPy-M#;Lp^ zeKi)KBY9lDC{mO$Ye-E{d2Fpt>2!B*g8WY6UAts;&gXo<$%(jE^0WO>Vsd-*?Xs9b zgMsg)FU09%@Nhh?^;ixhIXK7EI!oQ2Kq6IyHt~87Jlg21;}^1DCf?~KR4*0Z!R59p zwn{nUO~XmscQ5JN(Bv0abjYVaawdI2!=(Y zd8T69|QQlhDY#8 z9$2Umf1AMv-x6%+VOHk_H}LO%^4g?W=_;zpAi1x1&1bSSK2^gG;cTaV9re&mmI*c= zi@gyDUxgDP2WU{$2xx0&v%p>f z#vYe#69mr>J7XCK75g#TMlOw9W*j#KwJ5vcmrVSe$1QWZ5qrg1C!fwF)Ld1pis8O7 z7zn4PKv?+;ncaiVWk#&hZ2XzaQ;|GNdiCmcQ+AKRwbs-5N?NBDyDcdL5e_q4xQ$5FE`n#xU)@p@dy z;UPZffDk>DVu6*q{fQdJB#-Hnh~zblIHrFtaXP=VEzR{PnkJu7!b}^le;qy{8-_AI z0>ZP(HgMfI0u+0|%5t4?OHist{)!HtHbe9Gigs6>%PW^P`x1{PU4>X>LFn%#VDG8{ za#TP=kH=l6^(A}Mh^5-ZEvp(7#lItHn~roAPJGFTSgOY3AyZqk(|ofNDYk-sCsBRF zrp^hFk>NoxZ@t4MbbKZVan@pZ3I
    mtZ>jKl=rz*>|~bi)5B;(0#DhiITtzGR1Kc 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

    I}ZMaz=WkdE&YAHfU1$Ct48sbk5iQinJ; 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ζ?nA@cfFBJ8$6}&cJ@Snw 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

    (LSYrf+$ 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 literal 0 HcmV?d00001 diff --git a/New-Second-Edition/Ch08 - Semantic Analysis/Ch08a - Exploring WordNet.ipynb b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08a - Exploring WordNet.ipynb new file mode 100644 index 0000000..132fc58 --- /dev/null +++ b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08a - Exploring WordNet.ipynb @@ -0,0 +1,934 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "from nltk.corpus import wordnet as wn\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# WordNet Synsets" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Synsets: 5\n" + ] + } + ], + "source": [ + "term = 'fruit'\n", + "synsets = wn.synsets(term)\n", + "print('Total Synsets:', len(synsets))" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "

    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    SynsetPart of SpeechDefinitionLemmasExamples
    0Synset('fruit.n.01')noun.plantthe ripened reproductive body of a seed plant[fruit][]
    1Synset('yield.n.03')noun.artifactan amount of a product[yield, fruit][]
    2Synset('fruit.n.03')noun.eventthe consequence of some effort or action[fruit][he lived long enough to see the fruit of his policies]
    3Synset('fruit.v.01')verb.creationcause to bear fruit[fruit][]
    4Synset('fruit.v.02')verb.creationbear fruit[fruit][the trees fruited early this year]
    \n", + "
    " + ], + "text/plain": [ + " Synset Part of Speech \\\n", + "0 Synset('fruit.n.01') noun.plant \n", + "1 Synset('yield.n.03') noun.artifact \n", + "2 Synset('fruit.n.03') noun.event \n", + "3 Synset('fruit.v.01') verb.creation \n", + "4 Synset('fruit.v.02') verb.creation \n", + "\n", + " Definition Lemmas \\\n", + "0 the ripened reproductive body of a seed plant [fruit] \n", + "1 an amount of a product [yield, fruit] \n", + "2 the consequence of some effort or action [fruit] \n", + "3 cause to bear fruit [fruit] \n", + "4 bear fruit [fruit] \n", + "\n", + " Examples \n", + "0 [] \n", + "1 [] \n", + "2 [he lived long enough to see the fruit of his policies] \n", + "3 [] \n", + "4 [the trees fruited early this year] " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.options.display.max_colwidth = 200\n", + "fruit_df = pd.DataFrame([{'Synset': synset,\n", + " 'Part of Speech': synset.lexname(),\n", + " 'Definition': synset.definition(),\n", + " 'Lemmas': synset.lemma_names(),\n", + " 'Examples': synset.examples()}\n", + " for synset in synsets])\n", + "fruit_df = fruit_df[['Synset', 'Part of Speech', 'Definition', 'Lemmas', 'Examples']]\n", + "fruit_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Entailments" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Synset('walk.v.01') -- entails --> [Synset('step.v.01')]\n", + "Synset('eat.v.01') -- entails --> [Synset('chew.v.01'), Synset('swallow.v.01')]\n", + "Synset('digest.v.01') -- entails --> [Synset('consume.v.02')]\n" + ] + } + ], + "source": [ + "for action in ['walk', 'eat', 'digest']:\n", + " action_syn = wn.synsets(action, pos='v')[0]\n", + " print(action_syn, '-- entails -->', action_syn.entailments())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Homonyms \\ Homographs " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "bank.n.01 - sloping land (especially the slope beside a body of water)\n", + "depository_financial_institution.n.01 - a financial institution that accepts deposits and channels the money into lending activities\n", + "bank.n.03 - a long ridge or pile\n", + "bank.n.04 - an arrangement of similar objects in a row or in tiers\n", + "bank.n.05 - a supply or stock held in reserve for future use (especially in emergencies)\n", + "bank.n.06 - the funds held by a gambling house or the dealer in some gambling games\n", + "bank.n.07 - a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force\n", + "savings_bank.n.02 - a container (usually with a slot in the top) for keeping money at home\n", + "bank.n.09 - a building in which the business of banking transacted\n", + "bank.n.10 - a flight maneuver; aircraft tips laterally about its longitudinal axis (especially in turning)\n", + "bank.v.01 - tip laterally\n", + "bank.v.02 - enclose with a bank\n", + "bank.v.03 - do business with a bank or keep an account at a bank\n", + "bank.v.04 - act as the banker in a game or in gambling\n", + "bank.v.05 - be in the banking business\n", + "deposit.v.02 - put into a bank account\n", + "bank.v.07 - cover with ashes so to control the rate of burning\n", + "trust.v.01 - have confidence or faith in\n" + ] + } + ], + "source": [ + "for synset in wn.synsets('bank'):\n", + " print(synset.name(),'-',synset.definition())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Synonyms & Antonyms" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Synonym: large.a.01\n", + "Definition: above average in size or number or quantity or magnitude or extent\n", + "Antonym: small.a.01\n", + "Definition: limited or below average in number or quantity or magnitude or extent\n", + "\n" + ] + } + ], + "source": [ + "term = 'large'\n", + "synsets = wn.synsets(term)\n", + "adj_large = synsets[1]\n", + "adj_large = adj_large.lemmas()[0]\n", + "adj_large_synonym = adj_large.synset()\n", + "adj_large_antonym = adj_large.antonyms()[0].synset()\n", + "\n", + "print('Synonym:', adj_large_synonym.name())\n", + "print('Definition:', adj_large_synonym.definition())\n", + "print('Antonym:', adj_large_antonym.name())\n", + "print('Definition:', adj_large_antonym.definition())\n", + "print()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Synonym: rich_people.n.01\n", + "Definition: people who have possessions and wealth (considered as a group)\n", + "Antonym: poor_people.n.01\n", + "Definition: people without possessions or wealth (considered as a group)\n", + "\n", + "Synonym: rich.a.01\n", + "Definition: possessing material wealth\n", + "Antonym: poor.a.02\n", + "Definition: having little money or few possessions\n", + "\n", + "Synonym: rich.a.02\n", + "Definition: having an abundant supply of desirable qualities or substances (especially natural resources)\n", + "Antonym: poor.a.04\n", + "Definition: lacking in specific resources, qualities or substances\n", + "\n" + ] + } + ], + "source": [ + "term = 'rich'\n", + "synsets = wn.synsets(term)[:3]\n", + "\n", + "for synset in synsets:\n", + " rich = synset.lemmas()[0]\n", + " rich_synonym = rich.synset()\n", + " rich_antonym = rich.antonyms()[0].synset()\n", + " \n", + " print('Synonym:', rich_synonym.name())\n", + " print('Definition:', rich_synonym.definition())\n", + " print('Antonym:', rich_antonym.name())\n", + " print('Definition:', rich_antonym.definition())\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Hyponyms & Hypernyms" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Name: tree.n.01\n", + "Definition: a tall perennial woody plant having a main trunk and branches forming a distinct elevated crown; includes both gymnosperms and angiosperms\n" + ] + } + ], + "source": [ + "term = 'tree'\n", + "synsets = wn.synsets(term)\n", + "tree = synsets[0]\n", + "\n", + "print('Name:', tree.name())\n", + "print('Definition:', tree.definition())" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Hyponyms: 180\n", + "Sample Hyponyms\n", + "aalii.n.01 - a small Hawaiian tree with hard dark wood\n", + "\n", + "acacia.n.01 - any of various spiny trees or shrubs of the genus Acacia\n", + "\n", + "african_walnut.n.01 - tropical African timber tree with wood that resembles mahogany\n", + "\n", + "albizzia.n.01 - any of numerous trees of the genus Albizia\n", + "\n", + "alder.n.02 - north temperate shrubs or trees having toothed leaves and conelike fruit; bark is used in tanning and dyeing and the wood is rot-resistant\n", + "\n", + "angelim.n.01 - any of several tropical American trees of the genus Andira\n", + "\n", + "angiospermous_tree.n.01 - any tree having seeds and ovules contained in the ovary\n", + "\n", + "anise_tree.n.01 - any of several evergreen shrubs and small trees of the genus Illicium\n", + "\n", + "arbor.n.01 - tree (as opposed to shrub)\n", + "\n", + "aroeira_blanca.n.01 - small resinous tree or shrub of Brazil\n", + "\n" + ] + } + ], + "source": [ + "hyponyms = tree.hyponyms()\n", + "print('Total Hyponyms:', len(hyponyms))\n", + "print('Sample Hyponyms')\n", + "for hyponym in hyponyms[:10]:\n", + " print(hyponym.name(), '-', hyponym.definition())\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[Synset('woody_plant.n.01')]\n" + ] + } + ], + "source": [ + "hypernyms = tree.hypernyms()\n", + "print(hypernyms)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Hypernym paths: 1\n" + ] + } + ], + "source": [ + "# get total hierarchy pathways for 'tree'\n", + "hypernym_paths = tree.hypernym_paths()\n", + "print('Total Hypernym paths:', len(hypernym_paths))" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Hypernym Hierarchy\n", + "entity.n.01 -> physical_entity.n.01 -> object.n.01 -> whole.n.02 -> living_thing.n.01 -> organism.n.01 -> plant.n.02 -> vascular_plant.n.01 -> woody_plant.n.01 -> tree.n.01\n" + ] + } + ], + "source": [ + "# print the entire hypernym hierarchy\n", + "print('Hypernym Hierarchy')\n", + "print(' -> '.join(synset.name() for synset in hypernym_paths[0]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Holonyms & Meronyms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Member Holonyms" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Member Holonyms: 1\n", + "Member Holonyms for [tree]:-\n", + "forest.n.01 - the trees and other plants in a large densely wooded area\n", + "\n" + ] + } + ], + "source": [ + "member_holonyms = tree.member_holonyms() \n", + "print('Total Member Holonyms:', len(member_holonyms))\n", + "print('Member Holonyms for [tree]:-')\n", + "for holonym in member_holonyms:\n", + " print(holonym.name(), '-', holonym.definition())\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Part Meronyms" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Part Meronyms: 5\n", + "Part Meronyms for [tree]:-\n", + "burl.n.02 - a large rounded outgrowth on the trunk or branch of a tree\n", + "\n", + "crown.n.07 - the upper branches and leaves of a tree or other plant\n", + "\n", + "limb.n.02 - any of the main branches arising from the trunk or a bough of a tree\n", + "\n", + "stump.n.01 - the base part of a tree that remains standing after the tree has been felled\n", + "\n", + "trunk.n.01 - the main stem of a tree; usually covered with bark; the bole is usually the part that is commercially useful for lumber\n", + "\n" + ] + } + ], + "source": [ + "part_meronyms = tree.part_meronyms()\n", + "print('Total Part Meronyms:', len(part_meronyms))\n", + "print('Part Meronyms for [tree]:-')\n", + "for meronym in part_meronyms:\n", + " print(meronym.name(), '-', meronym.definition())\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Substance Meronyms" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total Substance Meronyms: 2\n", + "Substance Meronyms for [tree]:-\n", + "heartwood.n.01 - the older inactive central wood of a tree or woody plant; usually darker and denser than the surrounding sapwood\n", + "\n", + "sapwood.n.01 - newly formed outer wood lying between the cambium and the heartwood of a tree or woody plant; usually light colored; active in water conduction\n", + "\n" + ] + } + ], + "source": [ + "substance_meronyms = tree.substance_meronyms() \n", + "print('Total Substance Meronyms:', len(substance_meronyms))\n", + "print('Substance Meronyms for [tree]:-')\n", + "for meronym in substance_meronyms:\n", + " print(meronym.name(), '-', meronym.definition())\n", + " print()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Semantic Relationships & Similarities" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "tree - a tall perennial woody plant having a main trunk and branches forming a distinct elevated crown; includes both gymnosperms and angiosperms\n", + "\n", + "lion - large gregarious predatory feline of Africa and India having a tawny coat with a shaggy mane in the male\n", + "\n", + "tiger - large feline of forests in most of Asia having a tawny coat with black stripes; endangered\n", + "\n", + "cat - feline mammal usually having thick soft fur and no ability to roar: domestic cats; wildcats\n", + "\n", + "dog - a member of the genus Canis (probably descended from the common wolf) that has been domesticated by man since prehistoric times; occurs in many breeds\n", + "\n" + ] + } + ], + "source": [ + "tree = wn.synset('tree.n.01')\n", + "lion = wn.synset('lion.n.01')\n", + "tiger = wn.synset('tiger.n.02')\n", + "cat = wn.synset('cat.n.01')\n", + "dog = wn.synset('dog.n.01')\n", + "\n", + "# create entities and extract names and definitions\n", + "entities = [tree, lion, tiger, cat, dog]\n", + "entity_names = [entity.name().split('.')[0] for entity in entities]\n", + "entity_definitions = [entity.definition() for entity in entities]\n", + "\n", + "# print entities and their definitions\n", + "for entity, definition in zip(entity_names, entity_definitions):\n", + " print(entity, '-', definition)\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "common_hypernyms = []\n", + "for entity in entities:\n", + " # get pairwise lowest common hypernyms\n", + " common_hypernyms.append([entity.lowest_common_hypernyms(compared_entity)[0]\n", + " .name().split('.')[0]\n", + " for compared_entity in entities])" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    treeliontigercatdog
    treetreeorganismorganismorganismorganism
    lionorganismlionbig_catfelinecarnivore
    tigerorganismbig_cattigerfelinecarnivore
    catorganismfelinefelinecatcarnivore
    dogorganismcarnivorecarnivorecarnivoredog
    \n", + "
    " + ], + "text/plain": [ + " tree lion tiger cat dog\n", + "tree tree organism organism organism organism\n", + "lion organism lion big_cat feline carnivore\n", + "tiger organism big_cat tiger feline carnivore\n", + "cat organism feline feline cat carnivore\n", + "dog organism carnivore carnivore carnivore dog" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# build pairwise lower common hypernym matrix\n", + "common_hypernym_frame = pd.DataFrame(common_hypernyms,\n", + " index=entity_names, \n", + " columns=entity_names)\n", + "common_hypernym_frame" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "similarities = []\n", + "for entity in entities:\n", + " # get pairwise similarities\n", + " similarities.append([round(entity.path_similarity(compared_entity), 2)\n", + " for compared_entity in entities])" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    treeliontigercatdog
    tree1.000.070.070.080.12
    lion0.071.000.330.250.17
    tiger0.070.331.000.250.17
    cat0.080.250.251.000.20
    dog0.120.170.170.201.00
    \n", + "
    " + ], + "text/plain": [ + " tree lion tiger cat dog\n", + "tree 1.00 0.07 0.07 0.08 0.12\n", + "lion 0.07 1.00 0.33 0.25 0.17\n", + "tiger 0.07 0.33 1.00 0.25 0.17\n", + "cat 0.08 0.25 0.25 1.00 0.20\n", + "dog 0.12 0.17 0.17 0.20 1.00" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# build pairwise similarity matrix \n", + "similarity_frame = pd.DataFrame(similarities,\n", + " index=entity_names, \n", + " columns=entity_names)\n", + "similarity_frame" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Word Sense Disambiguation" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sentence: The fruits on that plant have ripened\n", + "Word synset: Synset('fruit.n.01')\n", + "Corresponding defition: the ripened reproductive body of a seed plant\n", + "\n", + "Sentence: He finally reaped the fruit of his hard work as he won the race\n", + "Word synset: Synset('fruit.n.03')\n", + "Corresponding defition: the consequence of some effort or action\n", + "\n" + ] + } + ], + "source": [ + "from nltk.wsd import lesk\n", + "from nltk import word_tokenize\n", + "\n", + "# sample text and word to disambiguate\n", + "samples = [('The fruits on that plant have ripened', 'n'),\n", + " ('He finally reaped the fruit of his hard work as he won the race', 'n')]\n", + "\n", + "# perform word sense disambiguation\n", + "word = 'fruit'\n", + "for sentence, pos_tag in samples:\n", + " word_syn = lesk(word_tokenize(sentence.lower()), word, pos_tag)\n", + " print('Sentence:', sentence)\n", + " print('Word synset:', word_syn)\n", + " print('Corresponding defition:', word_syn.definition())\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sentence: Lead is a very soft, malleable metal\n", + "Word synset: Synset('lead.n.02')\n", + "Corresponding defition: a soft heavy toxic malleable metallic element; bluish white when freshly cut but tarnishes readily to dull grey\n", + "\n", + "Sentence: John is the actor who plays the lead in that movie\n", + "Word synset: Synset('star.n.04')\n", + "Corresponding defition: an actor who plays a principal role\n", + "\n", + "Sentence: This road leads to nowhere\n", + "Word synset: Synset('run.v.23')\n", + "Corresponding defition: cause something to pass or lead somewhere\n", + "\n" + ] + } + ], + "source": [ + "# sample text and word to disambiguate\n", + "samples = [('Lead is a very soft, malleable metal', 'n'),\n", + " ('John is the actor who plays the lead in that movie', 'n'),\n", + " ('This road leads to nowhere', 'v')]\n", + "\n", + "word = 'lead'\n", + "\n", + "# perform word sense disambiguation\n", + "for sentence, pos_tag in samples:\n", + " word_syn = lesk(word_tokenize(sentence.lower()), word, pos_tag)\n", + " print('Sentence:', sentence)\n", + " print('Word synset:', word_syn)\n", + " print('Corresponding defition:', word_syn.definition())\n", + " print()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch08 - Semantic Analysis/Ch08b - Named Entity Recognition.ipynb b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08b - Named Entity Recognition.ipynb new file mode 100644 index 0000000..6c2f140 --- /dev/null +++ b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08b - Named Entity Recognition.ipynb @@ -0,0 +1,650 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Named Entity Recognition\n", + "\n", + "In any text document, there are particular terms that represent specific entities that are more informative and have a unique context. These entities are known as named entities , which more specifically refer to terms that represent real-world objects like people, places, organizations, and so on, which are often denoted by proper names. \n", + "\n", + "__Named entity recognition (NER)__ , also known as entity chunking/extraction , is a popular technique used in information extraction to identify and segment the named entities and classify or categorize them under various predefined classes.\n", + "\n", + "There are out of the box NER taggers available through popular libraries like __`nltk`__ and __`spacy`__. Each library follows a different approach to solve the problem." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# NER with SpaCy" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Three more countries have joined an “international grand committee” of parliaments, adding to calls for \n", + "Facebook’s boss, Mark Zuckerberg, to give evidence on misinformation to the coalition. Brazil, Latvia and Singapore \n", + "bring the total to eight different parliaments across the world, with plans to send representatives to London on 27 \n", + "November with the intention of hearing from Zuckerberg. Since the Cambridge Analytica scandal broke, the Facebook chief \n", + "has only appeared in front of two legislatures: the American Senate and House of Representatives, and the European parliament. \n", + "Facebook has consistently rebuffed attempts from others, including the UK and Canadian parliaments, to hear from Zuckerberg. \n", + "He added that an article in the New York Times on Thursday, in which the paper alleged a pattern of behaviour from Facebook \n", + "to “delay, deny and deflect” negative news stories, “raises further questions about how recent data breaches were allegedly \n", + "dealt with within Facebook.”\n", + "\n" + ] + } + ], + "source": [ + "text = \"\"\"Three more countries have joined an “international grand committee” of parliaments, adding to calls for \n", + "Facebook’s boss, Mark Zuckerberg, to give evidence on misinformation to the coalition. Brazil, Latvia and Singapore \n", + "bring the total to eight different parliaments across the world, with plans to send representatives to London on 27 \n", + "November with the intention of hearing from Zuckerberg. Since the Cambridge Analytica scandal broke, the Facebook chief \n", + "has only appeared in front of two legislatures: the American Senate and House of Representatives, and the European parliament. \n", + "Facebook has consistently rebuffed attempts from others, including the UK and Canadian parliaments, to hear from Zuckerberg. \n", + "He added that an article in the New York Times on Thursday, in which the paper alleged a pattern of behaviour from Facebook \n", + "to “delay, deny and deflect” negative news stories, “raises further questions about how recent data breaches were allegedly \n", + "dealt with within Facebook.”\n", + "\"\"\"\n", + "print(text)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Three more countries have joined an “international grand committee” of parliaments, adding to calls for Facebook’s boss, Mark Zuckerberg, to give evidence on misinformation to the coalition. Brazil, Latvia and Singapore bring the total to eight different parliaments across the world, with plans to send representatives to London on 27 November with the intention of hearing from Zuckerberg. Since the Cambridge Analytica scandal broke, the Facebook chief has only appeared in front of two legislatures: the American Senate and House of Representatives, and the European parliament. Facebook has consistently rebuffed attempts from others, including the UK and Canadian parliaments, to hear from Zuckerberg. He added that an article in the New York Times on Thursday, in which the paper alleged a pattern of behaviour from Facebook to “delay, deny and deflect” negative news stories, “raises further questions about how recent data breaches were allegedly dealt with within Facebook.”'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import re\n", + "\n", + "text = re.sub(r'\\n', '', text)\n", + "text" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "import spacy\n", + "\n", + "nlp = spacy.load('en')\n", + "text_nlp = nlp(text)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Three', 'CARDINAL'), ('more', ''), ('countries', ''), ('have', ''), ('joined', ''), ('an', ''), ('“', ''), ('international', ''), ('grand', ''), ('committee', ''), ('”', ''), ('of', ''), ('parliaments', ''), (',', ''), ('adding', ''), ('to', ''), ('calls', ''), ('for', ''), ('Facebook', 'ORG'), ('’s', ''), ('boss', ''), (',', ''), ('Mark', 'PERSON'), ('Zuckerberg', 'PERSON'), (',', ''), ('to', ''), ('give', ''), ('evidence', ''), ('on', ''), ('misinformation', ''), ('to', ''), ('the', ''), ('coalition', ''), ('.', ''), ('Brazil', 'GPE'), (',', ''), ('Latvia', 'GPE'), ('and', ''), ('Singapore', 'GPE'), ('bring', ''), ('the', ''), ('total', ''), ('to', ''), ('eight', 'CARDINAL'), ('different', ''), ('parliaments', ''), ('across', ''), ('the', ''), ('world', ''), (',', ''), ('with', ''), ('plans', ''), ('to', ''), ('send', ''), ('representatives', ''), ('to', ''), ('London', 'GPE'), ('on', ''), ('27', 'DATE'), ('November', 'DATE'), ('with', ''), ('the', ''), ('intention', ''), ('of', ''), ('hearing', ''), ('from', ''), ('Zuckerberg', 'PERSON'), ('.', ''), ('Since', ''), ('the', ''), ('Cambridge', 'GPE'), ('Analytica', ''), ('scandal', ''), ('broke', ''), (',', ''), ('the', ''), ('Facebook', 'ORG'), ('chief', ''), ('has', ''), ('only', ''), ('appeared', ''), ('in', ''), ('front', ''), ('of', ''), ('two', 'CARDINAL'), ('legislatures', ''), (':', ''), ('the', ''), ('American', 'NORP'), ('Senate', 'ORG'), ('and', ''), ('House', 'ORG'), ('of', 'ORG'), ('Representatives', 'ORG'), (',', ''), ('and', ''), ('the', ''), ('European', 'NORP'), ('parliament', ''), ('.', ''), ('Facebook', 'ORG'), ('has', ''), ('consistently', ''), ('rebuffed', ''), ('attempts', ''), ('from', ''), ('others', ''), (',', ''), ('including', ''), ('the', ''), ('UK', 'GPE'), ('and', ''), ('Canadian', 'NORP'), ('parliaments', ''), (',', ''), ('to', ''), ('hear', ''), ('from', ''), ('Zuckerberg', 'PERSON'), ('.', ''), ('He', ''), ('added', ''), ('that', ''), ('an', ''), ('article', ''), ('in', ''), ('the', 'ORG'), ('New', 'ORG'), ('York', 'ORG'), ('Times', 'ORG'), ('on', ''), ('Thursday', 'DATE'), (',', ''), ('in', ''), ('which', ''), ('the', ''), ('paper', ''), ('alleged', ''), ('a', ''), ('pattern', ''), ('of', ''), ('behaviour', ''), ('from', ''), ('Facebook', 'ORG'), ('to', ''), ('“', ''), ('delay', ''), (',', ''), ('deny', ''), ('and', ''), ('deflect', ''), ('”', ''), ('negative', ''), ('news', ''), ('stories', ''), (',', ''), ('“', ''), ('raises', ''), ('further', ''), ('questions', ''), ('about', ''), ('how', ''), ('recent', ''), ('data', ''), ('breaches', ''), ('were', ''), ('allegedly', ''), ('dealt', ''), ('with', ''), ('within', ''), ('Facebook', 'ORG'), ('.', ''), ('”', '')]\n" + ] + } + ], + "source": [ + "# print named entities in article\n", + "ner_tagged = [(word.text, word.ent_type_) for word in text_nlp]\n", + "print(ner_tagged)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + " Three\n", + " CARDINAL\n", + "\n", + " more countries have joined an “international grand committee” of parliaments, adding to calls for \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + "’s boss, \n", + "\n", + " Mark Zuckerberg\n", + " PERSON\n", + "\n", + ", to give evidence on misinformation to the coalition. \n", + "\n", + " Brazil\n", + " GPE\n", + "\n", + ", \n", + "\n", + " Latvia\n", + " GPE\n", + "\n", + " and \n", + "\n", + " Singapore\n", + " GPE\n", + "\n", + " bring the total to \n", + "\n", + " eight\n", + " CARDINAL\n", + "\n", + " different parliaments across the world, with plans to send representatives to \n", + "\n", + " London\n", + " GPE\n", + "\n", + " on \n", + "\n", + " 27 November\n", + " DATE\n", + "\n", + " with the intention of hearing from \n", + "\n", + " Zuckerberg\n", + " PERSON\n", + "\n", + ". Since the \n", + "\n", + " Cambridge\n", + " GPE\n", + "\n", + " Analytica scandal broke, the \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + " chief has only appeared in front of \n", + "\n", + " two\n", + " CARDINAL\n", + "\n", + " legislatures: the \n", + "\n", + " American\n", + " NORP\n", + "\n", + " \n", + "\n", + " Senate\n", + " ORG\n", + "\n", + " and \n", + "\n", + " House of Representatives\n", + " ORG\n", + "\n", + ", and the \n", + "\n", + " European\n", + " NORP\n", + "\n", + " parliament. \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + " has consistently rebuffed attempts from others, including the \n", + "\n", + " UK\n", + " GPE\n", + "\n", + " and \n", + "\n", + " Canadian\n", + " NORP\n", + "\n", + " parliaments, to hear from \n", + "\n", + " Zuckerberg\n", + " PERSON\n", + "\n", + ". He added that an article in \n", + "\n", + " the New York Times\n", + " ORG\n", + "\n", + " on \n", + "\n", + " Thursday\n", + " DATE\n", + "\n", + ", in which the paper alleged a pattern of behaviour from \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + " to “delay, deny and deflect” negative news stories, “raises further questions about how recent data breaches were allegedly dealt with within \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + ".”
    " + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from spacy import displacy\n", + "\n", + "# visualize named entities\n", + "displacy.render(text_nlp, style='ent', jupyter=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Spacy offers fast NER tagger based on a number of techniques. The exact algorithm hasn't been talked about in much detail but the documentation marks it as \"The exact algorithm is a pastiche of well-known methods, and is not currently described in any single publication \" \n", + "\n", + "The entities identified by spacy NER tagger are as shown in the following table \\(details here: [spacy_documentation](https://spacy.io/api/annotation#named-entities)\\)\n", + "\n", + "![](spacy_ner.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "named_entities = []\n", + "temp_entity_name = ''\n", + "temp_named_entity = None\n", + "for term, tag in ner_tagged:\n", + " if tag:\n", + " temp_entity_name = ' '.join([temp_entity_name, term]).strip()\n", + " temp_named_entity = (temp_entity_name, tag)\n", + " else:\n", + " if temp_named_entity:\n", + " named_entities.append(temp_named_entity)\n", + " temp_entity_name = ''\n", + " temp_named_entity = None" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Three', 'CARDINAL'), ('Facebook', 'ORG'), ('Mark Zuckerberg', 'PERSON'), ('Brazil', 'GPE'), ('Latvia', 'GPE'), ('Singapore', 'GPE'), ('eight', 'CARDINAL'), ('London', 'GPE'), ('27 November', 'DATE'), ('Zuckerberg', 'PERSON'), ('Cambridge', 'GPE'), ('Facebook', 'ORG'), ('two', 'CARDINAL'), ('American Senate', 'ORG'), ('House of Representatives', 'ORG'), ('European', 'NORP'), ('Facebook', 'ORG'), ('UK', 'GPE'), ('Canadian', 'NORP'), ('Zuckerberg', 'PERSON'), ('the New York Times', 'ORG'), ('Thursday', 'DATE'), ('Facebook', 'ORG'), ('Facebook', 'ORG')]\n" + ] + } + ], + "source": [ + "print(named_entities)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('ORG', 8),\n", + " ('GPE', 6),\n", + " ('CARDINAL', 3),\n", + " ('PERSON', 3),\n", + " ('DATE', 2),\n", + " ('NORP', 2)]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from collections import Counter\n", + "c = Counter([item[1] for item in named_entities])\n", + "c.most_common()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# NER with Stanford NLP\n", + "\n", + "Stanford’s Named Entity Recognizer is based on an implementation of linear chain __Conditional Random Field (CRF)__ sequence models. \n", + "\n", + "__Prerequisites:__ Download the official Stanford NER Tagger from [here](http://nlp.stanford.edu/software/stanford-ner-2014-08-27.zip), which seems to work quite well. You can try out a later version by going to [this website](https://nlp.stanford.edu/software/CRF-NER.shtml#Download)\n", + "\n", + "This model is only trained on instances of _PERSON, ORGANIZATION and LOCATION_ types. The model is exposed through ```nltk``` wrappers." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import os\n", + "from nltk.tag import StanfordNERTagger\n", + "\n", + "JAVA_PATH = r'C:\\Program Files\\Java\\jre1.8.0_192\\bin\\java.exe'\n", + "os.environ['JAVAHOME'] = JAVA_PATH\n", + "\n", + "STANFORD_CLASSIFIER_PATH = 'E:/stanford/stanford-ner-2014-08-27/classifiers/english.all.3class.distsim.crf.ser.gz'\n", + "STANFORD_NER_JAR_PATH = 'E:/stanford/stanford-ner-2014-08-27/stanford-ner.jar'\n", + "\n", + "sn = StanfordNERTagger(STANFORD_CLASSIFIER_PATH,\n", + " path_to_jar=STANFORD_NER_JAR_PATH)\n", + "sn" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Three', 'O'), ('more', 'O'), ('countries', 'O'), ('have', 'O'), ('joined', 'O'), ('an', 'O'), ('international', 'O'), ('grand', 'O'), ('committee', 'O'), ('of', 'O'), ('parliaments,', 'O'), ('adding', 'O'), ('to', 'O'), ('calls', 'O'), ('for', 'O'), ('Facebooks', 'ORGANIZATION'), ('boss,', 'O'), ('Mark', 'O'), ('Zuckerberg,', 'O'), ('to', 'O'), ('give', 'O'), ('evidence', 'O'), ('on', 'O'), ('misinformation', 'O'), ('to', 'O'), ('the', 'O'), ('coalition.', 'O'), ('Brazil,', 'O'), ('Latvia', 'LOCATION'), ('and', 'O'), ('Singapore', 'LOCATION'), ('bring', 'O'), ('the', 'O'), ('total', 'O'), ('to', 'O'), ('eight', 'O'), ('different', 'O'), ('parliaments', 'O'), ('across', 'O'), ('the', 'O'), ('world,', 'O'), ('with', 'O'), ('plans', 'O'), ('to', 'O'), ('send', 'O'), ('representatives', 'O'), ('to', 'O'), ('London', 'LOCATION'), ('on', 'O'), ('27', 'O'), ('November', 'O'), ('with', 'O'), ('the', 'O'), ('intention', 'O'), ('of', 'O'), ('hearing', 'O'), ('from', 'O'), ('Zuckerberg.', 'O'), ('Since', 'O'), ('the', 'O'), ('Cambridge', 'ORGANIZATION'), ('Analytica', 'ORGANIZATION'), ('scandal', 'O'), ('broke,', 'O'), ('the', 'O'), ('Facebook', 'ORGANIZATION'), ('chief', 'O'), ('has', 'O'), ('only', 'O'), ('appeared', 'O'), ('in', 'O'), ('front', 'O'), ('of', 'O'), ('two', 'O'), ('legislatures:', 'O'), ('the', 'O'), ('American', 'O'), ('Senate', 'ORGANIZATION'), ('and', 'O'), ('House', 'O'), ('of', 'O'), ('Representatives,', 'O'), ('and', 'O'), ('the', 'O'), ('European', 'O'), ('parliament.', 'O'), ('Facebook', 'ORGANIZATION'), ('has', 'O'), ('consistently', 'O'), ('rebuffed', 'O'), ('attempts', 'O'), ('from', 'O'), ('others,', 'O'), ('including', 'O'), ('the', 'O'), ('UK', 'LOCATION'), ('and', 'O'), ('Canadian', 'O'), ('parliaments,', 'O'), ('to', 'O'), ('hear', 'O'), ('from', 'O'), ('Zuckerberg.', 'O'), ('He', 'O'), ('added', 'O'), ('that', 'O'), ('an', 'O'), ('article', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Times', 'ORGANIZATION'), ('on', 'O'), ('Thursday,', 'O'), ('in', 'O'), ('which', 'O'), ('the', 'O'), ('paper', 'O'), ('alleged', 'O'), ('a', 'O'), ('pattern', 'O'), ('of', 'O'), ('behaviour', 'O'), ('from', 'O'), ('Facebook', 'ORGANIZATION'), ('to', 'O'), ('delay,', 'O'), ('deny', 'O'), ('and', 'O'), ('deflect', 'O'), ('negative', 'O'), ('news', 'O'), ('stories,', 'O'), ('raises', 'O'), ('further', 'O'), ('questions', 'O'), ('about', 'O'), ('how', 'O'), ('recent', 'O'), ('data', 'O'), ('breaches', 'O'), ('were', 'O'), ('allegedly', 'O'), ('dealt', 'O'), ('with', 'O'), ('within', 'O'), ('Facebook.', 'O')]\n" + ] + } + ], + "source": [ + "text_enc = text.encode('ascii', errors='ignore').decode('utf-8')\n", + "ner_tagged = sn.tag(text_enc.split())\n", + "print(ner_tagged)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "named_entities = []\n", + "temp_entity_name = ''\n", + "temp_named_entity = None\n", + "for term, tag in ner_tagged:\n", + " if tag != 'O':\n", + " temp_entity_name = ' '.join([temp_entity_name, term]).strip()\n", + " temp_named_entity = (temp_entity_name, tag)\n", + " else:\n", + " if temp_named_entity:\n", + " named_entities.append(temp_named_entity)\n", + " temp_entity_name = ''\n", + " temp_named_entity = None" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Facebooks', 'ORGANIZATION'), ('Latvia', 'LOCATION'), ('Singapore', 'LOCATION'), ('London', 'LOCATION'), ('Cambridge Analytica', 'ORGANIZATION'), ('Facebook', 'ORGANIZATION'), ('Senate', 'ORGANIZATION'), ('Facebook', 'ORGANIZATION'), ('UK', 'LOCATION'), ('New York Times', 'ORGANIZATION'), ('Facebook', 'ORGANIZATION')]\n" + ] + } + ], + "source": [ + "print(named_entities)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('ORGANIZATION', 7), ('LOCATION', 4)]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "c = Counter([item[1] for item in named_entities])\n", + "c.most_common()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# NER with Stanford CoreNLP\n", + "\n", + "NLTK is slowly deprecating the old Stanford Parsers in favor of the more active Stanford Core NLP Project. It might even get removed after `nltk` version `3.4` so best to stay updated.\n", + "\n", + "Details: https://github.com/nltk/nltk/issues/1839\n", + "\n", + "Step by Step Tutorial here: https://github.com/nltk/nltk/wiki/Stanford-CoreNLP-API-in-NLTK\n", + "\n", + "Sadly a lot of things have changed in the process so we need to do some extra effort to make it work!\n", + "\n", + "Get CoreNLP from [here](https://stanfordnlp.github.io/CoreNLP/)\n", + "\n", + "After you download, go to the folder and spin up a terminal and start the Core NLP Server locally\n", + "\n", + "```\n", + "E:\\> java -mx4g -cp \"*\" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -preload tokenize,ssplit,pos,lemma,ner,parse,depparse -status_port 9000 -port 9000 -timeout 15000\n", + "```\n", + "\n", + "If it runs successfully you should see the following messages on the terminal\n", + "\n", + "```\n", + "E:\\stanford\\stanford-corenlp-full-2018-02-27>java -mx4g -cp \"*\" edu.stanford.nlp.pipeline.StanfordCoreNLPServer -preload tokenize,ssplit,pos,lemma,ner,parse,depparse -status_port 9000 -port 9000 -timeout 15000\n", + "[main] INFO CoreNLP - --- StanfordCoreNLPServer#main() called ---\n", + "[main] INFO CoreNLP - setting default constituency parser\n", + "[main] INFO CoreNLP - warning: cannot find edu/stanford/nlp/models/srparser/englishSR.ser.gz\n", + "[main] INFO CoreNLP - using: edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz instead\n", + "[main] INFO CoreNLP - to use shift reduce parser download English models jar from:\n", + "[main] INFO CoreNLP - http://stanfordnlp.github.io/CoreNLP/download.html\n", + "[main] INFO CoreNLP - Threads: 4\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator tokenize\n", + "[main] INFO edu.stanford.nlp.pipeline.TokenizerAnnotator - No tokenizer type provided. Defaulting to PTBTokenizer.\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator ssplit\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator pos\n", + "[main] INFO edu.stanford.nlp.tagger.maxent.MaxentTagger - Loading POS tagger from edu/stanford/nlp/models/pos-tagger/english-left3words/english-left3words-distsim.tagger ... done [1.4 sec].\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator lemma\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator ner\n", + "[main] INFO edu.stanford.nlp.ie.AbstractSequenceClassifier - Loading classifier from edu/stanford/nlp/models/ner/english.all.3class.distsim.crf.ser.gz ... done [1.9 sec].\n", + "[main] INFO edu.stanford.nlp.ie.AbstractSequenceClassifier - Loading classifier from edu/stanford/nlp/models/ner/english.muc.7class.distsim.crf.ser.gz ... done [2.0 sec].\n", + "[main] INFO edu.stanford.nlp.ie.AbstractSequenceClassifier - Loading classifier from edu/stanford/nlp/models/ner/english.conll.4class.distsim.crf.ser.gz ... done [0.8 sec].\n", + "[main] INFO edu.stanford.nlp.time.JollyDayHolidays - Initializing JollyDayHoliday for SUTime from classpath edu/stanford/nlp/models/sutime/jollyday/Holidays_sutime.xml as sutime.binder.1.\n", + "[main] INFO edu.stanford.nlp.time.TimeExpressionExtractorImpl - Using following SUTime rules: edu/stanford/nlp/models/sutime/defs.sutime.txt,edu/stanford/nlp/models/sutime/english.sutime.txt,edu/stanford/nlp/models/sutime/english.holidays.sutime.txt\n", + "[main] INFO edu.stanford.nlp.pipeline.TokensRegexNERAnnotator - TokensRegexNERAnnotator ner.fine.regexner: Read 580641 unique entries out of 581790 from edu/stanford/nlp/models/kbp/regexner_caseless.tab, 0 TokensRegex patterns.\n", + "[main] INFO edu.stanford.nlp.pipeline.TokensRegexNERAnnotator - TokensRegexNERAnnotator ner.fine.regexner: Read 4857 unique entries out of 4868 from edu/stanford/nlp/models/kbp/regexner_cased.tab, 0 TokensRegex patterns.\n", + "[main] INFO edu.stanford.nlp.pipeline.TokensRegexNERAnnotator - TokensRegexNERAnnotator ner.fine.regexner: Read 585498 unique entries from 2 files\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator parse\n", + "[main] INFO edu.stanford.nlp.parser.common.ParserGrammar - Loading parser from serialized file edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz ... done [4.6 sec].\n", + "[main] INFO edu.stanford.nlp.pipeline.StanfordCoreNLP - Adding annotator depparse\n", + "[main] INFO edu.stanford.nlp.parser.nndep.DependencyParser - Loading depparse model: edu/stanford/nlp/models/parser/nndep/english_UD.gz ...\n", + "[main] INFO edu.stanford.nlp.parser.nndep.Classifier - PreComputed 99996, Elapsed Time: 22.43 (s)\n", + "[main] INFO edu.stanford.nlp.parser.nndep.DependencyParser - Initializing dependency parser ... done [24.4 sec].\n", + "[main] INFO CoreNLP - Starting server...\n", + "[main] INFO CoreNLP - StanfordCoreNLPServer listening at /0:0:0:0:0:0:0:0:9000\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](corenlp_ner.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from nltk.parse import CoreNLPParser\n", + "\n", + "ner_tagger = CoreNLPParser(url='http://localhost:9000', tagtype='ner')\n", + "ner_tagger" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Three', 'NUMBER'), ('more', 'O'), ('countries', 'O'), ('have', 'O'), ('joined', 'O'), ('an', 'O'), ('``', 'O'), ('international', 'O'), ('grand', 'O'), ('committee', 'O'), (\"''\", 'O'), ('of', 'O'), ('parliaments', 'O'), (',', 'O'), ('adding', 'O'), ('to', 'O'), ('calls', 'O'), ('for', 'O'), ('Facebook', 'ORGANIZATION'), (\"'s\", 'O'), ('boss', 'TITLE'), (',', 'O'), ('Mark', 'PERSON'), ('Zuckerberg', 'PERSON'), (',', 'O'), ('to', 'O'), ('give', 'O'), ('evidence', 'O'), ('on', 'O'), ('misinformation', 'O'), ('to', 'O'), ('the', 'O'), ('coalition', 'O'), ('.', 'O'), ('Brazil', 'COUNTRY'), (',', 'O'), ('Latvia', 'COUNTRY'), ('and', 'O'), ('Singapore', 'COUNTRY'), ('bring', 'O'), ('the', 'O'), ('total', 'O'), ('to', 'O'), ('eight', 'NUMBER'), ('different', 'O'), ('parliaments', 'O'), ('across', 'O'), ('the', 'O'), ('world', 'O'), (',', 'O'), ('with', 'O'), ('plans', 'O'), ('to', 'O'), ('send', 'O'), ('representatives', 'O'), ('to', 'O'), ('London', 'CITY'), ('on', 'O'), ('27', 'DATE'), ('November', 'DATE'), ('with', 'O'), ('the', 'O'), ('intention', 'O'), ('of', 'O'), ('hearing', 'O'), ('from', 'O'), ('Zuckerberg', 'PERSON'), ('.', 'O'), ('Since', 'O'), ('the', 'O'), ('Cambridge', 'ORGANIZATION'), ('Analytica', 'ORGANIZATION'), ('scandal', 'O'), ('broke', 'O'), (',', 'O'), ('the', 'O'), ('Facebook', 'ORGANIZATION'), ('chief', 'O'), ('has', 'O'), ('only', 'O'), ('appeared', 'O'), ('in', 'O'), ('front', 'O'), ('of', 'O'), ('two', 'NUMBER'), ('legislatures', 'O'), (':', 'O'), ('the', 'O'), ('American', 'NATIONALITY'), ('Senate', 'ORGANIZATION'), ('and', 'O'), ('House', 'ORGANIZATION'), ('of', 'ORGANIZATION'), ('Representatives', 'ORGANIZATION'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('European', 'NATIONALITY'), ('parliament', 'O'), ('.', 'O'), ('Facebook', 'ORGANIZATION'), ('has', 'O'), ('consistently', 'O'), ('rebuffed', 'O'), ('attempts', 'O'), ('from', 'O'), ('others', 'O'), (',', 'O'), ('including', 'O'), ('the', 'O'), ('UK', 'COUNTRY'), ('and', 'O'), ('Canadian', 'NATIONALITY'), ('parliaments', 'O'), (',', 'O'), ('to', 'O'), ('hear', 'O'), ('from', 'O'), ('Zuckerberg', 'PERSON'), ('.', 'O'), ('He', 'O'), ('added', 'O'), ('that', 'O'), ('an', 'O'), ('article', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'ORGANIZATION'), ('York', 'ORGANIZATION'), ('Times', 'ORGANIZATION'), ('on', 'O'), ('Thursday', 'DATE'), (',', 'O'), ('in', 'O'), ('which', 'O'), ('the', 'O'), ('paper', 'O'), ('alleged', 'O'), ('a', 'O'), ('pattern', 'O'), ('of', 'O'), ('behaviour', 'O'), ('from', 'O'), ('Facebook', 'ORGANIZATION'), ('to', 'O'), ('``', 'O'), ('delay', 'O'), (',', 'O'), ('deny', 'O'), ('and', 'O'), ('deflect', 'O'), (\"''\", 'O'), ('negative', 'O'), ('news', 'O'), ('stories', 'O'), (',', 'O'), ('``', 'O'), ('raises', 'O'), ('further', 'O'), ('questions', 'O'), ('about', 'O'), ('how', 'O'), ('recent', 'O'), ('data', 'O'), ('breaches', 'O'), ('were', 'O'), ('allegedly', 'O'), ('dealt', 'O'), ('with', 'O'), ('within', 'O'), ('Facebook', 'ORGANIZATION'), ('.', 'O'), (\"''\", 'O')]\n" + ] + } + ], + "source": [ + "import nltk\n", + "\n", + "tags = list(ner_tagger.raw_tag_sents(nltk.sent_tokenize(text)))\n", + "tags = [sublist[0] for sublist in tags]\n", + "tags = [word_tag for sublist in tags for word_tag in sublist]\n", + "print(tags)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Three', 'NUMBER'), ('Facebook', 'ORGANIZATION'), ('boss', 'TITLE'), ('Mark Zuckerberg', 'PERSON'), ('Brazil', 'COUNTRY'), ('Latvia', 'COUNTRY'), ('Singapore', 'COUNTRY'), ('eight', 'NUMBER'), ('London', 'CITY'), ('27 November', 'DATE'), ('Zuckerberg', 'PERSON'), ('Cambridge Analytica', 'ORGANIZATION'), ('Facebook', 'ORGANIZATION'), ('two', 'NUMBER'), ('American Senate', 'ORGANIZATION'), ('House of Representatives', 'ORGANIZATION'), ('European', 'NATIONALITY'), ('Facebook', 'ORGANIZATION'), ('UK', 'COUNTRY'), ('Canadian', 'NATIONALITY'), ('Zuckerberg', 'PERSON'), ('New York Times', 'ORGANIZATION'), ('Thursday', 'DATE'), ('Facebook', 'ORGANIZATION'), ('Facebook', 'ORGANIZATION')]\n" + ] + } + ], + "source": [ + "named_entities = []\n", + "temp_entity_name = ''\n", + "temp_named_entity = None\n", + "for term, tag in tags:\n", + " if tag != 'O':\n", + " temp_entity_name = ' '.join([temp_entity_name, term]).strip()\n", + " temp_named_entity = (temp_entity_name, tag)\n", + " else:\n", + " if temp_named_entity:\n", + " named_entities.append(temp_named_entity)\n", + " temp_entity_name = ''\n", + " temp_named_entity = None\n", + "\n", + "print(named_entities)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('ORGANIZATION', 9),\n", + " ('COUNTRY', 4),\n", + " ('NUMBER', 3),\n", + " ('PERSON', 3),\n", + " ('DATE', 2),\n", + " ('NATIONALITY', 2),\n", + " ('TITLE', 1),\n", + " ('CITY', 1)]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "c = Counter([item[1] for item in named_entities])\n", + "c.most_common()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch08 - Semantic Analysis/Ch08c - Building NER Taggers.ipynb b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08c - Building NER Taggers.ipynb new file mode 100644 index 0000000..fd4c9d6 --- /dev/null +++ b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08c - Building NER Taggers.ipynb @@ -0,0 +1,1816 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build your own NER Tagger\n", + "\n", + "__Named Entity Recognition (NER)__ , also known as entity chunking/extraction , is a popular technique used in information extraction to identify and segment the named entities and classify or categorize them under various predefined classes.\n", + "\n", + "There are various off the shelf solutions which offer capabilites to perform named entity extraction (some of which we discussed in the previous units). Yet there are times when the requirements are beyond the capabilities of off-the-shelf classifiers.\n", + "\n", + "In this notebook, we will go through an exercise to build our own NER using Conditional Random Fields.\n", + "We would be utilizing ```sklearn_crfsuite``` to develop our NER." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Load Dataset\n", + "\n", + "Named Entity Recognition is a sequence modeling problem at it's core. It is more related to classification class of problems where in we need a labeled dataset to train a classifier. \n", + "\n", + "There are various labeled datasets for NER class of problems. We would be utilizing a pre-processed version of __GMB(Groningen Meaning Bank) corpus__ for this notebook. The preprocessed version is availble at the following link : [kaggle/ner](https://www.kaggle.com/abhinavwalia95/entity-annotated-corpus)\n", + "\n", + "We have provided the dataset in the code repository itself using some intelligent compression and you can access it directly from `pandas` as follows." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 1048575 entries, 0 to 1048574\n", + "Data columns (total 4 columns):\n", + "Sentence # 47959 non-null object\n", + "Word 1048575 non-null object\n", + "POS 1048575 non-null object\n", + "Tag 1048575 non-null object\n", + "dtypes: object(4)\n", + "memory usage: 32.0+ MB\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "df = pd.read_csv('ner_dataset.csv.gz', compression='gzip', encoding='ISO-8859-1')\n", + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    0123456789...1048565104856610485671048568104856910485701048571104857210485731048574
    Sentence #Sentence: 1NaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNSentence: 47959NaNNaNNaNNaNNaNNaNNaN
    WordThousandsofdemonstratorshavemarchedthroughLondontoprotestthe...impact.Indianforcessaidtheyrespondedtotheattack
    POSNNSINNNSVBPVBNINNNPTOVBDT...NN.JJNNSVBDPRPVBDTODTNN
    TagOOOOOOB-geoOOO...OOB-gpeOOOOOOO
    \n", + "

    4 rows × 1048575 columns

    \n", + "
    " + ], + "text/plain": [ + " 0 1 2 3 4 5 \\\n", + "Sentence # Sentence: 1 NaN NaN NaN NaN NaN \n", + "Word Thousands of demonstrators have marched through \n", + "POS NNS IN NNS VBP VBN IN \n", + "Tag O O O O O O \n", + "\n", + " 6 7 8 9 ... 1048565 1048566 \\\n", + "Sentence # NaN NaN NaN NaN ... NaN NaN \n", + "Word London to protest the ... impact . \n", + "POS NNP TO VB DT ... NN . \n", + "Tag B-geo O O O ... O O \n", + "\n", + " 1048567 1048568 1048569 1048570 1048571 1048572 \\\n", + "Sentence # Sentence: 47959 NaN NaN NaN NaN NaN \n", + "Word Indian forces said they responded to \n", + "POS JJ NNS VBD PRP VBD TO \n", + "Tag B-gpe O O O O O \n", + "\n", + " 1048573 1048574 \n", + "Sentence # NaN NaN \n", + "Word the attack \n", + "POS DT NN \n", + "Tag O O \n", + "\n", + "[4 rows x 1048575 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.T" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 1048575 entries, 0 to 1048574\n", + "Data columns (total 4 columns):\n", + "Sentence # 1048575 non-null object\n", + "Word 1048575 non-null object\n", + "POS 1048575 non-null object\n", + "Tag 1048575 non-null object\n", + "dtypes: object(4)\n", + "memory usage: 32.0+ MB\n" + ] + } + ], + "source": [ + "df = df.fillna(method='ffill')\n", + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    0123456789...1048565104856610485671048568104856910485701048571104857210485731048574
    Sentence #Sentence: 1Sentence: 1Sentence: 1Sentence: 1Sentence: 1Sentence: 1Sentence: 1Sentence: 1Sentence: 1Sentence: 1...Sentence: 47958Sentence: 47958Sentence: 47959Sentence: 47959Sentence: 47959Sentence: 47959Sentence: 47959Sentence: 47959Sentence: 47959Sentence: 47959
    WordThousandsofdemonstratorshavemarchedthroughLondontoprotestthe...impact.Indianforcessaidtheyrespondedtotheattack
    POSNNSINNNSVBPVBNINNNPTOVBDT...NN.JJNNSVBDPRPVBDTODTNN
    TagOOOOOOB-geoOOO...OOB-gpeOOOOOOO
    \n", + "

    4 rows × 1048575 columns

    \n", + "
    " + ], + "text/plain": [ + " 0 1 2 3 4 \\\n", + "Sentence # Sentence: 1 Sentence: 1 Sentence: 1 Sentence: 1 Sentence: 1 \n", + "Word Thousands of demonstrators have marched \n", + "POS NNS IN NNS VBP VBN \n", + "Tag O O O O O \n", + "\n", + " 5 6 7 8 9 \\\n", + "Sentence # Sentence: 1 Sentence: 1 Sentence: 1 Sentence: 1 Sentence: 1 \n", + "Word through London to protest the \n", + "POS IN NNP TO VB DT \n", + "Tag O B-geo O O O \n", + "\n", + " ... 1048565 1048566 \\\n", + "Sentence # ... Sentence: 47958 Sentence: 47958 \n", + "Word ... impact . \n", + "POS ... NN . \n", + "Tag ... O O \n", + "\n", + " 1048567 1048568 1048569 \\\n", + "Sentence # Sentence: 47959 Sentence: 47959 Sentence: 47959 \n", + "Word Indian forces said \n", + "POS JJ NNS VBD \n", + "Tag B-gpe O O \n", + "\n", + " 1048570 1048571 1048572 \\\n", + "Sentence # Sentence: 47959 Sentence: 47959 Sentence: 47959 \n", + "Word they responded to \n", + "POS PRP VBD TO \n", + "Tag O O O \n", + "\n", + " 1048573 1048574 \n", + "Sentence # Sentence: 47959 Sentence: 47959 \n", + "Word the attack \n", + "POS DT NN \n", + "Tag O O \n", + "\n", + "[4 rows x 1048575 columns]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.T" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(47959, 35178, 42, 17)" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Sentence #'].nunique(), df.Word.nunique(), df.POS.nunique(), df.Tag.nunique()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have 47959 sentences that contain 35178 unique words.\n", + "\n", + "These sentences have a total of 42 unique POS tags and 17 unique NER tags in total." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tag Distribution\n", + "\n", + "The GMB dataset utilizes IOB tagging or _Inside, Outside Beginning_. IOB is a common tagging format for tagging tokens which we have discussed earlier. To refresh your memory:\n", + "\n", + "+ __I- prefix__ before a tag indicates that the tag is inside a chunk.\n", + "+ __B- prefix__ before a tag indicates that the tag is the beginning of a chunk.\n", + "+ __O- tag__ indicates that a token belongs to no chunk (outside).\n", + "\n", + "The tags in this dataset are explained as follows:\n", + "\n", + "+ __geo__ = Geographical Entity\n", + "+ __org__ = Organization\n", + "+ __per__ = Person\n", + "+ __gpe__ = Geopolitical Entity\n", + "+ __tim__ = Time indicator\n", + "+ __art__ = Artifact\n", + "+ __eve__ = Event\n", + "+ __nat__ = Natural Phenomenon\n", + "\n", + "Anything outside these classes is termed as other, denoted as __O__. \n", + "\n", + "The following output shows the unbalanced distribution of different tags in the dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "O 887908\n", + "B-geo 37644\n", + "B-tim 20333\n", + "B-org 20143\n", + "I-per 17251\n", + "B-per 16990\n", + "I-org 16784\n", + "B-gpe 15870\n", + "I-geo 7414\n", + "I-tim 6528\n", + "B-art 402\n", + "B-eve 308\n", + "I-art 297\n", + "I-eve 253\n", + "B-nat 201\n", + "I-gpe 198\n", + "I-nat 51\n", + "Name: Tag, dtype: int64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.Tag.value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Conditional Random Fields\n", + "\n", + "As mentioned above, NER belongs to sequence modeling class of problems. There are different algorithms to tackle sequence modeling, __CRF__ or _Conditional Random Fields_ are one such example. CRFs are proven to perform extremely well on NER and related domains. In this notebook, we will attempt at developing our own NER based on CRFs.\n", + "\n", + "---\n", + "\n", + "__Question__: What is a CRF and how does it work?\n", + "\n", + "__Wikipedia__ : CRF is an undirected graphical model whose nodes can be divided into exactly two disjoint sets $X$ and $Y$, the observed and output variables, respectively; the conditional distribution $p(Y|X)$ is then modeled.\n", + "\n", + "For more details, checkout the paper [__Conditional Random Fields: Probabilistic Models\n", + "for Segmenting and Labeling Sequence Data__](https://repository.upenn.edu/cgi/viewcontent.cgi?article=1162&context=cis_papers)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Prepare Data\n", + "\n", + "CRF trains upon sequence of input data to learn transitions from one state (label) to another. \n", + "To enable such an algorithm, we need to define features which take into account different transitions. \n", + "In the function ```word2features()``` below, we transform each word into a feature dictionary depicting the following attributes or features:\n", + "\n", + "+ lower case of word\n", + "+ suffix containing last 3 characters\n", + "+ suffix containing last 2 characters\n", + "+ flags to determine upper-case, title-case, numeric data and POS tag\n", + "\n", + "We also attach attributes related to previous and next words or tags to determine beginning of sentence (BOS) or end of sentence (EOS)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def word2features(sent, i):\n", + " word = sent[i][0]\n", + " postag = sent[i][1]\n", + "\n", + " features = {\n", + " 'bias': 1.0,\n", + " 'word.lower()': word.lower(),\n", + " 'word[-3:]': word[-3:],\n", + " 'word[-2:]': word[-2:],\n", + " 'word.isupper()': word.isupper(),\n", + " 'word.istitle()': word.istitle(),\n", + " 'word.isdigit()': word.isdigit(),\n", + " 'postag': postag,\n", + " 'postag[:2]': postag[:2],\n", + " }\n", + " if i > 0:\n", + " word1 = sent[i-1][0]\n", + " postag1 = sent[i-1][1]\n", + " features.update({\n", + " '-1:word.lower()': word1.lower(),\n", + " '-1:word.istitle()': word1.istitle(),\n", + " '-1:word.isupper()': word1.isupper(),\n", + " '-1:postag': postag1,\n", + " '-1:postag[:2]': postag1[:2],\n", + " })\n", + " else:\n", + " features['BOS'] = True\n", + "\n", + " if i < len(sent)-1:\n", + " word1 = sent[i+1][0]\n", + " postag1 = sent[i+1][1]\n", + " features.update({\n", + " '+1:word.lower()': word1.lower(),\n", + " '+1:word.istitle()': word1.istitle(),\n", + " '+1:word.isupper()': word1.isupper(),\n", + " '+1:postag': postag1,\n", + " '+1:postag[:2]': postag1[:2],\n", + " })\n", + " else:\n", + " features['EOS'] = True\n", + "\n", + " return features\n", + "\n", + "\n", + "def sent2features(sent):\n", + " return [word2features(sent, i) for i in range(len(sent))]\n", + "\n", + "def sent2labels(sent):\n", + " return [label for token, postag, label in sent]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "agg_func = lambda s: [(w, p, t) for w, p, t in zip(s['Word'].values.tolist(), \n", + " s['POS'].values.tolist(), \n", + " s['Tag'].values.tolist())]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "grouped_df = df.groupby('Sentence #').apply(agg_func)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[list([('Thousands', 'NNS', 'O'), ('of', 'IN', 'O'), ('demonstrators', 'NNS', 'O'), ('have', 'VBP', 'O'), ('marched', 'VBN', 'O'), ('through', 'IN', 'O'), ('London', 'NNP', 'B-geo'), ('to', 'TO', 'O'), ('protest', 'VB', 'O'), ('the', 'DT', 'O'), ('war', 'NN', 'O'), ('in', 'IN', 'O'), ('Iraq', 'NNP', 'B-geo'), ('and', 'CC', 'O'), ('demand', 'VB', 'O'), ('the', 'DT', 'O'), ('withdrawal', 'NN', 'O'), ('of', 'IN', 'O'), ('British', 'JJ', 'B-gpe'), ('troops', 'NNS', 'O'), ('from', 'IN', 'O'), ('that', 'DT', 'O'), ('country', 'NN', 'O'), ('.', '.', 'O')])]\n" + ] + } + ], + "source": [ + "print(grouped_df[grouped_df.index == 'Sentence: 1'].values)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(47959,)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grouped_df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('Thousands', 'NNS', 'O'),\n", + " ('of', 'IN', 'O'),\n", + " ('demonstrators', 'NNS', 'O'),\n", + " ('have', 'VBP', 'O'),\n", + " ('marched', 'VBN', 'O'),\n", + " ('through', 'IN', 'O'),\n", + " ('London', 'NNP', 'B-geo'),\n", + " ('to', 'TO', 'O'),\n", + " ('protest', 'VB', 'O'),\n", + " ('the', 'DT', 'O'),\n", + " ('war', 'NN', 'O'),\n", + " ('in', 'IN', 'O'),\n", + " ('Iraq', 'NNP', 'B-geo'),\n", + " ('and', 'CC', 'O'),\n", + " ('demand', 'VB', 'O'),\n", + " ('the', 'DT', 'O'),\n", + " ('withdrawal', 'NN', 'O'),\n", + " ('of', 'IN', 'O'),\n", + " ('British', 'JJ', 'B-gpe'),\n", + " ('troops', 'NNS', 'O'),\n", + " ('from', 'IN', 'O'),\n", + " ('that', 'DT', 'O'),\n", + " ('country', 'NN', 'O'),\n", + " ('.', '.', 'O')]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sentences = [s for s in grouped_df]\n", + "sentences[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'bias': 1.0,\n", + " 'word.lower()': 'through',\n", + " 'word[-3:]': 'ugh',\n", + " 'word[-2:]': 'gh',\n", + " 'word.isupper()': False,\n", + " 'word.istitle()': False,\n", + " 'word.isdigit()': False,\n", + " 'postag': 'IN',\n", + " 'postag[:2]': 'IN',\n", + " 'BOS': True,\n", + " '+1:word.lower()': 'london',\n", + " '+1:word.istitle()': True,\n", + " '+1:word.isupper()': False,\n", + " '+1:postag': 'NNP',\n", + " '+1:postag[:2]': 'NN'},\n", + " {'bias': 1.0,\n", + " 'word.lower()': 'london',\n", + " 'word[-3:]': 'don',\n", + " 'word[-2:]': 'on',\n", + " 'word.isupper()': False,\n", + " 'word.istitle()': True,\n", + " 'word.isdigit()': False,\n", + " 'postag': 'NNP',\n", + " 'postag[:2]': 'NN',\n", + " '-1:word.lower()': 'through',\n", + " '-1:word.istitle()': False,\n", + " '-1:word.isupper()': False,\n", + " '-1:postag': 'IN',\n", + " '-1:postag[:2]': 'IN',\n", + " 'EOS': True}]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sent2features(sentences[0][5:7])" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['O', 'B-geo']" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sent2labels(sentences[0][5:7])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Prepare Train and Test Datasets" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((35969,), (11990,))" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.model_selection import train_test_split\n", + "import numpy as np\n", + "\n", + "X = np.array([sent2features(s) for s in sentences])\n", + "y = np.array([sent2labels(s) for s in sentences])\n", + "\n", + "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.25, random_state=42)\n", + "X_train.shape, X_test.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Building Models with sklearn-crfsuite\n", + "\n", + "__`sklearn-crfsuite`__ is a thin [CRFsuite (python-crfsuite)](https://github.com/scrapinghub/python-crfsuite) wrapper which provides scikit-learn-compatible sklearn_crfsuite.CRF estimator: you can use e.g. scikit-learn model selection utilities (cross-validation, hyperparameter optimization) with it, or save/load CRF models using joblib." + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting sklearn-crfsuite\n", + " Downloading https://files.pythonhosted.org/packages/25/74/5b7befa513482e6dee1f3dd68171a6c9dfc14c0eaa00f885ffeba54fe9b0/sklearn_crfsuite-0.3.6-py2.py3-none-any.whl\n", + "Collecting python-crfsuite>=0.8.3 (from sklearn-crfsuite)\n", + " Downloading https://files.pythonhosted.org/packages/29/c9/b206fa75d5978a631b5e6914a051139d99ff4624f96eac1bec6486413944/python_crfsuite-0.9.6-cp36-cp36m-win_amd64.whl (154kB)\n", + "Requirement already satisfied: tabulate in c:\\anaconda3\\lib\\site-packages (from sklearn-crfsuite) (0.8.2)\n", + "Requirement already satisfied: tqdm>=2.0 in c:\\anaconda3\\lib\\site-packages (from sklearn-crfsuite) (4.26.0)\n", + "Requirement already satisfied: six in c:\\anaconda3\\lib\\site-packages (from sklearn-crfsuite) (1.11.0)\n", + "Installing collected packages: python-crfsuite, sklearn-crfsuite\n", + "Successfully installed python-crfsuite-0.9.6 sklearn-crfsuite-0.3.6\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "thinc 6.10.2 requires pathlib<2.0.0,>=1.0.0, which is not installed.\n", + "spacy 2.0.11 requires pathlib, which is not installed.\n", + "smart-open 1.7.1 requires bz2file, which is not installed.\n", + "distributed 1.21.8 requires msgpack, which is not installed.\n", + "spacy 2.0.11 has requirement regex==2017.4.5, but you'll have regex 2017.11.9 which is incompatible.\n", + "skater 1.1.1b5 has requirement scikit-image==0.14, but you'll have scikit-image 0.13.1 which is incompatible.\n", + "You are using pip version 10.0.1, however version 18.1 is available.\n", + "You should consider upgrading via the 'python -m pip install --upgrade pip' command.\n" + ] + } + ], + "source": [ + "!pip install sklearn-crfsuite" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Train the model!\n", + "\n", + "Train the model using the default configurations mentioned in the [sklearn-crfsuite API docs](https://sklearn-crfsuite.readthedocs.io/en/latest/api.html)\n", + "\n", + "\n", + "- __algorithm:__ the training algorithm. We use [L-BFGS](https://en.wikipedia.org/wiki/Limited-memory_BFGS) for gradient descent for optimization and getting model parameters\n", + "- __c1:__ Coefficient for Lasso (L1) regularization\n", + "- __c2:__ Coefficient for Ridge (L2) regularization\n", + "- __all_possible_transitions:__ Specify whether CRFsuite generates transition features that do not even occur in the training data\n", + "\n", + "\n", + "__Note:__ If the model is taking too long to train, you can load up the pre-trained model using the code after the training cells and use that for predictions." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import sklearn_crfsuite\n", + "\n", + "crf = sklearn_crfsuite.CRF(algorithm='lbfgs',\n", + " c1=0.1,\n", + " c2=0.1,\n", + " max_iterations=100,\n", + " all_possible_transitions=True,\n", + " verbose=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "loading training data to CRFsuite: 100%|███████████████████████████████████████| 35969/35969 [00:15<00:00, 2384.94it/s]\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Feature generation\n", + "type: CRF1d\n", + "feature.minfreq: 0.000000\n", + "feature.possible_states: 0\n", + "feature.possible_transitions: 1\n", + "0....1....2....3....4....5....6....7....8....9....10\n", + "Number of features: 133629\n", + "Seconds required: 3.486\n", + "\n", + "L-BFGS optimization\n", + "c1: 0.100000\n", + "c2: 0.100000\n", + "num_memories: 6\n", + "max_iterations: 100\n", + "epsilon: 0.000010\n", + "stop: 10\n", + "delta: 0.000010\n", + "linesearch: MoreThuente\n", + "linesearch.max_iterations: 20\n", + "\n", + "Iter 1 time=4.01 loss=1264028.26 active=132637 feature_norm=1.00\n", + "Iter 2 time=3.99 loss=994059.01 active=131294 feature_norm=4.42\n", + "Iter 3 time=2.00 loss=776413.87 active=125970 feature_norm=3.87\n", + "Iter 4 time=11.46 loss=422143.40 active=127018 feature_norm=3.24\n", + "Iter 5 time=2.11 loss=355775.44 active=129029 feature_norm=4.04\n", + "Iter 6 time=2.23 loss=264125.22 active=124046 feature_norm=6.10\n", + "Iter 7 time=2.36 loss=222304.71 active=117183 feature_norm=7.69\n", + "Iter 8 time=2.21 loss=197827.17 active=110838 feature_norm=8.75\n", + "Iter 9 time=2.09 loss=176877.92 active=105650 feature_norm=10.41\n", + "Iter 10 time=2.09 loss=158997.61 active=103459 feature_norm=11.60\n", + "Iter 11 time=2.10 loss=146328.53 active=100247 feature_norm=13.41\n", + "Iter 12 time=2.09 loss=137671.14 active=98635 feature_norm=14.69\n", + "Iter 13 time=2.11 loss=130471.62 active=97462 feature_norm=15.45\n", + "Iter 14 time=2.09 loss=118841.84 active=94124 feature_norm=17.81\n", + "Iter 15 time=2.11 loss=112928.42 active=92178 feature_norm=20.21\n", + "Iter 16 time=2.09 loss=105499.44 active=91978 feature_norm=22.27\n", + "Iter 17 time=2.08 loss=101994.76 active=91940 feature_norm=23.34\n", + "Iter 18 time=2.10 loss=96362.28 active=89453 feature_norm=26.63\n", + "Iter 19 time=2.09 loss=90647.28 active=89021 feature_norm=28.85\n", + "Iter 20 time=2.10 loss=85521.13 active=87547 feature_norm=32.66\n", + "Iter 21 time=2.11 loss=81239.75 active=87184 feature_norm=36.05\n", + "Iter 22 time=2.09 loss=77980.98 active=86649 feature_norm=39.45\n", + "Iter 23 time=2.08 loss=75036.81 active=86300 feature_norm=41.33\n", + "Iter 24 time=2.10 loss=70028.55 active=82924 feature_norm=47.18\n", + "Iter 25 time=4.16 loss=67859.30 active=82277 feature_norm=51.09\n", + "Iter 26 time=2.10 loss=64640.62 active=81815 feature_norm=54.83\n", + "Iter 27 time=2.09 loss=61783.61 active=80545 feature_norm=60.05\n", + "Iter 28 time=2.08 loss=59095.29 active=79506 feature_norm=66.46\n", + "Iter 29 time=2.09 loss=56799.57 active=79733 feature_norm=70.47\n", + "Iter 30 time=2.09 loss=54812.68 active=79492 feature_norm=75.32\n", + "Iter 31 time=2.28 loss=52807.07 active=78965 feature_norm=80.24\n", + "Iter 32 time=2.28 loss=50790.16 active=78225 feature_norm=88.16\n", + "Iter 33 time=2.15 loss=49548.49 active=78456 feature_norm=90.54\n", + "Iter 34 time=2.12 loss=48303.45 active=78007 feature_norm=94.98\n", + "Iter 35 time=2.12 loss=46171.65 active=76442 feature_norm=106.16\n", + "Iter 36 time=2.11 loss=45327.99 active=75732 feature_norm=115.55\n", + "Iter 37 time=2.08 loss=43822.08 active=75408 feature_norm=118.88\n", + "Iter 38 time=2.09 loss=42688.21 active=74715 feature_norm=125.25\n", + "Iter 39 time=2.09 loss=41275.71 active=73716 feature_norm=139.21\n", + "Iter 40 time=2.08 loss=40047.55 active=73576 feature_norm=147.46\n", + "Iter 41 time=2.12 loss=39265.28 active=73554 feature_norm=151.63\n", + "Iter 42 time=2.12 loss=38403.33 active=72721 feature_norm=159.70\n", + "Iter 43 time=2.34 loss=37608.69 active=72627 feature_norm=165.70\n", + "Iter 44 time=2.14 loss=36823.99 active=71771 feature_norm=172.98\n", + "Iter 45 time=2.11 loss=36326.35 active=70178 feature_norm=184.40\n", + "Iter 46 time=2.09 loss=35883.80 active=69283 feature_norm=186.01\n", + "Iter 47 time=2.11 loss=35560.99 active=68923 feature_norm=190.20\n", + "Iter 48 time=2.10 loss=35404.76 active=67538 feature_norm=199.98\n", + "Iter 49 time=2.11 loss=35012.55 active=67985 feature_norm=200.64\n", + "Iter 50 time=2.10 loss=34929.44 active=68033 feature_norm=200.67\n", + "Iter 51 time=2.08 loss=34693.21 active=67122 feature_norm=201.84\n", + "Iter 52 time=4.14 loss=34629.25 active=66830 feature_norm=201.25\n", + "Iter 53 time=2.09 loss=34459.64 active=66761 feature_norm=202.56\n", + "Iter 54 time=2.10 loss=34344.14 active=66577 feature_norm=203.72\n", + "Iter 55 time=2.10 loss=34165.12 active=66051 feature_norm=205.31\n", + "Iter 56 time=2.09 loss=34162.67 active=64890 feature_norm=206.81\n", + "Iter 57 time=2.13 loss=33943.85 active=65312 feature_norm=207.03\n", + "Iter 58 time=2.10 loss=33886.19 active=64897 feature_norm=207.50\n", + "Iter 59 time=2.10 loss=33780.88 active=64020 feature_norm=208.77\n", + "Iter 60 time=2.10 loss=33666.08 active=63580 feature_norm=209.40\n", + "Iter 61 time=2.10 loss=33571.12 active=63159 feature_norm=210.40\n", + "Iter 62 time=2.34 loss=33488.40 active=63013 feature_norm=210.87\n", + "Iter 63 time=2.23 loss=33397.52 active=62694 feature_norm=211.68\n", + "Iter 64 time=2.11 loss=33317.69 active=62488 feature_norm=212.22\n", + "Iter 65 time=2.11 loss=33247.01 active=62238 feature_norm=212.80\n", + "Iter 66 time=2.08 loss=33173.26 active=62029 feature_norm=213.27\n", + "Iter 67 time=2.10 loss=33108.73 active=61781 feature_norm=213.91\n", + "Iter 68 time=2.11 loss=33052.25 active=61575 feature_norm=214.27\n", + "Iter 69 time=2.08 loss=32996.19 active=61366 feature_norm=214.76\n", + "Iter 70 time=2.09 loss=32941.28 active=61153 feature_norm=215.10\n", + "Iter 71 time=2.08 loss=32894.22 active=60966 feature_norm=215.53\n", + "Iter 72 time=2.10 loss=32853.09 active=60815 feature_norm=215.78\n", + "Iter 73 time=2.07 loss=32814.22 active=60658 feature_norm=216.15\n", + "Iter 74 time=2.10 loss=32778.22 active=60513 feature_norm=216.37\n", + "Iter 75 time=2.09 loss=32743.64 active=60336 feature_norm=216.67\n", + "Iter 76 time=2.09 loss=32711.92 active=60185 feature_norm=216.86\n", + "Iter 77 time=2.11 loss=32682.08 active=60090 feature_norm=217.11\n", + "Iter 78 time=2.09 loss=32654.10 active=59916 feature_norm=217.27\n", + "Iter 79 time=2.09 loss=32627.76 active=59768 feature_norm=217.54\n", + "Iter 80 time=2.10 loss=32603.13 active=59701 feature_norm=217.65\n", + "Iter 81 time=2.11 loss=32580.63 active=59546 feature_norm=217.85\n", + "Iter 82 time=2.08 loss=32559.76 active=59413 feature_norm=217.96\n", + "Iter 83 time=2.08 loss=32538.88 active=59278 feature_norm=218.17\n", + "Iter 84 time=2.14 loss=32520.71 active=59165 feature_norm=218.27\n", + "Iter 85 time=2.12 loss=32501.10 active=59088 feature_norm=218.47\n", + "Iter 86 time=2.09 loss=32484.14 active=58988 feature_norm=218.56\n", + "Iter 87 time=2.08 loss=32467.58 active=58909 feature_norm=218.71\n", + "Iter 88 time=2.16 loss=32452.86 active=58808 feature_norm=218.80\n", + "Iter 89 time=2.08 loss=32437.92 active=58717 feature_norm=218.98\n", + "Iter 90 time=2.10 loss=32424.99 active=58671 feature_norm=219.06\n", + "Iter 91 time=2.13 loss=32411.01 active=58618 feature_norm=219.21\n", + "Iter 92 time=2.09 loss=32399.15 active=58552 feature_norm=219.29\n", + "Iter 93 time=2.08 loss=32386.63 active=58490 feature_norm=219.40\n", + "Iter 94 time=2.08 loss=32375.74 active=58448 feature_norm=219.48\n", + "Iter 95 time=2.10 loss=32364.54 active=58374 feature_norm=219.60\n", + "Iter 96 time=2.07 loss=32354.96 active=58381 feature_norm=219.68\n", + "Iter 97 time=2.08 loss=32344.27 active=58343 feature_norm=219.80\n", + "Iter 98 time=2.09 loss=32335.08 active=58304 feature_norm=219.87\n", + "Iter 99 time=2.07 loss=32324.92 active=58249 feature_norm=219.98\n", + "Iter 100 time=2.09 loss=32316.67 active=58226 feature_norm=220.04\n", + "L-BFGS terminated with the maximum number of iterations\n", + "Total seconds required for training: 228.530\n", + "\n", + "Storing the model\n", + "Number of active features: 58226 (133629)\n", + "Number of active attributes: 29279 (90250)\n", + "Number of active labels: 17 (17)\n", + "Writing labels\n", + "Writing attributes\n", + "Writing feature references for transitions\n", + "Writing feature references for attributes\n", + "Seconds required: 0.095\n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "CRF(algorithm='lbfgs', all_possible_states=None,\n", + " all_possible_transitions=True, averaging=None, c=None, c1=0.1, c2=0.1,\n", + " calibration_candidates=None, calibration_eta=None,\n", + " calibration_max_trials=None, calibration_rate=None,\n", + " calibration_samples=None, delta=None, epsilon=None, error_sensitive=None,\n", + " gamma=None, keep_tempfiles=None, linesearch=None, max_iterations=100,\n", + " max_linesearch=None, min_freq=None, model_filename=None,\n", + " num_memories=None, pa_type=None, period=None, trainer_cls=None,\n", + " variance=None, verbose=True)" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "crf.fit(X_train, y_train)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Use the following to load our pre-trained model if training above takes a lot of time" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.externals import joblib\n", + "\n", + "#joblib.dump(crf, 'ner_model.pkl')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "crf = joblib.load('ner_model.pkl')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Model Evaluation\n", + "\n", + "Let's evaluate our model performance for NER Tagging on the test data now!\n", + "\n", + "Try playing around with the following cells and observe the overall model performance.\n", + "\n", + "We use standard classification metrics like precision, recall and f1-score" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['O', 'O', 'O', 'O', 'B-per', 'I-per', 'O', 'B-org', 'O', 'O', 'B-gpe', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']\n" + ] + } + ], + "source": [ + "y_pred = crf.predict(X_test)\n", + "print(y_pred[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['O', 'O', 'O', 'O', 'B-per', 'I-per', 'O', 'B-org', 'O', 'O', 'B-gpe', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'O']\n" + ] + } + ], + "source": [ + "print(y_test[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn_crfsuite import metrics as crf_metrics\n", + "\n", + "labels = list(crf.classes_)\n", + "labels.remove('O')" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " B-org 0.81 0.73 0.77 5116\n", + " B-per 0.85 0.84 0.84 4239\n", + " I-per 0.85 0.90 0.88 4273\n", + " B-geo 0.86 0.91 0.89 9403\n", + " I-geo 0.81 0.80 0.81 1826\n", + " B-tim 0.93 0.89 0.91 5095\n", + " I-org 0.82 0.79 0.80 4195\n", + " B-gpe 0.97 0.94 0.96 3961\n", + " I-tim 0.84 0.81 0.82 1604\n", + " B-nat 0.50 0.24 0.32 55\n", + " B-eve 0.51 0.33 0.40 80\n", + " B-art 0.36 0.14 0.20 102\n", + " I-art 0.24 0.07 0.10 90\n", + " I-eve 0.45 0.19 0.27 74\n", + " I-gpe 0.86 0.53 0.66 36\n", + " I-nat 0.57 0.22 0.32 18\n", + "\n", + " micro avg 0.86 0.85 0.86 40167\n", + " macro avg 0.70 0.58 0.62 40167\n", + "weighted avg 0.86 0.85 0.85 40167\n", + "\n" + ] + } + ], + "source": [ + "print(crf_metrics.flat_classification_report(y_test, y_pred, labels=labels))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have intentially left out the ___Others___ tag to understand the performance of model on the remaining tags. The above evaluation statistics showcase a model which seems to have learnt the transitions quite well giving us an overall F1-score of 85%!\n", + "\n", + "We can achieve even better results by fine tuning the feature engineering step along with hyper-parameter tuning." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## End-to-End NER Tagger with trained NER Model\n", + "\n", + "There is no fun (or value!) if we cannot use our model to tag new sentences in the future assuming we would want to put this model in production. Let's try and build an end-to-end workflow to perform NER Tagging on our sample document. First we perform NER tagging with SpaCy to remind you how it looks like." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Prepare Sample Document" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Three more countries have joined an “international grand committee” of parliaments, adding to calls for Facebook’s boss, Mark Zuckerberg, to give evidence on misinformation to the coalition. Brazil, Latvia and Singapore bring the total to eight different parliaments across the world, with plans to send representatives to London on 27 November with the intention of hearing from Zuckerberg. Since the Cambridge Analytica scandal broke, the Facebook chief has only appeared in front of two legislatures: the American Senate and House of Representatives, and the European parliament. Facebook has consistently rebuffed attempts from others, including the UK and Canadian parliaments, to hear from Zuckerberg. He added that an article in the New York Times on Thursday, in which the paper alleged a pattern of behaviour from Facebook to “delay, deny and deflect” negative news stories, “raises further questions about how recent data breaches were allegedly dealt with within Facebook.”'" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import re\n", + "\n", + "text = \"\"\"Three more countries have joined an “international grand committee” of parliaments, adding to calls for \n", + "Facebook’s boss, Mark Zuckerberg, to give evidence on misinformation to the coalition. Brazil, Latvia and Singapore \n", + "bring the total to eight different parliaments across the world, with plans to send representatives to London on 27 \n", + "November with the intention of hearing from Zuckerberg. Since the Cambridge Analytica scandal broke, the Facebook chief \n", + "has only appeared in front of two legislatures: the American Senate and House of Representatives, and the European parliament. \n", + "Facebook has consistently rebuffed attempts from others, including the UK and Canadian parliaments, to hear from Zuckerberg. \n", + "He added that an article in the New York Times on Thursday, in which the paper alleged a pattern of behaviour from Facebook \n", + "to “delay, deny and deflect” negative news stories, “raises further questions about how recent data breaches were allegedly \n", + "dealt with within Facebook.”\n", + "\"\"\"\n", + "\n", + "text = re.sub(r'\\n', '', text)\n", + "text" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### NER Tagging with SpaCy" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + " Three\n", + " CARDINAL\n", + "\n", + " more countries have joined an “international grand committee” of parliaments, adding to calls for \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + "’s boss, \n", + "\n", + " Mark Zuckerberg\n", + " PERSON\n", + "\n", + ", to give evidence on misinformation to the coalition. \n", + "\n", + " Brazil\n", + " GPE\n", + "\n", + ", \n", + "\n", + " Latvia\n", + " GPE\n", + "\n", + " and \n", + "\n", + " Singapore\n", + " GPE\n", + "\n", + " bring the total to \n", + "\n", + " eight\n", + " CARDINAL\n", + "\n", + " different parliaments across the world, with plans to send representatives to \n", + "\n", + " London\n", + " GPE\n", + "\n", + " on \n", + "\n", + " 27 November\n", + " DATE\n", + "\n", + " with the intention of hearing from \n", + "\n", + " Zuckerberg\n", + " PERSON\n", + "\n", + ". Since the \n", + "\n", + " Cambridge\n", + " GPE\n", + "\n", + " Analytica scandal broke, the \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + " chief has only appeared in front of \n", + "\n", + " two\n", + " CARDINAL\n", + "\n", + " legislatures: the \n", + "\n", + " American\n", + " NORP\n", + "\n", + " \n", + "\n", + " Senate\n", + " ORG\n", + "\n", + " and \n", + "\n", + " House of Representatives\n", + " ORG\n", + "\n", + ", and the \n", + "\n", + " European\n", + " NORP\n", + "\n", + " parliament. \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + " has consistently rebuffed attempts from others, including the \n", + "\n", + " UK\n", + " GPE\n", + "\n", + " and \n", + "\n", + " Canadian\n", + " NORP\n", + "\n", + " parliaments, to hear from \n", + "\n", + " Zuckerberg\n", + " PERSON\n", + "\n", + ". He added that an article in \n", + "\n", + " the New York Times\n", + " ORG\n", + "\n", + " on \n", + "\n", + " Thursday\n", + " DATE\n", + "\n", + ", in which the paper alleged a pattern of behaviour from \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + " to “delay, deny and deflect” negative news stories, “raises further questions about how recent data breaches were allegedly dealt with within \n", + "\n", + " Facebook\n", + " ORG\n", + "\n", + ".”
    " + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import spacy\n", + "from spacy import displacy\n", + "\n", + "nlp = spacy.load('en')\n", + "text_nlp = nlp(text)\n", + "displacy.render(text_nlp, style='ent', jupyter=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Pipeline Step 1\n", + "\n", + "- Tokenize Text\n", + "- POS Tagging" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('Three', 'CD'),\n", + " ('more', 'JJR'),\n", + " ('countries', 'NNS'),\n", + " ('have', 'VBP'),\n", + " ('joined', 'VBN'),\n", + " ('an', 'DT'),\n", + " ('“', 'NNP'),\n", + " ('international', 'JJ'),\n", + " ('grand', 'JJ'),\n", + " ('committee', 'NN')]" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import nltk\n", + "\n", + "text_tokens = nltk.word_tokenize(text)\n", + "text_pos = nltk.pos_tag(text_tokens)\n", + "text_pos[:10]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Pipeline Step 2\n", + "- Extract Features from the POS tagged text document\n", + "- Hint: Use `sent2features`" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'bias': 1.0,\n", + " 'word.lower()': 'three',\n", + " 'word[-3:]': 'ree',\n", + " 'word[-2:]': 'ee',\n", + " 'word.isupper()': False,\n", + " 'word.istitle()': True,\n", + " 'word.isdigit()': False,\n", + " 'postag': 'CD',\n", + " 'postag[:2]': 'CD',\n", + " 'BOS': True,\n", + " '+1:word.lower()': 'more',\n", + " '+1:word.istitle()': False,\n", + " '+1:word.isupper()': False,\n", + " '+1:postag': 'JJR',\n", + " '+1:postag[:2]': 'JJ'}" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "features = [sent2features(text_pos)]\n", + "features[0][0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Pipeline Step 3\n", + "- Use the CRF Model `crf` to predict on the features" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['O', 'O', 'O', 'O', 'O', 'O', 'O', 'O', 'B-art', 'I-art']" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "labels = crf.predict(features)\n", + "doc_labels = labels[0]\n", + "doc_labels[10:20]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Pipeline Step 4\n", + "- Combine text tokens with NER Tags\n", + "- Retrieve relevant named entities from NER Tags" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Three', 'O'), ('more', 'O'), ('countries', 'O'), ('have', 'O'), ('joined', 'O'), ('an', 'O'), ('“', 'O'), ('international', 'O'), ('grand', 'O'), ('committee', 'O'), ('”', 'O'), ('of', 'O'), ('parliaments', 'O'), (',', 'O'), ('adding', 'O'), ('to', 'O'), ('calls', 'O'), ('for', 'O'), ('Facebook', 'B-art'), ('’', 'I-art'), ('s', 'O'), ('boss', 'O'), (',', 'O'), ('Mark', 'B-per'), ('Zuckerberg', 'I-per'), (',', 'O'), ('to', 'O'), ('give', 'O'), ('evidence', 'O'), ('on', 'O'), ('misinformation', 'O'), ('to', 'O'), ('the', 'O'), ('coalition', 'O'), ('.', 'O'), ('Brazil', 'B-geo'), (',', 'O'), ('Latvia', 'B-org'), ('and', 'I-org'), ('Singapore', 'I-org'), ('bring', 'O'), ('the', 'O'), ('total', 'O'), ('to', 'O'), ('eight', 'O'), ('different', 'O'), ('parliaments', 'O'), ('across', 'O'), ('the', 'O'), ('world', 'O'), (',', 'O'), ('with', 'O'), ('plans', 'O'), ('to', 'O'), ('send', 'O'), ('representatives', 'O'), ('to', 'O'), ('London', 'B-geo'), ('on', 'O'), ('27', 'B-tim'), ('November', 'I-tim'), ('with', 'O'), ('the', 'O'), ('intention', 'O'), ('of', 'O'), ('hearing', 'O'), ('from', 'O'), ('Zuckerberg', 'B-geo'), ('.', 'O'), ('Since', 'O'), ('the', 'O'), ('Cambridge', 'B-org'), ('Analytica', 'I-org'), ('scandal', 'O'), ('broke', 'O'), (',', 'O'), ('the', 'O'), ('Facebook', 'B-org'), ('chief', 'O'), ('has', 'O'), ('only', 'O'), ('appeared', 'O'), ('in', 'O'), ('front', 'O'), ('of', 'O'), ('two', 'O'), ('legislatures', 'O'), (':', 'O'), ('the', 'O'), ('American', 'B-gpe'), ('Senate', 'B-org'), ('and', 'I-org'), ('House', 'I-org'), ('of', 'I-org'), ('Representatives', 'I-org'), (',', 'O'), ('and', 'O'), ('the', 'O'), ('European', 'B-org'), ('parliament', 'I-org'), ('.', 'O'), ('Facebook', 'B-org'), ('has', 'O'), ('consistently', 'O'), ('rebuffed', 'O'), ('attempts', 'O'), ('from', 'O'), ('others', 'O'), (',', 'O'), ('including', 'O'), ('the', 'O'), ('UK', 'B-org'), ('and', 'O'), ('Canadian', 'B-gpe'), ('parliaments', 'O'), (',', 'O'), ('to', 'O'), ('hear', 'O'), ('from', 'O'), ('Zuckerberg', 'B-geo'), ('.', 'O'), ('He', 'O'), ('added', 'O'), ('that', 'O'), ('an', 'O'), ('article', 'O'), ('in', 'O'), ('the', 'O'), ('New', 'B-org'), ('York', 'I-org'), ('Times', 'I-org'), ('on', 'O'), ('Thursday', 'B-tim'), (',', 'O'), ('in', 'O'), ('which', 'O'), ('the', 'O'), ('paper', 'O'), ('alleged', 'O'), ('a', 'O'), ('pattern', 'O'), ('of', 'O'), ('behaviour', 'O'), ('from', 'O'), ('Facebook', 'B-org'), ('to', 'O'), ('“', 'O'), ('delay', 'O'), (',', 'O'), ('deny', 'O'), ('and', 'O'), ('deflect', 'O'), ('”', 'O'), ('negative', 'O'), ('news', 'O'), ('stories', 'O'), (',', 'O'), ('“', 'O'), ('raises', 'O'), ('further', 'O'), ('questions', 'O'), ('about', 'O'), ('how', 'O'), ('recent', 'O'), ('data', 'O'), ('breaches', 'O'), ('were', 'O'), ('allegedly', 'O'), ('dealt', 'O'), ('with', 'O'), ('within', 'O'), ('Facebook', 'B-art'), ('.', 'O'), ('”', 'O')]\n" + ] + } + ], + "source": [ + "text_ner = [(token, tag) for token, tag in zip(text_tokens, doc_labels)]\n", + "print(text_ner)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "named_entities = []\n", + "temp_entity_name = ''\n", + "temp_named_entity = None\n", + "for term, tag in text_ner:\n", + " if tag != 'O':\n", + " temp_entity_name = ' '.join([temp_entity_name, term]).strip()\n", + " temp_named_entity = (temp_entity_name, tag)\n", + " else:\n", + " if temp_named_entity:\n", + " named_entities.append(temp_named_entity)\n", + " temp_entity_name = ''\n", + " temp_named_entity = None" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
    EntityTag
    0Facebook ’I-art
    1Mark ZuckerbergI-per
    2BrazilB-geo
    3Latvia and SingaporeI-org
    4LondonB-geo
    527 NovemberI-tim
    6ZuckerbergB-geo
    7Cambridge AnalyticaI-org
    8FacebookB-org
    9American Senate and House of RepresentativesI-org
    10European parliamentI-org
    11FacebookB-org
    12UKB-org
    13CanadianB-gpe
    14ZuckerbergB-geo
    15New York TimesI-org
    16ThursdayB-tim
    17FacebookB-org
    18FacebookB-art
    \n", + "
    " + ], + "text/plain": [ + " Entity Tag\n", + "0 Facebook ’ I-art\n", + "1 Mark Zuckerberg I-per\n", + "2 Brazil B-geo\n", + "3 Latvia and Singapore I-org\n", + "4 London B-geo\n", + "5 27 November I-tim\n", + "6 Zuckerberg B-geo\n", + "7 Cambridge Analytica I-org\n", + "8 Facebook B-org\n", + "9 American Senate and House of Representatives I-org\n", + "10 European parliament I-org\n", + "11 Facebook B-org\n", + "12 UK B-org\n", + "13 Canadian B-gpe\n", + "14 Zuckerberg B-geo\n", + "15 New York Times I-org\n", + "16 Thursday B-tim\n", + "17 Facebook B-org\n", + "18 Facebook B-art" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "pd.DataFrame(named_entities, columns=['Entity', 'Tag'])" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch08 - Semantic Analysis/Ch08d - Analyzing Semantic Representations.ipynb b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08d - Analyzing Semantic Representations.ipynb new file mode 100644 index 0000000..7cc8aa5 --- /dev/null +++ b/New-Second-Edition/Ch08 - Semantic Analysis/Ch08d - Analyzing Semantic Representations.ipynb @@ -0,0 +1,547 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import nltk\n", + "import pandas as pd\n", + "import os" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Propositional Logic" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# assign symbols and propositions\n", + "symbol_P = 'P'\n", + "symbol_Q = 'Q'\n", + "\n", + "proposition_P = 'He is hungry'\n", + "propositon_Q = 'He will eat a sandwich'" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# assign various truth values to the propositions\n", + "p_statuses = [False, False, True, True]\n", + "q_statuses = [False, True, False, True]" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['(P & Q)', '(P | Q)', '(P -> Q)', '(P <-> Q)']" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# assign the various expressions combining the logical operators\n", + "conjunction = '(P & Q)'\n", + "disjunction = '(P | Q)'\n", + "implication = '(P -> Q)'\n", + "equivalence = '(P <-> Q)'\n", + "expressions = [conjunction, disjunction, implication, equivalence]\n", + "expressions" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# evaluate each expression using propositional logic\n", + "results = []\n", + "for status_p, status_q in zip(p_statuses, q_statuses):\n", + " dom = set([])\n", + " val = nltk.Valuation([(symbol_P, status_p), \n", + " (symbol_Q, status_q)])\n", + " assignments = nltk.Assignment(dom)\n", + " model = nltk.Model(dom, val)\n", + " row = [status_p, status_q]\n", + " for expression in expressions:\n", + " # evaluate each expression based on proposition truth values\n", + " result = model.evaluate(expression, assignments) \n", + " row.append(result)\n", + " results.append(row)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# build the result table\n", + "columns = [symbol_P, symbol_Q, conjunction, \n", + " disjunction, implication, equivalence] \n", + "result_frame = pd.DataFrame(results, columns=columns)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "P: He is hungry\n", + "Q: He will eat a sandwich\n", + "\n", + "Expression Outcomes:-\n", + " P Q (P & Q) (P | Q) (P -> Q) (P <-> Q)\n", + "0 False False False False True True\n", + "1 False True False True True False\n", + "2 True False False True False False\n", + "3 True True True True True True\n" + ] + } + ], + "source": [ + "# display results\n", + "print('P:', proposition_P)\n", + "print('Q:', propositon_Q)\n", + "print()\n", + "print('Expression Outcomes:-')\n", + "print(result_frame) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# First Order Logic" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import nltk\n", + "import os\n", + "\n", + "# for reading FOL expressions\n", + "read_expr = nltk.sem.Expression.fromstring\n", + "\n", + "# initialize theorem provers (you can choose any)\n", + "os.environ['PROVER9'] = r'E:/prover9/bin'\n", + "prover = nltk.Prover9()\n", + "\n", + "# I use the following one for our examples\n", + "prover = nltk.ResolutionProver() \n", + "prover" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] {-jumps_over(dog,fox)} A \n", + "[2] {jumps_over(fox,dog)} A \n", + "[3] {-jumps_over(z4,z3), -jumps_over(z3,z4)} A \n", + "[4] {-jumps_over(dog,fox)} (2, 3) \n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# set the rule expression\n", + "rule = read_expr('all x. all y. (jumps_over(x, y) -> -jumps_over(y, x))')\n", + "\n", + "# set the event occured\n", + "event = read_expr('jumps_over(fox, dog)')\n", + "\n", + "# set the outcome we want to evaluate -- the goal\n", + "test_outcome = read_expr('jumps_over(dog, fox)')\n", + "\n", + "# get the result\n", + "prover.prove(goal=test_outcome, \n", + " assumptions=[event, rule],\n", + " verbose=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] {-pass(John,exam)} A \n", + "[2] {-studies(John,exam)} A \n", + "[3] {-studies(z6,exam), pass(z6,exam)} A \n", + "[4] {-studies(John,exam)} (1, 3) \n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# set the rule expression \n", + "rule = read_expr('all x. (studies(x, exam) -> pass(x, exam))') \n", + "\n", + "# set the events and outcomes we want to determine\n", + "event1 = read_expr('-studies(John, exam)') \n", + "test_outcome1 = read_expr('pass(John, exam)') \n", + "\n", + "prover.prove(goal=test_outcome1, \n", + " assumptions=[event1, rule],\n", + " verbose=True) " + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] {-pass(Pierre,exam)} A \n", + "[2] {studies(Pierre,exam)} A \n", + "[3] {-studies(z8,exam), pass(z8,exam)} A \n", + "[4] {-studies(Pierre,exam)} (1, 3) \n", + "[5] {pass(Pierre,exam)} (2, 3) \n", + "[6] {} (1, 5) \n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "event2 = read_expr('studies(Pierre, exam)') \n", + "test_outcome2 = read_expr('pass(Pierre, exam)') \n", + "\n", + "prover.prove(goal=test_outcome2, \n", + " assumptions=[event2, rule],\n", + " verbose=True) " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'rover': 'r',\n", + " 'felix': 'f',\n", + " 'garfield': 'g',\n", + " 'alex': 'a',\n", + " 'dog': {('a',), ('r',)},\n", + " 'cat': {('g',)},\n", + " 'fox': {('f',)},\n", + " 'runs': {('a',), ('f',)},\n", + " 'sleeps': {('g',), ('r',)},\n", + " 'jumps_over': {('a', 'g'), ('a', 'r'), ('f', 'g'), ('f', 'r')}}" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# define symbols (entities\\functions) and their values\n", + "rules = \"\"\"\n", + " rover => r\n", + " felix => f\n", + " garfield => g\n", + " alex => a\n", + " dog => {r, a}\n", + " cat => {g}\n", + " fox => {f}\n", + " runs => {a, f}\n", + " sleeps => {r, g}\n", + " jumps_over => {(f, g), (a, g), (f, r), (a, r)}\n", + " \"\"\"\n", + "\n", + "val = nltk.Valuation.fromstring(rules)\n", + "val" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "({'g', 'a', 'f', 'r'}, {'rover': 'r', 'felix': 'f', 'garfield': 'g', 'alex': 'a', 'dog': {('r',), ('a',)}, 'cat': {('g',)}, 'fox': {('f',)}, 'runs': {('a',), ('f',)}, 'sleeps': {('r',), ('g',)}, 'jumps_over': {('f', 'g'), ('a', 'g'), ('f', 'r'), ('a', 'r')}})" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dom = {'r', 'f', 'g', 'a'}\n", + "m = nltk.Model(dom, val)\n", + "m" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m.evaluate('jumps_over(felix, rover) & dog(rover) & runs(rover)', None)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m.evaluate('jumps_over(felix, rover) & dog(rover) & -runs(rover)', None)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m.evaluate('jumps_over(alex, garfield) & dog(alex) & cat(garfield) & sleeps(garfield)', None)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'x': 'r', 'y': 'f'}" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "g = nltk.Assignment(dom, [('x', 'r'), ('y', 'f')]) \n", + "g" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m.evaluate('runs(y) & jumps_over(y, x) & sleeps(x)', g) " + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "m.evaluate('exists y. (fox(y) & runs(y))', g)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'a', 'f'}" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "formula = read_expr('runs(x)')\n", + "m.satisfiers(formula, 'x', g)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'f'}" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "formula = read_expr('runs(x) & fox(x)')\n", + "m.satisfiers(formula, 'x', g)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch08 - Semantic Analysis/corenlp_ner.png b/New-Second-Edition/Ch08 - Semantic Analysis/corenlp_ner.png new file mode 100644 index 0000000000000000000000000000000000000000..bfff79b3107556c9649ac699f498ac8e0c01036e GIT binary patch literal 85518 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 ND8c}{8d>w8{{#7}gX;hQ literal 0 HcmV?d00001 diff --git a/New-Second-Edition/Ch08 - Semantic Analysis/ner_dataset.csv.gz b/New-Second-Edition/Ch08 - Semantic Analysis/ner_dataset.csv.gz new file mode 100644 index 0000000000000000000000000000000000000000..660f905e896337ff16427f538d985186ef8fc866 GIT binary patch literal 3010299 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�NFmK?5LOrb6_hqB8`Q)Un(ytJ$a#Kc=R+4 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

    +)7?hj!{@I7>YbI>(Z2aUa>SO%xAAaCJ5AOik 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

    gX<9+g8&*IsuEgtL$ridwE9k8SemU$_8n!9xyL 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

    @b){L>_htsHaUhBXlGW|$NR$JxJTlapN*^C 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

    la|i}% z({`Eqd`Mw(xDwX==t}r#%1iiI8or$XCigDiW^;c2Kk4qiIw3oqnRE)c`rcxR$qaAh zZn&4E`cYeJZea{DE-T^MO z2iwk76-53{NnEQ;Y#eYW^ zwJeF~mo>)X)?TlhG}0gFHQT;2vs>XjtM3xaQCu*E#=^oo%XVPwV8eoX8du<%*5BWl zu8YBjPlpVnl;DnNV7}Fy&d%Hyo7lZZ<9{46B5~zBp4gqsqYy(+jk5Mlgz$<6Q`F-h zufau51l*BRqGl;io{pzS8(aAGk3(9qF}F0oLby0T zQD8j~q{HGUIF50QDrTcwFW6mhwP{Lr&o?@My}BmLiL5V~9xj3vN+%0#O&IDrcLMlZE<{<|oOb=Rrkrq;e-0)FwuOQTQZAG)eU0~In_;|xUxonAsnz}T^PIh=Fe?sTBBG_wI45Z?ZVmnLTQ?3}&*Ccq>wLZVEAGjl zK;%y1yPg_Pai?*8Pu-9p-SxX0n2O3k%0Lu$(e=t54{9`EMeIl0*0TEF^TQunw&u$4 z@M@Nq;`gpG-rSmY6{Chp-+WbZlk%A+lPjC*kqKl9+B2JLUCjLD%jeTPr;K1TlmaS= z_#nZV@ssg+xEde0PRNbL-!5Va7|++JO6tu2U2DyisAuqH8sYe}>3hL(^XVWMc~C>3 zr#t86!xtbcuTdDU?=y*^PpPj6tJ^Znrnl{X z!r!G0=xk(fVc<%KicnqJMa$rF=A5DHoGG_*@_3e|uXdOofy_clK>Qe7TP#x@d@(ol zSG#A9IZFo(&vPm2E`=Vwqs6ctGRE}n03kWgN{&VhvE~zZnf}x>D)v4+e;kv_iOaV# zS#e%!JWIbFvF=dse&<@3-nab1v|*_Bb{}(=qtK^vvqo4Yxz&8ADCf@?X-ESbjx`zE zMpy00dnlC(QNB;QBV&K2?(*k}nV||d>XA?rpBDpav1O*wa(~GAus~Z=InM>M;xjtb z2d|?`C$B44K6F#fj*J=+at0jeIBbi6gc~5bfPP9j=UvRv&sB7t>x4o&o+?+NwB1az zaqCc!^NZ(+??`2-eU`l;W?UygPT!X$DL?~HvzOdl#xHv6-DAL-c2rXr&@Da=7`%*i z77Y9sdma2RVlv`wt_3@oST7jqcT*!;)&y<#wiRLcNI6xOlN{Fzp_~CFE7qnJOmkd`T}b!9;Bnl6Mv> zvp4ssiA0sIB&N7k_cj?rGaP1SM9I#g-KZ-OzlV*j9Zy9*?Fn|hE8SEHMW?*+tLP5> z5R2w{=e@}}u4-2cnWw42*+I;?JpWz5V`CV0dqLcWam5O%(|q~N-O1_oeRed9GfNC@ zo3xSZvKCjW3l|aG_UCGE+6=$2bK72iiadXH;yl~#%&y!6d;=M&v@|AF2+5Yo9N!{} zOAjH3Dt1QMQ&S=4v_RN?QtQ|b34#VemO>e!Fx(k$+rDhTk(;S&S%GO;cGFP|^ zvC)Ku`$C39G1tY(w}Q}`O6L39LmWC>S5z2G@3z!VzUDp9r(RL%my(1!91fv#SevQ@ zUwk|{hxA^5+~6RKb4qCP!8NXru48+`Lb-K@-)k_;TrT%JTf4;nXIg8>C%6$ady4a@ zL@OH$P-L#F48`bg{)UyOSRy}z45h3J#tQ+F0 zFn``(2bx9mG{JRPg!`hp`*2#2{myo_Yl_`^T{1-DNu^2KredKrLlsRW_UK|aj5VEu z&5RJJxMxtS5pV-Zs%u*_@=U;Guy{hE#>)<8hN6A8vDhueYD-#uG;`xTJbYZYC&zaG zH5r!aM+@_-;-6YP7wt&CQxDDJ%-^Q4;kbW}&6w>h1=kE+pRU`d?-`bpHP4~m26}2c z5`!!b^fCz$rPQD-sm#A4+9ZI*8VxN;B1uNoE89a!mvzQpn;m;afu@Poog{`AC;5uR zzpBC0KU?Y|9_f>WLJVnqp*b<4E&6x)0%FlV6p2B8J%2y9`-ScuS|}5;=-z)jVvXs)A(6C zG_&#}%|=y)3ofjgZhzZ{)&+hyrsvWfJNv`N)biq-c1*llx^<~p%STX3Hwi)kd_hYs zCI>ot<(JUfMI*jsYw(Rvxy8u$<4l>W3(7QcgWU)CrJA0n0eh^U*PP$VJkG&O&0_D( zJtIny;5K+~a=f|JBRY6n?~2l%b)wZPALa=$m52o$@&g;2AT<=$d`Y5bKeSVs6Je%w z6bm>^;@?~`$(_JiN?spNxG+QoEM41c)AexEs0Dny&#k~k@|4l=#ca1GnvJRXqvgC3 zJB@!K$3?V3yTo0i3B%gt#j?sbUU&7|BZn!Ih5?z8-`h3*0lzKP|1w&%JYY)a1M{oC=3I=a+9!Z2yqJ$TS>Zl`1B;TNAK zmfP`XUFnHwzm?79eGH)p#{I4Fe)!Ss6~#V*6gOl$w}`?)JC&2?Q(_UXmW0IOtx^(e za4j{&ENnGx0W?NVd&m#Sp);GA2*>F^P5jB+xOES@l&1XF*&%JuJXJ)|S3ifxs%`IQ zhqa73_55{0pSqah4T(UbjZIO*&9#J`XnTE*o%DcF<4Sk z=_!ZF66N=?w>^`d5O2FZMN|16%#)>Tht;O?JC*3ayV`~x)(nJY3B0Kil335;m`t~| zir|rm9fdv%S*0NwpGE%JW$u#z8HBP*i~S6p@n_@aGF3Llkn+3|OQ8ECJ?ZIdBy!%H zTey*iJ|&!m>*G>-MMXllaW%#Ir|AImI-OOeK@IvkyxMX3Cd0k8?zxS-O^L690to0j4;eURz@CtzvvI3tz={joP%>P ze}9ld5Xe)3_~qXh82{m+$sEzQwz6erRByLz=4}|_(|Z6Am1e;ii}I`*6V#-xfYIx~ z=_HB0YSQ!_^h6WM&Mxn%gU^T7Lc8+^8)Gg$`RP}`H!-8VVI}57)m(YqTHndnS&G(1 zw!gI8dY^>^k!V-(2fNP>%fFbL5Hc}*!F@qjT2N(CwT|dm!hJln*k>JK8 zSb(Ahrs}N${(!GjC|~S`c8S0$hU&`pr{kqhM*&O)OS7ZwBE6LGOemMHa!PcjIiB*h z5P;%D;Gm-qU^D0{d9=h3aI+XC=a#hhf=`_RC>sYLAwht$^I0IVdE~K>gt)?Tc=>i+ zqJ6Fra~Q|Z#I&~e^>cpxF8XW_y=)3Udkft*Vn{7hUm;Cq`j;oaFKePxa8T%CO3jlv z&1tlLN@7lANw^?+)al|p1lRVZ>WTGy^ES-+@uh-{ zW}XyVvnQFO&|ePLw)A|h=v?Gqy|IMxSm+qt&|`(c7CNub=)7LH z;;Z|{NR<@Tv~7|bVp^$(tjJ$Sfo4Hrn{vR}>lcb10v}0hzovtm8XGV0oAlMaJN@jg zQtA455k?n!3JnUqFL_JVylA)3VxGP$6L#04eSHnUDal6f0>ceQpIWk>&NHB%&MLi; zUHUsYQm73PbpTADi$RHk5DWf`Hz#kgTeb!_)Ib>&Bv@-*`q6RN{U-xws4p3+wrB+K z3gi81Kj(G;oO=(DZ%dU=7gWtRz<``60t-cdRdz0lP;}U(+Bi;xn+bJ?_o3ZI+htJ& zxXKb9pfR`Onh-5M9Ci6cR5_qA$_gv%k@0Iqr(Sr84)FojO>r&ndu z)}EyierMWx@6>7>gG+ZkDp zo!2*Pn{wCbCoT6W=_x15Gah8ObZPlf3aV7d#P>d|``!`J4N@d(N%kLyu3zZ^cnjDK zD(ffV-o7_JHIRr7Wz$dD%m)SRBtXvN(= z41Mm+Lz`ftxF+$M>-TjuHw=xM#Ojn4L7-?>?0&{58T)FVF9Q;yqn*tNm8yLzKL8Js z#Rsx?jGN^HuAgh-uoa{ddLsQpv3ELmSf_mxhB{Y1+-!8tlitbQVcAWN-Q1d^Mo=^Vle;3Wx^d*M4 z>89W_i|2UuUgD6=0YryzlU23j7+MHi;5G4mri1V5+UNTAzcJmzn9)moT)MC5o-7;w z^|WnP*^%O!mPvrmKdIe+gCvhDEVd&dII(wwGe1p{qoWnAHga~t=@uN@O_p2lY^53uzxd~B)N&o0AHzOk{-@i>Fr zhu{*>7v=aD>y{s%G2Bs~e%T}-^O%;P!JA?S2z8z%f`t~@Re9Zub^O72SLfCUgYmXu zveXH)LxX(dsSo#AODry@a%1A+u6ZlW!*L-v5Oe}Z9n5lNsrL?tgLmb3(Tz0+4dxzN zdn-dWrpoE3Op-2sp_B*T&iHIFb!9-6d>1qYNM)ZX6bh!>n>a_gz3VztE1ktE_eHd( zzLmWq``|g%*~j?-CeKFzXjC#Ki-3ubuSgR&Kv?JTTVrcZPn2Ra2NoCzSFa$q5w0#+ zUA%rYE7oDyi0X-=O+kaz;T{zvI5=WJRIfPZGqs=M2Qwbw{S1EWO?9Qx2jsbWL0GHg zw+=(>hG{i8?Fqu3eJ^X1y=#KO>%_vVM~v!~NwadM{Wfid$GTsr+H2!F7hg@VD)SR; z0&QT?_Cst75lspsqlKly&yLOC+k|B3)-8EajAASo8sEG6P4FMNwwOnIouU3eyPr=# zX)p1NAxr+;RlT@b;6kGyr{~aRJcCZKs&9Yv=sWig2_=Sn}A42aNHUuLSp?= zy)@6sCbCPpA@92oJrB{{zJ5YU^78dF@NBw_M1ryk;R8WbcQb0biw@Vy@bJ#1JVxpe z)6d09WK5dw;Lh=W-GpXSj)l9%c&;Vh)T7FU;G|fC1g%~|Z|=^*n8Fv40R0-@z&rvz z*7f9KwY~f9i)q}g*((Z{D(^qKr#RM=#C~)_Uh3UU1<6~*n0HW^1a`yb1o89pA6iT9 z6)M?$(*lrnMIi!HVHK^;{;qLx$?*D=FBjQ{B@~J6x89Q`r_29yi0oMI_n^LP#zwaFYW@@oA4EU=REvCJV~!%sY(_=e~sHu5q(ZwqG*UIb2;OB zS!?nCe6-51;Q0!NaV)UD%;{83nM{~#1-ytt(U(zDr7xTUwI5A`Y{^_B9r@PYdXHEw z&q0P*G|bB!A;3q^w0*3%+01bt$+oi!dYdM(wNarjBpabjFJ;=Z2n~C0L)^H!w(YV< zkU|%$m#j|#Z+s@kf_n1Cn?|efi*2mK3jQ8kW%+g_G1E@~&kBik zAx!bjdp>8rG=CUc%Rc5?(oa+!K++0N*MQr#>kb0}wybY}FDACsPg0;5=!D#T4A(Kc zk#7vWT|F*&raYN>jLU#P@kqU5n^v%zmEDtVt&c844(0SH;*hI@o#P}#vC>ddHEkzT zG}{oNa9qF6R_9o|E)MYB>Jxn{W(Ou%dBfxF{Arfy7H3N-5_z{3_)S5QPnucNU2p6t zI-_Sn}O9g<FTKMMTX}jA)ul>8J!~SYc68>A$1@#s9@jA>1w%;cOUiI%mDeHnKeAIoagAc<$ zvfus19)^u~l_Fg&Fx!g%C@fzG6Bmoq>!q>FT)p~-R4UD13=jK-GwoB{nbv*Lwc&~k z4mXZQ(L!Ih^vKF|ma)gs5%+TqE(k^OdWjX`#@aoFwb#U~PR`x{<}8{vdw4YF$G|(D zSu;`bz+q8Wx0b|P<7MkYDGd4L$q&E(H08$xUm0ex(L9Liak6urqtnUar(ftXj2&qP zl+Z$J($QsW_9pSH2t1~w5$qmnk+cn&s&Xx(4YyV3`$awK^#vl9f@icP$98XvkpNay zU9b{k%fowkFPfC8RJyKRyS1@*{@w*4Mp-!?&QHFdHs$x^0?Xx|*2e3{BrLb-?vdL| zsuL$gX@84cMc$F#*u?5|1T56naDNwvd_jxn{qtd<>^J_5j3RHx(NPsK7*ii>lwAP4 zn6M-gl1BpQr~?H}-blFRNN#C>btyH@K+{K99}Yz+o<0oK(K=lftzA@Y&c*SsZ4}JE zaz<${gB=^deJAT|`x_JO;_}=TT}%~+CdBU7RcO==g9eJ-bYq}MrEBV^5LzoYrmyx^ zm2GTmvEQe zpV_>rqN|*s7+v+^!#=d73@uh$IaXeu{6HZF=LWXSZ?P#dK{9d}dQA^pH_gVj)=18E zxl73grrRx5*7GeUETL>gr5t3kghzKU)$$H{BfWLXtAdN~T_1|E&3CSfA#GItb^hZ2 z?5O#{wRO1Z80izw7-Z2`23j34AVk&(CZ*a9Jt_=TRfNi!SL@JPEdZGSMw?(_E%fii z(UZ8%mM46fMe%#r+dPU-AE3tSPZUrAd&o0Zgc(vR$i{<-O7`wsx3LPsLa;?Np^9b_ z6#7PeUJ*Q|pQf%N9*JNI76C2&eX;Z#5rEP$tFFb%7k~{9#>r=nMCp++)umX73bEXi zKwQ5`y#snmTNU@ozi+SX;CNs|V7oWs9niD8-h`^^&d= z7q<0K@o%$&M@{IqOKecuU-Z$`vI#|0yR+HXc0ww zs$sM-Q5)@=ym`tCz~5tqUd4-JxQVjTqQcuM6>M@aFs)Qn334f|mv zQ{U%RncgDTi8paK#qddT(=wF>reYDk zbat))G*r32V^t%uB4|xq0NhHwa=bWg>%#F}CCvE8A=Yj>7qaHWrR8{?l1(tTNra^e zw0qLw_QBnn;}(*fVG~S9s$cd3P6X8xV#e4w;qUjRX>8so@fXvW+O$evnrhm{iex!( zRAtM5Z~D|=>?;0%@+8ye)5i4@Ibyo+)g^oL9BKBAr$+%V{~($Ul`eE_sA=*cK&F%6 zg>CVzvU^Zp{j5)xXC-bYFuB^6h5Ha#Z(8JM?_g;JZM>I>(95Kp57%oS?j5|?7;;$O ze#zOz&g0Z5FK*|4R?aHcNEq?#LL#7*B>XcW$Cu|X*4t!;b9ly-b&v}sFAX^(j&9d+sIl&b8my?K} zN6P!Db9iop-pn4Q@6!;ywO_uN{EBjwEj@+4QPvLMT5lsvna92L^JeYVWqc+AiXXIQ zoV@1J9K3DrMSZ_g)#)>jE`Iqw(NsA_u}L;t$0AVv?48`#`duK(*wsR0DBsdZW~V1A$u?X0O4UV7Xqs(MYn6I zLPv9nylDXCuah@TVcgbTWqj)fJA{eLvw=QWSUbiGJM0k%v!Mv#af3Ys_|8Lp*`b-4S{ zYnPd%F5;-007n-v1hRVNc{8D+kryDk&S?@a_wGS>w$o@%h^a$GtieE2mn zS~>K3SK0j{n>WD@i7yavlE+bY4x3R2T-L>HTMN+Z`HPWPCu1t;?%z_Acmv$hAZwLn zxI{wg8RWB)Fk(cVz1DnyH;G{X#QbDkB@3F+p+*#(x=gav{N}x}_G-xh7cUe)+}NFI zOLypD@IH(o!IN6Zpk2nXN+(gYmbeF}BeeStjx&DQjeJS9Mb|7#Ig0JDF+EvIg(yO^ z6vZUry}M{RY^OMxy~@i7TXPYVI_1~^-h%taCNpS&yf0In?uCY9QN&?yh=jRYrCk`8 z>~?~&I6)g$?D+EJZ)wGf&<^9pnF9ZsIBQoeS`O|EMNDRem~QfVELu7NbsbzuJD(mu zi2QJIh-^Qn@Zx?wXU1!#dAa$B?WCOXfIsUTp=J5y4b6h$6;ZZdv{mvmDNdBzMThRhNj-oL+vS;*bXUMWC4krp)tX7HiaBC=kYKwIz{!+}?f)IFm zBdmn5Rw1%Eft0KHLDiB{3QzAjm$eM-<9}zqnAs~ox`WoSkdn`k7cC?vWx3c&DSZX4TXVJI(1dN`8Mxrxp$g(*z; z)Z1ElL2LGYbMoQ%65@hP#-e})!GyAFl|!pC8`oMGYX|3(IpksfboY3B@|`I26cH#5 zmbl?N#b0Ykwx^#DLdbxkpLS$%;wN!t5loy{m*W1I$CY&&dcny}H-m@2_5nmUR~*Q#;;*@phiFJp_tN*=`S! z99((->8Fhd?P`1QA>{}7Cvtj1j{$}7l3`{pDcFK>dorLmH;uU}KR!m$6i@7Js>&YHfu;NYG*f&( zpJ~47NjMr6jb^KT>ncWZ|0Gf+(+>fpCM0emqZn?M4+a$Y(c6@Vn;biRKNyk_PU5Rl zxMW)rIm*fZ=GEza-5qZ3o$I^-L{rE~Xj41CyNeD(?<7wS+`scHnhuUU9V3k(&&%sc zKUBg-C6o$hVW+Tc--WIUH(XyDSp&AyG_h*y?T#_eGn;)h*OmiYu8JnZLvfcKS&Vk} zq-%yliV9Uvyla`#U{Cr~K__9q_dEa(JJGK796F7|#krQRRA@C|OEJ(a6vA)pl ztco3}pStzF7}K~>jz)0mB^mBU#(Le}NLu+;G%rT&&9(DUQcVe}RY6!`Y} zs3O&m-iv2)5W_MzfvrJ_8)Tb zxP~BJB;`8Of+WGU9%x7!v+fx$r4*0+Xc=A9;qcheOT5;<$*8t8%$014;2e_lhB46s z`i^N8A*k$5Mq`_eiDT=5ez7K7m#VbA1K6B@-_AB=LUr4V`tkGD*=FnBJ|x@?LX(p_h>PD^XQEH*$OCI2<9 zHN+ivJS(sSGtg6-OgRlOQXlJs2=#w)_n(u0{p(0i<=WkL;COe&haEhg{53By0oFiX zBb$s@4tSfI~6&(1^lXa+rF6COfk zfJmMvuJx43wos$b=}N{4j2Ta9ooMK6?sH^ncxL}gRbeYjcgmw7{1h~gx$ zC9)urSH3cXLVjwhio&%viaP<0aAU8_eC>^iu0PT}^NF)(lpO8QCJtZHQ_nn?ZxTP% zF_X3lM)}6D?QKeC9X-MaQ!90Gv$bTO(u=D$u~y;RKMk2^oi`Qz7a4no+qHpOvSQ?y zCm%wUl}Y<(P4-Uz+f_885W04;{@q>mA%DLAW9atP-nLgkfn12w7y%fOIy{6Vr>Agy z{q_Ba4<+oDRAK6pUp%;XY#v2V{q3QE<*Z%!*|m#qdoI78fwRj=AwXJYN)Y0AJKN?> z0iU92cbQu%6HMWB@~286jbeXJC!mcGm(3_b4>4>!?-5noDlNV3+njJ68Its~X1Oc~ zuW?HZ^6>d>Mu4g2=)L8skT1d}4E^y~d7T4_UGwcu^9^SiV8oFZt%XK@+tFE?{H$)()sj9xb_2vd&{!_Tl z97uJU^}_V$;Sg;zZ~h!&j&M(L8o|88_jZF9y;fjn__tJ|tQ?GS8i&O_n1sv|!EA{= z2Hhs^^}H;!SvO@2U5eW%MJ?ZhZ%M*Wlv9pY0{QitX%F^cW_(@p6ZSXN5_N^$V;O*v+K31^ z0~>5aW1pNX>b*DC`&_+OGE0~PGwyDiO;`yZ?ghp>yX5=gktSB~+ITlDl^QbZKF6&U z?XDdpi!gu6<8MW|lUMWVe&n=b8*}oNq%35mC%{3>;@_X*3NJN~zsj3yTOtY{wdmH? zkLLuP4w(fojOOn+IFC2=94Ksk(-mU7vlPxyeb<#izE4XrhLjUoVP3;FgU?$WvY%?8 z-->-+Nx4C;37Gx47Dk|{_iktBA(x7f=MkI2RgV?;tsbzlQ<=-T z2KTmcRXI7jalwZj=!nN>X**Qj8i=S&f?F4qw>a+f{44@A9IzxBDDI5MpN(sN!Yggn z@a=7xXNTt2Da&Iv>_uKCIUSGG@9Zk$MU%2z1J{fV&E4ZQPJsY;H8`h5n4P#I8C%%& z#?8tTKRYbO3Z^4qzP{wfR!saB0?l-y^E#M?-Ob>8cPQJSbLpR&){V%;YrOguN(p@n6wIQYHP<0a_OYw zra}fgKig@iYU{C4he8g!RkqcR9=?l4MpC)?{uE-LV?X~GqRlz;8grYLt1KABKu)>O zsK??apzh63O-uOekdFJIg%3(XVxD}ZMT`ef>-PLBTYkVJrHwQ}BZ>j=oIKt3xC z^rStsW-L0EmiO=FS+ST^KOBwZXPCPT#aM!)5l_41S0UoUOjVq#oTK!+Xaj!vNT>KO zsyXJ%y{Z{4qp7X#j4)*B{#2_~Le)fu}QPFFx zx06w)=QzSd2@`X5_j@68AJqO{8Dlcm)AU_2ObIAwq?i;(f0@d3|OWT*bpRfe8{YIIs0@nY%-9()y470pKV2veduN`WmELyo! z5Z6-5Eyh3aAhJD(m?$Sb?O@}>6-=CtXnb#63{n(S&#tyEc?PM~43yIM-mWw~>Zu2k zSYR(O#4d(mg~cb6$HzqL5SH3qJ4){mU@I#vSv%?&#?MYqc5V4bRB;9aA5vt9kCt1^ zU8~88CUn;uY9%viX!ph9t<$NY<3c86v+Dz4cG1Ld?jRTKZWi~nyE!tgn1bFLnI{=z zf>@t+wud(&6@kVC2$>?G|CVj+kAI(S)-5Ff!7P43YDJmk+mjEoV{S@)d@TR?t+nf1 z#fijj4Dl7oa&;Ye0-`av?37dSD56U+?B|dAXwtE(Y))mlHIYWw8Z|~Y5md_K zD8k>@T^DQ;o#@t*%Z_{K?t3YRsK3nt^&fEx)yO`EkT)Q(J5DlF zDZ<~^E)J6k8JH^i*IHY9rd77NiZSD>7tw*Nu`pvDQBY^VbXL8h5`OgikDUF9)IPt3 zk3U^p^3N0%18u%9pXXzgs8X1c5?@p(&Oyz{OoV&J31eN#mQIHZ_qcRaGCCMuooW)d zzp;KKQ>UA4RE@;W;{*LMqfCfoJ#`%Q3dMfj(#Tx3kzN#Ds62smgpe%yib*I%9v`wc zu*S6*VJ`4jyUrXAAjPx2O-Dw~5)en)0~*PCXLMFW%`RDi;xBfR)5|EkM^UswV)dsX z^s<00hf+{vpnljHaKo@1W*E~=J!q%Z*~>f6!@xGK97Ux3MSF7QPO7N%yT5)?)4zn? z@U=aQze&n~Lq-pSldS0R)lf$QiI&9qe4uoB&2n!ZXJ~in{2;S)zZz6z=o0ZO>+$wZ zK6RldAM3M18sls#u0f9R{|LNO;JJe)6}?VN&9mL`{Lr zrqoC?RWW8W{%bn5biMc9_*?a#)~4HQa=636#>DJgs>Oywk=N?RwIctOJu45 zbHiCb)LDna*b+U?qt zJY-^0wKwv?m>X$lCR9D_E@{vTKO<~`rF7@s9gbrjy6W*|_2UprvPUsxqBG8sT@0=T z%auUqi&MYIr!HUPxe7`OjjZ3YuG?)Y4TxlrX#_G(?@*~-3RMT+6US8U@$4jF1@v&S^BVi zj9^2_g)QG}e1>F@srIHhqzupA9q`hP9joZtsfHg3|I_XGTKW+yh5Fa@j{7%jXSW3<YP-;3KD1;o2mz1R-j2X}qag*Vyz0cI9|i zkM+U5s}3$UnB_S6oPVMk{9x5T&V-teyc!mSLxY@g|uXt|8IT7(h)PAuyF0t=VrWu+c z33_;hJm*<@`eKPpj&D-flDeUT?q^Oc%3IjAIp711x?Syx!k#}TeObZ z5Wr45RKqBOFp`KOS=3gv&~Q?G$6sUXA$O;?EHhI7!Z#(Ps+zVVh);=7Ti=Ym17N=~ zA;_nuqzlzq>B!_ttt`xswVrH#&0=Rq-%NI(UQqO+o}(QO0B@v(AtT|CYG42IE09;~ zNgti#0{FMuoY&cjf}8!al#$au<}Y(FT8fd276Ld()c4Q<8Zn3Y&{!s`I-Cbl=#nle(SrSLxpOHVbK5b6r#$8W)}j9 z0CA4{2tXlbNGMH*;5y(ecQ#_pv(x`z%#8Bstw}o2)_48|!NS6FuBr#0Tx9kTwA3q{ zYJTWT?*rL{?P7q64sagNT#xREv&3f1SJ+xpT;&>HS(EOG%D^0B>CgG&<({m~(2YBju+7u}Tvo(Ywc}rd1Veu%_{#f)Ll z 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%0AthcS;7}I@6-y?6)Upj#} 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ꃈ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 z z;`$^D6u=lInaU78Z}!WSOimRezk|nqi23Zu2NPZA_))n$%i@)F%etO1xCN}FPLs_L z9IHEL^m`84zhsLmdQBGknkOysk7gB}ZSuO%rw}{aG@1DpUsi`zxUL&Sq9orOYP%=p z>i3GpAA~HUa_=^)#PAZLk_~`JkUU%soa7h?t3ken`In%u(e^|1a;8^Kwg5>;w$kwk zEC=p!n97Wt^$(kC-CZ-Z;=mE1QnCJN(HMLqaj6K0_{lcO1@x|z=2zPD-1GBDQ`2jI zQ+5d#yh?&P%>vlNSpW%tmswKH4diPI+p_mYmE;|xLEg~o6d}KhG^Z!FKf@SPjn%URODaMy<{ut$;uS0Hqq?1HqO5DxoE#|Jn-}saC51= z#Fw2Hw|^VjZf%=dJtb)5%ldvNyY&;}LhCwq*nAx2ilj)QYvTlK(+B~&c^}q{`T|FK zNP53>-tmSzXXWVGa#QbjGs5!v;AzW*4#0&--*8-3Cyz8S^z?v96gYgPxwWT@FfC25 zOk~`}K%~&LPnPp``Ce3`rD)D)OMy$7W>3m3>w$V450#4Wu7hn8+?C4wffHoV{?4+0 zzM)igx?Ug-oCA2Y@@T*uW}Z$~`5gx<^LrQom(Q z4%^v&MUj4<7(Ab;jiou%Iu4shZ9I0Y*oUl^oVL;}^0GKSme0_Q9Ek3V#S^1#P2}xM zM92~+&>u4Yy|L*UpA62Azs*qFczplA7~*u4jQ=RKNOS<2d@B{4Q-_BpO|XN_7QJ(L zPuoC8g~R0u!;-dL6^aJ36Ve4Y>&Ew(uAi(wINe{zq22Ytt57}1u#{O14QIl^F@_>^ zcJi7=s<~iiy$!fae13LzVRG7(7;OilW?nCL+0J>gYHB9^59K%06{gp@u4)Bp+?jQ{ z#qE1;p56VO1G}m1b8Ln_9TEu9>Qm->9srD1OtyAb^QV)AN96R7$F77UNOS@IFfm1D zz=AQ4+M40o93W4JrZL;2BxTT zL@ez<_X`$X$d01!Lr`H!!EOh&3D9f_wsSosQo`Mq z_+sSe)ro^ZI0>I6>^XS14zVqNR=D9hjLt9bI1cO6|%CLx|;Yfb&{!Nk=0 z$yZvC-Mo>p{Kjrw)y#seay9PObRFEPa{`ASO*TSP{vmbe8&P8s?6fLGD@*$iSK$OUUQ7i}UupIQp1s5JEoo(T%!1m~_|1*Cx6< zy{D|tlR)aE`*|vQhr80EFxbamfxW_Cnk3)4W=(q%2_d908PEVI+!=yQ%FH+m_ zB8+|_XUOlWLXFFYJ&_G8j5#|!79Glj)5Pwuk(kPa7e!4jW%6|xxl)i0Ngt_~^LfKR zw>CCz`PKyA-2cV*PLJLL6^l+sUh1@OL?m8EVWZ&j#X0nU^uRX-z|BR;9W|qz!D~3% z+J=X0es@Zn*;sDS)uQj z9OA+wpaWQ{eda_AxT(c0ME{g{nulL$C=~nAAglc~BjV#P$lV5R~*9w6E#6L@{xX6`nRph74`4?GuL1__~ZBu6h%Ns?whFh|kFhjK0wvluCN`##94z zi{*uTDTd$+5&Flm>K&LRyox>?v=u*A+glUASZ@=UdI^aq*CQ>r?W-;7Wh%|_vt@89 z8%e&+$E+4SO-8w{3Y<6!^*$8Dx=2ba*nc zQT;6Dy2vkYEVXbr_LHn3fA-oootud0DKRZx2;{!`C3IFz(tZs&9{$R2EP9>d?yp2t zvN*Ykt2oZSgyju%mJ$A2)067n6vtXR>tXgfNbtLAh}yXGDy>L4h(~wB;^xE&q1iWH z*6Y-GQOk#uZ%%j(Iywxl9coB9PMeG}A}It2%4+3686q;2IE!(SvX8Ibh$D#$p8lLx zt=@j6=QIn|N0mShUiD#@{`_&xLqZuyPP59=*|H7+0BAlZLmHV;L<>?V#^y?@n5pER zf}g^oh(rb1#}jgPyeBFc|c?Fw2J$}57-AqzYh{oI;uPP$;WZ3sES^sgysZyi5VcDLH}UZ%C` z+?v#^$q5VoWnwDh^Yz+-(~r>?6LLRIt7&4x7=>6Qo;~Gwe$#KQSA@~37`pEGYnlbq z+Mc}}9Ji8qh;BRfr7K*`dp_vM**(Q3;w5zi3{Rnjz#I+h5~E^$z}L~NVhGn(aV2J1 z2p5x;MQ14aOit0|?SBLiUlpNyzcQ`KQHAy7GTAz%*$sR9&2xYz&`Y?}p!xc!#JX`+ zKf8hu8H0oo-Hc_d(&Hl>+Z>}z@Lhfb!V6IL%Y+vKktC3n{NgeI9UsXF>UPF)b083j z_FeBPW=QdBl%JESO>=h~qDxCsizikWjhpBb2#i<(YzX z4cIR^1_I@8^bebD zLML>}VNY>g+W*raCgR|I0+A;^B+0L{EaWt^8bY7!Hghn|gzy(*iWyF1#Nl`%r3S4y z2&!aat#v}qCB@r^&X*&x5ZOCnz42@}=8yC1&1ImCxB|)(ULP%bF6LX78^15n(aSj>aeDDz%6xBwyiZy zzbz56nVqY7n>y79U5G3ag#KcKDbA$D*zGV0_))VK0-4LIZLg>^EiC7Gnj{$d3=hu? z9IHA{O(@ym-q}r3cJ{s1Yqx*)%X2`4n2y@e^E9bbntwS8CYQ zt&h|HD{ao7jO(3}w9di1K7`mGo8kCFbiOLikctIr&3{}ww4`xe>Ys6j-@0-`z$K8cxinz zmUomWmOo1sOxK&{kZnJEm~FJCw|%V9_>#jGEt^$M~fCmr2mBffqP92mWIH0iO8>yNY6GpQh`;)a+A?#nouR z2xO25G4f^$&&NeYmM+qez`ocvJvl=q)0}iE0IaQHdai_Tc0Q?Xq>_^yd6GV&S?KKO zy}0vGiC1pCWFAQY&le^Xc^qxcxfn7iU)0p!8lQg5EmaWhg1yOi!VZq{1EfZ4qp~%Y z^kA{v^O=pfNOn!`o^(A;;^OCr`~Cp`{iCfNKM>Hukd_Ds%gFoxJ-F(+xf5n%0|&(5 z%r&LZ6a}bD)OKf~Ay+EF-LS*xqU)tvJc+Kk8@@T)ZFK-h0qO1B%Fq;Bq6F`(-Cuf0 z|3^!q*?w`syc(MAnUAgqe3b2<1>@PH?Sx5hDLV08T=ukyMu^lOzw)@CowW|=IQA~N$)U2qde~T7SnHL|;90jJit>{Z?`W<- zzA87oMEz{`6UB4W4>40f63YP?vMhk~*TEhTyZ*UxU(Cw(+r{eZy(IqI)WWjO0sYu7 z_F&3c_9G-p46j)=31%$kvV$+ip?>QkSJgnl_n~uzrY^CUhezzLmk(sHo?n(mzdFiF zN-8N8vzGngE)0IdIHT$y^Wp4%p!g$?m)s?VWghaXPE8zdbLxdAkzr)i3ra1svN5SK zI+Dd0=4S#g?_prwpXU9=wXNGk(~A>**=j#T>#OZ?x3lINcwX}Jm92D^GWKbn%ezM0 zuLOrvy2jD)G%+jJuIc-U+fa_=>?*SZkn5^Gk?KD*?66?idoZfwiq| zOyAPZn)^(6;#6;Lt!(smwpky4-M|j79K}S76R;i6}rO2vKj%2TbuWZbf2TV4nsdz1D z2$@@OX6+Nb{qaHCmZ;Fec%h}p1W#a9ga$Y6db;WXBPO#DU14PrvK;lHlJbt_&?bEp z9w%tZWT-F7S^P7^>nvydaVA=tJV$BJ<>S`<(e?OQ)!0aAOYh~!IxGgq z0c8}r-(7S$EN+&MwRcyLz!T(XNXw3s>e#q4r(*kAY zFV(tx+t`E}3LcM1M2#gX0(y$tCT3A}a7J>;c0@Jj;z_`t1#pIUWZ4TrU^jGI3H;VA ze{uAR$jMQWy@T+(qy(@@+_ZU_Vvk(7Gks_pAcDpFw`q<)PJJ(ae1LK_wdF#AAyL&M zvK1}UZQ;AkM|~Qs3>$%qw(7~*q~|Z+!e-t4^5`eU!dO0~?w;;q85XsP){s^}LZ6pA z`5PEl*<_E~&VZljt%M4UBQYm?*p+F_L&iGW-&*UL>#l}oTtOx`*P+m1juEG#E*$UnSdUS`fBZfhim1&wlW-e?}o+OTTZKL(|(5kT*O`oN*N?vFW!wR6( zqYsdmC(ETlu2sjc8#B~4|M}pP$lLcLZt}b#1`^s-hz)&ddTM97&TMqnU}*xKM@u$_ z1hrx3Hv7a3Uhl^_P_&UR>?=|6r)s5ko!?lWcnb3OD!T%hna zRbSwB4a2IRb*J;AKmQH8($`VI3EI0dcaz0ks(Cs^r+1<~h?yN9FDY1mHT?~}yYi&t{$JkNe*0A)Et`!@*cm@I+Vn!o ztD(ya@#DxxS@YyJ=B?kyi>u$SUVofENT0t+mG3^p{q4%dZb#D- zhkEQnvDYWNL5~BC@f4k=|00d$7o?=)6m_h^r{bazL0-ZfUp#w8eL!vWQ>0CET7yr-j8F}Cdz4j zwg`W3eGRtZ;P;Ts=O-p+|NZmN0D|{912;Yl$GeNd>P{vr6pJM}kQ@c8Yy#Jo>a%Z6 z92;eR*;P&-cf{mw)JJn;o022F4P6y(HPZ99K`A(Vzv;uOv+>6GYKh+!KJ@6AmDRi6pZ#4({CGV^S0%yl#v8}q_PS5fqX5KG-M0~Hm$kWrM)2WORr69 zW5zu)NvKV$EeV9VO5ti9hDba6>y2X}y}X!4WobPU#@@%q z8s8De#Ng)LLA?IWu=U+9OG%L&#^6#ROIZ?Ch zH;9C!j?g)Z3#-8ac9Jkx-Qt%IEdI&<$LLw1KFfiLl%8E6B}Aw;}RJ*yAZf3Ku8OG7eBlMtl49!8p$$H()0` ziOXJ2j3-Lpl!)sj-*C)+KjZ)9Be_-iu-PGq^l7S9pTNi~iHmnT3m229ZYWuSAQi?R z{t~vPU(D7|PVofwapgj;8hcBl)wKzB1Z%9+v`SqW>o=AU7`hU@`zIGo#w~&i=w@d) zVA1G&Er1mohB8@8&$im96z`+C{$gA%-0RYqZZ-de&yU`PJujj!4!&27aV^gPTP~v$ z9Ki~?v;F|*^OSh3(-3zdLbU<8f%XJCr&E&pa+%cE|N6=%li-+^h1ZuUW*@?JT4XUN zAOgFP6EYMceeaIPcVUKv(!Xx=iBFcNDr|g~ft05lMkx!k|2Q1d2E4H&qF>CkY=v$v zJB~$EiAf-;T#mx$g&8s3Ko^UwU?w8=sHKmRwMi=YEvxB(b=1FT@MhIWbkRukYkCCk z8uwIzyT*C4d?qvJjCc7Y{T?KHBxLl~l<@pGpj7pdG8MooDbZA7994)szgenLO%r9& zB-n7|KfTA# zas%?x5|MGXYn$*j zcYLwn(lfJ#jijbNnpg-dwI)WjKk;-y0VEYz%%`g-oND?VbV_vUHg1lRJOhU$hYua*3sPV@6Oggk%57+Jc@?Ok;OfNCcS{u z-`NGfJU{w1$;}3@Vlkr|MJA{E2o$l$^$6~wv_3xfx#)2 zMjLa$mUVIHSxkK;oac=-)We@!*W{SRU(GfQwPZe$>si|heEVVOfYp??<%jPjW4SPW<2}B;S#LYS z8Nv*6lpG20*>#Ss#rKL)ug5}Ke=}>B4;KAoqSKjgS*lCnYN}&Jdu(>Q;CwE9*fK50 zEpBQ^u_h4L#^wCpJQn_rCCQC<=LuGzOcChamM#7ylwji+vTwQ6hHo#W5n zy7$AK%enHxW~jDKIdcAJc1P71HZlpBUuc-8WAkU{bFB53rkyBo1%qLkG`_Lxo(Unh z*|Hga9^!u1ouIfGt>WyORnguR%d!H8wrOn}yUE<>$Iv=+WZXXtcSCKkZQgdqM9>QX zF;sF9UFe)oOPzxAl$)N1=1@vyp+%>cG6?ph2HOr@CFiDS!m>Eyudq1!a=etrCdT9^ zL}z`Sha1NGu@$awqpY#WcgK*z`9ynpSdGwT5^=x^v{NzL?B)FB(^7mKJdc}itl&k@ z{W<%76PlU@%Uaqrr>o#oh)R4K2YDDgeJWtgq=hfjbS~&x?m~If(OI4)XW4vkb^7K* z-9c#i6NA-NWT=!2cX8tTVZvc$N;lx_S%>e<(3qp9dR;Ycy*^?S?OoFx$iw?2Ya>~{ zz%+0zlVpw)T!aa{b*knK@xQz2jwnXo=2!A}oK{cBL{ms|4L`$Ab3{J?W3$`Ez)WH} z6Kh@96)&P+m@dCv{pi{dDaxr-I=1W0NN+s-fYVoQ1BD+?FHy%i81?!HO&8s-^W{u(}vpnTs&zO{h-H1ox<%fyJGyjNTIZkR5t4E zy*(<1_>u8gpABY`pUogIo@k1Ci{o7v^_267I?kxL;LDu9#*1b>MpSsVwD?92w6w>W zAY@ibciGFcpUMLxUw!@8EHeEzFEf1o`Mc}~cIRr_x(dzhhmYa)@@l-qblhSTR{>?u z*M4UFoszfEjh;qnT+FYB&{J&kz; z!GSI2fB9v;U)u`_I+`{kMBWui@CW|y+RVm_tF!N8sE5h|J^#nhxFhMU?@b!!4hnsY zLL8)h<)f>Z7@GVGtck~rf8NBj)A^R-r@c-AFG;}_k>5JY?Wyd})Qu&oNb;>jcRwyV z*|Re|mkM*kgcIq!71_=ln)OPaY)H^Ndt%~|W%375)OzuJdW&wG3C4Cq%e@Owj*@E{ z@Q?PqHv6nhJv6f;QwU3EDE~cPoKB71&}+;(Ng2y}4(YJxU$SZODCvPE zvbHJ=QB0@sewku_(>O&>tqBzm^I&2VVm+VgCIx8gg&Rq%3s4Jj#vnLyjE8YvcS6j8 zKP^0~V3FV1GC&W@grP9|Xh-c-cW)VV^u0DbBRAB=?d^p|l1ST^705^Z`)ve$MLV+G zmWFHF*0~g^Gx-lbGcj6zqM7hgl_Ov|rXE*xt!@zBnZY*DWUT#kt9_-}OP>NVNtRmf zUG^ttWrs>WEgDq|&IKQheE(g#JsFLTJ7ul|d!tMM48=Cg!wP&jx$Lb&nUV(buKfA6Tc^%&4nERPrGeeT*Zj6&Kx`Bn%id zXozk+8 zW<$p5TBx@2-wQmZ-yczTQJLqppfyof|K{x72d-}0?DdHwL@}o|0urb|?w={@oAbkl z`<#t;?Y!|Q*^f{%*YyJ5j`r_lZgF}bDKZyV;?NKY*;=I&K(#E=#?!yb>napPz7Jim zs1PoIgWrrb3;r$d^YM>gr)o9ae%j9@Y{c>K)1OiBLB0pm<$=E9o z_htbsl!TUhz050b)cC!Lm2IAa+)MY_br?K5L)@{IA&oDiwRb!aV=N*p{SaEanE72_ zoH!#|+Yc1sK#_&80@!&%7fD&B!f4k+Cqg&I;%X2&3Oh+SF)lDlAw_)rX(mQ@Z+YgQ z2Tn-TRP$6jAKP=SgM~M78{R>zBE|-^_4|E-J{qqOJ-&NzT_;!9E%3MCsL!ISxqiGR z@qS%z62N_VIz~K3=(2Iur6o#J5ba8+7mLx%go|}upJ^JVKji7<=Zo{DYX60Mva)S? zLapmfA07|SyYH?Y$2vy!P#&EpT&6pE3WAwk&MWqENk_3Asx3LM!a=3c`3U|@JC?FM zy;#%OC~7Q=1OnwI-Mgd}xeZO5Pwdh6%VlJB zpZ!UCoTSH0r{SS=IgJ?dn95#E)uE2mcb4>4d%o9aZ$s?!dHioew1#H&aYe^ON;t=p z!=s~7gE+crybHtpS1GgLovnf&mkQ`YG|BM*)s4{`+(KTRlwgMGGk^diIlCw;i=`z$ zC)WIW&g_pP1pDAOd*e6RU1w!HLmS7&?W0+*>EfQ;?oV|h>-&@FFJ37cpip^F3f-hT zk~R0|;OMD3U#CX7%fwlCjr~P3*?nVd7yPCu#|fv{It-P==&?IuYH7b}WY3{;--*_)~va8cNg4yw{=$R`$i42TLuSKISG zoUdj}7q4FkK*#|bxk^CvM-nct=V6xcf-(^|9c_gOP9i2&$l(+4)-7TAsd(MNgEfI z#KP(6U73pGSC7+|FTfni&(cANIu7>bi^FHKaHAonHS>9^qN$yY3&x@Cf;EpBypX^z zhs1EO;NqOzC3AAx6TN!+M7rWSLH-$N?OY$ur)FO)>SA47o{#A%ktR)7FI1qH0kh64 z3h9b5a#h;u@IojqEB*fb&Qp)j8!<}~t*N%6WXUA$oKh7pCWkM4z05$EuSGp1mzRYJ zH+rBx3VU(2=uX#Xf1t;!ApN6FF@@}oIYBDf;~rbPTyWWY!08)r@kIGGi;{xZAwExJcAEF^niV_Q9f+SGcFzPBWC6L8m*&q7V4JU!Ls{{cr z2A^t((UKW`xHl-{J0VQz87KAukKWS>^_zvG2N;p^#N_0tPqU$B5DwG>mmwZ#CVgh( zc+JeWcywLwYOA)i!oa;=K`jrv=(+`dvYST^$gOMKZs$B?6Y2wh*(Au+(UZooKY@li z{~nO3q3g|NQ3-JlGZJlM;fp?A2cMyD$68c*iiYoJHqY#OcR!U0=fb^^8J2coxK!bH z)PVS=r%u1JvCmn8e>4dQ5cUeYtTJ$wI8N)mNGg;ys@<*$t&u!NFjwi?Bs_k?clwQO zHM&-AQ7}WxQw(l|W$Iep?FBu(zG^ayp^-@TxgO#)b_xGu!}->bCIOX`6Bzy+i*XgRk*D_wZBa5)-={^23tJXCtJ|zZEehY+)AAacOqr>DqLyj7@YG4hDTGNmA9+>Jh^Y3hujqc&7>Cw;H< zAu8F_#q0bkkZ`esDtIC(%jKOv#OY;H#@qz{Mt>N1<`Q1V2>1-9~@#)FmvnDTY$^@vNpcU zB__MA+wD!Pi{NY5=afEzI!p2(OB{y0DYj-2@Axh>t~MEnrZKA!5yMzoiVH*=m&UeK z0v3s{J=Kiu(DetY{XSaLHqKiC*H)xmh$zwSkhLEg`B)on!-|LS6aCns_ud zVta$njk`h%_qaW?3nT#}rIO#w($tETUn1?<7YPJy<67qpAhVec@Xuj2pYfx9yX>no z6RJ(9*rsB@mCY#hnrgZ@iY6T_>X~hX+aXI3z!K*QLw@0pF4fJPuGit!!V=P5(YLk}c)ya6%mbrFTn{%!=s0iX(7#cWTzUI{TVz zm^(uDL6@&p%|7)YLrAt-KJm;ZS|GWL8$j{mZ0;>uvzW157g=D#e~FM!pT(4{uk3$8 zdf%E6nu=L;idNoVk}%4Efvmc2AxMFEMs-qc5k|+q5-594XYgHcr${{Lr*o6C=Fc0b zf~)ki=W&(Z-mt}ZX>t3kg7X#iE>aQUl4?YlyfJ-(=88U?SHZ7cogQzr2y*aZ<_9AS z2hv^UcA3#KK~v#%!IO&x&Z-HWJvYsmTY-H@zO8`PcxV{TfjEi~BTgPBXw+#2zEu*{EEmSV*z9+`Gk&>g@m1)2 zZk=z3m5Jt#pG_EY0|rU-I3@op6qb0oY8akf-1?!L5T9ht*yLko$Ph{x9GV)p>SQe5 zC|6N3*J_J&iI4{N!^%QjgDV_9f5Z~Tp)LbXAKhjnM}Z}a^fYnR4VgxQ`sz$XQbH{; z_Md-D^SI`;t?Tt1YT1G>Pt?R^c}O;up=SCgqAW+uk#@kz1ff4yV9A?>xt2MPc?%7) zyR){2UfJKLft`&hQ%U1N#5+ug2GLxUd3E+>PU27}w-MDk6hX?IO;BP5t|TrU;+Tnm zP1msm0F{DMB&QBiY8ftM+ijZSjlsLBLoPo=J0q2^nd%C46&O#;kkyu^4+9>V4Q7_) zI%8ae;}APNTY-fSCp(0~YyMtsdZZXNxv2HJ82}t4vDq#RQB{LuBOLNbzMF(GXBeRs zhZ8O65#qL^7fz0=c4~FnCEcDk0yU~(U33|J{5zPsJDTuVkayt~HN2tFVEM+yyWws* zGT$OxGbaT_0bU$(`Ud0ir7D?Dx1v)|18dFE9=zf6P}bz+EtrOzy+ZmB6FbWLLtY$hLycZ42I!z(fl*ICQ;dI^;GEWNu)i|-Arj$< z$fq@R4m4?|D+!mB&N{D%9TAi{tP2bxm9v-A$-_!9&xc;au&RUP9qFDJkk>9 zGyMszMrSwVgXN`piS2lH?h+zOtGh^_#$2p&hDdeD*@7p6ec`LM7kZT*F`HapD)Iqe z;AM%`qPPQ;Nw9YF4*#XyH2B7Lo$P}159#KlRggE3l}*DRAL{>fqeO2Ta4&ph{7QHR?wZRWx!^?p@VGlc!DZ-TM#jfg65h?p(X%hge!| z^~o@=4|Gw`T0Vg8(W>ABv~?EvkVX_y^`I{4emEgybwK*e(_UWK*nSHPlRO^jv5ff9 z#CFM7B+$>N%GfHzZ3wkW>=sSCGrpHMI6W!61ntEf4Iv@>kWyWyQwo76O9#FULv+WE z`mJf)UG`Ik={U4czPu^HS|u!eF#FO9q3o0;-VTB$v4e#HXX{Mb8eN?IA>9)|Jm_;W zrb<-(y!r=voMWffnHe#l7dFCYX0gf1__hlOA6y>2xJN<49ub4tavWw#U zga^cR?d(Rlq!2P+>XeKc)9s9}J(TS$ID1FctGmK!i^>Jz>F-uiH=O>=1yo&R$z%b> zLE7%YEFP>2^9ecn)zl+ODCWV3Uy}BJyqzxO!vbeo#T@WnyL+eh_hgU)jnuoc_&+$y5TLRw4a=zNl;R1E zmgiQvAV!>yyvlantSPS8mZBagc9?xG>Beb0$<#E!@B(#t62net_p+%mPFtm0zUQsk zZmiU)Zt~a^;!1gtr~|y(Sz7|R5594C>DRt+e?ZJHI03}Fs`qL$X;cI2#9;dl8WDb?w_eR=u z9fK4c&y!r6@~SMuO^DSj6JH>c<*ExG7V(AVNz+Gj{$1?1p$@-HOCUZj|Iyd^H^{;q zyh@f8iRpfM{@^C^X840)e2BJnU0?3Gr(xN0gT*urdow3of<2uiXdBom3=^AB+2 znZ~xunOqtmSJnQPSH=3u#fl?5`)*ALHcv2rKb}`a1c7` znOa(_CRBGKsb=BFup>R~<4L4(7P8`FS_xUm^OsaxvfBd}s@O3Ce1Q*jcbv*E|15(4XeiHO%3C#elU5Hj|jn6jFEi${PDrG@A%QSyQ75i z+msd&zqA#&RCtXiSc31B{?LPoNaNvNb7T=t9LU8N?BhNk*CA$!qQY`idQ_zTeH@r& z2(BTic9ku|-sD_bf{$9Cz_L zJ(o5H$8TP}_|0wlO-w!!i}JRouOP@ADV5?w@JsdnQDa-DO8>&!xXI(g=jl$@x7KUy z>l0gi^K|vA#^{@Ib_~qI*&EcVM4rZIDSJlTW$c z_AxYeXfr4I;+GHo@WqxjqS)eVRR7f3{qarA%#05=sPUMWZ;7&d9tKkLDJHj58P_<4 zrWylN(OnZBQXCOmKGie4Ca){0syVSgQ9z=wu828}P6utlVl=s#kOT6HC)>gKWh4yQ zU%eaZtY6N#INb-bY}wmQ=p9}2W1jBt09&T0o#=|~l5pvlWR3!FqH);sG|5iGlDPNHtL&E6+18z#p-<5Uc{JSU)3n}LRO#SP%iX)Da+kBOd3pA&5Hpzn(%dBi#4UU>kLtd}F$8>!Lnb1)r7yQXd2AwR2>N zVP`1@oN|uvL7sCLu#QRw%zs{M(_aWj#+Lidbn8buS zRkLG^Kgak+c$Gth{r=umgHd=q+CXhW>~aOT#;?(?lF6>Dw*ZS|d*p?^uZB3b^8wp^ zWBNE<91gQ57y$%M`u}o8_VVg5ZguCH(AtcsY-c0+^e`XL=d=+Q<=Nhrbk}~eCYkJr zqdZP}T>NaOr zH|fStWIQbJl&P6!KJU31Cpjw9v2Ig1fq6)`hY(^-ykBeJ2jZs4VZk1y5;C~XnWOLN zl25sID#k3*RIE}~oiTG;bAQ;Z08~J$ztK3aX@5{qOusFbt{Wm36P4SOw`9lY#(!jA zfaI#-x6uHb ze+s>ALZ}z|=~pkZ4K3t}XY2erAyN~%0<5cXYb&x`3H)cAL&kEjp>)41Gmr=|R)Zp_ z_U;#838-#TQrE+a3=7<8V9&xzI27VWT67OrEcpgm`*&m8Zo{cnzbCXJ^1vu z_7_(L++4Hb<%vMje3Gz9fWyP`)V69&F*R7*+M=JYMLFBrI8_@-7fyb=HfgywO^7*^+;41Sa$XP{?`)$Q24P6imJE^Ww)$PqqgNe_lC0YhdCX+3$59S7#&+O!L8Ctnq!ctH7z^>OJ3fB7P`Xb}+Yybt% zNU24<&R?`UaST0WSAc&6Ol4`Z-j57=6+!Q~c)?0CE>)-xMO#r&6h%CUKct&8-CLfQ zy?33ZWJ=ZWlB%J)Q`nSjm1RG^ImItcm9Qg?tvB3^P{9#vj}?n_wBotDEoMeAW&#Xv zBG_3?LblslK@3jTCuM1JjCtZuEq{IOQdT)MhqbP@2~ZEes%F*OMXU0p&nc<*(cIhA zuI1;8fpJ;>oAL^d`Ds*G*I6&&bJuyhXM0Z>hqn!pDj!d+j8Cx>iC-E1+C=vCF!7On zys)fHM{ujms)5Dguj&7$a+fRMrdA29SeXtC?^tbFDm6Wdet+dQ+r$0iU9}Bie6Np~ zDp#4qpHXbDqkW)>fKu~NyY$&ItGIam8%6G&labo#AxOL#Hbd8=-#UI073wjVw$4T| zH9CtGs>85qlup>avkx}X?&2kmOS{q5Hq8NqIBVg{XIa?veKZ*@(CZ>dgh$2GGvT6Z zVy*IE^cyBTtD{p^bVYc6V||`Z!m_%<@87=F&cch^+m}zDtF|lC&rfGSNyPlllr>Ca z3>5!z?&&vAPPFfJ%{b}L7uUbJSvI-8;*WXw!Da4Ttsra0&5skZ$1z0a|DQ?!=arUt zdtz9b6*qG6-OmjI`paKEH*~5@g2XzxGlUQ>7bx~?Cd<3Ft)a{zw@xv;{v~PVUR;RT z4Fs*g1FIGx$3D%_yRG%1wbMbBb$f(tQrDZJcz#7KLa5ID!&KRs{zV$p(C7)@blb-6 za}6Wc)yb5)L=VYy&eF0o4?foz?DMEnM(Bs8K2PgQ>!qSKq*?v-X_XOjmK;zc7Bzp1ol$TK;aXv?V7&%v*sLiu@Q)#+55e1#st02$I*~?q+@&{aQymafmrC| z>-pMLhl@iR2&S}1A+OX*G9N}A-U|X|sUjck!IA3Frmp~uHpF}Dn#O!sTT*w^E~<{^ zlf=;gQBV9Q9oU96kWsm=Eg;^4A8!eSOU>T5%$#CbHrtYwSI0Kau;Yq*>D-_CvT#3_ zcSJuPxH7NrqYHgzf;Ux$vDMcgy|eMOy;S;W+3dHJcX&6=B@*CqnH2n;-StvK?c$FCx@(m?Zk)5*{;xc%j_=>0JYdS!Cg^F!5G6G7UW zUGNgc%d;sO={xHa5$M=`(71a$k#J$b0~sTzp>s`TNiWb)OV&cdYT%I zlcVtfafSI8y^F_(-&f=#ymlr50nS$PMhi8++t)9~Uju+SZob2*aWnmO>5f?2Zs+o$i?pUa0xja?NjNA@W~v{`kDoQh^V1enkT9LIK?m6W4= zKqu=oi5}^6T=MHwAb@Nk-Qhw0jzc7Te^=5~`o^@TImRqU^ZvcU)C@+6OW-nlt4@+buU)vs@=jsNP%I~>p&$$+ff(fm zYi|4oB-nU`sX{v+%Wt_SD#k-PhD(`#@)i)VIo)u6+itC8iywLayRp<`;{Np?N4 zShaRXI3aI5&#S!a4Y%riH#DWa_gQqkarzMKAENP9aek3*|6cpol0`Q)?=xQE{(vrR z6oGR*pc}e0Ty(Vm&eO)rcspPcp~{;tq?}0Wqbty3;LCE@Ndgg~-Iz#Wl=l}==93S# zn+q;8^5Z9@1UXdkhRa6g)|FmQwBsjnaafMa^9t6d`5()nIYi^#uvChq{hZ%4hwkYW z8x1g0Q$j5#aBfk`U*I+%rND=$T3i!4cYlZ{tw}sLrpV*gGZXwlI$~kDE;W8sQ&j^n z2u`F-ix`DnZvR@Dc)2K`SBUw*YHPq+OaH2^cRY0Ym0v2D2Oz_e)6+fl0BmtlZ5 z8rNhHCD4v(B8+-{qG~)(+A9A6Jn7~Y(rU^oj>G*f#7~f)kZ?%cP!npSb$Kck(^pCJ zj;G`I@uQsT zFf%WX@W&=X%k;T>MY2W8y(4KOF)l7!Qdm;e%{qHe0wqFOZi0v0$p64ap7d zP9Eq$;~c|&K|Jn8^sL2V=;Z7_*dg8i^4p4i=w=yMcrnGqsAd2Mpl*}+`%|I`!7m(N zduTg+O@m2$^;?CqSXx`}*`)uMho_;ys)9Oo{42MrM41uQ34_UVxvD}A z7xVjOS(-^N53L<-_RRHKb63pM+mwGUh`=xV#wETXsKx~(@$|AqKBHR=5e8FTb^>2F z$ze8w`$T_<5N+*QT6fwm&95adR>o`S`lp9B^d>v#T>G~sTqo{qYuEqme< zv+g|isjH5I^3>A2^8;L{$gl|tlA+Gifo)Cm^z%gqXQQ2Hy?C5_C?bZi6XV#*9#A1u z`dVDG7J2Be9B5s!631*SF+i@NNS!Tvb9DFIQ@)6=>hZvx9cBNrHL zm+C-Pa5~F()xP)!NRhI3atS))RGVtNFet#WBUQ!*d3xX|HqNCEttb&eci#S|JN_11 z5e0=+R4<_+IT5;ibkeZuY-H#+=f-rsmKf;XOe0-(8>QGGzlzy-TDgon(>u$${0)++L~UFRvZhcBwUNyNd^hOGdpf)-=+bXz3nlVh9uRN{S(Dss%V$s z-aiL7Z551q{?Sy76SS=Zm3CCU9O_g{pQm+_s{?{eTZK#I4vrLwxZG9YgOK$6@H%3z z#7B(t0o~B2F%vxpUuFzr<8UC9-;*J;;?!`reVUG#MLJ5#1(f?asFhm=n_qj%SBo;? zc+FBR?uW3lvCrjTLrSWh@d}Pjk9EQe5a)wkPE+{8vzIK1E3RFnw!@hx1~uCRHn8>S zCcYxBY8T3j-(1PDJADL`;TC1Wu4~M&+4eRrfs0dU$Rei>zFa$~IbdDa)2i?KKD5T? zbj|I~#hkF~_Jz*oZZ@H$L7H63RH@tXo`(;QY)#6Vj4x95LCjr-%|)9!PPU*LY#O^ddX4nr!I$S9Eo9_Jo1FQ|>3MT=ZXr&c zKn+$X?3Bh9>geu??Q|fH*S_{e=_O3l5hW%U|)GTr67zi_^fLNKG>&rXuo$-A>AU68yCU7g88FKa^<#4n( zTIR7{T`823>K?YH%kxC}s!e00Y{bYP@h=N9IB2f+>g+oW7pR(5rw#n->g^@{G`7e* zr%JFz^nh8fEzQmC&>FuGt*_3$6sKB}|LOX`AVTe;t(Yep=^t}o{~ydRrcFj}B9jtc z)LSEOU#Jx5&$jgT~X&hFxQcZt1m?5-}Q^zOo}v zDdYJs8P8Wt`5J3!oW5-Nzq)_3cCO8F>_iy;FBB9|6{qke7sDs#Ooxe_|?`e>NRbC(yf5A4nEBXPXOgqXOA90?aamp0PeFZtf)P! z6Dd(zJFkg3{b?{h4<$c3Kb;);D%IRF+l%CpX)Sjz^ac5yYw0GKTBxgQ>*wZob`OmT z9hYXolYZO`ch=)d$7zOKYy92dH+m&UPD@v@kN~$nW%}{`STJuH7{$!p{AF@>`s|NN z(8gVs%SDVbws#iTR^SkBTukexihKcFHj^2E5;3}2P)W~E^xOFp%}Prr%AKXJ&Dpb0 zAP<&c<;J^~TnFhOE%r;qNiMdJxi`^e=Qxj@XRByU*78gFBFX#~@gvbruUgjfD3_}( z2GROcZX|Q#@M6xdo56b2(W6Z?4;X!uur}PyrW})b5fkXye5stWwkD1ahKjZMPFGi zMf?2XRRzT25dH(r*X{rDJ|<3O6>BNZ`KDPU+EJOqWx8Xv6W`Ke4S zuNp-J71*Lvc-_WyzPvnN6yD{^lIjawETySVyT@v+ka#WuOgLrK6^SYMDmFn$Yv)Wb zA*2RSL&bfj+3cffs;#?TUiJ)q)!MG(!Ob*8!;2&WQncZ}Gec#%A@36SZ43vB!Ig>8 z<;+oK8l4E*L7UN~?i5bZy~y2{UUJiAQ8!!qv-l;Jeu==D8`=>-kh#Hkag0>R-yh6s z><$hmZ%lJ-V*Z=U$g;~!-am`NKq3?)*~laQV8o*n^mqA4Kx#6n%ulXEtn89wW&@@$ zAL)Ax4e>wM^-pKj0JM~rVfG$6KRwci6C~)U!&~Dy;S}Sru%lh-`PrjAE!|1CCN_Z( zAS>}LT_I8p^MdO-5omRd@np-sa=cEH>QXM-ia4q?igWU?DcdCizXd_ImPl{wnmSrP z8*7~t?;hXS@ExBlG#kGD-`@_t)*~@*Z;6)O$Zx?^*?L49D4}Je2S~`dS9>)JiQ@raXZcT2})3LJbXB%b}JELO*}2MUKc=dt!+azlYT3vL%t+|NopP7(#NE+H&S^O z3zKd`^=+oIMS%I8X;%RW)~6C=y%}Pw|LY%3=+u9dHluCI@sF4Dm(TwC@%?w-|5k@T zf&5*R^#BlJs%yDl(KZg@xU}i%b&X$u35Xhs2>*2nxUlMaQ#F!oDFOG!e)7zN*|8!s zCX`43_jbeKU2f@5o^JX&WNSI;$6rIQXeVL$MGX$+K&5g8C2;U*x;WwJI&E-J{6?Qx zJ$BnWO`HI>0dMRDPe0 zP#$~7wj)&G;SDzj-Ps?2;;yZxt{G~u^&fX&zr^hGJ zSw`%!aQsfjbH@s(9XOKGWXKs!{%pSFiip2U_o&m0;#6Ic{w#-^Y8#_Zci>Tv7f#^3 z7uLm*Jo2K#@9|1nSXExUf(LXzM!xH)=6Aap{DMAj2N?h}*F_w)#MiCudXmj)C$9YJ z8vxK3)L6t|c#bedyy$q6-DZn2%MjQ0R!rl_yq`She>RE2W+}*@Mj1ztYiW_?qma=_ zdZUV}CBoPxO4Z#qrWbY&>`BOBUdhX>TCUgMM`p9FkDUKIQ@eg^w#&EEi_xgKwZ&SA z3l=wbL^;BAo$Dki=W<3nZ?PO!D~ntIwEtb)3~P;7dDFQ53qR48;H6$~!D-?Vko^5% zqVrTg(xHA}7sY)4>{4G&eZV%>2j5-0WAG7TcS-?acP+ZI=9gDniC6PSOloPLp3cc< z-&&cA#E?s0qM|_XpU?wrLnFz-C4GVnRHSd`=se{(=nMHe$-S6}?766XeA7L{5@352 z6il~Vw~^O^+DWy1F@>49R$H0NXYbh{gvs6t*Q`CGacn-szGW8Fhkdn*zBOsp(#k?H5RCJM?! zA+sDqMZ$8VlahJn5og*=bS%jA?(@HAHEadf3Z7jS$o3t-8~)_%oOqTYNrJNt`gpLO4*C!8=DziwQ$9}#7Cx)fx^ zeE>j@`(+KvBfW2V_xnb@U33i|i3TwSEsZEqi^LW)%I|!)@gd57DQORp!~%G$qi30Ugo8(Xh%wdzR!Cl+RipNHhE=5oFMblwdoJL4_PaNvGH^h&ycZ< zK&`{>WHwQxvvv=5qLqjl48tX5&Jt!J%BQMNWD(1u#;d0!D)jsTvE}~Z>y-#gL7x!2 zgM**of#Whu-O?mka4uYD3c1`H^RHpG3>$etFSuA`5qGFB zxY~}vrC!XH9}fw$2tM>bnrej6fYoO^fW|MrDrE=1exUCwIWkt)H-DK{+&g&5q!N#f zT^QA(<%a=W!^9RG^1ZD82W$MOTp=H6qgJL@pTdd0`RA@zH9P(=#M*URMdVD$rc}|i zDA8*y2ctiv(JYtD;11OBs`w*m3CV`K-t~i)i!obk>a<)6$Lo^D(x-dZ#|;B=H|i0G7}6JI7)kye5I z90nh47aBNs%1d!Jrls}|PYicTRO)j~20V4VPp_HWR;?|Q@YZAHAg$sT#+JJmS*B~6 zfP&r#JxTZ>&8RrW;;nM%1Ceu#0mOLAE{W3$k%SmJm@CRuSSY; z@O`B`-kkWp29OQB^iuM`_+oMJ@56Oag(@&h1P%a16WI(~z323U#v9#A}PMHqAU!-OCq?@O%sByxMj0$B<+QPgYZn z20;9j1ITk?e{rqt_=(^hRHHAN7v*R^*wjI=(=K?4?U0^pinv0ssE%O-=#!-E>{EAD{&>YaO9oTYh^Ukm>x` z)V~mgzNA}y$ui`oW4cRco)5_n6%SyuN%%ihUJji?Yic`l@^zQSAjPU2>1|}wQ|P*^ z{8>nmEu7oDBr>VG~i8jelwrRft;U|`fa z2;|?7*QnjmRIbFbY#Y1$`g>drn z8xjvXV2UIxPeui1qjn{+#`zP-#ZgmY0Gb+#SJ1V+RwcaG{?vS8D2fkPNy+zQjKs8I646>t&mf1P0iF3eq^7jhA{qMfqbAz^u{F`w1q&|JaE)!blxxn zmH|=5J$O=>*=H^B>_N!gMh>ISK`C!O9xpbQ*p>;JZui6GpaIqe>8OcuHyOoZ-nntxRjON1>_P5vG|H)$`_N z@5A7WG-uJ?xcy}WME@>(fPj8TQGxKRx|7zjT9aVMmt@}xUpmM{K0{d_kY)#^*Tx9E zSvj-1Yr>u2wO-_zHFfQJ(h0&Vh=b2+E-aF4r)q<@a#NBOQrD5bdej`ZCEC5(-q?nQ zi>IQyU%fbr=}_aKMJsDEnbt;EWpuytDY9;$IK+n^lA{_I8|RCNy!Yv?XtQU;#DOz( z+%+iqn6;hK9<+t@8*6S@j>H$YHzsRlA4{))#cpar#a|L5PKwtA zoV6@e`!3M;zI*| za>x5LAn$vAu^Cp2aNpObDmk?E3EPQ#oWr7az0K&zhh1vsP`R1q_2S}W&)^lh#pd99 zrSso~uxV^5b*M@mveA%CQK}tN7DHBlOQ&)^wJz}xF|>hhwghN8K$%TGn?ng3B0MW$ z-QSv6jL&}<@`&q$t75>x!pvM=x$~r*#w*L4=C12?GE^#4iV7vRo=kxV@7BbcCelRa z?l(A)Y1nC=np#vH+A#^PlHV3r%K3We`gyEW(j6DT2^i)lG?b0dI%jIz3!*4;huCJU z7GDoW1LtgV7b$my^*w%^jHD7BuXTG790AsvDGvQVM7^nRXeJlmKX3kILJOt-U@ zTO&SG+upcl;gr8%y^7L`Lpgwb^;+nq6mRQ<8c6d4w6#dy3ppHA2*o|GquC2L4;}uD zv#cM2-AHNMFD%YIsn`&q{L02HK19p9%LBA=h;=CAi-Rv+sW*=?a8%oKn;O9@gob!s z1_~@)apd}%5aX96-QR^#8?_K%L>?y?S+T;uay+KBvql0|zOm2FUZdhL4u{&4D<&j< zv|YXdZ;ZcYxFtP&O`A<*PyRKyXq6JH$)L+Jh0NFT3`l$l?0c!4MiJigN)V!dF@P3B zC!Jpr5bnnKS<|?GU5s#`vXFog6@1Dd7Fm)RY`X9II8Z6ehJ-!oCUXiup|AtFeu?eV zoFpJesKdX<1(f@dcN*9XS8np`tH>#5;Bzyr$Wo^KO`C%)0W1KGJot?V+lMowEWEza*}9d8$b8 zDl=iX^wqx_0Je$NooK4-gT8jYK<1t4)Z&8S-pcGPpV!%aI97!W0skg6?&c^VzVB~x zWrq(Trm1SIbi2mZo3hhv%-|1kmlWpRhNzM}gDUe09Ew_0nv9@|2bD|AEMC@6Qm|o0 zwM`|@efL$jP2rx6Cu|;LhF8FzM9;E@pD0vkw6dKGB7Z=PW>f5r4uAO&!7o;;rOzBNZW)d2&T_fLE z09}s45{04P1S&k*`KkvK>yT%sLLJ>^uwSyDhMQt+gvh5h*B9ce)vr;wXTj(yLQT@j z!I0FJSVyNJp>gN{l?ey-nt5^tpLl+?HKHIPI^dKi{MzvhAEgp=xL37xcK!A5X>aEj zQWDoTAuj^>-hMIO@I!syThsTp)Uoh3e-K`+d9ALgJc3kJs|2EKpq}wm=Zrt&5 z=L=HwPcTPvshW45Xi{)Gu1JQy2>~BzTwhEi8|8{oRqy^a*zWMP2So)5H%9Ux>>N5A z{W^p zohA!7zBjQy)U6mIdwke2|GtnWWUjSqv)k0CYDt&V^EIj3R<`EX&tb&nWL%Cvg@AYW zyiLKx!%(s2hSrB(2f z>&N15-*4`AJzkUz&8cd5S3AEc?6L4|%XBpP*nenUzwJVL7UccGrt2H4zAD$I4b)a2 zuFs5j=hk{^azI-!qQs(8wNbGe@rH4w8DGGn>GyS)w9Rao^Yc^^?}=mC8yk zi%7~7_JjjOAm zuNynArMxaBRO)YT8ofT&--pibw)sfYZ}Ah&QqGULal(Vfi;ZeI4{#=rETEYwwU_vI z_p%n|0I>yQ7$k<_cE3UGQ0<${?9?wI;kuo;)mj0n`Ie$hVL|Vc8FYw4dJpC;j&+QmR>r?w01nOgh3e$uxZ#LPEVusRJv!n7t9V zCU)EMHn#5Ha!8#Ix5ZpZW37Ni!T*9&L@4W9HtHwm_t7o^uiU!yNC+UdcHx!@Nud^$ zdLU5L8~#h0=XO*P!Sp?nellq)MxBR7nNu>pH>m zRI1+8wsI}R#YdQE<@z{~O^;zWYn`tl%$M*R}g2;7h;n-?yXQ1kD z5+HkSA5MQYqS`9pU2}k=Dm*4YYEuG;2U7;RLKA>A5R$Iu?i8fR3!+_kf@nzjlaNQIlhkTne_oJ7hW zO@c%gPWSt+F|8Y4QBYYie&vqS&G76(x!ROCqz+#!i5;D7=dHf#XU~3geM-KF%#l)v zT1xgQ8ex(yf>=AnOU}kg1)307qG3ALsuL20z?v9san9$=dHz(wYkkrwMX zw`OH>1S&?O1FTe_slIeHl%=7-^Y#=a0Y*bPR$fvvZ^+4hyB#{ynrK%F>@SrDY}^cS zF?c!Ur9%&#x-dG#hL(H{)pz^}zuGoKzQ2P%sA&9Xntz(s@H1_CS=-GmW>-2*;}be3 zu%(7qJXR&Jd#IgNQXyR*?JWzbKEiHX)0mB2I7Tn=!sYO99nHpZVdBCSvlN^P!RL~= z0%O@4*id(dyF>2&62B-F@^pcT6ef4IjzaAJuigbO$ycwf-PyRX))~$( zk-5xTIkKe0e5|i*p_Wc>@@VqPS=*)wkVtU>eqPpVdFQ^YhFl?V{D8%5(CNM^MPCme z&(eW-!5iE=b#gTF+sn#{w{BkNl1ri z>#X3OzQc6CWkG3hX2$kjbYghhb?k&y-P( zoFJGWivxHgxBuR(*K-gQ#d(>>G}j9iMs#ldlqqLDmZ&TkQez=neVRkkSMk0TNErvX zof+qGo5(@xK-{IFfW`r3`}EeP@T9f5=(AKo`@tHYS9_}Ok|1Dpjo&$@c^3!^zlSdX z0t+0ivEB?SD!o;Qr}7==$}e-yF{0gyyEq-0Sav!J6GJ zhFx@Ipfi-Sx~eF#j0`0ypGX*;d!m01_2$sIlN>CX@z(gdtiHvI$Hv-Ky((xgVF?rX z;A9uW+VRMVW@ky6O)&{eh<%Ng*G}})T*n%N{qIc`R+%mTV`$A{!F`nG<~X{% zLN#KKkZqF7IoR=4%g z*m*^&RcZ!F$#|rV-OZHq&(_8^iDGAAxJmGS5W`iPrCwf$LnBUQ+AY$xd6SHsSD&A-K{vWiR(nGmm8yS`nDF6u>kL3GqsSqEGuXJF0WB+j&HkmV>NC=LnDr;#Xkz zJ&k$?#3n;k+4KoIjA)e3ULEwstn9T@{L&K<;Jedmjf$9@W%KLFAq~BSjJtPB|DSPfj@+p!9-I|E+(1D@rM&uE}?lFSFybZ zJF}{X?41zwV|;pM-8S1cWuxn$1gde&g3u8U!07~G;4fG;@5%xGYrw2#!cWTDHkY9Ug`ELD=z%S zZiPjvg4NObaKl=Y^VV?l*EVIVazlgDv!BnGGLSqIduONrDfG0fe&7@g(Rc^XtM$=U zTk6V;T{Y^nsi?slOb>gGFC@sn zrVB`XHtg;iBIdU-bsFj<=>3da?Y56un4(?VI4zyDwdKCzsrzR<-c$~c*Q(t+W~dEp z4N&98g$4otBfUhQV8?f*z=AG%j2lquCYpBEWbV7VM@d%e7BvgBl**#=` z^CPqy^+yDN^Dr%CkYC`=ms4lK(72=Fb9&WA)?Je@c3C|ggF?HUGY*HAzQ8Z0m^Y8g zldU&R$Ve>HFOHh%q!>mZb_@v%U83Vabe3uT51sSMgR-?2EEUG5r%v7sUDngY6GFTl zwN-nm09qPrYAaRZmMR>z>#Ctki#Bi9*pWO#QkOLqC`2%Ryjvk)DK5dIu7w}BF0Z4F zyk%A?l`6tNcSYhGH)hFl;v&-JfOmU zNm?T_V|{Jpj%=C$7kDOer>*@xHyE{6a+`Y=#$Jb%E^1`M;i4b$!P1k zNihL#Sl5ZwW5(1W#8XvKJH)xEBm>rTqy)x>j@zvPiGhu(?wW5t-eW6m&C0!{q$MwDqt`8}bch5C#c|Jqg;U8W1T>Zzy zaMfn2QucwEUSuCc?6M9+B#Za2AyfUdnO^G;cGo}8)+3QRkc3P4)4jpKAow%+z0n9A&m4ipF2UJUO3eX!t9ZuY!G(AY^?r1kdLq$~IY+7e9ap4@4{Ec$0!GI}f zjJE~^0=T^*%VhA2QLkUN(_<%vlLE!}aeSxt5vGn(@^FCO_D z<41~@C9-hrn_pV8==HeeMRxsuX;X1D(E7)dgu*!S2`t)(V}nFkb2rmp1=mSm2*oQC z?;1G1;F^INl`w!`Aisi*M^pW5spOl_Sa7w_P1mjhED z%Mcy1AAPE9R!T=+OrO{*L4G4D!>6zNE!W#a2r-OSa(KfDD*t@~4oY6jWYQgOyy**6 zXCH>HI^Z#eHLomt`f;Xm8J#`w9w7I+twS&&T0{B@H>sp?l{LMm41iluAy*P+kgG1( zo%K1i%|9N7>$U{>C}@h7p%QMlzHwcMnb>ON$)n}u^V8)?UOwP!TAR55ZJFUj=Pd{WHe&u|g#xpL@>s>V`;%DjZO9T_QCCiF-RD67V#m1q@ zuL7B@SZC}Nzq$Vp*fing(&yzuw;T@gN~||Jw(1(*t3JPDJSj&vK8=|}8)_T9`@$U} zl5TlrcxR~(DnLy=7ZQfPbJUX14?v)ka;l9tqJM_!|A>)tILN9A9Z)I`uFggLhs6}g z%hT*=?(F_(vUYgK1In$h2e(&Rm_{kR;%(QZ>#B6awTTNCeZGv3GFoCXF>i>zQ=y=) zn>-!({Y3x5eIb$|+6txTPq%Y%sb_N+c0)s2ci2VO5u2-IOnl7T;8o82k0H*1lqJ*D zY35{3p1tQ{J3ZwgC*8N}a{psD#*;YeO~%;WCbCA`m1Pv$QMn-7%QTWd=FlXXi#1+2 z*~<^r+}nL64Etmq5-z=Cd^0ZuiEx8GnxX$$q?2pg8W4`Q3O*|eTW{AIGYgeup!R&S zfJLgbE}Li#@2|qe8R6_xt^b@Gs+cU}3#Fu7GPkl#u^BWurD{V_ls=u@w2&-oaoxBi zae0XuXIRt2e|ULSX63vf1crpZ2+^vdg@XyUtg`9+GprW*cTz{O>x$py+TA2sP_QIE zM(!{5qw?2x5a)3ZC!~PS3Yd-ExUS*Z%{TH+POm6j{w+y)<%*=7%|>O_0j{LE^3}`x zUboORxzh2E>Asyl+1}Xn6Eo%Vr~m(+|HqPO_yAKSv6@m#Kr%yudHA(U)ML@JJaP6V zE1Qx&^?f*uoxg9>b%ck{WY9%R!CgF}XZ|H!b>m9dq_O~nk`xTOVfyRObo!SMzITmk zZbaRL7a2P=!Scn+CC0>;FQv$FDUNGkUy;WM<>kJZD%gT;&`$VNIF707g748^Y?>rR z1=9lRj|WK(NlIDU%G66S&a2{1xxS=#0W&f&qgGKNN&JE&F@9mP_TzetucBFHHveZk zDkoL^P@CTC@e-rFF_sPw2KZ9BsI*dAYV0Bi2QsWYEk(JD^FaxVSu$-o%Y%Ysv?AT0 ztpm@^6gb|>krUhwklrzokgJn8cQ|fvT8!88{2h{4{C`QD2}h5V;v30ZDEY^x0dy z-{BN5e>H*sm&eZjDBr%d4R#Q!%5VoX`*rmusM8;q!v$ z?PCbsujyr+NevWH^M6c@5IO6{l(8bIm&Ga0OTmNCjTx)ezJ(oDDhJ9U22yb+&weeb z#nJ^$!*f2)t6g->;WE8gT&4^CoTYU?xf(VD)Klp*UxGC8>&8{R0ute@iIX_dRGFqR z5+|V_~?FK^+I*Z zG@~(>)?jX%USzWF;yAowpXbiAig>b33G^r(NP3z=plU%bYG+=X&&&Jytee65>M-Yq z(Caa2Hj$;WO=ri(F*dNM7QRuFE4@2-;*+Fc1gjXXIhT}a#n(xiv)QNITl4d1B#>z- z_aYND6AOae(9myrdP*0GzKy`^N&HY3>7Z%H3cZQN62yn`N*3m>BH+2ykzoZpyTh?WsiT9Mp1+(dQa$_`(4VLR!G)a_eP20cK^hPJSvM{Ql}@+o4WSf7 z}oyP9H`rg~m)BgmVBoz{Ry0agfQRtFY{E%-1uf=1^P_Ka`=6gW}{juVr zxp6WI8S_vf%CZCQsTvxjGqQq7@ZHcpyn|^N3*J@QSx%Xqyjj#%TOXQ$Mhk-RrSWV{ zqFuAY=tSqXkV%Tx_RQz6oj1O6xXQ5rTV**MU|`BVoZV++_yo*i{5IZYCdq?6t{=R5 zehL~^1jUczwTr^7{k{~=X+u2MOa-tTX{v;sJQpL&v}rE!c9WlEodKw-u30unuo0l= zK}l&II@%R{>II#b(~IY?#6;B6rv!vbNLjRgQ+jGg>n+^<9IM#_d;w5K*81@$M9z$H znNK`vgLD38#KBFT4=-5mZl7HsmZo3FmNcw0ZY0h%taC^6uXlsLF2tqs=rCs7wqUDq zWwh5}ay|b)MlVzD_`!Y)vq!J5wAkf4v}GVb^P{ch-88 zWiUBqnmts&zv>)#1i)Xy6_ilGC%vUmxgA!szBw!ST=mU}9@SBURL*M58c`F?mx1YF zD)}`pui!qK_1a~8G@Ui%c7|RFQn(`ImiAj|;9y$+Wf9e4a( zTj^KNKJiqfDqWzRQttOzzRl}(koljnkm7Ze(=i)8=@EgIkxhd7YCqZ!8PJwi}l%z z-_7{G5{b@yODCy#3CtF@Ou`U+Tb}4ls}tLk;yN|26YGry@#OCK99eX*KBNqSBIDRph%W< zP+fHhHOD6lvbSH~|3|FYCG5bXZHA7kkBQMDI}ICv>*VYKLeBDEIo~0rNY?x=3~896 zh5E)uUKi~y4&Vou>5VVpz7f`-q-dKEQb4iiQ+vZ)1ez715ybhFZ?2e@{csykKMQILSz&jx9`%AYs^P?+|l47x!GA-?!IdpJ}@E&x?^^ zPn08BTAlxb#Ux(V4-6=INo2UVwt1Xmd|$-IS(B>HO3e1;HKdgb(^EOJOgT5avRR7x z)?DL3=T^3B0Jn;4RtR;zkOEgQ>ck6av&G#PgnDD6!*nr$#bPsgbfeRkg!1|_@2~5v z=v7h{|6bb`K{noJat6huE8n?sFgUPQe9HJvF3>kv0sxj!Ga-EuVXmF_e}A;wq3>D2dZ6{NiCVi{F_AX*a6fy3L2XA-?vZ^@`oXIwrFM};Y4U{RETP~hGV#M zi2XBYWl)Tp)^REo=@|bxbF-q;%ZFP4kTPh}J5+8=*RwsY1uOz5%dmeN@mim0#b5_> z0lA&2Y;JG1v0W8*RKQ}>i5kF`GS zhzXY)5(XdsbVkib=w z=X3vpPbfQWLjX`fufJD33cpL`?wyQ8^BX~1ztgFRM_)BV(=~Hss?En9I@A&^bQ5kl-KvVeFo~$Ywn)OmKu)u8o zdWfyj+qn}ztbATJHr;)W$Fwq53Eh(PY#r~y1HM`tTi5Z3T_BZ`D9Zz)*!N*&n+#dd zm|<)MnqAb3XYWfC$3I%L8LXsqqzUFNYr-$FFcV6}MF`mnPO`nTN6O`Ce1(KSF7g_C z0Sfk(O50eH;XA-bj{p3>b8Y-qQ?_VrUqrKPZA`P$*YI-DvZRHUhjC{-66(Sy#fVgn z!9-$iK#}lgzn>f!@tL^_9FdOxX>M3KVWS__Ls0u8O?kP=ub{Brkrm6XaFI z9f9Z=arE8eU}=M(Sw*-n+Q%gu!%VcD_!B{!^|L0pdMLoKdjH#?aTmZqW=NXGLU=AZ ztX@(sFJA05(KI;jWTl#Q%9#~Vg#03U@4*<%Q;;y9SwmkRBMq$UamvS+g0BKo)EF-c z>LN``>Ox3rJCFTnL3%vlO!_zQET$KQi~l1Jv1Vdu{)>jIZRLP*Ctr+w}G$@@YIg;hepb%;8D? z;qo-nCCMu4jm3E$sLO_3=)h;v_c8ZQfAtR>vFItAV42(6M5tTA-Kl%6axuZ#`lV5H z;pDM0vIljgHwz=nrD?+u_x7DOj*LmKqxs^>(l0Pq-k1Izx+5(g{ui?|e%TGrkcz=B zYS_`d>vQVwKx9SpEZp|D`&EWsJH0%4blB-jp!r5iqUJt4#7M%A!$wG$EbfXE;aRB- zXy`;7FQOZ6A4S|m_aJwvU(bWT%(71}`?nM2L$bf@VN^_x*~)+5Nk@dvE}!(te`n zzrlSO+Uy1l9XA9_BIUOm0CSmbY6AI5zJgP*ID~_t`{lk&0YiqO{3#Z?UO;V&5FFd> zT%VqVMbvJzNeYAYr;e7Tq{Svy8LQ&JqlvfLOhkI|>}RY4;RlCMP8qsK)AkX*(A=SG zJ7!=Gfqv*XJ)N%UIxFu3VgaW9=+O0C&;S}7iD6s0&Bk^-msZB#%+|c9WM(b`noAu* zYaBgKu4&ACgZM5!iqcNIg%Fd^0+4fhd34S+3Puff{RJfp{NRBvAMkUbaMW4SO?hi> zA~rUUuOQY6fX&+}X1gpJX{7FY2q3*9ixI84+3yYF0|fmg^l-OpTrVCa>eiOYJHuID z+a&fX_%?;hi{2D-o3;0K_g!xxwaM@rYc6L(!EKeKd2QE`NG~t)b%G{MZ&rm-0d&*07}v~(-eJA2S{PPeT*a+qC{ zW!H2;vl}1oylCFX#FYOLe=v>PZD+L~ny~R&*_98RNO~x83*%)-jF=gac$K&0uXRUQ>=dZF^PYXYd1LxwWLH4is6F76sb zfmwmNwPxr-V~2KurfNX@I2Tx}Aa9WNKGaCHt!eUZf%MRdH(c8_o1f+E1iE-Rg-o5x z6d~e;-Wyg_z;roP_c0q!=xvN4x=slF@C1_d0=J>LEz33f`^N$C!Mys2(AkEj(Kzhd zA>#3Tb2^QiSz}*7Q7dZVM7yt{(@by5@rBv*fBEk=VYL#N9hq>6RyI}?Pp?W#+2g5% zw&`ggNKq6=P|R|POqS@VLQIqI$SRR$=(iyfKo9UA@Xw&J$Y%4hC8=0CCLJ? zfUFu26r#@_Hjh_kdl2X29}Zbq9URYvzGwoBEIE05mp*>7{tDegN4J>bEkG}))Eh#6Hcr|4G|?W zU*mk7*C{_QQ?20aSd&lL({t;DCQ%{rcUEF3;)t^I5w=n<9{=T+Gs6D|^_i zM)DZZSmWZps)Y9zCHqVlLY+&dnUwZ)+B*#hA^Vnv{yFEfVY_}}QwaPb3n3s--wx_H zKmBdtBzN4?QzZ%r(vbU=jVHD19*L&PZcd|yUUiTfo;rXAPfpqFD!P?r=%&+2rj|3X z1aEG+vu1zNLG^L#8n@dyZ?&8TF`G-X=;jclgPpy#DXT5A?s|1*HRNz?bANBvEVq2e za57005=z^>NwQjG|8&@y*#yQ#6uEI3Gu0zS#8ho=pURgrMaAyt&)$YF))y~`p{X4o zAXvLA%W*uISeKx{)4FA_qHqkKSmN*YGE0`ii)$1QSKap3#u`??ELtd(Vx9XXnUwFA z0GC^r^CkdSFI_q{`(KQHkAEU}$YGdip7xHeR~#Z~Ii>BQFZAWJ4}xN=8$0}HH_9B8 zl|P_ttX;PmTqo%(zdKFmM8le-SnBe8s zSvSDUi!lkY zHr?x>!qfNZ;K%It{yPRw-SelP3C;c8WYl$P%U*t_&4swRHeJOJCL=HEAs~cFCAG~vj;(Tyk z(_%==#a1X&ebVJxc#VcTkxNStB9rLF?@j42MY{`lew7t{V1XDV@}Y)feHyL^*1 zCx0`p&QoArW9<$zC(aHPx3!N7)TXuZo^vlr37wsJ@*TEz@Xb9$_s%wL$j_V)Lz8F1 z-i4v-&2DS>Ddx>>DT`b%8}f)6ByHqJAimq=;y`hrG8jIN3O6CBxIOnV!z?& z&;uT!2O(YjtZ|F?hl|SxI75>Xu_8}3qp77TzMC)R;Pw&Sj*uZi`3WX)kK^ShbXufM zx}2Phf~$L$vCx*&{MI`N-I$h4BbAY)uwWM}kz}8lv;IA=rbOQ8+A`0_=95UJiOBi{ zdeuGJ#k4!)Hh%V`c|klQ*C^toIt6a7Klnt65F&AGkAaN$dM0Q!G)*18U}M%<#0R;Y zNb9mk@C7cah=5Qophm`vS~1cUcmQ1{KB?20K9pXEq!}3lfK41{x$bSMC8;<)9w%ef zoNx?KT>3&)4Lb*fzG#$d#hIt3&OIvEY}+v8xzJaumFX5Tp@Mb!?VQl>zZ0x7=7p(f z)}~jE)xQ`oWQ`bu)(%Nk3Icp!RN1Q!wZKCJY_&BZO@2NwGL<|q>I{H+2G;l+exSPw zBaUHwpl5tcLZ1-sj&F>jygVc=beq)I$~i~}# z$<80>A4l{?AAD)VRI|H2!vxiKO@F(@G{%$1#Oz68$N`jB7^3c`uuaiMQh2@fgEQW6pplEx3iJn?fTC0)ODo{5pJmFcqv3v5}m(VTwXrB1I#UtG)!}V z*e~`ztiwjOKcawJP^58o$jYtD~hZVo5}N$``* zA|9vc=1r|eZ!ULi-QwPWIycR?R?}Ft5*IT}@0|Cx3%x#|pItW|YF>+b?^3hq#`xtE z^yLFhnrkdCQ(L(mJnRYumSnoWb(wadU9WAWomrIU#I$Oo$!Q&T z&EPZo`ju_M9r{(Cmi5ys4z5kKmJfMjo6e2DsB<8_c%DUvuV~e3tmQ1?AXYgmD{^+@@Dzv-C_C?h&u%v>UP;3)3)bv~|F#GTgV7U3)iMFhK zINXNba;r5%J-aYx&pwgA#-|J3`8hb>KV_geVM!(L&}cTO=L+z9YulXb%GGt^cr2!b zL`&oLzMGU_@DJg@tQ`jvu_Tka(r-j8GIem|c_e zRzp`j=TE66!Ggmo7}8t%I$u1zG`+HN ziq?d#-49zEF+gX$6R(gexp_LA!F{7h1Zj=vQ5Jq*57TCYXo#k_Oq%tqEV562j2 z24ar3qdicy^n-TQ(Cu;s-@lv2uCmUnsRw_94*nMALiPW%g#)NuN|YSD{_)UlEO2ESrBcH*Q4lbLt<~ z(xH~YF~AK_t(NA|N4$U3Lh{4CL*uj~SDBZPd%++>(GMBC5@%hsDM%8;3%5R%B)Yea z&9z6o?VqYlyn6ix$DL^@F)mJ~1p9+%w;So`6=7RcCniI^+1hGr#}UC8_eci|D{Y*0 zCSKo};Wb|%!>p`j4*WDp_m+zoOU9)v>+cb(Cd@qeJKIzNKn`~1>d8JTG%}?0Qf1gG zYis%;dwqY}n$|UkO)uu&-Y%4S#jUkBH`BEh@#4;{T$7gq_o`w;%bQC8PDR|{5R}we z+IqiK*IP#fNSk%TZWp4&cFQhPcG*(9Ipr}V>k-_Du(*-x&L%H4!D)L?ta0@`(biYt zjx064k2|L^Da&`IakJVu65baU@1`^S!&j}j+ z9B*TtPgYHTC9p2o0DEoA zr&Oo>+u-`Vl){VaCp(CqQ!SZ-mx`(IM$AGJ{Bi=DAYi-#LdOyS&435LHD7|Ke8*#y z5h|}OX2e>}8u{wk9}_2?jUvskjGiv)EaZ6AYu-0vJ|`Em^14h)~F#(exfxc(Yow2EPE z9JSn;U54S%OP?C&FZ0Ivm5I?d{G~P3cCsCMsq7LxU(A;zFNGCdnJS`2T9}rz+61AY z@Xe&U%6P7ykJNm=>*F4t3nm!XKco1I`4eSXy0N(O;b&ZA9y&q!VWIfdChjqYqUQI< z46~C@@-qR+D!S)^f2`GHVT}(d@&V zuTq_lJ)AaP8ma^#I=_wyzcP$!Xoa1KN)sfYjHm1!XY#pD=6$+#+Ipa2u-p>|TgFh` zqfGjTqJd{*9yig4`TuZKoH*-On!`1QOyg3OkpI!j3|`xDcN(<*$!V z`mH9~-o;|LF_LBh&4dXom!ey;h?*bDXZ-fNH(6X(h<*R*;>NKBXD%~W5162)DGF7P zfgk^k96T|xxj&SHJ?Pbs!E|KG4~*Yh(})c~5k}h#-@e-<5>PY8wUCfVVmHx_%0=JX zub^|n@L$8)S_ee9wGBcWD}$pJ|L zdMTpEGQ+q0$m&H7O4NQUh1kyhQixTpK^Rb3tp|`=1UZ5U;fB$CNA9){PwDYxJGMr* zzP##CPwoLBx7Le0zOu5!oe5gMA=KoZ1!Vl#!aAuG`I1TZ8j#{sO^3u;-?~H|IoG@Q z@;MESV&*F=8ny881Jw&MBuaK6h9L=F5qDP6nj0B+s`LanNx6t`=xt2Aq>^`BD#PAE z)iB;PBv3EkCNVX*uM0doB86wFlvUI1e5%@+%bs31pE=05UR4T#FP8)XdQ=8`_6@t_ zSdkW)C{4%~x&F7NafxCb*lCCdH4JF{l$0qI6xjnC?Xy4rD|e0DAJ)8w6*416QH5J- zt_S+pf{R4A_c_jy(UNky3WX#=(8jQMNf$=exi5B}S>Kw<-dMX!!I`Zr`WQslt7yqv z8ORe37H`;>p6c{gNi&y@dS}fp_+kX2pgmT0Osvxjf$`5;Tb4B>(n_YkJLtS-dhaRE zegzCU*hWm=mZ-B`f=*H@_V9mDM4h2p3F0< zza0)Vh0|ua+uEjee#1GChAm6Q*iLOoxH#J@@?fph#iP&m1q8Aj2bmt7l6Iu;2+Pbu zk@cpq#@*Pau+BS!1gv`GSueSSb z)XfcSDc>rM0i=^Fl!%gad6ysw9!5Yldn3Q!%1!dwf~n0x6>uH_n6SQ(j9xeCxg?Yp z%ptpi)Q;VS-6&kht16Ka_OsCn&SNqp`;?e?ohV?A9WIhbYT({qBzH9$8BcSYfRk<9 z$2)QpI~(~V@lqCpo2;Mck`A8sgiM9zSn~J>@A|-bY#Y1V26QnhL&;RC=Vzer82of` zrq8`15w0&6@E`&hOGmG&^T%pPKpz9j!}7OgMlWK{vr>`c$x#1kz5O!SCSRI2!Ee$T zuX6cE``CM5FOWb9Tw9mmoqJHJ`5d^t$vW(uO zT+#VZg)B?(le;}=oLiaB`B}r#r~lMKI?@z!&k?1?E4Vy%TsN12|dJ4N<{VMC&*GcKl=PE91>fo!Z;D z;o@PdJ}9je3sQ`0x9+zm%_ut3t7U#0XRUaN?_(e-V|4s3WZu&lnm~STjthg?iI?xr z_AwKjing%!1IzDl^q z*jms%i9$JTA!ztb;A)J#n2?Ht&(y4?h*0Z(v9WJ&wk9rF z{VF5Fgom)f;?CD)s8$SqWDxQTy-AUWz0%M3&i>-6^3AupFEZm3PVn$O@}Ewq7{fFv z#zt-!xcq{ZvR;91h`0704=T;a^vWFlP0$4uNu~$17h)o8R5u89&&(4)SBz z*)Q2oKCEKGC-F13IIkEyYpwiE=_xY>9%J~-uDhNX=ELEzx0 zQFVuqCE+Yeu7;f|%kbNrVc7I6OyhR;fKsNZZ9HJI3hQ|dRh3Pv`t|mD^B8^w`%>oJfpCNUj2Zo%m zlK>~D+9<(zJSWZJ zC{|od=w#9OnzhYSv*+zGhS0_UcUSV4E{!^Go&Qt#WwC*bvoudMR>l`v9Xo4pL~^T3 zv}>Rc-7hEik6>sHARAj|rx^9(*?Twgy>lU%<~2@2pZfP9)CoM8&Gj$An|`|tP*}L1 z8`n4p(DJ;XSf+l6UMfaUv&t?dT?i>Nt$SEjXFyiGFa#ELVowwt8I$nPXPr)`c6C{J zwRRORbEH@FwfIMC;*i<=-zNUyRXrGfxR5(vnd)ZNHZLf*&V5H?*RVRuMZh{aA@2Kd zd(c}iixys}vqHFqB@6hdPl@`0vPcI3y@DL6+7q#jYucswdHw9eJbVR%vvxX-|H^q=QfYnoQj@_;>G|9%t2VAm z@AfQ@l*TVpbmPkRTVA!Q7c$VCO2-wrK%#Ap^En$Ps`0Z{BzKM#iXf0(xk|abFuw3R;bL*z?1d#n6@zyeXB{7dg$H4yZVeAeQEj0+#WyjZcC<8%J}%uyY;;+ z!f{9EvtYah<)JX&lPX0*RFJHSgomx+!%3N?%7{3?pGe!0hCgVKEz=@EH9d@F0qo%_ zjZ7-l;F7QFb#VQ(lQgpZBOr#FM>5#N5SCESj&&+J%UP0O^tS7Yne|VhHO;bk2)2>f zoK3VI=<~8J#bzWHbDZD!#=lcga$JnS0So#nq0}T^SY5Fj>kbmir==q*ehYgqzZ7Fx zmA&+7e5mz(`{OwQuHM zV%Xjq5(`BuUwqZSMr1?00%t9(QCI8cU{a*6Br(>M=7Bjv4h09Fn_|*Kmq?KOW?D70 zTk@1)sFUuV^R*lW`%oXk3rwN1DqCLyLR*s5+#a4qt!Wje_@vki@1tY+;Rvl)ta zn!!Kq{^-W$*&pQpNcyuhxqcf-$R~|Y(+4Cu!gl0I&PnS`&U*IR#F)Rs*h8M-gp6WipEwpV^*8{E}_(gE((hmEo|@nA!yfNGO>;d%@YhsQbO*rp#7Q!)y&&YC5>%;n4Llg^qn_FoAV z)g9+_iVs=cE~H*-aRU<0&ckQXVgwF-`K5iQZbz4q^BRE*oNhh^?UpK-#^u;<;yd2Mk`@mrz^J{K+DAxckm(d z2-t*3+|usZiO;mduY~N40-DCH3DMe0o^v&avRA%@B|PGeR$pcGRW#ievx>O?I)OYp zWJyaRhm9GbozQ-lw9q%(+GNeH(kLvC)U;$Pu#@C_6n*)8m^@FtZDy~O=NAy<76S2) z!Pf`9rNlo}!zDlSorxkdC76~q#O9lm)AQ$~L1Puon#6^ zZBBaerjF(gE$w?QnqdEZu%tleiw3Q_PJhn>1cuei~Agh%`)>FE~50uu-mnPUoC_? zLJmvJmms6!YzJjcDqNG>b-vms?BRMLZ0V`X#SJaV%d%H)VLr3 z%K4{c7rxnqxg_HGH4GwLCU*mZq_kB}KOwR}x5yt0C9n5(6T>d#wOx*DDo?WV_-4`x zQZzC?rDPcYNE>{XpZ4|_L2;^Gl*YCNf_NNxnFZy~!Ine)`r zKff_#@fXu5&=Mesx17*8J!_8Wiu@h*r@X6XnhtoV`OERY2k9S(Lu zU-$Cfl4MhI)noiq{-w&zqXfhx_xxS*#^*JDt@qs$MaHb#e2m2qq z;13itoaSOU&WltpDLkHd^Sfe^xoA0<$jl?gn?$2rDmUaj)H2QxN0zm5##ip4HvSLZ z^=?!tP~Iy#nAq>zp?D>G8}oJ%)DQQs$mm-4G>Ecm_^|R~o+bX8YUsGyao-h{f4zs1 zwr#{iW93vCL+l|UZVo!Jx3&p8xui0NPq$PXm!^C^`z&}p#KG6@hdccHUmzx&{uSC`@FH5HZFPDiRqdt zcX+gEPbax)T{8$MgoYVae2M-tw({X+Ww)~?@(^D?%8}_tzk-GOSRI9bet4xIfoB&0 z+55~kEqOl?zD;%G!(Br*9e<}$me$ba4SZyFrV9Snac<MUC~FyrlJ$X-&N~-YFSXyj4S0 z!sGIl;u^E#nxBnpMC*A*a6{dDI=pQ)C<+28@BmQYdUwDQJ-s z>E+TYpPr2%;S=p_qD7h`eBzqDSSp}Cu=#!ps3HFD{MmE(eM@$<5lkS7N_BP!i^~U+ zAYH&cM0I14dAoMqc=bA9Qh{fg&46$b0)SiFx(bLARLnU=uY4y@LWDG7BnG!!FF=S# z%B+iKy)$~>I_q6Po;V9OLSjOR{!H|#>Q_U3T7jdevw9c0;UH%cpAt!B=pzryJ9`*H zy4Lw359|G|#1HhJ!T5e!4_0i+8_%D;CMC?(v}nSr37r)u_hN>(4-KIuJJZYx;0Z1660n zfxOk>Ahlf&9(k#UKp%U+`tK~bJaw0u6h_&irAFPe%Vj-9h<+#?P0#bn9z0E{edcEv z#K9oFRpVYi`^aY>R4uVFW?!c?CY$5zQaH@d=HA;w(w435vZb;n;su3DR~tsrb-L1o zD9qvpferm>&lNQLb5?oDn3+aKP+mL2fE*g#LvvsA;<-YTPFwHz4mQzxRGleGPXQEp z&6z{9Gc6jsp*3C-zt?W8{}B{>2e+m&gVSONt8LZLJA05lZGhmYQAzQ>{8T(-+?50y z_7*suIt7S#*wRm*-I9isH=w%Jua7CAlEH zwp*bABHyDg7H75xJn(25pW9v)p@43L`_Ci4m{0u=)zE9Obb4$A*E=d7d&vOD+p{2^ zxwDa69NTP$2L8t?#+Eq`RsW@+iD_2LwmQ)<)`xFw$s^iLkOArEa9H z7ui*oLS)rn^?iuml76ND`6OZFQV2T0hc`pI_is%OpsdV5bA9oV#09637g-YQDUOp} za!B42-GrZDIW1w+TQXHte70^U(w^V0Kcpg@C|A>gsM`kRnu2*6yTSE~tA54GL{OzlOM4mqE7-OZj63%4iKce8ot#rV)*nt}$(#q(m1 z1JPPKQYwG}0SjcGiT*Q#zIyn=ahHk1MBnQ?D^zyQUr+d$!`~u1fJskHbumIpe59gN z4r6fRT8I{s{C=}_ZD*Tx@@cqo{OwH|7mc0vK| z?^v08@wjE}<#Q&~_nRSc-!D~uu!PX~sXGUnWffX-OCzduzeoS-;>~cg>~t3oK(fw` z7(HR8#iliq$y>YITCgHb_G~f{wW{8t>!+OkchOcirUb&|`w|I4p|Jo(Tp+{@g(j-W z%OU3lX{*}awgFsuR(U$cA0JY}OCHxW)P;UgN`=IxRWR5)F?VTjGWy0u+ZMpJ*821v zd>GEDC26F)>TM&sU3luSlFVtkK-R?q*QcQ|_pR~nUdJrH`eNhCxX-i#?ku03gZ;;+ zX8y>QMU#NO7^FSRT5?SIs_Y09Oi(=$`5GV6KxE#B=g5?p>s@2ZT2M*Wj~zi9257L~ zu$b4+ex68lKT4Kwm#YhP_Aqw_7b)qNJ@&_Kwx#RpdwZ9y{l7!JQRG==Qw~@-*}dNF z(j|V@9`9UTH#YmcKbo%BzCJx*0Vz`XVKwsp0k0r+p(9#~?OeX61;|4xOC)Z1>!BZ} zMkHP^_bkTOO#@l>)r;>EE`sfXjxk0&de!=9P-OUq-F5xEFlE$gLDx~k*~i}>x@feP zVkyAy{8N>LAMMKc%(sf+qcZKzJT_Bi>0s$wf3{y%p=r#P*Syx=Gq)ojWQX5c)7ZE~ zgCfmC)`2QGxfcvbtx^RwM2Bd1r204swV;~89rq4)uA4k1d!qpc_g z-UN22xJ=;n8cFre?QG+`d{-}Xi1jfHt7e=9zn&dgZ*9{XyaA!Ax#d55$aTf=$S#JO zbhhCM17O#mQhqnC@97L4{Lsm?ri3g^JX=);?z!ihxkSRQPbp*h=@ZzL=SM?cDR0Lk zU!1SIv`K4`P{@wQ+I4Z*NfAlxz}IlHA7FDUGa$skk$9Ne4!}Z-Hn@29k1s2Gvy@wy zNLRAg{$EXWZMZE}m4WY;UINaijaFt+{(hM5qU8>nZSZ3@4>@sSXG(WC#0lpUC3(NO z^S#M3CurA*H@J15o!=CwRdo;nisf#Ds~Ev-GK$k+42f;2Sh8wDpa@h& zQ{ANI)hy+MDje8zkiMa}9aO@aeRl{O@m zcPfwhW%potPqXH)ApzhId0&~O>w5iWa8Qbzjtn+14CB5|54pu&y6Y?U&4R&ldQ4Mg z+>a)b+Y>6gN1@xfTd62<09}-uCXY3(E$K?W8@k4g+kdZxV-vB~f@fZX(&T#xQD4)l z9=~AEv8Kvy)n~M}W@2-N1gy#dx4sfgaJrf<=P9qWthGX35yRc&Ttd1`F;(_%@X)lbV zPZ5wiRa~yWUl~phE1RJ%3vDC}W=eaP#SyqGPKbT*`Ukhg-(B)guyi8ZZh0*Uu_#+h zH*#&FO(m0rgt07_O5~xG5~vSZuRc`P9LV~1gEy_4^)E2;q;w`apio1HzJE-86qsV2 zTbX1Rg26?R=AqkbG#e-S5Fr)CpyDyn_5bDV+?M0UjWGN!dy}L}N?B*Aa^>B15@&si zl|v;5-oSGMia2Z#)zRCeM?oiJLLq zs~trn`;}!{LvI%9e8*c^+SXSzYa&jO4X8bM9*|#u{g5vB2c(nV?D@A_j?_S67-D}M zt2sG2SMR-I_{Ee{OFIl&AhHb@W~xpCK$~hLkWO3EQL>M??Ca0Hxg$@k_en+b?`ymB zaZ$eSMRnv7q-oKNi>hK#=ynfCXb`_FXJkB`~ zYWq;EZBQ$QXF11|0yncJj9;WfgMF;)1BP#9TG9F^4d9>5mrd}s&f3%F?t6R$HXUg8>A*Z- zPF$Cf%{`G#>4If6APz-)d~`VDMX1bS&7AA?(ZBlO9#X7(d$%@CAChp4K`&_y_EpN+ zd%k&w?+`o{K-(#~iuNzruh(`Ke^(#^3a?#-jSjY@mtDQ}kG=WnW@?fGV;KSagl6cM zM-XCidveP7`rf3T&xgts>pL}T2-S(`g!XOWx2%YNRe?2AVxO2Fo53SJd+{QBeO&yN zQqtk-aJq3UrVRb2%8g87C>XM)#hxL*k>Q6*((iU8Ho$G241}cl-`s*x5x8DAPIBt-7a!3O>I^Vn}ldENe`1-I?d?- zw-AE(eDhqUsXr z+?kNl@tI18@?ymaeZX%r*P~tg(1FIR^`1vFHBRG>)~vPg$@ZbmH$AnT;T|WsdlL#< z`H9rs?Z&u$%y>yOk{erxX;q*G?5!>CQ^)s=Hbt)V(u_6?E@e&|=qc5(Mb zVHup62P~xF4A}}^)`*9dhHsh-uC?PwIeE_ns;ck9@$TSuV%XSZc<4DrrwK7}t?9Y! z#94#Oy|yOnBm60t#*~JS5XF&=*>4x?Jbq8`MWJ`{Bg=_jsa)=qA)%27 zHBup$fp;&V$x3TFx(Jg#(S-}N#Z)~hjERgF+JI}%Rh-AhV@;&CD=}Xv$jL(A%2fEt zNCcvs1GN;Shu@}6Gyd7{Rr-H=`T?bc$}D^^6x4`KmAL}S{(>?q*4L9)daI4wan@T; zb9(dzkDP0lxX-I?k^y%~{lp|IL({C!`oOmJr2noNUhe)M(vpem9B zRf5A#I*$w5AURRdYB*yw1kt={`h~^%(a|>(PMn+%(%oYvzK^bvYXn%823@rF6>dTj z-P_s*>OlfJd6IsCgJjD_FSYoouQ$(WHr>5F?rei=lo`2V_!c9Fet-{>1^?OfNkzNgY)vSmB~I%s!6ot3 z%C!D@?z8Z`iHclrj$S=gFZj)L?$flc+%+KI`^qpVlP1V9Ep(MkH|?%Wzp|vumK3`u z8k^cqa~uv$d_FP`e;*|%#^GygDBGw>h}It$rlRpY!MH0tf6vb|y9=hvGLZHgp+>cj zMSL>Dqv{cp%qX8Oh)1BF2!_}y_NS#0o@_pKIommQ1kGrI?#{Un7^*4jjA_Uj4_!Qc z!Kg-JM;OsgR9>jKsaQjjs%|?^Sz8mw=>dJYTZMhgN-I}+f0qI(NllP2mvA}vH8Fn` zf!D>LFn^@rKX3X)<=QoJSHDBf{*?CTN#!|95L->ENQ3QkJ64J8olP8$e z)}gjmPhNmfKDnv$ug?r*KRSR-BlLoXvhxF4u?i zTq}JKEOZWw;{TjcIlak5%|rqRVjGD3M+wwO9)?=Uh77YKXwt?5i-mz#H>uYM<0siN zoe!tlog(9q51sZL&R(d5p!$^4ys5!(jyd~9u;%U?EDtUjSpm&_NT56Bc^J6}bisf%Qw>bUfg9*1<@0iMO#V}A}jx`O|b zR6^tXrkF%G9}^+)2szS1@GU3PY;lg(+$Gh?f0`z?GZ>|0sRvj>5h5;u8C=xKX6uU= zF{!AiL~FAwS@kxZEAT~O1JO-atmn4NjIMgr8W{y0z;ag3HnC~Qta8nb4_v>LOT6&) z?)T|OBGTfzaKMRd^>RUF+jj2b#3fdRc6szx>*~CIp(MU34++p|^5`VQwe>85zr*Qe zKHwXy4W3Ch7W)v!@Va+ z+H2;=82d6BG;roxB2z{F*AVDFwZ!{ilXxfkH%qsJ$d_-)=+F1fDls=d`et?fFF*cR zF#a-J9_2100@^Dz&fYN&?n#8Uo!Pr^KOYb6rg1-$&EoHTNJxZ7Iglg3?-1}Xz`;z( z`9|1dM5YrnOwH&NYZDtVWQ@y+9=4lzkPY%O-NIb?+*j`-*PY55%HfXi57aVr@COb; z_%yoRc*Jx4ap+N^fCQlDYXQtBYEAm|xej{z(WjWFZ@oYM^F!Zcu@hvop#>h4GljBr zjz)G9nRQHU8^AK74mieq|JkP)t)^M6dY$^?k3Lwpnz++%T=IGUUK{^&l(@uwl{mkh z-;DoP09c41O_}2q*+E~#Oa|m_fO3AzP1Y3ZWF{xE_VAYMLm~#>i)qMt3pAS=@GCpW zly;L~V@v)(-K*mYOFH;b2(40F{k2f%e=!>kXig5kDJZyFAXfBYvBM&M@XhMMC=fi~ z2HT~n!RbL7wD1pw@5sjOH6C{n@&nBf78)&3n54<&(RZdbYo^FccGhPmI>ruKkX1O?GS;K-GTEf-ogNewPgn@{_`W?l^cPGzj zB)Ol>acyYb32s@<1eoXNI5e6FD1B&eI|ramTrGMn`OhLn?k3n~75nqEGjjU_NTprE z3ZVp=I#oj-inZad+cnWLH4sjBT#>vkdhg!(MLNkDY%Fgo)e=nWKv$UMWes$Riowuy zX4$XObWya8&aU*#(91EKN$1h6ErRXF&@i!rnB6@wFFEM)cC;SOy9lB$4=i0{0V_R^NU_| zl$~42T~!ku6x%Y@NR*9nsF}T8X-|nxf&M>XOZW{&)o=RBwO#T!IV&4T54Y1rI?8M|#e$O+ zQ%k42-UHxk_h7>o!PzB2LIht2kdW_XbOFeXFzGnl#1I=N@8vSMVqWit{MN#!F=Pa` z%VEjUM9ub5ia1{HLs}mG!6&%U`<0S~eGblA()y()R8R(4H`!S8yddH_M^K{5?c#Bg z$BI1H9HI>ARw0CiX?A@1ps*q`jJod0y)k{TO*)_Tr-fPV9n|L@#kq~!7QY(oK+#zCpeiQ75RjU;K>bNqlOM2c!EUnHedDMvD+fvm(p}|H}~vOYl@x0 zL(T|GZr+T@=wEkGlOFmIF?didk$vJ(MdRb^Lhu-E7*_gaW!ly>=|{frW5pvR-fDsj z*RZ%Cgfw~n=gIlU23*mEc9@B_ZDA_Y$vHE+GqXLeR7MmE{>bXWrw$?<4xP>+uVB^< z-6Yvp_vHF`Skdziks^Y69FH7Flck=E$JrC`>-5A`A8MemS()en#SRfl;QS|35XuDT z)`aIy>&rSaYNnTv7%t7F1aogIVeRIRT$9aZ{C2#Eaj~yUU$OdpvkD@5thW?^!6+UnjMz2o!q{XKDMIOeT2Z4O9)yN(f&*9~%&9Ja$)dykvU z=ksJM%Tsr)($mnz{iB#NqCdToNV59Hx#!LycPgp6lwsQ*6C4fCtmu}Jok>}o@6*}2 zzsr-DTiV*yUbAgG_?x?lGnVqv??EHH`Q+`Lty*s%@&+G7lV$%zFH8EbWbtVT-?^@` zlXEGzdmiy0t07^@62L6rCqG2ghB4$%a#jh_P8xf^baqyiHaP9ZuE=^x`vHfPaY~%Ul;xH$d&>C`H8AtlZ&xANUP(Soq`P0ov0`KshO zE={FhARJzS?s51{`B0h06%&Y5mA|(tOpYv;lBI;vPZ!t4(I3%Q)J6k+zKzJ9i3=xs zTKh^+E(pVf_6h91)>Zd5RBE3m#ue_Zd0IBz^&9g*U1iVs)vm2gV^#pyv8w5Y zurl&_g&8Xca26wZ(||AoB!=bUDZ!bP*X`Kj5`Q+x>51US2c1x!W6cWoqfN0mYfNcB z_olNcQ(;zHD&O)+ab0)+b(Mi)TU-`|E(Ig&j~nB1RiL=}%$(9Ezc>WBya5RB>9MSA zHv@Wk^@6c9_CV*3(#xweS&)ChFBuybHm<|MMyEd_RLsz{VA^3xX+;khe)f2iD}$TO zXA72EO(-Y2VL(Jo2Xf*=V3Lfy@xY+y>7X*Sj;BhDf_@Z`g6?wza9N+D87_BD`5zwt zHww41@-I`We-qikvkPx`liRHOyUR!al4gm?6-!+0%9F1g;2*m9lj+LR)hTMr(=5(M zXVZ>6_>S*bnR-E&4p96uykyg-Ds2gJNq+^jxYT72)HBiN1Rl;+F1A9CCB<gHF)1D_VUPrvKleUSB!TW5TiPTA06n17Pt6s80z%qwzs&NA1n)QU4Wg&Xw`&IgCYT+9&$X)e#}_|FQr+47 z^3{Mz0F*NFV&GSzF_gA5u9|E#rJV{Y>WP8tqI30(dJr`TeZVA2-Jtsz<<&=Gg?2Dg zpFh0D_R-rLJ5B_Dt0_yDmJwY&%;J3IIfWYb-Xh*df!L`nfwmMkfacu4!C5 ze=gkUcE&G~(=E+#3~}w46O0CbG_(_ZJ;%4c(Qev|6|D>?9Ye@)CoL&=3n44FiTSBX ziC;ehvTY*H#=-{&D$q}+Db3mh{e!W>zxfA__`dDiWb6W7?A(R?USVWhr;c!Bud(uabCfnnd^JFM z1eS@f2^Qgz+II{3LK&~6{1U%i-)XN3*czvOIc1oi+`UVuSKtgkAaOdo_hR;a&-Gq_(IAakRe zjcsP)<3~#Dcb><~=7vs-%D{+3o3&d+>+vvoeizS?v>NB5yP}N()bVMuK}6^Js72bC z9BkPaHrxOH-N_Ks9zS)BeMjU|FHG7^!kamFh>iU@s-~bka6q7%$|j~cXL0HL`mh&H zo4TYdm&?+a%ViovmAG277&RzR0D=*48~@004#kLKQu%crrS@%oU)TB7;!Nbg5Jw1mZM z!gD^1mXQiXKIjSaIek4s?TJAqAikxjHo;YxVKEpwR0*Zp8H z5F{rUcF-f@Oq`i~qi3*jV8g+yB`=d|X@adA42^a?*P>W4ePL+*RgZ9fu3NQd?be4T z^AwtP=6FyUAoUnzh#-N<$tyjT(?i+pNn-!Rmq$W>IssFwoR!|4j%@7DMb+cW$hww% zHgNF-fGRLXd>O`nKAN~W`nWYsdB_C72h-D0@T4v)Q(Fa;WoDqHHV-?o_f?gB?MamB za$4!u&ndMD3D>|rp#ig+j~>>MukChT@Q9JJKTF;3i|NWHnw2^7Po$7 z0*Q{vQ@*!h=UukmH}U_gqBXfRo{0VK)yUD#sS!001J% z6L=6_nOcZ1D$3sY-^%8aDvTqmNRpF2{OF*X`<8yVn_V*)>ygccY2WcfW!tn_5-bgz65R@W zR~-jOZlD~6eyDSI!#T_wh^lYxY7d0z{lc`S`IJU&w5f9#sCB(5{Z2=2jDMlX14yT#3ANl9vK1p4h14JP9JI*mo1|EE5b zu3hh*%eDKB>ufH^z_w((wKmmqI|x(C-Q~JkEKF7w|^Eywb>Oc1;<}GP15G2dwF)6reC!RF- z$8?(I;HHlr5Tq8Jd6rF)9>>zqYV`H*Hdy67U?@p8F|E9h(eA5Q?y~_6Q6!<%sBW!^ z$xT(kDXt$c%-FpLI~xqeJ^d=*osc79s6lFZyYBg;OZ+*|>k-kfL**3nEENndvQ6*u zWNIbMm6}SQEaikwj{fMR4sM`kUSI>CxNbN8gxabdhI5#GZ6ZX>kB~07(wono8&4y#D>E zVw^b4_eJLu3{h=gXOsJqYYD#P$yFj5dQY`A{(9Ai3XK$*{&f($XnvX=l${*15xP8_ zIsRaZ2&b;vpSP|o_sr8P5JZxtk=&oZm5*qhrt}Sv5Sg@TWlb88%Q4E*tz2hNMNfj* zxH^wJ8;onI2X9TV&Cu48sczWj-UUD8+V~RJw!NKs79QK%T}SRRg^c~P1$^>fzL!{Y z{J!vpO;y3NQ+kWMn%~4q20-5tBmZf_4+JU+5Yw7_rKn_0$Pa0_IP`5wVBfuOrKHDo zm>47OJ?)j}JJFuZYOE>NaXIwUPk0rNOwAt#tBcfW^pV<@e({I33Bgv?-pG9w8+lr- zcVhlf`5n}aIDv~ke%~x-iHBAm_y^M#_0Eqm2+Wm*h)rO!tDnw_Q+f`NPI-?)#Wn5)M z3`?sn!sh&?uhPT2;_MW(fj7P>_Zlbd)9gl$&Fy~Q5)XG&=0j96@6@OrcWWD)N9o5A zBk`)tZjRnF;_}3!%Aq1UaK6bC$(*U(Cj0t}4Xu4(V^3q1yZ`?;fA`?kf4zwSqmW5BNeZXJ*+BA)Aqra$p zj3C?KO;+R;yZ$CW@J}|fdOS#hrS{-;Z2O{tResLj`fz6-W?h5R7h38l%V@dkqb7@t zewObjDm4%gunSpYix7nofm)_Bb2EW!UvqO0PvPFW=93AkQf#wq@o#g7}OnGfIm z{Xd$!_1=~Jt7%=W+y+I=j5MK8G{e!XoFpfpJz&X#>wxxW2o6a92oIz6FuXkVfb^YU zy9anhB9s<3+pJQUCTUOtCpz2Mu=b6Q&ZdxzuHt9o#b`0W_#}$3*Z}$UD%tuHTR~4l?8(`ssHCkZ>Z_2 z$tKECj3iN;!U|$B(J?K_t&q=2+Gow=-MgwXtC=tg=JI5QMjf-ZS{oYV%+9in$i5!R z#Qup67)r~t5Ij_G`Qq$s+|~phm6ZXqD#0^4o2$*8CNmxiCq7e(yc=pp`tXNWFLzR~ z`4)wO9bOE4Y9-UPE$$+Y7|>Mqpqi;BO>mkZi;{IPN$R5)vc^B>t8t8X$XXCl^08n4 z(T=#O<0Mk&?&)5bKwYSr{e^K%H19TfAp16sp*A$94$Z1nL>HY*r2SIVGQ@xVsGDn3 z*QQKCLXEX$c6vcx?@f=F1rZtAzEct+!1MKgQbnGiD? zLSe_h^zkE8-IgQ7wpcg5^25q?^|*=1Ucf*rbiPk1}bM02^r`$6q$k%ehf?$$d z(eq*3&f~FzLZM0fOe}VaC*Cw&2FR-NTN==#m`ba4_U5Xfp%VcpFj*=QpOgGwCb`9m_Lx8PtJw zu0p6@Byr(F!ShGhgv3zVWui6P^me-EyR|L0S2-KPm)T*|wqLC*gq~t&2<(7#s%ajm z@c}={fWX9>fjgQ}o30kcTwS+Wd)E4a2c|>E8+;AC!I4@!XUM< zv7=qpvyn1Ch!mY5CD9r;lnX@X4TnB8iUfR}eug zuuUdm4zSzqQn@zto7{~sRj{UHoN;aL9(G?I`sse&^AlqF$jVk_-ta2Y!nfTMO&6a$ zzV|#C33Ays3Rgfn4;Dl;P>QUJE^PAI3H11ImEwxV|B^xI$RAXRkU{C3INW*cOmNGk z97A#St{ZVjefIc2b{`X-ro)Kly=Suu)&fhd9^~24J4br&jp-cwPN*|L0OS*uls#~; zS2xGzxbqFT1NRSE2C3GDm@3AzT^nk`d-W0n0uQ=B<}rQ9>H0GCuA9{7^FuOz|NPtg zv{JV8tSdg{t0E?Vt}`nsf5EqJc8INz=*`xehCg8jTsj~#8hcp*D7^kM^1*4R*8 zIkN``t76C3*0eqSlZuCh!iek?Dlu-WsmwOP4c`Rc5j;$Svx~z%D+_{-jKW7H`XWkq|^zgw1PNqtwPSkG4GagHUD?T@Ky1tF) zkY9kWN(K2Z5;dA4~+Nvf_`%MJ<4_9jNHWw zAvC5dWuZ`J1BO2NTsul-`i2zR1mqg>k-)MIsHY%PiT=UV^rZK5XM6q#{z9h4L)r{V z%Z;U!JWV&<*p-hI#a3}1gB^#s_&aXme0%jp1i)bo#pNdJ;L_1`RvwsH8P~Lo2M-g~ zxc##zD3r-@-ju;~YI7PjF08tf8cSFu?Znz|FkHylw5`QQ7uF`OCy#$`g5602PCn6* z%y>LBvN_%M0n!!5nG><=`#uvl6|pV_jRV@f-Z_6~_)2`LG(AMNI36EH z2nk3}PTE0j^6+`#w;BKZ7J?munW$P%-?ACg*ZTX|=e#&zpuUqOA+t;r55(JeZ)Pg@>_&51;$ zphp%@$r9_Dmm?W}+J$myaORdsg0q}N!C)-5qy-g9HTHP#c@McwhjXZt;Sz6#-q0s1 zpAwADtsoj_Iw+YQZ(H{aFs$FSeOL+0Ko{WTb9Kc?sSE-Emt{*@^?JTs&0ml5&lW2} z3|OB=rg;0}k7zYT?h?K=^p(s(WDF`NLO18`pDMd@ZDn+#FH;o2x1{w#(<<{xwi!er zGjXLadSr|z0%hyu30@z)gcd|GBZ(%`C0bg)%RA#Z?B}!?4mzcg0dIQLN&cLxl4&nu z^e9Et32xEz5!y6P)27|k5fJURZyLj+PFLmlO`uKbGQ3In($*S5xY=w>uuTWn!+L}$ zP}{2c1eT(dhfpyJQCTaO0_nCJ$7hhD)01O}XgVKu89RnTgyd8ccCp~)=qF1Pxown` zM9z?GG1p`%1!@|4aO-O^uOggziIDEA763a9^;IuP=%}xgqB}_|S)0l~aK(qY>SmRV zlV1Lv1s#Ct-; z$}6bWQ4d8r1)M32$uBu#QdS2?_%GkSzJ33e&*jg=wZMod+Mq}WETls)Dc82z?CTSe zHc=lJDgM{Eb{TTgD3dah7<_XZis*uX7VX*&MIBs{rkJ)b=VTa=qedAyCX7m(2kz-B z!3(P1D-n9~rPwzbO0ut#Yl;|ri}##^k&n6iB7AMZIH;iYlj9#}Q=FCaj|eF)YYtJl z@~hYrQ%EUrp@3eV)z=FQwDMS#)>QF95Gh#VC)wGZwqX$ZWt?2W9Ba0bp`CeqeP|-$ zwxB*UG~I3Y9IqE9T#>!er4`wsdEY<;+^>Ga zIKr<@<6R~Nq=BxQYc$ME`!Jy}oElf*Z?3k}d?xRk2QwB)_*w0%D*chXra(5)V-NWW zXraa0)JfYpE@u`5gOghrS7kAyBD0WzS1M(R^?m3d_3uM_NJ4EO@FuB1Pr(Fw`P!Pm zvfuf88N6K20UN*qEiVhHXimDu(d}#vm_hLMFSsE(&wCsI=xDalK_Pzdy};#FP*Q&M zyY;?f*x-Fp^ntdYz9UUX%GGzVLO$#ZL9&iLp{7jKOFxFqf~&OfHH|rG>Uv3&eY-U-Wx#L?bLaSxqMVQ9 z)$gOQbp1X($xInwike@SCF8X8SPWXz|$;H*=s1o&>0MegUj{hEL`(ozLjz6Rm<{{T}8oVSKmHERI6>JlIRa5B?L^}Kv-*zjG zaq6y_b?y6<|Lf(tjtLw4$&?z;)DLFi8r#j5Js+u@fBZTH_yGhWjwU-|_|bkbdyHgj z-;YuN4=7n7fwoqI^s|?L0zy(B!T80JgSQ_ z=u4P~LXcA^L|SrIk86;IHDX#1#yiX9R|N719<{p}d@hpa!%w2ylHcd1?`X1*{o$d6 z+nk964xC0`jolMKS z=H6GZD=0;ulbf4!LQlZ7B{f{kZgj3O^H$>O=#98q@OXZyatdzAg~dh%mUTG!maNnK6L z55XSCI*<;Ooh>Ed;E416OW)YpK;?1ge-hC?KIcq#5``<-oU{z4FMFH@CFUdBu5$=e zJmo%&nOh5VudSnx6KLI3ZP#_2(eQn1no@i&9t+N<6{WKf7(L@1r@^4ra+u zlLz{9KVbc(h8rpdpkH!XGApJ76i@Pp7|y4|zJ5drNAgLFaPa+VovE7lWXy)98QVSg zn@ss+{^ALIJ!s+K}g(cY!Gkgcm7gbRE_^6*l!7B^KIYH5}6yYbtlXt+(zU@B*P zXJ$AuYG)iXs!H1g95)1sGZNlSDj_evWO#+q4+cew|L}Hh%W>mI7=D*jQk7ImiDg-` zm0bC-$vPW5jyLB!42hY6#Q`QDsj>XVd5Z`XcRqoQCgq$iHIg_)qtWQ&|Holv?QZst zrbM!oF~B`w4&@;zeT@BHZMe!axwtysi4Ixy1!rYME8FPzwIHd^ElMAH!l4_{7)l(; z`)HGzN@Ry{I@F!(^oE>`ERjh7({K8=%M*yelxQoaD6-sBLVz#kCKbkc*)9qxp&TWr z&WyJ`mJ&<25w}q#n33FEjWtw#lMu;BlvVm*8NpHMaQ?J1x3xoL{8B7MqWA;dvrjY8 z#hiAsQf+q+R}49@^J!ta8Z*z6n+myyRWJ=Ip6!nmqV)p+L{>g;!;S+ZDWK9~UO*VcI{aPLQDA`_7>?Qg+v%|82kZx7JGWWAD=dpH@9y4zt*7!;&wT>1yg z$Z(%u-8xAab{Lt`JcND~>R>M0xU2-$l6@~!k8VTnH}Yf(^Sr1#fAV_9qMa75AeI1K z@{wx%Jn6xdp&b(Fk?_@ssXB~r9_2Vp%_F3qM?x0Lgozbk|(k(4fPVv7CT@LTkB8$lI);}Td|kWSuimw zu84*4a|}FC?Q%2QE{5y*i|vXDddx6C_3)O0NPf+9m#wlexRI)AjKmnYp)s%9nX^bpW$?-)A z{mGyH+1bvU9crlUz!|cpwhV`emO_1%vNCx;T>N6ZtF~X)4@03tKlf>m8jCTSpwm&t zR@DJ1>7A&?-yXJhfcX>cpg%eT@ozE&@a!`CO`9lCN#a@3uN>j&JJ`GBg=C42lRY2A zx9}xmY`eU#Pq`746>AjLw7&wsMBP1wc?@jiBkVD({D5Wx(sX zH?wA17fJXJ*0O-I2&vGZNo6RP+BWWn`X}1+@0fNmcNe3BzPNnEFlG~)t=P?1s=qVQ zR9m+g_MJVQ(I?UAoU-!~vp{2u+_ce%gyIe0Q)YyUd$!Q!S3ZZrw~RK0zn$A+x)`$l z);xW_2}I^|7$}mg!+8eoIdmY#g9jv@`j6f;av#UmN-!WL)uzOH+lF?4lUO(eS>2^J zotd__)5*lZK2K+h4Vj%(dt3^zc46Q~pk4rs_S$qT!!=DB`&MeSZC`=0)N)Zm`G_qO z|IQyCyF2?>8b9BA+wX!O+-_ZxDSXNo%E+tS&#i0fNEuPfQ?z}&8A`NbOYDtldee#U z>zLK95Mq}w^|e;4w%hLJS9W>w=ik57!oqj9alSTr(QxOE{L7tVlvbFc z5bh0dDOfKIL+m0{t(q90X0#hO$!<0>=RM4!lauVMKiwHR-l9De*KDpyOJyv5Ro`}@ zJ{lb3V?Kb-FQG0X$C~4h+mBNp~h*PsdKcTX-^5 z(vJ1Gm5bdrL-14t`jnE9A}2@&#laFi1PxpjI)~%5JZHKrUm2~LbPV$kbmSIiPPVi1P%c6NZWQH?$)zcNCw|QLMeh-MFRDNCb$E ziAcDr%n`H;LjfA$KKK&2H^&MH%L6!dNxt_JXx#2Y&se;jnqT^_kjvKX7}h}t%y9lN z&>ufY?!5%w9ioYjUR>B`%=T&IjjeE>h z@y$)h=l?=9jcwJO<+sLlk9zP&>n%?i{wzfV+91(;SD9!w{qdgXvBSVE$&pPojo^PoU>8?xE2r)d?%7DJLFp zZBlx*@OudHTBLYYt9Hj5{VgZpF@Bf4ad*~IXHxWVq4^pu9lAz3*XBLSzaCr0vI?cG zq8+q2*Rbk3?@aEZIq(VFz`SCfMCl{*2H;BbHUil#1DJkW9)3zN#*RM_YQ3mxs~Aj8 z57fN2>DzrqLTXBpTcE9kqWY!p$Lr9UzHnpyCh=_TE zGDFGUn&Z;zN$s+=rXAiAL?mYAR9Rh$+A-)XMZaj(x6HtYaILUXwYpe1M9-kmuOtqHCDp>@J9sbXzda6dw3$Rq7^AM5kA*yG^1jq@@|gC6ss(# z6Re5K7rjUj?mMG2)rfH8Q|~)dG%7gXWB&7Wz-T}IBNv9O$X(m?1+qiIKvO0xvjRQ;b`LokxSx-Y# z^ZM?KJv}4>T>kD5or1ombU}(}OoF8VRk`VHsh#a@&YhQLrT8!npB5nF=v9WIbN8twfZr@hu(->g_8YqOJR!tc?;1f{jy4QU(dHqkYk{ zJInIfRg1aXaUjTdc>?;^;WIx^UUlEtnzzda%pRs|0g0HxAXGgr*9>T37y6iyFSK1m zH>W*=ZHPD*(VFGX#J}~Gnf9jb)46W@p|D4&Ky7Ja+P9ATW?Mvh{kD&T*GDtNUtBYK zT`?hIpN)AJ8X;0dRH+VY74j4);1_s8DGbF?T9Hs2`6?wP=Mr} zLnGVeR*l&SAXhzGIyU^K301m3O9yATPy&n5Uh+!MrE&pKU^lzcmnHIt;=scynC>Ck zHt;TboqE*BjNo@0cHB?@UjGKGk`*_8t!W9Rm@(DDJ$DExM<=WrcL!cZ+pl((!pB%9 zn=86;q9tAE!F2Oe92YdDEfcwwa~B^HY1(Yb1!N@t=5=z*^W<7SslA5raAM}kGG@uG zevd8Yl+2UDAy4v*tbO#A+cHyO`8N8#ueG5jShP;}joI`Vp*JS3p@ezFz|}=oK6+Rk z?7jO(|4*z)+beYh|EX^@^&WNND2Lye-O3qdl3(Cb>1A-F0ax6(dApsH)h=0DuHZ-F zo+d(@662e=p(Ls^uAV=kgGx~yNxRP7nz}DV=aE8@$OE#IB~(QcVhRdHwi5-KZ+L(; z|CM$Oslh7ovla`x-9EI$0nyyh-nueg+Ws-g@HSsw1uO>nhqtG;auYTml8r{4{S?yGHwFrgjv@gq=y;I~~i^NI~esE_Wn zy13AgN&0rH>K9SAzufV#K&*h(A65d^9o^8CX`12`;p^Zx z=`~ntzUgK(gwX%1LpQh=Ba}r^RXX$em`&;*Mv^w}3`Ie#*7V7(+wB{-zRm5kcy_4g zFXR_vCYXw3Ym4kv2*YhW0J8J80LhGoftyF=pT{N?d5PV%CEHqsNOy^2z-86fn}-B8 zsrg*Q@l&{~j_Q9~7-0VtRy+Z)WR-+tYx7@Ky2SSbt$jdIox?EXH-jq}yb{(qXWa4hDJPHGzf$bc>Ez9@v zu01sy=oFI(%eW?Lqn+uyuy1c=BSKE`E^cTllWD)|oP4tPGq@NuD>B=@XWV$9wV4qJ z&R}SB$aUg1&%N?nvo{%>q)2dT;y=4fNVTo;6NHt`$%u4--W1_thdnB*g0E% zx~aBAF$0fTUQ+0<`*y1n$84PstA4VVt=*Wz@*v0M)6CMDA>f&ZDQmZ(D>b2lP*6HT zb-$x|RcCzIJ3r|oXliqfMvNEA!Q3u8aEnSjLY){t^(c#^M)lEB!D5w@iAg(@i~aCRf9}MT>zsnA{QsQ@P}^iDMg~MLu2iiFD9S6 zbd@b!y2t-}Gp?mLy~L1ZYLA-GN%y;UZJT=ec7CqJArd2I9}OX53BRaFbk_;s$Zx!j zo7+5TJp$c}4o_wYkiM`oBW@Z8mi%<7#Vp#k-#v5``b6vmaauJ@Ro>1XtryVl4-<^M z%;S?5c!s)topb3G<0^^ib?7;;k16%e4enDc&;)ZuRsrpKxL9#x_&~9-Lm`SpsHg-pM1Zg=~88#>-~ zvD%7rP0DfVig(fNH6}=OrQze{d2YeOTt>H6G=!!ic1pGwSsMBqQKEMCTAy++MsRK zGf8(Mw=6s+dgZm2i#880rL3W6Z`1cQm=W8$jRLpc$8??HD+56IA$<>9mZ!H(lP>n! z%GZ>P84|)I$EMrlhKpC8?c{l$QNXVIW_%>*B4yjDt+2SC7_C{(LpL43rh*nN6rkf-Y^>rbt-Oihy?@0jTSsWHO{mw2TW)Bn$ z1q0=(t+9=ONod0i<5E>o2G5?h$%i{lQ-y74W(KQQ&=zHuh?(PEXlzU13DlA<<2#i0 zqezdN{4w}^;3s&SEip&i{?teIqZA$^6Ai$V1FJ!}LO$s_e8F56CUsBGSo^bcF}zn9 zUy&M2h@kE!M3Fwn)7ADp_Y~eI$lk{IJhcCqg7-xZj^{7(ai|*0^fA=l-sS^iwz)}Y z1H6esoUHalfW4*cj=aZtIf5?;XXK`nACW~2T!FSTQF>iuFz8T*I|zaV!d#9%B?NKu z%c8&f+Kq0^;nr%#=pVgpld39&Q__XC637|^9J&=o(Y_u(U@dQ?TdQ*fD z#6>akZDq|dxZ3A9S5vT*8&}&PJTmTNeY*(qmvvtD>S54}(0QCFCMHC&YvhVP_Wjh+ z`D;!^S-^L-N*#{z`>->O%L2+==XWMn+gVP7`NsWsVPg^qP+tyQ&@+hiX+h0o+_r87 zW`N#0E?XOgrhe0HUD!Kyyynd(mu{?ODEJqIvh@8=k9KRD^=WOZ#>D#`b8v~cnqIEz zzG=+XVXcOUaJ(Ow9CXp`R*ug`NCb;gg@F(VDaxk6+#K(MCm}Q2^4*w@co|)oV@V)o z(A|fAXw{NsI8WMX^YMCJhs}IlMuI^}`yTBlnnrc@s~nYREjs_QUU5=PRo2y5?2;n| zRn}Xd1BQ-;P;Ligv8cGuGT~M<^Z~$Ch$nrJWR<0t#?dlObJUHkn31DTSv4__Z$W-> z!SWy9hRxB-57poLwqNHR$J?E)ALp03EC5qv6fJVKR;w|JbiDc)E!oSJDX~#~XZDIR3Iu+AZE}x!^imrZgN5;_KCBK z(#k1Pa84g%gxqc*&jrxNC#v+7R*|cFfqXNs_W6){XuoAYK?4`0kt8^=jXf&J_U0m5O z_0IWl>@)`jXvD|kr2R4M@&jqwYTMYw2KB2aCvUP;b!B#Y<2D{u=IzLZXhI#MZ7Yho z%GkT&8Ln*CSvuAMq7o<jfe*Y9M;|DadHi|41x1^HBTQ}Cq z8079<&yJ=fWS(nz&r|?X3daiilr&$YnIJ|v5FXITsj)3rO<;Dg4hJvT&^}o2+uP>G z_?%!9Ym{{inS7-2H@%5<_DSt-j%%FN?WZD{rbg$yYG*bf?@z3Qm1%9_f&3YO*2__{ zHZ;ZmI6FHV@DG6MO%Z*5!V|*Uh7ZPyvrLte_%Efge?ugBze(TJQ}pxNHVp?_6YcrQ z$Aldq2B~Fxwk$WwP^t>Bz=@PfEmC9<#AEvPE zU!C9h{7-r0aKQbh4wK&}4R(k`0-lnom~F$ky1?Z>Qg|7q0LnYJpvjp?yA&$FAi>@n z5>S%Ft}xILE45sRRxaf4t}aCxSf|BO=%vmyqKOa{db}8#CHRiowFVflrH;ZbQ`wSJ z7!JPtu$}Q{BYp+*6$Hx0#hoctlB%th?;t@59H$Bo@@-gz z>{sR-ICDv+Ij1PdrPh7fhF!rRBLWL{UlPYAhO`bRKxqtS)TNLjx# z+YqgS1+tHp30EbZsDbjzUVe$S=Qc?r^o{ue3KRdhZA0Y-dE`LWHsigO0K;G%C;A{z zxpK1(lSk$D1iUJjxM`rCEiM3mTk43MuP%JWyS_79SDPuyYUA2dd-`&hg$8O@taQ85 zt79jZv`YFKZ)^qf%-cB#dOdUe!N#10CoQ+#ni$P`f)?%V!-3Z@@lcsjmRk0Yen3H7 zKr~2Wys~%EMCMMp1GT+ArxZJbIKNfqs+Zroe7*u@p_NT#g;Jx4uYr%t&E`<=eWuMo zxpfhhwQ(us3vGy0Za8n`+Duj1J*%UJi{ypb0BKOPB5K?5?Br!PduCaySb*H|KbS9W z!YS3Z#(7!dP~jH=mE|a-@Eqf5OcR2qZEO@9ByzJ>RW@H0+oAIN&c++*dQz9Mt*EU3 zd%0-m+pY+;bqKKtv(LAX5fdeB=`%vPLpIq zVZon%h@o+7c={h?F%zHiZ2^#uX_cc+SRY-r&4`Gj@vaAkaS)J>Fc$6F#yE$#xjfkR z^+0*>&r&-h7O0LEl~Ekp=*@1{B;QrW$TO!so)F%7y9u3pm@j|Xr9OUV&az(Q}gNYjE5ZqF*~eEBcBC8{4+R1N|QlV`-Al!oRmKzsU(BT!x8| zmK%#Crr-22>@CHOIstFeAoK(22A+OnH_A~JM?CkHVw!?4N1fex1nC%Nz9n<3${gcC zVEdM|dEHYRt8ObAr5~f_sYTLsr@rIaU0uuVo3JxoxjW@!-?q*?enN(A$hXS}e`*@H@ki$n zau4d7!#hB$A`pPMkIJ2Ksi;;w>QZ=}X{cl;zu{o5*USQ|lIDl&g2!oXIU9FF_yv`1 zHWj1o)Y*TR-BhSzyY1KOMuVfP%*uJ&&Ay@F+ZF&;K&ii9D&aQaB+_9_*hP62e++eW zo1QP3t5|QX5%ZHM-)ZcRn;IO3H|+Mt7o&p@wo6If(B^fpteniQDd4h#a3diZ9yR8- zw(Z+#fSj$C2#F3d$tt1m+WE);R{W2TW}T07q>pwkdjmof4J!7(B<_2B?zb{moTl4B zNX>OuCYtl_OPAL=G%m~vX{--1UUj;UVePWQ6kuj^NHvG##@!aFge7j3E%J^p9<$Md z3XQADS7lNW?I#puHBLg=pyIsnKbK~}NAqoc-3zQpb=PKh=0f!t#yoAb(5&Q)i7#(W z7gCoZ!o)?as!kkY=w3Qa8dJvgl-C6{$ZjiX?5`*4ER$ z6yA%G0O1_#zW1^MW2Q%cev&I9rQ}VF;c&Whshl_KnKI%ffEtcNgEL_RtLj@Fh}zw_ zW(@zA7iro;h35u)((j=%VQkk8V}PZ{AFSC2zp&9)^D(Mv4(4_w9Fg7jp!UJhB)ek? zJXArMArG)*y=2V672(qViU{O^#T16uN#Tt=-C8+nQU=_ywUpJ^4PNM~K?GY_M_7?KDr3H-&k7X!m9> z8Xi>9yfr@O?cBO9IkxdpUcj@<=@2b@#uV=GuYy_Bsge$0kM5&uvg`7xTCLef7or5_ zZNh3L6Z((cnhfy*!QOwJA1`i%EAJWvGNVQN-5hLawR1M&Nl;9w@4C+qfP0v`4H%I^%9p(wsH=RQ1J-n?nTbigY zKyRYwU9yV?j}<8TscGs;78w|>r3<=9OQF5q<;l0~Jfp}(bXI&|MoWm)%#Cpk&1zWz zstUWMIOXZ{Wjmfb&Q-Jnq5y-?V~UPuFs{L0ha=60iCr>SwoWU3kXe|$OMyWHDtUa%;+J4bM!T1gw1L*&K% z&r7sTBRGGoPyf-I)TBeIt}D-S$Izk&wD$d^bY0jIgFW{tdz3))0ghrGtVps*#t!H) zPV!LGYdW6&FSx**1(xyoV+xL8Zr+eoSF7sorvw7qHg zMP8g<+on10*Tt1EsmM|vh99M>=YnP9LKE6<{945LTrp!R$7(`32>#!Y!K!bQ6xzuv zli7|6M>3nDT9M12pZzy&z_~bSXbIC>mOe6X*P{zUkLp)5)*xv4kgYY%a12r4htnQu z3rOtAFfITC@;HG$eJ17k_+3Nr(12+6Uwn@`Fsbj?Gp5;Q`=Pz_mJngIZ6%R$%i+4` zul?lm|0JNZE9I&eW@7yF7eM{pA6FM@n!ptaW;k?1cxE;siB5P}=&g+H@V(BIm&V>d zdI>b19+!aeo6t7Wrm(kh9b)EVMvK+5%nDBm^C5N{!y7hXDdIoBJo$cSK<>+Ec8sr^ zP?6lxf`DC0Z5!u9-L+;#K7M^EmOh^i8jiPv z3`dvni)me(rjKZhx8oaELsIks#o$)kE2yq!A-n+ zBK%UVRqWu8X0@?Z7uCvn!kw8{fV-gmWofL#_cTQ1982D&_Ge4xiX%Y8hPn?e)Q&Te z4p5OCDfb-ObQn#;B{bZU3Y-d2^>8ncv+ zX=+yAtsnz!E!7!C!_H3L*u-UK)nhd6tc=&TV|YVytWoAZV&*wCtaGK@Ek_7=9$tLe zaLnKpeXq3+BR;oFnqa_L>Y_=#S)g7s97~sl-X_hRDR%)`0weeu)paSJbuA+ zJU#h_Ka=IqO?)^!mWDpu+Es=Na&e_dN{#%gFt~9GlbY-%8~mFX4&7F}8Gb(;-QJJ$ z0jNdQ@h_TS&QIP2QU~Q_H3szql4?@Iwtiza#kIBlDiz6x&19a*RejU-<;0>D2;YrM z$-_`xA1`(rYsK`KCeJU|0|#Kx1VPg3b`MiZ|5TEN{YP)`I`lF2 zF1l4O9Gp_>-R_L@tfcJzB+7_{JvIC07g#x^;Tm*xYy}e#ZkIEqr)zUEs`Ak?sLiMO zz&KjYU;G+pEdwSg4P(6fHLsy9^{(j(cdu`9UoTCrU@(4sMOQZwXUTLDQ7uSgEoCATV6LZ?~i3BzGQ!h z?_{!fA8qCKt_yvOY?%Cg?9G2#@>rwW(Hc2iM1!3PQN`ev;jw)EeE?Pd^yHVLbLKnA zGdKpEt%e=7qO5|dQN=D+RnAfBpOk1V&Yqx&ilV=GU=Hqnz9^{f(Hgvpt}{*@Z+Nxs z#hf?xAr~xzh-k*3-^}|tUv2xQ*LvR>w~?7+-UPEir#ysxI^`a>c3rrz?B}6ryOi~) zEY-jqCjg?%WA00;UJ|iux3saP3#N8v*{)xm{0V^+ALRVH>2X1nplla>f&;!SrFUBk zRcb0aPDuvOuJS?ZU!DBw2zh4t#WXl>?Eawiztf z$jF&gUfY;M>Y-~HAP|VNxKHb~ajba$)Qk|kyplY3IqX>kla{zi40Z4pb78{8laoIJ zd@>*pl|*h@c_a?PnpfMFo}El{6Lb-@5rCnV{Y7SVW$xWh-jC=B8(B%c+5A+tj6e zPs1S4LB5VaGunmA#D1-EXWVPHTIank2zB0J)qz$)Q}(4mKobRox%Qp40DS zP}2KhuK0%JNHU5G8ANu9b+GUp{;qG!5ohvKhA(*hi2cC5Z23rgqi+*Q6b~DDiw4ie z#sb(CF%V1PZ>UB5>HW8_Kk{IT5hH5q!rq@haAn@5J8T--Txg-qcg}CJ@BOXY>_$Q0 zj%;piju-jz{cm1>`={66WuNx`#zF+LP>)_ZNz0DXXKukm75gFH2 zoT_9{2D$PT`8nJ-w%$nZbHo4=oW~i=x*XavbT zpn5FtTOzUZIT%m@0I1~Gqe^_$cU#+{#_2SX_X~(nV{l=l;92f`E*XVEs z2@Pp+#vXwky#x#-6|9TK11+p>>qXjD`dLU=1I<$iN#y;r=vqa4KXlDb3$#TXO{57k zLK3I)>`k=hA*izHJJR6UcBO)SUnw&)DtYvBo-es>yM4~?GK9L$_qIf3SA~#ri1!qy z;=2GlE<^sg_Msaj=RaW`2id;aI`mmnhkr9i#jTf3By0YeKCyQ8o=pg?eOL!JLt}R*PG#aejWTaEDAKM( z??ARP%z8$bPv(~|!82S}<_)lo+hte6k1i%*5#GQEb;!=FZs*SD*_kqdM5SeLPE3Z_ z8;-?2+2{eKm)$`@HY27p1@+{k>6;w&sA`3WNhjY>rK+-`7YPrIXsV z3$-n9m)fCEJO6)R%Zupr1KMfh+TE;-=muZvp(5a5fgE`mVqj`ScGP*-W%W*%Y=8RR zg=%qXPvUnYN$7wqfc+odGkK04A5c93d8?}3%F@mP18dPS1oO!!~F(nE_GSy&1u!i`UC%pJkIM*B6}0#PTqUXSR36P1CH1 z`8k$Jw2C?5I+nmg69hVGru7D!1rba2yHxYCdLNKJ8>Oy=v}YBn;D^3g9lEwV+nWva z4@!eJ-9hs66QVzNuXU_(z1bUwT|dtwmE9=6>64x+;*&JJ!(B>WoW0s_|8Q`p=a-Lu zdsnHSHVZ1&CviIOqV?5Yk85NxMM}T29&$RiEF>7A63&(SgK2f-K-u>2%Mfk3-;oB! zdwkP&#a^$EMI^VpkM~IvX)MORkoIA*<8-C1gLj4nYv=Zo0?r3a`?XDu0H%q)ihPLe z&TpX#3}U=BRk%+;IFy0XZ%lJl0=wR(h?L(SKl|+;`SztI?5#CW3}sG};*`%}k_n={HR2(c`^Mj*gJLc~*3#Mu z&?TdL;+JHlX2}2G#@wcF5C^jfF~aeC_m>B|BH1IRPM94FmsBE_*WmIfa0W}JN36|7uiZiRu<0oo_d96@N9WT{`tX9($+j)YuiZiH5d8NLj` z3zf-qw z{LM78CiKkI2gpPaJzlMpyuVE=-=zhsjKlfsVa@mzGU40U0}spCIc}l?&!WGgMC+Qs zMi~Dk9XUq%pMU-F?Fk9+*FXPU^dq*;Ys`t=m0KFZZL~&jyEDEJdi2&rOct**$s%V7 z&Ttk=9Sqj?`$c!|^8B9ChwoRF9yeM3o^i#t!Q9>0inaknBoEl6bcUStA72`wd%{G~M_PH|d!_B5gEFURE*#RapbyOozVfjiP`C0`qyFg^{}~j-fCDZuC$~01Z z1|;|C-j3*MBp14FOp_9cd}7LWNqEOpSF|^P;LNVJ1s1o!BIVHVFUH-7Cgk3Dx;JKH zM4JsZlZ*U^J=6CJE6}^>a=dKb5NhOnHYmUnMu$&Uu(&m;Wne1Z-U%omk&=D#g5fQj zbpkZO?}{K0=E`ylP~6~}v&PhR@~Ck31WLg^-ZfT{fKqChwl&cx2dzM>_j`Z<+u_j4 zKju0T9kM>cWRVNw&$*RLFr1giUMu|Ly8td02wixTz<;Na30BXcmBIU^hDFx6d3zSe zbSt;beWvcCZR^en24(;g4ssOV$x&e;SQ(TNbI)jR;^}xyf1hwphp1lyUEUiKblf<# z4-3?VNhJK5I;(xB)-;yXF8};gBk#4ss6PXJ@*e!dtHyp0bEkGBm;BybrnPO%Z8^2J z58 zfqvUXpe-tsg-HC|sKg>HYEzhh8aZb`F!{a*quwqKUB5hf;K_D^mCMbTA@`s7af52m{6Le9pSs3%BUr-ZccOcffP;_6)! z(sRqdEA}AkQ5iW33mO;vE==(pvo(UDR(*ZC)-}!Iah#uajU=#k1c*XaQ(C;U7E%jB zugs$q_Do+39Z2j#&NFWVgK~LHos_rbx8DxcC==CRbQ`-hTIAuWY z$M@UeHjSCQT=>idurNipCGkBK1x%n&#oI1G++(=1o?G0M?8R>A_G`6_A3RsPI5eyI za9<`V*#k}B%VVB&yW1PuBWQ3&KOl>c;vp3=Sv=3bDD7nrf@iu8>9vQ)PJ8Ng!%E{8 z9LElqAPzokC(>c|T#P9I{h8j;%0@4<{4!!|>{wqx8j_)I8_iIQ)~|>1^d~XdHHgNS z&!a@?^YL z#1*n1+@?X{B=`YcXS zuS4+ZNJAEgnT8XYnG(6VtIQ5fDQcA0-(=<*OrC& z$eA?Y=@~Ef-1Vk{@eW^$U+McLb?O1Nn4_ORdNi-)MU8CjX7QIh3Ms%W;5iB>$^nbGXet0WQPnXw(dGTJjffL?r17_Zo%IJ5=-u2BzCL++7$t>n*&JM* z(}tS()i{2XM_yZlM|5{Hl8u)$XCqVyjZ!n;?Bk5B_tmBz1fMBCWGUs-2l?;eXcM^A z)aFEa{d}Bvm?&hM#_Vj=>rqOp>?cztD9fz=O;K4 zbY~j6Uv7ws)!wzXF(cnoHX^N}863j3WfkL^ew*iTCH1m)&7X_2LViR!zkU6$sNeo$ zu-LzC69Ryx`D|TP*~ZSwXf}pUOi}~f4*i8u(5+(_dgm=sd2J3EKB8qtuhTii%{HrM01LV37qJab`hgWKy8~ z14W?i|K*Wr?lAM}emm|m$E`^%*4j%icR1~ZYJF}*4$hNQA#*adrOBRf>A*X$KZyF3 zJbz4oj@*GB$X6yt5Y4kzweu8OXS3rRWtJc5rt#1FND;8KY70IuEm$~Ie;=-`ca1iz zo)ClZXliS~A?>DbE9R%G=$IfNUrt7qiI0cRtH6>|-0+jreI!7XAT%7ieks?^c$(tp zpUbzhvw5#zwRcS&tzU*p*^S+`MMK+w-&DxukPOmIQrI+ZH~y@I(XcVz7o#2YBuPi8 zLTf$LWyVrdqe(wX1FDOZX(I2=kCF!o@mxxA0&A1<5dj;;%SEfaH|wb!xn zOi;Z$*t4!ThnDuT68F!OOBHErA8yznQn)XfI@(T@SF{Q4_g!PaJQ-o=y2`|DAzG+n zn!R7NKF4Zco*Y9Pu{5%%Ak=W~Xmr$n#3NIZ`N!aiCl?;?7tpHaYTQ+ZJPmHVD)Xez zhCH8qbBcOCCD4V_G^wHDk#3`5bIl~G`tDzsOU`6`bKDw@V zvq$-JLM55OzJ9!`obj_s86oUfHudD#)U~%#G}78)ag_3t_6<}~mK7OmE0W&A+6pz* zuK)zVbYti+YFt_+Jriw1l||L1DtNCo<#GN+eX98MvOIxImeTA(Q#(#vLqnmqP=IkB z;wd#b8-q`_R6Y-R=l@}ozFZax_~mY7Ml@YdCQT{1DgwCp28Ghy(>{jK%BV`i`|NBr zK#3?i<3yCiH|33Dp-SjFsJQI#M^>YY*t@ITgB*c?Br8B+PF^w@@C@<=50v`RgFM*O zN=$VUR%D!cCE*S$=zXE4Qpz$J;?Q*~loh_-c3~Eynth$Yj88`amX+-Wq z5(R%QCw}!7wX=mDwT(wPIK)~7}miE`70szN6Lw&{AIBW*;mv2qD`*UF_3Do3c6fJnX$t`;?Q4tbsP8+}^sL!WB+{6evx zW&O^Oe3v}(J?Z1Sn1}U!j6Yt`q`VtPCcJG^@LiuwWb+)bGVl51^2aA${MN=w^m1sm zYfT2nwy`eXj#N^vKBolxv{>W$%OAgxYt)x;Y_}3Ua*(a+o24lQVbgS`^cuDyqFR!| z+jJCXB`*2Hp4}-VaE#y(m0h`q+{&fM=mUC6x zyJYMzAs4Ic2MFlm(Hqw`;b4>z)4f7=uFi0jG!!c$Ef5uT!Nj4djl%~sL%$EveN_ZZ zKN=qdbmFXWiD_sAspVbz=p>pqpc0I#!K6D6WT9Df*Y-XWydj>Q6;P|y;{>~?bPjMk zKvF=pl0sG~+-#h`DoB|M0!&9}lFP}6Oc#6tl$<>@3^kTS3L-h(52@tm=$s;BF?$=X ztYyG?A!|wjQ4?&I*|vv`iMvoroU{X(H*7njilTXch?a* zj-N&hOZlWP&Ulmhlk&;He+(vCy3}UOdY7<@YVvuG9VtZ5bX`xup#i>n)@L2!&Up8= z)V7}s43r2N3#7M)P(Ykp38o;ro%5N;okGl6V7a*k%pl>g>E$lEJ<>UC%;xTc(Nr3w z=c5q|vlED4V?$TU=}6{<0sUh&Z=Hq|^({hjg(J3kkO} za{Ozv+t;Sns;ECRE{1id<|U9e>Dv;0Lm_v7z*JW(A4p`2Ct=DjLQ_p7PbbFRa%gKtWHbY8y$+|@n#zKTIrKdVmN%3A z7?oQ1tFkB|QD69q1l=vY(1d41%NMN7QyLIHWDT43eb!c&IqcKM@Yg?2P0RdDk?pfb zA6>OKHZRq_3yD=(t491bEuhZ+;O8b9pHmdIKL&5o?^{i^d+H(7R&-?6czaUanPN-;9+fG$t}%eM6T2NjFW@a11mCYRt?K@GS(}3ia+qvq*>QxVc=_2x^w*4n^X}I-L4_MTE267)-yMhtUw_cDB zev_I=_E~N*46!e#Sh|CweKwC>cbG8xyOOY)Vuqk{z58l?u@BNz6L|VKXTrbKma(XekG4C*`0+h;&Mus#!UsO^x z$O#^-74q!mI5q93=?=9g!jCt4$DW=LF`F)JOgp@X4<$$2g@$G8Wiu^9Oo!m2@H29? zwlU84Zo5_L0nR55x4aR;)MZMAsk2;Nd zhCOxFo&R=fkS;cLQWQp(DLCNs%`PmZ#GXGsX7+u;7cOUbHlg3c7gAdxM3IPTB_==W zuDXDzexV^j>cOOMV$Guc{|~n7m(#Bmgwuj}=|e=2jkSJ>kJ+#rmI;fl@3419^9AF)Pf*gmbuCn=Y>gu-M-B$opTj7OD+2nG-d~mF1 z?Aycic{pH0Q1@9Nd9^h$0XCmXs@kll*+{$yS2U> zAIUjH4^PVH{hX)#W7wLn{A5=5K3Mn^FzTv8rIuB^yN_mn2tz%?1lpL6uhaY{@M&hy z`KkyRWqcr=iB>Z5@=NsDG}rlv@GqT<`7D}Aw4Sc#hkQmUYOV&N=3J?qPaL_^JiH1xOsRg2m8p%k zwn^)Pr0JMCsAal-r^rG_J=z&xXKF>m@S?gy4=3;!d1>Y6tKGDJN@-`88=oO@5cuqe zE7*>Cq-1ZpMZ|V&r0ltWnEKf7leD@lx81vLOCw)d_S6xrB!Sn}YVkw}&T!7kjwodZ zbh;?iHguiaxF&OJAycc#XyvH|zAEMFvDLzVdbn1a2#M|ZlWyd3;F*TzYJN6)vjiHp1)YNVd_<;@gvVpei)kEU|)dxE{FVd`7()kw<&@# z9&BauwvXo8HsyG?il(D3rHF;lRx@RKD>q*zj{!xQ_!XqDqF5tLk7`aymj=H}(x&CL zX>J$qDK(mhyc+AW;gRHFQL!ryBS|wjF0#ooEh#i4Ft8vZR#W7Tq}HKJerf%!VS@{h zd=$a$3B*?P*Y)2BfvcR+i^p`(oUo6xv_#*N3C<;)8o6wGjPhavFcj>Evy<3kF*LT^ z;#L`kk+P3ZTHClow&kixW3XkQwQ3(4BRb;XSC&P7e!-5ZCGtBq#t>b1D5Qd1&H$C7 zj>JZ~TvdLN1(v&!6&UCCJ`kLcJv{$EYWqIpRt@4G>7~hyD7&U?$Aa$ zenr}afm8A1kui{3EzflV6J~^u4s>!K(t*LMn;Q4P9H( zmSQa9Fh2NG{5fJ8<$)CBBZ|N6b!CbE4TT}_Hl1y1;X zfL5%xXHNZyLy_y+ZsCkgx@|YcpAq~QRMU%~jJly9r5E^LH?F2^FxHhuw9?A1wkoEu z&sDvZ}mixAYtnLd*7bee?d3cwBEcOlvQN_ItqWN@*S6t-cCm(WeWk9@m)9+ zC%B9gND{??H+`2c>Ep``HDq_1=1lr#3SOWx zrP4cvI1mdUCZ^~wkt6DC6wCkL7-(cbY8goXdfKKk@Tkk_Sw>~APxCNOLMr;#k+E9- zq1b54yY!1N!&vxb@H@Ium`f|6lF=QAJF6cA&LnRSMnt!D=g;~*-OsnLwy6?tZnxj$WMv;sV{S9KYa)7)Sl?Wuo=_iJ=Dc^IclX(EKf5MnIHS!Az1tBb zfVd8mrg(w`dW!-?^%CGuK#~OQT#kPM)yO;ZE(V|11i=FP`2M?hd@gWcLdAE^OGe{g z4rV6F?}kG=L@pgEy&|vc`SUf*sUsKmYo&ii1H6OcuAI|M&)M15MZ4Tj-A=AViGy}h z&O!hTnO>>Cm{mM~e3savrpOQ#CX_ECmBZ7u1BRq5I8yWCoHbxE6}po8loaWN5NpqB zTbbI9&o!az5FytnL=mEsFt=PC%C%6+jv~pXrEuxN;d+*7&h~>ppJ}&lBXTG=reYE+w?XTnDDQ~Op=^nKB*NlgP**=KO^zM9!$=8 zHCdorvoF<^Shj%1P;^q9X*;s(lPIjMU&B&(nI+nP-P|79Qxer)+cCR)nB?+4{p1wl zLIrYz%SP~-r;PqSbm@P~hRm)FQ9&l^l~FmqBOl3b(?<;+-vBEm!0qQem@(8tWs5wR z)zI`JtN5*qA1|L|7~Gw{tV5`6^zJL@LkI=Bjnkw$-Y@T?WbBf4m@uBlXALmj#J*Sw z!5G!X?=q%gc<#n#ZZ4Q6l8bRR!8Uo*MYXpkZn+>QL_HRP%lB}gu$RnQOmL##MtJ0h zsT(+0m{H$e3TR8cyo>O@}*j@LCfCq0mH`Uh?BIVNEWTzbG1_T z2QzZ{_d&fA6i#w1!m+oMjsys#N#FfDfQNWCRsw;h3*-fj8;eSfxPpDY<+aqp1}VOpzoS|)dY?V;$7Cb9s>mPMU%LT zhW6b=dl|`;meq;?<$*R|4O{S$^_PpyB=w87S4ze|+dz9`baeEe8SC_zMZxF$GR`Q{~V4EyEUiig;G3vDIHywOn&QkHst1i*K- zLjAfkT}W>T?d`6zp!&`kZq_solv(bNAz>WOOgC}s z8-;{f!59C_n8A@pHTKUfgfSU&=V2VLq3qn~NiLfm~@@MmUT^6vM2p4}41P z5~P8z7j^vN(eHo#N`nIUaFk{qSlqZO#5$iLC$P}J2E?L@$4Am7V9hZK+q2>ylR!zoi-sECbpIXoSp$T0vJTMvm zFz;J>svA~U&Xthz;M)Ev46|a^8{?W=exk|dMH>6CnHqlr9EjQxf&+k&y z!OWw{5q8jZ@cwajp=C-{qI~pz$b-0_9{OSk{CV>56RC&+q;ObUE6lxUaXRjqbm52e{_C7c zX;O2#O+C^tzhO3b-s9Qd1cAuan~bT+w=RoEICr$^gR>d2H$j6>X*m}Y(#PxV~nTz-*hC^du! za{-YFQj*O%)ymNA3l^Ue1s*Nmfr!taPwx+Dnk=F9UP)-dC?PP=0pL*z4w@`8G}(>P zO><}iP8!3@e2*rmO&og8RzbkW3P_N8fpb4aZs6SWBY~pNKLk38RIP%*57&NiTox@O z#$sj&m^_60kHHpOt9~t{(s_tk7{pBE6{zvusI+j#ou-Pr!meZ=fBAt$tRE$_E> z<=l+$fwoEk_CuCXNg{r3=L^}`R9gm{$<*bf)aR3fNuN`+hMo(xqaoqho_#Wv+uqd) zxS5kJo52o&qr}h0&mInQ&yg+>WCY2W!px_fF5%SpA@RoUvR1qF!_90||NYb?Z&~Up zfDqu0smn0hDu9#ghjHbynh+)?k5w!dxyDZx6x``2(S6N+k`qNe$3!TiBA%L15oS## zCUG=mfa7D7W<{+J?B}rO+k#PNEt4d zU9~B-O8jf1sYxv9Lc$5n9>v$iM-k*%UW_6U@Ecndyp6|Y$e&+#jmliZLZ7CA?B1J0 z<|R)la_0e5&m>1ZR2oy6toc*phywgFH&){U%U&? zAH7-{8zF74J~7P1AUG9zI*}~Gwatw$L5hvD3IEpE$U04yE|3@H5(tv#Im>H0O#|gH zO@p(?`xlw5PYkCVnXvIogbZeRqfqLQYEU_KWr0@{&LvJYwGMq`1%b;&+_C6xUBQ;F zn-xTrm5`8ferw(g4C07D`1j85^AQ4mdBG^XeDu03d3&&Nhsv}1e;ISWOef}Li7Wgw zPoF3i2j`ckO+h{7*Oo?4FE5S_8+7}yB+76l)iVC})FwKl`Tc5&W2vs?XcV*adDwR^vNuSJoA#WRjI`fb^A6^Zfz%e=bQ(Z-QFy|j=Sg% zr}~`h2YhDDa=h}jIm~)Ne@NeFqBpC;=Cn#?#C+YUb+a!CZhr$CH_eWAif zNFx)4;H{{0usYPhx>BPpx>~!FT2nj*xFI{UuCo-p_+~EMqUg!4DqbfJ6;RI1#LQ(C zZ9haWT3AX3=Z$Ulj!n-~P;BGirk)kX@Mh)SKDt(?SiWypU%C{Iz30Iem6~iW=*|t(zD>Xe*zR3O*i(d$w`7byLJ3zg23W*7&)9l zgi|%-7#P`aCmYB8q=%`o*ET7k*3Yp{9ll=XloeO)%wF=e&#?La9)?6k$&4+xG|%{= z7qEK3^oDaqkM^}u=XiiVyo>#l;X9c(yU#32o^6lT(0qbMnO(Fz9tc@pPhCn+A1~Xo zXk4e{*m`qi^^m?ONI{-GBIbGVtj`f5z?kP(^Kldnf41vwD^F_O;E8fHfOZ025lby- zH~f&Wu7_xqfsbenm8`MP9iELiYCKaRXS-;KPx+v=@fgnfT<95o*ncvg;nJ7XBAldB zvK@%?hS-K~r3MLGvts@kp}l3FCkjaDA6V|o}Is;^^i=A0ycSq--8q&IHYG8W+d8+HXi55bo{Fg${I%*TIVB|wS(oePro8!_{ z(cZB9j9XY8UazcQ)}A97fS5IqAVZz?$c{&)Y|8fGAiz6F=SnhMP`J2fQ}(h%686^B zxhLP8y{h+ypii$f=^xseD!Q#(u^TVTHlZ6%!_;qzG`_sk`Ga7pirgnpLjrK8BV#^>MB-&do6W zK5V=ESV2jpqMN>JLUb7cLk8MihdCY(J?}#IS*|Fn+{c$T6v$$9mGR4>q?pA7ahBu^n?AI~ zGx?dxLeumEZ?01cOR)=>DL&}mgLr|AzH7~-1~mMtc@d@QJ!cmg2C?$ z>=^~K0ml2HMn0YI9$gf(A~|NLH&|Mf8Fdi(FQxf<@I#k@H<^mopwwU87~jvbz;dtF zbjwwgoaFlaGTV%@e74Uwh$CAymSi8iT6%C9AztTNI!DFx-5N4l3lP+Y)Z}q`+u0Y9 zZ@LmhzaQ=Qu3GO#%=xN+5sn9U6GCP}lbLcBH5_UeL}mVM5a*vHd#uI>!XE(@<+>W%44&{f+&>eKi@w*(5%ofxmK?e2g6VfaG7Mxi-dM z#i8w&Co7*FC$jmQ5#3Um4*d8}*3NA?ZrljN?~+PYk}4~)<%8@?d!5~Q*G?Qehsq^} z#0+6$hzUqa89#jn6n8#>jV7f{D%q-Cjl>}ujYc2;|A!B}u?FNgm5$J$nULiy4S0AO zw6jZ0n%S{ExG{q%1)g-TtrrI1z2lh0V4%QJq(hY@Q#MYO+RPFsvXvp0^JP1CeU=&S zDAY9IF|Z5xiAv=T1(cIHzu4ip z^QP8#|>C5xgDL9@;|wEDynSd*ki-^|0)iMq`fwxT4quq*v?i?+GSS@|!jJcU z^5*n{iVUBns3{nUW&zL+({iML|LfEL#+>!&=CeWMnK5Xa5+q93n7Cdkx{(6crF1DR zMKNtV#9n|p&;Sis5$0~mf_53fR|scJDqg-%-O{}zAj)g}hJLcJb-g&Z0$NHSNnvf@ z{^M=8>Vxy0ga=~FHbbm!yD0ak0^tfyQ@Ov1UQNfeOT**gI*%(M-H1Dqho)*o?3Yz! z#9BwV2$GbLoy)QPI_%Fl6k+IWY5-P1slV+S{{@HC#HxTA|HkZ^+SDvi6WTK=H0VUv zr#(0)NLwMRwaKQJSgqj+k)&R|+&YQ3iK7o7^lFD;?ni%0P?t5gjTmTPbJcMZO~lV1 zeG2K|Wnbvc(5B`>4O2b#M)~aZPZ!Uw&iRz+whD+_vK~Gp>rqt0r;pDGzL;DkaeRxa z%JX5p5iVQeU!~(m5*a2u$clvG(7KdQQ&Pf4!H{vi-FIlDb>BFvS_zD!qwUoTz5P%w zB^T%)cgI6NYod`9IvgD4kC$BNHqcEEkBh!U({&@aQ7>u5a?Yl=y!1WDA#8gcgqtCZ zs3O#><%ud@pYM^9Z%jVWXZ*$I#9X=6JuTBMP^f)2{SfD7go+|v;bi#Mt*q7y+4X_y zW*#OCNe&_--5tzfxl{Hu4E(3*4cS_bs+g5hT?C&xL_D*3X7uv~!@#zF)o+j^CX$CHk$-aGi zWd;z|g+J@_@3^m*&xQZ0vo%1SUK&ev?ebi9j(QV9w3L*@niTw5W_gt=9dnzyr)PXR zx}`-^a8h^Uioh-3%sR~1unD2-g{_&=B0?rh7z}T3@o`05`nu~vId3w=CBu44(9%FV#1nC0!NTBB@5$i+f>AL0-v@GDVg_ z#a&!zNJaTKe0My=L5V-GY1*eU}eq?C&*+U-Ba2NpgvE_b9ZL zWgM<@2WMM>(oiNMdz17(gQ6NeU|lzuWdFY&6DQ|brMpe&g}oY+e6c)~X}WH#u8Xm) zhg(Leg}R97*qRT$nYvCX9?N2FJyb?w7}Mwgh6g{ zs4Lg*T!-s8bHV-Xm9a$PWcP0CT3lL1V_y$xeB9@8fxeC=RRb`5kt<_t3opaR{t$ev zR%4~*+8VD6D{a#^Hb80Gnuz>eFIMroVz;8`rjZ#*~@&jCS0DC4vWB+C@f< z>56qW!`h;5l~WPlxUOR}mQR3dZ$X&B^yC#5-2_;p^=-I%^tmaHDN4Y13XH4*~MubHd7Xb*Eze4-t@o~6?AK3Z#ygBskNrt3JzO* zT)bvqmh`jho%iV_=xLW#CuE^hSRd=wW_5UZlhb&Ey7FUuOr}l5eXwc)!@;KiCbH0A z^?o$%VB%5ZQPhO^>d`y7eC{cs2kg6MMf76Eci(K)usEj2wBYmoP&u1-1DUOf;o9Vo zDt2p4pPhdf>xnCas%Zv()hPjSgO5~Z>cY26QMEtN%@7JvTEump&1ao@Z?9+Q0dTnSV-#i8FkW6NW^q57LxpHW7zQLoZ8X=x zm3R@Z@3{tVtPiauxSjg7e&dculjm0c?k~n`C)cR%;mqZ*PxjiioLqX#Fv1+ggpzudcknxJMU{a~RqicaxL2~ZZM{>NE+<8ctbtSlpOFqt z{e52ILlBZm%`b!e?f0ghxkG6#>t1D|+E(5~%NmAu>w0P3=OKkV~u9>w&puIbYBG z?BHD|-E7@8W2jEZv5X|yr+Fw2(PnU-ycC`JroCJK9egjE>V?FqAS@EW(?Il2BnLPW z(0-kf4+D4R%=*Kue?K7JoaNe^o4xspitEg>KJWgd`Pj7O3VuT0G12UX{1>F;_|o}~ z8XA^|&T`78@=bYeKe~MiLNnUvjpg((Zhu<^e8{=V(PX`|E$4Cu@BDgiBf2=QUfYq& zv+8pg5(W&nFwVfpS8o#*I9*-%K|({b{B^XcF@%xU=^OxmM7=$;V~Bl1Au9K-x_(9- zldJ`*KRSb0h_Wc2lKsk*LA-s}nbTR|W4%C)}W2N-N3eMD{=Y?4Q77j~L)~QJT_sp|v^g zr?eL-MudoQlIYUTKY#R30;0PnIPQ-Hp26UUwzo)h#Mh_^s`ElW%0Uxc0WE##Ordj2 zwpg*|gXv?C@W{w>+TXi~O|Com34{kQR4TVwv~4QuVbSCZv|S1ZEAyD#5?oVy;f~N$ zp6Ya0qz5eSw9u;`K#Qu z^A5*D8|zh4p&DYx#>8k!TvIX7dQ1+iq(bW<`o?sHUM$9pNF9t~8_U31Sl75dtyHq2 zY>xSi|FQvi`RMbx(UIh`BGDUS!E!Q_#GzcH|6_@qPFI#<*Uo;rpXx=Ss!<4783*D6_9XHIM);%Z-$| zVmB&p+&%|INm)O)A;rOKXm(KletMAzS*K*#N#V(#$})?*7vuzp9Au1Gn0b1iP@P1B z6IT?bbbM8oDV)3WH!2j*8y`aLXiggGh+U`^oONZFWF9ySDhtpd++Yb*%qbf$deR*eQzU`t`tub z2iTg_9+?i&bQAaK&$TFmbb%OrOa)@{kn1be8*ABw=clPm%b=*58bdv3m0xhr-lkou z7P>J%ALBw<`lrVD8S~f&(>2EUnUDU(GT(rPmL3X2XA%*%T`S?#c2BT{=_;yVPD5(g z;G)Q1+(nU4vI*=i3M%xW32lhy?Am`^#~pDOlJhQ{YJX!buIQ=;P4q3$-%Ftt#ZB0l z`w&MKYa`ZId6PUfMaz~;UKn(snw+oLs6v{6D+{aNp3ghJ>UxP^NxZ^I)1Q;JhUKT~Z~H1#EMD>$z)2#lcT1PztC?7L zLn^vrg&b&MW0G-AlEy`1oYAQBN=iy2hLJh#!TNAWF(BQJQvsvKwfseUts*>rGJE5_ zX*9Nm$$~3hRkR~3eHlTTEx;35Ha1UED8+yu$pD7>NxF2~z4Hw5K|!clJR{HFd4Ijkkp;P+#aXT*M6Sr42oMN$0fMOR1_F zfwZ`?Ss90G9HmAEV{wToa&3R2o=Z_=$_r9D#V%oQyi+Mu zp}6v=zv` zW^LnCH>GiTE#i1`ia6H8xzN&~QYF$Uoo_uCck-|`O@Zd3Sixmwo`HcnxmDB4(xfMI zQ_IL8k6=0a$Q80~8SJ1b5|Dp9&U$wSeo6&D2BkI7xq=312052bxSq`YTfVMKefU05s`W}Q{GZB~{d_Lt%1I_Pf_6({wFq3g|c&LjVJ zbe#tK4VNJks(K&;m5ehW!`9YR|7l}i#X2Z;$n*PhJ7wcfH0`LZ$}i-(#<&Ub7q{ZF zm(Nb-4)ZDUKt&N$CdLBd`riDP474n9|qS4<=-Z}S4Yo~eLNGFZsg`hgrL37kAIePYI*z7d zPC#p0wIsMglNnMdMmf$JLG`n>is6YN{4e+f+%dVY%joR%uB8-Uj&+e_+OB?&zn~m9P zW|MIe`0re2{V@kR9&DQ}by^ndmFogl+vMro#Lx6Ut>}a6y7d3U!L5b{Pal&S6Aqcm zxX1fMw`=%-+M6U;#;H}hOer`bj hfGAo9P4+f+!vRN<4Ul*L1omCy=xefi!n_3v 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�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
  1. bCLT| z7xtr31i&uDjq&a?fB+UiC7BWZg}&LCm>nHr-uY8lJ2ROv^^c{aSt_)2eO!I{B5r)l zpNOKwJQ+t7b}IwqHieRmFGw)0YU^_K|L2BbxhVQiL9H;foz*6#Ly$9CyEvrvZRQ~Y zd_?v#dKS-yy`eBgpFevAzf9Po7GpK~h~JMRj-#QuY2bw!iNt%AL?Xx0dxvtYq^8A& z-+ub-@3bl9mmsFbJ1VMb3lNJth4oJybA3DQClZezvu`7|Vg08o?>s zrc4N1kBllZGU=j8u)(CSm$J(1Q1$JkDU32Dx7f{AMgyIG8FVR>qcCCVtM{6NpZ!a&y*^g}$JO;TRMsysDHv<>>A%E(Je(FlnR#G6NG zrX6}Z;4p_8(cl2gvn$luORIv%j%+vGHupcU1inz$tHaK=9iLEJWb0M?qwJJ6D#xy7 z>+=-6i3z6TMr9OPjZUGw&Ug^|ZcF#*O_O*x@?l@=YMb}L@p!1GrSb4^!39fSLb9-* zx81|z7+0i1X*VX;37wn__`WE`k6>9iqz`~)ppdblNXx)Lya7pGT#t*V>~*?aqm6JQ z(-k^;X)bL8tEu-rc~%stwOPvjb0N*G(pHN;LTxKk+r==z#cg)*;1B8ckYne^jgzNy zG1PsP3r19ZjMjJXMMmRqu;@DU>8cG@-7(Daq);lk7|dQ}HY<{vrl=(aYtVBU4LOc4 zE$sOh>^`a2g2#->2K$?@eWZ`-19`tqkcy4VbMW8!Ivh~-C?~(~vr9s@!q#LZJ>~7Q zF^H5Q*@y#dZNr`aOD{!C=q|vE{~CuR;J7Fmqq0taH%1LU^R4kW%kOse>}$8O(J7+n zXG4)YXWVF-oM~YIEVaR(eR4_4X{~|`OpFeOl#HF_HpJY0e>>Kkxqyp`REzLZ7 zv@)q4Fg3BmhK4*}FRX{t2-JmUjB`#* zTpcbYrNF<;erWHDrZQ(7h^*Uvgwk=jmwI&}30R;8k+cDfHMz=x;Hv1{tOCUzO#K9n z_=_t|>YKQ52tClUDJJCADMN+gM*_XTs)T# z)&qiP{-4grM9YbC^n}s{(C5xZX32(gqKmHTW_{#tdRS0zNg9jfXL&CL9Kkp081y0R ztSZPe4?-qd!$NWLeI!O9A-ChlXpx^bM|NBYD1i!2zSX~h@qNJ9TAmh zwGib+p>|2^tmEWD2dK2}Nf=A;^y|B%asEcO?&OBXI+A$r=P9G2(Xzl$in{gNhZlPn zGN8`bNs31esl!GZUz%{IBGx{cZ8Qg$t7*Hfsk1NneGIuYNAsd}Rk; zxUwF@cNl3FHHUpj>LlwuE>h zW-+@n&2cdRphhjMp{k#^whCZPGFmcsYtPa;a*krS8Pe=%tJu5jL`u`lzOw?JEp79C z@;_lT_59LJaS6JJS1<0|#TTl=AZpF*4ZZv)gcfhRbQ@pT5&)qE_Fw0U)Q{2WAxgL{ zo}&LuyDYnWcnXa8u7GSEj2Ai|5~NS*8V{I{#Y@(@gFS2BE|0%JSw}zreChZzF#?Cz zM91}~yc&~e5)*YC|u zfp&_dtlGMb$$>?P{J)#5LCN>r#s`LZ(4uD)#}QpNribK(tmMD3`s++n%Lj#|JG!i9 zy)kWQ?on|(ohax$y(=gNVB05p7DW!JhPCZ!_1?2}ESTmT)3DEGi79J)Yn!lF_>G&f z?05_D({XQ0-mva%qvIOHsks@pF`s*1Ds;ukKvbwzznVM5USB*`0F36S%;ZxaH9c}N zC?)^OMk?)84olvrINlO9AXkB(Qq`ref0n+V0fDl`E*IR0@`G)=a`hovZx3eGSQ-O; ztctEoeG8{3ej#_=!Bo21DE*PbS^#Th|w^+-O;3p24%d_ ztSOhBJ`6C+PW`BlX4QmjxxeaTXX>C}YEw6YF~Qh zpOibZb$Q99+0~$Y*{y4*BNv}iqTO!K8sj&;+2pvg&Ng=Zn`9!YT(cHqRCRV$$m%gI zH(t&>cA3rxAkFd@OKiq4ZxSGLcjVtDH{&X7y!)IUiU1ECio`Clu$VI25+R<(uM)f1 zrnjwKq=HI<$gVN*m<6$S{d!%*5etmc+S-Pn3>i6G@5Q!ow`GxvPjr6wcGf7GGapZ7 z6_P=-F`u0;viM0_XQAR~sxCeC89AR)<`sgGQejHgp!<3=4DSDpZ!?4I7LdaMJ6EZC} zNuy3%`;xEJ);r#Z^qxG{H?9he%_Uk>Z83i;d1{l2iFovfaZf9Hmr8K`z?E2}-_$e95=~b|>BZ^$wDjrU%TM#4h z$4p(3G$^8lGNL92Sy-?u7L2XLI!wUpy&p(F6e>9}OUy~9;&EiH-T8WC4&&{p>*9cU zWp|$#oGMYSEK=gS7KI;$SmW4sb~k(GzgmO?5D6slkZT%wPjg)!;v2Vfo*R71$2N9h zJ!uA_VqJ0$xCH@Eky7yz>_uX~winp~l!ntzLBS=DAkqHNJ9<^i9?YkYq=d}HrG=oW zTE@@}Y#3*&5NjJJKL?~AgLl=_1K)Ltu0B)`9zF@SQuorcJIbjVI7JZu?ajIY`k6pHz1bu5IZJ433%7kkiNh?QLQp=5J$YDbz6SfdwWw zLzHp^qI>1Qs=|tVeyvDl;1tl8P{%mU__OVpl+T=2H#n@L@ZA!!$uX4biP+Xdd4qB{ z8tk~2JTrFb;>aa$_yBn*!NHvVd!$n<4P|c_71tD4WM3`41{`x{!phMlcI&)D6m7*+ ztY+T3i4At5to!BFbnC0oN3&VruLQ8J^XBi2@7Jd42FYe9X_=urly0<+pnI(@BAR9U5yt ze>T%gYEcgXD&lfM5E=^XCIYW%ZVK>9#3h~}>oAByl0;GViCnBcCGBb0fT?nhx2Kup@a^eC}5yvx9hH z0_v*_kjhFz7CndH#yOzd5gKKWT^lHLvfu-eEiep(!w@MdnP#Wsc@|4- zEt^y**dVUNGpH0}1$`9{h~Epj@NY<6M4lwkxomxPq4kHj zz7IpV{kUnfNr%36c~>l&l{5IkWPyISIqo}^h3b79jcxd`-n#f`n#922b0UJFWaE+u zloi7!k43n@x+5NWH=O;&YHAnyI9r(4mHpsqnJ07ZP&H&>yU=szxnF1^3S6G-rN!4g zpZ*?PHzlpbXxBZ|Uu6j%3T$usP2YBTDg2yTI23b}hp7t=oj!_t-OMd^z&JXKAlgK=Tb_;B1{4=Kmjx)QamyR#1;1A?$#46n>m%u%I$S2f^s;Kfg>T$1SOuvb zla(aQ!3=r6POH$sca@0JlLX|fXTW1a&LS(0SEn)dV|HVusa*c_EBQ)%36Bl@P;%K; z3Fy|ic8l|EdWSI8pk`#Fo+tmg2sfL z9ogG2L;mP2tC_KChSji2$o_BWAfm2@vP~YGz6#+c6S-3?`C9jPaACv##lHYXC)#hp zFGHw1F(BTl9X;n&s?aoM6)@(+fYKVLE#w%n{L3-#?1oT3=7kd)DFbZ$)igAy?%OP@ z{-*1Pj{=GZ;0bS&@sD?hbtXqUWs&$z%8#-zj9-INROdJONCLFN=&r0zc^2m@yCg07 zAq3CCfRXe)d+~hH)0!Z8wPgG%hD0_Fgl3xs?b}abXPODM5#2hS%H>?4a?z-`nCX*iur^g5^9NC6jFY$0S9W7?Uctl7 zs*&BZE_78(HrGseaVHknp&zXfzlcXy=R0|SNmifEwnx)BytR$(awv^G`qJquN`RLt zeF~%<(5J`;qQ#)Q-X*TLsCm$sb~~vS$tptIH-*^29W3~>d#N@!aP~dLjg{>V)-n>~ zZVf({HT!hZ&0+(2Z`!UWSxS-%vxa$5+IJ-S>>SQ7@=pSGHR{VKO?ifMNB2e=@V!)Y z9oAsN<$Fkorda1jIZJ)Y!)bw1)!5J}NYcu6UN|%{yWJ=@c_}nWeW{4={26;pEUWY? zRy4EkzUlp@Ob+JB9Rv&`bs~&-S#7sG5&bAIUeGb5kr9&&3KpL+a!*LEfg+#IA(0TqV&p>!Jq zQ5Qo~tk&&K4wf<^^opalvFlDyvhbxPdM|!aGe!-GUD@Q<+Nq(ZB+3JdCaPeVV|7rA zRGTH3YH?Llk;iPa_1q^-lzBYyt4nCw;eT4pB&sH~!|(^2L{czqde3?Zf(0XCk>D^- z$u3uk`xt+MMcSyB|9N%ptz-|vQL!8~+J#MeS7!aF6B|m(inWV^_*rB(v-(RSC?KWE zp8?MMCU2O2Wmc{;3K7zRj0FBDG$2~rb&cJz*|=%US}&mv7TFV7h5Y6IWPEM5CMtI* zEcH|pO3+*-&NQefIp*XGFzkHms?P0ZQb#tMhV9*j_J@9c_g<=g$dk#ZuWc9nc+j2X zK$_6H+l&t(byVeJC;jmwMX3606&7p=Dek!@+|VSXK%94CKocrZR1B8rb6$izHdpK|jIt-TcJ1WK#!VzK2a6$hiwM z2mikB#6d;)S7q3LYrLr^ox&JaA(OrsKp9P-)GN z>oV3W18tgjL!+0e8$MPyQk#5hQlL_cOPbB@GIfB7RU8H|1P31xbm`67ZQpgx_*8=y zfi<_GkD0+zPiMDUuxd?vI`jiuuFWn36>hER&f2ZBLu5wQy;+Kw zcX@n1hr)W$)fX>|r!Q?=2?PlV4*8JS2cSCdjSC?gV%s4^={vGbU)eWSWjsEGyIUK} zWRHG0cI0+tpDZxFDt3PHT%1hPL!`AFBCsyBl}qCh>)}X1n#7SoPHc8-q6;Y9dy3!% zCe6@qI0jt0(Dj_M**O8_;OMO1+lmU787oZ`Hb4a81?5oNgbe(?O4dY_%9>h~3gGQL z{Tk$G>TMzPUF&LfutbDpZ6(iPY**NA)oO#f^xMGNbM;nk(F`Fd_k11FCT>t$XV+L{ zrgo{(L6hb^+JG0!3Anfnb0HMqC6JqT>#E5HmHliU7yz3UP;Oe?x3(!@T9Mk&WB)D; za9E_a6nk9i<%G)Ytc;=eUj(A!$=ubv5CRM`7`|EcIclVD%_=W2G-v-Z@dr4CGsr2k zibcjJiW|7J(ysE>6no~I=&DD-TO`(3_2+HqKr!`&Vl1!%8#C6J^6K7=)Pf}EcBisk z5?u5`CLmd+E>5yDVL051tX83R#W|c8=hE<{ZlL|qR(;yvXKi=n-tGvuB&KbeKr`Gb zno!LgMSR4cjoT@83e^!l9jD4qX^LzKVZ*15gduB3y}rz}}oFa6-9rd5z?ZndaH zYo9KiMFW1N;l?rk6jfM1m~EZy+q9j(GHX}o{C>8r3_zr;8q>Dv+L^avOqZyQ=%CQM zT8iizBac|d(KCt5cpi%*K4=x{!E1g>8H8w`Nl)8sYj3l(7mjE&kko~yXE9EZ?e{q@t6u|#t&Od`*I ztRNhDdEqD!0yj~k*VdZ)hu*}ow~r4iMBfYherKTW`P6%#@9~6#XM3YxZos{mi0yKB zZO;C*HI36H>aQLTS9p2^y;j|v%}+9{E~>s27qvZ}`p5|S7C2mPU1*rTxhKS>L=G_V zQ(qfT#YQ4^$5=ms?9+4-iq+aH*xhPW_L(e3vd{$cE7) zbMG5VWWNg$u?zhU+l-DV=?hp6IMMS8oVElPcTdvXnmWXXr!Wla%0=7k_YsWYbh@;& zo-f9g1Wr(sNd6lO++Hf-@yT66CdkiN-G+nMe-dKA-kwTub(BnCnc-95_ibW|0 zx|^;uV+JlDnYJ_>3uPdmMfpv@S2g>*c=o%jcXM(IS~Y6pku3oyp_1J3`U0vfmmFcR z|7OXPNN@0UA5WaTvh)0nt4uVTp6H|N=|Y^$??O?}1(}TkYgZi&Xz%GB=wb-_`Aqud zRazdtm*vStjS$%*XbbQ(wS!0MbYH$ifh}`+c7|LO)=Q3xA($~+&bbrG{nIgSj-T5u zJGO}v`4GxJmD-I4wOS95WG3a!CfZ_syY1NGbvP7Jd9_{J7-cnU>_qS_wz+TXQr5dw>8_adh<4%D7C5$C3v(Q$H+5Q-{*7EmA#VE) zcpox?V*2?{eG))l*_#P8^Tr+RZ9ci)!mQ+Wv~IcM3()d@ADn-9fNb3kil-{;-R`0O zpD`-Du7Yb`hkb8soVCb4hHfaYDI8TKQjcATTyZ!l4f;ab6x{|Hj$sEZgC>*Uu4&uJ zqtBz00X)|b#WhXHu(B~VX6~aR8(I{|lf(nPo+4iz>)$N(VM3p*E+VWV1M#N4G5N5~ zn;VmPsb;hDF+M73+fr-nkG;2fP`)B0lTF|g_%l3XPgvp$pu#(o$_hI>Wm6Ljtjug= zkSdpIC(0{s-S=Qe7c{ym6E}gjq}yw_zSF7phrU^p6Mb1;Sdih^)KinBt?TP(4>|3| zA@M{ZW}X^j1?J58D28}H)@K=)DJ7VG=|X}KhRo90ED zIS7VnOVdw(&!@Oj3QSU?8Sn+1bOfadpxW&Q^5V{N8Z*wVOP1jVe6;W@-N|46WOq%q zEgty=x!2Z_CMv^e%0mt6zD$6bW9tk{lbuk_cKbB3?xQ940R~#a!!hoC1GSjxNw$DC(`52M8Y487fe1A4) zrhB*(R-fa)kXU>602dd+u()7=^_R7=gXwat*3%dJ`oXUKmK|FJJ{=-#?O$FcRPx|R z@3Bw6$CQ+9XBx4O&A^epEgz2LF0;%S5=lIa#e31FB>*rz({?xp-3wnG#aE8wDAU3L z{-Lve@Y|vbqT1&CZhCuVeDLa|8M@ce+OwUBH+Hxg!xJXBRddu;48Xz~n1qFWDDKj@DqVBgR<*5Mt9HW^k0?*@qf!S?HMjMepJ@Ve zR{8rhCTA$SHg@CMhVxMW#Dg_AEL3Nklu7s5#4(!S@{uU& zwhwtN?}pg*RnqF5&L0+xBN<+Y?)1Bv6IL&4dQMi{o~BJQ~e zndSCx`_=4z)8Qc)p(GQp==~XYfAJ;=HqKw*c+~v>yQvqyWHNuZy>CgurN+WFh8Zwb zN!ad{55eyf$HJOBhmxM2{P_sYH2hVV+cFkDssDgJtBab@fLor{lbIAGdqd{M(>D7I@Gqq(h*2X#BotgG z2F3I(YkaUV>CP^>&Y3P5^P=7OwOHOzR}so1Q7%~Lcq`GK-tJsy@kI*j(CNj(2ME;X zO90gIA7T)agv6v))G3yzujlCNz>j$B39)xJ`rD)OkN^4FH$Jrd=>cJOZ9_cK{8>Bg z$I*1K7~Sa`_c@+kv&DgJ)|D$V=j;2vxsKpnM+YZ@B z8V^aq@V#kz6Yi(G_>x^zR5qicIUQY8QPz)u*`CES`SOpKQr_&E;`xwbl64lQG4e`-Ym2d`L3~#HuxRDlntI2CQSSaJI(O%~Y2tzY zyP~f+t%Mudi@r0CC7Q}EMT7*$Sw-lZ&Q;ols#ZY09A&w5DaSiF`e${p+DQT`9z$Y+;EHW{ zp-bf->5~L-5J)75f)tM&cm&fUJJ|BxhrPL1E+^mu1?6XFeejjvU~~kYpfY8M@~BdZ zb<~Zo6cA&wfAXLP?k-LVL{e$GLD=OoK%znn&jWQ2a~Fj0b9n~us@a7<&nZ@Xh zaUtzZ!=YF768}y)QFO zy0u?m4r8iD&&iM|)_+ECvtILNI&WX(*I!h%!~D=gZj0F7tGb7d;bBcIw23G?8?LT7 zn&8VPI9nu3akrkw@1;%NZ@ib4fm)UwL0=gMYBB4=qrH^G7>)_p$vjL9v-l9c00bU=v{z$rimF~)Pkgmm~i4Y>}@qIHU z0{BOTH|+f71DiT9`$~yPTkfGcZ5m8k?dS*qeNcM?9v~N2n}8(}vSX}n65`x}If@ev z#Z4w6wJ~6ffc)s0+R|HElZ%XkUD-imbnODg-k3IRxw-l0+jpNRF>s~OT;%)n5gba%hNlUqq~f2 zWw7|@C!X6(>Oxlr2qombBGa#9D-by%0eSnk-ZW*ZDW)hwpJ5SQCJ~LngOS;PI%8Vy7yy>nX zhj2HBqL^#3hA}<_%b@d_F0^;wrQ=YYY0A@ADNe~v2&TzUZC2jMK2^#%e|)Z}ifXWA zq(3@!fm)}sIR}UY@>fUg>T4U2_j)Yq((qI{M3mkN7w7oG%jI!a)Hfw}_}TN>-#B}w z?KaLGvPp+3_DDif0n$HFS?}9BH5T$w*t#*UY zh%P62TD|d-f1!g}CP^W|7U2{(hoq_V{XsR~iKP1MmBp&)Dk49=pu`6gMH63ca=?x> zKGl6HLOC}ahD5_rEqJ_GD73OlGP*WDdSFkt@%C;u^De@n4cOTb%!CfeH(9DyOcF5i zmL={yk8f0dp5aSP>H8L!#{SeBYBFgBynyX2MutNQWTCV4>Tu})wRKgzHmAUHJ0Dp- z7$}#?@G(vadGu<+KR&K?PsXSr+&?9&&uz5SWz~AU#VY5Y-`j4298O(69up<@QX@Tm zxvd2~kQarh!-tZZ1Whdyd`)Vg${`k2Y)uEwPTn8e76yAo;%Ky2G5{xq>jyCX)1lFV z&+q)MPtCJ!HfDo1J#L35uNFTna|imXpP#&&Fm``n+M(@uTFkt00H><~9CT=$%0#AS z4{~p315jaXZTgLYeVgwjFR62s$ws}g4Sh}shgwHf^>>L9jTurN z((U8%2l8|E%2cM2iyw2sq(Nr`r-l8#WWPnUkX#4@!KCeS6{!#Y?o01Ia1Ug$CwPd* z|NP77Rq=uEM*MF6MoW(5AxRq}=+XFWm;E^8x$H~xN!`B(=!Mr2kjrv4`-o39?eKe^ zuZc0+4ewsC7B`wg?96_@SZr-s&XcpWsAQ2WOPsXD_MTFSWO%Je_G zY+qIABM7yy_6rBu1Tp+A@SGdFcHPAL0r>Fo2+z;Bq=jwh<<<7(F|mEqi!$`lh-`hZ zqG|*Pr?Xj9*%ZHPK0U!P&Bbck>tE@(46<>dWs{TGf1VRIiPmV(cAF+bRhy<0ZnawE zfSW>gFu)(IZ`L)m=n~_H`u^F~aJV(Wo?Q?BOfRr)y8gI@xzPA8aq=)_)eWvQZZcj% z=>ZH1U-?E-!Gj@Dbe@8j3_Lj`X`=yd5AtVlnim}>qu73_qP{5lotsWog2m3yarhqb z*FC3}L5-4syhraTmu|E09AH8dyu2JROIYFi@OS>F5fR9-F~`wRVsJU<_r12C7N&LIG~+NP*4;7k$SzPovI^Y=Gz zKPG=%xhDOP-VRD_Xk9Y3|ndbnuYX zlR-B7M!-#~2s z{^t9)uV&TdW>xknV97`G+1zH-2bnk03vV9Jv30;<5er?!cHkAi}g+Tu$Z!E*P(#OZ7;|^QH zy}&EQN$>lk5e?H6jp+Sty>Db4W8(%)9aJN})O3;iKv!0NhprxjYq_MisTz+Xcr41K zkZalq(?Nwd|ETLPX&YynJlYP&X&W7vY&2YZrTS#Mtx`AgeHSyPP<*MdsI=g!%Q!#8 zSW#dCARmw}(YnGHes{-ef9%`t7|Tc7MOHFL;#OKyu>rVjustx!29Ue5h(mLtYs&cg zN$TBiO{1mW*QVQAXfRx{HMUB=zOL*(a|HjQmSAZ@%250aX{QN%3)P1N>uN)`#{(ik}Lpv8Y@b7xI9pe2`U3 z8*?)_Ybm;dud4gK_azI`-uQy;)wM&%Tp#jbye)MgNC#vzr4b9fxBEnS{_VrHN>GU^+cR1W!9b$b;(R<1w)Z8>63Ff=+*ers)m_$)}; zm?OFPm5oh&8INiYW;PN>gJ#ZfQerwkduR;@j(Tcfimi=qmGBv#Y-ju&o;Kl}_PQ@l zKC$dBevN?1)k~S<$ zhMKwpX<|IKlEDCrB?7Ec;Mgi~_<+B24n+=3z^e<|WVj`0;8XY#1;>~G*8{9YC_;YK z0QHMn!KYpVSF_#2Ef7Bn#`Uu4xgx+5Z!#n(xr^BVsT`Ya^bD}I{x%*>NjL4DlA-MU zK2yv4yQxxe+qD6(Url=P(u)k=iX4_$zLDiM!I+?=LPYd#z>M-!zsgP@Xj<2Hr2A99 zUeZp5`aZFm1KhfF)Jk)|iddXaAvJ3p#5UrAuo}$B>f#xC7weTBIKo83QTOwRiZs`o zpi*3sm0BuPN!CZR$mm2UBf08hWS!->$M;zf&lz0WC?rIZCLAYO2JL?`om6oUk`V=0 zX;~DJDM#~->(E}5d!7<3WkbXfgE^6}X<|A@i&lLQ2*n&8G#*TpB^f+jE1pM(LHf05 z2#9mDgR1Zz%pT)li_klXs{_y2ymDQfeC*rSsY5}oDf`$9tAQ%+s=nE%@yGcyPDm(3 z#&8rZkVzyv6IbH3Eo2Cr(tFPrhTx>OaFU5!qz`O{=tpU*zRrNy8+sUuu@`IZj=gw( z@}1iNVn@Kh2^H5hE<$?K#=^@4`yn>MjXzCNowqK>AWU=|4WLA)olnt;%HZXab(N5S z0@ol4pa8luUZzxZVKZ{ku>nfAO0W?vC(j4jS(|OJF08^rVfxP3e#PCB&RC;x;BxO> zX=xj-4ZWi__%e^fUKrVa4;8XF(E0f&3No{TeKB*&QFhtS#V~-3XSR+UT3$a*RcUuF zvlf}QB{#pAmtPQE+D^%A^2%|0LcT|&j))lyL=cyd-#4NdmPe+ltReTI*&uyA zv_dTo!2;&?RDi{2&lYE{+N~dim$LeQoyL$7&{69pjAhq{+Oym3E?83W=#0!^>h=|| zwV}b%&}Sql$MF|6LQSMEJt^G-Xx+~lzYuzVG@%3#dWd% zr?AhiY`3?z$*{X(i|8d?mMk9baHZT~x6wA)Dk>us9-k7|3hp~>XAZX8SI6(>XILi;v+Q|>lok4m4CLC^& z*q4(-W@vYDq=vR>^|{Z*F;?jzTVL77E|_n*G;AgBJZL+lQ3o`i(SoK;pniTa0mjO5 zJ2Ehsxs)Nnm=dcoJ@2dBY2@~n%{G2xO4n}tr+_NdzZ5hD@_l`4FOSPph&XX#K#!mB z7p-PS100yJ0u`*T`_tDIu~=8VWIQ=41A*xdU3Dxx^Yu8W;%I_3V1iHIVPDrw3x zR<_c)F99^wHxGD{?9>!|3KA(cVffc^8z!&>h902{MwGNQLaC`Cn!_8e-!yIakmW!A z>uVF%eaeaqpemZ0i88yPgG|oyO|r(}QZng}W@cWWuHuzd=>(#AHW znX{vp&kmL`PVTA0bia9iazL2)jlvfEl?#&?39Tz7=Iw7@#%G>BfL#9Oarf~*V$D2l zZFqkK9{oTbdf19c>^)jn?z~xPoSpoz8rm8{-d!~_gHJN^>e}}4P~*@&1rh?=ryLaS zWPRV6E{bziJ#7e@xsUP&fNI&Y>9RUxy*cY7j)glRZ{A&nho2~MtWHH=`$+caHi7;hv9y)lBtKCE-?o`s0J@gbO>aU;4+$lM>CNee&mc1pFSX2ht&-BqYJq(-zR8-%gWO%!?d773g z^?0a|Y!aXCudc>9qc47E!_=wV#n(hDQnaBi?ag>?Bi6h?8XA)MxGD0CjXRih%EYP* zHL^I|_wG0ce9tWJ)0KivCn3V+S(`Jv4NTsP%tY0B^W_S5Ay&ZHHlZk)ro~#jnt?0VWQ;W%ODrrV;*4 z6KFFQiuGiJv~0_3>GqlN|-(IB^z$G&k@r8XdUnN~fR##g3oP3Z*#Eo!oui2JK;T(Nb*r~ZLy zjmHO*)P#{Ls)`dM|keu_$h!oXmX z4$&*wOvtcv-81h(X`7suQ2o6%yZrrt2_F@z3N>D zs`^&3v%D!LT2(vL(>75M^7{RHd+_4f$tx1H??>1c%`&8T%{bE}M18Y4b?JGeFC3pj zPG&^Oq>7F!Fg#7O%$ojSYDOE~5A%8%YwX5@2XU7&iWC6*Qlxo?bzQXJIb_*-IL62~ zA%p*yEgKQrvG~MM#5N>=kT_odR0mBE59$xAL&T6_-$>R=@##`JCx9C7fzlbaLrcvm z=@nE`HKQc$kV>#C8g3Z<0*Z+O1a13zHD_#Qc7reRQ8uajW>5>Q_Z|e|mXxa^z68fQ zSf-)X`Y~c#E@8%1bvmm2nTXow5#jE16&RL4Hc5^lzBKA7 z?d;Z6F5QE-t6;WCE<;&q>{e4d$n_F&IgsJyeAfN&b3@z?kAebYf>zHq+Uv?ryf%Ag zE7Lc{HrrlKqYTR!Wg0r)*O}W`^7XmRcI6+Z?~ACIl2NHH`%q7emT#!)sBVy;Q3&SF zR*9jFnMY>A`=$(5)Xm1O4j*~9LY8+RB2#s$@XM|eI^M= zyqGS2izbwL;!k?So;s5If_62b1GNcQbbVx~b0F=qGAyGUE)}Y4PZKE&x z`sqD-e!V7{kwV|?O(=DI^xvGHTt1`BGa)f+B52Vh4R45Xvn~ghj(F;vUBn1t7!|?1 zJTPCH+kr}#?zM$}BfW5Z_ChKms+_O8Z?>r)O-qI5+DdCJmyqd#!iLdgG0q}IHe7`H z6Di`8YO{@Imd@5uPq4sVJ3C7((~GDz8R{arkao*Y{3VXjuxk#T zQ7nqMQOnK?GmrBnIJu`r*0p3Cx7(P`D_oQjoLAR$hQ?;Z|NP|JW9%Y?gC`}eSmEp1 zG@KZ6HY`&PpUb`ge1In!-nNg70u1U)^L8A@<(T1O36<5$x_bQ#2k2FavHl}&7|IozK-q32y0VqCchc5kpvNd-V;c9F z&n3;gH2Te3PJ#i2bcIom8q_adv>KHYN{efY24@+- zeA8H_XOt8qL$1PVU{v0i+O#tc6c2sfuZ%+w+7`T&b6+^Tq=J(o+A2hTn;go*c?8;& z?VKGOs`SoC@ij((ZOUYNBQnvk1Q6K(l*>--JL6Y zJgb2h?{>+?C4Cx&Y+S@i5 zTWMK|cRm(AQ;W2tg#z$cTutUfKy_o=^@~a0{R{DuQ^+6dy6w>?1@ej-Ai2lVHjj2PiAzTKG}Ha0Ss`XD>KhEJZRidFdVpicx? zvGL%(G--YRzBIukY3`C!uUv%f&SOCd?m&K;YWAjY8jI-5xa-5mh#BMz?Z}Iign;oe zUo*ycAUc2V(=;XGTOax^1=by|(O?T;2UDEeXsHWApWN+( z6ohjS?7DAFHA%~G1>;kYi)0{89g!}46BitK&j|1D14CcQg{+J78gsqBfUvoKwj5QbCZzOs3Q-4}X4@J1H1^y3 zXoK{flJEdU0hu)GW2=Cd=4-q~)=SeVTHDSJv{2&rHo-8QmmBjk?S0kHHkn+XJ(g>U zSRcP^RJMWeq~aVkh6;>0G}^lOp zodXDt-9$<}S?a>_rq4_IV);0xxDy6|WqESa`UpIz?eQ$66N%ft9==Pr3}0lvMIbHu z+GEBhDQVoVMDxf1*>=H1Mb>SDS)&s}X^>S~!0ld|lVd5`!jG9)4%BH%+C$^#LKc|A zF?gOrg38h0Un53v4mh+hZH^X)`DmSWqz|18@VTzgUwPMJm6EFGPyO;fUb02GdlT4L zaR;|w@=ucJkC%~B|AIe%Jhk_Q=X0;(X-tmVD;w-*f7jmLbKa(H*0$JM!~yD_LqlzI z=a0V4&F%Ja$nzg_Ywqpc;)Lh*3$b&0envO;E8lIuhzk7ZUv>!`27P_ANn7J+86HC> zYbs7B)@Oda&NUW5s4otM2Z(j!LX|6lcjPx1WxvaXwg6B$el`a2u9@vSTe$$NOw|ME z7W#HpSXVQ3R9R!v`e zw&JxklE!yuqjtWp7SM~X57cHJDruRRY<&gVsUi*GiOOQ@*0;pxI({vB3;=D?LJ10_ z^e@?I!84p+{q-}_oLbYlayXT?)ofc+_Y_tY{64Lsf@!q5lk*w_McA*p0n|M z+O!5SNNaNZN7{NXGGe4l>=-NUcGiRh*ZZkQDrKL#ULu{lhQwINivl{>UQ3v-d_k$7 zv=wmj?3=y`m_^C)8jrw&eqGA(Yp^31dzXRb&o#B(`<~v-+GGo>wYe28xu`32+mWj> ziH0bAtZmyS73sD2-3o}o*lk?8elinDNjwTnfpliwst8{Qw?PF4JAVdXeUkAR7svbr zS}y153g6RBDn{wP3vTpL=1*G0fXPKkG5lsb1(X5Bat)`XNlJT-r4!OWP}#Djwt2ky zzd8KxZ$d2Y?h_rj6Du+007q;8-RVQHoBSDk#4Oez<_mdhY-*JsbD zV`%$^h1S~D#C)K-aLM?^h_yWY*l5nPzLYbLRBhW9D4`hk4b}sUUMPe($SDKU3P91$ zQYmXdLYues%M>;#Hk>oHQ>)E4U1ge1pBwySP1jX=wfc>ZID>jI{0DOzPntS9UfDZQ zEzfVl!Bf6D>>(#_;=r2;k_!3gI_dOtYGc}xYpvH<4cPwPcTw;3kgxXbPkn|U!kP(O zlx$gjJ13tDAs;;lqV>SBH_LtJu-_;%*b3sQuXm9zKnmbrCdBqd6hZdg@_W@oGp$wx z6x*tkORaHbb1w`cq1ZiI-UStl+3kX78bh@#&mUhqIk?2O4m)D^&E89%9>fzT^2i-ZA4PyoTj_v|3 zGuiSJ5v?_WNZVC|#D)K>F8@l{H#{2UE)apx*gej!(hWkyfdQlMYtjg0%2)sw-gFv} z`5u-ZVayjUJE(QgRB4juTYCO#R(++@WV4#$))IypU@8@>P80gl%e}U1+q9NhZGa}! zeU5aP`Sf$&08qf>y-sqp$YjJb&v^M?JKl93U3Up*gs9tJ4}2|BH}ld>LAEu^gUF|g%&j~F|m(`NLC5jn_@`b?TG z8YpUXv!x%BRqv`&X`nT!+b{djYtJMc!_DfOzQAtJx8ucG7MGIV|J8)g#;Kg4!R~A< z>Jdop;`EE+_oc20PLMRZGFHHE?%OCvnIkVu&-bAt1$QQH4-ywzr-Rt*RFKOkv|Msa zMWre4<@-O*O<=xF;!-kbFJ zB+3;MNon2NDwk|sndUb4_jFPkvl49C7kLCq_D5+hYpumRpmTs@MZMGCUEkTOWCrHu z+ndbJj?HPvRl3@u)1Y&Af@0!WX3?0TqGXLzf263(~g~fy|!Jq zOkk~h8>oQHy$d2HJ?UiDHjKssIwF0~0D5>b)FN-kV5n3z7%beX?-p?z)_pVkq8HDm zBb!a9SAo%1MYMtz8@-=UcKOP!t%6xP4<3h_jV>!UVTvnLjW+Hs&234Ua!5J*YNw-q zf`QwSi2)jZh+@1pKcd*61p&g@p@YC4b?WW>SP#Fii!1BYfweF83n z1G_g}u`T^ZObqDDKF1tjB7m=B*kQDdLlU1miX=XN_`9oZ%U^h5c*LHlo#9@{R=GVO z7=jywomrbi2U}k_OXhN(0%`fIk|%0W0KdnyC9a}tZx=N20L@OxUn9u|V@DsrmyLsC zE@MRx#ef8^QwFXLjKW`%E`0URqU-?WsAP7+pN`{1cA3C9`YKOHKe~?moxTt88x#6o zIH!mVlN05dANyq!L3|mONzGPfO_ZCsx(}7ZcC^|pI9KU+pVRc;0@CQW-UjqmBo0k`WP(ATf9N?>MXOd2b zSAD1_u%mvr^DWVyz)ZNAQVM)B>43$jzE8u{dnHDt^<4yPBRul*wO4GNUH?KZu+TH5 zOG;^0<&t3Gy9~Uk)-C=2W>#%J>Za>p`J$Xu*ag@6#ww)7t|_V>hyT}|c74a6KT~ItkomGDs%(i*U)vd%aGCX%VE}+jIQArJ66R0c28c5+poVNUQd)uG9Um!m5MNOl z;lm|y>!U4bO;f1A#_a0ZuhbT`aRnwcNyyszkQ_={$Qv{#MI?G2jbZM-5dO(IJZnr? z&57Xrs}mEXRxko2#QBG{4+Aiz9NzQ+bFQ2O=JyofKcQVHyJllQMDDN8Ddj=mZcPYg zy=(z422ntzrm_f)^V994uH}y|HaeH7#rJ)&wSfnVi6PO-r$=_L`ZfhIH|1FPC8I)z zFh~gU#Kja^MEd%YMzggI8|*XPBDuIN<(CZ6DoLPpX{FjhM@9&b@&EH6CS>(Z)6;;B z-yho*;{JdAN@Q7i7f>(#WYPSu?gz~j)VH3d0J@q>UD$0s70;)M6aQ=(9TD0g&?qTR zPN4+jfyvU`?jP#Bbi1srkr~+d{mPkmyqY3%|Cy!B>PVa>X)g41Hy1yVBvB z)a@lcr>{yOh>ayAq2P{8WUfRSz|zJU(pVhUdwe4@Mb2qm`TN3mU8W?`n##_emg|LX z%O6dd4GMO#(1cA-|6BT(QNpx>m}g>o;urh3P; z??VpUsNcy5==vGb48?qjmFlw02CkO!{+H*6wATQ)kKSu+Ne0RO=mTk+I~#8mICC1C zfgDqh;c_}qfBB1(@9o}JsCMj_HjNX#-g96!aE~ZGW<3+A4^>(lmMyi+L!(8q+oQAX z@r%6K@g{|f46CCba$R1}4}Clstcr{9*Yj5H3|{Gks+odfqjbu+dY8?4ATUy0YGQN1 zBt|eUlrT0Tpv41mn5+oqv#S!28*r$91*^ob>L_Lsaa;nT(#KUZ2-ou6p3x`vG`7>T#;gu3hgvO^uH`7dHm(|*}abl8`Nw;KFRV3v0kZi`!L~!^_6z=;r!BauO%F@(H z0QV*)?p#9zr|ssUlCZNzsc5%d57Uqu8sF45xMDKD@sB3<>a+=-!UAOkk|*D$tB`Ic zTsj9RS^~RRNR~-3DaZ7;Hok#DK^fIh(OrKBTKwfkqaRP;q+y;0g5LLnnOrl$X{B_p zP>JBQ$ifm<8hDIjRmI#3#LZ*5MVolX`lq}|o_2F~N??^0eF)UaBx6{5sBqSjw2^A!*>wNke45OdH#gcN`=|kJtmdM3o zvDiI(PRm0eKn3&5a-5h>hv&&jnA(xA^q9%^XIBeduypSBCGOUnq{Tu^yF>>~HS-sLZ3 zO1Y$r$Hb|;%}N<+lOSOcL?OcwLwl-}c9 zNw+~THQ)d-j8YKLvX7cxq0X+J{C{d!^a3eC(Wj7S9DgXPEgfXQ^h{^re%g)(Go@bI zxdIB`YvjzC^(v zy^nQn<=o%^%9?>!N;3?`3aOA_(xi1bOn95Wv*0%wEvr5<&MA6EBTQnXmC2DeAXD#F9 zL0(8%0I@LA##{phIVab8E{1gOHW5d$R0>!gZYq7zKU|q2-tT4YDvof0bJ-%Ik>9T` z`c2<U(CfIAqHWX<_VKkE0jokCAZI zCFMbhxfp%HrNgF^*acN!jh#$4_r35y`WSKB2Git{nD>sR;Rn}l#{y37NdXh+2UM53 z{l!^Yhlb9y?aW5@r3on6EXKxiakeWC)mYXd&raS8ZC!=qLI^}ef51^D+!4kl3IF-G zJeoIL$e^xHUM5$x(lC=XbK?@2>ZjC%<#uBGa0Mrm$}^boRjA#|={~tFq>8bWj5{iQ zIg_)1x*4B~tq&iC*o^usGs-0le10af+~t?oANcy@P1V|AI_=QbXdbokSsr@W#G#Qj z_Rz!@1R;;*o|5l{u@+UgNisNWbKpBZ!_=$3-OdHM=Q++U$!lBqW?UP5PtT|G-nYWvLrz25IyE3wFwRGg`F zC^EfI$?OJr>~N~+;^+F5Q4t63OD6Xs_XwB8c=)(B+px2yg|-zlD65cMclNG4*r#GH zo^<4x=X{@PNB+w-o6|4Wrz1E17BhsN@Ht)SVr!~u=-ESgVw#(jlc;ret9Hd26N2Ak zDTD~Vi2=FBs51g_ey?Pt_#uGat!&5NY1X~K8nY7(aT8`J1z^f{ZA!%bF&as`FY^AQ zw3p&3t{y0SNTWe5F*&GND%B!xJF}`>yA@lG>E}dQMtr;)3l5*sHwS$tRR3qg=~G-I zy8wQ@IEVN8;mjk}A8$DB7HaaPRbj+RG3TwbNLgc#TrbvjqCbXLDrv6Oi0yq()!(e$*B)E^tm7ae^;; z9LP4VMniq}j`I8&%PS(Y&{>q5)vpugT-V9+uj2QE(xF83$a#{DakI^csO4)avv+!E zqGrO!qRGKa1Bv6MV+^*Y*iz*fB6eXd$S7ttmZrq+|D>O23{OTQyR8ZC#;7&Iou-Kx zY>ZD@9aJCV+Vrlpv6zxep0<8Zh1}y~HK!7k+u8!bhJf95mIYl3BOWru(lk>uOyEaC zHIgK=zq3IkE7^-^Wj6-32Wdmi9coXyg(HYRJ#K>W`Lzmipbe=zONt5!n;u`uog%n% z*@q)o6lti4aiP!!_5@?pEKP1wr@5jIMd7! z28c0zl`?Xy@!u`Th%Re~>TD4}wdWY^d9}O6+vN2HCtdocQh~oIgP929n$CUIdxOim zromd8Btz4$d|3Bs_cX?N_qotSRr--iuq>k#Ib>-xD?Y`kGV;8YS@~edq2&-i-#Mq?6J*F-+q`JuBzhZB)$oEwM6Iq`Urs?A+X_`FZO z-PmT?jT7)2*3dRJL&C>)ukit3P_R9UN{F06r-#4DwJ@oAVUjtvcLs&pmz z9V~W4xVTS@>5|L?K}x%;{GBWk!33DaQFp6g&CRT(9x8CejOH#84_|Hx$*mBRLDQg3 z(bIjwZ1OCUT>M+#xAwI2r^EkXE3`Yxz2d-ZU2zjvNZ@RiNHee;o@Y3fd^Toc%fRE@Onv+ltcu1_p4Sbd#J4n|*d9J&>-U7fg;n5aIX*s6dk?RwZtSou*-IZ;0Ho>1pdYU!PF|XA1!RMy_hJ z5#2E++UM8&3_Xq!8Re=J+x^R`wPA>7+Sup2$TEg5q2TaLS{Al)by8l4YaaE(XIl}h z-GunXY#J9QT60uOmw$}b)nENgLpT-j*I2%+IwB135?2~3=WmTNl@J?azS6K~`qQ2d zE|^q^7Uj*_7#O)7wMCDkSfg+fb+%DB5-QW&SW%Nz0DtO>T%5c)Y{z^=UB{r$OdrN$ z7h*iUf77}S7c`yU5rT3|M4c@<-#Ciin`isNn6Qu*JGRTvhadv!&@TBrCG7 znYR0{Y4<;dAph)2A==X4?(*c{u3nkd-p;9ey>**yI${z#pQ>6{=qm;9@$9LNdL4+Y z3WH^DTWJ`uLF z9oRdJBi4d{KgN|l_q&+v>E5JUaDDRq|MQE% z05+gc$W+TY4V&l`_uqf`e`nA5*+^?REjDxgnTy8fPar!=3@Yd&8Bk27YD1v$Gra-5 zA8x)FoT8**k2LiqJUT2xj18PY$gShGoh*op!t6Qt9&k@PQzVb*9-QfAV3|+j==#qFPKf2B1B+D`7+SLS7i6b#00P zQ#~&tYO}}4E8lEVA|ZaZ=}m}#b0~sRMvj+OQzZad?d2~tT?xst&3VH2Jbod!sjCl& z;|3jB%EL*F(xui5cmTbFPFVuYK1yd6SjeB-KTMq-8AJ~Q5=_WOr{2V z8hno=1w_MK+_h9yQqq~d8IK*}u1azGrVoB+k0G?}n|3!Cgm!rs-*&;}F7E|gZ(Z<1 zS%wQU1pN;XET(YwOOkC}XEOAi!p(X$K2u3JJy5nw<^PBw4f+gWJHP#Ttow zQEhH)wzAAJ2^wGc3S$25>)3VY!zIr|8 zk02UZkFLzV?Hzq`p?FK7*AX?v21+|#5$8rGsaRIA&{giU>AivwDdVQADr&26lgiKi?YBkuDq;i5auK}X}^W$7Lp z`agcd7-^luU7NrkR@x+@HJeI}_CQWOFd6hd#Jw{Dx^pwmXBXWTZi}IR(fTHnfo<+~osue+E`BtAp#jq# z4KLKJaDMW^l+L7Qx!(>9GRevPVpZCdSK_T%CmKmGWonm^t#6s&Pk!Z;6gt+dDj%gsz%gG=2@bpew$3W!1F%cju4 z69#pbTPxz*%HQRp+cH}AM}iC)t}1eUem=x(4TK8b0`Tc#;9Cs6+VftCUp)20lz3U4t7?w=Gjxa&h9d`-}2Tp$<4g+&FL=q%B}6U?g1=i96HLP z-nZ6g^p|-n)$hzM?o&mIOJ2-%?p+<#EDYa6bDy|0*IbS1hTP*2oNd$L3o{AL2iGKB zqKE)8D#_}VokKWO}+=sJ*<4<80A zh%DSMVQIN_$xRCn1IKkaux~9BhvI)2f9~p5xXyjGJOn%|OlXr60K*6EKmI8KjQl!V zZEcG9&+xt52dgoz(Cj9=)KJEzX?kUC1$Eov_zZSUUFY=8Z?@>aUm5VO8YCxWQn88> zbEeQ;V8SefyALhumW2%+0&o#o;R+`vwvpRV2CBtCD%qUKes_LQ=qCIMa-1Ipk>BgN zzGU!$T_|QCS`M?$?gThX3}6(M@5>xjByAX!$3^o*L-6{_B_qP6C0WjCpB17jJ$g^y zEKn5*UWOFw#oJ1gUL{NqiL1`?>nuCsFrgEFAcM?`*|2oPVDMG8rQ0B_84sb##h{Rl zLc3s!=&uTNYHeJ%l~+i@)#(_gXcNi@hzftQ-YwRtO7r%kGRzwgrn ztac5u5!zm$07*c$ziW^LG(=Pph&)CIn+pglLU`keQ?~jrME!$v*w*T(PN*Oh&U;Ly zNhM3PJ2Db=a{Cc*-Om1&fr7OCZWrw6rC9#quKff1>WBz+&j~+5%ze=F?8E-~U}I-w zY(`VgO9SefWULXS8PvLo)*lzwlZ9M(Ip-&#KxjhJBv+_jGghR>)ODI z7~Rz;j(2NPJ%&H~4UQNT3tv8=LZ5iCkAjp=MFF0V7-}`$IXf53of2pRE-4D2#3+?e-zCrp4Jpi1RHofpwX`Dd z5xO3k?Y0evIF$0bqehw#Wnh0n<78dg1(J`I$3r!c#|P82rjY|7%e=Aw>YHZ#OHqiN z>p}9Uwk^z#gOz2N(rWt~(`@83F3Wd+-tvS=5#+e~7Nj9!V=cMHGI6=?6UhzmA0Nh- zQzl|4X4t?FIP|{%-%obkZ>(+ko#|x~o(Y!dcWCH8&LN|?m*Pg+Yjc0fUtT`hGA$BD zwVnx>uo7@<<-=YZ2cDy``*s(Rn^NcztSb;2LcXGkL`V=SiKIzln3EQ|HVF^`%kgoL zjI;ZUPM5D&Legm2B!mmyGp}WZlYB(xre52n_}Iur)ESr$V}abkA;~V932wn|#1sk| z`S}sH+L{)^#^vgdpcmk)B&d(8DKSGad{WD04toxy`waM6hPQvr&&fLmp+$OD$_Q=e zx^>(XcfFw|RHMJLdQjI*HN zo5t^1Tj5-Xsrs!S)FgGcKYut_{Y}7N4N^)_AL0nOt`w&1tIBNC(nT<(4fE2Jyde#` zTbnE6SH9)n+twFO45h1kE-I?UUsWFTm)Zm#Q?nWuGXdv-6I(=ExdSBji2C7ZW!o$P zb)G#H3MxOg5m}P-kpA%E@4sL~I5tGsnwLItaZ*2)Df!De9YkmqQpCN9CG6RQ%r$L1 zq?+RHbn9YSNEkxlMb}^n(&U$!ZLKX2Bf!#1L3hbjEdhT&{{NHuHQRw$n5gqW8ln$FI!Gj{p@|063SKNsb9sq*Q66jH;N>o-6V z8|CxtD!v+~t$<2!E1BlV9?d8qk;7{3LnIeG96loM$7|k(Wg;Fh2q$y;+O>=l z2$^#|sC2RsA~(JXfk7=?HJ5_N2qH^oBg4ILvBeXuZoKuF=IoS(oaL;-e> z>dXN8s4N%Lo%iJK{MG;F$H>-5r=bRpAAn5bbeHEdC*4wpcy%#qK59(S94@pM$c+}Z zh1T!UUq%^=Y5SE%!O5qNc+*{Q=xK;fgldTUDR6T$B)&%|?S71h)7Oa-O1m{7m~~z^ z3Jb=ZQByy0?(+4&a~+Ilk=ryWZ6Jq%vMl<%eB%|&cuYV?XCJDV@wHTIVT34~T@Lygn&D<2^a`xr zv5QXKiB}VAY??cY(kW1-k;J%ibBX7d`cdun;UTz-@%vD7*x9BvokGi5S#wL!9+J_x zzQTUKZCzS){-=qO%A3w7Pl^Uy^6ge%!3nLX<8dUlHv{Lh3;F!y&C{O2!4_ebqci*L=6aydT>4U!pcs;>7Jvoq6fOld1iIY!mt;2p8JH0EANMv6gJ z4k48GLSOJ>#R_MfJ8>J`lBaU+toy)iGbxMd1omuvakKNgeD$NYZOb4tFFlrohJ*)| z+8ngh99mDHFI2ES){47zXWg>PoNF$#oEBpN9sd<|1HsG^LYAZyXBo3*G^T>hA)|E#MB(H=2YMWHL8HPi6S!Li& z@c~Odo=WQlTiU|5truM}{oMQ6+T`>8Zkx^Nw%0+vrCmFw0T*Xk@mzV|#^l1zo#_^? z($6pP%mvwf5+HDIoUsbKo-&P=29=#p$_49(7`ejKc}UsbR@G^ws*ee=(o*3o!8G!{ z^dwStp-+3$lqz(}gqrW8ajsjK#u0|ou@)EI1!n487qOqvmw5V4k= z1b3hZ3Yu+p*`Movq+sL{#%8}uB->5l zD*g>3300&e0)gbE*w%IcN^lKk09mVarmIu*ZJVQX2(ESQ?2Dhz<`48y@EJVr@x+)5 zNCK~)6nv>%|H+l5jWDtt#L;yh%NvZ3CjDF zZU0wy)A^Jy_FsLwEw;9~@k!wI`LaqJx$_b+l?IlZ$cC5lS-@!Rcu8Bq^QqePX|8iw z*{;J5EG^dn{pIF|>J`z_SKEO$wMvZ_e{pL$E&%eLrvkv4o480(s#2feR&T@ z=^|5$Th1N^PS(=2DKlbe>YG0KH?a?1AMGdF6k}y~Ti-mybPPNwi;nyZM~*Y|u4Q%g zay5+^1z+oUsh>jh(dCh;DTz5+ki7*kHG7g}iD)jwJ*chCErDK>!OSJGN@~#ni z<(rJW7XH8NQ`h%CWxB(A@{EbLhbcN6Vhs|OV@)7{Wn4ZHM^5{`k!%9%%Iv98u#jLC zCxpXNOR{ft8n@VUsSaZJ=DP$7v?+;3uV2zRy!8X>dk%dY@9-HPT$$qL*sv{A{jp=$ za1~0vGO89!Jc=$~41Q)-f9`CU?nnHPi;s$Pq87Q|pj+%Ru*!t}`L|jE`}c;y`FJW5|oyrDcP2cLwSl?WfuR$PfH zHud1NZ%xzXpX^)EB|*r}Hb_eQwtKwiJxw)<{JOJEj8NcOF-z8Eqy&Je?|o=%WqAjO zKd_WhK1f0f)fM>?j%|NF^w zX3NjV>(kxrsy#;~ApLHb2nVQ-zUqA_!&siLqu1_-#I;2Ptv`B2Uu^=D^Ul%(JU=(#i}tY{Dp zP2}!;i$6uF7vxjtXf;-?AT-Jk1B$;E+>rdey1n(&Pq)|k$zSin=I-kRs3_|iu2%dB z+X`KV*@;jpr=q{IGocz9Qw&^i1;-uv`%qRafjm^JweX}xm_BQ=z zomaXD5tg#Z6bs&388FjLFGB#R%{d;4eut$qwPKz~{JVs_Q}U6s5z<*HIOy*9^yF8c zcPdX zpLLOEoWqX{O%cSp*-+X!p78|;99YER-GnIYA%^_5kFBbeO?4Yynj3c?M)2uHYoITP-I2q32|E?+j#z9xqjqQUpC;wt%)F|0}YeddPG z&K6I!Yt}V*Q?`I7;9z1`h-&Akg`_OZ|IUfwnxg8f1@#`YBNL2>g%m%`9^6=^8 z@}Oy7&(I&D=cRxA*~!noFx4?*o_~#4hOG%Y^^88*xvES{ATEkN2(nl)Y`$|%stM?; z(%d8$j?%^4l&L*YUQmj*tU9%Dax77==Bz{F46R7X6R{1hv9o4B&+wfT?$%Y#GzyZ! zHAS$dB{7(SmhXfgy*Gbd3GU&w$keXP4W_QE{x@Q&HjGJ1g#(MCf&iz< znlY~tnR;Bp)T7z?f&g(G&J5mgNus#7_Ga4g7Wb1LWDG_Ti#tcKwKw5(0A+Kh70Y93 zEQqFhRQ^PAEJpv^cyX1g_Xu7{$UE-@s~2J!fE^KC8DBvmeo)pYgQ`KTFq-k-+DR=@V=-nGfsz6p(OyA-AM+J;p^|B%pu zzosdFxP!7%F`kc0j9`&SRhB(UchBpSH^WeZZNw9ZURPr+Zph_6$t>M$UU^Si`^$^Z zxCt0mnzqq8KoKWjRQR}x9g|7Ota8hibD@B;b!oD3`0cS)HC^(lIuwWfpcZGXDgV=( zFjgUSE1qRLxs-4Z!Xf5nDgqAa|3NDzSaUP`bwI4s@vho7Sw9IqR8iBuTv1s2z3#>? zWe2@zHj{n($(JGiUb2NW%z;^je%Cz|ZJtyoov4&d$D$jn(B*RiAICS z{(Oj!i<3afKhFu@B%GG7eA}g{gina1>tXwXEI8(~AtrL^ksCuBF>TUc4wSj#=;L zRPFw7MwF&Alq$D=FS>KYJm<4g@`>cyEKG1&$QNf8I>Z2>X}9En=XXlF0K!-6g>`*s zL}n_OU)Y7IGEvL{%3K$zs21+k_e$EIeN98EG1Xlwl{0fqC6p49PC{+&zPD`JZFX{g z?*n$_agSc~ooQKh<+Yy06eaV)XU`OASxVK6bBouueeer3C2gOP#E2q}9}n>a3IXp+ z30oTLgpRBIP&6w0M9X{|Omh?0AeEYX^2ak#%x80OS*0wj(Gb2jcl?~k8~-nL-FI^v zK7w25j7Db$l2-cKw&OS>?+DHZzmi8eb3dELtz&lDX)2jxk0>jwZ*RXTvvErwlMF8D zDn;UIm}JS8u4^yj2Ac}H!SNwV)UZ^4PJ{;j{Q6_Esy`TkHc;_L$GMnw9LXu~oANQ1 zBf~Ob_sGQ}mOadcH^Y?!%ZVq2Dm;O7rF@viUKh}3)!2#kKdJ@@prbMW=OevCQm*Z(4*ybhG$RR+}7^Y^j%CLJS<2b z;s%?@mw$DEJxXhatv3DSNdGM-3>KrVZc+GZ@{|lFFh{yTJ|h$vMSC<1m3OTXA#c@u zI~odi~efv`g&!OfBSG}>b+@`f5gEQ_17iSOZWp_ zu`x?ad4?J~Rs{5TcDgDvEcDs;4p zyxoW2Axlg|CE{j292~^V$V^PBN|wyvvqA=z4`8A363q(F;lTdxw|*hj(`vPC=c-Du zaMRqzngV^#q>jo~%_CpuUXOj0G8dQwFa-iT;mQ9;79HiGF9EoyxF>cRm+Mhb8nko) zjgeeu9iL9qlO@hY7pTyXfKpCE68?B8Z496!v<}Eg^^UVV=Kkt7rb>n@`06&SBdU zFP2}N1gcW|#%5yChbV_* ziR>Zux%4&Q`yl&&h7T$)_&hdyR+ETWn~nL((hw1jIf3-GDYnMNLVK=$5lQg;y5m)n zk6~|$c34$r^0(lM1eM5_@}ZNo-f;B|T|d4%tC^uYXRlvgJhbzQm3%j6`sRx)v-5he8K0h zJ`kUyDl$l7I*h2ZxED4YY{H3;@x%_n@JHvfF@KrF(tq2=?A_wc_FgOZXHX@e$1zA^ zF_JhjYbc7cQA7nx4b6e1(1(OJ^b0KFY>__n5M55W1J>?00^c!Xt2zgjX0wZX($;!{ z?Ee%Kj`TqPr|F8Vs+9s8v?3V+2aA}r5Vb44hAtwdN*zmOLvG<<+nsM(s}BpZmOMb# zcu!+(rgF7wSdk2uR|HnJ2~=r#b)C!tKagQ^@0-j$)_n0HOT*S$)6L3X@DxbhKo3c$ zNjykVA%P+&LKTBua>s{37wq@P_ZVOB6!5+_Orzi+s5!}M}in&?Jspx|~{p|)Rm zh12nKH#ZX*&8_{~eCK45U-rgqwxuEC&(QAu;M=~+74rFw_IIDL*VV32~MyW9wn2H;mL<2BZ)9fw@eT6DrxMzK0g~lo=kO;tGatD#ur5wMk(0~OX*?= zPy}irM{jV7bzXTBN|?RtLFU-bI^9bwB5F@K+gruik_#FD)12?&ZmN3`pQyc$br?<_ ze)f`Do%VLu%Ug=Atjxd)MrhMUK%(l}z|cGUYv-71P2V>ahrm+IVv{%Em-*McdGQZE zTeeV3TbriLP$}!H%5EILnRW$k!XA)|^Xf8zs|bx#^<55iddxO9H9AjF0AQQXxn3{w z_-H=Cri#0~=cZ(TWwd{QQpf2v9!Jc^&(){Nvy`SvQN?b!yw+YTkGz(lU{7=8pA&Uy-}157sD5?OZ1Dz>Env`0e4nY-Z9k7O4y50J=dfn)D#f} zn$0!azBVVL*j|miGBDDo#krj+EbyWem~u)Fd{b=LG2s;@auVv#J98X%FrgbO5%fyq zzd_v1KThDLm3u(xdSyyXDF%MMLb?c&_pIh(TLinGiv_R2`0(2Z$%J`{Mk=7$Ks6HV z1AG9&&ztB~5uLDPcKLO#@yPefBu44; ztY;r99(nrHtJ&f zw)TzbJ1%^c`?7tipC1na6Wq=}XvGuh|7{nNkNt}c{&6B~>Wt?D6-0!xZ5a}kQY7z8 zn4nsn$fM`oxb!2YfU|>{^tN6145|!)S@#EAVAd5A5}UH5TFr|o+kh_<@1YrV6)UF7 z8A^>LE>Hx}!$3V22ZL>yiXm6e#!geaDyNjQ4$dy6D6a)ujZQF6*oQ3^w%VE4b9qb= zOIr`B-KO)R-E~?Xo$%fIz^W6=gn*D%^n34WQ<+B&$Y$AzZj#C6OSD9{Jtr*+3D1GS ztL1a{Lg;&ebnyZZw2+~dQc|jr@>SekeB}gyK1^^G<&aB`6Qc1#HTb#f4Qyv z1{N*BWc+>n-2@5qXd2s;!JN|AZf&BTV^*!NdU&W3PES9NwOypXikh{qYvPX2hkKyf zE_Zv~Ny(Fh)3ovmsVRNod=!We88YZFn4qaQenAdE8!Xlb2fKhfP3ZU;ic)F#(9Muv zPjgrHbHNJ81g4BC;Mwv`9Unp8yoWwQ*TY{ijE46+rTSIH3s%ZN=CsN1+S4903mkKh z(dbM71X>z530gqzEV;?y{on?OTE1?jsA45PM8$+~Es-t~H!3McUt!F|x;hVU(TCOW z_mZ52os!BjNV@a-Wz<>{TQHp`m?0TPCKiz(FAV9r7KmW~fgqP`A#li>bfc`)R2|^nv6VFexgybM|$gieX{Ty-%iCMe(2lE)g#FqqnRZsBxSUXk)UUoD~x3H9E{d*fnqNR7V&`qB}5t7Ihp5+4#m|1=$p$V>-L3U%fbIPmk_J z&8)JyZTmUcRj`dKmL;ifuYmQ`*bp-WDcRf}0J@NhmDdbaCu(EPmv=b-E_(Xy4XvNn%i zo$b{EPv`fUVD;|@9~yU`yy1jwY3u6NR%>b_7=S{^@+naGK6F?+jd9Cvcxc!}N*|vl z^&LUvCsRy*_fcP&#-b}0CIJ&i)-;s z$yIoC#LK1TS5)i`x*GAaVAQsbv!3>6Q!1vHReuIL<7YRfo1pTF&hHrNP_9!O;}Vpr zfz5+MGiG157@7Q_5Ym{Recu(n&N2AMoAGGy*hQ;K#?SlR@xSW`99=k(Qwd*bd-(Ll zafjVl6M!6#^~zUSVlz`JVnOj|^Th^8g_HRU{q0_JLd<)JPU?X`P`ctPTREF>mP>ZG z_OaMPlQr?ANX+^}+V!FOB~V=$Q4*k4?%o2MO2}SFG(@6q+MN@6bfOBgvtezEZ{bC_ zz2zZNEISaNv(Up)VM_;_U=FJ-l@`z%#2b}OE3+D$bZ0GtXqhA9@wouSdZ5ZNmGsb` z>^6B}@{E%aqOk}jqELnGik74NxUyjzN6VTCvNxr7_={WHG;VB^oVnIKhurNPMVrOACkX0kTH{?ON5gL>mq?@d*85gr+h!^`tCq0x84ZDY zl+>g(zq0gn)C6%|nR)ol-c1;5tr@d#Wi>B_2dXC)3pf2n8?q#du+Kff%Iw#w$FZtn z?X<_gVxFFGE)v~j$)*~#(`gD7Ve;RvA4@ZIus$Qtfqjd?XHT`3AY(mGs< z;cOunK@e@$k6&S&MY`gRUNO$612F?k0~#15T{;nDHkO#QvFMDZz37v4TdwV%K~ z^FjQe?06T7t+BrH8`sk7k27hFO{KirZtK_UOs8K?*py+w1Cct$$Y{W=oSddzkn%82 zJ8^0jhUT=J%=vwc@~5@Aw;`<_SyQ)p5I(4E78OV&n|)?UY&~$=*$D?HS@#D;)gCBt zB2OYj)7cN>HuLnF|wfm7bJotDKsBNl_pIo zg2l3g8-%h#bPv0+5D8w(SEb{~|E5#7^It7BZ>Xzzc|qDkUCQX#im_286XAtt=l3rz z<@||Qw%WJkt|FNkd#4=SC!Z)6z+e_L72pA$%a@E+k?zQzL)kA*CQJx z53U_gjJGNrTyNc@sf@0cH$UUVl4CISRWh5Y*xKTL=N-j?NL zVFx_fhQ%~Nw|P`f+L?fqlp1I-V0z0%4Amnx)Q1POcQ6fcg~!h}ZCL?HGPv^Pkuf!e ztj4khq`_sKi{(EZ2TLm&8xxE~ zFnvia^jinG^*L?B8k?5FjdEvEZBxd@09$37c45>m{%>?6(3(Gn%9-68z4$&!c{AO3HsM9Jex4KDgEomkm7N z^1|*m)GjNd&^}jM3f3&dk!#^ZI`A*ppTBZFV#?xJI&vl7HSImSVha@_d8lk~<1!5L ziEXRD4I-uj;K4hIPZJ%^{Zm>Ps~*Z8_j?FLY~hI50?A6ez{8Z7G5>O}p37>;Rofc? zC!`3%ClE(VjtteG36NB7qfN%$-&o0Av97$wSyc=&x8bB=Esv27mH?h6Hj8(Lq_ht{a+M0=I9kZ#Vgkcrcg6GZ8a2K)3iGuIFnVo-O|`f%JzLLfFq<4cpA#*LI7G`_6k$)%vXI_Xhi#+YlRZ^lNiXtTjuNuWp$p_VWl_Q%BpIsk-ew4^$n~_z923Dbf!?REXk4{+ zjikODtf0^-BecW2e%>0>{EB!A*Z&z?U+CY$#3sGSf5ze9lqbHid)gMDx~IYY>K1Ov zM&~_;;zEZk{KGsNzcQYOR!#VC7l&dt{N{LZCWm9>f-lL4a_tfl!PD!)2btJEx(BOx zA%Xj&XnANK_*Jy0QLJg(!XWE88Nqjr4=}F&+`})Rec4OZJ&s>4w$w7oEj+1}!-JJa zh|)3&qoBU6WjPJm=yAEY=-@FUT~an-Vw>lGysk7!$HF|=GpGDnY1^IaVkJm9KkRz# zgS?=kpm#iM&Dzf2O|EXnnt#$OnFd2!*;PPrW7MSSV@EP^_qT~kBn2}5DgO|!PWU)Q zh+}QbM6SwLt_1PtS5Z83f$WM_vR1E;zCbYnL1Z2+=@1wq*0kE&G_h&envilkGG09$ z9iiRlcUv2hIE&FpJaC4DAA#P^QSe_cTVK7F>mju-j{wikR7qWL+!x`waJ_p@hS@iz zP<0$pG)>Y(2azOZGg(u*lq1W1%77#-B6B!EUKmn?Pc-%c$um<7^(@zJi7ILGE-fiQM?YN5hF_j%UY7U+4Z1B%O=e=$ z_AOCJ;MHFtU!^_Gg+k4+83ekRz9+iLEBVSalryw$(8@#b7lW4V76$A;MgjF|f(i`} zj8zGpAjE-^SWRlENobpj(M?j8shn;*GRn$>l3Z1=sEM0)8{wA~NRDAlccFsu@*uV2 z_rwC8ep(S(^{r!0Sv*JQi+ipOLvCu-Y%uPMxm57wRl?MlJu$mrS#~C5u?d#tIn3S& zF;!epIqld6`UAflES1DKqNI?cG3EWB+)R~T^ zB;-bni`#GO#J{`-R3Xf@^Y^xe&?yDT8`7c%n~x96%`ZDb z@ABLQcahDis?0VCuitNt&X>6Eh?8WEfE=N4SB!jYeDi69;3aKs=@@6m7ri0hh^ z6J_hMSSW&~2UBpHjl#9C>6?}5x+<^iQJI$N_#Cy|*7srI96*a*>@1;Yth zv9+^#+I%D8hWK+rz6~|(xAvFbHei@gT_S}*CR{DJiDui{hJ=nt4ZXpxY_(w3+el;GS+~6_CZIV664~#%h_Q_IMV7k%`=|uDHDNI=zdi?Btbox} z(3YH`g*PJPg>)H?P5I*F~BDJ737I;l-V!76#Ob7HzIBNFe@<9Ev$3;uwxwKoJ`ko z6X3!i#39%u)Q#GhmW{u~@dGMCyc3U{Es{rde~~1TD2$XnpB?Bs8*w9Z=EPgjk zHUpgKg0JMU+XYiPLZlcX?w^b!Bm9&j8aMSt#k7|-w z{==@AQuK}Me9V((!^(kjz`CE~Zz)Rl4IWr=nph|M&Qv!2MMskG@WoLJ8!RH|QT zBSqnCmkw!74YtoS%2eM&T$S1i{z$JaI__XXKi<`lsKLhR@3*5kC@+g0muB&_q^ zPqx$d<3G&S->)NpB-Dvn(;9~p1wxEX#l#-9EqExV+!GvuZ(Fw-Lp(fq&_@ONNoS%rfQE)!RD8?vYX^+qUz0#z>hMM&23-T zE_+bpqPVzP@oP*4;$m%FSV$pm)pE}#(`>v?Ekc|E4W!4cL0z#AL@m&RU$NMtSs^1< z*Q2+XRDNPRLX zIMc6v!Ft%bFqN=#pQ;3%>9#Jte)qef2714JuJ6rB{+0^~yrhePi_oISB3T!o?1HU> z+mo4cd?}gm0hMNzz^%c#-Y%BM{hGYJ;@t%Cg%-i4!{*$BS zzW2duAQRBM%rPk;u{4iLXCDZurn5oAnY?E00#|y7+hspzCkw7KiWQaVn_`QceiS6a zyt=%=XaCrLp_pFW+fLq9Uq7!C-0gy^79ln_3GN=yed=wH!KNEE#ie&!#Le7z7=k z`Nal*wh89J5k1R<*{3tB%FYIr>lc6j@os`W@O_m$`yYJxst5d>)$98{bSYn3u}!jJ z{D&M@zC$cCoOPC3*S+iF0BLsKk(K@|uHPHmb!o{SKC-hIIQWV<*ANR|vxcD*Fuuub zk@;_p>uf3j`{6i8MD@1m6Q-7ZWJ@ajMuGJz$Jo~IaJ4)K1eea|qm5p4l9(&k9aX=Z zMA7CtO<3DqqO`4zPGSi_-;z0`=I^*c2o}_4b`RY6}Eu4K7TBYei#-hiDWd|mK zl;Oa|hv4~C5iaoUzPJ~pNoWEtyynI7IOxl>)UAgI{ zIKn{UMKNZOJqU%%^+Tf82c^MCzrxqCule|Fm3`$xdA6?lW1BPrGHO@MZmy=GO0zIk@S&tqv|X+4gZ4@pp+PitoEsu;yMA326SQi1^q<5$QRO zF#gtq3j-7#qRw0ku{J*g&x~YEhTd$Rc)4=x`RIM~;;kmuaQX6V>-*#P;Vp7a=+$Rn zi*)XkW#i#-WEziY;~eAzqv&QM@?v3AmT<-xujtljEvmme+cl<6e_X{bcT9+6+=+^- zHYEI9nhFQ0);a{B}yEQJGLn zhfU7}R{yN?XHRZG^O~xi7J2b<-4za;pPInK1%iMo=8yr5Ih8Ng<4#=)p<4)!hR;>q z9E6s{QC%(Js1AaUL8uW=ayc`z-u`Hp1$O}V_~e>cz(VxY|ywSi$2xNd69CYr^c1BWITIEF-_AsI3M5o;<=2|UG>HH zb(%~3%akU)p_ZohJ^yr)uoDnq5cbRWH)l4DZxteSv3%N!jidUE^|4I-gY7!YLLJ+@ z!gp9wxwT*`lp|jO%y07ae=@5C)2S@=rCJCA=<2)N6zjz?hb&BM7tNg_EPzRZ z%Njt7`&><_+gp2Fmh0#W(|5VWKWvD|Lh1DnQH!V62K{#y9bJ7qy$i<8Lc*i^?V#h2 z9<5N5;TTdFPmG)c$+^BI+ao7>{)auyr`nos_PGz#rNJdZ=P#zYC%h-94~^XO50NV} zxZ|IV(`9`fFXd5*N@dM6yU6g$(@z+_S7A6AK%swv-@dz%ode)=fhGTxqIaVbYW_1$pU zdv5V~IIn%>{K87!A_KTM#}(rN?@By?J~KfFZJk{|Jh*i_yo3f_WT%}7Fi_DIhp8Ar5D$s>>jNuF2j6)zy$OQlPCC`aPzSX=r!ElS2_(L}DQ zjVCCh+qj+{pSt2>(fUu+s zL#-uCjbye^hLGw+8U z)X8Fl#S>v1Cfan7&}EPqB=}VIB2yeF^2LaR_OURba3-J~Ecrb61{C*BIDTj5n zEsyesldmT}^v5vLS;-2o=&*NZdlQsEqHdwmJwJe4EAVEb zh_wqAq1e&(4i#dhq{jnk#->yE|G;Xpg#a!H+0i3ccFBb?nGIlmpyxJ`J>E(ESOi5? zSY**k2^a{*H{0p6E&AXlIsYFb_r9z6w=o6^EGX5E(d98b6iJ(4>e=uZ{t7C|8!1O+MtEc}kj- z(;a6!TL*jmfG>V_O#BKp<>`wEu|nf&dFC+qNR)_abuc!q@kv=4eGZbEp|X!mXl-Mv z*%v$D3?q}(aL@q=aD0fI=Fd(?(diw}nZl~qt*Aa|oHnm4!PHsi6)COO7zI-RhDorD zC?VK4N_6E(774Zo@XnDlgSBO5EaTTuDdd_be=sh10uE;TZsrE5t^C!Cw{BPY+Q@c& z1|P-1i9#%K_bwSKA&jz1jvqY$d!$(+^-jhnwKZ)Y=J)5z7yqCOtYW8%qHpQcq)R)& z(OA|plNngE!_$;Uy5PBv4~eBtqJ5nJGO|7ceMtsq(MR7CkTXNXG7 z0ageB-chxr2W5|Y(eUJ5#WE-S1hEuBaAB3>=|&gndBO|_l<2gHg%+AzJlMR5vY~4n zJP`QQfseYqPwgC1?O9VFlGnymkF5rj5}Q(*tq44Knm(4jm;@8^-=yYC8?=i)Aqs4Q zgLu`K8%AtP8%x5S!bseXF$sbu3HcxpW|?Wco6Tx2&SRsZDYnasmVY+IFa4AF;IR?z zf+=*G52_*<9ve$kliUsaW^Y1Cu(FNV`1<}~85lf}44j76m$ob4^}+9~kqmUfjQ2R2 zzW0j>#Q~Remu?#LcoILZ%{>v3hoGtv%K`{9jL4#Kiw{4Hf`Jdw%XJU9L`9K#)nHbv z>Ju8CuTg7*AUsAcQf45Lp**Wd#9MC2RK|ip56TnZc-ZkyKR$b(F-vNmD@(P9 z5n4oIomE(Q*S>G?R}npDMZ7iBUp+fSwN+qWvIsH|emC+}Cl2}pEX+9M#K1dOpiZff z-eXl=!dQLr+PA;-hrk3f6iP!KQ-_USe(fEcQL}sTBc=1yUX@D$Ii@xh|DuG9lWhn2 ziJU%Zec?<}5gOxYQV*iYEaxfNIvUblS7n#?fF|$6Uyf-Uwd2Ho zTxNV3TH-bmW!k<@ORX_&h>=AUrn}&h(OiuO5E}?NOw$Y?#-j)Cy+RGUG9lP1H+EBm zzJ$Js6xKW#SLGQTf?Xd~$dKBC!)Nx8xy98G?aW;n?5`+2sO=j5=ICzlLZZG~A{Wui zX#u@H&$nh+KstZKx%~L?-5-ch;>6LA@G4~^>kz9hWl!2X5$_Cc>D;(H49`CoqdoDC z7sYw|U^B&@%7l%@#O-6f^5|58RFaA=(oD65{h3(qPkM<9>El%5n!GWsub{fcin0=pNk=-aFl5TCHe*_f&T@Kb12Tf<;mB+VVxBp@ zT!m#DrB*lTHJ|9ml}K1Hp++|`JX20EvejB46fqx__2s#WDEWH#d@3SB-$$$?1d7MP zV{8;QrJrQl01G4?$@Ms=Nce4KK)hGSDxQhR_!R3jym4hn|OMNa#VYK zo4rL{$iO~)QLd*0;{tQ6`hwj&eF`5t2n1S1 zCxG>!?soEuT%W&u_44}a)$EGAQVb-F^1Z9mv*nX<_xHZB&D1E2DpW$z%D2j!uHCw0 zeB{4&3xelpg^RBq2^gJF-d28ZgPiOmlJUBV^8!I}U{bY|FjTVQTIV@Yw+^zZfPl=jbA@t`3C2)>N*AL_M*+SfTL@&A%=N z6NjpTD>E>dWgqV_aLiVrUzpx+f+>WOo*?~}uVMz=9_C81lf5>*qOC$>EfWsIkV<@1 z5cV8;XT!V~#H3LRHEAzF2eL>;S#a7*9Y%J-aL@-6oL0E`A*yBDDjh#6A~!*?wLwM( z1qi{sK3;fxd%Ng{2jqVzIcQ=_kcIWtxce5C0`8Z2J3jip*$|-e-i>9EfK=Y$N+EsU zT2m1c=f&(R5C05&1kWi5o?X!7sUBTzn7}#n7;EFgF=qt!&S*0TPj(kaGLxT6U8DEc zA1)ZhWtMe;9C z;qJdDqrmR3U%abYyT?s1c1}ho^_#bPWWT%>fgP6Y^bQ)Og|{X->WTLMeK@9C3!#n5 zcBX$g`&g<7>I@y{3PT5;u+09^a=>A(0f>vKU^1G&vVWBl_w_0X&QsO_U-^yul0~(@ zD|%Du6i&bEf@VQ zxRp%-D)Fx*3fp$f&0`&rC9z<<-#01u=;Lj!=|bPS=jRMNg-UY@E-VTM^SENJLr(kk z4|wKDW=Ml;QL$M*_4ov|2I}4OEBRl0*LelHz3byrNI&!Y_;_MI5!X{jL`-GFye)uS zh}XvCQ!;+K)N%)nX=oYDKKm-BUPb1M(o5$O8&}`tFQv1oYr^NU#+o6;i>@8e?*zac z8!V#Qt$S2wLx>uHkF%?B&1)&4Yfyw9o{br(aSZ^H2@!-b95Eb49-7!)Rm|zbS!v_2 zn{Yz`+O6!mbDZcCrjddieUMkEs$-k92p$c($uwqVn@zVx(H{~m&6GE@j*U%mn>4;7 zu$~*-!e`BccO{eq4-uZv7vUJoRxaFwtDa91R<4-cyir&@_#Mos5d$zD_#6Sdtx;ee zpcWSRkG3}7mR^Ovu0 z2pZAZ7{V9QqSlW!8kVd8RS;|LZNt}~mXcJRCrew}VYlad%w=%vPEpzh7j4a~JKc(B zO%=b48?OMY7)|}k`!ah$sQa?5Txm~QthC`+^c`=sUO&B2@FxFN?cVPAi>>clD}PUB zs%CFyryZ`(pIzBZS;F9=j6*7Zii^w_oTS<%jQq>xiYy$ec3>B@*NocUwBOTXa2IUp zicWwK1Ph%lf7YU3k>LK6bjJFRFyT@+II;d-+aCP`ZD9uE6W(;gkbqH zx(Jt)#w109F1<@}v$^Jv6e(J%6S~j9*GJLv&!feC6+r>e(h^;%lgqg?ra^SGTpN(?rsEyNI0XmVre6E9ev?V!M1!_lki)&#NL8r%X zMQxYJ^hRK4^JRizNba8sVr)r>Ou6uW@+m3X58j_`AN!<%%38fu0=U%6E#YKOj%Zui zL0O%U*F4zJ0;bH~fHnKyy!hY|5weMxLTNfNvxE2@*a?w7gMOV~{8!6P&jMu%W}@J@ z?VG3TA&RtFOHF)Rs2>u(w|J2#Lw0%@l(Im6537={Tu8(;eK(IbeoW6asOL>U}oE>A?k!U zx)iso<3lYMGlKn@rZDtNSsel6z-`dB6|*7)Ol2~JISiFe7jhDknr~R-vr` zdcb2v2Q3-#?3`g>jj?5BzDTYJv?=0EVQAzd|7;pDi+yztE@OD)N=##FC6Y+>$#q1~ zkg1Z~k;)#yuB2M18um)}T75=H*KvrXJD8HiSy=m*FFw=jP1hea$vmK4 z$a5)?Zsi{f-*q~GPI{`I^*)%uWWVa1-(LM)TfwjV(`$V&oA{N-808ZE=;X%s z;7OU4<+z3_77OZe@w7bZyGK(_+Fq5}JED4?fSy+(Z<~U!o#e`sg5a2%t$*qu7$#>p zpF+tlW@&}nai7o(dou?PVcrUz?XEM$eS%@?T+`!S-#CwT^9llh(Uh=Jj^C-)yQUZ0 zHqP#GYZq)eJuw+Tpi28pBFq+8`FeHy@5=7Qyf1{m3o7T$gOA^>a!?k z)X7O^>{hGQ>VErueV~_=bxIVn55~D!bjhXl+paN-^cq_p|ILJdnw`T?npH{c^Y#=} zh;0u3wi%Dd{w7wZ)nRC!j#qp-Usyi{Jyu;P>`*L1sdJV(6yUFdr*kQ5C(tR2bco-H z)s5EugK>r7eHGhYzDQCtoHuQ;s}|YX(D?c(Jh~K&aCyN3z zlsQNIYEzb+Dc_iWV3r2?uWQq{#wY{8zb(R&Aeve(tu3;0B`bq+4NIdyy`Qc9qC5A? zL?wM^?d?npC(_;#q1g@3k%;Y?9mdiP6@;F7Kl8QbV#8(bd9>oeHm!%-Gx~Sy+V0?o z2!l-7>zs#>msdVi!q3!uA-*zig@DfwfaElmGw zT=?thg!QToap&1aO?P9d;o45KOQwZ_GUe!4E(B7^!5FpWG}X{-oh&%935Z$O)NhkNe4n zMf}Wu$8YWUzSK3Ps~VO;zm>cW-n2;(^LhI~GEF8EifylMS7eYT$cghL67Lxz-}CfY zd!@kqaX3+s(0pxSBaWD`A>UC_bs+f7`w2!Ek&4tpG!6HTrFTD0k5HLuQ*tO-DJyTy z5E~}1Dpxdsq)+!;$lTnc@3M$GmwuBD+wOjk9GesAlIyjTWt?R<%?Q)xsF66MQ17 z6Z7x#^5~T-%bt`R%1pC1UtCQDMzn53?gvUPHqMtOxpGKF(`=zQo@u4UE0-G+dMGA6 zqG`72>&q8I#G8u8=Zy5L6JJb$Ltl2>*!}<0J2d5@Q}lL)3ApIPewt{xquP?wb*Z{0 zy7ZxtIX7T&b-_E1vHqo9+qy8+4mLj2fGst4uOd=3)XS$su6J=({Fw$2sz9(3XvRT%0SBpet&>tkkHy3y>SUFsNX;Q(svPP(vBoftLizJ#5Q!**0zid znR`C>y|w9wM(VHH)M;IbBIuuexk?QAIhgGs9FhG#=BQ|9!ldu<-B6OKL0xDAuEL~rK;NtyCkOG(GakDg~n9bAPb`MF@=Br-L_u!ch zpI0rX5-lr@kVb8z$g$O+39ioCyM6>0u~(0K%|_6%(ez<8MqiZ* zRM-SCZ$e;g)uB=Z*SW0-6aK$&S6%PtTukJHoMM`nk;)*@;TB**CJ2yW))4TR{|+Zs zX%;>hZoFSX0YyqIZ~C^GLvf}GsjZI+iaCX*lQR*2*u!E=NwyR99)<-^&S$=Y8v(v8 zc&adm5}R~WK)v(qsDg$;&YzgOz_l3TG0B!OcaG{Tejh(S-aTPxt6L+kIKr_ZdD4%o zmoHvG{RUY#VMH))>BQGKz}$A0hxyEzsZS-d+ogOWvRK^MlF?<}gH&0w(@8QXBZULz zC#ZGdeG}TvKRa{VKdofxb{RUK&u(Gcw4)O2T7UqaJ(sZ~W7Y+1$PxxC)){~J;px%E z_0-A*kW*b~dgd5z5 zQ4dx%S&~0E$s5+=9l-AA4M)BX1Vr&T74j+R=>cR3N1YZbT)A}@a*}x=*74#$4IXg{ z`CJ52nG$RmwS`>SKRQY>iYd`$n)ahy9?h!Bg!#qKuMhQbvo}=R0R&B!b5)wQwJB=T zca5p@O+#PtxY8B0uxHy%{XiIeJZyP7P0gm`&mMR8{iOfECN9_)O2165S}FLe^y`7T zn2Jc;rCrG~j0gqJDSr0f|A^@UgbD07|TgcPYe}IJqpg{iCZ}lRI;KD3VTNn>zEIDW~K+=^COH7XLs; z`ER@=Qb%Nr;9L1+FdRYY%+byGQupalx*h(x>ym%|-M!S6+MI89W~3DA7Unkj(WEPxnr_2CJI9T23{7G%T+_Q@I2UCa{7Zo|feb*7U9i88<4$IY$*cq%Rs$_Ce0T*R0JhDt(3-qzb;80*~o+X?#ujtsIOi1BhO{%n@wnx-2809hom`Py?w5VK>PM=_T!4LxCM z4*I4OEZ(X|T=lPKT&>JwD4k|5#<&ePDE+ZmP;qc-Pk8;clEJgt#8@_CVw5(RcsMfNxTmu- zsYKgr6H4DC>BD!Xa>0I4QVN_vS0-C@O)T(I%zu=cZ@${8$kwBag6G%P7$z?kRO>MW zTT&lSV**ByG|Q}q!Z}cSXebi~MIY97M1@%dw@#_zKAFH+jkevGP?@FeM#bVN_qaHW-?D(w&=evlNfu9+_;WH|q1_^BwJ^X%ixKFYF|ayIX4$3HV^Kxb4M; zCU4|2#`kx*yar#hzPIUZS*?|u+M;{I2mr2FyPw{E^$;fO=6IxqNo{oE5*0jnP zZ^Gxv+{5-N{aW4m93`U4w!tj{4A)tZp+{! z-+E!&owe-Nc>-yClqgEcju9S(=7?F1f)o9;;FR=!*}!9M57Mp1JN) zWyqBzETu@J|Gm{eJ}8C#{CqSx_V|wr6T(wu^Oiao^|8pLpw~=>=|HN#cQYX=!La3b zCkzVm_EnlhSbOO!P8iTyi4=3QF=0zUSF;lU#PfBIuV0W95@(jUbvkb6B{fOU*55Qe z!XC<-Dn7Yx=WF_5@i9g*nC>-WnRVeyYrmK@n{`X8%ig=Daxh`eZz3{o4qI$2+MPe# z|L5rMe;*2XgB!)b$j3XoesGiR=#W6 z@U)iGExNFf{`ASDv?H$~8CxiP$~@u^5C7U!Td(f)+8R+7W%MBX)qK!L)0KV}gL1a- z^Y{>p8;;pRJWu*WX_}2_Sj%_k0eErHt9AHCMv@x zWJCQ2kv%A79tzuh2k8o;vuX{DeK0@Nr)!=pOxu<=b2ETsc;>#`3_2tFPP{;Gi!bgA z6ogjXH*;q@E}xG0nv$@arqA-X+u;3HnR*Nc9K&O!#dqL0DK4j|cCbm577_|#dPw6r z4qL|Fh64Ph0W{BqEFF!ZzqGYYLYJhdoE8tFn3D@g4@fQ?3m~<)c}Bi!z2SN_To&BY z6r+c3YLjJq(C{L@(u<`vTmWPqu2VM9i~KfvWmJ6wl;;@ zL6)znbJ#3>S(SY(vO>h%TE9wv-EcwJYwMsCnh}q7lCZPNUpn@%)n&derL_r z&&=Rv1HTH?#8sYj*=$eo1yr>*`fL(o#(-F{0mi0XD zKN0JOj;v?*DyBR^3X2LfC|u<&&7EsEHI9Oh<`(x!%eaiX?`$*KvPSM%`{Jy|*v7ZQb>wUQ*%tLEvy$@n z$=zgV^uWK7q@ka7<}esb9r}JY&wTlkm&9(+*k^LL(scE5gHsZpA_mCT4Wv`qoQ8B$ zZ?Dw3yp##q+y)lF!1Tn(2$QUMt z6P^&r?@i3iVT$)=aikmAhp2Lt9s$EbfK2=ka= zFuQvZM#a%eB$Wl=b!V7=CC26{h{gFD+;+l{f_zLad(%kIw=uL`6!+nd5Em!)wPHcc*)+l~tlW`u-v)R$_Rl3TciSEhCj6z+qn&3})*F z;q3Ug&w%q&89D{|Elwv+!V^xy%%}#4vu%P1a>a~KpMAAY z^I+r!jp)A$ZL!kFswg~z+_pND~ zq=}S%@i_@rmc$+kabFOx!<}2EU-)-4f-;~9GD!fU7tv)T*6HeETb>bfrdP(R~& zsDi`?;(n{*Dw?*Zm_YD#M=c;eL&ZxaFVF{sY^GP5utt|eWI#}fChsPnrS)BKO_gz- zwW<1>Biz`2?#R15x}iMP`(-W5Es~SlKX92m%tVz>yLyq0F**@lbIG5YDy8(jff2e&E&?ny^ zCg85oN`Lfn_?{o0AMJDCvnRw}8xKBK{Q7AIEX+3GxKR&9?a5E~^5BE!@I$@hOsw|O zRD=(x%^uhVN>dNsCL)OTm1ooYs|{vcj;T!DMRlAWf}hd*Eo?|L{dKTb5KblM>iO)tL>}a4WH)R;CPI|JU)rY0Zty>T z;_;tU60cvp$oU-KFK3?ChJ%*7mDZic@AQW_JB7A(eZw}@wOl{afZ*rqo~E7q z`t8RXrJ2j@jp9OBi-;QkJt0-;c@mlhyNq2$K55xYOqS`lrtVBgW^dx2fP(X}_|z{U zPk&sQ0_oL$NuTo8nc!Bd<5jTncXU=CR+KjfX!fi9e-Fy;?Z(FFCA<96KvX8Atp#I% z=j;;cyZ1whhrkLxG2GfVUx?qhx_Bn-w4ThZd@SpTEd9SXXnAotZJT8m0<5s=)o*KB zvo!otzP%E+9w%|@ro{y3%{JT)XPQPlh2XG?uE_&M=iIikHlyEi^_UayaHY9#CiLqJ z2!O~Ge(dU{ulk+B44$+*ku<&6K7H)AvE_=%8nT-y^)pgBo{nvuQ)>=pM_$(203i@D zXiPg&*|2_^8B~4hG$hs(jAmo{o?mb%ljEiUJ3aqrkkkDR$w_gJ}?8SZ-=x`t|)Nw|7?2l5(EE(J#iL zBCI;rC4?n72!5nYL=jW)5Qa*zTz?#sn5X4<@0*sfJ^JWsGG^7s` zR01i_@it?kJqA@ji{-~KqS|+)BG>V7p(UQ6J|2ASmP*UcmD!qWwiCWJWnT%?|1flm zg$?5=S_sT%$-ax=?nGSFRzWxC{^H$;NICto*qHC130)i;!{%SP!%;`*N5eP78=|ap zM&?#_+BUGE1lYXYC;+SAnzU`wh<1Y50rAZ}O}vrPq;04*# z0+!(6&`xBg75J9lb*4;PSMR%O+ofuG3%kbWhzaa&<)NBx(YV6R#WcXp@>BHWs15h| zvn}p=TZ>8gx!3}c3htdtFh1HC1d>{)n%WKE%F;1|tJg1ID)q~Mzhrp{qIxLpGe!|5 zZg06LxVk-vnWDqQU3cY!Bo04u5IiRs z8dnh+h$WeZ05_s|bI&vcTyyJKS3$-Vq2Qq-i{QP~hGPDMmNB9&ASKgu74Mo}8aExX#Lu#4$XbL>s%(ntUEG4}8KpbA=5x(HnYN{ZE5`9rJ!eXk8nWz+hoaaF%SW7saoHxf z$U8m1*pp|hY`jvB+A%>OKhdp-pNjABcOZpE)bVyVU*PIzeG=w9mN?!GSxBWv4^y1r zBdX)=6)|&}Kgq#=nL`d19x_F86fBW!p?aVhcWAijd|lCd2#>CR)@Cm6z1(Y#xwWf# zrXHKrX1l1-zW23l9y!Sd6WhwI1G5;Tw`#f&dMt8>~C#py2J_I^`FzQ z;NvoUtmOfm6hx)NJHQJYMbcJcLQ5kee%p(e`$ibw z#^=+P7y;^UgDXqX!3TEtCEyuq5$K1KD082@9*lK z@DP8~s?c5CU&a;B)Yn7yqfi@vp+$icqCg*?hG7%!eBz7obxwQsRPITCcy)9(d$O@V zlnsrc*bk(hV#6!Wa>@;JWT{KdQdd}tuLiQ*Rh13d*WS-ppPrl%x_lQNZy><3F!ERL zlII^AXL}&o`RVW^U!Sk&F8jkhS>fgNHJ|+TCy_LTQ^XJM z&K;uo&V(cJZT+?@xfss71O;}%PBL{;w%*@HvxBI66g23{xblipA9qC| zB?1~p)i#aY&8&>?A3w0|A4x?b=R6x$;j6NB!PxTfiBJ9S9RE{MH?DrHYwOtN{G`vi zGqF_Vl@{l$=2p`hOslSN0;@EkA}@mXi_R=E!O8$nq*tO(2wUG=HUO*f)2eQX{?X*9 zl0$j1d~iMGB$M6{kEV6643VBDk#gTEz~N8MhG0g5ioUkw4eZwb8{hr@)4TWiPz({Z zN#Y|}S^C6-sJE|^&N(j&-$}HBf_Z>-J9c#oh?8O5Q61(&(e9>$mm5qEE+sIP0>rDX z$I%=%1^YznGsKOR;9~ya7ovhAk+`N}=M4ww5S?Q0v?A?X`VhJ;4yYI;@~|6*%(r$t zWWKXu)p6h@{rqa{W`t-@F502|D*#C+m+8NX9ndbRnswzvx<~A}ceW(k>r+~qYTB%| zH97ZrTd&K61yZxn)t&-!(b#`>wuV5_xH8+ewACV*ET*QiA@(m^DNqP0K`osmUv@yH z6JFpqS{#*=dZvuyDiT(T%9he7|E8y(=3nbh`D+_0Qzs1-!j0P88i;`&6>9LdNq4=L z?kZz@Z997DPoL$_(R+u#wRblD#5|_l!w=r^PwB(Hd&eJ+B6t_k%{o1h;gr8Ku{h6E zyP8cBe^0K@Mi(%S@qOWoLwqhB+DmHOB-CVV>%MJ5H%(y(pUY&(H06GbaxufmG~VT! zWje9^&388+UjLqhXw-PQD=&%GJ*b(lO#V!1KZ788wHHHFX3FK@bv zQy&Tv-5*b;kVU9!h$$HOl4X>AWtx9>DJj!8CZ5c)&&QL$kHc3(C1BLM_^i!i#1@wi zuAw0v)&|d-NcjNWNa5aknPTl$^;unWkyzoI^(K<&Y{Ffe76s>MCL z>?hMQ;fO)aq%tV1C237qCqWWz+QY-TFVl8?xu=`iMO*Oxhii))OJDP%#AdXd(kH8} z1G1mYN0{aS(W^ZaMO=5{K8+<1lKCEF_gozO}6*wq&d^ofjRbMc|qgjc$X> zZpnxn#WmOkjPS9wC6lEJImTMUC+oIY`LOmNEjNBg5TrQq@D2KMCLH~RZCuDPN4d&G zC>T3&VQaf`iC%1LA0jDw?OBPV(l-L?Bb2)qrETJ)&m?45N5B8(U`?3O{~R1*0W|f- z?fXTD^}P{O}RBA9F>2sYXDjsvJ*8MlIpBO@9%bh{{71GRq;AHo zgF6H3&_6WH-S?@50A!oxMiJZMS8>DvV5R^wxjqSug@Rt^8}()1^E3{xhDL=r|ER)D z-&1T^5@(M8+4VZVrK6`{Dx{i(jF-O4?cR=ulgidDv1GM6tPy+6G;Ie{x+$Y+WHpTn z;@0#dA9N?{$?<2lsBYGN5TwR`tcVeFYHTd1L@mluEFZs1meWn0LN0Wc;}roV|3;CS z!X+1P95@mpL#&*X30=g%$v>k1r~Bp!oCQLmx-zv{E3zBGXwohl8wd_tyFFBxOew2P z^x*p!T&+-JtrlE5m1jRmQjXtt5P=2z@BxC<7}E(A;)ZBJx}$#gY4W!>G{-21McXK3n23GEsu*|@T7{UI)ve#wQLG)$gpQEx5zIw(Xmt6vGB--NiRGt2WDD?Gbl&kLyZF9~nTvmej?`=z$h9P-n_oO#1Lw_XeTVMw`{suYc z4+t!H4n7V#_E72Ku{t~>pm9!7$^31WgZq8;S$O(lSQ3^^3j!QogY05J5LuJLc>Vzo zT!kAE*Z>ps_CFsgO|xcR`Pl(h)PDZMSbKV+%Ip$~z&~?Ws9Wsqa^rV}uYJhlP~z+e z3?6J7!QjFv?iPS0sq1FQA8KDC7Ypk#_#K6vmg1SfTTX2=Hbzz)Vl@ypD3G6N)+Ms9 z%GD#vWFPr)py(66t1b6l$2YK+?5f|G$`wiI`<)42Od1VaUvlmMFwMHmH-}|R2BTax z8btkM+AgGrB()-HJOcb=n!ZAYRb?d#f@p;wT4C6mx35~#6$PxK2))b#3^R6U-kR1W zq)o|%fgJ=~t{%8yGNPxxE=GI(b0<=dyhH5qLGoIRhiZD`O#d9>LCTAVGzxTa($gux zfR%-iak6p^mxb))E=`>PYeZGh#T_cb6zAecG2@22Oz&RJ&I~I_d*&jnSw?z+(iUq0 zuHylSzIV><5`5m|Fb*+B&ZtDcU$063M=kJe@Qcz`SWL?K)+Q|d&^0}<^~ZeeR%nyV zk1}Avy;yM=@)R{h!Oy_v!+xpNnl7v@Il`UuWxu^(XkSCm`EQ*NB0pcY;=(1FBs1vh z$afUXtcCV^zU%wFArsfq0={oXx$d{!!US{6&qfnl68AbZe@)3JOIzS(B9aRVm(bNB zsEfV9Hed(~vmywWe8wlcZTpJhd_;^RGu9yJ_zacy*Tw~}X67$Xj_<7r$G(h>Jz+K7 z`h?>FhKsjW{w@phHI=OoZQ0%%v;(?7;#}L|RoOflJL0L3GcQeD^dnkK`miYaT?c|A zE;#A_s$5-6`uY{;R=Vp8Thmq>BTLPI7=d6;L&z#{jj~AC>d*>)?HrHAvGfm$v^m6I)3))5&3r!ovQP9WQ`+OtJPo`5;1h!7|vb zDs*YT|b{hoxAf=fd&}g@maTp8K|0tvG4fqJmil7^2jg zrq|bB1CFi7+O=(H8C_BCb0Js+K9{t!D5xcV0%su1RtKj;;ftEnKy-w?h^oBR>5 z9Buat7j{wRy5H{{2+D~%W2kF3VC=1YN_#86?#fkyCVw6Arz0g#IIz;Lv}>C9zwOp( z+FGLZo)Kha~EErVT86ZQAF` zGsUxZ8Lg#GOCF&2Pr<~Euk3CUVLIP|W?N?~WTp{vXwir3=af=kzEBtF*ZpbY!@&f< zF{Qmv?hmg_Soki{AevuSE*R0Mo6_1k{m|0XOP_qEYno2pdGU+n+|fkyO|0sA#&R|t zYdn$^3bc;B zD-DOk;mnzHp1xH2_;eQ87#g@}=+%+M#o+ZhqFji7n&qD+IL5e=wZC>OWp~^4Hrh{2 za-O_A6|WaJ!|~1!;V>)fno@W@4d$ujmMz5_P_^+QS4E%{?Sr+V?ek}kjF3?{3tf9e z)Us>zuJXZ^Nw5$wE2)8R(-|Fut6KxwY@907Xy8g~VuGf>E`5;1=Oz8kjf-XPVEMeu z%KK6wL+yRrRuAJ^uz5w4%3cC}mO#CAqPy4(nf?l4Du-4ad zsfFKLQ)gmj5r*kL1Y;07szXbq$Mi)EXb>NC2a~-H z-t?+^qh!#boD%<6N_gRstd_R6>_-E>2Q?(6XKPmiDAeL1PsSHb+` zDuwCkkMUZX0#rP#bHn3uq!&l;KDTp-Wuqi?iFx2EB74d*S+I zq3a6QR*vCq(8>}b9RH{9H>Rqjr$MDgIU$)c^CiWl3MvZ$$Gf(n^`1rXa+_`J7&~R1 z%{3z(Mc3PAma2%rqdS})1)`8?KeKcHmhHQ*nHuBKWv;`1+yw5HF{yj+&mHU}jD3wWeJx%6^>I>Ujg7jmhGBo<$Dc!wn#t)-={a z#;;~>K#PL8Sw7s>Q%6Ve?}xtMn$Yt{X*0RJjxVM%pGu)^1_v~6dwTRGq`=TWnC8mB zxVDU7BvTR4tNnypdJ?6iI6D_?Isu9d6Euw0YBxsGrHZs;-Q-FnSWLC^!VRpv*2FqfC}8l0_` zEe=LoW3h(|}OckR#g!9q8A}ryF}R86bVWFO?GGe#qJWjX!c_`Ov$K}OX(*HP@@N7 zvk&)Ow&APU+0xo3<%wtJK@l*KD>^QLN?w@Fh)UPZ<*@9vL+M#%?smupoh;6h-7xH` zQEZyl^`=_f;^(l8Bo5fM{>pZ>VWSwQ5CQtHmT_5?5r%?uYeSK6-o`FtZR4fkMs|ts^%c_fH*b3hx60 z4ilgtM;5bwvpsvth7f&fPPa4}WRE4FTi3ON!cav}pNBYGRXL{l6Ed!kv!M8GWcSu|Wti9uSO>?Al{akW;wUPWF23+xHxSJSM z5qvE-zJ>uRZ_(#RAGr?+dtNl@m(r`mR%7 zQQRg(kc&v@(1@~`QQNU#+VE2WZ>I7>k#<*CKchh_L4!0D*VkN*f$5-?$d3h<jGz4GdaPz6l&AyOqE$H-wf!8)|FwK{r6{wGX7X zBZqJz`1PX?)-?3iEhQ*HiJJl@aGMZRR$<#Ha=KErIL#r+Oj?W zpUs5)d+@y#QAX6zlrvkT8w^kZplDpjWW9PA1b<7cF8t6|RvZFq(AWKk)f8vKG%z+k zjkxX0ZBh7eV2_{x-Sr05e2@b7s0czFTW5TtNUp?+Yy*l+Y8*cm)}G%sMx`ljNJ?Q% zQ$nCT33Z%oJ(OMLO5UfRPaPtsk5>p>gy_YtjN!y&pviy8Vs=*Lh-syY@z}plnzo0oH4tJhk(v=3|IKAU>zunrPsc2S}X*;{Xlpk!IbMr3a z?=JY}*awT6W5-SsMM&LgzwAu&&Eci@D)-zu^9D+8ioFjZFXKJrxa%kWC>EM0Z!3S3 zMU~TDTe$_Dk2)EE*Y&9K>{Mc^5h~&lz7DH*+S+s-N$vOAqqLjgx+QbJ+^cCGg3-{7 zC1V-@A|fJ3B5E9xVP|72XRmp~?A5-H49xt_C?RC>(BNUSsqEs*oXDdfl?Ut0rR{G8 z>?6+(TA5lY+iOvqXeIHs(HXr*pVhy*9X1nQjdk8Y=n#(>?zt3 zJ)bPc0;Ka8Hp2Z6N!8HB&C_&ii507yWKBF8En@+LH}uEGx0NJaNuoDWU4`34KRgvL zNlNh80`YY$euKFYjxBAo2?znn`d6yEdyeid$3nJuIgH?+ZU)R@dE(DuXTaA#-=_FQ z@5^+sK&Snb3M5s1SXy7i84p-Y^d~aaW~dj}iTVDlLFsZc15F*Ahg_j9MK+jcCiPQ( zT`qVN>mS9qdnbn}Y-5EGkSy)yvb5Mfw;}Ibq6_pcvi_v2X(AsXt2y(o({sE_F@2)` zw;=#()5`=W!A`ERrka9wIaE#3KsExqRd@{^DBTSYTZp5TXUZD382tpjvN6OOC`mZ*wnqy>vArJl9d zD6**AxAx=I$(MB1^X$I030Ia9%@Atus>J}9@GHEA7WJVgyz(ZL_(6JJyQZ|?q(fKG zTipLzJa>JbWawhp4qeY3mFkc*IbS$Qwj|9hcWsa3fYxqFkq9iAA%SVVYnECXVR|F+ zswYpL{C2VEagJ;Z&oBL>9X6HgkaW)C8dFNTlr_33GuI%99=Hry>hK6nQu_BJLCF0& zxNj7)C*2DXj~Gi?a<=pR@Qw__R9IpS=)_8|n~WGd z?GaM7NWX9x`Zs~*gFeBBl{Fm08*uy2)1kEr2a;O z9B+KTBR~|<(90x}XHTB+D5|Ci8zkFr8rt#Qg5u>}Z>dou5-30D+9mSvg{fNu3`Jv& zjE*}J!{afJ5-TyGawe`Jg~uFGc$5_#IL97A7k=`RyizfGk}poVj8H(oMy5H`#vU?{Y@%cdOA>m2sNpiUKmI^s<~ts&c1?=W zcg=QiX%F-w`G1YQ;b4M~OncGRchjW@lPwh9;tb(&>)W9+A^)nrM(`)f)GIGdMPy2?%IZqvTDvDo*w;y(8FdE7x6J=U(;T{nz z^n?o-+izxGX;OGD9_>D03s@52(@=sqR=RR+Hq6CD`PjF%VKdlUyAn?K^AxoWsdFM) zA`q#p=V5>T5C^A|lF<))x9ohQ(IH{2N`G0qs5*G%6=R%O^}=6X`MG;%u-TnY;v z%dj-&?i-Fjl}dW&w!3Qo-wXi(`gS>qH2hw3Rgg#j{rYK!e{u9T+t{B5Tjh}W489zP z;c(p^3%_(d={lq_ap*-rR5W~3bRnNhiAg~X^8q~6nCcfhBT4%Z(s=fS1d)Cj--AR- zTv_FJ6^p(+`eY+S+e{>!UwR{`cw4-@c@DY`;1BjK+tC<6{9y zKyyTE+_@#$tm|Bcj}-OwMap3#*j9CF6uvrJfWJ1?pqv(3%cP7*vaon0oeR@4F)NI_ zgLqTS8QsohXnaF^90qG7d(!FCl;q*qHP?`uq&+;>#Dfr^uPd&IQ)Ew3d)+wn%j1@^ zJtGEMG=UF~T}1N&j|G3>(&**AiJsQ#JdC-C$K!k_Y zK%~F<$BnIN*gJ4pJ`hbK^?#V~zd}A4Qx$=`Zs9=xrqR5d_z;@aCGLLld(>E^npZX7720>6H{mi|i!9DK-gT zfW)<8D!^8~l|Tk{BvwGLog6CA#R^i9jncQ=e-$gwu1AI%WA3YEr)p=a%j^MJuRNU{ zB0I&DT(6$i{b;JU|B&ceSGOER5AO?2Tp`N3waxVEc~ad%XZw(1RLx5hu|A$^!Auc7 zMov-RkzU%eWyF1%Zu(d{kv%~^7pyMzGf7kmn-*ULEMry>=Vbie{gPVo1x1E5H#c1@ zvJr};r?|RKnFeY<>NR{m5MH@h2smUImy%`!6ggg^g)@rV(!ircT<9eP4FC?0c}X)Q z4GePHV}#NaD<|R0qrZJ5X`BI9es6u)rWK?&H@6SrOYr*=gW<>aH-|t31VNUyv;ZeV z#(0lZ?yt6L$HgU+N^i2#3tQ5_v3|RL4xaB}Sp6r5SuvjQ$)4le@|V-9tWZ2WnV26xHkPMu?8LSR;Z<{Ynl<*tJrB=?gI1OKKO>KP}5a(NR}y?7HfHQ5VjgKvF@HOKxu#MXHe5M6~W+k-PI zysL_|wiM|!uF7KE3V)}c6^|@dYq<)CW3v1_3;HY-tWRxvI9TfQpfRD-uUnqL{qL$!7>Dvjg;B#u{1I_rXPO0B5D8V4JkE?G z*e-)V9s5K)3xbBC>6uEhxhAQn#iw7%H(ub$OLnvskKLP!E>TukHZ}0YuC{4D7d?T` zSI#ALN>pc-ON8by4jQN1;`MDxYmgt-t-|CloNbxCR=MU%oHXQ{91fYRs3|ka`P0*b z8uvstH6RC=_8+I$R#=YpS3A#8>Xn45gqPhB_2KNy;c9)$H4BmC16A#?MxAi>>ER_!3GboHopjZ0FWh`$r1v@VpuF?I_4}E2B?g|eqPCo;J{e5ZyCPNai3genc z3{&Kdd^|pYRnZK2^3ZiZ{rDqKF!$Y*Rj`}KL%xyB-4Ctw#Ea(21ohm8nnv1A8OlP7 zi1o_8>t2y!(!qq9kWH`v5?v)d!*x*gUI$N4q0Od}I(#g){r6x(6vc}`g(0S~bTqSX z`t0a0{~cwLkR)|FEg!l(6&Tk1b3F%qw+SA7dL9Fa`WkHGy{TQ9>QY0I%HKnZefyiH;)#c+R`Kj%IVzOq^(|BN-GBM5HP36`tLljqV z5EB;|KA$$saOKH&CHV7$5N*&I!Lh@S0_#rMTL235P{B&-);l};(9d6;C{N|HbV*SW zqF=yo^H12=oomX~$CA7+`rTCyXl3~f%CcIbP}v5g?}4#ar!w5IYH`}Da0CO% zmMJ?&%-Q&Qlc8aXXqL@LmiYLo9jv-KLuA4<@dh8IHv7XTG9(B!i@HvlrO)Nl@Rc%I zfbsf!PJDf*NN;8&oFn?_lP4!@xb)}i)opaBO_AP*K5k5H_(>WhI*M$vxE;))WA-#9 zz3YSbt++L+0ROZQ0lOpBv@mo#aff+qqNo(WxZK&T4P9JB3>!&TS)lRJ%amuj zvVET?dAu|+2uOi`Rz#;EMdjt+EalHG9%5Lbzi2wI6dALo@c{_ht?Wn#par=!irNCaT$o2|@o&A)f(XilB%wBoEt<2_&$#|VtgYJ_SZYUHsT(j6w*O&5Kftz8qjI&0X z#J~ZYxaGxW&KdT8=sN3~S&#epy=zKyV+trr1Q; zTu?{~uM%W506mrU7#BOf3za|oS1tW@2>#=WRE`cwL!A6jFtRI4_2bS|uFI_yi@{%g z_hLNVH!NJAsxyJ4Iv!7!`?vUPn-u2oDcEaM>79-7qczx65%ro~pUfV%Hq;K7TFTtW zV=)+Qn&VeC^dTBP(XWghKUZ3wZ3YeLhY-_Z***B?WRpzdcBb*#b>Plk%;z=~Q8&($sD@xK#3Ef!hqVu*2aeptBP{ba{Klw!>W<*m-- zpb5PVhh#fU+mamo`}2m={m@A~d~BHT<=?$hx?=)NnQ++IOIcj!-UkJJw(h6m5A-oh zNPu&lK=zO{yxjDqjfhHCZfJ42#%_J@xSmU~n{{vJm3~$dpvG;mO}2apzgU~TJ3Unk zO*cE+++pdtv13e3Bro%_aEO@OwXd#a{f-;Os+VQ40SGI?z=-&7MIFcUY5IdeXTU_Ntf^rFjOS{jJmVcCFM=Y>np^R6!W}1 z`qRb!c~k1%scd=td)wH#w8{_0Oz=vE-amj#dhdPu&tHn2jS~6%P$O0mM3v@BLZt{R z;=!i_C(kI*^)}AHsN7hz0Tn&h4_#$y;6&NxcI7jgRJ@2griFQT*9fHzi{5*_P+!lq zWZKF!ce8QyBxanPVneEZKEfn3L}Gqgc3GJ)`h?sTJe_6*F-O**L|5MayCGx90`%#7 zNz{L7uWjX9I{NlxhoK*hfyf4 zr{mqJqOCGeL}ZqbUkr%TCl|`?kB<`?To$=ONf`r<8ouZu&*% zF5?ff;{5+Ip)?`=NR~>6qx0nd^g}mXrWI@RQ`)Qly{k;)_>s1t@j6dn5@wDeKH(_x zLi1ZK=*hUlOcnmA#$Rrm5?vH*b(aY4MgacOAWfwGFe})aD2Y#@BIAp!y5?}$LzmMb zsLDE-3~n1!T!{+#6h~a)+a9}ahiHj;OPKFEiAWLUBw4M)rYjL__pqPx<;L`>uuD8* z6Tng4;?G3wNI!3vXmr=yhce3zLnotR*fdUpU#jSxNRT4Qh2uarZMADFG!TWkRk%LZ z*APLel*93#jVs}RP>q~)j3<`sB2~1bXwH%)ukZ)cyM}dQt~93!%Zor8Y=YZtEZ9v= z>{nsC*Pz7u4Wo@aOOHz;5|JY!ez3~8*xA^QMb#pnvBBK4x_?0FA}j`;(_DQCT5*W& zcp%vf(l5}z{ZqQdqO@$49k4ukHiifoI8x0vg`2W+^=9pE#&W1Ywr6WVwlg5LbLZKN zJ@7b}q)mpEj{1ZoHFAA#8saVjt_N}n*&(wt7Cku;Z#KbmBgbeDS=$!F0G_z$KZ!Pt z58Ft)p*3vnH(Lxbc%wZP;FF(u(GPw`TKR{;bxAt$$2$msS#O8Ik~F?EK*%9z%pI;v z$zc#;&5?&!p5QJ$E)Jt=KuSIb?)1rXPR?IG8UKu3rd*)8HWg;9m0EdsLQhkX!C}KN zoW4*%>U>2dR1Ivbeq4Y}W#Mkh`x7AJO!y!$$!+*_3?KklwICuKjpA;TP}e^{nJJ)f zAgmotiCnuFq-QHCXNG2*^P{&z@U5Ml%ztg>rze+IdQJc_xg*62$F;K|*=JvTWg4?S zZz4d6Tufu%#faM?gR-H66+TR+ zz5uB~yPpA)O{=onEPKItpJr=V2s0|O^&;nCnrOr%x%SPiuF``q#T0_kJG$eT^N!h~ zw`1UD_}XoaI#XU5x3bk=oKWvc`?T~k(hnthz;mQaKAhrQK^}nwO8oKOK!3&mggj-} z6VxYI+qA2pA5%61Xy+*^@;T_>&Vwps|2Xi9eV;;KIB^PRl^CvF@^q!?QPE9Am!j-f zvz#=fzQUQQc**Mz7npd;m43#+?w(UnJmSO<)|VwL@rqlMPkO;DvQb9AsQ8NYklgs13 z>|$BUtKI&KV1w6Q`k!WFt1A8H<2^_NfmfU@GwxiLGt|+=#%$K{E-zj@6m{FC8l`1@ zH%@4@E2A;JnS*BkVobSnS^=HhmTnoVG>wp*)(P2}T6tjy(0Z1mB!Q)go zfkMcbi51hzT>5+ko0&`la!hSt#dL=%gJW_9sP!+NVLx@lbM50@1>3^MZZBKME#q4zZf0uzeFThqj|NGhmR zO|cvR(^jH3k#eWTj_VA)Ra(k$7H0w~!@MhL)XOK+iHUQF$glVU5~R4n&t!%WN22<; zKWo0T8$!$;vNN5)GeBc-myda6XMYB_)ZT|(v2($v{0iRvG}LM6BqiHY{+@6eT;`f& zv>-SJvI_4tSswfW4Hk9qE*&64}oFZcf$Km0kzp4@wJE*g#a z+u*yxw>FRUiyk}l@^%76%sjt^XhkBC_>GhEg+T$L$j%R8F&LcEoryuEky%O%LRYtP z3NJX=1&=|DE=QKMF0%8z-v-m}h}ejIuzpEnN)2~}13FWSWDzgpT`AJ54Gm;2bTb~c zwb$ZIin26KBk0C(Fjf$(#++lk>w~rZ%2EG9Qb$BhE8b*=e&Jo-xEYhg>z$2TTsd$h zhe8B-cV+PG!Q^d}Dt}C@sO-hc$X%-f`cPy z^5{!zjl!vI9>Vc$xHbSV=FJ5+;q~o`Qpz7qvorl1G4X-F=8msO@%+i&Brf_-AFdRb zIu3yAP$+t|&9TFc3D7hxGA~!Ic6qYp7;SS%xyu3mhSA`z>w&qFy(7-56B)}UT%ym` z`WqS27aaUo)5px@2P?O+>!|jZ=X(OL5S!MO?K)m3!f)GL$gsz?aaEr8!&bK4`NlrX zBb9<+5q#Gj@_K>!*~CQ5P{5o8_h7HBsbonKi{p#1)T>A(Tvn(f>Ju^sz{AgU6vZiA^8SMupnEKzu8QTuA47Ck+QyNM0>99#xSxs(c>p&Q-%?YLb8N`a z4S)Rf_O*iF(@wFE3Em|^3qG6^m<05Ong}ooXSF^|MIe6qntlosMm)ew5XldH%e$0A za1xY1sVv({90!8cx3S-5{X&ccUge_N+G&Vv5i@oET&xn`oocbUhU=TcyP<4`zt~+! zvWV0ZTIjh_PhiWI0Ne46nR}o7_Ee(N2r7VUCs_h_`28wQEkFSoJZ&5j+TJck_%rAs^kZIURF-k5v;_rRop_`5UFSB; z({@7}Db{f7Bui*rZ?gi$*0%Sb5N|+oZHq9Jc^SfWCwn2@E)j%bN8$$0pQtdb6}3kh zZ1e|vxu@LeI&CsGB_8^U%wXf28%bMPLrQKbt8QYA}!Ers`?bPbvvYw=6Y==drI z*zbu4=K_7FH(MF~i5d^90>AKd(V~WsiAx*@Y5adv=HmJHdBlK{VYvrz`Xre~7y(b2 zCx$(3XwbUp`)Zj&rVoDq9=60sf*{EL&=0|VF9Yj~ee2>Pfkv{Agnl}wD3j)^Sta1D zj-GB2^+5CSQ8C46G9aWdPj42vg0K8iKHhJ-RSNSmBQd59R`PFO&(s`_* zP=w2q;YZhWJJT6;^d=DQ{vBIQ&O`7?5}Gg(Nc?Jgp8KY;93gs#IC=p$Wl>k={c$6z zXWx5^wEeE3VEhN$l<5bvJO>_7vc+sh_@{dz-LB7B_X99vyA5VEY?s1d-vyrlV-^2> zPBUUrlt|DJ@miCOVV@LpMv|(Y6LLL7p6<)N#%0IVxQIf%VygKaHRuY+VWDO{Ul)E^pmZ9|7oejS4AN=JwgddpMQkn}|Z(%NsX z>-jxp5Q8xjet~BcJr0OgSm37kd1A8;mYia z)k7$4UKHPlUbaMphFg{NBTC!bMiz+Waqyuj-Ml&B8nFNz7(hQMWX10Di|836?hd1Q_&R;qh>Uk zlN44|#PyK)w%(YoyX90_UzR9Kc&oMT_~U5rVi$Wl%Qw4cr#WyJc&<09flr<&0hF^z zM2ui#ptNNI+;cXdQ8$n<%@0F)02k0EMVr$F%$$6M;rPnhNx;=&{H_%)L$Q{MjZXH+ zy{?(Dti2B2Of$#v2Pyl0a0d)5S?Iz4{^)}5Ds!E9#H(N`k4wx2S1W61)u&2rgRA-s z#N%lktz6=oRyO_{)LyjZI9NE0mbS57@_r2K;2>>9G6zpy&V|7C@ z`s~E78@7BMSAc~>Dwx*(pARp(n}-8SjX(+R%{4LO0>ztRomUr>IV@4^5NjiJ@2F4f zdP|Rr1aY@JOcc??68SmD!6oQFf3FqzMf@6FelhSVcIULo=8AMhzEl~j%+sBWH(lRm z&mYb+Ui)fjdJ`OByc>0POB-Y@UkXgA-2>f!PLDqO+RPW_I)!9yA#CTn(~ferDlDaU z|JfffEtBWK&%Ux1&W=8|u3TvS$HA(!Hci7(?lDE~@2Iph}@K6p=QH@I1RrwXxmS2EzN>nBo zF-@)v6K~9PEEaiIjLw>$&)Y;eSPWw4#GGsnzA;thNsZ>^ant>G3oxZ#h+5d2Y=)7Z z?>>Z~A9zwA%4A4w_Oim#?!jJ-*E@R_z(?S=`~h zzcHaa?7GJglz@KNxfY%08SwoDcO=Dd%sh-m%5rPzxtRp|@hZ4Jz2C+;uyGiK4oNJD zlAi8N-8%f>&CUF_{(5KXO`V-5FcVPOsNPD zP46mhS-=XH?RuKL+vIEEIya})-}pqUz4R@inRlT2rqXV4tntsMnSaK%*(~}GQKCwP zoV|BjvY=ciBL#^yT*kf*O|cr_v%bdCLde;5zHkCHm>zREHor0qTRfE0SX;@l!9Xv5 zT&iPV9csH`ovjItP)C*C8I`*$cX`WNgXUDUNmT0c8{dfZGo90{twLviGX4r=cpb66 zqLyNQ<|_38sEcOcsiDAp+5W8|3PDQ;?EtoNcYha>K_Wh#ajF~l7LYMoN!fhNxSVD! zPa?Ws6FC1fi<$w!x!78cUomr{FZ6N#SKET!O;Ck&Oh$h!HI3lKGRoqy{~yxMtvPPo zh{FFRFG;F2RhDI0a^B><#o6qo?A)J%8DeIz0*MJoN|Aqk1{6J?z($kOCQn&enjssF zMx*=mIoHKoZaJy2rh*YKqulP-wd)E`)*iP?HA{N@A>(o8#ifD1f?9{)D!)`3H;-2K zn}N9%J*%ya_Y|;Uf0z0NGD~c2S4a?R8+Yk<)CIVJ()oGNfS-qiS%+Ky*=>shM9{RS zM{@kiScz`J9Y52l1ebv&JZs9MY>7y(Zyd#Z4sosnvq+4OA;AGL0Y(wmM9p|ARDBrr z7`O8*&f(%5t7R12#zl6|yubB_1bgO!C2Nk)zdBxI5ULNIiL1YuA(#mUA%imW47*+1 z?{>EBWR+4`1N=-HQ!b3|uB#-4Q%;>(FE0O2K`J~W-zIOwk}b4zpc)mvS#H9Ra;Qsj zarWs83Xmv51w60+@-w;ybg8+l0qcSqrFz^rO=H?1q2y1lcb4 zzBI?t7+j(y+F5F$N`4Ct86xW=#(TzRg4LFjLRNL<2gwQb>!pkO#oLtHx!QS27l{T} zk8b%;!7vVV!$kky-=~OOQb4a&7F>}k!IsIvy2K^F#PJX-EjF6pZ_P*P<8qr_9UELhwaJ$j| z1wUb)t>7kG*BCLHC&oNQs`t~uHVV-DYun^_me6kY3dBi>75r$^)jH8?wTmd;H(Z=p z()8UYBd36$wzfoU1{BI-0u?eKaXi>Jdt-ghz3xL5Gw0XN`gRjyu~L|>qpQ|3U+S6? zSoEe(=cvzpGx^_be&Fw&cZWmh+jhbV|GTq4k8k|yDsi(ZPV%STEC2F?Il0g8&pxKl z((HeZU8G1idxU??$CYaC%LuW7yb%D{3YadWB9q<$&xIa_w|z~c^{ZD$=iy)Ff6+qaK85@nh7aRe`|cW%e_3gW(Ev41diBt zPaWEawk=HFS@T#HqIGf~*lkBugN?H}C%D;~m_0{+E1<5!0!Tw&%=rGdc0Kzq`jU*j zDj zM_CAy*$cjKi1uKj74zuISCpfgTM zD|Cn-PLu;%AMEM>Zam#KO%9~Cm4m_^wrsgnT%&cXu(9Qs98N6deS;j6)u+j@5q%vA z`@ivP(@cT?0BwoS;{kZi0mw|HxK`oy&z&~ZDM7uL!cn9Dg|1PV9Z}!c2L*Fx=i6}j z#V+sZ^8GRJiH5-V!wAXsa$tL4Zof6}5HL*7jtem>6Bp4Z`W<_Y8d& zzDQwR2tT>D?U$F3u3druWg9{znM*{U&KlO1nZT*`w4}s&Dn`FCeQPuJPbgu@HywB% z6VtrUf)Ot$#%H`ChiFd``fFZK$yA#p&+hY~8F1n!8PMclB9~nyl-B9?WAC6iQd8GF z0PLcxC+#^|?+Ptlt9=la(=5E3?KZ?ps?Bo;6H@&=GM_#`>k2UWtsSf?im`pOn=klX zzB&6l1A|4v8k~}}vvqCZ{!)j5`eyUtE>=Rm^Sq3zFTzAv) zXPbcIW-+fbLp7ZDY`cEDEx7WT?2Lx>p)&D~#B-qr|?FolDgpNt-#!UvadN zOUH*)yj;voFB3EksV&?)Kg9J4efloH3BI0;L52HCz zsMk3tyaPDgSzlB)scX|LumAPJ%>-Y>Hh7Bo6}J`Ms8o9RD-tWYBxPI3zGXwpBG`u;e^|<27XEM^m}B zom8^^m|jswC-Fhq%k2Ah4Gka4h);hJJfmRnKW&qVP=VYks@>nd8Y9DahgAmkmONJ; zU#8F^S;rwG5mA8qi`FkR_$kX=Rxe|tCWmLA3h3RpZ5|HbSV1J2uXPIwSZfI-HM0@GLP)(*zsLKBv~tAtDCL0&6c zS#uq3Bw%1qBhVxs!cV)Dn`QF=2_+Si3yzT=;44I~xX&XDWcyG!WP}2Qxs}v}N$J(L ze7|Cji(_zTcG>!UKmGvTzfrRG@r%DfMtc0oU-~bf0O7w~?e8bbsumKIGDMvlfBH&f zN9K@Xf9!K59oKXwsGU+%yXpj^{%;~fAkP-Zla0~QVab7$%^@6mPce(lJ9U`!)Vq|b z>TB>OFWz8LS+~i%kk$Merq z^ZtCoJ%hb&+TM32^SiH-i^r27aoz>}>gS)odZapC?sdMse4cl0LX)`3dT*4${^h-d zqYyvFIz^}j;V&S5MCS7+bI?a#X}8*2Ir(RPmBB9*{JOW^l7$1H&=EQ8b{=P5mH zQ?cEP2JLLDsefe(>0LrmZ>c#>B=}q>%e>G*Dpf+LGu1lrFTphetytU;+7e$MZGWHo z$`Z=4ytv#X^9CT{6%qtd?y89&Tjcwr#6_ zq(m`tro!weMOu)mQx@>*)x`SmRcjN9bLH$JB~lpXa}OEFp#wGMrrFaWf{4J_aP;G0 zqv@zh47DcyU6dc62{5f)>mS)H3Yt>^LJ`rn+-&+*4aD;KSvqwN8z&o{25%q&nZr_} z1ciLj%*eMad|{_2;`w-x-hC%SWS5Igkiw`yytD3Dv zzeBt!Pc5p&%07L;_K5ZuOY;OjSQ72x6v|KK+M0$p5#&6TJ=lg?bC!^$Du&xN+3GC# z%f$;vtMFW$I@8`)-W8W0>s#SpW(6(A2WE6D}9+~sXHwnBlU9YdXMJ7J6@$-0VZ z^TB}O6K4;bCe3g;KW~_;rQ(`gb^+jxp>*i!Ugd1ozUnKl3Q|Ls}%0d@a{kK&mY(D&fhY~-T0 zU3@eUw}p&Znqn{&hi&2FxeFFYHv^;E$M?$o)^p>|J7G#qH%57BMrI`-qTPqkF>rR@ zj7<>f7klVdq5Ba*Uz97g*SbE=tb~KsR)!WCa<3%BMB>8*MpIGJMefj*qXdwz3_t?1 zH1Sj<|0DgAS(BP<%)y|+#PbXmC%3}tGf@ziA0Gyf=kZvxSr6^@1HCwWdcyY4T)*?P zn`qX2{m`~D)h6Ku=pE(LLw_=#t&KCYbJpAR0W``%)K)fh(6mDOIokA|PocYhv)%1S z6G2JrL#!B8Xp~9a7oV!8m0ID2uI8j`BI_C3;L#vEJ>&$0#9;Yp^ZwMDI-jywPbQ)N zY%1F-GhmofC|9^SA;AAvkPx_7HfAQ-d_;s!Y z+UsU1`d^HmXL=6OQDwKsJ> zS)oiP0X{`;O64U_aen2WBJ_-R_?R-;@M4#{THH1Sb3xq+^OW9gpi65lZ%c;!oLHcT z-=?RdmED4G9_q}QM%cr>*}Le7a)6RaP1@D~)z>hBVKp+L00NYypdr#INj0CQmLQ5U z@U83mtg@qFL-aMje$GK(4QZ-?>b3@8LAW3Bexxj;mpfPol~aj#RC+<`00@+H>fZu7 znmI6z${f3gL#KpFX4Pa-PlnE$eQm28c4PK7>T~wA#S}PJu~c<+IXC6`?$!Jo{qW6? z87T8v)JnVxFNZ3JBD}Z{Edx;HImfEE61?6w1M~dWv9I>l_;D}**4Fvz+q-k|$bt!z z^l#Q=T|iXT9ek)wmz|b5E#^5V9weSmi7^+C#CK`L0`X^yhh<-{=L4i*(-jiUP*WeW z*Z$hvxr!_KROzTQ{!93V7nDF3jrD~{hl$l=`D&4f=G}!@P&PY9Y4K+8v++rTB`e^c z%E@h~aN{8KG1Ux8$Sm%IkH^Z*e_F#F%aJ+I7L=83>|5h)y%?U~F%r##PR5GvPp{tY zgDo`r$dxob+{z*t>;{a?956!M9vM&2UW4pTOw8%0i;XVyE%)-o;5vXAlt@(Q9C0Wh z-!x&jNEd2O&{5(c^i9^?u-h#IxC>(Vg0!UV3|F0(?jx7Ce%MKPbJiZxR^aUs1<)S8 z^u5P zOzp9HtQG?^na1j~^z5^CqXB0D(Mmj^)+8+^I^!29$ke4L_3 zgw_{UMHsf}m08P$CBgdYfrv;lWv+V*ML&X@ZUQy=8Kq=?STy)GGbZTHs`Dn#F96|D zWH`UB7=uw%z;+y zZ350~c_2Rxw3gycG!+-3;;~9NGi$Rrxpe*NIO(k6;vlWox8^eb9YG_m>1;l9{3KX2 z&onnam9jZo3-5AH(QjVYTYiO7Y{3Ce%j!upwDF4^H+&Zyu;B=Ri+qd#!;AnvQ5ex- z;DSS1qtV}|Iz>O9#`wENsjye_>FR4XcR>dm_9PtX>0LicT7 zX#J>*;#!zK%?@;?VpS}WIw1Z)Vm2-8}fhtwAmkXJu7P8iatq* zC32#JP5z`?oO%KU%?!)zCI!0 zvCn(mKA_q(jS6n1xuI;6*qO{uUeGJvKoxwZAcCsLH z6)S;TDgAv4I$JsIC!xPJOD9Jc1)ad=>6AuZH0Gbti=k`39?HV+W%~?Z@{Y_3wJzgE9>`1;O{v4}$sV zBU4z|S$b`28#kUtEJ33ljPgCN<+{ykDRt4^&4YNs$}x8YjPU=Y7uNUh-^nq6z4Nv5 zyrtS>6-4l_*|_hH%%pC&Uxzr(duinUiG980tY6wbJc>|;BB40AxJ)Z^eg3LgJ{;QW zL|`Vbhm<$oPDDx4H!se!Y)wbx{my(gt942!PY1UTDW;n|oncU!*-c%WDQ{I-G(-d) z%jr$*18=U`=)CmKUB6ogvs9uwgjf)S{G)MO!}n@0Q-|0*dJdi6$+}o*!|t*ZGOf+>!lOF4#M>*j8zzO{Z|hTEAT-9_R)(e=4h4Y6))Q(I)ij z6;NL2JBo--@h7L-LWS$PM>= z8Q}M}`Nh<3A_QzZ(>$1c&rb{3dw^d&f~w(wZ*0O?@KLf*;OsH1sb5he$D-o=5lxd2 zE9v3ObZq2v%;S%R;?w{C-mU5o`0wI!UJVn3yy}=WfJ!Ne0e_RWWMx!KR`Bp+7h{@yn z-;>+oBHzYzgI^97M{XW$w9NVY{Kb(sovSy3iF!_GrHhP*azrZ--W-_-lt7a9r_J3v z?;q55N9en>hEyM;YnKiA?pTS-%Fk_QP^cC}tcvaU8r@51+GkpA#y_;KEz8f5Lcr%v zHC`FiUK(t_e*KD>MfSyuv}N=OAzt8H)5koJf7h5{{B~_i&L$2Wfw3fN6bZ|{foCuF zo)nPp&HU|~2UA&HR0(^XQ#j%Y7s8a3>@Vf7(d{UYVF?1q^E{6#HbgnaVm=Ez>maXj zkh~G+s{F>Ui74{I78LaXiEW4g3i=5wz{!@P9NH9 z5({!&ODv-MGB>MtcYGl+OYv^nYkcpBaD6rGN5C|tb-a)``vHKsvEqne)U~N5ye@5P zCkf_FQ@MNN`I)xobF1NXVt_b|J5g8PU2e_^esX=zf=L<5Rn1*^nAHV#+7w!CKHE{;`bI%?Y(pQ#eeoqI3!Mzcn|3}X9xph)wZ}z5_vKf4ECCFA zaN5p!>7R@@ja0l+oG~}oLLh+iy_L=V=c8kUtgyty;GX>{Bb^a*>?7DU`dDs z0?t9W5l%o<7P#jwhH#key+P)^@P6;k{$?Bdxwqal&tYquTnxWT@BLYE^K$nQC6}tG zcWlQd-Gops_=InH&O_e#I}`KA{A+ZR#FlTY?6zluKgT4Zt|c;H>pu5Ur27Krp+9`I zYwL>{5ev%Vu-z2Kc6Es_GHn5M)ehm7kOH%zie;hEC7XhLp=y8FOTLzx0GqyT^HLYQ z^@4#0l&x-pb3%_kLqr^+Fa?H#6f_Sn;^t@8)F!7Q8ErqPYAK9(u z*UJk%vh`TrzZn}-oPM1@4N~QQpnTtv*{eLNxeN zv|gc)QJzgwOX*kFWoOCZB^}fdf;_J_02|tbc5bRu1&9Xh?$U;o$uiZ``8bh{1Z++1{DX3iftXS` z2e!6ixbks;smo|G#64XyA90%oH1UIpn?1v<)5JouK}lw5!Pn#i<0-si;iaNI!d%-D zc<dns zwKCae7A=t-e<=^b>`07GYl8z4d}c}IDerWYy2+nRAyf}DcdU`LrBR5$oRxp4c#D#C0URB;>&o9n#%A%oO zV-zWXjScu`DG+`+s8o+VkvV-$&Sf-0Pq|jO8*gk(MVFrUqU`y31YL)F&*kjvd-KrP ziO7(-3tIA!9AWk5?eJ0M$mwub**v=mTiA2u4v z&j>XY5&nGjN;K|;=b2kcpe;jLSDf!Te|;?+L$$&sRzO%DW6F{B=+ICyGf24{6BO-C0f_yQ<6s6B`mX$RWb_q*q4j zUc5Cn9thY9Z~c{Rx<0z_j2FM=#g}OB1SNWEQ$1zB54C*?HeC(Ui&+xcSX;(0e==2- zGs)zg$R+xcXm_r*izA6*c{k2B9V1%Y8AXHtH^={-{rlgKUNtF|d}m`#0?98=MWsF{ z|NKL2Cs>E3+eh<<2P``H<*OGt_@VDgfw}2LT@*LJGrqT~ zo6CJdmS_`&{@gKodH!5AI{D2QG&hwz4-L(G6DyLtzL6zL`N2&Ji6@dsL?ysgFdz-( z<80gc@>p-TrWq;@LZd?EJ|On~`Z;GpL!u0cyE!^DSBphuL`ZbD1s;S8aS_TWNDp@V zDw_hA8&|XDMM7|t?!BK1t=CxQNHPpT#Gw|$sMVr^n#9uc^N*%BV`Naoztq=y!)xgh zmigSbB)vNXc!>qUCnFH0^4f5cbED?^kL3gz=#mb%juYL7wlh>gKBoMknsjG7KQNJJ?f#^-)=frmy+Ox*4^b>2&Y*1 z%-ol!8v|ef_HJ@SM4mbU?UK33^2R3jK@VYpMQ^!}QYNadVhZ(nWnR0^n_aY7TXrQ* zh&n*6p#{KH{tPikN1LWKoi`2RzRW1*+|(?M3PX6`xBDW9o~kny1I@&Z{jX46Ql02Z z)oA2&=b*&IAjIVG*|T*!(xi0LcF}Zf8OqaB;{I@Q-^V{e)dwo3|9=!z8dQo=k2?dX zZ;lNyUZ7F5`_X1^Qfz~?QduT0GbL}{q~#JsDO&878V%d-q=VXK)-wx2rT(^ zo!C^ziYIP}yFBy$Dl~VtISt0pcYpd38}DjEClhIr{PE%S(kov-xT^BGAADolPKEwS zDMg%0llzjC|EQ%bdBi(-WK`3u+jb;1!DYg)**tP66zVj*kZT<~msnXjqRsyjXO<=L?+^qY*FjDlXgGfnw) z{mpCsP$qcdg2CUCewV444qSmAEcCWTE1hehMPyG2RBdApcQ2@(15eWVB4oP~nKIX) z5@7iMici0fA>5AN#ln7Q+Rk---lf(o@cQh>zP2&+ZJD~X?fOaq2ymJFl1kaQarA;J z7wx8_iR$XK2ibSr<)-Q1y@jHLi7a&$FP@Z0Lfo0geKz7=qS~GAudE`IBj>{)Hf0Jl zRkNf*As-$28YPuM#@ROWf#HqTEC2iWw>ZpC zeV2HHT7H<@$|zPB+6nyC$W+feO`o|+)x~g-dRxFgv+TA__bpW>DhzJ`&&MIiT>m8} z&rvw{Z$I5=jN?C~?8bf0Pr@HVi1j#=;W$AlyP|!Xrj6BaPOO+s4w=u{O)*cQ&;WPX z_+T8I z+0{bSaxBUJPmtpce`fFOkPcWoPS1=#`KphpSeO0Gn&?x?sf-#3{?&k}t~dZwC9XKQ zHHL4_(bcDi=tvmW!wB~DAcY20T+Lso<}Z08<#@UD0!T9Tl{?~G=szesfJ-Bs^!UW& z-W}cAAnVP3fr-GlMj5YH`4V;C)ShEQs`dC7GSS)%!^g1yB$Wlj_y#sDTc*t>T{VOa zy0-cnygU0i-q)26Qz@gyK0<3A)@H9J=@+k0rJ7skLv6uBPuO<(ZmoREC(D|8-&9`` z9VT`rgv$F6Zdv>CtI<88H~865wu#3bw|KJl^ttlnMUE;^rO zoNmtdG)o@gJ*0F>Cck(n(c9Cl58ITGQx`s@3$yCQ{x+fIPLpQveDI-W6GPj+MAhRO z8Q4~&F4s07lY;`>-9xk!&$XQ zN$U`ALK`|$RpHtUY1HurW2eof(3h|jUy5VS`A$KP_@)3;IX+4EL&p}?LE?bCbB!KhsM+hE>G%PeJlDZ=tzyeT=!M$GXz^V zaIeHAjY*=RX3z}o|I?-m>l2(-N?^+nOYT4lBAM%lqVY93FUex5*;0o*_2;#iVU(Yjv9*7$6B*qKT zuC_ORvHW>m;_XC8@@v&Z2(Ik~KK z7T!%dD%0_*KeS!!H&h}_qd#8)%b=qSdCq)s213tU>$6Tku9*UTc1HNT_9o3>XNeK# zHVcfAc=q%Z!?SA(0=|CE`lcCZb24Kyh2}b4M@~1#r&J;8Fh)LHHgIB9`S#(ZGdGN< z3ahCXsAG@nt^Z6>*e%WGF3)DOd2pD%83H!ygkz1xG|MDdWR}1mWo4R}tyKIKhFQbR z>SApYFPo|;QJ8SdIOMD(+|IcnsKKY|49KpRoyGTdIstpUN5t@Q1TK4eu;J7Q|-I7v&vNYs?bc zNoTyHuaKXd(YU8n$0qJ9ZmhLz+K2jJy1n~sjEbSekySRm2DnaZNe$*S`cK8X%u08-QOjFF?q#eZOgrG{5jQz`u8YRfwLQS2LW zlp@a%u?Q-d?)^TH;vcy(QN#AwV-XdS!HWexZ`XA-NZIvGW9-qhi{z2KD@MU&s2<^)W% z_tul-vHjAg_47}ejlHg|52@<`Cu7?V+lk5AU73Z})q^@6j+Q@$NqJ{zOceyhm3+C* zHmJVc1-DV)z%iZKoGl=;NkNBRMIHdSZF1P#yW|fgi9gU&k1;)d) zdriJ6rI$X>?g@HTbj@v1xOSI9vRwFeaP;C>#))4>Yuffy=HfB%#gcpxV#(|_o-*w= z)jk?)|4rM5jWZc$Vl30=rRV?jp)0RVWe+{8vm1p;^}3AQ98*J8Pg#{pkj@C44BQoX zINFEM8$;EPwRkKROU$_0JKLN-Y%8?u$hKJgv{BTRczuLVH@m5(&u(uu9!UKe`Q}`d za{v+oRD+FQKD@3l=sJPEr1~H#>EL99P*Bq)X(DcLx=h{LHlJ++WaZ$zpWXEr&mV)o zeziKmvsMWQ%c)@NEVJ@%b2}TtK853Q^(F_1rLd-gvk!)Ztl%F0o&SH-vrwrmw z5Woh?S1ETmWG1{+WgakG@ewY$K>e6{ebaXC`33#lypaGtk|0d|dn!NPmD7Vm=u+wV zOF4*pz$$%|V-;~741yCSgP=b(eC@$0*51 z=gege>FdGEDV-gEf_+84%QN=Xl$XTh48=e8k^j~ReSu5Lb5O1^%4-_#wz3;imPLX4 zkyx75gJ1aBre}4x#(6$!W~M-ckmI_`aqar-&s^V2a(ILn;37qv{->u+w;=P*s?qn8 z-l8`@$b11A&&SR$HwOloU9IogHDoXoFtV${^JRhi-A*nfQz_|ekTblU@wesMYa)C_ zs~&O)bcSr{v^_*u11QZ6OgNJ+&(j+3VSMUGKEzs3F{Bh)|NQVXXMh4Ddsw_u`(;xTAlqt*_6`347FEr z*6d8>+I_FimyqV`SH5ttP4NcWrh0|}+uX+vUr?lgAr9B@9F;LuSd8K4ueFId32sy8 zzGNAF6O4D0?&U^{J<7M2u_ipu1#Jligp zq-Ac_eGW$KTeHq>?pOaZ@jvF?X=0P94;^BWNGsD|T#%81{)%P2N(D>Ff@{446-szHX#;Q>S9!ATvORWKBVcmWhco0 z)-BYsj!W=CQNp6KfV&lj9fV zk_(hC#Z)V%5vu~}4%?c0`}__*4o=?y6qQFOL{@xI1{1w=!KY7?gxIFpkzhO;l?6d` zM^wRdM`G%WvYt4Du@tlgQhlC{F&orhr|AM!cn}aB#u?a+md@>iX*->hSmPi!9l3h~ zPA2V0Ik7NJRvqwEusTdbj$^odwurF{kMBq!Daia$yYhe62p8H*%HH6 z>eC#v-_VSI#oljh*Rj#R&?gZei&^T2DtL|0rVHUzrj9)%*XbA`Y|5J-kOD%iXs-X# zqjqvMZXKFjmn$Ub$zt3(awdN|SU8Hxnj2)_*;H}m%F*~Qr)UfD&xGfBcMPsS@8OX9%ik!A`HUy98TseYp)bLPD%aNL zfs|LBNJ;o6IXuNz5q4C+zRW1!KKzfhb8C*AC&KW5p`d`O1UAX$1XsI!EXR*;YnL;{ zg~ry*Xk%N0Y-h;+dPa^jPvlnH2~cnW*<{9UwOXz2x8Ikxo{?n*t}+z)G-vw9linU~ z#XtTts_w}Xif^y2u#9m3ezUP{m*+`A#FWM^wU8L~)9Zfc8WfzXeudH0lR-{`x4G)! z9f0XcD!mHU#3nMqYWj+mHR1TM!;~(_4SXNgKJn&62xaxJ2x2S`yF*#Nb{mVtSbjhq zjo-;;VvUwrmUwWfV&OepWbJX4Y61{L`f~yN8j8qVTdaK!{umnm@T}XIW@KdD569Cs z!D4YJE?>6w8hq)@rty>w)2+600VegT$FOd>sHva38_l^%4Gy5&ri!9XsbOmjjHYhb?{ZPcODy z=Zh_v8meHFidtvbCyKBTNEGe8FHSy7VVAWvVXz*#l05C}zB3)@c@BB*+hBY|S%jEE zvYq@`d*H(yO6bdIM==5xm_APw(MIg}{^`5FfA|k(Pp4i?2)3GIA_p%%oj6C@ zRe?>L8Zsl8D75SL0oXs9L5+c#o6@Vi+$-A@+uDS? zV+AOT7qc-9jThvS<#O{6e4Vg3xCEOn##6q+{V+7Zu~yFd%C&#Br3HkdloddAitxJ znk6vA#Vx4p=ohAXcz!bNylc3)aCgVI#qK4QWBYQ^0?aI51?Ofl*(_L`Ojy~95rIms zmNZq}6IzWm;8U8(9IN~PC{kF%m*(dB{XGZVON0hU!Z*RxbF2IIzyQ>TJ8Eb%ybM5= zN%UYx(f|K0$?^nUvyXU{^+Ukhb7>~EqEWvbLwL}rd!s>5vpxalP`WJ6zTLsJ1 zZhXnx17Mww*}Wy(i=_DEU@)vm_-EkaIV&38ri&7RFBTaUS2y+nlN2#m+<}8v(Zxj| zZy0NzIUWSwhvBiRT3CY1!CCA>lJzis#h#LHx3RwRo9DCLYtvWM#a)wkILBxEb!Qtv z@P|tgC6=8DAur}d6RtWz8gUD7{HC4X zn+#2l_(==A{=MG=sNb4u-3=WbM&}lEME)?MLlbxU;C;6;RoX54y)~QO=4y2UB>&V3 z?yIzuU;JXwC>v`;nM8b*OT*XJbVJmj5gSvBhLX~nyvoZD z|2A%H-`q#vQ?a2RDjzxJmXF<=h#|8bM&cVZIkZ?aYqK&nD??<(W3(4UxhB1XmObbs z%HKn)Ek{T3+dcxAQejyaXN@XzXL*NNW{-B)hv&%6$krZg7Jb;M$V3?YyBsWVZA&6y zw4ygohn5qITP}n85{eD;Y+A%|Q zc79sBrib5&jXy{C9qhfcTu$d84YH})#tMnrV)D&K{9={@pzZqF=6+ROgUdH@!l>Aa zm^ph2oV|Ulw=mTH^nV8%g#X9&MUq?S!FMT?yXhp~}zIdusvCm!4YU7$?lCX6@blnhv zWd#`jI+knY!0^~#Bd8hE><6vH`}NUj@@lW-%X37jGZPq$Xp6kPUuzZKsnB zvhE<t@xHxEXLFq^%5iQ=*oTr;Frxi#lwa4F0`{xt$Qn16m7<**RGjlUxIs&4tqlMk+W zQT!r#8K*v#uc6mT2bGcdEE5^?o?~QW=2U&~E0FEUyeI;5Ah*^}T$X36)X;57&%C*uje%*p083PdXtDM4Q@Eb`&TRA$X?Jg$22c+BhDK{Ol1|>aGJQn zl@y~$CV>zCuLCmg!pbGyrr-izsrw`=Nc+jaU+KSEGMZEZk;#pgu@)Q$>m8?8LhrhT zaCWQnjm$P0I}edbf-4BHWYJWCy)+Xyq#(bal8FxvsITctb(l z3TXnG3&#;FM_vRXThZo$CEFhM`w+pQ}qn+y*~>MToJ zlVmkfcH>%s0}7WDpxup$8&95RQa~An$k)tgUY#XEHGutJ5ga3N7~wG+oZv{9NBgtM zVK^gkq0_s80VRpWPP)WiO&g`UcEh zmZCAs?qk3e2tBhE`i6dQChP^e=``b9NdLhjq_uQ~58g&PrI>q`vOAnyWB;Y4KBTkJ z>Jsw#fmRaTx#1YI@+J%ytL2)S$vYOZeY4ho`?6CFMycksHlWhxl$;pTR48p;D>w1p zx-V{dx1|CQE)>D6JJy&@P`dVUN+i3^D+80C9U`(mj<3{F{_lgvQO9}IQIz8Z((7M7 z4EYD&2T=(4)>Q7!@l$0DeJG(#5YI51HxP@Ew0k1jHKCNS$+bgY5g?%}o4Amy;xD$Q zD#zaZ;}1-?jgcu8RtUv*<=XAgmzW)#y1E`(QNB(7{(}kTOJbf+X1n$Lgzca_C&gYV zA~ZV>4LVbDQQ=hNG-GqaG?W2fHiMUPj(FeszMBmw!2Y@T0sK?wfRLmRhhUD|3dhXe zI&jEjV^YoWLAi`_@+dMT+QhGG?7iJ8_;9Jm=3D!m$Q8PyG+SndBc)ori>n4@@>2S| z4puZph5M@udaEZd{{z_zP$woWb=6{A^?wtY<#(46Qv~lh^Bkbn?=-#?s8#-;NsHj< z3948g-lZeL5-P+&O0dYKB(gMnalI&D41vjO^WJOPHaY8T%zbY1#4B?r^5M6BFGl2b z%jrvqP(a-Do@r_E$SjtgcBp<4GkO$Q35NoVFSKHS-f>fR6Iu0Q_2k5QM8 zf1eo>x@-KN@}FsQwcg+Tj<267zGgwAE^wU+?oQ~{@s?Xwe>F@2KvO^nRIf72qZ?~T zO^2^wWBxaS7A!d#yIj}hu!*I0Yf1M0p8GK63Pw+nu$=R;Ee2=)y*8?R?vkgXR|zpX7ZL znVLl1+mA7lG%gZQY)DkIya7AEw?RI7uw5S-CC9_W@~u8cEL4+T5Wj1?tzWNsHPTOE zM8WITbV2(NN|&wF@V_^7ooaKdZqFX zx;AYxS-lB<|K#x4FF*3}%RcfYC^S-MsJ@9grQrZ)sA)v8&P|2hyjgUksRqN|heo7g z9Q%u&L|hv8Jx3B}9%o75;W+R$LiY1WeL4TaXE^29q!#M(@@N_9>fqW$oKErLCXQ?w z6dL0j#raM*$-};}wJ(C{65>|6;QVA~0`WwPM!R53TiCXZW;?D%tRy8?{9J52=M}tBCXjW9HqO6!F&C`tYI!?1-D@aNR zCG<#gl9apPTHn~E<$e2--G)(M@K?~Tr3(XgbN;INZYsF((*$wz(G+f->IlN~D{L1l z);73FZuZ`+Y{((WxH@I>oj-r~PE+Fi)->fq$|Y8raK~3rbP?~XlUPOjbymn+D9))Y z;^kpu_O5j%rT$6ze*9wh3MLR=CX{*F@cnn8vZiUXf-a<9Tybo3?}8tW%jb^jSCy@0 z5;j%K>BzxIXQs)X57GbTM4oQ0M6E410P1(~0hOo5n%R8Y-Py@Z!Z)UIwo=`(^Hn(= zrwgKbL03uDBmZ?Dh6*vj$KRPQKnc~Djx~Bt(55Q4fLE0_UsDZWV-$#MvvCd5as0Me zXmxcCGpqxZrT|aNiBk+C{daG$;7jzCg4v_GzBilf_-h%d23z?rx|rV9d^Mr;po`jm z)plkP5_&^(2staAqY5G-vgB9`?Ici_jsnx=aD@ucsnmXpbL`j$RpNyg$~8xbv%gIC z7|GWl1Ku6yRQU0`$b+SmS?vv6tbhh&yr^95xdZ;aq&7pUgt)3| zuiH0pd5pl_ps}mkel`tc!zbsRutLEvKQ6 zKTNqCrE;0CnN|l1p_w9boir^q#We2d%>))oHleAoGaWI-^w>>by9u$=o$nHlQbs{k z;E0@QzeWr}TfDa~@NKTLvb@TZ^9kepS_j|D1d+>AN?m=KWuR(i`MfCZ43tXa9Fu!5 zRX4j+ZlEyw%IOp~*)I6nKj(kz+^N{HZJfP^-$&3%{%6|sH*S5O8A+*Zv&pcZA(HwvFNgg(dhIcN@l9;M z=5&twCUEvFW76~kv-Sm=1r*mu^uDck9cE^i1smBT1xrc0QUbh5e zWOMu4-!F{urb_&66fv+tpG;tj2;_%tqFA2Uuz-@JaTB9Nmmv|2KQ>i`beM`+n7z1t zw4rsAgymO#wdNq!S9}+YYo+&5*U#WIcu6VrCIM{Y=I<*bCV>@i*J16ywPk6x%gQ2n z3ENJcqX4gS1iu|Iq#*a!YdGQS)qKm~;?0`_VIL1d_C3oNj#UhQcrT8TMGwP}>01Bg zNFN1w*|tk))|l>=zFrKLdd+QRx(;*aloZVnr&WPP$ePCs5l7DwaWe~Z=ven9 zn`LJyY0s+tl6`?!OB6!!BXUFq)R10eV&=^E zY2sR`&wOLTx`zi*^qlfGKR@|ocfrP6O>E*nm)Ewo%TpM;jSWfvD__?i^vETMmW*)Z zE;T_>|JsEJX5CdJ5d7`9Nt!adew*G6Clja-m2%&%GdK#BOL z_*<`QXf^iVF%lstDow?UNUod>4dr+Jrf<7+XTDwBmk?{nz*t&(Nb!b1oFNHf>04j* ztaVy9TlX7=7qsaN+AxbG!KJr?g`ZaS@J-;(32afq#kZ`AVw1}OyWF{2hc45Go1bqK zjgf_tI4K@2`q<@nrV%sX@&J*6LNtlmo$GAop0?YWCwgyqhehHb)#74VA(~0I=G6gR zv+HT%M{G;5oeBH|Uyoc`Df`YRzp^2fqWZg!*W%)iABtQ5lg5Z*F|ZgP#hCpI?I{Mv z3GKN>FI^jP9xstsI9G^sXcXzjzCOsS2vC3801D>b4lNXZ&YNm!@9$zm!}m4+K8A~! z0aDIdhKuv4H-}yJZzhKHAw!ir*}AXT^MENl5)^g5$*PB%;J);xF}U@t;-H=o|8e{r z#V`0cNzhz|{^%g9e&PD~d(%-j6%$s12hK?;SDBCKD{?E9B=v(UzK2p%XJOzoSmvA@ zx1nvNxq~^1cv0JwN4cCh!-pl=ifb}+m&p5Xy)PBqM_H&IegEa7r+{OL{%o|)Rtt-L==mjVD&MRb z%HwJe8%t6U_z2_I^SOFkxm`;A`-?cwA10i}o%eU6Z!$hEO1W&uSZ}!ErajSe+L(sE zV=zT>wI5K)!^Y8>jh2_>QsursKfjnG7w1UF+MMg$FkioplH(oucH%QU`U)jR7u;rJ z#U)um?|mM}F?CCUW~5-TgcRGs3M7K))|z|p&c-#0{6t^2l`92@y+n}e?a7EFdqMH7 zFg1bIv|G<*C`+=jyz4T0fmD^z9US%5=Hut}p#anty}<8|9~#G^O=b9Gt+}-8lL1mr zaD@7?WfD_a4WcMGLc-|iZ(24Myvb=isW z)shPB&V*Rs&^>TJt8zhb?KOFyl6t_}e;{44# zneiy#(314OY}`Ne?KUxP8ym(ZOL_9kDxJVG)x9Zw&}K}3;oC0lsei)p;|~;DNr+;w zrpy2WYrk@pWBk)G9>PHg8}l^1wY3e2WNomOv+HTL3-WOIML1gKz3%+%05v3Rc;5_M#pvCAqpQCi)a3Ld)kEUZ)hf#?pd+W6k?!y49MJhaNlY~QW zotUTfJv0WGW)?=old}&##(m4(mq{4}OomxN0o(reVDQo0{E!vlHT3F;4G zk#tdDoh|Lxrnc>t7aY-ED;`n3=u5$EG>mpobC43ip#>H!%EPA+||0BY0Ky)l$4`p z6D)~|vakw6AE|!Sq7f=Fw@aO*^Gkr}d`HS+BArGbs4uN4X+c1`tMg*imSLgn?8760 zf-98yE;xr-JY_&(ei>X7SB!X|(ECkMwwn9Y(O}3i-IXG`Jzvz*?8Z)q~Ei4Yd)dvivd2X>)h*w zM7^Pd0K&YJUA!4=p6)fKN*T_O>1Qm8pIlLAj2ei=9hWHR(A4Bi7pB)$D_j6S?VH(^ z!Zg3G&3@%3Gduf4@9jq?zaM?`?W>sb^wt0I$)~5^ySK~g%**}I3uyLuQ>w|dty4MR z@10W*p18XdMeS3@?pB75U<)(U^v41_YOZ$n;m^g~@@d3b1z#QE7mR2RWzg6w&j0|v zeK1XJ0=9mP1nti3Y!GY>il~IxZHy2SwlbPRrk@dDBrjElpSnC$PsHz5Ysey9@W-VHix$hrfIVZMz|Nn*+eDkRO~8ctK;Cx3oF1Rtxv3<2l#?q zgLG_Zz+b7GUbGjW{RQ%>zt1Jg$`cVB%mS~F(5_t|U!Ws%3^?CLq&9;wG)`vI_zT2X zVMxKsQYLIr+OJ%i+qT8lSKtlOa(`48q1&d##tTjAGZQ8|j02@jKJG`l5qx??j{WG#7rjdc;@qLo~&&F7uf2mC{ z1r2Hb4xxco6aX1bU}%WDzeE6xipPwT&)ufi#&z3;e1@bM%Zh6xb{c1!vvxu^6NyGe zj8NrGi*LPg_m&sL#0fZTddYK}M!<>$BTwblHaAPQ+uDkdkhRn8VF-OUp`3~JJ6Cj6 zU*{s2DGIw|d@U#~)LR6E0VHzoWc2^*RF9 z7)8d%VfrxsUm0wMpDXr$`z8fW$$^rlbSa48cc$H@g8XFPfXO9lpZT~#p!Ht^0uau6 zcByo(HI){gahb7Ov)ft5GA7gyucQUS1{xr3>pSt%!W{J38+Cf`Tn(3e^vy0`G?0w=3J>;-4`3p7RC zmzCYxpdvC+`*@!f&!ecSb+%HifV!8V4~G~I$y(av)99WYI+&l{!{MuzN~CjoB>KcMKk=8AD}+CIZP6#H_%q z>r?z$3I!J;)OMHXR#_wP2<9FvqC6F`uCD)7N7a>Y25DMzJ?<%uuty{OOXA8j|}F=YHF>dl#&yVRVFOygXkeh2q*ZOD4QtHen=sb)_>w z)u>hn4(mj>c;gJq5Lt>?h)97+paMoifi{U!R1i$tO`1{?`(N9RgPd}Vq9Vix31(5# z(NTFYY2x$Vq3?PR z4|ah;9UnolGN0J}*4&xU<#I%%6J-f}W!go!^wj|_4atf&@3S&;W(yC=u!;m<_Cz}Z zD)oefgHV0CL$jaiY1{RTQ9PwJhP(z{y-X}|`g`eLe;6V3dt^(vLJgteF^|n5hhS-l z>yl?Ww3WS2sH{zBZ9~1fviG)HFwceD7E{*NawM%x(;e>SLxrN~32{o0fI*$@B=LSS z3NI+sm$q^2LoNEX1E>b$!Dju!n%+VA`S*5Z8sBIMTPpt(>=&C{Lkm;QgRGa+n9ov- zWDsQz^;5Iv^Va>)O=ft1ZNIL3RhcbE?xYCD=PETnag=OKKnO?g!b;prWjC&KwV{LI z!^Sl3>r+xdNl}@O`Ar*)ttjY?!tOf-uKX^T)$`x27(&rj`Z5;8(a;Wk!u68W6SB9k z-wdc!vK$g3l%yZ42wU^jrS+TON~c$EO!GijV!gJ(!XdBqd>2`taFFC__Ynpx+q13h zI$AmD_!HM_h9jM+{HC|FLGp?@YeYGO!Ykkf`bYmab)Sg(bN9KXLa+dI#HLU~f@I7o zjENiyH$#W_#8o4htE8nW>wS3N`%+v+%sRm}=i>D`P51kcrizTujmvQ0@d-4(<5ma?lRY9^Q%GUFJQv?u#h|`>0-hGcHuF zkwGHm)>U-vxw_q_nP>T2{r6mvW<^~@Ux>?$KJ=Hq?VQ4253PKtiEoQSV&D3$iK3R1 z9&>U-iG#DIbeaOJ?2dR=%LHH9Y*J79?fcF(mYUDKv-=F7()-Di%cN#uxYe9}z zaT-CVMB*xK{w(6zK6emd@sdsi$Rdg-@m=!if5CDD%*!32)G3@g*& z@+B%n@46_Bs!2R!4?SnQd2Mup4HOoNF6J$@PAkDgR@>TUqchGQa}2pnSrwVn>En}8 zTE{e{wSiOpi|qt(QhSySjKJ6yCtlpy3EjR7%^yYxhO7pKta=@VOild+BVKeB{Cs53VEFqNw`XtSAlLwC`yPa3 z;qLIi#Wx^AyD)(fD~s5Q?!Vw2M8d3)Tm8GD^Hat3v&FHfoAYEV_3mk^g`M->`#W|G z2xAoj_{kPNlr29S08Bu$zooL=+6hh!x~*K*0|o8ZFSf3JFg!%m;Lc1T|IG$_pMneJ z{44ywBZ2<=Il~@MFQ&BfpuArN)08RMmubqhJG(XobT{guUYiyzZ~QRVWxRd^<|4%4 zLqoIh22f#k_J`1p>b|5%8>FU?OeEcK%_i8=B@+}qt%vDDtgLBd6KAaDH)c7wy;VvC zDzNABCr9Kt)1F76NLe!jLn8lT@5-FG`uXu2qVe72kGeRIKGy)g0f>`PE(*im69@6M zUJ4B7^5$BEwAnye=e_!u(**aMe(n2k`UijShy=-|dso>uVw&gbo*!M@v7OZmqn)W9 z)PHsP@Cdf=dMQAT%GD@idy(zKZKtyKi9Eh_n>^bERnt`FuMcf6nQp*L6e6mj!N4S- zh?-MqrmbuNqrB>a*C+3qGT1g1Wi?H2t5jRe@9fv)C*Q4tpjHzalVZQN002dwbA*G` zyG8ya??e8c+Qb%>9O`DH{4My-SM4RfCNfm+n=JjcFWj)@ zsn$E2=Y&Uj1R=&qAN?o}4sIr*FGMj|Vf!0rz0#^7y-@~t=>g1SJ~mP>R}ac9i%wls z$S>!z{o6Om!RmK?MHAuj>@-HuQ(rw^cyVI51F(F|(E$eeoolexfOKjx)z+F)P_yvt zf)*N-oMR1xDeUaKag!m)%V_!E`CJ-2-!K3?n#id&T(*N1T^epB1{^0-p%7d$NwY&&V`(>R?>3^swFRbeM$!Bwa zWZeez`x7#*9Fon@{Bof@{Z|wsfQPTatd(zNHyy=;%bzHcE*K{1eqEeB&wN=e`uAHC zrZpL>?NvE(`0X2YWALi6Xxp7ewUJ>Rj+s*#8%rckGpS!` z+akCX8=DL(p*`uFzU@twq#OK-^i&v%uuz_VU}pkjVKHE}wiBkuo3N&0orvhvi`Wo5 z;f~0DV>AABO6Ty!JHr0GZMr@vu#n6kq`tK;Pd>$Ypb>V5${2rk3^qRyS38{Ml1jo% zOyW@FPj4@NqKt1~doF;9$f^ETSMqQHm?fMHR)9w-ABcn3oo$3Bqo4Pg=*x(ubjfBL>w~YbRcA%Y?x6bv+2iH`lNn5yFNU+nOK+fKAP1(n3SW_V} z#llnIxZnuwH-{#ge)9l-L5|xEBOBSR0JM26lDL8Ppi^OytmcH^|f+z z3967k3=o|WEWE5T{CRIny9{@WD&66cp+Y2PuHN}T0~TwIvw#T=x+wRCig|>H59wpAxqmt!;SEOC)Kq+0Qj_;( z?#O1GN&J&-Hm(_qCAq`iRyKAS`^FVxo}wZQxYGpRxZ>&i*i`eAWl^d_8ZtUTVJi_f z#+`fGSr||gcYz(1BN&GqNQwAebMIYA zCO7G?W{34Rm0$6J;v0(KTG!65%;j`A5AV@Cylv(8r3Y!dbs(~dyAp#MN3uKiNSa`7 zO^7u&IR+2CkTOKBgiY83@Qr2PDy`k&Uckkr2C^u6_Q5~B%vayoS-Zo0D)e4>ENm&l zwlHQFlPW!mBVV*-ws0sM_w_Em9H4Yp_Z0)7Y^MTPoZolb9A&{7cuwubCu2B~0Bihq zK!p@MSd-_wMqWp`;A9Hi>gISHORPQhn5L~rTmwpYU9>i*g76zxNULcpB^HoGID-7Tj&$c26&0%Gkqh zg@J?Fxsn}bHrQj5hRD%}A~3D}JUesuu6vM(RAi`7P2-vd1Mjp584+BdO{5}wbR)UB=VZJUu~!g+qTt+h5^tZ>?F{!@wg9hwtSnCq4>_y4oxxWH&+)zDOgOHt!!cHv{=u( z>R%kGb&72|`ImnA&Gl01b#}Og`Kt1JRwI(4?3hYYxdiwkkfp=_GfeXT<~QTB*?Wr* zB*7_p_)R){y6!6wi3u|(eP`?wa}sqH;PPV86wmn$-tB^`Qi$&D^`*iur;O;V-Mt;a z2m}Qo>7AP7v5wZJq$5MvO>w)v-&lSkN1+R|>ym-ZkK4xA6OqDZ%STL3o_q5j($1~B zZQY2%|D~&4eX-m45?|VfuB1(x^fV`Ka(aD(NJv6V5h_Spb$)#Xn$~AmnC<>IuDIv4p)iaU6g{oYAqLl5lTTIIT@IbOfr`0B-p~ykS=Vh~Y zbWJNo<)$^^j?F(6zOq_x)zykrd>fl}FE^k6oG#PnpZKSmRWErr{=pVQqf@$duMS%m zm!6*RSe!G>(Op?=D+Kn&bOSRC@ zq8KEF-J8ZPxwCaz3X1ta_XdYeI38?#WD0E0i?@?z%7bvRE>_azTg0R0`Y*UR}O zH$H*0qVh90G@WBgCXUgdrD+U9X%J?8r4sp$N^1W~l~;x82rkLF>1KtOYrA6$_ql;Y z!Lw<3&gshttWSuj4W>{~5idO{O&5Z#5!)RrFNdm+><1f@M%4zsN3L-UvcrmBdFSq! z&hrKuftWTthex&z0EM`f(>^w{GcL)7#GH`G3)z9aF1I(dZ0sm zLe|wSx|(lSFpfIyG79LEd+O}y-NXs{Q&-)On<&nR0!9F#U}LJ}4%mVaol;x?&loy( zHEm<*5$wvh4tSe*U=O)=i|B+rgTsr-C4^s*-1~(-Slnx9=;~{*?^~MdTshZX4L`&= zC7s7U_|m5g{9iwQc=O}uzy6TM>I?W8bNuzb9yPPdMt~+CC*6dBF?4=ZpFaQiksnU< zDmT&5=ZmUMR}{AY%`iel!L#Omz0V{T>J2j9)aX=kGPIYc)1Q8{AI;R8D%Z9G_9nW3 zj{8xQ5bj0AdDQ~udDO$ST;e^x!v|&ln$<1_vP8{r^N!={e{&rAkoHfOg%56Z;8=%4 zFX?9vkk2Vl!$I(cGt6V~1*t&9ykh?_jMvbH3*RysQ@!hg-`eEO%KL_@Xyt>M~S3fgg-7l&xVoP4vnB~_n|9K)@fn#xeg!*bVh%1Q?%6YBP|1#@ zAJPNwO!d^w;1@Bul*1jq&NU?aSh8@ROER7k$KjI1ISEz<$nr2%^j(icIc!K!m&}k` zfZVXQDfikXJ$V@4<}#pV20X_*QbC!zH^g)T{(2$-Kj7SdD_L-swzPrEmd_QbTLv~H z^L)LtrW$0wL{q+I!}J~W>SQiPKcgQC31XSYPLGo*?@SFHg~I(#UpU;-Q1x(`i)tJ| ztNk~sSS$<)L=2#zzyR!Cn=28beBFoQ*Fes4SSum9Y{0rNYPQM42T^@vK6$qfIw@8 zIDJYAu<(Yq)@NXLKEK=lR^hZ?ng%)Np|q-E#gu$6NxWD6pNTt=%?KbZ8iW*b3ho6v z{`6TRHY;^urKQf4eyh7p$f6jw?pe@39`Mp{|hgcn#dsUtc*=lN z4G(QSGYbSE2SoQ0vI=~b<#Ki5H`xVPx@N6F~t@4`A(~7ujwi;cz^) z^8CMvFq6ime1N?kaa}6?D9Wqxy{T^DydNDJ$$vX@-n5mtJbE|s)&_*pJoY?(D~RnB zc^>YZ2*dKK#6k4jOJ$^`iGR!I#p9s_-+x%!TbsOVwAt@P8+jQmX+2>a^Q{2@!2lzH zexFItojuWw`TF7A&4+hi{&0YQ*qRi)$d0Y8-A*HWmq2C}P<-uHYmr#Q%L+=1X5GcJ zF;*7id{xV&V~lSkYnFR}%jx~WuP{T14F5t@g71`V$$XFKF8pLrau|1N`rTnPg{dEx z^xk)e(MNE0(Ms|h);h;pF(WjWU7^?NyjJDEDEcp53P623}qw$ShXI@i@MD*8-=dU05Ea$GVUFS z7{n*7e1f8tq8!vtlBafNV|?q%)nt|A{3O*JU->qv{2y>^RmF*1*>*kK{Q!}GBG}XV zt-LVf=i+9z)|Pq;{rvJmWwACRu_oBrd1bV=CdMHi8=larH|!GyJ_3`#FxwFA_&6mV zkz*{mfBLC+HXK6U%DSct#K8I0+an*rR>f1^)oltLG!J}lHnI;s-~2(@85PK4wp$YtDOS@|G%To*pXKQ^V$G@xD-Y5Rp#8RM*4a$CX%J>>T85M1 zDJY_;#yDBCHQo>Y>?`4J+LUgY0u8xF@koUg-62~;d(==y%z*&1&b^*EBC z10uA36LDR#gC2hxa0WY*+L8H4o1SwWzW@A>r&-X#bPo(@DrHw2%)x!yrZ7m2tF>r8 zg*7V^2UPinFHL-0Yg{$CKl;aGu>DrfnSE((mGhv2mEWKf5lX9aD8W~=5!;;@BIgu% z>~p-?Q*`7(L8DV@6l=Q~X9}PNk51`t)Ie^~ED{&ca2^yr&INvNSc`+aA_E8U|K%;o zg-2=()5exOEg9LayXXhSRY$1J?IBjr?`krz+u(qLs=FnT?lMh;kBxrSe|fN+i~cc_4DzPEI#3o>{WAhJYKeTzyg$gc6sz! z=E1QR>HE-a!AAkLc>c@oWA;%+*vWbiR|YX5j`#578|}I*C&fK~vy3gfGE!zR`tIZK zA8KNatq$*OTApTav#X=8+t@dC{0Xerfz7Acb{XVy<14lp0-kYa3C$v430WeR#Dyecm(O7p(FRnU?h^?{@{Z(&*69Z;Oo`sU)C%Bp|)%3((El~$#?hFw%D0^ zT$$1WsauD5C4_7#)77$MWn;@S39N)r?)6MMn+mAJb(BUH$7R0^0s)F=sA$p+z9CDT zjPrbYochYmF2L(oM{j+*2D!58LXu0|LWya~lBM%+O-05~O@d*)l;O+9dhDz&G%|tO zOwbk^$xz$+o4*$?JIO%LBxBbb@PTp7jyVe5iKVLqE#&Ok;2^P*{g<PJ23ieDf}qmRWccO3@3A$Y*r_gM6n{xOl$$Ff)C=sA}5c9!b;JlWV%?queY^ z(;V1b2Z+)t6`?8CUDetVeyU>s|LyY|tsH)1LxV1(_0$&-Pe2q4d0!$fjU;RE6Ev<; zVay4srW?NQ5;odc1TACmDqX7F>iiNco?0IL(lyLK(>m)?=RO=H0bM7l)HS@VqKh|W z2XG=^cEjv?1@Sp5@ylvf5YJ10{RB_1qosGa=9mgjxyDlz6ckpJm4z5@q zYH`%B=BT<}pAS}Ln9{20FMDz8gB{TZer_JiEb>CciWpSZWH_ifP*wIgU z4|_xsvb$8R#ERjMr2jCix^9>Y`GJdoVD>1gFqPOuFFpuMQ@DzQkYnp?*RFZ|Qv5u- zlXy2pP}A-(N{Q{f=qKJp1hEecH9H~cO_v=oi`evULNR>}U1t4G9lCPbU6cQZ=V>$Bp0Gfn}rFb%1rc>8VZ>L*ZbLVh2MVx%$z6-2} zat|&AT|{knd|X6g8A{u|=x7$r)YwC1*etq6l-izmPA>Kg)sNfdM(VpVojI~wMX@vm z?*nT`QcHiS$Tc|d1?-U90pIb@Ee<{rCaczN;?2NfMR3KfAP>cEdogV;LM_( zK~=Pw9CrV$*$ce(mby z?Zgvn##H+xP;{KNsZz1wdS$Eh7WnE*Q}d(ed)Q_z^QL38RlTe_B&XAJy6fqhgt|{* zs!HJ?-`cjlCoS4EZu{Jt;sqd1Bvx|DxPP;?{odJ1&!~RrRz5N6@8bdft_g?W{NpZf zXg3~`J!Kb6BFISp$&fQ}g$ZWW8Lm^#6feg^al)?X+2g{Kgk~AW-jWbk+gKO8AJplm zl{agdvLceLbw*N7!&a$=mhXWbAl{SDLa~g|{>xV8-l&Tu5ek|j&mhZY^+qu?zH(#x z$*#J>txUC@heTdnzSQcHN0RaVv5TRc(YH8SS3<+Pg;ni2R&urJR$aRLKKVLX|Fr$B zx--F#1aGROjaV_!zHQO&`h!HmPSFyZvn5C5f8B&Mq$x*LFg`YJ@fhku6f4Q&p6xYm zY#V%GqJ9XrQ?5mvUY#=gxYqSux>;UB69c+zV7raigpfJbzsOU`OInzhHjHJk+PRDG z`Z=rHhW(E!NrKK=;dWnoO7QseFF;+L>JO%Nwn~+`LTgusA1M~tch-K<_CCu*Sw*C} ztNyPKn&MNH8kyPCLLcs>EXlBWC_l*nAZ@bqmAf;+nNdS&HB=w&1iM*|N^%q9J~L$6 zX4+opQ({RcHwNQWYqFdIJWavM^Z=^)Uypf>!d*_de=tP9@-vwHkI^p$`V9YL$vz9;x#*f$ z86v#_0%i1kvQ>np0!PrAl2$!)R)fjgEO;+wr?fMtn=?|?@OMdPmdFvAqOg?>hSQqh z7Ib!ExC6J_EN<`|JwFzO{gs6eknc{E={_bwCnZVO2q`ViCOjq+GzHg-sYxuk>iB_t zpN&h4z3^LNQG!r;XR;_wrONo~^(#EoAcV5Wr)$nmK$DEjUYX|k#pufmog;PnZj{cE z?L7o2b#}uvwt7TsfsIkT-_D0N;e*y_o)(^C##y8(RBCakdgZ`*UFv!1<{^oqUX4u~ zY`tpNw$3!UL@`9;_~6Gwn#%C+{J*)H|3#U5x&gfMPVtY zMt9Jy4z>v5Hq?`rAmapL2bnMX9I^6uyWg&*SZY zPfdaaU)y^;RixIO4I8fWCZ*6LmPDVLw$+WoV%)QRi!Co!^M78P7v67IuW;9pgGy(e zIquM*=EP>rPPjVE6pt?ICMiTrWZBRRL{X_M1TBzYrKFVv(*LDHc3?#wwbL6FB6mw~`Fh3V&RzjSCy2 zF@|qwVfnqUR}q-CAu!x8qfH;^v6sH}wVIm-mnWy(AFhqzdhB%_x}d!wW%AZxWN2;L*KkBKJoGO|O-C-ND+w;J1Wj-n+jIm?>-4p>tBnQF3I`pcV$!`f^w#nL$)SCwr%7Gc zoIho@FL$nAqbSqBS8|i?);<(UcxfS!WS_*zC|*|_E{{ehtq_yc!sdRL zOl2b>Yx>1ECc3NSn{Q%Gv1--z^0c|wZ7WqRPER1ERZMV|a+AcJ*?)%U9bY?Iv%t9~ z-NX2S=k`Z1zpVBms&h;y9 zDegbL(FcR-<)-tK9?N| zyEV1>-c<}YQ)|Zx=za}^m&H36F~L3tVMN+H1V<4xwK|eAV|iD1=Ys%Ip@1+M`Csp) z*P38#<& z0`wRpj@i|no1Q=a7WGd7JjS#-zw@vid;fK+$iS)6>!y_?nwTM^VHFTjWqkdU6kpqHLj0ChSZ-dWDBoWNvZnm}g3ae=`n5 zJq-eh-%)mnTnMo})H%HwDnq0lK)_1t0vv(I*rM4Y`B4TQw~#(u{@EG58lZRSv#9b65Jk&4rVH^L=rE(o zL1vy6{JEIjy;N3+A09CiY|@z>zVC7z3wG4*&W6SW$+98^fVHtvTNqL>pp?26sXh*r zV5{2Nkbt$C$aE$Qsc3(S*5jV+_eOV1J4@o^%`(j+N{G?PxuQx6BcN)Tb9N$K^#sPq z+$f-rn3Jp!<4YbJtJr~Jzy+%9Vq3q9VWC85+&8V=%y6UsacvUXfPovEHwnHEZg=R^ z6}!CVO5_?GPq5*3{oh=ob$wEf>@oM!eQle&$Z*8epwS=7j=uG~bZP2HPqy%3&HEZ_ zJ)*JsMQu$k5%(v*PCxejuM*exgN?|n)D3>{O+QV|2g=(J|a%i zS@eG`vv+)zK8c}QAAJ(XYRA?|SDIEN3#M5ix^3Y%lv8Dp1|PL(*P~&1yxrn;!y0!gII4&>1zAUlv-P9tSnLGOCAL1BTiU!-w)#-gs8HOuW?wT{`wzG zh))owyxeHv({Kg61m!d}l_7|Tl@;ZQq^O^|#?PXePfuQ{E_-eBgn&zP=Z6X~Np?xT zBNj`%{`gpG5V?k+-JlP}tv7x0PY7L;(x`a6lg{BH#RM-{x7ymWvdy8n5UTI*Hk%Lr zyX|XPqS`-Azx=^hK4R8ezMS)!YIfaIe;n6t^B;~I$U=KI(C3dUbzNPUs^}^hYWO|( zsQB^PgbiFJ{0hIK`!O~>#0J`CIOY7Zlvqtuz*_n)3_r!u@>QWj_2QYXSAP!+IwmAU zYnwQglhe5u#U4ETW%i=@&qNuvvL1Xd{FIo2jcW-bq0t+hN~tMVtb&}dt5o_ABhi< z#3oVyu}tLFw6snzj)#=lnP4N@M%&YvcGURNhW@ZhOo7b*VZvdd-HHcsFXCuRznQem zJ}fcO-mbQ3*M6`&1#yb(fc~*(Pv6V~S#Hnan$|TXRh52Kb8N{=DFE`F39&-*^z;@* zAHH!)9@-lcRpVR$;zF}Eh0XN}?reWSE14w)91MC~Gu^qI4~s0vD2>QdD7hxZ)^~MO zV{|K{b)>uc!Dy4irGYdzI;p_N*mS1GzuN_p_>Sn8mwB@O?~hL|nEWC*yL`$!<{K`3 zUf<7La7OsajA{g2@S1HdXo8b#BaPjKJ_2E@u{miQ5rOH()g2EUWhA83a$mKMU_4?I zNhq%ecTH>=wtdivO>Igb$KjCObn(5CbfPZx#YsWp4EROsk#aS%?v;e%o2z8ytzx7lddk-Pcb^|{Nw0x$f8IBt;oyR95&Vu zT`1!hvwT#%=er*?gI*u~Ip;TtMYKu3_rbc=A$tt^X}BU5Wmi>Z^m6JdHQ$FY93^xa zG4)NBy9X+Ku3%7hQRQbO0_e&qC%MN9` zuSzn%;OV$06W9@5*>I! zT0^ffO-|=rDIERH74h%bB}fF4t;_-v;?suuorFA%&vdZIiANHg#?c`sI0Krx1tXlc zrQ)OYk&gU8J3DEZJ@C>ut$Fmj{zz+?}s;!MzV|f{klFy`EQS*FFY*Ip4pu9eKTUR?@=1jGIA#uYHqh0 z+xj{M^7_g(xEsX@#>mWlw>89id^5+Pm=6fzNDlv9_y|_Susu;T4aPdDyk=d=57}Fb z>2a;%$zo1O@)i;vyqJ?i5BnovJ9;~YIJi7UC#C%+xTU;9%Nh_V^ z>V2^G@PB@aHsWtr!S>Ea>bs|Cr8n7tP7LC9CVuw(ON0nlb19-Ey zhLrtE<*P!=Pr&3pHeq*7>(UFAHKm25Uq10DX?TygDoZW?)rN&LQ}no>e4LqG1iUdSSi&gGOKlI%K2Gd1F;tC z{K*U@?Zei_yA%9AZ>mDx25P9JrZPjodDj0ud)tHSHn$Joaw6vyOkE2Ceb@T<|87W*TI2js^oT(FP>dMgB zCN`hC+4ORK>@Sf^@F8+KuJt>pj-0!3G5M!2-O5qKnMLqQ`^@QU?LgyRU+7zC?NSs? zl<}S({S9(R#dmVfz(;ersSKjLO$K-8`bj;^lXa%%3wuu6n&PR_ZmfW^U-Q{YWrk67 zm`G-95n+scu@=cA)8BNVCgP(Lck!vv8aeV)cUyDW zGFt>**cg14;@fv1a3^XftPvpinUGOl$6T-a4Gcbx9PZ0E_T^yin5PayRgCV_KyL#YfhR;dvHErHk%v%-EfuDD1)1y=FyKx%e zGs5G8C5ic1%?R~WX$e*AmpVt4v{pGxYO0tHJ9)=;HC_zoDt4|=ivgjV%XqM|o5@=a z4w7*<2VIeWPag;}EnE72&}5lVB-;N%jE31sJL)Nrdr1|Aw{Nr=o+R(bXlG zPEIFKH==p# zMPruK{%%wT-o(B6lHMw8FBX2~IR`rv%EN<0o#iaKGG9#S96FKi&V5bOl8O+Ph($i_ zcSwk+aDvFmTsN-ZuPU?X)%U00QWvLK93333gRQG>wY`KQhFAz#g;jbiJ;dP*UMjje zrV7@S2T;bgvSo&L_2q6vw^>rw3ijU}uNQ@&Azsn81_KS26VxsB8Q|UeJ&7yfDY~>F zuNC{&2F{t9ik}VNdcEh(!k3Elj-n-Q1f99q2SPeqmUIXMvn>ZBr7UY2Xloj0Y6Xf= zq?%~#)2FGbVC?{cK?qF}2+P1xGhlp}l1TvUCUjI@`un&df?)s6-Dp>)LNd;J$i2!uA!=QH@Yvz6(WmN~J%<5|eaF zdoky?j}3$@1Kv(@xXFhW5Q%w(3;kIzZwv?*B(FIF?!>ACYCIlW!Q*&`0E|43>6&-V zT>oa78!{-O$%;ynI%;s^>0n`Olw+^4IBjA-L?yS5-F3p zjQGi=l7C@+p5N<#CVTyLTVC!t8vRo(h{wABy{e_ceV0{N+@9 zOek%%zswL?kna=gt!62TfMCa9=F&-(#ca`z$7EGy zXrn53YpeSV=$=mJ{7g^LVu*nGT<;R~paizy77!F>@nuwcxD>Jt?QP#``0gLVbn_tb z(to$emfD4_qywV%OLb&cvQ)R&+0kd@KDv4;X>JgpvGoHs2NDaMfH*mA!mSiRrQ{>m zexp0BjQf-1_#2w@#HxJ04JN&tKQ8>jC71Kpy%l*P2F*_AVrL0Iv+nw2$b_+9AANn$ zE*khZq}&}VDcwBx!gGma8oxQ1{%8Ai`m0y3ewOv=lw&E>U0=>}>0Vyw>_voJ=(^g{ z8NH2`{XE9?J=N(w4yL|^jV=yg{M4<@U7B+>HQD`mh~d&t?*MC&7$%&M%KKXvPynO1 z7{oz}wY*E7GK@%qV0ciI_stsqG9}xMrNCmX*Tkm@r{;BKX!a7MDJ)cP_))8z6j?;~ zNo1GjZQ<}$Auaj+dA}VmCDns2(ix} z4SY05R=3yHD`~G@@j>zwa$bvR#Pz(3Tvpb$(}e^Z8ppUY2aSEBN29ziISoo_eQmf` zfw)TsOJeN*^;W%#@p=={A^Hoj2(GxrM6ETOT(H{|3CH~D)#>p88h0%AYn831oc36R z!&(J6plEsX83d+r^>Lrw4c(RsbdP0i*8<|FY?a2wX9d;kMge?_xG1?R?#tTFr+}~a z9p~faLx<^O2w!xnY~O+wcycku;y-3ig{V zKz7Fgxhkcq?KX?bW~g%!ORMCYh*|JalKCVBTUU$Sq@OuEdN*9yvJH=6;xlCS?vrWT zwcU+%7fV|+zjS>*xngZ>YLVYpCfueLVM$_1Y|!EYg-55mGPQGt!T0n>lfj>y4v3%h zgt3dKeS$nIuC51U!${f`@&TDCG2Lp-8wPf}{JdUcEat`M@d0ceyeBiAGTjB!)HftG{(zdJ}1v^OvL~ zudX1~dQl?M)-C5@xg5@eK*ecs&c>Bxm4;J-ZfRGtXq$K-+YB=*A0Jtf*0(04v6ERV zp%Xbq2~oFIe97`b&uo^tx_;<@vMoTT{CPNj9KW zv+o49FE_5>l(x0q$X--E6{{=Lk~v-n(~vp7-@4){iN??>D+zU$Hb~6VPo}bq5%kE_ zO&3jU6D}vq4Nmt&Ig}C4V3*Opf9wNJhv5K=q+Gg@QR7{6Pe9e`lLkdyGHg$s;4k! z3paT|&J()Rm32Hj`lQ@fyj3AEl((U<^u{+7Vjb3Uel*@e)RW9xnGff z{d4D29yVLAGypKD75!nTktu(!?l)UkP-xiNWyIv`G>r>W*GxE3)pbjo5A|%5W(0lX zcpUHj|U0q-0i-#A+lS=6*;!`djG$U zr$QOJ8902ZQ@UgGONk6qWF)WLs1;^yGfKI(i@9DsjR4 z1skGQo0cuQ2L5lpUy$KP&(#x_k;vNHc z8eWB!J>*QyHdX@()q-nM=45kE3Obh?y|@tHqHY6gn)~BOoLy3^Z)aS{`7i_qrDCuA z*2c6dr>Z40F^;8~0NtFi`XS%DV#-L)%2_WD8~Qw!l0*`kjl;*V<+JHwqI)uE*_PuF zOW?3j(L2*Mh1!|+FSl8k#m)+Hb|ME!lZmRTzHYDC$E@7EC8e1nqL_zSLTxYjXiUKC9|BX;LxqBM8VSH^Egs~$rR#)0F z9X#WK0{|MB-n)+Xyil|8wf!$`=hhrIZbae#l1f#QDl27OZ9RJ9crV#qJL}xvFeEgC zh$JQ;ITQKUXFyT&32Zbu+9Z`cB(gLEG=N5<`}8?y(Q6YSCaob@7ETnwuxNr?t?ab8 z|F7PZBK{`1u37-ZMZOM6=MzMiY^pe%ZMxr(5C`dmW|NB0W+0ZYT^Vg4T895;%1#PNk_x~3S-!gwyn6O;K@XZ3y*A%9- zbu=Cv0Y960PMoj>c~}yQl8u%h&8=Novg_<*7n&*oX$&TkVQ7*0}x72gJ5 zAX4>wT%~Qh;JHZV*>f<5T$amM-z2xKRp132dBs)e%8o3Tc7)#5F1QD?QRTzqC*swF z{P|Lug#HTxjOD5(M!J%1DA-1;hO`?`O|!IwEAOgQGu2dQ-^4Dwz**2^YfLGtiGYa5 z&MqJ3$;eX*C=-IiNWc>GJ7eHcNm(KY`Xn-0cC2n}aliEtRC0#JYAY9?x@L!5FuS8R z|MWo>3^y(|$7+zay{DvNw$aoklOV4xxzqfBZgLc}@AzssW~nbuva`j;5VrnqV4fOe z)0RFmjeQ3>0qHsrgys@KzLfwZnk)VmduBF5OmsORkjZtAV8|d195-~*oZEEntPB14 zScCOMyhtPm{pTZf(SqT4q3W_#Zb!{+xG&G*<5T+V$~0pSF^@#X%4u1mM=>sJeU3-@ zN4rmxBUoVk=j7kMi_-FF9C?6>C~Al{74a#5_u-z;5W-2?rr_C-%t)=S-`nBQ^YVSa z=~r{RGirBkOt7)_(n>xr8Q|!YZn0~n8#ss4r^6e3#XAJ1MK;#t4t$RB27n=b~lz_KwG+}0-8E(HK@Ort3IiFeZ~Sd)3T zZ+&0!R7t?9uI+r7;J%t|uu-F>0eqRC-67$rz@79Z*}2e1qdjk@Vmxe*A$AHQ@C3nq zLFcUnR$x`AG4c#K>h;Bgo^Jm;TXe_=55R7?+Z03G;5#@`nIc-Wa~=>-837K4!CbO+ zG9ad(J2=whb^mywkRa^5IGlS|+VK#G1FC$sYMVEQAn?e^W^(UcroiXv_&q8;FTon6 zII*OmOB?uGL>?FldxXJE9D$Q01A1$lKnshnr1OEoWx5wS6`t=D6&ZMl7Oij_g@Br3 zUTT@@u*7;ab`POlZZn(bj)KDYe1Z7#_1Kt4r)>^pgvAqW-1i#hxi(~h6gqEpx!J~~ zV{_dmg;KJUd zrQfeiSZ{pa=_wgkKN7a(g#g-MY?h`%oS_is1s-dV6@{c|n)WMPo;Rtr_Fe=%==&8S z=J}tIp&bt60V?0wCx2EgiwR?0rI-w+CXEYP8=$43G$x=j?KnQk=r~?#4WF_Ikio8969+AEJ4J+F#k0(iRE#<0E3AiS z+|<4=)3VKKmFO5MHom6bqyFK_9_A=82tq-J-MH-EI{$bgvRV2Kr4E|?#HT82ERet2 z%x|9cX#S)fRXx@Wrlbg@_~w!7W*kPOj826(@jTqQlAO{%6u!&sMs$hwNrHTs4rckQ z@p))*C!~w2kU2Y9>IU<5boKIvn+V`Vs1YJU@l}^-Q|k9P6$*0cO!t3wr@l=^4_R9< z`zi4wB#-U!NWA~#*K4cv79`ElKf=rojjeQ$k?^V=eAz-h8~{l`w!axq z-#nzzS7lsCJw@>M5|2Mh@GWAxA{$1%?Q#ru8(SS~vETcq^bM;`cdU5PW{93QzRjJb zi`N6N36=SNfYy%UwRUGyZ1lJBN7}Bqjqpd;GD7srk2J4cNP7*3Osi>pim2p}Vr~|I zi$)rS=|eI#{-4iwW!gwnm}ZK+Whp5|AOC+5JmmE{TRk~zK7t(PbK+TIyGdGwapOql z-Q3k{VR7D>3f&1cRUUU0X{>EKR19F~pv3b?D1Mn6rU7h6{6My#cces+H zM&jc6+4v5UwYGPid@m0SVP@-to%C8tGGlue3C`pJiqU6p%I77KI*x%~L!MiR%8Pxf zt>`&M_}_U++VHpnp+RZpiC&77aS&H0{aa~Uw{8?riK(L}o7V0NAE`xjaZy|v)yWik zqFM5S!tUhR;mJhkEvbKc&H(5Vo#oA8Bs2$kI*ZuLf}+%bfN2KuAEvB;|EY=rzHz3} z*r|mJaox!LjhHuPGX)0K@065nKy3i+xdcM!8zj+VBE z_U2yhbP!fK!4$Y4=Ww8VKW5Gp!K_sU z3e%KkUS*;%l8%K&YyLKJP*zhWz+YU$tvNQD=Mvd+*Ng?hhuQ0hYS*y4yI^)^ZH8t} z(DrAhDbFH`KBlASdIsbk-2`Kn+lp0%MKGSC<>tepuev_i-1QQdi?-9mSC_Dw4kFzc ztZzygD34*2aKl_pUp>7TW9Cv6=A|6>Hzthp=T{c5yEjjDe;XEgU*|GR#z$RtuG zd124U=U$g2#DMvA4sOf*2jA=awG6>`cH@SYIN+p-Y{bf!59{7!o)ZG6So@fmRY?CB z>g)~?Es0yxwjyj$SKvINBZsJvc!m+>kSJ37ppM=_>bP+(^|why?Icbro9&O@ptENY zW)yr}ZGv)u{60Kw&){SC@>ym2rr7YyP@C(}y-P9K9sH zx9pnJ)JI83j7+TwDSz9=SLeo8*Q@uK(oZ(H#+=f}^YPthvXBTXio`nGS22c)IbhbrkSLsp%J=-DtQ}Vo zK2NDr-vw)-!6Uj)@b6Ux7AyXW38N2?84k{Zim~i$v1xqe*AJqVNEhYn+dS>c&M&&e zx34|}ND`NbP$MC(0C6e4nsy7=gjNyrVuOOv3+rB!gTOXy8Y+=bd&7rB17fP~+2VAZ zX|qtLJG1ja+-aJ&alamg=%t$IrJ6Nd%V~lW>@7_tP1rXxkSS!DrZ4mB<@m5 z=-LyEdd1A3Z(eh|E?GsIVdJ*~EIvl$rYW=FkhXGl(it)@M~g$nU-4BVZ`IITzeEFS z!GtQNIDhpSWo;s~M558GuItklt6-!5Ss3fZslvuv zYYKaB?N(`J_HE^lbCcS+1IZEJJLH?4}H*--r!ZgUOdJ3Ix5vCWFA|&$(#vW* zaDJo(x_6bYZ8usMK(Ni`bU&M5{%Lo9@mX?nHC2%Ag7@15g_0A@tEg)Q<0Nuf z&Wn&uf~2*vU7yTHE!AfAUEc+_>hTv0c^W={W7d5N$r(Ce<@RLjW;H+W9KO7$`sYQf z73u+V8yO9z_!molm|Xgc_o^f^092@FX9fBINgb}IB&y7I+ zI^VB&*jCQew!sOL!df_Umw?fdtgFJ9lZ<#y_7|2Rs7>SN9$8H}1{s1IYF962Xj|r4 zS~{g0Yj*DGWrV6MU-@;gHr>bn@QqcsEDE0Ti^_lXX5{M9Qz6_4x&S?2xGXrpF6Jpa z&eXc~qeCOJnkO2ld||pJS90i=hpG|ED6y(gP0fBD3b(*?#g(??nlbQCrZ%Nhwzn<| zo{BV?vK1;uig0ne@qq?r3a!Z}{yE8RQ`V=f$_LKezFcg}0_*&lPM&y?Q8Uul=|=8Y zuis&*Ms>fc?2JYfgFTHU@#m{SUHmTv>d#-l$bbjotm^EK#+AuSL6vR!KZ}sdn|I`V z40G+*FQ=N^FeA+{=w!{^IojsI?y+8K_s_Elv3YoB+v8KU-@c;XIxCAMX2FYJI1pY% zo*@8qn#vOUsq_a2#1@V_ED^(T?TXa(l>rHGr`@x8c81^Um zYD6H~=(^JBp<^VVp#O|Cc+V;7&W^qZE&JqQP-hQ+@E(ivkP?9)!QM+*S>M8Cdy>us z<{S^>6&mY{??h^Ml8@8`RsB}jOafv1)rw<3iR%Z{dqm=lka0ch^A?I)Ida1K5q!wX za557fL=oJO7<~Sx5pQds2Q<-t>+4A7RHC|+c}1C5Ynp+ho|Ci~o5|&ucySp#;(-C({g(k3yhIrA&)cRw35e=_`0lU@6_iim5KA@BK4?RlMkP@BIjNY9}%HyH(jo zM$p=ogyKM+Xn>G__A%P+=)=el_)5IswSw(erhS4YeG6UbySAOM7c(h`M^K9+NOXFvo>EIVRkgqj|6dG zHroxWw8SDS>cG;@CD#)8UCBkK(E|WUPLh zwi_XcBgva>pt$FKGyd;I4Eoy})qzcu$<~Fw%f6pva|64H2q!72?fgE=&=L#4PxHg` zml2))M8xqN+uykg8R;ow(%L@f((m+xLv4sbbAp!c`8R^dfF37>+=Y+V5!(KYeUwMV z1^RW~XG!%m<8Pnjtln!Y+jhZ{996rGP1_#+>l(rbB|tv0#r-F9=k6z(+rcG_&&nde zl*;Q^R?>h-#Mwh**V1u93?Oz?0vu6LBb5hX=bD|bU|r!jrGEv9cTU>P+}#-$7F;nE z26C-Kzud?{ldQ`KIh+=yN?%#~<%>!Cd0k<3Zl^|XeUvyLo$MhNux!w%=Uv+Fa`7 zn$!suY6N_!&~dPlPT^Q1k3A6V-T)Y8Z%hd8f{ld^75>`R{vM|ynof?vbY%$el_fZj zCy<662&37cf47Em90gd&aW(oLIZ$kbU|c!{u_O4m@y%+r;HAwK%KO#cP`K;3wRQ4D zFo?@GZ2`YM7ue{0STg)YJizktI4-{F18TPH6E)R027j;4iTwtJAV31(h@OH@-O=SMhWrzuQZ(jL8WZad=9=L2domnEIT|K8}w2J$EE{I#M+$?6Nz$O4+AB zJ-v1-a=r7($>rQN6 z2s;s*6fdZ;NcjK|&|zIoXM0{8>wKAj7xyO=_J*$TPjU6x2ous(iUxw8Tx_36Rc|TZ zy$hXN`ADXZ(MAtAm#(=zR8c5V=i3SYwCTevQ^KZi%3#GK7FevXx@^;Kg-Our?x4xA+6 zQ7LJp)P^F3Y1&v?B58d$j9P1#ij%^_6+^nIhte;pCg{^V&}Kp6y$!C?UWIarq~iK7 z5C0jUbr(mz^g3=@-v9y2ykm@md}-i2td&}pqMTFu#)pM@Ui_S#S5DdK$EU{uTaDDk z8R${|^{Yw$;TQw2R38hZO|uZ$f44{t9+o-8Td=_{wVS@$5 z)f0Wo)vG@|g!RLhwlmFw{G^^tC6Lxj*>NKwwh@>A9{&)-MHBi~CJdq4DP3nFpKC!Z zE1U2SeI)u{+52SIeP!<5gWd5n%`n#_MWX}U_T7W%HBj#)-DJ6={qBpa$8mCm?0sXt znBbG4>TS3mf;*ALD%i+8*quOR({!>+SFV%};gjVi%#R!6Niv?N9<38#sz5sRy?k@h z*WFbddu8+U8mHDMBuzTM-B!fh%WLuJG;k>2ifvC`rpkRY~yR z_v~<;=Y(^Yn1>_EYpQlf^gsm1uSsliiUgaah%_3z^_^?$*?mAgW9}q!0Mzc8<^43x zbeT31y@^5!X9R-dqtmDH2TLGj$gjz}06+wX^hhywBrtW8`V2_}jKTJ!;I$<4-EV`7 zvzT3r+gBgscPcMP?6Ry&D21Tc7FPC0GV85RN)F2yD{3SXVP!%X{3L7_2zpS6AiKoc zowRe(45F6g{lVO~u2w}XSkSv*1{Qtx@j|?Pe(WK^5mGW)J~%RJCFPj(9~P$FPDLYx6nc=enZhE{5SewaHk@(G`_`73YaXk^waCcCGQB9$I6r@) zHiM=dq)s%~+1@n`$-S5gj}W9BRrTj>;xOJtzEsEt`DI|&!KSZUvJ&f@WKpbiwgvS@ zov^EPZQ%!Kh0J~1fA{7&z;+c!%{bb=EG^m+8`CUq=2)F*v$wIK7jS5-IC`F#Sm+sE z6oyKRhA?BQZi=OlLNYRXVlV^kRpx#R&(qU|4_5q6TsBj?CckW*4@2J)W%P#ETctGV zo1Dl3|IVU!3yX01>MtMPDK1Wso5r8mX3hCXXZf9P?RJww9z3ypNb`tzBWTfbmENyn z8^Yc^sNri9-F#la^7pZ3k%BP3@0XAFRgO`IJBT73-)YL74V`N(*$0lHe20(vUx@2y z{HP!&aMW_SE5AQ0Jc0LJZ>1WwEKJKh*IZz5Nb!B>tLkiPprZ8CVtniRE5c4*U77;3y(yWJYn2YG;@p5RevmY14C50H*oK+DSQnrxTziexkAvY z9r!KtZ3D%|`)uL%hX`*hHht_!P?ANuzO+s>#m|?8;$ecHh07GaIz-sk@Us&TBUcy6 z>q%Eq`oT9(NJ6&RhrTKKfqK~GJwIlLb2rDBZWUPsCih`3W+$ zI;)@&+v$+vTCM!4NAa684q7bh0VmWyWpg_a)t-tQJXp86H%&ZLz8nOkXq-9v2x~Cv`7}1|_WK0__NLX6DRY;V-Dj!SC`j)vq1S5O9 zQ(8(DYXj|K_xu-Tug$|zJki?BeQP+l|LR?FpFOw3@-G`j?^tE z!kRZ7$jF=z{}7Se$#1_ODu5~G-85!BHg5uoL(+vGe&;t$nm2IU_WnVs?CGnj?^u>^ zWMW3YtRE0!#Clcb`)qC`IBF7vnKGGL*S>TeObY>sv$hUzsITkomIxFOQ9_s|M6LTO zr=N@O1|eFTtV&l&EToZ40S%aRUAWGDu}!;iv~w$sX3^ez8P+1jO!y&+YPvz+ivB^k zY?a=?7u8>|I|`k-Mv|@VC?cl&X@1E+1;2BxjF*28o%A!!gj1W z{0SmT{aAER>N2qdLFK*8m-Lq|}L`5Ha7+t{UC48S>|LGCY<>t~U}%KU`_~;XF9PWqi5a z`Rcfu34***z`lw6Ut|sGCAYXLu>Tf>O1dq!zHJ>4)40rsg~X)3u{>Bgl!<=G+-vso z;=ppY-k9b@3M5D;pWkezva6I6dL%(?x<$0VAc0~$S<*F-ge;zDMS>tmuW6{vOgg?< zGa}q{2_C^Ug)1fM>||yxti%g?#!R$^>+uFg_sRlP!kJ%f zgmENc7yScy#t~LtAE3Vf>0n{r@<{x{tojNYX*0e7P9cWLn@=sW$X*Hf;vwV9F=Vth zIEdmC3ns59@fnr7x7CBh@bid(-9}gEB2_K+w!!dN(2D`J3d?K*H z#IaoT4=>*t%ZOA-HD>6_PTBREd;7rQD{Uh=wPDKKEyXpljE24PjDEa9=9zeObZT`k z(_3;j5sQB^-P|8dWjbuj-V+D84bk5%K09diO6Ay zz$)8f7L2Qcrv}^gO=AJ{D2%V@u+BQ8t7DZ2@55*O%{80eaMz4D4uNl!d7$fyMX^O{ zexpT?PQG_lnX9`qd7@6-(vno;-cazLu##QVqI872E8JLzEC0z9Yk z6&Ey}W_MYN&fWI)Hs6BmO_xh&cHu#0Pb=UAOovU206nwQCy?-gonM_Dg*VP1QDHfg zVxdkvO+;v@>sRq$^1tsfOjM^HuzATb_?_z>D8i<1u6|`*+CGF!=MQkN5vbFA+4!D6 zk~c&ouzlgFyn6MG-V@Bn$7)ZLq#KmCL>Jt8Jz`#IWQE&4F^ z-eelyym_nmjM8ywJRj)!_y-&f;bLXhBUqk;dP{b!T}7|JzX6woeq^vC;NhgFQR6UA zH=J!u^Wq1_LFW5|(mg3wLwi(0d_j|6!YS}tSqxEOo*U?!S3f-VG%hvXQWN+Dzp`29 z!CT?+loN^wr6EZwI#PV`M^wa-L9o#;~fL4tZkRz`3u{N=TpL8hwYe@cgD!6Xpz2A6rWbVALFvFZkHD zwsVGvN1NfrLHo6B6F((7zS_OrvMU_#x+ffDSEmfjqjU6i7EU}^m0mwnKqc4 z6E_Qo4I_0k>Z+-YYW-e1O z{>dk4vexKiP#9#%kyn3yo=Vf1xI1XbER+^+)0pZ3_+H9k1n-c#dTX;?b3HQBF!9~ z;x8^zhSJJ)He_im{%K_Vwen>85ViE8K7E|Eqv$KF?T2_ za%E9irti8KX0wNfTTBqF3zC=8*AZbq_GuuBB2JiM)d<)?7U*PYRyaOK&NdcNcMW`j zrU3TBB_+5$_5GS|-gEF~1AaA-1+i+jw`*S8;G8th>Fnuzs@|X*lwE z<9_8j%R=>S<>1OHpvMdeQ%09!uS=*tc zl|w?ZYM>=SL95Wqb%~K@}s2j5e$POeCqAV^oYc2 zyD?iUMlDvI<(plsL->ye54Ljah+unO)pJ^zg=h^f$L0O`lAUxBb7#JD6Q(#*dr3#e zXyxspHMDYc=tWgcl*_|dLyMg%!9(kX zc9zoa*Matbl5^F27bFy>ipN>*%rVH!!DQ^t6g|(5=e+_KN0RmL?4EA)LEx}bX>qnjr@=XkXOJ|yyx3VhT)>`*vSu_{A+PssAPe^MLG5p%NZu}r9<5_vj$Clb0P)^d8^_HCa#mg! z%QF?*{p;Tj%|H5p4`K8_ZRzj(MgybDMbf1%!>xikPIEzb##Q;Lm4`b^kGaQ>-pbcc9x|5B$-1DQ6o&mCQ#<}_O*Dg>L(p!wRQj{pc?5!)6fIKu7F0w z)pg%+7L*DwVEOsI6l~XrOvtosk@Iw=O<87v`lMZ;+{BgO5%sG|B%~N7{YJAxy&&g| zMd#_LNr^Go7hD4rNko+QqFm4*!yAL(-~UbQ^Tw-kbn#t}Q55{VwEfAEaunMQE+rT+ z&AmxtJw1`h^{@8>$;W={{;hP#=(7J(vIlB8C7W@o@XdGT?yi{>(PDJn_LZ5nUBdJ3 z>H#1M32c-`dCcaK_AZ5LXx0ctWexd!6j_-D!aSOKG|rjJJ{HuDi$X~HCsVt$mHtm| zZNcD)PPR1q-*$Zv;PjJ?ctcCxOoTxo_&Z}kg+XWopF1Zl2SvmZvQ9%hv59_G$=T_quJS%2}bS;L?!pdk= zJ?HvOUr-;k0!tpN|5SY3FjpcumYwnSE_&FPb~T8^0w|G{)}4QQRqDT4KFPKtBTOrp)ywSqH369L688~;cjhrk0@$#BMe zSVVu{5*p|BCTE1v4Dlia#u2D$;znZCk5X2h%|bW7?M#(~o$Qh$HM;Y=c!#7Imdf;{ zOHn}|%+BzG8TP6!Zlc;ZI32;BG~1{K8ScvJZLO${*m8M!tvLcmhUI0&mjH*imn3VL zbAFXDZyW<^n&fwfeEO3CK68XV<&n03upvAsEb8*Ne<*%uT%$9Owa4alOP?)K?$S~H z6#H>Q@{M2nwpG55p^B7ou%#`)aq(w>w3C8TYzMHN`aPV}c56+vEZ_h4npQ60qy!t8r zSmW=&YEdwBpdb`xi=%GZzP4d`+ObEx%Wwj|8`g>+X{J7;z{&6>C|iJ?b~`OOu;FNf z5q%@cWEd|a8@@RJFQxH4(43n{9>5wJD!Z7L|%+^Yvp(qluRt8e1# zLksigM~*t>IiUsQTn|W&VY_1385*pyvJt?Yt?1OQt*l|w7k%6LT9bs2gue0`K|Bjj zTgCr}!{C5SJ08kl?m9()KKu-NTo$r#!XPI7TmY)%+AV^E;0)02t}1Z|`Z)7EU@pe0VuT zAAmS{x^{r>+O-e)$(HG#2BPki3qr=)KCDgSzNAis-(>+^oN0?Hv@?}o_f~N0iu+rs zBH`4Yw~Lyge`DhKK!;EQ=O~guqsb#H7GP~!5=q+~a zj??%LZRgkBHf}`m@6wmH=fpjZ9Vd3*l1+BAf0Cxjc6<6(h=e4pNkRolxyh%mK-2mK z91JOU+kIQdmVf~;7|h(cw>M2^8dImK{Z~f74fCB(cumX$H<@cYtyxfqscP$Z#gkn< z97v++#YsR|~S7-sf)rt0Tb5DR)Fvh^i6+Ltp5@IhJ@nEH&=qp%XOaHMcQR zOfyU3X<6o;2*=e_8iNYt{uPfOKm z#<<~OIyBnB1D=U8q(gWc-^Qu1!ovfZGxB%S6}yeMrk7jqUwvj^;0}^!bg=dq>Vj+2OnRYU)8>t6O|d1F)BuH) z{KU7e8pP4EO+s}n=Jm%=uW?-vT46#4!@De5P`tm01xyPZbM0qMa4G8Pw&>YS5-B2C zxI!sfr#WC;1-eO@3QTrsi8Gk>nx5m8DQ^4Sf=_sc?g~+XNY8DZU5}fPYXj%^{^;HD zoOdRm^OUGh?t+ij>-eT`OsGr}fRvN&k`IEPBnbrDV>zAj3{BYXi={{tR!(gPuYgq~ zGWULG1CK6UxbSV1uEsK|6~^^j^(3rl^H1i(Js;<)S3*7k^!@r(+Bbzub96E!({@JW zqwf5KE5_ZrwGTek%C1cbhJ~0MJYDYI|5=)iHQ{8wYyb4fjj;=MXE>VaVT;1bv_9Ct zP)#hKv?NFrLl;Mz>Sroy8T}i-os7V>yK3;C+ScNX%cnRNWG`#4tam;RDN@?-8#7dl z8?(1LXU1V=2wWsdl(%-3=xsqUNJzn}hl6-#xMs#jw-m-Q-K|fF>nc;af*&mcy(l#F zbm}LyB$yYcpbMC$1Yjt72O?!{mq71L2atZy^cp>um$b_j9m>;?(bdtd82WT`#kV#W zR*!2TAsf5kYtP>c*2g}$Y(H4-%Co08H|K+;5uj}HzuI;S8Vt?4az&=0;+1b3XU^W* z@WpN-x#$VeY%OE1U(Ho4cFvb8V5Lt_C6hC#%uAgAy!FLDlX{QSFOv5RwQgx2?=n8lXrvRGafAB6pz*6p=S_rUAp%>0mHwS;DBX<~S8U8*YB zwGFl@d3?n+5utCQ6Ip}*jlrD?^AiaBhCL?C- zHqBXlK9QltQ%uT)m8X$7SuWiml%8@fZ)Z(mqh2XJ;twcQ zImS%|X@Ec>3vdg^k2SuI9he*o`Wb{swPpqSWyVmV%d!rZwso5(3(MJo&0^#<4|AR* z5vgoQPa%Z1I_mLS6yr-FestwB zccM3f`^G9gw)dd~jr4)WCPXI$t^yu~Wd-fF3+{Hd_;3({{Z=G78_DvJ=0f@=iT-1; z%{HCspdWjbxT#zbRzXVBQ~5v(W$OolkVI?I5a#3;jXvo6z#NYuFp2!?bv&E8Ij?!` z=@XnQ84da!amnPIcY`eftz;+1QF@FMISQ4syn?rb23+yDo*f<|y8hF1WlU^~nUmDr z#q;q|_$l(lx*oM!$TnpuIgDlP0%~-1ug%%_@*IXJ+3?KZc(0x47TV5iazzE-*t2rb z6uAEioI&DSrPOV0Lb0`3r42Kw-~H_G8m@Fca|GOVex@TH%RD_1x-Dn0UPFsNN^E*x zx2Vbm2QlfW2aoo%YJ zmjiM5ou&SsUShRtTy3hvz9QbCKbn(-@Q}U`mjXV%_P$%0YMM~va&WBe%9lr9`nNaV zCLJCr=Ea0SpaQF!49iDDO-Ysky1`rB;Q$i4>r}g*n&zy63`bay_$|M4b^AWc$*otm z>$nNyxfQ`K-;+1jx2zHtf7!Oaa7G}Wp=FVNT&^5>-6`T^V@Qe%rC>#XGL{zv^@1{~ z-yQyY^3Q*c=g?3$Q$H@!9J^93rKFNe+f`XGzE&u17lTdN&4v?BAd4LuMS{%+`hDr~a!qm0L$x!ddV= z-v-fTCiV4GEY2iu?R_8mAlyeoP9GY>TTq$qp})s82A;Y{5qEy->~3q*w$isI z?9yLL3n?MEJ?lLyhs`$9(ZB*r6(lQK-yCHNp!sc`tj%K!J&P#`iDIl`=aSaX&MC=i zR>CsS>dsomxBxb%RZA^`MKszr$R+Y^mxSbGI5fxAN1YU~90<`n;mbg%R!R0`do-~r7%#|c@@>vUe z6^wxcm7?-Z$lryiQ4V%xx2`D#Q?qKA%jM0F!I+tXt5V7rx_@BoGP~Etoi!e7w`ttk z6<`=dILKb;3`&`dAjvrE_ISodVQlkcwe60ywtNqaJD1}o_JNLH{@l|UT8 z1x_@RBfpa%X{TH*lFTm7Msm<-V?X5JgKdiK$@lzNmGUu#5k&`5Rkd=g!unzp)mW@atFBDT)?sZ==x!SK> zHS&T@+zo33jg@RfEbZDg?#M^Vc2dAgVo!1HDki*1#cTf}55j<=^Ob2+Zfz58{g=-e zcJeGJV#>aiqo)pu9nx0)#U! zj~47D)%8>@&i>{&e~ z3?(bak^GF$4*hCnd8+hPg?`Hv%pBzdb1b;Q-<9)D@Cq1=%>Ux_wUV)16z&6VcoeB55*@ts>(1rt-ul{- z=^TGZ(?|NlU}M}oxdEn}TklO=|IRc%D~?J|K<21FnSP?k_cEAOA_lF<>)?*q9@2J_ z0htE{FI^kX1P=fQmR|~{j9MQlZ9>|Qz7D31qHx`)&H>rU;&y-jf$E(H7p-U1dhf%bVjk_q>%WrBIOqcK|X=A>I z?^|sMlP4Hz7KVvLO8%Uiy~EVgy~`FC9Y(mH#QWILaBkSP(I~eYYVyMap=D=w9M?V!>;ok)js&t*o&D9g(qIW8 zru&z6djG5@@2{UsnPkqzo5z-*kj$K_3KS;v$TJwl$j=jo-mfQrb}YlYFnl7qMFqU@ zxhM+YGsiFeW5)EdI{U$Vu{I1=8o&6@l9i+5Ac7G?T}Tv31mT-54)}NigRIa4=r|Ea zq($+_zZP$qdK?x1ILe3;KCO>ttgVRQ*0eg@Z`P`cR#EhK1TzXA;IZkiR5tkUTi1Qv zp9)zL$2)@KI77kyYPE(Y;Ds1jctE3)HnfHs+JCjKrMHp`1eB@-_bl`KVz;Dep|)*{ zj?ILF#>Qu!C3PV#1lRn}=}vaR?k$8TH2=&`>heG#ESPj;(|KibMTFMXJ2r+CQarZa zf)5rDagO(~?{#6w&$!oTd3_qsMzcjM3n+b!+$f^!y32W2>PmDpVt2*4sCQXR*^M)x z!KSd83X*GXIUWM2xN{(_hnHL>4X)E0_U)EyOtbuz(&F^!ixRR#aYu2o6ovfPwisTH z09dd&fR^*~MUcRA>Hspmv$B=5`&mc>O>_VRe)PdU+-ToFR1>UC*3Gn^tG>>b4dU=Z zF1=2h!o!zvnH<58nO>mnDJ`wfUo3q7={nk2k@@7V3WluWoTZc072*GSuy1J;NfKC7 z6{D~fMQdl_36}DK!fx7xJ>(#f5%yIx$ z=Gy)bs=KeO`!!BHQ#<9A1E_*}O&ZC3`0Sg_XVYv5=oE!A>4#ctDIF=d7^9+{LE$On zOUVj6a>YbN4g?|ChNZgnK_&NX-;}|Ynb$E6T;J8W=;JHsmL*Pf3v9hIZR;}XIP{Pz z@by`r&A$a(Afukb_4R8;x6MULcL zusOBt`2q~i%nlqI4u31VxB7(hi<-bm1%!H{*sduC zrEk`KsB$f7tB5WM*$%V>7WC&Qe-=yn>Hdp9j0NN2rr`hMRl)x*t{M%s$<>&x-laPT zs^3@QU}R6%%kN)*N~wV-JA;Ic@UqLwuK51R07GFHhJ1ydgE%&3f zJ0&~%A^6%&817j!J_Z)Rru3DyU%sSCn~$!rDxjAF1{rPb_KB4XWvnaHbqb3++fy=r z>8;*R&(GuabNZ9u`Y9BG+Qb_qSeW_g`7_pbC|TN&NHlz?5}smp@*m^7e9dvq-SFTL zxykdGXV&@2tXfk=q~8CLqsKU@A6$O zqmu5##%A5K;ZOGVEdF(zv%EdwdU$%Ig;>Gdf$9v)UG(?{4b;ttZA~a`+nsG)ht+eu z+0d8hoi}Zk8d7#71h-n*6Dmp9myf<-rcDT=DPRVzeSn=Q)%06zI8>mZM1To4F>GF-NRxkSSesQorqOB5N%VY;-(y^Fv5cKdUl!z8mnvb zaJkx#t>gq>*!%CM-MVH2-)jouVZFG%AH5y4NnQ=w5@bZjlp946TiHFSx@p|=i*4+e z-d4#cD0X|>Z~O!WYxed_9s>`v?bI>$VHY4W(U4~-W}E_vl8ESaaJDIP`qvSuEj^_) zV~Q#G)|IwOg+U|i$uoOxg_2j?AeldGTiA*9%syd-cwS+D1&odRILUaX;8le+mbS!4 z)AM{(j3Py%^;Gb(RxxAKnWrd)oxXIPjR-LlT*ciOOw+DyAU6-96RRdIep5=cANuO+ z^#lk@B(d>R@`$!`1S9dhY;2eXMjqIceiD5fa)-b2mD{`JWsR>@pJw5FFjWG9r?9JD z&904@%W3pRI!usYDT~F~WxGB03|{A&6}9i%?W_s%?4)X&!6J$9UMR_`>8<6pypj7m z_2Fc<*{YzGw0U8x<-)T3LiAn5348n$Z+I_G*s|@}2oXTW*x5qJIm`LUTfD9O9rj@l z-@+WH9|j#&B%v|yuN0-1d()oJ_OunzKZr* zyv0;R%(&&Vu_Vw5ebsT5!f)d+agCH@W~X}b-{V~Xq6Rb1*KAMn9^KeZ)v-;@3qz>bwzC_AIvg7EbGz`_qY8g!Wt!5{6(uAH z-G;ke%%^f7C88J8=^l@<;hQBGukm+4G-Z8|Q+vAL$IbIo&Pv_4-J!UG&}Xy?rT_~& zy?EBfRg7Pp7qQXwgYsIpcdlXDyF63)&%PT9M*6c5Rzd;g%J$xaxAT8dIb*W^h)D8cRXk z&Op-(Ea@SV)9Lbr1rXg&5muFL+as9Gc3To+ipi4t)%nKyq>tIO`aeu*QYcPz((Tpx=}z(m?;_-aBFW5gx`c>0r(Put#|MPW{Us#6V}h`Id6HeFmWhDL=%vNH?WTu~kR{&cnqjQ8viLb%E7 ze{oIB{V>(pL3|f%6AR3GTh|b}m|!-&R`QB+*PX3RHTi{L*_5>xFtuC-&Nta)eI#=l zN=CERfZ+6g=j^OYnX_GeKh2r&>R-L@taQ0Dg-pwp1WOWEguCLX71FmTJkvL($RGG|#r~|n(IZO!ve6mDly*3WtKZE-ITH-Xs zC1@Q^(zR`$Hn$-9_3VbCHM?0fC8?GGVnCh0Qk-GCs~kDhtkkw`M0J9Rz%q}#hHm&5 zas-1VT+?UydW*`q`gs3DbHzKCm?-{4+auZ-t`8LY1eO=i1wcfp+qNBl)z+q}erwTv z+2cOG7SHF88T(D+zTma6k=XXqC1?gDq(8MWk)h;+=?`P5PHmWBA(o~S`?9OBS$k4T zPwRoKAbBrsp$7)2+%q?NHWdHjTf`#35Xp9EJSu$_NWsX-F*Ieh`M|-+rRSPlhPwC% zQSeW}CD-#$rnxm56YkHZcGcw0+Ss5gI1vuXH!QGn+FR(>i2R+Z!L8x(Yn#3QoU0G4 zjmx9vLlmc$m?di}(G8?|c)6`04%zwER5?~q6S5^1*A7CG?4YDj(Dsd~-SG~0rN;C) zztGfO7Aw?p4S$d2eHGtdSm2HYOq<^R^dZHz{=AKQCjvfAqYzJ{B`n8No1wEn=C>lb z$^r}C={qaZ@$?<=+i%BLp~^A$iz`h?K_<4^*ft69uYA4o z8h)v==1Az$?}q39xUF0gy88GgE-IpiQ#FKxjU0Pjrak0z4-2tmGL70bWR5bel8kJr zl7#mFZ>cTQvn5D|IHNtOFUpew{v0h%lGaq*oZ}xgHbAycFso5n5;=+qqdNQO+4EE* zlPV`Os7dvy5YVf>EVtCbVkQdz#1Lz$Ug6gvnAUfvPIe?|cm~?eyZ~O2vXb|^5`?xOQxSh%;YM;hG(#DV;5&zF=CMbT)w&&W{SrFDS44%ysUYy6i+WSNxAY0`Q;am7* z!CSL813w^<&iqEw#>E>VfB0U8`ZF>Am;jr!<8jAu#fgNZ0`#~u0YY*iV6Wf`1jCjH zih?y6tun?TaXpaM7B&^zB-nQ6o7Syd zB^vi61(fNwj4ZZ&a$(0{CqV4Y^Fc9yGW5%V+PdFIGBqAQ;kF(hS@J1IN^>G0w>E*NFcHj>r+TUt#lH>ilqc9l zl*xUCZ|*`A_|kxMU%n702>oSg=`Mz&U7M&lc*^o%{1$4 z4;ZcCt`IgLD2HH;E2@mCAnDllcI%2^LG-wV`ASG*=Mk(Q>wcAQ-F~405_PTteKH5g zs%4DY_O5WHMOzZ6>Nwnp=n~_4of{W(rPHcoYpKIN=(6?Q)(6_XlF=`>g33d{g?w^k zeQ~{XGSh}vU&yvKk8ioMwApF?^7DK((4=3Jz7=mm&%l`cIgj4 z^j*S>mtV3=p)@A{kg-bvXG*p@@%eYwhfOlGQI5-?UWHtzh#&bd$uUdYuw;G5pz@AS zi=u4u!r!rKI^Lf86Z=W-jA^Q-v{99brc4saa+3Se%*jm7u;fYg(MtkmarVYaK39!! zgo_1x&dGvoZcC4z5}ABwHX*efp-8&ER~MpX%+oYGie~pO>XD z!Tz5Rs`yh%DhE-R_b-3`%ULzFbWwebpg&4qseaqCS{cbe3X)u^38Pc6#jV-cbo>OT ze8(icSvigIrU<4*Oopc?2W83-#T_eNRE@ujILVq0spX=9+3ie7+W&4{ikpp*#An}F zP8rWU6Uy1sduS;4lodYYu~6^KubwL255Bd#ZQ5h+?`oq6aN*7IVW}|cDv8!W1Yo-< z>ZG%#mTO!`&YW!f6S4dV59DfLKjjEHU1w)nbhvWv?C|)456T)Gk7D}g!&ymX>22i- zzr#}ZtI^>WX1DvN2s@n)Qf4`&)-T-}py>H38ej={Sb>y@xm#AUUwcsl9}%`+Z18+R zJs{Bgkmt7OcS1Impj;5H@$K;p&Yp-DgduTr*6CBng$V;Zyh`d-L@QXgbQ#@QSazka zQeQl8qovfx6G?*j5>#}%9_2Mqksc1ebrWXQ7Y8ej-|{PcNw`v#dILo!I+;wd#oGyg zp$+jy5Qb&h7#8zqdrMOT{(Ev$NZe!Onhg0%D&l#0`7MIT7PwAn2xSOBaNH`9yW;9n z^ZJCHq&D@i^BFoD{DF80k1<=F?WS!jx7%5O{;{`xp_%DJWn7bLRtp$@o=Nw$x%Hh< zOK0!xDwy_G1C>Ro>Q+(@N~=6QL|E=XA{NTCp%Vh(yV9vWx?8u|0u*YNj1U_ld?VS? z$MU7J_bT7^LB>bW?#gjV{J^SrRRng-HHyknRd(IwD3NhQ@I#Dc2z1*VjxTTXs8D?{ zASy+(HRN{NGZy+WwOebHz;9c#s!m+Zo%ew!SW-)nqVC0mgQG`*+bij<)*C{7Enez+ zjLB;senZpTwi~y<_vLULZhbZ8$&Wu`0NZ;$NCDon71yr-6L&Vh(TZ&!g&P+<&Sgex zK|U7^HQOBT1x;pI-_CR>|EuRuA8M=|tn$4HmPeYT%&3N>H!tIG3_Ug%ZTcbgnCC{SY zO<~6%uDCZ5vun9E7qC=(sjk^nx^~rvmH|PJcSUBth93{B$i~Bw6OHF|-arWt)%%>d z*=t+-A_~il%C>M|Zh~!7^6Ni5`Dxrq?_YnDe99l6d^~chxXFf)fW$UOz+Ks{6Lon%pLh(*FhzsNGFEi0ci0v;Sr>RBQ;r1L7I9Y;LEQ8Qi`7cK84Nll@PjsCy= zk+vE)?6zEIif=Nws;8IZ&xGi4ws*@`ZsUklnZmGnP@Whr66vj&>u+>Hx)rX@|BF5< z+jeGEIdTYMS8PHiD+LNz7z<|X@t=3`KFH?UZBzI@n9b348}G}svjx3bWztl*sQoP~ zP;jcYeQlc96;D--BBAUJ2b(=ZY2&I04mjDGp#75QcCfsG`h zP%i$+li5PGB9NW7Fx2MZ%)-@?vz0d$WH0kEg3bxXi^`rNg#L}d3^ug09BFB}Ug5SM(a*lus zWkgX#I@Ot_tL6LFaQ981Q*CF~YkCy@-r+?RHyrh?+HUa%c>d(W_`DpqDUOkK6ow(; zCZ`@9QE!6E9VbceVJ1%b<4mQ{qQRXv*Hl%yw)GYKe3ZvTyKPQ)V(&nnX`waUtgKC8 z+jiFEFEFQ24mrz-I{oO^X^sD7)0jqKK}2`&U{T27;=?{m3kgW zoC%(vivsoHi>0n@C~QhXKY&o;QRl}>YDZFiY%(Ch>b9kOKj1ja=(e|CMCn@_k10`IVh#7>H_)&TzU0$6H zpM5;ZKt4{RQiJDL2Ojw*gOlUfD-H||nLcWFkf=L;+4o`cSPvH22F>R!%X|_W_K`ne zlDX`g!X;rM@fN9lo%*Ed2S^xvx1HOQ-%z)8f<=1M2fwrFlQ+&PO{b2WD%lhn_J2$R z)IrJnd#?Ol&(kp`pB@T^u8vO%dRoU-G1Y7y6>BpmX>A?FR#~%8Xq8Nd^j>ng?QGoa zx~XrNBq`#DGQX`60ucKzeJVw-Nm9Xdvf_~25Up9;O>aUuzab8a*l+%Ztss6+^9z0r zIrlW$4rbla7|{BvmppF-Z~#z=#1QUEmo=uJpv#QHhl1b(IP&QvZ91rK<-6_ILW?b7 z_5X15X-o0+$!oOe1%^y+6Wl5U>O`KpzC>%A7^m%z2dfVzX5(RW3J0U`I>(&JhgPlz z#^9QEXL*&tL@v@iFWtrM=HPE;z2{(BOmcfJ>jJ3_ot znd^%P5r2qLQKAP5RBats9z=18WET^BOylR+LDJNIJ1Loca?K`{W?bInh=m>*D>T!m zj^%^7b#15fe+HWbYnmaimn3q@4vP9HJ6I4;MXfIOKMw=JT=>|UIk(1G&%vN6527_K zeIGI8@J)UU))YitG`%SHI%H<4MZ^)X3)y2Fp_6teM}PeP9m> zOe)6#gV@anb3d3}o~2ensQ>7L1)x439V@ewWhLy80U0*KaD(@ zv+Ia)7eh~wERV~_tR`(+cuFn}c?^l4vV{Hq_OsVFul0SUoE%tymyCCDf=BHlv`Q&- zKi(& zysS?9>dD7bdgRu?W6)qzzFA3+*4EILH0$u-EO;fV9?KFN2X*FOT#>}8ELgHSZz?yD z_xi!~h97A3%kpU0BY)yYwn|1hR9bCix29TaxQRs>QD#jV8C#1ElJV1QgSC~sneRJf zj8AqsdNOai<|Bicq>X$0@j6u%)5JzrD*BDvM-Lm zSD3KkFqh8%+rdL+BQu`%D5m8SBg*Exwr~-X-FCA5fGiOVF7-m+$@M`X!S95kWHvi? z88!JZurxetqND%{50mq2L7G2)@Yxtgj-T-^O&7U_ChDqn&8%RA(Kd6{uDh_66F0q})!g<)vnii$n;|8N<}eyYaBo!`W5*u5e#Pg_eP_~sT^Gqk}%CuXmCf=7{cZR#o#)j-I|MTbF z*88;3_O5qp!!etLFSHQPlSEuzF6xZ_;%wKLI`c?X)t_Sfery>?jIP-15YhS&?zIHq zu7VW;()NYX2u2P%yHDn5VzuM~wf(BLi2Uj#oe}nQ4&;5LmuE+$#3)gPp!!T2?tb=^ zyMu|5*X*{te)8=-*9R!~rck6j{@RZaSOkza#u0BX|GKHQ-;OjeW+Hy$Y>H`l+gtu0 zd*{FF=a7snz4*5#l(y~8wk|HJZk-#!YIhnD2PF(5wtSFg_onC#7%Gm^*MTy7igP)T za0^#Kufp(=Q2*uA_-pT{qP&o3xyDW-4QL%^cGZhRH~VWFNds+aD5l{Ey=~Rnp#qxI z7N}g;0m%!Ht10?|u#91+9Pkm44%w9<)qRZbVboEzh^z^#G0@`Zh=+P)oB0oI=i3}d zPK5E#0tE$B#Z+v^vBMiGAqf{Cf4DoK;1${#?XK|5Xwl4g&wP4TcF!iL;p{LS^+63GYBLhMD|MM;%4og=0388S|0NT&f| zRuSO!Q#Q!?AQM%X6g065aocsrf%pdC#z3)^*$5mFE;gkrJ#v11i}?N~m@*r38pJRp?4?ki21Wxw^${_-Vl1$(OsA(gf=_p>*_iw6v|^I@42`h74>;a!?=edBM_ zngOXwCaED=(=1b3xEfAwW!n@xBQ0y1 zCPFXScW~xv8v!ro5Nj5OL2+jfh}#eQB}Jdg|n6y}`ARh||c^gWt1|+?_)L(YH%vVlQ(;wLO=E*f82|SO?o~l{-xtB0|Yp3o^1(BSY%OH11!I5LB9AcD~Y@#F0!& zefiMfZb|<6jxWOZ$8exe@20*rt8@jcv%i_}PqWt_yX+=5ie9jrH1qt?xH8GdupOiz zMpPZ}!BJXlYzHzSzYgcmvsO$4o7dIG(#@Y07^1G3m8kM(@ruRd-^TwNKg@(KKL3v^ z@FD(0s}29ohtf1rJ7DF3e~W2jqQW-~&SwT$aqG&)?BF0zoLSu?gC|M8R11{?{;#eb zStJPw))wwOw{Wb>yuz8>_5_|p638iwny)xtaV*;VuJ{odVJ;9QL=}{P4DYJZT9Cg zvu74(u`MaL+RR|@%6Uf@UqAr~@&6PwU(5|UihvI2`&Av(8kX{>(1k|PAoV{HdZ)CXr!Mtm3HzJ-bvO% z8m;Zy&N%3Gq#cJE3KyR6QG(A^`ky7&rke8t8chBCjDYB4qa6mlc|J!FCBX>pj{f{f zeWck1zosUdC5(R8lzyLb1F?D^Qda5WerbJ9zf9T9F_+`IemVVcagNgUNu6qErHxe$ z(;-v)xi)F)`u8T7I!y$G;jf6-Adb|N(QD(BUZHrN$-rqDE&c$aAHAB$@5|gx+B}?$ zSuyJcNmlM3)$ss5#h`^*xyE+0=kjtA;hueW zf4q>$o;x0F5rhvQsIy0Qd;})O%I18!@8X79fWZByDXzP$%vt9c>+ys&Z5PZ5r-ql$ zBrO~4nc3~UQ(jgdO(?eih3eEPJD)gWveNQngDLju)Uf0Lk3wP4!ijw@PX(gM7AL4<&;od(z&Z+4Hihr~>VR++6VP+fD z7CpZ|+I!uT9bm^ys}5Mw_g(AC_%BE*uWf+1Ravl?dOIXg2!d>|4sj4iD3lma;cMzx?2E@sGX5T^-&JeFUA|y){^}Zx@57o5>bSU~ zClTeJUqyk`Xhb-R6TMiO)ip`a4Bv{@ZRBrprc;10g{`8>6Yr*nlvCyEv)^oEn%UtI zI40Uk9JrC%%G9n%sSzq0TyeU>C9tt^;xNOUYDqeQq$*$M$L9%Ln35EF6A4Q4jT&Xr z?K47i4IRG}A(*N%Y~7Nto_$n&IUgkqh{;)oS=z2t#G9540o*I>sH`gR-3%ws)A zm>@W&8JQ_@^5rb_W>ZtU5jRDU`mY49N*pG^BidBq_RO5{y+MdK*#rAw?K1lfkc|j% z3)7i4LeRE08~?5sHll3#lPZCpdiFmJv~)m5RD za=Pc5Bm{aOe>fW z3BBv1yBw``j2QZgAo4%IeJ)@8Crpc#X(Xu#?7AeOOvAGqD^HS;wV=#8B~8B{nJ1Ps z!=hZta+BX*#*Ed&vV9+MvgAVo2n~8J`bzRLsJz&E4~=cU2Dr!6-^PGVGe11ea0oVK z3z(eo&|(M#R$uwAsAK;!kz?MO##RX*mxzhMy=pqq+V{Tvns9RCKn$y!eV7d%$# za(DP@DC^4S7gPxnUFGXt zcTXZJZcUYMyz=Wc0&59}jgp$+uf;yVeewPPWJoB(w@kfU=O{1q4cIwl_BWC=h>w$C zR^R-G5CFD}(Eawo_nYm6oO%i}N zuErzOgTC@Ik#H1q&BA7DQ=S!mFTyLh3}>&4LwnFBI4+;z6ieE(@3!6*TQ_Nix-}cK zU*?iP!f70e0H6!7sgazB`un-HjYGQdbsYoRJO*q65odcNtHjC)$}7c&2kGc<{mOsBsd)bNevr8bBSRyjN_W9=JL6n57Qr8MI7 z!Ebyzu{R;!$rCE4*2Sl`rKq_HwmXRn<>@X@-;3uN^9Ji`n6xJHQ+?g| zwf=g`{-dYD5*u-`pV|01tj&u{hJvF@OPlq|v~5ze)M?Pvh#!Ql_ zYG-egKP5V7#~=T0(iHK_#8rN=O~VhS%9kM^{>c2q-j_kF!Xzx&)4HD7YRmEB*_Q$O zy@;EYy7qm8_0D+``7&RNZ+u8(r{9>(wlt-R2$A(A@)?8~GP$yI@_qfumrE~@^44>`vHHSrqzTFx?|AI2`Xm{6A1<(d`D5bS+7v8{m=&HYiQ5!}xSXCZiaz9ZPNYbx>!g_?k%3 z`H)2$7JjFe)BGwvva_*#WA|;Yt8w8tU!)|RZEH3*(G1=n1Hbq0J|?OxoR*RFWWTjl zp8Aouif@HS7orpMt6KQF?i*JyyCc4_4|y)DRUfSBkAP25?ELo1c6)0z!HOd1JG&>~ z*EREBf@~CfQA2xDrjbi>-0it4_f|pK#pv`guttJasPbxtks=$Fe_(N^ammg~B9*Q+ z?E=S7RG{`X>fS<1>9at@fwtwy!vt+Z7lp+5;nOM4O?#_?HFW>FkI;P7SD=}WeqoIw zk+@5^>7`#8j)m(woAMxQ=wQXjiBh(1Z*D6RpKu?wmMMrGn*Z9D@p)yNGS5V3YB!YH z7oeA}-UZkC#+G?#C3uB4+qUt>RwneVk_bR^Sz;S4G`*Gz0eeQM*w7>|T%KNOK{`WL zL&%F{&MMcIp2?K9(bno3&RNkg5FhO0pc z(1aLCmcc*(59n2C98xxoHlo*+{lPS)O^5V{{?@cx+aw$#isf&(EW}@{lr^@}{Foub zu3-{Z)AEvqvx$7lfPD}_i zT?9?K;}OO7Ja=;@-+EuU80ELM3{7Ly>^hsT=+&nET0qZ-1xOi6+LIAUT&SDp@R#gG zda8)O6s|=d>1CEav$REJg8W#7BPM=~#|*FBA=mAL=w6WS{^^eWo za#0VTST&CcqYZQF@XrQiZw_5!yQ3fVtxW6CynMaX|HrSs(wH3V14iP5sAcagHSjor z*c6a^)xk_(GVDFf+g%?_bq42rJbz2ct(Qso`}wvqTVI>>P4Bu?Tf#o7V2g&7W8NHa zcNq7tx|S5q#;$@eCC9?J*T2m2WMDP1S3zaT5rU&$euK-gy!d5qQ{XVr{;iPMn09Ec zDoZhG5XYB%d29EBEzgFv9M&50@X^~L_hO0+a{weGzq}D6Ch^B>CWZ}stm?b={@7pk zvtzxOmtw5yulhjZNZEh~cph<8SvsYiMEHvncho*OnqZO9=INR=PP4x>3t{l;j0tw)qJfB}0ub7Q@H^~=mnq?_s0L1nuw;_(-yb?ABWNVwh+=h*kYvAnRF9K@wS+u$%=a(h7rzIFrgtJW{|vtC}Hk{X*S^P z=jsJ_CZJKCcG^<4wh2FG;dbs=^aEx7Xnk~y#0*I#Zrx6tQ~Hd?0tp`&&CVZmovnAB zVn4PQpZ$TJr`T>azuA)qWUz(B&gJN4GpJVY1fKA8CiD2OU6V?ojxtv^_fRt35HA8! zD}u#y4*wpyDfM~V)}|WP8P5z|A%Cry>0n3`+=`&?D0`hkq#|Nw2bb&2bwKD3^;0gH zK+1xuL&oB7;={V#CWBeojcL9XxaunM4(U#MIdtaDdIlu+#bm}uV{J1aVbiw0aGV!P z^>e`8-(%^iN=08)nkO)Q$0a&BDle}WCwL_%m{C`6HodDVGXVy#EWMi?MR8XglPIDi z+ZGm?j^qkCUmW-WgJ)dRB{uuL>$+BxNcj}|_DG3vi!p=r+LQLYS>7<$@xg?zy3u^S z5g8x8OAa>emBV!nybonxXS&@V0E!S*fMmvSIPren4>1B5-_{(c6$1LfytpdDI!O9OlU`zq(o4{@GE^aSJ6t~d2LF`C{k(u|wLaR4xxKZ;SVB)J2w?J>>@!L0Mdf04 z`%${&+{#1v8?)=uZT!*qZJRb6zBQ$5Qyk9gkFURdo%|??akOn+D7otBo0uZ5Pcl@t z(PgWIH&Fh~ZsZqn0l5kKX8%C+(Ac(>LBhSWI1%y*Wvsm7Oc-W1Z;GNqj&sNEQhJ4l z|DR$qz=K5$oCPqmpwA+kUi%8o>`7`kwrq6S9r`M_L)9wprZ+@659NMaCW1Two+Khc zR+59M0257UIdtOQ^Q-3y&Rgj|#17U3@O5F4L)9Z-~BrUak|4V7<=gPhHy4r0;O!qeV=BHiKu6aUd05R56MR%AcQL+q# zb+`HQAd#Ngr|Wgq%NP&fd1v7&0VebKlb8dr-Tka7y6}+wKO3m7VSuYl+vabz#*}G% z7>ld*s^Wc=Bo)5nclDQ3ZNjbX&U|nKA(BQB+}^jHt+O1>0}(-{ezXg|?2B$ejS*W@ z@^^QR>}DhnD)GD8GG0IXj^&5OCC=a8+4vJPqTR-S{_uf+oT+Kl!wu)|tRzd;<6hJB zu|_s96J#YuhZo#}Sz_JXv3XltP;}$Di6e^H^gI^`-j?SeZ&O4zag-q<7G$YLlplO! z(a&|Y369U;RAf$aA67)_*#)J2?csU&3cnTi_8G_Fcv-y<)+*FJuTcXZf5JQF{rAJ2 z#)Cvh*T=v=d8d9F$%nqk&g#$q`G`Kf7GvT!WQj#xFVI9=Tkc0!#qs!J*Acm zrsh&13!U+3-}Hl+^TK< z;YD}*7*ceGkZ?Ntwhs{o`JYWsuButJKCBqW1k@j_JzM+8F*C`db6ceFihaUI zVDOxB0`h^?Q4lmvptYg>{lG zoLjR7B~^kp0LQ;$=`a)e$DU=MA0vqm3 z=ZK@Ll%8%EYu>Jq@LJ|M@mB!XbO-$6+1nuqXFu@<2F;|qIA)l`ECstKh(fO&nU|mD zj9&Ias1I#G92Y(+r9s0ql6r?B+?fhp(0nv7K0D{kN3J6#1OEK()At`ff68=B*xFPU ze2Rm|LJM#}1PBSY5*GOxuB5g*czSkkeDT$$$!yCaM!QK!2EMViXa9`V?d+zD^7Aq$ zOFmQY-)Za-{B48D-o@oVd>WT*ys3{g4XX#WeVOO zraw}Omgehrn;*rUz@N%pambiprFX^FA3t+%c>#|6kbpzMx_w%0%6!`?$d;t1qptYG=8>yS=xq)M|gE7zEU}4H{kDJIjFP* zgZO@^Dj77o9724sq3OQLPy-+G8z14Vz`sX5^s-o$8OOb z%3q+I$Fixxf1URzOy&R#r6HGV>$HWy`z;Ta9>{2H#%e?t1cjdu$3O9Vj^w@Xk3awA z()=#C+uI_x@Er|42vY@~CI9Gyrogj;v?;whMc?&!JBSXVU6s%+6sDyPG_XNrTvor^ z(JQtSO`dX;zPz8^xR)$KjCgU~H2#P-?5*Q_bMQAH8%R;Z914pQRCU_uUO*0&1EugF zGYQz+uX&8|hqP5^UW+g_>j^B@=yU_|70^sTXUNW~6M%tfBiYDOA7>Xc1w4U<$gs3c z4nfRD*NuI3C=^t;DalK-b|rO09f2SGe%NT#af0{tf(@u5i)WjQa)Y$ruq>sOH2FK< zwvPQZ$zL~wCatqsn~NncZ95)r1a4Hjy*xNw!X?gk`gB_bYyV}1K#JHroddmAncchz z(ci#;On@@dt`hJI{*7D#hQZ#G0^f1#%^Kz!d{OEc8&4(B_p3_M&X1sUw~K+75SZX3 z>tB8|r_@HR7iTg26TH%3V^D14=Tfmvm&T3!3rS|C?%QtY1qA1b(5njPjD4c!h>ic= zRCXfI0wth))JgV?(xTOQicXbg=T|^~2lkuf>%Z?M;|<>s?CFGA=2QS8G6ZW9oL+Gx(jHqiL;}HFrUO}P-6fC3TO-Rk>rtS!!Q`B8M(c0BgT}^ z_n`!xsIT1hv(JKR)HSopPwY&d6(Dxf<{oZFoy+exA5u0u)3&y4zuuF(epR`4D~_Jf znK!jd2Kr6RK$iIU@xIuZoed{(`e|kZ)Fa4RMOu4j&8^6UiCrM%pM7&*E9Bb>bv%a4 z^*gVq%H&(I?o0sd$5@b}I0>-;pIZKifqiFbhl(`}_og8NQtbaq9CcPf@!YnkoOpy2 zYM^{1Xu8#Z924-7Cwfnfu}?M;lV% zw$mZy>}K=_^Fsm@J^JO?B&(5G9KM%=E<{*-1~mmF1QKTtE)ik3;Ov_BpIP}kD|liq zUee`p^eihAf~~|(T##JE8dp-~Y=md@N&RkZO*mcwSWS>PZTvB1b2sD|5fuyL6GAvS zI4+0PCw(1U@{Dd1-T94u2<*r@@6GH(CW_u8U2~f1b!lUL2@;V6GiREkujg-6id=cI z@K(ttwxT8THM=u-m(YL8PWk%TpFh8zQ`-ILs+0&e6n0}c)!f+8*7_F_$BB8;AUB^> z)6}F0czJWuCRYH9cxv{K>Kr4H8a#kVo+_KMb~Y3iyj-vYue&rt8?~UVN%(00W>$~> z4~CGt=(}h4_(6qH=}JUpT*$Z1MC~xQ!HA`bBeuROoeg=SYxjT@ z=y$+eCkEN{4Lfl-xcsK-%~?;e`Lzv?+#A9h;I_p3KLIh@;WuZvjPD{x%Z6|&YsrgK zT_!KUv5|MjVBj5|7X*@Kz(%7v&nk{%;Z4PxUYeH;xHX~O9>In~S27;kbi|b836z<+ zIyzaVmbcpF*NS9qFt$oG$+mrMAnicOL(rHmRK{44H>MfYC1r=j+7#0*18NKirg<<5 z3@!%VQ(C<+>~#ONebwc7=>}L0te!+bjBp|(Tm)CU1_5k-BV$m`id%TZB3G}QUHY{* zKl{G5m95h^cv19^8mA12U&&oNm?fR13g<^%q@D;-VUx3qFV_1om?)`{ z435$^dE$8Ax26%KWKXvlS$*jOoW9Q{oUWCtU6*qhj3#leBi}d@G^vc;kW0_dYL>AJ zS-x|Jh-TpkUgv@pu|8u?9-~S*uh}+`vAd=xlulltH89TQO(lOnB+9!r#srsd&PRQ;w?6pvMo43`Mj_lY)uYtz!cbqS3x`)HyYu)KAtHyI0&9z% z^`t9~GGlt(MJmiO9us&ozCm`7jSFy=9+hLx>vLQAq;q&@4KFPdlhLzC*B8$ZiyiC` z2#>P#jhj5I&5CC=RGUvz{6&8f6X@BC*Z?kr0~uRM0TP|ZCoMWeYGza0h6o%Uh7`yl z>Tk7aY@?(!RWlR%OC?VI5zBFrsCQLb_RBz}GJ;kHf{qwUjt%@@#3|K3D(=0?)UG)G z-4_#Z%G^-%AM$A=+ByE+TW2c2>1p6VBqc4I8VQ$?jDduCsluMc7hK=A z%`Q3%>7ck?p2BK$lZvR9zUY$zr$I@7Oy9YVPKwU0*P4zCJ3~Lf%Xj^Y%Lm{W-4ap> zKxrf}JSqlaB?}RNNZpujh#D2`r0VRC#wA^Ax_f~zJn!@Q@vSQx!^1B{;@f&x`Fo2$ z%bhbwdM0h?N2z(iLAWSyjOBR%C|{$LuF|5U2xPyFtyh>*<8=hT$v4eb>ucAxIA>`= zS*bw?n41ds!N4+la3H-+h9C5IK9uBNqpkRtARv~(nDOzgbkLyjrl0JqL#Sh#ee8%4 zJs~2wu&_liOI*R)lqsHJ(l6g}cS|3p4fiE!fVpgFPM)E3^MdPlcI%4j>-YmAC7C%M zv&Q4xINu-UPKz$9e$>jt)P?Uuw$|A1M((M34$XG_>P$%RoheIGC!Y43zHO~*a^+Ad z#|0zK0ukr;W}AA%zYe@(1f7pN#WYzNU&bvfkHJ?~f9AvGCNIqM7dOY4aqE8OItwVW zZ!1?5fTW1kizUP=a_`9sPLW1$Rf%!DAeO;^yt<|(S<@hbtu_1VGVrm~_>$(e0` zumzEVdb{bnAC?x2loGHGliT*7X;%D9M&Nim%?q>~inS{}{aBWsV zVB^Tii4~oaoc-YHz8+^SY~?nMr;x%DhPyReCd>;#Q|wAx_pC z5(|Ge2%eQDTg1b8WXJM5)AS}Rqdl&mZ=g$qwfuBU6@399KxK;kK^RFDgGVP+Nb4S2 ztkBaKy7Kjk{?5J?M*>ByR)h8u!DWJiKg61rZEY&W>uSr|Pr451UovZVoBZS(6I^io zNHgwBjQd*~>PfvX_%^OzUjFB;?J9eh4$f{X*DAXIQkb>-8h!C8g^i~{KUASl@BMgV zUFbU%Zuveq8ADKkt!NV+bV35|0L+u9lPlJ~2FxRQZ&$W*_HK4t-C52MZ&>j9q3WCkP@RGWE z1<8)`L`&Rb6rAoMwVess`d&D4wSgqjYZd$kIk$EClx94^v?&|rAIR6cB=v=NQvk1Ef<%0LTn&o;P<(Z)26-3K?s)Xd{b-&&5bmXpmd*zp9^RiMtReR)+{gC#aCI+k9zW* zRm@NE{9M8IDV83WO2w?=WH)E?y;smkJ zm3bDns`6gY)Y)qz(tu)07t=>y2VaLdG6zMHVjp*! z69>6Z&4w}8>syZDWLdh1XaV1qMBwdxV>W)%OIV*GDJFo?@v%Key!MCK8sDI938mD` z`M-+Pz)iuosS+5!GsQo9J5j3Gx?lt@Ar)G;c~f52nyG2jyuA zw%vJl4^yEnVuDlwA5R8g-r@;b=KUjeGYS;0w(aqsXz7<0)Oc>O+DQS@*;< z*pjb!l+4c|G|U*3K84(*Hi_QNF7E01>eBV$jjOy5U%V9W!^I>ac9f`Wnf-y_h@K`L zCm*x&DAT62QGBxmjBy0%0HgQ{NO;yv31sQc`HHl==uu)?d8;NV_zj&iDqffT`hq>sQ~l!X_e+5eF-ewhteh$iWI>w zp&XYnd!=j@f`57M56s`Dax9zl9AdlY_5~+e>;-Yb)W$W5+BU?^rNE2IN5IP87ryIq z=2;o~>$ld#!OgDQOL95P&sy1{B{|=VtqB{2GrbG6i>C(N*v69)Q$}??gem}YcsCKx zvHlWyqMQ^N;GlkLv#k!nln@e0lu%LG;Eu8QNB_^xlqOX+ug<oWJj zv{=wLc*#s$Txk8|`^Qoe1N~?!cbopSwlw;)!n#82o4(!h0qpK9&XHUZYz_LJ zxH%xV@pz8L@IUsgnV^MNWnZ2B#cWg5KRwqRnmodngxbn(O|_m6Gx10=$)wHZ6+EOg zeawC`-C8^q^YtJ(NO{w?uIr5s;##J5pxBgMOJJp9-^b zjpYnmBV4xhSeHXt6wk3h$#-#mbrye-P%d#E`aI9cVNH*Mj7P=qa`O1?U@<}zi0i9t z0j0K};WAe+->V@Fr6D-2&PZ7*nYesi*QQ}U{9A^4?9A*%`1_>YsG0wOG&9>^TqEf= zq^y}J!2^es3?h_;$2KA&mN9B~R$THU20$e9gWcfPIp82{bPd7a?tm~1W>H={v@$Lk z?J_cTx?2Pjf4?=AE0dL6P2gFtx3w+PpH%$g<7ceRNi4)ZY)mr|4l2HOa~t+{0tJC= zhW9!K;zG|MFN!20s-jZVIG22ZwA+E{oSj zSXXk{;Dqz^qrtB#ThAx;QYGB+)^XgErQ21$Ho#AmB%ZuHxbjo4g-k`VpG zkvy@SCqquPIVXty&OyEP+rC;Kua8)DD1EI|Oj~=Xnf_$*rb7zQ5t}-NPLKQrTZL9Z z=&l+*EgeS6!CUzjyRr^Aqy-BKYIRX0I!roS8HT-vrMSDFD`&rV>jz@F;l*n;FL z@~7{DqV^|nFyuOIPhTQSyTAY#3})`!dlq_f+k#A6>{R9mp|{#G-6uJM7+V?AY~n^{ zf5$g&;cHD4s&uV+lx&vcI(9pB!U6E5TSz3SkxfIs@2n3SXRybFH|I7Uf1Cbum%~Dk zk7RY{>d0^Um|sa`8niV&w0qciSH_2N2ex(sC95{^)qE0L>ld3MA%3wV!L9bk-?W`? zW&6A%zQwE=b1*Qn*CJyy}5N}_7^N)AiETOExvz=PfYIoSdk2tCTO{B zV_cDYf};FxJ3-&Tp;UxJ#+}-XN_G6w560{gA5o?>u|NT?3jT9ka*|8+Gt=hIN zoE~YAaySFFDFqWkc2YlaG7~oSA*Y>I=qr={08{Bl_VJfFwtN6tIrP;b#OYvcNgR#H ztgxsOKcks4(YrEbiS5?LRe)?1e#&uYk{|+Yajawcex-C+i#5PIX6|FNH?GPABt$Ie zxFA?Bt`N-Tv z^#UJs`|B6Xy04gSYdY5g1<72Z5&T*jAYEKwLQ_YZ{Xmj*FOeu?0GmZ~n8aAr!2He! z$*9F`=_Yiyu5(`?fs*Sh7j#KA^w z<2+5Q7x6tPi1=kX2aI6+s>37Ki5{0r(SNI3R7v~Y$GQ-$rRWsb&uipmHeP`=km&<#sdIt`xa|z-z`d{&&*56ZpFWc`VTPVUhdg5MN2{@$| z#LGxJ@rdUHaa~%tibXy#(u&<$OUCLU$EdVh`nGZA?7a?U^T=&y^&Y#1r=AO@-J zGC7IFAgSm8>`#N7scsWg79b+2k!Y*kks+cVsA&)YhD{QruB+KKqTeaMkQW;9IN%iN z?rIZcOFp?Z zBq8bb^XDo3cfx*|@@BL)?1jj>luY9c4+m}KDvB}8@mn7fbt|1#Bt4sJduKydx$F-I zLBHpSrHS((PT{g2c{z!vBxUi+ZcKCBYV02#rZZow&~|HF1d#yolDH(cbl!KqNvNZa z?iOmFsuPES(Fl=)g~b^{$aotAnBzTQ7o7N%Glh-F0k*!zL6-jkxvn!oJ1t!B_6 zi2a&V5u?gZrskT?5*_hznt!-vziP%lFc3T?8#_lH{C~UxPWL~P0(8;0QVlBle|#oS zl@o3Nma=lU_So&%Z(IjLl^nCSbwAm#8t6Z>eOAAi((g@^*1=3Lr3?R$QCUOa`>=HV&k8b6?RZMI_llL^I^ zyEpBOBq@4)7#~W2NqbF#`zO2!^pf+8yFr$sJG;QsDhtP9Kc?% zsQA259Jn%xi!}eauA~YXAEpI`@tKtn&xApb{!zh-=_??$7&X3x0$>&^&Cp*Qh+%4j zPGBanM7tV5qx4cvJ1^LSRLZkFldBK`Q?vP+l@HwR^nZxo`_6nZliGTq3?z#<<22NF zNrR|26a;yl8x}FkYO$&iF2|!j75gYex_jOVcc!Xl*Yu^-vn78t!X6aDNWu^mSOSXb z(eRHT5Zodg1(gNKP8&RMPHndQK5mwuXIsWS!Dp^3TFhw|A__27?`iH+o@)kt_Aori z(M+`U?0Q^2dk;;<|1MP_HGP6LiT3a?&~zWEM;B|uTRi@y^bB%)m(fM}`+PG=2rj>E z{Vf08#S0$4lV3mvDf+5EV#g{Q(W4vO2o%&3z~VDD6cUVKx$*)_3S*9 zJaXBYBram1*o)XbKiCpyQaim!TE6rK**I#Gp2V`rD|&8 zHk^r)#e;P=Bp@BWfpkFD?FCze-gU%xM6elZEQmXG%e_uJ^T%2j)M&%-vC33N_&fI* z2b4je{A~aQ@Dm0+Mzxr$oP+@6d^dqf`MY4}}zKc6+Fe#)?igv=T z4{gt1V;@ypkCKA!R_HL|FD0jr*=4nq=JqNA=|k6Jst5Q~ur-5y&@%y9<4SAt{U`15o_!3xyT^Py;7<$}Y=v4;QXPR0 z9owJgJuWUZeiKycc!P>z3eGxFBxbiDjd<1{9TeCs;X8fEFmZq_(Wmqx+eO8ZlbL)%JO?8&v*^TM{)7vb;FRoj@{$ekaWT zYxo$#=Tn7D<2zQB+E6(UH2Ys3UL?0d@R`kfGREYe@y)ZIkT-uZDGtR|rg8k}p@V0d zSwSlJ@NL6&CHZ175Kxq0bhGK2Ef0=`SW zTI7h7^SeY0TbaHow$wI>y!gUJxnjC`v$Qdl7nB@)q>?((3`|)9D>QC4r49;W6iUbr_>CP3g*{?f8ue zrno(x^q*IzHhQ=5wn^`p;;l(K!IjBhkhsp#H1GYGD5N|yX(^>pq0<~guuS;7OjiS| z6={)^sD(_Z3F98M>2Y47vqcEwi)YNvw;~`vnGVcxL-Ml8uLd$R1fW6!VlH}exZ~#D z)H4W3Xi-;vSV<$^tX%o|gbVG(p#{YDF)-n+sjCOVk|zpO9Q(vVOuX4-pa!pHPLDu z)Ny2bm8~=+1!%b8df`Q;gtJ>~_6{q=lKNA0@^``7^ho^6H&%liEsM%Fu2F>)7fAk` zWJ17W=oGB2sqN7nZEbP8i}0CQr*xnL@GV?2GA3QV1lS<*4mf$9zxMM~4oqIpPqHHZ z%dnD*0xWmF2cWK*=#{F)$@a@CONim70gP|^>VyVh9my@hRVhW&%9l=&_KE(pVcydE zj0Q)VSwVFC&f4ytJ`f4z9?M_0(^+-LUZ2_h`ubqEW^Sn4h3za`KklW(@5npr_5x^u zVYB(l`0z@Ue?+8mvSnSPpKypabW^=NkbQAB96fTTs`}4nt8P7TM^J_?M0DgZmL@=y z#3iN40#WG@5saE>)5%)tli|r?oA?V#=EOB^A2xL0Xm&oQQm&M{b&*{im4Iu*QSkxP zz;ixM9uXGf>tCO<>NzOqfEl7&2+WWkW4?SUnB%!JT~nw6wvt+jb(e7^{!u1$+pQ-O zDy^aUk_(L|hrU|6+)fwnMJW>q#Np>sij5TDB6w+?#Ef=l0<}H4D3rg18Ru5$#R2Oc zDrbYZ|CRtF#s%u=!QIB8iUYwNp<`s&2PdBj957MI*X`&*22JWfS=Xfp&X* zH`~}Ry{%OKl(+p#m+0)|CWx_8?Yhp&=NHvd$@7EkeTLN4IB7D*6(_?}TR4Q& zqZut|)&-KW>~&rVJGW8Z#`K+OwFP)@_9p32rFN?j%;+tW7+6;}l@wKPM>x~3mg?O{ z{*^^k0K0wIaE*`{PljWEGqr0@SZh}G$KItU=%a5^~g-_w3*Q9?|G#6QTGd5@PCxTX*vNa-}{2gJ6DA_hux`>j~93HY#9^oD$2x zz~WU=j|-`o^mW#xsm}U4U13$)am4CXmD?Oc6{66++#`dyYp10B&R<_&9TQO~_?_fF z2uWg-R5(RS`8p$>soL)HIlGzF&hF;YHd0LpY{_h)_452FgQIN=v&#fhEF+T_UJ!qF z{`%D=c2&Ok;?()+`A?@HE#TWv^Pi|OGCUAU85IXt*KPwQiFclD=NAttN;xz%=<#is zoHHeFH6E+E-dPjV9fKFq<7eO7xX~L_ZcFG%<$(>S<|HK7hPPdVT!D* z>5q4v*IG262&dsd*^q3r6CwsPXU{5v>`~} zM-9{(yO+MIOjz(V*O8Q|vN?JZi~!WI0ctpK&wF1f%~HyA*Om9YlJQ1pf{Hzhz{$da z;m-gJChUT*(7?5!5OQhx1KLp)sK!l5lfZaFlK4rnG~~eYXvwMdX{6*ko2P<`v^`ZG zcDeOEyN`Lv&xmPNt|ZN01iLdXOoBhw^sF?s;qHrAd{;T<2VjaxX6^J^oLj~U&z4B1 zOB3>HkQUHMa3D!ihj{f|Ey4)qT6UKf;1h{AaccVWHuaeAeQhB=)uZ{;Cc{FfTMO?h zTroUd*>~qpu5IK0cRQyo*N?t;t(!hSJ3p2w=OVnT16qc(XNhc@dhcxgfR7hhJ+ir+ z{&rr$wQy-Fvvy6E$f_xIp)Ar*U@|fZJkxAU@96ZTua98M`zk+1k3z_N*HTgweLd_h>r-LRqXJRo4;j<>|?- z<{R!KWIP@xRkya<+hMF@(ZV%-S-NFZ$`ur?3Rlev~8%(C%hAWTy%xrZx|g~FhV+8lZV1_qTkLgd)8 zfuCr&3MkOhdPv_q<)hgJb3f_KwTb(U@<_qeE=CBvFxb$gt?b5h`Dz1cBykT0zqW1b zL$*2QPj8dNLu&H_jcy;DrtE|t92ucdyNsxG9mwRp!ksvOwgjA(yy3&=Q`77jwkR>qZ2`6#ZQi${vMR_$*zsZCI4!F+L* z3i=-)1S(%88LLFR;ctIPKq2>1yrAr&-%%<|9{Z*pGEDv&L9q?kBx zl&RwqJeSJU8cvA$Ysi1y3Z%pBE z5f8sprOj()`k$X%wNHN%w`1Es8lLeAmi4p(2B3(5erDhPa=Ts3|CovF}h0TrYfOAlw_pOM*4ztC4?Eohs1P$ZxU}09=eJ0qh?U6^zByJ}fTuOUgj>I79WL zH#wIM6D7Iyl?x@Q*hs~vKyH;0T|%vuV=4RTn-4c%-<%;~w^g@Ixm0jJBqa5IjEl>& zm`gtM6+GmaC$-48=Kj8~*%OKN^4;6txdfP#z@2S5X^8n0;t>5S$91+1&L|uqS1#~6 zoM_IiP3@}j;|b{DK=FOW2Fypx1e?j09%``ymsT3bdnkGhQ*=43da-rIt!>)Obh<&_ zalw5YsvQW~;i=$=kO8iAEsuqSD80=0m3C*FQt;MbEcs?xdk=4W;C7BN?rd!FI*)`> zfQghqYjcZ(0W=hgFY1%DbS+Pbp;uDox$L0)4oTHyPn0$~1Dlt^Icp1pLej)ods7sS z-mNhz-vl$OSn=w)rtyZK(^c^49F#it)7a!MeJEXvCU8t*c7p~!HJ>ss*DBH=bo=F)flV5*5s;IF1KE7Q28`gVkDy|Du^ z2hy=uS?g!i7>le z@bIPUo`&Hl23kr}OS$spY5MZ~yLXJD$|{wn-Gngm<)WMDAbo|IUK0C19ER_Ba}EL+Gw=gvW;KJ*LA)gd{f!qOjFvB?66;NBj5F2@#BhZ{}N2w z_|k;L83el_0;6!C%JPv>Np-QoXKZlKJs4n3>A085T-Nw}u@BDtu*e0m`fEQF2 zi$f`AiZ}}hg6Lc@+GtJa*kNSWbvRZQw*>EmiUa&MLOk$->RHqm=TZdyT%E_~kO=Ce z{BCI^b`afK8O10wkii9eG=fZeL>p?;9wTisQ-s&*fdMcospsmI=`!cQRaIl#`E7nR z54!zyXU9mM=BmEi`atHGyW+^Ihkbjv235B@eoaEmqx%E)7pdLs8Bnh!y=tSI=^CO9 z!7-Rcs@lmq+&f|AQjq^=oFWM2Bgu*fgB1$d?5o zWfB!^A7es@gd5jRkQM8GGvMKcbQvJ3#e%oQ0trbsiFU3f6$02wU5sJ8{1f%3+*V_$ zMcWZP2bp(R@Wm~hG&#~#KxV6BH2j0Tdzy^4U02z9fnDb1;h^h2c$o?1o!#~03+^k} zq`%qrW%7fctJ;Q6r7vdD;w(eon#$JGF7Hk%ed;VE?Uq<1o=r$sLBJwON+Xl(@2X7G zkQYMtP!wyJ!{RB`_^s-Gxb`VML7X3dzYONiRP*1Be??QYxy5waE;$EIqOBS6J&?6T z*Ns!v#)*8KB4}&Bw<1;ItF`HD`_v##{pR<@8?|8dh5*5<^9DuZO-KVv&p`iQ*=W^KA<8@zn>*A04qOXy{8#5H>0+ zg}8k7X=iCam{9QaRX>3SMOvRil%SE_TLReW%Z5)}R1jvE(rz)YQD?!>yI^_V(eBTJ z&V>*xE#I%~0lBqPh@(mMRj^>GCk0ustGSc2$hi)Sy*fEP7xSYJ)iLC`c1x*3+UWK;)r6aZ7dEKtRoi z;xS*6D2ADZqIE38a_?v7asE7tc5a9lazrs>?*)4@o0sE?5lumzTi?rRou)RJ_7_G~ zMA!9%D$2By4vD@rJKJ`gIeH|}pVsojqkSd;tHcxRJuFNQt9iGzRYYBLzvr+NqM^qW z-7>(^xO&=ug+^)x``5I|j6ed9T32@M!{Fk8u}*c002rhFGHX-VKjlhD zpwK`xK#xmqL3v@}95huPz;d%=yreVzv^3k!T5h)_IaAugwUHOR9wL3n>9Y4C%~r?y zhwXf}QL3<^GpDKD%H8!*p{NuWPjG?UPP!u2>;W4nE0d8?rr6F5^&cSm8Hu+0ejJ{ct1Pk zgj92wef+p#1CNtWFT8JuZJRpgpJ+(IH;V%Gm~?S13b#P3SUM1YNn2AUPs^~Mv-dI&qWu9@a}nn)gt9cjtQ zo@6FCfW-6jYm2Qd`%2*8wQRid8bx7i=Ry7`lS|}@OIPMVq#Kt3h6ihor+h%09!E-~5U z0ycfY-d9jDDa2W+#lPE{%B|9x&#LSzj+y9W7^BO6wK6KjdFjHyfN{2oyclMlw*QT3 zgJB3da$1(;ba1>m%mSniMPadKaAu`cN4AY)z)vB8#w|?D*1g-6_pwukg3zJ5sM z+K|WaG#W)b<>?kOdOuN($ z4SK_a04I`~N{bBP1k~?b@WQI4H8hyC2LO7R@1@AU^JJ|zzb=#O7SXaK=Mn)GDgGju z70g6dv-E+7Gx84TRg+-Nnnqsn=okrYi2@bfe6jLGStq8;Vd34n-E4qCT~86^t9=}A zUo+x66H1oDbQDO3yH~isw(@ri&y9l~@3#Z6jCBG7ahjCcO>=94VNY{oiexR_NLh!I z=DmKNBJ+NJ40$TEO+~!>D&@(tjZ=I~+(#)|Ti+XF9V449W#O5cV?S1AgUi-Te_+{p zN?4VkLDbqbZyjm9AN${Iz4CoX-%j8kPqXm{SNO`biHScI+uC(nw+*}|vXCIVwCKbZ ziaEZ+16As6&V$hPlcqLcZ#~MmrLI2-gdG^8A*i2n|_c3 zsrf$2mCTUrH%-|&gaRk_oh=3*#evqQa>W(Lmy@Bi%<1j@F7z!^)>BcX=g(5=wINA5 z+CaJ$=E57EJr&u*Hw`R+36wQhd&`l37_9R{{_K0D!mspgmoCi^x_0D3*S7>-Zu6@8K?&rq*3kFJt^r`BK7%;irrZ!p+9V9Hl7 zoULu1{XK4l^f0XKhC(zWQEqCzvFYcc^CumcS7gsx+c+P1avEY=S&5X4qq-p7r^mYR z$4}V}(^%JSX^T$syVFjuV2^9@8Lb{>K8!nV0L+~RMT77bv*=@@r^AE|j7vRn{~TD- zw328fn5JE0D+ImMv9v(X8Of}xe*K__yD}~B%9}TD6LXKWJRDA9+}~G*;;BdpN;%#v zQC_>@ZIpqZBwoI!7&U1L8GaXl?DMO?XT8q(T^8;4_U}mUupj!i zbH#GMPb?{QMO=M;7!P#QnAUXLB=%KmKfF5(_zHJ_aU zngbbtx=t?-o;0|kuf{|DQ6y{TCHJ)ywBCLnY#WQDZUu#3zWNgd@PvvtL=V$L+J{}T z=4i#}FgMAX#-%M&ZbN_$-{b}wrAZThcfYfraBpL~j!}BMJTE_f)-Y zhUP)J0Hu@Hdz$R0*Cn@QZwk9zzEiHBnEh|gc8#f3qemtksBz!`UbH^`>s-?QuDp;G zT##9h-f>>B>Ai8gtyhs)07(EGxX$etTt;hZ`#ZR5bbcCbQ4$@xwHqKJ$}uG?K(1ub z2LaE~=|&`Hh|WNw&Exg64@t}S^>alYSKIi@%-HFcpSlbpapLY5ORWc&hqxG^F}hiz z76MQ6%pqr>)DY;QodaDV5}??lfI3(wDaN1WE;-EvNx|lgITS;l*0ktH<#7@P^N-1a zZ+=ZU#(A=nbU3zKi*^C>jJaM|dhl6>dS@Qev^gDuPdnopB{{b42hSqEW-JvfSm^@i zsk7Wehrif`C{0Hwbb7DU%5M5bp7m&mCdq%D+~EI%Z!JGSmYpB`;>+MRy-k%m{$+NN zb{jThqNUgRxNE&nIOQkvcZ($OU79!V!2PR*nt!;l7$qM z2;2bC8$3Jm@3YYxt2xNH^hk#2?XUWA8{Q%%YsnX%jsd(p$jkf6*DKoZz+q@{jg8#v z`+S0VXF_q5L`0_%;ED(pmQ@n@d>EJEi>RD@;mq(F+*Err@#KFEZe{t2W~!@aH#*B# zrpxfwfV+*H`Sq&GZQGUiw*pIXQabM@L=0JaV&6nYP}_B5QcECCu&K{n zX&`Eh!UjKY1xAl8{7zp6-CC3Wk0R;(+eVylBSj}+GMv+KcD1X3PBWOV&Zq-|!w2cF z?#9$sR=?tUad*D6YumIo2im}!{bJU}rcjuVCX{~Bn_WF0jEYyiw?V&bcowlK6xKfl zrm4e7A*mG5ZwWB-q3eUl0LY4e`e$!~>!yT_AUQSUjSN+}(V#EM246q=rt~w^jcZ35 zGWracivbx5s6QURxdt?!V2`zxKhLhb1ZKr>(6zU|o$R=c?;{(wT9XQo5;3?M9rJr} zJsj5mb=O47o+b|`_w}Tmmi2Nm=y&*uPX{${n*K$RQxrp&t%Z~)7e#L@igixOI41Mqz1mYh}Yf3vK za{1O&v8yVf-OyI~@~c-FEeg>j^t8PCt*s3?mz!$U*Hr0cteOMWyooQ{F)5=Oa-ar{ zA8_KHqgMV-JcQx|2((N^)Rm5Z>l+`kNb$cmyI@OKbcTv;-tbq?zD?r1o7x6fq|fi~ zOP_AM!nB=Vuj6=6KPcp%OJ;2YkFvKe@`2f^GJFu%Q08Ie8Vwu$P18N_Q-H}pHFCPX z{~WuQ$7NNw1%pM#41qEvs8ohJzjw#qco&&_&}LNE=lUS;B?N|#mo*Kn=`~!K($+`( zFOEQik@2S=Zf@Rw9RJXSF0OuUjt9?#j*sFeij}a5I=v@w#ioaQhWkE+F#_Mu_mE(B zkZ?;{**u@31i7fWM<@8TDo^R(zccp?V+7<`GsVUgg~w4Zb1Id2oX?#Jau2@oZR5<@ zdmFykO{4@r!6C<2u5X_P5lK(Iw4`9}THC;DKnXj{FzazGL3QU+SX-eN!PJy~rU(fp zoSnz+f4}#WicRp7YR%pi%V9&rNPb8$lJ8x5Z%kAxQ>3OT%c<7Sw)A()W#Q}O34I;~ z7>Fc+yZae!(}lyUK|)j!a$r zv)}l(GW(}jT0p>PN+N|ZKH0FERXyTu!5^Z)c=k4UlhOo#YfBqsng2|%Va-Xh`@2RH z;A1#2x9g_87>^H^y-wu_rJO><0yJ0{hNc7bpMbT9Z^5BcI+%g&X-r-^&q3^}aqFyx zHr+x9f5yxMXGbw+)TZZ*sVZ^FFV|$?QD|2rrDBd#pftuUVN&4PyO{p9&$sY`f9erI(n-3y?_-fRR*Y>exF}IIy zO<*LNaj#&7)+~gw0UZi~u{uroiMDSknS~`2pQo+m_hoQxnpk{iSNHrNvkJDg%OCu6 zZN_7Y;O?6kuckj`5m7qT)U|k#;ML&hC1)`G^UnL;yb$Y(w~}9wm%N<`f)^OC z!Hd#0O�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ℜ&+sn^V*LBbB1q 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

    !cb3Fl72Q+EN#O8M7&G;0d+pK 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

    5TU&to07G&)IiJ>Tsy|P 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

    ;gso0^5!~v@rhY?thos14H2|JcV$EP9hFv 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

    ;gvQ;1jI75Y+-WN0FlM=~)-j8 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

    $^E2H& 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 z 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%0DW79I@3{ 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

    0`e@A9cZoh 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

    }zd?C%R$)JUG<7MQ__`;G&%=J|J#k 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

    JEfnHXKgW=8XBoW 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

      @-sF*< z0C_<5J`0D+9@U8wd1;wwO0je)YK0u1j3{Phd=<@0HDadU$A<9?>hE^^yf?0aaLafYlb=1DIE$r{|#N>Y(s@MaP&(L*da;L1^=(IG^IpXr8MEcoC&W^<<`N0<8 zM4>9j04#G9Hgdrzf=8XY-8FMup8S^MuMBp=8-`bb`GSPg~Bz*5!}owv~jMk{xvjA~G*$IFFLS zvhQAtHF#md`CFH&==WI|_+_0~Lb72|T{Y!9(ZZc54vbD2!*)=e^!ms}!fjLJ` zqy*BJgIeeT0wugJjX2Y4mMcWy*8TkEC?qeuVEc`@>|> zgxMil3#gh+7+sj#ve&O>uSA_-1LYS-A32hN=7n@tOvzg!*}iBjsVD~9tYUBr_4vxQ z`@R$X7#RV`vcF$enya$^$!%@ML7>mg8dvq(J{$1QTXSD}XFIJ;Ni|i#moQsa=Ay}? z(0*!cFlUzwSg-jONpy(XPF7-VVi$s6;8pq%!+vM;eDZz2GfiWv#R|{$d78wpU8Aux zO4o^|*>lL1z|puVEgsI8gqlo~)*yWHMOh`1X$-R7^>Mwk#b0fAPm8zV;04Q<@^xIp zRaP^>?8w{_?!if=+4nU=ufj>EeGg8Waa72oC?ytO-%ua>eY6b+lO&XpB{raW{0gi- z>WIxBO=s;UCjzSMcI7(D-w^T(^w+G;7$nJzMJ=W?wSy048Hjw`U!~5z0V2?DdshKA zG1Z;*9oKkViM^7ZbV8bgZt48t*;#L=Txnn<7n780U_MHi)Ze*Ndvu}iR?(V?$OErD zIsCvXEd;FSw$4Az9{2sKcI|Hdbo!O?uBB2jUR=OsXLDA|FoEk!xNF2B9(8}%| zkjDQx?vkFR&RM(PStR0>2Yz$%)`Qcfs+%AkAwCwfA^Du#0c2Nds8v~jh*SoZpv|2g zgJmxoZSA)1snY#=7XXlCK)1iuwlSl*hrgFtg5%YIoxnV(9O+_1rU9!QxmQD9gJfv& zdS&2!Q2BFYy7zXo-5LKpNM0^G-`KVt4^EQpV&w#jNrR24Pxojn(s?EPHT`F^vy~I@ zTnx`&a<#=EG7XBiPb0_L#dY5#bF9mUbZyOD=_>@?m*2$TMXep^i>Uc-qa}*TVTn3; zJ4Y9G4IF;5v*cmX4brgX8u-EZBh(ruq|?Ne#E&7Eflq}6&IysyPas74FKcJl9k*?S z;s4T`w&z$m`j*{0r*4xrspH1!=N)#5-GxO08<5mS{`D0odLMy*#TvD6QTAqot*LRNGTAdK3uLNF|YkN+gs+#i61K0@qrl+^x6J<|j3pwfz zeVmvRJr5}2h^Ituxhia!FVmTdV#3O_h3df{Ocn8)F4Te%MIpG;GX~AFmwayda9&KLyw)yW_iYy% z7TPc>F&zVL*Jf1h04T{{YMkZK3OD5FDdHTry@}PbXoPO)>sNnYM)1v?NzsY3P*lKp zzSKL;70@#IJg8#eIx4ZPajv~&&>mHCkobC(l&OCU8AGZf^<7unBU5Ep8{a)runH?i zn>5fw!ci1WFsVuEGhRyhlz*&4B&=j@bcpNZfU}g&Khid&?*OSP(vX+nLf)hdndt># zE51=mj;~|CT4AW!dSDrD_n(wO{mM9mJzndzVAG_{3eW|huknSA7{ z-9>{eznU$78&WV`ybWKSKJ-zrJBvX+9#*fLcd8sl(2=Oa@aD7!z#IITH zy3Q*b@rd zTJTlB9t#kh;e6r2)RKX1%x>|SHq=9h45%Cbrf5`VC*(h{Ln+$Sa)Id(P!SL0zCS0{ zn+XlBq@vK$qx8AkbUx@$eeqDGi^kSP)P#&~hA*{yt`wo=NSG`&hr1%9VYm)g7K#Ks zfa6ilO6xCn`Ly=htXxN#6C#xSag&VBxCX*1xnVaBxZnVED3>+QPtTw~B7%*Y6MLoB zmy+1Z%)Z>!W4Lk67||96X2`t%u

      #{fD}-vExU__vCitxQKjbD%TjkhTACrUOCj> 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⪼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

      >lkk36p}>d8g*qqYN&kp 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

      B%(@SrXpT=2;*Q3)Ed3o=v{^(SVW+ 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 0.1 else 'negative' for score in sentiment_polarity]" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.7669\n", + "Precision: 0.767\n", + "Recall: 0.7669\n", + "F1 Score: 0.7668\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.76 0.78 0.77 7510\n", + " negative 0.77 0.76 0.76 7490\n", + "\n", + " micro avg 0.77 0.77 0.77 15000\n", + " macro avg 0.77 0.77 0.77 15000\n", + "weighted avg 0.77 0.77 0.77 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 5835 1675\n", + " negative 1822 5668\n" + ] + } + ], + "source": [ + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=predicted_sentiments, \n", + " classes=['positive', 'negative'])" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "# Sentiment Analysis with AFINN" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "from afinn import Afinn\n", + "\n", + "afn = Afinn(emoticons=True) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predict sentiment for sample reviews" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "REVIEW: no comment - stupid movie, acting average or worse... screenplay - no sense at all... SKIP IT!\n", + "Actual Sentiment: negative\n", + "Predicted Sentiment polarity: -7.0\n", + "------------------------------------------------------------\n", + "REVIEW: I don't care if some people voted this movie to be bad. If you want the Truth this is a Very Good Movie! It has every thing a movie should have. You really should Get this one.\n", + "Actual Sentiment: positive\n", + "Predicted Sentiment polarity: 3.0\n", + "------------------------------------------------------------\n", + "REVIEW: Worst horror film ever but funniest film ever rolled in one you have got to see this film it is so cheap it is unbeliaveble but you have to see it really!!!! P.s watch the carrot\n", + "Actual Sentiment: positive\n", + "Predicted Sentiment polarity: -3.0\n", + "------------------------------------------------------------\n" + ] + } + ], + "source": [ + "for review, sentiment in zip(test_reviews[sample_review_ids], test_sentiments[sample_review_ids]):\n", + " print('REVIEW:', review)\n", + " print('Actual Sentiment:', sentiment)\n", + " print('Predicted Sentiment polarity:', afn.score(review))\n", + " print('-'*60)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predict sentiment for test dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "sentiment_polarity = [afn.score(review) for review in test_reviews]\n", + "predicted_sentiments = ['positive' if score >= 1.0 else 'negative' for score in sentiment_polarity]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Evaluate model performance" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.7118\n", + "Precision: 0.7289\n", + "Recall: 0.7118\n", + "F1 Score: 0.7062\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.67 0.85 0.75 7510\n", + " negative 0.79 0.57 0.67 7490\n", + "\n", + " micro avg 0.71 0.71 0.71 15000\n", + " macro avg 0.73 0.71 0.71 15000\n", + "weighted avg 0.73 0.71 0.71 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6376 1134\n", + " negative 3189 4301\n" + ] + } + ], + "source": [ + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=predicted_sentiments, \n", + " classes=['positive', 'negative'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Sentiment Analysis with SentiWordNet" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Positive Polarity Score: 0.875\n", + "Negative Polarity Score: 0.125\n", + "Objective Score: 0.0\n" + ] + } + ], + "source": [ + "from nltk.corpus import sentiwordnet as swn\n", + "\n", + "awesome = list(swn.senti_synsets('awesome', 'a'))[0]\n", + "print('Positive Polarity Score:', awesome.pos_score())\n", + "print('Negative Polarity Score:', awesome.neg_score())\n", + "print('Objective Score:', awesome.obj_score())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Build model" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "def analyze_sentiment_sentiwordnet_lexicon(review,\n", + " verbose=False):\n", + "\n", + " # tokenize and POS tag text tokens\n", + " tagged_text = [(token.text, token.tag_) for token in tn.nlp(review)]\n", + " pos_score = neg_score = token_count = obj_score = 0\n", + " # get wordnet synsets based on POS tags\n", + " # get sentiment scores if synsets are found\n", + " for word, tag in tagged_text:\n", + " ss_set = None\n", + " if 'NN' in tag and list(swn.senti_synsets(word, 'n')):\n", + " ss_set = list(swn.senti_synsets(word, 'n'))[0]\n", + " elif 'VB' in tag and list(swn.senti_synsets(word, 'v')):\n", + " ss_set = list(swn.senti_synsets(word, 'v'))[0]\n", + " elif 'JJ' in tag and list(swn.senti_synsets(word, 'a')):\n", + " ss_set = list(swn.senti_synsets(word, 'a'))[0]\n", + " elif 'RB' in tag and list(swn.senti_synsets(word, 'r')):\n", + " ss_set = list(swn.senti_synsets(word, 'r'))[0]\n", + " # if senti-synset is found \n", + " if ss_set:\n", + " # add scores for all found synsets\n", + " pos_score += ss_set.pos_score()\n", + " neg_score += ss_set.neg_score()\n", + " obj_score += ss_set.obj_score()\n", + " token_count += 1\n", + " \n", + " # aggregate final scores\n", + " final_score = pos_score - neg_score\n", + " norm_final_score = round(float(final_score) / token_count, 2)\n", + " final_sentiment = 'positive' if norm_final_score >= 0 else 'negative'\n", + " if verbose:\n", + " norm_obj_score = round(float(obj_score) / token_count, 2)\n", + " norm_pos_score = round(float(pos_score) / token_count, 2)\n", + " norm_neg_score = round(float(neg_score) / token_count, 2)\n", + " # to display results in a nice table\n", + " sentiment_frame = pd.DataFrame([[final_sentiment, norm_obj_score, norm_pos_score, \n", + " norm_neg_score, norm_final_score]],\n", + " columns=pd.MultiIndex(levels=[['SENTIMENT STATS:'], \n", + " ['Predicted Sentiment', 'Objectivity',\n", + " 'Positive', 'Negative', 'Overall']], \n", + " labels=[[0,0,0,0,0],[0,1,2,3,4]]))\n", + " print(sentiment_frame)\n", + " \n", + " return final_sentiment" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predict sentiment for sample reviews" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "REVIEW: no comment - stupid movie, acting average or worse... screenplay - no sense at all... SKIP IT!\n", + "Actual Sentiment: negative\n", + " SENTIMENT STATS: \n", + " Predicted Sentiment Objectivity Positive Negative Overall\n", + "0 negative 0.76 0.09 0.15 -0.06\n", + "------------------------------------------------------------\n", + "REVIEW: I don't care if some people voted this movie to be bad. If you want the Truth this is a Very Good Movie! It has every thing a movie should have. You really should Get this one.\n", + "Actual Sentiment: positive\n", + " SENTIMENT STATS: \n", + " Predicted Sentiment Objectivity Positive Negative Overall\n", + "0 positive 0.76 0.19 0.06 0.13\n", + "------------------------------------------------------------\n", + "REVIEW: Worst horror film ever but funniest film ever rolled in one you have got to see this film it is so cheap it is unbeliaveble but you have to see it really!!!! P.s watch the carrot\n", + "Actual Sentiment: positive\n", + " SENTIMENT STATS: \n", + " Predicted Sentiment Objectivity Positive Negative Overall\n", + "0 positive 0.8 0.12 0.07 0.05\n", + "------------------------------------------------------------\n" + ] + } + ], + "source": [ + "for review, sentiment in zip(test_reviews[sample_review_ids], test_sentiments[sample_review_ids]):\n", + " print('REVIEW:', review)\n", + " print('Actual Sentiment:', sentiment)\n", + " pred = analyze_sentiment_sentiwordnet_lexicon(review, verbose=True) \n", + " print('-'*60)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predict sentiment for test dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "norm_test_reviews = tn.normalize_corpus(test_reviews)\n", + "predicted_sentiments = [analyze_sentiment_sentiwordnet_lexicon(review, verbose=False) for review in norm_test_reviews]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Evaluate model performance" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.6295\n", + "Precision: 0.6804\n", + "Recall: 0.6295\n", + "F1 Score: 0.6011\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.58 0.90 0.71 7510\n", + " negative 0.78 0.36 0.49 7490\n", + "\n", + " micro avg 0.63 0.63 0.63 15000\n", + " macro avg 0.68 0.63 0.60 15000\n", + "weighted avg 0.68 0.63 0.60 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6727 783\n", + " negative 4775 2715\n" + ] + } + ], + "source": [ + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=predicted_sentiments, \n", + " classes=['positive', 'negative'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Sentiment Analysis with VADER" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Anaconda3\\lib\\site-packages\\nltk\\twitter\\__init__.py:20: UserWarning: The twython library has not been installed. Some functionality from the twitter package will not be available.\n", + " warnings.warn(\"The twython library has not been installed. \"\n" + ] + } + ], + "source": [ + "from nltk.sentiment.vader import SentimentIntensityAnalyzer" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Build model" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "def analyze_sentiment_vader_lexicon(review, \n", + " threshold=0.1,\n", + " verbose=False):\n", + " # pre-process text\n", + " review = tn.strip_html_tags(review)\n", + " review = tn.remove_accented_chars(review)\n", + " review = tn.expand_contractions(review)\n", + " \n", + " # analyze the sentiment for review\n", + " analyzer = SentimentIntensityAnalyzer()\n", + " scores = analyzer.polarity_scores(review)\n", + " # get aggregate scores and final sentiment\n", + " agg_score = scores['compound']\n", + " final_sentiment = 'positive' if agg_score >= threshold\\\n", + " else 'negative'\n", + " if verbose:\n", + " # display detailed sentiment statistics\n", + " positive = str(round(scores['pos'], 2)*100)+'%'\n", + " final = round(agg_score, 2)\n", + " negative = str(round(scores['neg'], 2)*100)+'%'\n", + " neutral = str(round(scores['neu'], 2)*100)+'%'\n", + " sentiment_frame = pd.DataFrame([[final_sentiment, final, positive,\n", + " negative, neutral]],\n", + " columns=pd.MultiIndex(levels=[['SENTIMENT STATS:'], \n", + " ['Predicted Sentiment', 'Polarity Score',\n", + " 'Positive', 'Negative', 'Neutral']], \n", + " labels=[[0,0,0,0,0],[0,1,2,3,4]]))\n", + " print(sentiment_frame)\n", + " \n", + " return final_sentiment" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predict sentiment for sample reviews" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "REVIEW: no comment - stupid movie, acting average or worse... screenplay - no sense at all... SKIP IT!\n", + "Actual Sentiment: negative\n", + " SENTIMENT STATS: \n", + " Predicted Sentiment Polarity Score Positive Negative Neutral\n", + "0 negative -0.8 0.0% 40.0% 60.0%\n", + "------------------------------------------------------------\n", + "REVIEW: I don't care if some people voted this movie to be bad. If you want the Truth this is a Very Good Movie! It has every thing a movie should have. You really should Get this one.\n", + "Actual Sentiment: positive\n", + " SENTIMENT STATS: \n", + " Predicted Sentiment Polarity Score Positive Negative Neutral\n", + "0 negative -0.16 16.0% 14.000000000000002% 69.0%\n", + "------------------------------------------------------------\n", + "REVIEW: Worst horror film ever but funniest film ever rolled in one you have got to see this film it is so cheap it is unbeliaveble but you have to see it really!!!! P.s watch the carrot\n", + "Actual Sentiment: positive\n", + " SENTIMENT STATS: \n", + " Predicted Sentiment Polarity Score Positive Negative Neutral\n", + "0 positive 0.49 11.0% 11.0% 77.0%\n", + "------------------------------------------------------------\n" + ] + } + ], + "source": [ + "for review, sentiment in zip(test_reviews[sample_review_ids], test_sentiments[sample_review_ids]):\n", + " print('REVIEW:', review)\n", + " print('Actual Sentiment:', sentiment)\n", + " pred = analyze_sentiment_vader_lexicon(review, threshold=0.4, verbose=True) \n", + " print('-'*60)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Predict sentiment for test dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "predicted_sentiments = [analyze_sentiment_vader_lexicon(review, threshold=0.4, verbose=False) for review in test_reviews]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Evaluate model performance" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.711\n", + "Precision: 0.7236\n", + "Recall: 0.711\n", + "F1 Score: 0.7068\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.67 0.83 0.74 7510\n", + " negative 0.78 0.59 0.67 7490\n", + "\n", + " micro avg 0.71 0.71 0.71 15000\n", + " macro avg 0.72 0.71 0.71 15000\n", + "weighted avg 0.72 0.71 0.71 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6235 1275\n", + " negative 3060 4430\n" + ] + } + ], + "source": [ + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=predicted_sentiments, \n", + " classes=['positive', 'negative'])" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09b - Sentiment Analysis - Supervised.ipynb b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09b - Sentiment Analysis - Supervised.ipynb new file mode 100644 index 0000000..417f671 --- /dev/null +++ b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09b - Sentiment Analysis - Supervised.ipynb @@ -0,0 +1,1115 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import necessary depencencies" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import text_normalizer as tn\n", + "import model_evaluation_utils as meu\n", + "import nltk\n", + "\n", + "np.set_printoptions(precision=2, linewidth=80)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load and normalize data" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " review sentiment\n", + "0 One of the other reviewers has mentioned that ... positive\n", + "1 A wonderful little production.

      The... positive\n", + "2 I thought this was a wonderful way to spend ti... positive\n", + "3 Basically there's a family where a little boy ... negative\n", + "4 Petter Mattei's \"Love in the Time of Money\" is... positive\n", + "CPU times: user 18h 8min 50s, sys: 1h 3min 52s, total: 19h 12min 43s\n", + "Wall time: 1h 12min 6s\n" + ] + } + ], + "source": [ + "%%time\n", + "dataset = pd.read_csv('movie_reviews.csv.bz2', compression='bz2')\n", + "\n", + "# take a peek at the data\n", + "print(dataset.head())\n", + "reviews = np.array(dataset['review'])\n", + "sentiments = np.array(dataset['sentiment'])\n", + " zbn\n", + "# build train and test datasets\n", + "train_reviews = reviews[:35000]\n", + "train_sentiments = sentiments[:35000]\n", + "test_reviews = reviews[35000:]\n", + "test_sentiments = sentiments[35000:]\n", + "\n", + "# normalize datasets\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "stop_words.remove('no')\n", + "stop_words.remove('but')\n", + "stop_words.remove('not')\n", + "\n", + "norm_train_reviews = tn.normalize_corpus(train_reviews, stopwords=stop_words)\n", + "norm_test_reviews = tn.normalize_corpus(test_reviews, stopwords=stop_words)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Traditional Supervised Machine Learning Models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Feature Engineering" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer\n", + "\n", + "# build BOW features on train reviews\n", + "cv = CountVectorizer(binary=False, min_df=0.0, max_df=1.0, ngram_range=(1,2))\n", + "cv_train_features = cv.fit_transform(norm_train_reviews)\n", + "# build TFIDF features on train reviews\n", + "tv = TfidfVectorizer(use_idf=True, min_df=0.0, max_df=1.0, ngram_range=(1,2),\n", + " sublinear_tf=True)\n", + "tv_train_features = tv.fit_transform(norm_train_reviews)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# transform test reviews into features\n", + "cv_test_features = cv.transform(norm_test_reviews)\n", + "tv_test_features = tv.transform(norm_test_reviews)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "BOW model:> Train features shape: (35000, 2090724) Test features shape: (15000, 2090724)\n", + "TFIDF model:> Train features shape: (35000, 2090724) Test features shape: (15000, 2090724)\n" + ] + } + ], + "source": [ + "print('BOW model:> Train features shape:', cv_train_features.shape, ' Test features shape:', cv_test_features.shape)\n", + "print('TFIDF model:> Train features shape:', tv_train_features.shape, ' Test features shape:', tv_test_features.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Model Training, Prediction and Performance Evaluation" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.linear_model import SGDClassifier, LogisticRegression\n", + "\n", + "lr = LogisticRegression(penalty='l2', max_iter=100, C=1)\n", + "svm = SGDClassifier(loss='hinge', max_iter=100)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.9049\n", + "Precision: 0.9049\n", + "Recall: 0.9049\n", + "F1 Score: 0.9049\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.90 0.91 0.91 7510\n", + " negative 0.91 0.90 0.90 7490\n", + "\n", + "avg / total 0.90 0.90 0.90 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6809 701\n", + " negative 725 6765\n" + ] + } + ], + "source": [ + "# Logistic Regression model on BOW features\n", + "lr_bow_predictions = meu.train_predict_model(classifier=lr, \n", + " train_features=cv_train_features, train_labels=train_sentiments,\n", + " test_features=cv_test_features, test_labels=test_sentiments)\n", + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=lr_bow_predictions,\n", + " classes=['positive', 'negative'])" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.8941\n", + "Precision: 0.8941\n", + "Recall: 0.8941\n", + "F1 Score: 0.8941\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.89 0.90 0.89 7510\n", + " negative 0.90 0.89 0.89 7490\n", + "\n", + "avg / total 0.89 0.89 0.89 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6767 743\n", + " negative 846 6644\n" + ] + } + ], + "source": [ + "# Logistic Regression model on TF-IDF features\n", + "lr_tfidf_predictions = meu.train_predict_model(classifier=lr, \n", + " train_features=tv_train_features, train_labels=train_sentiments,\n", + " test_features=tv_test_features, test_labels=test_sentiments)\n", + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=lr_tfidf_predictions,\n", + " classes=['positive', 'negative'])" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.9028\n", + "Precision: 0.9028\n", + "Recall: 0.9028\n", + "F1 Score: 0.9028\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.90 0.91 0.90 7510\n", + " negative 0.90 0.90 0.90 7490\n", + "\n", + "avg / total 0.90 0.90 0.90 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6802 708\n", + " negative 750 6740\n" + ] + } + ], + "source": [ + "svm_bow_predictions = meu.train_predict_model(classifier=svm, \n", + " train_features=cv_train_features, train_labels=train_sentiments,\n", + " test_features=cv_test_features, test_labels=test_sentiments)\n", + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=svm_bow_predictions,\n", + " classes=['positive', 'negative'])" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.8963\n", + "Precision: 0.8966\n", + "Recall: 0.8963\n", + "F1 Score: 0.8962\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.89 0.91 0.90 7510\n", + " negative 0.91 0.88 0.89 7490\n", + "\n", + "avg / total 0.90 0.90 0.90 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6833 677\n", + " negative 879 6611\n" + ] + } + ], + "source": [ + "svm_tfidf_predictions = meu.train_predict_model(classifier=svm, \n", + " train_features=tv_train_features, train_labels=train_sentiments,\n", + " test_features=tv_test_features, test_labels=test_sentiments)\n", + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=svm_tfidf_predictions,\n", + " classes=['positive', 'negative'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Newer Supervised Deep Learning Models" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "import gensim\n", + "import keras\n", + "from keras.models import Sequential\n", + "from keras.layers import Dropout, Activation, Dense\n", + "from sklearn.preprocessing import LabelEncoder\n", + "from keras.layers.normalization import BatchNormalization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Prediction class label encoding" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "le = LabelEncoder()\n", + "num_classes=2 \n", + "# tokenize train reviews & encode train labels\n", + "tokenized_train = [tn.tokenizer.tokenize(text)\n", + " for text in norm_train_reviews]\n", + "y_tr = le.fit_transform(train_sentiments)\n", + "y_train = keras.utils.to_categorical(y_tr, num_classes)\n", + "# tokenize test reviews & encode test labels\n", + "tokenized_test = [tn.tokenizer.tokenize(text)\n", + " for text in norm_test_reviews]\n", + "y_ts = le.fit_transform(test_sentiments)\n", + "y_test = keras.utils.to_categorical(y_ts, num_classes)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Sentiment class label map: {'negative': 0, 'positive': 1}\n", + "Sample test label transformation:\n", + "----------------------------------- \n", + "Actual Labels: ['negative' 'positive' 'negative'] \n", + "Encoded Labels: [0 1 0] \n", + "One hot encoded Labels:\n", + " [[1. 0.]\n", + " [0. 1.]\n", + " [1. 0.]]\n" + ] + } + ], + "source": [ + "# print class label encoding map and encoded labels\n", + "print('Sentiment class label map:', dict(zip(le.classes_, le.transform(le.classes_))))\n", + "print('Sample test label transformation:\\n'+'-'*35,\n", + " '\\nActual Labels:', test_sentiments[:3], '\\nEncoded Labels:', y_ts[:3], \n", + " '\\nOne hot encoded Labels:\\n', y_test[:3])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Feature Engineering with word embeddings" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CPU times: user 36min 27s, sys: 598 ms, total: 36min 27s\n", + "Wall time: 2min 19s\n" + ] + } + ], + "source": [ + "%%time\n", + "# build word2vec model\n", + "w2v_num_features = 512\n", + "w2v_model = gensim.models.Word2Vec(tokenized_train, size=w2v_num_features, window=150,\n", + " min_count=10, sample=1e-3, workers=16) " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "def averaged_word2vec_vectorizer(corpus, model, num_features):\n", + " vocabulary = set(model.wv.index2word)\n", + " \n", + " def average_word_vectors(words, model, vocabulary, num_features):\n", + " feature_vector = np.zeros((num_features,), dtype=\"float64\")\n", + " nwords = 0.\n", + " \n", + " for word in words:\n", + " if word in vocabulary: \n", + " nwords = nwords + 1.\n", + " feature_vector = np.add(feature_vector, model.wv[word])\n", + " if nwords:\n", + " feature_vector = np.divide(feature_vector, nwords)\n", + "\n", + " return feature_vector\n", + "\n", + " features = [average_word_vectors(tokenized_sentence, model, vocabulary, num_features)\n", + " for tokenized_sentence in corpus]\n", + " return np.array(features)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# generate averaged word vector features from word2vec model\n", + "avg_wv_train_features = averaged_word2vec_vectorizer(corpus=tokenized_train, model=w2v_model,\n", + " num_features=w2v_num_features)\n", + "avg_wv_test_features = averaged_word2vec_vectorizer(corpus=tokenized_test, model=w2v_model,\n", + " num_features=w2v_num_features)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# feature engineering with GloVe model\n", + "train_nlp = [tn.nlp_vec(item) for item in norm_train_reviews]\n", + "train_glove_features = np.array([item.vector for item in train_nlp])\n", + "\n", + "test_nlp = [tn.nlp_vec(item) for item in norm_test_reviews]\n", + "test_glove_features = np.array([item.vector for item in test_nlp])" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Word2Vec model:> Train features shape: (35000, 512) Test features shape: (15000, 512)\n", + "GloVe model:> Train features shape: (35000, 300) Test features shape: (15000, 300)\n" + ] + } + ], + "source": [ + "print('Word2Vec model:> Train features shape:', avg_wv_train_features.shape, ' Test features shape:', avg_wv_test_features.shape)\n", + "print('GloVe model:> Train features shape:', train_glove_features.shape, ' Test features shape:', test_glove_features.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Modeling with deep neural networks " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Building Deep neural network architecture" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def construct_deepnn_architecture(num_input_features):\n", + " dnn_model = Sequential()\n", + " dnn_model.add(Dense(512, input_shape=(num_input_features,), kernel_initializer='glorot_uniform'))\n", + " dnn_model.add(BatchNormalization())\n", + " dnn_model.add(Activation('relu'))\n", + " dnn_model.add(Dropout(0.2))\n", + " \n", + " dnn_model.add(Dense(512, kernel_initializer='glorot_uniform'))\n", + " dnn_model.add(BatchNormalization())\n", + " dnn_model.add(Activation('relu'))\n", + " dnn_model.add(Dropout(0.2))\n", + " \n", + " dnn_model.add(Dense(512, kernel_initializer='glorot_uniform'))\n", + " dnn_model.add(BatchNormalization())\n", + " dnn_model.add(Activation('relu'))\n", + " dnn_model.add(Dropout(0.2))\n", + " \n", + " dnn_model.add(Dense(2))\n", + " dnn_model.add(Activation('softmax'))\n", + "\n", + " dnn_model.compile(loss='categorical_crossentropy', optimizer='adam', \n", + " metrics=['accuracy'])\n", + " return dnn_model" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "w2v_dnn = construct_deepnn_architecture(num_input_features=w2v_num_features)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Visualize sample deep architecture" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "G\n", + "\n", + "\n", + "2962201272448\n", + "\n", + "Dense\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962195206608\n", + "\n", + "BatchNormalization\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962201272448->2962195206608\n", + "\n", + "\n", + "\n", + "\n", + "2962200116024\n", + "\n", + "Activation\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962195206608->2962200116024\n", + "\n", + "\n", + "\n", + "\n", + "2962195208848\n", + "\n", + "Dropout\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962200116024->2962195208848\n", + "\n", + "\n", + "\n", + "\n", + "2962200869464\n", + "\n", + "Dense\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962195208848->2962200869464\n", + "\n", + "\n", + "\n", + "\n", + "2962200777336\n", + "\n", + "BatchNormalization\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962200869464->2962200777336\n", + "\n", + "\n", + "\n", + "\n", + "2962200809088\n", + "\n", + "Activation\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962200777336->2962200809088\n", + "\n", + "\n", + "\n", + "\n", + "2962200720104\n", + "\n", + "Dropout\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962200809088->2962200720104\n", + "\n", + "\n", + "\n", + "\n", + "2962202748632\n", + "\n", + "Dense\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962200720104->2962202748632\n", + "\n", + "\n", + "\n", + "\n", + "2962202967120\n", + "\n", + "BatchNormalization\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962202748632->2962202967120\n", + "\n", + "\n", + "\n", + "\n", + "2962202966616\n", + "\n", + "Activation\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962202967120->2962202966616\n", + "\n", + "\n", + "\n", + "\n", + "2962204130888\n", + "\n", + "Dropout\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 512)\n", + "\n", + "\n", + "2962202966616->2962204130888\n", + "\n", + "\n", + "\n", + "\n", + "2962203941240\n", + "\n", + "Dense\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 512)\n", + "\n", + "(None, 2)\n", + "\n", + "\n", + "2962204130888->2962203941240\n", + "\n", + "\n", + "\n", + "\n", + "2962204249952\n", + "\n", + "Activation\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 2)\n", + "\n", + "(None, 2)\n", + "\n", + "\n", + "2962203941240->2962204249952\n", + "\n", + "\n", + "\n", + "\n", + "2962200945944\n", + "\n", + "2962200945944\n", + "\n", + "\n", + "2962200945944->2962201272448\n", + "\n", + "\n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from IPython.display import SVG\n", + "from keras.utils.vis_utils import model_to_dot\n", + "\n", + "SVG(model_to_dot(w2v_dnn, show_shapes=True, show_layer_names=False, \n", + " rankdir='TB').create(prog='dot', format='svg'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Model Training, Prediction and Performance Evaluation" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Train on 31500 samples, validate on 3500 samples\n", + "Epoch 1/10\n", + "31500/31500 [==============================] - 8s 250us/step - loss: 0.3378 - acc: 0.8598 - val_loss: 0.3114 - val_acc: 0.8714\n", + "Epoch 2/10\n", + "31500/31500 [==============================] - 6s 204us/step - loss: 0.2877 - acc: 0.8808 - val_loss: 0.2968 - val_acc: 0.8806\n", + "Epoch 3/10\n", + "31500/31500 [==============================] - 6s 204us/step - loss: 0.2766 - acc: 0.8854 - val_loss: 0.3043 - val_acc: 0.8726\n", + "Epoch 4/10\n", + "31500/31500 [==============================] - 6s 203us/step - loss: 0.2702 - acc: 0.8888 - val_loss: 0.2964 - val_acc: 0.8786\n", + "Epoch 5/10\n", + "31500/31500 [==============================] - 6s 204us/step - loss: 0.2656 - acc: 0.8896 - val_loss: 0.3058 - val_acc: 0.8794\n", + "Epoch 6/10\n", + "31500/31500 [==============================] - 6s 204us/step - loss: 0.2618 - acc: 0.8916 - val_loss: 0.3128 - val_acc: 0.8694\n", + "Epoch 7/10\n", + "31500/31500 [==============================] - 6s 203us/step - loss: 0.2562 - acc: 0.8924 - val_loss: 0.3009 - val_acc: 0.8746\n", + "Epoch 8/10\n", + "31500/31500 [==============================] - 6s 204us/step - loss: 0.2495 - acc: 0.8954 - val_loss: 0.3128 - val_acc: 0.8766\n", + "Epoch 9/10\n", + "31500/31500 [==============================] - 6s 203us/step - loss: 0.2456 - acc: 0.8964 - val_loss: 0.3180 - val_acc: 0.8680\n", + "Epoch 10/10\n", + "31500/31500 [==============================] - 6s 202us/step - loss: 0.2385 - acc: 0.9014 - val_loss: 0.3126 - val_acc: 0.8717\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 101, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "batch_size = 100\n", + "w2v_dnn.fit(avg_wv_train_features, y_train, epochs=10, batch_size=batch_size, \n", + " shuffle=True, validation_split=0.1, verbose=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/paperspace/anaconda3/lib/python3.6/site-packages/sklearn/preprocessing/label.py:151: DeprecationWarning: The truth value of an empty array is ambiguous. Returning False, but in future this will result in an error. Use `array.size > 0` to check that an array is not empty.\n", + " if diff:\n" + ] + } + ], + "source": [ + "y_pred = w2v_dnn.predict_classes(avg_wv_test_features)\n", + "predictions = le.inverse_transform(y_pred) " + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.8817\n", + "Precision: 0.8818\n", + "Recall: 0.8817\n", + "F1 Score: 0.8817\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.87 0.89 0.88 7510\n", + " negative 0.89 0.87 0.88 7490\n", + "\n", + "avg / total 0.88 0.88 0.88 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6704 806\n", + " negative 969 6521\n" + ] + } + ], + "source": [ + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=predictions, \n", + " classes=['positive', 'negative']) " + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [], + "source": [ + "glove_dnn = construct_deepnn_architecture(num_input_features=300)" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Train on 31500 samples, validate on 3500 samples\n", + "Epoch 1/10\n", + "31500/31500 [==============================] - 8s 246us/step - loss: 0.4116 - acc: 0.8204 - val_loss: 0.4466 - val_acc: 0.8066\n", + "Epoch 2/10\n", + "31500/31500 [==============================] - 6s 194us/step - loss: 0.3348 - acc: 0.8547 - val_loss: 0.3553 - val_acc: 0.8449\n", + "Epoch 3/10\n", + "31500/31500 [==============================] - 6s 193us/step - loss: 0.3134 - acc: 0.8643 - val_loss: 0.3433 - val_acc: 0.8489\n", + "Epoch 4/10\n", + "31500/31500 [==============================] - 6s 195us/step - loss: 0.2973 - acc: 0.8714 - val_loss: 0.3539 - val_acc: 0.8474\n", + "Epoch 5/10\n", + "31500/31500 [==============================] - 6s 195us/step - loss: 0.2863 - acc: 0.8791 - val_loss: 0.3429 - val_acc: 0.8480\n", + "Epoch 6/10\n", + "31500/31500 [==============================] - 6s 195us/step - loss: 0.2746 - acc: 0.8850 - val_loss: 0.3737 - val_acc: 0.8477\n", + "Epoch 7/10\n", + "31500/31500 [==============================] - 6s 196us/step - loss: 0.2611 - acc: 0.8889 - val_loss: 0.3854 - val_acc: 0.8329\n", + "Epoch 8/10\n", + "31500/31500 [==============================] - 6s 192us/step - loss: 0.2462 - acc: 0.8971 - val_loss: 0.3621 - val_acc: 0.8554\n", + "Epoch 9/10\n", + "31500/31500 [==============================] - 6s 195us/step - loss: 0.2338 - acc: 0.9033 - val_loss: 0.4550 - val_acc: 0.8269\n", + "Epoch 10/10\n", + "31500/31500 [==============================] - 6s 193us/step - loss: 0.2214 - acc: 0.9082 - val_loss: 0.4053 - val_acc: 0.8529\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 107, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "batch_size = 100\n", + "glove_dnn.fit(train_glove_features, y_train, epochs=10, batch_size=batch_size, \n", + " shuffle=True, validation_split=0.1, verbose=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/paperspace/anaconda3/lib/python3.6/site-packages/sklearn/preprocessing/label.py:151: DeprecationWarning: The truth value of an empty array is ambiguous. Returning False, but in future this will result in an error. Use `array.size > 0` to check that an array is not empty.\n", + " if diff:\n" + ] + } + ], + "source": [ + "y_pred = glove_dnn.predict_classes(test_glove_features)\n", + "predictions = le.inverse_transform(y_pred) " + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.8596\n", + "Precision: 0.8596\n", + "Recall: 0.8596\n", + "F1 Score: 0.8596\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.86 0.86 0.86 7510\n", + " negative 0.86 0.85 0.86 7490\n", + "\n", + "avg / total 0.86 0.86 0.86 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6496 1014\n", + " negative 1092 6398\n" + ] + } + ], + "source": [ + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=predictions, \n", + " classes=['positive', 'negative']) " + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09c - Sentiment Analysis - Advanced Deep Learning.ipynb b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09c - Sentiment Analysis - Advanced Deep Learning.ipynb new file mode 100644 index 0000000..ad19c1b --- /dev/null +++ b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09c - Sentiment Analysis - Advanced Deep Learning.ipynb @@ -0,0 +1,492 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import necessary depencencies" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import text_normalizer as tn\n", + "import model_evaluation_utils as meu\n", + "import nltk\n", + "\n", + "np.set_printoptions(precision=2, linewidth=80)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load and normalize data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " review sentiment\n", + "0 One of the other reviewers has mentioned that ... positive\n", + "1 A wonderful little production.

      The... positive\n", + "2 I thought this was a wonderful way to spend ti... positive\n", + "3 Basically there's a family where a little boy ... negative\n", + "4 Petter Mattei's \"Love in the Time of Money\" is... positive\n" + ] + } + ], + "source": [ + "dataset = pd.read_csv(r'movie_reviews.csv')\n", + "\n", + "# take a peek at the data\n", + "print(dataset.head())\n", + "reviews = np.array(dataset['review'])\n", + "sentiments = np.array(dataset['sentiment'])\n", + "\n", + "# build train and test datasets\n", + "train_reviews = reviews[:35000]\n", + "train_sentiments = sentiments[:35000]\n", + "test_reviews = reviews[35000:]\n", + "test_sentiments = sentiments[35000:]\n", + "\n", + "# normalize datasets\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "stop_words.remove('no')\n", + "stop_words.remove('but')\n", + "stop_words.remove('not')\n", + "\n", + "norm_train_reviews = tn.normalize_corpus(train_reviews, stopwords=stop_words)\n", + "norm_test_reviews = tn.normalize_corpus(test_reviews, stopwords=stop_words)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tokenize train & test datasets" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "tokenized_train = [tn.tokenizer.tokenize(text) for text in norm_train_reviews]\n", + "tokenized_test = [tn.tokenizer.tokenize(text) for text in norm_test_reviews]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build Vocabulary Mapping (word to index)" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Vocabulary Size: 82358\n", + "Sample slice of vocabulary map: {'martyrdom': 6, 'palmira': 7, 'servility': 8, 'gardening': 9, 'melodramatically': 73505, 'renfro': 41282, 'carlin': 41283, 'overtly': 41284, 'rend': 47891, 'anticlimactic': 51}\n" + ] + } + ], + "source": [ + "from collections import Counter\n", + "\n", + "# build word to index vocabulary\n", + "token_counter = Counter([token for review in tokenized_train for token in review])\n", + "vocab_map = {item[0]: index+1 for index, item in enumerate(dict(token_counter).items())}\n", + "max_index = np.max(list(vocab_map.values()))\n", + "vocab_map['PAD_INDEX'] = 0\n", + "vocab_map['NOT_FOUND_INDEX'] = max_index+1\n", + "vocab_size = len(vocab_map)\n", + "# view vocabulary size and part of the vocabulary map\n", + "print('Vocabulary Size:', vocab_size)\n", + "print('Sample slice of vocabulary map:', dict(list(vocab_map.items())[10:20]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Encode and Pad datasets & Encode prediction class labels" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Max length of train review vectors: 1442\n", + "Train review vectors shape: (35000, 1442) Test review vectors shape: (15000, 1442)\n" + ] + } + ], + "source": [ + "from keras.preprocessing import sequence\n", + "from sklearn.preprocessing import LabelEncoder\n", + "\n", + "# get max length of train corpus and initialize label encoder\n", + "le = LabelEncoder()\n", + "num_classes=2 # positive -> 1, negative -> 0\n", + "max_len = np.max([len(review) for review in tokenized_train])\n", + "\n", + "## Train reviews data corpus\n", + "# Convert tokenized text reviews to numeric vectors\n", + "train_X = [[vocab_map[token] for token in tokenized_review] for tokenized_review in tokenized_train]\n", + "train_X = sequence.pad_sequences(train_X, maxlen=max_len) # pad \n", + "## Train prediction class labels\n", + "# Convert text sentiment labels (negative\\positive) to binary encodings (0/1)\n", + "train_y = le.fit_transform(train_sentiments)\n", + "\n", + "## Test reviews data corpus\n", + "# Convert tokenized text reviews to numeric vectors\n", + "test_X = [[vocab_map[token] if vocab_map.get(token) else vocab_map['NOT_FOUND_INDEX'] \n", + " for token in tokenized_review] \n", + " for tokenized_review in tokenized_test]\n", + "test_X = sequence.pad_sequences(test_X, maxlen=max_len)\n", + "## Test prediction class labels\n", + "# Convert text sentiment labels (negative\\positive) to binary encodings (0/1)\n", + "test_y = le.transform(test_sentiments)\n", + "\n", + "# view vector shapes\n", + "print('Max length of train review vectors:', max_len)\n", + "print('Train review vectors shape:', train_X.shape, ' Test review vectors shape:', test_X.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build the LSTM Model Architecture" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "from keras.models import Sequential\n", + "from keras.layers import Dense, Embedding, Dropout, SpatialDropout1D\n", + "from keras.layers import LSTM\n", + "\n", + "EMBEDDING_DIM = 128 # dimension for dense embeddings for each token\n", + "LSTM_DIM = 64 # total LSTM units\n", + "\n", + "model = Sequential()\n", + "model.add(Embedding(input_dim=vocab_size, output_dim=EMBEDDING_DIM, input_length=max_len))\n", + "model.add(SpatialDropout1D(0.2))\n", + "model.add(LSTM(LSTM_DIM, dropout=0.2, recurrent_dropout=0.2))\n", + "model.add(Dense(1, activation=\"sigmoid\"))\n", + "\n", + "model.compile(loss=\"binary_crossentropy\", optimizer=\"adam\",\n", + " metrics=[\"accuracy\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "_________________________________________________________________\n", + "Layer (type) Output Shape Param # \n", + "=================================================================\n", + "embedding_1 (Embedding) (None, 1442, 128) 10541824 \n", + "_________________________________________________________________\n", + "spatial_dropout1d_1 (Spatial (None, 1442, 128) 0 \n", + "_________________________________________________________________\n", + "lstm_1 (LSTM) (None, 64) 49408 \n", + "_________________________________________________________________\n", + "dense_1 (Dense) (None, 1) 65 \n", + "=================================================================\n", + "Total params: 10,591,297\n", + "Trainable params: 10,591,297\n", + "Non-trainable params: 0\n", + "_________________________________________________________________\n", + "None\n" + ] + } + ], + "source": [ + "print(model.summary())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Visualize model architecture" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "\n", + "\n", + "G\n", + "\n", + "\n", + "2063407210280\n", + "\n", + "Embedding\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1442)\n", + "\n", + "(None, 1442, 128)\n", + "\n", + "\n", + "2063407170000\n", + "\n", + "SpatialDropout1D\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1442, 128)\n", + "\n", + "(None, 1442, 128)\n", + "\n", + "\n", + "2063407210280->2063407170000\n", + "\n", + "\n", + "\n", + "\n", + "2063407879168\n", + "\n", + "LSTM\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 1442, 128)\n", + "\n", + "(None, 64)\n", + "\n", + "\n", + "2063407170000->2063407879168\n", + "\n", + "\n", + "\n", + "\n", + "2063407878328\n", + "\n", + "Dense\n", + "\n", + "input:\n", + "\n", + "output:\n", + "\n", + "(None, 64)\n", + "\n", + "(None, 1)\n", + "\n", + "\n", + "2063407879168->2063407878328\n", + "\n", + "\n", + "\n", + "\n", + "2063407210448\n", + "\n", + "2063407210448\n", + "\n", + "\n", + "2063407210448->2063407210280\n", + "\n", + "\n", + "\n", + "\n", + "" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from IPython.display import SVG\n", + "from keras.utils.vis_utils import model_to_dot\n", + "\n", + "SVG(model_to_dot(model, show_shapes=True, show_layer_names=False, \n", + " rankdir='TB').create(prog='dot', format='svg'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Train the model" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Train on 31500 samples, validate on 3500 samples\n", + "Epoch 1/5\n", + "31500/31500 [==============================] - 2491s - loss: 0.4081 - acc: 0.8184 - val_loss: 0.3006 - val_acc: 0.8751\n", + "Epoch 2/5\n", + "31500/31500 [==============================] - 2489s - loss: 0.2253 - acc: 0.9158 - val_loss: 0.3209 - val_acc: 0.8780\n", + "Epoch 3/5\n", + "31500/31500 [==============================] - 2656s - loss: 0.1431 - acc: 0.9493 - val_loss: 0.3483 - val_acc: 0.8671\n", + "Epoch 4/5\n", + "31500/31500 [==============================] - 2604s - loss: 0.1023 - acc: 0.9658 - val_loss: 0.3803 - val_acc: 0.8729\n", + "Epoch 5/5\n", + "31500/31500 [==============================] - 2701s - loss: 0.0694 - acc: 0.9761 - val_loss: 0.4430 - val_acc: 0.8706\n" + ] + }, + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "batch_size = 100\n", + "model.fit(train_X, train_y, epochs=5, batch_size=batch_size, \n", + " shuffle=True, validation_split=0.1, verbose=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Predict and Evaluate Model Performance" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15000/15000 [==============================] - 352s \n" + ] + } + ], + "source": [ + "pred_test = model.predict_classes(test_X)\n", + "predictions = le.inverse_transform(pred_test.flatten())" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Model Performance metrics:\n", + "------------------------------\n", + "Accuracy: 0.88\n", + "Precision: 0.88\n", + "Recall: 0.88\n", + "F1 Score: 0.88\n", + "\n", + "Model Classification report:\n", + "------------------------------\n", + " precision recall f1-score support\n", + "\n", + " positive 0.87 0.88 0.88 7510\n", + " negative 0.88 0.87 0.88 7490\n", + "\n", + "avg / total 0.88 0.88 0.88 15000\n", + "\n", + "\n", + "Prediction Confusion Matrix:\n", + "------------------------------\n", + " Predicted: \n", + " positive negative\n", + "Actual: positive 6633 877\n", + " negative 972 6518\n" + ] + } + ], + "source": [ + "meu.display_model_performance_metrics(true_labels=test_sentiments, predicted_labels=predictions, \n", + " classes=['positive', 'negative']) " + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09d - Sentiment Causal Analysis - Model Interpretation.ipynb b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09d - Sentiment Causal Analysis - Model Interpretation.ipynb new file mode 100644 index 0000000..d341945 --- /dev/null +++ b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09d - Sentiment Causal Analysis - Model Interpretation.ipynb @@ -0,0 +1,107862 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import necessary dependencies" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import text_normalizer as tn\n", + "import nltk\n", + "\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "stop_words.remove('no')\n", + "stop_words.remove('but')\n", + "stop_words.remove('not')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load and normalize data" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " review sentiment\n", + "0 One of the other reviewers has mentioned that ... positive\n", + "1 A wonderful little production.

      The... positive\n", + "2 I thought this was a wonderful way to spend ti... positive\n", + "3 Basically there's a family where a little boy ... negative\n", + "4 Petter Mattei's \"Love in the Time of Money\" is... positive\n" + ] + } + ], + "source": [ + "dataset = pd.read_csv(r'movie_reviews.csv')\n", + "\n", + "# take a peek at the data\n", + "print(dataset.head())\n", + "reviews = np.array(dataset['review'])\n", + "sentiments = np.array(dataset['sentiment'])\n", + "\n", + "# build train and test datasets\n", + "train_reviews = reviews[:35000]\n", + "train_sentiments = sentiments[:35000]\n", + "test_reviews = reviews[35000:]\n", + "test_sentiments = sentiments[35000:]\n", + "\n", + "# normalize datasets\n", + "norm_train_reviews = tn.normalize_corpus(train_reviews, stopwords=stop_words)\n", + "norm_test_reviews = tn.normalize_corpus(test_reviews, stopwords=stop_words)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build Text Classification Pipeline with The Best Model" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "from sklearn.linear_model import LogisticRegression\n", + "from sklearn.pipeline import make_pipeline\n", + "import warnings\n", + "warnings.filterwarnings(\"ignore\")\n", + "\n", + "# build BOW features on train reviews\n", + "cv = CountVectorizer(binary=False, min_df=0.0, max_df=1.0, ngram_range=(1,2))\n", + "cv_train_features = cv.fit_transform(norm_train_reviews)\n", + "# build Logistic Regression model\n", + "lr = LogisticRegression()\n", + "lr.fit(cv_train_features, train_sentiments)\n", + "\n", + "# Build Text Classification Pipeline\n", + "lr_pipeline = make_pipeline(cv, lr)\n", + "\n", + "# save the list of prediction classes (positive, negative)\n", + "classes = list(lr_pipeline.classes_)" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "# Analyze Model Prediction Probabilities" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['lord rings excellent movie', 'not like recent movie tv not good waste time']" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_corpus = ['The Lord of the Rings is an Excellent movie!', \n", + " 'I didn\\'t like the recent movie on TV. It was NOT good and a waste of time!']\n", + "norm_new_corpus = tn.normalize_corpus(new_corpus, stopwords=stop_words)\n", + "norm_new_corpus" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['positive', 'negative'], dtype=object)" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lr_pipeline.predict(norm_new_corpus)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "

      " + ], + "text/plain": [ + " negative positive\n", + "0 0.217474 0.782526\n", + "1 0.912649 0.087351" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.DataFrame(lr_pipeline.predict_proba(norm_new_corpus), columns=classes)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Interpreting Model Decisions" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "from skater.core.local_interpretation.lime.lime_text import LimeTextExplainer\n", + "\n", + "explainer = LimeTextExplainer(class_names=classes)\n", + "def interpret_classification_model_prediction(doc_index, norm_corpus, corpus, \n", + " prediction_labels, explainer_obj):\n", + " # display model prediction and actual sentiments\n", + " print(\"Test document index: {index}\\nActual sentiment: {actual}\\nPredicted sentiment: {predicted}\"\n", + " .format(index=doc_index, actual=prediction_labels[doc_index],\n", + " predicted=lr_pipeline.predict([norm_corpus[doc_index]])))\n", + " # display actual review content\n", + " print(\"\\nReview:\", corpus[doc_index])\n", + " # display prediction probabilities\n", + " print(\"\\nModel Prediction Probabilities:\")\n", + " for probs in zip(classes, lr_pipeline.predict_proba([norm_corpus[doc_index]])[0]):\n", + " print(probs)\n", + " # display model prediction interpretation\n", + " exp = explainer.explain_instance(norm_corpus[doc_index], \n", + " lr_pipeline.predict_proba, num_features=10, \n", + " labels=[1])\n", + " exp.show_in_notebook()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test document index: 100\n", + "Actual sentiment: negative\n", + "Predicted sentiment: ['negative']\n", + "\n", + "Review: Worst movie, (with the best reviews given it) I've ever seen. Over the top dialog, acting, and direction. more slasher flick than thriller.With all the great reviews this movie got I'm appalled that it turned out so silly. shame on you martin scorsese\n", + "\n", + "Model Prediction Probabilities:\n", + "('negative', 0.827942236512913)\n", + "('positive', 0.17205776348708696)\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + "
      \n", + " \n", + " \n", + " " + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "doc_index = 100 \n", + "interpret_classification_model_prediction(doc_index=doc_index, norm_corpus=norm_test_reviews,\n", + " corpus=test_reviews, prediction_labels=test_sentiments,\n", + " explainer_obj=explainer)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test document index: 2000\n", + "Actual sentiment: positive\n", + "Predicted sentiment: ['positive']\n", + "\n", + "Review: I really liked the Movie \"JOE.\" It has really become a cult classic among certain age groups.

      The Producer of this movie is a personal friend of mine. He is my Stepsons Father-In-Law. He lives in Manhattan's West side, and has a Bungalow. in Southampton, Long Island. His son-in-law live next door to his Bungalow.

      Presently, he does not do any Producing, But dabbles in a business with HBO movies.

      As a person, Mr. Gil is a real gentleman and I wish he would have continued in the production business of move making.\n", + "\n", + "Model Prediction Probabilities:\n", + "('negative', 0.014587305153566432)\n", + "('positive', 0.9854126948464336)\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + "
      \n", + " \n", + " \n", + " " + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "doc_index = 2000\n", + "interpret_classification_model_prediction(doc_index=doc_index, norm_corpus=norm_test_reviews,\n", + " corpus=test_reviews, prediction_labels=test_sentiments,\n", + " explainer_obj=explainer)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Test document index: 347\n", + "Actual sentiment: negative\n", + "Predicted sentiment: ['positive']\n", + "\n", + "Review: When I first saw this film in cinema 11 years ago, I loved it. I still think the directing and cinematography are excellent, as is the music. But it's really the script that has over the time started to bother me more and more. I find Emma Thompson's writing self-absorbed and unfaithful to the original book; she has reduced Marianne to a side-character, a second fiddle to her much too old, much too severe Elinor - she in the movie is given many sort of 'focus moments', and often they appear to be there just to show off Thompson herself.

      I do understand her cutting off several characters from the book, but leaving out the one scene where Willoughby in the book is redeemed? For someone who red and cherished the book long before the movie, those are the things always difficult to digest.

      As for the actors, I love Kate Winslet as Marianne. She is not given the best script in the world to work with but she still pulls it up gracefully, without too much sentimentality. Alan Rickman is great, a bit old perhaps, but he plays the role beautifully. And Elizabeth Spriggs, she is absolutely fantastic as always.\n", + "\n", + "Model Prediction Probabilities:\n", + "('negative', 0.028707732768304406)\n", + "('positive', 0.9712922672316956)\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + " \n", + " \n", + "
      \n", + " \n", + " \n", + " " + ], + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "doc_index = 347 \n", + "interpret_classification_model_prediction(doc_index=doc_index, norm_corpus=norm_test_reviews,\n", + " corpus=test_reviews, prediction_labels=test_sentiments,\n", + " explainer_obj=explainer)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09e - Sentiment Causal Analysis - Topic Models.ipynb b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09e - Sentiment Causal Analysis - Topic Models.ipynb new file mode 100644 index 0000000..a1f0f65 --- /dev/null +++ b/New-Second-Edition/Ch09 - Sentiment Analysis/Ch09e - Sentiment Causal Analysis - Topic Models.ipynb @@ -0,0 +1,694 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Import necessary dependencies" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import text_normalizer as tn\n", + "import warnings\n", + "import nltk\n", + "\n", + "warnings.filterwarnings(\"ignore\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load and normalize data" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " review sentiment\n", + "0 One of the other reviewers has mentioned that ... positive\n", + "1 A wonderful little production.

      The... positive\n", + "2 I thought this was a wonderful way to spend ti... positive\n", + "3 Basically there's a family where a little boy ... negative\n", + "4 Petter Mattei's \"Love in the Time of Money\" is... positive\n" + ] + } + ], + "source": [ + "dataset = pd.read_csv(r'movie_reviews.csv')\n", + "\n", + "# take a peek at the data\n", + "print(dataset.head())\n", + "reviews = np.array(dataset['review'])\n", + "sentiments = np.array(dataset['sentiment'])\n", + "\n", + "# build train and test datasets\n", + "train_reviews = reviews[:35000]\n", + "train_sentiments = sentiments[:35000]\n", + "test_reviews = reviews[35000:]\n", + "test_sentiments = sentiments[35000:]\n", + "\n", + "# normalize datasets\n", + "stop_words = nltk.corpus.stopwords.words('english')\n", + "stop_words.remove('no')\n", + "stop_words.remove('but')\n", + "stop_words.remove('not')\n", + "\n", + "norm_train_reviews = tn.normalize_corpus(train_reviews, stopwords=stop_words)\n", + "norm_test_reviews = tn.normalize_corpus(test_reviews, stopwords=stop_words)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Extract features from positive and negative reviews" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(25000, 933) (25000, 925)\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "# consolidate all normalized reviews\n", + "norm_reviews = norm_train_reviews+norm_test_reviews\n", + "# get tf-idf features for only positive reviews\n", + "positive_reviews = [review for review, sentiment in zip(norm_reviews, sentiments) if sentiment == 'positive']\n", + "ptvf = TfidfVectorizer(use_idf=True, min_df=0.02, max_df=0.75, ngram_range=(1, 2), sublinear_tf=True)\n", + "ptvf_features = ptvf.fit_transform(positive_reviews)\n", + "# get tf-idf features for only negative reviews\n", + "negative_reviews = [review for review, sentiment in zip(norm_reviews, sentiments) if sentiment == 'negative']\n", + "ntvf = TfidfVectorizer(use_idf=True, min_df=0.02, max_df=0.75, ngram_range=(1, 2), sublinear_tf=True)\n", + "ntvf_features = ntvf.fit_transform(negative_reviews)\n", + "# view feature set dimensions\n", + "print(ptvf_features.shape, ntvf_features.shape)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Topic Modeling on Reviews" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import pyLDAvis\n", + "import pyLDAvis.sklearn\n", + "from sklearn.decomposition import NMF\n", + "import topic_model_utils as tmu\n", + "\n", + "pyLDAvis.enable_notebook()\n", + "total_topics = 10" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Display and visualize topics for positive reviews" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "but, one, make, no, take, way, even, get, seem, like, much, scene, may, character, go\n", + "\n", + "Topic #2:\n", + "movie, watch, see, like, think, really, good, but, see movie, great, movie not, would, get, enjoy, say\n", + "\n", + "Topic #3:\n", + "show, episode, series, tv, season, watch, dvd, television, first, good, see, would, air, great, remember\n", + "\n", + "Topic #4:\n", + "family, old, young, year, life, child, father, mother, son, year old, man, friend, kid, boy, girl\n", + "\n", + "Topic #5:\n", + "performance, role, actor, play, great, cast, good, well, excellent, character, story, star, also, give, acting\n", + "\n", + "Topic #6:\n", + "film, see, see film, film not, watch, good film, watch film, dvd, great film, film but, film see, release, year, film make, great\n", + "\n", + "Topic #7:\n", + "love, love movie, story, love story, fall love, fall, beautiful, song, wonderful, music, heart, romantic, romance, favorite, character\n", + "\n", + "Topic #8:\n", + "funny, laugh, hilarious, joke, humor, moment, fun, guy, get, but, line, show, lot, time, scene\n", + "\n", + "Topic #9:\n", + "ever, ever see, movie ever, one good, one, see, good, ever make, good movie, movie, make, amazing, never, every, movie one\n", + "\n", + "Topic #10:\n", + "comedy, romantic, laugh, hilarious, fun, humor, comic, joke, drama, light, romance, star, british, classic, one\n", + "\n" + ] + } + ], + "source": [ + "# build topic model on positive sentiment review features\n", + "pos_nmf = NMF(n_components=total_topics, solver='cd', max_iter=500,\n", + " random_state=42, alpha=.1, l1_ratio=.85)\n", + "pos_nmf.fit(ptvf_features) \n", + "# extract features and component weights\n", + "pos_feature_names = np.array(ptvf.get_feature_names())\n", + "pos_weights = pos_nmf.components_\n", + "# extract and display topics and their components\n", + "pos_feature_names = np.array(ptvf.get_feature_names())\n", + "feature_idxs = np.argsort(-pos_weights)[:, :15]\n", + "topics = [pos_feature_names[idx] for idx in feature_idxs]\n", + "for idx, topic in enumerate(topics):\n", + " print('Topic #'+str(idx+1)+':')\n", + " print(', '.join(topic))\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + "
      \n", + "" + ], + "text/plain": [ + "PreparedData(topic_coordinates= x y topics cluster Freq\n", + "topic \n", + "0 -0.146073 0.111110 1 1 31.829570\n", + "1 0.001605 0.058167 2 1 14.885487\n", + "4 -0.211286 0.289776 3 1 12.508661\n", + "3 0.139620 -0.143214 4 1 10.200667\n", + "5 0.388178 -0.010067 5 1 9.089744\n", + "2 0.212107 0.143506 6 1 6.375484\n", + "6 0.144678 0.440802 7 1 5.237892\n", + "8 0.180189 -0.430785 8 1 3.912696\n", + "7 -0.418456 -0.102275 9 1 3.359701\n", + "9 -0.290561 -0.357022 10 1 2.600098, topic_info= Category Freq Term Total loglift logprob\n", + "term \n", + "144 Default 2165.000000 comedy 2165.000000 30.0000 30.0000\n", + "464 Default 2209.000000 love 2209.000000 29.0000 29.0000\n", + "334 Default 1760.000000 funny 1760.000000 28.0000 28.0000\n", + "299 Default 2521.000000 film 2521.000000 27.0000 27.0000\n", + "254 Default 1556.000000 ever 1556.000000 26.0000 26.0000\n", + "436 Default 1107.000000 laugh 1107.000000 25.0000 25.0000\n", + "256 Default 848.000000 ever see 848.000000 24.0000 24.0000\n", + "705 Default 1819.000000 see 1819.000000 23.0000 23.0000\n", + "730 Default 1188.000000 show 1188.000000 22.0000 22.0000\n", + "245 Default 817.000000 episode 817.000000 21.0000 21.0000\n", + "512 Default 1669.000000 movie 1669.000000 20.0000 20.0000\n", + "514 Default 636.000000 movie ever 636.000000 19.0000 19.0000\n", + "716 Default 738.000000 series 738.000000 18.0000 18.0000\n", + "573 Default 1379.000000 one 1379.000000 17.0000 17.0000\n", + "574 Default 662.000000 one good 662.000000 16.0000 16.0000\n", + "350 Default 1540.000000 good 1540.000000 15.0000 15.0000\n", + "380 Default 606.000000 hilarious 606.000000 14.0000 14.0000\n", + "688 Default 499.000000 romantic 499.000000 13.0000 13.0000\n", + "780 Default 990.000000 story 990.000000 12.0000 12.0000\n", + "465 Default 456.000000 love movie 456.000000 11.0000 11.0000\n", + "706 Default 506.000000 see film 506.000000 10.0000 10.0000\n", + "889 Default 1147.000000 watch 1147.000000 9.0000 9.0000\n", + "280 Default 551.000000 family 551.000000 8.0000 8.0000\n", + "598 Default 610.000000 performance 610.000000 7.0000 7.0000\n", + "857 Default 532.000000 tv 532.000000 6.0000 6.0000\n", + "466 Default 373.000000 love story 373.000000 5.0000 5.0000\n", + "277 Default 431.000000 fall 431.000000 4.0000 4.0000\n", + "333 Default 515.000000 fun 515.000000 3.0000 3.0000\n", + "278 Default 353.000000 fall love 353.000000 2.0000 2.0000\n", + "686 Default 549.000000 role 549.000000 1.0000 1.0000\n", + "... ... ... ... ... ... ...\n", + "95 Topic10 53.543593 british 143.573914 2.6633 -4.4368\n", + "339 Topic10 41.020628 genius 118.507537 2.5887 -4.7032\n", + "333 Topic10 146.161057 fun 515.044723 2.3901 -3.4325\n", + "380 Topic10 169.809320 hilarious 606.099575 2.3773 -3.2826\n", + "395 Topic10 104.944827 humor 388.224116 2.3415 -3.7638\n", + "340 Topic10 40.690285 genre 157.233005 2.2979 -4.7113\n", + "732 Topic10 30.218190 silly 124.038411 2.2375 -5.0088\n", + "723 Topic10 32.818701 sex 135.318019 2.2330 -4.9263\n", + "813 Topic10 27.448512 team 118.212398 2.1895 -5.1049\n", + "214 Topic10 63.697005 drama 278.189615 2.1755 -4.2631\n", + "687 Topic10 56.534516 romance 262.765213 2.1132 -4.3824\n", + "124 Topic10 26.469988 charming 131.194532 2.0490 -5.1412\n", + "84 Topic10 30.011825 black 150.400192 2.0379 -5.0157\n", + "717 Topic10 26.369110 serious 137.002304 2.0018 -5.1451\n", + "241 Topic10 16.522450 entertain 89.280053 1.9626 -5.6125\n", + "566 Topic10 11.322227 odd 61.602962 1.9557 -5.9905\n", + "419 Topic10 66.463283 joke 364.403896 1.9480 -4.2206\n", + "179 Topic10 20.202685 date 111.556814 1.9409 -5.4114\n", + "741 Topic10 24.726975 situation 139.767893 1.9175 -5.2094\n", + "54 Topic10 36.898816 audience 214.623710 1.8889 -4.8091\n", + "135 Topic10 52.101049 classic 324.496314 1.8205 -4.4641\n", + "436 Topic10 176.314773 laugh 1107.975071 1.8116 -3.2450\n", + "127 Topic10 16.172513 chemistry 119.938884 1.6460 -5.6339\n", + "806 Topic10 24.095072 sweet 181.846023 1.6285 -5.2352\n", + "771 Topic10 56.472301 star 445.936381 1.5832 -4.3835\n", + "114 Topic10 31.996089 cast 536.535437 0.8301 -4.9516\n", + "573 Topic10 47.807852 one 1379.950689 0.2870 -4.5501\n", + "859 Topic10 23.158124 two 422.365854 0.7461 -5.2749\n", + "350 Topic10 28.886773 good 1540.468060 -0.3268 -5.0539\n", + "238 Topic10 23.558278 enjoy 566.925409 0.4689 -5.2578\n", + "\n", + "[517 rows x 6 columns], token_table= Topic Freq Term\n", + "term \n", + "2 1 0.059288 absolutely\n", + "2 2 0.108113 absolutely\n", + "2 3 0.094163 absolutely\n", + "2 5 0.101138 absolutely\n", + "2 6 0.069751 absolutely\n", + "2 7 0.387116 absolutely\n", + "2 8 0.139501 absolutely\n", + "2 9 0.034875 absolutely\n", + "5 1 0.273640 act\n", + "5 2 0.185935 act\n", + "5 3 0.540263 act\n", + "5 4 0.003508 act\n", + "6 2 0.302533 acting\n", + "6 3 0.474777 acting\n", + "6 5 0.225243 acting\n", + "8 2 0.119307 actor\n", + "8 3 0.844823 actor\n", + "8 6 0.033857 actor\n", + "9 2 0.073379 actress\n", + "9 3 0.768320 actress\n", + "9 4 0.159707 actress\n", + "14 1 0.047053 adult\n", + "14 2 0.168047 adult\n", + "14 4 0.672189 adult\n", + "14 5 0.026888 adult\n", + "14 6 0.080663 adult\n", + "14 9 0.006722 adult\n", + "16 1 0.091127 age\n", + "16 2 0.074558 age\n", + "16 3 0.008284 age\n", + "... ... ... ...\n", + "918 6 0.195238 would\n", + "918 7 0.024575 would\n", + "919 1 0.138243 would like\n", + "919 2 0.592472 would like\n", + "919 6 0.276487 would like\n", + "923 1 0.131357 writing\n", + "923 2 0.035028 writing\n", + "923 3 0.446613 writing\n", + "923 6 0.350285 writing\n", + "923 10 0.043786 writing\n", + "925 1 0.028214 year\n", + "925 2 0.067469 year\n", + "925 4 0.515219 year\n", + "925 5 0.268650 year\n", + "925 6 0.120218 year\n", + "926 2 0.119908 year ago\n", + "926 4 0.359725 year ago\n", + "926 5 0.446932 year ago\n", + "926 6 0.076305 year ago\n", + "927 1 0.223698 year later\n", + "927 4 0.753509 year later\n", + "927 6 0.023547 year later\n", + "928 4 0.999491 year old\n", + "930 1 0.729961 yet\n", + "930 3 0.210878 yet\n", + "930 5 0.048664 yet\n", + "930 7 0.010814 yet\n", + "932 1 0.037641 young\n", + "932 3 0.159528 young\n", + "932 4 0.803017 young\n", + "\n", + "[1396 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[1, 2, 5, 4, 6, 3, 7, 9, 8, 10])" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pyLDAvis.sklearn.prepare(pos_nmf, ptvf_features, ptvf, mds='mmds')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Display and visualize topics for negative reviews" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Topic #1:\n", + "but, one, character, get, go, like, no, scene, seem, take, show, much, time, would, play\n", + "\n", + "Topic #2:\n", + "movie, watch, good, bad, think, like, but, see, would, make, even, movie not, could, really, watch movie\n", + "\n", + "Topic #3:\n", + "film, film not, good, bad, make, bad film, acting, film but, but, actor, watch film, see film, script, watch, see\n", + "\n", + "Topic #4:\n", + "horror, budget, low, low budget, horror movie, horror film, gore, flick, zombie, blood, scary, killer, monster, kill, genre\n", + "\n", + "Topic #5:\n", + "effect, special, special effect, fi, sci, sci fi, acting, bad, look, look like, cheesy, terrible, cheap, creature, space\n", + "\n", + "Topic #6:\n", + "funny, comedy, joke, laugh, not funny, show, humor, stupid, try, hilarious, but, fun, suppose, episode, moment\n", + "\n", + "Topic #7:\n", + "ever, ever see, bad, bad movie, movie ever, see, one bad, ever make, one, movie, film ever, bad film, make, horrible, movie bad\n", + "\n", + "Topic #8:\n", + "waste, waste time, time, not waste, money, complete, hour, spend, life, talent, please, crap, total, plot, minute\n", + "\n", + "Topic #9:\n", + "book, read, novel, story, version, base, character, change, write, love, movie, comic, completely, miss, many\n", + "\n", + "Topic #10:\n", + "year, old, year old, kid, child, year ago, ago, young, age, adult, boy, girl, see, parent, school\n", + "\n" + ] + } + ], + "source": [ + "# build topic model on negative sentiment review features\n", + "neg_nmf = NMF(n_components=total_topics, solver='cd', max_iter=500,\n", + " random_state=42, alpha=.1, l1_ratio=.85)\n", + "neg_nmf.fit(ntvf_features) \n", + "# extract features and component weights\n", + "neg_feature_names = ntvf.get_feature_names()\n", + "neg_weights = neg_nmf.components_\n", + "# extract and display topics and their components\n", + "neg_feature_names = np.array(ntvf.get_feature_names())\n", + "feature_idxs = np.argsort(-neg_weights)[:, :15]\n", + "topics = [neg_feature_names[idx] for idx in feature_idxs]\n", + "for idx, topic in enumerate(topics):\n", + " print('Topic #'+str(idx+1)+':')\n", + " print(', '.join(topic))\n", + " print()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + "
      \n", + "" + ], + "text/plain": [ + "PreparedData(topic_coordinates= x y topics cluster Freq\n", + "topic \n", + "0 0.075880 0.012111 1 1 40.232987\n", + "1 -0.015644 -0.107888 2 1 17.717063\n", + "2 -0.190566 -0.059404 3 1 11.110715\n", + "6 -0.244029 0.294654 4 1 5.358274\n", + "3 0.198677 -0.396170 5 1 5.129150\n", + "5 0.436847 -0.099918 6 1 4.872058\n", + "9 0.079129 0.485707 7 1 4.674379\n", + "7 -0.246012 -0.423321 8 1 4.109051\n", + "4 -0.458788 0.039139 9 1 3.503540\n", + "8 0.364508 0.255091 10 1 3.292783, topic_info= Category Freq Term Total loglift logprob\n", + "term \n", + "877 Default 1763.000000 waste 1763.000000 30.0000 30.0000\n", + "84 Default 1635.000000 book 1635.000000 29.0000 29.0000\n", + "330 Default 1739.000000 funny 1739.000000 28.0000 28.0000\n", + "918 Default 1653.000000 year 1653.000000 27.0000 27.0000\n", + "580 Default 1608.000000 old 1608.000000 26.0000 26.0000\n", + "298 Default 2285.000000 film 2285.000000 25.0000 25.0000\n", + "878 Default 1351.000000 waste time 1351.000000 24.0000 24.0000\n", + "233 Default 1214.000000 effect 1214.000000 23.0000 23.0000\n", + "827 Default 1398.000000 time 1398.000000 22.0000 22.0000\n", + "765 Default 1092.000000 special 1092.000000 21.0000 21.0000\n", + "257 Default 1267.000000 ever 1267.000000 20.0000 20.0000\n", + "920 Default 1169.000000 year old 1169.000000 19.0000 19.0000\n", + "766 Default 1025.000000 special effect 1025.000000 18.0000 18.0000\n", + "387 Default 1143.000000 horror 1143.000000 17.0000 17.0000\n", + "144 Default 1136.000000 comedy 1136.000000 16.0000 16.0000\n", + "660 Default 987.000000 read 987.000000 15.0000 15.0000\n", + "54 Default 1869.000000 bad 1869.000000 14.0000 14.0000\n", + "259 Default 895.000000 ever see 895.000000 13.0000 13.0000\n", + "58 Default 935.000000 bad movie 935.000000 12.0000 12.0000\n", + "561 Default 797.000000 not waste 797.000000 11.0000 11.0000\n", + "418 Default 825.000000 joke 825.000000 10.0000 10.0000\n", + "507 Default 827.000000 movie ever 827.000000 9.0000 9.0000\n", + "434 Default 938.000000 laugh 938.000000 8.0000 8.0000\n", + "97 Default 827.000000 budget 827.000000 7.0000 7.0000\n", + "543 Default 713.000000 not funny 713.000000 6.0000 6.0000\n", + "461 Default 769.000000 low 769.000000 5.0000 5.0000\n", + "503 Default 1759.000000 movie 1759.000000 4.0000 4.0000\n", + "498 Default 689.000000 money 689.000000 3.0000 3.0000\n", + "462 Default 639.000000 low budget 639.000000 2.0000 2.0000\n", + "710 Default 1416.000000 see 1416.000000 1.0000 1.0000\n", + "... ... ... ... ... ... ...\n", + "627 Topic10 45.969686 portray 114.952814 2.4969 -4.8468\n", + "288 Topic10 29.474462 favorite 81.144326 2.4007 -5.2912\n", + "194 Topic10 22.623377 detail 67.627426 2.3184 -5.5558\n", + "145 Topic10 53.819388 comic 163.316595 2.3034 -4.6891\n", + "780 Topic10 248.125720 story 781.126245 2.2666 -3.1608\n", + "494 Topic10 53.280903 miss 169.842372 2.2541 -4.6992\n", + "841 Topic10 46.408148 true 149.084162 2.2464 -4.8373\n", + "368 Topic10 26.679472 heart 86.187017 2.2408 -5.3908\n", + "515 Topic10 39.543039 mr 128.006842 2.2387 -4.9974\n", + "200 Topic10 46.051941 different 154.003706 2.2062 -4.8450\n", + "706 Topic10 25.751229 screenplay 86.608445 2.2005 -5.4263\n", + "205 Topic10 41.577245 disappointed 140.087827 2.1987 -4.9472\n", + "240 Topic10 28.911070 english 101.650840 2.1561 -5.3105\n", + "913 Topic10 118.730762 write 467.746820 2.0424 -3.8979\n", + "460 Topic10 100.871606 love 413.067896 2.0037 -4.0609\n", + "914 Topic10 46.545188 writer 191.669298 1.9981 -4.8343\n", + "149 Topic10 53.292617 completely 228.311620 1.9585 -4.6989\n", + "207 Topic10 22.114932 disappointment 94.840236 1.9575 -5.5785\n", + "125 Topic10 13.090604 character not 57.698295 1.9301 -6.1028\n", + "124 Topic10 146.140810 character 646.950070 1.9257 -3.6902\n", + "851 Topic10 43.181161 understand 208.638776 1.8382 -4.9093\n", + "720 Topic10 45.909122 series 236.930865 1.7723 -4.8481\n", + "439 Topic10 48.010531 leave 269.571211 1.6880 -4.8033\n", + "590 Topic10 48.461310 original 289.170548 1.6272 -4.7940\n", + "522 Topic10 41.810618 name 240.119420 1.6655 -4.9416\n", + "476 Topic10 53.072277 many 400.055805 1.3935 -4.7031\n", + "833 Topic10 35.075766 totally 191.939815 1.7138 -5.1172\n", + "503 Topic10 72.640721 movie 1759.182683 0.2264 -4.3892\n", + "350 Topic10 46.319534 great 455.828066 1.1269 -4.8392\n", + "597 Topic10 38.077164 part 333.132178 1.2445 -5.0351\n", + "\n", + "[490 rows x 6 columns], token_table= Topic Freq Term\n", + "term \n", + "1 1 0.205050 absolutely\n", + "1 2 0.305482 absolutely\n", + "1 3 0.125541 absolutely\n", + "1 4 0.225973 absolutely\n", + "1 8 0.138095 absolutely\n", + "4 1 0.252547 act\n", + "4 2 0.322056 act\n", + "4 3 0.310471 act\n", + "4 4 0.050973 act\n", + "4 9 0.064874 act\n", + "5 2 0.312846 acting\n", + "5 3 0.383413 acting\n", + "5 4 0.051749 acting\n", + "5 5 0.072919 acting\n", + "5 8 0.010585 acting\n", + "5 9 0.169360 acting\n", + "7 1 0.197486 actor\n", + "7 2 0.324207 actor\n", + "7 3 0.445990 actor\n", + "7 4 0.014811 actor\n", + "7 8 0.008229 actor\n", + "7 9 0.011520 actor\n", + "10 1 0.380782 actually\n", + "10 2 0.359917 actually\n", + "10 3 0.078243 actually\n", + "10 4 0.039121 actually\n", + "10 5 0.028689 actually\n", + "10 6 0.112148 actually\n", + "13 1 0.199763 adult\n", + "13 7 0.799052 adult\n", + "... ... ... ...\n", + "910 1 0.355920 would\n", + "910 2 0.433895 would\n", + "910 3 0.128282 would\n", + "910 7 0.041503 would\n", + "910 10 0.040245 would\n", + "913 1 0.220205 write\n", + "913 2 0.175309 write\n", + "913 3 0.130412 write\n", + "913 6 0.040620 write\n", + "913 7 0.074827 write\n", + "913 8 0.104758 write\n", + "913 10 0.254411 write\n", + "914 1 0.584340 writer\n", + "914 2 0.041739 writer\n", + "914 6 0.130433 writer\n", + "914 10 0.245214 writer\n", + "918 1 0.026003 year\n", + "918 3 0.010280 year\n", + "918 7 0.963311 year\n", + "919 1 0.016869 year ago\n", + "919 7 0.985127 year ago\n", + "920 7 0.999829 year old\n", + "922 1 1.000793 yet\n", + "923 1 0.368300 young\n", + "923 5 0.005187 young\n", + "923 7 0.627667 young\n", + "924 1 0.100291 zombie\n", + "924 2 0.015429 zombie\n", + "924 4 0.030859 zombie\n", + "924 5 0.856334 zombie\n", + "\n", + "[1200 rows x 3 columns], R=30, lambda_step=0.01, plot_opts={'xlab': 'PC1', 'ylab': 'PC2'}, topic_order=[1, 2, 3, 7, 4, 6, 10, 8, 5, 9])" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pyLDAvis.sklearn.prepare(neg_nmf, ntvf_features, ntvf, mds='mmds')" + ] + } + ], + "metadata": { + "anaconda-cloud": {}, + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 1 +} diff --git a/New-Second-Edition/Ch09 - Sentiment Analysis/contractions.py b/New-Second-Edition/Ch09 - Sentiment Analysis/contractions.py new file mode 100644 index 0000000..9018a85 --- /dev/null +++ b/New-Second-Edition/Ch09 - Sentiment Analysis/contractions.py @@ -0,0 +1,132 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Aug 01 01:11:02 2016 + +@author: DIP +""" + +CONTRACTION_MAP = { +"ain't": "is not", +"aren't": "are not", +"can't": "cannot", +"can't've": "cannot have", +"'cause": "because", +"could've": "could have", +"couldn't": "could not", +"couldn't've": "could not have", +"didn't": "did not", +"doesn't": "does not", +"don't": "do not", +"hadn't": "had not", +"hadn't've": "had not have", +"hasn't": "has not", +"haven't": "have not", +"he'd": "he would", +"he'd've": "he would have", +"he'll": "he will", +"he'll've": "he he will have", +"he's": "he is", +"how'd": "how did", +"how'd'y": "how do you", +"how'll": "how will", +"how's": "how is", +"I'd": "I would", +"I'd've": "I would have", +"I'll": "I will", +"I'll've": "I will have", +"I'm": "I am", +"I've": "I have", +"i'd": "i would", +"i'd've": "i would have", +"i'll": "i will", +"i'll've": "i will have", +"i'm": "i am", +"i've": "i have", +"isn't": "is not", +"it'd": "it would", +"it'd've": "it would have", +"it'll": "it will", +"it'll've": "it will have", +"it's": "it is", +"let's": "let us", +"ma'am": "madam", +"mayn't": "may not", +"might've": "might have", +"mightn't": "might not", +"mightn't've": "might not have", +"must've": "must have", +"mustn't": "must not", +"mustn't've": "must not have", +"needn't": "need not", +"needn't've": "need not have", +"o'clock": "of the clock", +"oughtn't": "ought not", +"oughtn't've": "ought not have", +"shan't": "shall not", +"sha'n't": "shall not", +"shan't've": "shall not have", +"she'd": "she would", +"she'd've": "she would have", +"she'll": "she will", +"she'll've": "she will have", +"she's": "she is", +"should've": "should have", +"shouldn't": "should not", +"shouldn't've": "should not have", +"so've": "so have", +"so's": "so as", +"that'd": "that would", +"that'd've": "that would have", +"that's": "that is", +"there'd": "there would", +"there'd've": "there would have", +"there's": "there is", +"they'd": "they would", +"they'd've": "they would have", +"they'll": "they will", +"they'll've": "they will have", +"they're": "they are", +"they've": "they have", +"to've": "to have", +"wasn't": "was not", +"we'd": "we would", +"we'd've": "we would have", +"we'll": "we will", +"we'll've": "we will have", +"we're": "we are", +"we've": "we have", +"weren't": "were not", +"what'll": "what will", +"what'll've": "what will have", +"what're": "what are", +"what's": "what is", +"what've": "what have", +"when's": "when is", +"when've": "when have", +"where'd": "where did", +"where's": "where is", +"where've": "where have", +"who'll": "who will", +"who'll've": "who will have", +"who's": "who is", +"who've": "who have", +"why's": "why is", +"why've": "why have", +"will've": "will have", +"won't": "will not", +"won't've": "will not have", +"would've": "would have", +"wouldn't": "would not", +"wouldn't've": "would not have", +"y'all": "you all", +"y'all'd": "you all would", +"y'all'd've": "you all would have", +"y'all're": "you all are", +"y'all've": "you all have", +"you'd": "you would", +"you'd've": "you would have", +"you'll": "you will", +"you'll've": "you will have", +"you're": "you are", +"you've": "you have" +} \ No newline at end of file diff --git a/New-Second-Edition/Ch09 - Sentiment Analysis/model_evaluation_utils.py b/New-Second-Edition/Ch09 - Sentiment Analysis/model_evaluation_utils.py new file mode 100644 index 0000000..88708c7 --- /dev/null +++ b/New-Second-Edition/Ch09 - Sentiment Analysis/model_evaluation_utils.py @@ -0,0 +1,229 @@ +# -*- coding: utf-8 -*- +""" +Created on Mon Jul 31 20:05:23 2017 + +@author: DIP +@Copyright: Dipanjan Sarkar +""" + +from sklearn import metrics +import numpy as np +import pandas as pd +import matplotlib.pyplot as plt +from sklearn.preprocessing import LabelEncoder +from sklearn.base import clone +from sklearn.preprocessing import label_binarize +from scipy import interp +from sklearn.metrics import roc_curve, auc + + +def get_metrics(true_labels, predicted_labels): + + print('Accuracy:', np.round( + metrics.accuracy_score(true_labels, + predicted_labels), + 4)) + print('Precision:', np.round( + metrics.precision_score(true_labels, + predicted_labels, + average='weighted'), + 4)) + print('Recall:', np.round( + metrics.recall_score(true_labels, + predicted_labels, + average='weighted'), + 4)) + print('F1 Score:', np.round( + metrics.f1_score(true_labels, + predicted_labels, + average='weighted'), + 4)) + + +def train_predict_model(classifier, + train_features, train_labels, + test_features, test_labels): + # build model + classifier.fit(train_features, train_labels) + # predict using model + predictions = classifier.predict(test_features) + return predictions + + +def display_confusion_matrix(true_labels, predicted_labels, classes=[1,0]): + + total_classes = len(classes) + level_labels = [total_classes*[0], list(range(total_classes))] + + cm = metrics.confusion_matrix(y_true=true_labels, y_pred=predicted_labels, + labels=classes) + cm_frame = pd.DataFrame(data=cm, + columns=pd.MultiIndex(levels=[['Predicted:'], classes], + labels=level_labels), + index=pd.MultiIndex(levels=[['Actual:'], classes], + labels=level_labels)) + print(cm_frame) + + +def display_confusion_matrix_pretty(true_labels, predicted_labels, classes=[1,0]): + + total_classes = len(classes) + level_labels = [total_classes*[0], list(range(total_classes))] + + cm = metrics.confusion_matrix(y_true=true_labels, y_pred=predicted_labels, + labels=classes) + cm_frame = pd.DataFrame(data=cm, + columns=pd.MultiIndex(levels=[['Predicted:'], classes], + labels=level_labels), + index=pd.MultiIndex(levels=[['Actual:'], classes], + labels=level_labels)) + return cm_frame + +def display_classification_report(true_labels, predicted_labels, classes=[1,0]): + + report = metrics.classification_report(y_true=true_labels, + y_pred=predicted_labels, + labels=classes) + print(report) + + + +def display_model_performance_metrics(true_labels, predicted_labels, classes=[1,0]): + print('Model Performance metrics:') + print('-'*30) + get_metrics(true_labels=true_labels, predicted_labels=predicted_labels) + print('\nModel Classification report:') + print('-'*30) + display_classification_report(true_labels=true_labels, predicted_labels=predicted_labels, + classes=classes) + print('\nPrediction Confusion Matrix:') + print('-'*30) + display_confusion_matrix(true_labels=true_labels, predicted_labels=predicted_labels, + classes=classes) + + +def plot_model_decision_surface(clf, train_features, train_labels, + plot_step=0.02, cmap=plt.cm.RdYlBu, + markers=None, alphas=None, colors=None): + + if train_features.shape[1] != 2: + raise ValueError("X_train should have exactly 2 columnns!") + + x_min, x_max = train_features[:, 0].min() - plot_step, train_features[:, 0].max() + plot_step + y_min, y_max = train_features[:, 1].min() - plot_step, train_features[:, 1].max() + plot_step + xx, yy = np.meshgrid(np.arange(x_min, x_max, plot_step), + np.arange(y_min, y_max, plot_step)) + + clf_est = clone(clf) + clf_est.fit(train_features,train_labels) + if hasattr(clf_est, 'predict_proba'): + Z = clf_est.predict_proba(np.c_[xx.ravel(), yy.ravel()])[:,1] + else: + Z = clf_est.predict(np.c_[xx.ravel(), yy.ravel()]) + Z = Z.reshape(xx.shape) + cs = plt.contourf(xx, yy, Z, cmap=cmap) + + le = LabelEncoder() + y_enc = le.fit_transform(train_labels) + n_classes = len(le.classes_) + plot_colors = ''.join(colors) if colors else [None] * n_classes + label_names = le.classes_ + markers = markers if markers else [None] * n_classes + alphas = alphas if alphas else [None] * n_classes + for i, color in zip(range(n_classes), plot_colors): + idx = np.where(y_enc == i) + plt.scatter(train_features[idx, 0], train_features[idx, 1], c=color, + label=label_names[i], cmap=cmap, edgecolors='black', + marker=markers[i], alpha=alphas[i]) + plt.legend() + plt.show() + + +def plot_model_roc_curve(clf, features, true_labels, label_encoder=None, class_names=None): + + ## Compute ROC curve and ROC area for each class + fpr = dict() + tpr = dict() + roc_auc = dict() + if hasattr(clf, 'classes_'): + class_labels = clf.classes_ + elif label_encoder: + class_labels = label_encoder.classes_ + elif class_names: + class_labels = class_names + else: + raise ValueError('Unable to derive prediction classes, please specify class_names!') + n_classes = len(class_labels) + y_test = label_binarize(true_labels, classes=class_labels) + if n_classes == 2: + if hasattr(clf, 'predict_proba'): + prob = clf.predict_proba(features) + y_score = prob[:, prob.shape[1]-1] + elif hasattr(clf, 'decision_function'): + prob = clf.decision_function(features) + y_score = prob[:, prob.shape[1]-1] + else: + raise AttributeError("Estimator doesn't have a probability or confidence scoring system!") + + fpr, tpr, _ = roc_curve(y_test, y_score) + roc_auc = auc(fpr, tpr) + plt.plot(fpr, tpr, label='ROC curve (area = {0:0.2f})' + ''.format(roc_auc), + linewidth=2.5) + + elif n_classes > 2: + if hasattr(clf, 'predict_proba'): + y_score = clf.predict_proba(features) + elif hasattr(clf, 'decision_function'): + y_score = clf.decision_function(features) + else: + raise AttributeError("Estimator doesn't have a probability or confidence scoring system!") + + for i in range(n_classes): + fpr[i], tpr[i], _ = roc_curve(y_test[:, i], y_score[:, i]) + roc_auc[i] = auc(fpr[i], tpr[i]) + + ## Compute micro-average ROC curve and ROC area + fpr["micro"], tpr["micro"], _ = roc_curve(y_test.ravel(), y_score.ravel()) + roc_auc["micro"] = auc(fpr["micro"], tpr["micro"]) + + ## Compute macro-average ROC curve and ROC area + # First aggregate all false positive rates + all_fpr = np.unique(np.concatenate([fpr[i] for i in range(n_classes)])) + # Then interpolate all ROC curves at this points + mean_tpr = np.zeros_like(all_fpr) + for i in range(n_classes): + mean_tpr += interp(all_fpr, fpr[i], tpr[i]) + # Finally average it and compute AUC + mean_tpr /= n_classes + fpr["macro"] = all_fpr + tpr["macro"] = mean_tpr + roc_auc["macro"] = auc(fpr["macro"], tpr["macro"]) + + ## Plot ROC curves + plt.figure(figsize=(6, 4)) + plt.plot(fpr["micro"], tpr["micro"], + label='micro-average ROC curve (area = {0:0.2f})' + ''.format(roc_auc["micro"]), linewidth=3) + + plt.plot(fpr["macro"], tpr["macro"], + label='macro-average ROC curve (area = {0:0.2f})' + ''.format(roc_auc["macro"]), linewidth=3) + + for i, label in enumerate(class_labels): + plt.plot(fpr[i], tpr[i], label='ROC curve of class {0} (area = {1:0.2f})' + ''.format(label, roc_auc[i]), + linewidth=2, linestyle=':') + else: + raise ValueError('Number of classes should be atleast 2 or more') + + plt.plot([0, 1], [0, 1], 'k--') + plt.xlim([0.0, 1.0]) + plt.ylim([0.0, 1.05]) + plt.xlabel('False Positive Rate') + plt.ylabel('True Positive Rate') + plt.title('Receiver Operating Characteristic (ROC) Curve') + plt.legend(loc="lower right") + plt.show() + + diff --git a/New-Second-Edition/Ch09 - Sentiment Analysis/text_normalizer.py b/New-Second-Edition/Ch09 - Sentiment Analysis/text_normalizer.py new file mode 100644 index 0000000..9190606 --- /dev/null +++ b/New-Second-Edition/Ch09 - Sentiment Analysis/text_normalizer.py @@ -0,0 +1,156 @@ +import nltk +import spacy +import unicodedata +from contractions import CONTRACTION_MAP +import re +from nltk.corpus import wordnet +import collections +#from textblob import Word +from nltk.tokenize.toktok import ToktokTokenizer +from bs4 import BeautifulSoup + +tokenizer = ToktokTokenizer() +stopword_list = nltk.corpus.stopwords.words('english') +nlp = spacy.load('en', parse=True, tag=True, entity=True) +# nlp_vec = spacy.load('en_vectors_web_lg', parse=True, tag=True, entity=True) + + + +def strip_html_tags(text): + soup = BeautifulSoup(text, "html.parser") + if bool(soup.find()): + [s.extract() for s in soup(['iframe', 'script'])] + stripped_text = soup.get_text() + stripped_text = re.sub(r'[\r|\n|\r\n]+', '\n', stripped_text) + else: + stripped_text = text + return stripped_text + + +#def correct_spellings_textblob(tokens): +# return [Word(token).correct() for token in tokens] + + +def simple_porter_stemming(text): + ps = nltk.porter.PorterStemmer() + text = ' '.join([ps.stem(word) for word in text.split()]) + return text + + +def lemmatize_text(text): + text = nlp(text) + text = ' '.join([word.lemma_ if word.lemma_ != '-PRON-' else word.text for word in text]) + return text + + +def remove_repeated_characters(tokens): + repeat_pattern = re.compile(r'(\w*)(\w)\2(\w*)') + match_substitution = r'\1\2\3' + def replace(old_word): + if wordnet.synsets(old_word): + return old_word + new_word = repeat_pattern.sub(match_substitution, old_word) + return replace(new_word) if new_word != old_word else new_word + + correct_tokens = [replace(word) for word in tokens] + return correct_tokens + + +def expand_contractions(text, contraction_mapping=CONTRACTION_MAP): + + contractions_pattern = re.compile('({})'.format('|'.join(contraction_mapping.keys())), + flags=re.IGNORECASE|re.DOTALL) + def expand_match(contraction): + match = contraction.group(0) + first_char = match[0] + expanded_contraction = contraction_mapping.get(match)\ + if contraction_mapping.get(match)\ + else contraction_mapping.get(match.lower()) + expanded_contraction = first_char+expanded_contraction[1:] + return expanded_contraction + + expanded_text = contractions_pattern.sub(expand_match, text) + expanded_text = re.sub("'", "", expanded_text) + return expanded_text + + +def remove_accented_chars(text): + text = unicodedata.normalize('NFKD', text).encode('ascii', 'ignore').decode('utf-8', 'ignore') + return text + + +def remove_special_characters(text, remove_digits=False): + pattern = r'[^a-zA-Z0-9\s]|\[|\]' if not remove_digits else r'[^a-zA-Z\s]|\[|\]' + text = re.sub(pattern, '', text) + return text + + +def remove_stopwords(text, is_lower_case=False, stopwords=stopword_list): + tokens = tokenizer.tokenize(text) + tokens = [token.strip() for token in tokens] + if is_lower_case: + filtered_tokens = [token for token in tokens if token not in stopwords] + else: + filtered_tokens = [token for token in tokens if token.lower() not in stopwords] + filtered_text = ' '.join(filtered_tokens) + return filtered_text + + +def normalize_corpus(corpus, html_stripping=True, contraction_expansion=True, + accented_char_removal=True, text_lower_case=True, + text_stemming=False, text_lemmatization=True, + special_char_removal=True, remove_digits=True, + stopword_removal=True, stopwords=stopword_list): + + normalized_corpus = [] + # normalize each document in the corpus + for doc in corpus: + + # strip HTML + if html_stripping: + doc = strip_html_tags(doc) + + # remove extra newlines + doc = doc.translate(doc.maketrans("\n\t\r", " ")) + + # remove accented characters + if accented_char_removal: + doc = remove_accented_chars(doc) + + # expand contractions + if contraction_expansion: + doc = expand_contractions(doc) + + # lemmatize text + if text_lemmatization: + doc = lemmatize_text(doc) + + # stem text + if text_stemming and not text_lemmatization: + doc = simple_porter_stemming(doc) + + # remove special characters and\or digits + if special_char_removal: + # insert spaces between special characters to isolate them + special_char_pattern = re.compile(r'([{.(-)!}])') + doc = special_char_pattern.sub(" \\1 ", doc) + doc = remove_special_characters(doc, remove_digits=remove_digits) + + # remove extra whitespace + doc = re.sub(' +', ' ', doc) + + # lowercase the text + if text_lower_case: + doc = doc.lower() + + # remove stopwords + if stopword_removal: + doc = remove_stopwords(doc, is_lower_case=text_lower_case, stopwords=stopwords) + + # remove extra whitespace + doc = re.sub(' +', ' ', doc) + doc = doc.strip() + + normalized_corpus.append(doc) + + return normalized_corpus \ No newline at end of file diff --git a/New-Second-Edition/Ch10 - The Promise of Deep Learning/Ch10a - Deep Transfer Learning for NLP - Text Classification with Universal Embeddings.ipynb b/New-Second-Edition/Ch10 - The Promise of Deep Learning/Ch10a - Deep Transfer Learning for NLP - Text Classification with Universal Embeddings.ipynb new file mode 100644 index 0000000..1c45358 --- /dev/null +++ b/New-Second-Edition/Ch10 - The Promise of Deep Learning/Ch10a - Deep Transfer Learning for NLP - Text Classification with Universal Embeddings.ipynb @@ -0,0 +1,1266 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Sentiment Analysis - Text Classification with Universal Embeddings\n", + "\n", + "Textual data in spite of being highly unstructured, can be classified into two major types of documents. \n", + "- __Factual documents__ which typically depict some form of statements or facts with no specific feelings or emotion attached to them. These are also known as objective documents. \n", + "- __Subjective documents__ on the other hand have text which expresses feelings, mood, emotions and opinion. \n", + "\n", + "Sentiment Analysis is also popularly known as opinion analysis or opinion mining. The key idea is to use techniques from text analytics, NLP, machine learning and linguistics to extract important information or data points from unstructured text. This in turn can help us derive the sentiment from text data\n", + "\n", + "![](sentiment_cover.png)\n", + "\n", + "Here we will be looking at building supervised sentiment analysis classification models thanks to the advantage of labeled data! The dataset we will be working with is the IMDB Large Movie Review Dataset having 50000 reviews classified into positive and negative sentiment. I have provided a compressed version of the dataset in this repository itself for your benefit!\n", + "\n", + "Do remember that the focus here is not sentiment analysis but text classification by leveraging universal sentence embeddings.\n", + "\n", + "![](sample_classification.png)\n", + "\n", + "We will leverage the following sentence encoders here for demonstration from [TensorFlow Hub](https://tfhub.dev/):\n", + "\n", + "- [__Neural-Net Language Model (nnlm-en-dim128)__](https://tfhub.dev/google/nnlm-en-dim128/1)\n", + "- [__Universal Sentence Encoder (universal-sentence-encoder)__](https://tfhub.dev/google/universal-sentence-encoder/2)\n", + "\n", + "\n", + "_Developed by [Dipanjan (DJ) Sarkar](https://www.linkedin.com/in/dipanzan/)_" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Install Tensorflow Hub" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting tensorflow-hub\n", + "\u001b[?25l Downloading https://files.pythonhosted.org/packages/5f/22/64f246ef80e64b1a13b2f463cefa44f397a51c49a303294f5f3d04ac39ac/tensorflow_hub-0.1.1-py2.py3-none-any.whl (52kB)\n", + "\u001b[K 100% |################################| 61kB 8.5MB/s ta 0:00:011\n", + "\u001b[?25hRequirement already satisfied: numpy>=1.12.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow-hub) (1.14.3)\n", + "Requirement already satisfied: six>=1.10.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow-hub) (1.11.0)\n", + "Requirement already satisfied: protobuf>=3.4.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow-hub) (3.5.2.post1)\n", + "Requirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from protobuf>=3.4.0->tensorflow-hub) (39.1.0)\n", + "Installing collected packages: tensorflow-hub\n", + "Successfully installed tensorflow-hub-0.1.1\n", + "\u001b[33mYou are using pip version 10.0.1, however version 18.1 is available.\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\n" + ] + } + ], + "source": [ + "!pip install tensorflow-hub" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load up Dependencies" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "import tensorflow as tf\n", + "import tensorflow_hub as hub\n", + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Check if GPU is available for use!" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tf.test.is_gpu_available()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'/device:GPU:0'" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tf.test.gpu_device_name()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Load and View Dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 50000 entries, 0 to 49999\n", + "Data columns (total 2 columns):\n", + "review 50000 non-null object\n", + "sentiment 50000 non-null object\n", + "dtypes: object(2)\n", + "memory usage: 781.3+ KB\n" + ] + } + ], + "source": [ + "dataset = pd.read_csv('movie_reviews.csv.bz2', compression='bz2')\n", + "dataset.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
      \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
      reviewsentiment
      0One of the other reviewers has mentioned that ...1
      1A wonderful little production. <br /><br />The...1
      2I thought this was a wonderful way to spend ti...1
      3Basically there's a family where a little boy ...0
      4Petter Mattei's \"Love in the Time of Money\" is...1
      \n", + "
      " + ], + "text/plain": [ + " review sentiment\n", + "0 One of the other reviewers has mentioned that ... 1\n", + "1 A wonderful little production.

      The... 1\n", + "2 I thought this was a wonderful way to spend ti... 1\n", + "3 Basically there's a family where a little boy ... 0\n", + "4 Petter Mattei's \"Love in the Time of Money\" is... 1" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset['sentiment'] = [1 if sentiment == 'positive' else 0 for sentiment in dataset['sentiment'].values]\n", + "dataset.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build train, validation and test datasets" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "((30000,), (5000,), (15000,))" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "reviews = dataset['review'].values\n", + "sentiments = dataset['sentiment'].values\n", + "\n", + "train_reviews = reviews[:30000]\n", + "train_sentiments = sentiments[:30000]\n", + "\n", + "val_reviews = reviews[30000:35000]\n", + "val_sentiments = sentiments[30000:35000]\n", + "\n", + "test_reviews = reviews[35000:]\n", + "test_sentiments = sentiments[35000:]\n", + "train_reviews.shape, val_reviews.shape, test_reviews.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Basic Text Wrangling" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: contractions in /usr/local/lib/python3.6/dist-packages (0.0.17)\n", + "\u001b[33mYou are using pip version 10.0.1, however version 18.1 is available.\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\n", + "Requirement already satisfied: beautifulsoup4 in /usr/local/lib/python3.6/dist-packages (4.6.3)\n", + "\u001b[33mYou are using pip version 10.0.1, however version 18.1 is available.\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\n" + ] + } + ], + "source": [ + "!pip install contractions\n", + "!pip install beautifulsoup4" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "import contractions\n", + "from bs4 import BeautifulSoup\n", + "import unicodedata\n", + "import re\n", + "\n", + "\n", + "def strip_html_tags(text):\n", + " soup = BeautifulSoup(text, \"html.parser\")\n", + " [s.extract() for s in soup(['iframe', 'script'])]\n", + " stripped_text = soup.get_text()\n", + " stripped_text = re.sub(r'[\\r|\\n|\\r\\n]+', '\\n', stripped_text)\n", + " return stripped_text\n", + "\n", + "\n", + "def remove_accented_chars(text):\n", + " text = unicodedata.normalize('NFKD', text).encode('ascii', 'ignore').decode('utf-8', 'ignore')\n", + " return text\n", + "\n", + "\n", + "def expand_contractions(text):\n", + " return contractions.fix(text)\n", + "\n", + "\n", + "\n", + "def remove_special_characters(text, remove_digits=False):\n", + " pattern = r'[^a-zA-Z0-9\\s]' if not remove_digits else r'[^a-zA-Z\\s]'\n", + " text = re.sub(pattern, '', text)\n", + " return text\n", + "\n", + "\n", + "def pre_process_document(document):\n", + " \n", + " # strip HTML\n", + " document = strip_html_tags(document)\n", + " \n", + " # lower case\n", + " document = document.lower()\n", + " \n", + " # remove extra newlines (often might be present in really noisy text)\n", + " document = document.translate(document.maketrans(\"\\n\\t\\r\", \" \"))\n", + " \n", + " # remove accented characters\n", + " document = remove_accented_chars(document)\n", + " \n", + " # expand contractions \n", + " document = expand_contractions(document)\n", + " \n", + " # remove special characters and\\or digits \n", + " # insert spaces between special characters to isolate them \n", + " special_char_pattern = re.compile(r'([{.(-)!}])')\n", + " document = special_char_pattern.sub(\" \\\\1 \", document)\n", + " document = remove_special_characters(document, remove_digits=True) \n", + " \n", + " # remove extra whitespace\n", + " document = re.sub(' +', ' ', document)\n", + " document = document.strip()\n", + " \n", + " return document\n", + "\n", + "\n", + "pre_process_corpus = np.vectorize(pre_process_document)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "train_reviews = pre_process_corpus(train_reviews)\n", + "val_reviews = pre_process_corpus(val_reviews)\n", + "test_reviews = pre_process_corpus(test_reviews)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build Data Ingestion Functions" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "# Training input on the whole training set with no limit on training epochs.\n", + "train_input_fn = tf.estimator.inputs.numpy_input_fn(\n", + " {'sentence': train_reviews}, train_sentiments, \n", + " batch_size=256, num_epochs=None, shuffle=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "# Prediction on the whole training set.\n", + "predict_train_input_fn = tf.estimator.inputs.numpy_input_fn(\n", + " {'sentence': train_reviews}, train_sentiments, shuffle=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "# Prediction on the whole validation set.\n", + "predict_val_input_fn = tf.estimator.inputs.numpy_input_fn(\n", + " {'sentence': val_reviews}, val_sentiments, shuffle=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "# Prediction on the test set.\n", + "predict_test_input_fn = tf.estimator.inputs.numpy_input_fn(\n", + " {'sentence': test_reviews}, test_sentiments, shuffle=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build Deep Learning Model with Universal Sentence Encoder" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Using /tmp/tfhub_modules to cache modules.\n" + ] + } + ], + "source": [ + "embedding_feature = hub.text_embedding_column(\n", + " key='sentence', \n", + " module_spec=\"https://tfhub.dev/google/universal-sentence-encoder/2\",\n", + " trainable=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "INFO:tensorflow:Using default config.\n", + "WARNING:tensorflow:Using temporary folder as model directory: /tmp/tmpn9bphscn\n", + "INFO:tensorflow:Using config: {'_model_dir': '/tmp/tmpn9bphscn', '_tf_random_seed': None, '_save_summary_steps': 100, '_save_checkpoints_steps': None, '_save_checkpoints_secs': 600, '_session_config': None, '_keep_checkpoint_max': 5, '_keep_checkpoint_every_n_hours': 10000, '_log_step_count_steps': 100, '_train_distribute': None, '_service': None, '_cluster_spec': , '_task_type': 'worker', '_task_id': 0, '_global_id_in_cluster': 0, '_master': '', '_evaluation_master': '', '_is_chief': True, '_num_ps_replicas': 0, '_num_worker_replicas': 1}\n" + ] + } + ], + "source": [ + "dnn = tf.estimator.DNNClassifier(\n", + " hidden_units=[512, 128],\n", + " feature_columns=[embedding_feature],\n", + " n_classes=2,\n", + " activation_fn=tf.nn.relu,\n", + " dropout=0.1,\n", + " optimizer=tf.train.AdagradOptimizer(learning_rate=0.005))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Train for approx 12 epochs" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "12.8" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "256*1500 / 30000" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Model Training" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 0\n", + "Train Time (s): 78.62789511680603\n", + "Eval Metrics (Train): {'accuracy': 0.84863335, 'accuracy_baseline': 0.5005, 'auc': 0.9279859, 'auc_precision_recall': 0.92819566, 'average_loss': 0.34581015, 'label/mean': 0.5005, 'loss': 44.145977, 'precision': 0.86890674, 'prediction/mean': 0.47957155, 'recall': 0.8215118, 'global_step': 100}\n", + "Eval Metrics (Validation): {'accuracy': 0.8454, 'accuracy_baseline': 0.505, 'auc': 0.92413086, 'auc_precision_recall': 0.9200026, 'average_loss': 0.35258815, 'label/mean': 0.495, 'loss': 44.073517, 'precision': 0.8522351, 'prediction/mean': 0.48447067, 'recall': 0.8319192, 'global_step': 100}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 100\n", + "Train Time (s): 76.1651611328125\n", + "Eval Metrics (Train): {'accuracy': 0.85436666, 'accuracy_baseline': 0.5005, 'auc': 0.9321357, 'auc_precision_recall': 0.93224275, 'average_loss': 0.3330773, 'label/mean': 0.5005, 'loss': 42.520508, 'precision': 0.8501513, 'prediction/mean': 0.5098621, 'recall': 0.86073923, 'global_step': 200}\n", + "Eval Metrics (Validation): {'accuracy': 0.8494, 'accuracy_baseline': 0.505, 'auc': 0.92772096, 'auc_precision_recall': 0.92323804, 'average_loss': 0.34418356, 'label/mean': 0.495, 'loss': 43.022945, 'precision': 0.83501947, 'prediction/mean': 0.5149463, 'recall': 0.86707073, 'global_step': 200}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 200\n", + "Train Time (s): 76.43350577354431\n", + "Eval Metrics (Train): {'accuracy': 0.8561, 'accuracy_baseline': 0.5005, 'auc': 0.93400496, 'auc_precision_recall': 0.93414706, 'average_loss': 0.32816008, 'label/mean': 0.5005, 'loss': 41.892776, 'precision': 0.85856014, 'prediction/mean': 0.49918926, 'recall': 0.85301363, 'global_step': 300}\n", + "Eval Metrics (Validation): {'accuracy': 0.8508, 'accuracy_baseline': 0.505, 'auc': 0.9290328, 'auc_precision_recall': 0.9250712, 'average_loss': 0.33986613, 'label/mean': 0.495, 'loss': 42.48327, 'precision': 0.84319174, 'prediction/mean': 0.50402075, 'recall': 0.85818183, 'global_step': 300}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 300\n", + "Train Time (s): 78.08082580566406\n", + "Eval Metrics (Train): {'accuracy': 0.8584, 'accuracy_baseline': 0.5005, 'auc': 0.93560475, 'auc_precision_recall': 0.9356024, 'average_loss': 0.3264787, 'label/mean': 0.5005, 'loss': 41.678127, 'precision': 0.84423554, 'prediction/mean': 0.522159, 'recall': 0.8793207, 'global_step': 400}\n", + "Eval Metrics (Validation): {'accuracy': 0.8494, 'accuracy_baseline': 0.505, 'auc': 0.929911, 'auc_precision_recall': 0.9256854, 'average_loss': 0.34194976, 'label/mean': 0.495, 'loss': 42.74372, 'precision': 0.82564294, 'prediction/mean': 0.5267772, 'recall': 0.8820202, 'global_step': 400}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 400\n", + "Train Time (s): 78.66700315475464\n", + "Eval Metrics (Train): {'accuracy': 0.8597, 'accuracy_baseline': 0.5005, 'auc': 0.9370333, 'auc_precision_recall': 0.93680507, 'average_loss': 0.32163766, 'label/mean': 0.5005, 'loss': 41.060127, 'precision': 0.8540629, 'prediction/mean': 0.51153994, 'recall': 0.86799866, 'global_step': 500}\n", + "Eval Metrics (Validation): {'accuracy': 0.851, 'accuracy_baseline': 0.505, 'auc': 0.93050015, 'auc_precision_recall': 0.92593473, 'average_loss': 0.33805788, 'label/mean': 0.495, 'loss': 42.257233, 'precision': 0.83579195, 'prediction/mean': 0.5157132, 'recall': 0.869899, 'global_step': 500}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 500\n", + "Train Time (s): 81.03562021255493\n", + "Eval Metrics (Train): {'accuracy': 0.8628, 'accuracy_baseline': 0.5005, 'auc': 0.9386675, 'auc_precision_recall': 0.93854874, 'average_loss': 0.31690273, 'label/mean': 0.5005, 'loss': 40.45567, 'precision': 0.86361516, 'prediction/mean': 0.5004919, 'recall': 0.86200464, 'global_step': 600}\n", + "Eval Metrics (Validation): {'accuracy': 0.8562, 'accuracy_baseline': 0.505, 'auc': 0.9315411, 'auc_precision_recall': 0.92733943, 'average_loss': 0.3339314, 'label/mean': 0.495, 'loss': 41.741425, 'precision': 0.8481364, 'prediction/mean': 0.5051916, 'recall': 0.86424243, 'global_step': 600}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 600\n", + "Train Time (s): 82.44215893745422\n", + "Eval Metrics (Train): {'accuracy': 0.86523336, 'accuracy_baseline': 0.5005, 'auc': 0.94012344, 'auc_precision_recall': 0.93995917, 'average_loss': 0.31317216, 'label/mean': 0.5005, 'loss': 39.979427, 'precision': 0.86268675, 'prediction/mean': 0.50560397, 'recall': 0.8690643, 'global_step': 700}\n", + "Eval Metrics (Validation): {'accuracy': 0.8572, 'accuracy_baseline': 0.505, 'auc': 0.9326249, 'auc_precision_recall': 0.9284968, 'average_loss': 0.33208466, 'label/mean': 0.495, 'loss': 41.510582, 'precision': 0.84651715, 'prediction/mean': 0.51005256, 'recall': 0.8690909, 'global_step': 700}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 700\n", + "Train Time (s): 81.71217703819275\n", + "Eval Metrics (Train): {'accuracy': 0.8632333, 'accuracy_baseline': 0.5005, 'auc': 0.94086003, 'auc_precision_recall': 0.9406356, 'average_loss': 0.31374687, 'label/mean': 0.5005, 'loss': 40.05279, 'precision': 0.88191235, 'prediction/mean': 0.4772521, 'recall': 0.8390942, 'global_step': 800}\n", + "Eval Metrics (Validation): {'accuracy': 0.854, 'accuracy_baseline': 0.505, 'auc': 0.9327511, 'auc_precision_recall': 0.9289065, 'average_loss': 0.33162636, 'label/mean': 0.495, 'loss': 41.453293, 'precision': 0.86128366, 'prediction/mean': 0.48188075, 'recall': 0.84040403, 'global_step': 800}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 800\n", + "Train Time (s): 83.28980422019958\n", + "Eval Metrics (Train): {'accuracy': 0.8681667, 'accuracy_baseline': 0.5005, 'auc': 0.94270587, 'auc_precision_recall': 0.94251335, 'average_loss': 0.30656302, 'label/mean': 0.5005, 'loss': 39.135704, 'precision': 0.86419916, 'prediction/mean': 0.5073946, 'recall': 0.8739261, 'global_step': 900}\n", + "Eval Metrics (Validation): {'accuracy': 0.8586, 'accuracy_baseline': 0.505, 'auc': 0.933738, 'auc_precision_recall': 0.9295292, 'average_loss': 0.32951483, 'label/mean': 0.495, 'loss': 41.189354, 'precision': 0.84612375, 'prediction/mean': 0.5115125, 'recall': 0.87313133, 'global_step': 900}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 900\n", + "Train Time (s): 82.47694706916809\n", + "Eval Metrics (Train): {'accuracy': 0.86903334, 'accuracy_baseline': 0.5005, 'auc': 0.9443012, 'auc_precision_recall': 0.94409984, 'average_loss': 0.3057844, 'label/mean': 0.5005, 'loss': 39.03631, 'precision': 0.8514456, 'prediction/mean': 0.5249473, 'recall': 0.8943723, 'global_step': 1000}\n", + "Eval Metrics (Validation): {'accuracy': 0.8566, 'accuracy_baseline': 0.505, 'auc': 0.9347619, 'auc_precision_recall': 0.93128407, 'average_loss': 0.33120963, 'label/mean': 0.495, 'loss': 41.401203, 'precision': 0.829955, 'prediction/mean': 0.5288649, 'recall': 0.8933333, 'global_step': 1000}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1000\n", + "Train Time (s): 84.39996337890625\n", + "Eval Metrics (Train): {'accuracy': 0.8716, 'accuracy_baseline': 0.5005, 'auc': 0.9453286, 'auc_precision_recall': 0.94506085, 'average_loss': 0.30098185, 'label/mean': 0.5005, 'loss': 38.423214, 'precision': 0.8595169, 'prediction/mean': 0.51834613, 'recall': 0.8887113, 'global_step': 1100}\n", + "Eval Metrics (Validation): {'accuracy': 0.859, 'accuracy_baseline': 0.505, 'auc': 0.9349775, 'auc_precision_recall': 0.93106484, 'average_loss': 0.3288155, 'label/mean': 0.495, 'loss': 41.101936, 'precision': 0.83727133, 'prediction/mean': 0.5222167, 'recall': 0.8876768, 'global_step': 1100}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1100\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Train Time (s): 84.88116145133972\n", + "Eval Metrics (Train): {'accuracy': 0.87226665, 'accuracy_baseline': 0.5005, 'auc': 0.94644105, 'auc_precision_recall': 0.94621253, 'average_loss': 0.2976978, 'label/mean': 0.5005, 'loss': 38.00398, 'precision': 0.88602, 'prediction/mean': 0.4845446, 'recall': 0.85474527, 'global_step': 1200}\n", + "Eval Metrics (Validation): {'accuracy': 0.8612, 'accuracy_baseline': 0.505, 'auc': 0.9357711, 'auc_precision_recall': 0.93195754, 'average_loss': 0.32375482, 'label/mean': 0.495, 'loss': 40.469353, 'precision': 0.86272913, 'prediction/mean': 0.48821172, 'recall': 0.8557576, 'global_step': 1200}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1200\n", + "Train Time (s): 85.49790549278259\n", + "Eval Metrics (Train): {'accuracy': 0.8763, 'accuracy_baseline': 0.5005, 'auc': 0.94796634, 'auc_precision_recall': 0.9477355, 'average_loss': 0.29294312, 'label/mean': 0.5005, 'loss': 37.396996, 'precision': 0.87395793, 'prediction/mean': 0.5043318, 'recall': 0.8797203, 'global_step': 1300}\n", + "Eval Metrics (Validation): {'accuracy': 0.861, 'accuracy_baseline': 0.505, 'auc': 0.9365514, 'auc_precision_recall': 0.9326272, 'average_loss': 0.32206511, 'label/mean': 0.495, 'loss': 40.25814, 'precision': 0.8526149, 'prediction/mean': 0.50739485, 'recall': 0.869495, 'global_step': 1300}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1300\n", + "Train Time (s): 85.8064513206482\n", + "Eval Metrics (Train): {'accuracy': 0.87743336, 'accuracy_baseline': 0.5005, 'auc': 0.9490614, 'auc_precision_recall': 0.94886625, 'average_loss': 0.29016578, 'label/mean': 0.5005, 'loss': 37.042442, 'precision': 0.87052286, 'prediction/mean': 0.5104429, 'recall': 0.8870463, 'global_step': 1400}\n", + "Eval Metrics (Validation): {'accuracy': 0.8622, 'accuracy_baseline': 0.505, 'auc': 0.9367896, 'auc_precision_recall': 0.9333618, 'average_loss': 0.3225043, 'label/mean': 0.495, 'loss': 40.31304, 'precision': 0.8474708, 'prediction/mean': 0.514252, 'recall': 0.88, 'global_step': 1400}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1400\n", + "Train Time (s): 85.99037742614746\n", + "Eval Metrics (Train): {'accuracy': 0.8783, 'accuracy_baseline': 0.5005, 'auc': 0.9500882, 'auc_precision_recall': 0.94986326, 'average_loss': 0.28882334, 'label/mean': 0.5005, 'loss': 36.871063, 'precision': 0.865308, 'prediction/mean': 0.5196238, 'recall': 0.8963703, 'global_step': 1500}\n", + "Eval Metrics (Validation): {'accuracy': 0.8626, 'accuracy_baseline': 0.505, 'auc': 0.93708724, 'auc_precision_recall': 0.9336051, 'average_loss': 0.32389137, 'label/mean': 0.495, 'loss': 40.486423, 'precision': 0.84044176, 'prediction/mean': 0.5226699, 'recall': 0.8917172, 'global_step': 1500}\n", + "\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1500\n", + "Train Time (s): 86.91469407081604\n", + "Eval Metrics (Train): {'accuracy': 0.8802, 'accuracy_baseline': 0.5005, 'auc': 0.95115364, 'auc_precision_recall': 0.950775, 'average_loss': 0.2844779, 'label/mean': 0.5005, 'loss': 36.316326, 'precision': 0.8735527, 'prediction/mean': 0.51057553, 'recall': 0.8893773, 'global_step': 1600}\n", + "Eval Metrics (Validation): {'accuracy': 0.8626, 'accuracy_baseline': 0.505, 'auc': 0.9373224, 'auc_precision_recall': 0.9336302, 'average_loss': 0.32108024, 'label/mean': 0.495, 'loss': 40.135033, 'precision': 0.8478599, 'prediction/mean': 0.5134171, 'recall': 0.88040406, 'global_step': 1600}\n" + ] + } + ], + "source": [ + "tf.logging.set_verbosity(tf.logging.ERROR)\n", + "import time\n", + "\n", + "TOTAL_STEPS = 1500\n", + "STEP_SIZE = 100\n", + "for step in range(0, TOTAL_STEPS+1, STEP_SIZE):\n", + " print()\n", + " print('-'*100)\n", + " print('Training for step =', step)\n", + " start_time = time.time()\n", + " dnn.train(input_fn=train_input_fn, steps=STEP_SIZE)\n", + " elapsed_time = time.time() - start_time\n", + " print('Train Time (s):', elapsed_time)\n", + " print('Eval Metrics (Train):', dnn.evaluate(input_fn=predict_train_input_fn))\n", + " print('Eval Metrics (Validation):', dnn.evaluate(input_fn=predict_val_input_fn))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Model Evaluation" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'accuracy': 0.8802,\n", + " 'accuracy_baseline': 0.5005,\n", + " 'auc': 0.95115364,\n", + " 'auc_precision_recall': 0.950775,\n", + " 'average_loss': 0.2844779,\n", + " 'label/mean': 0.5005,\n", + " 'loss': 36.316326,\n", + " 'precision': 0.8735527,\n", + " 'prediction/mean': 0.51057553,\n", + " 'recall': 0.8893773,\n", + " 'global_step': 1600}" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dnn.evaluate(input_fn=predict_train_input_fn)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'accuracy': 0.8663333,\n", + " 'accuracy_baseline': 0.5006667,\n", + " 'auc': 0.9406502,\n", + " 'auc_precision_recall': 0.93988097,\n", + " 'average_loss': 0.31214723,\n", + " 'label/mean': 0.5006667,\n", + " 'loss': 39.679733,\n", + " 'precision': 0.8597569,\n", + " 'prediction/mean': 0.5120608,\n", + " 'recall': 0.8758988,\n", + " 'global_step': 1600}" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dnn.evaluate(input_fn=predict_test_input_fn)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Build a Generic Model Trainer on any Input Sentence Encoder" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "import time\n", + "\n", + "TOTAL_STEPS = 1500\n", + "STEP_SIZE = 500\n", + "\n", + "my_checkpointing_config = tf.estimator.RunConfig(\n", + " keep_checkpoint_max = 2, # Retain the 2 most recent checkpoints.\n", + ")\n", + "\n", + "def train_and_evaluate_with_sentence_encoder(hub_module, train_module=False, path=''):\n", + " embedding_feature = hub.text_embedding_column(\n", + " key='sentence', module_spec=hub_module, trainable=train_module)\n", + " \n", + " print()\n", + " print('='*100)\n", + " print('Training with', hub_module)\n", + " print('Trainable is:', train_module)\n", + " print('='*100)\n", + " \n", + " dnn = tf.estimator.DNNClassifier(\n", + " hidden_units=[512, 128],\n", + " feature_columns=[embedding_feature],\n", + " n_classes=2,\n", + " activation_fn=tf.nn.relu,\n", + " dropout=0.1,\n", + " optimizer=tf.train.AdagradOptimizer(learning_rate=0.005),\n", + " model_dir=path,\n", + " config=my_checkpointing_config)\n", + "\n", + " for step in range(0, TOTAL_STEPS+1, STEP_SIZE):\n", + " print('-'*100)\n", + " print('Training for step =', step)\n", + " start_time = time.time()\n", + " dnn.train(input_fn=train_input_fn, steps=STEP_SIZE)\n", + " elapsed_time = time.time() - start_time\n", + " print('Train Time (s):', elapsed_time)\n", + " print('Eval Metrics (Train):', dnn.evaluate(input_fn=predict_train_input_fn))\n", + " print('Eval Metrics (Validation):', dnn.evaluate(input_fn=predict_val_input_fn))\n", + "\n", + " train_eval_result = dnn.evaluate(input_fn=predict_train_input_fn)\n", + " test_eval_result = dnn.evaluate(input_fn=predict_test_input_fn)\n", + "\n", + " return {\n", + " \"Model Dir\": dnn.model_dir,\n", + " \"Training Accuracy\": train_eval_result[\"accuracy\"],\n", + " \"Test Accuracy\": test_eval_result[\"accuracy\"],\n", + " \"Training AUC\": train_eval_result[\"auc\"],\n", + " \"Test AUC\": test_eval_result[\"auc\"],\n", + " \"Training Precision\": train_eval_result[\"precision\"],\n", + " \"Test Precision\": test_eval_result[\"precision\"],\n", + " \"Training Recall\": train_eval_result[\"recall\"],\n", + " \"Test Recall\": test_eval_result[\"recall\"]\n", + " }" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Train Deep Learning Models on difference Sentence Encoders\n", + "- NNLM - pre-trained and fine-tuning\n", + "- USE - pre-trained and fine-tuning" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "====================================================================================================\n", + "Training with https://tfhub.dev/google/nnlm-en-dim128/1\n", + "Trainable is: False\n", + "====================================================================================================\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 0\n", + "Train Time (s): 30.525171756744385\n", + "Eval Metrics (Train): {'accuracy': 0.8480667, 'accuracy_baseline': 0.5005, 'auc': 0.9287864, 'auc_precision_recall': 0.9287345, 'average_loss': 0.34465897, 'label/mean': 0.5005, 'loss': 43.99902, 'precision': 0.8288572, 'prediction/mean': 0.5302467, 'recall': 0.8776557, 'global_step': 2500}\n", + "Eval Metrics (Validation): {'accuracy': 0.8288, 'accuracy_baseline': 0.505, 'auc': 0.91452694, 'auc_precision_recall': 0.9113482, 'average_loss': 0.37722248, 'label/mean': 0.495, 'loss': 47.15281, 'precision': 0.7999259, 'prediction/mean': 0.53336626, 'recall': 0.8723232, 'global_step': 2500}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 500\n", + "Train Time (s): 27.883334159851074\n", + "Eval Metrics (Train): {'accuracy': 0.8558, 'accuracy_baseline': 0.5005, 'auc': 0.93249583, 'auc_precision_recall': 0.93237436, 'average_loss': 0.33365154, 'label/mean': 0.5005, 'loss': 42.59381, 'precision': 0.87215376, 'prediction/mean': 0.48501322, 'recall': 0.8341658, 'global_step': 3000}\n", + "Eval Metrics (Validation): {'accuracy': 0.8356, 'accuracy_baseline': 0.505, 'auc': 0.91525424, 'auc_precision_recall': 0.9126499, 'average_loss': 0.36975703, 'label/mean': 0.495, 'loss': 46.219627, 'precision': 0.8397041, 'prediction/mean': 0.48800987, 'recall': 0.82545453, 'global_step': 3000}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1000\n", + "Train Time (s): 28.585613012313843\n", + "Eval Metrics (Train): {'accuracy': 0.8552667, 'accuracy_baseline': 0.5005, 'auc': 0.9354528, 'auc_precision_recall': 0.9354019, 'average_loss': 0.33256087, 'label/mean': 0.5005, 'loss': 42.45458, 'precision': 0.89311236, 'prediction/mean': 0.4612543, 'recall': 0.80745924, 'global_step': 3500}\n", + "Eval Metrics (Validation): {'accuracy': 0.8348, 'accuracy_baseline': 0.505, 'auc': 0.91587234, 'auc_precision_recall': 0.9131782, 'average_loss': 0.3731109, 'label/mean': 0.495, 'loss': 46.638863, 'precision': 0.8573905, 'prediction/mean': 0.4640141, 'recall': 0.7991919, 'global_step': 3500}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1500\n", + "Train Time (s): 28.242169618606567\n", + "Eval Metrics (Train): {'accuracy': 0.8616, 'accuracy_baseline': 0.5005, 'auc': 0.9385461, 'auc_precision_recall': 0.9383698, 'average_loss': 0.32105166, 'label/mean': 0.5005, 'loss': 40.985317, 'precision': 0.8443543, 'prediction/mean': 0.52729076, 'recall': 0.8869797, 'global_step': 4000}\n", + "Eval Metrics (Validation): {'accuracy': 0.828, 'accuracy_baseline': 0.505, 'auc': 0.91572505, 'auc_precision_recall': 0.91319984, 'average_loss': 0.37505153, 'label/mean': 0.495, 'loss': 46.88144, 'precision': 0.80322945, 'prediction/mean': 0.53075755, 'recall': 0.86424243, 'global_step': 4000}\n", + "\n", + "====================================================================================================\n", + "Training with https://tfhub.dev/google/nnlm-en-dim128/1\n", + "Trainable is: True\n", + "====================================================================================================\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 0\n", + "Train Time (s): 45.97756814956665\n", + "Eval Metrics (Train): {'accuracy': 0.9997, 'accuracy_baseline': 0.5005, 'auc': 0.9998141, 'auc_precision_recall': 0.99985945, 'average_loss': 0.0038648716, 'label/mean': 0.5005, 'loss': 0.49338785, 'precision': 0.99980015, 'prediction/mean': 0.5008926, 'recall': 0.9996004, 'global_step': 2500}\n", + "Eval Metrics (Validation): {'accuracy': 0.877, 'accuracy_baseline': 0.505, 'auc': 0.9225529, 'auc_precision_recall': 0.9297111, 'average_loss': 0.67985016, 'label/mean': 0.495, 'loss': 84.98127, 'precision': 0.86671925, 'prediction/mean': 0.50768346, 'recall': 0.88808084, 'global_step': 2500}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 500\n", + "Train Time (s): 44.74027681350708\n", + "Eval Metrics (Train): {'accuracy': 0.99986666, 'accuracy_baseline': 0.5005, 'auc': 0.9999234, 'auc_precision_recall': 0.9999373, 'average_loss': 0.002121097, 'label/mean': 0.5005, 'loss': 0.27077833, 'precision': 0.9998668, 'prediction/mean': 0.5002479, 'recall': 0.9998668, 'global_step': 3000}\n", + "Eval Metrics (Validation): {'accuracy': 0.8764, 'accuracy_baseline': 0.505, 'auc': 0.9195744, 'auc_precision_recall': 0.9288729, 'average_loss': 0.74133915, 'label/mean': 0.495, 'loss': 92.6674, 'precision': 0.8742443, 'prediction/mean': 0.4980622, 'recall': 0.87636364, 'global_step': 3000}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1000\n", + "Train Time (s): 45.068076372146606\n", + "Eval Metrics (Train): {'accuracy': 0.9999667, 'accuracy_baseline': 0.5005, 'auc': 1.0, 'auc_precision_recall': 1.0, 'average_loss': 0.0009565035, 'label/mean': 0.5005, 'loss': 0.12210683, 'precision': 1.0, 'prediction/mean': 0.5007308, 'recall': 0.9999334, 'global_step': 3500}\n", + "Eval Metrics (Validation): {'accuracy': 0.8748, 'accuracy_baseline': 0.505, 'auc': 0.9156478, 'auc_precision_recall': 0.9250907, 'average_loss': 0.8001606, 'label/mean': 0.495, 'loss': 100.02007, 'precision': 0.86584884, 'prediction/mean': 0.50656, 'recall': 0.8840404, 'global_step': 3500}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1500\n", + "Train Time (s): 44.654765605926514\n", + "Eval Metrics (Train): {'accuracy': 1.0, 'accuracy_baseline': 0.5005, 'auc': 1.0, 'auc_precision_recall': 1.0, 'average_loss': 0.00060436723, 'label/mean': 0.5005, 'loss': 0.077153265, 'precision': 1.0, 'prediction/mean': 0.50068456, 'recall': 1.0, 'global_step': 4000}\n", + "Eval Metrics (Validation): {'accuracy': 0.875, 'accuracy_baseline': 0.505, 'auc': 0.91479605, 'auc_precision_recall': 0.9244194, 'average_loss': 0.8459253, 'label/mean': 0.495, 'loss': 105.74066, 'precision': 0.8661916, 'prediction/mean': 0.5066238, 'recall': 0.8840404, 'global_step': 4000}\n", + "\n", + "====================================================================================================\n", + "Training with https://tfhub.dev/google/universal-sentence-encoder/2\n", + "Trainable is: False\n", + "====================================================================================================\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 0\n", + "Train Time (s): 261.7671597003937\n", + "Eval Metrics (Train): {'accuracy': 0.8591, 'accuracy_baseline': 0.5005, 'auc': 0.9373971, 'auc_precision_recall': 0.93691623, 'average_loss': 0.3231426, 'label/mean': 0.5005, 'loss': 41.252243, 'precision': 0.8820655, 'prediction/mean': 0.47581005, 'recall': 0.8293706, 'global_step': 501}\n", + "Eval Metrics (Validation): {'accuracy': 0.8522, 'accuracy_baseline': 0.505, 'auc': 0.93081224, 'auc_precision_recall': 0.9264202, 'average_loss': 0.33680823, 'label/mean': 0.495, 'loss': 42.10103, 'precision': 0.8631799, 'prediction/mean': 0.47982788, 'recall': 0.8335354, 'global_step': 501}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 500\n", + "Train Time (s): 259.56947469711304\n", + "Eval Metrics (Train): {'accuracy': 0.8696333, 'accuracy_baseline': 0.5005, 'auc': 0.9444929, 'auc_precision_recall': 0.94410896, 'average_loss': 0.30284137, 'label/mean': 0.5005, 'loss': 38.660603, 'precision': 0.8605663, 'prediction/mean': 0.5134329, 'recall': 0.88251746, 'global_step': 1001}\n", + "Eval Metrics (Validation): {'accuracy': 0.8608, 'accuracy_baseline': 0.505, 'auc': 0.93478435, 'auc_precision_recall': 0.93100405, 'average_loss': 0.32802072, 'label/mean': 0.495, 'loss': 41.00259, 'precision': 0.8446339, 'prediction/mean': 0.5172887, 'recall': 0.88080806, 'global_step': 1001}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1000\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Train Time (s): 258.70958161354065\n", + "Eval Metrics (Train): {'accuracy': 0.8782333, 'accuracy_baseline': 0.5005, 'auc': 0.9505533, 'auc_precision_recall': 0.94987434, 'average_loss': 0.28575605, 'label/mean': 0.5005, 'loss': 36.479496, 'precision': 0.8756281, 'prediction/mean': 0.5043332, 'recall': 0.8819847, 'global_step': 1501}\n", + "Eval Metrics (Validation): {'accuracy': 0.8616, 'accuracy_baseline': 0.505, 'auc': 0.9369738, 'auc_precision_recall': 0.9333807, 'average_loss': 0.32096896, 'label/mean': 0.495, 'loss': 40.121117, 'precision': 0.8505702, 'prediction/mean': 0.5080113, 'recall': 0.8739394, 'global_step': 1501}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1500\n", + "Train Time (s): 258.4421606063843\n", + "Eval Metrics (Train): {'accuracy': 0.88733333, 'accuracy_baseline': 0.5005, 'auc': 0.9558296, 'auc_precision_recall': 0.95508415, 'average_loss': 0.2716801, 'label/mean': 0.5005, 'loss': 34.682564, 'precision': 0.8979955, 'prediction/mean': 0.4882649, 'recall': 0.8741925, 'global_step': 2001}\n", + "Eval Metrics (Validation): {'accuracy': 0.864, 'accuracy_baseline': 0.505, 'auc': 0.938815, 'auc_precision_recall': 0.9357392, 'average_loss': 0.31562653, 'label/mean': 0.495, 'loss': 39.453316, 'precision': 0.864393, 'prediction/mean': 0.49126464, 'recall': 0.860202, 'global_step': 2001}\n", + "\n", + "====================================================================================================\n", + "Training with https://tfhub.dev/google/universal-sentence-encoder/2\n", + "Trainable is: True\n", + "====================================================================================================\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 0\n", + "Train Time (s): 313.1993100643158\n", + "Eval Metrics (Train): {'accuracy': 0.99916667, 'accuracy_baseline': 0.5005, 'auc': 0.9996535, 'auc_precision_recall': 0.9996587, 'average_loss': 0.0054427227, 'label/mean': 0.5005, 'loss': 0.69481564, 'precision': 0.9989349, 'prediction/mean': 0.50010633, 'recall': 0.9994006, 'global_step': 500}\n", + "Eval Metrics (Validation): {'accuracy': 0.9056, 'accuracy_baseline': 0.505, 'auc': 0.95068294, 'auc_precision_recall': 0.95441175, 'average_loss': 0.40755096, 'label/mean': 0.495, 'loss': 50.94387, 'precision': 0.9020474, 'prediction/mean': 0.4965181, 'recall': 0.9078788, 'global_step': 500}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 500\n", + "Train Time (s): 306.61662435531616\n", + "Eval Metrics (Train): {'accuracy': 0.9999667, 'accuracy_baseline': 0.5005, 'auc': 0.9999665, 'auc_precision_recall': 0.9999665, 'average_loss': 0.00048276514, 'label/mean': 0.5005, 'loss': 0.061629593, 'precision': 0.9999334, 'prediction/mean': 0.50048435, 'recall': 1.0, 'global_step': 1000}\n", + "Eval Metrics (Validation): {'accuracy': 0.9024, 'accuracy_baseline': 0.505, 'auc': 0.93500155, 'auc_precision_recall': 0.94411886, 'average_loss': 0.5513662, 'label/mean': 0.495, 'loss': 68.92078, 'precision': 0.892843, 'prediction/mean': 0.50568086, 'recall': 0.91232324, 'global_step': 1000}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1000\n", + "Train Time (s): 306.62883472442627\n", + "Eval Metrics (Train): {'accuracy': 0.9999667, 'accuracy_baseline': 0.5005, 'auc': 0.9999666, 'auc_precision_recall': 0.9999666, 'average_loss': 0.00030994884, 'label/mean': 0.5005, 'loss': 0.039567936, 'precision': 0.9999334, 'prediction/mean': 0.50050503, 'recall': 1.0, 'global_step': 1500}\n", + "Eval Metrics (Validation): {'accuracy': 0.9018, 'accuracy_baseline': 0.505, 'auc': 0.9302231, 'auc_precision_recall': 0.9409413, 'average_loss': 0.61150163, 'label/mean': 0.495, 'loss': 76.4377, 'precision': 0.8905512, 'prediction/mean': 0.50745887, 'recall': 0.9139394, 'global_step': 1500}\n", + "----------------------------------------------------------------------------------------------------\n", + "Training for step = 1500\n", + "Train Time (s): 305.9913341999054\n", + "Eval Metrics (Train): {'accuracy': 1.0, 'accuracy_baseline': 0.5005, 'auc': 1.0, 'auc_precision_recall': 1.0, 'average_loss': 5.714076e-05, 'label/mean': 0.5005, 'loss': 0.0072945654, 'precision': 1.0, 'prediction/mean': 0.5004708, 'recall': 1.0, 'global_step': 2000}\n", + "Eval Metrics (Validation): {'accuracy': 0.9032, 'accuracy_baseline': 0.505, 'auc': 0.929281, 'auc_precision_recall': 0.9409471, 'average_loss': 0.6407001, 'label/mean': 0.495, 'loss': 80.08751, 'precision': 0.8986784, 'prediction/mean': 0.4996146, 'recall': 0.9066667, 'global_step': 2000}\n" + ] + } + ], + "source": [ + "tf.logging.set_verbosity(tf.logging.ERROR)\n", + "\n", + "results = {}\n", + "\n", + "results[\"nnlm-en-dim128\"] = train_and_evaluate_with_sentence_encoder(\n", + " \"https://tfhub.dev/google/nnlm-en-dim128/1\", path='/storage/models/nnlm-en-dim128_f/')\n", + "\n", + "results[\"nnlm-en-dim128-with-training\"] = train_and_evaluate_with_sentence_encoder(\n", + " \"https://tfhub.dev/google/nnlm-en-dim128/1\", train_module=True, path='/storage/models/nnlm-en-dim128_t/')\n", + "\n", + "results[\"use-512\"] = train_and_evaluate_with_sentence_encoder(\n", + " \"https://tfhub.dev/google/universal-sentence-encoder/2\", path='/storage/models/use-512_f/')\n", + "\n", + "results[\"use-512-with-training\"] = train_and_evaluate_with_sentence_encoder(\n", + " \"https://tfhub.dev/google/universal-sentence-encoder/2\", train_module=True, path='/storage/models/use-512_t/')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Model Evaluations" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
      \n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
      Model DirTraining AccuracyTest AccuracyTraining AUCTest AUCTraining PrecisionTest PrecisionTraining RecallTest Recall
      nnlm-en-dim128/storage/models/nnlm-en-dim128_f/0.8616000.8361330.9385460.9182210.8443540.8227700.8869800.857390
      nnlm-en-dim128-with-training/storage/models/nnlm-en-dim128_t/1.0000000.8784671.0000000.9196551.0000000.8759751.0000000.882157
      use-512/storage/models/use-512_f/0.8873330.8670670.9558300.9423190.8979950.8767760.8741920.854594
      use-512-with-training/storage/models/use-512_t/1.0000000.9045331.0000000.9304011.0000000.9046601.0000000.904660
      \n", + "
      " + ], + "text/plain": [ + " Model Dir \\\n", + "nnlm-en-dim128 /storage/models/nnlm-en-dim128_f/ \n", + "nnlm-en-dim128-with-training /storage/models/nnlm-en-dim128_t/ \n", + "use-512 /storage/models/use-512_f/ \n", + "use-512-with-training /storage/models/use-512_t/ \n", + "\n", + " Training Accuracy Test Accuracy Training AUC \\\n", + "nnlm-en-dim128 0.861600 0.836133 0.938546 \n", + "nnlm-en-dim128-with-training 1.000000 0.878467 1.000000 \n", + "use-512 0.887333 0.867067 0.955830 \n", + "use-512-with-training 1.000000 0.904533 1.000000 \n", + "\n", + " Test AUC Training Precision Test Precision \\\n", + "nnlm-en-dim128 0.918221 0.844354 0.822770 \n", + "nnlm-en-dim128-with-training 0.919655 1.000000 0.875975 \n", + "use-512 0.942319 0.897995 0.876776 \n", + "use-512-with-training 0.930401 1.000000 0.904660 \n", + "\n", + " Training Recall Test Recall \n", + "nnlm-en-dim128 0.886980 0.857390 \n", + "nnlm-en-dim128-with-training 1.000000 0.882157 \n", + "use-512 0.874192 0.854594 \n", + "use-512-with-training 1.000000 0.904660 " + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results_df = pd.DataFrame.from_dict(results, orient=\"index\")\n", + "results_df" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'/storage/models/use-512_t/'" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "best_model_dir = results_df[results_df['Test Accuracy'] == results_df['Test Accuracy'].max()]['Model Dir'].values[0]\n", + "best_model_dir" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "embedding_feature = hub.text_embedding_column(\n", + " key='sentence', module_spec=\"https://tfhub.dev/google/universal-sentence-encoder/2\", trainable=True)\n", + "\n", + "dnn = tf.estimator.DNNClassifier(\n", + " hidden_units=[512, 128],\n", + " feature_columns=[embedding_feature],\n", + " n_classes=2,\n", + " activation_fn=tf.nn.relu,\n", + " dropout=0.1,\n", + " optimizer=tf.train.AdagradOptimizer(learning_rate=0.005),\n", + " model_dir=best_model_dir)\n", + "dnn" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [], + "source": [ + "def get_predictions(estimator, input_fn):\n", + " return [x[\"class_ids\"][0] for x in estimator.predict(input_fn=input_fn)]" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[0, 1, 0, 1, 1, 0, 1, 1, 1, 1]" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "predictions = get_predictions(estimator=dnn, input_fn=predict_test_input_fn)\n", + "predictions[:10]" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: seaborn in /usr/local/lib/python3.6/dist-packages (0.9.0)\n", + "Requirement already satisfied: scipy>=0.14.0 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.0.1)\n", + "Requirement already satisfied: pandas>=0.15.2 in /usr/local/lib/python3.6/dist-packages (from seaborn) (0.22.0)\n", + "Requirement already satisfied: numpy>=1.9.3 in /usr/local/lib/python3.6/dist-packages (from seaborn) (1.14.3)\n", + "Requirement already satisfied: matplotlib>=1.4.3 in /usr/local/lib/python3.6/dist-packages (from seaborn) (2.2.2)\n", + "Requirement already satisfied: pytz>=2011k in /usr/local/lib/python3.6/dist-packages (from pandas>=0.15.2->seaborn) (2018.4)\n", + "Requirement already satisfied: python-dateutil>=2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.15.2->seaborn) (2.7.2)\n", + "Requirement already satisfied: six>=1.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=1.4.3->seaborn) (1.11.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=1.4.3->seaborn) (1.0.1)\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=1.4.3->seaborn) (2.2.0)\n", + "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib>=1.4.3->seaborn) (0.10.0)\n", + "Requirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from kiwisolver>=1.0.1->matplotlib>=1.4.3->seaborn) (39.1.0)\n", + "\u001b[33mYou are using pip version 10.0.1, however version 18.1 is available.\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\n" + ] + } + ], + "source": [ + "!pip install seaborn" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
      " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "\n", + "%matplotlib inline\n", + "\n", + "with tf.Session() as session:\n", + " cm = tf.confusion_matrix(test_sentiments, predictions).eval()\n", + "\n", + "LABELS = ['negative', 'positive']\n", + "sns.heatmap(cm, annot=True, xticklabels=LABELS, yticklabels=LABELS, fmt='g')\n", + "xl = plt.xlabel(\"Predicted\")\n", + "yl = plt.ylabel(\"Actuals\")" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " precision recall f1-score support\n", + "\n", + " negative 0.90 0.90 0.90 7490\n", + " positive 0.90 0.90 0.90 7510\n", + "\n", + "avg / total 0.90 0.90 0.90 15000\n", + "\n" + ] + } + ], + "source": [ + "from sklearn.metrics import classification_report\n", + "\n", + "print(classification_report(y_true=test_sentiments, y_pred=predictions, target_names=LABELS))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/New-Second-Edition/Ch10 - The Promise of Deep Learning/sample_classification.png b/New-Second-Edition/Ch10 - The Promise of Deep Learning/sample_classification.png new file mode 100644 index 0000000000000000000000000000000000000000..fef2a99332b9ce344dae23cc927cbbd2f8d58a33 GIT binary patch literal 140570 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≫gGfZSc;wncA9 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�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%0ARXH84}pI4Jd_ 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
      G)NN>C0I0PmK{7lh#?V}cp&J(E*u|I}oVRK9_Q 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 literal 0 HcmV?d00001 diff --git a/New-Second-Edition/README.md b/New-Second-Edition/README.md index 4de8996..3b873c1 100644 --- a/New-Second-Edition/README.md +++ b/New-Second-Edition/README.md @@ -1,3 +1,83 @@ -# Text Analytics with Python - Second Edition +# Text Analytics with Python +### A Practical Real-World Approach to Gaining Actionable Insights from your Data + +Text analytics can be a bit overwhelming and frustrating at times +with the unstructured and noisy nature of textual data and the +vast amount of information available. +"Text Analytics with Python" is a book packed with 385 pages of useful information +based on techniques, algorithms, experiences and various lessons learnt over time +in analyzing text data. This repository contains datasets and code used in this book. +I will also be adding various notebooks and bonus content here from time to time. +Keep watching this space! + +## Get the book + + +

      + +## About the book + + Book Cover + + +Derive useful insights from your data using Python. +Learn the techniques related to natural language processing and text analytics, +and gain the skills to know which technique is best suited to solve a particular problem. + +Text Analytics with Python teaches you both basic and advanced concepts, +including text and language syntax, structure, semantics. +You will focus on algorithms and techniques, such as text classification, +clustering, topic modeling, and text summarization + +A structured and comprehensive approach is followed in this book so that +readers with little or no experience do not find themselves overwhelmed. +You will start with the basics of natural language and Python and move on +to advanced analytical and machine learning concepts. You will look at each +technique and algorithm with both a bird's eye view to understand how it +can be used as well as with a microscopic view to understand the mathematical +concepts and to implement them to solve your own problems. + +
      +Edition: 1st
      +Pages: 385
      +Language: English
      +Book Title: Text Analytics with Python
      +Publisher: Apress (a part of Springer)
      +Print ISBN: 978-1-4842-2387-1
      +Online ISBN: 978-1-4842-2388-8
      +DOI: 10.1007/978-1-4842-2388-8
      +Copyright: Dipanjan Sarkar
      + +
      + +This book: + - Provides complete coverage of the major concepts and + techniques of natural language processing (NLP) and text analytics + - Includes practical real-world examples of techniques for implementation, + such as building a text classification system to categorize news articles, + analyzing app or game reviews using topic modeling and text summarization, + and clustering popular movie synopses and analyzing the sentiment of movie reviews + - Shows implementations based on Python and several popular open source libraries + in NLP and text analytics, such as the natural language toolkit (`nltk`), + `gensim`, `scikit-learn`, `spaCy` and `Pattern` + + + -### ETA 6th July, 2019 - Apologies for the delay, making sure all the notebooks are working. From fb5e1173d8019c0d1fc7247b43dc83e8eeb6e04b Mon Sep 17 00:00:00 2001 From: dipanjanS Date: Thu, 10 Sep 2020 13:48:10 +0530 Subject: [PATCH 4/8] updated initial readme --- README.md | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 82 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c204ce2..3b873c1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,83 @@ -# Text Analytics with Python - Second Edition +# Text Analytics with Python +### A Practical Real-World Approach to Gaining Actionable Insights from your Data + +Text analytics can be a bit overwhelming and frustrating at times +with the unstructured and noisy nature of textual data and the +vast amount of information available. +"Text Analytics with Python" is a book packed with 385 pages of useful information +based on techniques, algorithms, experiences and various lessons learnt over time +in analyzing text data. This repository contains datasets and code used in this book. +I will also be adding various notebooks and bonus content here from time to time. +Keep watching this space! + +## Get the book +
      + + apress + + + springer + + + amazon + + + google + + + google + +
      +
      + +

      + +## About the book + + Book Cover + + +Derive useful insights from your data using Python. +Learn the techniques related to natural language processing and text analytics, +and gain the skills to know which technique is best suited to solve a particular problem. + +Text Analytics with Python teaches you both basic and advanced concepts, +including text and language syntax, structure, semantics. +You will focus on algorithms and techniques, such as text classification, +clustering, topic modeling, and text summarization + +A structured and comprehensive approach is followed in this book so that +readers with little or no experience do not find themselves overwhelmed. +You will start with the basics of natural language and Python and move on +to advanced analytical and machine learning concepts. You will look at each +technique and algorithm with both a bird's eye view to understand how it +can be used as well as with a microscopic view to understand the mathematical +concepts and to implement them to solve your own problems. + +
      +Edition: 1st
      +Pages: 385
      +Language: English
      +Book Title: Text Analytics with Python
      +Publisher: Apress (a part of Springer)
      +Print ISBN: 978-1-4842-2387-1
      +Online ISBN: 978-1-4842-2388-8
      +DOI: 10.1007/978-1-4842-2388-8
      +Copyright: Dipanjan Sarkar
      + +
      + +This book: + - Provides complete coverage of the major concepts and + techniques of natural language processing (NLP) and text analytics + - Includes practical real-world examples of techniques for implementation, + such as building a text classification system to categorize news articles, + analyzing app or game reviews using topic modeling and text summarization, + and clustering popular movie synopses and analyzing the sentiment of movie reviews + - Shows implementations based on Python and several popular open source libraries + in NLP and text analytics, such as the natural language toolkit (`nltk`), + `gensim`, `scikit-learn`, `spaCy` and `Pattern` + + + -### Work underway, code will be up by this weekend sorry for the delay had lost the code when I was switching computers and finally got a backup From f8ce2a5ada3684c1003750774fdecaca829577dd Mon Sep 17 00:00:00 2001 From: Dipanjan Sarkar Date: Thu, 10 Sep 2020 13:57:54 +0530 Subject: [PATCH 5/8] Update README.md --- README.md | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 3b873c1..8c946fa 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# Text Analytics with Python -### A Practical Real-World Approach to Gaining Actionable Insights from your Data +# Text Analytics with Python - 2nd Edition +### A Practitioner's Guide to Natural Language Processing Text analytics can be a bit overwhelming and frustrating at times with the unstructured and noisy nature of textual data and the vast amount of information available. -"Text Analytics with Python" is a book packed with 385 pages of useful information +"Text Analytics with Python" is a book packed with 674 pages of useful information based on techniques, algorithms, experiences and various lessons learnt over time in analyzing text data. This repository contains datasets and code used in this book. I will also be adding various notebooks and bonus content here from time to time. @@ -33,26 +33,14 @@ Keep watching this space!

      ## About the book - - Book Cover + + Book Cover -Derive useful insights from your data using Python. -Learn the techniques related to natural language processing and text analytics, -and gain the skills to know which technique is best suited to solve a particular problem. - -Text Analytics with Python teaches you both basic and advanced concepts, -including text and language syntax, structure, semantics. -You will focus on algorithms and techniques, such as text classification, -clustering, topic modeling, and text summarization +Leverage Natural Language Processing (NLP) in Python and learn how to set up your own robust environment for performing text analytics. This second edition has gone through a major revamp and introduces several significant changes and new topics based on the recent trends in NLP. -A structured and comprehensive approach is followed in this book so that -readers with little or no experience do not find themselves overwhelmed. -You will start with the basics of natural language and Python and move on -to advanced analytical and machine learning concepts. You will look at each -technique and algorithm with both a bird's eye view to understand how it -can be used as well as with a microscopic view to understand the mathematical -concepts and to implement them to solve your own problems. +You’ll see how to use the latest state-of-the-art frameworks in NLP, coupled with machine learning and deep learning models for supervised sentiment analysis powered by Python to solve actual case studies. Start by reviewing Python for NLP fundamentals on strings and text data and move on to engineering representation methods for text data, including both traditional statistical models and newer deep learning-based embedding models. Improved techniques and new methods around parsing and processing text are discussed as well. +Text summarization and topic models have been overhauled so the book showcases how to build, tune, and interpret topic models in the context of an interest dataset on NIPS conference papers. Additionally, the book covers text similarity techniques with a real-world example of movie recommenders, along with sentiment analysis using supervised and unsupervised techniques. There is also a chapter dedicated to semantic analysis where you’ll see how to build your own named entity recognition (NER) system from scratch. While the overall structure of the book remains the same, the entire code base, modules, and chapters has been updated to the latest Python 3.x release.
      Edition: 1st
      From dd4756fbb101fd59592ea955df149eb142a8a40e Mon Sep 17 00:00:00 2001 From: Dipanjan Sarkar Date: Thu, 10 Sep 2020 14:19:03 +0530 Subject: [PATCH 6/8] Update README.md --- README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 8c946fa..fa0aeab 100644 --- a/README.md +++ b/README.md @@ -12,20 +12,20 @@ Keep watching this space! ## Get the book @@ -43,28 +43,28 @@ You’ll see how to use the latest state-of-the-art frameworks in NLP, coupled w Text summarization and topic models have been overhauled so the book showcases how to build, tune, and interpret topic models in the context of an interest dataset on NIPS conference papers. Additionally, the book covers text similarity techniques with a real-world example of movie recommenders, along with sentiment analysis using supervised and unsupervised techniques. There is also a chapter dedicated to semantic analysis where you’ll see how to build your own named entity recognition (NER) system from scratch. While the overall structure of the book remains the same, the entire code base, modules, and chapters has been updated to the latest Python 3.x release.
      -Edition: 1st
      -Pages: 385
      +Edition: 2nd
      +Pages: 674
      Language: English
      Book Title: Text Analytics with Python
      +Book Subtitle: A Practitioner's Guide to Natural Language Processing
      Publisher: Apress (a part of Springer)
      -Print ISBN: 978-1-4842-2387-1
      -Online ISBN: 978-1-4842-2388-8
      -DOI: 10.1007/978-1-4842-2388-8
      +Print ISBN: 978-1-4842-4353-4
      +Online ISBN: 978-1-4842-4354-1
      +DOI: 10.1007/978-1-4842-4354-1
      Copyright: Dipanjan Sarkar

      -This book: - - Provides complete coverage of the major concepts and - techniques of natural language processing (NLP) and text analytics - - Includes practical real-world examples of techniques for implementation, - such as building a text classification system to categorize news articles, - analyzing app or game reviews using topic modeling and text summarization, - and clustering popular movie synopses and analyzing the sentiment of movie reviews - - Shows implementations based on Python and several popular open source libraries +With this book you will: +- Understanding NLP and text syntax, semantics and structure +- Discover text cleaning and feature engineering strategies +- Learn and implement text classification and text clustering +- Understand and build text summarization and topic models +- Learn about the promise of deep learning and transfer learning for NLP +- Implement hands-on examples based on Python and several popular open source libraries in NLP and text analytics, such as the natural language toolkit (`nltk`), - `gensim`, `scikit-learn`, `spaCy` and `Pattern` + `gensim`, `scikit-learn`, `spaCy`, `keras` and `tensorflow` From 3fd001043faa27ef26717dc012e6ff31733cc916 Mon Sep 17 00:00:00 2001 From: Dipanjan Sarkar Date: Thu, 10 Sep 2020 14:20:12 +0530 Subject: [PATCH 7/8] Update README.md --- New-Second-Edition/README.md | 76 +++++++++++++++--------------------- 1 file changed, 32 insertions(+), 44 deletions(-) diff --git a/New-Second-Edition/README.md b/New-Second-Edition/README.md index 3b873c1..fa0aeab 100644 --- a/New-Second-Edition/README.md +++ b/New-Second-Edition/README.md @@ -1,10 +1,10 @@ -# Text Analytics with Python -### A Practical Real-World Approach to Gaining Actionable Insights from your Data +# Text Analytics with Python - 2nd Edition +### A Practitioner's Guide to Natural Language Processing Text analytics can be a bit overwhelming and frustrating at times with the unstructured and noisy nature of textual data and the vast amount of information available. -"Text Analytics with Python" is a book packed with 385 pages of useful information +"Text Analytics with Python" is a book packed with 674 pages of useful information based on techniques, algorithms, experiences and various lessons learnt over time in analyzing text data. This repository contains datasets and code used in this book. I will also be adding various notebooks and bonus content here from time to time. @@ -12,20 +12,20 @@ Keep watching this space! ## Get the book @@ -33,50 +33,38 @@ Keep watching this space!

      ## About the book - - Book Cover + + Book Cover -Derive useful insights from your data using Python. -Learn the techniques related to natural language processing and text analytics, -and gain the skills to know which technique is best suited to solve a particular problem. +Leverage Natural Language Processing (NLP) in Python and learn how to set up your own robust environment for performing text analytics. This second edition has gone through a major revamp and introduces several significant changes and new topics based on the recent trends in NLP. -Text Analytics with Python teaches you both basic and advanced concepts, -including text and language syntax, structure, semantics. -You will focus on algorithms and techniques, such as text classification, -clustering, topic modeling, and text summarization - -A structured and comprehensive approach is followed in this book so that -readers with little or no experience do not find themselves overwhelmed. -You will start with the basics of natural language and Python and move on -to advanced analytical and machine learning concepts. You will look at each -technique and algorithm with both a bird's eye view to understand how it -can be used as well as with a microscopic view to understand the mathematical -concepts and to implement them to solve your own problems. +You’ll see how to use the latest state-of-the-art frameworks in NLP, coupled with machine learning and deep learning models for supervised sentiment analysis powered by Python to solve actual case studies. Start by reviewing Python for NLP fundamentals on strings and text data and move on to engineering representation methods for text data, including both traditional statistical models and newer deep learning-based embedding models. Improved techniques and new methods around parsing and processing text are discussed as well. +Text summarization and topic models have been overhauled so the book showcases how to build, tune, and interpret topic models in the context of an interest dataset on NIPS conference papers. Additionally, the book covers text similarity techniques with a real-world example of movie recommenders, along with sentiment analysis using supervised and unsupervised techniques. There is also a chapter dedicated to semantic analysis where you’ll see how to build your own named entity recognition (NER) system from scratch. While the overall structure of the book remains the same, the entire code base, modules, and chapters has been updated to the latest Python 3.x release.
      -Edition: 1st
      -Pages: 385
      +Edition: 2nd
      +Pages: 674
      Language: English
      Book Title: Text Analytics with Python
      +Book Subtitle: A Practitioner's Guide to Natural Language Processing
      Publisher: Apress (a part of Springer)
      -Print ISBN: 978-1-4842-2387-1
      -Online ISBN: 978-1-4842-2388-8
      -DOI: 10.1007/978-1-4842-2388-8
      +Print ISBN: 978-1-4842-4353-4
      +Online ISBN: 978-1-4842-4354-1
      +DOI: 10.1007/978-1-4842-4354-1
      Copyright: Dipanjan Sarkar

      -This book: - - Provides complete coverage of the major concepts and - techniques of natural language processing (NLP) and text analytics - - Includes practical real-world examples of techniques for implementation, - such as building a text classification system to categorize news articles, - analyzing app or game reviews using topic modeling and text summarization, - and clustering popular movie synopses and analyzing the sentiment of movie reviews - - Shows implementations based on Python and several popular open source libraries +With this book you will: +- Understanding NLP and text syntax, semantics and structure +- Discover text cleaning and feature engineering strategies +- Learn and implement text classification and text clustering +- Understand and build text summarization and topic models +- Learn about the promise of deep learning and transfer learning for NLP +- Implement hands-on examples based on Python and several popular open source libraries in NLP and text analytics, such as the natural language toolkit (`nltk`), - `gensim`, `scikit-learn`, `spaCy` and `Pattern` + `gensim`, `scikit-learn`, `spaCy`, `keras` and `tensorflow` From b4f6cefc9dd96e2a3e74e01bda391019bd7fb053 Mon Sep 17 00:00:00 2001 From: "Dipanjan (DJ) Sarkar" Date: Thu, 24 Dec 2020 21:16:20 +0530 Subject: [PATCH 8/8] Add files via upload --- ...mens Clothing E-Commerce Reviews - NLP.csv | 28228 ++++++++++++++++ 1 file changed, 28228 insertions(+) create mode 100644 media/Womens Clothing E-Commerce Reviews - NLP.csv diff --git a/media/Womens Clothing E-Commerce Reviews - NLP.csv b/media/Womens Clothing E-Commerce Reviews - NLP.csv new file mode 100644 index 0000000..c63e45a --- /dev/null +++ b/media/Womens Clothing E-Commerce Reviews - NLP.csv @@ -0,0 +1,28228 @@ +Clothing ID,Age,Title,Review Text,Rating,Recommended IND,Positive Feedback Count,Division Name,Department Name,Class Name +767,33,,Absolutely wonderful - silky and sexy and comfortable,4,1,0,Initmates,Intimate,Intimates +1080,34,,"Love this dress! it's sooo pretty. i happened to find it in a store, and i'm glad i did bc i never would have ordered it online bc it's petite. i bought a petite and am 5'8"". i love the length on me- hits just a little below the knee. would definitely be a true midi on someone who is truly petite.",5,1,4,General,Dresses,Dresses +1077,60,Some major design flaws,"I had such high hopes for this dress and really wanted it to work for me. i initially ordered the petite small (my usual size) but i found this to be outrageously small. so small in fact that i could not zip it up! i reordered it in petite medium, which was just ok. overall, the top half was comfortable and fit nicely, but the bottom half had a very tight under layer and several somewhat cheap (net) over layers. imo, a major design flaw was the net over layer sewn directly into the zipper - it c",3,0,0,General,Dresses,Dresses +1049,50,My favorite buy!,"I love, love, love this jumpsuit. it's fun, flirty, and fabulous! every time i wear it, i get nothing but great compliments!",5,1,0,General Petite,Bottoms,Pants +847,47,Flattering shirt,This shirt is very flattering to all due to the adjustable front tie. it is the perfect length to wear with leggings and it is sleeveless so it pairs well with any cardigan. love this shirt!!!,5,1,6,General,Tops,Blouses +1080,49,Not for the very petite,"I love tracy reese dresses, but this one is not for the very petite. i am just under 5 feet tall and usually wear a 0p in this brand. this dress was very pretty out of the package but its a lot of dress. the skirt is long and very full so it overwhelmed my small frame. not a stranger to alterations, shortening and narrowing the skirt would take away from the embellishment of the garment. i love the color and the idea of the style but it just did not work on me. i returned this dress.",2,0,4,General,Dresses,Dresses +858,39,Cagrcoal shimmer fun,"I aded this in my basket at hte last mintue to see what it would look like in person. (store pick up). i went with teh darkler color only because i am so pale :-) hte color is really gorgeous, and turns out it mathced everythiing i was trying on with it prefectly. it is a little baggy on me and hte xs is hte msallet size (bummer, no petite). i decided to jkeep it though, because as i said, it matvehd everything. my ejans, pants, and the 3 skirts i waas trying on (of which i ]kept all ) oops.",5,1,1,General Petite,Tops,Knits +858,39,"Shimmer, surprisingly goes with lots","I ordered this in carbon for store pick up, and had a ton of stuff (as always) to try on and used this top to pair (skirts and pants). everything went with it. the color is really nice charcoal with shimmer, and went well with pencil skirts, flare pants, etc. my only compaint is it is a bit big, sleeves are long and it doesn't go in petite. also a bit loose for me, but no xxs... so i kept it and wil ldecide later since the light color is already sold out in hte smallest size...",4,1,4,General Petite,Tops,Knits +1077,24,Flattering,I love this dress. i usually get an xs but it runs a little snug in bust so i ordered up a size. very flattering and feminine with the usual retailer flair for style.,5,1,0,General,Dresses,Dresses +1077,34,Such a fun dress!,"I'm 5""5' and 125 lbs. i ordered the s petite to make sure the length wasn't too long. i typically wear an xs regular in retailer dresses. if you're less busty (34b cup or smaller), a s petite will fit you perfectly (snug, but not tight). i love that i could dress it up for a party, or down for work. i love that the tulle is longer then the fabric underneath.",5,1,0,General,Dresses,Dresses +1077,53,Dress looks like it's made of cheap material,Dress runs small esp where the zipper area runs. i ordered the sp which typically fits me and it was very tight! the material on the top looks and feels very cheap that even just pulling on it will cause it to rip the fabric. pretty disappointed as it was going to be my christmas dress this year! needless to say it will be going back.,3,0,14,General,Dresses,Dresses +1095,39,,This dress is perfection! so pretty and flattering.,5,1,2,General Petite,Dresses,Dresses +1095,53,Perfect!!!,"More and more i find myself reliant on the reviews written by savvy shoppers before me and for the most past, they are right on in their estimation of the product. in the case of this dress-if it had not been for the reveiws-i doubt i would have even tried this. the dress is beautifully made, lined and reminiscent of the old retailer quality. it is lined in the solid periwinkle-colored fabric that matches the outer fabric print. tts and very form-fitting. falls just above the knee and does not rid",5,1,2,General Petite,Dresses,Dresses +767,44,Runs big,"Bought the black xs to go under the larkspur midi dress because they didn't bother lining the skirt portion (grrrrrrrrrrr). +my stats are 34a-28/29-36 and the xs fit very smoothly around the chest and was flowy around my lower half, so i would say it's running big. +the straps are very pretty and it could easily be nightwear too. +i'm 5'6"" and it came to just below my knees.",5,1,0,Initmates,Intimate,Intimates +1077,50,Pretty party dress with some issues,This is a nice choice for holiday gatherings. i like that the length grazes the knee so it is conservative enough for office related gatherings. the size small fit me well - i am usually a size 2/4 with a small bust. in my opinion it runs small and those with larger busts will definitely have to size up (but then perhaps the waist will be too big). the problem with this dress is the quality. the fabrics are terrible. the delicate netting type fabric on the top layer of skirt got stuck in the zip,3,1,1,General,Dresses,Dresses +1065,47,"Nice, but not for my body","I took these out of the package and wanted them to fit so badly, but i could tell before i put them on that they wouldn't. these are for an hour-glass figure. i am more straight up and down. the waist was way too small for my body shape and even if i sized up, i could tell they would still be tight in the waist and too roomy in the hips - for me. that said, they are really nice. sturdy, linen-like fabric, pretty color, well made. i hope they make someone very happy!",4,1,3,General,Bottoms,Pants +1065,34,"You need to be at least average height, or taller","Material and color is nice. the leg opening is very large. i am 5'1 (100#) and the length hits me right above my ankle. with a leg opening the size of my waist and hem line above my ankle, and front pleats to make me fluffy, i think you can imagine that it is not a flattering look. if you are at least average height or taller, this may look good on you.",3,1,2,General,Bottoms,Pants +853,41,Looks great with white pants,Took a chance on this blouse and so glad i did. i wasn't crazy about how the blouse is photographed on the model. i paired it whit white pants and it worked perfectly. crisp and clean is how i would describe it. launders well. fits great. drape is perfect. wear tucked in or out - can't go wrong.,5,1,0,General,Tops,Blouses +1120,32,Super cute and cozy,"A flattering, super cozy coat. will work well for cold, dry days and will look good with jeans or a dressier outfit. i am 5' 5'', about 135 and the small fits great.",5,1,0,General,Jackets,Outerwear +1077,47,Stylish and comfortable,"I love the look and feel of this tulle dress. i was looking for something different, but not over the top for new year's eve. i'm small chested and the top of this dress is form fitting for a flattering look. once i steamed the tulle, it was perfect! i ordered an xsp. length was perfect too.",5,1,0,General,Dresses,Dresses +847,33,"Cute, crisp shirt","If this product was in petite, i would get the petite. the regular is a little long on me but a tailor can do a simple fix on that. + +fits nicely! i'm 5'4, 130lb and pregnant so i bough t medium to grow into. + +the tie can be front or back so provides for some nice flexibility on form fitting.",4,1,2,General,Tops,Blouses +1080,55,I'm torn!,"I'm upset because for the price of the dress, i thought it was embroidered! no, that is a print on the fabric. i think i cried a little when i opened the box. it is still ver pretty. i would say it is true to size, it is a tad bit big on me, but i am very tiny, but i can still get away with it. the color is vibrant. the style is unique. skirt portion is pretty poofy. i keep going back and forth on it mainly because of the price, although the quality is definitely there. except i wish it were emb",4,1,14,General,Dresses,Dresses +1077,31,Not what it looks like,"First of all, this is not pullover styling. there is a side zipper. i wouldn't have purchased it if i knew there was a side zipper because i have a large bust and side zippers are next to impossible for me. + +second of all, the tulle feels and looks cheap and the slip has an awkward tight shape underneath. + +not at all what is looks like or is described as. sadly will be returning, but i'm sure i will find something to exchange it for!",2,0,7,General,Dresses,Dresses +1077,34,"Like it, but don't love it.","Cute little dress fits tts. it is a little high waisted. good length for my 5'9 height. i like the dress, i'm just not in love with it. i dont think it looks or feels cheap. it appears just as pictured.",3,1,0,General,Dresses,Dresses +847,55,Versatile,"I love this shirt because when i first saw it, i wasn't sure if it was a shirt or dress. since it is see-through if you wear it like a dress you will need a slip or wear it with leggings. i bought a slip, wore the tie in the back, and rocked it with white wedges. you could also wear it as a vest. be careful with the buttons. i haven't had any fall off yet, but i feel like they will. overall it's great for any occasion and it's fun to wear!",5,1,0,General,Tops,Blouses +697,31,Falls flat,"Loved the material, but i didnt really look at how long the dress was before i purchased both a large and a medium. im 5'5"" and there was atleast 5"" of material at my feet. the gaps in the front are much wider than they look. felt like the dress just fell flat. both were returned. im usually a large and the med fit better. 36d 30 in jeans",3,0,0,Initmates,Intimate,Lounge +949,33,Huge disappointment,I have been waiting for this sweater coat to ship for weeks and i was so excited for it to arrive. this coat is not true to size and made me look short and squat. the sleeves are very wide (although long). as a light weight fall coat the sleeves don't need to be as wide because you wouldn't be layerng too much underneath. the buttons need to be moved at least three inches in for a nicer fit. i thought about redoing the buttons myself but the sleeves looked even more out of proportion with a tigh,2,0,0,General,Tops,Sweaters +1003,31,"Loved, but returned","The colors weren't what i expected either. the dark blue is much more vibrant and i just couldn't find anything to really go with it. fabric is thick and good quality. has nice weight and movement to it. the skirt just wasn't for me, in the end.",4,1,0,General,Bottoms,Skirts +684,53,Great shirt!!!,I have several of goodhyouman shirts and i get so many compliments on them. especially the one that says forehead kisses are underrated. don't hesitate. buy this shirt. you won't be sorry.....,5,1,2,Initmates,Intimate,Lounge +4,28,Great layering piece,"This sweater is so comfy and classic - it balances a quirky hand-knit look with a beautiful color and practical fit. it is a bit cropped and boxy as part of the style, and as others mentioned, there are gaps in the knit that make it see-through. in my opinion this makes it perfect for layering! i like having a longer camisole showing underneath, or wearing it over a little dress. it's warm but still thin enough to fit under a jacket or coat.",5,1,0,General,Tops,Sweaters +1060,33,,Beautifully made pants and on trend with the flared crop. so much cuter in person. love these!,5,1,0,General Petite,Bottoms,Pants +1060,46,Cuter in oerson!,"I never would have given these pants a second look online, in person they are much cuter! the stripes are brighter and the fit more flattering. the crop has a cute flare which is right on trend. this brand has always run small for me, i am 5'8 about 140lbs and carry some chubbiness in the belly. i paired it with a collarless loose navy blazer",5,1,7,General Petite,Bottoms,Pants +1060,21,Love these pants,These pants are even better in person. the only downside is that they need to be dry cleaned.,5,1,0,General Petite,Bottoms,Pants +949,36,Mehh,"I ordered this 3 months ago, and it finally came off back order. a huge disappointment. the fit wasn't so much the issue for me. the quality of the wool is subpar. someone else mentioned a "felted wool"...i guess, is that what you call it? it does literally feel like felt! super thin, itchy, doesn't drape very well, and feels cheap (made in china). i got it on sale, but still not worth what i paid. definitely going back.",2,0,0,General,Tops,Sweaters +697,39,Love this dress!,"This is such a neat dress. the color is great and the fabric is super soft. i am tall so the long length was an added bonus. it definitely needs something underneath since the front gaps. i am going to pair it with a funky tank top, necklaces and boots. super cute!!",5,1,0,Initmates,Intimate,Lounge +1060,65,Lovely!,"Wouldn't have given them a second look but tried them on in store of a whim. love, love!!",4,1,3,General Petite,Bottoms,Pants +1002,29,,"This is a comfortable skirt that can span seasons easily. while not the most exciting design, it is a good work skirt that can be paired with many tops.",4,1,5,General,Bottoms,Skirts +949,38,Beautifully cut lightweight coat,"Just ordered this in a small for me (5'6"", 135, size 4) and medium for my mom (5'3"", 130, size 8) and it is gorgeous - beautifully draped, all the weight/warmth i'll need for houston fall and winter, looks polished snapped or unsnapped. age-appropriate for both my mom (60's) and myself (30's). will look amazing with skinny jeans or leggings. we ordered the gray which is true to the photos.",5,1,1,General,Tops,Sweaters +684,36,,Super cute and comfy pull over. sizing is accurate. material has a little bit of stretch.,5,1,2,Initmates,Intimate,Lounge +862,59,,Great casual top with flare. looks cute with grey pilcro stet jeans. flattering with peplum in back. nice cut for shoulders and neckline.,5,1,0,General,Tops,Knits +862,47,,"Pretty and unique. great with jeans or i have worn it to work with slacks and heels. the colors, print, and embroidery are lovely. reasonably priced!",4,1,1,General,Tops,Knits +862,40,,"This is a beautiful top. it's unique and not so ordinary. i bought my usual medium and i found that it fits tight across my chest. although i had a baby this year and i am nursing, so that could be why. if i bought again i would size up.",5,1,0,General,Tops,Knits +910,23,Soft & lovely,"This poncho is so cute i love the plaid check design, the colors look like sorbet & cream and it will pair well with a turtleneck and jeans or pencil skirt and heels. i love this look for fall and it can roll right into spring. great buy!!",5,1,0,General,Tops,Fine gauge +89,67,Some things you should know...,"First, this is thermal ,so naturally i didn't expect super sheer, but it is. really sheer light fabric. i like it, but be prepared for considering who you might run into if you walk around the house in it. second, it is large. i ordered the size 0 and it's a nice oversized fit for my 5'3"" 125 pounds. i wouldn't want to go larger. along with being sheer, the fabric is easily stretched, which i don't mind in this case. finally, the color. it looks white on my monitor and shows a colorful blue dot",4,1,1,Initmates,Intimate,Sleep +862,48,Beautiful!,"Tried this on today at my local retailer and had to have it. it is so comfortable and flattering. it's too bad the picture online has the model tucking it into the skirt because you can't see the ruching across the front. a little dressier alternative to a plain tee and reasonably priced for retailer. 5'8"""" and i generally wear a 6, the small fit well. will probably be back for the black!",5,1,9,General,Tops,Knits +862,43,Love the two tone design,I bought this item from online... the fit on the model looked a little loose but when i got mine it seemed a bit tight! so i took it back to the store & ordered a larger size. for the sale price this is a great top.,4,1,0,General,Tops,Knits +862,40,,I love this top. i wear it all the time. the problem is that you can tell i wear it all the time as the fabric has started to fade. i'd still recommend it as it is so comfortable.,5,1,0,General,Tops,Knits +823,52,,"Very comfortable, material is good, cut out on sleeves flattering",5,1,0,General,Tops,Blouses +910,56,Love the color!,"This sweater is perfect for fall...it's roomy, warm, super comfy and the color really pops.",5,1,0,General,Tops,Fine gauge +862,33,Love the embroidery!,"Really cute top! the embroidery on the collar & bib of this top is beautiful and unique, received lots of compliments & questions about where i got it. i'm rather busty up top and the medium fit well, a small probably would've fit better but it's still super adorable.",5,1,0,General,Tops,Knits +862,46,Cute for fall,"This is a cute top that can transition easily from summer to fall. it fits well, nice print and it's comfortable. i tried this on in the store, but did not purchase it because the color washed me out. this is not the best color for a blonde. would look much better on a brunette. if this was in a different color i most likely would have purchased it.",4,1,1,General,Tops,Knits +862,41,Love,"I absolutely love this bib tee! it's probably my favorite retailer purchase of all time. i'm 5'7"", 140 pounds and the small was a perfect fit for me. i typically wear either a s or m tops.",5,1,2,General,Tops,Knits +1104,39,,"Love the color and style, but material snags easily",3,1,3,General,Dresses,Dresses +862,39,Flattering and comfortable,"Very soft and comfortable. the shirt has an unusual, asymmetrical seam that appears along the front, right-hand side of the garment. (the model is positioned so that you can't see this detail from the picture. i attached a picture that includes the front seam.) i actually like the seam - it creates more visual interest, and adds a little bit of ruching that helps hide my belly. the cowl neck is very well done - there are two layers that form the cowl, and i've found that it means wardrobe malfun",5,1,34,General,Tops,Knits +862,66,Cute top,"Nice top. armholes are a bit oversized but as an older woman, i'm picky about that. the print is pretty and unusual. it just didn't look great on me. there's a slight peplum in the back that hangs nicely. it's a lightweight tee fabric that's opaque. i tried it on with a black bra which was barely visible. great for warmer climates but there are so many gorgeous tops out now, that i decided to return since summer is winding down. i do recommend.",4,1,2,General,Tops,Knits +862,61,Soft and cute as can be!,This is an adorable top that i find to be extremely comfortable. i don't usually buy prints but this one is so feminine and looks great with dark wash jeans. i am a 36d and the medium was a perfect fit.,5,1,2,General,Tops,Knits +368,33,,"I am pregnant and i thought this would be a great sleep bra. it's soft and fits okay, but it has zero support or shape. i would only buy if you are a b cup or smaller and can get away without support. if i would have seen this is the store, i would have passed over it. however, i was too lazy to return so i am wearing it. it's comfortable so that's a redeeming quality. i would not recommend for larger chested ladies, though!",2,0,3,Initmates,Intimate,Intimates +862,31,"Boring front, great back",This tank fit well and i loved the ruffle in the back and how it layed. but the front was not a good look and i will be retuning it.,3,0,0,General,Tops,Knits +1095,36,,"I got this in the petite length, size o, and it fit just right. i like that i didn't have to have it altered in the length; can wear with flats with plenty of clearance to the floor from the bottom hem. my only beef with the design is the height of the waist. i personally think that the elastic waistband looks cheap, and really needs to be concealed with a belt, yet because it sits so high, literally right under the bustline, it's a tricky one to pull off. i have a wide belt that sort of does th",4,1,0,General Petite,Dresses,Dresses +368,52,Soft and comfortable,"I've been looking for bralettes that provide some support but not binding/tight for night time and casual wear. this is a light weight bra, could be a little more supportive. pretty color, with nice lines. only downside is the retailer tag on the back - itchy (i need to remove it.)",4,1,1,Initmates,Intimate,Intimates +1095,41,Gorgeous dress!,"This dress is simply beautiful and stunning. it is so figure flattering and i can't wait to wear it. size small worked for me, and since i'm tall it fell right to my ankle which is perfect for me. i could not be happier with the purchase and the keyhole in the back is a beautiful detail.",5,1,0,General Petite,Dresses,Dresses +368,36,Itchy tags,"3 tags sewn in, 2 small (about 1'' long) and 1 huge (about 2'' x 3''). very itchy so i cut them out. then the thread left behind was plasticy and even more itchy! how can you make an intimates item with such itchy tags? not comfortable at all! also - i love bralettes and wear them all the time including to work. i am a b cup. however, this one is so thin and flimsy that it gives no support even to a b cup - so for me this would only be a lounging bralette - if it wasn't so itchy!",1,0,0,Initmates,Intimate,Intimates +862,28,Must have,I recently got this on sale after looking at it forever on my wish list. i'm so happy with it. its very comfortable and just long enough for my torso (5'3). the pattern on the front is very flattering.,5,1,0,General,Tops,Knits +862,57,Cute top! love the brand,"Very comfortable shirt, light weight top with lovely floral colors. great for spring/summer with white jeans. love everything one september makes!",5,1,1,General,Tops,Knits +862,43,Love this top,Loved this top and was really happy to find it on sale!,5,1,0,General,Tops,Knits +862,58,,"Beautiful top, but delicate! i wore it to school and the straps on my backpack caused some pilling. other than that it is beautiful and vibrant! just make sure you aren't doing/wearing anything that will rub it continuously since the fabric is delicate",4,1,2,General,Tops,Knits +862,60,Super cute and unique top,"Just received this in the mail, tried it on and am smitten. i'm usually a l, but sometimes i'm a xl (if no stretch), in retailer tops. i bought this one in l and i'm sure glad i did. very flowy, stretchy and comfortable. i also bought the meda lace top from one september and they are very similar expect this is more of a t-shirt and the other is more of a blouse. i almost think i could've gotten a m in this because there is a lot of extra fabric at the chest which is usually never the issue for me",4,1,9,General,Tops,Knits +862,40,Beautiful top,"Love this top! i kept eyeing it online and wavering on size, since my post-baby body is a little wonky. i went with the xsp, and miraculously, it works perfectly! so, i would say it does run just a little large..... i love the length, and usually do not go with petite sizes at retailer because i like the longer lengths of the regular. but this is perfect on me, and there is give up top, so it looks lovely. and it is very soft and comfortable. this will be a go-to top this season!",5,1,1,General,Tops,Knits +862,37,I wanted to love this top...,"I really loved this top online and wanted to love it in person. it is soft and the patter is okay in person. the neckline is higher than i am used to. also, there are two buttons in the back that must be unbuttoned in order to wear the top. it is difficult to button them behind your neck with the top on. unfortunately i had to return this item...",2,0,0,General,Tops,Knits +1078,56,Great summer fabric!,"I really wanted this to work. alas, it had a strange fit for me. the straps would not stay up, and it had a weird fit under the breast. it worked standing up, but the minute i sat down it fell off my shoulders. the fabric was beautiful! and i loved that it had pockets.",3,0,1,General Petite,Dresses,Dresses +845,38,"Cute, but massive sweep","This top is so cute, but it is massively babydoll shaped (a- line) which is not apparent from the pictures. i measured the xs i have and the chest is about 42"" and sweep is over 70"". i would definitely keep this top if it hung straighter. the craftsmanship is lovely and fabric is so natural and handwoven looking. i'm thinking about asking my tailor if she can take the sides in, but that might ruin it as the fabric layout is cut and proportioned to this swing style.",4,1,10,General Petite,Tops,Blouses +822,36,Short and boxy,"Why do designers keep making crop tops??!! i can't imagine this would be flattering on anyone, especially someone average height and well endowed on top. i looked like a football player. the pattern and fabric are gorgeous, so if you are like 4' tall and super tiny and can fit xxs this may work? i am between a 6-8 and fit a small and it was huge on me and almost was bigger at the bottom than the top. such a weird cut. there is a cami underneath so if it rides up that will show but that is so 80s",2,0,0,General,Tops,Blouses +850,27,Beautiful design,"I have a short torso and this works well for me. 34c, bought the 0. there's not much stretch to the fabric so it is fitted to my chest, but not in an uncomfortable way. definitely doesn't hang and have extra fabric like on the model. + +zipper goes almost all the way down to the bottom so it's easier to get on and off which makes up for the lack of stretch n the fabric. + +unlike another reviewer, i found it went really well with navy pants and i wore it to a business meeting under a blazer. wi",5,1,4,General,Tops,Blouses +866,47,,"I love this top. it is loose and comfortable. it is not sheer so you don't need a cami. it runs a little large so size down if you want a more tailored fit. 1 criticism, it catches on sharp jewelry or belts and can pull if you are not careful.",4,1,0,General Petite,Tops,Knits +1081,59,,I passed up this dress so many times in the store and finally tried it on today because i wanted a casual dress while traveling in the cape. i was surprised how much cuter it is on than on hanger. i sized down to get a more fitting look and really made a difference for me in style. i was not a fan of the way it looked so loose on model. it looks really cute fitted and a bit sexy even. it is lined and very comfy and can be dressed up a but for work with a cardi. i believe i will get a lot of wear,5,1,1,General Petite,Dresses,Dresses +845,48,Very very cute but a lot of fabric,"I am so drawn to baby doll and boxy shirts so i immediately tried this on in the store. i am petite and only 5'2"", so usually shirts with a lot of fabric swallow me whole but this one was still cute. there is a lot more fabric than the picture lets on, but i think it is still super cute and flattering. i would definitely check the size chart and read comments to see if someone with your same size description has recommended a specific size for your body type. i am petite and weigh about 110 lbs",5,1,5,General Petite,Tops,Blouses +1082,31,Runs large in top and waist,"I would have loved this dress if the bust and waist were just a little more fitted. i am 32c and the top was too big. fit perfectly on hips. the lace material means it cannot be easily altered, so i chose to return the dress. i would have definitely kept it if it were a better fit.",4,1,0,General,Dresses,Dresses +850,28,Zipper broke,"The zipper broke on this piece the first time i wore it. very disappointing since i love the design. i'm actually going to try to replace the zipper myself with something stronger, but annoying that it's come to that.",2,0,0,General Petite,Tops,Blouses +836,47,Obsessed,I usually size up with this brand. small was perfect for me at 135lbs. this top has a luxurious but casual feel and beautiful. i am obsessed and want to wear it everyday. it wears a little long and drapey but a little tight where it rolls up in the arms.,5,1,1,General,Tops,Blouses +1081,62,So cute...but dry clean?!,"This dress is adorable - it's a perfect casual look for summer and the quality is nice with the lining (though still overpriced, in my opinion). the tie detail is somewhat adjustable, and i found my normal size s to fit fine (5'7, 128#). where this gets me is the fact that it's dry clean...totally doesn't make sense for a dress that is essentially a fancy tshirt for summer. i might bring it back for that alone, since i originally planned to wear it a lot. :(",4,1,2,General Petite,Dresses,Dresses +1072,68,Elegant classic dress,"I am usually a petite 6 but since this dress did not come in petites i tried on 4 and it fit. i'm 5'1"" -112lbs so dress hit rt below knee -will have it hemmed up a bit do not so overwhelming. + +this dress looks stunning on! great vibrant color ( i have dark hair) makes this classic elegant dress look contemporary and stylish. when i tried it on in store, salesperson and others who happen to see it on me raved and told me to grab it! i did and am glad. + +i plan to wear it this spring for my daughte",5,1,1,General,Dresses,Dresses +863,61,,Loved this top. great design. comfortable and unique. soft material,5,1,4,General Petite,Tops,Knits +1133,33,Cute parka!,"The rest of the reviewers are right about the color being in accurately pictured. i ordered the dark orange color and i recieved more of a dark cedar brown colored jacket. the print is great, i love it! it's so different than any other jackets ive seen. while the jacket is ã¼ber cute, it is a bit bulky (though the waist tie helps with that) and its not heavy winter appropriate ( it's not waterproof or heavily insulated). for your average winter day though, it will be a fun option! the removable v",5,1,0,General,Jackets,Outerwear +822,68,Just lovely,"I purchased this top in an antro store last week. the quality is wonderful and the greenish blue color is very unique. the blouse has a beautiful stretchy camsiole that is attached at the shoulders, but can be removed by snaps. i tooks great when worn two different ways. i wore it with the campole out, and it peeks through the blouse at the bottom. it also looks great when the camisole is worn in. my only wish is that it would come in a petite size as it's a touch big at the shoulders and neckli",5,1,3,General,Tops,Blouses +861,37,Casual & unique tee,"I received this shirt in my typical xs and it fits perfectly. i?m not crazy in love with it but i also don?t dislike. the shirt is on the thin side. do i need to wear a cami underneath it, no. my concern is holes. it does remind me of a material that could develop some holes after some wear and washes. with that being said i?ll wash this shirt in cold water and hang dry and hopefully that will prevent holes from developing. the length is fine and i do like the slits in front?it adds a little dim",3,1,0,General Petite,Tops,Knits +866,58,,"I was really hoping to like this, but it did not look the way it does on the model, at least not on me. the sharkbite hem is much more pronounced and looser. the one in the photo looks like it was pinned back. i am 5'8"" and usually wear a medium or large. i got a medium and there was a lot more material on the bottom half than the photo shows. it made me look bigger and was not flattering. material has a nice weave but it's thin and delicate. i bought the (holly) deep olive and the blue. colors",1,0,2,General Petite,Tops,Knits +850,39,Neutral blue,"I tried this on from the sale section, and they only had a 2 (i usually do 0), and surprisingly, that size was the right fit. it is fitted, with just enough room to eat :-) +te blue is a light blue, almost neutral, with the white embroidery, i think it looked stylish, and decided to keep it. the peplum part hit just in the right spot, i am short (petite) but my torso is normal size...",4,1,0,General Petite,Tops,Blouses +1081,39,True to size to large,"I debated n that as i think it looks loose on the model, but if i was to tighten it, it looks a lot more flattering... i tried on the xs in the store (i usually do that to decide if i need petite), and it looked huge, when we pinched the back to see if xxs would work, it was a lot of fabric, and looser didn't look as good on me... but i like the dress overall, so still recommend. and for those who like the looser look, this is great. i would, however, order eptite for 5'1.5"". (115 lbs, 03 dd che",4,1,9,General Petite,Dresses,Dresses +845,38,Huge,"Really cute piece, but it's huge. i ordered an xxs petite and it was unfortunately extremely wide and not flattering. returning.",2,0,4,General Petite,Tops,Blouses +836,24,"Pretty, but not for me...","I bought this top online in the burnt orange color and was so excited to get it. when i tried it on, the fit was fine but it just lacked...something. the back was a little bit too long, the front was a little bit too short and it lacked the overall tailored look that i was after. gorgeous fabric and top, but not for me. i wanted something more for $150! bought the velvet tunic instead ;)",4,1,3,General,Tops,Blouses +1078,51,Sweet flattering dress,"I love cute summer dresses and this one, especially because it is made out of linen, is unique. it is very well-made with a design that is quite flattering. i am 5 foot 6 and a little curvy with a 38 c bust and i got a size 10. it fits well although it is difficult to zip up because the material has no give. the perfect dress to wear to italy or france! now i just have to book my tickets!",4,1,0,General Petite,Dresses,Dresses +850,29,,"This top is so much prettier in real life than it is on the model. the pattern and texture are both lovely, and the peplum is surprisingly flattering. it is definitely on the short side, but i think that gives it a modern look. the fabric does not stretch at all, but i still think it fits tts. if you have a very large chest you may want to go up a size, but otherwise i would order your normal size.",5,1,5,General Petite,Tops,Blouses +861,23,,,5,1,0,General Petite,Tops,Knits +1081,31,,,5,1,0,General,Dresses,Dresses +850,23,"Beautifully made, but not versatile","This shirt caught my eye because of how beautiful it was. i love the shape, design, and and the color. it's perfect for spring and summer with some white pants. unfortunately, i don't see any possibilities for this shirt to be worn any other way. so far, it doesn't work with any of my jeans, skirts, or shorts. i usually prefer items with more versatility for outfits, so i'm still on the fence if i'm going to keep it or not. with that aside, it seriously is a great quality shirt with a beautiful",4,1,3,General Petite,Tops,Blouses +863,83,Casual elegance!,"Purchased this top online, and when i received it was very pleased. +it has and elegant cut and yet is a casual fabric. +love that the sleeves run longer......ads to the overall look. +also loved the v neckline.........enhances the feel of the overall style. +with various necklaces this top has limitless options! +the color states moss....which i usually think of as greenish brown......i found it to be more of a taupe. +would have liked it to have a green tones, however it is still a fantastic f",5,1,14,General,Tops,Knits +845,44,,"I usually wear a medium and bought a small. it fit ok, but had no shape and was not flattering. i love baby doll dresses and tops, but this was a tent. my daughter saw me try it on and said ""that's a piece of tablecloth."" it's going back.",1,0,0,General Petite,Tops,Blouses +861,44,Huge,"I was very excited to order this top in red xs. so cute, but it was huge, shapeless and support thin! it had to go back. i should've looked at other reviews.",1,0,0,General Petite,Tops,Knits +1133,50,,,5,1,0,General,Jackets,Outerwear +861,33,Pernette henley,"I am in need of easy comfortable tops for everyday wear. i bought this top mostly because of the cute buttons. when i received it, it looked exactly as it does in the picture online, however, the buttons kept slipping out of their homes because the holes were slightly too big. the shirt fit but was just a tad snug near the upper arms, which would stretch and loosen up throughout the day. it's definitely a comfortable shirt, but it felt more like a pajama top. it's going back.",3,0,17,General Petite,Tops,Knits +861,39,Comfy,"At first i wasn't sure about it. the neckline is much lower and wavy than i thought. but after wearing it, it really is comfortable. it stretches a lot, so i wear a cami underneath so when i lean forward i'm not showing the world my torso.",4,1,0,General Petite,Tops,Knits +863,40,"Simple, stylish, lovely-runs a bit big","I find that this brand can be a little bit all-over-the-place with sizes. had i tried this on in person i may have bought it in a small instead of a m. despite being a bit big it still looks great and hides my flaws well. i bought a m in another shirt from them (the seamed scoop neck) and that shirt was a full 2 inches smaller in the bust than this. just something to keep in mind. still a great shirt, love the neutral color.",4,1,5,General,Tops,Knits +822,69,Stunning lace top,This top is absolutely stunning. i purchased the white one. just received and it fits nicely-a little on the big side but i believe it looks better that way. this will look great with everything. it is well constructed and looks very unique. love it!,5,1,2,General,Tops,Blouses +822,23,Not a fan,The fabric felt cheap and i didn't find it to be a flattering top. for reference i am wearing a medium in the photos and my measurements are 38-30-40.,2,0,9,General,Tops,Blouses +863,51,,"Runs big and looked unflattering. i am petite, might work on someone taller.",2,0,0,General,Tops,Knits +836,66,Excited ... but ...,"I bought this lovely silk/velvet shirt in the "sky" color but it is more on the teal blue side than sky blue, which disappointed me. it is definitely darker than appears in photo. still a luxurious well-made beauty with sassy appeal. it drapes like a snake slithering down your body. it comes with attitude.",5,1,0,General,Tops,Blouses +836,47,Beautiful shirt but runs small!,Was so excited to order this beautiful shirt! and the color sky is gorgeous! but as another reviewer said--it runs small. it was also way too short. so sadly i will be returning this. i gave it 5 stars because it is beautiful and great quality--it just didn't fit me.,4,1,11,General,Tops,Blouses +836,66,Beautiful,I ordered ivory in xl because this brand tends to run tight if you're well endowed. it's a beautiful color and i love the contrasting plaid lining the inside of the collar and cuffs. haven't decided about keeping it because it looks oversized (but cozy) and it's really long. it almost touches the top of my knees in back. sooooo pretty though.,4,1,0,General,Tops,Blouses +836,23,Perfect fall shirt!,"The shirt is exactly as it is pictured, i have the burnt orange color and love it! i received numerous compliments both paired with jeans and tucked into a fun skirt. it fits true to size, as i normally wear a small in all retailer however it is the slightest bit tight in the shoulders. i would give this top a 5/5.",5,1,3,General,Tops,Blouses +1081,47,,"Perfect dress for hot, humid, sticky weather.",5,1,0,General,Dresses,Dresses +861,44,Poor quality,This is so thin and poor quality. especially for the price. it felt like a thin pajama top. the buttons are terrible little shell buttons. this could not have been returned faster.,1,0,11,General Petite,Tops,Knits +1081,44,An almost for me...,"I didn't end up keeping this dress...it just wasn't right for me. it is very cute and fit well but the fabric was very thin (partially lined which is a plus) and the hem line coming up on the sides made it just too short for me. i ordered the petite xs and liked the length in front and back well but the side slit/vent was just too high for my liking. the tie part hit at the perfect spot for me at only 5'4"" (~118#). i guess i just didn't ""love"" it and would rather save my funds for something i ca",3,1,4,General,Dresses,Dresses +836,50,"Beautiful, stunning, cozy top!","I read the first review on this and ordered both a small and a medium as i thought this would run small. i have to totally disagree with the reviewer! i find that this top runs true to size or even generous! the sky color is so pretty and this top can be dressed up with some nice heels and a necklace or it can be comfy casual! i usually wear a small in hh brand and this one was true to fit (5""2"", broad shoulders, 120 lb)",5,1,24,General,Tops,Blouses +1081,61,Cute and comfy,"This dress is comfortable and stylish at the same time. it runs true to size. i'm 5'1"" 113 lbs and got the xs petite. wore it once so far for a few hours and got a few compliments on it!",5,1,3,General,Dresses,Dresses +1082,32,Disappointing quality,"The design/shape of the dress are quite flattering, flirty and feminine. but.... there is no way that the dress i received is new. the color is a faded washed out red and there are black stains all over the belt area. there is no tag... the fabric looks droopy and laundered and is not crisp, stiff or new. i am very disappointed by the quality of the item that i received. undoubtedly this one is going back. + +dear retailer - please make sure that you do not send pre-owend clothing articles to",2,0,0,General,Dresses,Dresses +863,52,Cute tee,"This one totally worked for me. love the color, length, and style.",4,1,0,General,Tops,Knits +1072,51,Very vintage feel,"Prior reviewer nailed it with the summary of this dress. it definitely needs heels. i'm 5'4"", 120#, 34d and this is a size 36. i usually wear a size s or 4 with most retailer stuff.",4,1,1,General,Dresses,Dresses +1078,32,,"This is the perfect summer dress. it can be dressed up or down. the quality of the linen fabric is very nice. i'm 5'1"" and it hit right below my knees. i found it to run true to size. those with a smaller bust might want to go down a size, but the tie in the front can be adjusted. it's lovely.",5,1,2,General Petite,Dresses,Dresses +850,37,Awkward fitting,"First, the fabric is beautiful and lovely for spring and summer. i really wanted to like this top, but the fitting is so awkward for me. i typically where a 0/xs, and sized up in the shirt to a size 2. it was very tight and pulled funny across the chest (size 32/a). i also found the cut at the shoulders very narrow (need a strapless bra) and made it look unflattering overall. had to return this one back to the store.",2,0,0,General,Tops,Blouses +836,54,Cozy casual - perfect for fall,"The color is perfect for fall and into winter. only the inside collar on the photo shows the subtle plaid lining. the lining was an unexpected bonus, and adds even more dimension to the shirt if the sleeves are turned up. +the fit is true to size and the 'stressed' velvet fabric is current for this season. +i'm going to enjoy wearing this shirt.",5,1,4,General,Tops,Blouses +861,33,The perfect striped t,"The perfect striped t-shirt, and the cute little buttons down the front are a wonderful accent with each one being different. i love it!",5,1,0,General Petite,Tops,Knits +966,63,,Great look and you can wear this vest with almost everything . i normally wear a small but they only had mediums and it fit fine( i like it tied). this will stay in my closet all year round . it does look like it will wrinkle easily but that doesn't bother me . a must buy !,5,1,0,General,Jackets,Jackets +1196,29,,"This is a great pull over dress that can easily be dressed to wear to work, to a bbq, or to happy hour. i have a large chest which sometimes makes this fit look like a tent but this fabric drapes nicely. the only thing i would note is the neckline was slightly higher on me than for the model.",5,1,0,General Petite,Dresses,Dresses +836,24,So beautiful! gorgeous orange color!,"After reading the previous reviews, i ordered a size larger. i am so glad i did it! it fits perfectly! i am 5'4""/115/32dd and went with the s regular. so beautiful! i can't wait to wear it!",5,1,0,General,Tops,Blouses +923,50,"Lovely top, not lovely shape","I was so excited to try out this top since it was such a bargain and neutral. unfortunately, the shape is ""a"" line and accentuates the hip area a bit more than i find flattering. so, it will be returned.",3,0,2,General,Tops,Sweaters +1072,34,"Wonderfully made, poorly designed for busty gals","Like others reviewers mentioned on here, this dress is extremely well made. but there were too many cons for me, as well. this would most certainly work on a petite/shorter frame, but for tall, busty, and curvier girls, it just sits wrong on all places unfortunately. the color is lovely along with the nice collar that ties in the back really made this dress stand out. + +however, i'm a 36c and found that the arm/shoulder part so large and bulky that is made me look bigger on top. there was entirel",3,1,1,General,Dresses,Dresses +1133,71,,"I read the previous reviews and had hoped that the exclamations about the color being inaccurate were exaggerated- however they are sadly very true. let me be clear that this is a beautiful, comfortable piece of clothing- when you put it on it feels thick and of very good quality. and while the pattern is interesting and pretty, the ""dark orange"" color i was expecting is actually a mud brown. i think it's unfortunate that retailer misrepresented such a key element of the jacket, but i digress. the",4,1,0,General,Jackets,Outerwear +1133,30,,"This coat is beautiful! i love the color and the design. it definitely runs a little large. i usually wear a small or a zero and i can wear a small wth a large sweater underneath no problem. i might have wanted an extra small but i just stuck with the small because i needed the coat already. the vest keeps it warm, but the sleeves aren't lined so it's cold unless you have a nice sweater underneath it if you're going to be in cold weather.",5,1,0,General,Jackets,Outerwear +966,52,Cute vest but...,"Nice vest, pretty olive color, hangs nice but...its just kinda funny. just hangs and really looks odd when tied. i like the laying piece just wished it had more ""umph"".",4,1,0,General,Jackets,Jackets +863,28,Great top,This top is super comfy and casual. the slit/design in the front gives it more of a stylish look than your average white long sleeve tee. would definitely recommend.,5,1,0,General,Tops,Knits +845,62,,"Intrepid soul that i am, i washed it in the machine in cold water on a 25 minute cycle, then put it in the dryer for 8 minutes, shook it out, hung it up, and it is just the same as when it went in. doesn't need to be ironed and didn't shrink. yes, the swing is vast, but that is part of its charm. pair it with a fitted piece on the bottom and no one will think that you are actually needing that much material to cover anything! i think it is fun, something i will use for years, wonderfully comfort",4,1,3,General Petite,Tops,Blouses +1081,39,Just ok,"It's ok, fit doesn't wow me because of my body. chest is too wide, hips look too narrow. drapes across my back fat in an especially non-flattering way. basically made my square-apple body look more square-apple. great part about this dress is that it's comfy and hides the tummy pooch. construction is poorly done...contrasting liner at v-neck is rolling out on one side only and then doing the same at the hem contralaterally. another negative point is dry clean only. boo. i'm 5'3"" 140# 39-28-35 an",3,1,0,General,Dresses,Dresses +861,46,Pernette henley,"In my retailer this was hung over in the pj section, and it really has more of a jammie top feel... soft, thin and stretchy. it's super cozy and comfortable and it drapes really nice. mine seems to have stretched out a little, especially the neckline (and the little buttons have a hard time staying closed). i'm happy with it though for what it is - a great, casual day t.",4,1,1,General Petite,Tops,Knits +966,36,Stylish and versatile!,"I love this vest! there are so many ways to style it...open or tied closed, over a dress or with a tshirt and jeans. i get compliments every time i wear it. it's soft and light enough to add interest to an outfit without being too heavy/hot to wear all day.",5,1,0,General,Jackets,Jackets +845,65,You'll smile on a humid summer's day,"This blouse is a perfect creation: perfect-weight cotton, many, many details, and color, all perfectly executed. there's fullness to the body, so this will definitely be easy to wear in hot, humid locations this summer, and it would be easy to pair with many things you have already for a casual yet collected look. there's no mistaking quality when you look at this piece! i bought the medium for my 130#, 34f, size 8 blouse/tee frame. this is the blouse you will have for years, and you will enjoy",5,1,12,General Petite,Tops,Blouses +861,35,,,4,1,0,General Petite,Tops,Knits +966,31,A new staple for my wardrobe,"Love this vest! the color looks a little more brown in the picture than it really is--it's a deep forest green that goes great with jeans or black pants. a great piece for polished but casual style, and the fabric has a nice, soft suede-like finish. + +if only the was *slightly* higher to hit my true natural waist, it would get that fifth star (but sometimes i wear petite sizes, so that might be the issue here--still looks good tied).",4,1,0,General,Jackets,Jackets +836,52,Runs short,I received the sky color in m online. am definetly keeping it as it is beautiful. however i wish they had made it a little less wide and more long. i am 5 3 and could totally size down to a s but even at my height it would be too short. i like crop tops and waist hitting tops a lot. but the shortness on this one just looks like it shrunk in the dryer,4,1,0,General,Tops,Blouses +126,34,Feminine alternative to your shapeless puffer,I am obsessed with peplum down coats because the ones you usually see have no shape and are extremely unflattering. i was excited for this to arrive. this is quite nice and it looks more feminine than the other down coats out there. the coat itself runs just true to my shirt size but not what i want for a coat. i will be returning this for a size up because i will want to wear a sweater or at least maybe a thicker shirt under this especially for winter or fall. the fabric is decent and the weigh,4,1,1,Initmates,Intimate,Lounge +1008,31,Love. love. love this skirt!!,"The silhouette and length of this skirt and length are flattering, classic and comfortable! the colors and weight of this skirt make it versatile - could be worn year-round (so long as it's not 100 degrees out - there is a bit of weight to it). it's one of my favorite pieces in my closet. can be styled 20 different ways. pair with a higher-end tee, tank, denim jacket or body-hugging sweater. i sized down.",5,1,1,General,Bottoms,Skirts +829,36,Pretry top,"Perfect for work or going out. i layered this with the reversible tank in medium pink so it would be work appropriate. it did not feel scratchy to me, maybe because i layered it. great buy especially with the discounts. feel like i lucked out.",5,1,0,General,Tops,Blouses +828,39,,"It's a pretty top, but it runs very short. the back is also pretty see through so i'm not sure i will keep it. it's called off the shoulder but it is so tight when you try and actually wear it off the shoulder. great design, just not sure i will keep it due to length",4,1,2,General,Tops,Blouses +1126,35,,,5,1,0,General,Jackets,Outerwear +1008,51,Great classic,Ii'm not usually big on lace but this is so unique and versatile that i went for it. looks good dressed up w/a nice top or casual w/a tee. can be worn practically all year. love it!,5,1,0,General,Bottoms,Skirts +829,39,"Beautiful, but scratchy","My firned tried this on and her first comment was ""take it off, it is scratchy"", so i didn't bother trying it on. it is, however, beautiful, if you are not sensitive to scratchy material. +fit was true to size.",3,0,9,General,Tops,Blouses +828,39,On the fence,"The stylist had me try this top on off the shoulders, but that was kind of snug, perhaps why it didn't fit right, it is not off the shoulders on this picture. the cut is loose, so it looked big on me, but going smaller would not have worked the way i had it on... may give it another try on. xs was big, so would need to try the xxs next time. but off the shoulders looked nice on the lady who was smaller built next to me! + +colors are nice, light, but appropriate for fall (or summer!) light fabri",3,1,2,General,Tops,Blouses +1008,39,"So pretty, a bit long and bigger than what i read","Some reviewers found this skirt to be on the smaller side, but for me, it was big,,, too bad the smaller size is sold out (well, all peittes are sold out). the length is also pretty long, below the knee, but in the narrow part still...so able to keep it. the colors are great. i brought it in the store to try on in front fo the stylists, adn they all loved it and told me to keep it... winner for sure!",5,1,0,General,Bottoms,Skirts +1011,47,Cute skirt!,I purchased this skirt at retailer store in texas. i fell in love since i saw it. the fabric is nice and the colors are pretty and cheerful for this spring/summer !! and it has pockets on the sides! don't we love pockets? very practical and lightweight,5,1,1,General,Bottoms,Skirts +1008,64,Very pretty,"This is a very pretty skirt and the colors are better in real life. sizing was mostly true to size for me, slightly tight in the waist but i have a thicker waist compared to my hips. i'm 5'7 and 138# and ordered a size 4 (i usually size up to a 6 with retailer pencil skirts.) a 6 probably would have fit as well, especially in the waist but didn't want it too big in the hips. length was perfect, to my knees.",5,1,0,General,Bottoms,Skirts +1008,38,A beautiful skirt!,"This skirt is wonderful! the price point seems a bit high for the average office gal, but the quality is impeccable. i really enjoy looking at myself in the mirror when wearing this skirt. it can be dressed up, dressed down, worn during all seasons. the design/pattern is artsy and whimsical without being too ""out-there"" (unless you want it to be, of course!). the fit is true to size, and the delicate details are just lovely.",5,1,2,General,Bottoms,Skirts +1008,36,Gorgeous skirt!,"Like other reviewers noted, the pics don't do this skirt justice. it is truly beautiful with an intricate lace pattern and rich colors. can't wait to wear this to work!",5,1,1,General,Bottoms,Skirts +1008,39,Beautiful,"Love this skirt. the detail is amazing. runs small i ordered a 12 i'm usually a 10, but still a little snug.",4,1,0,General,Bottoms,Skirts +829,53,Not impressed...,"Not keeping this one. the fabric is a bit tacky-looking in person, the cut is odd and it's just not me. fit is fine and there are snaps to keep the neckline flat and shaped, the colors are as shown and it is a good length (falls to top of hip). i simply did not like it. too metallic looking maybe...",3,0,0,General,Tops,Blouses +829,36,Fair,The top as with most of ap's tops is well stitched. material is very uncomfortable. if you have large bust it is a little divulging. this may prompt you to wear something underneath to look modest and change the shape of the top!,3,1,1,General,Tops,Blouses +829,44,Great colors but....,"I love the metallic colors of this top and figured i could wear it under a ruched jacket and circle skirt for work. welp, that's out the window. this design is poor. for one, this is not a piece for a petite woman with no torso and i don't know how anyone with a longer torso wears t his. this hits above my belly botton on and i got apetite 2. i have no torso. so, without a jacket, i would never wear this. it's very low cut..the back is very low..it's a little loose but i run between a 2 and a 4.",3,1,0,General Petite,Tops,Blouses +829,48,Beautiful colors,This top is so much better in person. i do not agree with some of the other reviews about the fabric being scratchy. it is not and i have sensitive skin. i love this top and have got lots of compliments.,5,1,0,General Petite,Tops,Blouses +1008,37,,"This is a lovely pencil skirt that is well-made and really brightens a work day. like a lot skirts with multiple colors, a lot of tops feel like they should match but you have to try a few that really work with the skirt and your look to get the right impact.",5,1,1,General,Bottoms,Skirts +523,43,Australian sizing!!,So disappointed that no where in the limiting did it mention this suit is australian in size!! i ordered the 10 (i'm usually an 8 but that was sold out) and the suit arrives and doesn't even fir over my hips. -- the label clearly says 10 australian us 6! gutted that i have to return this suit because of this sizing issue. the suit looks to be well made and the design is adorable of it only for.,3,0,2,Initmates,Intimate,Swim +829,53,,I saw this top online and read the reviews so i passed when i went into the store. when i went in again i thought i would give it a try. so glad i did ! it fits great and is way way prettier in person ! i ended up buying it and so glad i did !,4,1,7,General Petite,Tops,Blouses +829,33,Vibrant metallic,"This is a very pretty top with vibrant metallic colors. i would be perfect for a holiday party or going out to dinner. it wasn't as scratchy as i thought it would be based on the reviews, however, it ran a little big. i'm 5.3 and about 130 pounds and i almost always wear a size 6, but the six was too big. i'd recommend sizing down. it was also lower cut than i thought it would be....showed a lot of cleavage (i'm a 34d) so it's not work appropriate. .",4,1,0,General Petite,Tops,Blouses +1126,39,So sad not mine,"Love everything about this beautiful coat except the way it fits on me. it is just perfect in the shoulders but once it flares out at the bottom, i look like a clown costume. if i size down it will not fit in my shoulders. perhaps a tailor can install buckles that match the neckline buckle to the sides of the coat to fold in the flare. on another note the buckle at the neckline feels very hard and fake, not sure if it's real leather.",4,1,0,General,Jackets,Outerwear +829,52,"Scratchy, uncomfortable top","The title says it all....this fabric of this top is both the best and worst part of the design. the colors are vibrant and the combination of materials (shoulder is a knit, sweater-like navy fabric) is interesting. however, that is where the positive comments end on this one. the top is so scratchy,, stiff, and, frankly, uncomfortable. i cannot imagine wanting to wear it. it could benefit from a lining, and that might have solved the problem of scratchy, itchy fabric. + +the stiff fabric of the bo",1,0,8,General Petite,Tops,Blouses +829,64,Yes it's scratchy but it can work out!,"My usual size 6 fits perfectly... yes the metallic fibers on the inside are scratchy. a cami solves that problem. when ordering, i realized i cld not go strapless & wld have to wear a one of my wider strap cami's in navy or black to cover the bra strap area. it was obvious some sort of cover-up swtr or jacket w/b needed & wld cover the strap area anyway. so, i also ordered the 'faux-fur cardi' in the ivory to wear over this top. it's a shrug-like cardi w/ 3/4 slvs. comes in the plum also if you",4,1,2,General Petite,Tops,Blouses +1008,52,Classy and cute,The online picture does not do this skirt justice. it's very pretty and unique in design. i think it should be worn with a tighter shirt that is tucked in unlike the picture. this is truly a pretty pencil skirt.,5,1,7,General,Bottoms,Skirts +1126,42,So pretty!,"I bought this and like other reviews, agree that the quality probably could be better, but i still love it enough to keep. the buckle fell apart, but i was able to fix it and the zipper seems a little weak. it has pilled, but the fabric is textured, so i didn't even notice until i read the other reviews and then looked back at my jacket. it is a perfect medium coat for 40's & 50's before i am ready to bust out my ugly down north face for winter. i get compliments every time i wear it! love!!",4,1,0,General,Jackets,Outerwear +829,35,,,3,0,0,General Petite,Tops,Blouses +1020,56,Just as pictured,"I bought a petite, size 2. i am 5'3"", 111 lb - it fit perfect with a tiny bit of room. looks just like the one pictured. length on me was about 1 inch lower than the model. very bright with multiple colors. has a nice stretch. very cute.",5,1,6,General Petite,Bottoms,Skirts +895,55,Great purchase,This will be perfect for the mild fall weather in texas. it's light weight and i love that the top is a little more fitted and the bottom swings out.,5,1,0,General,Tops,Fine gauge +862,40,,,5,1,0,General,Tops,Knits +1104,47,Antoher beautiful maeve dress!,"I love the dresses by maeve and this one is no exception. i was pleasantly surprised upon receiving this dress because i wasn't sure about the print size and colors when i saw it online, but the print is beautiful. it's a very simple but elegant style and the ruffle on the back adds an extra touch of interest. i like that it has enough coverage at the top (front and back), the underarms do not fall very low, and it is lined. the a-line skirt will flatter most body types. the fabric and overall q",5,1,3,General,Dresses,Dresses +670,36,Fun,These pants are fun! i use them as sleep pants. i had to size up because the waist band was a little tight for comfort.,5,1,0,Initmates,Intimate,Sleep +329,46,Comfy and adorable!,"I ordered this in xs, i'm 5'4"", around 115lbs, and it fits perfectly. the material is very soft, but not see-through, and the romper is well-made. i wish it came in other colours, i'd buy more!",5,1,0,Initmates,Intimate,Sleep +670,66,Beautiful fabric and style,"I purchased these for something other than sweats to wear for a girls get away weekend. they were so comfortable and flattering, friends told me i could wear them out for dinner. + +the fabric is beautiful, and i loved the way they draped. the angled cut on the legs is very cute, and something a bit different. these could be perfect for a hot summer evening dinner, because the fabric is very light and breezy. dress it up with a tank top and ballet flats and you're good to go.",4,1,0,Initmates,Intimate,Sleep +868,51,Great for summer,"Love this cream sleeveless top....it goes with everything and you can dress it up or down! this will be a go to top all summer long and probably wear thru the fall as well with a layered sweater, if needed. i typically wear small or medium size and got the medium hoping for a little longer length. i am 5'7, 34c, and overall wt. of approx. 128 lbs...it fits very nicely . thank you retailer!",4,1,0,General Petite,Tops,Knits +1020,34,Wonderful but going back,"This skirt is beautiful (especially the color) and looks well made. however, i am very pear shaped and this skirt is just too straight to be flattering on me. i agree that it runs small but even when i sized up it still wasn't flattering. i imagine that those who were not bestowed with massive hips will look lovely in this.",5,1,5,General Petite,Bottoms,Skirts +862,30,"Comfy, casual shirt",Happy with this top- slightly thinner material than i was expecting but that'll be fine with our hot summers. got the navy striped one- very pretty and extremely soft. washes well. i do wear an tank underneath though bc the armholes are slightly large and you can see part of my bra.,4,1,4,General,Tops,Knits +895,43,Perfect casual sweater,"Love the fit of this sweater! it almost fits like a sweatshirt and definitely not as long as on the model. it hits me just below the hips( for ref. im 5-3""). im considering getting all the other colors because its so cute and comfortable. could be dressed up or down. runs true to size-im always a small and this fits perfectly roomy.",5,1,9,General,Tops,Fine gauge +895,52,,"I love this sweater!! i like sweaters that are narrow on top and taper out so it doesn't look like a sack on me. plus, it is the perfect weight. i wish i would have bought one in a different color because it is so comfortable.",5,1,0,General,Tops,Fine gauge +1094,35,Not for me,"The colors are vivid and perfectly autumnal but the fit is a mess. it was overall too large, the waistline curves up in the front and then falls into small pleats which was maternityish, the waistband was thicker than the dress and sat away from my body and the material was a cheapish poly. had the outer dress been made from the same material as the lining, i would have liked it better. the modesty closure was a plus but the dress was already unraveling when i took it out. #returned",2,0,0,General Petite,Dresses,Dresses +895,41,Perfect for warmer climates,"Love this tunic! i am a curvy gal (with a few extra 'curves' in the middle) and this is a perfect top for accentuating the good and masking the negative. i purchased the pink color and it is a gorgeous peachy- pink, a much deeper color than what is portrayed in the picture. i found it true to size. typically i wear a medium or large, depending on the structure and the medium fit well. a little more fitted on top and looser around the waist. i came back to buy another in the ivory but alas, it is",5,1,3,General,Tops,Fine gauge +895,39,Need petite,"Loved the green color, the cut is super flattering, but alas, i do need hte petite, ti was a bit long and i looked a little lost. unfrotuantely, the color is sold out in petite :-(",5,1,1,General,Tops,Fine gauge +1020,39,Fun,"But i thought this was lace or with texture, it is more a pattern on regular fabric. + +colors are nice, there are subtle flowers with bright colors in the pattern, the fit is nice, the 0p fit snugly enough, i don't think there was much give but that was comfortable enough. petite length did end below the knee as shown. i think it would have been nicer shorter but don't want to have to pay extra to ehm so i left that one behind...maybe on sale :-)",4,1,1,General Petite,Bottoms,Skirts +895,50,Completes so many outfits!,"I like this sweater so much i just bought it in a second color! the pleats make the sweater conform to my shape just enough to be flattering. i wore it over three different dresses this week that might have felt too bare for work or cooler weather. i live in a hot climate so this is the right weight for our cooler months. the metallic threads give it a little bit of flair and the grey color goes with everything. i'm 5'7"" size 10-12 and the large fit just right.",5,1,5,General,Tops,Fine gauge +1020,27,Size up!,"Beautiful color,, great quality, and great fit if you size up! i learned my lesson with previous purchases and sized up when i read it runs small. i usually wear a 0/2 and i took a risk and went for the 4. it fits perfectly. i have a 25 in waist.",4,1,1,General Petite,Bottoms,Skirts +895,33,Not as pictured.,"Online, this looks like a great sweater. i ordered an xxsp and found that this sweater is much wider in the middle than pictured. in fact, i'm pretty sure they pinned the shirt in the back for the picture to make it appear slimmer. unfortunately, this sweater will not work for me, as i am an hourglass shape and this shirt makes me look 20 pounds heavier.",2,0,8,General,Tops,Fine gauge +895,35,"Fits strange, flimsy material","I was worried about this item when i ordered it because of how it looks in the picture, but i had wishful thinking. i should have gone with my gut! this shirt does not have the same quality as all my other retailer purchases. it is see-through and flimsy. the bottom is just like the picture, it hangs in an odd rumpled way. the top is very flattering though, so it's a shame! if the bottom fit nicer like their other products i could have gotten away with wearing a cami under it to make up for the qu",2,0,0,General,Tops,Fine gauge +1020,34,"Nice color, love the snap buttons",This skirt is a great length and nice piece for fall/winter. i love the color. it fits like a high waisted skirt would which is why i purchased the next size up.,4,1,0,General Petite,Bottoms,Skirts +596,41,Modern comfort,This easel caftan is simply amazing! the silhouette fits all sizes and shapes while providing a unique dress.,5,1,2,General,Trend,Trend +1094,54,"It's gorgeous, but...","Just came today: the print is gorgeous. very bohemian. it's a dressier dress with the chiffon. on the con side, the chiffon is very delicate, snagged easily while trying on. there's raw edges on the waistband, needed trimming fresh out of the package. sz 10 fit in the waist, too small for 36d bust; sz 12 fits bust but is big in the waist. sz 10 ankle length for 5'7"", 12 hits the floor. haven't decided if i'll keep the 12 and try to alter.",4,1,0,General Petite,Dresses,Dresses +1020,41,Runs very small,"My waist measures 28"" and the size 4 is a snug fit. i normally buy size 2 in retailer skirts, but the 2 was unbearably tight. cute skirt though! i like that it's machine washable, and the quality looks good.",4,1,4,General Petite,Bottoms,Skirts +895,47,Pretty,I love the fabric and color (i bought the green one). my only complaint is that the base is wider than the picture shows. it looks more fitted on the model. it is more of an a shape (significantly wider at the hips.),4,1,0,General Petite,Tops,Fine gauge +895,52,Nice but too thin,"I was minimally torn over whether to return this but ultimately it's going back because the knit is just too thin. i thought it would be cozy and be of normal sweater weight but it's not. and because it's so light, the swing effect doesn't really come off. nothing special.",2,0,3,General Petite,Tops,Fine gauge +895,46,,,5,1,0,General Petite,Tops,Fine gauge +1020,22,,"I love the color of this skirt, and the fabric is wonderful. it was a bit longer than anticipated, but fit well.",5,1,1,General Petite,Bottoms,Skirts +1098,40,,"Dress ran very large in every way. beautiful design, lining and quality material. i should have sized down 2 sizes. item is now sold out.",3,1,0,General,Dresses,Dresses +895,62,Lovely and feminine,"Finally a ""swing top"" that doesn't look like a sack on me! i've been wanting to partake of this current style, but everything i've tried so far just looks ""dumpy"" on me. not this top -- it is very feminine and flattering. i am 5'7"" 118 lbs and have a small waist -- and although this is a ""swing"" style, it still shows my waist and doesn't overpower me. it is also a lovely fabric -- especially in the soft pink which i got. i'm thinking of going back for more colors!",5,1,9,General Petite,Tops,Fine gauge +862,26,A great piece,"I bought this shirt in the neutral and white and love it. so many people compliment it. i usually pair it with white pants and cute wedges to dress it up (obviously with a statement necklace too). but the greatest thing about this shirt is the fact that you can also dress it down. the material is fabulous but i have not washed it yet so i am not sure if it is going to shrink (which i hope it doesn't because it is one of my favorite pieces). + +unlike the other reviewer i did not think that the",5,1,2,General Petite,Tops,Knits +1020,38,Love everything about this skirt,"Unlike the other reviewers, i did not have any problem with the sizing, fit or length of this skirt. it is a midi skirt so i think it's suppose to be a little bit longer?? for me it fit true to size. for reference i am 5'8"", 135 pounds and the size 6 fit perfectly. i think the color is beautiful and the quality is good.",5,1,3,General Petite,Bottoms,Skirts +895,53,Perfect comfy now top!,"For a now feel, that comfy and well made, this was a great choice!",5,1,0,General,Tops,Fine gauge +1020,49,Poor quality,"This skirt looks exactly as pictured and fits great. i purchased it a few weeks ago and got lots of compliments on it. however, on the third wear, the side zipper split wide open. needless to say, it was returned.",3,0,0,General Petite,Bottoms,Skirts +895,43,Huuuuge,"Dang, i got a small and was still swimming in it. it's made of the fabric that increasingly seems to be the fabric of choice for all things t-shirty- soft and thin-ish, a bit translucent. i'd rather wait for something more formfitting and flattering- back it went.",3,0,0,General,Tops,Fine gauge +895,36,,,5,1,0,General,Tops,Fine gauge +895,36,Not worth cost,"Bought this item on sale and was very disappointed in the quality for the cost. fabric feels cheap, like it will snag easily and will stretch out quickly. did not flatter the female form- felt like a burlap sack. gorgeous blue color but not worth the price tag. returned it.",3,0,0,General,Tops,Fine gauge +895,63,Tunic doesn't look like i am covering up,Nice weight sweater that allows one to wear leggings or ultra skinny jeans without looking like i'm pregnant (not that there's anything wrong with that) very feminine and light weight enough to wear with a cami underneath and a pretty scarf.,5,1,1,General,Tops,Fine gauge +828,56,Too big,"I loved this top; it reminded me of one i have from retailer from circa 2008 in black and white; however, on this one, the chest area is too big, in both the 14 and 16, and i even found myself tugging downward on the fabric to keep it in place because the waist is elastic and also too big. i probably need a size 12, but then i fear it would be too short-waisted on me, for i am 5'10"". unfortunately, it is not for me. also, the sleeves are much bigger and flouncier than they appear in the photo on t",4,0,4,General,Tops,Blouses +1020,48,Runs small too bad....,"I love the rich deep color and the style but once again this brand runs really small in the waist. i am normally a 8/10 in retailer skirts and the size 10 was tight at the waist enough so i could not button it and feel comfortable. the quality is ok, something i feel i would see at another type of discount store. for me this skirt did not work but the color and softness of the fabric was a plus.",3,0,9,General Petite,Bottoms,Skirts +862,43,,"Great shirt to wear with white pants and wedges. i'm a teacher and this is perfect for warmer months for school or for casual evening out. it runs big but falls in such a way that it doesn't make the wearer look big; it falls elegantly and in a flattering way. + +great, versatile shirt.",5,1,1,General,Tops,Knits +1020,44,Skirt dimensions are off,"I loved this skirt on but just the other reviewers, it runs small in the waist throwing off the dimension of the skirt. i ended up getting the 0 despite the fact that it was tighter in the waist because the 2 at this length (with my height) and amount of material became overwhelming on me. it would have looked better in a slightly shorter cut as another reviewer stated as well.",4,1,1,General Petite,Bottoms,Skirts +895,40,,"Gorgeous top, very nice. detail work, soft and flattering. i don't think its too full on the bottom at all - mine has a loose but pretty straight silhouette. word of warning: soft pink is not pink it is peach with some pink - and definitely not my color. if peach isn't flattering on you, heed this and other reviewers comments they are weighing correctly! i will have to either return for the white or dye the fabric myself to a more flattering shade, bummer that i thought the other reviewers might",5,1,0,General,Tops,Fine gauge +862,44,,Love the fabric of this shirt even though it was thinner than i expected. it is soft to the skin and flattering. however i returned it because it is made for women with long torso and shorter shoulders.,1,0,1,General,Tops,Knits +895,54,Comfort & style,"I have already worn this several times. it is very flattering, lightweight, and easy to wear. dressy but also very soft and comfortable.",5,1,0,General,Tops,Fine gauge +1020,72,,"Very pretty fabric and beautiful color, but i agree with the other reviewer here, the fit is a bit strange. the waist is very small - need to size up at least one size for that to fit - while the rest fits nicely. it's also a little longer than i had expected...sort of looks like it should be a couple inches shorter (and i'm 5'11""!).",4,1,5,General Petite,Bottoms,Skirts +1075,52,Classic,"I was so excited about the arrival of my maza dress. much to my surprise the material was not has structured as i thought it would be from the photos. the fit was very tight and did not fall as nicely as i anticipated. because i loved the classic design i decided to give it another chance so i returned it for the next size up and fell in love, the open sleeve was a nice surprise with a touch if elegance. the front buttons added a bit of old charm and feminine +appeal. while the material was not v",4,1,3,General,Dresses,Dresses +1104,47,My new favorite dress,"I'm 5'4"", 130 lbs. 34 d. i bought the medium. i think i could have gotten the small but i didn't have time to re-order. it fit fine but could have been a little more snug around my top half. i love the length and the fabric.!",5,1,0,General,Dresses,Dresses +1020,67,Not as pictured!,"The skirt that i received had very little blue or green in it, and was mostly white, yellow and some red. the fit was fine but the quality for the price was not there for me. the lack of quality and the disappointment in the quality equals a return.",1,0,17,General Petite,Bottoms,Skirts +1094,39,Autumn fever,"Ranna designs richly detailed dresses and this is no exception. looks just like the pictures (colors/cut/drape) with the exception of a modesty hook at the deep v-neck. sleeves are sheer with an elastic cuff. this dress does not stretch--the bodice felt very fitted and tight, especially at the waist band. runs tts or small; if you're busty/broad shouldered, size up. it has a dreadful side zip, is fully lined and all synthetic fabric (boo!) i purchased size 10p, my stats 36c/38-27-35/135#.",5,1,0,General Petite,Dresses,Dresses +305,46,Very small,"Bought a large, could barely pull up over my butt. runs extremely small. it's cute but if your not a stick figure, this is not the suit for you.",2,0,0,Initmates,Intimate,Swim +828,64,Too cute to pass up!,"Adorable... too chilly now to wear alone & too cute to cover it up! my navy parka or jean jacket will prob be ok w/ it though. size 6 fits me perfectly & looks pretty much on me as in the pic. love plaid & cotton blend tops anyways. ruffles - adorable, & i'm not too big on that but do love this look. when i first removed this top from the packaging it had an odd 'smoky'-like odor, but it's the dye i think. after hanging it for a few days the smell disappeared. i have in mind to wear w/ the pilcr",5,1,3,General,Tops,Blouses +1094,30,Falling goddess,"This dress makes you feel like a bohemian goddess. falls in the right area and absolutely adorable. the dress is very fragile, handle with care.",5,1,0,General Petite,Dresses,Dresses +828,38,,This is my new favorite top! looks and fits as described.,5,1,1,General,Tops,Blouses +895,36,Pretty and comfy,"Last minute i needed a family-friendly top for a chilly night, so i tried on a couple of flowy sweaters at retailer and this was the keeper. while i found other styles a bit too boxy or bulky for my short torso, this has a nice a-line shape that gave me a slim profile while still being forgiving, plus the detail up top is feminine and i liked not having fabric piled up around my neck. i am usually a small but wanted this to fit like the model so i sized up to a medium and voila, i am a model. just",4,1,5,General Petite,Tops,Fine gauge +1020,52,Perfect skirt,Love all the colors in this skirt and that i can wear it with a tee and flat sandals or a black jacket and heels. easy piece to wear many ways. great quality too.,5,1,1,General Petite,Bottoms,Skirts +895,61,,"This tunic trumped any other i have seen this season. the style, with the delicate open stitchwork around the upper chest gave it quite a feminine appeal. i especially love the weight of the fabric being on the light side. won't have to worry about hot flashes like when wearing a thicker fabric! it's warm without being bulky. and to top it off, it was on sale and i was able to grab two colors. this tunic is also age appropriate and flattering for most anyone. extraordinary to say the least.",5,1,0,General Petite,Tops,Fine gauge +647,29,"Easy, comfy & cute","I needed a dress that was easy to throw on for summer days and this dress is perfect for that. it's flattering, light weight and unique. i've received a handful of compliments while wearing this dress. i am 5' 6"" 150 lbs, hourglass figure and typically purchase a small or medium (8-10) and chose a small for this dress. i'd say it's still loose on me- which is what i prefer. the scoop neck and cut out allows you wear a normal bra. however, i've noticed i'm more comfortable wearing a camisole or s",5,1,1,General Petite,Intimate,Lounge +1025,38,,"The inseam is advertised as 28"", but they are more like 38"". i was hoping they were for short people, but they are for someone with very long legs, event in my tallest heels, i'd have to get them hemmed! just a warning to my short friends out there. the quality, fit, look was great, but way way way too long.",4,1,10,General,Bottoms,Jeans +1025,35,Gorgeous,"I love paige brand pants-they are soft, comfortable, and forgiving. i love these, and want them badly. the are still tight all the way to the knee and then go out into a flattering flare-it is difficult to find the perfect fit on something like this-and paige has done a wonderful job for my body. + +my store does not carry petite so i tried these on in regular length. they were significantly too long for me (5'3"") probably 3-4 inches to long. i am hoping for a sale so i can buy them in petite for",5,1,14,General,Bottoms,Jeans +815,55,Pretty,"This top is really pretty and nice quality. runs big - i went down a size, and its perfect. coloring is more subtle in person than in the photo.",5,1,1,General Petite,Tops,Blouses +1066,57,Great crop pant,"So i love pilcro, i wear them all the time and usually size down because they ""grow"" after wearing them. i tried on my usual size in these and felt like they are too tight, not sure if they will get any looser. the material feels really good, lightweight and the stripes are subtle but cute. not sure if i'll keep them or maybe size up,",4,1,3,General,Bottoms,Pants +840,55,Cute,"This is a cute top with jeans for spring and summer, or warmer climates - very fresh and airy. the fabric hangs nicely and although it is lightweight, it is not too thin or see through. ii does not get overly wrinkled either. the style is flattering for most body types and it can be dressed up or down. the v neck is just right: not too deep that you feel like you are showing too much cleavage, but deep enough to be feminine and slimming. i normally wear a size s in retailer tops and blouses",4,1,5,General,Tops,Blouses +1026,39,Why so long?,"Petite pants hsould be able to fit short peple, but a 32 inch inseam on pants with buttons at the nottom, can't even gegt them hemmed, what a bummer. my inseam is 27 inchess, so i would need a 5 inch heel. otherwise, gorgeous, and waiat fits true to size. thighs a bit snug for musclea, but stretchy enough to fit. thinking about keeping them, but have to find big plaform heeks...",4,1,0,General,Bottoms,Jeans +840,39,"Runs large, bohemian","I tried on the petite size in my usual xs, adn i actually have to go down to xxs, i looked overtaken by the shirt. i'm 5'2"" and 115lbs) + +cut is flowy and not close to the body, sleeves are narrower, but still ok with athletic built. + +color: light one is great for gals with darker complexion and hair, but for my pale self, the darker one was better... but can't go wrong, i ordered both colors and liked both of them. + +ruffle is a great addition too...",5,1,13,General,Tops,Blouses +1066,46,"Wonderful weight for summer, flattering","I tried these on on a whim because i liked the shirt that they were displayed with in the store and was surprised how much i liked them! they are a great lighter weight alternative to the pilcro hyphen chino. great for hot days of summer. +the subtle vertical stripes go with everything and help elongate the leg. overall a really flattering cut. the waist is not too low and does not create muffin top.",5,1,8,General,Bottoms,Pants +840,37,Light & large,"The shirt is absolutely cute looking. but that's just that....looks. i'm 5'2"" size 6 & wears m to l top. i tried on the medium in the store, it was rather flowing. i liked it. but i didn't like how it fit on the underarm area. it hung very low. so i ordered a petite m. still the same. plus the store the lighting was dark so i didn't realize how see through the shirt was too. had to return it.",2,0,1,General,Tops,Blouses +1030,29,"Must have, right on trend, but still classic","These jeans! i tried these on, in addition to the high rise paige denim, and these won out hands down. classic flattering fit from mother, with an element of edginess with the frayed hem. these are long enough on me (i'm 5'5') to cuff at the ankle if i don't want a distressed look on a particular day. they are slightly stretchy like other mother denim but not so much that i would size down. i have muscular calves and thighs, but someone who does not could likely size down and be happy with the a",5,1,1,General,Bottoms,Jeans +840,83,Pretty but runs large!,"I ordered this top in my usual size and am exchanging it for one size smaller. +it runs very generous, and so the sizing is a little off. +the style and quality are beautiful, so i am anxious to receive the smaller size.",5,1,0,General,Tops,Blouses +1066,29,Comfortable & stylish crop pants,"The blush stripes are subtle but they definitely give elongating effect to your legs. + +very comfortable pair of crop pants but my calves are definitely feeling tight in there!",5,1,1,General,Bottoms,Pants +647,49,Cozy sunday!,"I got a small mauve. the fit is great and the length is perfect for me, just few inches above my knees. +cute and cozy! what more can i aske for!?",5,1,0,General Petite,Intimate,Lounge +1066,42,Not what i expected,I have a similar pair of capris from retailer and when i ordered these i thought they were the same in a different color. these are less flattering and i may not keep them.,2,0,0,General,Bottoms,Pants +872,63,Fun change from the norm,"Fun detail with the beading and lace! arms are a little longer while the body of the sweatshirt is a little shorter than expected, but that's the style of the piece. the fit was tts with those proportions mind. the ladies at the store said that if i ordered the size up, it might be a little longer in the body, but that the arms and shoulders would have been the biggest change. the material isn't too thick, so it's a nice lighter layer for fall/spring. really love it!",5,1,0,General,Tops,Knits +840,56,,"I love the style of this top, and the longer length would be great with leggings and fitted shorts. it's somewhat fitted on the top yet it's a-line shape gives a full swing at the bottom. the ruffled v-neckline is pretty, and i like the longer length of the short sleeves. but with all these attributes, unfortunately they cut the armholes really big, so when you put your arms forward, the sleeves pull against your arms. i was trying to decide if i should keep it anyway, but for $98 dollars i thin",3,0,20,General,Tops,Blouses +1066,55,Perfect for mediterenian summer,Ordered these online and they fit perfectly. i was looking for lightweight pants for hot and humid summer days and this pair is exactly what i needed. the striped pattern is cute and adds some color.,4,1,0,General,Bottoms,Pants +647,32,"Loved this, then washed it twice and it fell apart","I loved this dress from the moment i tried it on. so flattering to my postpartum body without being a huge tent. soft fabric, and for a white/lightly striped dress, not sheer. i'm bummed because after washing only twice (followed the instructions to wash) on gentle cycle and low tumble dry, holes started appearing everywhere, both on the cream ribbed hem in the front bottom and all across the chest, in the white part of the fabric only (it looks like the black stripes are holding the holes toget",1,0,3,General Petite,Intimate,Lounge +1066,26,Super flattering,"I went ahead and ordered a size up based on previous reviews, but i should have ordered my own size, as they're a bit loose around the waist. the pants are adorable and the pinstripes very flattering, so i definitely recommend them!",5,1,0,General,Bottoms,Pants +840,60,,"I really want to love this shirt, but the small is just way too big on me. for reference, i'm a 32d (which is why i didn't want to size down much more than a small), 5'6' and 125 and i'm drowning in this. i'm going to try it with different bottoms and ultimately will keep it because i do love the quality. just size down a couple of sizes!!",4,1,0,General,Tops,Blouses +1066,48,Recommend but not for me,"Love pilcro, love the stripes and the length - but this particular pair of capris/crops are super tight fitting. i went up a size from my usual and still felt tight. i guess its just the cut/fabric combo. i wanted it to be a slightly less form fitting feel ...... may work for you, however!",3,1,0,General,Bottoms,Pants +872,38,Love this!,"This is exactly what i was expecting. cute, comfortable and casual. there are some gold sequins in the scroll work that i didn't see online. they are super pretty in person.",5,1,0,General,Tops,Knits +1066,49,Cute but small,"I tried these on in the store, and they are super cute but run small. i typically wear a size 25 (i'm 5' 5"" and 108 lbs.) and they were too tight for me. i like the fabric and the cut; i think they'd be great one size up. (my store didn't have them.)",3,1,1,General,Bottoms,Pants +1115,41,Really nice sweater coat,"Really nice, substantial, fully lined sweater coat. i love the structured look and the faux-leather piping around the zipper and the pockets. quality seems to be very good. it runs true to size, maybe slightly on the small side (especially for larger hips/busts) so if you are in between sizes, go up. i chose small and it's just right; i wouldn't be able to zip around my hips with xsmall. besides the price, which is why i dropped one star, i cannot really find any fault in this sweater coat.",4,1,1,General,Jackets,Outerwear +1030,28,,,5,1,0,General,Bottoms,Jeans +1018,28,,"Really pretty, but runs at least a full size small.",4,1,0,General,Bottoms,Skirts +1026,48,Perfect,I love these pants. i have worn them a number of times already this season. i am 5' so i did have to have them hemmed. i lost the bottom button in the process but there are still 3 or 4 on the pants so i don't think they look odd. i also wear very high boots with these pants so that helps. a crisp white blouse and black leather jacket and i felt like a million bucks!,5,1,1,General,Bottoms,Jeans +840,32,Very cute top,"I love this tunic the natural color is just that, this is a tunic so the fit is a little large. i kept it and had it altered because i really do love this top",5,1,0,General,Tops,Blouses +1066,29,Super cute pants,These cropped pants are very light weight and super cute. they seem to run just a bit small (i sized up one size from my usual) and don't seem to stretch so a size larger than you generally take may be necessary. the thin pin stripe design is very light in color so they are quite versatile.,5,1,1,General,Bottoms,Pants +647,32,"Cute, casual dress","I have this dress on today in white and i am coming back to buy the second color even though pink is not my favorite. great comfy, casual dress that pairs well with a variety of shoes and jewelry to dress it up. highly recommend for summer!",5,1,6,General Petite,Intimate,Lounge +840,28,,Size down! i love this item. it goes perfect with leggings but if you are typically a small you would need to order an extra small and so forth. hopefully once i wash this it will shrink some.,5,1,0,General,Tops,Blouses +840,51,Runs big!,"Cute, swing top that would be flattering on most. i love the print on the white color and it's so soft. doesn't wrinkle easy. but it does run big! i'm usually a s in retailer but i was drowning in it. so, size down!",4,1,1,General,Tops,Blouses +840,44,Stylish and understated elegant,"I purchased this top in a regular small and surprisingly, it fits me very well (i'm 5'2"", 34b, 26 waist, 36 hips). the hem falls about two inches longer than shown on the model. i like the v-neck the most because the ruffles are not too much, and it's not too low cut. i purchased the white color because i think the pattern is unique and it's brighter for spring/summer. i think skinny jeans and ankle boots or wedges would make the look very stylish. by the way, the fabric is super soft (but not w",5,1,1,General,Tops,Blouses +1018,43,Pockets!,"This skirt is really beautiful but i agree with the other reviewers; it runs very small. i'm typically an 8 or 10. if i get a 10, there is usually a bit of room in the item. i decided to get a 10 in this skirt, just in case. i got it zipped but would have trouble breathing as the evening wore on. the pockets are wonderful and the fabric is weighty and really lovely.",4,1,0,General,Bottoms,Skirts +840,48,Fits like a maternity top,"Fits well through the shoulders and arms, but there is zero waist, and it just looks like a bunch of extra fabric hanging from the top. super cute, but have to return because of that.",3,0,1,General,Tops,Blouses +824,37,Love this top,From the picture i wasn't sure how it would fit. got in the mail and i love it. fits snug when you first put it on and get looser as you wear it. definitely should of gotten a large.,5,1,1,General,Tops,Blouses +1115,31,Love this coat!,"I was hesitant to purchase this coat because of the price, and when i received it i have to admit i was a little disappointed with the quality of the coat. the sleeves are made out of a soft felted material but i can see this pilling easily. other than that, the silhouette of the coat is perfect...not too boxy! it's also not too heavy so that you can wear it through fall and into the first months of winter. i love it!",5,1,2,General,Jackets,Outerwear +840,50,Adorable and flattering,This top is very cute. got it in the lighter color. the fit is great and it will go with many things. if size medium were not out of stock in the blue color i would have purchased that one also.,5,1,0,General,Tops,Blouses +878,47,"Cute, but no go!","I really wanted to love this t and was excited to receive it in the mail. i thought i was being realistic in assuming that is would be somewhat sheer given that there doesn't seem to be a woman's white t on the planet that isn't these days, however it was really sheer. the fit was also short and boxy (this coming from a 5'3 woman who is short-waisted) on the plus size the material is extremely soft and the design is cute. maybe if you are younger and don't mind the sheerness it's worth the gambl",3,0,1,General,Tops,Knits +984,56,Pretty denim jacket,"This is a perfect jacket over any shirt, tee, or dress. jacket is well made and goes with anything!",5,1,2,General Petite,Jackets,Jackets +1104,25,Amazing peach color!,"I ordered this dress in both colors. the peach color is so beautiful in person. i'm planning to wear this dress for our rehearsal dinner at the end of the summer, if i can hold off until then! definitely worth the price.",5,1,6,General,Dresses,Dresses +878,63,,,4,1,0,General,Tops,Knits +1104,54,Perfection.,"This dress is incredible. i saw a sales girl wearing it in my local retailer and loved it! i bought it in the navy color, it's gorgeous in person, very bright, vibrant colors. i am 5'9 34 c bra 27 inch waist and the s was quite big on my waist. i kept it anyway because the xs has been sold out, and got it taken in a bit. i wore it while vacationing in mexico and it definitely turned heads, if you're thinking about buying this dress, do it, you won't regret it!",5,1,0,General,Dresses,Dresses +984,28,Nice quality but too short for my tall frame,Love the look and quality of this jacket. i&#39;d say it fits true to size but it is way too short for me (i&#39;m just under 6&#39; tall). wish these came in tall sizes!,4,1,0,General Petite,Jackets,Jackets +866,26,"Cute top, but back is more of a jersey material","I really love the front of this shirt. however, the back of the shirt is more of a jersey material so it doesn't seem to match the front of the shirt. i still wear it and it looks cute, but it threw me off a bit at first.",4,1,0,General,Tops,Knits +1104,29,,Absolutely love this dress! fits true to size and makes anyone look fabulous,5,1,0,General,Dresses,Dresses +868,61,Nice color,I liked the color of this top but i didn't really like the ruffled stitching around the middle. it looks like someone just tacked on the bottom half. i bought this for my daughter and she likes it. i think it is comfortable and a good top to knock around in.,3,1,0,General,Tops,Knits +984,45,Perfect jean jacket,"Per other reviewers, i sized up from a small to a medium and the jacket fits me just right with room for layers. it is short (cropped), but i like where it hits me and is versatile for jeans and dresses.",5,1,1,General Petite,Jackets,Jackets +984,39,Great asset,"I have alst year's version,a dn they are essentially the smae, minus some leather parts removed... this jacket is great, the back si a little shorter, so it goes so well with peplum tops an ddresses with higher waists (without looking bigger from the back when the hem is longer and hits where the skirt aprts bulge out). i love hte darker color, i wish it came is super dark rinse... + +i usually buy petites, but i never tired on the eptite in this jacket... i am holding myself back to order this on",5,1,7,General Petite,Jackets,Jackets +1104,36,Gorgeous,"Bought both colors in xs and soooooo glad i did. this dress is absolutely gorgeous in either color... will have (do to the nice quality) and wear (very stylish) for a loooooong time. + +a must have for the summer!!!!!!",5,1,0,General,Dresses,Dresses +878,41,Comfy and fun!,"Comfy sweatshirt with fun polka dot details. soft and not baggy. a little on the shorter side so i think i will layer a lace cami underneath and it will look even prettier. i'm 5'7"", 140 pounds with an athletic, hourglass shape, 32dd. i bought the ""2"" which equates to a medium since i wanted it a little looser being a sweatshirt (i'm normally an retailer small but i don't think that would have worked in this case as it would have been too fitted). great comfy weekend piece!",5,1,11,General,Tops,Knits +1182,37,Great tee,"I could wear this every day, it is stylish and comfortable",5,1,0,General Petite,Tops,Knits +868,55,Pretty and feminine,Pretty top. love the color and the large ruffle. makes it great for layering or with a pretty necklace.,5,1,0,General,Tops,Knits +868,83,Sooooooooo cute!,"Love this top! +it is a full/ swing top, but the slightly shorter length balances out the fullness perfectly. +i have been wearing it with a contrasting fitted cami and get tons of compliments. +love both colors, and having fun wearing them. +and after one washing the fullness is softer and looks like the pic. +runs true to size and in the arms slightly tight, so i went with my usual med and fits perfect. +if you have issues with sleeve size would recommend going up a size, otherwise very true to size",5,1,1,General,Tops,Knits +868,35,Peplum hem tee,"The styling of this top is really cute. it fits perfectly on the shoulders and gets bigger at the hem for the baby doll look. my biggest complaint is the quality! it's really cheap and feels like the quality i would expect to see at a cheap retailer. it catches lint like crazy and because the hem is just a pearl edge, it curls really badly. i buy quite a bit from here and this is the worst quality item i have seen in a long time. not worth the $$ if paying full price.",3,1,2,General,Tops,Knits +565,38,,"Love, love, love this dress. it is very slimming. it hugs you without really touching you. leaving the tie and a few buttons open gives it more of a casual feel.",5,1,3,General Petite,Trend,Trend +984,35,So comfortable and chic,"I'm 5'3 130# with a 32dd bust. i usually wear small in retailer/ cloth and stone/ running horses. the small fit me fine, but with no room for layers underneath. the small was very snug. would be perfect for california evenings. but, i live in the north east! the medium still has a great shape on me, still fitted at the waist (27inches), but enough room to wear a light sweater or flannel under. the medium still also looks great over my maxi dress.",5,1,0,General Petite,Jackets,Jackets +1104,45,,"This dress is gorgeous!!! i love it! i bought it to wear to a july wedding. i got the navy and it is so fresh and crisp in color. the sizing is on spot! i slipped it on and it was comfortable, easy and stylish. i am 5'7"" and typically xs. it falls exactly as portrayed in the online photos. it is lined in the skirt and the top is stretch jersey in the best weight! i am in love!",5,1,7,General,Dresses,Dresses +868,65,,"This shirt is one of my favorite retailer purchases ever! it is well made and is perfect for work or the weekend. the first time i wore it, i received so many compliments!",5,1,4,General,Tops,Knits +878,41,Perfect sweatshirt,"I want to live in this sweatshirt. it's so comfy, but also well-cut and lays nicely, not boxy at all. i'm typically a 10-12 or l in tops and the 3 is roomy without looking sloppy.",5,1,1,General,Tops,Knits +868,69,Clever white edges,"I liked this top even though it was a definite 'swing' style. i ended up altering it to remove some of the fullness. +looks great with jeans as well as black pants for a dressier look. very soft and comfortable fabric. wish it was just a little bit longer.",4,1,0,General,Tops,Knits +1104,36,Love this dress!,"After missing out on last year's similar dress, i am so glad i finally purchased this one! it is beautiful in person. i bought to wear to a wedding, but i am curious if others think it might be too white? i bought the peach color. i will keep this dress no matter what. hope they come out with more next season!",5,1,0,General,Dresses,Dresses +868,42,,"Like the other reviewer said this top is extremely wide and boxy. it must be pinned in the picture online. it's very frustrating when they do that. thank goodness i didn't pay for shipping! for reference, i'm 5'2 and 135 pounds and bought the xxs, it's going back for sure. i'm trying to lose baby weight, not trying to look pregnant!",2,0,1,General,Tops,Knits +984,69,,I read the reviews and because this jacket is pilcro i took a chance. i was thrilled when i rceived this jacket. darker color of denim with weathered edges. i absolutely love it. don't let it get away. great jean jackets are hard to come by.,5,1,0,General Petite,Jackets,Jackets +878,46,"Not much structure, boxy...","I wanted to love this sweatshirt, but alas, it is going back. upon opening and unfolding, the first thing i noticed: the dots and not solid. they are sort of distressed looking, with parts of them missing. secondly, it doesn't have a lot of structure. it's soft and kind of floppy but in a weird way. it's just not flattering on me. it looks more like a pajama top than something i would wear out of the house. for reference, i ordered the 3, and i'm usually a 10/12 in tops.",2,0,0,General,Tops,Knits +984,55,Almost perfect denim jacket,"Love this denim jacket (also have it in white) the reason i didn't give it 5 stars all around is the distressing is just a bit too much (none on the back which is kind of strange). i'd love it even more if it wasn't distressed at all, then it could be dressed up much more for work. but overall it's my favorite, great fit and a bit of stretch so very comfy. please make this in some other denim colors!",5,1,0,General Petite,Jackets,Jackets +984,36,Perfect,The cut is brilliant-the wash is subtle-the weight of the denim is sturdy but not stuff-and the stretch is just right. love it. the perfect staple. a scarf in the fall and rolled sleeves in the spring.,5,1,2,General Petite,Jackets,Jackets +984,71,,Love it; the bit of stretch in the denim makes it less stiff than traditional denim.,5,1,0,General Petite,Jackets,Jackets +1024,65,Super nice,I love these. i'm between a 29 and 30 and as the 30s were sold out i had to go with the 29s. they fit well. as expected. very nice fabric. good design. have to wear a short shirt or one tucked in. fabric has a bit of stretch which is also nice.,5,1,0,General,Bottoms,Jeans +984,68,I wish it were alless stiff denim. runs small,"I've been looking at this jacket on line and finally went to the store to try it on. i really liked the styling but the denim was quite stiff. i'd prefer a softer kind of fabric. i wonder if it would soften if it was washed. also, it ran surprisingly small. i usually take an xsmall or small but the small didn't leave me enough room to comfortably bend my arms. the medium worked better. i wonder how others feel about the fabric and and the sizing. i think i'll wait and see if this one goes on sal",3,1,16,General Petite,Jackets,Jackets +984,43,Terrific denim jacket,"I lost my favorite denim jacket on a trip a few years ago and haven't found one i really liked again...until now. great quality - just heavy enough but not too heavy, just stretchy enough but not too stretchy, great color/design. no complaints. i read the other reviews and was happy to have ordered one size larger than my normal. i typically take a small but the medium in this is perfect. it is possible i actually like this jacket better than the one i lost several years ago, which is a big endo",5,1,3,General Petite,Jackets,Jackets +1104,30,,"Beautiful colors and silhouette (i got the navy). the skirt is lined and flows wonderfully when you walk. i've gotten a ton of compliments on it. i'm 5'9"" and the high hem falls a few inches below my knee, and the low hem falls to my ankles.",5,1,7,General,Dresses,Dresses +1024,40,Cute versatile culottes,I love these culottes and i think they will be everywhere this coming spring / summer. the high waist is perfect and looks great with shorter shirts or tucked-in. the denim is high quality and a nice medium dark color.,5,1,0,General,Bottoms,Jeans +984,47,My new favorite denim jacket,I'm glad i listened to the other reviewers...i ordered a large instead of my usual medium. it's roomy enough for a sweater underneath. i love the denim! it's very soft and has some stretch. my other denim jackets are stiff even after years of washing. i also love the darker denim.,5,1,0,General Petite,Jackets,Jackets +1104,39,,,5,1,0,General,Dresses,Dresses +984,34,Favorite jean jacket,"I'm 5'4"" 125 lbs ordered small. fits perfect. super soft denim. love the color love the worn in feel",5,1,0,General Petite,Jackets,Jackets +1104,38,,"This dress is stunning- vibrant colors and flirty feel to it. i got the small and i am a 34b/27 pants, 132 lbs- great fit. i only question two things- am i tall enough to pull off the extra fabric in the back and what the heck do you where for a bra? those two considerations are why i didn't give it 5 stars.",4,1,1,General,Dresses,Dresses +984,38,Perfect denim jacket,"I have been searching for the perfect denim jacket and this it! i love the darker color, more modern day less 80s. it runs a little small. i am always either a s or xs at retailer. lately, their clothes seem to be running a little bigger, so i have been an xs in most tops. when i order online, i never know which size to get. i ordered an xs, however it was very tight in the arms and across the shoulders. i wanted to be able to roll the sleeves up, so i returned it for a s and it fits great. i was",5,1,0,General Petite,Jackets,Jackets +895,36,,I have received so many compliments. it's my favorite,5,1,0,General,Tops,Fine gauge +1104,41,Best dress ever!,"I wore this dress for the first time yesterday... i have never received so many compliments on a dress before! several people even stopped me in the streets of nyc to tell me how beautiful this dress was! +it is an absolute must-have!",5,1,0,General,Dresses,Dresses +1131,36,Stylish jacket,I love the pattern on this jacket and enjoy the bell shape. a fun jacket to through on and add quick style to a skinny pants.,3,1,2,General,Jackets,Outerwear +984,47,Adorable!,"I love this little jean jacket! i am petite and usually get a xxsp , but went for a size up. i'm glad i did. it fits a little snug. the color is true to the photo and the material is a medium to heavy denim. the arm length in the petite size is perfect for me. i love this - over maxi dresses, tanks, etc... adorable jacket - great buy!!",5,1,0,General Petite,Jackets,Jackets +1104,63,"Stunning, flattering, and versatile.","This dress first caught my eye online. due to the price i resisted. then i saw in store and tried on...i decided to hold off for a sale, but my will was getting thin. once i saw it start to sell out online, i had to take the plunge. i knew this dress was a must have. it is super flattering and comfy! the best of both worlds. i'm small-chested so both the s and m fit, but the seam on the s fit a bit higher, which was more flattering on me, so s is what i got. it can be dressed up or slightly down",5,1,0,General,Dresses,Dresses +831,35,Pretty blouse!,"I love this blouse! i just bought it recently and have yet to wear it out other than trying it on. this blouse looked very nice on me which can be challenging. i don't live near an retailer so i have to order online exclusively. i have larger hips (135lbs, 5'6) and finding flattering tops can be tough. sometimes they look amazing online and then once i try them on, they just don't look right. some shirts have a tendency to accentuate my hips too much making me look shorter. this top looked great a",5,1,0,General,Tops,Blouses +984,35,Too distressed,First i ordered a m. i'm normally a 8-10. the m was too small so i returned and ordered a lg. the lg fits great but there is a huge area of distressing on the shoulder that will turn into a hole. i love this jacket but cannot keep it in its condition. hopefully i will make it to the store soon (there are none w/in an hour of me) and look before i buy.,4,1,2,General Petite,Jackets,Jackets +1104,56,Stunning...,"I purchased the navy color of this dress. not only did it look good, but felt good as well. since it is for a wedding, i also purchased a white crochet cropped ""sweater"" to wear over as well, making the perfect dress for the mother of the groom. could not have been happier.",5,1,0,General,Dresses,Dresses +836,41,Cute top,"This top looks pretty much like it does not the model. the sleeves are a nice length and are not too tight. the fabric is light weight, but not see-through. it does not wrinkle a lot. i've gotten several compliments on it and it goes with lots of different bottoms and will work under jackets too. the v-neck is pretty deep, but doesn't show so much cleavage that you couldn't wear it to work.",5,1,0,General,Tops,Blouses +1089,37,Runs large and zipper sticks,"Looks beautiful online but has too much material and the zipper catches on the lace. also runs very large, i am normally a small but would need and xs in this dress",3,0,6,General Petite,Dresses,Dresses +844,34,Very unflattering,True to size on the neckline and arms but extremely large and puffy in the torso. very unflattering cut!,3,0,0,General Petite,Tops,Blouses +836,32,Adorable,"I purchased the floral patterned version and get complimented every time i wear it. i found it to be pretty true to size, even after washing. it's a little sheer, so you'd definitely want to wear a camisole underneath for work. it's a great top for spring/summer!",4,1,4,General,Tops,Blouses +836,60,Didn't work for me,"I thought this top was adorable in the store and online. it just didn't work for me. although it fit, it flares out too much in the front and just wasn't flattering on me. i am 5' 5"" and 128 lbs. and ordered the small.",3,0,3,General,Tops,Blouses +836,21,Beautiful top!,"Love this top! made with 100% cotton, a vintage look, and flattering details this top is a winner for me. i think it fits true to size (got my regular size 0) and i did not need the petite and i am fairly short (5'3""). it is somewhat see through, but with wearing a nude bra and not wearing it to work, i think it can be worn without a cami. the perfect lightweight, comfortable, standout piece for the summer time :)",5,1,8,General,Tops,Blouses +836,59,Love this blouse,"I really like this blouse a lot. very very easy to wear!! i wore with pencil skirt to work and with skort as shown similar on model with sandals on weekend. very flattering and great blue color!!! very happy with this purchase. highly recommend. i am 5'6"" short torso and my usual 6 worked.",5,1,0,General,Tops,Blouses +844,53,Lovely printed blouse,I just purchased this beautiful printed blouse in the pink color and love it! i almost always wear a size small at retailer (34d-27-35) and the fit and length are both perfect on me. if you are smaller chested you can easily go down a size. i absolutely had to have this whe i first saw it at the store and noticed how popular it was as i had to order it due to it selling out like hot cakes there. what i like about it is the texture and the ruffles at the front plus the length of the sleeves stop ri,5,1,4,General Petite,Tops,Blouses +936,27,"Love, love, love!",Bought this on a whim and it exceeded my expectations. i didn't know what to expect with the quality of the fabric but this is incredibly soft and warm. haven't worn it outside yet but i can see this already as one of my favorite items. i'm usually an extra-small but the xxs also fits. it's a great buy especially since it's on sale now.,5,1,2,General Petite,Tops,Sweaters +895,62,Loveee,"This is an awesome vest - so soft, cozy, and i cannot wait to wear it through fall and winter. for sake of not repeating all the positive aspects that the previous reviewers did, i'll mention the one flaw...no pockets :( still totally worth full price in my mind though.",5,1,7,General,Tops,Fine gauge +836,41,,"I find that maeve shirts tend to run a little small. i'm usually an 8 but needed this in a 10. this shirt is reallly just perfect. great sleeve length. just the right amount of v neck. beautiful pattern with a vintage feel. i love the combo of stripes, polka dots and sweet flowers.",5,1,23,General,Tops,Blouses +831,50,My favorite new blouse,"This blouse is so pretty. i love the long tie. the pattern is very unique. it is a thin, light weight fabric so you can easily wear it underneath a leather jacket.",5,1,3,General,Tops,Blouses +844,54,A standout,"This is a beautiful blouse...sheer and feminine. i am small busted and slender so i need a size smaller than usual. it is a full top...can't tell exactly how full in the photos but with a small chest there is just too much under the arms. so if your chest is more ample you could prob order your regular size. this is supposed to be a full, shorter fit...i would say the style is going to look better on someone who is a little taller with a medium sized bust rather than someone who is shorter and b",5,1,13,General Petite,Tops,Blouses +895,47,,,5,1,0,General,Tops,Fine gauge +1066,41,Lovely!,"The photo of these is truly misleading - they are a beautiful vibrant print - see the close-up photo. they are much longer on a regular person - they come a few inches above my ankle and i am 5'5""there is a neat slit off to the side on the front of each (like a pleat) that really allows a nice flow. these look great with boots, flats and do sit lower on the waste as i think they run slightly large. not lined, but drape beautifully. there are pockets (sewn closed upon purchase) and pack pockets.",5,1,0,General,Bottoms,Pants +844,43,Disappointing!,"Like another reviewer mentioned, this shirt is way too short. i'm only 5'2"" (xs) and there is no way this top would tuck in like on the model. also, the quality isn't great as it's very thin and there are strings hanging from some of the seams in the front. it's a shame b/c the print is really pretty and there is this cute little bicycle charm on the tag which makes it feel more unique. sadly, it's going back!",2,0,0,General Petite,Tops,Blouses +836,43,Better in person,"I didn't think anything of this top online (i really don't care for how they styled it) but in store it was more interesting. i'm currently anywhere between a 2-4-6 / xs-s-m, depending on the style, 5'3"" 120lb 34b. size 2 regular in this top fit me perfectly. for some reason, on me, the sleeves were elongating and flattering (closer to my elbow) and the overall length hit me perfectly at the hip like on the model, the fabric is lightweight and therefore slightly sheer but, due to the color and p",5,1,1,General,Tops,Blouses +836,23,Cuter is person,Nice fabric and cute design. a little low cut.,4,1,0,General,Tops,Blouses +907,25,,"I absolutely love this sweater!! it's soft, easy to wash, and looks great!",5,1,0,General,Tops,Fine gauge +836,51,Airy and flattering,The blue motif is a gorgeous indigo with an interesting pattern. a short tunic that drapes nicely and is flattering. very happy with this purchase. i plan to buy a 2nd for my mom to keep her cool and stylish.,5,1,0,General,Tops,Blouses +844,41,Awkward fit,"I had high hopes for this top. really boxy, short",3,0,0,General Petite,Tops,Blouses +1103,49,Beautiful color,"This dress has potential, but it didn't work for me. it runs true to size to a little big, i ordered medium, my usual size for maeve). as for length it fit me as the model (5'9""). the reason i'm not keeping it is that i wish it had some darts in the back to help define the waist a bit,",4,1,2,General,Dresses,Dresses +866,46,Really good quality tee!,I love this tee! the material is thick but not too thick. it's highly flattering- i love that the sleeves are a longer short sleeve to cover up the bingo wings. the shimmer on the front adds something special.,5,1,5,General,Tops,Knits +907,29,Cute top,"I got this top in the black and i love it. the bottom is a silky material that's really beautiful, and the cutout details are really pretty. so many of retailer's sweaters are enormous, but this one fits tts. + +my one complaint is that the bottom white part wrinkles really easily.",5,1,6,General,Tops,Fine gauge +844,53,Not a good fit,"This top was way too short (i'm only 5'1) and way too wide. the cut of this top was so wide, it looked like a tent on me. i really wanted to love this top because the material and style (sleeves, ruffle) are beautiful, unfortunately there is something wrong with the cut. i've have several blouses made by one fine day, which fit nicely, for some reason this top did not. i ordered in my usual s size, even going to an xs would not work because the cut is wrong.",1,0,17,General Petite,Tops,Blouses +895,66,Cutest vest,My daughter and i both purchased this vest at an retailer store. this vest is so flattering on and is so much cuter in person than in the online picture. it is chic and stylish and will definitely be a staple for fall and winter.,5,1,6,General,Tops,Fine gauge +895,32,,"This is a great piece to help ease on in to the chillier days of fall and winter. it's versatile- i can see myself wearing it with plain short or long sleeved tees or even tops with more elaborate padderns or button downs! there's so many options i cannot wait to put this gorgeous piece to use! just as an fyi, the sleeve openings are slightly unfinished and have a frayed effect to them. this may not even be noticeable if you're not looking right up close. for me, this adds to the unique quality",5,1,2,General,Tops,Fine gauge +1080,74,"Beautiful, vintage feel, delicate beadwork","I just got this dress in the mail today and it is even better in person! the description didn't give as much information as i wanted so i'm going to be very detailed in this review. i did take off one star for quality because some of the beads are already loose (two fell off when i picked the dress up for the first time), and i'll have to hand sew others on more tightly. my usual size is a pxs or p0, and there were no petite sizes available. however the size 0 fits perfectly, no alterations need",5,1,9,General Petite,Dresses,Dresses +831,63,Very interesting design,"When i received this blouse, ai noticed that there were gold dots all over the blouse and they were very sticky. some of the fabric would stick to these dots. i thought it was because the weather was sticky and humid. however, after hanging on my closet door, the dots are still sticky. i do love the design and fabric so i will try not to let the sticky dots bother me.",5,1,0,General,Tops,Blouses +844,41,Fun and flowy,"Wasn't sure about this top based on reviews, but glad i purchased! pretty print, looks great with denim. very loose, flowy top. hangs a little short, but that's the style of this blouse. fit true to size. i usually wear a 2/4 and xs/sm with 30dd. size small worked for me.",5,1,0,General Petite,Tops,Blouses +844,40,Beautiful shirt,Ordered the shirt online. beautiful print and good quality material. runs very large - size down 1 may be 2 sizes as the material on the body is very wide. i will be exchanging it in the store.,4,1,0,General Petite,Tops,Blouses +831,40,Beautiful fabric,This too is so beautiful in person. there is gold dots all over the blouse that are not overwhelming. i love this top with business attire and denim. fits tts.,5,1,0,General,Tops,Blouses +836,32,,,5,1,0,General,Tops,Blouses +907,49,"Nice basic piece, will get a lot of wear.","I tried this in the store and i like it - nice and soft, good basic design that will pair with many pieces. but i decided to wait because of the price. i'm sure i would get a lot of use out of this top, but ultimately it didn't thrill me enough to make it my top priority purchase. i bought a sweater that was on sale instead. still, a very nice top. i may buy it eventually, especially if it goes on sale.",5,1,3,General,Tops,Fine gauge +844,44,,Gorgeous in every way except its length and how it hangs at the bottom. i prefer a shirt i can wear tucked in or out. this one will work well tucked in but not out so i am returning disappointed it was so well done in other particulars.,3,0,2,General Petite,Tops,Blouses +895,24,,,5,1,0,General,Tops,Fine gauge +895,70,Soft patterned long vest,"I bought this in a petite size s after trying on the regular size in the store. it was a good move because the proportions in length and width are more flattering. the pattern is busy but works well with patterns in the same color group. it has no finished seams on any edge but that makes it drape nicely. it is a soft, soft fabric, almost fleece-like but not plush.",5,1,1,General,Tops,Fine gauge +907,30,Great piece,I love how soft the sweater materials is and that the built in layer piece falls so nicely. i purchased a small in black and have already worn it with jeans and heels for a dinner and with cropped work pants for the office. the bottom piece does wrinkle a lot but you can easily smooth it out. really quality materials and on sale this is quite a steal!,5,1,1,General,Tops,Fine gauge +844,47,Beautiful and timeless,"I am 5.6"", 138 pounds. i purchased this in a size small. it is flowy and not too short. it has a comfortable, but still feminine and beautiful fit. one of my favorite new blouses...the red print is gorgeous",5,1,0,General Petite,Tops,Blouses +836,27,"Cute top, but not for me","This top light and airy, which is perfect for spring. i'm usually into these types of blouses; however, this didn't quite fit right on me. it's a little too boxy and too low cut in the front for some reason. i loved the design and really wanted to like it... i just didn't love it enough to purchase it.",3,0,15,General,Tops,Blouses +844,36,So disappointed! please fix it!,"This blouse is so beautiful - the collar, sleeves, material...everything except the cut! it was like a tent. it needed to be more tapered, which would be easy to do while still maintaining the beautiful breezy flow, and be about two inches longer. + +i had been drooling over this top for awhile and was so disappointed! please fix it and then i will buy again. i am 5'4"", 140lbs and busty...a small was perfect, with the exception of the massive amount of material.",2,0,0,General Petite,Tops,Blouses +844,69,Ruffled buttondown,"Very pretty blouse. i love the print, and color of the pink floral. tts, i ordered the xs, because of the roomy cut of the blouse. i'm 5'8"", 117 lbs. it fit great. the cut is a little wider then pictured, but still cute. not to short as mentioned by another review, and i have a longer torso, i wasn't crazy about the victorian collar, so tucked it under, and it looks great!",4,1,7,General Petite,Tops,Blouses +844,52,"Exquisite blouse, runs huge","I normally wear a large or extra-large; the medium is still very billowy on me. this blouse is ethereal and lovely, though - pretty and funky at the same time. it's sheer but somehow not revealing. perfect for when you want to look composed and cool on the hottest day of the summer.",5,1,1,General Petite,Tops,Blouses +936,32,Sweater not a coat,"Not a coat by any means, merely a thin wool boucle like sweater with a cheap thin synthetic lining ---and i also would never want the lining to be seen by anyone if i were to set the sweater on a chair or be helped in putting the thing on. the length and bulk is hard to layer under anything else and isn't pretty enough for a spring coat..sizing is also 2 sizes larger than anticipated.",2,0,0,General Petite,Tops,Sweaters +907,37,Soft sweater,"I saw this in-store, tried it on, and was sold. it is not just super soft but very flattering on. i am petite, 105 lbs and bought the xs in black- the sleeves are short enough that no petite size was needed. i will wear this a lot with both skirts and jeans.",5,1,4,General,Tops,Fine gauge +936,32,,"Love this. it's heavy/warm, stylish and a great throw on any outfit. oversized style.",5,1,0,General Petite,Tops,Sweaters +831,42,Could have been cute...,"The fabric was nothing special (i usually like a cotton/silk blend woven fabric, but this was stiff feeling) and the pattern was cute. but what made me return it was the fact that 1) the rose gold glitter dots are puffy paint. literally. puffy. paint. and 2) the dots were not quite dry on my top when it arrived. parts of the paint came off on my fingers and the top was stuck to itself because of it. i could barely unfold it. + +i'm sure this could have been cute, but who wants a top that looks lik",1,0,6,General,Tops,Blouses +907,51,Worth the sale price,Tts. i'm wearing a small. the black goes with so many of my charlie print pants. washed nicely. layers flat to dry. had to iron the shell underneath. great for casual office.,5,1,2,General,Tops,Fine gauge +862,34,Almost but not quite,This top is good quality and cute. it runs large- i'm usually a medium and needed a small. the reason i will be returning it is because it flares out at the bottom on the black which is very unflattering on. it makes me look wide in the waist or like i'm wearing a maternity top. unfortunate because i really liked everything else about it.,3,0,0,General Petite,Tops,Knits +836,37,"Nice, runs small and short","I'm a pretty solid 10/12 in this brand. i went with the 12 since some thought the top to run small...and i agree. while i can wear it and think it will actually stretch out with wear, it's tight in the shoulders and chest. for the record, those are 2 areas i never have problems with. i'm a 36b and it was flattening my chest. it was also quite short on me. i have a short torso and it was barely hitting below my belly button. the shirt felt more like a size 8 than 12.",3,1,3,General,Tops,Blouses +936,50,Amazing sweatercoat!,"I gave this four stars only because the lining has some polyester (poly/rayon blend) in it and i don't like polyester; still, i couldn't pass it up due to the chic look and the oh so warm feel of the coat. it's like wrapping yourself in a warm blanket and the wine color looks amazing! it's a little on the pricey side. since i consider it more of a sweater than a coat, i would have liked the price better if it was $100 less. it was one of those items that was hard to take off once i put it on. i",4,1,17,General Petite,Tops,Sweaters +895,36,Great piece for layering,"I like this sleeveless sweater - it adds warmth and visual interest without adding a lot of bulk. paired with black/white patterns it's pretty versatile (as seen in the pics) - a great staple for a more casual office environment. being a taller girl i love the length on it, and find it's flattering for my curvy figure.",5,1,0,General Petite,Tops,Fine gauge +836,65,Cute but ...,"This blouse is super cute but oddly sized. i bought a size up and still i squeezed into the top around the bust. the front slit is too low and shows a bit too much cleavage, so this had to go back. i really tried because the fabric is wonderful and the shirt is light and breezy for summer, i just couldn't make it work +.",3,0,0,General,Tops,Blouses +580,60,Nice thin sweatshirt,"I love the sweatshirt + clay color is very different it's a nice light fabric with nice detailed edges + although it is an oversized piece it hangs and fits well although i am petite + great light sweatshirt for spring and summer",5,1,1,Initmates,Intimate,Lounge +895,46,That special lauer,"Love the patterns and the length. i basically would agree with all the reviewers including the person who noted no pockets. +it's really a special piece and on sale, very worth it!",5,1,0,General Petite,Tops,Fine gauge +862,38,Comfy and cute,Very comfy and light. can be casual with jeans and boots or dress it up with a nice necklace and pencil skirt.,4,1,0,General,Tops,Knits +862,37,Looks better when tried on; very cute,"I got the navy stripe version of this shirt and it has a very cute nautical vibe to it. i am either an xs or s in antho, and went with the xs for this shirt as i think the s would be too boxy. normally i would have overlooked this shirt as it's rather unimpressive on the hanger, but it was on sale so i tried it on. very cute when tried on! it fits well across the shoulders but isn't too clingy in the body, which i like. the fabric is very comfortable and the shoulder detail gives it a little mor",5,1,1,General,Tops,Knits +844,46,"Romantic print, elegant & beautiful - i love it!","Not sure why this shirt is getting bad reviews. i am tall and have a long torso, so perhaps that is the issue for some who find it not so flattering? maybe if your taller it hangs better? i have to say... i love everything about it. it is a fantastic print, it is very flowy but i don't think it's too much in that regard. i think it is fitting with the romantic, girly style of the garment. in my opinion not too short, just right. i took a medium, i am 5'8"" and athletic.",5,1,4,General Petite,Tops,Blouses +836,29,,"I love maeve and was so excited for this top which looked like an update from a last season favorite. unfortunately the fabric was stiff, it was tight in the chest and went straight down from there. returned.",2,0,0,General,Tops,Blouses +895,39,Positively agree,All the rave reviews are true! this vest is plush and funky and i love wearing it. i'm having fun figuring out different outfits to wear with this. this is a great three season layering piece and i'm thrilled i was able to get it on sale. my only regret was the lack of a petite selection.,5,1,0,General Petite,Tops,Fine gauge +836,25,,I love this top. i got it on sale and am so glad that i did. it is a short too but still super flattering. it isn't too boxy on me.,5,1,0,General,Tops,Blouses +895,64,Love the print & style,I tried this on the other day at the local store in a size xs/s. although it's wool i didn't notice that is was itchy & usually wool bothers me. i am of small build but i did like the long & oversized look. i admit i am drawn to the print anyways. i noticed the right armhole was larger than the left so i tried on another xs/s - it was the same. probably the armholes will be smaller in the petite sizes. i decided to make other purchases but will order the petite xs/s in a few wks since the invent,5,1,4,General Petite,Tops,Fine gauge +895,57,So cool,"This has great drape, length, the pattern is super versatile with solids or prints. i am finding the wool to be itchy around the neck, so not sure if i will keep, though i don't seem to want to take it off! has a lightweight, boiled wool texture, contrasting print and design so cool!",5,1,1,General Petite,Tops,Fine gauge +895,44,Modern black and white,"I was skeptical about this duster and had to see it in person, and it was love at first sight. the black and white makes it versatile, and the pattern makes it interesting and fashion forward. more importantly, the pattern is cleverly designed which doesn't compete with your wardrobe should you wear a bright color or a similar pattern (as shown on model). i purchased the regular xs/s and it fit me fine (i'm 5'2"", 34b, 26 waist, and 36 hips) and the hem falls about two inches below my knees. the",5,1,2,General Petite,Tops,Fine gauge +836,44,Subdued sexy,"Surprisingly flattering on, especially with pants/jeans. extremely figure flattering because it enhances the figure and hides flaws: the pleating enhances the bust, the v-cut provides a touch of a peekaboo (not enough to show cleavage but it's there in a super flattering way), the hem flares out a bit to hide the tummy and enhance the bust even more; the short sleeves are versatile so it can be worn in the office, under a jacket, or just plain for going out. the material is not too thick but not",5,1,6,General,Tops,Blouses +859,26,So sexy,"The top runs small, it is a very sexy and slimming top. i tried in l, it was too small so i have ordered it in xl. i hope it fits because it is very fitted and i am worried that the bottom will roll to the top with a fabric like this. but it is a very sexy, good looking, and slimming top. i love it!!",4,1,0,General,Tops,Knits +862,37,Just okay,"I was looking for a basic tee, but this one was just ok...the quality is okay, but it us not as soft as i would have liked. unfortunately, i will be returning this item.",3,0,0,General,Tops,Knits +1049,48,One of my favorite pieces for night,"An excellent going out to dinner, to a lounge, etc. piece. super flattering, sexy, feminine and trendy! can be dressed up or down with some nice accessories. i'm only 5 feet and very wary of jumpsuits, but this was excellent!",5,1,0,General,Bottoms,Pants +862,35,,I would've looked right over this online but i saw it in store and had to try on. the navy and the white were both cute but i tried the navy. i'm usually a m but went with the s b/c it looked better fitted. this shirt has a very vintage feel to it and is slinky and comfy. i can't wait to wear. would look great with white jeans!,5,1,10,General,Tops,Knits +1089,67,Elegant and eye-catching,This elegant white lace dress attracted compliments everywhere i wore it. it is classic with just the right amount of quirkiness . i like everything about it!,5,1,0,General Petite,Dresses,Dresses +1089,24,Work-appropriate lace,"I've been looking for the perfect work-appropriate lace dress (for a casual/creative work environment) for a while, and this was just the ticket! the pointed collar and demure shape add some structure to the feminine lace. i rolled the sleeves to a short-sleeve length just to tone done the cutesy factor a tiny bit more (although the sleeves, worn long, are absolutely gorgeous!). the lace isn't exactly the highest quality lace that retailer has ever used, but pretty nonetheless. i'm 5'5 /125 and th",4,1,1,General Petite,Dresses,Dresses +1104,59,Poor quality,Disappointed in the quality of the dress. love the style and especially the colors. the fabric of the body of the dress is very very thin and just poorly made. the top bodice is more substantial. not worth the price tag of $148.00. dress does run short.,3,0,13,General,Dresses,Dresses +127,47,Soft and cozy,"Comfy cozy and a bit on the big size, even for an oversized piece. order a size down, even if you want a boxier look. unsure how the fabric will hold up-but if it does it will be a great get.",4,1,0,General Petite,Intimate,Lounge +1104,42,Looks are deceiving,"This dress is not what i expected. the bottom half is wool-like material-looks like someone has worn it. the top snags easily so you must be careful when wearing jewelry. when i received the dress i noticed there were two small holes under the arms. i wouldn't of paid full price but for the amount, i sewed up the holes and packed it away for winter.",3,1,0,General,Dresses,Dresses +936,29,Terrific sweater with great detail; runs large,I ordered the sweater in a medium but it was too large - so reordered it in the small and it fits perfectly. love the length- it hits mid hip. it is more of an a-line than straight as show in the picture. the detail is fun and the sweater is well made. highly recommend it- i have received lots of compliments on this sweater.,5,1,0,General,Tops,Sweaters +902,54,Pretty/different style,"I love this top, it's design is very pretty and like nothing that i have. i think this top runs true to size, i'm usually an xs/s in tops and i went with the s for this one and it fits great. i will say that the top layer of material will snag very easily, so while wearing it you have to be very careful!!",4,1,3,General,Tops,Fine gauge +995,41,Poorly executed,"This skirt is very short. i ordered my usual xs petite and it was so short that the longest part ended above my ankle. that's quite off because i'm only 5 feet tall, and i wore it pretty low on the hips. it also flares out awkwardly below the knee. there are 2 vertical seems and they exacerbate the jagged appearance of the hem. i was drawn to the edgy style shown in the photo but in person it looks like my 5 year old cut up a skirt. plus, the fabric--while thick and beautiful and stretchy--has a",2,0,11,General,Bottoms,Skirts +936,62,Beautiful!,"This sweater is of nice quality and has such great detail to it - love the pattern to the knit and the ribbon detail is unique and beautiful. the knit itself is of mid to thicker weight, so definitely appropriate for winter, fall, and cooler spring days. i bought my normal size small and felt like it had more of a slub fit than pictured in the model shot - it was wider down the torso and a little shorter (not tunic length like picture). i'm 5'7"" with a longer torso and this hit maybe mid-bum and",5,1,9,General,Tops,Sweaters +127,29,Great with leggings!,"I really like the appearance of this item, and it looks pleasing with many different styles of leggings. it does run a little large. i am a ""true to size"" small, and this hangs on me a little, but i love the design of the back. it is so soft and comfortable!",4,1,0,General Petite,Intimate,Lounge +1104,38,Bad quality.,"I don't normally review my purchases, but i was so amazed at how poorly this dress was made, i couldn't help myself but to post a review. the neck line isn't even hemmed down so it flaps up. the material is thin and feel cheap. this dress isnt even worth $20 in my opinion. i was expecting a well made, good quality dress for the high price tag.",1,0,20,General,Dresses,Dresses +1086,25,Flattering and fun!,"Ordered this dress online, and i love it! i was looking for an understated but fun new years dress and this was exactly what i was looking for. the only minor qualm i had about the dress was that the velvet dots that hit where the seams met made the dress look puffier than it should some parts around the waist, but for the most part, the dress fit very well and was very flattering, may just need a little bit of ironing. i am 5'9 and usually am more conscious of how things fit around my hips, and",4,1,9,General,Dresses,Dresses +936,33,Love love love!,"I saw this online but it never struck me as something i would wear. however, after seeing it in the store it really caught my eye with its detailing, so i tried it on. what a great decision because it is so much more beautiful in person, and very soft and warm. it's a perfect winter sweater to start the new year. i am 5'-7"", 138 lbs. and the medium fit perfectly, though it's a little shorter on me than shown in the photos.",5,1,1,General,Tops,Sweaters +746,34,Lovely fabric but tiny hips,"If your hips are bigger than a size 6 us you can't fully close this robe. the model must be wearing the larger of the two sizes to have such a nice oversized fit. the fabric is soft and lux and amazing, but the weird dart in the back and the closure is right over my sadly size 8 hips and butt. if i was taller and thinner i would have kept this and worn it every day.",3,1,0,Initmates,Intimate,Intimates +1081,53,"Lovely dress, small top, different color","Like the reviewers before me, this dress runs small in the rib cage. i normally take a 12 and am a 32b. the max size that this dress comes in is a 12 so i could only order a 12. it just fit but that is because i am a smaller 12 on the top. there is no wiggle room in the dress. + +that being said, it is a really cute style and shape - rather like a 50's style dress if you will with a sexy back. i am curvy on the bottom and this dress hides the flaws there for sure. however, because it is a fulle",4,1,3,General Petite,Dresses,Dresses +127,46,Too big/so soft,"I should have exchanged it for a smaller size, but i wanted to wear it, so my mistake. i tend to wear size 12-14, and the large is entirely too big. it also had piling right out of the bag. but it is just so soft that i tore the tag off and wore it anyway. if you get this, size down for sure.",3,1,0,General Petite,Intimate,Lounge +936,33,Not sure about this one,"I'm surprised other reviewers loved this one so much. it's completely different then how it looks on the model. it's much shorter, which others do mention, but it flares a lot. enough to feel maternity-ish on me. it looks fitted on the model. maybe it's my shape, i have a short torso and carry weight in my hips. i ordered an xs too. i will say the material +is very nice and it's well made, but it's going back.",3,0,1,General,Tops,Sweaters +127,40,"Comfy, but not made to last","This sweater is fine for the casual days. i bought this in cream and i have to say after one wash it looks old. i'm a huge retailer lover and buy a lot of clothes from them. this is just not the best quality and looks tired after a few wears. very soft, but poor material. not my favorite purchase.",3,0,2,General Petite,Intimate,Lounge +1035,32,Loving these jeans!,"Great fit! no bagging and sagging and they fit true to size. very cute! for reference, i'm 5'2, 115 lbs and take a 26p. they look just like they do on the model. i highly recommend!",5,1,0,General,Bottoms,Jeans +902,38,Lovely but runs big,"Just tried 'layered sadie top' and it felt so nice on. good hand feel for both materials but note that the knit on top is a little too delicate for machine wash but can be hand washed. this item is definitely ""vanity-sized"". i'm 5'1, 113lbs and the xs looked nothing like how it does on the model. it was flowy as depicted but it came down much lower on me and looked a little maternity-esque. highly recommend because it's gorgeous and well made but i would definitely come in and try it out for you",4,1,6,General,Tops,Fine gauge +995,62,Possibly the cutest skirt ever!,"The length is perfect. the cut of the hemline makes it off the charts cute. i love it w ghillie type flats or booties. pair w a big warm sweater, or a sleek turtleneck, and watch heads turn as you enter the room! i promise! love this skirt.",5,1,11,General,Bottoms,Skirts +1104,35,,,5,1,0,General,Dresses,Dresses +1089,34,Classic,"This dress is beautifully constructed. it is very fitted and does run on the small side. it will be a perfect derby dress. the lace is lovely and the pearl buttons are great touch. age appropriate for anyone..a very +pretty dress. simple, classic and gorgeous!",5,1,0,General Petite,Dresses,Dresses +1086,26,,"I really wanted this dress to work out, but i was slightly disappointed in the fabric for the sleeves. the fit was accurate. i'm 5'7 and ordered a 6, however, my husband said it looked too little girl like. i did end up returning it :(",3,0,9,General,Dresses,Dresses +902,31,,"I got this top to wear with shorts as the color goes with a lot of different prints. the quality is excellent. this top runs very large, as in three (3) sizes too large. for the record i am a 34.25.35 and ordered my regular size the xs and this top makes me like i'm pregnant with twins. also, the layering looks nothing like it does on the model, it looks sloppy, unkept and a general. i think this would still be great for ladies who are bigger in the chest and waist, otherwise it just doesn't wor",2,1,6,General,Tops,Fine gauge +902,58,Sweet little top,"The color is a very soft peach, and the knit top over the gauze is a very light, summer-weight knit. i can see this being worn casual, or dressed up with a statement necklace and nice skirt / pants.",5,1,3,General,Tops,Fine gauge +1094,40,Comfortable and dressy,"I bought the dress that has the cream skirt with large flowers. i wore it for a wedding and was not only very comfortable with the pockets and the cotton top, i looked good. i got a lot of compliments on the outfit. people thought it was a shirt and blouse rather than a dress. i loved the high low skirt. the sizing was accurate and the dress is easy to clean.",5,1,1,General,Dresses,Dresses +1086,22,Not the best quality,"I got this dress in hopes of having a really nice winter formal dress. it was not well made at all! the lining didn't line up with the top layer and the waist puffed out in uneven places. i am curvy so a puffy waistline in the last thing i need! the fabric itself is very nice, but just not well made. i do not recommend this dress.",3,0,3,General,Dresses,Dresses +936,55,"Soft, feminine, versatile","Soft, comfortable, stylish. i eagerly awaited the arrival of this beautiful sweater and was not disappointed. the sizing was accurate for a perfect fit and i love the feminine detailing and shape of the necklne. the ribbons add an extra touch of style to a sweater that is both casual and elegant at the same time. very versatile.",5,1,1,General,Tops,Sweaters +1036,66,Stylish option good for petites,"This is my first pair of mcguire jeans, and i like the fabric and fit. thank goodness for petite sizing! these 32p fit just right on my hips, with no gap between the waistband and my body. fits through thigh and hips and pretty slim all the way down. nice stretch. of course, the proof will be after wearing a few times and washing. i will update my review if i do not like them so much after that,",4,1,0,General,Bottoms,Jeans +936,39,Sweet casual,"Adorable sweater with a loose knit that helps slim down my man-back appearance. cut is tapered to the body but with a soft flare at the bottom hem. not clingy, very soft fabric doesn't accentuate bulges so i am happy about it's forgiving silhouette.",5,1,0,General,Tops,Sweaters +1094,30,A perfect investment,"I walked into retailer with low hopes of finding a dress for a friend's spring wedding, as a lot of this season's dresses are more casual, but was drawn to this pretty number for multiple reasons: it can certainly be dressed up or down depending upon accessories, the fabric feels incredible, it has pockets, and it's really fun yet classy as heck. typically i wear a 10/m in dresses, but they only had a 12 in store, so i took it and made it work by tightening the sash a bit extra and wearing a bra w",5,1,1,General,Dresses,Dresses +1094,53,This dress is gorgeous!,"I was able to snatch this dress up just before it sold out (and i see it's now back in stock!). the quality of the fabrics is outstanding, not flimsy at all. the top is stretchy. normally i would wear a 2 at retailer, but the only choice i had was 0 and it fit. i am 5'5"" tall, 125 lbs. everything about this dress makes me smile and i can't wait to wear it to my holiday party! don't hesitate if you are on the fence.",5,1,3,General,Dresses,Dresses +1086,23,"Great dress, rough zipper",I saw this dress online and immediately went to the store to try on! it took three sales asscoaites to help me zip the dress but once it was on it was beautiful! the bodice fits really nicely. true to size. there was extra fabric around the waist bust nothing that made the fit look weird. love love love!!! wearing for christmas eve!,5,1,6,General,Dresses,Dresses +127,37,,"I got he green color with gray accent stitching, looks awesome with gray tone leggings. super soft, definitely runs a little big (5'6"" 140 lbs i ordered the small) but not in an unflattering way.",5,1,1,General Petite,Intimate,Lounge +127,51,Cute & comfy top,"Love this tunic, it's super comfy & cute. i have in cream and love so much i ordered in mint. looks great with jeans and boots",5,1,0,General Petite,Intimate,Lounge +1083,37,Flattering and great buy on sale!,"I thought this dress was worth reviewing since my opinion differs from many others. +i agree that the fabric is quite thin compared to what you may be used to with byron lars dresses, but the flattering fit and quality (has a nice built in slip) i found to be what you may expect from the brand. if you go in thinking it's more of a spring/summer dress, you will not be disappointed. +however, i find the sizing to be slightly off. i usually wear a 2p (i'm 5'2""), or a 0 regular. +i ordered several size",4,1,2,General,Dresses,Dresses +872,35,I love this shirt,"I really love this lace-up shirt, but i only liked it in black on me. i like it open like the model is wearing it, but i had to have it a little more closed because the lace part does go down a ways-and i felt like i was revealing a little too much. i would likely wear it open, but then have to pair it with a cami underneath to feel comfortable. i absolutely love the whole outfit as-pictured, and also reviewed the polka dot pants. i wish the laces were a little longer than they are-if you have i",5,1,14,General,Tops,Knits +1083,35,Flimsy,"I love byron lars dresses, and this design is on-point. the ruffle at the neckline is so pretty, and the dress fits like a dream. however -- the fabric!!! i would have loved it if this dress had a heavier feel. this is, sadly, going back today.",2,0,2,General,Dresses,Dresses +831,40,Super comfy,"Love this blouse, it;s super comfy, looks awesome with jeans. this blouse runs true to size i purchased in my normal size small.",5,1,0,General,Tops,Blouses +1080,32,"Pretty pattern, weird fit","I fell in love with this dress when i saw it online and due to the ""slim fit,"" i ordered a size up -- a 2 petite up from my normal 0 petite. when i received it, i was surprised about two things: 1) the material was kind of puffy (not bad, just weird), and 2) it was too big on top - rare for a petite size - even though it fit everywhere else. i wanted to love it, but had to return. would be gorgeous for someone else!",3,1,1,General,Dresses,Dresses +1077,68,Easy and stylish,"I was hesitant based on the reviews, but i'm glad i ordered this dress (in blue). the material is like a french dot texture that is soft but still a bit structured. i had no issues with the fit. it's appropriately just a little oversized. the styling is very mod!",5,1,2,General,Dresses,Dresses +872,65,,Great feature...perfect lacing...do not need to worry that it is too low since there is material behind the bottom of the lacing. like 3/4 length sleeve. gives top the right proportion.,4,1,0,General,Tops,Knits +964,37,Very versatile,"I purchased this jacket in green, x-small a while back and wasn?t 100% sure about it due to the size. i?m 5?3?, 117 lbs and a 33a and thought it was a little snug so i tried on the small and that was way too big so i kept the xs. i have worn it a few times and it does look great however i can only wear thin tops with it. recently i purchased the black, x-small and this i love. it?s looser then the green so i can get away with thicker tops. +i do recommend both jackets. they are pricey for what",5,1,2,General,Jackets,Jackets +1089,39,Small boobies only,"I love this dress, i mean it si really pretty in person, however, the breast area is just too small... i can't wear a bra with it, and my ""older"" breasts just droop, not flattering. they are barely covered... i am a bit disappointed at that, but if you are smaller up there, i say give it a try... i am 115 lbs, 26.5 ion waist, 30dd and xs petite was great everywhere but chest. + +colors and fabric are great, i love that the different colors are different types of fabric... too bad.",3,1,1,General Petite,Dresses,Dresses +872,22,Love the lace up design!,"I love the lace up design and bought the red xsp, fabric is a bit thin and mediocre quality, but over all happy with purchase. wish this top came in navy and white as well. even a navy/white stripe would be a fun option too. thanks you for offering this top in a petite size. :)",4,1,1,General,Tops,Knits +1083,50,,,5,1,0,General,Dresses,Dresses +829,33,Disappointed,"I got this shirt in the mail today and was really excited to try it on. other reviewers said that it ran large so i ordered a size down and it fit perfect. i looked in the mirror and noticed the ruffles were misaligned and obviously so. i want to exchange it in the store but seeing that the size is not longer available online, i'm not really sure i'll find another one in my size.",4,1,0,General,Tops,Blouses +964,33,Very chic,"I love this jacket over a dress! it's snug fitting so can't wear anything bulky under it, but super stylish and comfy stretchy material. it's a bit pricey but i get a lot of wear out of it so worth it to me.",5,1,0,General,Jackets,Jackets +1089,38,,I'm 5'1 and 110 lbs. i ordered this in a xsp and i could barely zip it up. and when i did i couldn't breathe. i tried again and ordered a sp and it's perfect! now i just need somewhere to wear it.,5,1,0,General Petite,Dresses,Dresses +829,32,,"Beautiful shirt, hits me a little higher. i'm not sure i'm going to keep it just because i have something similar but its a beautiful top. i'm 5'6"" and carrying a little extra baby weight right now so i'm an 8-10 instead of my usual 6-8. i ordered an 8 and it fit well.",5,1,0,General,Tops,Blouses +829,51,Beautiful and versatile top!,"I love this blouse because it's great for work with cardigan over it, and great for going out with skirt, pants or jeans. it is tts and very flattering, light weight, and comfortable.",5,1,0,General,Tops,Blouses +967,56,So pretty and soft,"I happened upon this in my local store despite the fact that it is an online exclusive. i love finding returns so i can see them in person. i loved the soft colors right away. my hesitation was the standup collar but it actually folds down just fine and gives the vest lapels too. it also looks nice belted, left slightly open. i usually wear small or xs in tops and the small fits nicely. it doesn't need to close since there are no built-in fasteners. i will wear it with a long button down shirt o",5,1,1,General,Jackets,Jackets +829,38,Great for work or fun,"I found this to fit tts. i sometimes wear petite, but found the petite sizing to be a little off. i have a pretty short torso, but found the petite to be too short. i opted for the regular sizing and got a 6; it fits great. this top is great for work (styled with a cardigan or blazer) or for play. i can see it dressing up or down very easily.",4,1,2,General,Tops,Blouses +829,35,Perfect shirt for work or night out.,"I ordered the mustard yellow in 10 and found the shirt to fit true to size. it works great with a skirt and with jeans but i did need to wear it with high rise jeans otherwise it came right to the top of my normal jeans and i didn't want to risk showing any skin at work. + +the color is amazing and looks good with just about any color bottom so there is a lot of room to have fun with the top. + +being larger on top the ruffles did not bother me at all, but rather act like an accessory - i find",4,1,0,General,Tops,Blouses +872,48,Flattering tee,"I just tried this top in red in xs and i think it's cute. it's fairly fitted in my opinion; the sleeves are pretty snug but there's stretch to them. i was fine with the fabric and the size xs (i'm ~105 lbs, 34aa) even though sometimes i fit better in xspetite. the only downside is that the washing instructions say to remove the tie before machine washing, and i guess that put me off a little (the idea of re-lacing it every time). so i haven't yet bought it. the red is vibrant, tomato red and the",4,1,19,General,Tops,Knits +872,31,,"The cut of this shirt is lovely and well thought out, the opening for the arm are not too big like some other shirts. i liked the material and the melon/ salmon color which i ordered was more vibrant in person. this does run large so i wished i had ordered one size down.",4,1,0,General,Tops,Knits +149,38,So soft and comfy and fit for yoga!,"5'6"" 113lbs purchased size small in rich navy. so soft and comfy and i like that the cuffs help the pants not ride (even during sleep). i like that the fit is slim but not constricting on legs as all my yoga pants. tested this at my local vinyasa class and it held up without making me too hot (and i sweat a lot). + +my biggest complaint is that the fabric pills right out of the packaging. actually their tag says the fabric does this and over time will continue to do this more and more because of i",4,1,1,Initmates,Intimate,Lounge +964,58,Funky and classy,Great looking jacket with attitude. the color is more like a faded black or deep charcoal grey. i'm usually a large petite but this is snug in the chest. luckily it's a knit so i can make it work by zipping it partway and leaving the top half open.,5,1,4,General,Jackets,Jackets +1030,63,Really cute!,"These jeans are so cute! they are perfect for petites too! i am fit, look way younger than my age and get so many compliments when i wear these jeans. i'm. i'm 5'2"", 115 libs and they definitely fit tight in a good way. just like the photo pretty much. they are not small like the white mother ankle fray jeans for sale on the site now. those definitely run smaller so these are true to size with a tight fit.",5,1,1,General,Bottoms,Jeans +964,40,Love. this. jacket.,I live in los angeles and this is the perfect beginning of fall jacket! i've worn it with dresses and with jeans. definitely has enough extra room to slip a hoodie or small seater on underneath when it gets colder. it's soft and stylish. the only downside is that the pockets aren't really deep enough to put anything in.,5,1,5,General,Jackets,Jackets +1083,41,Bunches up weirdly in the front,"I loved this dress as soon as i tried it on, but... it bunched up weird in the front around my hips. i ordered a second size 4, hoping that it would fit better. but same thing. if i tried to go to a size 6 it would be too big every where else. fyi - i'm 5'8"" 129lbs and i'm a runner. it's not like i have a huge backside or anything. my guess is sizing is off. i've tried another of his dresses and it fit perfectly.",4,0,0,General,Dresses,Dresses +872,60,Cute top,I really like this top. it's super cute - perfect for a football game or fairly casual event. the material is ribbed and is thick enough that you can't see through. i purchased this top in red and initially in petite but ended up returning it for the regular size. i love this top!,4,1,1,General,Tops,Knits +872,60,Red tee,"Nice tee, true red,3/4 sleeves, lacing is a nice touch. good quality and great sale price.",5,1,1,General,Tops,Knits +829,48,Undecided,Feminine and lovely flutters indeed. i am on the fence. i ordered in a petite - had to size down - and something about bust and arm holes not completely right. given the light and airiness of this tank it does not seem right to have to wear a camisole underneath which is what it would need for work wear.,4,1,6,General,Tops,Blouses +872,70,Great casual shirt,"Very nice casual, inexpensive shirt and the laced neckline is great....not too revealing and easily worn tied +without looking prudish. and of course, open as well",4,1,0,General,Tops,Knits +964,27,So much better irl,"When i ordered this little jacket i knew i would like it, upon arrival i fell in love. it is a little edgy with leather detailing and with stretch in all the right places, the crop is super flattering. appeared online to be a bit more of a sweatshirt material but it has so much structure and holds its shape!",5,1,0,General,Jackets,Jackets +1089,32,,"I'm usually an xs for most retailer dresses and shirts. i ordered up per other reviews and got a small. the small fits comfortably around my waist. the chest area is not made for large chests. my 34ds were barely contained. sad to say, i won't be keeping the dress. the layers, fabric, and colors are truly pretty but the design/fit is disappointing.",3,1,0,General Petite,Dresses,Dresses +872,26,Ultimately unimpressed,"I really like how this looks on the model, but in real life this top is much tighter. i was hoping for a good layering top and have been playing around with the trend of lace up tops. i bought it without trying on figuring a small would work, but it was much too tight and the lace top reminded me of vans shoes. i returned it, a girl much tinier than myself has it and it is very cute on her. so, best works on a model body type figure than someone with even slight hips.",3,0,3,General,Tops,Knits +872,51,Vibrant red color,I got this shirt in red and black. both colors vibrant and material of shirt is nice cotton blend. will get lots of use from both shirts.,5,1,1,General,Tops,Knits +872,48,Love,This is the most flattering shirt--love the fit and color!,5,1,0,General,Tops,Knits +1077,30,Looks fine if you don't move your arms.,"Three strikes and retailer is out for me! i am so disappointed. i really liked this dress and was looking for a fun, distinctive new shift dress. got it, tried it on, took it off, went back to look at the listing online...nowhere does it mention that it has a drop-seam in the shoulders. i guess you can see it if you zoom in closely on the image, but it's not mentioned in the text. who on god's green earth actually looks good with a drop-shoulder?! it hits every woman under 5'10"" right in the middl",2,0,0,General,Dresses,Dresses +967,56,Great plaid!,"This vest is very warm and soft. it is actually a fleece that almost appears as wool. the plaid is beautiful-a pretty soft pink with the black and charcoal colors. i ordered a size large and the fit is okay. an xl would have been too big under the arms and in the bust area however, i would have liked it a little looser in the bottom half. i kept the large as there is no closure to the vest. it just hangs open.",4,1,1,General,Jackets,Jackets +872,27,In love with this shirt,"I love this shirt so much that i've now bought it in 2 colors -- the olive green and the red. probably would have bought it in black too if i didn't already have enough black shirts. it's both a plain and simple tee, but with the fun lace-up detail at the neckline that keeps it from being boring. + +it runs true to size but is very fitted. however, due to the thickness of the material, i didn't feel like any unflattering bumps or lumps were being highlighted, despite how close the shirt fit to my",5,1,2,General,Tops,Knits +964,44,Perfection.,"Don't try this on, if you don't plan to buy it. it feels amazing!!! i bought the black and it is a lovely charcoal color and matches so much.",5,1,1,General,Jackets,Jackets +872,39,Perfect!,"I like the lace-up trend, but most designs are too revealing. this shirt is super sexy, but not immodest. i bought it in black and am now buying another color. to me, the fabric feels soft and thick, very nice.",5,1,2,General,Tops,Knits +234,33,,,5,1,0,Initmates,Intimate,Swim +149,33,The most comfortable pants ever,I have these pants in navy and they're amazing! i cuff the hem in half and they look like joggers. they're ridiculously comfortable and tts but are not very thick so i'm pretty sure ivory would be see through; especially if you wear them during practice.,4,1,0,Initmates,Intimate,Lounge +829,60,Perfect top for work,"I got this top in navy and i love it. it's loose and flowy and comfortable, yet dressy enough to wear for work (or dress down with jeans). i'm 5'4"", 125lbs and the 6 was a bit large on me. i could've sized down a little but i actually liked the loose fit, and the length was long enough to tuck in if i wanted to. definitely recommend.",4,1,0,General,Tops,Blouses +829,44,"Overall, i like it, but some sizing issues...","I purchased the navy in this top and i really like the design and the style for the price (i believe the navy is on sale). my issue is that i do have to wear either a camisole or a little bralette or bandeau or something under it because it is too low cut in the front on me and the arm holes are ridiculously large. i might have been better off sizing down, but i bought it online, so i just decided to live with it. pretty top, though i do think it runs large.",4,1,0,General,Tops,Blouses +872,71,,"Great shirt. the neckline is super flattering. the fabric has some weight to it. right now i am in a ""fat stage""...and it still looked good. it will look even better without the midriff bulge! i bought the shirt in black. i'm thinking of ordering it in red...it's that good.",5,1,0,General,Tops,Knits +872,44,,"This is a great shirt that goes with everything. it's super sexy and i have to say....the girls look great in it! i bought the black first and went back for the green. the quality of the shirt is great...not cheap and no smell, at least not in my experience, like was mentioned by another reviewer. i can't say enough about how cute this shirt is!",5,1,6,General,Tops,Knits +850,52,"Very pretty, boho chic","I purchased this blouse because i love a 70's vibe in my tops. it is a beautiful, colorful top, but the colors weren't flattering on me. having said that, the cut is nice, the fabric is lightweight and flows nicely, and the fit was fine on me. i am a curvy 5'5"" with a 36 c cup. go for it if this is a style you like. one other note, i wish it had been a bit longer, but i am older and prefer a little more coverage. it's just a personal preference. i think the picture is an accurate depiction.",5,1,5,General Petite,Tops,Blouses +850,23,Great too but not for women who have a large bust.,It's hard enough for women to find clothing that will make them look as beautiful as they feel but add a bigger bust size (i'm a 36dd) and it makes it this much harder. i ordered this top because of how beautiful it looked on the model and the price. when it arrived i was so excited! retailer does such a beautiful job with the way they handle their items! it was wrapped beautiful and no damage. i ordered a size 8 knowing that my chest could be a potential problem. the too itself is gorgeous! i did,3,0,1,General Petite,Tops,Blouses +724,69,Cute slip but very body hugging,"Ordered this in white. it is really nice and sexy but very body hugging and unforgiving. perhaps it is my large stomach, but it hugs a bit too much for my liking. yet i think overall the design is very nice so i am keeping it and hoping i can lose some weight in my tum.",4,1,1,Initmates,Intimate,Intimates +833,48,Lovely romantic blouse,"This is one of those you have to try it on to appreciate the lovely unique design. it is a very unique, flowing, romantic piece. it is sheer and i would wear a nude camisole underneath. i am normally a size small and bought a size 2 (i tried on a 6 in the store just to see what it looked like, fell in love with the look and the retailer associate recommended i buy a size 2). love it!",5,1,0,General,Tops,Blouses +862,35,Extra fabric in back adds a lot,"I got to try this on today and i really like it. the fabric is a normal t-shirt kind of fabric (i was hoping it would have been kind of special) and the v-neck in the front does go down a ways so that some cleavage is showing. i would feel comfortable wearing it as-is outside of work, but would have to pair it with a cami if i would going to wear it to work. normally, i am not a huge fan of v-neck in the back and it drives me crazy thanks cami's these days are often made with a ""versatile"" v and",5,1,6,General,Tops,Knits +850,59,,"A breath of fresh air. spring flowers! easy to wear. very feminine and flattering. looks great with denim, orange, reds , etc. very happy with this purchase.",5,1,4,General Petite,Tops,Blouses +1078,61,Great sweater dress!,"Nice fit and flare style, not clingy at all. i got the grey color, petite large, fits perfect. will wear with tights/boots or booties. lots of color options to accessorize with.",5,1,1,General,Dresses,Dresses +850,45,Pretty blouse,"This top is soo pretty with a cool edge. +it looks and feels like really good quality.",5,1,0,General Petite,Tops,Blouses +1104,25,"Love, love this flattering dress","This dress is flattering in all the right places. it has a gorgeous skirt with a comfortable, form-fitting top. it provides just the right amount of coverage. i love it so much i bought it in two colors!",5,1,1,General,Dresses,Dresses +1078,33,"Cute, but cheap","When i first opened this dress and tried it on i thought it was adorable. it is very flattering on my hourglass figure and hides my recent baby weight. the problem is the hem. it was already rolling up when i took it out of the package, and i should have noticed and returned it, but i figured the problem would be easily solved by a good ironing. well, it wasn't, and it gets worse every time i wash the dress. it's like the hem isn't constructed properly.",3,0,0,General,Dresses,Dresses +984,40,Love it.,"I simply love this jacket. it's comfortable, soft and has a relaxed fit that is easy to wear. i wish i had bought mine while it was on sale.",4,1,0,General,Jackets,Jackets +850,68,Gorgeous top with a hint of pizazz,I love this top! it's easily both day and night-worthy with a splash of sexiness in a front peek-a-boo design. lovely embossed design all over.,5,1,3,General Petite,Tops,Blouses +204,30,Else lingerie jardin silk bralette review,This bra is extremely comfortable and surprisingly supportive considering the lack of padding or firm material. it also runs large.,5,1,0,Initmates,Intimate,Intimates +1078,20,Super cute and flattering too,"I love this sweater dress and get compliments every time i wear it.. i bought the navy in size xs. the pattern and colors are just fun and youthful, although you don't have to be young to look good in this dress. the dress is fitted, but the skirt flares, making it flattering if you have hips like me. the material is not too heavy so you can wear this 3 seasons fall, winter, spring. as other reviews have mentioned the dress is short. i am 5'9"" so it does hit well above my knees. this isn't an is",5,1,1,General,Dresses,Dresses +862,42,Poor quality,"I bought this in the white, size m (140lbs., 5'8"", 34b) because i wanted a baggy fit, which i got, so this is tts. the white is more of an off-white rather than a bright white, which i like because i happen to be looking for an off-white tee. and the shape is good--even in a larger size, this tee nips in at the waist.however, the quality of this tee is lacking, as it is the typical, cheap, marled, slightly see-through material that seems to be everywhere these days and the band on the back of th",2,0,2,General,Tops,Knits +1078,52,Fun dress,Extremely flattering. an easy dress to wear - good choice for both day and evening,5,1,1,General,Dresses,Dresses +984,42,Very cute jacket!,"I took a chance and tried on this jacket today at the store. at first i was worried that it might look boxy on me but as soon as i put it on, it was love at first sight! it's so cute and very comfy! the sleeves are slightly long on me but that's been a recurrent issue regarding all my jackets. i'm only 5'3"" about 124 lbs. and it fit me very well. because it's a bit cropped, it makes me look taller. glad the weather is starting to warm up so i can find more excuses to wear it. i didn't need anoth",5,1,2,General,Jackets,Jackets +1008,24,Cute but too large,"Bought this in an xs and i liked the style of the skirt. it was long enough to wear to work. +however the waist was too large and would not stay up on my waist. returned.",4,1,0,General,Bottoms,Skirts +841,43,"Great, but size down.","I ordered this top in the solid navy. the quality seemed very good, and my overall impression was favorable. what i liked was that the top stayed off the shoulders even when i was moving. so many of the on-trend ""cold shoulder"" tops simply do not stay put with even the slightest movement. unfortunately, this top ran quite a bit large. if you are in between sizes - i definitely recommend sizing down. i've not seen the printed floral option, but the dark navy is lovely and looks chic with white bo",4,1,0,General Petite,Tops,Blouses +1104,51,Not for the busty,"Nice fabric, very versatile but the knit top and style accentuates your bust. probably not an issue for most but if your a d or up it's more attention than you may want.",3,0,0,General,Dresses,Dresses +850,39,Pretty adn flattering,"I tried on the usual xs in the patterned style, and it fit really nicely. the colors are very nice in person, vibrant. teh cut is flatering and gives a nice definition at the waist i also love the lace up neck detailing. the sleeves flutter out, and will give a bit more volume, if i would change something that would be it. i would make the sleeves more fitter or perhaps shirter with the flutter. i am 115 lbs for reference...",5,1,1,General Petite,Tops,Blouses +1081,39,Love everything about htis dress,"I had it on my wish list for a long time, not sure whether i should purchase, i even hesitated when it went on sale, but boy, am i glad i did order it... it is crazy comfortable, flattering, and love that it looks black but is blue... i ordered both xs and xs p and decided to go with the petite as it will look super cute in the fall with boots. not too short (i am 5 foot 1.5)... the fake leather part concerned me at first, but i like it now... nothing bad ot say about it!",5,1,0,General,Dresses,Dresses +833,39,,I tried this on in store and since my usual size 6 wasn't available i tried on a 4. it was a little snug in the upper sleeves and shoulders but was lovely otherwise. i passed on it and waited for it to go on sale to order it online. i got it in my usual size 6 but it seemed to me like it was 2 sizes bigger than the 4. i have decided to keep it but i just wasn't thrilled with the fit.,4,1,1,General,Tops,Blouses +850,57,Manette clipdot blouse,"I agree that this blouse is boxy, but because it's not too long in length it evens it out. any longer or shorter would make it look too boxy. it's great for work to dinner during the week & goes great with jeans too.",4,1,0,General Petite,Tops,Blouses +862,35,Runs large,"Soft cotton in very stylish yet simple style. regrettably, i listened to reviews that said it ran tts and ended up w a baggy long one that won't work even if i shrink it. that will teach me-- always order multiple sizes!",4,1,0,General Petite,Tops,Knits +1078,46,Fun mix of colors in the grey version,"I ordered this dress in size xl in the grey/red/yellow combination. i love everything about this dress. it's comfortable. the colors are cheerful. the proportions of where the stripes are placed works. but, i have to return this dress. it's too short for what i'm comfortable wearing. i saw from the photos that this comes mid-thigh on the taller models. i hoped that would mean it would be more knee-length for me. unfortunately, it's just too short and i'd feel self-conscious. i don't want to deal",5,1,1,General,Dresses,Dresses +850,51,So pretty and great style,I had to order this blouse since it is named after the town i live in. it does not disappoint. the flowers are so pretty and it has great style. there is a little piece in the neckline so it is not too revealing. the sleeves are loose and cover the bra strap underneath. the back has a little bit of elastic so it does not look like a maternity shirt and it gives you some shape. i can't wait for it to warm up and to wear this!,5,1,4,General Petite,Tops,Blouses +850,39,,Perfect trans top. skinnies or boyfriend and booties. love the mixed prints,5,1,0,General Petite,Tops,Blouses +831,55,Retailer like it used to be!,"This top reminds me of the special tops i got ""once upon a time""...when retailer adopted a more curatorial approach to their store. this is a beautifully-made top...quite dramatic but comfortable. i've received many compliments each time i've worn it. it has wonderful drapery and movement.",5,1,0,General,Tops,Blouses +833,42,Lovely,This blouse is so pretty and well made. it will be a new favorite with dark jeans and boots. it is very boho and a lovely blouse to feel dressed up a bit on a jeans day. loose in a flattering way (it does not look like a maternity top). very happy!,5,1,0,General,Tops,Blouses +984,40,Cute jacket,"I love the layered look of this jacket. i got it in navy which matches everything. i think it's a little on the large side for me. i ordered a small. i'm 5'2"" 130 lbs. super comfortable. the inner layer is very soft. once you wash it, the outside is soft too. i've already worn mine several times. happy.",4,1,0,General,Jackets,Jackets +1078,31,For the shorter girls,"I really wanted to love this dress, but it was so short! i'm only 5'6"" so i don't consider myself really tall, but the dress only came a couple of inches lower than my butt! way too short for me. my husband asked if it was a shirt or dress haha. but i think this would look adorable on someone a few inches shorter. or someone younger who can pull of a short shirt :)",4,1,4,General,Dresses,Dresses +1104,39,,,5,1,0,General,Dresses,Dresses +1081,59,Flattering and comfortable,"I ordered size small and medium because i can go either way depending on brands. and both look great! there is no significant difference except medium fell about 1 inch longer. i am 5'4"" and size small hem fell about 1"" above knee. size medium felt tab bit more loose but i thought fabric may stretch a bit after wear so i'm keeping size small. what a beautiful dress! although the body of dress is jersey material, it is lined so there is good coverage. i tend to not like ""faux leather"" since they",5,1,10,General,Dresses,Dresses +833,53,Still love it even if...,"...there's enough room for a small family to live under the chest and trunk area of the blouse! sorry-had to say that! all kidding aside-since it's been thirty plus years ago since we were wearing these, many of us have forgotten what peasant blouses truly fit like. this is no exception- it is very billowy, flouncy, and roomy-more so even than today's peasant styles, i think. it is lovely and quite fitted across the chest -so that's how i ordered my size and it worked. i think if one sizes down",4,1,0,General,Tops,Blouses +850,41,Pretty spring flowers,"This top is so pretty and feminine. the different floral patterns work very well together and add an interesting flare to this unique blouse. the fit is very comfortable yet still very flattering due to the empire waist and flared sleeves. the fit is true to size, i usually wear a size medium or 10 in retailer tops and the size 10 fit quite nicely. this top is a great addition to any spring wardrobe and should transition nicely into summer as well.",5,1,1,General Petite,Tops,Blouses +1078,49,,"Very cute, very comfortable. for me aesthetics and comfort must go hand in hand. this dress fits the bill.",5,1,2,General,Dresses,Dresses +850,33,Boxy,Cropped and wide- would look cuter on someone who is more petite. was too wide and cropped for me. very sheer.,3,0,0,General Petite,Tops,Blouses +1078,36,"Cute concept, fits weird",The fun colors drew me to this but it sure fit weird. the top was fine but it became a bit tent-like in the waist. the material doesn't feel great either.,2,0,1,General,Dresses,Dresses +850,29,Nice but short,"I really like the style of this top, and it's delicate but well made, but i wish it were longer and less boxy. it's nice that it comes with a separate cami to layer, but the cami is very cropped. when i raise my arms you can see a lot of midriff (and the top is see through so a layer underneath is necessary). a longer cami probably wouldn't work because the top is also very short. i'm 5'0'' with an average torso length, and ordered the xxs petite. also, you would have to cut the tag off if you d",3,1,15,General Petite,Tops,Blouses +850,49,Pretty top for work days,"This is a pretty top that is conservative enough for the office, with a modest neckline. there is a little hidden snap or button under the bow at the neck so you don't have to keep fussing with the tie the fit is loose in the waist and high at the neck, so the sheer parts are the only thing to give it a little flirtiness. there is a matching camisole underneath that snaps in at the shoulders. overall, i thought it was nice when i tried it at the store, but it didn't have enough extra ""wow"" to ge",4,1,2,General Petite,Tops,Blouses +1078,39,Love this dress,Very comfortable and versatile. got lots of compliments.,5,1,0,General,Dresses,Dresses +948,40,Itchytown,"Is not a place i want to be, even if the style of a sweater is great. yes, this sweater is very cropped, but i think it&#39;s definitely intended to be worn off the shoulder to drop the waist a bit. it&#39;s the itchiness that makes it an immediate &quot;no&quot;, and that&#39;s coming from someone who has serious fiber itch tolerance.",2,1,0,General Petite,Tops,Sweaters +850,57,"Feminine, flattering, versatile","The combination of vintage and bohemian styles seems as if it would be flattering on all figure types. and i love the combination of smaller and larger prints. the only thing i didn't like is that on the blouse i received, placement of the larger print on the bodice is asymmetrical (unlike the photo). it might not bother some customers, but it wasn't what i was expecting, so i ordered a new one. i may keep it even if the second one is off, because other than that small thing, i think the top wou",5,1,0,General Petite,Tops,Blouses +833,56,,Love the fabric & lace on this top. like other reviews said the arm area is tight where the lace meets the fabric which makes the fit uncomfortable. sadly this top is going back. if you have very skinny upper arms this top will fit fine.,4,1,0,General,Tops,Blouses +1078,51,"So cute, but weird fit","This dress is really cute in person. however, it did not fit me like it does the model in the pic at all. first of all i'm 5 feet 1 and it was wayyy too short on me. i didn't have the petit on either-- i had the regular xs. it just hits a couple of inches too short for me. i am 50. it would be adorable if i were more comfortable in shorter dresses. i wear short things a lot, but this was just too high on me. it was probably a good 8 inches above my knee. also it flared too dramatically at the wa",3,1,11,General,Dresses,Dresses +850,58,Awesome top,"Saw this online and had to try it on when i found it in the store. i usually wear an 8 or a 10 depending on how things run, (i'm a 34 dd), so i tried on both sizes. i really could not see much of a difference between the two and was torn as to which size to get. the 10 was just a tad looser so i went with that one, but seriously i could not find or feel much of a difference. it is a very figure flattering top, and a plus that you can machine wash it. simply awesome!",5,1,7,General Petite,Tops,Blouses +1078,67,"Comfy, cute, and colorful.","This knit dress is very comfortable. i liked the various colors used in the stripes. my only issue with it, is that the skirt of the dress flares out oddly and is quite short. in my opinion, this dress, with its sturdy fabric and long sleeves, would appear more proportional with a longer skirt. skirt length, along with horizontal stripes just did not work for me. regrettably, i sent it back.",4,1,0,General,Dresses,Dresses +1078,36,Best fitting dress,Love love this dress. fits so great. i normally wouldn't have picked this dress. more preppy than my normal style. fits amazing. my hubby has complimented me more on this dress than anything else i've ever owned. the fit & flare style is super flattering i felt it fit tts.,5,1,8,General,Dresses,Dresses +850,27,"Gorgeous, flattering blouse!","This is one of my absolute favorites! the design is perfect, and the fabric is so beautiful. i don't love the coral color, but the mixed pattern is amazing. it runs a little large. i sized down one size and it fit perfectly. it's very flowy and comfortable. it's these unique, special designs that end of being my favorite retailer purchases. i've gotten so many compliments. very highly recommend!",5,1,4,General Petite,Tops,Blouses +948,60,Cropped and itchy,"I'm assuming the model showing the sweater is at least 5'9"", it is slightly cropped on her , but it certainly doesn't look super cropped. i'm 5'4"" and its super cropped on me. even with high waist jeans. +also, it is incredibly itchy. i even tried it with a cami under but the itchy wool came right through the cami. +too bad, its a cute design, just needs some tweaking.",2,0,2,General Petite,Tops,Sweaters +1078,49,Cute but skip the petite unless you are very short,"Beautiful colors, especially the pink. i am 5'3"" and about 124 lb. i got the small petite but am thinking of exchanging it for the regular xs. not only is it short hem-wise, which i don't really mind, but it is short in the waist. very pretty and good fabric.",5,1,3,General,Dresses,Dresses +850,49,Manette clipdot blouse,"I love the style of this top. i just wish there were a slimmer version of it. unfortunately, this top doesn't suit my long, slim midsection. it is so wide, it completely hides the waist. i think it would look adorable on a different body type.",3,1,7,General Petite,Tops,Blouses +1081,35,Elegant and well made,This dress caught my eye because i don't have anything like it. i wear between a m & l and preferred the large in this dress because i have a large bust. i usually wear a 10 in slacks and 12 in tops. i love the lace on this dress because it looks very delicate in the picture but it is very heavy and well sewn onto the fabric. it is durable while still looking elegant. i also like that it is in navy and not black. it is also nicely lined. i plan on wearing a colorful scarf with this dress.,5,1,3,General Petite,Dresses,Dresses +833,60,Lovely,A beautiful combination of eyelet with a soft fabric which lays beautifully. this does not make you look bigger then you are and i kept tts so the eyelet did not pull. mine fits perfectly. i personally will wear a cami under it as it is a bit sheer for me. it has an almost peacock print to it in colors of brown and tan. the black buttons down the back adds interest and charm. just adore it!,5,1,3,General,Tops,Blouses +1081,53,Well made,This dress looks great on me. it gives a slender appearance which hides a lot and it's easy and comfortable to wear.,5,1,1,General Petite,Dresses,Dresses +850,38,Beautiful blouse; very flattering,"Overall, gorgeous blouse; very flattering. i love the sleeves; very unique and also flattering. i love how the blouse is a fit-and-flare from the bust. it's fitted at the bust (but not tight) and drapes with an a-line style. the fit of this blouse is truly flattering to the figure. no issues with inappropriate amounts of cleavage showing or anything. the ties are weighted on the end with metal tubes, which i really like because it makes the strings drape nicely. the back drapes beautifully. i fe",4,1,29,General Petite,Tops,Blouses +850,48,Weird color and fit,Color is not like photo and fit doesn't work if you're busty,2,0,0,General Petite,Tops,Blouses +850,37,,,5,1,0,General Petite,Tops,Blouses +984,42,Looks better on,I first saw this jacket hanging at the store and it didn't look very cute. i saw it again on sale so i decided to try it on. i'm so glad i did! the inside gray material is so soft. i have broad shoulders and this jacket did not hinder my arms at all. it is very comfortable. i bought the x-small and was very surprised at how roomy it was. the sleeves are a tad bit long but the gray inner lining has an elastic cuff so it can be pushed up. not sure if the xx-small would've been too small or if the,5,1,0,General,Jackets,Jackets +850,50,,"Good quality material. i got size 10 which is a little too big - size 8 would probably be better. very pretty, feminine top. a little too full in the waist/skirt area.",4,1,0,General Petite,Tops,Blouses +1104,41,Fun tag sale find,"For me, the tag sale is an opportunity to take a second look at items that i may have overlooked earlier, to pick up something fun at a good price. i found this dress in two colors in my size in the store! i took my usual xxsp at 32-24.5-32. length is perfect - just above the knee and the top is flattering with not too much fabric in the skirt. overall, this is a really cute staple dress. looking forward to wearing it in the spring. larger busted ladies size up. it is meant to be fitted in the t",5,1,4,General,Dresses,Dresses +1104,39,,,1,0,0,General,Dresses,Dresses +1104,26,Great dress,I absolutely love everything about this dress. it can be dressed up or down. no complaints.,5,1,4,General,Dresses,Dresses +1078,25,Cute and fun!,The horizontal lines on the skirt and top gives the wearer and very nice dress. i am short so i got the 6 petite and it fits perfectly. the fabric is thick and stretchy.,5,1,0,General,Dresses,Dresses +850,34,The right kind of casual,This is a great top to pair with jeans to step a casual night up a notch.,5,1,1,General Petite,Tops,Blouses +850,25,,,5,1,0,General Petite,Tops,Blouses +984,31,Easy jacket,"Slouchy relaxed fit. well sewn together and hangs well on the body. bottom hem hits upper thigh. good length and soft, easy fabric. light layering option as well. good spring jacket, can be kept on indoors without getting too hot.",3,1,0,General,Jackets,Jackets +1078,47,Great dress or tunic,"The colors are more vibrant than the photo indicates. indeed, though, the dress is very short and does pair well with leggings and boots. + +i like that the dress highlights my hour glass figure, but with a generous nod to my curves with the accommodating skater skirt. + +love it! will be easy to wear casually and work appropriate, too. the sale price was a huge bonus.",5,1,1,General,Dresses,Dresses +984,61,Top coat,Top of the line! very well made and on sale to boot. i love the style and received a compliment from my sister when i wore it. i love the layered look.,5,1,0,General,Jackets,Jackets +850,52,"Love, love, love this tunic!","Perfect little summer tunic that is very flattering. paired with a skirt, jeans or cropped black pants- this top is perfect! the cut in the front is not overly deep- so a cami is not necessary. i am usually a l or xl or 12 in retailer tops and i have a 10 in this top. so it is sized slightly larger than usual.",5,1,1,General,Tops,Blouses +833,56,Sleeves are really small,This shirt is really pretty but the sleeves are so small. i normally wear between a 4 to a 6 or a size medium and i could not get this shirt on. i wish it fit but a size large would have been way to long and loose.,3,1,0,General,Tops,Blouses +1078,68,,"I love this dress because its very playful and bouncy. it puts me in a light hearted mood when i wear it. i originally wanted to buy the grey color but my store only had the navy, so i tried it on. the navy is brighter and more colorful than it looks on line and the stripes are more varied in color than in the picture - so its quite appealing and vibrant. the lines of the dress are also quite flattering. all in all, its a fun dress!",3,1,1,General,Dresses,Dresses +850,39,Perfect top!,This blouse fit better than i expected. looks great with jeans and is an easy go to top!,5,1,0,General,Tops,Blouses +1081,40,Comfortable and chic,"This dress is so comfortable, and i love the unique faux leather skirt and lace design. it really adds a special touch to the dress. i only gave it four stars because the top half is pretty boring...i wish the neckline wasn't so matronly. i'll definitely need a bib necklace or scarf to dress it up. i'm 5'5"" and 115 and ordered the xs. i wish the dress cut in a little more at the sides to accentuate an hourglass figure, also. my husband loved it.",4,1,0,General Petite,Dresses,Dresses +984,53,,,5,1,0,General,Jackets,Jackets +850,45,Perfect balance of classy and sexy,I love this top! not sure if i would picked it up in the store; i received it as a gift from my husband. kudos to him as it was a great choice. i love that the sheerness and lace make me feel a little sexy but the long sleeves and camisole offer the modesty i tend to crave. really beautiful and can be worn either with jeans or a dressier skinny pant for a night out. hd in paris never fails to please with their aesthetic and quality.,5,1,1,General,Tops,Blouses +850,28,Great top,This top is great for spring- it's super light and can be dressed up or down depending on what you're wearing it for. fits true to size and is great quality.,4,1,0,General,Tops,Blouses +1104,33,"Cute fit, perfect length","I've admired the various iterations of this dress and finally found one in the sale room, much to my delight! i'm generally a sale shopper, so this doesn't mean i didn't think it was priced well. i have the oatmeal top with yellow/gold/orange pattern on the skirt in xs. the small fits comfortably up top, but on my petite frame, the top just looked too big, so i went with xs. i suppose the straps are a bit confusing, but their easy to figure out if you just look at them for a moment before puttin",5,1,0,General,Dresses,Dresses +1078,71,Flattering,"This dress is comfortable as well as flattering, which does not happen very often! +looks good with navy tights too!",5,1,0,General,Dresses,Dresses +984,46,,Love love love this jacket!! great spring and fall weather.. very stylish!!,5,1,0,General,Jackets,Jackets +984,56,,,5,1,0,General,Jackets,Jackets +1078,36,Cute dress,"Based on some reviews i decided to get the regular xs, even tho i am an xs petite (5'2, 107 lb, 32c) i found the fit to be flattering -- fitted enough but not too loose or tight. the length is perfect and work appropriate, and the material has some weight to it. the grey one is colorful and cute. the only problem is the bagginess of the arms -- very unflattering. if i push the sleeves up, it hides the bagginess a little, but i would like to have the option to wear the dress with long sleeves., s",4,1,2,General,Dresses,Dresses +1104,35,Great fit,I purchased this dress because i have a similar one with a linen skirt from the spring. the skirt on this dress is a heavier fabric and it lays very nicely. the top provides good coverage for my larger chest and i took my typical xs size. i would definitely recommend this purchase.,5,1,0,General,Dresses,Dresses +984,58,Comfortable and great looking,"This jacket looked so good and felt so comfortable on- i almost didn't send back the first one that arrived with a little bit of damage at the bottom of the inner zippered sweatshirt, but i did exchange it and am just as happy with the fit and feel of the second one. it hangs well no matter how you fasten the front, or leave it open. great looking, casual but stylish and neat. a good grey, and a good blue.",5,1,6,General,Jackets,Jackets +1078,53,Love this dress!,"I went to my local store and they only had the blue dress in stock, i had seen it online and i didn't expect to like the blue one. i tried it on anyway, and it was adorable! i struggled to choose, but i ordered the gray one at the store and they shipped it directly to me. it arrived quickly and i love it!",5,1,2,General,Dresses,Dresses +984,64,Great jacket!,"This jacket has a nautical look which is a refreshing change for this year. it is double breasted & a stretchy cotton, which i love. i am a big fan of cotton. it appealed to me so much that i ordered both the white & the navy in the regular size small. i am of small build at 5'3"", 117# & expected that the sleeves c/b a little long. i avoid ordering petite size jackets b/c sometimes they are snug in the shoulders. ok, so the regular s was a good length at the bottom of my hips, but arms were bagg",5,1,32,General,Jackets,Jackets +833,45,Beautiful blouse but....,"Absolutely love this blouse but if your a woman cursed with larger arms for your body size than this is not for you. i couldn't get the lace part of the upper arms past my elbows. + +oh well, it's going back!",3,0,0,General,Tops,Blouses +850,44,Feminine and pretty,This top is gorgeous and versatile. i wear it with jeans and dress it up with a skirt. so happy to have this in my wardrobe.,5,1,0,General,Tops,Blouses +1078,52,Not a fan - childish,"I thought that it looked like it belonged on a 15 year-old. i can almost see why they styled the model in what looks like ankle socks....ready for cheerleading. for reference it fits true to size, but is very short. i am 5'2"" and tried on a regular small - it was at least 5 inches above my knee.",3,0,2,General,Dresses,Dresses +1078,49,,"I loved this dress when i saw it. however the fit was way off. i am 5'7"" 120 lbs and the small was way too big from the waist down. when the xs arrived i was sure it would be perfect. unfortunately the waist hit way too high, above my rib cage and the dress was too short. it was as if it was a petite size. i was very disappointed as this is such a pretty, easy dress to just throw on for school. unfortunately neither size looked right on me and i had to return both. the material is also not the s",2,1,0,General,Dresses,Dresses +984,52,,"The jacket is great, the quality is very good and the fit too, the best part is how it looks !",5,1,0,General,Jackets,Jackets +850,56,Runs large through the chest...,"So pretty, but does run large. i am an 8-10 , got the 8 and big through the chest. had to return for this reason. if you are on the busty side it will look fab on you.",4,1,0,General,Tops,Blouses +1078,45,,,5,1,0,General,Dresses,Dresses +984,35,Love! my new favorite jacket!,"I was looking for a stylish spring/fall jacket and this one seemed to fit the bill. i was shocked by the quality and softness of the material and construction of this jacket. i could honestly not believe how comfortable and cute this felt and looked on me. i can't wear it enough! i am a short 5'2"" but 36d and have 31"" waist so i ordered a size m and l to see which would work best. as it turned out the m fit with plenty of room! i am normally a 12/14 so i was surprised by this. if you are on the",5,1,0,General,Jackets,Jackets +831,38,Lovely blouse!,"Love the detail and the way it hangs. i sometimes struggle with blousy tops because i have a larger chest, but this one didn't make me look pregnant! i purchased this with the 30% off... i wouldn't have paid full price for it.",4,1,0,General,Tops,Blouses +1086,32,Love the lace detail,I really wanted this to work. for me the arm cutout was too wide. a cap or lace flutter sleeve would've worked . also expected a little more length felt like the petite length.,4,1,0,General,Dresses,Dresses +1044,39,,"I just received these pants and i am very pleased. they are a little longer than i expected them to be, but that actually works out well because now i can wear them to the office.",5,1,0,General Petite,Bottoms,Pants +820,32,Cute,"Cute and pretty, runs a little wide and short, just slightly. i feel like i have that issue with all retailer clothes though. love the back.",4,1,0,General,Tops,Blouses +1094,35,Gorgeous dress,"I was hoping this would go on sale and now it finally has! i loved this dress just as much in person as i have online. the fabric is interesting-it looks almost plastic in the online pictures but don't be fooled, it is still a comfortable fabric. it is almost like lots of diamond pieces were actually sewn together to make this dress and i love it. there is a sipper down the side to make it easier to get into, but also in the back there is bunched up fabric which is made to be ore bendable for th",5,1,2,General,Dresses,Dresses +1094,34,A must buy!!,"I tried this dress on and felt amazing in it. i got home and showed my husband my purchases. i told him i wasn't sure if i should have bought this one and told him to be honest with me. he said it looked great and he was glad i bought it. so great for a spring wedding. fits true to size. i am 125 5'4"" c-cup and i bought my normal size 0. this made my waist look really small.",5,1,0,General,Dresses,Dresses +995,48,,,5,1,0,General,Bottoms,Skirts +1094,36,Prety dress that fits true to size,"Wow the mixed reviews on this dress would make someone not get it at all. +it is true to size. i'm a 6 and the six fit as a glove on me. +the material is not at all stiff. i actually wished it was a bit more structured. but that didn't bother me. +i was able to close the zipper by myself. +i'm 5'7"" 144lb 36a. +the top feels confortable to me as well. i don't considered myself curve like jlo but i have hips. the dress does not make me feel bigger at all. +the only down side is that it looks more expens",4,1,1,General,Dresses,Dresses +1060,40,"Very nice, just as pictured","This is a very nice jumpsuit; reviewers were correct stating that torso is long & fit better a taller person. as soon as i read the reviews i went on and placed an order for size 8, i'm 6ft tall 160lb and it has been very difficult to find a jumpsuit to fit my long torso. this one however turned out to be perfect! true to size and fit, not only that, the fabric is very soft and good quality, very interesting style of the jumpsuit, looks much better in person! i particularly liked cropped, wide-l",5,1,0,General,Bottoms,Pants +833,47,,"This top runs super small in the upper arms, shoulder area..could not even stretch out my arms! ...other then that major problem, the length and body fit were perfect...i am true med and/or large in all retailer tops so i tried sizes 10, 12 and neither worked for me due to arm/shoulder fit...disappointed because it really is a beautiful top...",1,0,12,General,Tops,Blouses +1037,41,Glad i took a chance on these!,"A nice alternative to jeans, good fit. i like the casual but edgy rocker look they have. will look good with booties and full length boots. i took the same size that i do in all pilcro pants.",4,1,0,General Petite,Bottoms,Jeans +875,33,Adorable top!!,"I love , love this top !! it looks just like the picture on model. the front is a soft t-shirt and the back is so cute and flattering . super unique and comfortable style.!! i am 5'4 -105 and xs fits perfect.",5,1,2,General,Tops,Knits +875,33,Cute top!,"This is a very cute and unique top!! i absolutely love the back, which makes up for my indifference of the front. i'm a little heavier in the middle, so it hides it a bit, but the light blue from the back that shows on the sides makes me feel a little wider. it's not perfect, but i like it enough to keep it. i got lots of compliments on it when i wore it. it's very comfortable too. i just wish the front had a little more to it or was a tad longer. overall very happy.",4,1,3,General,Tops,Knits +820,39,Love,"This top is so lovely, i was worried of the color on my pale skin, but it is complementary, nice warm tones. yes, it is a tank, but i can see this as a transition piece into fall with a nice blazer, jeans, boots... the xs regular is perfect for me, length is adequate. if i were to go with petite, i might think it is too short. it is flowy, but still has shape, more than a swing top, so very flattering. the back is really cute too, definitely need a strapless for me, due to the thin straps...",5,1,3,General,Tops,Blouses +1037,54,Comfortable and unique,"Great pants, like the edginess of the design in the material. kinda rocker like. soft material that's stretchy and hopefully will hold its shape during the day. the color is listed as black but it's more of a dark gray with a slight blue hint.",4,1,4,General Petite,Bottoms,Jeans +820,44,,,4,1,0,General,Tops,Blouses +1037,39,,"I love these! they are a perfect addition to my fall wardrobe, and just like all other pilcro jeans, they are a great fit and true to size.",5,1,0,General,Bottoms,Jeans +820,24,Fits so well!,"I often have a hard time finding items that fit true to size, but this top fits perfectly. it is cut really well and very flattering.",5,1,0,General,Tops,Blouses +833,65,,,1,0,0,General,Tops,Blouses +1094,64,Stunning special occasion dress,"I'm surprised i'm the first to review this dress! it is a must for the holidays and any special occasion! it is absolutely gorgeous! it is so feminine and seductive; it's one of those dresses that would be stunning on anyone! it is a quality dress, beautifully made, looks just like the photo. i'm 5'9"" & the hemline falls at the top of my knees. the neckline is exquisite & really ""makes"" the dress. i purchased the black version but if i was younger i'd get it in red as it would garner quite a bit",5,1,30,General,Dresses,Dresses +833,40,Love this shirt,"This shirt is very nice quality and looks stunning. it does run tight in the shoulder area and is a bit of a challenge getting off, but as long as i don't rip it one of these times all will be well! it looks so nice on that i overlook that design flaw.",5,1,1,General,Tops,Blouses +995,39,"Comfortable, soft",The material is very soft and it looks just like it does on the model with the exception that it gets a little wrinkly at the hem and turns up at the corners. i like it and have already worn it a few times.,4,1,0,General,Bottoms,Skirts +1094,42,Not for us chesty girls!,"Was drawn to this dress in the store. my location had it displayed well (one mannequin with the dress & a jean jacket...another with the faux fur cardigan). the dress is a very vibrant red. but the fit is not for me. i am busty (34c) with a short torso, and the dress made me look like dolly pardon on top. but there was a lot of room on the bottom. i tried on a size 6 and felt like i needed a size larger on the top and a size smaller on the bottom. having said that, the material is a very good qu",3,0,3,General,Dresses,Dresses +875,34,Fit is not cute,"I was really excited about this top since i have others from retailer that are similar in styling. unfortunately, it just didn't work out. i am petite with a short torso and ordered my usual size and it was way too short in the front. the top was also boxy and didn't sit right. it just wasn't flattering. cute top on the hanger, but just not on me.",2,0,2,General,Tops,Knits +1037,38,,,3,0,0,General,Bottoms,Jeans +875,29,Do not like the front,"The back of this t-shirt looks cute but the front looks really weird. the material in the back is quite stiff but the grey material is soft, so the front gray area ends up hanging weirdly and looking uneven and messy. i appreciate asymmetrical clothing but to me it looked like a patched up rag from the front. it fits true to size.",2,0,3,General,Tops,Knits +833,49,Not doing anything for me,"Well, this top just did not do anything for me - it's a very conservative style with the high neckline and blousy fit. you'd need to go a little lower in size if you want any of your figure to show through. i guess it might be good for a church function or some other conservative event, but it was too buttoned-up for my style. i also had a hard time getting it off even though the size i tried on was large for me. i didn't care for the feel of the fabric either, although the lace is nice.",3,0,1,General,Tops,Blouses +1060,39,Not for me,Well made. made my hips looks giant. just not my style unfortunately. i'd have to work at preschool or on a ship to pull this off. i'm 5'3 120-123lbssize 6-8. i got the size 6 (not petite cuz they were sold out).,3,0,0,General,Bottoms,Pants +1094,48,Cute outfit,"I love the color and the style, however it doesn't look as well as the model as i don't have a small waist like the model does. still overall, i love this dress and it is well made and comfortable",4,1,2,General,Dresses,Dresses +835,66,So good,"Love this blouse! its so darn cute. the fabric is soft, flows nicely and is just absolutely stunning without being over the top. it falls at the lower part of my hip. the softness of the fabric would make this easy to tuck in. the body of the shirt, sleeves, cuffs and placket are contrasting florals in black and creamy white. the top part is a brownish burgundy color and the flowers/butterflies are embroidered in goldenrod yellow, peach, creamy white, two mauve tones, turquoise and brown. the li",5,1,2,General,Tops,Blouses +1094,25,Love this dress,"I am 5'3"" 130 and curvy and this dress fit me perfectly. it's great for parties and weddings (depending on how formal). the only reason i gave it four stars is because the fabric is a little strange; the ribbing for the squares is almost like a pillowy fabric, and it feels a little bit on the cheaper side but luckily it doesn't look cheap. nonetheless, i love this dress and would definitely recommend!",4,1,0,General,Dresses,Dresses +1094,36,Classy little dress,"Love this dress! just wore it last night to an early valentine's dinner. very classy, simple, but gorgeous. i'm a size 2 in just about everything but i always buy a size 4 in retailer dresses because i'm tall (5'9"") and have broad shoulders and a long torso, and sizing up in dresses works better all around. i am also not busty (32b). i did get this in a 4. this dress was a little awkward at first trying to hook and then zip but once i got that down it worked. the hook is right up under your",4,1,0,General,Dresses,Dresses +875,46,Awkward style,Fits very strange. odd cut. does not look well on.,2,0,1,General,Tops,Knits +823,37,,"This is a beautiful top. it extended longer than i had hoped and a petite size was not available, so i ended up returning it. but it is beautiful and the tassels on the sides make it truly unique.",5,1,1,General,Tops,Blouses +835,42,Unique piece / boho chic,"Love this blouse! i took a chance on ordering it and wasn't sure what i would think. this blouse is fabulous!!! it has a boho-chic flair to it in a sophisticated way. it's one of those ""special"" pieces from retailer; elegant, quirky, sophisticated. +the details are great, too. of course the embroidery is beautiful; but there are a couple more fun details. the cuffs on the sleeve have multiple buttons; so that you can button them tight or just enough to roll the cuff once. when the cuff is r",5,1,1,General,Tops,Blouses +833,26,My favorite black top.,"This is a timeless top. i loved the overall look of the top and after eyeing it for several days decided to purchase it. warning, the shoulder area is cut small due to the fabric at the top. i am usually a size 12 (because of ddd chest) but i bumped up to a 14 and it was perfect.",4,1,1,General,Tops,Blouses +833,33,Super flattering,Love this top! it is super flattering with a long floaty body. i usually wear a 4 but sized up to a 6 due to the reviews and am happy with it but think a 4 would have fit as well.,5,1,2,General,Tops,Blouses +820,52,Pretty tank,Love tanks and this one is sweet and flowy. great with jeans/shorts or slacks with a jacket for the office. beautiful yellow floral with fun straps in the back that you can wear with a bra. front neckline is cut narrow so bra straps show but with nude or plastic straps it's not that big a deal.,5,1,0,General,Tops,Blouses +835,41,Different than the rest !!!,"This is truly unique top, the detail around the neck is a nice change!!!",5,1,0,General,Tops,Blouses +1060,25,Slimmingly perfect!,"I am 5'2"" 125 pounds and i bought the 4p. the fabric is high quality and does not cling at all but instead drapes and in a very flattering way. add that to the cut of this jumpsuit and you have elongating, very flattering lines. i could not be more pleased and regret not having bought this item earlier, since i would have enjoyed wearing it during the holidays. as other reviewers said, it is adorable and a winner.",5,1,0,General,Bottoms,Pants +1037,47,Too bad!,Very nice fabric but disappointed in the stitching on the knees. it looks nice but makes the pants very uncomfortable and tight around the knees. too bad because i love the style and hoped they would work!,3,1,0,General,Bottoms,Jeans +820,24,"Very cute, snug fit","Very cute flowy fit. i am generally a size small, 32-d chest. because the material has no give it fits perfectly (just barely) if it was any smaller or i was any larger it would be too small. very cute design.",4,1,0,General,Tops,Blouses +1079,32,,"My store had this and i was so intrigued with its nearly $400 price tag that i decided to play dress up. the colors in person match the colors online, so that was nice to see consistency. overall though, i feel like a dress of that price would need to make me feel like a million bucks, which it did not. most items that fit my slender frame are too short, and this was no exception. the xs fit but i wouldn't be doing much moving, walking or dancing in this dress, which brings me to the question of",3,0,5,General,Dresses,Dresses +1060,44,Surprisingly retro-adorable,"I saw this online and thought, hmm, no. then saw it in the store, touched it, and the fabric felt so soft. i am normally an 8 petite in cartonnier, but the only sizes available were 4 and 2 regulars in-store. the 4 just looked promising. i thought i'd try it on for laughs. but it is soooo cute i ended up taking it home. the 4 regular fits perfectly on my curvy on the bottom, 5'2, 145 lb figure. my measurements are 34(b)-29-38, and i was shocked how well this fits in a 4 regular! perfect length a",4,1,1,General,Bottoms,Pants +875,66,Love,"Great little transitional piece. i bought the blk/blk floral one & it's not your usual top. sort of quirky & one of a kind looking. i think it's crazy comfortable & i just love it! even its a bit chilly outdoors, toss on a scarf round one's neck & head on out. not the kind of top you'd wear with a jacket.",5,1,2,General,Tops,Knits +835,64,Western look,This top has a western look with lots of black and some burgundy shades. it is very cute and the fabric is soft.,5,1,1,General,Tops,Blouses +1078,39,Gorgeous quality knit,"I was lucky enough to get a hold of this intarsia sweater dress after the sale and i wish i had purchased this the first time round. it is absolutely stunning, flattering, comfortable and unique! i am 5'3"" and the regular hem fit me just fine at the ankles. i think this dress runs both tts to a bit large so i would size down if your small framed and stay your usual if your busty or broad shouldered. perfectly complements my taupe booties that i already owned and a my taupe maxi sweater that has",5,1,0,General Petite,Dresses,Dresses +1037,42,"Wanted to love, but sadly will return.","These run very small!! they are also short, almost like a crop pant. the fit was so weird that i won't even exchange for a bigger size.",1,0,1,General,Bottoms,Jeans +820,35,Great top!!,"I purchased this top in a great sale! fits great,true to size i am xsmall-small for reference, purchased small. i ended up putting a bandeau bra on with it to feel more comfortable. it would be great in the fall with a cardigan/ sweater, or a blazer. super cute to wear alone in summer with jeans!!",5,1,0,General,Tops,Blouses +1072,59,Lovely but smells like last purchaser's deodorant.,"I am returning the dress because it smells heavily of the last purchaser's deodorant and perfume. it was actually nauseating to put on. i am disappointed with retailer that i was sold this dress, full price, in this condition. otherwise, the dress is lovely. it is true to size. i am 5'5"" 110 lbs and the size 0 was perfect.",5,1,0,General,Dresses,Dresses +1094,64,Interesting but awkward to actually wear,"First, my husband had to help me zip up in this interesting but awkward design. the materials is nice, but stiff, so the skirt is quite full. the shoulder idea is interesting, but i would not want to spend an evening in it. to me, not up to the usual ms standard.",3,1,1,General,Dresses,Dresses +833,40,"Beautiful, but a few caveats","This is as beautiful in person as online, but the length is shorter than the description, and the arms are tight! although i am 5'1"", i normally wear regular sizes in retailer just fine; however, the 28"" length scared me off, so i ordered a 2p. it says it's 26.25"" long, but it's actually just about 24"". and my normal sized arms struggled to fit into the sleeves - yikes! but it's gorgeous and was purchased with a gift card, so i will keep :-)",4,1,11,General,Tops,Blouses +1037,22,Fun jeggings,"These pants are so soft and so comfortable! i was absolutely in love at first sight. however, i got the petite, because i am 5'3, and they were still a little longer than i like my pants to be. i wanted them to hit right above the ankle, just like the photo, however, they are a tad longer. i still love them and they are still as comfy as ever, so i am gonna deal with the length!!",4,1,1,General,Bottoms,Jeans +1094,53,Loved in theory,"I just tried on this dress in the store, in red, and i loved the off the shoulder design. the color is just as pictured online (a light poppy red). the neckline began a few inches below my collarbone and was super flattering. however, the skirt portion of this dress flared awkwardly at the hips, causing my hips to look much wider than they really are (and also disturbing the otherwise clean lines of the dress). it seemed to me that there was too much fabric at the back portion of the skirt than",3,0,4,General,Dresses,Dresses +995,34,No shape,It looks like you are wearing cargo shorts. really unflattering. avoid buying this skirt,2,0,1,General,Bottoms,Skirts +252,35,,,4,1,0,Initmates,Intimate,Swim +634,29,Great casual dress to throw on,"I ordered a petite medium in black, and it fit great great. some of the other reviews said it was tight, but i found it pretty loose and flowy. also felt it was plenty of coverage - wore it to work (casual workplace) and transitioned to happy hour beautifully.",4,1,2,General Petite,Intimate,Lounge +985,24,Plaid bomb pairs fabulous with everything fall!,"I had been on the hunt for a plaid bomber to rock this fall and this retailer edition bomber surpassed all of my expectations! it literally pairs great with everything fall.. chokers, boots, dresses; you name it! it also fits very true to size. not too fit to your body, and a little loose, but not too loose.. just like a bomber jacket should! i highly recommend this product.",5,1,1,General,Jackets,Jackets +1059,37,Great staple!,"I am pear-shaped and often have a hard time finding pants that fit just right. these did the trick!! they are slim in the waist, but have plenty of room for bigger hips. the overall fit is body skimming/hugging, but they are not tight or uncomfortable in any way! and i have no gapping at the waist. the fabric has a slight sheen to it and a little stretch, but they will be a perfect pant for the office. for reference, i am 5'4"", 34/26/38, and i got a 6 regular.",5,1,0,General,Bottoms,Pants +985,65,Perfect fall jacket,This jacket is well-made and smart looking. it gave me just the boost i needed today at a difficult meeting. thank you retailer!,5,1,0,General,Jackets,Jackets +1059,36,Must have,"Perfect fit. did not lose its shape. thicker material. great quality for a great price. definitely a wardrobe staple. can be dressed up or down. work (business) appropriate. fits tts. for reference, i am 5'0"", 109lbs, and the 00 petite fits perfect. falls right above ankle like pictured. if they had more colours, i would get them too :)",5,1,6,General,Bottoms,Pants +634,35,Lounging dress,"This is a great lounging dress or a great beach cover up. i ordered up a size after reading other reviews. although, i feel like my normal size would have been fine probably. i ordered the black and it is not see through. it's very light weight and comfortable. i may even order in another color just because it's so great to wear around the house.",4,1,0,General Petite,Intimate,Lounge +1059,27,Perfect fit,"The fit on these pants is just right for me. i have curvy hips and a slender waste and legs. these pants don't gap in the back, as fitted pants often can. easy to dress up or down. the color hasn't held up as well as i hoped, so take care when laundering.",5,1,3,General,Bottoms,Pants +252,36,,Ordered the navy and aqua in medium. the aqua fit a lot tighter than the navy seemed to be a different fabric and less stretchy. loved the color on both but returning the the aqua. normally wear size 6,4,1,0,Initmates,Intimate,Swim +634,28,Functional casual dress,"Very comfortable fabric and fits nicely. i am 5'10"" like it states the model is, and it falls shorter on me that viewed, but still looks nice. it will be an easy dress to use for different looks.",5,1,1,General Petite,Intimate,Lounge +252,46,Best bathing suit!,"When i tried on this bathing suit, i decided to not try on any others. it was just right! i usually find bathing suit shopping difficult and no fun--as i can never find a suitable bathing suit. this suit looks nice/flattering, and i can also move around in it and it stays in place. i purchased it in the navy and i'm going to order it in another pattern as well. it looks modern and classic; it's a chic style. i'm a size 6 in dresses, and i purchased a size 10 in this bathing suit.",5,1,0,Initmates,Intimate,Swim +117,70,,I have bought other leggings at retailer and they were fine. these run small. i have to return.,3,1,0,Initmates,Intimate,Legwear +117,57,,Love love love these leggings and what an amazing price point!!!,5,1,0,Initmates,Intimate,Legwear +634,69,Overpriced but so comfortable,This is a great beach/pool or lounge piece. i debated keeping but couldn't pass up how comfortable it was. hugging without being tight. i will probably only wear it with some sort of layer like a jean jack or tied shirt rather than undone unless on on the beach but it's so comfortable. straps are a bit long.,4,1,12,General Petite,Intimate,Lounge +252,28,My new favorite swim suit,"The colors and fit of this suit are even better than described. it is the most comfortable and flattering one-piece i have ever tried on. + +as noted by other reviewers, there is limited support in the chest; this suit will keep you covered but does not provide lift.",5,1,0,Initmates,Intimate,Swim +252,36,Perfect suit,"I had been looking for a one-piece that is fashionable yet practical. fabric is beautiful, fit is impeccable, no complaints on lack of support. i find if you tie it tight up top it's very practical. this was the perfect choice for me. i am 5'3"" 120 lbs and ordered the small.",5,1,4,Initmates,Intimate,Swim +634,40,Luxurious sleepwear,"This is a very comfortable and sexy sleep dress, the way it drapes. i can see that the type of fabric is not suitable for out and about activities and can catch on snags, etc. very easily. once i relegated it to the nightgown category it became my favorite item to wear and lounge in.",4,1,0,General Petite,Intimate,Lounge +1059,80,Please restock!!!,These sold out in my size 16 before i even knew they existed! (probably a great indication that your in-between and plus-size customers are hungry for more options from you). please restock so i can get in on this apparently-perfect pant!,5,1,6,General,Bottoms,Pants +838,44,Cute and unique!,"I love this top! i gave it a four star because i wish it were a tad longer. i am short... 5'-1 and it does work for me, but i do tend to like my tops longer. very cute and airy in the back!",4,1,0,General,Tops,Blouses +252,36,Great suit for busy moms!,This suit fits like a glove! i've had five kids and am currently nursing my last baby so i was looking for a suit to wear to the beach this summer when i'm just not feeling a bikini. this is it! it's comfortable and not binding easy to nursing and swim in. overall worth the extra splurge. i'm tall too so it was plenty long on my torso.,5,1,3,Initmates,Intimate,Swim +838,41,Beautiful top,"Cute top! the bright red crochet shoulders and back add the perfect pop of color to the light blue pinstriped front. it's a little loose and boxy around the bust area but overall i think it's a flattering shape. i got the regular s and don't find it too short. for reference i'm 5'2"", 134 lb, 34b. i often wear petite sizes but due to other reviews mentioning that the top is short i ordered the regular size and am happy with the length and fit.",5,1,2,General,Tops,Blouses +838,48,Boxy and short,This top looked super cute online but when it came it was super short and boxy. looked like a tent on me. this one went back the same day it came!,1,0,3,General,Tops,Blouses +634,49,,"Comfy easy dress. i bought the black version. fabric is so soft. i wear this around house, but don't hesitate to run out in it if needed. i bought medium so it was roomier and for length since i'm tall. small also fit, but was shorter than i wanted.",5,1,11,General Petite,Intimate,Lounge +1059,42,Wanted to love these...but...meh...,"Uncertain about sizing i got both the 4 & the 6...both made me look like a no-asser :( neither fit quite right in the leg. both hit at a weird point in my calf, not cute-short, just off. (i'm 5'8"" and 125#) to quote my husband, ""nope. not feeling these."" that said, they feel great on, seem to be made well, but are heading back to an retailer near you :( sigh. the quest continues :)",3,0,1,General,Bottoms,Pants +634,37,Comfy and cute,I love this dress for day and night time. the back detail is cute and works well with a racerback bra. it runs big though. i'm normally a small in dresses and the arm holes are too big in the size small on me. it was also generally too big all over. i like the length and the weight of the fabric. i purchased in the off black color.,4,1,0,General Petite,Intimate,Lounge +1008,38,"Vibrant, effortless, beautiful","I had my reservations given that i'm petite (5'2"", 108lbs) and it's midi style. i'm glad that i took a chance. i bought the red motif and it's beautiful. it's wrinkle-free right out of the package. the color is vibrant and the style is classic and effortless. fits true-to-size. great for work with a black tee as shown in the picture.",5,1,4,General,Bottoms,Skirts +838,58,,Cute comfortable top. fits well and will look great with skinny jeans.,5,1,0,General,Tops,Blouses +620,47,Very cute and comfortable,I got the shorts and the blue motif they're really comfortable and will look cute with a tank top for the weekend. they true to size them usually a size 4 to 6 and i got a small and that works.,4,1,2,General,Bottoms,Shorts +634,36,Super comfy,"I purchased this dress in black and love it. its hot where i live so i am always looking for a lightweight dress that i can throw on either after the pool or out and about. i wore it to an outside concert with sandals and a simple braid, it was perfect! considering ordering it in another color!",5,1,1,General Petite,Intimate,Lounge +1059,66,Great basic pants!,Perfect fit! can be dressed up or down! more colors please!,5,1,0,General,Bottoms,Pants +1059,51,Great pant,This is a great pant to wear to business and when you just need something more than a jean. not so skinny a 50+ woman can wear comfortably..,4,1,7,General,Bottoms,Pants +1059,38,Great staple,"These are great pants. i love the fit and the taper of the leg. these will be my ""go to"" black pants for the fall season!",5,1,0,General,Bottoms,Pants +634,40,Beach cover-up,"I got this to wear as a beach cover-up over bathing suits. if you purchased a darker color and were small chested (i.e., you could go braless, since a bra won't work well with the low back and armholes), you might be able to pull this off as a very casual dress. i bought this in a xs in the coral/peach (i'm 5'7"", 129 lbs., 32dd) and it's not super see-through, but i'd never be comfortable wearing it as a dress on its own. as a beach cover-up it's cute and comfortable, but as a dress it would be",4,1,2,General Petite,Intimate,Lounge +1059,35,,"I love the fit of these pants -- they're the perfect slim black pants. however, i wore these pants exactly three times before the seams split the middle of the pant in not just one, but multiple places. disappointed by the workmanship/quality of the product, especially since the pants fit amazingly and don't sag like other slim fitting black pants tend to do. i hope retailer will take this into consideration and improve the quality of future iterations of this product.",2,0,8,General,Bottoms,Pants +634,36,,This is a great casual summer dress. cute as a cover up but in the black you can definitely wear it for daytime. if you're feeling bare throw on a white button down or chambray.,4,1,1,General Petite,Intimate,Lounge +1059,37,What a waste,"I waited three months for these pants. when they finally arrived, i was mostly pleased. they seemed like the staple pant everyone is raving about. and they should have been. +problem one: they bag out. i got one wear out of them before i needed to wash and hang to dry (regained shape then). +problem two: the crotch split! in the front! i'm a teacher. i sincerely hope no one noticed! i read other reviews about this problem and don't know if i got a bad batch or if a similar fate is awaiting other",1,0,0,General,Bottoms,Pants +985,30,,"This is a great silhouette and the red/black plaid will be perfect for fall. it will look great with black bottoms or with jeans. the only reason i gave it 4 instead of 5 stars is that the outer shell fabric (the plaid) is a rayon twill that is a little bit lightweight for the silhouette, so it is bagging out a little around the zipper and the pockets. i'm hoping the quality will hold up. i bought this same jacket in a heavier weight camoflage printed tencel this spring from the same brand, and",4,1,1,General,Jackets,Jackets +252,35,Wonderful swimsuit,"This swimsuit fits exactly as i had hoped. i purchased it in the teal dot and it is a little brighter than in the photos, but i ended up liking that better. it is well made with thick (but not too thick) lined material. also, i was initially worried that the deep v-neck may be too deep for my liking, but once i had it on,it looked classic and not showy. i love the suit.",5,1,0,Initmates,Intimate,Swim +1059,48,Gerat pants,I love these pants. i bought as basic pants to dress up or down and they look good with flats or heels. also i like you can wash instead of dry clean.,5,1,0,General,Bottoms,Pants +1059,49,Great pants that don't get baggy,These pants are awesome - please make them in other colors besides black and navy!,5,1,1,General,Bottoms,Pants +252,70,The perfect swimsuit - functional and stunning!,"This is an amazing swimsuit. i had been on the hunt for the perfect one piece. i wanted something a bit on the modest side, but still sexy, and i hoped for a unique print that would make it stand out. the icing on the cake would be a suit that is functional enough to either lay poolside or scuba dive. enter this swimsuit from retailer. i fell in love with the teal dot print as it's unlike anything else i've seen - it's absolutely spectacular in person. i love the vibrant blue and the chic d",5,1,11,Initmates,Intimate,Swim +1059,40,,"I really love these pants. just the right fabric, not too thick. so comfy. i do feel they run a bit big. they stretch out quickly so if you are in between sized, choose the smaller one.",5,1,8,General,Bottoms,Pants +1059,38,Not what i had hoped for...,"Like others, i finally received my size 6p black pants after months of waiting. for starters, these pants run small, so i ordered a size up but still in petite, because i adored the red ones i got this past summer. when the black pants arrived, they were a full three inches shorter than the red ones (which were also 6p), and the fabric did not feel anywhere close to the same quality. i'm debating ordering the regular length, but i'm not sure i'll bother, based on some of the other reviews.",2,0,0,General,Bottoms,Pants +252,27,Perfection,"I had been searching for a swimsuit that flattered my baby bump and this is it - i'm in love! for reference, i am 5'6"",170-180, 10-12 or m-l depending on the item. however, i'm currently 19 weeks pregnant so im about 185 and growing - so i went with the xl swimsuit. i have a 36c/38d bust and although there is no true support in the top of this suit, it holds the girls in and the deep plunge is just the right amount of sexy. the bottom has modest coverage, showing just a little bit of cheek. i go",5,1,0,Initmates,Intimate,Swim +1008,46,Love it!,I bought the first skirt at the store. loved it so much i went online and found this one and bought it too!,5,1,1,General,Bottoms,Skirts +943,50,Thick and beautiful sweater!,"I put this runs small but it's a little more tts, except the arms are very slim! if you like to push your sleeves up like this model, you will have to wait for a while to see if the sweater loosens up. length wise it fit me a bit longer than this model and i'm a petite. the color is also darker and not as red as in this sweaters, which i actually prefer. the sweater is much thicker than my other cashmere sweaters. some of the stitching seems stick out as if the sweater is worn inside out, but th",5,1,0,General,Tops,Sweaters +634,65,"Loungewear, not outdoor wear","So i recognized the fact that this dress was likely intended more for lounging than for wearing out and about, but i once had a lot of luck with dresses of this price point (and intent) at retailer, so i had hopes. i was just wanting it to be a great addition for vacations and beach days, but it's honestly so thin i couldn't even see it working that well for that. it's also cut smaller than i was anticipating judging by the way it fits the model; my usual small was way more bodycon than i was anti",2,0,55,General Petite,Intimate,Lounge +1008,22,,Love the fabric fit and cut of this skirt. it hits at just the perfect spot but runs a little large and is more flattering when sizing down (atleast on me) .,5,1,1,General,Bottoms,Skirts +252,93,Amazing suit!,"This is by far the cutest, most glamorous one piece i have ever tried on! it fits perfectly and is flattering in the right places, it doesn't show too much cleavage and is modest enough for family events. absolutely love this suit in navy. wasn't in love with the rest of the patterns, hoping they come out in more solid colors someday soon!",5,1,3,Initmates,Intimate,Swim +838,43,Uniform top,"I don't normally try on tops like this but i liked the product shot so much that i wanted to repeat the outfit. i grabbed a large because it wasa shorter blouse. it was huge. i sized down to the medium and it was still loose but if i were to purchase, it would be that size. the red against the blue was very pretty but i didn't know if felt like a little kid in a uniform. the back did not lie flat, not sure if it was because of my 36d chest or because of the shirt design. it is well made and i th",5,1,10,General,Tops,Blouses +1059,67,Perfect 24/7,I love this ankle length pant. it is so comfortable wear it with a tunic or tee. i can wear this for 3 seasons!,5,1,4,General,Bottoms,Pants +1059,45,Super comfy and great fit!,"I think this is the first time i've successfully purchased pants online. i normally have to try a bunch of styles and sizes on before i find the right ones. i gave it a shot with these, and bingo! they are great! they are a bit longer on me than on the model, because i am 5'3"" and did not order a petite. i still like how they look, hitting just above my ankle. just the right blend of conservative and cool for lecturing in front of college undergrads.",5,1,0,General,Bottoms,Pants +620,42,Great shorts,"Such cute, soft and comfortable shorts. can be worn as night wear or out and about.",5,1,1,General,Bottoms,Shorts +1059,58,Cute slim pants,"I saw these in an email and immediately went to the web to look at them. they fit well and have nice slim look. the bottom of the legs seems to fit a little slimmer on me than in the picture, but they aren't too tight.",5,1,6,General,Bottoms,Pants +117,52,Fabulous,"Received many compliments the first day i wore them.. amazing fit. disagree with the other post. the +quality is amazing. i wish they had other colors. bought xs",5,1,1,Initmates,Intimate,Legwear +252,25,Cute and comfortable swimsuit!,"This is one of the most comfortable swimsuits i own. i purchased it in the turquoise dots print and found that it was colorful and perfect for a beach getaway. the adjustable halter style makes it really comfortable, yet cute. i highly recommend this suit to those looking for a unique, yet whimsical swimsuit style.",5,1,1,Initmates,Intimate,Swim +252,35,Lacks support,"Great swimsuit, love the fabric and pattern. the top lacks support.",4,1,0,Initmates,Intimate,Swim +634,37,Easy breezy,"This dress is the best casual find. goes with everything- flips flops, tennys, jean jacket. feels little sporty and the orange was a cool addition to my closet.",4,1,2,General Petite,Intimate,Lounge +838,29,Weird fit,"I tried this on in the store and was disappointed because it looked so fresh and vibrant on the hanger. but it's basically cut for model-sized people only. it's short and wide, and if you have any boobs at all it'll make the back pucker. i can't imagine this will look good on most women.",2,0,7,General,Tops,Blouses +1008,29,Cute but didn't work for me :(,"I really wanted this skirt to work but it didn't look very flattering on me. a great midi length and very cool pattern, so hopefully will work for others!",3,0,0,General,Bottoms,Skirts +1059,47,Cute pants,"These are really cute. nice fabric. i love the rise...not to low, not too high. but they are going back. i'm a size 4. i got these in a 4. they fit fine in the waist and bum but they are tight around my calves. also, they were more like ""high waters"" on me than cropped so a petite in the length probably would have worked better for me had these fit.",4,1,0,General,Bottoms,Pants +838,25,,This top is gorgeous! this is why i love retailer the quality is amazing. i just love how unique this top is. it's a light jean blue and white pin striped shirt with these beautiful red crochet sleeves. i'm a 34ddd i ordered the large and it's perfect. it is a bit shorter probably because of my chest but i was going to wear it with high waisted shorts anyways. it's a must buy!,5,1,1,General,Tops,Blouses +634,39,Great price for,"Sale price is a great price for a cute cover-up. so this is not a polite company dress. this is a ""i want to show off my cute underwear/bikini/cross-fit bod while i go get a cold pressed juice in venice"" kind of dress. or you can just wear it at home like i do. runs small btw, so size up.",5,1,0,General Petite,Intimate,Lounge +1059,30,Great fit,"These fit me really well. i tend to have a problem finding trousers that fit my more muscular legs and my waist. usually, if it fits my legs the waist is too big. the trousers have some stretch for a better fit. the only downside is that i had go them hemmed (bought regular size).",5,1,0,General,Bottoms,Pants +1059,34,Stretches out,"I am normally between a size 0 and 2, so i ordered these pants in both sizes to make sure i would have a nice pair of black crops to wear to work. the 0 seemed pretty tight all around, so i returned the 0 and kept the 2 even though there was a little bit of room in the waist. of course the size 2 after a few hours of wearing had completely stretched out, was bagging in the crotch area, sliding around on my waist and creasing badly behind the knees. i doubt i will wear these pants more than the o",2,0,17,General,Bottoms,Pants +1059,60,"Great material, awkward length","The material and construction of the pants are great, but the length is just plain awkward. i'm 5'4"" and the regular came to just above my ankles, and looked as though they had shrunk in the wash in a really bad way. a couple of inches longer and they would've been fine, or i could've gotten them in petite and worn them as true ankle-length pants, but the regular just didn't do it for me. also i'm usually a size 6 (5'4"", 125lbs) and these were a little baggy around the waist and hips.",3,0,0,General,Bottoms,Pants +1059,45,"Love these pants, highly recommend!","I often find wearing anything described as 'slim' difficult, but these pants are absolutely wonderful. i bought in a size 12 regular length. they are perfect, both in fit and quality.",5,1,1,General,Bottoms,Pants +1008,55,Great skirt!,This midi skirt has a really nice drape with great seasonal colors! can't wait to pair it with my wine color booties!,5,1,1,General,Bottoms,Skirts +117,34,Mixed feelings,"I ordered these in a size small on sale, thinking that because of the material, they might not fit. they are actually very cute, and fit in the waist/legs, but in the crotch area, as another reviewer mentioned, they could fit a little better. they look fine with a longer top so i decided to keep them.",4,1,0,Initmates,Intimate,Legwear +886,36,,"Unique design. love the collar and broad cuffs. the xs regular fits me better than the s petite, which is a bit short.",4,1,1,General,Tops,Knits +1087,62,Simple but different.,"I bought this dress in the cream color. it was sold out online in most sizes but i stumbled upon it in person and immediately had to have it. i'm usually xs or small, and bought the small. they did not have an xs available so i can't compare, but the small was flattering and comfortable. i'm 5'5"" 120 (34c) and it falls perfectly at my ankles (no dragging) and looks great with simple, neutral sandals. as some reviewers have mentioned it has some weight to it, so it's probably not great for hot da",4,1,1,General,Dresses,Dresses +873,57,,This is a fabulous style top! highly recommend this top. comfortable material. retailer is consistently tried and true to a classy style!,5,1,1,General,Tops,Knits +1087,23,Too short,"This dress is gorgeous, but i should warn all the tall ladies out there that it fits quite awkwardly. i'm 5'10"" and tried both the petite (thinking it would fall more like a midi), and the regular, hoping it would fit like a maxi should. both hit at a very awkward spot on my mid-shin... as much as i loved and wanted it, it looked too weird to justify buying.",5,1,0,General,Dresses,Dresses +886,37,,"Love the coral color - so pretty in person. it is slightly lower cut on the chest than i expected. +this is a great top for the weekends!",4,1,0,General,Tops,Knits +745,68,,"These are the perfect leggings. they're so soft, and they don't stretch and droop throughout a day of wearing them. i ordered the grey and moss, and they have different textures, which is fun.",5,1,0,Initmates,Intimate,Legwear +886,58,,,5,1,0,General,Tops,Knits +937,36,Itchy,This cardigan is very cute in the picture and i really wanted to love it but it just didn't seem worth the price. the material is kind of itchy to me and i wasn't a huge fan of the wide edges in the front. the colour is very nice and feminine.,3,0,1,General,Tops,Sweaters +1087,52,Worth it,"I never buy anything at retailer full price, but had to get this when i tried it at my local store, especially since it's back ordered for so long. it's very flattering, and super comfortable. fully lined, not see- through at all. elastic waist that's hidden under the sweater top. will be so easy to throw on and dress up for an evening out, or lounge in after a day at the pool or beach. looking at the model pics, i was concerned the arm pit holes came too low, but on me that is not the case. the t",5,1,84,General,Dresses,Dresses +937,39,So many compliments,This sweater is unique and really pretty. i got so many compliments and i felt really girlie wearing it - it is so fun.,5,1,0,General,Tops,Sweaters +937,33,Great staple sweater!,"I just saw this in the store and loved it! it is shorter than pictured on the model, but it's not short. with a long shirt underneath, i'll wear it with leggings. the color is beautiful!! the size does run large - i normally wear a large at retailer, and i got this in a medium. i can't wait to wear it all fall and winter long!",5,1,0,General,Tops,Sweaters +1059,48,Unique and adorable,"Very fun and comfortable pants that will bring you many compliments. they do fall open when you sit down, though they have liner shorts inside for coverage. they are not appropriate for work but will become a wardrobe favorite.",5,1,2,General,Bottoms,Pants +1110,23,The worst,"I don't typically write bad reviews, but this dress is so bad and i want to save someone else from buying it. i read the mostly bad reviews and still purchased anyway (my fault i know). the dress is super stiff ( i know denim can be that way and it is possible it would soften up after a few washes). i'm typically a 6/8 and the size small swallowed me, and the xs was big everywhere except through the bust (i ordered both sizes to try). i wouldn't recommend buying this if you are a size 8 or small",1,0,2,General Petite,Dresses,Dresses +1059,38,"Fun, casual pant, perfect for summer and early fal","These pants! great casual pants, i've received so many compliments! mainly because they are flowy, and the open panels make them different! with the weather so hot, they are perfect for keeping you cool. very pleased with this purchase!",5,1,1,General,Bottoms,Pants +1110,24,"Beautiful dress, weird sizing","After reviewing the comments for this dress i was really hesitant about buying it online, so i finally went to the store and all of the reviews are 100% true. this dress is amazing in terms of quality, but the sizing makes zero sense. i'm normally a size 12, but based on the reviews i initially tried on a medium. even that was huge, arm holes so long you could see my entire bra. so i tried on the small and that fit perfectly. unfortunately, unless you're normally an 8(maybe) or above in sizing,",4,1,0,General Petite,Dresses,Dresses +873,38,Started out perfect,"Loved the style, ordered my normal m- fit tts though i thought i would potentially taper the sides to make less boxy (with a larger bust and shoulders, boxiness is unflattering). the slight boxiness looked perfect with stretchy, fitted business slacks. midday, i held my ipad up to my chest and the velcro from the cover pulled an entire lychnis delicate threads. not just snagged- i had to gently separate the threads from velcro grip. needless to say, it pulled the threads out by at least 1/2 an i",3,0,1,General,Tops,Knits +886,52,,Nice basic top...i will get plenty of use out of this! love the neckline.,5,1,0,General,Tops,Knits +1087,36,So beautiful!,"I'd been eyeing this dress since i first saw it in the dress catalog when it came out. when i saw it in person, it was just as beautiful as i remembered! i'm about 140 lbs and usually wear a size s or m, but i tried the s on and decided to size down to an xs, because the linen flowy fabric lays a bit wide when on the body; however, the s would have worked, too! i'd say size down if you prefer your clothes a tiny bit more fitted. the fabric is beautiful and lightweight, even though there is more",5,1,12,General,Dresses,Dresses +937,26,Perfect layering sweater,"I have been searching for a pale pink sweater for fall. the color and fit is much prettier than the way it is photographed here. i think it will look great over denim, grey, or olive green dresses and shirts.",5,1,1,General,Tops,Sweaters +1110,35,Runs very small,Don't buy this dress unless you are normally a medium or larger. order it one or two sizes smaller than your normal size. i ordered an xs and it's more like a medium or large.,2,0,11,General,Dresses,Dresses +886,48,Great casual top,"I got this in blue and also in white, both size medium. it's a very comfy casual top and i love the horseshoe neckline and front facing seaming which makes it just a bit different. however....i can't figure out why the blue color fits quite a bit smaller than the white. but it does, so consider this when you order, depending upon how you want it to fit. i'm keeping both but will wear the blue in a different way, definitely not with leggings.",5,1,9,General,Tops,Knits +937,59,Great for travel,"I think the model is wearing a larger size, per the first review. i am 5'2"" and 105 lbs and the xs fits about the same in length but not nearly voluminous. so you should order up if that is what you want. this will be perfect for some long summer flights instead of a wrap, since the sleeves will be more convenient and i always look schlumpy rather than elegant in a shawl! if it had some cashmere or another softer fiber i would be totally in love with it.",3,1,14,General,Tops,Sweaters +886,46,Great neckline & good xl fit,I ordered the white solid & the white w/blue stripes versions in size xl. both fit me true to size. the fit matches the model's photos. i got these on sale and they're worth that price. they're great basics to have. the white/blue striped one is my favorite. it such a pretty combo. i love the unique neckline too. fun details for a basic tee.,4,1,0,General,Tops,Knits +1137,49,Simple luxury,"I found this at my local store and ended up buying both colors. the fabric is thicker than a t-shirt. these will go with so many things....jeans to dressy skirts. i normally wear a small but ended up buying the medium (2). the small fit me but was a little too short (for reference i am 5'8""). these will be a staple in my wardrobe all year round. love!",5,1,7,General,Trend,Trend +1165,31,"Beautiful print, bad fit","The colors and print are absolutely beautiful and i'm quite heartbroken that this suit just doesn't fit. i don't have a long torso but the v was just so plunging that i wouldn't feel comfortable leaving the backyard lounge chair in this bathing suit. no matter how much i tied the halter it still revealed a v halfway down to my naval. the strange thing is that there seemed to be too much fabric on top, lots of ruching and thicker straps than i would normally go for, and while i'm only around a b",3,0,0,Initmates,Intimate,Swim +937,29,"Great slouchy sweater, perfect color",This sweater has the perfect slouchy shape for fall. i wish it were a little bit softer and heavier - the fabric is pretty lightweight - but it layers beautifully and will be a staple for me this season.,5,1,0,General,Tops,Sweaters +1110,45,Huge dress,"The overall styling was great, and the dress is super-cute, if a little thick (it's made of denim, after all). i ordered a size down from my normal, and even then, i was swimming in it. the worst part, and the aspect that will make me return it, is that the arm holes hang down so low that i'd have to wear a tank top under the dress. i'm returning it, though it is really cute and i love this brand. the arm holes killed it for me.",2,0,27,General,Dresses,Dresses +1087,32,,,5,1,0,General,Dresses,Dresses +1059,40,Love these pants,"Marking down one star because these pants do gape quite a bit when you sit down, though i appreciate the shorts underneath that prevent any indecent exposure. these could have done with a little stitch in the front or side somewhere on the leg to limit that. that said, my other similar (non-retailer) pants that are much worse and are also are bulkier on top, which does not look great at my size/with my body shape. these are more flattering (i love the band on top) and comfortable. i am normally a",5,1,14,General,Bottoms,Pants +1137,69,The tee i have always been looking for!,"It is seldom that i write a review about a tee, but after receiving the jessa tee in the mail today, i just felt compelled to do so! the deal is, this tee is pricey for sure, but in my opinion, it is worth it! as another reviewer said, the cotton fabric is hefty; in fact, it could also be called a ""lightweight sweater."" everything about this tee is perfect and classic: the elbow sleeves, the nice neckline, and the semi-boxy, semi-cropped fit. it will go with everything from jeans, to nice slacks",5,1,1,General,Trend,Trend +745,28,The softest leggings,These leggings are some of the softest i own. i ordered both the black and the moss and each has a distinct pattern. they are perfect for colder climates and fit me like a glove.,5,1,2,Initmates,Intimate,Legwear +937,74,Great fall sweater,I took this sweater on a recent vacation up north. i wore it 3 evenings because the weather changed from hot to cool. loved the feel of being wrapped in a warm blanket. cocoon cardigan is an apt name. wasn't sure about pink but it is exactly as pictured. this will become a go-to in my sweater wardrobe.,4,1,1,General,Tops,Sweaters +1110,48,Very hip,"I normally wear a size 2 so i ordered a small and an small petite, i will be keeping the small because the small petite looks like a shirt on me, my height is 5'4"". it runs very big underneath the arms as well. the design is so unique i will be keeping it.",4,1,2,General,Dresses,Dresses +1110,35,Still cute despite...,"This dress is still super cute despite its shortcomings. i agree with other reviewers that it definitely runs large, and very small petite/thinner ladies might feel it's overwhelming. it worked for me in my usual size l though. for reference i'm 5'3 and this hit just above the knee. and while the dress is ""roomy,"" a smaller size would likely have been tighter or pulled on my fuller (36d) chest as there's not much give in that area. i agree that the armpit holes are ridiculous, but a thin camisol",4,1,0,General,Dresses,Dresses +886,50,,"So comfy and stylish. love the color, i purchased the indigo/blue. nice fit, relaxed fit....not fitted. might have to get another color. it's fun to have a tee with a different design detail (neckline). i'm 5'7 145-150 lbs and ordered the medium. a smaill probably would have worked too, since my shoulders are a bit narrow. but mediumd is fine:)",5,1,0,General Petite,Tops,Knits +937,38,Love,"I love this sweater! it is true to size and not itchy at all. i am 5'5"" and i bought the small. other reviews said it wasn't as long as it looks pictures but it is the same length on me as it shows on the model. you can wear this with so many things! i can't wait for fall so i can wear it.",5,1,1,General,Tops,Sweaters +886,42,Great color!,"The coral is stunning. the shirt has a slight flare at the bottom that you can't see in the picture, it isn't a straight cut. the sewn edges are rough style making the shirt right for casual wear with jeans, or dressing down something fancier.",5,1,0,General Petite,Tops,Knits +937,45,Nice surprise,"I received this sweater in last week, when i opened the package i thought for sure that this sweater was going to be itchy , it is not , the styling is great and very flattering for the price this is a great value.",5,1,8,General,Tops,Sweaters +937,38,More colorways please =d,"I'm a 110 lb, shorty with a short torso and long arms so the standard xs was huge. i had the opportunity to try on both the xxs petite and xs petite. the xxs petite was almost perfect but i wanted it more flowy - probably best for those that are even shorter and more lightweight than me, othewise, it looks a little too boxy. the petite xs fit me the best and draped nicely, similar to the model in the pink. i had a sweater with this exact silhouette 5+ years ago and wore it to death even though i",5,1,0,General,Tops,Sweaters +873,51,Love this top!!,"I bought it in the cream color and loved it so much that i bought it in black too. super cute with jeans! can dress it up too. the only slight negative, if i had to find one, is that i feel like i have to pull it forward, at the neckline every once in a while...it doesn't choke me but just feels like it's heavier in the back so pulls a bit. worth it though! :)",5,1,1,General,Tops,Knits +937,38,New favorite,This sweater is like a giant hug. i wore it today and received so many compliments.,5,1,0,General,Tops,Sweaters +886,46,Everyday winter t updated,"This is a perfect saturday t shirt for the colder days. great fit; not form fitting with no elastic or rayon, soft cotton with great details. im 5'8 140 ish and the medium fit great. i bought a washed denimy blue in the store but may be coming back for more colors now! the white was to sheer for my taste though",5,1,2,General Petite,Tops,Knits +873,30,Darling and sophisticated,"I can never resist a peter pan collar, so i bought this top in the ivory. it's so cute! i wore it for the first time today and received many compliments. it's very comfortable, fits well, and looks expensive. highly recommend it!",5,1,0,General,Tops,Knits +886,45,Adorable t-shirt,"This is absolutely adorable and so flattering! i have the patterned shirt, and i just purchased the white one and the orange one because i like it so much. i am 5 ft. 9"" and 155 lbs. and the medium fits nicely. hope this helps!",5,1,43,General Petite,Tops,Knits +245,31,Love,"I love this dress. i'm 5'8"" and it fits me exactly like the model in the picture. i have slim hips and waist, so that helps. i don't think this would be as flattering on someone curvy. i wish it came in another color i like, i would absolutely buy in another color. i got a medium and it fits like a glove.",5,1,1,Initmates,Intimate,Layering +886,36,Great tee,I bought this a little ago in the denim color. it has become a favorite so much that i bought another in white.,5,1,1,General Petite,Tops,Knits +886,49,Casual comfort with style,"This is a cool relaxed style with the benefit of an open neckline to add a bit of femininity. i tried on the faded blue and striped colors in the store. the faded blue goes well with the style, but the stripe is cute too. the sleeves are quite long and too tight to roll up, so if you are petite like me you will definitely want to order the petite size- and probably even those you who are in between petites and regular sizes. the sleeves may also be too narrow for some people.",4,1,0,General Petite,Tops,Knits +1087,39,"Pretty dress, lots of fabric","This is a very pretty dress and looks just as it's pictured. however, there is a lot of fabric - the lower half is very full and runs very large.",4,1,0,General,Dresses,Dresses +937,48,,,5,1,0,General,Tops,Sweaters +1087,55,Surprisingly heavy,"I wanted to love this dress. the colors are heavenly and it looks light and airy. it isn't, it is very heavy, much too heavy for florida heat. the top layer is a beautiful sand color and while the fabric is nice, the heaviness of the top really weighs the whole dress down. i felt like it added ten pounds to my appearance, easily. back it went, boo hoo. if you are between sizes, i would size down, runs a bit big.",3,0,2,General,Dresses,Dresses +1087,36,Casual and comforable. i love it,I was not impressed with this dress online but when i tried it on at the store i fell in love. it's a great summer / fall dress. i love the sweater top and linen bottom. so many compliments on it!,5,1,0,General,Dresses,Dresses +886,25,Great casual shirt,"Absolutely in love with this shirt. the neckline is extremely flattering, and the shirt naturally comes away from the body.",4,1,0,General Petite,Tops,Knits +1110,47,,,5,1,0,General Petite,Dresses,Dresses +886,41,Love the neckline,"I needed a tee refresher, i had a good feeling about this one so ordered all three colors when they were on a promo, and i'm not disappointed. the neckline is different and works great to emphasize your favorite necklace. the tee holds shape after washing and drying. my favorite is the blue which i like to wear with dark wash jeans as styled on the model. the white has a cream tinge to it and i'm able to wear it with a nude bra without looking indecent. there is a cute little button detail at th",5,1,5,General Petite,Tops,Knits +1110,38,Amazingly cute but runs huge!,"The fabric and detailing of this dress is of superior quality, but unfortunately it runs huge-- you definitely need to wear a tank or cami underneath. i am 5'9 145lbs with massive shoulders/smaller bust and i got the xs petite!",4,1,0,General Petite,Dresses,Dresses +1165,29,Ok suit,"I think in general it is just hard to buy a bathing suit online, but i really underestimated the v-neck of this suit. i read the reviews and noted it was not recommended for girls with larger size breast. as i'm basically an a cup, i figured i would be fine. the top portion basically has no coverage or hold. even when tied very tight, the top still opened making me feel exposed and like my entire breast would fall out of the suit. needless to say my fiancã© was not a fan of the suit either. even",3,0,11,Initmates,Intimate,Swim +937,34,Perfect for cool summer evenings,"I found this sweater to fit me just as pictured. i am 5'8'', 128lbs and ordered a small. it hits length wise the same as pictured and is just as flowy with a lot of fabric. super cute with a grey top, white skinnys and brown leather sandals. love it!",5,1,4,General,Tops,Sweaters +886,33,,,5,1,0,General Petite,Tops,Knits +1137,66,Too cropped,"This runs small, i got the size 3 which fits like a medium, not a large. its a bit of an aline shaped knit in a beautiful saturated navy. i loved the elbow length sleeves. i have a large 34g bust and although this fit, it came to the top of my waist and i'm short-waisted. it's a great basic for someone less busty or who likes a shorter length.",3,1,0,General,Trend,Trend +1087,29,Gorgeous,"This dress is everything. i'm 5'4, athletic build, 36d and the medium fit me perfectly. the colors are really understated and beautiful and can easily be dressed up or down. i wish the elastic around the waist fell a little lower but that's one of those things only i notice and definitely didn't keep me from falling in love and buying it. can't wait to wear it on vacation next week!",5,1,15,General,Dresses,Dresses +937,44,,I love this cardigan! i ordered the pink and it's a really pretty color. i wish it didn't run so big but xs will be cozy all winter.,5,1,1,General,Tops,Sweaters +886,47,,"I purchased in store to avoid shipping costs. my local stores don't carry xxs, so they are mailing it to me. i usually wear an xs, but it was roomier than i cared for and made it look a bit sloppy on me. this tee is more distressed looking in person than online, as well. i wish it were more refined because the neckline is very feminine & interesting; i would have liked the ability to dress it up more. also, the solid blue and coral are lighter in color than they appear on my monitor. the blue st",4,1,7,General Petite,Tops,Knits +886,39,Cute tee with fun neckline,"Very soft and comfy tee. like the interesting neckline. wish the petite neckline was slightly higher, but sleeves are right length and have great cuffs.",4,1,0,General Petite,Tops,Knits +1087,44,Beautiful and unique but didn't work for me,"Ordered the xsp (5'4"" about 118-120#, athletic build)...this was huge all over. big in the armholes, too much fabric hanging in the skirt (cream fabric) front and back, not flattering at all from the sides and as long on me as it shows on the model. i love the idea of this and for the right body type (of course) this will be beautiful. it also would not be a very versatile piece for me...the top sweater part is quite thick (lovely) and heavy. in oklahoma this would not work for very many weeks..",4,1,1,General,Dresses,Dresses +937,40,Frumpy,"Love the color, but the fit is just odd and frumpy. the sleeves are shorter than the should be. when i lift my arms, the entire sweater gets lifted. going back.",3,0,2,General,Tops,Sweaters +937,39,Stinky sweater!,"Yikes! quite a smell off of this one- like wet/hot wool. the color was beautiful, but the sweater is enormous! strange fit under the arms as well. this one went back the same day.",1,0,0,General,Tops,Sweaters +886,50,Nice spin on an everyday t-shirt,"I love the way this t-shirt fits. the horseshoe opening in front is deep enough to add interest, but not too revealing. will look great with layered, dainty necklaces. the sleeves are nice and long - and i have long arms. the length of the shirt itself could be an inch or two longer, but overall the design is nice. not too tight, not too loose. i'm 5' 5"" and 125 lbs - 34c and the small fits me well. fabric is medium weight - could be a little thicker. the brick color is nice and works great with",4,1,0,General Petite,Tops,Knits +1137,52,Elegant retro sweater tee,"This sweater tee is made from a fine but substantial knit which hangs beautifully and flows over imperfections in your figure. the cut is very 1950's through the sleeves and neckline. it's a little cropped and boxy, just so that it hides your belly and accentuates your hips. it looks phenomenal with a crinolined a-line skirt.",5,1,1,General,Trend,Trend +886,54,"Beautiful blue, but....","The blue is a very flattering color. the fit is not. it does not lay in the back like in the photo on the model. instead, there is a lot of fabric that falls in horizontal folds because it does not fall straight because the sides at the bottom are narrower than the mid section. i think i'm going to return it. the neckline is very nice and faltering. the sleeve at the wrist is kind of constricting, though, and long. it doesn't run big at the chest section, just the mid section, then tapers in at",3,1,1,General Petite,Tops,Knits +886,34,Just perfect!,"This top has a comfy cozy feel while still being flattering. i especially like the generous neckline--adds a uniqueness to it. great shirt for dressing down, but still feeling feminine. i bought two! my husband always compliments me when i wear it.",5,1,5,General Petite,Tops,Knits +937,60,"Comfortable, fashionable, throw on over anything","I love this sweater. it has quickly become a staple in my wardrobe. i live in minnesota, so a fashionable throw-on-and-go sweater is essential. this sweater fits the bill. i love how soft and warm it is, the cocoon styling adds a fashionable element while the acrylic/nylon/wool material keep it functional (warm and cozy). i love anything with pockets, which this has. i somewhat disagree with the other reviewers who say this runs small or short. i did not find that to be true for me, and i ordere",5,1,14,General,Tops,Sweaters +937,22,Love it!,"Can be a bit itchy sometimes, i guess depending on your skin. haven't had a problem with the sweater up to now!",5,1,0,General,Tops,Sweaters +1087,58,Perfection,"This dress is perfect. i'm literally wearing it right now. it's crazy comfortable while still being flattering. it looks and feels high quality, and just barely doesn't hit the floor. it makes me feel like a goddess. plenty of room in the bust area, even for me (36dd), and doesn't show bra straps or underwear. highly recommended!",5,1,0,General,Dresses,Dresses +1087,55,,,4,1,0,General,Dresses,Dresses +1087,62,Perfer beige over pink,"I had tried this on in the beige & loved it but could not find it in my size so i got it in the pink. +did not look at good as the beige.",3,0,0,General,Dresses,Dresses +1087,43,So very disappointed,"I love retailer and fell in love as soon as i saw this dress online. being 5'10"" i love a quality maxi dress and this one did not disappoint. however, being 5'10"" also means the top sweater overlay hits me way short. it looks ridiculous. i also thought that this was very heavy for a maxi dress and could not imagine wearing it in 80 degree weather. unfortunately after waiting so long for it's arrival this is going back.",2,0,2,General,Dresses,Dresses +886,26,Basic with a twist,I love this shirt. it would be a fairly basic tee but the neckline makes it fun. it's very soft and comfortable. i bought the white with blue pattern and will probably purchase additional colors.,5,1,0,General Petite,Tops,Knits +886,37,Love this shirt!,I love this shirt. the neckline is flattering and the overall feel is very comfy.,5,1,0,General Petite,Tops,Knits +937,32,,,3,1,0,General,Tops,Sweaters +245,33,Perfect dress,"I wasn't going to purchase this dress because it was given 1 star. however, i ordered it and i was so glad i did!!! i'm 5'1, 105lbs this dress fit me perfectly, it really compliment my petite body. i get so much compliments! it is not easy to order anything for a petite frame but this dress really show off my body without showing too much.",5,1,4,Initmates,Intimate,Layering +937,43,"Nice, comfy sweater",I tried this on in the store and had to have it. this is the kind of sweater that you just want to cozy up with on a nice fall or winter day with a cup of coffee in hand. i love the neutral pink color as it will go with everything. i'm a dress and skirt girl and this will go well with those items. it will cover your bum and i love the dolman sleeves. i highly recommend it!!,5,1,0,General,Tops,Sweaters +886,44,,"Bought this today - cant speak to wear - but overall design is so incredibly cute and flattering. i am usually a small or medium, but went with a medium. so different and wearable! white is sheer so opted for a denimy blue color that i dont see listed available online.",5,1,21,General Petite,Tops,Knits +937,37,Scratchy,"The sweater is cute, but scratchy.",3,0,1,General,Tops,Sweaters +937,49,"Cute, but didnt love",It was cute. i didn't keep it because it wasn't soft and hung a bit different than pictured. i thought it would be softer material. it was itchy,3,0,0,General,Tops,Sweaters +1087,34,Great for hot summers,"I am on the fence about this dress, as you'll see the reasons below, but it is really breathable fabric and extremely comfortable! +_________ +pros: +- tons of stretch to the top part. i'm a 36c, so a lot of retailer tops are too snug for women with some bust. however, i fit into a medium here without it being too snug. you could actually go down or up depending on how loose or tight you'd like it to be on you. +- the bottom half, the skirt, feels so nice on the skin. very breezy. it is layered an",4,1,42,General,Dresses,Dresses +745,40,Love!!,"I love these tights so much i almost want to buy another few pair and save them for when these wear out. the lining is like clouds on your calves. they're thick enough that you don't need to be totally covered by a tunic but slim enough that they don't add bulk. love, love them!",5,1,1,Initmates,Intimate,Legwear +745,42,Finally found nice leggings!,I am a curvy woman and leggings are new to my world. i am sorry that i did not discover these leggings sooner because they are lovely. they are comfortable and cozy with a great fit. i am 150 lbs and 5'7 and the m/l fit perfectly. i have the black and plum colors. great purchase!,4,1,1,Initmates,Intimate,Legwear +1087,36,Gorgeous on the hanger but not for me,"I was so in love with this dress when i saw it in the store but so disappointed when i put it on. i am 5'10"" with curves and usually buy a large in dresses. this dress looked like a sack on me. the top was way too big and loose making the dress a boxy cut rather than a maxi cut like i was expecting. the dress is lovely to look at on the hanger and feels good on but i don't think it flatters hourglass figures. it was the right length for me unlike many other reviewers. +obviously, based off the",3,0,2,General,Dresses,Dresses +937,46,Primula cocoon cardi,"This is huge. i understand that's the style, but it looked like i was wearing my husband's size xxl. i tried to imagine a really cold day when all that extra fabric would be nice... but then it started to itch, and itch and itch!",2,0,4,General,Tops,Sweaters +937,32,Not for me,The fit is not as shown on the website. will be returning.,1,0,0,General,Tops,Sweaters +1110,24,"Beautiful, runs very large","The detail on this dress is lovely -- it's unusual and well-made from soft fabric. it is big though -- i would usually wear a medium and ordered a petite small. to give you a sense of how large it is, i am currently 33 weeks pregnant, and bought this to wear after the pregnancy. i can actually get it on now, over the considerable baby bump. it doesn't look good, but i can in fact get it on. hoping it won't be way too large post-pregnancy, but it seems to fit fine in the shoulders now. definitely",4,1,1,General Petite,Dresses,Dresses +1087,44,,"I saw the cream color in size regular small in the ""only one left"" section at my local store. i had my heart set on this dress all summer but it was sold out, so i was super excited to see it. the color is true cream, like linen color. i was surprised that the dress is very heavy, as heavy as a medium sized coat. i can't understand why it's so heavy because the top is sleeveless and the dress part is pretty sheer. the dress is about 2"" pass my feet which i wouldn't mind having it hemmed, but the",4,1,0,General,Dresses,Dresses +745,33,Super soft and comfortable,There's are just what i was looking for! these are perfect in texture and thickness...not too thick but not too thin. super soft fleece on the inside. i both both the black and green...i will most likely but the grey soon enough.,5,1,0,Initmates,Intimate,Legwear +1087,38,Awful if you have any sort of curves!,"I am floored by the amount of positive reviews on this dress! when i received it, it looked nothing like it does on the model. the bottom looked like dirty sand and was completely wrinkled. if you have anything above a c cup, the top looks completely unflattering. i looked so top heavy in this dress! definitely not worth the price. so disappointed.",2,0,2,General,Dresses,Dresses +1110,42,,"Adorable, comfortable dress. the denim is super soft with a bit of stretch. please be advised this dress runs very large, especially through the hips. i normally wear a size 12 and the large was swimming on me. i will definitely be exchanging it for a smaller size.",5,1,29,General Petite,Dresses,Dresses +1110,35,Armholes huge,"This didn't work for me. im normally a m (8/10). got this in xs. that was the correct size for me, i believe. however, the armholes were huge. husband said the top of the dress looked like the autobots symbol from transformers and he wanted me to keep it. but, i sent it back.",2,0,0,General Petite,Dresses,Dresses +873,52,Modern take on 1950's vibe,"I am long waisted and 5' 120 lbs. 34c. that being said, i purchased a size s regular and it fit perfectly. a petite would have been far too short. so i would recommend a regular size if you're a petite. also i have a big chest and this was very flattering. because of my chest size i usually do best with a v neck, but this classic peter pan collar looks great! i purchased the black. i agree with one of the reviewers who said that the nude color looked like a mess of a weave. the black and white o",5,1,1,General,Tops,Knits +895,38,Most beautiful sweater that i own!,"This is a bit pricey, but it's the most beautiful sweater that i own. it fits beautifully, and the material is soft, not itchy, which is important for a sweater with a cowl neck. the cowl sits beautifully, no matter how you ""fold"" it. and, the pattern both at the neck and the bottom is vibrant and bright, and is just lovely. i ordered a small and it covers my butt, which is perfect for leggings, or even with tights and boots. it's not shapeless, but seems to graze your thighs, and has a mild tur",5,1,3,General,Tops,Fine gauge +895,25,Perfect,This product i better than the pic. nice fit and a nice throw on with boots nap glad i took a chance one it,5,1,1,General,Tops,Fine gauge +895,56,Imperial garden,"I bought this a month ago and returned it. but kept thinking about it so ordered it. it arrived on wed and i wore it on thursday as a dress with tights. i got so many compliments on it. it was perfect for the cool weather and was not too warm. + +this knitter thinks the quality of the jacquard knit is excellent. yarn used is top notch.",5,1,1,General,Tops,Fine gauge +1072,56,No slip and totally sheer dress,"I just received this in the mail today. first of all there was no slip included and the fabric is totally sheer. the description says ""viscose lining"" so i assume there was a slip and from the picture it looks like it was a beige color. second of all, it was obviously sent from a store where they lost the slip and it was squished into the smallest possible retailer envelope. the fabric is beautiful but the dress is humongous like the previous reviewers said. i ordered a size smaller than us",2,0,0,General,Dresses,Dresses +895,23,Amazing,I am six feet tall so this will definitely be a tunic with jeans or leggings but if you are shorter it could easily be a dress. lovely pattern with soft cozy fabric. nice weight and hangs well. definitely a keeper!,5,1,0,General,Tops,Fine gauge +945,53,Ordinary for the price,"I was so excited to order this sweater but was so disappointed when it came. the knit is somewhat stiff and the sleeves are not as bell shaped as pictured on the model. overall i would of kept it if it were much less money, for the price it is just an ordinary sweater with no style.",1,0,12,General,Tops,Sweaters +895,47,Didn't work on my pear shape,"After reading the reviews i decided to give this a try, but it just didn't work on me. i'm 5'8, smaller on top, and usually wear m in retailer sizes. this was ok in the shoulder and arm area but a little too snug for me in the hips. also, the diagonal striping made my boobs disappear and the pattern at the bottom emphasized my tummy and rear. not exactly the look i was going for. back it goes.",3,0,0,General,Tops,Fine gauge +850,45,Good basic - but sheer,"I loved this in the store, but had to order my size. it is true to size - a great length - but the material is very thin and very sheer. i don't think it will carry over into fall - it is more of a summer weight fabric. it is also a little pricey for that same reason - still - its a great basic and i will keep my eye out for it to go on sale.",4,1,0,General,Tops,Blouses +945,33,Effortlessly chic!,"I absolutely love this sweater! first of all, it's extremely comfortable. i have been wearing it around the house all day and have no desire to take it off. it's cute as a casual around the house top, but also adorable dressed up with jeans and boots. it drapes beautifully for an effortless chic look. the color is pretty close to the photo and very nice in person. the possibilities are endless for colors to accessorize and match with. this sweater is definitely cropped in length, which i normall",5,1,0,General,Tops,Sweaters +895,56,Don't trust anyone,"Haha, the unifying theme in these reviews seems to be don't trust the picture! i was misled by the neckline, i thought i saw a structured kind of asian-inspired mockneck/funnel thing and instead the top has a foldover cowl which, with my full bust underneath it, refuses to pose as a mockneck for me. overall there isn't much structure here at all. but the print is beautiful and the sweater cozy without being itchy.",4,1,1,General,Tops,Fine gauge +805,43,Sheet,"Love the shape and cut of this top but it is so sheer you could see my belly button through it. if it was a dark color i would buy it. wore my regular size small. i'm 5'5""130lbs and 32dd.",3,0,2,Initmates,Intimate,Lounge +850,49,Happyinpdx,"Has quickly become one of my 'go to' tops. comfortable, cute, looks just like the picture.",5,1,1,General,Tops,Blouses +850,36,Great shirt,"It is the perfect top to wear in the summer, it is nice and you can be somewhat dressy or super casual. i don't like anything too tight around my stomach and this has a nice flow with just the right amount of material.",4,1,0,General,Tops,Blouses +895,58,Couldn't get past the itch factor,"This is a beautiful tunic. i wanted it to work so much but i couldn't get past the itch factor. also, the sleeves were shorter than i expected. when i wore a light tee underneath, it didn't move well and looked bulky so sadly it went back to the store. if the material doesn't bother you, buy this. would look great w/ tights/leggings and boots.",3,1,1,General,Tops,Fine gauge +1072,35,Stunning! just buy a belt with it.,"I saw this dress in the window at the portland store, and had to try it on. i was a bit horrified at how huge it was once i got it on--sort of like wearing a tent. no shape at all. one of the awesome dressing room attendants brought me a belt, and suddenly it was the most beautiful dress i've ever had on. it's romantic, elegant, feminine... the fabric is so lovely and the flowy sleeves with the lower scooped back just look fantastic. i can't say enough about how amazing it makes me feel. i wore",5,1,3,General,Dresses,Dresses +805,66,Runs big,"I ordered size large and find it too boxy and long. love the hem, although the top is too long in this size so it's a bit hard to judge how it'll look in the right size. the sleeves are cute and different, a bit wide and flowing. be warned, it's sheer which is more apparent from the side view. i could clearly see the garment cleaning instruction tag through the bottom side hem. has potential but not enough for me to reorder in a smaller size.",4,1,3,Initmates,Intimate,Lounge +945,43,If only it looked like the photo.....,"This sweater was a big let down. i am 5'2"" so i ordered it in a petite. it was so short that if i lifted my arms, you'd see my bra!! there is no way i could wear it without something under it- even with high waisted bottoms. and the bell sleeves look nothing like the pic. the entire sleeve is just wide, and it continues with little increase into the cuff. it is just short and boxy. it is going back for sure.",1,0,8,General,Tops,Sweaters +833,42,Not as pretty in person,"I was excited to see this top in person, but once i got a close up look at it (and also tried it on) i was disappointed. first, the color is much more persimmon orangey in person and that's a hard color to pull off for a lot of people. it just pulls any pink or red in your skin and highlights it. + +second, the top was poorly finished. i had to pick up two to try on because the lace was wonky across the front of the first one i grabbed. so much so that the lace was puckered because it had been",3,0,12,General Petite,Tops,Blouses +833,43,Feminine and tts,"Love this blouse! the top is true to size...i'm generally a m and decided to try a pl which fit great. the pm was just a bit snug...looked fine but i felt a little constricted in the bust area and thought the pl was better for me. i'm 5'1"" for reference and curvier on top than on bottom. i wore a nude bra when trying on and it totally worked with this blouse. the lace detail is a bit sheer in some parts near the bust line but nothing too inappropriate. i can't wait to wear it down to dinner for",5,1,3,General Petite,Tops,Blouses +833,54,Beautiful blouse,"This is a beautiful and fashionable blouse. it feels good on as it is made of viscose, it is pretty and feminine. color is great, of course it needs to be your color. i love it and recommend it!!",5,1,0,General Petite,Tops,Blouses +850,36,,,5,1,0,General,Tops,Blouses +833,43,Pretty top,"I fell in love with this top when i tried it on at the store. it's a great fall piece. it is see-through around the bust, so a nude bra or any color camisole would have to be worn. my only thing is that it seems a little dressy, so i'm wondering how much i'll wear it. i work from home so everything has to be somewhat casual. so, i do recommend it, but i'm undecided as to if i'm going to keep it. for reference, i'm a 34d with a thin upper body and took a size medium.",4,1,0,General Petite,Tops,Blouses +1072,68,"Size down - loose,, flowing material - love it!","This dress is light, airy easy and comfortable to wear. i love the colors and pattern. it looks wonderful with or without a belt. i sized down from a 6 to a 4. i position the front of the dress material closer to the neck so it flows longer at the back. although i am a size 6 the under slip fits perfectly in a size 4. i prefer the dress without a belt but it also looks good with a belt or a jacket or long cardigan. +this dress is a keeper!",5,1,3,General,Dresses,Dresses +895,60,Warm and chic,"Very attractive and easy to wear. i wore it the night it arrived and wore it again the next night! i love the colors, the pattern and design. this is a stylish tunic sweater. the sleeves are not full length, which i prefer. the sweater is dense - the weave is tight, making the sweater quite warm, but not too warm.",4,1,0,General,Tops,Fine gauge +850,32,Perfect tank to be dressed up or down,Great tank to wear to work or a night out. fits true to size.,5,1,0,General,Tops,Blouses +833,55,Pretty and feminine,"Stylist at my local retailer recommended i try on this top. as soon as i put it on, i was amazed at how pretty it is. i'm 5'3"" and curvy size medium and the fit is true to size. i would say if you are between sizes, you may want to size down. i didn't have any issues with the lace and the slight v-neck falls perfectly on me. no need to wear any cami. +my only concern was how wrinkled the top was. i requested to have the blouse steamed before i left the store so that i could see if all of the wrin",5,1,2,General Petite,Tops,Blouses +895,39,Perfect,"Not only a beautiful knit but can be worn as both tunic and dress on my short frame. it does not look like a sack tent when worn. very soft and flattering. collar is styled well and can be shaped different ways. pattern and color combo is the similar to the exquisite eira dress. i am 5'3"" and i chose the regular over petite. i only wish the sleeves were longer.",5,1,0,General,Tops,Fine gauge +895,60,Beautiful sweater!,"As others have said, this is even prettier in person. beautifully made, colors are really pretty. it's unique and special. in sweaters i go between sizes small and medium, depending on the cut. i went with the small here because the medium had a bit too much fabric around the hips where i don't need it. it doesn't run large, it's just that i wanted it to be closer fit as i'll wear it with skinny jeans or leggings.",5,1,1,General,Tops,Fine gauge +833,42,,,4,1,0,General Petite,Tops,Blouses +895,50,Wanted to love it - but . . .,"I wanted to love this. however, the fit was funky and the colors were muted. this is definitely something you must try on in the store. too risky to buy online due to weird fit.",2,0,0,General,Tops,Fine gauge +886,23,Shrinks!!!,"Ladies this top shrinks!!! i am very disappointed, i was in love with this top and the first time i washed it it shrunk a significant amount. i did not use a dryer, i laid this piece out to dry as i do with the majority of my knit tops and it shrunk. it is a lot shorter and much tighter, especially in my arms. if you love this top i might suggest buying a size up and washing it to fit.",2,0,14,General Petite,Tops,Knits +886,39,,I bought this in black. it's a great long length. i have long arms so the sleeve length is great. it's really soft. only issue is seems to sag a little in the middle instead of being flowy. overall a good tunic.,3,1,0,General Petite,Tops,Knits +886,32,"Love, love, love!","I love this top! the sizing was great, and i have already worn it so many times, and received so many compliments! it is great to dress up or down! such a great purchase!",5,1,0,General Petite,Tops,Knits +886,56,Loved this top,Purchased in the blue. the color is a little darker than it shows. more of a slate blue. loved the fit. i am tall so it covered perfectly.,5,1,0,General Petite,Tops,Knits +1078,61,Flattering,"Very slimming, lovely dress. +a nice addition to your fall/ winter wardrobe. +the embroidery is lovely, fabric soft and comfortable. sized perfectly. +so happy with this beautiful black dress!!!",5,1,7,General Petite,Dresses,Dresses +1089,34,Love,"New fav lbd. i am 5 months postpartum and this dress makes me feel like my old self again. it fits right above the waist, with a bow to cinch the waist. love the fit and flare. the top is warm, great for a cold evening out. and the taffeta really dresses it up. love",5,1,0,General Petite,Dresses,Dresses +895,48,Very plain on the front,"This sweater looks soft and flowy on the model, but in the store it is rather stiff lace in the back and very plain in the front. i did not like the ribbing on the front bottom of the sweater because it pulled in places and didn't lie flat. way too expensive for what you are getting.",3,0,2,General,Tops,Fine gauge +886,34,Might be great if you have a bun in the oven!,"Again, bought this while wearing my retailer colored glasses. i loved the flowiness and color of the dark pink, and was convinced in the dressing room that this top made me look like a chic goddess, mid-vacation on the amalfi coast. i tried it on at home, and it straight up looked like i was wearing a maternity top. since i'm not with child, this one's going back!",2,0,0,General Petite,Tops,Knits +895,42,Pretty but just okay when worn.,I love the back detail but doesn't feel that comfortable on. i bought in green. it's fitted so get size larger if you plan to layer up. i'm 107 and bought xs size. i should have ordered the s.,3,0,0,General,Tops,Fine gauge +1105,49,Very versatile,I was on the fence about this jumpsuit at first. i feel the pockets in the back are a little high on my bum. kind of an unnatural placement. i sized up so it wasn't so tight fitting at the waist and hips so it made the placement of the back pockets a little better.,4,1,0,General,Dresses,Dresses +886,29,Great winter tunic,"Great for layering and staying warm in the winter. definitely stay on the larger size, the fabric has very little give but is comfortable.",4,1,0,General Petite,Tops,Knits +886,43,Not a great design,"This shirt is not a good look for a gal with hips. the fit at the top is tight (i ordered a small) but there is so much material at the bottom and if you are a little taller (i am 5'7), it hits at a place that is not flattering. i was hoping for something that hung straight down and would be good with leggings. this is not it...also the material is a little stiffer then i was expecting.",2,0,0,General Petite,Tops,Knits +886,63,V-neck t,Way to v necked- other than that would be a nice go to top. needs a cami.,3,1,1,General Petite,Tops,Knits +969,34,Super cute- order a size down,"After reading the reviews, i was hesitant to purchase, but glad i did. i'm usually an xs or s depending on the brand, but i got this in a xxs. it fits perfectly and is so cute. does not look like a bathrobe at all. i love it because it's almost like a cardigan blazer...looks like a blazer but feels like a cardigan!",5,1,0,General,Jackets,Jackets +886,60,Nice tunic,"I tried this tunic on in my local retailer store. they do not carry petites, so i tried on a regular small (i'm 5'2"", 130lb). the proportions were a bit off. the v-neck fell way too low and there was extra material puckering across the bodice. i definitely think a petite would work better for my height. alas, no petites in-store or online in the color(s) i would purchase. i didn't find the shirt too thin, as some have commented. it's essentially a midweight t-shirt material (but rayon, so beware o",4,1,2,General Petite,Tops,Knits +1078,39,Nice casual tunic-dress,"Comfortable,t eh fabric is very soft. the embroidery adds a little to the otherwise plain black tunic. lace up neck on trend too. + +i ordered the xxs p, as it is likely loose... that was just fine for me, xs p would have been not as flattering. theo nly problem with that is the sleeves then became a little more snug (workout arms). not too snug that i can't wear the dress, but decided not to keep it only because there are way too many things i like at retailer! (and have to pick). in my wish lis",5,1,2,General Petite,Dresses,Dresses +1060,39,Not as bad as previously reviewed,"I do think the fabric could be a little more substantial for the price, and was disappoitned that even petites, were again, too long... the color is nice enough (neutral), and they definitely look like work pants. they are true to sice, but i could do the low end of my size range.",4,1,7,General Petite,Bottoms,Pants +886,32,Love the black,I bought this in black and it did require me to wear a shirt underneath as it was a little sheer/see through. i usually wear an xs and i wore the same in this top. the black is very pretty and goes well with some skinny jeans.,5,1,24,General Petite,Tops,Knits +886,39,Weird shape.,After seeing this on anthto's facebook page i was so excited to order. i ended up going to a store and trying on. i couldn't believe it was the same shirts when i first saw it. i thought this ran quite big. and the shape was odd. lots of material in the middle. i am a mom of 3 young kids and didn't want people to think #4 was on the way.,2,0,15,General Petite,Tops,Knits +895,54,Boxy,"I ordered this sweater in black and thought it was a pretty design and something different in a cardigan. when i tried it on, it was an odd fit and very boxy and unflattering. i wanted to like it and keep it, but i knew i would not wear it so, unfortunately, it went back.",3,0,0,General,Tops,Fine gauge +895,71,Cute but short,"I ordered the green, black and ivory because i thought they were so cute. the sweater is short but still cute. the ivory one i will return though. it has sparkle that's not noticeable in the online picture plus when it arrived it had a huge snag in the fabric. i'm actually quite surprised they sent it to me in such poor condition.",4,1,0,General,Tops,Fine gauge +886,46,"Too long, poor quality",I ordered the pink in size xl. the color was pretty. the problem is the material was too thin and tight. it ran at least a size smaller than shown in the photos online.,3,0,0,General Petite,Tops,Knits +895,30,Sent to me damaged,"I ordered the in the emerald green and it was sent to me with a dime size hole in the sleeve. i am very disappointed, because i love the sweater. by the time it arrived, it was sold out in my size. now, i cannot exchange it for one that is not damaged. if the sweater was not damaged, i would recommend this product.",2,1,0,General,Tops,Fine gauge +895,59,Gold thread,"This is a very pretty sweater, a bit boxy and short but cute. i am 5'1"" and ordered the regular xs in black. the thing i did not like about this sweater was the gold thread through the back lace. i would have kept this if it was plain black lace. just did not like that look.",2,0,2,General,Tops,Fine gauge +1089,26,Not for me,"I was obsessed with this dress from the moment i saw it online and was so excited to buy it for my company christmas party. i'm 5'4"", 36c, 145lbs and i ordered a 6. the size was great but the whole cut of the dress was completely off for me. i have a fairly short torso but the top portion of the dress (which is a sweater-like material) hit me far too low on my waist to be flattering; the petite may have fixed it, but then the skirt would've been too short. the pleats were cute but flared out too",3,1,2,General Petite,Dresses,Dresses +886,46,Great tunic,"This tunic is very pretty in black. it is lighter weight than the picture appears and drapes nicely. i'm 5'2 so i ordered the petite, but would have been ok with the extra length of the regular for when worn with leggings, with jeans the petite length will work well. i recommend using the size chart provided. i general wear an xs, but ordered the s, based on the size chart, it's a perfect fit.",5,1,37,General Petite,Tops,Knits +895,31,,"Great, special cardigan. fits like a shrug and a little short but is perfect over a tight fitting sheath. great for broad shoulders.",4,1,0,General,Tops,Fine gauge +868,46,,Cute cute. simple tank with a little something to add interest.,4,1,0,General,Tops,Knits +895,35,Not for tall ladies,"This sweater is a cute design but did not work for me. i am 5'9"" and this is way to short/cropped and looks awkward. the quality was so so, it looked stretched out in the front. it's getting returned.",2,0,1,General,Tops,Fine gauge +886,61,Lokka tunic,"Beautiful top, loved the color but shoulders were totally messed up and not sure if it was from +hanging at store or the way it was sewn.",2,0,0,General Petite,Tops,Knits +886,34,,"I ordered this in two colors, in my regular size. i washed and laid flat to dry....it shrunk like crazy. i held the one i washed up to the other unworn/unwashed one and it was at least two inches shorter. they may both be going back. i am so sad.",4,0,6,General Petite,Tops,Knits +886,55,,I purchased this top in blue and liked it so i ordered the red color. i hated the way the second one fit. i'm concerned the blue will not wear well after seeing the way the second one looked!,2,0,0,General Petite,Tops,Knits +1089,36,,It is so simple but elegant and beautiful! i am 5'3 and 120 lb and extra small fits me perfectly,5,1,6,General Petite,Dresses,Dresses +1078,46,I'm in love!,"I love this shirtdress. the lace and collar design pops off the black. super comfortable and love that it has pockets! a keeper, this one not going back ever. i am 5'9 and 140 lbs and the 6 fits perfect. the length comes above my knee, so most likely i will be wearing tights or skinny's underneath.",5,1,0,General Petite,Dresses,Dresses +895,49,Pretty cropped cardigan.,"This cardigan is nice and the lace at the back is pretty. just be aware that it's definitely a cropped length, which is good for wearing over a dress that you don't want to cover up too much. size up if you want room to layer. the one i tried on at the store had the top button almost falling off, so i didn't buy it.",4,1,0,General,Tops,Fine gauge +975,28,Love but poorly made,"You guys, i love this so much! however, within one hour of wearing it, the back seam completely ripped. it fit me perfectly... sadly i'll have to return the damaged item. really sad it's all sold out too!",3,0,0,General,Jackets,Jackets +975,74,This velvet has swagger!,"I love the soft, slouchy feel of this draped yet constructed jacket. don't expect a crisp fit. i'm not a fan of the menswear look so this jacket is the boho answer to a classic blazer. the one-button closure is easy to wear; the hem curves for a more feminine look. i hesitated before ordering (hoping it would turn up at my local retailer). by the time i was ready to order, the green version had sold out. as it turns out, the copper is even better. it was 86 degrees today, but i wore it anyway!",5,1,2,General,Jackets,Jackets +886,37,,Love this shirt with leggings. if you are in between sizes- size down,4,1,0,General Petite,Tops,Knits +548,38,,Unusual color. expensive even on sale.,5,1,0,General,Trend,Trend +1078,82,Great dress!!,"I am 5'4"" 140 pounds and ordered the 8 petite. it fits perfectly and is very flattering. the embroidery and lace up neckline thing is really awesome. it gives the dress some character... i am also a fan of the roll-up sleeves. i wish it came in other colors because i would certainly order more than one. the one and only potentially negative aspect, and i say potential because i'm not sure if its an issue or not as i haven't worn/washed it yet is it appears to be something that i may have to iron",5,1,5,General Petite,Dresses,Dresses +1060,49,,"Oh elevenses, i love your pants..the fabrics, the details, the length. i've found elevenses to be classic work pants. reliable, professional, well made. these are none of those things. the cardinal trousers are thin and the rise feels much higher that's it appears in the picture. the red pair are thin, stretchy and cheap. both pairs have to go back. i'm truly sad.",1,0,7,General Petite,Bottoms,Pants +886,41,Cute basic,"I can understand the concerns of another reviewer about shrinkage. i have a few retailer tops made of similar fabric and they have shrunk a bit. this too fits very well, but once i wash it, it will likely get a bit smaller. i ordered a small, but plan to size up to a medium. for ref. 32ddd bust, and the small fit perfectly with a camo underneath...the shoulders seem to be cut small. so if you are busty like me, size up.",4,1,0,General Petite,Tops,Knits +886,35,Lokka is lovely,The lokka tunic is a perfect go-to top for casual days or nights! pair it with skinny jeans or leggings and you are set! the long sleeves are fitted and long-so they can be bunched at the wrist. i ordered it in both the black and the the pale grey/blue shade. it is a winner.,5,1,0,General Petite,Tops,Knits +886,23,,"I got two of these when they went on sale because i hate paying $68 for a basic top like this.. but for the sale price they are great! comfortable, lightweight, and flattering. the black is a little sheer, but nothing a tank underneath can't solve. a good buy!",5,1,0,General Petite,Tops,Knits +886,37,Great shirt,"I bought this in my usual medium and it fits great (fitted at the shoulder, loose below). it looks great with skinny jeans and can be worn casually or dressed up with accessories.",5,1,0,General Petite,Tops,Knits +1078,41,The perfect fall dress,"Ordered this dress online and wasn't sure about the criss-cross neckline feature but i love it! it's absolutely adorable and unbelievably comfortable. the fabric is very soft and lays nicely without feeling too ""baggy"" or frumpy. the embroidery is beautiful. i'm wearing it to a fall event in october and pairing it with my favorite cowboy boots, but it would also look great with flats, heels or booties. totally in love with this dress!",5,1,5,General,Dresses,Dresses +1078,56,"Adorable, comfortable, flattering; this has it all","I was not shopping for a dress and somehow came home with this. in person the material and embroidery are just so stunning that i found myself picking it up. i was sold after trying it on. the material is very soft, both feels and looks extremely high quality. and for a basic shirtdress, it is amazingly flattering. follows curves without clinging to them. i'm 5'4"", 123 lbs, usually wear a small in tops/dresses & purchased the size 4, which fit perfectly. i'm slightly chesty (34d) so sometimes ha",5,1,6,General,Dresses,Dresses +1078,42,,"Love this dress! it is super-flattering, and the embroidery is beautiful.",5,1,1,General,Dresses,Dresses +895,30,Cute!!,"I am going to disagree with reviewers who say this runs small. i found it very short and wide. that being said, it is meant to be cropped. i ordered a size small and it fit perfectly, albeit a little short. for reference, i am usually a size 6/medium in retailer shirts and dresses.",5,1,0,General,Tops,Fine gauge +886,52,,Beautiful sweater but the material is a bit thinner than i was expecting. but it hangs nicely and the sleeves are nice and long!,4,1,1,General Petite,Tops,Knits +594,43,,"Absolutely gorgeous skirt! so feminine and curve hugging. wish i hadn't found this so late! want it in every imaginable color, but i will settle for the off white. + +please bring this style back!",5,1,1,Initmates,Intimate,Lounge +895,29,Funky seams,"Love the design and the gold color, but the seams between knit and lace were a little weird and bunched/weren't smooth. maybe the one i tried on just needed to be ironed or something...",3,0,1,General Petite,Tops,Fine gauge +886,27,,Great style!,5,1,1,General Petite,Tops,Knits +886,26,Perfect!,"This top is great - lightweight and flattering. +i can wear it to work with skinny white pants or to the grocery store with jeans. +i purchased another color because i love the first i got so much.",5,1,0,General Petite,Tops,Knits +1089,28,Beautiful dress!,"Can be dressed up or down. the top part is tight, while the bottom has a beautiful skirt. i'm slightly busty and about 5'6"" and the size 6 is perfect for me.",5,1,2,General Petite,Dresses,Dresses +975,45,Not enough structure fo rme,"The fabric is beautiful, even the lining is lovely. i ordered the green color in a large, as i'm curvy and have long arms. but it just doesn't lay correctly at all - the collar has no structure, even though it's a lapel, and the side vents just pop out - the jacket added about 10lbs, and just looked frumpy. it looks much more tailored on the model. too bad, as i have been looking for a velvet blazer in the color for a long time.",3,1,13,General,Jackets,Jackets +886,29,Comfortable,"Love this shirt! i bought the light blue color and its amazing, fits well i love that its long in the back. very comfortable and loose. thinking of buying it in both pinks.",5,1,0,General Petite,Tops,Knits +1078,47,Could be a bit shorter,"Great material. a bit loose in the middle / lower half. doesn't belt well. it could be 3"" shorter, considering alterations. i'm 5'7"" the model is 5'10"", so yeah 3"" shorter would be cute!",4,1,0,General,Dresses,Dresses +895,28,Great cardigan,Love this cardigan. fits just as i expected. very structured in the front with a bit of flair in the back.,5,1,0,General Petite,Tops,Fine gauge +1060,38,Not worth the $$,"I loved the cut of these pants and the button accent on the pockets. however, the material was quite thin and the quality was not great- there were multiple snags along the seams. additionally, at 5'8, 130lbs i was swimming in the size 4. i would have tried sizing down if the quality was better.",2,0,17,General Petite,Bottoms,Pants +895,64,Pretty,"This is a pretty sweater. i ordered the red and it is a plum color, not close to red, but it will work well with black, gray and denim. i found the sweater looks boxy from the front but the back is spectacular. it is very well made. no raw edges or seams that are threatening to unravel. this will be nice for casual holiday dressing. i found a longer tank in white works well under this.",5,1,1,General Petite,Tops,Fine gauge +975,64,Well...it is green,"This is silly, but the moss is not brown as pictured but olive green. with that ""said,"" i am going more casual, and i love the ""flex"" of this coat. the shape is beautiful and the lining is fun. i waited two months to get this in close to my size 00. for my style it is a keeper, but this back order situation is not acceptable. don't know whose fault that is?",4,1,3,General,Jackets,Jackets +886,52,,"I bought this tunic in black and am seriously considering buying it in more colors. it is so comfortable and very flattering. i am 5'11"", so many tunics are more like shirts on me, but this one is the perfect length to wear with leggings or pants. the v neck is a nice, feminine touch and i love the change in material around the edges.",5,1,6,General Petite,Tops,Knits +975,52,Feminine blazer,"I am 5 feet and 120. i ordered a petite small in moss. i have posted a photo below. it's a pretty green. the lining is pretty. the reason i deducted a star is because the lining is very thin and ""slips"" a little when putting the jacket on. but it doesn't effect the way the jacket falls and i wear it comfortably. it's floppy, but not sloppy. i was surprised that each side the fabric is like a tulip. it was a nice surprise. i'm curvy and busty. i have zero problem with it being unflattering. the s",5,1,3,General,Jackets,Jackets +815,72,"Adorable top, a little pricey","I ordered this shirt to wear with a pair of pants that i had to return - which is one reason the top went back as well. it really is cute and i like the exaggerated key hole in the back. i certainly could have found other things to pair with this top, but it came down to the price. i just didn't think it said $118. hopefully its still around when it goes on sale. its very cute. fits true to size.",4,1,2,General Petite,Tops,Blouses +1026,43,So comfortable,"These leggings are soft, comfortable and go with everything. love the way they feel.",5,1,1,General Petite,Bottoms,Jeans +823,39,Huge arm holes,"Why is it so difficult to find a shirt that doesn't expose half of my bra if i lift my arm? + +this is cute (beyond the arm hole issue) but overpriced. going back.",2,0,11,General Petite,Tops,Blouses +1055,29,Looks can be deceiving,"I wanted these culottes to work so much! the fabric is gorgeous, but the size i ordered didn't fit. i'm normally a size 28 in pants, and i ordered a size 8. it was way too tight and made me look like i had a pooch in the zipper area. not what i wanted it to be. had to return them unfortunately.",2,0,0,General Petite,Bottoms,Pants +1081,47,Not as pictured,"This dress is most definitely not a maxi! barely goes below the knees. also you do not get the cute detail shown on bodice. there are no folds which were an added plus on picture. waist is higher, not at natural waist. very pretty silk though and still cute. just not as pictured.",3,1,9,General,Dresses,Dresses +2,28,"Gorgeous top, straps way too long","I just adore this top! it is so comfy and stylish. i wear it with a little purple cardigan and feel like an iris in bloom. like other reviewers have mentioned though, the straps are way too long. i had to cut them down and re-sew to make it wearable. before that it just slouched in front and looked sloppy and awful. i tried layering under it, which looked absurd.",4,1,0,General,Tops,Knits +1081,51,Still awesome,"I read the reviews prior to purchasing but loved the pattern so much i had to have it. i was not disappointed however, had i not read the reviews i would have been. it is true the top of the dress is flat and does not have the detail as shown on the model. it also appears to be disproportionate. i am 5'1 and curvy the bottom fits well but the top is large however rectified by wearing a padded bra. since i ordered the petite i was surprised the dress was above the ankle (usually their items are l",5,1,0,General,Dresses,Dresses +936,35,Perfect for any season,This is more beautiful in person. i love the detail and color. i usually don't like ponchos but this one's shape with the square front definitely sets this apart.,5,1,9,General Petite,Tops,Sweaters +1026,66,Super cute pants,I rarely write reviews but had to comment on these pants. these pilcro pants are my favorite for the fall and winter. they fit beautifully and are a great alternative to jeans. the pants are so comfortable and flattering. love the print and they are so versatile as they can be worn as very casual pants and can be dressed up. i am in my 60's and am always looking for clothes that are stylish without being too young looking for a woman my age. retailer is my favorite store!,5,1,1,General Petite,Bottoms,Jeans +1081,50,So wanted to love it...,"Ditto what the first reviewer said, unfortunately. i was so looking forward to receiving this dress but the one received is not the one in the photos. the graphics are fantastic - still love the boats- but the top is not the same and they've added a fabric belt to the finished dress. the fit was perfect except for gapping under the arms (similar, i suspect, to what the first reviewer reported). i was also surprised by the fabric. based on the photos i was expecting something light and semi trans",2,0,4,General,Dresses,Dresses +299,37,Cute casual shorts,"I ordered these in both the grey and moss, and i love both. they are very soft, very easy, loose fitting casual shorts. i wear them a bit lower on my waist than pictured, so they hit lower on my leg than on the model, which i prefer in these. i am 5'3, 105 lbs, ordered xs. the dark grey ones feel more versatile, like you could throw on anything with them and go. the moss look cute with white/cream summery tops. they washed well (machine, cold, laid flat to dry), touched up with light steam from",5,1,3,General,Bottoms,Shorts +1055,36,Adorable culottes!,"These culottes are adorable on....if you order up two whole sizes! they run extremely small. fabric is thick, high quality and a beautiful color.",4,1,4,General Petite,Bottoms,Pants +1055,43,Not for big girls :(,Quality is fantastic but i feel like a 14 would have barely made it's way around one leg! this pant is way small in terms of sizing and not a style fit for anyone over a 6. a lot of fabric in the legs. nice pant but not for this girl!,2,0,11,General Petite,Bottoms,Pants +1026,42,Perfect fit,"Love these pants. corduroy leggings that fit like a skinny pant. comfortable. not too stretchy. maintains shape, even with multiple wears between cleaning. pairs nicely with black, neutral, or buttery yellow tops. fun print. received compliments first time i wore them. sizing is just right also. i'm 5'3. usually wear 26 in denim but have to go up a size for super skinny so i ordered a 27p which fits me just fine.",5,1,0,General Petite,Bottoms,Jeans +1010,60,"A little 'hip-y""","Skirt in med fit fine, cute,lightweight, swingy, flirty, fun, almost knee length +i am typically a 10-12 +but the pattern which swings up, across, and down made me look wide in the hips as opposed to other clothes i own already +more petite, less curvy girls enjoy! +its going back,sorry!",4,1,1,General Petite,Bottoms,Skirts +1086,44,Maybe one i got it's not right?,"Got the small petite. length is perfect, love the color, super comfy, very pretty. the problem is that you cannot wear a bra because under the armpits is so low that either shows your bra (a lot) or if u wear sans bra you may show your breasts (it's loose all around on top, so very easy to show everything. if i adjust the straps it works but then the waist goes up and it looks like i have a belly. i'm taking to a seamstress to see if she can take in under armpits, if not it's going back. i'm 5',",4,0,3,General,Dresses,Dresses +1055,63,,"These run small (i am 110 and got a size 4), they were a tad tight on top. the waist fit but felt a little too snug, short from waist to crotch and then bloomed out in a nice but stiff ish material. they are a dark blue animal print. i felt like bozo the clown goes to the jungle. they looked so silly i had to laugh. even with the 20% off, these are going back. not even comfortable to lounge around the house in never mind being seen by anyone in person!",2,0,0,General Petite,Bottoms,Pants +1026,26,Buy these now.,"These cords are seriously fantastic. worth the price indeed. they are very comfy, have a lot of stretch but do not loose shape! the fun yet muted color design allows an average outfit to have a fun pop. they do run big, i got a 26 and i'm usually a 27. they are also very long! nothing a little trip to tailors can't fix. overall, highly recommended.",5,1,0,General Petite,Bottoms,Jeans +1081,42,Different dresses,"I loved the photo of this dress. upon examination of the dress (and trying it on) after receiving in the mail, the dress shown online is nothing like the dress i received save for the pattern. the dress i received has a side zip as well as a belt and no pleats on the top. the bottom is also cut straight across not as it appears in the photo. turns out it is not as flattering as it should appear.",1,0,4,General,Dresses,Dresses +754,48,Classic with a twist,"Beautiful pajama bottoms. i purchased these as a special treat for myself. luckily, i found a review on another site, stating that these run small, before pirchasing. no one wants tight pjs. order a size up! also, i'm 5'8"" tall and the length is just right. if you are taller, you may find this style too short. i haven't ordered the top, because i'm not sure of the fit, but i'm guessing it also runs small, based on the photo.",5,1,0,Initmates,Intimate,Intimates +815,34,,I bought this top in my usual size in a small. i'm a 34 d 26 waist. i absolutely love it. i pair it with a red cardigan. very cute.,5,1,3,General Petite,Tops,Blouses +1164,32,,,5,1,0,Initmates,Intimate,Layering +860,30,,,5,1,0,General Petite,Tops,Knits +952,43,So beautiful!!,"I love this sweater combo! as a larger woman, i am always looking for flattering tops. the draping in front covers all the right areas! i wish they made them in more colors!",5,1,0,General Petite,Tops,Sweaters +952,59,"Great yarn texture and colors, look closely though","I did not realize that this knitted vest had an attached gauzy under-layer. i can see it now in the photo, but i just thought it wasn't part of the actual vest. when the vest arrived i realized sadly that this flowing under-layer was part of the design. i don't know why because the yarn and vest are lovely without it. in my opinion, the under-layer takes away from the beautiful vest. i guess i could have spent some time and removed it, but at that price i just sent it back. too bad because the m",3,1,2,General Petite,Tops,Sweaters +861,36,So cute,This is a perfect fit! i was worried that it would be too short and or boxy. i usually wear an xs. i have a slightly longer waist though and often xs tops run short or they are overwhelming! this was perfect! it is roomy and long enough without swallowing my frame. it looks nice enough to dress up and wear out and about. great value at the sale price as well!! it is well made and doesn't just look like a run of the mill pullover.,5,1,0,General,Tops,Knits +1008,66,Great for tall ladies,"I like the skirt. that said it is going to the tailor to have some of the fullness taken out. just a lot of material going on, and heavier than you might have imagined. i will wear it fall & winter with white & navy cardigans.",4,1,0,General Petite,Bottoms,Skirts +952,39,Kind of calssic retailer,"I think this may almost make it back to the more classic pieces retailer used to have. i tried on the xs in store so i ordered the xxs and xs petite... i felt the usual xs was a little big (again, i think retailer is making things bigger...) my verdict is iliked the length on the regular size better and the xxs fit well. but not much difference (the xs petite was a similar size be the arm hole was higher). +colors are very neutral and warm. i like the addition of the inner layer to make this more wh",4,1,7,General Petite,Tops,Sweaters +1066,48,,"I ordered these in my usual pilcro petite size 6. they were impossible to button, which is interesting 'cause i also ordered the pilcro wide leg chinos in the same size and they fit perfectly, as usual. but it ended up being ok because i don't care for the speckled, slightly rough material or the contrasting piping. back they go!",4,0,2,General,Bottoms,Pants +1008,52,Nice skirt!,"When i saw this online, i thought it was going to be a thin, summery kind of skirt with a fall pattern to it. it is not thin and wispy, but lined with a nicely weighted navy material and the fabric of the skirt is kind of a thick cotton with a nice swing to it. definitely would work for the fall and cool days or evenings. the zipper pockets look cool too, would definitely recommend!",5,1,11,General Petite,Bottoms,Skirts +1025,30,Not petite inseam...,"I was excited to see these jeans since they came in petite sizes and had a short inseam... unfortunately after ordering/returning several pairs, i found out that these are actually not petite jeans. please beware that if you are ordering these for the shorter inseam, they are actually 28 in... not 24 in as in the description. other than the inseam issues, they fit like typical paige denim.",1,0,1,General,Bottoms,Jeans +832,40,Frayed bottom hem.....,"This top is super cute, however the bottom hem is all frayed....couldn't really tell that from the pictures. the ""flutter"" sleeves are too big...looks funny with the fraying...runs a little large as well. loved the color! perfect with white denim!",3,0,3,General,Tops,Blouses +861,48,This is not red!,"I was looking for a shirt of this style. i thought it was very cute, but it is not ""red' as advertised. it is really a brick orange-y color, which is definitely not what i wanted. very disappointed. sent it right back.",3,0,0,General,Tops,Knits +1066,53,Unfortunately for me but good for someone else...,"These lightweight, wide leg pilcro summer jeans are really cute, but did not look good on me. i love the fabric-a slightly 'nubby' no stretch chambray that is perfect for hot weather. the waist was a bit large and there was fabric to spare in the hip area. the legs are very wide, adding to the comfort factor of these! the details are really cute-contrasting fabric at the slash front and rear pockets. i got a size ten in these and they were big-i can imagine they will stretch out with wear so it",3,1,1,General,Bottoms,Pants +1008,29,Great for dressing up or down,This is a great skirt that could be worn to a wedding or worn more casually with a cool tshirt. it is not too puffy and the inner skirt is stretchy and more fitted. i had to size 1 size down. really nice.,5,1,0,General Petite,Bottoms,Skirts +1015,46,Wow!,"Wow, i can't believe there were some sizes left at my local store. it was on sale and i maxed out with additional discount for black friday week-end. the size 6 fit perfect and i can't wait to wear. this is a gorgeous skirt and will sell out for sure.",5,1,0,General,Bottoms,Skirts +1008,46,Georgeous skirt,"I love the fabric, since it's fall wasn't expecting it to be light. but its not heavy either. just the right balance. +this is one of those classics. i love the collage like pattern of the fabric. +the fit is true to size and looks great with bootie/boots. (dressed up or down).",5,1,2,General Petite,Bottoms,Skirts +862,40,Love at first wear,"This is one of those 'i need one in every color' kind of shirts. need - not simply want. it is very well constructed. the fabric is the perfect weight and is sooooooo comfortable. the raspberry is a little more dusty rose than pictured online, but it works. i've only had the shirt a couple of day. in addition to wanting to wear it every day, the fabric has not pilled. i'm short-waisted, and i have not had any issue with the high-low hem or cropped length.",5,1,0,General,Tops,Knits +1008,44,Lovely and colorful,"I really like this skirt - so colorful! the interesting pattern and multiple colors will make this a great fall skirt. i can wear it with pink, burgundy, gray, white, black, and probably many more. can't wait for the temps to drop!",4,1,2,General Petite,Bottoms,Skirts +952,56,,"This was on display when walked into my local retailer, it's just a beautiful in person. my mistake was trying it on, instant love! i tried on my usual size small & it fit perfectly. i would usually wait for something in this price range to go on sale, but i just had to have this. worth the splurge!",5,1,3,General Petite,Tops,Sweaters +1025,69,Fantastic fit!,"These are the best fitting jeans i've ever owned! no puckering near the crotch, and i don't need to have the waistband taken in. they probably run small.",5,1,0,General,Bottoms,Jeans +1111,47,Flirty cocktail dress,"This dress is so beautiful, the color is even more vibrant in person, a stunning emerald green. it is well made and doesn't go too low under your arm, which sometimes happens with halters. the halter material is a thicker band that gives nice support. the skirt does a little poof near your hips at the top, look at the back view photo online, you can see it there. at first i was surprised by it because i didn't see that on the front view, but then i decided it was fun and flirty. i received numer",5,1,3,General Petite,Dresses,Dresses +1066,21,What a dream!!!,"These pants are perfect!!! they are exactly what i was looking for, and worth every penny! the fabric is more lightweight than any other sort of denim, but still i think i could wear these any season. they look so cute with simple heels and a classic blouse, but they can be dressed down with nice sneakers and a plain white t! so excited to have these in my closet!! love a good pair of fun pants.",5,1,0,General,Bottoms,Pants +80,47,Size and function,Too big and it's not secure enough to wear for swimming.,2,0,0,Initmates,Intimate,Swim +1008,67,Looks better on line,"I received this skirt today and was very disappointed. i don't know what i expected but it is not as i thought. even though the quality is very good and the fit is true to size, i may return it. the fabric of the skirt is just too busy, at least for me. i am just uncertain and even though i have many tops, the colors are just not matching. white looks better than any colored top with this particular print. i am going to try it on one more time and make a definite decision.",3,0,1,General Petite,Bottoms,Skirts +861,66,Sporty and chic,"This top will be perfect for autumn and even winter down in the southeast. i purchased the ""red"" and hoped that it was more of a rust color-lucked in! the material is very soft and more on the thinner side for layering-which is alway a plus. i have spare tires in my belly area and this does not grab aholed of them,in fact the stripes do the work and disguise! and the lace up nautical feel brings the attention to my money maker! you won't be disappointed",5,1,1,General,Tops,Knits +862,51,Great little top,"I ordered this on a whim during retailer days sale and i'm glad i did. it's now one of those shirts that calls my name every morning. i've worn it with denim skinnies and a knee length black knit pencil skirt. so soft and flattering. i got it in the red, but am tempted by the blue!",5,1,3,General,Tops,Knits +1066,35,"Comfortable, stylish, 70's relived.","These pants are 100% true to size (whatever that means anymore...i'm a 26 in paige and ag. i'm 5''6, weigh around 115, have long legs and i ordered the 0p. the zero petite are still a little long, with a slight heel they're perfect. they don't have stretch in them, but do to the fit and fabric...the material does expand, because they're thin and breezy. i absolutely love them. can't wait to order other colors of the same style. these are my new favorite pants.",5,1,1,General,Bottoms,Pants +1008,41,Wonderful skirt,"I ordered this skirt online in a size 8 but returned for a 10 so it could sit a bit lower. + +the fabric is so beautiful and a bit heavier so it can be worn all year long. +so glad i made this purchase.",5,1,1,General Petite,Bottoms,Skirts +1066,46,Long pocket equals short leg,"The wide leg was fun, not too wide, but the long pocket seem to shorten leg so i returned. great for a taller person. bottom & trim cute",4,1,0,General,Bottoms,Pants +1066,43,Better than in the photo,"Don't pay attention to the less-than-flattering photo. these jeans are super cute and very flattering. they are actually long, not ankle length as the photo implies. high waisted with a 70s bell bottom vibe. nice light denim for year round wear. they fit like a dream.",5,1,0,General,Bottoms,Pants +1008,43,Very pretty,"I got this skirt in the dove grey, which is a lovely shade of light grey and silver. it has one layer underneath that is a sparkly silver netting which is really pretty that you can't see in the photo. the other layer is the grey netting. it has a very soft light grey silky cotton liner. i got the petite xs and it fits just as it should. i'm 5'3, 102. the skirt looks just as it is pictured, i think it can be dressy or dressed down a bit. very very pretty and well made. i'm happy with the purchas",5,1,10,General Petite,Bottoms,Skirts +861,36,"Great, great top","Really loved this - so soft and snuggly. was unsure about ordering shirt size - (s) or jacket size for layering (m). ordered a small. fits perfect! definitely wouldn't have wanted the medium. 5'4, 135 lbs for reference. love this one!!! great find.",5,1,8,General,Tops,Knits +1028,41,,"Love these jeans! they are the perfect relaxed fit; not too baggy, and a straight style. i did size down, because i wanted to wear them as shown. i was afraid that they would ride too low on my hips. glad i did! i usually wear size 29/6 and took a 28 in this pair. the color and denim weight is also great.",5,1,12,General Petite,Bottoms,Jeans +1080,55,Fabulous,I ordered this dress for my daughter. she wore it to a wedding and it was beautiful. looks just as it does in photo. fabric is a nice weight and hangs great. my daughter had her hair done and look right out of an retailer catalog. well made true to size beautiful dress!!!!!!!,5,1,0,General Petite,Dresses,Dresses +1008,52,Love love love,"Layered this with a chunky sweater and a pair of kicks. it can be low key or dressed up with a pair of heels, multi-functionality not just occasional. it's feminine, funky, and fabulous!! i bought the last one in the store!",5,1,0,General Petite,Bottoms,Skirts +1008,50,Lovely prints,"I saw this skirt online and went to the store immediately to try on. i was a bit disappointed. the size is tts but the prints were prettier online. the material is ok. the regular is long so probably won't look good on a shorter person +if it is still available when the price comes down, i might buy it.",3,0,0,General Petite,Bottoms,Skirts +952,77,Great colors!,"The colors are richer than shown- very vibrant. this piece is very unique and everthing that i love about retailer! i usually wear a medium in jackets and vest. i tried the small and there was very little difference from the small or the medium fit, so i went a size up, just for a looser look. it is very flattering and will be a great addition to my fall wardrobe!",5,1,1,General Petite,Tops,Sweaters +952,39,Layer cake,An interesting design in a high-quality garment. fits true to size on me and is great for layering. very soft knit with the drapey attachment and a collar you can adjust to look the way you want. i feel lucky that i got this on sale but i would've gladly paid full price since this is a three season piece.,5,1,0,General Petite,Tops,Sweaters +1066,57,Great quality but...,"I was so excited to receive these jeans. typically, wide leg jeans are a no brainer for me--super flattering and in chambray, i thought, they would be stylish and comfortable. but i found these to be verging on mom jean. something about them seems not so cool. maybe the color of the wash, the weight of the fabric? not sure, but they don't lend themselves to current looks. sadly, i will be sending them back.",4,1,1,General,Bottoms,Pants +862,65,Perfect tee!,"I bought this tee in all 3 colors, and wish there were more! fabulous quality, material and style. can dress up or down; wear with jeans, pants or skirts. wear alone or layer. don't miss out on this addition to your wardrobe!",5,1,0,General,Tops,Knits +1015,44,Chic and classy,"I'm very short and thus not usually into maxi skirts since most of them make me look frumpy, but i ordered this skirt based upon all the great reviews. this skirt is more amazing in person. at first, the material feels a bit stiff and the gold is a lot more shiny in person. but, as usual, moulinette knows how to put things together. when worn, everything comes together, the pleats and the length flow beautifully and the gold shimmers in a subtle way. the skirt runs large (i'm 34b, 26 waist, 36 h",5,1,1,General,Bottoms,Skirts +1066,45,Very nice,"Sits at waist, length is perfect for petite, quality is very good, looks very nice on me, very recommend",5,1,12,General,Bottoms,Pants +1066,60,Funky fit,I found these to fit odd. i am also use to wearing the skinny jeans so trying a wide leg was a bit weird anyway. the placement of the pockets and the way it hit my waist was awkward and not flattering. i am usually a 8/10 and the 8 fit but just did not look good.,3,0,0,General,Bottoms,Pants +1066,35,,"Cute jeans! flattering and slimming. tts. the cut of the top makes my butt look flat, but oh well, they are super comfy. they are not as short on me as they look on the model. i'm 5;9""",5,1,0,General,Bottoms,Pants +1047,46,Stunning!,"Love it! the pants is absolutely beautiful, rich material, it's not your cheap jogger! +i am really considering buying a second pair just in case i used my a little to much. +fits perfect, i am 5'4"" 114lbs and purchase the regular small.",5,1,0,General,Bottoms,Pants +1094,27,"Pretty, but already piling","I loved this dress and it fit great on me: 5'7, 115 lbs, wore an xs. it was a little tighter than i wish, but the s would have been too loose. unfortunately, when i received the dress the arms were already pilling. it is made of a mix of polyester, and while it's machine washable (yay), i can imagine this dress would be pilling very easily, and i wish the fabric was a higher quality for the price, so i returned it.",3,0,0,General,Dresses,Dresses +936,30,,This coat is gorgeous but it runs huge! i am typically a s so that is the size i purchased and it was swimming on me. i sadly had to return for an xs so fingers crossed it fits. the coral color is gorgeous and looks nice with my olive skin. very unique coat and as long as the xs fits i will be one happy lady.,4,1,0,General,Tops,Sweaters +1033,20,Great jeans,Purchased these jeans in a 27 and i am usually a 28 in skinny jeans. i got the 26's on but they were snug. these jeans are so comfy and sit higher on the waist. great jeans!,5,1,12,General Petite,Bottoms,Jeans +936,51,Gorgeous!!,"I purchased the coral version, and the color is wonderful and vibrant. it fit my daughter beautifully, and she is 5'10"". i think she will be wearing this coat often, she loves it!!! she is 23 years old and has a professional job, so she will look the part.",5,1,0,General,Tops,Sweaters +1094,35,,"I'm in love, i'm in love. + +this dress was gifted to me, because i was gawking at it so often. i love it!!! i am petite, 5'3"" 118 pounds and i could do either the small or extra small. the small was a little more comfortable, because the extra small was a bit tight in the arms-but i went with the extra small anyway. in both cases the neckline showed a small amount of tasteful cleavage and i felt like a model with how many people complimented me on it. many people even took the extra step in compl",5,1,6,General,Dresses,Dresses +1094,46,"Cute, but no sale",The dress arrived with a few snags and the fabric already pilling. the fabric will only get worse with wear. return. cute concept; poor fabric quality.,2,0,0,General,Dresses,Dresses +154,35,"Pretty pattern, weird texture",I love the design and pattern of this top. it runs big so an xs was roomy on me but still cute. the neck is wide. i returned it bc the material of the top isn't for me. the texture is too soft.,4,0,0,Initmates,Intimate,Sleep +1094,41,Lovely and flattering,"Very comfortable dress, with a gorgeous pattern. it comes with a self liner in navy that is very smoothing - i was worried a figure hugging sweater knit would be unflattering. cut is perfect. i'm a size 10/12 on top and 12/14 on bottom, and the m was the best fit. the neckline is a deep scoop so if you are not busty it may come down too far for comfort.",5,1,10,General,Dresses,Dresses +1094,39,Not flattering on,"I was so excited when this dress went on sale. it is very soft and the print is so distinctive. it is super comfy but not slimming or flattering at all. i am a curvy girl, wear a medium 8/10 and this made me look so wide! the skirt is quit full, a small would have fit but the top was tight. so disappointing.",3,0,0,General,Dresses,Dresses +154,40,,This top is stunning. the colors are vivid and it is extremely cozy and soft. however it seems delicate and would need to only be worn once in a while. it is not an everyday top. the material has a cotton candy like appearance. it really is unique and one of a kind.,4,1,0,Initmates,Intimate,Sleep +1140,27,Awesome skirt,"I love this skirt. i was happy with the quality of the fabric and style. i originally ordered a small, but returned and exchanged for a medium, which fits great. (i typically wear a size 6-8 in pants). i look forward to wearing this skirt to work this fall.",5,1,0,General Petite,Trend,Trend +154,40,Shorter than expected,"After reading the reviews i placed an order because it was the only top that caught my eye on the entire price downs. lately all my usual l/10 sizes from retailer turn out huge so i ordered a size smaller from what i usually wear. all would have been ok if the top wasn't so darn short. for reference i'm 6 ft tall, 160 lb. it's weird that this top looks completely the opposite of the model on the photo, from a loose looking fit with longer sleeves looking like a stylized sweatshirt that is not what",2,0,4,Initmates,Intimate,Sleep +936,36,Little green riding hood,"Was looking for a replacement coat and saw this lovely. tried on large but was more roomy than needed, even for a coat. tried petite version but found it too short for my taste. decided on medium in green and cannot complain. comfy & stylish. more car coat than main winter coat. have been wearing it daily over light layers so far in our mildish nw winter.",4,1,0,General,Tops,Sweaters +1094,35,Great dress for all occasions,"Another great dress by retailer. i've worn it with tall boots with heels, riding boots and booties...all look really good. i've also added a cream/beige cardigan and even a fuzzy/furry vest. very versatile. the only few things that i would have liked even more is that design of the dress be actual stitching and not just a flat print and also the material does shrink a tat when you wash it. it's a staple and keeper.",4,1,0,General,Dresses,Dresses +158,25,Love these for fall!,"These are both adorable and practical?they're versatile enough to dress up or down, and they are just warm enough for fall temperatures. these will definitely be my go-to tights this season.",5,1,1,Initmates,Intimate,Legwear +1033,37,Luv! so comfy,Luv these jeans! they felt so comfy the first time i put them on. it's like butter! i'm a 26 but went down a size and wear a belt. they said they r high rise but i can't see how - but no complaints as i can breathe in them :),4,1,2,General Petite,Bottoms,Jeans +154,29,Soft and unique but short sleeves,"Love this! easy to dress up and down, has a great length on the torso but the sleeves are about 2-3 inches from my wrist bone, i see why the model has them pushed/rolled up- which is how i wear the shirt now too. but then it's hard to layer under a coat.",4,1,1,Initmates,Intimate,Sleep +1094,44,,This is an absolutely gorgeous dress that stands out everywhere i go. it runs true to size and has a slimming effect because of the detail running down the sides.,5,1,0,General,Dresses,Dresses +936,31,Shapeless,"5'1'' 43-31-43. i really wanted to love this coat: the material is nice, the green color is dark and rich, it has a hood. however, the cut is bad for me (and probably a lot of other people). the shoulders were cut too wide and impeded movement, and the bust and hips were cut too tight, overall it was just boxy. i have another boiled wool coat that i bought at retailer about 7 years ago and though it's cut oversize like this one, it has a much fuller sweep, so the proportions still seem right. also",3,0,1,General,Tops,Sweaters +1094,54,Divine and comfortable,"First, i've been in love with this dress for months. when it went on sale i absolutely had to have it! i'm 5'4"" and 150 pounds and typically wear large stuff from retailer but after reading other reviews i decided to get the medium. it's more generous than i expected and wonder if i could've even gone with a small. i might try a belt. either way i'm very very happy with the dress. the sleeves are not too long - and i didn't get the petite because i wanted the length in the skirt. the lining makes",5,1,0,General,Dresses,Dresses +936,31,Must try on,"The sweater coat is a must try on! it's a great fall to winter coat, that you can leave on all day if you need. i bought the dark green, which is very dark yet gorgeous and have the beautiful coral saved in my cart as well. i am 5'5"", 135lbs, 34c, ordered the size small and have plenty of room (did not want it tight and wanted to be able to wear over thick layers).",5,1,11,General,Tops,Sweaters +936,82,,"Just purchased this coral coat today. the color is beautiful. the quality is excellent and the coat itself is lightweight,great for travel. great purchase and would recommend buying. going to new york and can't wait to wear it . love, love this coat",5,1,0,General,Tops,Sweaters +1154,39,"Pretty color, nice fit, fun t-back","I guess this is a true to size, i am usually a 30dd and ordered 32d, fits great. the back is really pretty, so even though it is a tiny bit looser, i decided to keep it...",5,1,0,Initmates,Intimate,Intimates +1022,39,Loose waist,"I tried these on as a return at my store and sadly, they fit great everywhere ecept at the waist. i had almost 2 inches gaping at the waist... my usual size. the rest of the pant was absolutely awesome though. for reference, i tried n a 25 and am 115 lbs and short... bummer htey don't come in petite or 24...",4,1,1,General,Bottoms,Jeans +949,28,Want go get another in a diff color,"Saw this in store in coral color and new i had to try. love. it's the perfect, cozy cute sweater, color is beautiful and fit is great. i am 5 5"" 135 lbs and i tried both the small and extra small. i went with the xs for a more flattering fit. i love it.",5,1,0,General,Tops,Sweaters +154,38,Soft but boxy,"I love the feel and design of this pullover. it is extremely soft and comfy to wear. however, i did find that it runs slightly large, is a bit boxy and the sleeves are a bit lengthy. probably not the best for a petite frame. i am trying to decide if i should keep it though simply for the softness and ease of wearing that it provides.",4,1,0,Initmates,Intimate,Sleep +1033,37,Disappointing fit!,"I originally got these in a 29 petite and thought they fit great right out of the bag (i'm usually a 6/8).. and within an hour of wearing them (to retailer, actually), the knees had gotten so baggy that they looked absolutely ridiculous; i've never had jeans do this. the salesperson at retailer agreed that they seemed very odd. i exchanged for a 28p at her suggestion, and i just hate them. i'd say the smaller size seems every so slightly small, but nothing major - but the waist actually folds over a",2,0,0,General Petite,Bottoms,Jeans +154,41,Super comfy but very boxy,"I love this as a lounge-at-home top. the colors and pattern are really pretty, it's soft and warm. very comfy and cozy. but it's also boxy and thick so not a flattering cut.",4,1,0,Initmates,Intimate,Sleep +1140,36,,"This skirt is not what i was expecting at all. for starters it runs large, i expected it to sit at the natural waist and it is definitely made to do so, but it was a good two inches too big and therefore wouldn't lay flat and gaped at the front. no bueno. my biggest gripe, though, is that the color looks nothing like it does in the picture. they have it paired with an ivory top and the two look like they match so well but do not be fooled, the background color of this skirt is not even close to",3,0,3,General Petite,Trend,Trend +936,55,,"I really did not need another coat at all, but i couldn't resist. got it in green - it's dark and woodsy,something robin hood and his merry men could wear in the forest to look and feel their most stylish. the structure is just right - this coat is soft, cozy and fluid, but also tailored enough to wear in a business casual environment... equally well-suited to wear on winter eve dog walks, to a football game, or at the coffee shop for a latte at an outside table. works with most of my wardrobe -",5,1,5,General,Tops,Sweaters +1047,43,The fabric is heavy,"I wanted to love these pants, but they were larger than i expected and the fabric is very heavy. almost like a thick sweater.",3,0,0,General,Bottoms,Pants +936,32,,"It pills a little under the arms and picks up lint, but it's totally worth it. this is a fabulous sweater coat. i receive compliments on it wherever i go. so cozy, warm & delicious. not too hot to wear indoors either. it's breathable. love it. bought in green during black friday sale. highly recommend.",5,1,0,General,Tops,Sweaters +868,55,,"Omg - wish it came in more colors,,",5,1,2,General,Tops,Knits +1094,54,Beautiful fit,"This dress has a beautiful fit; eyed it for awhile--snatched it up at the dress sale! only drawback was the edging around the neck; on some, the cream-patterned fabric was used and it was distracting. hunted around at stores, but ended up getting lucky with online purchase.",5,1,0,General,Dresses,Dresses +936,58,,Absolutely beautiful. as soon as i saw the color i had to have it. looks great. i am 5 ft 2 in the color is beautiful. excellently made. very comfy. hood is not bulky,5,1,0,General,Tops,Sweaters +1094,67,,Very cheap looking material. looks cheap to cost $158.,1,0,1,General,Dresses,Dresses +1033,47,Finally jeans for curves!,I've been a fan of the pilcro chinos for years but the jeans have not been the right fit for me - usually wind up too big in the waist to accommodate the hips. well the em is aptly named as they are made to fit a girl! ! i usually wear a 29 and the 29 fit comfortably and i could probably even go down a size. thank you retailer - please make more in this style!,5,1,1,General Petite,Bottoms,Jeans +936,31,,,5,1,0,General,Tops,Sweaters +1094,36,A winner!,"What a well-designed dress! the cut is a slight a-line without adding bulk and the pattern is very slimming. the lining makes this a pretty good option for cooler weather. the neck is pretty wide, as others have noted, but i find that a heavy cream colored scarf is a pretty good accent. it does run a little large. i'm 5'5""/130lbs and went with the xsp.",5,1,6,General,Dresses,Dresses +154,48,Cozy comfy beautiful top,I was initially attracted to the colors,5,1,1,Initmates,Intimate,Sleep +936,21,Warm and cozy,"This coat is a perfect fall to winter transition coat. it is surprisingly warm in 50 degree weather, so i'm sure it will be warm enough in 30-40 degree weather with some added layers. the only thing to note is that it is unlined and the material is soft so it may be prone to pilling. can be worn casually, to work, and dressed up.",4,1,3,General,Tops,Sweaters +1094,29,Great dress!,"I tried this dress on in the store and ended up ordering it online during the dress sale. it is extremely flattering and really accentuates the waist. it is very comfortable, and made of a nice, soft fabric. i am a 34a and it just barely reveals a tiny bit of cleavage so i don't find the neckline too low. i plan to wear it with tights and booties. i am 5' 4"" and the regular xs comes to a bit below my knees. going to enjoy wearing this lovely dress!",5,1,0,General,Dresses,Dresses +154,50,Love this sweater!,This is way cuter in person than on model. it is a super soft and fluffy sweater. the colors are so pretty and feminine. i received it as a christmas gift and have already worn it twice. it's perfect with skinny jeans and ugg boots. i vary between xs and small in retailer sweaters. this is a bit boxy so i sized down with the xs and it fits perfect!,5,1,0,Initmates,Intimate,Sleep +1094,36,Washed out looking,"The colors in this dress are much less vibrant in person. the scoop of the neckline is very wide and deep. i know others have posted that this is a great dress for work, but not in my workplace.",3,0,0,General,Dresses,Dresses +936,41,Classic,"I adore this hooded boiled wool sweatercoat in rich, deep green. quality is great aside from the buttons being sawn on very loosely. it's a great outer layer in the warm northern california fall/winter. i'm wearing it today with a short sleeved boiled wool dress in burgundy for pre-christmas eve cocktails and feeling classy, festive, cozy, and warm.",5,1,0,General,Tops,Sweaters +1094,41,Soft and flattering,"Every year i'm excited when the weather gets cool enough for sweater dresses. i love this one, with the longer length, slimming fit and pattern placement, and cozy soft fabric. delightful, inspires reveries of castles and legends (yes i looked up what ""eira"" stands for and went with it). highly recommended. fit is generously tts.",5,1,1,General,Dresses,Dresses +936,34,"Soft, flattering, warm and versatile!","I adore this sweater coat! i first bought the green color in my normal size online on a whim mostly due to the positive reviews. i was not disappointed at all! this sweater coat is soft boiled wool.. the green color is a deep forest that looks incredible with black, grays and berry colors. + +the fit appears to be magical. it manages to be both roomy and figure flattering, which is tricky with my figure (hourglass). i tend to need a defined waist, but somehow this coat manages to be very slimming",5,1,2,General,Tops,Sweaters +1094,41,My holiday dress,"This sweater dress is lovely, quirky and comfortable. because i have broader shoulders, the neckline was perfect on me, although i probably will end up wearing a scarf to keep my neck warm! the dress skims in a very flattering way. at first i was dissapointed it wasn't more formfitting, but it drapes very nicely. (i usually wear a size four in dresses and chose the small in this dress which was best i think.) it has a built in slip that is a bit flimsy, so i will probably wear a long silk one th",5,1,9,General,Dresses,Dresses +878,33,,Cute and comfortable! i loved the colors and how soft the shirt is!,5,1,1,General,Tops,Knits +1145,66,In love,So different than anything in my closet. it's wide with a beautiful drape. fabric is soft but substantial. it has the cutest coral color lining the placket and inside of the lower sleeves. i sized down to a medium and could have gone to a small but i love the length and drape which might not translate in fit in the smaller size. so cute on.,5,1,3,General,Trend,Trend +1033,45,Close but not quite right,"I really like these jeans, but order a size down. i'm typically a 14 and these were just too big. they stretch as it is and although they should have a baggier fit, they are just too baggie.",4,1,0,General Petite,Bottoms,Jeans +936,31,Amazing!,"This jacket is worth every penny! it is light enough to wear when like 55/60 out or good when it is in the 40s with a sweater underneath. the fit and design of the coat is amazing! i love the full collar look - that's my favorite detail of the jacket. loved the green so much, i bought the coral too! i normally wear a 12/14 in clothes and the large was perfect!",5,1,4,General,Tops,Sweaters +936,68,Versatile,"I ordered this coat in the ""pink"" color. actually, it is a coal color (papaya) and will be wonderful with gray, black, khaki, and great with animal print accessories. the fit is just as it looks online, no surprises. this coat is attractive buttoned or unbuttoned. the collar is just as attractive buttoned as unbuttoned. the boiled wool is light weight and has some stretch to it. (much softer than the boiled wool geiger jackets, for anyone who remembers them) + +one concern: since the wool is light",5,1,4,General,Tops,Sweaters +936,65,"Sweater, not a coat.. but amazing","Here's the thing: this is a sweatercoat. it's not a coat. it's not something i'll be able to wear independently by the end of november, though i'm enjoying doing so now. it's boiled wool, and not lined, and though it's cozy and warm enough for a morning walk to the train in the high 40s, its role is going to end up being a mid layer. i'm also enjoying wearing it over both dresses and pants at work, serving as a kind of cardigan/blazer combination. +i purchased the pink, which i saw online first a",5,1,11,General,Tops,Sweaters +1033,51,,"Best jeans ever! it's so hard to find a good petite jean. you shop and shiop and then pay $30 more to get them altered. the fit and length on these are perfect. love, love, love!!!",5,1,0,General Petite,Bottoms,Jeans +878,69,,"I really like the sundry brand. however. this is thin and to me out of character for an retailer tee. it look adorable in picture. however the coloring is way off. the navy is almost black it's so dark and the kaki stripe is a green. it's nothing like i had hoped it would be. fabric in very thin and more like a pajama top. so disappointed. it will go back. i do not make it a habit to bash a product. however with tax, shipping and 83.00 price tag. 103.11 is absolutely terrible.",3,0,15,General Petite,Tops,Knits +1094,48,Comfortable but not exciting,"This is a comfortable sweater dress, and the quality of the material seems good. the solid blue strip down the front makes it look very bland. i think it would need some dressing up with a necklace or scarf. i decided to pass.",3,0,0,General,Dresses,Dresses +936,41,,"I ordered this in the orange color from online. they were sold out of petite so i ordered medium (regular). i liked it, but just not flattering. i am 5'2"" and the coat was too big. sleeves were past my hands. i think because i'm ""curvy"" the straight cut of coat would not have looked good on me in a size small. it was a nice coat, just not for me.",3,0,0,General,Tops,Sweaters +1047,70,,"Received these as a christmas gift from my daughter. just wonderful - warm and cozy and cute. size m is just a tad baggy; i'm sure i could have worn small, but no matter. i wear these often and love them! such a treat!",5,1,3,General,Bottoms,Pants +936,37,Gorgeous!!!,"Every year around this time, our beloved retailer comes out with a wool sweater coat. i've seen every style over the last five years and this year they have outdone themselves!!! this coat is a dream. not too thin and not too thick...it's the perfect layering piece. the fabric has perfect stretch in it. the colors are lovely (i ended up with the cream color, but i loved the green too!!) in many sweater coats i prefer an xl, but because of the stretch the l was just perfect. i'm 5'8 and it hits wel",5,1,8,General,Tops,Sweaters +936,36,Gorgeous,"I tried on this sweater in the store and immediately ordered my size. i got the petite small in natural delivered to my door several days later and am extremely pleased. the fit is roomy enough to layer, but not too large or boxy. the wool is fluffy and luxurious and has terrific appeal. i get compliments every time i wear it...""classic,"" ""fancy,"" ""jackie o."" are all terms i heard used to describe my favorite new sweater. the coat is made from a medium weight wool and is probably not meant for e",5,1,1,General,Tops,Sweaters +854,29,So soft!,Super soft and comfortable. runs a little large. very cozy.,5,1,0,General Petite,Tops,Knits +936,34,Love this lightweight coat!,Wear the collar down & it favors grace kelly. pull it up and it's an oversized hood. this lightweight cozy piece combines everything i love about a sweater & a coat in one.,5,1,2,General,Tops,Sweaters +154,48,Soft & warm,Warn and super soft. love it !,5,1,0,Initmates,Intimate,Sleep +1033,63,Love at first fit,"Love the high waist, prewashed softness, and relaxed fit. i normally wear a 27 in pilcro but sized down to a 26. for the first time in ages i have a pair of jeans that won's slide down because of the high waistline. i would never tuck anything in so it doesn't matter that it's high waisted but i don't have to worry about them sliding down over my muffin top. worth every penny.",5,1,10,General Petite,Bottoms,Jeans +1033,49,Nice quality,"Nice jeans, but had to return. too tight in hips/thighs and big in waist.",4,1,0,General Petite,Bottoms,Jeans +936,35,Too much for this sweater,"Im 5'1"" and about 110lbs. ordered the small because i do have some curves- it was huge- more like a large and didnt have much structure at all. the wool was very soft and stretchy. and like others have said- kinda orange- not true coral color. it fit me like a throw blanket- its going back for sure. might purchase again if the petite xs is back in stock and on sale- this should def be under $100.",3,0,0,General,Tops,Sweaters +1094,30,,,5,1,0,General,Dresses,Dresses +936,35,Super comfortable but big,"I am 5'8 154 pounds and ordered a medium. the coat is a bit bigger than expected and should have gone down a size. i'm keeping this size however because it is incredibly comfortable, roomy and perfect for mild winters. the wool does keep you warm in 50 degree weather.",4,1,0,General,Tops,Sweaters +936,83,In love,"I saw this and tried to wait for it to go on sale, but it sold so fast, i wanted the black and i check everyday until they had my size, i love this coat main because of the wait it goes around the neck since i am not a scarf person, this is very cute, im glad i got it, even at the full price.",5,1,0,General,Tops,Sweaters +1047,67,Love. love. love,"These joggers are gorgeous--you can even dress them up! the quality and softness is amazing and very expensive looking. the fit is perfect not to mention the fact that they are very flattering. +really, i knew the minute i saw them, i would love them. but, i do have to say that the lovely model +wearing them ---the model with the wine colored shirt and the awesome red bag (i bought that too!!!)and that big smile sold me!. many thanks to retailer--personal stylists carolyn and blair. always so helpfu",5,1,4,General,Bottoms,Pants +1094,39,Warm,"I love sweater knit dresses and this the first one i've owned with a flare style that works. pattern placement is gorgeously done and is very slimming in a non-obvious way. i think the fabric is soft and warm. i wish the scoop neckline was a tad bit higher from a modesty standpoint. you may want to size down if you're not busty. i am 5'3"" and m petite was the perfect length on me. shout out to the reno distribution center for getting this amazing dress to me in 1.5 days?!?!?!!!",5,1,2,General,Dresses,Dresses +936,39,Owned in 3 sizes 3 colors all great,"I have this wonderful sweater coat in three sizes (s,sp,m) in the coral, green",5,1,0,General,Tops,Sweaters +936,71,,"Oh my goodness! i just received this coat tonight. i love it! it is beautiful and stylish. i got the green which is amazing. i'm 5'2"" - weigh 115. ordered both s and xs. i'm keeping the s - more room in case a heavier sweater. get this! it's a classic! you will smile!",5,1,3,General,Tops,Sweaters +1047,34,Strange and wonderful,"I wasn't sure what to expect with these pants. i couldn't figure out from the pictures what the material would actually be like. is it jersey? is it french terry? is it more traditional sweatshirt-type material? nope, turns out, they're like wearing pants made out of a fuzzy, flecked sweater. or like the thickest, loosest sweater-knit tights ever. surprise! they are the strangest pants i've ever owned, for sure, but i actually really like them. they're super comfortable and cozy warm. slightly i",5,1,0,General,Bottoms,Pants +1094,37,Bautiful lines,"This dress hung so nicely on my figure (small up top, bigger in the hips) that i couldn't pass it up. the lines are more flattering in person than in the photos. it might run a little small...i'm normally an extra small, but it was a little snug in the arms. however, the small was too big, so i would suggest sticking with your usual size. the saleslady said would stretch a little. i would have loved to try a petite, but the store didn't carry petite sizes. it will be my go-to holiday dress.",5,1,2,General,Dresses,Dresses +936,59,Best to try on in store,"I coveted this item since i first saw it on instagram. i finally bought it in coral. it's a beautiful coat, the color is lovely and i like the way the hood makes a cute collar when worn down. the only problem is it looks like a bathrobe on me. i am 5'5"" and wear a size 8. i bought a medium, worried a small would not button. the sleeves are far too long. i do not want to go through the trouble of returning, so gave it to my daughter who is four inches taller. it looks cute in her.",3,1,0,General,Tops,Sweaters +936,40,Cozy cut,Love this as a lightweight coat for cool to cold days. i love the squishy soft feel of the material. it works well with sweaters. love the deep pockets which works with my iphone plus and wallet. i love how simple and practical this coat is. the hood when not used as a hood makes a nice collar for the neck and head.,5,1,0,General,Tops,Sweaters +1094,27,"Slimming, cute","I have broader shoulders and thick arms, this dress does an amazing job slimming my arms and not making me appear top heavy! +i'm 5'4 125 lbs, the xs fit perfectly",5,1,0,General,Dresses,Dresses +936,28,Beautiful design but not great quality.,"I'll start with saying that it's a beautiful coat- i get tons of compliments and love the color. it runs a little big but it's meant to have to a slouchy, oversized quality to it. my only complaint is that i've had it for about 3 weeks and already one button has completely fallen off and the two inside fasteners already feel loose and very delicate. there's no extra buttons to replace the old one with and i'm worried more of the coat is going to fall apart. super bummed about the construction qu",3,1,4,General,Tops,Sweaters +1154,44,Worth every penny!,This bra is so well made and fits beautifully.,5,1,0,Initmates,Intimate,Intimates +936,47,Lovely,"Snapped this sweet puppy up at my local retailer-in the sale room!!!!! it is beyond fabulous and the coral color is divine!!!! brightens up the drearriest of days-i did size down. i am short and the small sleeves were way too long on my 5ft3in frame. it runs a bit large but if you were to wear a heavier something under it i could see getting your ""normal"" size. the quality is great and the style is just lovely. great jacket-love love love",5,1,0,General,Tops,Sweaters +936,42,Beautiful coat,Love this coat - great fall piece! i bought the green color and it looks as shown in the picture. great retailer purchase!,5,1,0,General,Tops,Sweaters +936,31,Love this!,I bought it to mainly wear as a coat but i think it'd be great with some leggings and boots as well. if you want a more structured look go a size smaller. i plan on wearing this more as outer wear so i went with large. the coral is beautiful,5,1,0,General,Tops,Sweaters +868,26,Cute tunic,"This tunic is very nice. flattering, good design, worn in winter and spring, and fits well. i have a curvy figure, and this fits well. i wish it came in more colors.it does show flaws slightly but fits well and is stretchy.",4,1,0,General,Tops,Knits +854,59,Misleading picture!,"The top i received was large, really long in length, pockets in the front along the seam, and lots of volume in the back without any princess seams to give it shape. the id #'s matched, but that's about it. returned!",1,0,1,General Petite,Tops,Knits +936,33,"Cozy, flattering, and practical","At first, i thought this sweater might be too boxy, but fastened at the waist, it's very flattering and the collar is face-framing, and the coral in particular (really more of a mango sorbet shade) is unexpected but cheery for winter. + +but the big selling point is the warmth and the giant pockets. brought a new puppy home just after christmas, and this sweater is perfect for layering for late- night trips out with an easy place to stash my phone and treats. bought it in coral and pink.",5,1,1,General,Tops,Sweaters +949,47,Great sweater!,"I love this sweater! pros: great shape (it's supposed to be a little oversized looking), great color (i have the ivory and it's beautiful), and fits well (the sweater looks boxy until you put it on and it flows in all the right places). the sweater is not soft. that is my only con. it looks so soft in the photos, but the sweater i received is not at all soft and cozy. it is warm. it will be great for the winter - great pair with leggings, skirts or just jeans.",4,1,0,General,Tops,Sweaters +1094,46,Beautiful,"I love this dress. will be wearing it for the first time tomorrow. it fits well. the neck line is a bit low on me. i think it would look best on someone with more of a chest than i have. i will be wearing a winter white infinity scarf with it (as shown on model). i am 5' 6.5"" and 120 lbs and the small is just right.",5,1,1,General,Dresses,Dresses +936,24,Best sweater jacket!,"Love this sweater jacket! super comfortable and warm. i am 5'2 and i got a xs petite. it fit perfectly both in length and in the sleeve. the green color is super rich and is perfect for the season. it's easy to wear it up and wear it down. i appreciate that it's not super bulky, which was what i was afraid of. my favorite jacket of the season so far.",5,1,2,General,Tops,Sweaters +1047,34,Not for every body type,"I am 5'6"", 130 lbs with an athletic body type and i ordered a size small. these were really baggy in the thigh/quadricep area and made my thighs look bulky. the fabric quality is very nice and i like the idea of them for curvier body types. my son commented that they looked like pajama pants and i agreed.",2,1,0,General,Bottoms,Pants +1083,53,Best for staright figures,"This is a beautiful dress but if you have any hips at all you may find it difficult to find the right size. i usually wear a 0-2 p and found that that the op was too snug on the bottom while the 2p was too loose on top. ( for reference 32-26-35). so if you are perfectly proportioned it could work for you. +also, note that this is a pencil dress....very slim fitting.....probably best suited for a cocktail party.",4,1,3,General,Dresses,Dresses +949,38,Cute sweater!,Purchased this sweater in the blue color which is a gray/blue. it runs large as the xs is still quite roomy on me in the body. although the arms are more snug. great quality.,5,1,0,General,Tops,Sweaters +949,35,,,5,1,0,General,Tops,Sweaters +949,58,So happy i ordered this!,"I bought this as a birthday gift for my daughter, and i am so glad i did. the colors are beautiful, and the material is so soft. i'm sure she's going to love it!",5,1,0,General,Tops,Sweaters +909,33,"Wanted to love it, but just kinda like it","So when i saw a sweater with a big llama face on the front of it, i knew it must be mine. i ordered it and eagerly awaited its arrival. while the llama print and color of the sweater are ah-mazing, the fit of the sweater leaves something to be desired. i'm a 36 dd and mostly a size l, so that's what i ordered. it wasn't snug, but it didn't have the cut to pull off the oversized drapey look, so the areas where it was loose looked...strange. the sleeves were really long too, but i could have rolle",3,1,6,General,Tops,Fine gauge +949,67,Lovely top,"I fell in love with this top (sweater) before it could even be ordered - was on model for pants that were available to order. in any case, i later ordered the blue motif online and the colors are even more beautiful in person. the blue also contains fibers of wine - so very pretty. the gray is a soft shade. the quality is lovely too. the only cons are that the seater is rather heavy, but should be great for colder winter months and the zipper on the back is quite conspicuous. however, that said,",5,1,14,General,Tops,Sweaters +873,32,Comfy & cute,Love the feminine styling of a classic tunic tee! i'll wear it with black leggings this fall. super cute to wear casually or dress up a bit with some jewelry and/or a scarf.,5,1,1,General,Tops,Knits +873,59,,"This top is full of amazing details. the photos really don't do it justice. it is very flowy and does run large but is so pretty and soft and in beautiful shades of blue. i bought a small and it is fairly long in back on my 5'5"" frame but because of the detailing...it just works.",5,1,1,General,Tops,Knits +909,82,Love this sweater,"Unlike the first three reviews, i loved this sweater. the colors were beautiful and i paired it with green cords. i did not find the sweater to be itchy but very comfortable. fits trus to size.",5,1,0,General,Tops,Fine gauge +1083,46,Classically byron lars,"Great fit even for busty women. ordered an 8 because i usually need the room in the chest area on dresses.(36d-dd) fit nicely without being tight. might have been able to size down but i didn't want to risk being too tight. flattering especially on curves. nice for contemporary office or special occasion. if you like his designs, you won't be disappointed!",5,1,5,General Petite,Dresses,Dresses +873,34,Great blouse,"Love this top, purchased it in the coral color now i'm definitely wanting it in the blue since it is such a great blouse for transitioning into fall. the weight of the top it good since i live in south texas so definitely needing lightweight long sleeves for our weather. i'm sure when the time comes adding a long cardigan or blazer over it as needed for the cooler weather it will look great. fit true to size.",5,1,0,General,Tops,Knits +1172,25,,"Absolutely love this suit. the bottoms are very comfortable and covers everything id like it to. it does not ride up at all, which almost never happens with swim suits. i'm going to order this in a different color next season. i paired the bottoms with the peplum top and received many compliments.",5,1,0,Initmates,Intimate,Swim +1083,35,Awesome dress,I just love this dress. took me ordering a number of sizes- petite and regular to find the best fit. i might still have the top altered. i received a lot of compliements. work it with some black leather wedges for daytime/work.,5,1,0,General Petite,Dresses,Dresses +949,42,Beautiful!,"I got the purple color and absolutely love it. i am 5'2"" but decided against the petite size and i wanted it to be a bit longer. i also went with the xxs as the xs was a bit too loose on the arm. it was definitely a splurge to buy the sweater but it looked so lovely!",5,1,0,General,Tops,Sweaters +949,35,Cute sweater!,Love the color! very soft. unique look. can't wait to wear it this fall,5,1,0,General,Tops,Sweaters +909,41,Nice,"I got the rooster version and the colors are simply gorgeous. i'm not so much into wearing a farm animal image, but the colors are just too striking to pass this up. the sweater is tts, but with a slightly baggy fit. i did not find it scratchy.",4,1,0,General,Tops,Fine gauge +864,53,,"Really cute and very comfortable. material is thin and sheer. i wear tanks under things anyway, but especially in pink, you would need to. but love the style.",4,1,0,General,Tops,Knits +949,30,"Cotton, cotton, love cotton!","I love this sweater. i am 5' 1"" and tried on the petite in the store but ended up going with the regular size as i preferred the length. the overall fit was the same. i bought the blue which to me is the colour shown here, more a grey and purplish colour, beautiful for fall and much nicer than a straight blue. i have worn it to work several times and always get a compliment. this sweater is nice for all ages, it is soft, comfortable and versatile. it might just be my go to fall sweater.",5,1,0,General,Tops,Sweaters +949,43,,,2,0,0,General,Tops,Sweaters +873,50,Large and very wide!,"I ordered this in a small petite and medium petite , and i am a huge fan of a*k. i put tried on the sp. while it fit, it was very long, even for a petite. what i hated about it was that the piping on the top made me look very wide. even a long necklace wouldn't help deter the look. on a positive side, the blue was a very nice, cool color. i am usually a small to medium in a*k (6-8 in tops) and the small fit well in the arms/bodice, just too much fabric for me. returning!",2,0,13,General,Tops,Knits +873,23,Flowy,I have the blue color of this top and i love the color variation throughout. it looks very unique and it is going to be a great piece for late summer/early fall. the pleated look on the upper chest is very flattering and adds texture to the top. i am pleased with my purchase!,5,1,1,General,Tops,Knits +949,52,Love this sweater,This sweater is perfect for transitioning into fall as it is not too heavy. it's flattering and looks great with jeans.,5,1,0,General,Tops,Sweaters +949,38,"Interesting sweater, good quality","I'm an xl but ended up buying this in a size large. i am very pleased with the interesting cable pattern that runs down the front. i also really like that this is cotton, and even though it is heavy and substantial, the thread gauge is a fine weight. while this says i can hand wash the sweater, i'm reluctant to because i'm worried that hand washing will end up stretching the sweater out of shape. i don't care for the heavy gold zipper running down from the neck, but my hair hides that. overall,",5,1,6,General,Tops,Sweaters +949,66,Nice cotton sweater,"Bought this is the blue, which is actually a very grey-blue. i love cotton sweaters and they are not easy to find. this one has lovely colors and unusual design, but is a bit too full. that said, i am keeping it for the cotton/linen factor, alone.",4,1,0,General,Tops,Sweaters +873,69,Quality & cut,"My perspective is as a sewer so i'm more picky perhaps. this top is poorly made. the fabric pattern is crooked or not consistent in each piece. sewers do this to save $ - squeezing the pieces on the fabric. it looks sloppy. the cut is very full; the bottom edge measures 104"" around. for my figure, curvey, at 5'6"" and 150lbs, this top is not flattering it looks maternity. perhaps best on a slim figure and with leggings.",1,0,2,General,Tops,Knits +949,40,Not as great as the photos,"I love mixed media clothing, and this is no exception. i fell in love with this right away, and after being torn between the two colors, opted for the rose. it's very gorgeous in person - midweight and very soft. however, as soon as i put it on, i noticed the knit sides truly flare out; they don't lay nicely like on the model. it could be because of my large chest (36dddd), but everything below the chest seems to widen me. it might work better on someone with a straighter build or smaller chest.",4,1,2,General,Tops,Sweaters +873,48,Beautiful casual top,"I've been looking for some new, casual tops and ordered this one for the sky blue color. i'm a size 6 and the small fits great. i don't find the blowzy style overwhelming. i am small boned but i'm 5'8"", not a petite. i like it with leggings and skinny jeans ...a nice proportion. however, i can see how this cut may be too much on someone with a smaller frame. i really like it, however i see two drawbacks: the material is a bit thin for fall and it wrinkles very easily (not good for travel). this",3,1,0,General,Tops,Knits +864,40,Cute tee,"I got the pink version to layer with spring clothes. i always wear a medium, but sized down to a small based on the other review. the seams are very flattering. the material is very soft. on sale, the price is reasonable.",5,1,0,General,Tops,Knits +864,39,Great tee but kind of short,"I love this tee but there is a lot of swing/ fabric so it can tend to make you look wide. also, i have a short torso to begin with but this tee is on the short side. i'm still undecided on whether i'm going to keep it b/c it's rayon/ poly and it's hand wash only. and i'm worried that one wash will make it shrink in length and it's already short. rayon knits have a tendency to shrink in length when washed so beware!",4,1,0,General,Tops,Knits +873,71,Pretty but not for me,"This top reminded me of a maternity top. cute, but better suited for someone smaller chested.",3,0,0,General,Tops,Knits +873,42,Love the color!,I love this shirt so much i am ordering the coral too! the weight of the material makes it hang nicely. there is a lot of material but it lends itself to the flowy style. i got many compliments of this top!,5,1,3,General,Tops,Knits +949,57,Finally a flattering sweater!,"This sweater is perfect! finally a sweater that doesn't make me look like a huge box! + +i bought the blue & it has other colors running through it so i'll be able to wear it with chinos & jeans. very pretty, flattering & i think i'm going to be wearing this a lot.",5,1,6,General,Tops,Sweaters +1083,54,"Great dress, not for me","I love byron lars. very taken with his fabrics and design concepts and i have ordered several of his dresses but i believe i need to surrender to the fact that they do not work for my body type. the dress is gorgeous in person: all the fabrics are great, the dress is fully lined and lots of nice finishing touches. it is a unique and very striking dress; this one i really wanted. however, it is designed for a woman who is proportionally longer, leaner with a larger bust size than i have. i ordere",4,1,0,General Petite,Dresses,Dresses +909,46,Farm animal pullover,"Wanted to love this sweater for its beautiful colors and cute graphic, but the fit is uncomfortably small and it is so itchy i was yelling, ""get it off"" in the fitting room. bummer.",2,0,0,General,Tops,Fine gauge +949,23,Perfect in all respects,"True to size for petite person; bought in blue - subtle shading, looks great; paired with your blue straight leg blue ""jeans""; perfect outfit for almost all occasions.",5,1,0,General,Tops,Sweaters +949,44,"I wanted to love this sweater, but......","This is a beautiful sweater with deep rich colors. i purchased the blue motif. the problem is that the model(s) are small busted, which allows the side panels and front panel to lay nicely and swing in a flattering manner. i am 5'6'', 135 pounds and a 36d. i usually wear a small in antro tops. i purchased this online, and was excited upon it's arrival. when i tried it on, i was horrified. it looked like a babydoll maternity sweater on me. the front did not lay well (flat) at all from the chest d",2,1,1,General,Tops,Sweaters +949,45,"Upscale, unique sweater","Spotted this beauty in my local store - hanging (grrr) which made it stretch out. note that it's made of linen, cotton, and acrylic, so it's not heavy, it's weighty. anyways, it seemed to run large just due to gravity, so i ended up ordering it so it wasn't all stretched out. it's got a beautiful a-line cut - perfect for us bottom-heavy gals. love the colored thread woven throughout. worth the extra $.",5,1,1,General,Tops,Sweaters +864,22,Fun shirt!,Okay this shirt is soooo comf. it is super fun and flowy. but it runs large. get one size smaller than you would usually get! so worth the sale price!!!,5,1,4,General,Tops,Knits +864,35,,Cute and comfy shirt! tts- got my usual m (i'm a 10) and it has a generous fit but i think it's supposed to. it's actually a silver grey color.,5,1,0,General,Tops,Knits +873,52,Lovely surprise,"I would highly recommend this top. i usually wear a small petite. but returned the top for an xs petite which fit perfectly. there is a lot of fabric, but if you size down it wasn't an issue for me. i weigh 120lbs and am 5 feet tall. also, i'm busty, 34 d. which worried me with this type of top. not a problem. i will wear a blazer or leather short jacket with this. i am very picky and i was happy with the quality. the fabric is not heavy. it's a fantastic purchase!",5,1,0,General,Tops,Knits +1099,50,Petite busty girls rejoice 2,"I loved this but hesitated to order since i'm petite and busty and assumed it would be an awful mess in the chest area (too tight, gaping etc) but it is great!!! it fits perfectly! there is plenty of room in the chest and the dress is not too long! i ordered a pm and its wonderful. the dress is not see through at all. love it!!!!!",5,1,1,General Petite,Dresses,Dresses +1001,48,,Runs a little big. fabric is very soft and comfortable,4,1,1,General,Bottoms,Skirts +829,41,Cute!,"This top is really cute and i think will be a great transition piece. i'm glad i tried it on in the store as it runs very small. i typically wear a 00 or 0 and bought this in a 2. they didn't have it in stock,so i ordered it and hope it fits.",4,1,2,General Petite,Tops,Blouses +815,53,Such a beautiful victorian blouse!,"I just saw this vintage style blouse at my local store and tried it and think this blouse is amazingly beautiful! it's actually very well made and a tad heftier than i imagined from the picture. there's different strips of gorgeous lace all over including that amazing lace at the collar and bib, the arm holes are just perfect in my regular size small (34d-27-35) so it runs tts and i didn't find this overly blousy myself though that's just part of its charm. you'll need an undershirt or something",5,1,4,General Petite,Tops,Blouses +1099,57,Paisley silk maxi dress,Beautiful dress but have to return. way too big & long for me. medium is the size i wear but i think i would need an extra small.,2,0,6,General Petite,Dresses,Dresses +831,20,"Beautiful top, looks great with black/gray jeans","I love this top. the quality is excellent. the blouse is lined and falls nicely.. i like to wear it with a pair of dark gray jeans. the color is described as ""orange"", but it really has more of a bronze tone. looks very rich and exotic. it's perfect top when you want to wear jeans, but want to dress it up a bit.",5,1,1,General,Tops,Blouses +738,30,"Gorgeous, high quality, and figure flattering!","This swimsuit completely exceeded my expectations! +i'm 5'2"", 140 lbs with an athletic build, and the cut of this swimsuit is ultra slimming! with the way the top wraps it makes my torso look much longer and leaner than it actually is :) i bought the top in a small and the matching bottoms in medium. + +the material is thick, high quality, and the colors are exactly the way they appear online. +the top is reversible and the alternate side is teal and nude. i feel like i got 4 tops in one sinc",5,1,4,Initmates,Intimate,Swim +1099,42,Pretty in pink,"I'm 5'2 around 125 lbs, muscular and petite, so i ordered a petite small and it fits great. the length is perfect, i can wear with heels or dress down with flops. it's lined, which i think most dresses and skirts should be, so i was happy about that. i was pleasantly surprised with the slits up both sides, to show a little leg....sexy. it's not too low cut that you have to wear a cami and ruin the neckline, so that's plus. my only issue was the fabric didn't line up on me the same as the model,",4,1,0,General Petite,Dresses,Dresses +1094,53,This dress is divine!,"As soon as i saw this dress, i knew i had to have it. i just tried it on and it is beautiful. i feel gorgeous and glamorous! i can't wait to wear this to a special event as it truly deserves that attention. + +the silk is soft and the slip underneath is perfect. the tie in the back perfectly cinches the dress and the pleating is a wonderful detail to the look. + +i am 5'0"", 110, and i purchased the small petite. it's slightly big around the armholes and it kind of poofs / puckers out so i'm going to",5,1,11,General,Dresses,Dresses +831,26,"Cute top, but beware it shrinks!!","This top was quite voluminous when i purchased it and i sized down to an xs, however after hand washing it once in cold water it has shrunk significantly. it still fits, but something to be aware of.",3,1,4,General,Tops,Blouses +1001,39,"Runs big, great material but not as pictured","I agree with the other reviewers that this runs big. unfortunately there is nothing smaller than an xs so this is going back. i love the lyocell material, i have another skirt with this material and wanted to love this as well but it is too big and with the drawstring pulled tight to fit it doesn't look right. it is not as pictured as well. the skirt i received is a medium blue denim, not the lovely light blue as pictured, another reason why i am returning.",2,0,1,General,Bottoms,Skirts +895,47,"Beautiful, cozy sweater","I love how soft and cozy this sweater is. the addition of some cashmere in the yarn makes all the difference. the red color is beautiful also, perfect for the holidays. flattering cut in the back (it dips down to cover your bum) and the pointelle details are very pretty. fit was tts",5,1,3,General,Tops,Fine gauge +831,46,Worth thr $$$,This top is such a great investment piece. looks classy and is comfortable all at the same time. it is pricey but you will not regret buying this. goes great with light trouser denim or i have the green pilcro khakis. it will he something you will keep in your closet for a long time.,5,1,0,General,Tops,Blouses +895,33,Stunning,"I always end up walking out of an retailer store with something very different than what i thought and this was one. it drapes beautifully and the red color is rich and vibrant, cool tone not orangey. i fell in love with this one in person. it jumped at me in the store, but online i think the outfit that the model is wearing is not my style at all and does not do the item justice. if you like to cover your assets, you will love it.",5,1,2,General,Tops,Fine gauge +987,58,Zipper is short,"This is a very comfortable, good-looking skirt. fits as shown. the zipper however is rather short, and it takes a bit of squirming to get it over the hips. once on, it's great. it is not made in the usa, as stated. it is clearly marked ""made in mexico"" from ""globally sourced"" materials (i.e. not from the us).",4,1,4,General,Bottoms,Skirts +1099,49,Amazing,"I live in south florida so i'm always looking for sundresses that will be flattering (but not too clingy or hot), and that i can take from day to evening with accessories. when i pulled this out of the box and walked around in it, it met all my criteria, and as an added bonus, my husband said, ""wow! you look great! where'd you get that dress?"" i'm shocked because as an earlier reviewer said, this dress doesn't seem like much - it's not even lined. but it's comfy, flattering (in all the right pla",5,1,6,General Petite,Dresses,Dresses +1099,52,Lovely!,"I agree, this dress runs long, but since i love high heels, it falls just right for me. it does seem quite roomy for a medium, which is a pleasant surprise. the fabric, drape and quality are contemporary but i know i'll be wearing this beyond this year for sure.",4,1,0,General Petite,Dresses,Dresses +868,55,Pretty and feminine,Pretty pink top is great for layering iand alone in the summer and spring,4,1,4,General,Tops,Knits +831,27,My absolute favorite top,"This shirt fits very true to size, with very soft and comfortable material that hangs just right. wears well and is versatile for many occasions. please come out with more colors so i can purchase them as well!",5,1,7,General,Tops,Blouses +829,46,Not perfect but cute shirt!!,"I bought this in both the taupe and ivory. the beading on the neck line, the tie at the neck and the pleats make this a fun shirt. i bought a size 2 which is normally what i wear at retailer, so i would say it is true to size. i really like the length of the top. it hits mid-hip on me. it is a tad shorter on the sides than i would like but it is still long enough to cover my waistline. i also think the arms are too long so there is kind of a balloon look at my wrists because of it. i bought it to",4,1,0,General Petite,Tops,Blouses +1099,41,Gorgeous!!!,"I saw this dress on line and knew i wanted it for the spring/summer season. i ordered it almost immediately and i am so glad i did. the photo on the website doesn't do it justice, there are a lot of pretty pastel colors in the paisley pattern that you just can't see on the computer screen. the wrap styling is a very flattering cut for most figures especially hourglass figures like mine and the dress fit's tts (for reference i am 5'9"" and a 36ddd). the silk material is very light and flowy and wi",5,1,3,General Petite,Dresses,Dresses +829,26,"Great color, not so great tailoring","I was really looking forward to receiving this blouse in the mail. the color was beautiful in person and the photo does not show the nice beading around the neck. that being said, i was so disappointed in the fit. i ordered a size 00 and the arm length was way too long yet the body of the shirt was way too cropped. cropped enough where you could see skin on the sides. made no sense! hoping to order a few more sizes to see if i can find the right fit. order up for length, down for arm length ...",2,0,9,General Petite,Tops,Blouses +829,40,Casual top,"A little shorter than expected. very billowy, so watch out for wind! +it fits well on the arms and shoulders. not too see through",4,1,0,General Petite,Tops,Blouses +868,29,I wanted to love this shirt.,"I order this shirt because it looked like a shirt you could dress up or down. when i got it the shirt was really wrinkled. therefore, i knew it would have to ironed a lot. it was quite boxy and was shorter in the front then in the back. i didn't realize that this shirt was two different fabrics. overall i think this shirt would be more flattering on a woman that was petite.",3,0,0,General,Tops,Knits +831,72,Love this blouse!,Great that it's hand washable because i hate the smell of dry cleaned garmets.,5,1,2,General,Tops,Blouses +868,56,Super cute with right body style,Top is very wide and flowy. i am petite with large chest so it hung from widest point and was not flattering. would be very cute with the right body shape.,3,1,3,General,Tops,Knits +1001,23,,I want to the store to try this skirt on. that had only one size m in stock (my size) and it was huge! i ordered an xs and it fits nicely. it's just what i needed for the warm days ahead.,4,1,1,General,Bottoms,Skirts +829,66,Maybe,"After the reviews about sizing, i ordered the size 16 (am normally size large). interestingly, the tag on the blouse says it's a 14. with all that said, the blouse is cute enough and sizing up gave me enough length (in spite of the higher sides) that i'm considering keeping it. although it's a bit big, it flows nicely and isn't oversized in that wide, crazy way. the sleeves are a bit too big but they're cuffed with a button and can be rolled. the fabric is somewhat crinkled in texture. i got the",3,1,0,General Petite,Tops,Blouses +815,31,Super cute,"I love the style and quality of this blouse. it can easily be dressed up or down. the blouse is completely see through and delicate. still, it is so romantic, feminine, distinctive and timeless.",5,1,0,General Petite,Tops,Blouses +895,48,Great piece,Comfortable and great fit and color. high quality.,5,1,1,General,Tops,Fine gauge +831,54,Shrinks,I loved this blouse when i got it and wore it before washing. it fit really well and was flattering. the only time i laundered it i hand- washed it in cold water and hung it to dry. the blouse shrunk at least a full size and in awkward places. the sleeves are now tight and way too short. the overall length shortened by at least 2 inches. the top is so tight in the bust now that the buttons popped open. i'm very disappointed and surprised.i will be returning it as it is unwearable as is.,1,0,0,General,Tops,Blouses +815,63,,"This bunches up too much, and the fabric is even more see through than i expected (so even with a tank top under it, it's not a good look for work). even unbuttoned at the top, i could barely get this over my head! this one is going back.",2,0,0,General Petite,Tops,Blouses +1099,32,Cute!!!,"I haven't worn a halter dress in ages and saw this one and wanted to get it, hoping that it'll fit me. + +i love the swing skirt and the halter. this dress can be easily dressed up or down depending on your mood. there is a side zipper. + +i got s p and it hits me exactly like the dress on the model. it is unlined but with the color of the dress, i don't mind it.",5,1,8,General Petite,Dresses,Dresses +1099,77,"Love, love, love this dress!","I agree with the other review that the dress runs big and long, but i love it! it's very flattering and i have super high wedges that work great with it. i don't think it runs ""super big"" but it's slightly big. definitely size down if small busted. i wore it out and got a ton of compliments. it's classy, different and hot!",4,1,0,General Petite,Dresses,Dresses +829,40,"Elegant, timeless and versatile","Bought this blouse to wear with high wasted jeans and pants. it lays beautifully and can be dressed up or down. it's somewhat sheer, but i don't plan on wearing a cami under it. perfect for work or going out.",5,1,0,General Petite,Tops,Blouses +831,28,,"I definitely recommend this shirt. it's lights and airy, something you can wear everyday.",5,1,1,General,Tops,Blouses +815,39,Ig brought me here,"Love the way this top layers under my jackets and sweaters! so romantic and pretty. i am not experiencing the over pouf at the waist that a previous reviewer complained about. the fabric is slightly itchy and the top shipped to my house has misshapen shoulder bumps from the store hanger. all the beautiful styling pics done by retailer employees on ig is what made me want this blouse. whatever is going on with the model shot really really really does not represent how cute this top looks. in fact,",4,1,0,General Petite,Tops,Blouses +1076,43,Poor quality,"There is no way this is worth the price. i was deeply disappointed when it arrived. the material is thin and feels cheap. i love the design, and anna sui, but this is just so overpriced.",1,0,4,General,Dresses,Dresses +815,37,Wanted to love her,Beautiful victorian look blouse. runs large and overly blousy on me.,3,0,6,General Petite,Tops,Blouses +831,44,Cute top!,This top is really cute and true to size. i like the color and the nice details.,5,1,8,General,Tops,Blouses +815,52,Victorian in a good way,"I'm 5' 0"" and 120 pounds. this top is beautiful. it's high neck is so flattering. a nice switch it up for us gals that are older and like neck coverage sometimes. i purchased a small and it is a little longer, but since it has elastic at the waist it's no problem. i will tuck it in my jeans and skirts. the arm holes are perfect. the as far as it being a lot of blouse, i didn't find that at all. but i am busty, 34c or d depending on brand of bra. the color is ivory. omits completely sheer, no lin",5,1,7,General Petite,Tops,Blouses +831,33,Love this blouse,"Tried this blouse on in the store and fell in love with this top. i went down one size since i am a true petite. they were sold out of the petite small, but the regular x-small fit perfect. it is a little short so it's perfect for shorter people,",5,1,0,General,Tops,Blouses +877,53,One can never have enough sequins,Oh yes. another sequin top to add to my collection. it is sparkly without being glittery- if you know what i mean. can definitely dress down as it is tee shirt- like. lots of options for this one. tts. much better in person than the online pics.,4,1,0,General,Tops,Knits +1068,65,Cute pant,"Unfortunately i had to size down twice with there pants. great feel, they're soft and the grey is a soft color.",3,0,1,General,Bottoms,Pants +1020,62,Gorgeous fabric,"The fabric is so beautiful that i am tempted to buy in a large size and have re-made. the waist is tiny. the hips are wide. when it goes to half price, i may be tempted to take it to my favorite alterations lady. the fabric is that exceptionally beautiful.",3,0,4,General,Bottoms,Skirts +1068,45,Love these,"These joggers are soo cute. they fit great!! +i seriously love them!! i have worn them so often +i may have to ban myself from them for a week. +i am 5'4 and the length was perfect for a jogger pant. +i got an xs because the small looked too baggy. +the xs loosened up a little after wearing them and are perfect.",5,1,0,General,Bottoms,Pants +1020,47,Great fabric but really bad shape,"If i could sew, i'd take the fabric from this skirt and make it into a different shape (after ordering a bigger size). the fabric is just as it appears online -- totally gorgeous with almost a quilted feel to it. however, this thickness means the skirt sticks out like something judy jetson would wear. it's also too small in my go-to skirt size (and i order a lot at retailer). the waist and hips are small (making the skirt too short as well), but the bottom flares out ridiculously. i ordered two of",1,0,6,General,Bottoms,Skirts +1068,42,So much cuter in person and oh so comfy,"I bought these in the olive green, in the store and will be ordering the gray pair online. i am 5' 9"" and 145 lbs, long legs and these are beyond adorable. some people mentioned that they stretched out? i did not find this to be true. what i do know is they can be dressed up or dressed down. they are flattering and perfect for the spring/summer. i would highly recommend and would/will purchase in every color. well done retailer!! one of my most favorite purchases so far this spring.",5,1,1,General,Bottoms,Pants +691,38,Tx fan,"I love the flower patterns. they add feminine touch. this legging is well made with good quality spandex. the only cons is the color is not as deep as the picture. when you wearing it and the fabric stretched, the color looks much lighter. other than that, it's a good buy!",4,1,0,Initmates,Intimate,Lounge +831,40,"Beautiful top, but it shrank substantially!","This top is gorgeous in both detail in color. it fit great and true to size, but then i hand washed it as instructed on the label and it shrank substantially to the point that it's now too short and needs to be returned.",3,0,17,General,Tops,Blouses +1068,39,Nice enough,"I ordered these as i was curious of hte fit on my body type (shorter, thighs)... well, it was ok, but in the end, i dind't keep them as i would be better off wearing jeans on casual day, or ""real"" joggers (as in jogging material). + +cut was ok, not super flattering, but tapered pants only suit stright legs in my opinion. + +material was nice enough, din'dt notice wrikling, but i didn't wwear them, jsut tried them on. +grey color was nice.",4,1,2,General,Bottoms,Pants +1089,49,Cute dress but poor design,I loved the color and design of this dress but needed to return it because it fit so poorly. the arm holes are entirely too big -- so big that alternations couldn't fix it. maybe it's because i am petite but i think it may be a design flaw.,2,0,4,General Petite,Dresses,Dresses +1089,51,,"Got the black but the orange it very pretty too the black fabric has a sheen to it; almost like snakeskin. as other reviewers have mentioned, it does run small and the armholes are cut in a bit. overall it is a more interesting than a basic lbd.",4,1,0,General Petite,Dresses,Dresses +777,31,So sad,"The print on these leggings is so cool but they are completely see-through. i mean seriously, seriously see-through.",1,0,0,Initmates,Intimate,Lounge +860,41,Wanted to love it!,"Was so excited for this top! loved the embroidered detail and the teal green color. i got it in a medium and it was swimming on me. it also had a maternity type feel since there is a lot more material (making it look blousy) than showing on the model (they must have pinned it back in the stock photo). +sadly, it's going back.",3,0,5,General Petite,Tops,Knits +1089,52,Can't miss classic!!,I was so impressed with the style & boning on the sides for the perfect fit! it's truly a classic staple in your closet for that lbd!!,5,1,12,General Petite,Dresses,Dresses +875,64,Cute and comfortable,"I was surprised how soft and comfy the fabric is on this top. when i tried it on, i didn't want to take it off! it's a little bigger than i would like - i got a small, and am usually between xs and s. may have sized down if the top were available.but the fit and cut are flattering.",5,1,0,General,Tops,Knits +992,39,,I usually wear a size 8/10 and i needed a large in this skirt. it flows so beautifully!,5,1,0,General Petite,Bottoms,Skirts +860,53,Favorite summer top,"I love this little number. the quality is terrific, the weight is perfect, and the cut is superb. i love the way it fits and looks in the arms. i ordered my usual xxsp and it is perfect. i like that it is cool and flowy, without looking like maternity attire. i have the bright turquoise and i am going to order another. i was about to order what looks like a yellow one, but i noticed the color is labeled ""chartreuse"". can anyone tell me if this is more yellow or green in ""real life""?",5,1,1,General Petite,Tops,Knits +777,48,Happy girl!,One of 3 pair of leggings ordered and the only pair to fit properly! size l was perfect for me. they stretched nicely going on and the beautiful floral design on the legs didn't get distorted or faded looking from the stretch. wearing these makes me happy :),5,1,1,Initmates,Intimate,Lounge +777,64,Unusual and eyecatching,"These leggings are beautiful! so unusual and colorful, comfortable, and flattering. they fit true-to-size with enough stretch to move with you yet retain their shape. the fabric is a bit lighter-weight than ponte but heavy enough to be completely opaque. i would definitely recommend these beautiful leggings to anyone who doesn't mind attracting a little (envious?) attention.",5,1,1,Initmates,Intimate,Lounge +860,48,Beautiful in blue!,"I totally love this tank! the yoke detailing is so pretty! i read the other reviews...i feel it fits pretty tts, it's what i expected. i have already worn it several times since it arrived in the mail. i love it so much, i'm ordering it in the turquoise color as well. every time i have worn it, i have received compliments. i've worn it alone with shorts and/or jeans, as well as with a cardigan and dress pants for work. it's soft, comfortable and to echo what another review stated, the material s",5,1,2,General Petite,Tops,Knits +860,39,Gorgeous!,Gorgeous cobalt blue color!!! usually s/m- bought the small (because of larger armholes). so glad i snatched this one up on sale! the detail on the top is amazing.,5,1,0,General Petite,Tops,Knits +927,33,,"I like the idea of the pullover. the quality of is nice; the material is very soft and feels pleasant to the touch. + +i expected this sweater to be more flattering though. it is true to size, but the length is strange. it seems a bit too long, yet is too short to look like a longer tunic. or maybe the waistline is a little low... whatever it is, it makes me look like i have short legs. + +also, the collar won't stay down, the way it is shown in the picture. but it may work better for someone wi",3,1,7,General,Tops,Sweaters +1089,68,Cute but runs small,This dress is attractive but it runs a little small. i'm a small curvy girl who usually wears a 2. this was small in the top and short waisted. i wanted to wear it to a recent event and didn't have time to return it for another size.,4,1,9,General Petite,Dresses,Dresses +777,36,Not what i thought,"These leggings were way longer and darker then appeared on model. +they also were see through or beige color when stretched across hip. +especially for the high cost, there are much better althleisure leggings on the market.",3,0,1,Initmates,Intimate,Lounge +992,62,Beautiful day to evening skirt,"A lovely skirt and i'm so glad i found it before the medium sold out! having said that, i expected the medium to run small and that i'd have to squeeze into it but having tried it on this evening it's not the case at all. i nice fit. i might even have fitted into a small, which i think is the only size remaining. the skirt is very spain inspired. very flamenco! i love it! i will say that you'd need a bit of height to wear this skirt due to the length at the back. i'm 5'6"" which is tall enough fo",4,1,0,General Petite,Bottoms,Skirts +1068,42,Stretch out a whole size,"First, the good parts: these are adorable in person and (i think) the colors are prettier in person than in the pictures. the green isn't too army green, it's a pretty nice mellow neutral that you could wear with reds, whites, blues, pinks...virtually any color. + +the tencel fabric is super soft and comfortable and the drape is nice. they do seem to run a little large, so i'd size down if you're between sizes. + +and now, sadly, the bad: these stretch out virtually an entire size after just about a",2,0,30,General,Bottoms,Pants +1068,37,Love love love!,"I adore these little joggers. i was immediately drawn to the color (army green) and the little details. i carry all my weight on bottom, so i don't often wear many retailer bottoms (i'm usually a 16). i tried the xl on just to see how they would work and i was pleasantly surprised! they are absolutely perfect. they fit a little baggy, as joggers do, and go with just about everything! mine did loosen a tad, but not like the previous reviewer. i highly recommend these! can't wait to wear these throu",5,1,10,General,Bottoms,Pants +860,51,Easy fit,Love this tank. it has an easy fit that hides my post baby belly with out looking to wide.,5,1,0,General Petite,Tops,Knits +831,38,Gorgeous top!,"I love this blouse. the lace panels are slightly sheer, but nothing inappropriate. the solid fabric is a lovely sort of heavy crepe. stunning bright cobalt blue color. i'm an xl in retailer and this top fit well in xl; ever so slightly snug at one part on the sleeve but nothing noticeable or uncomfortable. be aware, this did bleed blue when it was soaking and it did drip blue water while it was air drying on the hanger. while this blouse is still wet i would stretch out the sides and sleeves to ge",5,1,2,General,Tops,Blouses +1020,59,Shape problem,"This is a beautiful fabric and the skirt is so nice. what is wrong is the cut of the skirt. one side bells out more than the other, giving it an off center look from the front. my legs were not centered.",3,0,6,General Petite,Bottoms,Skirts +1089,56,Gorgeous - but.......,"I so wanted to love this dress! the fabric is gorgeous the styling beautiful and the construction is great - however, the armholes are cut too generously. i am 5'4"", 138 pounds and 36d. i ordered the black in a size 10. it fit me perfectly everywhere but the armholes. even with an undergarment, too much is exposed. i am sadly returning this.",3,0,4,General Petite,Dresses,Dresses +1068,63,,"Hei hei is my favorite line. i am a medium in all of the pants i have ever purchased from this brand. +i ordered these in the green and they arrived today. they fit me as if they were an xxl. i have a similar pair in rust from last summer so i assumed that they would be the same. +obviously they are going back tomorrow . i'm very disappointed, they are a nice looking jogger and the color is pretty.",2,0,0,General,Bottoms,Pants +1089,48,Just average,"First of all, the label on this dress is maeve, not nue by shani. second, i just wasn't impressed. the fabric is cool...it has a sort of embossed look to it and it's somewhat shiny, which sets it apart in a good way. but the cut is just boring. the top felt dowdy to me...overall, i was underwhelmed by this dress and returned it.",3,0,8,General Petite,Dresses,Dresses +860,32,Maternity top,"I was really wanting a nice white summer blouse to pair with patterned skirts. unfortunately, this fell short as it was huge. not only was it big, it flared at the bottom. it would be perfect if i was sporting a baby bump, but not what i am going for right now. if the tank was a bit slimmer i would have kept it as a tunic.i'm sad that i'll have to return it.",2,0,1,General Petite,Tops,Knits +993,49,Everyday casual and cute,"I wanted a casual, denim colored skirt for warmer weather without the denim weight and this skirt fit my needs perfectly. i'm 5'4, 117lbs and the xs fits me true to size, hitting about 1 1/2 inches above the knee. it's a more modest length for daytime but it definitely needs a slip underneath. the raw edge is subtle (no hanging threads) and unique. i can't speak to the lack of colorfastness but i washed it separately and will be mindful of the possibility .",5,1,0,General Petite,Bottoms,Skirts +860,62,"Unusual, cool, fun top","I love this top!! the detail on front top of the top is so cute. the length is just right. i hesitated because of the unusual armhole shape but they are really not an issue. also, thanks for finding the top as it wasn't available at distribution center, went of your way!!",5,1,0,General Petite,Tops,Knits +777,33,Gorgeous leggings,"These leggings are beautiful and different. the material is very stretchy, sort of a spandex feel. panty lines definitely show in the back. i found they run true to size; i wear a size 6/medium/28 in pants or jeans and the size medium fit me great.",5,1,0,Initmates,Intimate,Lounge +197,46,L space chloe top,"L space is frustrating. i wear a 0/2 top but with 32d's i tried a large in this bikini top because from past experience with l space they run small. there's just zero support. the tie design helps secure the girls in place, but also flattens them out if you tie it tight enough so you don't spill out.",3,0,0,Initmates,Intimate,Swim +860,38,Soft tank for the summer,"I just purchased this tank in white and blue. i find it to be soft and will be perfect for hot days but also can wear into the fall with a cardigan. it's super comfy but i do find at retailer that it's best to try things on in the store (it's hard to find perfect sizes online since things are cut so differently based on the designer). i got a large and though it's a bit flowy in the tummy area, it fits nicely across my chest (not tight).",4,1,2,General Petite,Tops,Knits +1068,35,Fine for a fitness class,These were a little baggier than expected and the petite size ran long.,3,0,0,General,Bottoms,Pants +860,35,,Great lightweight summer top that's bra friendly. i bought the teal color yesterday and wore it today with white skinnies. i'm sometimes a small and sometimes a medium and was fine with the small on this one,5,1,8,General Petite,Tops,Knits +860,26,Nice top,"I love love this top. i was on the fence about it since it runs large and is loose fitting, very loose. i tried m, l, and xl. i usually wear xl but bought an l in this. i tried m, it was loose around the mid-section but fitted at the top. i wore them with fitted skinny pants and the top looks amazing. perfect for summer. the armholes also look flattering - not too big. i like turquoise. i didn't find yellow in the store, so bought green and white. it does need some ironing.",4,1,2,General Petite,Tops,Knits +1042,31,Pretty much just like picture,"This pants look pretty much exactly like the picture except these will wrinkle really easily so there is no way they will ever appear as wrinkle free as the pic. + +i found the color to be exactly as seen online so i am not sure why others didn't. the material is really light weight so i think these will work well for spring. + +overall cute especially for the price. if not on sale, i would not have bought them but the sale price makes these pants awesome.",4,1,0,General,Bottoms,Pants +1060,55,Absolutely beautiful and feminine,"This is not something i would normal wear but the beauty of the fabric made just give it a try. i am so glad i did. the fit is beautiful slimming feminine fit with just enough flow. i love it and bought it right away. you better get it before it's gone. also it is true to size, i have along torso so sometimes i have issues with jumpers but not this one.",5,1,34,General,Bottoms,Pants +59,45,Fabulous,"These undergarments are comfortable, streamlined, and well made. this bra holds up well without wires. i am a 34b and wear a small. it is a bit tight at first, but form fits after one wear. . after trying one bra and i ordered 4 more. then i researched the brand and bought camis to match. i love how all the colors and styles are interchangeable.",5,1,2,Initmates,Intimate,Intimates +1060,58,"Lovely, comfortable and versatile","I tried this jumpsuit on in the store and loved it but decided to wait on purchasing it. after it went on sale i jumped on it because i new i would regret not buying it. + +i am tall but most of my height is from my long legs, not in my torso. i seldom find jumpsuits that fit my frame but his one fits perfectly. the fabric is very ""flowey"" and does not wrinkle. the overall design of this jumpsuit is slightly but not overly baggy. the pattern and pleating make it a perfect item for spring and su",5,1,0,General Petite,Bottoms,Pants +1094,39,Disappointed,I fell in love with this dress the instant i saw it. but was disappointed when i received it. first was the color. i chose the green and it wasn't what i thought. it was a very unnatural shade of artificial grass. when my husband saw it in the package he thought i had ordered a cheap grass hula skirt. the color was that bad. the fit was the next problem. this dress would have fit nicely if they had just added a side zip and made the top more fitted. the top was loose and that added to the flowy,3,0,55,General Petite,Dresses,Dresses +1060,46,Love,"I love this jumpsuit and definitely feel too confident in it! the fabric is a great weight- flowy, but still substantial enough. with nude undergarments, i can't see anything. in fact, that is one of the things i love; no special undergarments are required, so it is very comfortable and still very flattering. i typically wear a medium- 135 pounds, 5'4"", 34b, 28 waist, 40 hip. i tried the small after seeing some reviews that it ran big. i would have bought it, but the salesperson suggested i try",5,1,4,General Petite,Bottoms,Pants +1110,59,,"Runs large in arm holes. have to wear bandeau. love this print and flow of dress. loose but still flattering due to arms and shoulders . love the overall look. midi length for this 5'6.5"" gal. size s worked best -36c-125lbs",5,1,2,General,Dresses,Dresses +235,32,Not sure what body type this suit is designed for,"I was so excited to splurge on a mara hoffman suit and was sorely disappointed when i received this suit in the mail. i'm petite and fairly curvy, so i knew it would likely be a little long in the torso but the whole suit was so oddly shaped, i couldn't imagine anyone it would fit. the square shape in between the halter pieces is awkward, and the pieces that are supposed to hold your chest are super wide and loose.",1,0,0,Initmates,Intimate,Swim +720,40,,"I love this dress. it is so soft and comfortable, perfect for summer!! i wish it came in more colors because i would buy everyone!!",5,1,1,Initmates,Intimate,Lounge +1098,68,,"Like other reviewers, i'm glad i sized down. this is a cute tunic that is definitely great quality, lightweight chambray. i love that it has pockets, but they do puff a bit at my hips.",4,1,0,General Petite,Dresses,Dresses +59,68,,"This is the perfect bralette for comfort; it's soft and fits to form really quickly. i wear a b cup, and it's enough support for me to wear daily doing everything other than heavy exercise. now, at 5 months pregnant it's pretty much perfect to sleep in too. i'm at 35 band, and i'm still wearing it on the loosest closure, but it fits perfectly there for me.",5,1,1,Initmates,Intimate,Intimates +1060,48,Loved but both in my store had quality issues,"I really wanted this. they had two size small in my local retailer, both were damaged. so disappointing. i don't want to pay shipping for one that hopefully isn't damaged:( in the last year i've had multiple quality control issues with retailer. makes me gun shy. not sure i'm getting what i pay for anymore.",4,0,10,General Petite,Bottoms,Pants +1060,62,"Came dirty, but nice fit...","I followed the advice of other reviewers and sized down from a s to xs. i was worried about the length of the torso since i'm long in that area, but the xs still worked great. it's a totally adorable jumpsuit with a nice fit. my biggest peeve with this was that it came dirty on the hems...like it had been dragged on the ground somewhere. unfortunately, there were no more xs online once i got it though, so i will keep and try to clean. this is not the first time in recent months that i have recei",4,1,0,General Petite,Bottoms,Pants +1110,53,,"This dress looks better in person. nice navy with subtle pattern - looks super cute with a really lightweat pale yellow sweater! i thought that wiastband area would hit in a funky spot (my problem area) but it doesnt and looks great. super comfortable and i love this neckline. also has a decent lining so no bra necessary if youre cool with that. i have packed on some ""after 50"" lbs and wear a 12-14 shirt and 10-12 pant and the large is roomy enough.i received a number of compliments and let's fa",5,1,1,General,Dresses,Dresses +1082,28,Bright & versatile,I received this dress as a gift and it has become such a great addition to my wardrobe! i love that i can wear it to work and then out with friends. a great value if you're looking for one special piece that you can get miles out of - you can wear the two pieces separate or together. i love floral and felt this non traditional take on a floral was very refreshing.,5,1,1,General Petite,Dresses,Dresses +1060,41,,"This would be perfect if only it were lined!!!! i have a high waist and hourglass shape so jumpers are very hard to find that fit my body type. this is a perfect fit for my body shape and when on, it looks like a lovely dress. however, it is not lined and the material is very light and ivory so you see everything. you can't wear a slip so that leaves the option of some sort of bodysuit if you don't want to show the world what you have. i am very tired of all of the light colored clothing not bei",3,0,71,General Petite,Bottoms,Pants +1060,38,,"Simply awesome. wonderful fit and flatters any body type. looks great booties, flats, or flip flops. must have ...",5,1,5,General Petite,Bottoms,Pants +1060,46,Feminine,"Although it may not look like it takes on a shape - what a wonderfully flattering jumper. was intrigued from seeing it in the catalog and had to try it on in the store -- i was unsure how the middle would appear. but it fit, wonderfully feminine, looking forward to the summer.",5,1,2,General Petite,Bottoms,Pants +1042,49,Love these!,"I had been eyeing these for a while, but as they didn't seem very popular, i figured i'd wait for a sale. i finally bought them at the 40% off of sale price (yay!) and i love them. they're extremely comfortable, and very flattering. i'd say they run true to size, but maybe on the smaller end of the size for the waist. the blue pants are more greenish in color than the picture shows, but still beautiful. i'm looking forward to wearing these now and into the spring.",4,1,0,General,Bottoms,Pants +1060,56,,I loooove this. my favorite retailer purchase in a while and i buy frequently. ran out of s p while in my basket (there are never enough petites available) so i got the medium. it is big but with this style i can pull it off. it does run a bit large so a s would have been perfect. please make this in more colors/fabrics! i would buy them all!,5,1,3,General Petite,Bottoms,Pants +1060,37,Super cute. pockets would be nice,Easy and fun jumper. runs slightly large. i ordered a medium and returned for a small. can be dressed up or down for a variety of occasions. would be perfect if it had pockets.,4,1,2,General Petite,Bottoms,Pants +1110,23,Prettier in person,This is such a pretty dress. light and flowy. i got it to wear on hot summer days.,5,1,0,General,Dresses,Dresses +1060,38,,"I loved this jumpsuit. it fit well on my curvier/athletic frame. i did prefer a belt, which emphasized my shape. unfortunately, it is not lined and a bit sheer. this was a deal breaker for me.",3,1,0,General Petite,Bottoms,Pants +235,28,,"I have been dying to try a mara hoffman bathing suit, so i went for this one. unfortunately, the design of the bathing suit is not like what they sent me. the middle where the tops meets the bottom, is squared off, not like that v that it looks like in this photo. it also makes for major side boob/sagging on each side. i was very disappointed.",2,0,2,Initmates,Intimate,Swim +1072,29,"Pretty, but not great","This dress was pretty but had a weird fit. the waist droops down in the middle instead of going straight across, which i found unflattering. i ended up returning it.",3,0,4,General,Dresses,Dresses +1094,53,Beautiful summer dress,"I was unsure about this dress when i first tried it on. the color is gorgeous, it is flowy and beautiful. it hits just below the knee (i am tall), which is something i am not used to. i hadn't decided on it, but my husband loves it and that's all that matters! it is very feminine and pretty. i normally wear a 0, but ordered a 00- it fits just slightly loose, which is the style this dress is going for.",4,1,0,General Petite,Dresses,Dresses +1204,39,Comfy and cute pants,I love these pants. i have them in navy and carbon. the navy color seems to run bigger than the carbon. they are very loose like a boyfriend pant in navy. they loosen up as the day goes on as well. super comfy and great for running errands and taking my little one to the park. i can look cute and feel comfy and i can give my yoga pants a break.,5,1,3,General Petite,Bottoms,Pants +1204,39,Very comfortable/relaxed,"These are super soft and relaxed. i have them in navy and lavender. i am 5'6"" and 130 lbs. and ordered them in a 28, which fits loosely, but comfortably.",4,1,0,General Petite,Bottoms,Pants +1082,31,Finally found my staple summer dress!,"Was so thrilled to receive my dress in the mail. its just what i was looking for, for my staple summer dress. i love how i can wear it with or without the sweater top, and even can pair just the sweater top with my high-waisted shorts!",5,1,2,General Petite,Dresses,Dresses +1072,43,Awkward,"I really wanted to like his dress, but it was a big miss. big big miss. look at the way the skirt is attached to the dress in the photo. it goes up high on the sides leaving a short bodice. the sequined patterns hit right at my breasts, so it looked like glittery bra cups on the front. the back glittery pattern looked like bird wings on my back. it was far shorter than i expected. overall, it looked like i was desperately trying to be a sexy angel or fairy. bad bad bad.",3,0,5,General,Dresses,Dresses +1060,21,,"Great fabric but unfortunately it did not look good on me. maybe on a tall person, i'm only 5'4"". really wanted to like this...",3,0,0,General Petite,Bottoms,Pants +1098,54,,"The dress is cute, but i'm somewhat concerned that it will be sheer in the sunlight. i guess we'll have to wait and see!",4,1,0,General Petite,Dresses,Dresses +1060,55,So flattering!,"I tried this on in the store in a regular medium and the size was fine, just the length. fortunately retailer will ship for free if you need a petite! i'm so excited to get this. i'm 5'1 and a bit busty, and the medium fit perfect. its very flattering and so comfortable! perfect for a hot summer day. or as the cute clerk in the store had it styled with a cropped jean jacket and a fun necklace. the styling idea's are endless. i'm waiting by the mailbox for it to arrive!",5,1,6,General Petite,Bottoms,Pants +1060,63,Why is it so big?,This runs really large. i love it! sold out of xs p and xxs p... go figure :( size down if you are slim.,3,1,0,General Petite,Bottoms,Pants +1060,66,,Bought this for my daughter. it's adorable on her. we're going to take it in at the waist so it doesn't look so sack-like; then it'll be perfect!,4,1,1,General Petite,Bottoms,Pants +1060,27,Not what i expected,"I was disappointed with this jumpsuit. when i first saw it in the store, i thought i was going to love it. when i tried it on, the first issue is the fabric is too sheer. i could completely see the outline of my underwear and bra. it also runs way too big! i know the bottom is supposed to be loose and flowy, but the waist needs to be more tapered to off set that, and it's so baggy. the arm holes are also cut very low, so when you lift your arms you can see most of your bra on the sides +i wante",3,0,4,General Petite,Bottoms,Pants +1060,85,"Beautiful, flattering, but runs large","Perfect for the summer weddings that i am attending. i am 5-1, 119#, 32dd and usually a sp. i tried on a regular s and xs in the store, and the s was huge. i ended up ordering the regular xs instead of the petite xs when the 20% off sale hit because i liked the extra length. great bra coverage...it is not too long at the armholes, or too low in the back. i will take it up a bit in the top seams just so it doesn't have quite so much decolletage, but it is wearable as is. this is much more of a ro",5,1,4,General Petite,Bottoms,Pants +1060,64,Adorable,"A sales associate found this for me at my local retailer. i probably would have never thought to try it on. i am 5'1'' and normally a size 8 or a medium. the size small was still too large, so i ordered a size small petite. it fits perfectly, looks adorable on, and is so comfortable. i can't wait for the warm weather to wear it!",5,1,0,General Petite,Bottoms,Pants +1072,48,Lovely dress,"This is a lovely piece, with great shape and details. i think it would really stand out at events. i ended up returning it. i don't have much occasion for cocktail dresses. i had trouble sending it back. it has a slip with the sheer overlay. the slip seemed a bit tight at the bottom hem for the shape of the dress.",4,1,5,General,Dresses,Dresses +1094,33,Odd shape,"This was so unflattering. the bust was too high so it hit me weird on the boobs. the green was a beautiful, vibrant color but the fabric is so delicate that one wrong move would cause a snag.",2,0,0,General,Dresses,Dresses +1082,53,Didn't try it on,"I opened the package and the dress is two pieces. it is the skirt part with an orange cami top that the sweater goes over. the sweater was too short for me, as i am busty and would not work. i ordered my normal size and the band around the rib cage did not go from side to side so i didn't try it on.",2,0,0,General Petite,Dresses,Dresses +720,43,Cute casual summer dress,"Just purchased this- love how light and airy it is. perfect for throwing on on a warm summer day. it is soft and comfy, but it does run pretty large. i am normally a m, and in this the m was swimming on me. i purchased the s, and still loose and flowy. i wore a strapless bra with it, but will also try a bandeau or tank top.",4,1,5,Initmates,Intimate,Lounge +1060,26,Throw on and go perfection,"I'm very picky about jumpers, and this one is abolutely perfect! i love how it looks like a dress at first glance. it runs a little big because of the oversized fit it is supposed to have, i sized down because of the armpit area. nude garments and you'll be fine. this is going to sell out fast, don't wait for it to go on sale! (seriously my store is already out of xs's)",5,1,9,General Petite,Bottoms,Pants +720,58,,Nice flowing summer sun dress. i was looking for something very simple and put a colorful kimono over. it. i put a bando under it. i think this dress can be for all ages as my friend in her 20s bought and loves this dress as well.,5,1,1,Initmates,Intimate,Lounge +1110,38,Huge,"I am 5'-7"" and 135 lbs, i bought a medium petite as i wanted the dress to hit at my knees, instead of midi. this dress is easily 2 sizes bigger than expected. the pattern was not flattering on my although i'm sure it would be for others. i was happy with the length...",3,0,1,General,Dresses,Dresses +1094,50,Just a nice dress...,"This is one of those dresses that is just ""nice"" and can be one that you go to in a pinch.... it flows very nicely and you can dress it up and down. it's not the best quality in fabric...but if it was all silk you would have paid 3xs. i like it, it fits well...it's not outstanding or unusual. i think it is a bit pricey for what you get...but, it's a ""work horse"" dress...it will do you right whenever you need it to!",3,1,0,General,Dresses,Dresses +1060,52,,This jumpsuit is the epitome of what i love about retailer! unique and absolutely beautiful. i love how it flows and on my petite frame when paired with heels makes me look taller. hopefully the designs for spring/summer are just as beautiful and comfortable as this piece. i plan to rock this with a cute belt and a bolo jacket.,5,1,19,General Petite,Bottoms,Pants +720,80,Pretty but runs big!!,"I loved this dress from the moment i saw it! i ordered it immediately, after reading the reviews, and felt confident in my dress size choice...but when it arrived it was big! i am 5'7"" 140lbs with an athletic build and i usually wear a 6 or 8 in dresses, so usually a small but sometimes a medium...because if this ""in between"" that i am, i ordered a small...and it was really too big. so sad...incalled a bunch of stores to try and find an xs but they are sold out everywhere. +style is fun and flir",5,1,1,Initmates,Intimate,Lounge +720,37,Fun easy dress!,"This dress is great. it appears just as it does online. its soft, flowy and a thin chambray material. the straps are adjustable which makes it a good fit for all women. i am fuller in my hips and toosh and this dress fell beautifully over them. i tried a large (i normally do l or xl in retailer dresses) and there was plenty of room! i would have probably liked the xl more just because i prefer things oversized. the dress is a midi length, very breezy and airy. its extremely comfortable and very fl",5,1,4,Initmates,Intimate,Lounge +1060,53,,,5,1,0,General Petite,Bottoms,Pants +1072,62,,"I was worried at first that the metal leaves would come off easily. i was pleasantly surprised after a day at disneyland, i don't think i lost even one of them. this dress is super fancy but very comfy.",5,1,0,General,Dresses,Dresses +1022,38,Sleepable jeans,"These jeans have been the best pair of jeans i have ever worn. you could practically sleep in them, they are so comfortable, brushed softness, and stretch easily. they hug your body in a flattering way, that these jeans are worth the money spent, as you'll have them for a while.",5,1,0,General Petite,Bottoms,Jeans +1060,59,"Lovely, feminine, needs belt for definition","I'd been eyeing this for months, loving the look but afraid it'd be too young for me (i'm 58). i tried it on in the store and loved it, with one caveat: it hangs rather like a sack, so i think it needs a belt for waist definition. with a belt, it looks great. my measurements are 38-30-38 and i wear a medium. oh, and contrary to what other reviewers have said, i don't find that the fabric is too thin or transparent.",5,1,4,General Petite,Bottoms,Pants +1094,29,,"I really wanted to love this dress. i bought it for a photoshoot that will be outdoors, and thought that the green color would be perfect. it is well made, but the fabric is lighter than expected. the biggest issues was the size. i am 5'7"" and typically a size ten. i ordered the ten and it fit like a 14-16. it was huge. if you order this, i would say size down two sizes.",2,0,10,General,Dresses,Dresses +1042,39,"Unique, classy","Great fit. smooth, comfortable material. wrinkles, but nothing an iron can't fix. beautiful colors, i got both the teal and the black.",5,1,0,General,Bottoms,Pants +1072,36,Pretty dress but oddly cut in the middle,"This dress is beautiful and would make an excellent party dress for winter. it is well made and the details are pretty. however the waist is cut in sort of a scallop shape, so it is higher on the sizes and dips down in the middle over the stomach. i wear a size l or 10 in dresses at retailer, and it just did not flatter my body type at all. for a thinner, narrow silhouette, i suppose it would look better, like it does on the model. i had to return it.",4,0,6,General,Dresses,Dresses +1110,27,"Beautifully constructed dress, runs large","I tried this on in the store last night and decided to order it today. it is a really beautifully made and flattering dress, with very interestingly cut seams. the fabric is a distinctive flower pattern that has been overlaid to appear almost abstract. gorgeous and high quality! + +fit: i am 5'6"" and curvy, usually a size 14/16, and the xl fits quite roomy on me (that's the size i ordered because i like flowy things). so it definitely runs large. usually i have better luck with a-line dress shap",5,1,3,General,Dresses,Dresses +1094,72,Perfect for irish fest and beyond!,"I bought this dress for its green color and flowy design to wear at an irish fest held in the hot summer. it's perfect! being of irish descent with red hair and fair skin, i love all shades of green, and this green dress is no exception. the color is lovely and eye-catching and cool. as to the sizing, i usually wear a size 8, but to make sure due to the design, i ordered an 8 and a 6. there wasn't a great difference between the two dresses, but the size 6 top was a bit more fitted and looked bet",5,1,0,General,Dresses,Dresses +1060,32,"Cute, sweet, flirty, sexy","I just bought this at the store. i simply couldn't resist! it is very light and comfortable and could easily be dressed up or dressed down, sandals and a crossbody bag for exploring the city, strappy healed sandals and some flashy jewelry for a garden party or day event, slip on booties and a cardigan for the evening. can't wait to rock it. in terms of sizing, i am 5'5 150 with 36dd bust and some hips and booty. usually i am a size 6-8/m in dresses and pants but in true retailer style, i ended up",5,1,14,General Petite,Bottoms,Pants +1060,30,,"Great jumpsuit ! even better ""in person""; elegant and stylish. i'am 5'7 and 165lb , m fits perfectly! material is not see- throug ( that was my biggest concern). sooo happy that i got it.",5,1,2,General Petite,Bottoms,Pants +868,34,Nice simple staple,"I purchased this in the mauve color. beautiful color with tan skin for the summer, but also perfect for fall. the material is very thin but not sheer at all. has quite a bit of drape/swing to it so i sized up to make sure it was long enough. it fits me like it fits the model shown here. i am about 5'4"" 115lbs and 32b and am keeping the small.",5,1,2,General,Tops,Knits +1094,42,Flowy and flirty for summer flings,"I originally ordered this in green, and unlike another reviewer, i thought the color was perfect for spring. it is trendy, flattering and fun in green, but perhaps not a color i would wear long-term, so i decided to return it and order it in red and black. i also noted the boxy cut, and if that is what you want, it runs true to size. however, if, like me, you want something a little more form fitting, consider ordering down a size or two (depending on your chest size,) and just carefully shimmy",5,1,0,General,Dresses,Dresses +1094,52,Great dress but not in green,"Beautiful dress. good quality. tts. i'm 5 feet 120 lbs. ordered my small petite. no issues. however, the green is very bright. the deal killer for me was when my hub said it looked like a starbucks barista's apron! it's going back. i marked yes if you plan on purchasing a black dress it's a yes.",3,1,1,General,Dresses,Dresses +1095,50,A little itchy for me,"I tried this on in the store - i tried regular medium which was way too big except in the chest where it was really tight. the material was a little itchy on me (but maybe its because the chest was tight). the color is lovely (pink). im sure someone will love it but if you are petite, i would order the petite and maybe size up if you are busty.",3,1,1,General,Dresses,Dresses +1028,44,Love,"I tried these on at my local retailer, and was like, no way am i spending almost $300 on a pair of jeans. alas, i could not stop thinking about them. the pictures really don't do them justice. they are a more substantial jean, have a distressed look, without being fragile. and yet they are so soft, so comfortable, you really just don't want to take them off. they do have a bit of stretch, but hold their shape all day long. the length and taper are perfect, in that you can wear them with boots, san",5,1,3,General,Bottoms,Jeans +1095,37,"Pretty, comfy, casual, dressy","I love this dress, i disagree with the review saying it was too sheer. this is a thicker material and doesnt need a slip, it is beautiful and is so comfy. it looks good with heels or sandals. i definately recommend this dress, it would look good on any body type.",5,1,0,General,Dresses,Dresses +850,30,Cute top!,"This top is cute and could be worn to work or casually. being tall, i love how long this shirt is! definitely recommend!",5,1,0,General Petite,Tops,Blouses +850,44,Flattering,I purchased the gorgeous green color. i love that i can wear this with leggings and sandals in warm weather or boots and scarves when it's cooler outside. the best thing is that it has pockets to slip my phone in! the color is very flattering and i get lots of compliments when i wear it!,5,1,0,General Petite,Tops,Blouses +850,59,,I bought the blue pattern and really have found this print to be very fun and flattering and the tunic style great for work and play. highly recommend!!!,5,1,2,General Petite,Tops,Blouses +850,35,,"Like a baby doll top, with almost an empire waist going on. feels comfortable and super flowy. i got a size m and i swing between m and l in most brands. the button stitching are a bit loose and will fray after some wears, i can tell. but i'm borderline on taking it back still because there are hidden side pockets! crazy--like it was a fluke or something. would fit a piece of paper or tissues. not keys or phones though.",3,1,0,General Petite,Tops,Blouses +940,57,Bryson cowl,"This is a beautiful sweater -- soft, lovely color and easy to wear. the current photo is more true to the length. i am 5'2"" and 128 pounds and ordered the regular sm and it fits just below my hips.",5,1,1,General Petite,Tops,Sweaters +868,43,Wide,"I'm 5""0"" and weigh 105 lbs. i purchased the xxs and it was super-wide, and big all over. it looked like a pregnancy top and did not lay as nicely as shown on the model. also, not shown on the model is the front is short and the back is very long. this would work better on a taller person. i just find it odd that a xxs is still too big. the quality of the fabric and the print is good and the lace-up in the back is cute.",2,0,7,General,Tops,Knits +1028,40,Amazing fit and wash,"Like other reviewers i was hesitant to spend this much on a pair of jeans. however, i purchased them at 20% off on retailer day and...honestly...they look so good i probably would have paid full price. these jeans are fresh!",5,1,0,General,Bottoms,Jeans +1095,42,Elegant and comfortable,"After reading the reviews, i ordered this dress in an xs and sp. i'm 5' 3"" and 120 lbs. the xs was too long and too big on the bottom while being too tight in the chest. the sp fits perfectly. i'm wearing this to a wedding and know that i will get lots of use out of it for many different occasions.",5,1,0,General,Dresses,Dresses +868,59,So cute!,"I always look for things to hide ""parts"" without making my ""parts"" look even more pronounced. this top is much cuter in person than online. it has floral edging around the neck and lace up area i didn't notice. the length is perfect, the sleeve length is perfect and it makes me feel thin (even though it has stripes!). perfect spring summer top.",5,1,16,General,Tops,Knits +1095,31,Great buy!,"Fit is true to size but keep in mind this dress has a ""box-like"" fit. i am debating whether to have mine taken in a little under the arms. +the material isn't what i expected but i still love it. the dress has a more textured/thick fabric instead of the light, somewhat silky fabric that the photo portrays. +i am very happy with the color!",4,1,9,General,Dresses,Dresses +850,62,Bought in 2 patterns!,"This shirt is easy, breezy, comfy, and stylish - everything i want as a busy mom. all the patterns are beautiful it i went with the blue motif as well as the floral print because they felt fun and easy to wear with jeans or white pants. this definitely fit a full size large for me. i tried my usual s plus xs thinking the shoulders might be too tight, but the xs was perfect. happy to have this beauty in the rotation!",5,1,1,General Petite,Tops,Blouses +850,23,Not flattering,I've been eyeing this top up in the floral pattern for a while and finally ordered it when i had 15% off. i really don't think it's worth the price and it's not very flattering. i think it would look better on someone less busty - it seemed to accent my bust. it's definitely not my favorite piece and unfortunately i will be returning.,3,0,0,General Petite,Tops,Blouses +1028,38,,"This is my first pair of realllly expensive jeans, and they were worth every penny. i love the fit, the distressing, everything about them. they make me feel like i look amazing, which is what good jeans should do! i wear a 31 in pilcro jeans, but based on some reviews went up to a 32 in these and they are perfect. also, i'm 5'6 but the crop length hits at my ankle, which is perfect.",5,1,1,General,Bottoms,Jeans +1055,38,Cute with some adjustments,Shortened it to knee length and it was perfect. material is soft. comfortable to wear. can be paired with wedges or pumps or flats. fits true to size.,5,1,0,General Petite,Bottoms,Pants +850,20,,"Super cute and flattering shirt, the long tunic-style makes it so you can dress it up or down, so cute and comfy!",4,1,0,General Petite,Tops,Blouses +1095,46,Way cuter in the photo,"It looks great on the model but not on me. on me, it looked more like a sack of potatoes. the fabric is unexpected for the style in my opinion. it is very thick. i'll be returning it because it is not flattering on me.",3,0,0,General,Dresses,Dresses +850,33,Go to summer top!,This shirt is just so easy breezy! i got the blue motif and love the pattern. the top is loose but it's supposed to fit that way. i have a feeling this will be my go to for the spring summer! i'm about 136lbs and ordered a small.,5,1,1,General Petite,Tops,Blouses +1095,37,Frumpy,This dress looked gorgeous in the monthly catalog. ordered in hopes to wear in easter. i felt it was frumpy and just ok. color was pretty but overall; i didn't love it like i hoped to.,2,0,0,General,Dresses,Dresses +1094,60,The lady dress,"If there ever was the perfect feminine dress, this would be it .",5,1,1,General,Dresses,Dresses +850,37,Cute,"I'm small (4'11, 98 pounds and 34a) so the regular xs looks like a baby doll dress on me. i just wear the tunic with a tank top underneath (or i can wear the tunic by itself) and leggings plus a pair of boots. the top part is slightly baggy so if you want tight fitting, is size down to xxs. i got the yellow flower and white + grey one and plan to get the navy one soon. the quality is good and you can machine wash it with cold water. i plan to use a tide sweater garment bag to wash it (i put",5,1,3,General Petite,Tops,Blouses +850,60,Not so flattering top,"I had reservations about this top based on other reviews, but it looked cute on the model so i took my chances. i have an athletic build--not model-thin, but not dumpy either--and this top made me look very frumpy and matronly. the sleeves were especially unflattering. i purchased it in an ps and might have done better with a pxs.",3,0,0,General Petite,Tops,Blouses +850,34,,"I ordered the black and it was a soft black, which i loved. i felt like the shirt was a little boxy (i was hoping the top would have been a bit more fitted (the arm holes are loose) and the bottom a little longer, but i like it enough that i am keeping it. works well to wear to work.",4,1,0,General Petite,Tops,Blouses +875,46,Too much fabric,"I usually wear a size xs or s in retailer tops, ordered this top in an s and it was so wide on the sides and huge it fit like a tent. not even remotely flattering. i thought about ordering it in an xs, however, i could tell the xs was still going to have way too much fabric. back it goes.",1,0,0,General,Tops,Knits +850,50,,"I initially purchased this shirt in the grey motif color, size l (my usual size, i'm 5'8"" size 14). unfortunately i found the shirt very roomy, but loved the pattern and style. so i ordered a medium and much to my surprise it fit much better. i'm very happy with my purchase.",5,1,1,General Petite,Tops,Blouses +1094,44,New year party dress,"I bought the dress in black. it is very elegant with a fun flare, suits my taste. it does run a size too small like other reviewer mentioned. the material has no give at all. i couldn't breathe in my regular size. one size up fits like a glove. it is a perfect party dress to show your free and fun spirit!",5,1,0,General,Dresses,Dresses +979,63,Wonderful!,"I agree with the previous comments. the vest runs a little large, so you can easily size down for a more form-fitting fit. it is so soft and the colors are lovely ... will be a welcome addition when the weather turns a little cooler. i am so glad i purchased this vest!",5,1,1,General,Jackets,Jackets +979,61,"Soft, warm and stylish!",Fit great - maybe a bit large....i bought a l (typically i go between a large and extra large) and there is room to put a thick sweater on underneath it. this goes with just about everything!,5,1,0,General,Jackets,Jackets +850,55,Darling top- runs large and long!,"I am a solid size 6 in most brands, top and bottom, 5'3"" tall, 125#. i have long legs, short torso, and fairly broad shoulders - i almost never wear petite sizes.however, this top in the regular small size could be a maternity dress on me! i am literally swimming in it, and it is quite long. however, i can still make it work, with a cami underneath and leggings or skinny jeans... i like it, did not return, and will buy another color, but will go with petite x-small in the future.",4,1,0,General Petite,Tops,Blouses +850,29,,"This top is such a great color and style. i did have to go a size down, as i typically wear a medium. the style is very forgiving. it looks great with shorts and jeans! it's staple!",4,1,0,General Petite,Tops,Blouses +850,51,This top is really cute,I just bought this top yesterday in the yellow. i can't wait until it warms up a little more to wear it. it's very comfortable and very cute. i did have to size down. i may get one of the other prints as well.,5,1,0,General Petite,Tops,Blouses +850,46,Xl fits great,I ordered the yellow/floral version in size xl. it fits me just as shown with the model so it's true to size. it's very comfortable and made well. the floral looks the same in person as in the photos too.,5,1,0,General Petite,Tops,Blouses +1095,41,European flair,"I love this dress!! it has a beautiful european flair, and more beautiful in person. i don't agree with the other reviewers that its see through-the fabric is a good quality, and thicker than you would think. the variable length is the best part of the dress. the color looks beautiful with a tan summer glow!",5,1,0,General,Dresses,Dresses +850,59,Cute summer top,"Got the flower print and it is really a nice top. covers the butt!. i normally need a xl, but in this top i got a large.",5,1,1,General Petite,Tops,Blouses +940,39,"Beautiful and versatile, but big...","I love the idea, and color, very flattrering and easy to trhrow on, however, i need the petite in this one, and they sold out in the neutral color. it looks too big in eregular sizing, and since it combines xs/s, it is made slightly bigger. material is soft enough.",4,1,0,General Petite,Tops,Sweaters +850,28,Runs large - order down!,"I received this in the mail a few days ago, and was so pleased with it except that it was huge! i am normally a 10/12 in most things so i ordered a large. i was swimming in it in all areas - shoulders and bust bothered me most because i need a waist on shirts so i don't look larger than i am. i liked it enough to o ahead and order a size down. i ordered a medium and medium petite because the top is quite long and i think i could get away with wearing it with leggings or tights if i were looking",4,1,11,General Petite,Tops,Blouses +850,52,Adorable,"I have received so many compliments on this top. it really looks exactly like it does on the model, and i'm not as thin as she is. i am 5'5"" and 134 lbs,, small on top, and bought the small in this top. the v-neck is very flattering and is hangs so nicely that it does not make me look hippy. looks great from all views. i paired it with white pencil pants and wedge heels. also, the black lace detail down the sides looked great when i paired it with black yoga pants and flip flops. the colors are",5,1,1,General Petite,Tops,Blouses +850,49,"Flattering, comfy top","Everyone has said it, so i'll just add my two cents - this is a great, soft, flattering top. i bought two, one in white and one in black, and i have never worn them without getting compliments. i sometimes wear them buttoned up, and sometimes completely unbuttoned to expose tanks or bathing suits. (i live in florida, and these tops make great beach cover ups). i am 5'7"" and over 160 but not busty, and the medium was swimming on me, but i think this particular shirt is supposed to be that way. su",4,1,0,General Petite,Tops,Blouses +1094,35,Amazing retro style,"Perfect party dress - well constructed, bra hidden at arms and on top, what more can you ask for? i felt like betty draper the moment i put it on. i'm normally a 6, but the 4 (while fitted) looked amazing and didn't pull.",5,1,0,General,Dresses,Dresses +868,41,Love it!,I love this shirt! it hides my tummy perfectly without being too baggy! super cute!!,5,1,6,General,Tops,Knits +850,36,Wanted to love...,"I wanted to love this top, but it unfortunately did not work for me. the material has a nice weight and feel to it, and while i love the pattern, the shape leaves something to be desired. the cap sleeves were a little tight on my arms, and the cut of the sleeves made my arms look big. the body of this shirt reminded me of a loose maternity top. for reference, i am 5'10"" 140 lbs and typically a size 6. i wear a small in retailer clothes, and got a small in this top. i think an xs would have been to",2,0,35,General Petite,Tops,Blouses +850,73,Wanted to love this,"The fabric is wonderful, flows nicely and soft. i am 5'7"", 145lbs and usually wear between a s and m. i ordered a s in this due to the majority of reviews and found it to fit my shoulders well and length was fine. after reading the reviews i was so excited to get it but for me it actually made me look larger. there was too much material for me on the bottom and it actually made me look like i had a ""pooch"", never a good thing. i thought of returning for a m as i thought maybe it would have hung",3,1,0,General Petite,Tops,Blouses +1095,32,Special,"I bought the tangerine version of this dress for my brother's summer wedding in the south, and i can't wait to wear it. cotton material has a touch almost like linen, but not rough. nice and hearty fabric. tangerine color is beautiful, more salmon than coral. wearing it with a little shoulder shrug and the laika inca shoes?the shoes aren't on the retailer site anymore, but i found them at my local store. just perfect.",5,1,0,General,Dresses,Dresses +850,59,Perfect for summer,"I purchased this top in white. it is see through so i wear a tank or cami underneath. i usually wear xs or s in retailer tops and in this one, i purchased the xs, but wish i had bought a s. the problem is the top is just small enough to pull slightly between the top two buttons. for reference, i am 5'6, weigh 128 lbs, 34b bra size, 28 jean size, and small boned. i currently carry most of my weight in my hips and waist. my normal weight is 110-112 lbs and i add this to point out that i am out of sh",5,1,1,General Petite,Tops,Blouses +979,60,Fell in love,"Picture definitely does not do this vest justice. i saw it on a rack and had to try on and instantly loved the look and feel. i am 5'9"" - 135 lbs - size 6 and the small works for me. the vest will work with ivory, black, grey, and red underneath. i love the little bits of fur sticking out of the seams. the back has fitted seams to give it a trim look. there are small pockets in the front as well. definitely worth the 108$ asking price.",5,1,0,General,Jackets,Jackets +1095,20,,"This dress is great! it fits true to size and the pockets are very unnoticable! +my only note is that the first picture of the dress show the dress to be a bit darker than the actual dress. the dress colour more closely resembles that of the other two photos.",4,1,0,General,Dresses,Dresses +1095,47,Recommended for tan to dark complexions,"I'm very pale, and on me the rose color looked really washed out. the catalog photo is not an accurate representation. look at the product shot for a truer representation. it's slightly see-through and was too close to the color of my skin. i think it would look delicious on someone who has darker skin, though.",3,1,1,General,Dresses,Dresses +850,40,Perfect tunic,I purchased this in 2 colors. the black which is really actually a dark grey( no complaints) and the cream with black print version. i have worn both at least once a week and receive compliments everytime! looks great with skinny pants or jeans. great alone or layered with a jacket or cardigan. does run on the looser side fyi,5,1,0,General Petite,Tops,Blouses +1095,63,Not as pictured,"I ordered this dress in the blood orange and have a few complaints. while it appears to be made with quality, it runs really large. also, in the picture the fabric appears to have a sheen and be somewhat dressy. the actual fabric is just flat cotton. it's a very casual dress, not as dressy as pictured. it's also quite shapeless on. i'm returning it.",2,0,1,General,Dresses,Dresses +1095,26,Can't get enough,"This is my favorite dress i have ever purchased. as a 6' tall woman, it's hard to find flattering dresses that are long enough for my legs. this dress is classic, comfortable, and truly flattering. i love the blush color and did not have the issues that other people listed for the color being see-through. i can't get enough of this style...i'll be buying it in black too...ooopss :)",5,1,0,General,Dresses,Dresses +1095,27,Disappointing,"This dress was not what i had hoped! from the online pictures, i had high hopes, but the fit was really wonky and the material seemed cheap. the arm holes were too big and made the dress seem more like a bathing suit cover up than a classy summer dress. needless to say, it's going back!",2,0,3,General,Dresses,Dresses +850,41,Adorable,"Bought this top in white and blue motif. it fits me great and looks adorable. the only comment is that the holes for the buttons are a little too big but it's an easy fix. +this top looks great dressed up or down. would definitely recommend!",5,1,0,General,Tops,Blouses +850,47,Cute and comfy!,"Just purchased this yesterday in the store and i can't wait to wear it! it is a perfect spring/summer top when you just want to wear something pretty and comfortable! i agree that it is big but that is the style of this shirt. so if you're ok with this look, you will love this shirt! i took my usual medium and the prints are adorable! a great addition to my wardrobe!",5,1,0,General,Tops,Blouses +850,21,Great quality!,Love this shirt. tried it on in 2 of the colors and both were very flattering. the quality of the shirt is great. worth the price for sure!,5,1,1,General,Tops,Blouses +850,54,,"Love this top! i receive so many compliments wearing it, even from my teenage boys! runs large, but that's the style of it, very flowy. very flattering.",5,1,0,General,Tops,Blouses +850,33,Pretty top poor fit,"I loved this top in the blue and wanted so badly for it to fit however it was very unflattering on my 5'7"" frame. the bottom hemline is straight across all around whereas i thought it was longer in the back. i could see this looking great on a really petite frame. runs large, xs fit however wasn't flattering",3,0,2,General,Tops,Blouses +850,34,Avoid if you're curvy...,"Didn't work on this curvy gal. +sizing up would have helped with the button gaps, but the flowy shape of the blouse would have looked too maternity on a larger size. +major pass.",2,0,0,General,Tops,Blouses +1095,45,Beautiful,"The rose color is lighter than the photo of the model in front of the pink building, but on the other photos it does look lighter so i wasn't surprised. my dress fits very nicely. i love the drop waist, the loose fit at the hips, and the flare of the ruffles. the back is just like the model too. i thought it may be boxy but it comes in at the waist and goes a-line. perfect. i ordered the xl because it wanted it to be loose like on the model. i was afraid because of my large dd chest it would",4,1,65,General,Dresses,Dresses +850,34,Fun top for all seasons,"I am so happy i purchased this top in 2 colors while it was on sale. i have the navy/white pattern and the green. both are vibrant and fun. i'm 8 months pregnant and these fit me currently. i can see them being a great top for post baby and on as well. i'll probably layer this in the fall and winter with a chambray jacket or a loose knit sweater. my only complaint (which is why i gave 4 stars) the top button comes undone very easily. it also pulls a bit at the top 2 buttons, but i may be able to",4,1,0,General,Tops,Blouses +850,37,Very flattering and comfy,"I'm so short that this could be a dress! runs a little big, but very forgiving. the green color is so vibrant! love love love!",5,1,2,General,Tops,Blouses +850,49,Blouse,"This light blouse is beautiful and true to size. i ordered the black one and love it! +i would recommend this product",5,1,0,General,Tops,Blouses +850,59,Beautiful,"Stopped in to my local retailer today specifically for this top. i was pleasantly surprised - the green is even more vibrant in person! just gorgeous. typically a size small but based on reviews tried on the extra small. still a tad roomy but portland doesn't carry petite sizing aaaaandidon'twanttopayforshipping... remedy that, retailer portland!",5,1,8,General,Tops,Blouses +850,32,Awful fit,Wanted to like this top but it looks terrible and does not lay right. the bust line is not tight enough to contrast the rest of the top being flowy. does not give any shape to the body. do not recommend for anyone with a medium to large chest.,2,0,0,General,Tops,Blouses +940,48,Great fall piece,"This sweater poncho is a nice versatile piece to wear in the fall. wear a blouse or tee under for extra warmth for the maine winters. love the side buttons and the uniqueness of this poncho. true to size, great color. lot's of compliments.",5,1,2,General Petite,Tops,Sweaters +875,50,Super cute,"Love this top. bought it in both color ways. just adorable and washes well. great option for larger ladies. +retailer needs to provide more xls to be available in the stores. i shop at the pasadena store and see so many women my size shopping right next to me, and there is nothing for us. it is so sad that we want to spend our money with you, but you don't want it.",5,1,1,General,Tops,Knits +868,38,Comfortable style,Like the extra details on the neck and back - and it's versatile to wear everywhere,4,1,3,General,Tops,Knits +850,33,Versatile blouse!,"Agree with other contributer - this is a great piece to snag on sale. i bought this 2 months post partum with the intention of hiding the post baby belly - which is does well! i think it fits true to size (i'm typically l and this l fit well). i can see how certain body types it would look maternity, but i'm short and curvy and the blouse is flattering. it's lightweight, so i plan to add a cardigan in the fall/winter.",4,1,0,General,Tops,Blouses +1095,43,Lovely but not awesome,"This dress is a bit scratchy, but overall i liked the fabric well enough. on someone blond and fair, the peach color washes out a bit. the issue for me with the dress is that front is just too short for my height (i'm 5 9 1/2). it looked a bit obscene. + +the small otherwise fit me great. i have broad shoulders, small chest and and slim.",3,1,0,General,Dresses,Dresses +979,37,Cozy amazingness!!,"This beauty arrived in my store today...and despite all my gals telling me that i own too many vests, i just had to have this one. i've always wanted a cozy fur or sherpa vest...but i'm curvy and always feel like those add bulk. this one only has sherpa on one side (the softest most cozy sherpa ever) and its not too bulky! the print is even better than it appears online...in fact, the vest almost appears pink online, and its not in person. there is much more variation in color in person! i adore",5,1,1,General,Jackets,Jackets +875,37,Cute and fun top!,"I love swing tops. the more swingy, the better! this top is so fun. its a little hard to tell online, but its made of two fabrics. most of the fabric is a thin t-shirt material, and then theres a panel on one side thats more of a silky fabric. its so so cool! the colors are just as they appear online, and the print is fun and edgy. i have larger arms, so i love the length of the sleeves. the other reviewer said it was cropped, but i did not have that experience. in fact i was able to wear mine w",5,1,5,General,Tops,Knits +1095,23,"Lovely, unique and odd","I really wanted to love this dress. two lovely associates paired it with the desideria bib necklace and the black dakota cardigan, which gives the outfit definition and elegance. but the dress by itself would have needed altering to fit my 34-b top. i chose size m because of the length-- the small was 1 1/2 "" shorter in front (i am 5'8"") in the end, i realized i would probably choose my other favorites from my closet. but it will be stunning on the right person.",5,1,6,General,Dresses,Dresses +850,39,"Cute, but not on me!","I read all the reviews and was hoping that this top would work for me, but it did not. i ordered a size smaller than usual and it was still way too big. it was not flattering at all on my curvy frame. overall, it looked more like a maternity top on me then anything else! if you're tall and slender, i think this top would work!",2,0,0,General,Tops,Blouses +850,34,,"I'm still on the fence with this shirt. i have the grey - it almost looks like a cheetah design up close. i'm 5'3""",3,1,0,General,Tops,Blouses +1095,35,Love it so much,"I love this dress - originally ordered the medium, which is my normal size, especially because i am tall. the arm holes were gaping, and so i returned for the small. the small is perfect. it fits exactly as on the model, and i didn't have a problem with the color being see-through. it really is so unique but so simple. the color is perfect. + +i took a single star off because it is not lined - for the price, this would have been nice.",5,1,7,General,Dresses,Dresses +850,61,Adorable top,"This is a cute top, especially the material design. i like tops that go over my bottom and this does. if i had a problem it is with the sizing. the fact that it was only online so i could not try it on made it difficult to know really what size to get. some reviews said it was true to size and others said go down a size. i did go down a size but it still hangs a little big. but i still love the overall look. i am also petite which is what i ordered.",4,1,0,General,Tops,Blouses +873,60,Cute white tee,"Cute white t-shirt different style but didn't work on my body type so i returned it + good price point + basic fabric",4,1,1,General,Tops,Knits +850,36,,"Nice, flowy, comfy top with soft fabric. there's a lot of fabric below the waist - it could probably work as a maternity top - but it drapes nicely rather than looking overwhelming. i do find that the buttons gap a little at the chest, despite the top fitting loosely on me, so i have to wear a layer under it.",4,1,0,General,Tops,Blouses +1095,29,,"I've been on the hunt for the perfect dress to wear for my daughter's first birthday party. since we are throwing a traditional korean first birthday, i was looking for a dress you might wear to a daytime wedding or a fancy brunch. i just purchased this dress today in the store and it fits my needs perfectly. + +i disagree with the first reviewer who mentioned that this dress was too sheer. this dress is a thicker fabric so i do not think i will need a slip when wearing it. it does drape nicely",5,1,117,General,Dresses,Dresses +875,42,A unique one of a kind t shirt,I absolutely love this shirt! even though it has a large flowy design it looks wonderful. the print is so unique and will transition to autumn beautifully! i loved it so much i got both colors.,4,1,1,General,Tops,Knits +1095,56,,"I would describe the color as more blush. the fabric does not have a sheen as in the model picture. the fit is much cuter on than hanging. i'm a 36c and the extra small is just a bit tight in the bust, otherwise i like the fit everywhere else. i'm going to order a small and see how it fits. at 5' 3"" it's also longer on me than on the model but not a deal breaker. looks kind of 1920's vintage on. my fabric is not see through it's more of a twill fabric but not quite as heavy as that.",4,1,0,General,Dresses,Dresses +1095,34,Size up if busty,"I agree with the other reviewer that the color isn't as pink in person and more subtle. my thoughts below on some other things: +__________ +pros: +- pockets! makes it so fun and chic with the overall style. +- the material is lovely and breathable. i didn't find it sheer at all! of course, i didn't wear it outside the dressing room. the material is thicker but it hangs on the body well. +- runs ""mostly"" tts. i only tried on the medium and it fit everywhere being slightly tighter in the chest. i",4,1,19,General,Dresses,Dresses +1095,55,,,5,1,0,General,Dresses,Dresses +868,42,Comfy and lovely,"This shirt is so very pretty in person. the detail on the neckline and the lace up on the back are so cute and give the shirt just a bit of whimsy, making it more unique than your usual flowy t-shirt. it lays perfectly and the material is very soft and comfy. you can wear it casual or dress it up. i may get another one because this is the kind of shirt i will wear constantly!",5,1,4,General Petite,Tops,Knits +850,65,Wanted to love,"I bought two, one in white and one in blue print and wore the blue print top once and loved it. then i washed it according to the instructions on the tag (in cold gentle cycle and hung to dry). it shrunk up 4"" in the length and 2"" in the width and now it doesn't fit at all. also, after one wear, the buttons are coming off (before i even put it in the wash) and it's covered in loose threads. the quality is just not there. i'm going to return both and show the sales lady the difference in size on",2,0,1,General,Tops,Blouses +1028,35,Great denim,"I usually wear a size 28 & the fit was perfect. highly recommend, many compliments.",5,1,2,General,Bottoms,Jeans +1095,35,This dress is so classic!,"I fell in love with this dress from the moment i saw it in store. i tried it on immediately and knew i had to have it. it fits a little big -- definitely size down. but other than that, i have never felt more beautiful than when i wear this. the color is a perfect blush pink and the drop waist/tiered skirt make you feel downright bridal when wearing it, despite it being the perfect fabric for day. i find that this dress is perfect for those days at work when i have an event later.. it can be dre",5,1,8,General,Dresses,Dresses +1095,38,Sad sack,"....that's what i look like wearing this dress. a sad, sad, sack. the fabric is less than ideal, and there is no shape to speak of. i love that it has pockets but that's about it. there was just way too much fabric for a petite person. this dress has got to be good on someone, sadly that person was not me.",2,0,0,General,Dresses,Dresses +850,51,Cute top!,"This is a such a cute top. can be dressed up for work or worn more casually. very flattering. i'm 5'6"" and 125lb. i was borderline between the xs and s but ended up with the s because it was a tad longer and more 'tunic-y.' bought two colors!",5,1,0,General,Tops,Blouses +875,40,Love this top!,"I loved this top so much i bought it in both colors. size down because it run very large, but it is nice and flowy. i'm 5'11"" and slim and the top hung nicely on me.",5,1,0,General,Tops,Knits +850,48,Fits like maternity,"I wanted to love this, was so excited when i ordered it online. the fabric (blue and white) was beautiful, but the cut was bad. it fit me like a maternity top, and made me look like i was 6 months along. i have a feeling that the models had theirs pinned back, in the back, because it does not lay flat like that in front, it has a lot of fabric with no place to go but up and out. returning.",2,0,0,General,Tops,Blouses +940,45,Love!,"This is a very flattering / soft sweater. the pockets make it so much cuter & do not make me look ""thick"". highly recommend!",5,1,0,General,Tops,Sweaters +1095,35,I ended up loving this dress,"I fell in love with this dress when i saw it in the catalog and ordered it immediately. i was a bit disappointed that the dress is a little lighter than the pink showed in the catalog but it didn't deter my liking it because it's still a lovely shade of pink. the fabric takes a bit getting used to though - i thought it would be silkier but it's really a thicker fabric. i ordered a size small and i usually wear size 4. the dress drowned me. so i returned it for an xs, which fit me beautifully. so",5,1,2,General,Dresses,Dresses +868,41,Adorable!,"This is such an adorable tee. the stripes and lace up details are super cute and on trend. i usually take a xxs and that is what i took in this tee. i tried the xs and at 5""1 and 104 pounds it looked a bit loose and long on me. love this tee and highly recommend this one!",5,1,7,General Petite,Tops,Knits +875,65,Order down a size; sooooooooooooo cute!!!,"This shirt runs large, so order down a size. it is comfortable, cute and great for transitioning from summer into fall. adding jewelry really dresses this top up. can't wait to layer it with kimono, vest, pashminas or wraps. great with sandals or boots. glad i bought both colors. it looks much better on, than in the photo/on hanger. great purchase and can't wait to wear!",5,1,1,General,Tops,Knits +940,54,Beautiful poncho,"I purchased this poncho online in the cream color. when it arrived i tried it on to decide whether or not to keep it. i immediately went on line and purchased the taupe color , as well. thank goodness it didn't come in 5 more colors! this sweater is so versatile and beautifully detailed, plus it is very soft. you take one look at it and you know the quality! i think you could wear this dressed up or down and it would be perfect either way. i do agree, it is not quite as long as pictured , but pe",5,1,0,General,Tops,Sweaters +850,41,Love the color,"The green is a deep, beautiful shade. the fabric and fir is very flattering!",5,1,0,General,Tops,Blouses +873,43,Perfect t-shirt,"Love this white shirt! it fits great and gives you a little breathing room around the waist. this goes with shorts, skirts, and jeans. i will be wearing it all summer",5,1,1,General,Tops,Knits +1095,32,Cute!,"I loved this dress on. the material was quite different than expected, almost a canvas-y feel to it. ran a little large, but so cute.",4,1,0,General,Dresses,Dresses +836,33,,,4,1,0,General,Tops,Blouses +836,35,I wanted to love it...,"I really like the look of the top when it is photographed on other people but it just isn't for me. the fabric is stiffer than i would have expected and not very moveable. the fit is not quite right on me. the longer sleeves detract from the look of the shirt. i also generally prefer things a little more form fitting of which this is not. it was not very comfortable for me either, so this was clearly not a win for me.",2,1,8,General,Tops,Blouses +836,47,,"This top is absolutely adorable, fits small on top and then flares out a bit as shown. i bought it months ago and haven't worn it yet though. might try it with white jeans as shown.",4,1,0,General,Tops,Blouses +836,59,Too billowy,"Bought this top at my local store and tried it on as soon as i got home. yikes! it was way too billowy, i looked like i was pregnant. will be trying the next size down on in the store to see if it is billowy.",3,1,16,General,Tops,Blouses +836,31,Must see in person,"Gorgeous baby blue lace is a must see. i received many compliments. my only gripe is that i don't love when shirts have those connecting camisoles (which make it harder to put on) as i would much rather just have a sewn in lining, but it didn't deter me. i am 5'5"", 135lbs, 34c, muscular/curvy frame and a size 4 fit perfectly.",5,1,2,General,Tops,Blouses +865,44,,Super cute poncho to add to my wardrobe. love the grey color and the material is super soft. glad i snagged this up for less than $30!,5,1,0,General,Tops,Knits +836,35,Stunning top,"Great top!! love the fit, it pairs great with dark denim and pearls!! i ordered a 00 and am a 32c cup and 24-25 waist",5,1,33,General,Tops,Blouses +819,31,,This top/jacket is less red than it appears in the pictures - more of a wine color (as it is labeled) but it is pretty and the gold details are nice.,4,1,1,General,Tops,Blouses +865,44,,This sweater is a perfect transition piece! the material is really soft. while it has the shape of a poncho it is cut nicely and doesn't make you look like a big blob.,5,1,3,General,Tops,Knits +836,34,Love!!!,I am obsessed with this top. it is even more gorgeous in person.... a real showstopper!,5,1,9,General,Tops,Blouses +819,33,Perfect for fall layering,Beautiful color and a great lightweight piece for fall layering. the petite sizing was perfect for me. more like a belted kimono. very happy with this purchase,5,1,3,General,Tops,Blouses +819,51,,It's really cute but seems expensive for the type of fabric. i thought it would be more substantial. got lots of compliments .,3,1,1,General,Tops,Blouses +1080,49,Beautiful fabric / odd fit,Really wanted to love dress but something was off with fit. fabric is lovely and zipper detail nice unfortunately style was not for me.,3,0,1,General,Dresses,Dresses +865,53,"Soft, subtle loveliness","This a lovely piece. you have to see it close up to appreciate the subtle details. i typically wear xxsp or xsp, so i did not expect this to fit, but decided to try it because i liked the style. as a petite, many poncho styles overwhelm me and look like tents. not this one. the xxs fit nicely - just the right length and width. i am 5'1"" and 108 lbs. i think one of the reasons this has not been popular is because it only shows up when searching on ponchos, and not when you search for sweaters. it",5,1,0,General,Tops,Knits +836,51,Happy top!,"In the midst of the end-of-winter doldrums, i tried this cute top on. springy. powdery. happy. the lace is soft, not too stiff or scratchy, and lightweight enough to transition nicely into summer. because the cami is a separate piece, i also envision wearing this as a top over a slip-dress with some retro mary janes. the sleeve length makes it fair game for late winter, too. yay!",4,1,1,General,Tops,Blouses +836,39,,"Absolutely love this top. it is beautiful, well made and so unique.",5,1,9,General,Tops,Blouses +836,48,Wanted to love it,"An absolutely gorgeous, but poorly fitting blouse. the bottom part is way too billowy and inconsistent with the fitted top half. got it on sale and still returned it.",2,0,0,General,Tops,Blouses +836,26,"Great overall, but with it's issues","This top is really pretty and i received a lot of compliments on it. i said it ran true to size, but really the torso part runs a little big. if i had sized down, i think it would have been too tight in the arms. the cami that came with it kept falling out, which is no big deal, but be aware that the strings might not hold the cami with the shirt. overall, it's a really pretty blue and the details make it worth it.",4,1,0,General,Tops,Blouses +836,25,"Cute shirt, but not for me",The blue lace with the white top underneath is very pretty. unfortunately i did not like how billowy it was below the bra line.,5,0,0,General,Tops,Blouses +836,31,Not as pictured,It is definitely pinned back on the model in the photograph. it made my 5 foot frame look short and wide.,2,0,6,General,Tops,Blouses +1003,23,Not black,"For reference i am 5'5' 138 lbs with an hourglass figure and my usual small fit perfectly. the problems: 1. this skirt is not black but a charcoal gray/purple. 2. the sipper is reinforces with a stiff boarder on the inside so no matter where i put the waist it sticks straight out making me look like i have a tail under my skirt. in other words, i had a very pointy butt. also the slit or tulip part of the skirt goes all the way up to the waist, it needed to be tacked to the other part of the skir",2,0,2,General,Bottoms,Skirts +836,36,Stunning!,"I knew i wanted this top the moment i saw it, so onto my wishlist it went until it went on sale! it fits beautifully in my normal size and i love that it already has a coordinating tank top. i get compliments whenever i wear it- think hd in paris might be my new go-to!",5,1,0,General Petite,Tops,Blouses +860,56,,"This is probably a blouse for curvy women. with that i mean large breasted. i am a 40d and the xl fits well and the cleavage is in the limit of ok for the office. the bottom is a little too large but not too long. however, the fabric feels extremely comfortable and it stretches but it doesn't lose the shape. i am tempted to buy 2 more. if you are thin, you probably need to size down.",5,1,2,General,Tops,Knits +867,48,Soft lightweight and cool,This tee is super soft and thin. perfect for hot humid days. i went with the neutral version and it is adorable with chino shorts or jean shorts. i found it ran big.. i purchased in xs and still pretty baggy.,5,1,3,General,Tops,Knits +1022,40,Not the same,"I've been buying stevie ankles for years from retailer and been very happy. the past two pairs i bought had a heavy chemical smell, which i imagine is some kind of starch/chemical to keep the denim stiff. with the first pair, after enough washes to get rid of the bad smell (4), they lost all form and looked terrible since they were washed i couldn't return them. the 2nd pair arrived with the same heavy smell and i returned them. it may be they are made elsewhere now, but it's disappointing.",1,0,0,General,Bottoms,Jeans +1098,42,Beautiful!,"Beautiful dress! excellent detail! loved everything about this dress except for the weight. this dress is very heavy which limits my wearing options in fl. given the fabric, this is a great special occasion dress.",4,1,6,General,Dresses,Dresses +1098,37,Disappointed,I'm so incredibly disappointed. the dress is beautiful but the one i received is torn and has multiple strands of beads missing. poor quality control.,1,0,0,General,Dresses,Dresses +825,42,"Yeh, what she said.....","Yep. this is snug, so maybe you might consider upping your normal size. but here's the annoying thing for me...the buttons fell off. not kidding. the first i wore this blouse and two buttons came off. when i looked at the other ones i saw that they all needed to be resewn to keep them attached. what a bother. but i'm doing it because the cotton poplin is nice and the little ruffle is a nice touch that i really like . where am i going to find another? so i'll fix it up the way it should have been",4,1,1,General,Tops,Blouses +708,27,My favorite workout leggings,"These leggings are wonderful. they are incredibly soft, and stay in place when working out.",5,1,0,Initmates,Intimate,Lounge +867,71,,,4,1,0,General,Tops,Knits +850,25,Pretty details,I initially tried this on in store and fell in love with the beautiful cut out details and fit. the star design is really cute and unique and the blue color is not see-through at all. i eventually had to buy the blouse online because i could not stop thinking about it. also machine washable is a major plus.,5,1,0,General,Tops,Blouses +860,38,,"Another shirt i really wanted to love. i adore green but so few tops are made in this color. (please make more!!) however, this shirt didn't work for me. i think it's a matter of where your curves live. the shirt was true to size, but my boobs meant i was showing more cleavage than the model, and the top part felt more like a bib than embroidery. sad coz it is lovely and feels lovely on. probably a great shirt for different body types. would love to see more green clothing....",3,1,1,General,Tops,Knits +946,48,Not what i wanted,"I am reasonably petite, but i like sweaters very oversized and large, so i ordered this sweater in a large. i was very disappointed when the sweater came because while the sleeves and upper chest area were in large, the length of the sweater did not at all increase when the size did. because the lower part of the sweater did not increase in size, the sweater ended up looking very awkward, with the chest and sleeves very large and long but then a very tight and short (waist-length) stomach. i do",2,0,0,General,Tops,Sweaters +1098,25,Weird boobs,"I wanted to love this dress, and thought it would be perfect for a barn wedding i have coming up. it was allllllmost right but sadly fell short. the bib that hangs over the bust hits in a really unflattering mid point that makes you look wide. nipple tassels effect. plus i would feel the urge to keep pulling it down. did notice some of the puckering others mentioned but didn't bother me, however, the way the lining and the dress line up at the bottom did. so close, so sad",3,0,1,General,Dresses,Dresses +867,28,Nothing special,"I ordered the grey/yellow ""here comes the sun"" shirt. it's cute, but it runs quite large and isn't special enough for the price. meh.",4,0,3,General,Tops,Knits +1098,56,Great find.,"This dress has special written all over it. the poms at the hem and bodice, as well as the rows of black seed beads push are the kind of details that stand out. i like all the varying textures. it looks great with sandals or short boots. fits true to size. a nice sassy length.",5,1,0,General,Dresses,Dresses +860,46,Wish it was longer length,"I ordered the light pink version in size xl. the details of the top and the shade of pink are pretty. but, the shirt fits me much shorter than on the model. i'm not quite 5 ft. 6 inches so it should have worked. the material is thin so i was able to stretch it out to give more length. it does look stretched-out now though. i washed it and it shrank a bit so i stretched it again. this is a top that i kept to wear under vests. the pretty colors and the softness of the material make it worth keepin",3,0,0,General,Tops,Knits +1098,50,Great summer dress,I found this dress at my local retailer must be a web order return i feel in love with it once i put it on its better in person that online but it does run a little tight in the chest area it was fine for me as i'm not big busted,5,1,2,General,Dresses,Dresses +1098,61,Looks like a babydoll dress,"I wanted to love this dress as it would have been perfect for a wedding i have in october however, the fit was awful;. the dress was heavy with a funky liner. it also had these little black straps around the top of the arm/neck that looked out of place. it ran true to size but i have a large chest (32dd) and it was pretty fitted around the area but loose everywhere else. + +sadly, dress had to be returned.",3,0,0,General,Dresses,Dresses +1022,42,Great jeans!,"I tried these on in-store not intending to buy them (was trying on shirts and needed to see how they would look with jeans!) and loved them! great ""medium blue"" color and they fit me so nicely (i am 5'2"" with actual hips and thighs :) ...the price is a bit high for me though. hoping to find a pair at some point when they are on sale!",5,1,1,General,Bottoms,Jeans +946,40,"Beautiful and soft, yet length is deceiving!","It is such a cute design and very soft and comfortable, but the picture for this product is very deceiving! it looks like the sweater is fairly long in the pictured product page, but it is considerably short. i am nearly six foot tall, but thought by this picture it would be lengthy, not at all! +it is a beautiful sweater, might work better for a shorter stature.",2,1,0,General,Tops,Sweaters +850,40,"Love the way it looks, but couldn't keep it",I ordered this blouse online bc i couldn't find it in my local stores once it was on sale. the fabric is so delicate. the cutouts had already frayed and in some places torn. had to return it.,2,0,0,General,Tops,Blouses +895,52,As expected,"I like this top. yes it is very cropped and fitted but that's the style as shown on the model in the picture. but its true this style may not fits everyone. it probably flatters those of athletic or petite figure more than a full figure. i am 5' 6"" 110#. my usual size is xs. the top looks small to me at first so i tried both size xs and s. i took the xs cause i like it look fitted than loose. i wear this top with high waist fitted skirts or pants and it looks great. if this top can be an inch lo",4,1,2,General Petite,Tops,Fine gauge +850,33,,Very disappointed. the cutouts started to rip the first time i wore it. i've only worn it twice and i love it but the cut outs are embarrassing.,1,0,0,General,Tops,Blouses +895,32,Not what i expected,"Huge bummer. this top is definitely a crop/midi-top. plus, it's cream, not white like shown in the photos. i'm returning it today.",2,0,4,General Petite,Tops,Fine gauge +861,47,Comfy,Love this soft sweatshirt. the peplum makes it a little different and the quality is great. go to piece for spring. loose fitting but true to size in shoulders.,5,1,0,General,Tops,Knits +1098,69,,"I was so excited to get this dress. i need it for a wedding, and i thought i had hit the jackpot. the dress arrived with a small tear. the seams are puckered and badly seen. for an almost $300.00 dress, the quality is terrible. i expect better from retailer. i'm so disappointed.",2,0,7,General,Dresses,Dresses +825,48,Odd cut,"This is a very pretty shirt which is too narrow across the back. i need to be able to move my arms freely at work, so this did not work for me. you may be able to size up for a better fit if moving your arms is important to you.",3,0,1,General,Tops,Blouses +850,41,Beautiful winter color,"Beautiful and very feminine look but run big. i m 5ft 105 lbs curvy , size 00 fit me well",5,1,10,General,Tops,Blouses +861,66,Comfortable,"I really like this jacket. very comfortable, nice material. i like the weight of this jacket, i wore it alone but it will be cute with a t-shirt under it too.",5,1,2,General,Tops,Knits +1110,38,Love it!,"Ordered this dress for a summer wedding. it is so cute! true to size, well made with a hint of tulle. super comfortable for moving and dancing. winner!",5,1,6,General Petite,Dresses,Dresses +867,44,,,5,1,0,General,Tops,Knits +860,40,"Odd, boxy fit","I purchased this shirt in grey. i loved the color and the details, especially the lace on the shoulders. i just found the fit to be off for me. the style certainly calls for a relaxed fit but the small was loose in an unflattering way. had the xs been available i might have considered exchanging for an xs but the s was already a bit short on me. (strange because although i am not petite, i am fairly short wasted.) i also wasn't in love with the neckline. i will continue my search for a weekend-w",3,0,0,General,Tops,Knits +860,36,,"Very nice top, fits true to size, a little short buy looks nice with jeans or work pants",4,1,0,General,Tops,Knits +860,40,Unflattering,It's short and wide. not a good combo for anyone who isn't stick thin.,1,0,7,General,Tops,Knits +946,36,Umm what is this,"I wish i had read all the reviews before purchasing. the sweater looked liked everything i would be interested in online. once i pulled it out of the bag, my first thought was how could retailer send me a used, washed and shrunken sweater. it is nothing like the picture. it fits like a midriff top, not exaggerating. i'm 5.6, ordered the m, don't waste your shipping money on this.",1,0,1,General,Tops,Sweaters +946,48,,I purchased this sweater in a small . nothing on the web site states it has dolman sleeves! it looked sloppy and made my bust disappear! it went back i hate dolman sleeves.,2,0,1,General,Tops,Sweaters +867,52,,Love this t-shirt. the weight is great for the impending heat and humidity of summer. it looks positively fabulous for casual occasions with pilcro chinos in moss and fuchsia suede pumps.,5,1,2,General,Tops,Knits +850,44,Very delicate,Cute top but started disintegrating after two washes. the delicate cutouts in the top tore apart. i machine washed it in the gentle cycle and didn't use the dryer. disappointed to have to discard the top after just buying it.,1,0,5,General,Tops,Blouses +867,49,Nice summer t-shirt,I purchased the yellow and i am quite happy. it matches a lot of things that i already own. nice summer tee.,5,1,1,General,Tops,Knits +867,40,This shirt will brighten you day,"I bought the ""here comes the sun"" version of this shirt. i had to have it. i'm a cervical cancer survivor who is still dealing with some health issues. i recently attended a cancer survivor event where a women talked about her life with cancer. she said that you no longer counts the years of her life, instead she counts her sunny days. i was inspired to do the same. so, i love this shirt. i got it on sale, but it still could've been cheaper.",5,1,0,General,Tops,Knits +850,43,Too delicate,"I received this as a gift. it is a very pretty top, but the material is sooo delicate that the cutout areas were torn in many spots and where it wasn't torn completely you could see it fraying. the sales associate said they get many returns on this item.",1,0,4,General,Tops,Blouses +867,49,Very cute tee!,"Love this tee! lightweight, airy and comfy. i think it fits true to size. so soft and summery. can't wait to wear it this summer!",5,1,2,General,Tops,Knits +860,43,Beautiful and tailored.,"This is much more a blouse than a ""tee"". the detailing is beautiful and the fabric on the back is a more stuff, starched cotton, not stretchy jersey. because of that i felt like this top ran small. i had to size up.",5,1,9,General,Tops,Knits +850,29,Star print is so pretty!,"I tried this on today and i wish i had taken it home. for me it was true to size, and the star print was perfect. flowy but not in maternity way at all. i'm gonna have to go back for this one!",5,1,3,General,Tops,Blouses +867,66,Soft and cute,"This runs way big. i would recommend sizing down at least one size. possibly 2. + +i got the design with divers. it's fun and light for summer. soft material and very comfy.",4,1,2,General,Tops,Knits +946,54,,"Although i love the soft feel of the sweater, the zig zag design was very unflattering. also, the length is much shorter than appears in the picture. i will be returning it.",2,0,0,General,Tops,Sweaters +1110,49,Lovely but armholes too revealing for me...,"Wished this had worked for me! however, i prefer smaller armholes so my bra and skin (not so young anymore) don't show. the beige lining shows at the armholes as well. on the upside, it's very slimming even with the stiff petticoat. so cute! perfect length for me. another caveat -- if your back is not completely symmetrical, as mine isn't, the decorative back straps sit in a wonky position. i'm 98 lbs, 4' 10"", and the oop was perfect but for the above objections.",4,1,7,General Petite,Dresses,Dresses +1083,34,Very cute everyday dress,"The retailer store by me only carried these in the petites, but i've learned to always snag a petite just to see because sometimes the petites fit just as well, if not better, depending on the length of the outfit! +______________ +pros: +- looks exactly the same in person as online. color runs true. +- well made, good stitching, solid dress. +- great length in the sleeves. +- fits tts. i'm normally a size 10 or 12 and grabbed the 12p to see how it'd fit. other than being too short in length on my",4,1,8,General Petite,Dresses,Dresses +867,62,Simply dive-ine!,"Love the diving beauty version, it is charming without being too ""cutsie"" which i stay away from. the epitome of summer and that grab and go easy little statement. i find it runs true to size...you could safely size down if need be. love it! thinking of getting the here comes the sun too! tuck it in, tie it in the back or side or great just draping...love the little touch on the sleeve too...nice surprise!",5,1,2,General,Tops,Knits +861,49,A lovely piece to be worn and cherished,"This is great. on the model it looks largish, but on me it doesn't. if you're curvier like me (5'10"", 155, 32e) it may be more fitted. long arms with great wrists. design is just as shown. not a sturdy piece. but not cheap looking in any way. i plan to hand-wash and not drop coffee down the front so i can wear it for a long time. just what i want to wear on certain days, and more colors would be great. thanks, retailer.",5,1,13,General,Tops,Knits +860,42,Flattering tee,This is a really flattering tee for my curves. pretty lace details. i purchased the gray and ordered the wine. the pink looked more peach to me in the store. only reason for 4 stars is that the back material wrinkles easily. true to size (large) for me.,4,1,8,General,Tops,Knits +1081,55,Classic,"Comfortable material, fits true to size, love the color and can wear all year round. selected this dress for a fall wedding and its a keeper!",5,1,1,General Petite,Dresses,Dresses +1110,30,Lovely dress,I stumbled across this dress at the store and fell in love. it's so bright and cheery but still sophisticated enough for most events. i love that the tulle that gives the skirt a slight flare and body is completely concealed. the dress is well lined and darling. i am small chested so i didn't have an issue with it feeling revealing nor did the lining hang out. i purchased this for my rehearsal and rehearsal dinner for my summer wedding. i look forward to wearing the dress many times after.,5,1,1,General Petite,Dresses,Dresses +1098,54,Sassy maxi,"I""m not crazy about maxi dresses so when i found this fun print with fringe-it spoke my language. love this dress. feel this dress will work with many seasons. dress falls nicely and feels comfortable. i was worried it would be too long but with a 2 inch heel-its perfect. have paired it with some red dangled earrings that spice it just right.",5,1,0,General,Dresses,Dresses +1083,38,A poor quality dress,"For the price of this dress, i was expecting something decent. the style is cute, but nothing more. however, the type of the polyester that the dress is made of.... oh my. it is a thick unpleasant material, that will cling to a body when it is hot. i never came across an item at retailer that was made this cheaply. +the tag on the back was hanging at half and the button on the front was ready to come off before i even tried this dress on. +no need to say - it's going back asap. +you should not sel",2,0,4,General Petite,Dresses,Dresses +946,43,This sweater is short in length,"I have been wanting this sweater and decided to order. when i received it, there was no tag on the product. it was not in a typical clear bag from retailer and it wasn't packaged nicely. it came from reno, nv. most products i order do not get shipped from there. it is short, and i'm 5'1"". most clothes that are short fit me with no problem. this sweater might hit me at the waist, or maybe shorter. i think the color is nice and the sweater is soft but not what i wanted. i am going to return it",3,0,1,General,Tops,Sweaters +936,39,Signature retailer sweater,"Fantastic signature retailer styling with this unique statement sweater. the pattern placement has a slimming look on the front and a rear enhancing look from behind. i've been using the super soft removable fur collar as a scarf and stole for my other outfits as well. the length is almost tunic on me, so it looks great with leggings and skinny jeans while buttoned up. if you choose to remove the fur collar the v-neck is very open, so i keep it unbuttoned when i style it that way. knit fabric is s",5,1,0,General Petite,Tops,Sweaters +1098,26,Beautiful and unique dress,I purchased this dress for my bridal shower and it was perfect! the details on it are amazing-delicate and lovely! i am 5'11'' and it hit just above my ankles which i loved because i could show off my shoes!,5,1,0,General,Dresses,Dresses +1081,34,"Nice dress, fit is ok","I love the style of this dress and the color is beautiful and very much like the photo. like previous reviewers mentioned, the top is a little loose in comparison to the bottom. i originally bought a size 4 but then exchanged it for a 2. i tend to be between those sizes. the 2 fits great on bottom but the straps are a bit loose. it might be better for bigger busted ladies!",4,1,0,General Petite,Dresses,Dresses +867,65,Really soft,"I bought the design which has now sold out, of the sailboats and waves along the top. the t-shirt is super soft and thin. but, it's not sheer or see-through. very light and cool for hot humid summer days. has some nice stretch as well. a really gentle cotton knit. + +this top does run large. maybe that's so it will be cool and not stick to you? thus, i didn't size down because i don't like clothes too form-fitting on super hot days.",5,1,0,General,Tops,Knits +1081,36,A little big up top,Overall i really like this dress. the color is vibrant & unique. the top of the dress especially the shoulder straps seem loose so i'm getting it tailored.,4,1,0,General Petite,Dresses,Dresses +860,23,Lovely lace top!,Bought this in green at my local store and fell in love with it! i also tried one in pink and it was a bit sheer which is why i opted for the green color instead. very nice and feminine.,4,1,0,General,Tops,Knits +1110,43,Skirt flares more than it looks,"Very cute dress but the skirt flares out more than it looks in the picture. this made my midsection look unflattering from the side. also, for some who is on the flat chested side, you need a good bra or alteration (at least for me). despite what i listed above, i kept the dress since it's a versatile dress for many occasions.",4,1,2,General,Dresses,Dresses +1110,35,"Oh, so gorgeous","I just couldn't resist this dress! it's blue, it's fun, it's feminine. the color is so vivid and beautiful in person. i was worried that the length would be an issue (i bought a regular size instead of my normal petite), but i feel that it is perfect. it fits great, and i know i will wear it a lot this summer.",5,1,0,General,Dresses,Dresses +1022,37,Love these jeans!,"Great fit, perfect length! so happy with these jeans. the fabric is pretty stretchy but definitely still has a denim feel. very soft - love these jeans!",5,1,3,General,Bottoms,Jeans +850,44,Beautiful feminine blouse,"I bought this top at my local retailer in a burgundy color. it is so beautiful and feminine. i want to get it in the other color they had in the store and also this black one available on-line. i bought it in a size 6 and i am 5' 2"" , 34d. i sometimes get tops in petite but i felt the reg size fit just fine.",5,1,21,General,Tops,Blouses +860,48,Great detail,I purchased this item as a gift for my wife and she loves it. the quality for the price is great. soft and comfortable. needs to be washed with care but is worth it,5,1,0,General,Tops,Knits +1110,43,Pretty; low cut arm holes,"Gorgeous fun dress, but the cut in the armholes (6 petite) is really low. so low even a strapless bra peeks above it. there are also lining issues (could have been with just my one choice) where the lining is not stitched well around the armholes so it shows too much. back is stunning. i would say that if you can go bra less this could be so awesome. it didn't work for my body because i have to wear a bra, but i think its a winner for someone.",3,1,5,General,Dresses,Dresses +1074,50,Very pretty - runs large (busty petites rejoice 3),"I kept the size 8 of the dress and had to return the 10 as it was too roomy at the arms and chest (which is great!!!). material is nice and not too much material, hangs nice (its a swing). another win!",4,1,2,General,Dresses,Dresses +1094,37,Love this dress!,"Many compliments - great color and so comfy. most of my dresses from retailer are maeve brand, and i have never been disappointed.",5,1,0,General,Dresses,Dresses +1025,59,,Tts and very very sleek and flattering. just love for summer. nice light weight. feel great on and not saggy. nice color addition since my other favorite are lighter shade of blue.,5,1,1,General Petite,Bottoms,Jeans +1094,56,Gorgeous turquoise color,"I really love this this dress, but i agree with the previous reviewer about the belt around the waist-it is a draped piece of fabric that is very figure flattering where it wraps, but one side of the dress has no belt and it shows muffin tops/bulges.i would have loved this if the belt went all the way around. one other point i would like to make is that bra straps are hard to conceal. i bought this dress because of the gorgeous color, but ended up returning it because of the belt and bra strap i",5,1,19,General,Dresses,Dresses +230,30,Skarlett blue demi convertible bra review,This is by far the most comfortable bra i've ever owned. i love the convertible strap feature. it's great for shirts with a back cutout.,5,1,1,Initmates,Intimate,Intimates +837,67,Much cuter in the picture,"This top runs small across the top. i was amazed at the material--polyester, i am sure--because the price was so high. it has a sheer layer underneath, which i think would make it hot in the summer. i love this kind of tank but it just did not look as good as it does online.",3,0,6,General,Tops,Blouses +1081,45,Cute and comfy dress,Love this dress. the fabric is super soft and flowy. be aware that the model is a tall gal.... i'm usually a size 8/10 in dresses and purchased a large. returned it for a large petite as it went way past my knees. looks funny if it is below the knee. the petite is perfect.,4,1,2,General,Dresses,Dresses +837,44,Adorable tank!,"I bought this tank in the blue popsicle print, and i think it's cuter in person than it is online. the beautiful pastel colors on the popsicles really stand out and make it special. i am normally a size 4-6, and the small fits me perfectly. also, i appreciate that it's lined. i wore it with skinnies, and received lots of compliments. it's the perfect tank for summer!",5,1,1,General,Tops,Blouses +442,32,,"Very pretty but also very roomy. i'm using it as a swimsuit cover up, so it's perfect!",4,1,0,Initmates,Intimate,Swim +1025,37,Almost,"I ordered these in my typical size, 26, and they fit everywhere perfectly except the butt. for me, i found them to be too tight in that area. i went to the store and tried on the 27 and they were too big in the waist. i do recommend them though. they are well made, i loved the wash and the length was perfect. being 5'3"" they came to the lower ankle and that was fine with me. give them a try, hopefully they work better for you.",4,1,3,General Petite,Bottoms,Jeans +1094,39,Lovely feel and color,"I tried on the xs in the store (115 lbs, 30dd chest, short). fit: i think it is a little big, i would tend to go for a xxs petite in this for me, the length was ok, but would look more flattering in petite. also, the waist was on the looser side. the green color is amazing though, very flattering and springy/summery. the flow of the dress is also very nice. the weird thing is the belt at the waist, it starts a little off from the seam, and doesn't go all the way around, not sure if i love it or",4,1,24,General,Dresses,Dresses +744,63,Beautiful chemise!,"This well made chemise is figure flattering and just the right length for me (5'2""). i would wear it as a slip or a nightie. looking forward to wearing it!",5,1,0,Initmates,Intimate,Intimates +1081,54,Wow!,"This is just a fantastic dress! i bought it in my usual m in the blue and it fits like a glove. i love the varying lengths and the adorable sleeves and the substantial knit which feels amazing on the body without revealing any bumps and lumps :) i took the regular length and found it perfect. the front hits about two inches above my knee and the rest hits a bit lower. i'm only 5""1, but i prefer dresses that hit closer to my knee than mini so the regular was perfect for me +definitely a keeper!",5,1,3,General,Dresses,Dresses +1094,40,Perfect ease,"This dress is perfection it is extremely comfortable and versatile. great for dressing up or down. i am large busted (36g) so was delighted that it stretches as this is a problem for me finding clothing to fit allover. i am petite 5""1 with a curvy figure and a regular medium fit great!",5,1,1,General,Dresses,Dresses +1081,46,Very messy t-shirt,"I ordered this in the ""plum"" color, which in real life just looks like a very, very dark brown. that would probably be okay, but the dress is actually about 3 inches shorter than the listed measurements. i ordered the regular length, but the shortest part of the hem hits me only about halfway down my thigh...way, way too short. i am 5'5"", for reference. lastly, i think the fabric is just awful quality, especially for this price point. the slight texture makes it want to cling to itself - worn ou",2,0,0,General Petite,Dresses,Dresses +837,23,Down with drycleaning,The price is high and i have to dry clean this? no thanks.,2,0,0,General,Tops,Blouses +1094,42,Great maxi dress,"This is a great summer maxi dress. i am 5'4"" 120lbs, about a size 4 in dresses, 32dd. i got this in an extra small. i was really happy that on someone my height, it's just a few inches above my ankle, so did not shorten me at all. the straps were a good length, and the waist hit at the right spot. i don't think the waist detail not going all the way around is a big deal, there are the little snaps in the straps for your bra, and skirt is lined. the turquoise color is really pretty and the fabric",5,1,5,General,Dresses,Dresses +1094,30,Bad fit for me,"This dress had so much promise from the picture. i loved the midi length, color, and fascinating waist detail. i ordered online, so there was no way to try on before purchasing. the fit was disappointing. it fell in an unflattering manner at every point; a tad too low at the waist; a tad too long at the shin. just kind of saggy all around. bummed, but this is not to say it wouldn't fit someone with a different body shape better. the quality of fabric is nice, and the color is lovely.",3,1,0,General,Dresses,Dresses +1081,29,Comfort,This dress is super comfortable and the material is so soft. the fit is very flattering and will cover any imperfections if you are heavier and want to hide anything. its more fitted in the top and drapes on the body very nicely. the hem is asymmetrical and the highest part of the hem hits about 2 inches above my knee and i am 5'3.'' i will wear this with tights for work. color is very nice also.,5,1,0,General Petite,Dresses,Dresses +1081,47,"Great dress, too short","Dress is very pretty, but very short, almost tunic length.",3,1,0,General Petite,Dresses,Dresses +1081,36,Perfect for everyone!!!!,"I love this dress!!! it's comfortable, flattering and stylish. looks great with flats or boots - awesome with a chunky scarf and tights.",5,1,0,General Petite,Dresses,Dresses +1081,52,,,5,1,0,General Petite,Dresses,Dresses +1094,40,Beautiful summer dress,"I loved this dress on way more than i expected to - the pictures don't do it justice. the fabric is soft and is a really nice weight - heavier than i expected, which makes the dress hang in a really flattering way. the belt doesn't go all the way around, as other reviewers said, but i actually kind of like it that way. i almost didn't try it on based on some of the other reviews, but i'm sooooo glad i did. it's a really cute dress - will look great as is, or with a light cardigan if it's a littl",4,1,2,General,Dresses,Dresses +1081,45,"Comfy, runs large","I like the style, but i ordered an extra small (i am5'4' 120#) and it was still too loose fitting on me, had to return, hopefully exchange for xxs",4,1,0,General Petite,Dresses,Dresses +1094,36,Super comfy dress,"I ordered a regular size xs and the length is still fine for me at 5'2"". i love the color and the fabric is super soft and comfortable. i'll get a lot of use out of it this summer and the sale price is a great bargain!",5,1,1,General,Dresses,Dresses +1025,34,They keep their shape,"I'm a big fan of paige jeans. these are perfect for my petite frame. at 5""3' they were ankle length. i tried my normal paige size and ultimately sized up for a better fit at the waist.",4,1,2,General Petite,Bottoms,Jeans +775,66,Don't size up,This top is oversized. i normally wear large but thought an xl would be best for sleeping. it's huge. so stick with your normal size or a size down. pretty print. fabric is a bit coarse. undecided about trying a size down because i'm particular and they didn't wow me. also ordered these in the lighter color and they fit the same.,3,1,0,Initmates,Intimate,Sleep +1081,45,"Really cute dress, if you can do the handkerchief","This is, like many reviewers stated, a very flattering and nice dress. the sleeves were particularly great, because they are slightly longer than most of this type and went past the meaty (for lack of a better word!) part of my arm, only exposing the slimmer bits. it looked great on me, and i imagine it would on most people. i just did not like the handkerchief hem....too young, too trendy? i don't know, when you're in your 40s, you start to feel ridiculous in certain styles! i just didn't feel",3,1,0,General Petite,Dresses,Dresses +1094,48,Gorgeous,I am so glad i tried this dress on. it is so chic and beautiful! perfect for an evening out or during the day. i can't believe the price!,5,1,0,General,Dresses,Dresses +1094,26,Worst purchase ever,"I'm a big retailer buyer- and usually love the dresses, especially the petite xs maxis. this was the worst retailer purchase i have ever made. + +it was humongous and gave me no shape. even if i purchased an xxsp it probably would be the same. i'm small but i mean come on- this would only fit a giantess-- which also makes no sense because it's the petite size. + +do not buy. i'm very upset i have to pay the $5.95 return fee since i ordered this.",1,0,0,General,Dresses,Dresses +1094,59,Not good quality,"The dress is just ok. i cannot imagine having paid full price for this. i got it for florida vacation. i put it on to wear to church first and spilled a drop of lavender oil on it and it stained!!!! cant get it out. thats punk for a dress that even on sale is like. +sending back",2,0,2,General,Dresses,Dresses +1094,33,Great summer dress,"I tried this on in store and was very close to purchasing, but ultimately decided against it because it was too in between causal and dressy to me. i couldn't imagine where i would wear the dress. it was great quality and the green color was very pretty on. you could find a way to wear a bra with the dress.",4,1,0,General,Dresses,Dresses +442,53,Summer and spring go to tunic,I love this! i will sport it in the spring with white capris/ leggings and awesome for a beach cover-up! the fit is comfy the embroidery gives it a feminine touch. i purchased the large but could've gotten away with a slender fit in medium. i am 5'4 170 lbs.,5,1,1,Initmates,Intimate,Swim +1081,52,Great style,"I loved this dress and purchased it in my usual m. however, i agree with another reviewer that it is too long for me at least, so i returned this and will buy it in petite instead. if you are shorter (i'm 5'2), the regular length doesn't fall right, the shorter front section falling right at the knee and the longer section falling halfway on my calf . but great style! looking forward to seeing it on me in the petite.",4,1,0,General Petite,Dresses,Dresses +1081,39,Beautiful casual dress,Love! highly recommend...usually i wait for sale price but this was worth the extra splurge. so flattering!,5,1,0,General Petite,Dresses,Dresses +1081,51,Perfect and easy to wear dress,"This is a great dress for all body types. the fabric is substantial and soft. i sized down for a closer fit, but i could have also bought my usual medium and had the extra space to belt it and wear a looser fit. i busted out the boots, a little early, and the outfit was done. super easy to wear, dressed up or dressed down. totally worth the price, i'm glad i didn't wait until it went on sale for fear of selling out.",5,1,0,General Petite,Dresses,Dresses +1087,31,Muumuu,"Looks fitted on, but this just turned out to be an oversized muumuu on. the fabric also felt cheap.",1,0,0,General,Dresses,Dresses +1081,43,Great fall dress,"This is a solid well made transistional dress going from late summer to fall. i'm 5'7"" and got the medium and it falls a little above my knee. i could see it being very flattering on many body types. i do think you need to accessorize the dress as it is on the bland side. i bought the plum/brown color and am very happy with it.",5,1,0,General Petite,Dresses,Dresses +1025,57,Makes my butt look amazing!!,"Perfection! i am 5'3""/108 and the size 25 fit me like a glove. beautiful color too!! highly recommend!!",5,1,0,General Petite,Bottoms,Jeans +1094,39,Not a halter?,"Thrilled that this not only fits great on me but i got it at a deep sale price! all the problems that the negative reviewers had did not apply to me at all. i'm so glad i gave this a try. my body is large on top with a square waist, a bit of a tummy, no hips or bum and the medium petite skimmed over all my flaws and made me look more proportionate. not sure why this is called halter though. i am 5'3"" 36dd, wide torso, size 28 jeans, 140#.",5,1,2,General,Dresses,Dresses +1094,36,Beautiful color and drape,"Love the style of this dress (length, hem, waist details, material)! i think it looks best on curvy women due to the waist detail only going part way around. it doesn't give the entire waist definition, which is why it would look best on someone who has a naturally defined waist. this is a pretty unique dress, which is one of the reasons i liked it. i agree with one of the previous reviewers about it being hard to conceal your bra straps. unfortunately for me that is a deal breaker because i rea",4,1,3,General,Dresses,Dresses +1087,38,Not a midi on me but still so cute,"So i got this on sale and the only size they had was a xs petite. i didn't have my hopes very high but i thought i would give it a shot. the dress came today and it fit great. i am 5""6"" so the petite came just above my knees but the dress is still adorable. the material and cut is great. this is not what i was looking for but it is a welcome addition.",5,1,0,General,Dresses,Dresses +1094,59,,This dress is beautiful. it is longer than it looks on the model (i'm 5/5) but drapes beautifully. it is perfect for a wedding or a special event. i love it!,5,1,0,General,Dresses,Dresses +1094,37,Comfortable and pretty,"I have mixed feelings about this dress. the color is fantastic. not too bright, not too dark. the material is super soft and comfortable and the length was perfect. i did end up returning this item though as no matter which bra i chose, the straps showed. it just was not hitting my right on the shoulders. i do not like having my bra straps show or constantly be trying to tuck them away (especially at a wedding or work?). this is what ultimately led me to return the dress ? even though it is beau",3,0,2,General,Dresses,Dresses +1081,48,Perfect everyday dress,"This dress is super soft and really flattering. i'm 5'2"" and i tried a regular size m in the store and hated it on me, but decided to order a petite m and give it a try and i love it. it's one i've been wearing a lot with ankle boots and all sorts of jackets. it's great for these fall days that are still warm-ish. would be really cute with tights.",5,1,0,General,Dresses,Dresses +442,47,Beautiful embroidery,"This cover up has great potential. i love the embroidery. the colors and design are great. however, it has a number of loose strings. it makes me wonder what might happen when i wash it. the fabric is on the thinner side, but it is not see through. the fabric would be nice for a hot day by the pool. i caught it on sale, so i am keeping it.",4,1,0,Initmates,Intimate,Swim +1072,36,"So cute, but so big!","The design of this dress is darling and so unique, and it's very well made. but i agree it's very boxy and overwhelming for a petite frame. i'm 5'3"" and ordered the 2, and it was like wearing a hospital gown. if a petite were available i'd have tried that, but this one's going back. shame, too, because it's adorable. the gap in the neckline could easily be stitched or sewn shut, but that's an inconvenience when this dress is already priced so high.",3,1,3,General,Dresses,Dresses +829,25,"Excellent cut and idea,poor fabric c","I love the cut and aesthetic of this shirt, but the fabric unfortunately shows even the slightest hint of sweat, which makes it difficult to wear without being self conscious",3,1,2,General Petite,Tops,Blouses +1175,30,"Very cute, runs small",Despite other reviewers comments on size - i really wanted this one to work so i ordered it. i'm typically a size xs and d chest and instead i ordered a small. the body of the sit for well but the cups of the suit i'd said for more for a b. (if i lifted my arms i would literally come out of it),3,0,5,Initmates,Intimate,Swim +952,57,,Love the sweater. the knit has a rich look and the fit is perfect. i paired it with a printed pencil skirt for an eclectic look. strongly recommend to your wardrobe.,5,1,0,General,Tops,Sweaters +411,55,,,5,1,0,Initmates,Intimate,Intimates +829,24,Cute shirt but really strange design,"This is a nice shirt, but i can't keep it. i ordered a 0 and i do have an athletic build with somewhat wider shoulders given how petite i am (usually wear 00 petite in all pants) and i think this size was perfect (fit across the back perfectly) when you lift your arms the way it is cut makes it really tight across the chest and shows your stomach. at the same time, the high low styling makes for a really strange shirt-tail in the back. i'm sure this is the trend but it really does not look cute",2,0,3,General Petite,Tops,Blouses +411,38,Too tight and too big at the same time.,"I'm a 32-a, and i bought a small. i found that the tube portion is pretty tight, but probably needed to keep things up. because there is not a clasp in the front or back, it is really hard to get in and out of. i'd probably be ok with it, but the cups were too big for me. i think i would need to be a c to fill it. +the quality is really nice and the molded cups are a good shape. i wish i could have made it work, because it was really comfortable. i returned it in the end.",3,1,0,Initmates,Intimate,Intimates +411,37,Best strapless ever,"Hi ladies, +does this bra take a contortionist to put it on the first time? yes. did my boyfriend laugh at me hysterically while i tried to get it over the girls? yes. however, i am a large chested girl 34d, i bought the large and this is honestly the absolute best, most comfortable, amazing, non hurting/poking best strapless bra i have ever owned. i just bought three more, just in case the first two wear out. i love this, i love how far it comes down on the sides, i love that it doesn't slip do",5,1,0,Initmates,Intimate,Intimates +952,35,Perfect,"I just got this in the mail & had to immediately write a review. i love it!. i took a risk & ordered the xxs, which i assume is a 00. it fits me perfectly so i would say it runs large. i'm a true dress size 2 but usually wear a 0 or xs in us sizing. the shoulder length from seam to seam is about 14 inches. i'm 32c-24-34. hope this helps!",5,1,0,General,Tops,Sweaters +829,34,Love it,"This shirt feels so nice, it's heavier weight and so soft.. i think it's lyocel... such a great drape to the shirt that is so flattering. i am 5'8'' 128lbs and 34c/d and purchased a size 4. found this item to be true to size, if not slightly loose, but i love the flow of it. highly recommend, the green is classic and timeless, very versatile.",5,1,3,General,Tops,Blouses +829,34,Great shirt,"Love it! the light blue is a gorgeous color. i thought this might be more chambray, but i'm happy it's not. it's also stitched at the top so no awkward accidental peep show or need for annoying tape.",5,1,3,General,Tops,Blouses +829,49,Great purchase,"Love this top! i bought it last month in the olive green color and love it. great quality fabric, comfortable and can be dressed up or down.",5,1,0,General,Tops,Blouses +411,29,Runs very small,"This bra runs very small, and is hard to get on and off. i think if i went a size up i would be happier.",2,0,0,Initmates,Intimate,Intimates +839,44,Much thinner,"I was so excited to receive this top but was immediately disappointed! it is much thinner than it seems & it almost feels like a cheap top. it's also see-through but i'm not bothered by that. it has a very boxy cut which i like with slimmer bottoms. but overall, i didn't care for this top & expected it to be more structured & stiff rather than flimsy & thin. it's going back...",3,1,3,General,Tops,Blouses +411,48,Good luck getting it on!,You have to be a contortionist to get this bra on. it slips over your head and i needed my 8yo daughter to help me pull it down past my elbows. ridiculously impractical. why oh why didn't heather give it a hook and loop closure instead?,2,0,1,Initmates,Intimate,Intimates +839,23,Very versatile,"I love this top, i dress it up when i need to be more professional and i dress it down with a pair of cutoffs when it's warm. it is delicate, however, so i try not to wash it too frequently. the front is a bit boxy, which the model demonstrates. the model really encompasses the crisp whiteness of the shirt, the flow of it and the length.",5,1,0,General,Tops,Blouses +952,45,Cute but itchy,Great fit and design but the wool is too itchy and rough. will need a layer underneath,4,1,6,General,Tops,Sweaters +829,38,Would love the cut but,"This was going to be my go to top. i loved the look of the billowy shirt, especially in light blue. when it arrived, i knew it wouldn't work for my body. i'm athletic build with muscular upper arms and a d cup. i tried it on anyway. i really wish it fit. it was snug in the upper arms and pulled a bit in the front. i knew if i ordered a size up the arms would still be tight. it's just the cut of the shirt. this top is best for someone that isn't busty and has slender upper arms.",3,0,17,General,Tops,Blouses +411,41,Comfortable strapless,"While there us no clasp and this bra does require you to pull it over your head, i did not find it to be too difficult. i love that the bra stays in place and that i do not have to constantly pull it up throughout the day! it's quite comfortable too. i wish i had ordered the same bra with the straps too before they sold out of my size!",5,1,2,Initmates,Intimate,Intimates +952,53,My new favorite pullover,"Slighty fitted, flattering, very soft and not itchy. the orange is a very nice color.",5,1,0,General,Tops,Sweaters +1072,29,Top gapes open,"I was looking for an oversized silhouette but this is more like a beach cover-up. the waist does not have elastic or any structure. the top fabric is crossed over but not sewn closed, and because the fit is so loose it just gaps open. the fabric is nice quality but i am returning.",2,0,2,General,Dresses,Dresses +993,35,,,3,0,0,General Petite,Bottoms,Skirts +829,33,Great top to transition to fall!,"I got tons of compliments when i wore this top out a couple weeks ago. it is a little bit shorter than i thought, and a little bit loose (not ""baggy"" but just kind of hangs). if you have a larger chest, this may not be super-flattering. the color is really pretty and looked great with dark skinnies. i bought my normal size (after trying on a size down, which was just too short...and i'm 5'2)",4,1,0,General,Tops,Blouses +829,28,Nice shirt,I loved the color and the style of the sleeves. it was a bit too short on me and i thought it made me look boxy so i didn't end up keeping it,4,1,0,General,Tops,Blouses +860,45,,Saw this on the sale rack and decided to try on. i looked like the dancing hypos in the movie fantasia. i am petite and not heavy but this is for very slim and tall people. too much fabric in the peplum part.,1,0,2,General,Tops,Knits +860,54,Amazing product,This product is comfortable and stylish. i love the design and the color print. i can dresss it up and dress it down. it goes with everything and also fits great.,5,1,0,General,Tops,Knits +1027,39,Best jeans!,I got these on sale a few months ago. they are the most comfortable jeans i've ever owned. i'm 5'4 and they are the perfect length for me but i like my jeans a little long.,5,1,0,General,Bottoms,Jeans +1098,39,Is this really black?,"I had this dress in my basket for a long tiem waiting for free shipping. i liekd how it looked on the model. read the reviews, and wasn't sure, so waited... then my usual size sold out, so i decided ot try the smaller size (in petites, otherwsie i would have gotten it in the store :_)) i needed pettie and the smaller size is perfect! the color says black, but it looks more mifnight (aka blue), my friend even said (when i tried it on), you know i laways love anything blue... so don't expect dark",5,1,0,General Petite,Dresses,Dresses +829,36,Great fall top,Love this top for the fall. looks great with dark skinny jean and booties.,5,1,0,General,Tops,Blouses +936,21,,Love this design it puts a twist on a turtle neck sweater. the only problem i had is that the tie kept coming undone but if you do a double knot the problem is solved! wish i would have bought all the other colors.,5,1,0,General,Tops,Sweaters +1066,26,Loved these!,"I tried these in store, didn't have much hope as flare usually looks terrible on me (small waist and athletic, fuller legs). but surprisingly these work great. they seem to very good quality and the flare is super cute and on trend. i do think they run a little small. i am almost always a 2/26, but i took these in a 4. they didn't have a 2 in store for me to compare but i think they would have been too tight. highly recommend!",5,1,1,General,Bottoms,Pants +936,39,,Runs a size big unless you want it really boxy. felt the matl was flimsy and would prob pill soon. turquoise was a pretty color but returning this one.,3,0,0,General,Tops,Sweaters +1022,36,,"I ordered these because i loved the wide cut and overall look. but returned them because they fit weird. too tight around the too high waistline (and normally, i like a high waistline). fit ran small. and the overall quality of the fabric wasn't as nice as i was hoping for. pretty disappointed.",1,0,0,General,Bottoms,Jeans +860,31,Odd dimensions,"I wanted this tank to work so badly! it was a great deal and so beautiful. unfortunately the top fitted portion ends right below my chest then the shirt flares out so i looked like a cupcake. my belly also showed slightly because the shirt is short. if you have a short torso, this would work great. if not, unfortunately, its not great - tear",2,0,0,General,Tops,Knits +860,20,Not for the well endowed,"I am 5'8 with curvy, muscular body and 36ddd boobs. the ruffle ends up hitting me right below my breasts and creates the look of being about 6 months pregnant. the beading is beautiful and i wish that it fit.",3,0,0,General,Tops,Knits +1098,35,,,5,1,0,General Petite,Dresses,Dresses +949,70,Versatile jacket,The sweater coat would be wonderful for cooler weather this fall. i ordered it in medium because the small sizes were sold out. sometimes a medium is the right size depending on the brand. i was disappointed that the coat was so large; i don't think it will work for me even with layers underneath. it's a great design but i may have to return it.,4,1,1,General Petite,Tops,Sweaters +1066,39,,"Love these pants!!! retailer - please sell more colors and patterns of these! i have a hard time finding work pants that fit right, don't have to be hemmed (i'm 5'3"") and aren't boring. this is just enough pattern to be interesting, but still neutral enough to pair with other things. i bought them full price and would happily do so again for another pattern!",5,1,0,General,Bottoms,Pants +1027,45,"Ok, lightweight jean","I agree with the other reviews that these jeans run big. for my body, straight up and down, i ordered 2 sizes down, but would have ordered one size down had i been able to try them on in the store. the jeans i received were lighter, not blue, and more grey with very noticeable white whiskering. i need a new pair of jearns and i love the cut of these so i am keeping this pair, but, for me, because of the color they are just ok compared to the wow i was expecting from the picture.",3,1,0,General,Bottoms,Jeans +829,36,Great top for everyday wear!,This is a very well made top. i love everything about this top! bought it in both colors. i think it's fancy enough to wear out at night or in the daytime with shorts and flip flops. i got it on sale but would have totally paid regular price for it!,5,1,0,General Petite,Tops,Blouses +936,26,Classic with a twist,"I wish i hadn't waited so long to buy this! the smalls were sold out in grey by the time i finially did, but the medium ended up being totally fine. perfect for a warmer winter, it is pretty thin so i wouldn't trust it on it's own to keep you warm in cold weather, but easily could be layered! i love the fun aspect of the tie front for this sweater as the front tuck is becoming a little tired in my eyes. i love that you can make it shorter or longer or even tuck it in because the ties aren't sewn",5,1,1,General,Tops,Sweaters +936,78,"Stylish, comfortable and affordable!!!!",Love this sweater. i have it in cream and ordering navy. it is comfortable and looks great with pants or a skirt. i do not like my sweaters tight so i have a large and love the fit. i am 5' 4'' and weigh 135 and usually buy medium to large.,5,1,2,General,Tops,Sweaters +860,39,So cute!,I love this! seriously would buy again. i wish it was warmer out so i could wear it,5,1,0,General,Tops,Knits +860,43,Adorable,"I love this top. it is very short and hits at a potentially unflattering area if one has wider hips. the fabric and swing to the ""skirt"" is adorable.",3,1,0,General,Tops,Knits +1066,33,"Nice fit, nice quality","I have a small collection of retailer pants for work, and this pair fit neatly into a hole-- i don't have a fun, patterned pair. i am short (5'2"") and definitely needed a petite to get the crop to land in the right spot. my usual 0p fit perfectly up above. the flare seems a bit more pronounced on me than in the picture. the fabric is nice quality, smooth and medium weight with a bit of stretch, and i like the fact that these are machine washable. this gal has other things to do with her life besid",5,1,5,General,Bottoms,Pants +949,35,Huge,"This jacket runs very large. i usually wear an xl but probably could fit into a medium. i have long arms, and the sleeves were way past my hands. i love the jacket, but it's just too sloppy.",3,1,1,General Petite,Tops,Sweaters +860,51,I wanted to like this...,"I wanted to like this top so so so so badly. so badly in fact, that after the first size didn't fit, i ordered two other sizes to make sure: xl, l, m. none of them worked i really wanted to like this top. the online photo makes the clothing look so flattering and the shirt is just not....at least on me. the shirt online on the model looks slimming and a lot longer than the actual piece of the clothing. the beaded work is very beautiful, but short causing the very poofy peplum to start at the mos",1,0,0,General,Tops,Knits +1066,41,Perfect work pants!,I love these pants so much i even paid full price for them. i'm going to order them in navy too. super cute fit. cute with flats or heels.,5,1,0,General,Bottoms,Pants +949,27,Size down,"I followed the advice of other reviewers and sized down. however, the jacket was still too large. it fit fine in the arms but the body/width of the jacket was huge. also i found the wool material to be extremely itchy. it might work if you are layering it over long sleeves but still make sure to size down at least one or maybe even two sizes.",3,0,1,General Petite,Tops,Sweaters +829,44,Subtle beauty,"I stumbled upon this by accident and i thought the turquoise color looks unique so i tried it on, and it was a great fit first time around. i dislike open shoulder blouses because most of them are too open but this one is very sutble which gives it a girl next door sexy look. the material is very soft, the pattern is subtle plaid, and the liner is a plus. size 2 regular fits me very comfortably (i'm 5'2"", 34b, 26 waist, 36 hips). i could size down more but i like the relaxed look like on the mod",5,1,4,General Petite,Tops,Blouses +1003,38,Small in the waist,"Gorgeous colors on lovely silk skirt. longer on me than in photo, but i'm only 5'4"". i usually wear a size 12 or 32"" waist jeans, but i could not zip up the large. by several inches. i'm not sure if i can possibly cover the waist and still wear it that way. sad because i've had my eye on this for months:(",5,1,0,General,Bottoms,Skirts +860,52,~~so very retailer~~,"Absolutely beautiful - +usually don't leave reviews here, but this top (material, beading, style) is so gorgeous i would be remiss if i didn't. i have a short torso, so the peplum hit me above the belly-button. it's very voluminous, but with the right pants and heels, it is a perfect outfit. as a full-time student, i'm apt to find retailer expensive - but this purchase was so very much worth it. in terms of sizing- i initially got the s to accommodate my bust (30f) but preferred the xs.",5,1,0,General,Tops,Knits +1008,60,My new favorite skirt!,Very cute! waist is a little big for me but overall a pretty good fit.,5,1,0,General,Bottoms,Skirts +1080,36,Bad zipper,"Beautiful dress with the colors and pleats. i did not have the same problems with the bust area that others did. my biggest complaint is the exposed zipper doesn't lay flat, even when just hanging on the hanger. when actually on a person the zipper juts out. had to be returned!",3,0,0,General,Dresses,Dresses +927,44,,"Tried this on and loved it! chic, lightweight, warm, cute left as is and cuter belted. ended up letting a friend buy it since it was the last one but will be adding to my iso list for sure!",5,1,0,General,Tops,Sweaters +1098,34,Dissapointed,"I have to confess i had very high hopes for this dress. i was buying it as a stylish, modern alternative to a business suit. i wanted this dress to work as a piece to deliver presentations in or attend faculty functions. tailored, conservative, and edgy at the same time. several hundred dollars dress should meet the aforementioned needs, i thought. but it did not. the best description for the dress is ""blah"", average. + +the material is textures and crinkly, not slick. the top is cream/ivory color",3,0,4,General Petite,Dresses,Dresses +831,41,,"I love this shirt! i was surprised by the other reviews. it's boxy, but not unflattering. i get so many compliments on this. a steal for the price.",5,1,0,General Petite,Tops,Blouses +1020,47,"Versatile, great fit, pockets!","It's rare to find such a great skirt -- flattering, unique design, substantial (denim-like) fabric, something with pockets! this skirt has everything, including an adjustable buckled waist. i love the slight a-line shape, too. for me it fits true to size (the same size i wear in skirts from other brands). i love the colors -- ivory background, cobalt, periwinkle, orange, blush pink, yellow, black. it will be easy to pair with tees or button-down shirts and cute sandals.",5,1,0,General Petite,Bottoms,Skirts +863,60,Sleeves stretch out,"I really liked this top when i tried it on but as i wore it the bottom of the sleeves stretched out terrible where they looked worn out from wearing over and over, and since this happened with the first wearing and i paid $88.00 i sent it back. if it hadn't been for that it's a comfy and cute casual top",4,0,3,General,Tops,Knits +1020,38,Great fit for curves,"This skirt fits my curves so well. the adjustable waist is so helpful for getting the perfect fit. it sits high on me, but i have a very long torso so that didn't bother me and actually made the length more flattering for my shorter legs. the colors are vibrant and versatile.",5,1,1,General Petite,Bottoms,Skirts +977,31,Enormous!!,"I know this product description says oversized but that's an understatement. i ordered a small and tried it on and i looked like a little kid in their father's jacket. i don't even think an xs would have worked. i'm 5'6"" and about 135 pounds for reference. i will say that the embroidery on the back is very cool and this jacket is overall a cool concept but it's just way too big.",1,0,0,General Petite,Jackets,Jackets +1080,39,"Red ""evanthe"" dress","Agreed with the previous reviewer, this is the same dress as the evanthe dress that came out this summer, but in a rich beautiful red/wine color. the color differences in the pattern are , however, more subtle than the summer version, remaining in one palette. yo u can't tell from the picture, but the back is longer than the front. the neckline is very flattering, i found this one a little more snug than the evanthe (around the rib cage), tried on 00p (size for evanthe) might be better as 0p in",4,1,1,General,Dresses,Dresses +912,46,Haven't washed well,"I bought three of these this summer--a mint, ivory, and yellow. when i received them, they looked nice enough in person. i liked the heart motif and the peplum. the problem is the knit was on the cheap side and stretched out. the arms were tighter than i liked but loosened up through the day. but, then the look became more matronly. i wish they had been 3/4 length or a vest. the cheap, outstretched look just didn't work. i ended up donating all of mine after a few wears. they also pilled conside",3,0,0,General Petite,Tops,Fine gauge +865,63,"Beautiful, flattering top","Ordered this top online, color is a little more gray than green but it is gorgeous, comfortable and flattering, so much so, i am ordering the navy too. great quality , fabulous with jeans .",5,1,2,General,Tops,Knits +850,33,I wear my sunglasses,"I love this blouse! the colors of the little sunglasses are vibrant against the black background, the buttons on the front are also a coral/peach color and beautifully made. its thin enough to be worn in the summer or fall without making you sweat or freeze. i ordered a medium, which i usually wear in most retailer tops and it fits perfectly. i'm a 36b and can run from an 8 to a 10 in tops. i do recommend trying it on before purchasing if you can, especially for women with a larger bust. th",5,1,0,General,Tops,Blouses +1080,56,Does not fit well but is beautiful,This is such a beautiful dress. but have to return for the reasons others have noted. the chest does not fit well.,2,0,0,General,Dresses,Dresses +1080,40,Small-chested women need not apply,"Girls, this dress is gorgeous. but if you are an a/b cup, there is just too much fabric in the bust. the entire dress is pleated from the shoulders down, so a curvier figure would be shown to great advantage in this beautiful number. alas, i had to send it back and was very sad to do so.",5,1,0,General,Dresses,Dresses +947,48,Beautiful sweater but not flattering on me,"Really wanted this to worked for me. ordered the s in ivory (the color i really wanted but xs was sold out) and the xs in cedar. loved the knit and look and quality but the sweater was boxy and huge even in xs. not flattering on my petite frame (5'2"", 115#). so disappointed as i've been looking for a non-wool sweater like this.",3,1,0,General,Tops,Sweaters +1020,37,Pop of color,This skirt is pleasantly more dynamic in person. the print and colors are really nice and more vibrant than the photos. the cut was spot on and the fabric seems heavy enough to hide imperfections (but not too heavy...) length as shown on model.,5,1,8,General Petite,Bottoms,Skirts +850,32,Dress up or down,"This top can be dressed up or down, very good quality fabric and colors shown as the photo (blue). i usually wear petite sizes but chose the regular version because i wanted to be able to tuck it in. i think it might be too short otherwise.",5,1,7,General,Tops,Blouses +947,57,Awesomesauce!,Love the color (cedar). love the style. sleeves are long and wide but that is the style. biggest surprise is that this sweater is not cropped. the length given in the product info is very short. but when i received my normal size (l) the sweater comes to my hips. just right. the fibers are man-made (acrylic) so that makes this sweater not too warm and not itchy. the weave is close enough that i do not need to wear a cami underneath. when the weather gets colder i will add a nice cami under the s,5,1,8,General,Tops,Sweaters +947,45,Love this!!,"Love everything about it!! chunky, comfortable, lazy day or dress up with a cool necklace!",5,1,12,General,Tops,Sweaters +424,24,Lovely but not for me,I saw this online and loved it. plus after reading the reviews i thought why not. but if you have a big chest beware. i am a 34ddd and a pretty solid medium. the volumous front of the vest added way to much to me and i sized down to a small. had to return.,3,1,0,Initmates,Intimate,Lounge +850,69,Great summer print,"Love, love this clever eyeglass print. i bought the black background with bright sunglass print - perfect for pairing with jeans, shorts or a slender skirt.",5,1,6,General,Tops,Blouses +485,38,Great skort,Exactly as pictured. great fit. love it.,5,1,0,General,Bottoms,Shorts +947,79,Sweater love!,"Absolutely love everything about this sweater. i was hesitant to buy because it's so oversized and i was worried it would overwhelm my small frame. but the xs fits great, i love the large knit look and the bell sleeves. pairing with dark denim skinny jeans helped balance out the sweaters oversized shape. wore it work and then to a party and received compliments on it all day.",5,1,1,General,Tops,Sweaters +927,47,So versitle,I wear this vest two ways - over a long sleeve shirt when it's warmer and layered over a shirt and cardigan when it's cooler. it's the perfect amount of warmth when i'm running errands and don't want to wear a heavy coat. love it and plan to wear it a lot!,5,1,0,General,Tops,Sweaters +927,56,Gorgeous and flexible,"The quality of this vest is outstanding, and the warmth is exceptional. i have worn it as a jacket on milder days, in work as a warmth layer and brought on vacation to act as both plus a bathrobe. it is a very stylist piece that can be worn open or belted. it runs large by style, but i am 5'1"", 100 lbs and i can carry it off.",5,1,2,General,Tops,Sweaters +927,54,,This vest was of excellent weight but it had very little style. it was like a giant piece of felt was cut out with little thought to design or nuance. not for me.,3,0,1,General,Tops,Sweaters +1020,48,Bright spring skirt,"I love this skirt! it's a denim material, so it's structured, but not too heavy for warm weather. the colors are bright. it may run a bit big, but i didn't have trouble with my usual size. the pockets are actually usable. great for casual and easy to dress up.",5,1,0,General Petite,Bottoms,Skirts +1020,41,Beautiful!,Love the print of this fabric & the length. the buckles at the waist add a unique look so no belt necessary.,5,1,1,General Petite,Bottoms,Skirts +927,68,W i d e collar,"I fell for the charcoal one and bought standard size m/l. on first wearing with slim jeans, booties and a long sleeved t, the body of the vest was fine. but with wavy shoulder-length hair, i found the large, wide collar overwhelming at the top. i tried folding the collar under, as in the photo of the gray one, but still too much. i altered it by paring it down by 7 inches at the back neck, and tapering down to meet the lapel at mid-chest. the fabric looks like boiled wool, but is actually a tigh",4,1,2,General,Tops,Sweaters +977,49,Fun and uniquely dramatically elegant,"This jacket is my favorite purchase in a while! i used my last month 50th birthday discount on it! +it is of exceptional materials and quality construction. the juxtaposition of the stripes against the beautifully vibrant embroidery on back is stunning! it does run true to size as it is an oversized piece, which adds to its classy dramatic flare! my size medium came in the european size 38. for reference, i am an american size 8-10. +it is comfortable to wear and can easily accomodate large ful",5,1,3,General Petite,Jackets,Jackets +1080,30,Pretty but not for me,"I loved the colors and the feel of the fabric. it was a lovely dress but it fit weird on my 34 dd chest so back it goes. the zipper had one spot where it was tight, right at the widest part of my rib cage. it was fine every where else. too bad.",4,1,2,General,Dresses,Dresses +947,52,,,5,1,0,General,Tops,Sweaters +831,42,Very pretty,"I bought this blouse on sale in a medium because it was the last one left in the store. i usually wear a large, but surprisingly it fit. i'm a woman of color, and the off white and lace looks great with my complexion. i got many compliments on the blouse as i made my way to the register to check out. i can't wait to wear it this spring. i'll have to be careful when wearing this blouse because one good snag with a fingernail, or necklace and the lace will be torn. other than that, i'm very happy",4,1,0,General Petite,Tops,Blouses +603,51,Gorgeous shorts,"These shorts are just beautiful. with that said, they were expensive, but made reasonable when i snagged them in the online sale! they do also run large, and they seem to be made for short-waisted bodies. i will be bringing them back to my local store to (hopefully) exchange for a smaller size. fingers crossed that they still have them in stock!",3,1,0,General,Bottoms,Shorts +865,44,Soft lace and beautiful color,I strongly disagree with the previous reviewer. the shirt in our store was featured in all colors. i chose the burnt orange color to try on and it is was incredibly soft! i felt like i was wearing a t-shirt with an easy on and easy off feel. the flow of the shirt allows you to wear out or tuck in. i paired with teal velvet crops and tucked the shirt in for more structure to the outfit. love!!!,5,1,0,General,Tops,Knits +947,52,,Love this sweater. fun for fall. soft fabric and runs true to size. will look great with jeans or dress pants.,4,1,0,General,Tops,Sweaters +947,38,Great sweater!,The weave is very loose and chunky which i like but isn't so apparent in the picture. also the sleeves bell more than it looks like on the model. the color is a great caramel and it fit tts. i think it will be great on cooler days.,4,1,3,General,Tops,Sweaters +947,38,Comfy and classic,"Love this sweater, do wish i sized up for a little longer length, but works great with high rise pants. comfy and great color",4,1,1,General,Tops,Sweaters +424,29,,"I felt inspired to write a review as soon as i put this on. the vest fits so well, and the thick fabric feels amazing. love the pockets! like the previous reviewer, i feel like i'll be able to wear this with workout clothes or with a dressier outfit. it has an ever so slight racer back, so probably would look weird with sleeveless tops that come all the way to your shoulders, but i can already think about so many ways i want to wear it. the draping in the front also falls really nicely. great bu",5,1,1,Initmates,Intimate,Lounge +1020,34,Ideal fit and feel for gals with curves,"With my 5'9', hourglass frame, wider hips and having a baby, i wear normally sizes 10/12 (m/l) in most retailer skirts and dresses. however, with this, i was able to fit into an 8; it just sat higher up and was too form fitting for my liking. here are my thoughts: +_________ +pros: +- lots of stretch and comfort. +- pockets! always a plus in my book :) +- will go with any top. +- nice length. fit me as in the model. +- very slimming. +- you could probably go down a size if you are slender with not wide hi",5,1,15,General Petite,Bottoms,Skirts +1122,62,Madly in love!,"This is a favulous cape...in fact i would buy another if there were other colors! it is oversized, playful, chic, dramatic and simply put a true statement piece. it will not be flattering to your figure...it is not suppose to...but it will show your true sense of style! wish it had pockets...i may add them for more play.",5,1,2,General,Jackets,Outerwear +947,67,Delaney pullover,"I saw this sweater online and had to try it. i went to my local retailer to try it on and i'm glad i did. i am usually a xs - s in tops and i thought this fit best in a medium. it's very chunky which is what i was looking for and so soft - not scratchy at all. it has wide bell sleeves, but that's very on trend right now. i am 5'4, 34b and it falls about an inch below the top of my jeans. it's not form fitting but so snugly. i plan on wearing it with dark denim skinnies, booties, and simple jewlery",4,1,0,General,Tops,Sweaters +947,77,Delaney pullover,"I ordered a small and it is enormous; i usually wear a size 10. it is short but the fullness in the body and the sleeves made me look like a sumo wrestler. also, it is a very heavy knit which would be great for up north but too bulky for atlanta unless the temps are in the 40s. i'm sending it back.",2,0,1,General,Tops,Sweaters +850,67,Best purchase anywhere lately!,"These two blouses are probably my best purchases anywhere in some time. fit is perfect, quality is great and both will be worn many times this summer and into the fall. unique from the all other tops i have seen lately.",5,1,4,General,Tops,Blouses +1020,31,,"This skirt is really cute and versatile, it can be dressed up or down. i paired it with a black chiffon top for a dressed up look and a denim button down for a casual look. the length is good, and the buckles allow it to be tightened, which is a plus if you have an athletic body.",5,1,0,General Petite,Bottoms,Skirts +947,41,Wish it loved me back!!!!,"I adore this sweater. it is so soft and cozy. i ordered two because i really need some good winter sweaters that are forgiving on the pooch but not wool (darn allergies). so i ordered this in the white and black (camel is a bad color for me). + +tried on the first sweater when they arrived and it was so comfy i didn't want to take it off. then i looked in the mirror. i'm a tall gal, 5' 11"" with broad shoulders and i weigh about 165, and this sweater was so unflattering! it just made me look big",4,1,1,General,Tops,Sweaters +1020,61,I love this skirt!,"I saw the skirt on a display today at my local store. i was attracted by the colors and the display itself. my thoughts, "" give it a chance"". i bought the size 10 without even trying it on, with the idea that the colors and style had so much potential, i am so pleased with this skirt! the fit is true, although if you like a higher ride on the waist, i would size down. the fabric has just the right amount of stretch to make it super comfortable. i had so many staple items in my wardrobe that i wi",5,1,1,General Petite,Bottoms,Skirts +850,64,Just as cute as expected,"This shirt is exactly what i expected! it is just as cute as on the website and the fit was great! it's the perfect shirt for summer, loose fitting but in a flattering way. the design makes it very versatile since it can be matched with so many colors! + +i highly recommend it!",5,1,0,General Petite,Tops,Blouses +1080,30,Nice fall dress but needs the right body type,"The colors of this dress are beautiful and i really wanted to love it but it wasn't cut for my body shape. i think you either need to be curvy to fill out the chest or straight up&down to have it lay flat (as in the model). ordered size 6: 34b, 150 5' 9"", tall/slim build. i also think the hi/lo hem of the dress isn't well indicated in the pictures; i'm not a fan of the style and was hoping it would be minimal however the hem is definitely asymmetric.",3,1,2,General,Dresses,Dresses +947,47,So flipping soft and pretty!,This is really cute - it has a boxy look and bell-like sleeves. the knit is chunky and so very soft. i didn't want to take it off. i purchased an xs in black. it's gorgeous. my beige bra shows through so i will need to wear black or a camp underneath. it feels really heavy - in a good way - and it feels like it will be really warm. the black has a velvety look to it. i'm smitten. i should also mention that it did feel cropped to me - i know i read other reviews that said it wasn't cropped. i fee,4,1,1,General,Tops,Sweaters +947,45,It's a bell,"Lovely knit and so soft, but the bottom curls up underneath, similar to the bell sleeves. runs oversize too, got xs and it's too bulky and unflattering since the bottom doesn't lay flat. returned!",3,0,1,General,Tops,Sweaters +850,35,So cute and unique!,"I saw the black in store and had to try on. it is very, very cute. i would say it fits a bit small. i tried my usual medium and while it fit, it was a little short. id take you could take your regular size or size up. i would not size down in this one. adding to my wish list and hoping it sticks around til sale time!",5,1,2,General Petite,Tops,Blouses +1022,26,Dream pants do come true,"Let it be known that i hate shopping for jeans. i recently had my go-to skinny jeans rip by my back pocket and new i needed to get something new & better stat. i have a pair of black ag sateens that i got a few years ago, and i decided to try out this pair. i got them in the mail yesterday, and i never want to part with them! they are perfection. they hit perfectly on my waist; they're incredibly comfortable and basically make you feel like you're wearing the jean equivalent to yoga pants. they",5,1,4,General,Bottoms,Jeans +862,35,Nice,"Was scared at first to order this product, when i tried it on i was amazed on how good it looks. fits just like the model picture, and the material is awesome.",5,1,0,General,Tops,Knits +1078,66,Love it!,"Great dress! wish it came it more colors, would like to buy another one. i am 5'5"",125, size small is perfect. unlike one of the previous reviewers, i do not think it is too clingy. maybe she needed to size up.very versital, cute with a jean jacket, or long lightweight scarf, booties, or sandals! .",5,1,2,General,Dresses,Dresses +1078,62,,"This dress is perfect for spring and early summer. it has some weight to it and so it drapes beautifully. it is very well made and the fabric is good quality. the color is a medium color gray; much prettier than in the picture. i wear a small in most retailer dresses and this fit perfectly in a small. it hugs in all the right places and skims from the hips just like in the picture.. the length was just as it looked on the model. i am 5' 5"".",5,1,7,General,Dresses,Dresses +1077,29,Cute & unique,This is such a unique and fun dress. i'm so glad i found it and it fits perfectly!,5,1,0,General Petite,Dresses,Dresses +1078,33,Lovely gem!!,"I've passed this dress by a number of times online, but ordered it on a whim on the mothers day promo. based on the reviews, i ordered my regular size, medium. it fit perfectly. i do think the cut is on the trim side, but it isn't tight or fitted. i probably couldn't eat a big meal in this though as it would probably show in this dress. the fabric is buttery soft! the button placket down the front is very clean and lays flat. there are two side pleats that are a different fabric and are ever so",5,1,2,General,Dresses,Dresses +985,53,Great twist on a cargo jacket,"What a unique twist on the traditional cargo jacket! the swing styling on this jacket is so cute---not too full-, you still get a nice silhouette from the front, with the swing in the back this is a fresh take on this staple. it will be a ""go-to"" piece in my closet!! the quality of the material and tailoring on the jacket is wonderful!!! as other reviewers have commented, it does run large. i am exchanging it for a size down. i can't wait to get it in and wear it!",5,1,0,General,Jackets,Jackets +1201,38,,,3,1,0,General,Dresses,Dresses +996,39,Dear eva,"You make classy stuff. this skirt is a nice take on a tweed skirt. +colors: can't tell from the picture, but there is red and pink thread as part of the tweed, very fun and happy, yet appropriate colors for fall and winter. the cut is very flattering, the scallop part is interesting though, it is sown at one part of the skirt, in the middle, not sure why. i ordered the 0p, and that fit me like a glove. (26.5 in waist, 35-36 in hips, 115 lbs). + +length on the petite was above the knee, like show",5,1,1,General Petite,Bottoms,Skirts +864,48,Cozy sweater in a boxy style,"This would be great on someone with a slim build. it's very true to size, it hits above the hips and runs pretty straight through the body for a boxy look. i loved the color and pointelle detail but on my thicker build it just sort of hung in a too-casual way. note that it is the kind of cotton that is likely to stretch with wear (and spring back with cleaning).",3,1,6,General,Tops,Knits +927,30,Super cozy,This is a steal at the sale price. medium is large on me and i'm generally a large at retailer. so soft.,4,1,0,General,Tops,Sweaters +1046,49,"Attractive casual pants, nice texture and color","I tried these on at the store and thought the color, texture and style was very nice, but i needed the petite length. so i came online but was disappointed to see that the style is sold out in petite! darn. the regular length hits me just above the ankle, so i suppose it is still do-able, but i hate to pay full price for something that doesn't fit quite right. maybe if it goes on sale i will consider it.",5,1,0,General Petite,Bottoms,Pants +864,64,,"Love the blue color. is a bit short, but fine with a tank underneath. i purchased the small, that's what i usually wear.",5,1,2,General,Tops,Knits +985,45,My new fave!,"This jacket is perfect! the crop length is just right! not to short and the way it is cut longer in the back it really paints a beautiful silhouette on my larger frame. i'm a a 12 typically but broad in the shoulders and larger in the bust 36dd. this jacket is loose fitting and roomy. i could probably have gone with a large, but i'm really happy with the xl as i can layer underneath and it's just super roomy and comfy. the quality of this jacket is great. it will be a staple for years to come. i",5,1,4,General,Jackets,Jackets +1078,56,"Wanted to love, but...","Tried on this maxi dress recently, hoping i would have a new dress to enjoy but the frabic is just too thin. so sad :(. unfortunately it shows every lump and bump and even wearing spanx while trying on it still showed too much. a full length slip would help but i decided to put it back.",3,0,15,General Petite,Dresses,Dresses +862,32,"Sexy, simple top","I love this top. i got a medium in black on sale. i am 5'8'' and 135lbs. the medium fits great. the medium is slightly loose on me through the tummy, which is nice - in my experience, it is not too constraining, contrary to other reviews. however, i think it depends on your body shape; i am a coke-bottle. this will be a wardrobe staple for day to day and going out; note, it is too low-cut for work wear. very happy with my purchase.",5,1,0,General,Tops,Knits +1046,43,,These are some of my favorite new pants. i am never disappointed by the quality from this brand and they are super comfortable and adorable. a definite must have!,5,1,2,General Petite,Bottoms,Pants +862,48,Too low cut,"Gorgeous color and great price, but too low cut and because of the design, a cami's wouldn't work. disappointed",2,0,1,General,Tops,Knits +1072,53,,,4,1,0,General,Dresses,Dresses +1080,41,So flattering!,"I'm surprised by the negative reviews and i'm here to come to its defense! i love this dress! i'm solidly a 0 petite in tracy reese and this fit perfectly. the top isn't snug but it's not roomy enough to say it runs large. just perfectly comfortable. the belt was a little tricky because it has to thread through several loops, but it stays put nicely and fit perfectly without being too snug or uncomfortable. the fitted top with the belt offsets the fit and flare style of the skirt. lace is beauti",5,1,0,General,Dresses,Dresses +985,40,Cute style but runs big!,"I have been on the hunt for a replacement cargo jacket for about a year now. i thought this one was going to be it!! ordered it right away. i got it in an xl as retailer coats always seem to run small on me (i am very busty so sometimes the more fitted styles won't even close without a big gap). this is not the case with this jacket. it runs really big - it looks like it could be an xxxl...but the design is great with a zipper and button closures, pockets and cute back cut...the color is slightly",4,1,2,General,Jackets,Jackets +864,32,Shorter & smaller than picture/ description,"I bought this online. this looked like a sweater that was accidentally shrunk in the dryer, when i received it. + +i will be returning this.",2,0,0,General,Tops,Knits +927,68,A/c is running,"Received december 23 and 83 degrees in louisiana but weather can change from hot to cold in an hour. this sweater is so soft, so cozy, i'm ready to run the air conditioning! beautiful styling, well-made, and has a generous fit that you may or may not prefer. this will be one of my very favorite garments . luxurious, and i deserve it. i ordered a large, have long arms, and the sleeves do come over hand as shown in photo. it is very loose and flows over my jeans. i am an extremely difficult to ple",5,1,0,General,Tops,Sweaters +1078,65,,"Absolutely love, love this dress. it is so comfortable and falls perfectly. the material is great and you can dress it up or wear it casually. if it had more colors, i would get it it in any color it came in!!",5,1,2,General Petite,Dresses,Dresses +1072,39,Runs really small,"This dress is very small in the bust and maxi length on short people (5'3"" 36dd). i can't wear a normal bra, i have to use adhesive pasties. the fabric is very smooth, thick and satin like, but fuzzes easily. mine came with minor thread pulls and one strap was sewn on twisted. the pattern in real life is very pink as opposed to the model sample which has more blue landscape. i'd like to hem the dress but i would sacrifice pattern. still very pretty dress. be sure to size up one or two depending",4,1,0,General,Dresses,Dresses +1078,43,Elegant comfort,"I bought this dress with my birthday gift and i do not regret it! it's so soft and feels like pure comfort but the details, little metal buttons down the front, the vent pleats on the side; make it feel special. i received many compliments and i would urge you to get this one if you are seeking comfort. it was pretty true to size and because i'm an average height i wore a small block heel with it.",5,1,14,General Petite,Dresses,Dresses +862,26,Order up a size!,"After reading the reviews about this top being really clingy, i decided to order up a size and purchased a medium. when i took it out of the box today and held it up it looked huge and i thought i had made a mistake. however when i tried it on it actually fit really well! i could see if i had ordered my usual small how it would have clinged to my body in a unflattering way. very happy with the top and thankful for the reviews.",5,1,0,General,Tops,Knits +1201,35,,,5,1,0,General,Dresses,Dresses +1046,53,Very cute,"I'm 5'8, 130 and the small fit very nice. i ordered on line and on one of the legs the elastic closure at the bottom snapped. got a new pair at the store. you can dress these up or down. they are fun.",4,1,3,General Petite,Bottoms,Pants +942,22,Sweater season,"Ive been on the hunt for big bulky sweaters because winter is coming and i live in the north, i saw this sweater and needed to give it a try. i got it i the mail and its truly gorgeous and extremely well made. this is the type of sweater to wear on a cold snowy day. it runs a little big but thats okay with me because its perfect to snuggle up in. i love this sweater but be aware it is thick and bulky so its not made to make you look like a twig. i like big sweaters and this design flows from sma",4,1,2,General,Tops,Sweaters +1059,45,Stylish and functional,"Great pair of pants to wear to work, and interview or out to lunch. i got so many compliments the first time i wore these. i'm 5'2"" i ordered the burgundy color in a size 0, regular which is what i normally wear and they fit fine. however they were just a tad big in the waist and a tad tight around my calves but other that they're a great pattern pant to have you wont be disappointed!",5,1,0,General,Bottoms,Pants +1059,72,"Lovely pants, bad fit","I ordered these pants in black and brick. the pattern is great, but the sizing and fit are way off. i usually wear an 8 or a medium in retailer. i ordered these pants in a 10, 12, and 12 petite. the 10 actually fit, but there is no stretch in these fitted pants. they were very uncomfortable to walk or sit in. however, if you're standing up all day and not doing much moving around, these pants are perfect! the print is great in both black and brick. i couldn't decide which one i liked best. wish th",3,1,3,General,Bottoms,Pants +1094,56,Statement dress!,"This dress did not impress me when i was browsing the website online. when i went to a store, though, the colors struck me as really vibrant and earthy, and i wanted to give it a chance. i tried it on and it fit like a glow! i am a 5'1'', 100 pounds, and got an xxs p which was a perfect fit. the length was great for me (petite size) and did not need altering. the online photo may not do justice to the little details on this dress. definitely a very high quality dress that i would categorize as a",5,1,0,General Petite,Dresses,Dresses +833,71,Easy breezy,Love this top. very easy to wear to lunch or site seeing. the fabric is soft and drapes nicely.,5,1,2,General,Tops,Blouses +1051,29,"Lovely, airy, but a tad big","I just received this in the mail and really enjoy it! it's a nice color and very gauzy/ airy. the only think i didn't love is that it's a little bit in the chest area, which is rare considering i'm usually a m in that area.",4,1,0,General Petite,Bottoms,Pants +833,48,"Super cute and flow, perfect for summer","I wanted this top ever since i saw it online, it is so me. it's a nice mix of feminine and masculine, you can pair it with a nice pair of jeans or even business pants to dress it up. this will make the perfect summer shirt and it hangs so nicely! i highly recommend this shirt, i would get it before its gone!",5,1,3,General,Tops,Blouses +115,39,,"The fabric is very soft and the fit is formed to the body. low cut, so may want to pair with a cami. great basic for work!",4,1,0,Initmates,Intimate,Sleep +878,51,,"I love sundry clothing. this lightweight fleece is the perfect weight. it keeps you warm enough when it's cold, but not hot when it is milder. it's super soft with nice embroidery. size 1 is a great fit for my 5'1"" frame. wear it to hang at home or to go out.",5,1,1,General,Tops,Knits +1094,59,Gorgeous big floral,"This is a beautiful dress, considering it is made from polyester. that being said, the material has a nice finish and looks like it could be silk. it's a flattering cut (other than being a tad short-waisted) and hangs well. it was also a bit tight through the bust. unfortunately, if you are on the taller side, it tends to be high waisted and short in length.my daughter is 5'11"" and a size 10. the medium fit best, although because of the length, she is reluctantly returning it. sad, because it ha",4,1,1,General Petite,Dresses,Dresses +942,52,Cozy and warm,This sweater is great for cold weather. it is very comfortable and soft. only down side is it is a little boxy.,4,1,4,General,Tops,Sweaters +115,41,On the fence,"I *loved* the brown color on the model, and i love the wrap style in general. however, i'm not sure if the color looks as goon on me. i first ordered my standard size small (5'7"", 137 lbs 32 b), which fit, but exchanged it for the looser fit (medium) shown in the pictures. i really like that the material is a thin, but not see through cotton. it has an extra cotton layer lining in front which is nice. the v isn't too low on me, so i don't *have* to wear a cami under. not really crazy about the s",3,1,0,Initmates,Intimate,Sleep +1059,50,I love them!,Love these pants. the design is totally different and that is what i love! i paired these with the velvet red shoes from this site - also on sale. for me these ran true to size.,5,1,0,General Petite,Bottoms,Pants +1078,39,Cute and decent make!,"Someone returned my size so i got to try it on in store. the cut is very flattering, the material is stretchy. the lace part is nicely made too. overall great piece. the petite waist did hit me a little higher than on model, i have a regular torso and short legs (and overall usually need petite)",4,1,8,General Petite,Dresses,Dresses +833,46,Pretty but sheer,"If you care that it's sheer- be forewarned. i probably won't wear a cami under it, as it's not terrible, but worth noting. that said, its lightweight fabric will be perfect for summer and its design is gorgeous boho at its best. it's cut quite generously and i do wish i'd gone down a size.",5,1,2,General,Tops,Blouses +1051,25,Not quite perfect,"I really love the look of this jumpsuit, casual but classy. shapely but comfortable. i'm 5'4 and, similar to another reviewer, proportional torso to leg ratio. the legs were longer on me than the model in the picture, but no problem there because they're cuffed.however the arm holes are too big. my bra shows, and the particular one i got came damaged with some of the embroidery coming unraveled on the back. it's also supposed to be dry cleaned and that's annoying for casual wear. returning it.",3,1,1,General Petite,Bottoms,Pants +1059,54,Wanted to love these but didn't,I sized up based on other reviews which was good advice. i am typically a size 6 but sized up to a 10. the pants are very unique and i think on the right body type would look amazing. it seems like someone with curves and a small waist might fit these splendidly...but that's not me. i had some extra material puffing about in the zipper region. i also expected the material to be thicker but found it to be more silky.,3,0,1,General Petite,Bottoms,Pants +1059,54,,"I'm so glad the other reviewer also found these small. literally, the largest size i have ever bought. but the style is really cute, sort of dapper british boy...",4,1,9,General Petite,Bottoms,Pants +1059,51,Maybe not for everyone,"Got these in the red brick color, and unfortunately had to send them back. these are really cute and i loved the color and pattern, but they ran very small, and the cut between the legs and hips was odd. this may not have been a problem had i gone up at least one size. best to try them on if possible.",4,0,0,General Petite,Bottoms,Pants +1051,47,Could live in this jumpsuit,"So comfortable, great fit, dress it up with wedges, down with flats, +extremely soft and flattering. i normally wear a xs/s and the small fit perfectly. i'm 5'6"" and the length is just slightly cropped.",5,1,0,General Petite,Bottoms,Pants +1059,79,Cute and funky work pants,"I just purchased these pants in red on sale. i am 5/5"", 143 pounds, and the 10 fit perfectly (i am either an 8 or a 10 in pants, depending upon brand). it is really hard for me to find pants that are cute, unique, work-appropriate, and flattering. these pants fit the bill in all aspects. i thought i would prefer the black, but am really glad i got the red.",5,1,1,General Petite,Bottoms,Pants +1078,55,Nice winter dress,"Great dress, fit perfectly warm for the winter, i live in florida it will be great if we get a winter next year. very comfortable and easy to wear.",5,1,0,General Petite,Dresses,Dresses +1051,58,Great romper but not for all body types!!,"Tried this romper on in store and wanted to love it but it just didn't fit me right. it'a great romper, cute design, super soft-light fabric and overall a great feel but it doesn't work to well for short girls with any types of hips. i have a very small waist and larger bottom and this romper just was very unflattering. i couldn't get the tie waist to sit anywhere that felt like my natural waist, instead it kept giving me a kangaroo pouch and hung on my upper thighs. sizing up didn't help becaus",4,1,4,General Petite,Bottoms,Pants +833,66,,"Being somewhat on the 'fluffy' side, the style is very flattering and forgiving and will be ideal for summer. i am between a size 14 and a 16 and the 14 fits perfectly. light and airy a very nice, simple embroidery in contrasting color. very chic in an effortless way. the armholes are just right--not too big! the color is definitely a creamy ivory. worth the cost because i don't think it will be available for too long.",5,1,15,General,Tops,Blouses +1051,53,Material was light and comfortable,I loved the jumpsuit but unfortunately had to return it due to running a little on the small size.,5,1,1,General Petite,Bottoms,Pants +1059,40,Unique and well made,"I love these pants! beautiful quality material, soft on the skin. fits well. definitely a tailored fit. true to size. unique design, and really fun! +i am 5 foot 5, and weigh 132 lbs. i am apple shaped, so i was worried these would be too tight around the hips, but they aren't .",5,1,0,General Petite,Bottoms,Pants +1051,30,Not for me,I really liked this jumpsuit but it just wasn't perfect. the design at the top is a bit stiff compared to the rest of the jumpsuit. i felt the whole thing ran just slightly too large. it was nice - but not amazing.,4,1,0,General Petite,Bottoms,Pants +992,50,,,5,1,0,General Petite,Bottoms,Skirts +1051,33,Embroidered gauze romper,"I love this romper! i am 5'2 and the medium fit great and wasn't long. i'm short so i thought i would have to hem this! it's comfortable and, although, i'm not a huge fan of gauze, the fit was perfect. i had to +snatch it!",5,1,20,General Petite,Bottoms,Pants +1053,33,Bridgette jogger,"I've been looking for comfortable pants that i could wear to work and at home. these fit the bill. i bought these in the holly color for the fall and winter. they are super soft and very comfortable. i was worried that they would like dumpy, especially around the seat area, but they fit fine.",4,1,0,General,Bottoms,Pants +1059,43,Perfect pants!!,"However, i unfortunately followed others advice saying these run small. i had to return/ exchange to a 00p. in turn had to give up the sassy red and settle for black. although they are beautiful trousers in black as well...",5,1,0,General,Bottoms,Pants +825,45,Perfect,"Received this shirt yesterday and loved it. doesn't look that great online in pics, but it is a unique and beautiful top. the material is a substantial woven cotton so it lays nicely and keeps its shape . i am 5'5 and 128lbs and a small bust size 34a , i usually wear small in shirts but since it is a longer length i didn't want it to tight around my butt.... i am curvy in that area size 6 pants....i ordered the medium and i am so glad i did .. it lifts just like on the model...the only downfall",5,1,2,General Petite,Tops,Blouses +1059,85,Nice pants if you have super tiny calves,"Unique print but not great execution. the pant legs are very tight, i have average sized calves and i sized up one size. the hook closure was oddly tight and difficult to clasp. when i first saw the color it looked like burnt sienna or a dried blood color. too bad this didn't work out.",2,1,2,General,Bottoms,Pants +1094,27,Favorite retailer purchase!,"This dress is absolutely amazing! i am an retailer addict, a good portion of my wardrobe is from retailer. that being said, this is one of my all time favorite purchases! this dress is a beautiful statement. i am tall and curvy and this dress fits like a glove but is very comfortable. the quality of the beading and the fabric is very good. i wore it on my hawaii vacation, and got numerous compliments! don't pass this one up! five stars!",5,1,0,General Petite,Dresses,Dresses +942,34,Great quality and color but boxy and ill-fitting,"I wanted to love this sweater. the photo of the model makes it look so soft and warm. i liked the heavy texture and the extra long sleeves. however, after receiving this sweater i tried it on for less than 1 minute. one look in the mirror was enough to make me take it off and return it asap. the knit quickly expanding from small to large right over the bust, combined with the boxy shape was an atrocious combo. it must have added 30lbs to my physique and made my bust look matronly. yikes! this ma",2,0,1,General,Tops,Sweaters +1078,49,Versatile comfortable dress,"This dress is comfortable and versatile - one could wear it to the office or to a social event, day to night. i didn't find the sizing to run as large as some of the other reviewers did. i felt it was true to size. it is not lined so you would need a slip under it if you wear it with tights or nylons, otherwise the skirt will cling.",4,1,0,General Petite,Dresses,Dresses +992,66,Sizing issue,"Such a beautiful print. i sized up to a 14 because it looked like it has a high waist and it does. the waist comes almost to my bra line. unfortunately, there's a huge amount of fabric and it swallowed me. not slimming at all. i felt like i was wearing a curtain. i loved the slits in the photo but due to the amount of fabric they weren't visible. i'm short and this literally pooled on the ground a few inches. if you're tall and thin, this is a beauty.",4,1,0,General Petite,Bottoms,Skirts +833,24,A size 2 too big,"I am usually a size 2 in tops. i am very, very rarely a size 0, so upon reading other reviews of this top i decided to order the 2 and assumed it would fit the way a 2 usually does. obviously this is designed to be a loose, flowing top. that's why i wanted to order it. however, the 2 is simply too loose in every direction. my primary gripe is that the arm holes are gaping and falling at the side in a way i don't think it intended. + +i do really like the styling and quality, so i am planning on",3,1,0,General,Tops,Blouses +1059,44,Love these pants!,"These pants are fantastic! the pattern alone is to die for, but they also have just the right amount of stretch for the perfect fit! i received so many compliments when i wore them i felt like a rock star!",5,1,0,General,Bottoms,Pants +1059,26,Runs small,"Bought these in 2p and i'm normally 0p in most pants. for reference, i'm 5'1 and 107 lbs and the 2 fit perfect! got many compliments on these pants",5,1,0,General,Bottoms,Pants +1059,58,"Fun, true to size","Unlike other reviewers, i found these pants to run true to size (in my case, my usual 6) or even a tad roomy. the red pattern is just festive enough for informal holiday parties. i appreciate the belt loops!",4,1,3,General,Bottoms,Pants +1078,44,Beutiful dress,"Decent quality. i am 5'4"" 130 pounds. m is too big. runs slightly large.",4,1,8,General Petite,Dresses,Dresses +1051,37,Comfy,"Very comfy and flattering. cool on a hot day. slightly difficult to use the restroom, though.",4,1,2,General Petite,Bottoms,Pants +1059,47,Adorable,"These pants are so fun. i love the pattern and color. can be dressed up or down. very flattering. +highly recommend trying them on, they were better than i expected them to be",4,1,1,General,Bottoms,Pants +1059,32,Great pattern,"I bought these on a whim, patterned bottoms aren't normally my thing. i was pleasantly surprised. they fit well, look great and i had lots of compliments.",4,1,0,General,Bottoms,Pants +1051,35,Flowy & fun,This jumpsuit is great. i recently had a baby and am still trying to get the last 10 lbs of baby weight off and this jumpsuit is very forgiving and super comfortable. i'm usually a medium & i wasn't sure if i should size up. i ordered the medium and it was the right choice. great light material for summer and nice neckline.,5,1,11,General Petite,Bottoms,Pants +833,56,Super cute,I bought this today in a size 2. fits perfect. i am normally a 0 or 2 or xs. the top looks and fits exactly like the picture if you are small chested. because it is not long in the front. i think if you are larger chested the top will stick out too much and be too short in front. it is not super voluminous in front which is a good thing. it does have the volume in the back which gives it a cute shape. it is on the shorter side. very nice material and design as well as details. overall good pick.,5,1,7,General,Tops,Blouses +1094,34,Gorgeous!!!,This dress is absolutely beautiful! it fits like a glove and the material is super soft. so in love with this! i'm 5'2'm and normally a xs/s. the xspwas a better fit in the waist and chest. the arm holes were a bit tighter on me. the sp was way too large.,5,1,18,General Petite,Dresses,Dresses +992,34,Runs small,"Beautiful patterns and colors, but it sits very high and runs small. i'm normally a size 4 and got the small. zipped all the way, but on the snug side. the skirt sits so high that the fabric coming down was a bit awkward. such a shame because it really is beautiful and looks great on the model probably because she's wearing a belt to hide how high it rides and flares out.",4,1,0,General Petite,Bottoms,Skirts +1094,37,Perfect for hourglass,"I tried on this dress in the store and absolutely fell in love! i'm a bigger gal who is busty and have wider hips. this dress made me look and feel slimmer, and is light to wear. the dress is a perfect length too. i'm 5'11 and this dress hits me right at the ankles. if your looking for a long dress to wear that can be either formal or casual, this one is perfect!",5,1,12,General Petite,Dresses,Dresses +1094,34,Absolutely beautiful and comfortable,"I decided to try this on just for fun because the colors and design are absolutely gorgeous. here are my thoughts: +_________________ +pros: +- the jeweled neckline is lovely! it really helps set the dress apart. +- pockets!!! such an elegant dress to have pockets is a huge plus in my book. :) +- the length is ideal for taller folk. +- it swings beautifully on the body and flares out quite a bit on the bottom. if you're tall as i am, this won't be an issue. +- nicely conservative at the top. + +cons: +- i",5,1,33,General Petite,Dresses,Dresses +942,38,"Pretty, but ill fitting",I loved this sweater when i saw it online and ordered right away. i purchased a s and the fit was very off. the arms were long (which i don't mind) but the sweater was also super heavy and bulky so it was not at all flattering. i really wanted to love it and it seemed to be of good quality but it i had to return it.,2,0,6,General,Tops,Sweaters +878,35,Cute!,Love sundry. great quality. if you want a looser more comfy fit size up!,4,1,0,General,Tops,Knits +992,53,Stunning skirt!,Beautiful colors,5,1,2,General Petite,Bottoms,Skirts +1051,34,Too big on top,"This just wouldn't lay right on me. the top is really too big. maybe if you're really busty, this is great, but not for me. i know the top is supposed to be a bit blousy, but it was huge and droopy and unflattering (not like in the picture). the arm holes were too big and hung down so you could see my bra, which i really hate and which is way too common lately. the bottom half fit perfectly, so sizing up or down would not have helped. the material is super light and comfy, which i liked very muc",3,0,1,General Petite,Bottoms,Pants +833,38,Great top,This is one of my favorite tops i've ordered. flowing and relaxed with great details at the neck. i get compliments every time i wear it.,5,1,0,General,Tops,Blouses +1051,38,Best for tall folks,"This jumpsuit is lovely and comfortable, with gorgeous embroidered detailing, but it really needs to come in petite sizes. at 5'4"" with a pretty proportional torso to leg ratio, i found the hem length okay but the top portion way too long. for the waistband to be anywhere near my natural waist, the shoulders would have had to be taken up several inches and the armholes shortened.",3,1,5,General Petite,Bottoms,Pants +1094,35,Perfect,"This dress is stunning! my sister-in-law was hoping to use it as a bridesmaid dress for her wedding and i ordered it for fitting purposes. it fit beautifully on my 5'10"" frame. unfortunately she decided against it due to availability and because of the length on the shorter bridesmaids. while it fell to a couple inches above my ankles, it made the shorter girls look shorter. i ended up returning it but am regretting not keeping it now!",5,1,0,General,Dresses,Dresses +1059,52,Classic and timeless,"I was a little concerned ordering these online without seeing them in person but they do not disappoint! the fabric has a little texture to it that makes them look and feel like a high quality pant. the design is unique and provides visual appeal, and i still feel like i can wear them in my office without looking out of place. i love the high waist on these!",5,1,2,General,Bottoms,Pants +867,37,,,4,1,0,General,Tops,Knits +1013,45,Great work skirt,"This skirt is a nice medium weight and is lined. my normal size 4 fit perfect. i only wish it was available in petites. if you are petite, the skirt is ankle length. but this is a good skirt to wear to work.",5,1,2,General,Bottoms,Skirts +1044,39,,"Runs large and pocket detail is very prominent. wanted a crisper, trouser-like pant--this is not it!",3,0,0,General,Bottoms,Pants +835,32,Pirate sleeves,"The beadwork is gorgeous, but the sleeves are so puffy, it looks as though you're wearing shoulder pads. the fabric of the shirt isn't that fabulous either.",1,0,0,General Petite,Tops,Blouses +1059,36,Lovely,These trousers are wonderful. the fabric is comfortable and does have a little give to it.,5,1,1,General,Bottoms,Pants +835,39,Why did i order this?,"I really wanted to not like the top for that price, but ti looks really good, the beading makes the shirt stunning... i ordered the 0p, not sure what size to get, and it is just fine. the length is almost too short, but isn't. the rest of the shirt fits nicely. the shoulder are wide, like poofing out a bit, perhaps that is hwy some people thought it looked large? the beading work is beautiful also a little sheer, but not crazy. debating whether to keep it but right now i love it. also, teh colla",5,1,2,General Petite,Tops,Blouses +857,29,,"Very pretty top, comfortable and soft but looks nice enough for work!",5,1,0,General Petite,Tops,Knits +867,35,,Normally i am a size 10 or 12 but i sized down to a small. still very swingy and beautiful. i bought the pink and the taupe as well. the colors are beautiful and have great texture to hide stains!,5,1,1,General,Tops,Knits +1104,41,Cute & comfortable,"I was a little surprised when i received this dress, as it is little more than an a-line tube with elastic casing at the top and a cute knotted detail at the bust. i guess i expected the bust to be lined at least. it is unlined, and a relatively thin jersey knit. it wasn't see through, for it is black, but i expected a heavier fabric. i would never have paid full price for this, but at the sale price it is very cute and comfortable. it is also flattering and the fit is true to size. the a-line t",4,1,0,General Petite,Dresses,Dresses +835,31,Great shirt,"This shirt is so great. it's beautiful and functional. i received countless compliments the first time i wore it. i'm looking forward to wearing it again! worth the steep price, though it was hard to justify.",4,1,1,General Petite,Tops,Blouses +835,46,Cute blouse!,"Very pretty blouse. it does run quite large, i am usually an xs-s or 0-4 and purchased the 0. i could probably have gone to a 00. for reference i am 5'4"" 118 lbs 34b/c. it says that it is dry clean only, however i washed in in delicate cycle with cold water and threw in the dryer for a little bit. it came out perfect! i was hoping to shrink it and it only shrunk a tiny bit. i was hoping for it to shrink more but it is fine. no need to even iron it! i was lucky enough to get it on sale, i don't t",4,1,7,General Petite,Tops,Blouses +434,37,Nice idea,The blue was a great color and i like the idea of a reversible top. however the xs was just swimming on me. this looks much more fitted in the pictures. my favorite workout top is from this brand and it is fitted and held up for 6 months. where are the fitted tops?? i'll keep looking.,3,0,1,Initmates,Intimate,Lounge +878,41,Loved it but big,This runs really big. i usually wear s or m so i got a small but i need the xs in this top and it is sold out. i don't have a store close by (about an hour away) and i hate paying shipping for returns! i will either have to plan a trip to the store or try to exchange for size over the phone. i debated keeping the small but it is really too big .... i love the style though!,3,1,0,General,Tops,Knits +1020,55,Love the color and stretch,I am always looking for a nice denim skirt and this one is great the pale pink is perfect and the stretch is awesome. i wore wedges with it and a nice romantic top and it looked great. i originally got a 8 and a 10 and kept the 8 because of the stretch it fit perfectly. nice length and great quality,5,1,0,General,Bottoms,Skirts +867,26,Color better in person,"I purchased this top in the taupe color, and it is much prettier in person than it photographs online. it runs about a half size too large, and sits slightly off the shoulders. fun casual top for the fall.",4,1,0,General,Tops,Knits +1104,51,Cute but no shape or support up top,This is not worth $128. it looks cute on but....there is no support in the bust area. just a slight tuck in the fabric -it also is very flowy which is great and it is comfortable but for the price and the thinness and lack of meatiness to the fabric itself i cannot recommend and will be returning. i'll look for something else. i haven't bought from retailer in a dogs age and i hope the quality hasn't slipped - i will look for another option.,3,0,11,General Petite,Dresses,Dresses +867,47,Great top!,"I got this top in an xs and the fit is great. the top is a little darker than pictured. it looks great with white, kaki and denim.",5,1,0,General,Tops,Knits +1059,32,,,4,1,0,General,Bottoms,Pants +835,49,Shoulders are puffy,This is a beautiful beaded shirt. the quality seems good. i just didn't like the shoulders. they are pleated and puffy. the picture doesn't really show them very well. also the collar is a little floppy. i was hoping it would have an option to stand up but that is not the case. the beading is well done and looks to be stable. i just thought it ran a little large and the shoulders looked puffy. i returned it.,3,1,1,General Petite,Tops,Blouses +835,34,Better in person,"I was pleasantly surprised with the fit of this top! at 5' 6"", i'm rather busty, short waisted, and full-figured. i ordered my usual size 16, and the fit is a flattering, 'almost' empire silhouette. i was worried about the back being too long for my body shape, but it works great. the embroidery and construction make this a really special piece.",5,1,3,General Petite,Tops,Blouses +835,27,"Beautiful details, but not quite right","I've been adoring this online and while in store i happened upon this blouse and tried it on. the material was sturdy and the beading oh-so lovely, but on my frame it looked terrible. (i normally wear size m/10 in retailer clothes). as another reviewer mentioned, this blouse has rather puffy sleeves which aren't evident in the photo of the model. as well, i also didn't love the collar, which doesn't quite lay flat. if i were to buy this i would have to wait for it to go on sale and then get the po",3,0,0,General Petite,Tops,Blouses +1020,56,Fits like a glove,"This skirt is a rare find. slimming, flowing, and best of all, it finally sits on my waist and not on my hips, while hugging the hips in all the right places for the streamlined and sexy look. the fabric is substantial, yet soft, so no weird sticking out sides. the color is delicious very pale-tea-rose, better in person that the picture here, and is fresh for summer. nice length for office. easy to pair with either fitting or loose top/s and jackets. i also got a distressed denim pilcro west to",5,1,5,General,Bottoms,Skirts +835,28,Maternity top,"Extremely disappointed with this top. it runs extremely large. i'm 5'2, 130 lbs, 34c and usually wear between a 0-2 & xs-s tops at retailer. i ordered a 0 and it looked like a maternity top on me. the bottom half of the top flared out and did not fit close to the body at all. fabric was also a gauze-like material that was not soft. unfortunately, i will be returning.",1,0,4,General Petite,Tops,Blouses +835,56,"Why floreat? so perfect, yet so wrong!","Tried this lovely with high waste, wide leg, black flowy pants. everything i could hope for and more, but not quite! + +size: blindly ordered size 6. i'm usually a small, occasionally xs in retailer brands like floreat and akemi+kin. i'm 5'5"" tall, 130 lbs, 34d, 35-29-37, long torso, narrow shoulders, and short arms. + +fit: size 6 had just enough space through the bust. the lace edged sleeves were roomy and just reached my wrists. the shoulders were just right. extra fabric ballooned out around t",3,0,25,General Petite,Tops,Blouses +867,70,Fabulous top,"Fabric is soft, body runs a bit big but falls nicely. length is great for leggings or skinny jeans. overall, wonderful tee shirt!",5,1,0,General,Tops,Knits +1020,31,Lovely,"The skirt is a little longer than i expected, it hits me at my calf, i considered having it shorten knee length but believe that may takeaway some of the aesthetic so i'm going to wear it as it. the quality is quite nice and the color is lovely, very feminine. nice skirt for a picnic",5,1,6,General,Bottoms,Skirts +1059,58,Cute pants!,I tried these on in the store and didn't buy them with the other items in my 'yes' pile. i couldn't stop thinking about them and ended up ordering them. they are so cute. the fabric is a nice weight. they have little stretch.,5,1,0,General,Bottoms,Pants +835,63,Love it but runs large!,"I was glad that i was able to get this shirt which is really more of a spring/summer item, but i found it wide in the body and the shoulders.",5,1,2,General Petite,Tops,Blouses +1059,26,Add to your collection,"It's hard to go wrong with the charlie's, especially in this fabric, keep them coming!! i wrote a review on the brush strokes as well. they fit pretty true to size, i'd say try both your usual size and one size down as well, they stretch out a little, so if they feel a little tight keep that in mind. because of the texture of these pants you can wear so many more colors than just usual black and white trouser fabric. try wearing a burnt orange, green, or pink (the isabella sinclair grid wrap but",5,1,1,General,Bottoms,Pants +1059,51,Another winner,Can't go wrong with these new charlie's by cartonnier. they fit amazingly. the fabric is a textured cotton but doesn't seem to wrinkle. just shook them out of the bag yesterday. the fabric description says cotton and spandex so they have some give (just a little) but are not going to stretch out after wearing for an hour. paired it with all sorts of different tops. side zip is slimming. lined pockets. substantial fabric. nothing bad to say. if you haven't tried a pair of charlies you should. you,5,1,5,General,Bottoms,Pants +867,63,"Wear now along, wear later with a sweater","Ordered the pink in a small, but it ran big...the xs was perfect for my 5'6' medium frame. it is comfortable and the fabric has an interesting texture. looks great with chinos or jeans. might need to get the other color.",5,1,3,General,Tops,Knits +835,33,"Just beautiful, but...","When i first pulled this shirt from the box i thought it was a for sure winner. the beading was stunning, it was just so elegant and the details are perfection. ""till i tried it on and had some reservations. the sleeves (at the top) were very poofy and just would not lay in a flattering way unless they were rolled above my elbow to tighten them. and as a taller gal, i wish it were a tad longer (in the model shot, looks a bit short from the back view). i fear tucking it would loosen the bead work",4,1,2,General Petite,Tops,Blouses +835,36,,"This is a really great top. it looks fantastic on. while it is a bigger fit, its so flattering. i get tons of compliments every time i wear it.",5,1,0,General Petite,Tops,Blouses +835,54,,"I ordered this shirt last week, it's beautiful!!!!! it's even prettier than the photo. i'm 5.3 120lbs ,i ordered the petite 6 and it fit perfectly!!!! i wish it came in more colors, i'd order another one in a minute!",5,1,3,General Petite,Tops,Blouses +1020,26,"Stunning, just wasn't quite right for my needs","So i actually loved this skirt (the tea rose color and coppery gold buttons were perfect together) and it's rare to find something that's simultaneously so form-fitting and comfortable.... but i hold a lot of my weight in my butt and thighs, and i just felt like it was a little too sexy for work (especially with that long slit - i might feel differently if it didn't have that slit, because then i could at least pair it with a cute oversized cardigan to tone things down a bit for the office). if",5,1,0,General,Bottoms,Skirts +878,48,,"Very cute top but runs very very big ! im5 ft 5 in tall, 120 lbs. i ordered the xs but it was so big it looked like a maternity top.. sadly returned the top. otherwise the top was made of good quality fabric.",2,0,2,General,Tops,Knits +964,33,Perfect,I love this vest. get compliments every time i wear it. it's stretchy too :). unfortunately i got ranch dressing on it and spot treated it with shout and now the spot is gone but the color faded there. so little tip don't spill on it lol. my fault though so still 5 stars!,5,1,0,General Petite,Jackets,Jackets +178,24,Very sheer and not as form fitting,"I have been eyeing this piece for months now! i broke down and bought it when they finally had my size in stock. i am 5 '4 and 110 lbs and have a very small chest so i ordered an xs. i think the top is too baggy for me. yes, the top and bottoms fit overall, but it doesn't look as nice and form fitting like it does on the model. it is very sheer--which is the thing that discourages me the most. i love the concept of this piece but the execution could use some work, which i am willing to work on s",3,0,0,Initmates,Intimate,Intimates +860,26,Beautiful fabric!,"This top is everything i wanted it to be. the fabric is beautiful, and the fit is flowy and comfortable. i would love to own a u-neckline version.",5,1,0,General Petite,Tops,Knits +860,56,Great summer t,"Great t. great lightweight, almost linen like fabric. a bit on the sheer side, but love the fit and the neckline!",4,1,1,General Petite,Tops,Knits +899,63,Nice styling!,I bought this for my mother and she really loves it. it is a bit on the large side for her but have decided to keep it. the quality seems very good and great styling for a washable item! i actually like it so much i may order one for myself!,4,1,2,General Petite,Tops,Fine gauge +914,43,Great staple with unique touches!,"I order this sweater in black - size small - and i just love it. i'm a slender 5' 9"" 130 lbs and the small is perfect in for me. while it has the classic cardigan look and a slightly oversized ""boyfriend"" feel to it, the rounded front hem, hip pockets, and buttons that end slightly above the bottom hem (where the rounded hem begins) are unique touches i appreciate and love in retailer's clothing. the weight was slightly heavier than i expected and better quality, but it is perfect for my minneapol",5,1,0,General,Tops,Fine gauge +860,39,Cute!,"Flattering fit and neckline. too thin to wear without a cami or tank underneath (for me), but i was expecting that. great go-to tee.",5,1,2,General Petite,Tops,Knits +225,32,Quality and whimsy,"I've been looking at these for some time and i finally pulled the trigger. i'm glad i did because these tights are such a fun accessory to add to my wardrobe. they add just enough whimsy to classic dresses and skirts. these are not your everyday thin stretchy tights. they remind me of the tights i would wear in the winter as a little girl; they are really sweater tights. i think this aspect is great, but they do not have as much give as other tights. i am petite, about 5'3"" 112 lbs and the small",5,1,1,Initmates,Intimate,Legwear +841,28,This top runs very large,"I expected the waist to be cinched like it appears on the model but it isn't. i ordered the xs and i'm swimming in it (i'm 5'4"" and 120 lb). would suggest ordering a few sizes down to avoid looking like you're wrapped in grandma's table runner.",3,0,4,General,Tops,Blouses +862,37,Flattering and comfortable!,"I love this top. i am always looking for tops that are comfortable and work as basics. the material is super soft and not too clingy. it feels like pajamas, but looks very polished. i am a little wide in the stomach and bust, but this didn't look boxy. i got these in all 3 colors.",5,1,0,General,Tops,Knits +970,42,Audrey hepburn,"This was what i was looking for ! the little stripes ,black and white color,the shape of the jacket and skirt together....well perfect. kind of. i purchased this entire ensemble. the skirt was going to be shortened because well i'm short. no problem ,this is a common occurrence for me. but the jacket would not work for me. the sleeves were way too tight for my muscular arms. there was no way the adorable shirt would fit in there. the shirt is adorable by the way. all of these pieces are made ver",4,1,0,General Petite,Jackets,Jackets +862,33,Beautiful but has flaws,"This top is just as beautiful in person as online. however, it has two issues for me. 1. it is too short. this might work if you have a short torso, but it would forever show my stomach. 2. the fabric has way too much static cling. no matter what i tried, it just clung to my stomach and flared out at the sides. not attractive. in short, if you have a short torso and don't mind battling the static, this truly is a beautiful top.",3,1,1,General,Tops,Knits +225,45,Add a little fun!,"These tights are so cute and can add some fun to any outfit. i paired with a mustard mini, denim shirt and desert boots! they do run small. i am a size 4 and had to get the m/l",5,1,1,Initmates,Intimate,Legwear +899,63,Great autumn sweater!,"I love retailer sweaters, in fact, i believe all my sweaters are from retailer! this cardigan is really nice and i'm so glad i bought it. it will work well with skirts, dresses, pants... it's well made and soft and comfy. highly recommended!",5,1,4,General Petite,Tops,Fine gauge +862,38,,"I really wanted to love this shirt. the fit was great, and the fabric just felt beautiful. luxurious, soft and flowing. but the collar was frayed... in addition, the little keyhole area fabric also had to be carefully handled to make it look smooth and not like bad workmanship. i put it aside to return it, then this morning went to have another look at it, wanting to talk myself back into it. but i can't overlook the fact i'd be ordering a new shirt that would look time-worn. it may be only this",2,0,1,General,Tops,Knits +899,45,Wish it looked as cute in person,"This cardi is cuter in the stock photos. in person, the colors are a bit more drab. stock photos also don't show quite how much of a swing shape this has. it is very soft, though. returned it!",2,0,0,General Petite,Tops,Fine gauge +862,40,,The material is cheap and looks torn. not as nice as the picture.,1,0,0,General,Tops,Knits +899,52,"Relaxed, flowing fit","Order a size down. i ordered a small from catalog and returned it to the store for an xs. +run large in the chest and down. the fit is more flowing than form fitting. nice material, not itchy at all.",4,1,2,General Petite,Tops,Fine gauge +862,53,Great top!,"This is a really nice top, especially for the price. i am 5'6"", 34dd, 140 lbs and normally wear a medium in dolan tops. in this top i purchased size small since the gathered front provides ample room for my bust. some reviewers have found this top to be on the ""boxy"" side. i can see that if you don't size down as i did. i found the medium to have too much fabric and look very baggy whereas the small was perfect. i do wish this top was a tad bit longer and less sheer, though. white tops should be",4,1,4,General,Tops,Knits +899,47,Cardigan love,"This cardigan runs slightly large as it is boxy, which i love. the color is exactly as pictured and it is soooo soft! can't wait to wear it with a t-shirt and jeans!",5,1,6,General Petite,Tops,Fine gauge +862,43,Soft and relaxed fit,"I bought this shirt in the rust color along with the blue/black sweater skirt after seeing it on display in the store. not sure i would have ever put those 2 together but i love the outfit. i'm not much of a shirt-tucker, either, but this shirt works either way. tucked in a skirt or more casual with jeans. my only criticism is the static cling in the front, as mentioned by another reviewer. i had thought of getting it in white, but if it's shear, then maybe not. haven't been wearing a tank under",4,1,1,General,Tops,Knits +860,37,Pretty and nicely cut,"The bright poppy red is gorgeous and the cut flattering and interesting. i'm usually between a m and l in tops but went with a s in this one because it looked too sloppy in my usual size. i'm a 32-34 d with arms that aren't tiny, and it's a bit tight across the shoulders when i reach forward but not enough to be a problem. in the smaller size it skims my hips nicely but isn't as long as pictured on the model. i would suggest pear-shaped girls size down if in-between. it is sheer but not so much",4,1,1,General Petite,Tops,Knits +225,38,I wanted to love them,"Adorable foxes, i was smitten in the store but the fix is bizarre and the foxes don't come up very high so you're limited in the length you can wear. i bought the m/l based on salesperson advice and i can't imagine trying anything smaller, i usually wear a size s or 4 bottom, these were super snug. back to the store they went.",2,0,0,Initmates,Intimate,Legwear +860,33,Flattering and easy,"I tried this top because i loved the not so simple, simpleness of it. however, it was a miss for me. loved the fit and style, which i'd say is pretty true to size, i just didn't love the color on me. i went for the orange one and the color was a bit too bright for my liking. cute top though! for reference i'm a usually small, i'm 5'4"" and a small fit perfectly.",4,1,0,General Petite,Tops,Knits +860,42,,,5,1,0,General Petite,Tops,Knits +860,48,Not a white tee,"Ordered the ""white"" tee, but when it arrived today, i was surprised by how cream it looked.the cut is nice and as other reviewers mentioned, it is on the sheer side. still on the fence of whether or not i'll keep it.",4,1,0,General Petite,Tops,Knits +862,58,Generously sized,"I am short, on the heavy side. 5'1"" 156 lbs. i always wear large petite. this beautiful blouse swallows me. lots of fabric on the front side of the shirt, causing a boxy look. i could totally do a mp if not sp. i am going to try and exchange.. +beautiful blouse, great quality, breathable fabric. colors are deep and rich. so comfy.. highly recommend.",5,1,2,General,Tops,Knits +860,29,Nice structure,Good structure and quality; a bit large and wish i had ordered something a bit brighter! (i ordered the white tee.),3,1,1,General Petite,Tops,Knits +862,36,,"Adore the rust color in this top. very pretty rust color. would go with a lot of stuff. my only small pet peeve with the shirt is the opening under the hook and eye. i have been wearing a seamless tank underneath. but everything else about the blouse fits so perfect, drapes nicely that i think the opening is a minor thing that a tank top can fix. beautiful on. felt that it fit tts. i'm usually a 34b, got an xs in this top.",5,1,3,General,Tops,Knits +899,28,Darker in person,"This sweater is thicker and darker than it appears online. i thought it would be more of a blush color, but it's more dark gray and brown. it wasn't that flattering on me as a cardigan. looked a little cuter all buttoned up, but ultimately i am not keeping because of the color.",3,0,0,General Petite,Tops,Fine gauge +899,53,Capsule wardrobe staple,"I like to have a capsule wardrobe for all seasons so that when i travel, or just for everyday, i have a multitude of options with a few good quality pieces. i am not a fan of 'dry clean only' items, so anything that i can find that i can at least hand wash with good results and is within my color palette and sense of style is always a great find. this light weight cardi can work for multiple seasons easily, it is a tad boxy, but it actually works for me (5'4, 34c, 125 lbs) i can wear it with a c",5,1,1,General Petite,Tops,Fine gauge +398,30,Relaxed fit,"This sweater is far more slouchy and relaxed in fit than in it seems in the photograph. definitely size down. honestly, i kinda love it anyways! the inside is so very soft, and it's perfect for a sleek errand-running or hiking kind of day!",4,1,2,Initmates,Intimate,Lounge +970,37,Soft and flattering,"This is a cute work jacket, as well as paired with jeans. flattering. very soft. only con is this is thick with a soft cotton lining, so not great for summer in az, but will get plenty of use this fall. typically 6-8 on the top, i went with medium. not tight in the arms as other reviewer noted.",5,1,1,General,Jackets,Jackets +860,53,Great all around top,"I have this top in orange and white. it is a great top to throw on with jeans. don't put it in the dryer, will shrink.",4,1,0,General Petite,Tops,Knits +964,71,The best layering piece,"This vest is perfect. it is a great layering piece to be worn with jeans, slacks or a skirt. it has a substantial weight without being restrictive. i made the purchase based on the other positive reviews and it was ""love at first sight.""",5,1,6,General Petite,Jackets,Jackets +862,59,Cute shirt,"The material is more like a great tee for the sleeves and the back, so it is so comfortable. i agree with the previous review, i am not thrilled about the hook and eye, but it still looks cute with a tank under it. i bought it in black and i am ordering it as well in white. it looks great with skinny jeans or pants.",5,1,0,General,Tops,Knits +225,41,,Such cute tights! i saw them and had to have them. they are a thick knit - very good quality. the color is a dark navy and the little foxes and a nice pop of color. i get lots of compliments on them.,5,1,1,Initmates,Intimate,Legwear +899,54,"Cute sweater, runs large","This is a very cute, casual sweater. i originally ordered a size medium but i had to send it back because it was way too large all over. i recently received the size small and i'm going to keep it. it is still a roomy fit but the overall design of the sweater is a relaxed fit. the color combination and texture of this sweater is lovely.",4,1,0,General Petite,Tops,Fine gauge +860,39,,,5,1,0,General Petite,Tops,Knits +964,36,The alternative to the green cargo jacket,I love layering this over basic tees (or graphic ones like the wild west tee) - it adds just the right amount of edge. currently building my pin collection to add on (vintage turquoise and rock music to be exact).,5,1,0,General Petite,Jackets,Jackets +899,53,Classic and trendy,"Classic and stylish. trendy with the blocking...rich colors, soft and comfy. i typically wear s and s was perfect. i love this sweater.",5,1,0,General Petite,Tops,Fine gauge +862,37,,,5,1,0,General,Tops,Knits +225,38,Need petite sizing,"These tights are so cute, but the sizing leaves much to be desired. i guess they are true to size since they are labeled s/m. + +i'm 5'0"" with shorter legs than torso, and i suppose i'm lucky that i have muscular (read: large) quads/thighs to suck up some of the fabric, otherwise these might have just bunched up at my ankles. + +the other thing i don't love about them is the feel of the fabric - it's more sweater-like (and not a soft sweater) than stretchy. maybe that was the intent, but i find tigh",4,1,0,Initmates,Intimate,Legwear +895,30,,"Nice fabric, great color, would be lovely ... on someone with a straight-and-narrow body type. for ladies with curves, take a pass--too much like maternity wear, and not in that elegantly slouchy kind of way. the straight-up ""is she or isn't she"" kind of way.",2,0,0,General,Tops,Fine gauge +431,19,Really cute,"This bra is just as cute in person as it is in the pic! i can tell it's pretty well made and i love that it has a lot of little details like on the straps and the cute front-closure and lacy racerback. it also fits pretty true to size, which is a must for me because i often get bras that leave my boobs spilling out. however, this bra isn't the comfiest even though it looks like it would be pretty comfy in the picture.the style doesn't look too stiff or anything and the size i got isn't too tight",4,1,0,Initmates,Intimate,Intimates +862,35,Love this top,I love this top!!! i just had a baby and it is difficult to balance classy with comfortable with out looking sloppy. this top is perfect. it may run a tiny bit big but for the most part it is true to size. great for busty girls (36dd).,5,1,0,General,Tops,Knits +831,48,Bright and airy!,"The color of this top is a bit more vibrant than online. material is light, but i can wear a beige bra underneath and not need a cami. fit was true to size for me and detail at the neckline is flattering. a keeper for me!",5,1,3,General,Tops,Blouses +899,65,Cute little cardi,I had to have this when i saw it in a store. i was drawn to the shape and the neutral colors. i wore it for the first time today with a black tank. on me it looks best unbuttoned. it looks good with pants. the small fit best although the arms are a little tight at the upper arms. i have muscles so i don't think i could wear it with any top with sleeves.,5,1,0,General Petite,Tops,Fine gauge +860,45,Color,"The color is as pictured, like a deep coral. very comfy and great drape.",5,1,4,General Petite,Tops,Knits +225,58,So fun!,These fox tights are so very cute and fun! how can you not smile when wearing these tights designed with the cutest foxes all over! they are warm too! these go great under dresses or tunics and i always get compliments when wearing them! they are a real attention getter!,5,1,0,Initmates,Intimate,Legwear +964,66,Nice vest,"I really like this vest. personally, i think it is difficult to find vests that fit properly. this is a good one. fabric and color good. the photo is very representative of the color. no surprises there. arm holes are not too big which is often a problem. the detail on the back gives it some added interest. the only thing i would mention that could be a negative is that it is short, especially in the back. again the picture is representative but do pay attention to the length and be certain that",5,1,4,General Petite,Jackets,Jackets +862,64,Much cuter in person,"I didn't pay much attn to this online. i'm not much on front hook & tie closures. well, saw today at the local store & decided to try on both the s & m. i am usually a s in tops, but the m was only a bit more roomy & longer than the s, so i went with the size m. i thought the styling of it paired well w/ the pilcro cord skinnys i had on. looked much better than the pics online. i have other pilcro skinny cords & jeans in vs colors so i think this top will work out well for me. love the 3/4 sleev",5,1,2,General,Tops,Knits +862,59,Good everyday shirt,"I'm glad this was on sale because i would not have purchased it at full price due to the strange fit in the sleeve. the shirt has a slight raglan sleeve, but the sleeves do not fit loosely, they kind of twist under the armpit area. i do not have large arms, so i am ok with straightening out the knit sleeves, but they do not fit right. i also was surprised at the unfinished edge along the neckline. it is messy and tacky looking, but i think that is how it was meant to be. my recommendation to buy",3,1,0,General,Tops,Knits +841,35,Does not fit as expected,"Note to photographers: please don't cinch the wait of a blouse to make something look tailored when it isn't. this could have been a real win if it had been more simply executed. i'm petite, way too much fabric. returned.",2,0,3,General,Tops,Blouses +899,28,Soft and cute,"Fell in love with this a soon as i saw it in store. it is soft and can eaisly be dressed up or down. wore it to work already and got so many compliments. +unfortunately when i saw it in store they didn't have it in stock. the very helpful gentlemen at the irvine, ca location checked online but it was sold out in my size. so he checked the stores that carried it. i called one and the mailed it to me. customer service in store is great!",5,1,0,General Petite,Tops,Fine gauge +841,38,Great top,"Lovely embroidery with a classic look, great addition to your wardrobe.",4,1,3,General,Tops,Blouses +830,46,Lovely material,"At first, i thought this top was going to be stiff. i am pleasantly surprised by how soft and flowy this blouse is. it's lovely cream color with beautiful lace details. i appreciate the lining inside the bodice which means i can potentially go bra-less when it's hot! i'm 5'2'', 135lb and retailer size s usually gives me plenty of room because i have a small upper body. but i feel this top is slight short on me. that might be because i didn't wear it off-the-shoulder but had it hang from the top of",5,1,12,General Petite,Tops,Blouses +1081,35,Green not as pictured,"I honestly never even tried this on - i ordered it and when it arrived it was not the kelly green color pictured, it was more of a dark bland green color. love the brand and very soft but had to return.",4,1,2,General,Dresses,Dresses +1035,59,,"Perfect jean. these jeans are comfortable, the length is great, and the rise, at least for me, is spot on. my torso is fairly straight - not a lot of the hourglass thing going on - and somehow these jeans feel like they were made for me. thank you pilcro.",5,1,0,General,Bottoms,Jeans +984,55,Love this jacket!,This is going to be my go to all season. looks great with a sweater dress and boots also looks great with cords!,5,1,0,General Petite,Jackets,Jackets +1008,29,Terrible!,"This skirt was horrible on me. it was loose in the waist, tight in the hips and poofed out like crazy at the tiered part on the bottom. the material also felt cheap and clingy. i guess the fit is tts, but it's hard to tell given how strange the cut was.",1,0,2,General Petite,Bottoms,Skirts +830,31,Love it!,"I love this and instantly felt sexier when i put it on, yet with the longer sleeves and looseness felt i could wear it casually. + +i will say that i have to often keep adjusting/pulling the top neckline down. it seems to want to revert to above-the-shoulders position. + +the fabric and quality feels nice and it was a great purchase for me!",5,1,0,General Petite,Tops,Blouses +984,60,Wow!,"I just received my duster . i love it! the coat is as pictured. the fabric is medium weight denim with some stretch. it feels like a denim coat that you have worn for years. i'm 5'8"" and the duster hits mid-calf. i'm a curvy size 14-16 and the xl fits perfectly. the only issue that might arise is that the sleeves are long; they fit me perfectly but i have long arms. this will be my new go to coat for fall.",5,1,12,General Petite,Jackets,Jackets +769,55,Nice little top,"The design is graceful and both my kids said it was a keeper ""pretty,"" even the boy child. + +somehow i feel it makes my tummy look bigger than it is, maybe with the belt on my jeans.",4,1,2,Initmates,Intimate,Lounge +1025,41,My new favorite jeans,"These jeans are an even dark color that can be dressed up. the material is soft and they fit perfect. they are mid rise which is a little different for me as i mostly where low rise. the only problem is that they are really long. i am 5'9"" and they are too long for me which never happens. so i need to get them hemmed and wont be wearing them for a few more weeks. i look forward to rocking them with a pair of booties or heels.",4,1,2,General,Bottoms,Jeans +830,60,Off the shoulder elastic issues,"The problem with off the shoulder tops is that the neckline is totally elastisized , therefore upon any movement of your arms the top pops above your shoulders making it go from stylish to matronly . the only elastic should be right at the shoulders , the rest of the neckline should be a simple finished hem. .",3,1,13,General Petite,Tops,Blouses +888,54,Nice top,A cute top. slightly tight in the upper area. debated returning but decided to keep as the top is unique and i know that i will wear it frequently. aleardy thinking of way to wear all year around! runs small,5,1,0,General,Tops,Knits +1008,51,Comfy,"Unlike the other reviews, i love this skirt. the lining is a nice stretchy material, as is the eyelet overlay, making it a really easy to wear, and comfortable skirt while still looking polished and professional. +i bought it so that its slim fitting, more like a pencil skirt. +i've only worn it to work dressed up, with boots, but suspect i'll get a lot of use in the summer with flip flops and a tee shirt. +i highly recommend it, and think it's a great price. +it is longer than on the mode",5,1,5,General Petite,Bottoms,Skirts +34,42,The best boy short,"I love panties. i love the prettiest, softest, most adore-worthy panties i can find. these are my favorite boy shorts--i can always put them on and feel pretty. no weird tight spots and the lace has a perfect amount of stretch. im a mom and my body isn't perfect anymore, but these panties give me confidence, with perfect coverage. i choose them more often than any other in my lingerie drawer. my only warning: wash these pretties as delicates, or the lovely lace colors will fade.",5,1,0,Initmates,Intimate,Intimates +1008,32,A little long,"I can't figure out if this skirt is supposed to be high-waisted (if so, it's too big but the length works), or if it's supposed to sit on my hips (fits well but too long). but the material is really comfortable, and the design is different in a good way.",3,1,0,General Petite,Bottoms,Skirts +1008,35,Good skirt,I'm glad i got this skirt because it's prettier in person than in the picture. fiance loves it so that's a bonus. it's tts although it's longer than shown on the picture. very high quality and looks expensive. i'm very happy with this purchase.,5,1,1,General Petite,Bottoms,Skirts +1081,34,"Nice, but not for me","This is a very nice dress. the jersey is soft and high quality. the construction appears solid. the color is very pretty, and looks in real life just like it does on my computer. the cut and draping just don't work for me. there's just too much draping, too much fabric. it overwhelmed me and made me look bigger than i am. i have a feeling this would be much more flattering on a curvier figure than my own. this dress seemed to be trying to accentuate curves i don't really have (especially in the",4,1,4,General,Dresses,Dresses +1008,27,Cute and comfy,"I tried this on in-store and would have purchased if it have been a better price, it wasn't something i could justify spending $100 bucks on. it's cute and was surprisingly comfortable but again, not worth the asking price. i will buy when it goes on sale.",4,1,6,General Petite,Bottoms,Skirts +984,56,One of the best denim dusters!!,"I was out of town when my coat arrived, and was so excited to get home and try it on!! i haven't worn it yet, but we've now got the weather for it...and i can't wait! i'm 5'7"" and heavier than i'd like, but the xl fit perfectly!",5,1,0,General Petite,Jackets,Jackets +888,26,Good but runs very small,"Retailer sizes are all over the place. i fell in love with this top, and tried it a couple of times to see if it would work. unfortunately i have to send it back. the design and colors are very good. the side slits are very high, right up to the waist, but the top still looks good. unfortunately it is very small. it still fits because of the long side slits, and is not that tight at the top due to sleeveless, but the fit just wasn't as flattering. it does seem to run 1-2 sizes small, so i a",4,1,1,General,Tops,Knits +1008,39,,Fits beautifully. perfect for spring and summer. the cut of this skirt gives your figure a wonderful shape. the quality of the material is excellent. this item is perfect for to dress up for a date night or wear slightly more casually for a brunch.,5,1,1,General Petite,Bottoms,Skirts +1095,27,"Runs small, stiff top","I ordered this in my usual size 0 and couldn't finish zipping up the top, but also couldn't fill in the boobs. i am 5'7, 116 lbs, 32a. it is very cute, but the top was pretty stiff and unless it draped on you correctly, could probably be bothersome. i was disappointed in the quality of the skirt- no lining, simple cotton/polyester. i will probably return, try the size up, but was disappointed compared to how excited i was for it. i did like that it had pockets, and would be a fun dress to wear f",4,0,0,General Petite,Dresses,Dresses +1095,35,"Great fit, alluring","I love this dress so much. the fabric on top is not something i would have chosen-it is thick and almost an elastic kind of feel. but i have grown to appreciate that since this dress is not amenable to most bras. i think the fabric would be thick enough on top to actually just do without one. otherwise you would have to go with a strapless-and the right kind of strapless, with this dress. + +when they say it flares it really does-and much more than i was expecting. the bottom part of the skirt f",5,1,2,General Petite,Dresses,Dresses +1008,53,Lovely pattern,"Timeless skirt. just don't like the placement of the slit, so maybe i'll sew it up.",5,1,1,General Petite,Bottoms,Skirts +1013,28,Omg! back is see-through!!,"I was so excited about this skirt and pairing it with a cute blouse for the warmer weather. as i took out the skirt out of the package and flipped it around, the back has mesh strips that are see through! there is also no lining to go with this skirt. if you go back to the ""back view"" picture on the website and zoom in closely, you can see the model's black underwear.",1,0,1,General,Bottoms,Skirts +1027,59,Runs large,Nice color and cut but runs very big so size down. will need to send back due to on line only. i am hoping one size smaller does the trick.,5,1,2,General,Bottoms,Jeans +1095,46,Runs very small,"I love the style of this dress, but unfortunately, it runs very small. i normally wear a size 8. i ordered a 10 and the dress was closer to a size 6. disappointed that i had to return it. also, the seams were poorly done and threads hung out everywhere on the hem.",3,0,1,General Petite,Dresses,Dresses +1095,34,Fit works for some and for others,"This dress did not work for me. i tried it in my bigger size 6 since i am coming off winter weight gain. the dress fit tts but was squishing the breasts like tight bandages. i have smaller chest and the stretch bodycon fabric of the bodice made me look flat-chested. the straps did not sit flat on shoulders, i assume because they were not pulled tight enough by the chest. the dress was uncomfortable and felt strange on. but i can see how others with more curves on top will love the support of the",3,0,4,General Petite,Dresses,Dresses +867,56,Flattering top,"When i first tried this top on, i didn't like it because the chest just spilled open. i saw it on someone else and it was so flattering i gave it another try. i bought it in both the red and the black, and plan to put a stitch or safety pin through the top to keep it closed. it is very slimming and hides tummy/muffin top issues. i plan to wear it with the stretchy knee length maeve pencil skirts all summer, along with shorts and pants. give this one a try!",5,1,5,General,Tops,Knits +1008,45,Great work skirt,"This skirt is great to wear to work. nice medium weight. being cotton, it doesn't get to hot. skirt is lined. nice flattering shape. my normal size 4 fit perfect. love the godets. comfortable. doesn't get all wrinkled from sitting. nice royal blue color.",5,1,5,General Petite,Bottoms,Skirts +867,38,,,3,0,0,General,Tops,Knits +1008,36,Beautiful skirt - get ready for compliments,"I get so many compliments with this skirt! i love almost everything about it. i gave it 4 stars instead of 5 because i find the slit a little annoying. i think it's maybe a little too long (or short, i can't figure it out) but i couldn't pass up this skirt because the pattern is so pretty. + +fits true to size, soft fabric, very cute.",4,1,1,General Petite,Bottoms,Skirts +1095,24,Classic,"The dress was great! the zipper was just a little tough but over all a very classic, feminine piece.",5,1,2,General Petite,Dresses,Dresses +825,39,Surprisingly nice in person,"/my friend and i both tried on this shirt just to see how it fit and because it was blue. we were surprised how pretty it si on. a little see-through though, but hte cut hits in the right places (i guess we are not too endowed). she ended up buying it so i passed but very feminie work piece.",4,1,0,General Petite,Tops,Blouses +825,35,Not for my body type,"Love this button down, but i couldn't make it work. i'm 5'4"", 32b, and usually buy tops in a regular xs or s. i bought this top in a small and it was loose fitting which i liked, but too long for me causing the pleats to flare out more than i liked. the shirt is also pretty sheer, wear a skin colored bra unless you want it noticed. the material was soft and looked like good quality.",4,1,0,General Petite,Tops,Blouses +867,47,Not like the photo at all,"I thought from the picture this would be a light floaty top. when it arrived, the fabric was a heavy knit and the neckline sagged very low. on me (granted i'm a pear) the bottom layer hugged my tummy and rear in a very unflattering way. the only thing i liked was the color. back it went.",1,0,20,General,Tops,Knits +867,60,Too low and very big armholes!,"Tried this on at my local retailer, the red color is pretty but not a ""true"" red. the fabric has a nice weight to it not the usual thin stuff that retailer seems to offer these days. two big problems though- the top is very low cut and i could see it ""opening"" up to the world! and the armholes are cut so big and low that you could see the sides of my bra, this is a deal-breaker for me, it can't be fixed.",2,0,1,General,Tops,Knits +867,46,Red in xl is pretty,"I ordered one of the xl in the red version. the fit is true to size. it matches the model's photos. the color is much prettier in person. it looks washed-out on my computer. but, in person, it's a nice light red. the quality of the material is okay. not as good as with the floral version of this style (florascura tank). the layers are flattering for my pear-shape. it definitely needs a tank underneath though. not worth full-price in my opinion but worth getting on sale.",4,1,0,General,Tops,Knits +1095,35,Size up!,Adorable dress. could hardly get the zipper up in my very typical size 4. i will order a 6 and am hoping it will work out!,5,1,0,General Petite,Dresses,Dresses +1095,26,Cute!,"This dress is very cute and fits quite well. you don't have to wear a bra with it, which is awesome, and it has delightful pockets. the downside is that the fabric on the top half is a little weird. it is very heavy and stiff. also, the inside has some fraying and the quality does not seem to be the best. i'm keeping it though.",3,1,1,General Petite,Dresses,Dresses +1095,70,Unique dress,"I love the unique design of this dress. it also has a nice thick material. the top part runs small. i'm normally between size 6 and 8. i bought this dress in size 10 and the top part is still snug, whilst size 12 is too loose. the bottom part has a nice flowy material with pockets. since the top part is snug, it will best not to wear a bra plus the thick material will provide a nice support. the down side of this dress is that the straps are running long. i have a short torso, so there's",4,1,0,General Petite,Dresses,Dresses +867,53,Great top!,"This top isn't so much on the hanger but very cute once you try it. the neckline is really cut low so a pin or stitch is necessary. the length on the regular is perfect for my shorter body. if you have a long torso it might not work for you. love how the layers conceal but do not overwhelm your body. i purchased my regular size medium in black. for reference: 5'6"", 145 lbs, 34dd.",4,1,2,General,Tops,Knits +1008,35,,Love love love this skirt. i walked into retailer in august not looking to buy this skirt even though i saw it in the catalog and thought it was cute. once i tried it on i fell in love. i purchased both black and blue. super flattering and true to size. its a must have for sure.,5,1,0,General Petite,Bottoms,Skirts +1095,24,,The design on this dress is so cute. it runs really small. i had to go up from my normal size 4 to a 6. i am not well endowed so the top was great on me. it's looks great on once k got a size that works.,4,1,0,General Petite,Dresses,Dresses +1008,30,Love this skirt!!!,"This skirt is everything i love about retailer. the fit, style and quality are amazing. i feel like a am wearing a piece of art. it is so unique and fits perfectly. way to go retailer!!",5,1,0,General Petite,Bottoms,Skirts +1008,36,,Gorgeous skirt. runs a bit big. well made. perfect for the office and super comfy.,5,1,2,General Petite,Bottoms,Skirts +867,73,Wish it fit better for me,"I wish that it had fit me better as the feel of the fabric and the color were great! regrettably, i am sending it back as the v opening is too low for my tastes and the fabric on the left of the first layer drapes weird on me. i am usually a s or m and in this top the s was plenty of length and room, would be swimming in a m. the fabric was soft and felt great against your skin and not thin as some fabrics can be. the color was just as shown and beautiful. hope it works for some of you out there",3,1,10,General,Tops,Knits +867,34,Lovely top!,"This is one of the best date night tops i've seen in a while. i'm 5'6, 120 lbs and the xs is perfect. the fit is spot on and the fabric feels nice. i will need a teeny tiny safety pin to keep the front closed, but i do that often so i don't see it as a design flaw.",5,1,2,General,Tops,Knits +1008,41,Perfect skirt,"Despite being a knit, this skirt holds its shape and is absolutely perfect. it goes with everything and is extremely comfortable.",5,1,0,General Petite,Bottoms,Skirts +1095,41,Surprisingly flattering...plus pockets!!!,"I tried this dress on in my local retailer and was pleasantly surprised. it fit!!!...and looked cute. as other reviewers have mentioned, it runs small, but it is super stretchy, especially in the top portion. with that said, it accommodated my bust! i have a 32g bust, and it possess a problem for me when i try to buy dresses. the top of this dress is pure elastic, so it works. the dress stretches on top, but comes back inward on the body?so i can show off my curves. i have no idea what bra i can w",4,1,0,General Petite,Dresses,Dresses +825,37,,Unexpected delight! great top that can be dressed up or down. the only con is a little small through the bust.,4,1,0,General Petite,Tops,Blouses +825,43,Very flattering fit,"Love this shirt, very flattering fit on my pear shape. also accommodates my larger 32dd bust without straining on the buttons. ever so slightly sheer fabric, but no cami needed if wearing a nude bra.",5,1,0,General Petite,Tops,Blouses +867,41,Lovely top that runs very large,"The color, design and fabric of this top (got it in the red) were just as i expected, but as the owner of several deletta brand tops, i was very surprised to find that my usual size small runs very large in this tank. not only did the front dip too low but so did the arm holes, and the top just hangs on me. it was so big for a small that it almost made me think it had been mislabeled and was really a size large. +bummed to return it because i really love the color and the style. will try an x-s",2,0,0,General,Tops,Knits +867,32,"Beautiful drape, very deep v","I bought this yesterday and love it. it drapes beautifully. it's a little fancy but versatile enough that you could wear it for semi-casual occasions. the first tier hits at the natural waist, while the second tier hits at about hip height. this is very flattering for the waist, while still being drape-y and a bit loose. i thought this fit a little bigger than to size. i am currently postpartum boobed so i am 5'4"", 135 lbs and 34dd and the s fit great. (i am currently a s in other retailer tops).",5,1,2,General,Tops,Knits +825,22,Unique spin to classic button down,I have been wanting to incorporate button down blouses into my wardrobe for months but hadn't found any that caught my eye. leave it to retailer to supply the best alternative to a classic look. i love everything from the bottom flare to the way it cinches my waist. i would say this is perfectly appropriate for a business setting while still giving you individual style.,5,1,0,General Petite,Tops,Blouses +1095,30,So great - but quality not amazing,"So, so cute. totally flattering. but the seams don't lie flat and there are loose threads all over the place. i've had issues with quality from retailer for a while (random holes in things) and was disappointed this fit that bill. i'm keeping it anyway because it's so cute!",3,1,27,General Petite,Dresses,Dresses +1095,26,Flattering,"Super flattering! my mom and i both bought this, and we have very different body types. (we both had to size up a bit, as i have a large chest, and she has a large ribcage.) i got a size 10 (i'm normally a size 8), and she got a 12. it was much easier to zip up without bras on, and it seems to have been designed to not need a bra. my mom is pretty short (5""2'), so she's going to get her straps shortened. for reference, i'm about 5'9"". hope this helps!",5,1,7,General Petite,Dresses,Dresses +825,43,Fun & flirty take on preppy look,"I bought the grey and white plaid shirt in a large. i'm 165, 36d and the top closes without gaping - even when i push my shoulders back. it's kind of sheer, so will wear a cami underneath. the waist nips in right where it should - giving a trim silhouette. adorable and fun top, without being cutesy. love tylho tops!",5,1,1,General Petite,Tops,Blouses +1095,66,,Super cute and flattering!,4,1,10,General Petite,Dresses,Dresses +867,39,Pretty spring/summer top,"First, i love this top overall. it is simple and classic and has a flattering, forgiving cut. i agree there is a major design flaw as other reviewers have mentioned. the v-neck is so deep and falls so low you need to wear a camisole underneath. instead i chose to take a stitch at the neckline to keep it together where i wanted it, and that worked beautifully. i think the top should have included either a small button or snap to hold the neckline up properly or should have been stitched together",4,1,7,General,Tops,Knits +825,37,Perfect fit for broad shoulders,"Based on previous reviews i ordered this shirt in both a small and medium. i have fairly broad shoulders, and thought i might not fit my usual small (if it helps for reference, i am 5'6"", 123 lbs, and wear a 32c bra). i first tried on the small and didn't even bother opening the medium. i have a hard time finding blouses that fit in the torso without pulling at the bust (i think this is more related to my wide shoulders as opposed to actual bra size). with this blouse the buttons don't pull at a",5,1,0,General Petite,Tops,Blouses +825,56,Absolute steal at sale price,"This top is adorable, especially the grey check. timeless staple, with a modern & cute update. i agree with 2nd reviewer; i don't think this blouse pulls or is tight in the chest. i'm also a 34d, i got a small, it fits perfectly & i wear it all the time - i think it's great for every season. very flattering, the peplum hits at just the right spot and defines the waist. i get compliments all the time. i pair it with cropped sweaters when it's cold. the grey does seem a bit higher quality; the blu",5,1,0,General Petite,Tops,Blouses +1008,37,,"Buy this skit- it's everything that retailer used to be. great pice, work appopriate, and it fits great.",5,1,0,General Petite,Bottoms,Skirts +867,29,Beautiful top!,Wow im really glad i didn't listen to the negative reviews! in ordered this top in the black and red and i have to say this is one of my favorite tops! the neck line i agree does need to be secured. i wish they would have added a snap. it's fine though as i don't mind sewing it closed. this top is worth it! i'm 5'2 108 lbs and small chested. so for slim girls i think this is perfect!,5,1,1,General,Tops,Knits +825,62,Great basic,I really like this shirt. the material was a little heavier cotton than i expected in looking at the picture which is good otherwise it could look like you slept in the shirt. it is something that is going to wrinkle when you wear it so if that is bothersome then pass on this shirt. it's a bit longer which i also like because it will work by itself or under a jacket or sweater.,4,1,1,General Petite,Tops,Blouses +1008,66,Colorful & lovely,I found this skirt to run tts - i am a size 16 and the bought the xl. it is so soft and comfortable and the colors are so much prettier in person. i paired it with a black turtle neck and black dolce vita booties that i snagged on sale at my local retailer. happy girl!,5,1,0,General Petite,Bottoms,Skirts +921,32,Beautiful sweater,This sweater is comfortable yet still work appropriate. the ruffled shoulders adds a feminine touch.,5,1,0,General,Tops,Sweaters +1095,23,"Great idea, okay execution","I have a shorter torso and so i usually love dresses that hit right at my waist- so this dress seemed perfect! +i ordered a size 2 petite, which fit very well. the regular two (in picture) was not as well made. the straps didn't fit as well. they were less of an ""x"" and way more fabric. petite fit great. i think this dress is really fun but not very mature. i returned it because it didn't feel adult enough for the event.",4,1,8,General Petite,Dresses,Dresses +867,43,Great buy on sale,"Just picked this up in black in the store. on the hanger it looks like just another v-neck tank, but it is quite flattering on. however, the v-neck is quite exaggerated and loose, i will be pinning it so it doesn't sag open. :)",4,1,1,General,Tops,Knits +1030,41,Just like the photo!!,"I love jeans!!! especially this pair. perfect fit, hugs in all the right places. perfect length! worn it 3x already! and it gets better every time you wear it. goes great with a cute too!",5,1,1,General,Bottoms,Jeans +1095,27,,"This dress is made of a very thick material both on the top and bottom, making it very flattering. lots of compliments!",5,1,2,General Petite,Dresses,Dresses +867,43,Cute summer top,This is a nice lightweight summer top to wear with a pair of shorts. it is low cut though - lower than i expected so i wear a tank underneath it. the layers are flattering.,4,1,0,General,Tops,Knits +867,37,Odd fit,"This shirt was so weird?it does not fit like the photo at all. there seems to be missing a stitch or something at the top as it is wide open until the bottom/where it meets the other layer. i could wear a tank/camisole underneath, but it still just did not fit right. i do not have a large chest, but this was ridiculous. beyond that, the red color was just okay. even though i purchased this on sale, it was not worth the price and i returned.",1,0,0,General,Tops,Knits +1095,42,Just...weird,"I saw this dress and immediately started daydreaming about wearing it while honeymooning in italy along the amalfi coast or the cinque terre with my husband. and then i tried this dress on and immediately woke up. the cut is a disaster, the quality is terrible, and the dress just plain didn't work. the strips of elastic were sewn unevenly, giving the appearance that there was one large breast and one non-existent breast. the neckline was so long that it had to have the elastic run over the outsi",2,0,4,General Petite,Dresses,Dresses +822,25,So different in a good way!,"This blouse is pretty sheer, but perfect for a summer day. good coverage in the front and under arms on the sides for limited bra exposure, and a very cute opening in on the lower back.",4,1,1,General,Tops,Blouses +867,39,"Droopy front, heavy fabric","Right out of the bag, this top didn't really match the one pictured here (it is the right top, though). the fabric was heavy and felt ""damp"" -- the way something feels coming out of the wash. very odd. +and the fit is nothing like what's shown on the model. the ""v"" is not fitted or nicely wrapped (or even tacked in place) -- it was just two loose, droopy pieces so most of my bra was showing no matter how many times i put the pieces back where they belonged (i'm neither ""flat chested"" nor ""busty""",1,0,8,General,Tops,Knits +1094,23,,I love this dress! perfect for both work and play and can be worn in all seasons thanks to the sleeves.,5,1,0,General,Dresses,Dresses +994,35,"Feminine, romantic skirt","This skirt caught my eye immediately. i love the beautiful patterns and colors. i'm currently pairing it with a charcoal grey top, which works well. the only slight concern is the material is a little poofy. i still love it, and definitely recommend this standout piece.",5,1,2,General Petite,Bottoms,Skirts +868,38,Great top!,I was surprised and impressed by how well made this top is. it looks and feels expensive and of good quality. it is a very flattering fit for someone like me who is small on top and wider at the hips area. i look forward to wearing this top all through the fall/winter/holiday seasons!,5,1,0,General,Tops,Knits +481,53,Too shortwaisted,"So cute and so adorable but too short for my body in size small. i'm going to try a size medium. +fabric is a nice weight cotton. lining is good, sleeves are a not too tight.",4,1,3,General Petite,Bottoms,Pants +481,31,,"It really is such a cute romper. took it on s trip to italy and it was airy and comfortable. that is in till i washed it. i'm in europe so there aren't dryers... washed it in cold water, line-dried it and it shrunk. significantly. it still fits but the top doesn't blouse over like it previously did. and the shorts feel really short. so disappointed. my advice would be to hand wash it in very cold water",3,1,1,General Petite,Bottoms,Pants +1080,57,Perfect!,"Beautiful, flattering dress. love that you can where a bra without having to be concerned about straps showing. very happy with purchase. highly recommend.",5,1,0,General,Dresses,Dresses +1080,37,,"I'm so excited about this dress! it's perfect for the summer. the material is so soft and lightweight, with a great lining. i ordered a small petite and it fits great! the ruching in the front isn't overdone, so you don't have to worry about adding bulk in the midsection. no problem with my bra (32dd) showing in the back either.",4,1,3,General,Dresses,Dresses +994,35,,,5,1,0,General Petite,Bottoms,Skirts +481,31,If only,I was really happy when i saw this romper online and ordered it right away. unfortunately being larger chested i thought i would size up to a medium. bad choice. now i have a beautiful romper that is too big for me. i will be getting this one tailored.,3,1,0,General Petite,Bottoms,Pants +481,38,Cute... if you're planning to hold it on,"This romper is cute, well-made and true to size, but i haven't figured it out how to put this on without having someone tie the back ties. which pretty much means that going to the bathroom is not an option while you have this romper on. not sure what the designers were thinking here. i'm returning this one.",2,0,1,General Petite,Bottoms,Pants +902,56,High in back,"This is a beautiful sweater, but if came up weirdly high on me in back, higher than it looks on the model. she must have on high waisted pants.",4,0,0,General,Tops,Fine gauge +1054,62,Not for me...,"Super long even at 5'7"" and a little too voluminous for my taste. incredibly comfortable and beautiful pattern though. i'm having a hard time imagining there getting much use for me, so even at the sale price they're going back.",3,1,0,General,Bottoms,Pants +1094,43,Huge,"I was so excited to order this dress, had the perfect red shoes to go with it. unfortunately i could have been nine months pregnant and still wear the small. i am 5'4/118lb and it was like a maternity dress. sad to send it back.",2,0,0,General,Dresses,Dresses +1026,55,Love them!,"These are the most comfortable pants i own. i bought them in the gold, green, and gray (which really does look more like a grayish purple). the gold is my favorite - it goes with so many things! i was just checking to see if there were any other colors - would love them in black and a burgundy. i'm about 125 lbs,, 5 foot 7, and the 28 is a perfect fit. the saleswoman warned that they would stretch out, but i haven't found that to be a real problem.",5,1,0,General Petite,Bottoms,Jeans +868,66,Great w/ black crops,Glad i got this on sale. it is more yellow than the photo & short. it is also heavy with a sueded interior. would have given more stars if it was less boxy & longer.,3,1,0,General,Tops,Knits +1054,24,,"Love these pants! super comfortable, but feel high quality. i am usually a size 2 and the xs fits perfectly.",5,1,0,General,Bottoms,Pants +1080,27,Lining makes all the difference,"130 lb, 5'5, 32dd. ordered xs. this dress is a bit outside my normal retailer style, but i love tracy reese designs and it had good reviews so i decided to give it a try. i could not be more pleased with this decision. as some of the other reviewers have said, the dress is very well made. the lining in particular is excellent- it is a soft mesh that prevents the dress from clinging, without adding bulk in the hot summer weather. i typically wear more structured dresses, but the lining on this dres",5,1,3,General,Dresses,Dresses +994,24,Great material and design!,"As most other reviewers stated, the skirt does run a bit large and long. however, it is nothing a tailor can't fix! i plan on getting it taken in to fit higher up on my waist to make it both smaller and hit closer to below my knees rather than mid-calf. the elegance of the skirt can be dressed up or down depending on what top/shoes you pair it with. it feels well made and the coloring is much better in person than in the picture!",5,1,0,General Petite,Bottoms,Skirts +1080,43,"Really wanted to like it, but...","I really wanted to like this dress and was so disappointed when it came in the mail. if you have any sort of hips, the light pattern in the middle doesn't do you any favors. this made my hips look soooo wide! and the seaming and gathering in the middle was just off. if it was one continuous piece of fabric it might look better. with the seam, the pattern was cut up and looked pieced together. that just drew too much attention to my stomach and hips. it had to go back.",1,0,0,General,Dresses,Dresses +1080,40,The maxi dress i've been looking for,"The first reviewer summed up many of my thoughts exactly. i don't like to go without a bra and this dress with its slightly wider, almost cap-sleeve straps solves my problem perfectly. i love this neckline and wish i'd see it in more maxi dresses! the crossover and cutouts in the back mimic the lines of a traditional indian sari blouse and skirt, again without sacrificing bra coverage. just a beautiful and inspired design - definitely a standout in the sea of summer maxi dresses i've seen. i lov",4,1,17,General,Dresses,Dresses +1094,47,Gorgeus dress,"I love the bohemian look and fell in love when i saw this dress when i saw it online. it's pricey but i am holding on to it because it's really beautiful. i got a medium. i'm 5'2"", medium built. it's just perfect. i'm tempted to get the petite but with petite, the top gets to be too short so i think i'll stick with regular size. my family loved it! the quality and detail in the dress is just gorgeous! you can easily dress this up or down.",5,1,0,General,Dresses,Dresses +1001,28,"High hopes, but tiny and flimsy","I am almost always an xs in bottoms (sz 0-2) but literally couldn't get the stretchy waistband (no zip or fastening) in xs up my hips. in addition, the ""brocade"" is a very lightweight polyestery, tinselly weave--does not suggest quality. as others have noted, it also runs short; i'm 5'3'' and this was a little below knee length on me, not ankle-length. i've had luck with retailer's sale section in the past, including some items that didn't always start off with the best reviews, but have no regret",1,0,0,General,Bottoms,Skirts +1080,37,,"This dress is extremely comfortable and easy to wear with a bra. the back is great and the length is perfect for me. it's flattering, but the pattern (being light in color across the middle) isn't particularly flattering on your waist. that being said though, the gathering in front is great for hiding bumps and whatnot (after 3 kids that's important to me). lightweight and great for summer. 5'8"", 135lbs and the size s fit perfectly.",4,1,10,General,Dresses,Dresses +903,35,Lovely!,"I love this top! fits true to size. tunic length, thin comfy fabric, adorable subtle print. the perfect top!",5,1,0,General,Tops,Fine gauge +1026,33,5-star fantastic!,"This is my first ever review! these pants are 5-star fantastic. ordering additional colors because i love these so much and am finding i want to wear them every day. i initially ordered the bronze color which is superb, just beautiful. i was worried it might be too bright to wear to work, or be a different hue in real life, but they look just like the picture. to my happy surprise they dress up easily. it's a really rich color that i have been able to pull off at work with long sweaters and boot",5,1,0,General Petite,Bottoms,Jeans +994,57,,,5,1,0,General Petite,Bottoms,Skirts +1094,43,,I feel like an indian goddess in this dress! lots of swing to it!,5,1,0,General,Dresses,Dresses +1094,36,"Loved, but unsure about quality","I loved this dress the minute i tried it on and am actually really sad that i had to return it. however, the embroidery was unraveling in several places before i'd even worn it, so i thought it would probably only get worse. too bad because it's gorgeous and flattering!",3,1,0,General,Dresses,Dresses +481,33,,"This romper originally caught my eye in the beginning of the summer with the sweet back bow detail. i had originally planned to purchase for a trip to paris in june, but waited until the last minute and my size wasn't immediately available at my local store. i had honestly forgotten about the romper until i noticed it recently in the sale section ... at that price i couldn't pass it up. again it wasn't available in my size at the store location, but they were able to ship it w/in a few days. i p",5,1,0,General Petite,Bottoms,Pants +868,48,Beautiful unique top,"Love the unique details and neutral color scheme. top is boxy but i liked the way it looked on my 5'2"" 115 lb. frame. it's comfortable and well made. thicker material. seems to be holding up fine after one washing. looks great with skinny jeans. highly recommend!",5,1,0,General,Tops,Knits +994,33,"Lovely skirt, runs a bit large.","Lovely assemblage of prints, looks great in motion. but the waistband runs a touch large. if you're between sizes, maybe size down.",4,1,0,General Petite,Bottoms,Skirts +1094,58,Love this dress,The little details are just beautiful. the embroidery and tassels are so cute. loose fitting just floats over the body. feels very light.,5,1,3,General,Dresses,Dresses +868,49,Love this top,"I really loved this top the minute i put it on. read the other reviews but it really worked for me. i am 5'3"", 36dd, athletic build and the m fit perfectly with a nice roomy fit. top will be perfect for my upcoming trip to tahoe. plan to wear with light denim, dark denim, and black cropped denim bottoms. even looks great with a culottes or denim skirt. the weight is really nice and it washed nicely. i washed on delicate, and laid flat to dry. a little pressing and good as new. it has a nice boze",5,1,6,General,Tops,Knits +1026,35,Sizing is all over the map!,"If you happen to get a size that fits you, you will love these leggings. they are true to size when the quality control works. i got 2 pair, both in size 28 - one fits perfectly and the other fits like my mothers high waisted jeans! the material is very soft and comfortable. also, not sure who named these colors, but the grey is really light purple and the dark grey is dark purple.",4,1,0,General Petite,Bottoms,Jeans +1080,32,Gorgeous maxi dress,Flattering dress that looks great on. the back cut out shows some skin while still covering up a bra. the petite size fits true to size,5,1,1,General,Dresses,Dresses +1026,34,"Cute leggings for cooler days, but be aware of fit","I've been wanting to add some cords to my wardrobe and had to give these a try. i ordered the blue color on-line in size 31. i'm somewhat in-between size 30 and 31 in jeans right now, so i thought i'd be on the safe side and go up. i ended up keeping these and i'm happy with my purchase, although i do feel like the cut of the leggings is a bit off for me. i am a proportional hour-glass shape and i found these leggings to be quite snug in the thigh, while being oversized in the waist. +in the end,",4,1,2,General Petite,Bottoms,Jeans +1026,36,,"I really wanted the dark grey, but it has been sold out in my size for many months. i finally ended up with the navy. i think they are much cuter in person, the color nicer also. i think the cuffs have been folded under in some of the pictures of the models making the shape look just a tad odd. i got my usual size, and the fit was perfect. they stretch just enough. i would get the second pair in a heartbeat.",5,1,0,General Petite,Bottoms,Jeans +1094,66,Great dress but...,"Loved this dress and ordered it based on glowing reviews. ordered size large because i weigh 155 pounds and have a large 34g bust. the dress skimmed nicely over my body but the baby doll style fit loosely and made me look really wide from the side. i probably could have sized down for a better fit, but it might have just emphasized my bust. the fabric has a substantial weight and it's lined. best as a fall, winter dress. the embroidery is beautiful. i disliked the intense black color around my f",3,1,2,General,Dresses,Dresses +1080,39,,"I ordered a petite small. i'm 5'3, 135 lbs and 34b and the length was perfect and the fit was great. like the previous reviews. love you can wear a bra with it.",5,1,2,General,Dresses,Dresses +1080,28,This dress is perfect!,I love this dress so much! i got petite and the length was perfect. it was so soft and so pretty. perfect for a wedding.,5,1,0,General,Dresses,Dresses +1080,31,I adore this dress.,"Soft, comfy, flattering, just a beautiful dress. it works for any occasion. i can't express how much i love it!",5,1,0,General,Dresses,Dresses +868,63,,I'm a 32ddd and this top fit perfect. i wore it with boyfriend jeans and flats. the material is nice and perfect for fall,4,1,0,General,Tops,Knits +481,41,Super adorable!,"The romper is well made and just plain cute. i bought it the second i saw it and don't regret my impulse buy one bit. 135 5'5"" and the small fit perfectly.",5,1,9,General Petite,Bottoms,Pants +1080,41,Love it!,"I have been searching for great bra friendly maxis and the design and colors of this one are exactly what i was looking for. i love how the front and back dip down and the open back with crossover detail is really sleek looking. overall, it's tts, but the chest is a little low cut, so some will want to size up for extra coverage. the fabric is a silky jersey made of mostly rayon (95%) and spandex (5%) with a mesh nylon/spandex lining from the top through where the cream color ends at the botto",4,1,47,General,Dresses,Dresses +857,33,Sleeves too tight,"Ordered a l and xl, the sleeves were so tight on both sizes but the rest of the shirt was wide and loose. the tight sleeves were not proportional with the rest of the shirt. both sizes had to be returned.",1,0,12,General,Tops,Knits +1080,43,Dreamy bohemian maxi,"I'd give this dress 6 stars if i could, it's possibly the best dress i've bought at retailer in 12 years of shopping there. the fit is fantastic with the ruching around the waist adding camouflage for anyone with a bit of a tummy. the cross back stamps hide a bra effortlessly (even those wide supportive bra straps that larger cupped women need to wear), the mature rial is soft and silky to the touch, the fit is true to size, the pattern is bohemian and elegant -- not hippy dippy at all. i'm 5'6""",5,1,2,General,Dresses,Dresses +481,59,Beautiful! ...but not for a long torso,"Hahaha! as gorgeous as this piece is, i look absolutely ridiculous in it. i am 5'7'' 115 lbs but have a long torso and so the crotch area is, well, a little unflattering to say the least:) i am really sad because i shy away from shorts due to my year round pale skin, but this fabric and color worked really well for me. the length of the shorts is also nice and the back is beautiful! i've never had a romper and i was truly hoping this one would be the one for me. it is all round perfect...if you",4,0,1,General Petite,Bottoms,Pants +1094,30,Huge!!,"This dress had beautiful details, and the material was better than i expected; however, it was huge! it completed swallowed me. i am 5'1 about 106 pounds with quite a bit of muscle. i ordered a 00p and it still looked like a sack.",2,0,0,General,Dresses,Dresses +1094,63,Tassels :(,"I wanted to love this, as it seemed like a fun and carefree take on a little black dress. + +but how did i not see that this has tassels? but they're there, a whole row of them - look hear the bottom of the skirt part, between the colorful stripes and the lacy area. that's a deal breaker for me - i really can't stand the way these look, and they're not the sort of thing you can easily remove. + +the fabric, though nice quality, has no stretch at all. i wasn't expecting stretch, but i'd just say",3,0,1,General,Dresses,Dresses +857,34,Great casual top,This might be one of my new go to tops. looks cute with jeans and a sweater or alone. the arms are snug but not uncomfortable and i think it adds to the shirt.,4,1,0,General,Tops,Knits +1094,58,Great autumn dress,I needed a dress to go to a reunion party(not hs) and this fit the bill perfectly. it fits perfectly and its short but not too short. it is a great work dress or change your accessories and its perfect for out to dinner.,5,1,0,General,Dresses,Dresses +1026,35,Great legging cord!!,"These are really great legging style cords. you can wear them without worrying about covering your bum in my opinion! they are not too bulky at all which you might expect in a corduroy pant. they are a tad loose in the waist area unfortunately but fit me well in the thighs, so i don't think sizing down would work for me. i bought the bronze, and it's a very versatile color! darker than the picture, but still a good color. i feel it will be perfect for fall and spring especially. i'll wear it all",4,1,0,General Petite,Bottoms,Jeans +1026,34,Nice fitting cords-bronze,"These cords are soft, comfy and my normal size 32 for tts. the length was fine for my 5'9 height. i really like the bronze color, it is almost a yellow.",5,1,0,General Petite,Bottoms,Jeans +903,36,Beautiful design,"I really like this pullover. the design is beautiful, and i love the asymmetrical hem. my own complaint is that the fit is a bit boxy on me because i'm large-chested. it's more drapey than tailored. but it's not overwhelming and doesn't cancel out how much i like it overall.",4,1,0,General,Tops,Fine gauge +1054,35,Beautiful fabric,"The flow and feel of the material is really nice, however, i think it runs large. i ordered a small, and i have exchanged it for an xs, which i am hoping fits a bit better. i wanted the pants to be a bit more fitted around the hips and flow from there.",4,1,0,General,Bottoms,Pants +1094,39,Bohoranna rhapsody,"This cute dress is swingy and chock full of fun little details. love the embroidery, colors, crochet lace, tassels, wide sleeves. don't like that it's all polyester and some embroidery is unraveling so i don't know what to do about that. size down if your petite or slender. i'm a med-large (135# 36c 38-27-35) and medium fit great at the bodice/shoulders. hem hits my knees in regular size.",4,1,0,General,Dresses,Dresses +1080,39,Another tracy reese winner,"I can't get enough of maxi dresses and i can't resist tracy reese. this stunning dress caught my eye immediately, but i was worried that the back cut out at the waist would make my backside look flatter. i'm so glad i took the plunge to buy before it sold out. this dress fits perfectly, it's flattering to my figure, the print is beautiful, the fabric and drape do not cling to my figure flaws and i'm just so happy! for sizing reference here are my stats: 5'3"" 140# 36dd and i purchased the medium",5,1,6,General,Dresses,Dresses +1080,33,Great dress,"True to size. length is perfect for 5'8""-5'9"". soft fabric. not too low cut in the front, but not all covered up either. ruching is subtle and does not add bulk. skirt portion skims curves, neither clinging to them nor poufing out from them. strap design is perfect, covers bra while revealing a touch of skin. comfortable and effortless to wear, very very pretty.",5,1,2,General,Dresses,Dresses +1094,50,Beautiful dress,"This dress is so pretty. i loved the details on it. the material was ok. would have prefered a softer material so the bottom part of the dress would have been more flattering. unfortunately, it did not fit me right. i'm 5-2"",34c, 28, 37 and the 4p fit ok. it hit just above my knees so the length was fine. what i did not like was that it was a little too loose around my waist making me look pregnant so unfortunately i had to send it back. i'm so sad cause this is a really pretty dress. you can dr",5,1,0,General,Dresses,Dresses +857,32,Cute but a little maternity looking,"I'm keeping this top bc it was on sale but it does look a little maternity! i wore with super skinny white jeans and 3"" casual heel. i'm short so i needed a little more height to slim me but if your tall and and slender this might work better for you?",3,1,0,General,Tops,Knits +1080,33,Gorgeous!,"I feel like an indian princess in this dress! it isn't very forgiving, make sure you don't mind showing some skin - but there's some subtle rouching right at the spot where most of us wish we could hide at all times. great colors; boyfriend loves it.",5,1,0,General,Dresses,Dresses +1094,39,Exquisite,"Absolutely love this dress. i saw it online and didn't give it much thought and then saw it in the store and it was amazing. the photos really do not do it justice. the embroarding detail at the bottom is beyond beautiful in person. i agree that if you don't want skin showing you will need a black bra or black cami to over the delegate lace down the front and back of the dress. got this for fall/winter in fl and cannot wait to wear it, perfect holiday party dress!",5,1,0,General,Dresses,Dresses +1094,65,Ingenious mix of line and detail: ranna gill!,"This dress is my personal introduction to talented indian designer, ranna gill. i just love this gorgeous, free- spirited dress! i bought the regular medium for my 5'1"", 34f, size 8 figure. it works very well. i will want to wear a black cami, as i'm not comfortable with some cleavage showing (maybe 3/4"") and the open lines of lacy, small holes down the front and back. you might not mind showing more skin though and not need a cami. the top is not very see-through, and the skirt is lined. the re",5,1,9,General,Dresses,Dresses +1001,43,Not as shown,"I agree with the previous reviewer that the length is not at all what is shown in the picture. much shorter than that. and while the overall detail of the skirt is very nice, the elastic waistband makes it look cheap considering the price...",2,0,5,General,Bottoms,Skirts +1080,44,"Great dress, even better in person!","This dress is great, and looks even prettier in person, the colors are more vibrant. the ruching is very forgiving for the belly and the length is perfect. most maxi's are too long on me, but i ordered a ps and it fit perfect. my only complaint is that it is very low cut, which i was unaware of standing up, but when i sat down at a dinner party, well, let's just say i gave everyone a show :(. recommend wearing a cami or something underneath.",5,1,2,General,Dresses,Dresses +857,38,Flows nicely,"I love this shirt. i'm 5' 4"", 110lbs, just had 3rd baby so not into tight fighting clothes at the moment. love the loose yet flattering fit of this shirt. the sleeves are not too tight on me and i love the length.",5,1,1,General,Tops,Knits +1054,37,Too big,"I ordered these pants after seeing the good reviews, but i don't agree. these are going back. i ordered a small. i'm 5'5"" and 135 pounds. i am usually between a small and a medium in pants, but the small in these pants is huge. i could definitely fit into an xs. but i also don't think they are very flattering and don't like the feel of the fabric. it's too bad. i love the idea of these.",2,0,0,General,Bottoms,Pants +1080,39,In love with this dress!!!!,"This dress is so pretty- the colors are vibrant, beautiful pattern, the ruched part in the center hides the tummy!!! the neck line was too low for me, so had to wear a red cami underneath which hid the skin showing parts in the back around the waist. so instead of skin color, it was now red- even more prettier! no body could tell!! got so many compliments!!!",5,1,1,General,Dresses,Dresses +860,36,Nice knit button up,I was pleasantly surprised when this arrived. it hangs in a flattering way and the red has a nice soft hue. i couldn't believe what a great deal i got while on sale.,5,1,0,General,Tops,Knits +1059,67,Funky fun,"These crops are very well proportioned and fun. the graphic pattern is spot on trend and the unusual silhouette can spice up your pants options. + +i am a fan of cartonnier and these particular pants were surprisingly generously cut in comparison to most of the styles i have. i usually need to order cropped pants in tall, but these worked with the regular inseam.",5,1,13,General Petite,Bottoms,Pants +1066,51,Perfect summer pants!,"The linen- cotton blend breathes so well for a hot summer day! the design on the waistline is super cute and yes they are a little long in the leg but that can be a plus+ for vertically challenged girls like me. wedges and platforms are perfect to show off the soft drape of the pant legs. now that they're on sale, i'm snatching up other colors, like white and light khaki- already have the seersucker blue pair!",5,1,0,General Petite,Bottoms,Pants +1094,26,Belle of the ball,I wore this dress to a party once and haven't been able to find an outfit that can top it!,5,1,0,General,Dresses,Dresses +371,38,Disappointed,"Cute and very soft, but the elastic wasn't sewn in right. i took them out of the wash and the waistband was a twisted mess. disappointing for more expensive loungewear.",1,0,1,Initmates,Intimate,Lounge +1066,44,,"I love these pants! comfortable, light and can be dressed up for work and down for the weekend. the color is a little more saturated in person, but can't really complain about that too much!",5,1,2,General Petite,Bottoms,Pants +828,56,Runs small,"I loved this top, however had to return as it does run small. by the time it arrived they were sold out in the larger size. like the quality of cloth and stone, however their products do run a size small.",4,1,0,General,Tops,Blouses +1035,41,Just a perfect pair!,"As a lazy one, i have to confess i barely leave any reviews even though i rely on the reviews from others to make my online order decision. yes! i owe a big ""thank you"" to anyone who wrote a helpful and honest reviews here :) and thank you!! now it is my time to pay back to the community. this pair of jeans are just perfect - perfect design, perfect fit and perfect material, soft, cozy and hip with a good spirit.. i don't want to take it off once i put on! i am 108 pounds and 5' 3"" ordered size",5,1,4,General,Bottoms,Jeans +1059,36,Super cute but not for me,"I am just over 5'8""and i found that these pants hit me in a weird spot on my torso, almost creating a muffin top that i don't normally have. in addition, they were too short on me to give the chic and modern look of cropped ankle pants. on my frame, they fit more like capris from the late 1990s. both the construction and execution of the pants are otherwise fantastic.",4,0,0,General Petite,Bottoms,Pants +1059,39,Great day/night pants,Adorable and amazing quality. true to size. i ordered a 6 and fit perfect.,5,1,0,General Petite,Bottoms,Pants +1066,38,Great for spring,Love these pants. super light and great color. they are a bit long though,4,1,0,General Petite,Bottoms,Pants +860,41,,Very nice top. flattering and goes with everything. i bought the medium in the green but would have needed the large in the white as the white was a little see through and showed more of my flaws. i agree with the other reviewer in that this top has good button placement.,5,1,16,General,Tops,Knits +838,42,Beautiful - if you're pregnant with twins.,"This is a gorgeous top. very well made with a classy design. it fits true to size from the lower chest up. however, at about the mid-belly range, the shirt widens out and basically allows a 5 month twin pregnancy to comfortably fit in. size xs. i was so sad. for the price, i can't justify taking it for alterations. it would have been the perfect top.",2,0,14,General,Tops,Blouses +1081,42,"Beautiful dress, fits poorly","I purchased this and another eva franco dress during retailer's recent 20% off sale. i was looking for dresses that were work appropriate, but that would also transition well to happy hour or date night. they both seemed to be just what i was looking for. i ordered a 4 regular and a 6 regular, as i am usually in between sizes. the 4 was definitely too small. the 6 fit, technically, but was very ill fitting. not only is the dress itself short, but it is very short-waisted. i am only 5'3"", but it fe",2,0,5,General,Dresses,Dresses +828,33,Surprised this shirt is still available !,This shirt has such a fun twist on an otherwise basic jean shirt! i bought this shirt on a whim despite having a closet full of denim shirts... and i'm glad i did! the fabric is the same cloth,5,1,0,General,Tops,Blouses +898,50,I'd rather pay property taxes than buy this one!,"Disappointment city with this one and i am so lucky i had a coupon because if i would have paid the full $128 they are asking, i would be a tad skewed. not just thin material but thin and cheap feeling. doesn't itch but i seriously expected a lot more from retailer. i have noted the name of the designer and have promised myself to never buy this label again. big loser.",2,0,7,General,Tops,Fine gauge +860,53,Great shirt,"I first bought the red & green at the store. when they went on sale bought the blue & ivory. love, love ,love these shirts! they go great with a skirt or jeans. so happy i got them. the fabric is stretchy, but still fits very nicely. what a great buy, hope to see more of this style again.",5,1,2,General,Tops,Knits +1035,39,"Ok, but didn't love the length (on me)","These jeans are well-made, the cut is decently flattering, but on more muscular thighs, it would look nicer if the cuff was a bit higher. the petite on me was just below the ankle, so it just looks like i folded my jeans because they were too long. if you are taller or have longer legs (mine are short on my short height), then i think these would be great. i dind't find them particularly small, but htey were snug (muscular thighs). overall, ok but returning them. (25 p ordered, 115 lbs, 26.5 in",4,1,2,General,Bottoms,Jeans +1066,39,Nice but stil la tad long in eptite,"Iordered hte petite after trying the rregualr size in the store, and i will have to wear heels with the pants... or get them hemmed... the color choices are all great, i wanted navy, but i have a pair of grey ones that look similar, so i deciced on the netural if my size is stil lavaialble in yellow at sale time, i will be grabbing those as well. + +i went with 25, my typical size lately (115 lbs)",5,1,13,General Petite,Bottoms,Pants +1035,59,Perfect except runs way too small,"I ordered these in my usual size and could barely get them on. they fit ike tight leggings. they have spandex that is comfortable and they will probably stretch as you wear them,. i exchanged for the next size up, because the style is great for year -round and the quality excellent. i live 2 hours from a store, i would either order up at least one size or try them on in store.",3,1,15,General,Bottoms,Jeans +1035,38,Great fit,"I love love love the fit in the corduroy, so thought about grabbing these jeans as well. they fit much pretty well, just the color wasn't quite right. i'm really picky about the blueness of my jeans, and these don't quite match the coloring in the photo. still debating whether to keep them. love the cuff styling and straight leg fit!",4,1,1,General,Bottoms,Jeans +860,25,,"I love this shirt, it's easy to belt. i just wish it was tighter.",5,1,0,General,Tops,Knits +1066,56,The perfect pant for warmer weather,"Finding pants off the rack that fit me is always a challenge - i'm petite (5' 1'), a bit curvy and short-waisted, so many of today's low-rise styles just do not work for me. however, these pants are a better cut and come pretty close to a perfect fit - comfortable and flattering, too. i've actually had pretty good luck with pilcro pants. i always have some gapping in the waist, but it's not much of an issue with these. more than likely whatever top i wear will hide that part. i was advised by th",5,1,4,General Petite,Bottoms,Pants +1066,41,Great pants!,"I absolutely love these pants! i have been searching for a pair of linen pants for quite a few years but have never really found a pair that looked good on me until now. i have usually found linen pants to lack shape and end up making me look frumpy but i really love the fabric. well, these pants actually have some structure to them and are still super comfy and soft. i bought the neutral color which is acutually a very fine tan and white pinstripe which makes the pants a bit more classy. i love",5,1,2,General Petite,Bottoms,Pants +1066,52,Love these pants!,"These are the most comfortable, happening pants i have ever owned! they are extremely flattering and slimming at the waist. i am a size 4 and bought the 4, and they fit perfectly. they are a bit long, but after washing and drying on low, mine shrunk enough that i can wear them with flats or flip flops, and not just heels. my 2 teenage daughters have complimented me on them saying how ""modern"" they look. i bought them in navy and just ordered the grey yesterday. i might go into my local store and",5,1,1,General Petite,Bottoms,Pants +1036,56,Great jean,"I love these jeans, well,i have not worn them out yet so not sure if they will stretch, but just in terms of fit and cut, i really like them. i normally wear ch or ag in 25 or 26. i got these in 25 and they fit perfectly. i love the stretch, great color, not too thin, very comfie. i was worried about too much flare, but not a problem. they are very long, but i am only 5""2 and i will be hemming them about 8 inches .",5,1,0,General,Bottoms,Jeans +1078,46,Truly beautiful dress,"I'm an avid retailer shopper. +i bought this dress for my niece, her style tends to run +bohemian/gothic. +the style, fabric and overall design/quality of this dress, is something i felt she would like (even though the color is not black). +she loves it - perfect fit. she accessorized it with her usual biker/moto jacket,boots, etc. +but it looks awesome on her!",5,1,0,General,Dresses,Dresses +1094,26,,"This dress is absolutely beautiful. i was hesitant to purchase it due to the price, but i just couldn't resist. it's so flowy and comfortable. it's quite long on me; i'm 5'5 and have to wear heels so that it doesn't drag, but could easily be fixed with alerations. i wore this to a wedding and received so many compliments.",5,1,0,General,Dresses,Dresses +1081,47,Square,"Short and wide. the color and print are so pretty, but the shape isn't flattering, at least not to me. might work better on a teen?",3,0,0,General,Dresses,Dresses +1059,54,Off the grid,"Kicky looking pants, that i got at a bargain basement steal. i'd be kicking myself if i didn't buy them. can't wait to wear them once it warms up. they'll look great with a lightweight, boxy sweater and flats. i tried on the 4 and the 2 and the 2 is perfect. the fabric has a nice, fluid feel to it. i always swore to my husband i'd never wear plaids, but i guess i lied.",5,1,0,General Petite,Bottoms,Pants +860,41,"Like, don't love","I'm keeping this blouse anyway. i purchased the olive and it's such a great color. i live in a warm climate and really don't need long sleeves, but since the color is so great and pairs well with a lot, i will keep it.",4,1,2,General,Tops,Knits +1066,56,My favorite spring pants,"I absolutely love these pants. i got the yellow and it is a beautiful, soft color. the fabric is soft and flowing. i am 5'1"", 102 lb and the 0 petite fit perfectly. some stated they are too long even in petite but i disagree. the patch pockets are darling. don't hesitate to try these pants out!",5,1,3,General Petite,Bottoms,Pants +1146,66,Odd fit,"I was excited to try something by this designer and decided to order size large. unfortunately, this top just looked very odd. cute from the front but it wings out in the back where the sleeves meet the arms. the fabric makes an odd poof in that area. i do have a large bust and it didn't pull anywhere in the front. i expected it to be soft and drapey but the cotton feels very coarse and doesn't drape well. it covered my behind in back. unfortunately it made me look wide from the side view. i hav",3,1,10,General,Trend,Trend +206,39,Can't resist hot air balloons!,"I am powerless to resist hot air balloons and had to get these the moment they popped up! the pjs are charming and comfortable. the material feels very satiny. it's hard to tell, but there are small white dots in the midst of the champagne colored background. true to size.",5,1,2,Initmates,Intimate,Sleep +1066,49,Dreamy pants,"These pants are exactly what i expected. true to size and color were perfect! they feel so good to wear and love the detail in the sewing. perfect office attire or night out for dinner. just add a fancier blouse. ta da :) +would highly recommend them.",5,1,2,General Petite,Bottoms,Pants +1059,57,Perfect summer crop,"I will be living in these this summer! i couldn't find them in my local store, so i was pleasantly surprised when i received my grey pair from my online order. the fabric feels so comfortable with just the right amount of stretch and the cut is very complimentary to those of us with athletic thighs. i was so pleased that i bought a black pair and discovered they look adorable with my tall boots and a black boxy sweater. they've already become my ""go to"" pants. everyone should have a fun pair of",5,1,0,General Petite,Bottoms,Pants +1066,57,Nice summer pants.,"1. i'm 5'5"" tall, 143 lbs, and 38-32-40 and my normal size 10s fit me perfectly.",5,1,5,General Petite,Bottoms,Pants +1082,35,,Gorgeous dress. perfect for something special. paired with black heels. runs a touch large. i normally wear a small (5'6 and 140 pounds) but i'm expecting so i sized up to a medium and it's very roomy. the sleeves do cap out a little too much but it's just so pretty i don't care! def a keeper.,5,1,1,General Petite,Dresses,Dresses +1035,32,Awesome versatile jeans,"The perfect jeans for daytime and bending down with the kids or dressing up later for night. i love that the cuff isn't sewn, so you can choose to roll them down too. with just the right amount of stretch, they are extremely flattering. they are definitely my new favorite pair this season!",5,1,1,General Petite,Bottoms,Jeans +1066,72,"Love! but more tall options, please!","These pants are so great. i am 5'10 and the talls are actually a hair too long. but no complaints! just wish they made every color available in tall. i had been waiting for new colors to get a second pair and was disappointed they are only offered in regular length. but overall these pants are super comfortable and great for work. as far as sizing goes, i wear a 29 in the pilcro cord leggings and wear a 12 in these.",5,1,11,General Petite,Bottoms,Pants +1066,36,"Great pants, a tad long in petite","I love these pants and have two colors from last season. they are well-made and versatile. however, given the amount they stretch and the summer season for sandals, 30.5 is a tad long for petite. i'll have them hemmed an inch to keep them from dragging on the floor. also, i wish the coral and green came in petite.",4,1,1,General Petite,Bottoms,Pants +1035,41,Comfy and flattering,"Love all pilcro, this is no exception. very flattering. slim fit but not skin tight. comfy!",5,1,1,General Petite,Bottoms,Jeans +828,25,"Great shirt, excellent details","I am so glad i waited for this to go on sale! this shirt is incredibly soft, with great detail on the fading. i ordered a medium (5'10"", 160 lbs) and it fits perfectly.",5,1,0,General,Tops,Blouses +1066,60,,Nice length in tall. order up one size: cut slim in body. fabric lightweight bordering on flimsy.,4,1,8,General Petite,Bottoms,Pants +1066,49,Cute pants,"The retailer store had mostly white left of these pilcro linen pants so i tried them on. the main reason i did not leave the store with them is because i could see the washing tag inside the pants as clear as day. the white pants were just too see-through and i was really looking for some casual items to wear to the office. if it was at least lined, these pants would have come home with me. otherwise, i think the fit was tts.",4,1,0,General Petite,Bottoms,Pants +828,45,Great take on a classic!,"I had been looking for a chambray shirt, but am not a fan of the typical button-down style. this shirt is very versatile, but is far more interesting with the lace up neckline. i received multiple compliments the first time i wore it. the material is incredibly soft, but i haven't laundered it yet, so i am not sure how it will holdup.",5,1,0,General,Tops,Blouses +1059,68,"Very cute, very, very cute","These pants are flattering and comfortable, plus they are cute, cute, cute. i'm a little too conservative to wear them with a striped top, but with a solid black or ivory/off white top they are perfect. can be work appropriate with a blazer or twin set or ""girlfriends'"" lunch appropriate with a tee or turtleneck. highly recommend",5,1,2,General Petite,Bottoms,Pants +1078,28,Gorgeous detailing,"I never write reviews but this dress is so fantastic i felt compelled to write one. it has unbelievably gorgeous detailing, from delicate beading and sequins on the bodice to the three layers of the skirt: slip, floral pattern, pleats. i literally feel like a princess/ greek muse in this dress. can't recommend it enough. true to size; i'm 5'7"" and 133 lb and got a size 4.",5,1,3,General Petite,Dresses,Dresses +1082,59,Very unflattering dress,"This dress looks lovely on the model, but it looks just awful on me! +i am 5'4"" and curvy. the shoulders are cut w/ a weird shape. instead of a cap sleeve, it is like a pointy cap on the side and stuck out on my shoulders. it looks like i am ready to get beamed into space. +the material is nice and the sequins are pretty, but the cut of the dress is unflattering.",1,0,6,General Petite,Dresses,Dresses +1059,38,So cute,"These are great quality and hang very nice. tts. i'm 5'6"" and about 130lbs and the 2 fit and hit just above the ankle.",5,1,3,General Petite,Bottoms,Pants +860,28,,,5,1,0,General,Tops,Knits +1066,50,Super cute wear well,I ordered the neutral in a 2p. i had to hem them. i 5' about 110lbs. i wore them to wore. they wore beautifully with some wrinkling to be expected with linen. but they didn't look like i slept in them. i ordered another pair same size right after the first pair came and tried them on to find the fit tighter than the first pair. a bit disappointed. debating if they'll stay or get returned. i see the notes about stretching. overall a nice pant for the money.,5,1,2,General Petite,Bottoms,Pants +1081,55,Almost.,"It's pretty, floaty, feminine; the photos don't do justice to the prettiness. but the photos also don't show an asymmetrical hem. i understood it runs small so i got two sizes, to be safe, and even my larger size was strangely short-waisted, and i'm short-waisted to start with. maybe i could've lived with that, but both the dresses i received have an uneven hem unlike any i've ever worn or seen before. it's not longer on just the sides; the hem is longer in one spot on the front, and one in the",2,0,3,General Petite,Dresses,Dresses +860,48,Perfect shirt,"I own this shirt in dark green, +navy, and white. +it is perfect. it drapes in such a flattering way, nice weight. +it shows curves in all the right ways but does not fit too snug, emphasizing every flaw. +and finally... the buttons are placed perfectly so that you don't have to choose between extremely conservative or way too provocative (bra showing). +well done!",5,1,37,General,Tops,Knits +860,50,Sizing is off,"I like the feel and color of this blouse. however, i was very disappointed with the sizing. i usually wear medium so i ordered medium for this blouse, it fits way too big. it is a bummer because the ""curve"" is not even visible when i wear it.",3,1,0,General,Tops,Knits +1035,37,Fun but not perfect,"I love these jeans and have been wearing them a lot now that the weather is turning a bit cooler in my area. i like that the cuff is not sewn in, so you can wear them with a cuff like pictured, or fully unrolled/down. they are a bit higher-waisted than i prefer - kind of an awkward waist height in my opinion. and they are very stretchy. i was torn between two sizes so i went with the larger. i wasn't sure of how to mark how they fit because they are somewhat fitted/slim in the thigh area, but th",4,1,2,General Petite,Bottoms,Jeans +1009,56,,Very cute. i received many compliments when i wore it. fits true to size (petite 2) with some good stretch in it. i am 5'3 and it was slightly longer than that on the model. it is a little odd that the buttons are all not the same. but perhaps that is part of its charm and it is not noticeable. it is very comfortable and the pictures are representative of what it looks like.,5,1,1,General Petite,Bottoms,Skirts +1092,50,Just right,"I ordered this in a size s, my usual size and it fits great. i love the color, style and fit of the dress. the only criticism i can think of is the braided trim on the skirt hits right at my hip and kind of, ever so slightly, poofs out a bit and i wish it had pockets. other than that it's pretty darn cute and i got it at a great price of under $40. so i will wear it as much as i can until it gets cooler. because of the rich color, i can probably wear with cute sweater and booties into the fall!",5,1,0,General Petite,Dresses,Dresses +872,49,,"This is a great basic t that works with shorts, pants, or a skirt.",5,1,0,General Petite,Tops,Knits +1016,41,Would be great but...,"Such a cute skirt- but impossible to get on. ordered in an xs (i have a 25/26 waist) but could barely get it past my knees to step into. if you have any hips at all, unfortunately this skirt won't work. i was tempted to size up but once i got it on it fit great in the waist and already had too much material to size up to a small.",2,0,11,General,Bottoms,Skirts +1197,68,Perfect every day neutral,"So glad i ordered this dress. it fits true to size and is extra soft. i was unsure about the color, but it looks nicer in person. the fabric is a mid weight that hangs nicely. this will go great with leggings or tights and wear into spring.",5,1,1,General,Dresses,Dresses +862,76,,"It was very pretty,but it ran very big , sadly i had to return it.",2,0,0,General Petite,Tops,Knits +1092,50,Wanted to like it,"I thought this dress was very cute on the model, however it was way too tight across the chest for me. going up a size would mean it would be too roomy everywhere else. also, fabric wasn't great.",3,0,0,General Petite,Dresses,Dresses +1016,42,Try on before purchasing,"I like many of you had the same issues. i tried my normal size of xs and s and couldn't get it on. the sales associate looked at it and went and got several size small and they all fit differently. some fit normal and others did not, so i would try on first. i love it when it fits correctly",4,1,1,General,Bottoms,Skirts +862,37,,"I've had my eye on this for awhile, glad it was still in stock. really great deep wine color, soft. more texture and detail than i had appreciated in the picture. love.",5,1,0,General Petite,Tops,Knits +1092,44,,Ugh. i was so excited to get this dress and for 30% off. this dress is adorable. unfortunately the top part is super tight around my girls. otherwise the fit was perfect. very disappointed in the top of this dress.,3,0,0,General Petite,Dresses,Dresses +862,46,Not your everyday cardi,You will love this cardigan. very well made with beautiful details. the sleeves have the same detail as the collar and the back. has darker flecks that will go well with dark pants or cords or jeans. you will love this cardi! wish it came in more springy colors. i only gave it a lower rating for quality because the first one i tried on had a sleeve that was much tighter than the other sleeve. the replacement was fine!!,5,1,6,General Petite,Tops,Knits +1016,49,Cute,"Really cute skirt, but difficult to get on! i had to shimmy it over my hips due to the lack of a much needed zipper. i am not very curvy, so if you got them, forget it! i sent back the xs - hope the small is a little roomier because it will make a pretty summer skirt.",4,1,1,General,Bottoms,Skirts +1016,35,Flawed,Cute skirt but i agree with the other reviewer. you can't get it on! i tried my skinny daughter tried no go!,1,0,3,General,Bottoms,Skirts +862,64,,This is a beautiful sweater! it is not too heavy and the variation in knit from front to back makes not the same old boring sweater. the color is gorgeous.,5,1,3,General Petite,Tops,Knits +872,29,Awkward shape,"I would definitely only recommend this top to girls who are smaller chested. it fits in the shoulders/arms, and then flares out too much at the bottom, almost looks like a maternity top. the material is very nice however - both soft, and feels like it will hold up through multiple washes.",4,0,0,General Petite,Tops,Knits +1092,31,Love,"I just love this dress! the color, the quality, the design - all great! sizing can be tricky however. i sized down due to reading the other reviews, and i'm glad i did - it fits perfectly! this dress does not have a zipper on top, so if you have broad shoulders it might be a little harder to squeeze into.",5,1,3,General Petite,Dresses,Dresses +807,21,,"I purchased this sweet little cami in all three colors (the black for some reason only available to order in store). the fabric is luxurious and smooth to the touch! i've purchased other silk shells by eloise and would say this one runs small. i'm 5'2"" 125lbs 34c and and typically wear an xs at retailer. this tank was too tight in the chest and i sized up to a small which fixed the problem. i can't wait to make my jeans and bomber jackets for fall just a little more special with these babies!",5,1,2,Initmates,Intimate,Intimates +1197,60,Most comfortable fabric i've ever worn,"I originally bought this dress in another color back when retailer was doing the 25% off dresses promotion a few months ago. i had seen it on a store associate at my local store and absolutely loved it, but hemmed and hawed at the original price. it was a splurge even at 25% off, but as soon as i put it on i was in love. this dress is so soft. i wore it to see some old friends, and after every hug i received a comment about how unbelievably soft it was! the material is thick enough to have a decen",5,1,0,General,Dresses,Dresses +1016,45,Cute skirt in theory,"This looked like such a cute, casual skirt when i picked it up but like other reviewers have said, it runs small. i'm usually a xs in retailer skirts but they only had a small to try on. i was able to get it on but did notice it was snug pulling on past my hips. however once on, i couldn't figure out how i'd wear this. i wouldn't pair this with a flowy top but tucking something in didn't seem like a good idea either. between the pleats and elastic waist it will make almost anyone look like they ha",2,0,2,General,Bottoms,Skirts +872,60,Love this shirt!,"This shirt is perfect for me. i have very small shoulders, but i am pear shaped. so the flare on the bottom is welcomed for my body type. i bought 2 colors. i have a similar shirt from retailer a few years ago that was multicolor which i wear all the time, so i am thankful they have repeated this design. also i did get this on sale which is a more realistic price for the quality of this shirt.",5,1,0,General Petite,Tops,Knits +1016,44,Can't get it on,I thought it was only me and immediately assumed i needed to go on a diet when i attempted to put this adorable skirt on. it got stuck at my hips. i'm a very consistent size small in dresses and skirts. i actually thought about putting it on over my head but that was impossible. its going back. now i see the other reviews and am relieved that its the skirt and not me! wish i had read them before purchasing. retailer is going to get a lot of returns on this one.,1,0,2,General,Bottoms,Skirts +1197,55,Flattering and versatile,"I ordered this winth some trepidation as the dress looked a bit baggy on the model. i don't typically buy this style of dress because many times, they are unflattering on me. i'm 5'6"" and 130 lbs, in very good shape. the small was perfect for me. a size up would've resulted in a baggier look. the length is perfect, above my knee; not too short, but short enough so i don't look frumpy. the dress drapes beautifully, and i can wear it with tights and boots now, and capri tights and wedge sandals in",5,1,0,General,Dresses,Dresses +1009,23,,"Ugh. this skirt is beautiful and so well made, but i sized up to a 0 from my usual 00 based on reviews, and it's too large, and now my size is all sold out! if it were the right size it would fit beautifully! i'm pretty much a stick, (5'5, 105lbs) and it does poof out at the hips, making me look a little curvier, which might be an issue for some. but the quality is amazing, and this piece will spruce up most outfits !",4,1,0,General Petite,Bottoms,Skirts +793,66,Wide and long,"Been on the hunt for jammie's so gave these a shot. ordered my normal size large. fit well in the waist but i don't like the super wide legs. and they're too long. pretty color and pattern, however, the fabric isn't as soft or cozy as i hoped. i'm retired and wanted pajamas to lounge in all day. these missed the mark for me.",4,1,0,Initmates,Intimate,Sleep +1009,51,Halfway lovely,"Facing the mirror--near perfection. high waist emphasizes the narrowest part of the frame--pleats nicely hide any stomach flaws. color is an eye-catching deep mustardy perfection and the interlocking button pattern is creative and beautiful. the problem is the walk away. from that view, the skirt waist finishes just where there's a bit of extra flesh. the cut is more of a long a-line--fairly boxy--and the heaviness of the cotton maintains that structure, so while the look as you approach walking",3,0,4,General Petite,Bottoms,Skirts +872,28,Great t-shirt for everyday use,"I'm: 34a, 125 lbs, 5'8"" +purchased: small + +i was going back and forth between xs and s. i decided on small because it fit better in my arms, didn't feel as tight. the xs fit well in the torso area and didn't have as much fabric as the small. the small also had a longer shirt tail. + +if you don't have as much mass in the arms, get the xs. if you have some muscle or extra mass in the arms, it's better to go with the small.",5,1,3,General Petite,Tops,Knits +1016,61,So bizarre!,"I bought this skirt a month or so ago and only wore it for the first time yesterday. i thought the design was fluid, summer appropriate, and easy like sunday morning. i enjoyed wearing it so much that i went on to the retailer site today to order it in another color. and lo and behold i saw all the reviews on the sizing/fit. i totally respect other reviewers, so i questioned why that had not been my experience when i wore it yesterday, so much so that i went and put it on again, sans issues.i am n",5,1,3,General,Bottoms,Skirts +1009,39,"Good idea, wrong color.","Cute design with interesting details. i felt it ran a bit large. i'm 5'8"", 135 lbs, an 8 was too big and baggy. my biggest complaint with this skirt is the color. it's just not flattering.",3,1,0,General Petite,Bottoms,Skirts +1092,44,Another huge dress...,"Okay, i get the idea of the loose swing dresses but i have a couple that do it well without looking like a moo-moo. i ordered my ""typical"" pxs. the length was good and the color beautiful. i like the details of the dress but it was huge and not in a flattering swingy drapey way. i was undecided if i should try the pxxs as the pxs was so large that i don't know if the pxxs would fix this problem for me. i will still be thinking about it.",4,1,3,General Petite,Dresses,Dresses +1083,31,An absolute hit - if you buy the right print,"Dear creatures always has sizing issues. they run the gamut of bust-problems. i'd been salivating for this dress for a long time so i really did my homework. at 5'7"", 130-135 lbs, 34c, 28"" waist - typically a 4 in dresses... i bought the small. each dress is cut from the same fabric, leaving each dress's color swatch placement to be randomly determined. as a result, i've seen some dresses have only pink, purple, and green. i lucked out and got every color represented. so the dress you see may no",4,1,2,General Petite,Dresses,Dresses +1009,31,Girls with hips - size up!,"Fell in love with this the moment it arrived in stores. whimsical but work--appropriate. i'm typically a 4 in dresses. i would say this skirt runs tts; however, the front pleats will create a pouch-y stomach if you have a small waist and a lucious anything-below-your-waist. size up one size to avoid this. the waist size will be loose, but it will allow the pleats to lay flat. absolutely lovely with a mock neck sleeveless top. also great with solid white, black, or printed blouses. not a true pen",4,1,4,General Petite,Bottoms,Skirts +1016,38,Would be cute if i could get it on,"This skirt is very pretty, but not only does it run small but only a small portion of the waistband is elasticized, so there's very little stretch. for those of us with a significant difference in our waist and hip measurements, there's no way to get this skirt on past the hips.",2,0,24,General,Bottoms,Skirts +1009,34,Beautiful!,"This skirt is beautiful...the color is definitely more a greeny-gold then a true yellow gold...nice quality fabric, has some stretch, big pockets with cute lining, buttons are adorable, perfect knee length, sits higher on the waist. because it's not lined and the pockets are big, the pocket line is visible on my thigh area, so i am going up a size just so i don't see that...if you have less curves, your regular size should be perfect. it has so much character, but it!!",5,1,17,General Petite,Bottoms,Skirts +1009,57,Mustard,"1. i'm 5'5"" tall, 145 lbs, and 38-32-40. i'm normally a size 10, but i took a 12 in this skirt. + +2. it's comfortable and has pockets that you can really put your hands in. + +3. sits at high waist. hem hits below the knee. + +4. i didn't like the buttons. they are very round and stick out quite far. they are also mismatched. i would have liked them better if they were flatter. + +5. i also didn't like the mustard color. it's unflattering to me.",4,1,8,General Petite,Bottoms,Skirts +862,63,,"This is a very classy sweater/jacket. it is a beautiful color. i had not even noticed it until it was on sale, and then read all the favorable reviews. it can be dressy or casual as seen in this photo! so glad i got it!",5,1,0,General Petite,Tops,Knits +872,41,Cute basic,"This is a great basic tee (purchased in navy) but fits much larger than it appears on the model. the arms/chest area fit fine but it really billows out below. the front is shorter and the back is longer than i would've expected. i thought this would be great for summer, but it's really too long in the back to wear with shorts. it does, however, look great with skinny jeans.",4,1,0,General Petite,Tops,Knits +862,31,Gorgeous sweater,I absolutely love this gorgeous cardigan. i will wear it for years to come!!,5,1,0,General Petite,Tops,Knits +1016,43,Beautiful skirt!,"I tried this skirt in my usual size s, and although it fit, it was too short for my liking and made my hips look wide b/c of the way it billowed out. the size m looked much better- hit me right below the knee in the front. (i'm 5'2"") my skirt is much more high-low than the picture. also, it sits much lower on my waist, which i like. i bought the blue, and with the color variations, it is gorgeous- reminds me of a chambray or denim coloring. i rolled it up to take on vacation, and it traveled rea",4,1,1,General,Bottoms,Skirts +1016,32,Beautiful skirt,"I love this skirt! it is a lovely and soft gauze layer with lining underneath. i live where the summer""s are hot and humid and this skirt keeps me cool when everything else just sticks to me. it is, for sure, very limited because it does not have a zipper.... if you cannot get this over your hips or over your shoulders and bust, this is not the skirt for you. the elastic waistband is really strong and really highlights your waist, but yes, i am petite and i struggle to get it on. once it is on,",4,1,0,General,Bottoms,Skirts +1092,36,,"I adore this dress, the perfect summer dress that you can dress up or down. the color is vibrant and the fabric flows and feels fantastic against your skin. i love that you can still wear a strapless bra with it, but with the adjustable shoulder ties you can have it go as low as you want for a more sexy look. the bottom hem is this super cute fringe, so fun and feminine. and while it is a loose fitting dress i did not feel like my figure was drowned out by the fullness of the fabric. this dress",5,1,22,General Petite,Dresses,Dresses +1092,50,Love this dress,"One of the things i love most about this dress is that the straps are adjustable. you can tie them as loose or tight as you like. like other reviewers mentioned, the color of this dress is vibrant and the fringe at the bottom is the perfect detail retailer is famous for doing! i am 5'5 105 lbs and lately all of the dresses i have been buying at retailer have been xsp. i have never worn petites before, so i don't know if retailer is just making their dresses a little bigger, but i definitely have neede",5,1,1,General Petite,Dresses,Dresses +862,27,Effortless style,Love the deep purple color of this cardi sweater - long and drapey looks great with leggings skinnies and jeans. my only problem is the way the loose stitching around the cuffs is makes it worrisome. wore once and already starting to get a hole. still a great piece.,4,1,0,General,Tops,Knits +872,66,Cute and comfy,"Yes, this top runs large and it doesn't show your curves, but it's still really cute and fun to wear. i first purchased the beautiful sage color, and after getting compliments, i also ordered the navy version. these tops are easy to wear, have an interesting detail at the neck, and could be layered. cozy, comfortable, stylish. love mine!",5,1,0,General Petite,Tops,Knits +1016,46,Small,I agree with the other reviews - runs small. would have been perfect if it actually was comfortable. waistband doesn't stretch all the way around. bummer.,2,0,1,General,Bottoms,Skirts +321,27,Love it!!,"This swimsuit is aaaahmazing. seafolly is an australian brand and their sizing is way off, luckily i already own a one piece by them so i knew what size to order. i am usually a 0 or a 2, chest size 34 d, and i ordered a 6 in this and it fits perfectly. taking it out of the package i wasn't sure if it would fit, but it did! the keyhole is pretty open, and the shape of the sides and high neck make some cleavage happen. i got it in black and it's really sohpisticated, but still sexy and cool. i ca",5,1,5,Initmates,Intimate,Swim +807,39,Great top!,I typically wear an xs to s in tops and purchased an xs for a less flowy fit. this top has a luxurious feel and the green color is really beautiful (more matte than shiny). perfect piece to wear under a jacket or blazer.,5,1,0,Initmates,Intimate,Intimates +807,43,Gorgeous green color,Great piece just wish it fit a bit more blousy rather than cami,5,1,0,Initmates,Intimate,Intimates +872,36,A staple!,"This top! it is so simple, but so great at the same time! it does run large, and i'm not a skinny girl... but it has a style that is certainly meant to flow away from the body as it goes down. i find the top portion very flattering and the looser bottom section doesn't take away from that. i have been wearing the olive green with fitting dark jeans and a flannel or oversized soft, washed-jean button down shirt over it for the cool spring weather. it's casual, but so comfy. it's great for loungin",5,1,4,General Petite,Tops,Knits +1092,39,Uhhhmmmazing!,"Color, style, adjustability, easy fit, flattering! yes on so many levels! oh wait it's on sale! fantastic, magnificent and pretty! i bought medium and in 39-28-35",5,1,2,General Petite,Dresses,Dresses +862,61,,"It's a lovely and unexpected sweater. a few things to keep in mind- + +- the knit details are beautiful- the pictures don't do it justice. + +- it's pretty lightweight. + +- the color is a little darker than the picture shown- it's a very dark plum + +- it runs bigger- this is the only retailer sweater where the sleeves of a m are a little to long. + +- the style is decidedly casual and ""slouchy"". it looks great with jeans, but don't plan to dress up an outfit with this piece.",4,1,6,General,Tops,Knits +1016,67,Mission impossible,"What an adorable and frustrating skirt! i'm not a large person: 32d-26-36. and i ordered my normal size small. this is a pull on skirt, and the waist opening could not accommodate either my shoulders or my hips. in most retailer clothes, i'm either a size 2 or 4; i have to agree with the other reviewer. there is no way to put this item on.",1,0,13,General,Bottoms,Skirts +1116,46,Too bulky,"This sweater was huge, it hung down to my calves! it also is really bulky and scratchy, it feels as if you are wearing an old wool blanket. i think it is only made for really tall and skinny people. i'm 5'2"" and weigh 120lbs. and i ordered a size s, and i was swimming in it. the fabric is very thick, i may be great if you live in alaska or the arctic. it adds about 20lbs to your body frame.......",1,0,1,General,Jackets,Outerwear +1009,38,Great skirt,Fit is tts and comfortable. the color didn't suit mine but if the color works for you then grab it because it's a beauty,5,1,0,General Petite,Bottoms,Skirts +1022,42,Love these jeans!,"I have been searching for a comfortable pair of flared jeans to wear with tennis shoes or flats. i have tried several different brands and these are amazing! they are super soft and comfortable with just the right amount of stretch. the coloring is excellent for the casual look i am going for. the pocket detailing is cute and helps to flatter your bottom. i am 5'2"" so these were very long but nothing a good seamstress can't fix. i will note that cutting of that much of the bottom will reduce som",5,1,4,General,Bottoms,Jeans +831,32,Beautiful,This top is just adorable. i'm usually between an xs and a small and i went with the small and it's a little more roomy. i wanted it to be long enough. the colors are beautiful and it's a must have.,5,1,0,General,Tops,Blouses +872,29,,Gorgeous linen blend tee. purchased in grey and white. classic timeless staples. fits baggy which i love. for reference i am 32a 5'1 105 lbs. love love love!,5,1,0,General Petite,Tops,Knits +831,67,Greenhouse tank,I loved this top . it is beautiful.,5,1,2,General,Tops,Blouses +831,43,Pleasing spring floral print,The picture doesn't do it justice. i am wearing it right now with cream pants to work with a cardigan i also purchased from retailer and it looks amazing. the fit is true to size. i am large chested but it fit comfortable...i did go up a size so it is a little longer than i like but i think if i had picked my normal size it would have been a little too snug at the chest. still looks amazing. i feel very feminine in this blouse. good quality material.,5,1,3,General,Tops,Blouses +831,64,Gorgeous spring blouse!,"So stunning, i had to have it for my spring wardrobe! fits true to size and fits well in the bust and is looser on the bottom. the model weara it just as it fits on me. if you have a large bust you may need to size up as the fabric isn't stretchy.",5,1,3,General,Tops,Blouses +1146,36,Gorgeous vintage glamour,"Besides being my favorite color to wear, this dress oozes vintage glamour while not looking like a costume. the fabric is super silky and will need a professional steaming to get out any wrinkles. the fit is not what i'm used to, because it fits in a 1940s type of way, and when i took it to my tailor, she ensured me that it is the perfect fit. the bodice is a bit looser than contemporary pieces, but is perfect for a night out.",5,1,1,General,Trend,Trend +1097,37,Fun summer dress.,"Cute dress that is perfect for a casual summer wedding or brunch with friends. i love the material and that the dress is lined. it is very comfortable and it has pockets. this is definitely more of a ?golden? yellow vs. a soft yellow. my only complaint is that i wish it were cinched more right below the bust. it would give the dress (and me) more shape. i would say this dress is true to size but if you have a larger chest, you will likely want to size up. if you have a small chest, i would proba",4,1,10,General,Dresses,Dresses +867,38,Material,Material is hard to wear a bra under it,2,0,0,General,Tops,Knits +927,48,,"Very soft fabric. does begin to ball up due to boucle material, very common",4,1,0,General Petite,Tops,Sweaters +1022,35,,"These jeans hug in all the right places. the high waist accentuates my body and makes my legs look a mile long! the jeans will need a trip to the tailor to be hemmed, pooling even with my highest heels.",5,1,0,General,Bottoms,Jeans +164,25,Super comfy,"Loved the way these felt but like the previous reviewer said it did run slightly large. i am usually a size 6 or m and the legs were a little baggy w/the medium. since the m is sold out i'm going to try and see if they shrink in the dryer. the color and design of the ankle is different from other leggings which is a plus. i'm 5'7"" and they are the perfect length.",4,1,0,Initmates,Intimate,Lounge +1110,26,Beautiful shortt dress,"Beautiful dress! perfect mid length dress for the colder months. i tried a size 2 regular first (my normal dress size) but it was a little baggy, so the 0 fit perfectly.",5,1,0,General Petite,Dresses,Dresses +1083,57,Disappointed,The pleats on the bib make this look like something from chloe sevigny's wardrobe on the set of big love. and the shoulders are cut for an offensive lineman.,1,0,0,General Petite,Dresses,Dresses +1083,38,Love this dress!!!,"I absolutely love this dress. i feel it's the perfect year-round piece. looks super cute with boots or booties. even with a cute baggy sweater over it. i am usually a small or medium, depending on brand. i'm a small with this one. and i actually like it worn without the button fastened in the back, it just worked better that way. it is not see-thru, though is a light material. i live in fl so i can wear year round. but up north, with tights and boots, you can too. so worth the price!",5,1,0,General Petite,Dresses,Dresses +1044,34,Recommended for certain body types,"Other reviews are correct. but this has potential to look as good as on the model - structure and quality of the cotton are very flattering. makes legs look miles long. however this fits very tight, allows no room for extra tummy, hips, booty, or thighs. i ordered a s (i'm usually a 4) - was able to get it on (step into it from the top), but felt a little self conscious about how tight the fit was. if there was an m, would have definitely sized up, as i really liked the look.",3,1,2,General,Bottoms,Pants +1022,33,Perfect flare,"I have been hunting for a pair of high rise flares that have significant width at the bottom and these are perfect. i love the vintage silhouette and how they make your legs look a mile long and i adore how they open wide enough to cover my shoes, not to mention being long enough for me to wear a 3.5"" heel and still skim the ground. for reference, i'm 5'8 140lbs with super long legs and straight athletic build. i sized up to a 30 which is usually for me in ag jeans so for the brand, they run tts",5,1,2,General,Bottoms,Jeans +1110,35,Excellent dress,"Beautiful, unique, colors perfect for winter. i received so many compliments at two holiday parties. and on sale, this is a no-brainer",5,1,0,General Petite,Dresses,Dresses +1083,43,Prettier in person,"The picture online doesn't do this pretty dress justice. i'm curvy, and always searching for dresses that don't make me look like a sack of potatoes. its pin tucks at the bust give it a little shape, and the print is much more vibrant in person. will look great with tights and a black blazer for dinners out.",5,1,0,General Petite,Dresses,Dresses +1080,83,Perfection !,"Received this dress yesterday, love it! +my initial hesitation in ordering this dress, even though it is my fav color....was rather bright for sept.. +but loved it and decided to order and wear it next spring. +delighted to open the package and see that the dress is much darker than in the pics...more of a jade green. +it is still a summer fabric/style, however the darker color will be perfect for the warmer fall days ahead. +this dress is beautifully made, superior workmanship, and the fabric i",5,1,5,General,Dresses,Dresses +1095,53,In agreement with other reviewers...,"This is a beautiful dress with unfortunate design flaws at the bodice of the dress. the fit at hips and length is perfect, falling just to my knee (i'm 5'5"" 142 lbs.) and grazing my hips. in that regard the fit is spectacular. but the bodice seems cut very oddly, which would require tayloring to correct. the armholes are large and flared at the bottom which leaves 'wings' just under the arms that stick out. since this dress has a side zip, to correct that would seem a major undertaking. the stra",3,1,0,General Petite,Dresses,Dresses +1083,41,Soooo pretty,"This dress is sure to become one of my favorites! i ordered it online and the colors are even prettier in person; very vivid! it is a little light for the climate where i live right now but, i'm sure that as soon as it gets a little warmer i will be wearing it often. i can't wait!",5,1,0,General Petite,Dresses,Dresses +164,44,Review for fit only,"Nice but i thought these ran big. me: 28-29' waist, 36"" hips, athletic thighs. usually a medium in leggings but these size mediums were a bit baggy to my surprise. hoping to exchange for a size down as they are pretty, the ankle detail is fun and decently made.",4,1,0,Initmates,Intimate,Lounge +1083,56,So cute!,"I absolutely love this dress! i wore it with taupe tights and suede boots and got so many compliments. i have also worn it over leggings, and can see myself wearing it in the warmer months with sandals. even though the material is somewhat thin, i did not have to wear a cami with it. the fabric pattern is really cute!",5,1,0,General Petite,Dresses,Dresses +862,41,"Beautiful shade of pink, very low-cut","I bought the pink, which is a vibrant but not neon shade of deep reddish pink. love it. i love how the flutter of the sleeves is balanced with a slimmer fitting body, which keeps it from looking frumpy. i did order a size down to achieve this look. i prefer a more tailored look so this suits me while satisfying my desire for a little whimsy now and then. my only issue is that it's too low cut. trying to decide if i just need to wear it with a lower-cut bra or if this requires a cami. i hate laye",4,1,2,General Petite,Tops,Knits +862,23,,"I got the pink color, which is really vibrant and beautiful in person. this top is low cut, so if you don't like to show much cleavage plan to wear it over a cami. + +i'm 5'5 145lbs, 37-29-39. got a size medium. it fits okay in the bust area, but is much looser than i would prefer below the bust. i will either return or exchange for a small to see if the fit is better.",4,1,3,General Petite,Tops,Knits +1134,42,,"I love sanctuary clothing. this parka is on the lighter side, good for this mild east coast winter. it is water repellent. the length hits me on my upper thigh and the sleeves are long ( good for longer limbs). i received many compliments.",5,1,4,General,Jackets,Outerwear +1110,36,,"Very flattering, not too short, beautiful. i'm 5.6, 36d, usually wear m in dresses, wide hips. the 8 fit very nicely.",5,1,0,General Petite,Dresses,Dresses +867,79,Very flattering!,"Finally a white top that is not see through! this tank is very form fitting and flattering, but does not hug too tight. i am neither large nor small breasted and love the way the v-neck fits on me. for reference, i am 5'2, 105#, 32c and i got the xxs.",5,1,0,General,Tops,Knits +862,66,A step up!,"Very pleasantly surprised by this top! it's looser, but in a flowy not baggy way. i ordered the m. the +vee is just right on me, tasteful but just low enough. love the sleeve length +ordered thinking another black tee , but it's going to be well used,and great for evenings.",5,1,0,General Petite,Tops,Knits +927,41,"Beautiful, soft and cozy","As one would expect from boucle, this sweater is incredibly soft, warm and cozy without being heavy. i fell in love with it when i first saw it and got it in white color. it's beautiful, goes with casual and work clothing (belt helps with the latter styling), and it didn't leave lint on the dark skirt i wore with it to work! i usually wear xs or s and found this sweater to be still roomy in xs, with sleeves being a bit long. i hope it won't stretch with wear as boucles sometimes do - that's my o",4,1,3,General Petite,Tops,Sweaters +63,33,Extra fabric,"There is a lot of fabric here! the legs fit me fine, but they are long and when you roll them up it creates a bunching of fabric in an awkward area. i've also found that they don't stay rolled up in the back, especially if you sit down. it's a shame since the fabric is soft and comfortable. maybe sizing down would've helped, but i doubt that would've fixed the problem of the cuffs staying rolled up.",3,0,0,General,Bottoms,Shorts +1095,29,Well made. beautiful colors,Gorgeous dress! fits true to size with high quality material. the colors are stunning.,5,1,3,General Petite,Dresses,Dresses +1022,21,Awesome pair of high waisted jeans,"These jeans are awesome! i usually wear a 26 in ag jeans as they tend to stretch, but i ordered a 27p because i am only 5'1 and these are a flare style. i have a small waist but a larger booty, and these jeans hug me in all the right places. they also have a great dark color and are super classy so you can dress them up if need be. the only thing i didn't like was the length. even with the petite size i have to wear wedges so they don't drag on the ground. but, this is an issue i have with most",4,1,6,General,Bottoms,Jeans +1110,56,One of the most beautiful dresses i have ever seen,"I purchased this dress online after two reviews and i am so glad i did. this is a work of art and beauty and will be my go to dress for spring and summer weddings, special occasions and other events. i am so glad the arms are covered with lace and flowers. this is spectacular.",5,1,1,General,Dresses,Dresses +867,31,,"Even on sale, this was just too pricey for what it is, which is a glorified tank. i liked the straps, but it hangs very wide off your chest.",2,0,0,General,Tops,Knits +1044,68,"Very cute, but impossible to put on","I wrote item ran large, but that was true only in length. it would be long for someone 5'10"" . however the bigger issue is getting it on. the style and quality are quite nice, but it does have some issues.",3,0,6,General,Bottoms,Pants +862,45,Cute top!,I'm either a medium or large in retailer tops. i was able to wear a medium in this top. the color is vibrant and the material is soft and light. it will be a great spring and summer top. can't wait to wear it.,5,1,1,General Petite,Tops,Knits +1075,37,Love it. stylish but comfortable and low key,This dress runs large so i sized down. when it arrived i looked at it and thought the fabric was ugly and boring for a dress. it sat there for about two weeks till i tried it on. i love it! it is so comfortable and is so cute how the pockets hang. all it need is some long necklaces or a scarf to complete the look. i get complements on it everytime i wear it. my only complaint is that it peels under the arms a little bit.,5,1,0,General,Dresses,Dresses +1095,32,Such a beautiful well fitting dress !,"This dress is amazing ! the colors in person are so vibrant and yet organic somehow at the same time. perhaps this is because the fabric has a really nice depth and texture to it. i got this dress for a summer wedding and it's casual yet dressy at the same time. + +re: fit - the best thing about this dress - is a fit ! it's so incredibly flattering on, it fits like a glove. it just hugs your figure in the most flattering way, especially if you have an hourglass figure. the fit is true to size -",5,1,12,General Petite,Dresses,Dresses +1083,36,Comfy and cute,"Love the pockets! fits loose, but lies nicely. comfy but able to be dressed up or down. great versatile dress.",4,1,0,General Petite,Dresses,Dresses +862,48,,This t-shirt does a great job of elevating the basic t-shirt in to one with a touch of flair. i typically wear a medium but luckily read earlier reviews and went with the small.,4,1,0,General Petite,Tops,Knits +1110,48,Absolutely gorgeous!,"I'm so happy to add this lovely and unusual dress to my fall wardrobe. i absolutely fell in love with it the moment i tried it on. i wear a two or four, depending on the designer, and the two fit me perfectly. another reviewer said it's special occasion only, but i like it so much, i'll wear it more often. with that said, it's a wonderful go-to dress for the holiday season.",5,1,5,General,Dresses,Dresses +1095,64,Very cute but...,"I ordered a 6p in this dress so it wld fall above my knees & be slightly smaller than a regular 6. sometimes a regular size 4 works, sometimes a 6. typically a regular size 6 is big on me. i am 5'3"", 118#, 36c. just recd the 6p in the mail. the first thing i noticed is that it's s a knit fabric that looks & feels like polyester although says 'cotton' on the inside label. i think it wld be a bit warm in hot weather, but that is just my observation. the main problem is that it is too big on each s",4,1,9,General Petite,Dresses,Dresses +1095,49,Weird fit,"I love the colors of this dress, and i waited for the sale since it isn't really good for work. i wear size 6 in hd all the time, but this one doesn't fit at all on the top. the bust is cut for someone really curvy, but the bottom is for someone really straight. i don't know what they were using for a model, but this has to be tried on before purchased. the material is also rough, and there is no lining to protect you from that. i love my hd dresses for style and functionality, but this one is j",2,0,0,General Petite,Dresses,Dresses +1083,37,Fun and flirty,"I love this dress! tried it on at the store. they only had medium. while i'm usually always a medium, it fit perfectly but pulled at the bust (i'm a 38). i ordered a large online the next day. i have it now and i am extremely pleased. the pattern is unique, the length falls just above the knee and has s sexy flirtiness to it. the back button is key as it gives some contour to the dress. the side pockets are an awesome touch. you can wear this dress any season. i'm wearing it with ankle boots and",4,1,0,General Petite,Dresses,Dresses +1079,47,Very well made - runs large!,"This dress is adorable and well made. this brand runs on the large side. i ordered an xs and the tag says 'p"" on it. it's not petite. it ran large through the hips and will need alteration. i'm keeping it because it is really cute and is well made. the material is knit and soft - very comfortable. i'm surprised nobody has reviewed this item. i probably will not buy this brand again only because it runs large.",3,1,1,General,Dresses,Dresses +1072,67,This dress is adorable!!,"This dress is so cute. i love that it has pockets. it looks great with sandels, and also ballet flats. it is airy, and run true to size. i wear a small, and it fit perfect. i even bought the other navy, and cream dress. you will wear this dress over, and over. just roll up the sleeves, and throw it on, and your ready. just love it!!!!",5,1,1,General,Dresses,Dresses +872,30,"Good concept, poor product","I loved the aesthetic but as a true hourglass shape, i was frustrated that it didn't have a little more give as i tried to pull it over my head. the fabric was stiff, and seemed to be lace over cotton? not entirely sure. i couldn't get past the feeling off the material.",2,0,0,General Petite,Tops,Knits +1072,55,"Great features:pockets,lace in front","I purchased the green print which has so many patterns and colors which makes this dress have a very interesting look. i love that it has a drop waist because it is so flattering to most body types.the other thing i liked was that this dress came in petite sizes, perfect for me.",5,1,1,General,Dresses,Dresses +815,60,,"I thought the quality of the fabric was good and liked the idea of wearing it, either with opening in front or back. it was a little larger then i was expecting and i wish it had a closure, (hook and eye or snap) at the top. it has three places in the back to tie together and when i tied them in a bow they came loose easily. overall glad i bought it.",3,1,0,General Petite,Tops,Blouses +1072,39,Tried it on a whim. love it.,"Went to the store in search of a butter dish. tried this dress on a was shocked at how comfortable, versatile and all over appealing this dress is. i'm 5'10"" and the medium hits at my knees. as always i think the quality could be better. it's not something that will last for years.",4,1,0,General,Dresses,Dresses +862,53,Cute but....,"I saw this top on sale and tried it on right away. my normal medium was too big, so i purchased the small in the rose color. wore it with a shimmery kimono and cream colored pilcro boyfriend jeans. wow, what an outfit!!!! +then i washed it according to directions, and sadly it shrunk into a crop peplum tank. i was so disappointed. i wished i had read the reviews beforehand.",3,0,4,General,Tops,Knits +1072,39,Great casual dress!,"This is my second dress from this designer. it is very comfortable, stylish, and looks great with sandals/wedges. i would have given it 5 stars but the neckline was a little lower than i expected and the length was a little longer. i am still keeping it though and expect to wear it spring, summer, and fall.",4,1,0,General,Dresses,Dresses +862,49,Shrinks,"I'm 5'4, 125 lbs, & have a 36 c/d bust; the xs fits great. +i wash everything in cold & line dry... this was no exception. when i took it out of the washer i knew immediately :( i've pulled it back into shape & hung it up, but we'll see. + dry clean if you want to keep it",4,1,7,General,Tops,Knits +1072,33,Effortlessly cool,"I will preface this review by stating that this item was available only in one size at my local retailer. they have a section of dresses mostly offered online that are in store for you to touch, see, try on and order through the store (which is much appreciated). i am normally a size 0-2/xs in retailer clothes and i will typically order a petite when available. the option my store had to try on was a regular medium which is what i have pictured here. + +i mostly wanted to try it on just to get a fee",5,1,51,General,Dresses,Dresses +896,52,Beautiful sweater,"I love this top, wish they had it in more colors, i would buy more!",5,1,0,General,Tops,Fine gauge +872,36,Lovely and so flattering,"I purchased this with some hesitation, having read that some people thought it was unflattering. but i couldn't resist the sale price, and i love a low-maintenance work top and doesn't require ironing. this fits the bill perfectly. it's made of high quality fabric, there's a soft inner lining with a side zip closure, and it has a pretty narrow profile so initially i found it a little snug to wiggle into (i got a small), but once on it fit perfectly, and is so flattering i can't imagine why other",5,1,1,General Petite,Tops,Knits +1068,74,,"I wanted to love these. the fabric was soft and they were good quality but they fit differently than the hyphen chinos and were too small. sadly, i had to return them.",4,1,7,General,Bottoms,Pants +1092,35,It's gorgeous,Should've ordered a larger size. it runs a bit tight around the top and the zipper isn't that helpful.,5,1,0,General Petite,Dresses,Dresses +1072,62,Beautiful but big,"This was my first tiny shirtdress purchase after seeing the past few patterns/seasons. for me the last few were a little too busy, but something about both patterns this season felt right for summer. i'm 5'7"", 128# and found my usual s to be too long in length and in sleeve length (the sleeves being a problem that i never have). going to try to exchange for an xs because it really is a lovely piece in both colors (though i slightly prefer the green because it feels more tropical/exotic for summe",4,1,5,General,Dresses,Dresses +1092,43,Dream dress,"I'm 5'6 and between 100-105lbs. buying clothes from retailer is always a stuggle because i have a petite frame but i don't fall into the petite height range. i usually order a petite size and just deal with the shorter length, which is hard when you're all limbs. i purchased a 0r and i'm in love with the fit! the top of the dress fits under my arms perfectly! the waist of the dress also hits nicely. usually the waist of regular sized dresses falls below my natural waistline due to my short",5,1,0,General Petite,Dresses,Dresses +1092,39,"Flowy, functional ,dressy","I love the ease of this dress. the style can be dressed up or down. the straps are inset a little which doesn't work for every body type. the thin material can get caught and snag easily but otherwise this dress is a simple chic addition to my closet. the length is just right, not too long like some other maxi dresses. the lining underneath ends at the perfect length as well. the top part is lined well so it can be worn with or without a bra. i am normally a 4 or 6 in dresses. the waistband hits",5,1,0,General Petite,Dresses,Dresses +872,41,,"Dig this top but a little different from what i was expecting. the outside is indeed a bit stiff and scratchy but it is lined ... but definitely would've appreciated a softer fabric. however, the cut is cute and flattering and the pattern is adorable so it's staying in my closet. perhaps not the thing to wear to snuggle up with someone though!",4,1,0,General Petite,Tops,Knits +1072,37,Not for me,I purchased this based on previous reviews. the quality of the dress and the print is excellent. the dress fit me perfect in the front however there were so much extra fabric in the back that it made me look extremely large. i understand it's a shirt dress however the back would need to be taken in like 6 inches. for someone who is looking for a more boxy full coverage dress this is more for them,4,0,2,General Petite,Dresses,Dresses +850,26,Very flattering,"I usually don't even consider this style of shirt, but i was intrigued by its soft fabric and texture. honestly, i love this shirt! it is so flattering and a perfect staple for any closet! i can wait to wear it out and about!",5,1,1,General Petite,Tops,Blouses +1072,33,Huge,"I am between a xs and s but figured i would order down based on the reviews. well, it's still huge. i have about 5 inches that i can take in from the side. i have ordered the xxs and am hoping it will look more flattering. i love the colors and design, but as it is it does not do anything for me. for reference i am 124 lbs, 32d, 5'5"".",4,1,0,General Petite,Dresses,Dresses +1092,39,Runs big in bust,"The first reviewer said it was small in the bust, but the 0p i ordered fit everywhere, rib cage and all, but was gaping at the bust (in the back). i would say overall it was true to size but if i sized down, it would be too snug in the rib cage. i am 30dd for reference there and waist is 26.5 inches, + +otherwise, the make is very pretty, i like the texture in the fabric, the color is very pretty as well. embroidery seemed high quality, but i decided to pass on it, even on sale, since it didn't",4,1,1,General Petite,Dresses,Dresses +896,39,Finally saw it in person,"I had my eye on this for a while, and my store finally got it in (in tmie for the 40% off sweaters). too bad hte petite size was already sold out by then, however good thing isthe xs stil lfit me in a nice way. i wil lnever know about petite, decided to jsut purchase as is (they don't have xxs either#. the fit is on hte looser comfortable side. the red color is rich, and the design is subtle, adn will nto fall apart, so it add some interest to an otherwise typical pullover. will look nice with j",5,1,0,General,Tops,Fine gauge +1072,58,Go to dress,This is a great dress for those days where you just want to throw something on but still look put together. it hangs so well and feels so comfortable yet it has a style that is a combination of bohemian and part sophisticated . the colors are muted but they work so well. i wear it with flat strap sandals and have also paired it with wedges. i receive tons of compliments and have to make sure my daughter doesn't try to borrow it. would highly recommend.,5,1,1,General Petite,Dresses,Dresses +862,42,Too big!,"I wear a size 4 and i ordered the small for this top. it is huge and gave me a maternity-look that i wasn't going for. i was hoping for a loose, body-skimming fit as shown on the model in the picture but that wasn't happening with this top.",3,0,10,General,Tops,Knits +862,57,,"Love this layering piece! a little low cut for my personal comfort, but a tank underneath works great.",5,1,0,General,Tops,Knits +1072,38,Love this dress!!!,"I originally purchased a small after reading some of the reviews. although it did fit, i felt it was just slightly snug across the chest and upper arms. i returned for a medium (my usual size) and it was perfect. it had the same look and flow as what you see in the model pics. i love love love that it is long-sleeved and has pockets!!!!! i went ahead and ordered the other print as well! i wore the first one to work with some knee high boots and got many compliments. highly recommend!",5,1,0,General Petite,Dresses,Dresses +1092,41,Absolutely beautiful,Love love love this dress. fits like a glove. beautiful details. amazing quality. i'm so happy with this dress and know i'll have it for years. :),5,1,0,General Petite,Dresses,Dresses +1126,61,,This jacket is gorgeous! the design is visually very interesting. the fabric is light enough that i can wear it to work and keep it on all day.,5,1,1,General,Jackets,Outerwear +896,39,,"Love this sweater! the abstract floral design adds an understated romantic touch, the red is a beautiful rich red, and the cotton is super soft and comfy. i've tried it on with pencil skirts and jeans, and it looks great with both. i'm considering buying it in the off white too, but it does have some cons. one is the waist band hits me where it does on the model and if you look closely you can see where the sweater poof out over the band a bit--it does that on me too, unless i turn the band up t",5,1,6,General,Tops,Fine gauge +872,26,,,3,0,0,General Petite,Tops,Knits +896,63,Love this sweater!!,"I am totally in love with this sweater!! it is lightweight, comfortable, and very versatile. throw on a pair of jeans and it is casual. throw on dark slacks or a skirt and it is dressy. the design does not become the focus of the sweater but rather takes it up a notch making it a fun piece to wear. the color is not a light red, but rather a rich cabernet wine color. this sweater is well on its way to becoming one of my all time favorites!!",5,1,4,General,Tops,Fine gauge +872,23,Love!,"I was very nervous to buy this top, but because it was on such an excellent sale i went for it- tops like this usually end in me showing a ridiculous amount of cleavage or not being able to zip (i am a 32ddd) it past my waist. i ordered a small based on the other reviews and it fits perfectly! the wrap top is perfect and shows off my curves without showing too much. the fabric is very unique and the whole top is lined with a nice nylon/cotton blend so it is very soft and comfortable to wear. def",5,1,0,General Petite,Tops,Knits +1072,59,A bit big,I really loved the colors in this dress and was looking for a long sleeve dress. this style may just be big fitting but the sleeves were way too long and the dress was just shapeless on me. i usually wear a small or a size 4 in clothing and the size small in this dress was way too big. the x-small may have been a better fit but this dress was on backorder and i just received it right before we are going on a trip. there's no time to order the x-small but maybe i can look at it again when we retu,4,1,4,General Petite,Dresses,Dresses +850,63,Gorgeous top but very high-waisted,"I love everything about this blouse except for one thing: the peplum just hits way too high up on the body, and i am only 5'4"". 106 and ordered a regular size 2 (not petite) which fits perfectly except for this. it is made of a beautiful textured fabric and is very nice quality. i adore peplums and own many and like the peplum to begin near the waist. however, others may not mind the higher waist and in that case it may work for them. i really hated to send it back it was so pretty but it just w",4,1,19,General Petite,Tops,Blouses +872,42,Too cute but ...,"Super cute, flattering design but the material is itchy so it's going back:(",3,0,0,General Petite,Tops,Knits +1126,51,Surprisingly amazing,"I tried this on at the store in the regular size it came in and thought maybe it has some potential is i ordered it for me in a petite since that's what i am. i ignored the package when i first got it thinking it wouldn't really look right but omg, it's 100% amazing and flattering. wear it with skinny jeans, leggings, jeggings, whatever and it's just super awesome on dressed up or down. i'd buy this over and over again without a doubt.",5,1,3,General,Jackets,Outerwear +850,23,The most versatile top.,"I bought this shirt to wear to work (i'm a teacher). this shirt is so amazing. i'm able to pair it with work pants to dress it up, and in denim to dress it down. the cut is incredible, with the peplum waist coming right below my breasts a little above my waist. the length is perfect, and it just seems to create the most perfect shape. the material is high quality, and i just love the fabric texture. it's very soft, and gives a tiny bit of stretch, but not much. i did size up in this shirt (i'm u",5,1,6,General Petite,Tops,Blouses +862,23,My go-to shirt,"I honestly bought this shirt on a whim the other day in my local retailer. i was drawn to the color and the swing. first of all, this shirt is incredibly soft and lightweight. i love the flow of the loose peplum. the straps are nicely placed, because they're wider and accentuate my arms (and cover my bra straps). i love the little v neck detail. it shows a little cleavage when bent or hunched over, but the top stays conservative when truly upright. i wore this shirt 3 days in a row last week, and",5,1,21,General,Tops,Knits +1072,33,Lovely!,"Comfortable, relaxed fit. i am very top heavy and the generous cut of this dress worked well!",5,1,0,General Petite,Dresses,Dresses +862,64,Versatile!,"This top is comfortable and flattering. i really like the simplicity- a wearable basic summer top, with a cute twist, just enough to make it contemporary, but not overstated.",5,1,0,General,Tops,Knits +1072,33,Beautiful dress - runs huge!,"I fell in love with this dress online and went to try on in the store. i'm 5'6, 128 lbs with some boobs, usually a s or size 4. i tried on the s and xs, and ended up buying the xs - and i've never worn an xs in my life. it is long and loose, hanging right at my knees. the body is roomy, and i am thinking of having it taken in a couple of inches at the waist. there is pleating in the front that begins just below my natural waist and extends out to the hips, plus pockets (!!!). the sleeves are lon",5,1,14,General Petite,Dresses,Dresses +1072,40,Great dress with a little help added!,"This dress is comfortable and the pattern is really nice with some good attention to detail on the lace trim and pockets. i ordered this in my usual pxs (i am 5'2""), but this definitely runs very large. it is a shirt style dress so i didn't expect it to be fitted, but off the hanger it was just too shapeless and sack-like for me. i really wanted it to work, so i took it to my tailor and she added a beautiful navy rope-like tie attached to both sides in the back of the dress. it looks amazing, an",4,1,0,General Petite,Dresses,Dresses +896,60,Super sweater,"This will be a favorite sweater this winter. it has a loose but flattering fit. i purchased the red (a deep rusty red), and it fits me exactly as it does the model pictured...slightly loose but flattering, mid hip, open neckline. you can't tell in the picture, but the neckline is rolled. i am 5'2"", 140 lbs., just a bit fluffy. the small fits me perfectly. i think that you could size down from your regular size if you prefer a closer fit. the sleeves are at the top of my hands, just below the wri",5,1,1,General,Tops,Fine gauge +872,36,Poor fabric quality,Looks great in the picture but when i got this in the mail the fabric was so stiff! shaking it out did nothing-almost like it was dipped in drying glue. i got this for $10 which is so cheap and i still returned it!,1,0,0,General Petite,Tops,Knits +1072,35,A hit!,"I bought this dress in the green. it runs big - i usually take a s and had to return for xs - i am 5'5"" and 125. it flows beautifully and can be dressed up with heels or worn completely casual with flip flops. worth every penny!!",5,1,3,General Petite,Dresses,Dresses +1072,68,Beautiful dress--if you can figure out your size!,"For a brand called ""tiny""--this dress was really big. i ordered my usual m and it was like a sack--virtually no shape to it at all. i haven't been a small in many decades, so i'm really hesitant to order it again. i'm afraid i'll be like goldilocks--""too big!"", ""too small!""--but i'm probably going to give it a whirl because the green print is so pretty, and i l like that it has sleeves to protect from sun. and pockets! lots of good qualities, just putting them together in a wearable size seems t",4,1,1,General Petite,Dresses,Dresses +850,53,Love it!,"This tank runs very true to size. i ordered my usual size 8, which fits like a glove. couldn't go any smaller. very pretty fabric which is lined above the peplum. i personally like the higher peplum, but it's a personal choice. great purchase!",5,1,3,General Petite,Tops,Blouses +912,32,,,5,1,0,General,Tops,Fine gauge +912,70,Versatile vest,I love the black and grey version of the vest but decided too try it in plum. the plum color is used only on the lapels and inside of the garment. it has no finished seams but it is like a soft boiled wool so it wouldn't ravel. the seam in the waistline area breaks up the design and adds more interest.,4,1,4,General,Tops,Fine gauge +896,28,"Bought for my sister, she loves it!","This was a christmas gift to my sister. she liked it so much she wore it the day after opening it. very cute design, lovely deep red color. only thing to look out for is the potential of fabric to snag - looks like it may do so easily if wearing long jewelry. may run a bit large, but the medium for her well (slightly loose fitting garment). she is 5'7 and would probably wear a large in a typical shirt.",5,1,0,General,Tops,Fine gauge +1126,38,Nice design but quality isses,"I tried this jacket on and it was definitely cute but a couple things to note. it's a wool acrylic blend and it was already starting to pill from being tried on in the store. also, it's unlined. i thought the price point was high given its fibers and unlined. given its hem, i wonder how much longevity the piece has and how quickly it might start to look dated too.",3,0,1,General,Jackets,Outerwear +862,21,Perfect shirt,"I absolutely adore this shirt!!! the pinkish rosey color is beautiful and ended up being better than i had imagined. i will say that the shirt is a bit more casual than i thought it was going to be, the way it hangs or something..not really sure. nonetheless, it is perfect. can be dressed up or down, which is the best quality to have in any piece of clothing! i can tell i'm going to get a lot of wear out of it.",5,1,0,General,Tops,Knits +1072,41,No shape,"This dress looked super cute in the picture and on the model. i ordered the petite style and it was still so big and way too loose. no shape whatsoever! i unfortunately had to return it. i love loose dresses but this one was way too big, loose and had no shape at all.",2,0,2,General Petite,Dresses,Dresses +872,32,Very cute,Very versatile top! i feel like i could dress it up or down. fits very nice and the material is soft.,5,1,0,General Petite,Tops,Knits +912,50,Love this wool seamed vest,"I feel fabulous in this plum and charcoal vest. i am 5/9"" and the m'l is the perfect length and size. i was initially attracted by the external seams (and color) and was delighted with the silhouette and soft structure of the wool blend fabric. it is versatile and yet a kind of signature piece that i will wear with joy. .",5,1,3,General,Tops,Fine gauge +862,37,Good summer tank,This will be a great summer staple. good fit and very comfortable. may go back and buy another color,5,1,0,General,Tops,Knits +1072,39,Love!,"This dress is a vintage 20s drop hem style, not meant to be tight to form. that said, the bottom is loose so may want to size down. 5'2, 145 lbs= s. i bought the neutral- navy pattern and it is absolutely gorgeus! hints of peach and beautiful lace detail. i literally got compliments all day long- from friends and strangers. i paired it with a dark denim jacket. absolute must have for sale price.",5,1,0,General Petite,Dresses,Dresses +862,28,"Shrinks, shrinks, shrinks","I purchased this top in the rose and steel blue colors even though the majority of reviews says it shrinks even when you wash per the instructions. i called the local retailer store first to see if it could be returned if this happened and they said yes, no problem. well the reviews are correct. i washed just the rose colored top so i could compare it to the steel blue if it did shrink. i am returning them this evening. i will not take the time or spend the money to dry clean a tank. it is made ve",1,0,1,General,Tops,Knits +1092,51,Beautiful,"This dress is very flattering. i am writing a review to share my experience regarding sizing. i am 5'7"" and wear 34a. i tried on a size 0 that was at the store as a return and there was about a 3 inch gap to get the side zip closed. although i normally wear a size 2, i ordered size 4 because of my experience with the dress at the store. the size 4 is slightly big across the bust but looks ok. i think the size 2 would've been too tight.",5,1,3,General Petite,Dresses,Dresses +896,48,Gorgeous,Love this sweater! great for work. very soft and comfortable. color is gorgeous!,5,1,0,General,Tops,Fine gauge +872,36,Upholstery fabric,"Super thick material and it's lined with cotton so as not to be scratchy on the skin. it looks cute on, hopefully it will soften over time. almost thick like upholstery fabric.",4,1,1,General Petite,Tops,Knits +1072,36,"Short dress? long sleeves? yes, please!","I love tiny's aesthetic--sweet, feminine, yet always with a slightly sexy edge. this dress doesn't disappoint! during 90% of the year, i'm always cold. finding cute dresses with long-sleeves is almost as challenging as finding a unicorn. this dress is near casual perfection. i plan to wear it on breezy summer nights on a cruise to greece i have coming up. it would also be a perfect spring/fall dress before the seasons change or could be worn in winder with tights and a cardigan. see, near perfec",5,1,2,General Petite,Dresses,Dresses +850,24,"Great top, runs a little short","Love peplums and love this top! the quality and fabric is beautiful. i did have to size up because it ran a little too short on me, but otherwise great top. really cute to pair with a statement necklace as well!",4,1,1,General Petite,Tops,Blouses +1072,39,Obsessed,"I've already worn this dress 4 times and i bought 3 weeks ago. easy to wear, comfortable and flattering. i love and wish it was available it more patterns.",5,1,1,General Petite,Dresses,Dresses +896,46,Great classic look for fall,"I was really drawn to this burgundy color on this sweater, but wasn't all that impressed with the style. as soon i tried it on, wow it is very flattering. the color is gorgeous, i can see myself using it with jeans, pencil skirts, pants. for reference it does run large, i am usually a x large but i got a large and fits beautifully.",5,1,1,General,Tops,Fine gauge +1092,27,Love it!,"Love this dress! it's even prettier in person. i found the sizing a little bit on the large side, but i read that many others had the opposite problem, particularly in the bust where i'm small/average for my size. even though it's a little big on me, it looks and feels great.",5,1,0,General Petite,Dresses,Dresses +862,34,,Has anybody washed this shirt a second time? just curious if it continues to shrink.,3,0,0,General,Tops,Knits +1092,41,Beautiful,This dress is beautiful in person. i am 5'1 and was afraid it would be too long but it was perfect. i only need 2 inch heel and it will be fine. details on the flowers are really nice. one more plus it machine washable.,5,1,0,General Petite,Dresses,Dresses +1092,29,,"I love, love, love this absolutely stunning dress. the only problem was that the zipper was very difficult to maneuver, and when it finally went up, the watch it was attached the lining of the dress made a bump in the dress, which was very unflattering on an otherwise very flattering dress. i tried on multiple versions of this dress and had the same design issue with each. i ended up returning it because it bothered me so much.",3,0,1,General Petite,Dresses,Dresses +912,49,,,5,1,0,General,Tops,Fine gauge +896,37,Poor shape for my body type,"Purchased because i wanted a deep red sweater, and this one was the perfect color. unfortunately i am on the curvier side, with 34g chest, 155lbs 5' 5"", and the med was too big, (i usually wear m or l at retailer.) also the fit ended up being boxy on my body type.",3,0,0,General,Tops,Fine gauge +896,35,Its a keeper,"I'm not usually a fan of simple crewneck sweaters but this one has some nice added details that make it a keeper. the dark red oxblood color is really nice (it manages to be a red sweater without feeling overly holiday), the detailing at shoulder/chest is interesting yet subtle enough to not be distracting and doesn't feel bulky at all, the dropped shoulder seams are done correctly and without the body becoming boxy. it does feel like it might run a tad bit large, but only very slightly, not eno",4,1,0,General,Tops,Fine gauge +1092,37,Weird fit in the bust,I own many retailer dresses but the sizing can be odd. i usually wear a size 4-6 and i have a floreat maxi dress size 4 that works well. i am 34c and based on the reviews i decided to order a size 6. the dress fits well except for he bust area that is very snug/couldn't even get the zipper up. i will probably have to order a size 10 to be able to close the zipper on the bust area but it will be huge everywhere else.the fabric seems very delicate and may develop runs easily. it's a shame because th,2,0,0,General Petite,Dresses,Dresses +1126,32,"Cute style, very wide",Great coat. love the length but it definitely runs big. i got a m even though i would normally be a l and it's roomy. fabric has pulles under the arms after 1 wear but overall quality is good. very warm. great look for work w. black pants.,4,1,1,General,Jackets,Outerwear +1126,30,Great coat,"I got this coat to throw over slacks at work with the ac, and it's perfect. the picture online is less flattering than in person. found that the medium was too large in shoulders and arm length, small was right for 140lb, 5'8"", typical size 6.",5,1,0,General,Jackets,Outerwear +1092,36,,"This dress is adorable. i found it to be true to size, but i do have a small bust so perhaps that helped with the sizing issue the other reviewer encountered. i love the embroidery throughout, it beautifully constructed and feels lush. i'm 5'9"" and the dress falls to my ankles, but that's ok because it will look beautiful with heels or flats. i love the dress and cant wait to wear but gave it a 4-star rating because of the side zipper. it is extremely hard to zip up past your waist because of th",4,1,6,General Petite,Dresses,Dresses +862,66,"Loved it, but...","I fell in love with this cute top, however after reading reviews, i am going to return it. seems there is a problem with it shrinking after following washing instructions. who wants to dry clean a tank top? not me, sadly. too bad. style was cute and color was awesome.",2,0,2,General,Tops,Knits +1068,44,,"Love the fabric, so soft and comfortable. it gives a very flattering silhouette. love those pants.",5,1,6,General,Bottoms,Pants +1111,56,Very unfortunate,This dress is so beautiful in person! but the quality was very upsetting. i had two buttons come off before even putting it on. i was so excited to get his dress for my wedding shower and then i couldn't wear it :(,1,0,3,General,Dresses,Dresses +896,44,Rust not red,But if that works for you it is a cute pattern. this is a lighter weight sweater but good for fall.,4,1,0,General,Tops,Fine gauge +1092,38,Runs small in bust,"I wanted this dress so bad for a trip to hawaii. i sized up when i saw the side zip because i'm a little larger in the top than bottom, but whoa... even when sizing up, i think i would have needed to size up like 3x to get this to work. the dress is adorable, and if you have a smaller bust, it will work for you... so sad it wouldn't work for me.",3,0,29,General Petite,Dresses,Dresses +912,68,"Great style, not so great workmanship","This vest is soft, flattering, and versatile. but both pockets were sewn incorrectly, with broken seams on the bottoms so if you used them, things would fall out. i'm keeping it but had to pay a seamstress to fix it. for the price, i'd expect better quality. recommended conditionally..",4,1,8,General,Tops,Fine gauge +1092,41,That unique retailer dress,"This dress is gorgeous- it's one of those retailer dresses that i find worth the price because of how unique and beautiful it is! i found it to fit tts. although the zipper does take a good tug to get over the fabric seam, it fits perfectly. if you have a bigger chest (d+), i would foresee this dress being too snug. however, i am a c and it fits just right! i wore it to a backyard wedding with flat sandals and simple gold hoops, but i love the idea of styling it with a jacket and some wedges or bo",5,1,5,General Petite,Dresses,Dresses +1092,34,Size up!,"I am normally a size 4/6p in all things retailer but read the reviews and opted to go petite on the maxi and size up. i went with the 8p and even with a 32d bust, had no trouble zipping and it fit beautifully. the band is a tad loose, but any tighter wouldn't have fit in the bust. this dress hangs beautifully and is incredibly flattering, especially for those of us with an athletic build.",5,1,1,General Petite,Dresses,Dresses +1072,65,,"I've received so many complements when i wear this tunic. it's so comfortable and fits great. the fabric is light and feels good against my skin. this is, by far, my most favorite purchase from retailer and i wear it all the time with my leggings. love, love, love this tunic/dress!!",5,1,1,General Petite,Dresses,Dresses +862,84,Wanted to love,"I wanted to love this top. the color is wonderful in the pink and the material is silky soft. it is huge though, i am a 34 dd and bought my usual small! i am going to exchange for an xs and am hoping it fits.",3,1,1,General,Tops,Knits +850,44,"Love, love, love","I tried this top on at store and didn't want to buy at full price even though it made my heart skip a beat with how adorable it was. it is even cuter on. so when i saw it finally went on sale and i got an additional 20% off i immediately ordered!!!! it is flowy, comfortable and fun. wore it today layered with a black turtleneck and long black vest.",5,1,0,General Petite,Tops,Blouses +850,60,"Lovely, but it is tight in the chest.","I have to agree with another reviewer that this runs slightly small. i'm 5'8, an athletic pear with narrow shoulders, 34c, and usually a 6 in tops at retailer. since the top looks a little short on the model, i sized up to an 8, since i'd rather have it be flowy and a little longer. i'm very glad i did because it hits at my low hip, and if it were any smaller, it'd be too tight in my chest. since it doesn't stretch, you need some space for your arms to move. if i could do it again, i'd actually si",4,1,3,General Petite,Tops,Blouses +912,39,,"I ordered the gray/plum colorway and while i'm disappointed in the large percent acrylic fabrication, the vest is very soft and warm. the unfinished raw seams add visual interest and i'm tempted to remove all the care tags and wear this inside out for a different look. i am worried that excess pilling will be an issue so i will update my review if the quality deteriorates beyond a simple lint shave.",4,1,0,General,Tops,Fine gauge +1072,39,Another tiny success,"Tiny are experts at making busy bohemian shirtdresses that look casual but retain a feminine drape. it skims over my trouble spots without adding bulk. this is my fourth dress from this label and it does not disappoint. for my frame and style i chose tts but those of slender & petite builds may want to size down. for reference i am 5'3"" 140# 36dd.",5,1,94,General Petite,Dresses,Dresses +1092,39,Bummed out,"Embroidered tulips look like they were plucked when comparing the dresses in the product photos. took a chance any way, came out disappointed because i couldn't zip up the bodice. i hate side zips and when you pair a cheap zipper with delicate material, recipe for disaster! i am top and back heavy so though i lost weight and went down a cup size, my back is too wide for the 12p. for reference i'm 135# 36d 38/28/35.",3,0,2,General Petite,Dresses,Dresses +850,27,Love it,"Love it- super cute. can wear it to work with blazer or out at night. i'm 5'3"" and got a size small, a little shorter in the front but that seems to be style, fits great",5,1,0,General Petite,Tops,Blouses +872,56,Not kind to curves,"Wanted to love this top, and could imagine lots of outfits with it. the wide shoulders made my arms/shoulders look big. the ruching and extra flap landed at an odd place, accentuating my belly. it did arrive very wrinkled, although a previous reviewer said she found it to be a wrinkle free garment. maybe that made the look worse. overall i felt that it made me look 15 lbs heavier than i am, so back it goes. i am 5'7"", 160lbs, 34dddd, and the size large was the correct size.",2,0,7,General Petite,Tops,Knits +1072,60,Perfectly adorable!!!!!,"This is the perfect dress! for summer, fall, winter or spring, it is flattering and looks cute with booties, flip flops, brogues or barefoot! runs a teeny bit large - i wear a small to medium and the small is perfect! i might just buy the other color it comes in!!!!",5,1,0,General Petite,Dresses,Dresses +862,35,Cute top....but shrinks horribly!,"I bought this top and it ran huge, i had to get an extra small. well then i wash it according to the instructions and it shrunk horribly! like its so small now my 3 yr old could probably wear it! i'm so sad, i really liked this top....but for it to shrink after one wear is not acceptable.",1,0,10,General,Tops,Knits +862,60,Great tank,"For me to buy a tank top it better be special and this is. flattering without being skintight, it camouflages that little back bacon you sometimes get from a bra. the v-neck is low and is the same in the back. great length, super soft and the best part is you can wear a bra! i haven't washed this yet, but based on other reviews i'll probably hand wash and air dry. the only issue is the tag flops out every now and then.",5,1,0,General,Tops,Knits +872,34,Flattering a comfortable,"This top looks just as it does on the model and it fit just as they said it would. i needed a nice shirt to wear with jeans and camouflage my new-mommy tummy and this was perfect! it's really comfortable and fun, too!",5,1,0,General Petite,Tops,Knits +862,54,,"I love everything about this top! the fabric, the color, the fit! great top for spring and summer!",5,1,0,General,Tops,Knits +872,25,Fabric is very stiff....,I had hopes for this shirt but was disappointed in the fabric...it's very stiff and heavy for a summer blouse. will be returning it.,1,0,0,General Petite,Tops,Knits +896,42,Just ok,"I usually wear petite which this was not so a little big for me. but nice color and good quality, but pricey for what it is. it's more like a $45 sweater not $100+",3,1,2,General,Tops,Fine gauge +1072,36,Effortless,"Another reviewer said it best, ""i love the way this dress makes me feel."" i couldn't agree more. the lines are perfect and effortless. +with all the different reviews on size, i went into the store to try it on. i am usually always a s or m at retailer and a s fit perfectly. i think sizing down any more takes away from the casual look of the dress. i am 5' 5"", 130, and have a small bust.",5,1,0,General Petite,Dresses,Dresses +896,34,"Beautiful color, pretty design, nice fabric","I got this in the wine, which is a beautiful color. the design is nice and looks expensive (but i'm not sure how it will hold up), the fabric is very nice, medium weight and drapes well. it is a little boxy but would be nice to layer over a button down.",5,1,0,General,Tops,Fine gauge +1126,33,Chic,Love this. can be a jacket or blazer syle. fits well.,5,1,0,General,Jackets,Outerwear +1072,41,So pretty!,"The colors, style and fit were great. this dress you could wear on many different occasions. all around great piece to own!",5,1,0,General Petite,Dresses,Dresses +850,42,Too much pep in this peplum...,"I love a good peplum top, and was so excited when it arrived, but was sad to find the flare on the peplum was a little too much. i'm not sure why it was so unflattering, because in every other way, it fit like a dream, but it seemed like either there was too much or too little fabric around the waist to have it hang properly. it had to go back.",3,0,1,General Petite,Tops,Blouses +872,38,,"This top is super cute and is very flattering. however, i have trouble getting in and out of it. there is one zipper on the side but it almost seems like it needs to go higher up in order to help you put it on and take it off.",4,1,2,General Petite,Tops,Knits +1072,52,Lovely dress,"This dress is very striking, especially in the green color way i purchased. flow and loose, very feminine but not ""cute"". well made and very much in style this season. i returned it because it wasn't quite suitable for me-1 size up would have been a better. fit overall.",4,1,0,General Petite,Dresses,Dresses +1072,58,Great fabric,"I ordered my usual size small and it was very large on my 5'5"", 112# frame. my daughter loved it so she scored. i ordered another one in xs, perfect though the sleeves run long! i have long arms. can be dressy or casual.",5,1,27,General Petite,Dresses,Dresses +872,21,The perfect purple piece,I got the dark purple color of this top and it is perfect! i wear it all the time. it's comfortable and it's cute! plus if it gets cold i can throw a warm sweater on top of it.,5,1,0,General Petite,Tops,Knits +1089,34,Gorgeous and flattering dress by maeve,"This dress looks beautiful on. it's very flattering and comfortable to wear. it runs true to maeve's dress sizing which for me means in these dresses i always get one size larger than what i normally wear. on my 5'3"" height the regular was just above the knee. great for giving you the illusion of the figure you want even if you don't have it naturally !",5,1,15,General Petite,Dresses,Dresses +911,46,Almost but not quite,"I am returning. i really liked the appearance in the photo and i love aqua, but the biggest problem for me is the shape. it's pretty boxy and it's hard to tell from the photo, but it has a batwing shape. i also wish the lighter portion were more ivory (less yellow in it), but that's based on what looks better against my skin tone. i found it to run true to size, but i thought it was unflattering (made me look wide).",3,0,0,General,Tops,Fine gauge +872,30,Great every day long-sleeved tee,"I absolutely love this tee! i normally don't buy two of the same thing, but i bought it in both black and mauve during a december sale. i ordered a size small, and it fits tts. it can be worn with leggings or skinny jeans/cords. i love pairing it with skinny jeans and boots best. it's very slimming and so soft.",5,1,0,General Petite,Tops,Knits +872,60,Amazing!,"This tee is amazing! it is so soft and comfortable. and is great for those of us who are tall, it has great length! i went with a medium because i didn't want it too tight. i really hope that retailer restocks soon because i want to buy one in every color!",5,1,0,General Petite,Tops,Knits +872,29,,Super comfortable!! i am 34 weeks pregnant and i works great for me now and i think it will be perfect post baby also!,5,1,0,General Petite,Tops,Knits +872,68,Best basic ever,"Like the other reviewers, this is my new favorite tee. it's so freaking soft, and the ribbon down the back just gives a little added flare. pure+good has been one of my staple brands for basics for a while, and i will definitely be buying more colors in this. the length is perfect for leggings, and it would be cute with jeans too.",5,1,3,General Petite,Tops,Knits +1082,36,,,1,0,0,General,Dresses,Dresses +872,35,Perfect until washed,"Loved this shirt so much that i bought in 3 colors. love the luxurious feel of the silky, flowing fabric that flatters in all the best ways. however, after washing per instructions, the fabric lost its good qualities and turned into a blah, pilled mess that gathers at the seams (especially the bottom seam). tried dry cleaning another shirt and it came out the same way as washing. looks like a cheap, lackluster layering top now and definitely won't last another season. so disappointed - if you ca",3,0,0,General Petite,Tops,Knits +867,53,,Cute top and flattering to wear. fits nicely and i'd say true to size. can't wait to wear it.,5,1,0,General,Tops,Knits +940,37,Not for me,It breaks my heart to say this but i had to return for shape issues. i am not a fan of dolman sleeves (they make me look big and bulky) and i wished i would have known that prior to purchasing. it is unfortunate because it is a really beautiful knit and quality. i could see this working better on someone tall and thin.,3,0,2,General,Tops,Sweaters +1086,67,Love it but. . .,"At 5'5"" (almost), 122lbs., i always wear a size small. however this dress runs large (no, i am not smaller than i was 6 months ago) and it looked like a dumpy sack on me. too bad, i really wanted it to fit! it is a slightly heavier fabric than anticipated, and would be an excellent travel dress. i may try the xs. . .",3,0,0,General Petite,Dresses,Dresses +160,23,,"Well fitting bra, comfortable (not itchy), lace doesn't show through tops.",5,1,1,Initmates,Intimate,Intimates +872,25,Soft & versatile tee,"Purchased in the light grey and was so excited, i wore it the very next day. the back detailing and pocket make it more unique than a regular tee and the fabric is slightly heavy (in a good way) so it hangs beautifully. easily can be dressed up or down. new favorite tee!",5,1,0,General Petite,Tops,Knits +872,62,Need them all!,"Ordered this on a whim while taking advantage of a promotion, and now need one in every color! the weight and cut is perfect for fall/winter/summer - not too heavy, but not sheer/tissue thin; fitted enough to look super cute with leggings or skinny jeans. fabric has a nice quality feel to it - i have similar shirts from the past that have held up well in the wash. i'm anticipating the same with this.",5,1,1,General Petite,Tops,Knits +872,35,Best. tee. ever.,Oh my! i love this tee. it is super soft. i love how it doesn't look like a sack with no shape. i can't wait to get more colors. i am tall plus have a long torso and it still is long enough for me so this is definitely a win!,5,1,0,General Petite,Tops,Knits +1052,46,"Love, but different colors fit differently","I love these joggers. they are stylish, comfortable and high quality. my one complaint is that the sizing appears different for different colors. + +i got them in the green/moss color,. i immediately wore them casually with flats, a t, & a long silver necklace. that night, i literally just changed into a long, flowy silk cami and high suede black shoes with the joggers and wore them out- feeling comfy and pulled together (favorite combination). + +i loved them so much i decided to try the othe",4,1,1,General,Bottoms,Pants +1086,39,Lovely color,"I ordered this as it was either in stylist pick or top rated, cant' remember which, but i must say, ti was very nice on. a little loose, but the petite sizes are sold out, so i ordered the xs (petite might have been too short...) the cut is feminine, not figure hugging, but still flattering. i can see wearing this in the fall with boots and a cardigan, not just summer with sandals, so i decided to keep it. + + 115 lbs, 30dd, 26.5 in waist.",4,1,2,General Petite,Dresses,Dresses +872,65,,,5,1,0,General Petite,Tops,Knits +872,30,Comfort and style to the max!,Love this shirt. i am 5'8 and have a slender torso and the small fits perfectly. i love that it's long so you can wear it as a single shirt or use it as an extra layer. i also have a grey druzy necklace to dress this puppy up. purchased it in black and this will be a new staple.,5,1,0,General Petite,Tops,Knits +872,48,Nice but 5% spandex makes it a bit clingy,"This top is much nicer than expected.....the fabric and style are great. i am a size small or medium, and got the small. from the front, it was great. not so much from the back for me. i'm larger on top than bottom and the 5% spandex made it too clingy around the dreaded bra fat area. i don't wear spanx. i wish retailer would be more specific with the fabric content. if i'd known it was 5% spandex, i would have ordered a size medium. i am thinking about doing this because the top is really",4,1,2,General Petite,Tops,Knits +984,59,Cute...,"This jacket was a gift for my daughter,it fit like a glove and she loved it !",5,1,1,General,Jackets,Jackets +867,53,Confortable - simple,"This top is so soft and comfortable. i bought it on sale, so would i have paid $60 for it . . . . not sure. fits true to size, what can i say its a simple top, well made and so soft.",5,1,0,General Petite,Tops,Knits +940,46,"Didn't fit well for me, awkward and dull","I ordered this and hoped it would be a fun & whimsical sweater for this winter. instead, it's just strange. it didn't fit well. too short in the overall length & in the sleeves. the shades of the yarn were drab. it also didn't seem made to last. it looked like it would pill/snag in a short amount of time. i returned it. i'd love to see a style similar to this executed better in the future. having a unique sleeve is a cute idea.",2,0,2,General,Tops,Sweaters +872,33,Luxurious basic tee,I love simplicity in clothing and this tee fits the bill! i put it on and instantly feel basic elegance.,5,1,0,General Petite,Tops,Knits +872,49,Awesome shirt,"I am 5'10"", 130 pounds. a medium is a perfect fit for me. i love it! not so sheer that i feel that i need to wear a cami underneath, sleeves are long, and it is so, so, so soft. the scoop neck shows just the right amount without being too revealing. i am buying one in every color.",5,1,0,General,Tops,Knits +867,36,Beautiful,Fits great! love soft material. love with skinny jeans brown boots,5,1,0,General Petite,Tops,Knits +1086,36,,"I really like this dress. i'm 5'8"" and about 135 so i bought a small. i am small chested, so i plan on wearing a bandeau bra underneath it because the arm holes are a little low. the material is very nice though. perfect for dressing up with cute jewelry!",4,1,8,General Petite,Dresses,Dresses +1094,39,Great summer dress,"I bought this dress in a sm for a cruise i'm taking soon. i don't have much of a waist, kind of straight like a board, and this dress is very flattering on my figure. the skirt fits snug and the top drapes nicely over my waist. very pretty and flowy. i bought the multi color stripe dress and the vertical stripes enhance the beauty of the dress.",5,1,0,General,Dresses,Dresses +876,51,Lovely detail,"I was pleasantly surprised when i tried this on. i tried it because of the detail but didn't hold out much hope because it looked frumpy on the hanger. i was very wrong. it fits beautifully. it drapes nicely, hugs the shoulders perfectly and doesn't droop open due to the embellishments. there is a tiny closure where the fabric crosses in the front so you are not exposed. i liked that feature very much. the sleeves are 3/4 on me, but i like it - nice change of pace. this is a very different style",4,1,0,General Petite,Tops,Knits +867,35,Comfortable top,"This top feels great on. it just drapes well and isn't clingy. i refused to buy maternity tops, because i wanted to wear the tops after pregnancy. though i bought this top post pregnancy it would have worked great because of the length.",4,1,0,General Petite,Tops,Knits +872,38,Favorite go to top,"Comfortable casual, hip. i have the black & white color which is a bit thicker than the other colors which i prefer as i recently had a baby and need a little extra fabric. i wish the fabric was a bit softer but the cut is so flattering there was no way i was sending it back. i wish the other colors were in the same thicker fabric and i would have ordered more. my new go to top. the black ribbon on the back is my favorite part.",5,1,0,General,Tops,Knits +1089,59,,,5,1,0,General Petite,Dresses,Dresses +1072,73,,"This dress is gorgeous in the photograph. and very pretty when it arrived, however, it is very dark in color. you would only notice the blue in bright light or perhaps outside in the sun. the fit was small. i could not get the tie around the waist to look right and feel comfortable, so sadly i had to return it. + +i applaud retailer for the excellent and attractive packaging. that was almost enough to sell the dress. it came in a very nice white box inside a larger box. tissue paper and fol",4,1,1,General Petite,Dresses,Dresses +867,63,Cutest ever!,This is one of the cutest tops i've ever gotten from retailer. the material is very soft and flowing. it fits true to size and hange beautifully. love it. i should have gotten he turquoise one too!,5,1,1,General Petite,Tops,Knits +872,28,,Love this shirt. it fits great and can be easily layered!,5,1,1,General,Tops,Knits +872,32,,"Agree with the other reviewers. this top is excellent. great length, weight & bounce to it, flattering without being clingy. i'm 5'10"" with a long torso, so i'm always in the market for tops with longer hemlines and decent material without being too tight or clingy. this one i love! i bought it in black, then went back for the turquoise, then two more... if that doesn't tell you what a great shirt this is, i don't know what will.",5,1,0,General,Tops,Knits +872,44,Too long,"Great color, soft fabric, but waaaaay too long. more like a night shirt than a t-shirt.",2,0,1,General,Tops,Knits +872,26,Oversized and unflattering,"I was hoping to find a slimming and cozy sweater, unfortunately this one was baggy and material was really bulky. one of those occasions where i would have never purchased this in person but online you can't quite tell the style and fit. i returned this item.",3,0,0,General,Tops,Knits +872,42,,I need one in every color. so super soft.,5,1,1,General,Tops,Knits +876,48,,Very pretty blouse with nice detail. needs to be worn with a camisole however.,4,1,0,General Petite,Tops,Knits +872,32,,"Got this shirt on sale and i hope they restock so i can buy more. super comfy and flattering at the same time. i have some extra baby weight and it camouflages that well. i'm normally a 6-8 but i'm an 8-10 right now and the medium was perfect. i'm 5'6"" and its plenty long enough to wear with leggings. a great shirt and i'll be sure to watch out for this one to come back. please restock!",5,1,0,General,Tops,Knits +1086,52,Perfection,Easy to wear. the fabric is super soft and the shape is very flattering. i really like the shirt hem at the bottom.,5,1,9,General Petite,Dresses,Dresses +146,31,,Love these pajama bottoms. they are so comfortable and the print is fun and unique. i highly recommend. they run true to size and have a great length. they look short on the model but mine are perfect.,5,1,10,General Petite,Intimate,Lounge +872,32,Perfection,"I almost never take the time to write reviews but this shirt is amazing... it's a super soft, stretchy, substantial fabric that is incredibly flattering. it falls perfectly and is insanely comfortable. i am 5'5"" 120 lbs and usually wear an xs or s in retailer tops... i went with the xs and it is a perfect fit. love it so much i bought it in 4 colors... i am now completely broke but these shirts will be in constant rotation.",5,1,0,General,Tops,Knits +867,51,Very pretty top,"This is a beautiful top, however, my top did not match the one in the picture, it's so odd, the stripes are completely different, it's ok, because it's very pretty, but i do like the one pictured better. it's too short on me for leggings and boots, but it's great with skinny jeans. very pretty and soft material.",4,1,0,General Petite,Tops,Knits +984,40,Perfect denim jacket,"I am so glad i had read the other reviews of this jacket which prompted me to order. great fit and cut with a hint of stretch, nice styling details, great vintage color. i wasn't in love with the price but after receiving the jacket i would gladly pay the price again. will definitely be in my wardrobe rotation for years to come!",5,1,1,General,Jackets,Jackets +872,35,Everyday staple,"This shirt is amazingly soft and has such a great cut, especially for me being curvy. i love to pair this with cute leggings or tight ankle jeans with my boots. recently wore on a casual date with the hubby and he loved it paired with my dark brown leather jacket and dark jeans. + +only reason i gave it 4 stars was that the shirt tends to stretch out a little at the bottom is seems as you wear it throughout the day - it is still a great shirt and if possible i would buy more. + +need to bring",4,1,0,General,Tops,Knits +876,56,Pretty but...,"This shirt is pretty but wasn't worth the price in my opinion. the shirt does a pretty decent job of staying closed at least, and the embroidering is pretty, but i could tell the material wouldn't last very long. + +also i like my shirts loose fitting, but this one looks more boxy than flowy. i'd probably still buy it if it were cheaper.",4,1,0,General Petite,Tops,Knits +872,37,Amazing,This shirt looks and feels fabulous. i got black and white and received a ton of compliments. wore with boots and leggings and fun jewelry.,5,1,0,General,Tops,Knits +867,46,,This is the perfect casual top to wear alone or layered with a cardigan. love it!,5,1,0,General Petite,Tops,Knits +1052,67,,"I love joggers, best style to come along in awhile. i think these are well made and i like the fabric. i just wish the leg were cut a bit slimmer but that's just a matter of preference. i definitely like them and will keep and wear.",5,1,1,General,Bottoms,Pants +940,38,"Ok, but...","Gorgeous detail on the sleeve. adorable pattern. unfortunately, it is a little too cropped & it's not actually sleeves. it's a cape style. wasn't expecting, but still really cute.",4,1,9,General,Tops,Sweaters +146,33,,"Beautiful colors. lightweight flannel, so a great pair of sleep pants that can be worn year round. i ordered a s, my typical size, which turned out to be quite large on me. hopefully the xs will fit better.",5,1,0,General Petite,Intimate,Lounge +1086,46,Run don't walk to buy this,"Although i wish this was not so dark blue for summer, it is the most fabulous cut, super sexy with the tie neckline and love the side pockets... and did i mention the fabric is ridiculously soft? i just wish it was more of a blue denim blue but nonetheless, i could not walk away from the store without this. i am 5'9, 142 lbs and medium fit me perfect for length in the leg.",5,1,4,General Petite,Dresses,Dresses +940,34,Want to like it....,"This is soooo much more cropped than it looks in the picture. the fabric is super soft and design is cute. i really wanted to like this, but it just doesn't fit as shown. the back is halfway up by back and i am shortwaisted...",3,0,2,General,Tops,Sweaters +872,63,What happened?,"I purchased this item in the gray heather color and loved it so much i wanted to buy every other color. the fabric was cottony and felt very soft and cushy against my skin, and the gray color was from the combination of black and white fibers. i ordered the light gray and the red online and could not wait for them to arrive. but the other colors were not even in the same material, but a very shiny and synthetic feeling fabric, with just a single color weave that did not have the same feel or tex",1,0,0,General,Tops,Knits +872,34,Perfect long sleeve tee!,"I've been looking for a staple long-sleeve tee for a while now, and i think i've found it! i bought this tee in my usual retailer size of medium and the fit is perfect. the material is soft, the cut highlights an hourglass figure without clinging in the wrong places. the sleeves are long enough, which can sometimes be a problem for me. the length is perfect to wear with leggings without being too long. i'll be back for more colors!",5,1,0,General,Tops,Knits +940,50,Adorable but not really a cardigan more a capelet,"I gave this 4 stars instead of five because the picture really does give you the impression that this ""cardigan"" has sleeves but actually it's a cape with a few stitches above the wrist. it's also quite short, i'm only 5 5"" and it hits me above my waist. this picture was clearly shot with the front pulled down, i bet if we saw the back it would be high above her waist. also, one of the buttons fell off the first time i wore it. i heard it fall thankfully so it was easy enough to sew back on but",4,1,2,General,Tops,Sweaters +872,36,Love this top,"I love this top, it's long enough to to wear with leggings and the ribbon in the back really dresses it up. the only negative is that the material pulls easy and only on the space dye color, not the solids but i still love it! for reference i ordered xs and it fits perfectly i am 5'2 125lbs",5,1,1,General,Tops,Knits +870,39,Lovely,"I purchased this shell in black. the embellishments and construction of the top are of a good quality, like as shown. i am 5'4"", 120# and typically purchase an xs. this ran a bit bigger than i was expecting from the reviews, but i am overall happy with the top. the center slit may be too revealing for those with a smaller bust.",4,1,0,General,Tops,Knits +1086,44,Huge,"This dress will unfortunately be returned...so cute online and looks like a sack in person. runs very large, arm holes are very low. not flattering.",1,0,1,General Petite,Dresses,Dresses +940,48,,"Just received this and absolutely love it! i tried the vienne cardigan in the store and i assumed this one would fit the same (since online exclusive), which it does. this one though has the whimsical left grey sleeve with trees, a fence and sheep on the sleeve - very cute. it's a traditional knit design with a twist of modern design being the cape style. it is a bit cropped but fits well and the hood lays nicely. there were a few too many stray threads when i received that i needed to cut off.",5,1,2,General,Tops,Sweaters +1086,44,Only suits smaller chest,If you have any cleavage this dress will look awful. the ties drop pretty low & look trashy over cleavage. recommend otherwise - good fabric cool look,2,1,1,General Petite,Dresses,Dresses +1102,57,,"What i liked: +1. midweight fabric. it's not lined and when i read polyester in the description, i was worried that it might be thin, but this is a stretchy midweight fabric. +2. pretty pretty print + +what i did not like: +1. i don't know what dress the model is wearing, but this was an empire waist dress on me. i'm 5'7"". because it was empire waist, the long hem makes this look like a maternity dress on me. +2. the sleeves are cut oddly. they look too wide for the dress, even on this model. +3",3,1,11,General Petite,Dresses,Dresses +872,42,The perfect long sleeve t-shirt,"This shirt is amazing! it's an excellent heavier weight quality t-shirt, but so comfortable. if you are looking for the perfect shirt to pair with your leggings and boots this fall/winter/spring, this is it! i am 5'8"" 136 lbs and this perfectly covers my rump and the small fit perfectly. the band around the wrist is a nice touch, making this a higher quality tee. i am buying more colors.",5,1,0,General,Tops,Knits +1102,50,$200 piece of polyester,A $200 piece of polyester with no shape and looks good only on the model. avoid ! mine went back the same day it came in the mail...,2,0,4,General Petite,Dresses,Dresses +867,22,,"So soft. this is the best basic tee i've bought in a long time and it fits so nicely on my frame. i'm 5'8"" ans 130 lb, medium bust and got an xs.",5,1,0,General Petite,Tops,Knits +872,29,Best tunic ever,"This is the most perfect tunic out there. it is comfy, flattering and fits perfect. it can be dressed up or dressed down. definitely worth it to buy in every color!",5,1,0,General,Tops,Knits +146,33,Beautiful design,"These jammie pants are quite beautiful and comfortable. the material used is great, very light and thin. i found these to run really big though, definitely order a size down!!",4,1,2,General Petite,Intimate,Lounge +1052,26,Sooo comfortable!,These pants are so comfortable and cute!! you can dress them up or down!,5,1,4,General,Bottoms,Pants +1086,62,,"I'd been eyeing this dress since it first appeared online, but when i went to order, there was no petite sizing. then when shopping, i noticed the carbon color in the petite section of my local retailer. i grabbed my usual ps, and although it was okay, i decided to try the xs for comparison. the slightly closer fit made all the difference, suggesting that i had a figure underneath, but not tight anywhere. nice weight to the fabric, it drapes beautifully and the lacing detail is very popular now. a",5,1,3,General Petite,Dresses,Dresses +146,25,Love them!,"Exactly what i was looking for. cozy, not too warm, fits comfortably and roomy without looking baggy. the print is beautiful. will definitely be buying more sleepwear from retailer!",5,1,0,General Petite,Intimate,Lounge +876,55,,"I agree with other reviews, soft, cozy and love the embroidery and beading. it is a bit wrinkly even after i ironed it but overall happy with this blouse.",4,1,0,General Petite,Tops,Knits +1052,41,Bunched elastic,"I have the blue and holly joggers. i absolutely love the fit, feel and color of the joggers. the oddity is that the elastic at the waist bunches in the blue pair but not the holly. it drives me crazy. i could only wear the blue for a couple of hours before i had to change into something else (unfortunately the holly joggers were in the wash). i'm going to take the blue joggers to the seamstress. maybe she can fix them. 65"", 135, small was perfect.",4,1,0,General,Bottoms,Pants +867,38,Love!,I saw this top in the store and wanted to try it on but my 18-month-old son was getting cranky so i had to leave. i kept thinking about it and was planning to go back and get it and then i checked online and it was on sale! i purchased the pink and i'm ordering the blue as well. it's very comfortable and i received several compliments when i wore it. i haven't washed it yet but the fabric seems to be sturdy.,5,1,0,General Petite,Tops,Knits +870,37,Unexpected find,"I tend to peruse the sale section when i am avoiding my work (quite often). i came across this top, but had never seen it before it was put on sale. i was intrigued by the sleeves, but concerned that the pattern might be too ornate. i was happily surprised when i tried it on. the fabric was thick, which i find highlights curves and hides rolls. the detail was enough that i could dress it up, but not so much that i felt awkward wearing jeans.",5,1,0,General,Tops,Knits +876,27,,,2,0,0,General Petite,Tops,Knits +872,59,Comfort,Extremely comfortable t. fits tts. bought in black & teal. can be dressed up with a scarf or worn with just jewelry. fairly lightweight so probably not a good choice for cold winter months. great price too!,4,1,0,General,Tops,Knits +870,67,,"I wanted to love it - the color is great, the embroidery pretty, but the stiff scalloped sleeves were just too much. if you have broad shoulders this is not the shirt for you. i think personally it would have been better had the material been softer.",3,0,0,General,Tops,Knits +872,64,,"These are long, easily wear with skinny jeans, they do not cling and are not see through! the colors are great!",5,1,2,General,Tops,Knits +867,33,Great t,"Love this t-shirt! i live in miami and have a 5 month old so i practically live in shorts and t-shirts, and this shirt fits beautifully and adds a little extra pop to your everyday t. love the material too!",5,1,0,General Petite,Tops,Knits +872,49,Great basic!,"Excellent tunic tee. will be great with leggings or jeans, which is just what i was hoping.",4,1,0,General,Tops,Knits +870,29,Beautiful embroidery,"I tried this shirt and really loved the feel, and the scalloped sleeves. i have a couple shirts by this brand that also have beautiful embroidery, and i always find myself drawn to their clothing. the fit wasn't too boxy on me, but i'm between m&l, and sized down, so that might have helped. if i didn't have so much of this color in my wardrobe already i probably would have snatched this up!",5,1,0,General,Tops,Knits +1086,50,Cute casual with a twist,So super soft and comfortable - great to throw on to run errands with ease while still looking stylish - the lace up front makes it more special that just a standard tee shirt dress,5,1,0,General Petite,Dresses,Dresses +867,40,,I love this tee. really comfortable and super cute too!,4,1,0,General Petite,Tops,Knits +872,35,Great top,"The fit and feel of this top is lovely. great shirt to layer. fits great, i get compliments every time i wear it.",5,1,1,General,Tops,Knits +876,38,So close...,"Beautiful detail, soft drapey fabric. but it pulls funny from where they added stitching at the top of the v. for me it was also a little short but i have a long torso. i'm 5'7"" 155lbs and the size medium fit nicely with the exception of the length.",3,0,0,General Petite,Tops,Knits +1089,47,Pretty dress,"I really love this dress but am deciding whether to keep it because, while it fits well in the skirt and around my torso, it is tight in the arms. i can't really lift my arms above should height. the plus is that it would keep me from bidding too much at my kid's school auction. the negative is that it would be hard to dance in.",4,1,9,General Petite,Dresses,Dresses +940,44,This is a poncho,"Was really looking forward to this sweater, but it's not a cardigan, it's a poncho. i can't decide if it's fun-quirky or just odd. it's gorgeously made, and extremely soft, but i do wish it was actually sleeves. i haven't decided if it's something i will wear or not. my husband referred to it as ""batwings."" that should have been depicted in one of the photos.",3,0,2,General,Tops,Sweaters +1082,36,Beautiful dress,I read the previous comments and was skeptical. i love the dress! it's fitted on the top and flowy on the bottom. i didn't find it too big or maternity on the bottom half. the print is really pretty with flecks of blue that brightened up the dress.,4,1,6,General,Dresses,Dresses +872,32,Great shirt and great quality,"I purchased my wife this shirt for christmas and she loved it! the quality of the shirt is amazing and now she wants them in every color! even though she says she's kidding, i really know that she isn't.! :# + +the information i fill out #below) is about my wife, not me!",5,1,0,General,Tops,Knits +949,43,Amazing jacket!,This is such an incredible jacket. total show stopper and well worth the investment.,5,1,3,General Petite,Tops,Sweaters +1086,74,Awesome dress,I tried this on at the store and had to buy this dress. it's adorable on and the fabric is really soft. very flattering too!,5,1,0,General Petite,Dresses,Dresses +867,33,,"Cute top, a little less fitted than i was expecting.",4,1,0,General Petite,Tops,Knits +1102,31,,"Great dress! i am always looking for knee length dresses that are comfortable and easy to wear. i am really active with my kids and this dress can be worn on a casual day with sandals or dressed up. the fit was flattering for me, although i am not very curvy and could see that it might not flatter all shapes. i am 5'5'' and 120 pounds and the size four fit great.",5,1,9,General Petite,Dresses,Dresses +872,25,,I love these shirts. ordered in 2 colors and they are great with leggings and skinny jeans and scarves. so comfortable and on me a little long but not too long!! the fabric is fabulous and a great weight. one of my favorites for sure.,5,1,1,General,Tops,Knits +872,65,This is a wonderful top!,"After reading the reviews, i decided to order this top. i was so pleased, and when i wore it for the first time, i had someone ask me where i got it. it is perfect with leggings because it is long enough to cover my leggings in the front as well as in the back. i want to order it again in different colors.",5,1,0,General,Tops,Knits +872,34,Just great,"I very rarely pay full price for anything, let alone this much for a t-shirt. but i actually paid full price for this in two colors. that's how much i love this shirt. the pink and the turquoise are beautiful, and i'm thinking of asking for the mauve for christmas. i love how heavy the weight is, the length of the torso is long enough, the length of the sleeves is actually long enough. i love the ribbon down the back. it's flattering and comfy and perfect. i'm 5'8"", 140lbs, 34b and the small fit",5,1,2,General,Tops,Knits +1086,44,Surprisingly lovely,"This dress is very clever. fabric is on thicker side so it eliminates any worries about dimples or imperfections. the tie at neck line is effortlessly sexy and not at all trashy as another reviewer felt. you could tie it if you didn't want any cleave, or leave it looser for more casual look. i got the small bc i felt comfortable with a little cling given how forgiving the fabric was. it still showed shape when i walked. i was surprised to like it as much as i did. husband insisted i get it becau",5,1,1,General Petite,Dresses,Dresses +867,37,,,4,1,0,General Petite,Tops,Knits +870,43,Looks cheap,"I was excited to receive this top. it looked great online, vibrant colors with the beautiful detail on the sleeves. when i tried it on, the fabric looked and felt cheap. it is not a flowy top. do not recommend it.",1,0,0,General,Tops,Knits +1089,60,Absolutely gorgeous!!!,"This dress is one of the most beautiful dresses i have seen. purchased for my daughter . . . it was as if you made this dress for her. had to return it because the woven fabric was fraying around the back v neckline and zipper. was able to replace it, the replacement looks good -- have a concern about two areas but we will see. just love the lines and fit of this dress! truly hope the fabric holds up.",4,1,6,General Petite,Dresses,Dresses +940,44,"Soft, snuggly and cute","Like the previous reviewer stated, it's more like a cape. i'd to call it a cape-digan. style: super comfy, loose fit for comfort. fabric: high quality, just right thickness (not too thick, not too thin), snuggly soft, doesn't pill with wear. design: totally retailer cute and quirkiness, top of the back has the same gray as the sleeve for continuity, and the sleeve has sheep and a fence (how cute is that!). this is a very versatile sweater, goes with everything, and so comfortable that i reach for",5,1,2,General,Tops,Sweaters +872,29,Awesome fit,"Currently own this in 5 colors after originally buying one. i'm 5'10"" normally wear a medium, bought a small in this. best material and fit overall, perfect length for long torso",5,1,0,General,Tops,Knits +876,62,,"I definitely would recommend this top. when i put it on i felt it was true to size, and fit me very well. sometimes my retailer tops tend to be a little roomy, but not in this case. the fit was very nice and its embroidery details make it a special look that i can throw on with my jeans and still look put together. i know this will be a top i wear often.",5,1,0,General Petite,Tops,Knits +984,54,Amazingly comfortable - but different than photo,"This is my first demin jacket ever as all the ones i ever tried were too stiff, and far too boxy and long on me. i need to thank all the reviewers who helped me take the plunge. +. +got the size xs regular which is only slightly snug at bust when buttoned and a tiny bit long in the arm for me (5'2"", currently 33-25-37 with narrow shoulders and torso). very flattering look. if this jacket comes out in a new darker wash version i will definitely also try a petite size s. +. +the one i got in the mail",5,1,0,General,Jackets,Jackets +876,63,"Lovely, but flawed","I bought this top on sale - very glad i did not pay full price for it! i wash everything before i wear it. when it dried i saw that there was a grease spot on the back and a small hole on one upper arm - i will probably be able to take care of the grease spot, but the hole will be a little trickier, as the material is kind of filmy.",1,0,0,General Petite,Tops,Knits +1052,39,Must have for fall..,"I ordered these joggers in holly size m. for reference, i am 5'5, 138 lbs, i have a small waist with *thicker* thighs and bum. i was worried that these would make all my ""flaws"" stand out as so many joggers in the past have, but these are not that way at all! they are so comfy and just right! they could easily be dressed up or down. these joggers could quickly replace your everyday jeans or black leggings habit to add a new, more stylish twist!",5,1,7,General,Bottoms,Pants +1072,68,,,2,0,0,General Petite,Dresses,Dresses +129,30,Pills horribly,"I splurged on this pajama set for myself and now regret it. even though the design is adorable, the fabric contains acrylic and the knitted fairisle part started pilling within the first week of wear. after a month and a couple washes, it looks horrible, and the fleece part is looking a little grungy as well. so so disappointed. the top is intentionally oversized and comes down to my crotch, i could have easily sized down.",2,0,1,Initmates,Intimate,Sleep +1011,35,Loved it from the moment i saw it,"This skirt is perfect-it can be dressed up or down depending on what you wear with it. it is a thick fabric so it keeps you warm (being a freeze baby i really like that). while the fabric is thick, it is soft, and it is moveable rather than being super stuff. it is not at all itchy. it is a little longer than i would prefer in a pencil skirt but i ended up keeping it anyway. this was somewhat compounded with the fact that i did end up sizing up on this dress. my normal size tending to stay at my",5,1,3,General,Bottoms,Skirts +1072,25,Awkward hem,"I tried on 4 different dresses and every one of them had a slightly different, awkward hem line. they were asymmetrical but only a tad bit so it just looked crooked. finally found one that wasn't so bad but decided not to purchase because the perfect fit for my arms was too big in the boobs. i am a curvy, athletic build, with broad shoulders and small waist, for your reference.",3,1,0,General Petite,Dresses,Dresses +875,45,Love,"Love this top!! +great colors and fits great +reasonably priced",5,1,1,General,Tops,Knits +129,41,Beautiful,"This sweater is so soft and warm and i love it with the matching leggings. i say it is true to size, however i ordered it a size up so that it covers the bottom/crotch area when i am wearing the leggings. normally wear an xs, ordered a small and it works well. it is very well made. i absolutely love it!",5,1,6,Initmates,Intimate,Sleep +129,44,,So comfortable and warm! so nice to lounge in a cold day and be cute!,5,1,4,Initmates,Intimate,Sleep +875,41,"If you have a large chest, step away form this one",Hangs terribly off the chest. tent-like. looks maternity. no thanks.,3,0,0,General,Tops,Knits +1011,58,Lovely,"Ordered online and love it,exchanging however from s to m 'cos the fit is so perfect and i want to allow for extra room at the festive season:)",5,1,0,General,Bottoms,Skirts +875,27,,"I found this top to run very large. i wear a medium in most retailer tops but often a large in other brands, i had to return this for a small. it was worth the effort however, extremely cute top that i can see wearing on its own or under a blazer for a night out.",5,1,1,General,Tops,Knits +1072,56,So pretty!,"This dress caught my eye in the store. it's lovely! i don't think i would've ordered it (it's hard to see the charm in the photo), but i tried it on because the colors are so pretty and the fabric has vintage look/feel, and i couldn't pass it up on sale. i usually wear a 6, but i bought an 8 because the saleswoman said the sleeves run small and there isn't any stretch in the fabric. both are true. i tried on both dresses in that size, because of color placement and to check on the sleeve size. b",4,1,0,General Petite,Dresses,Dresses +822,31,Cute top,"I saw the two star review and wanted to share my opinion. i saw this item that had been returned to a store and i love it. the fabric is a bit sheer and i think will require a nude tank underneath, but i think it's adorable. don't be scared away by the review below!",5,1,0,General,Tops,Blouses +129,39,Surprised by softness,"This sweater is actually so cute on, i had no idea, nut decided to try it on, since it was on sale. what a msitake, i had to actually buy it! + +the grey part is very soft and warm, the design part is nice and +flattering. nothing wrong with this sweeater! + +note: i a,m petite (5 foot 1.5 inches) and decided to buy the regular size for longer length...",5,1,0,Initmates,Intimate,Sleep +832,54,Cute top,"I ordered this top because it was 100 percent cotton and a cute design. when it arrived, i thought it was a cute, different top, uniquely designed. when i tried it on, it looked like a had several extra rolls due to the ruching and was very unflattering. it reminded me of the michelin man wearing extra tires and i am of a thin build so i did not like the perception of rolls throughout the bodice. unfortunately, it did not work for me. i wish retailer would include more cotton tops in their collect",2,0,4,General,Tops,Blouses +1072,26,Small up top,"I am returning this dress as it looks pretty matronly once it's on. the top was also very tight in the arms and chest (i am 5'9"", 140lbs, and 34d).",4,0,0,General Petite,Dresses,Dresses +129,63,Perfect sweater,"Love this sweater. bought this with the matching leggings. couldn't be more comfortable. cozy fabric. cute details. loving them both. please bring more of the same in different colors, patterns.",5,1,0,Initmates,Intimate,Sleep +418,46,Great summer pajama pants.,"I like having lightweight summer pajamas, and these are perfect. the print is so much cuter in person and the fabric is wonderfully silky. the pants themselves seemed to run a little bit small. i ordered them in xs and s and ended up keeping the small. overall a great purchase.",5,1,0,Initmates,Intimate,Sleep +129,46,Super comfy,"So cozy and warm, great for the cold nights!",5,1,0,Initmates,Intimate,Sleep +822,38,Unwearable,"I ordered this shirt online and just received it in the mail. the floral design is nice, but the mesh fabric in the back is low quality and cheapens the look of the shirt (especially considering the price). most disappointingly, the neck hole is almost as small as the arm holes. with no zipper or button opening i could not fit my head through the opening and, thus, could not even put the shirt on. needless to say, i will be returning it. i ordered the xs, so it is possible that larger sizes do n",2,0,9,General,Tops,Blouses +418,49,Cute polka dot pattern,I tried these on in the store because the pattern of dots caught my eye and it looked like a nice easy style to wear. the waist hits a bit low. i wasn't crazy about the rayon fabric and would prefer it in cotton. i decided to pass on it for now as i don't really need sleep pants; but i might be tempted if they go on sale.,4,1,1,Initmates,Intimate,Sleep +875,34,"Versatile, easy to wear top",I love the versatility of this top. i feel like i can wear it with anything to dress it up or down.,4,1,0,General,Tops,Knits +1173,68,Girly bra,"I am usually a 32a. i ended up with a 34 b based on sales assoc input and what was available. the 32 gave me back fat ( i do not have back fat) so she said the 34 would be better, it ran small etc. the 34 also fit ( had to be ordered and mailed) but it still gave me ""flab"" over the back band. comparing it to my other regular bras, i can see that the band has too thin fabric and rolls and has ""harder edges"" compared to wider , thicker band on my other bras. very pretty but i will be returning. sa",4,1,0,Initmates,Intimate,Intimates +129,43,Cozy for lounging,"Not my typical sleepwear, but glad that i took a chance, as it is super cozy for lounging. i was worried about covering my bottom (as i purchased the matching leggings), and ordered s based on prior reviews. ended up exchanging for xs as it was too oversized. could have purchased the petite probably as xs is still a bit long (5'2""), though fits like in photos.",4,1,0,Initmates,Intimate,Sleep +822,60,Peach delight,I found this blouse to be just a lovely spring and summer top. the netting in back adds interest and the dusky peach floral print is extremely pretty. the tiered layers add a slimming effect and it can be worn casual or for dress. it could even be worn in the fall with the right sweater. i just love it and feel so feminine when i wear it.,5,1,1,General,Tops,Blouses +941,46,New favorite thing!,"I had to write a review on this one because i am obsessed with it, it is the softest and yummiest sweater ever and i plan on wearing it constantly!",5,1,0,General,Tops,Sweaters +129,40,Oh so cozy!,This pullover is great for lounging! so warm and cozy!,5,1,0,Initmates,Intimate,Sleep +1072,28,Love the floral print,"I love this dress! i would definitely accessorize with a belt. my body type fits best in this style of dress because i don't have a big bust size, if you do i would try it on first. for being shorter, 5'3"", i love the length.",5,1,0,General Petite,Dresses,Dresses +1173,34,Cute but hard to put on,"Got this in the mail today and while the design is cute, it's not as soft and comfortable as i would like. the front clasp takes a bit of practice to get on and off. the straps are a bit thin and hurts a bit.",3,1,0,Initmates,Intimate,Intimates +1072,46,Adorable,"This multi-season dress fits beautifully, the colors are vibrant and the skirt has a nice weight, drape and swing to it. the skirt is slightly asymmetrical as some reviewers noted but it's probably not noticeable to anyone but the wearer.",5,1,0,General Petite,Dresses,Dresses +1083,64,Wow!,"I bought this dress to wear to a wedding and it is a stunner! really one of the most gorgeous dresses i've ever owned. it is very very fancy and really i'd say most appropriate for a black tie event, an evening wedding or a mother of the bride or groom. superb quality... just amazing! i have a few bryon lars dresses and this one seems to run about true to size. the others i own seem to run a little large.",5,1,3,General,Dresses,Dresses +875,36,Romantic top for fall,"I ordered the purple color and the first time i wore it, i received multiple compliments on it. i noticed in the prior reviews that it runs big so i ordered an extra small instead of my usual small. it fits well other than the two buttons at the top of the neck are very small and difficult to button. i'm tempted to order the red color.",5,1,0,General,Tops,Knits +1072,23,Great for all seasons,"The dress looks great both in winter and summer, either paired with tights and a light jacket or on its own. it runs true to size--was able to buy it online. the fabric is great for all day wear--doesn't wrinkle too much. + +the only con is that the darts over the breasts are a little pointy for my taste, but i still love the dress.",5,1,0,General Petite,Dresses,Dresses +875,71,Too loose and swingy,"Was not flattering on my body - i have a fuller figure, and this just made me look like i was pregnant.",3,0,1,General,Tops,Knits +129,37,Amazing!,"I got some nice things for christmas but this (along with the matching leggings) was hands down my absolute favorite gift! so stylish, so cozy, the perfect length to cover your bottom, the perfect fit (38dd and ordered an xl), love the pockets, i could go on and on. the perfect set to lounge around the house in. sleeves are a bit long so i had to fold them. when i say it is ""the perfect fit"" it is oversized (not huge) but it is roomy and that's how i like it as loungewear.",5,1,0,Initmates,Intimate,Sleep +1072,26,Beautiful,"I love this dress, although the darting is terrible. the colors are much richer in person, it's a beautiful dress for events and has a nice weight so it doesn't feel too flimsy (since it is not lined). i really love the length of the sleeves and the swish of the skirt. however, the darting makes your bust have two little triangles- i really wish i could reseam the darting as it's a bit strange looking.",4,1,0,General Petite,Dresses,Dresses +943,48,Perfect for fall,"Looks great with skinny jeans, leggings, trouser/ wide leg. good length for a flattering look. longer in front on me than on model.... so soft. doesn't cling. not overwhelming because the sleeves are skinny and drape is narrow.",5,1,1,General,Tops,Sweaters +1072,40,Gorgeous but ...,"This dress caught my eye online and i had to have it. when it arrived it was still just as pretty as i remembered. beautiful, vibrant colors and a unique oversized floral on a flirty, swishy fabric. unfortunately the cut was really strange. after reading several reviews i went with an xs, but i'm not sure a s would have solved all the fit problems i was having. while everything from the waist down fit perfectly, the arms were cut too tight, the chest was huge and yet i struggled to zip it up. an",3,1,0,General Petite,Dresses,Dresses +875,47,,"This is a beautiful top. i purchased this in the green/moss color. it's reminds me of a vintage looking blue-green. it fits generously, has more of a swing style to it. i love it! i think it is romantic and feminine. glad i made the purchase. simply beautiful.",5,1,5,General,Tops,Knits +828,29,Cute,"Very comfortable and flattering top, but runs a bit large. i am usually a medium and fit comfortably into the small. the blue stripes are not see through, however i saw the black motif in stores and it's definitely see through.",4,1,4,General,Tops,Blouses +1094,43,Pretty design,Very pretty design. hugs the body correctly. it's a little tight in the chest for me - i'm a 34c (large c) and i have some back chub so i'm using this fact to motivate me to get in shape for the spring. keeping the dress and hoping for a better fit in a few months.,5,1,31,General Petite,Dresses,Dresses +1094,44,,What a pleasant surprise! hugs in all the right places and a nice substantial material!,5,1,4,General Petite,Dresses,Dresses +1094,32,Killer dress,"I am 5'8"", about 140, athletic build. i purchased this dress for business meetings and such. i was worried the dress was going to be too low cut but i am small chested so i can wear lower cuts without exploding out of it. luckily this is the case here too! the dress has a professionally sexy look which i love. nice fabric, good quality. happy i bought it!",5,1,0,General Petite,Dresses,Dresses +1094,61,Can be flattering,"I purchased this dress off the reviews.unfortunately i have to return it. i expected it to fit as they said. i am 5'1'- 120 lbs. 35/b-c. i got the s petite. i could not even get this dress on over my chest. the waist was on top of my chest. +i really was disappointed . the material is so soft, i would have had to purchase a m in a regular to fit me. and it would have looked terrible on me. so, i would say, for a tall thin girl , yes , a short girl a no. and i am very petite.",4,1,1,General Petite,Dresses,Dresses +1094,35,Flattering cut,This dress has become a favorite in my rotation. the cut and print flatter my body and accentuate my waist. the print is subtle enough to pair with bold accessories.,5,1,0,General Petite,Dresses,Dresses +1022,60,Perfect jeans,"Perfect fit, great material, torn in just the right places. can't wait to see the stevie jeans for the fall esp. in corduroy!",5,1,1,General,Bottoms,Jeans +1094,32,Lovely dress,"I am 5'3"" 130lb and i bought this dress in a petite small which fit perfectly. the dress hugs my figure nicely. +unfortunately, i found that the neckline is cut a bit too low to wear to work, at least for my own comfort level, but i just wear a camisole underneath it for work and without for a date. i was really pleased with the purchase of the dress.",5,1,0,General Petite,Dresses,Dresses +992,25,3-season skirt!,"Adorable, well-made skirt! lined and very slimming. i had to size up b/c it runs a bit snug around the waist. however, it's worth it b/c this will match many long and short sleeve tops!",5,1,4,General,Bottoms,Skirts +828,30,"Cute fabric, but odd cut","I really wanted this shirt to work -- the fabric is really cool -- but sadly the cut was just way off. i'm 5'10"", and the shirt was much shorter on me than on the model, and the cut was just too wide under the armpits.",3,0,0,General,Tops,Blouses +1022,45,Great fit but not for a 45 year old,Loved the fit of these jeans and the fading but the ripping was too much for me at my age. i normally wear petite but since these are mid rise ankle just ordered in 27 regular. so the ripping was right at my knee and did not like that.,4,1,0,General,Bottoms,Jeans +992,39,Very cute,Love the asymmetrical hem. waist fit snugly as in perfectly. it ties in two spots with a hidden zipper as well. a little stiff in the fabric. classic colors but decided not to keep only because i didn't feel like we could wear it all year round. can't petite or 0p was great (115 lbs),5,1,0,General,Bottoms,Skirts +1094,39,Kind of sexy,"I ordered my usual xs petite, and it fit like a glove (115lbs, 5'1.5""). the v cut a little low, making this dress almost too sexy for work. cut is extremely flattering, and the coloring being so neutral is a step away from basic lbd. the length was pefect. material is stretchy, amking this slim fit comfortable.",4,1,4,General Petite,Dresses,Dresses +1094,32,Nice but stiff,"This dress is very pretty in person. it fits true to size and is very figure flattering. one other reviewer mentioned it is a bit low cut, but i think that can be resolved by wearing a cami underneath to cover cleavage. my only gripe with this dress is that it's a little rough and stiff feeling. i am really sensitive to that and only buy things that are velvety soft. it probably works for most people but not for me, so had to go back.",3,0,0,General Petite,Dresses,Dresses +1028,52,Wonderful velvet black jeans!,Great pants! i love the style and fit! would highly recommend!,5,1,2,General,Bottoms,Jeans +828,26,"Great top, but needs undershirt","I love this top! yes, it is quite transparent, but just needs a light colored cami (i like the reversible scoop and v-neck tanks at retailer)! it's incredibly soft and light for summer time. the black motif is more like a slate gray contemporary pattern. i also really like the sewn in v-neck line. it gives the shirt a more professional touch. i'll be wearing it for work with a dark blue blazer.",5,1,0,General,Tops,Blouses +517,37,Great fitted top,I'm so sick of all workout tops being baggy. they look sloppy on my frame. this top is ultra soft and fits great! the black/white one looks more heathered grey in person. i ordered an xs as all tops lately are just huge on me. i should be a small and i will be returning for that proper size.,5,1,0,Initmates,Intimate,Lounge +1094,42,Great dress but cut too low,"Dress caught my eye on the rack so i thought i'd try it on. the dress has lovely blue stripes (hard to discern in the online photo) which makes it a great year-round piece. however, like others have commented, it is too low to wear to work. will consider alternations to close the v-neck if the dress is marked down beyond its current sale price.",3,0,1,General Petite,Dresses,Dresses +935,63,,This is a great sweater/poncho. is a little short so i wear a t shirt underneath. great color and looks good with black pants or skinny jeans.,5,1,0,General,Tops,Sweaters +1094,27,Versatile dress,I love this dress! it fits me so well and is extremely comfortable. i can't wait until it gets a little warmer so i can wear it with a trench and cute flats or heeled sandals.,5,1,2,General Petite,Dresses,Dresses +828,59,"Travel, weekends, work, go anywhere top.","I am 34dd. bought sz med and have plenty of room up top. the black motif is really a dark, purple/blue. slightly sheer. the length on the med is 251/4 from bottom of collar (the collar adds 1 1/4"") the length does not cover my bum like the model , covers 2/3rds, nor does it appear as long in front.",4,1,0,General,Tops,Blouses +1094,55,Flattering versatile travel piece,"Surprisingly versatile and figure flattering without being too clingy and revealing like so many ""bandage"" dresses. the navy color softens the stripes. great piece for travel as it is light and does not wrinkle. i am 5'7"" and 125 lbs. with a smaller chest and curvy hips. the small fits perfectly.",5,1,0,General,Dresses,Dresses +828,59,Could have been executed better,"First, i absolutely love cloth & stone. but lately i'm finding some of the styles are going in a direction that just doesn't fit my style. that's ok because they still have some good basics. + + +what i mean is the cut. a lot of their pieces are super long in the back and super short in the front (ie their slip dress they have out right now). this particular tank is like that, although this one is borderline. the sides cut up a little too high for my tastes and i can't help but think i'm wearin",3,0,31,General,Tops,Blouses +860,47,"Nice top, awful fabric","The top fits nice, but after one wear (didn't even washed it) the fabric was all fuzzy. would not recommend it.",2,0,1,General Petite,Tops,Knits +1094,47,,,5,1,0,General,Dresses,Dresses +1028,50,Amazing!,Beautiful fit and true to size. highly recommend. they are long and you will need to have them hemmed but they are soft and feel amazing on.,5,1,2,General,Bottoms,Jeans +860,32,"Do love it, however:","Tried the xs on in store from an online return, loved the tailoring but the shoulder seams were a bit tight and i'm usually a s in most tops. ordered the s and while it was flowy like some mentioned, it was still tailored on top & flattering. also versatile - wore it with wide leg denim & wedges as well as cut off shorts & boots. my only complaint is as the others mentioned, the almost immediate pilling even before the wash. sad about it because i love it. will keep and give a little extra tlc.",4,1,0,General Petite,Tops,Knits +1100,44,Navy oompa loompa,"Okay, i love the blouse this brand has in the same material, so i thought i'd delight in this dress. i am a 5'7"" hourglass but have a longer torso. i ordered the large in this, usually a 10 or 12 fits me.. but the waist hit much higher than my natural waist, and yet it was somewhat tight and completely rigid. the bust area was a little loose, and i'm a 36c. then the bottom flared out in sort of a flower fairy poof above my knees which reminded me of a navy blue oompa loompa dress.. and i love my",3,0,3,General,Dresses,Dresses +992,48,Very nice!,"Love this skirt, beautiful fabric and lined. looks great with a tailored jean jacket by pilcro or the window pain patterned retailer cartonnier jacket. i chose the size 8 though a little snug in the waist it fit better than the size 10. i am 150 lbs and 5'4 inches and curvy with small waist but curvy hips with a tush so this cut is perfect for my shape. i love the asymmetrical design with how the skirt will partial zip and the fabric attachment underneath with hidden button. love the edgy look. so",5,1,1,General,Bottoms,Skirts +1094,44,Just wow!,I am usually drawn to more color but the vertical and horizontal lines of this dress made me curious. the fit is absolutely incredible! i like the fact that it is very easy to put on without any zippers or buttons as well. it hugs your body in all the right places. i had no issue with the dress riding up and the way the designer placed the lines makes this one even more flattering. gorgeous dress!!,5,1,5,General,Dresses,Dresses +1094,55,Nice dress but cut too low,"I love the fabric of this dress and the way it fits, but it is too low for me i thought about putting a cami under it, but that would ruin the look of the dress. just an inch or so higher would have been much better. as much as i like the design and fit, i will be returning this dress.",3,1,7,General,Dresses,Dresses +1094,56,Flattering but very tight in the chest,"This dress seems quite high quality and is wonderfully designed, except in the chest. the wrap style hugs in all the right places but the chest. i'm slightly large chested (34c/d) but can usually wear a size small or size 4 in dresses and tops (5'5"", 122 lbs). the small in this dress was great everywhere else, but i couldn't breathe and it totally flattened out my chest. also, it is quite low cut, so another mark against it for anyone with a semi-large bust. couldn't wear it to work that reason",3,0,0,General,Dresses,Dresses +825,50,Gorgeous top! but difficult zipper...,"I love this top!!!! the design, quality, and look are all insanely gorgeous. i got this top during the 20% off tops promo, which helped so much with the cost, and i was trying to use up a store credit i had on something of high quality. (after going through a whirlwind of exchanges that resulted in much disappointment.) i couldn't be more thrilled with this choice! it is so flattering on, beautiful color and cut. the only complaint i have is slightly minor, and it's in relation to the hidden bac",5,1,2,General,Tops,Blouses +992,43,"Too small, too complicated","I agree with the other reviewer who said there was too much hardware and such. this really does have a lot going on. i usually wear a 4 in skirts, and based on reviews, went up one size. it still saw way up near my chest - i think even an 8 would be too small! it's sooooo tiny at the waist. probably buy 2 sizes, 2 and 3 sizes up from your own. also, the skirt flares super wide at the sides, it doesn't sit the way in the photo or maybe the model is holding it down with her hand. it's like a skirt",1,0,0,General,Bottoms,Skirts +860,42,,,4,1,0,General Petite,Tops,Knits +828,39,Nice summer top,"I bought the color ""black motif""although the markings look more dark purple and are similar to tie dyed coloring which is one of the things i love about this top. the fabric is so soft and i love the way the neckline falls. it is slightly sheer so may want to wear camisole underneath. personally i'm fine without it. looks great with jeans. i also tried it on in the ""blue motif"" which is the stripe version but found nothing special about that one.",5,1,2,General,Tops,Blouses +992,42,Buckles and zippers and buttons and straps,"I tried this on in the store as soon as i saw it because of it's ease, modern look, and my obsession with stripes and wrap skirts. i am between an 8 and 10 in retailer most of the time (although sizing has been quite erratic in the last couple of years), but picked up a 10 to ensure an easy fit. was so surprised to find you have to not only buckle (cute detail) but button and zip this ""easy"" skirt, and with all that there were also straps that buttoned that i believe are there to keep it from flyi",3,1,9,General,Bottoms,Skirts +1094,36,Makes you skinny,If you have an hourglass figure this dress accentuates your curves. i do need to wear a tank underneath as dress is low cut.,5,1,0,General,Dresses,Dresses +1100,31,Surpring dress,"I liked the understated colors of this dress, so i decided to try it on. i did not expect it to fit so well! i'm 5'3"" with a large bust and large hips. the dress was super slimming and flattering, it skimmed my figure as if it was made for me. the only thing i'd have to fix is the shoulder straps being just a smidge too long, but i'm used to that with my height. the straps are positioned perfectly, my bra straps didn't even show. the material is very thin and light.",5,1,3,General,Dresses,Dresses +1094,38,Not for the large at bust,"First off, i love the dress! i love anything that you can throw on for a monday and be ready in 20 minutes. the material is good but the compartments for the bust do not hold a d+cup. i ordered the 6 and it fit perfectly except in the bust. easy fix, a white cami, the sale price makes that necessity acceptable. it's a keeper.",5,1,0,General,Dresses,Dresses +1022,59,Another great pair of stevies!,"Love these! i'm a big fan of ag stevie jeans and these are no exception. the mid rise is terrific and the distressing is cute without being crazy. i like how the holes are not at the knees, which can be annoying when bending your legs. i would love to see these offered in a darker rinse and also in a cropped length. fit is perfect on these - fun and flattering! keep the stevies coming retailer!",5,1,2,General,Bottoms,Jeans +964,61,Amazing vest,"I fell in love with this vest the minute i saw it on the hanger. it runs true to size and the material is excellent quality . it looks great with jeans and a tee and also something dressier. i wore it over a navy blue wide-leg jumpsuit, and it looked truly amazing! i received so many compliments! i also purchased the lace tie up top that it is featured with and can't wait for that to come in.",5,1,0,General,Jackets,Jackets +835,75,Bought for the color,"Color is beautiful but looks like a maternity top on. i found i could tuck it in slacks and it looked fine. now for the cons: it is supposed to be peacock design but i had only one peacock,under my arm, which could be seen, i guess, if i waved. the rest were parts of the bird. i would love to have the one in the photos! next, who thought cheap white buttons on the back was a good idea? if i had gotten a nice patterned top, i would have replaced the buttons. blouses that i like never seem to b",3,0,1,General,Tops,Blouses +835,60,Stunning!!,"This is a beautiful color top! it can be dressy or casual but the design is spectacular! +i paired it with one of the new retailer pencil skirts and everyone in the store looked it! +i wish they had other colors!!!!!!",5,1,0,General,Tops,Blouses +964,27,Love it!,"Love this vest- it's so chic and pairs with so much. i have it in the army green and it's prefect to wear over a romper or white jeans and top. it's great. i am about 5'2"" and an typically a small top- the small was much to big but the xs was perfect. i would consider trying to size down if you are uncertain. i am very happy with my purchase!",5,1,0,General,Jackets,Jackets +1047,37,Ripped on first day,Perfect summer pants until i wanted to pet my dog and they ripped first time wearing them.,3,0,1,General Petite,Bottoms,Pants +1047,55,Comfy pants,These pants fit great!! i ordered my normal medium and they fit perfectly. i was worried that they may look too much like pajamas and lot look right with my stomach but no issues there. i think i will get a lot of use out of these!,5,1,2,General Petite,Bottoms,Pants +964,54,Great style,"I saw this in my local retailer styled with a tank top underneath and i fell in love and bought the combo right away. it is a vest, so it's not meant to be fitted, so i think sizing down is fine. i'm usually an xs/s in tops, i went with the xs in this, and j still get that relaxed look which is nice. this vest is great, very versatile, simple yet adds great style. it was a bit of a splurge for me but i'm happy i added it to my closet!",4,1,0,General,Jackets,Jackets +964,56,,"I love this vest, bought it in green and want to order white. its very flattering, and i wore it with a black tank top, ripped faded stevie cropped jeans, and gold gladiators. i would like to mention the care. i dripped something on the lapel, so i tried cleaning it off with a wet towel. it made a lighter mark, so i washed as recommended in cold water on gentle in the machine. i hung it to dry, and it dried stiff and a little wrinkled so i threw it in the dryer to soften it up. it lightened up a",5,1,10,General,Jackets,Jackets +835,56,Gorgeous color,"I tried this on in my usual size and it was tight through the chest because of the lining. i would have preferred to wear a cami beneath and then it may have worked. the color and pattern are gorgeous, the fabric feels a bit weird, kind of dry and rough? would have liked to see this in a longer length, and more tapered. it is an absolute pregnant top. so sad its so pretty!",3,1,0,General,Tops,Blouses +835,32,This shirt got me a job,Wore it to an interview. the color is fantastic. it's beautiful and artsy. highly recommend!,5,1,0,General,Tops,Blouses +835,38,Obsessed!,"I fell in love with this in the store. i am petite at 5'3"" and 110 lbs and i went with the regular size 0. i agree with another reviewer that the petite sizing would have been too short. the color is rich, the quality is fabulous and i love the style. it is not fitted, but i also found that it wasn't too wide either. if you're looking for a fitted top, this wouldn't be the one. but if you love a well-styled top with a bit of volume that you can rock with a pair of skinnies to balance it out, the",5,1,1,General,Tops,Blouses +844,46,Perfect fit for xl,"I ordered both colors in size xl and they're each now favorite purchases. the fit is true to size--it matches the photos. the orange/white/brown/red combo works great with the orange version of the indra tassel necklace. + +the tops are sheer so i wear a tank underneath. the green floral version will have some variations because of pattern placement. both are so unique & charming! i've been pairing them with different retailer cardigans & necklaces. they've washed well too--in a mesh bag on gentle &",5,1,0,General,Tops,Blouses +132,37,Love it but....,Love everything about it but had to get a size bigger to be long an off/ to short for a mom. if i was 20 would be fine.,4,1,0,General,Bottoms,Shorts +1047,39,,"I am 5'2"" and 115lbs......ordered the blue motif in small petite. they were not only too big overall but were way too long. i had to roll them up several times to get the right length. because of fabric design these would definitely have to be hemmed. i had to check tag because i thought for sure i got sent a regular length but they were petite. not sure if they are worth trying in a smaller size..... pants were really comfy but maybe too pajama like for my taste.",3,0,2,General Petite,Bottoms,Pants +993,39,Almost love,"But the back of it, by the waist, bunches just a tiny bit. if i get bigger, it will be too long. but i love the skirt, it is flattering and cute. not itchy for me even if the title says wool. i ordered the 00p and the length is pretty much as pictured, just below the knee in front. the waist is snug, bigger it would fall more on my hips (hence the too long comment earlier. (115 lbs, 26-27 in waist, short legs...)",4,1,0,General Petite,Bottoms,Skirts +964,39,Surprised i liked this,"I saw a stylist wearing a similar piece from a few seasons ago and commented that i liked it on her. i was told they had a different version (a few actually) and i decided to try it on. it actually is pretty flattering, i had flared jeans on but also could see it with a dress. i left it open, as pictured, tied one button, and also played with the neck and tried a cowl... all very nice. + +i debated getting my usual xs petite, but hey, they don't make it in petite, and the stylist thought the loo",5,1,0,General,Jackets,Jackets +1047,51,,These are a great casual workday pant. the loose fit and light weight material makes it a great summer option.,5,1,0,General Petite,Bottoms,Pants +132,45,Amazing!,"I went out on a limb ordering this romper. it's not really in my ""wheelhouse"" the whole romper thing. but it was a home run! i was afraid it might look too young and that i couldn't ""pull it off,"" but the long sleeves and overall style was perfect. and my twenty something nieces were obsessed with it as well. as far as fit, i'm 5'7"" 134lbs and ordered a size 4. i have a long torso and was concerned because some people said it ran short there, but i didn't have any trouble with that. i just took",5,1,0,General,Bottoms,Shorts +844,49,Beautiful,I saw both of these blouses several months earlier and anxiously waited for them to go on sale. definitely worth the wait. the quality and designs are superb true to size,5,1,0,General,Tops,Blouses +835,40,Beautiful detail,"I have the white lemon lace shirt and love it so i was excited to see it in a color well suited for fall. the peacock pattern on the blouse i received is perfect and the pattern is well placed. i do love this one as much as the lemon blouse, however, the color is not the same as it appears online. it is more of a jade green color, and although it's pretty, i would have preferred it to look more of a blue color. i'm keeping it, as it is still an unusual and elegant blouse that's cute with dark sk",4,1,3,General,Tops,Blouses +132,33,,"I love this so so much. i'm 5'1"" with a short torso and post baby 34d boobs. the 6 petite is perfect. it's the first romper i found that fits me in the crotch, height, and leg area. so excited to wear this!",5,1,0,General,Bottoms,Shorts +844,49,,"The colors in the green shirt are beautiful, however the cut looked like a maternity top on me. i'm 5'6"" 120#, not very busty. must try it on to match the right body type; i'm thinking very tall, wispy , less curves...",3,0,0,General,Tops,Blouses +1047,62,"Very beautiful, but runs large","I ordered these in the neutral and the fabric and construction are everything i hoped they would be. they are a lovely light weight rayon that i think will be very comfortable in hot weather. the printed fabric is really pretty. + +sadly, they seem to run on the large size. i wear size 14 pants, but the xl was too baggy in the legs and a little too large in the waist. i am sending them back and getting the smaller size.",5,1,30,General Petite,Bottoms,Pants +993,41,Sizing is off?,"I don't if it is me, but usually i am a solid size 6, occasionally an 8. i had to size up to a 10! the wool is very light, and while it is a weird texture, it isn't scratchy. i liked how the skirt was styled at the store...looks better than it does in the photos online.",4,1,0,General Petite,Bottoms,Skirts +964,33,"Great quality, durable and great fit","I bought this in green and i absolutely love it! the quality of material is very fantastic, a durable fabric that will hold up well over time. its a good quality too, so can be dressed up somewhat, and also does well as a very casual piece. love it!",5,1,0,General,Jackets,Jackets +1047,43,Purrrfect pants!,Another success! so comfortable and stylish for spring and summer. very lightweight yet not sheer. design is even more appealing in person. a must have for your closet.,5,1,2,General Petite,Bottoms,Pants +835,49,Stunning color,Love this blouse! the color is really unique and love the back button detail. i dont think the white buttons look cheap at all as another person pointed out - they add a lot to an already beautiful top. can't wait to wear it!,5,1,1,General,Tops,Blouses +964,35,,Love!!!! i got the green and it goes with so much!,5,1,1,General,Jackets,Jackets +835,38,Beautiful blouse but too boxy/swingy,"The blouse is lovely - i loved the lace, color (though just as other reviewers mentioned its a darker blue closer to a teal color) and edging. i am very petite, for reference, 5'2"", 24 waist and 30e and normally wear a 00 or 00p. the 00 was still too wide for me around the waist/bottom and had too much of a swingy effect - it made me look like i was pregnant so i sadly returned. i wish this had more of a fitted look to it.",3,0,1,General,Tops,Blouses +1047,42,Perfect jogger!,Love these pants. bought both the navy and the white. they are comfortable and a perfect fit. the xs is just right. i'm normally a 26 in denim and i was fearful these would either be to small in an xs or too big in a small but the smaller size is just right. soft and silky. they fall in a lovely way.,5,1,2,General Petite,Bottoms,Pants +1047,37,Not for me,"I bought these in the blue. i sized down, as other reviewers mentioned, going for an xs. i'm 5'5"" and about 130lbs and would usually buy a small. at 5'5"" the length was too long for me, hitting me below my ankles, rather than how shown on the model. strike 1. then, i felt the material was pretty thin - strike 2. and lastly, they hung a little funny on me, rather than being a bit loose like jogging pants should be - strike 3. despite the great sale price, these went back!",3,1,1,General Petite,Bottoms,Pants +835,38,"Gorgeous blouse, stunning color and pattern","This is a gorgeous high quality blouse. the color is stunning in person; i don't have anything like this color in my wardrobe. i'm an xl in retailer tops, and purchased this blouse in a 16. i am busty but the top still fit well. i have large upper arms but the sleeves fit fine; i wish they were a bit looser but that is my personal preference and probably doesn't apply to most people. if you're very thin and not busty you might be able to size down, but i'm honestly just not sure. i'm happy to say",5,1,7,General,Tops,Blouses +132,37,,,5,1,0,General,Bottoms,Shorts +1047,54,,"Hi, i bought these in both colors. the material is very nice. for me the only part of the pants that stretched was the waistband. sadly i had to return them.",5,1,1,General Petite,Bottoms,Pants +1047,63,,"Purchased these in both colors today. (great sale price.) +hei hei is my favorite brand of pants, especially their pull on prints. +i am always a medium, these ran slightly large in the waist and stomach. i tried on a few mediums and luckily found the smallest in each. +the beige motif is beautiful and can really be dressed up. the material is soft the color scheme is gorgeous. they have a lovely silky feel to them. i always wear an over top so the little bit largeness won't bother me. being on",5,1,1,General Petite,Bottoms,Pants +1047,66,Nice pants,"This is my second pair of joggers from retailer and since this purchase, i have bought another pair. it seems that they are just a great fit for my body, long and lean, but not extreme. someone said they run large, but my experience is true to size. these pants can be very casual around the house, out for errands or dressed up and worn for casual evenings out. i love that the elastic waist isn't bunchee. they hang very straight and pretty, just like in this picture. the fabric has some text",5,1,1,General Petite,Bottoms,Pants +872,34,"Love the shirt, but arm holes are a bit big","I love the shirt and it runs true to size everywhere but the arm holes. i bought a size small and the length was great, the fit was great, but the arm holes were gappy and big. i had to return it and was bummed because i loved it otherwise.",2,1,8,General Petite,Tops,Knits +1025,39,Perfect fit,"Got these in 28 and they fit like a dream. the best medium wash, so versatile for all seasons. i love the rise because it sucks in my pooch. sometimes i wear 29 or 28 in paige. i have a wide waist, slim hips, flat bum--these jeans help me look shapelier.",5,1,0,General,Bottoms,Jeans +1047,37,,Love love love these pants!!! super comfortable and fit true to size.,5,1,0,General Petite,Bottoms,Pants +872,26,Awesome top,"I love love this top and bought it in both colors. it runs a tad big but fits me well. both l and xl fit me well, but the xl was longer so i have one in each size. i really like this top. it looks good, goes well with most pants especially blue, and is very comfortable. i am very happy with my purchase.",4,1,0,General Petite,Tops,Knits +844,26,Too sheer,"I bought both colors based on the reviews and really like the prints. however, they are too sheer. i don't want to wear a tank top, but you have to with these tops since they are so sheer. i can also see the fabric tearing easily, it is too delicate. i sent both colors back. what a waste because the prints and colors are good. these tops are also not for busty ladies. i have a big bust, and the top part didn't cover my entire bust and was awkward because the division between the fabrics would st",2,0,2,General,Tops,Blouses +1028,41,Great jean for 'boyfriend' fit,"I always love the arielle jeans. every color seems to be slightly different in the fit, but they are always slim enough in the leg and thigh to be stylish without being too restricting. to echo the other reviews, the pockets are a little low on these compared to other arielle cut jeans that i already own. i have a fairly straight, athletic shaped body and went with my 'larger' size to wear them as more of a boyfriend fit. the fabric is a very soft and forgiving denim and the dark color can be dr",5,1,0,General,Bottoms,Jeans +1047,58,Bought the neutral today,"Bought these today at the denver store (nice peeps at cc!). anyway, i feel in love. the style is simple, free and easy for summer and the neutral color is lovely in person. so glad i bought these...now i have something to wear to work tomorrow :)!",4,1,1,General Petite,Bottoms,Pants +132,62,Beware when washing,"Wore this romper 1x and after washing, the hem on one of the shorts/legs completely unraveled. if i want to ever wear it again, i will have to bring it to a tailor to get fixed. unacceptable for a $200 product. cute design and good fit but questionable quality.",3,0,0,General,Bottoms,Shorts +1110,30,Pijamas or dress?,"The fabric is too sheer, also looks like sleepwear. just not my thing.",2,0,0,General,Dresses,Dresses +176,34,"Comfy, well made, not crazy about the fit","Maybe it's just that it's a bath robe, but i'm not crazy about how this falls. it is very soft, cozy, and cute, though.",3,1,0,Initmates,Intimate,Sleep +1078,34,Perfect sweater dress to brighten up winter.,"This dress is really fun and easy to wear all winter. the colors are really easy to pair and like the last reviewer mentioned, i love the sheer sleeves. i was very worried about the comfort of the fabric because most sweater dresses always fail. this dress is extremely comfortable to wear. it is not scratchy at all. it is soft and comfortable for winter even indoors with the building's heat blasting away. the dress will fit the size you normally wear, however it may show lumps and bumps. i would",4,1,18,General Petite,Dresses,Dresses +248,38,"A supportive, comfy bralette? actually, yes.","I'm a 32dd, so i wouldn't normally wear a bralette out of the house (not enough support). this bralette is actually very supportive and comfortable. i'm probably going to get at least one more. for reference, i'm a 32dd (small back, big boobs) and a small fit me extremely well.",5,1,0,Initmates,Intimate,Intimates +1110,35,Lightweight!,"When this piece arrived, i was surprised at how weightless it was. there are 2 layers to it, an underlayer and then a very fine silk toplayer together, the ensemble is incredibly light and it is almost as though i feel like i am not wearing anything at all. to take it home, i did have to kind of stuff it in my bag, and this caused some considerable wrinkles which are very difficult to get out (super stubborn( but i am pleased with the look of the garment. usually, i like the look of a dress that",5,1,9,General,Dresses,Dresses +1078,48,Lovely sweater dress,"This sweater dress is beautifully unique in that it has lovely sheer sleeves to dress it up, but it's made of a soft sweater material that feels comfortable, warm and wintry at the same time. it does run true to size, i ordered a small (5'5"" and 118 lbs). knitted and knotted has come up with some killer sweater dresses this season!!!",5,1,1,General Petite,Dresses,Dresses +1110,39,What a controversial piece,"I have to say being a silk lover, decision was hard to make. the quality is phenomenal. i do agree to a reviewer that said it's pj like. i tried it with belt, didn't help much with the look somehow. it just felt empty. my daughter who i usually turn for opinions said ""ewww, grandma""... i know, truth hurts. + +i can't exchange for a smaller size either because the fabric is not stretchy and i'm afraid the extra small would confine my arm movement. on top of that, the background is more peachy tha",3,1,1,General,Dresses,Dresses +1110,53,Unique dress,"This ia very pretty dress. however, it is a unique design. i like the design of the dress, but i can see where some may not. i can't see a younger person wearing this. it is more for an older woman. the dress is so soft, does wrinkle easily, but just a beautiful pattern and comfortable. i can see some of my friends thinking this is too much like a nightgown, but i really love this dress!",4,1,0,General,Dresses,Dresses +1110,56,Pretty fabric but needs serious pressing,"This dress arrived today in such a crumpled and wrinkled state that i was reluctant to even try it on. it is on the large size, but fine if you are looking for a very flowing look. longer at the front than shown in the photograph and i am 5'9"". i am sending it back. it is a pretty fabric, although shinier than expected. i am just not prepared to spend so much time pressing and steam ironing this item every time i want to wear it.",3,0,77,General,Dresses,Dresses +873,39,Okay,"I do think this blazer is comfortable and looks decently cute, but wasn't sure about the fabric. hte coloring is fun too. i decided to pass on it only because of the previous review regarding shedding.",3,1,0,General,Tops,Knits +1110,28,Frumpy and clingy,"The fabric clung to my body i expected it to flow and be breezy, it was too flimsy, the arms were too wide and overall for $100 this dress didn't cut the mustard. i'm 5'7"" 135 the dress was long enough, just didn't flow very well.",2,0,1,General,Dresses,Dresses +176,27,Softest robe,"This robe is warm, soft and i like how long it is! it's perfect length. my favorite thing to wear around the house!",5,1,1,Initmates,Intimate,Sleep +873,24,Nice jacket,This jacket isn't as structures as i thought but it is very comfortable. runs true to size and feels nice. i am looking forward to wearing this in the fall,4,1,0,General,Tops,Knits +1110,34,,,4,1,0,General,Dresses,Dresses +873,54,,"This is such a soft, comfortable and well fitting blazer. i love the structured cut of a material that is usually used in more casual designs. i look forward to wearing it very often in the fall. so glad i purchased this one!",5,1,0,General,Tops,Knits +1002,53,"Upholstery material, dry clean only! runs small.","First of all, this skirt is as cute on as it is in the picture. very flattering. i am a curvy gal on the bottom and this is flattering. that being said, it runs small. i purchased a large which is my usual size, and i need another inch or two all over to make it work. part of the problem is the material. it is a very heavy, durable upholstery like material. there is absolutely no give to this. it is a very stiff material as well -- more what i would expect on a sofa than on my skirt. the skirt c",2,0,1,General,Bottoms,Skirts +873,56,So fun to wear,"I absolutely love this jacket! i bought it and wore it to work to next day, and received tons of compliments! it is easy to move in as i have ark that required stretching and bending alot. i am 5 5 119 pounds and xs fit a well.",5,1,2,General,Tops,Knits +1099,49,Great summer dress,"Cute, cool dress for hot summer days. very roomy. has pockets!",5,1,0,General Petite,Dresses,Dresses +873,40,Nice jacket to put outfit together,I bought this for the office and received many compliments about it. it puts the outfit together just right and the material is very comfortable. it fits my need for comfortable clothing that still looks good enough for a business setting. this jacket is more comfortable (almost slouchy) than it is structured.,4,1,0,General,Tops,Knits +1078,58,Classic,"A wardrobe addition to dress up, or dress down. +the sheer sleeves are a nice detail... + +(i'm 5'6"", and the length hits me at the knee.)",5,1,0,General,Dresses,Dresses +873,59,,"I have not had any sort of shedding problem with this jacket. i have worn it open with black jeans and a long necklace, and buttoned with a scarf and jeans. it is really cute! i am 5'4"" and 115 lbs, and i got the small. i wouldn't hesitate, especially since it is now on sale.",5,1,1,General,Tops,Knits +1078,26,Slightly disagree with others,"I wore this dress for christmas and agree that it is beautiful (i received many compliments), while i agree that this sweater dress is beautiful, i'm a little worried about the quality. after just a day of wearing it, it seemed to have lost it's shape. the bottom hem of the dress looked stretched out and it sagged slightly all over. i'm 5'7"", 135lbs and my typical size is a m/4 and the dress fit perfectly initially, but not so much by christmas dinner. i'm not giving up on it because i was still",3,1,6,General,Dresses,Dresses +1134,62,,"I'm 5'10"" and felt that it was just too short. otherwise - love it!",4,1,0,General,Jackets,Outerwear +248,49,Pretty but not perfect,"This is pretty and provides coverage with a bit of support for wearing around the house. i'm a 34b so i ordered the small- it still had room in it so i tightened the straps and used the tightest hooks on the back, and that makes it fit ok. i bought it just to wear at home since i was not expecting a great deal of support or shaping, and while it feels ok it is not super-comfy- it's a bit scratchy around the edges. i was going to buy another color if i loved this, but as it is i will keep the one",3,1,0,Initmates,Intimate,Intimates +873,34,So-so,"I'm not in love with this, but the husband thinks it looks cute and the sale price isn't bad so i'm keeping it. i got it in s, and am usually an xs or s in retailer tops (34b, 26 inch waist, 120lbs). if i had gone with xs it probably would've been too tight in the shoulders. however i could be 6 months pregnant and you wouldn't know it. it is very boxy in the torso, and i realize the design is for it to be flowy, as the back is partially split. but it looks relatively fitted on the model, which is",3,0,2,General,Tops,Knits +1078,45,Beautiful dress,"This dress is absolutely beautiful! the grey is more vibrant in real life than the picture suggests and the maroon red is perfect for fall and winter. seriously, this is not your typical sweater dress; the sheer sleeves elevate it to a whole other level. it comes to just above the knee on my 5'7"" frame. it is a bit looser on top (i'm 32c) and more form-fitting around the hips but not tight or clingy. and so comfortable! i am 122 lbs and took my usual small so i think it runs true to size. the sl",5,1,23,General,Dresses,Dresses +873,69,Great jacket,"Love the lines of this tweed look jacket. pockets are a definite plus, as is the soft pleat in the back. this is a good piece to transition from winter to spring. it updates your jeans and soft t-shirt look.",5,1,0,General,Tops,Knits +1110,47,Silky and sweet,"The ""peachy"" color read as pretty gold on me, which i think was good for my pale skin and sandy hair. the lavender accent color is also very nice. forgiving fit, elegant fabric, pretty print, respectable hemline, super flattering neckline, love the pockets... all in all, i think this dress is a nice choice for day events.",4,1,2,General,Dresses,Dresses +1110,34,Refreshing green,"This dress is even better in person. the base color of the fabric is a very light peach, and very lovely. as you can see from the photos, the green floral pattern running up the front of the dress varies slightly from dress to dress, but i found the front on mine was very similar to the 1st photo. the bright green flowers are a light mint green, which plays beautifully with the light peach. there are more details in the print to discover in person, which is a nice bonus. the silk is not stiff li",5,1,61,General,Dresses,Dresses +873,28,Wanted to love it....!,"I really wanted to love this blazer...i've even tried it on several times hoping it would look better the next time around. (spoiler: it didn't :( ). overall, it makes me look pretty frumpy and not put together. i really love saturday/sunday brand and was hoping for a nice comfy blazer to wear to work. will be returning instead.",2,0,5,General,Tops,Knits +1078,47,Quality and look make it a winner,"Nice quality, soft fabric, sleeves definitely make a unique statement. the fit worked for me, although it could have more room in hips (for my hourglass figure). got m, size l was way too big. i am 34d, but the dress can definitely accomodate bigger chest. the color are my favorites in this season. +wear it to stand out!",5,1,1,General,Dresses,Dresses +930,41,Wanted to love this,"It really is a beautiful sweater. the material is super soft and feels luxurious. unfortunately, it just looked too bulky on me and accentuated my width. maybe if i were taller, i could pull it off.",3,1,0,General,Tops,Sweaters +176,37,Not a great fit,This one pulled across my shoulders and neck in a creepy way. did not like the way that it fit. returned,2,0,0,Initmates,Intimate,Sleep +873,55,Versatile,"I love this piece, it fits well and is comfortable. you can dress it up or be more casual. i have received many compliments already and it goes with many of my outfits.",4,1,0,General,Tops,Knits +1110,53,Ethereal and lovely,"I wore this dress to nyc on a date. it was perfect...light, flowy, and lovely. the peach and green combination is really pretty, and i love the hemline, which is longer in the back than in the front. i can only say one thing: as i was walking down the street with my boyfriend, a total stranger (and not a crazy person) came up to us and told us we looked beautiful. enough said.",5,1,0,General,Dresses,Dresses +1110,43,Stunning and well-made,"I waited patiently for this dress to arrive in my local retailer store and loved the design immediately (the green motif). as others noted, it is on the flowly side. for this reason, i went with a size s. i wore it on easter and can't wait to wear it again. i did not have any issues with wrinkling or putting on the dress. it is a simple over the head, no fuss kind of dress. you get to be supremely comfortable and look like a goddess. this is one of those retailer pieces that you will have for years",5,1,6,General,Dresses,Dresses +873,24,,,1,0,0,General,Tops,Knits +1110,34,"Beautiful fabric, frumpy looking on me, however","I want to say that i love this fabric design, combining some of my favorite colors -- greens and neutrals. however, this just didn't work for me: +_______ +pros: +- it does have a nice flow as others stated. +- pockets are a surprise touch for a silk dress. +- the slip inside is detachable. +_______ +cons: +- as another stated, lots of wrinkles. it's the nature of silk unfortunately, which means more work for me. +- length is too short in front for my personal liking. trend of these high-low he",3,1,7,General,Dresses,Dresses +1110,44,,,5,1,0,General,Dresses,Dresses +1078,39,Lovely long loose,"I wanted to buy my usual mp but was sold out and so was normal m. i got the regular l and it fits like a shift dress and does not enhance my curves. it looks like a luxurious knitted sack but i mean that in a good way. it is very comfortable, does not cling, and reaches just below my knees. i do worry about the stretch factor as other reviewers have noted but since i just received it we will see. i do not like the sheer sleeves. i wish i could take them off. i do not like the button loop at the",5,1,0,General,Dresses,Dresses +969,39,Runs large,"Great casual jacket! it's a nice spring weight, can be worn in different ways by turning the cuffs, folding the collar, wrapping or unwrapping, etc. i love the way they styled it in the model shots. i am going to have to disagree with the other reviewers about this being tts. i have to say the medium was so oversized, it looked like i was wearing a fabric box. i have a broad back and 36ddd bust and am comfortably wearing the size xs.",5,1,0,General Petite,Jackets,Jackets +1110,38,Elegant and flattering,"I was expecting not to fit into this because i'm womanly, and generally wear a size 16 in things. but the picture was so gorgeous i had to try. i'm so happy i did. it slipped right on and is flowy yet not overly so. it still has shape. the colors are exactly as it is portrayed on the site. i love having this in my closet!",5,1,46,General,Dresses,Dresses +176,46,Plaid sherpa robe rocks!,Super comfy and longer than last year's version minus the hood. love it!,5,1,5,Initmates,Intimate,Sleep +1099,34,Huge,I wear med or large in most items. the medium was huge. fit like a moo moo. size down by at least two.,2,0,8,General Petite,Dresses,Dresses +248,48,Beautiful & comfortable w/perfect fit,"Only the xxs was left, so i was a little concerned that it might be too small. not the case at all thanks to the very functional adjustable straps & high quality of craftsmanship & design. for reference, i'm 32c, 5'2 110-115lbs - kind off petite w/an athletic build. the black is lovely classic. the color, along with the beautiful design give this a timeless classic french look. very comfortable, too. love so much i, ordering more!",5,1,0,Initmates,Intimate,Intimates +1110,44,Prim and proper,"This dress is a work of art both online and in person. the color is more vibrant in person and both colors are beautiful. i like the mango color better because it looks better on my olive skin tone, plus i like the purple flowers against the orange background. thank goodness for the liner because this dress is very thin. it wrinkles easily but i think it comes with the territory due to the thin silk fabric. for short gals like me, a belt is a must for a structured look if worn with heels; otherw",5,1,7,General,Dresses,Dresses +798,37,Love this bra and pantie set!,"I ordered size small. i am 5' 6"", 32 b. the fabric is super soft and the fit is great. there's an adorable little quote on the pantie's lining, and the bra has a beautiful print on its inner lining. the feel of the lace and fabric is divine. love it! one more thing to note...there is very little lining in the bra; really nothing more than an extra layer of fabric. it is enough to protect modesty, but not much else.",5,1,0,Initmates,Intimate,Intimates +176,65,Better than expected!,Very nicely made with attention to detail. thick and comfy. hand washing recommended. that's the only negative.,4,1,2,Initmates,Intimate,Sleep +1134,39,"Fabric was divine, but...","I wanted to fall in love with this jacket! i'm an xs or s in retailer brands so i ordered this online in both sizes. when i received it i felt the fabric and immediately loved the color and texture. creamy white (not too stark) and so incredibly soft! the length was the same as on the model which is what i wanted because being 5'2 113# many jackets swallow me. i have narrow shoulders and unfortunately this jacket was too broad and puffy for my frame, and i looked like a marshmallow. the xs was the",3,1,7,General,Jackets,Outerwear +341,54,Lightweight and holds their shape,"Got these shorts in both colors: the blue-gray and the red-pink. super lightweight in hot humd weather, and keeps a crisp shape (doesn't get wrinkly and saggy like other linen shorts do). really nice quality interior finish and both front and back pockets are a usable depth. +. +if you're between sizes go for the smaller as they do stretch a bit over the day. i got these in a size 2 and they get a little loose on my 33""-25""-37ish"" frame. i'm 5'2"" and the petite was sold out, so i don't know if t",5,1,0,General Petite,Bottoms,Pants +341,42,This one doesn't work with full hips,"Beautiful shorts, good length but if you have lots of lower body curves- probably not for you!",4,1,0,General Petite,Bottoms,Pants +873,50,Looks cute - but sheds!,"This jacket looked adorable on. it was also quite comfortable. however, it sheds and left fuzz on every dark surface it touched. sadly, this is a deal breaker for me.",2,0,4,General,Tops,Knits +1110,35,Weird back,"I really wanted to keep this dress, and the material is amazing, so soft and gentle and delicate, the design is great, the front looks nice, but from back looks really awkward, big and kind of too loose!",3,0,0,General Petite,Dresses,Dresses +939,39,,Beautiful jacket and i got lots of compliments. true to size. it's not thick but it's very warm.,1,1,0,General,Tops,Sweaters +820,48,Cool versatile tank,I really liked this tank. i purchased it in the green. i went with my regular size 2. yes it's boxy but it's a nice tank that will get lots of use this summer. i'm planning on using it on our vacation to the beach . it is thin and soft.,5,1,0,General,Tops,Blouses +872,61,Classy t-shirt,I absolutely love this top. it has a very classy look and can be used casual or dressy. i get lots of compliments.,5,1,1,General,Tops,Knits +1085,33,Great multi-purpose dress,"I bought this dress in red for a wedding. i love the laser-cut design and the fit overall is good except, as another reviewer wrote, the psuedo-empire waste is likely not awesome for anyone with an average to longer torso. i have a super long torso and the dress still works, but a lower waist would have taken it from good to ""wow"". love the innovative take on a classic silhouette/design, though (and the red is gorgeous).",4,1,1,General Petite,Dresses,Dresses +820,46,So summery!,Light and flows so nicely. a great length--not to short or long. great with shorts. material is lovely.,5,1,0,General,Tops,Blouses +1116,20,Makes you look like a football player,"I was looking for a really warm, but stylish coat that i could wear when the weather is frigid as it sometimes gets here in the dc area. i tried on a size small, which is my usual coat size. while the coat fit, it was not flattering. for reference i am 5'9"" 128 pounds and usually wear a small/xsmall in retailer tops. in this coat i looked like a linebacker with pads on. the front material is doubled, which makes you look like you have a large protruding stomach. the shoulders are bulky and",1,0,0,General,Jackets,Outerwear +861,36,"Super cute, but big","This top is so cute! love the stripes in the red print and the detailing of the buttons. however, it does run slightly big! i'm 5'8"", 145 and got the medium. it's so low in the front that i do have to wear a cami underneath. i see why they designed it a little larger since it comes up on the sides and it's supposed to be more of a relaxed fit. i typically love when shirts are long since i'm a little taller and this one hits perfectly in the front. it does dip down in the back and covers my bum (",4,1,0,General,Tops,Knits +1076,32,Flowing silk stunner,"This dress is definitely light weight and it requires a slip or you could wear a black tank and tights with boots. there wasn't a security tag in mine so no holes when i bought in store. i even accidentally caught it on a costume bracelet and it did not rip or damage. although, you probably wouldn't want to sit on concrete or rub against something rough. i would recommend this dress- its gorgeous on. for the price, i think it should come with a slip. fyi, the back half of the waist has elastic,",4,1,3,General,Dresses,Dresses +1116,60,,"This is a beautiful coat nicely constructed and very warm. it was just too bulky for me and i looked 10 lbs heavier in it. i am 5'7"" and 140 lbs. maybe it would be better suited to a more slender frame.",3,0,0,General,Jackets,Outerwear +939,41,Disapppointing,"Loved the idea of this - unfortunately, it disappointed all around. it's way too short and ran small. the fuzzy collar was also different than pictured in the stock photo and looked a bit tacky and cheap. the pricepoint is also way off the mark for this piece. usually an retailer small (5""7"" 140 lbs 32dd) but ordered a medium (small would not have fit in this piece). do not recommend.",2,0,10,General,Tops,Sweaters +1085,39,Love it!,"I wanted to wait until i could give this dress a thorough wearing before i reviewed it. it exceeded my expectations! i wore it at an outdoor wedding (the red) and received so many compliments on it. it is well-constructed and the cutouts are gorgeous. no danger so far of them ripping or tearing. the zipper in the back is a little bulky for the dress, but not a major deterrent. + +i'm 5'6"" and about 145lbs, and the size 6 (my usual retailer size) was perfect.",5,1,0,General Petite,Dresses,Dresses +895,56,Comfortable but stylish,Great top for the older woman who wants to be stylish but needs a little extra room. the subtle color goes with anything. i love it!!,5,1,1,General Petite,Tops,Fine gauge +895,63,Just couldn't get it to work,"I love this blouse on the model online. however, i couldn't get it to lay right and the material was a little scratchy for me. did not like the glittery thread.",3,0,0,General Petite,Tops,Fine gauge +1085,31,"Beautiful, but a bit boxy","I really wanted to love this dress. the cut out design is beautiful and it is very feminine. however, it does not really cut in at the waist and it left me feeling a bit boxy. i think if it cinched at the waist, it would be perfect. it didn't work out for me, but i think on the right girl, it would be very cute.",4,1,7,General Petite,Dresses,Dresses +1085,40,Cute and elegant,"This dress is perfect! i just bought it yesterday in store for a wedding i'm going to next spring. i got it in red, which is normally not a great color for me, but it's a darker red so it works. i love anything with cutouts so i was drawn to it immediately. i normally wear a 10 in a dress to accommodate my (rather wide) shoulders, and the 10 fit well. i can see it working for a variety of occasions. one big plus is the quality--this isn't even remotely flimsy.",5,1,3,General Petite,Dresses,Dresses +820,38,Buy this!,Beautiful summer top and so versatile! it's definitely worth it.,5,1,0,General,Tops,Blouses +895,45,Pretty party piece,"I'll be wearing this to holiday parties this year. pretty, fashionable, not fussy.",4,1,0,General Petite,Tops,Fine gauge +1085,39,"Gorgeous dress, runs large","I ordered this dress, along with several others, for an upcoming wedding. this was my favorite of all of them as far as style; unfortunately it just didn't fit. i'm 5'2"" 116lbs and my regular size 2 was slightly too long, the waist a bit too low, the shoulders a tad too wide. as a result it hung on me like on a hanger. i guess i would need a petite but alas does not appear to come petite...",4,1,1,General Petite,Dresses,Dresses +939,35,Cozy fall staple,"I ordered this on a whim, not sure what to expect. i'm petite (5'1, 110) and ordered a small petite. i usually wear xs-s in anthto tops but wanted a little extra room for layering in the cooler months ahead do i opted for the small petite instead of xs. it fits beautifully and is very cozy too. the collar is gorgeous and very soft. i think this is a beautiful and unique piece for any fall wardrobe.",5,1,4,General,Tops,Sweaters +1085,46,Something different that's super flattering,"Got this dress for a party. it was a last minute purchase and i was nervous if it would fit. it not only fit, it looks great and is very comfortable. have to love an a-line skirt and a top with short sleeves. it covers everything while looking sexy. and i didn't have to spend a second worrying if something was showing that shouldn't be. got compliments all night. i got it in red and black but went with the red based on feedback from husband and bff. buy it now. its perfect for holiday p",5,1,1,General Petite,Dresses,Dresses +859,83,Beautiful but runs large.,"This is a beautiful top, but it runs large. +i am exchanging for one size smaller. +it is worth the effort of exchanging! +well made, beautiful lace.",5,1,0,General Petite,Tops,Knits +1085,42,New favorite dress,"This is my new favorite dress. while elegant it isn't too fancy for a nice office environment. very comfortable and a perfect size fit. i would like it if it was in petite only to make it hit above my knee, not below since i am 5' 3"" but not a big deal. everyone has complimented this dress!",5,1,0,General Petite,Dresses,Dresses +1085,46,Beautiful,This dress fits perfectly. the cut is so flattering. i am tall but the length is great. not too short.,5,1,0,General Petite,Dresses,Dresses +895,45,,"The shirt was better than it actually looked online. the only downfall was that there was a pulled thread on the shirt when i received it. it's something i can probably fix, just a little disappointed receiving in that shape. + +i would recommend this top. very flattering and dressy if you want it to be.",5,1,1,General Petite,Tops,Fine gauge +861,49,Comfort and style,"I love this tee, it is comfortable and soft with the nice detail of buttons at the shoulders, a good v-neck, and subtle stripes. however it runs quite long! i thought i ordered the petite but i received a regular length tee and it was down to my thighs. so order a petite unless you are quite tall or like a tee to fall that low over your hip area.",5,1,0,General,Tops,Knits +820,21,Classy top,"I ordered this top in white and i was really excited for it to come in! once it once delivered and i tried it on it took me a second to decide if i liked it or not. i think i ordered it a size too big (i ordered a large, i'm usually a medium). it was somewhat boxy, but i think paired with the right pants and shoes it would be just what i wanted!",4,1,0,General,Tops,Blouses +895,43,Fun holiday top,"This is a fun sparkly top that was great over the holidays with a sparkly long-sleeved top underneath, and will be fun in the summer too. i got a size small since my regular size extra-small was sold out, and it was still really cute. great cut and design. as others have mentioned, the quality could be slightly better, but it's a good deal if you get it on sale.",4,1,0,General Petite,Tops,Fine gauge +872,62,Lovely top,What a lovely top! the embroidery makes this simple top very special. it's too light-weight for january but will be a staple of my wardrobe come spring.,5,1,3,General,Tops,Knits +1085,22,"Super cute, great for a wedding","I love this dress. i'd get it in both colors if i could! the cut and fit is beautiful, i'd suggest sizing down if you feel like it's too boxy or lacks shape. the bottom skirt is round enough to where you can twirl ( #1 thing to look for in a dress ;) ) and it's just overall a classic pretty dress. my only complaint is that the overlay cut out seems a little bit delicate and i'm afraid it will be ruined after a few wears but it seems to be holding up fine so far and isn't incredibly delicate like",5,1,1,General Petite,Dresses,Dresses +861,53,Summer time comfort,"I bought the red motif for my summer wardrobe; i'll be on the road for most of the month of august and wanted to create a super comfortable capsule wardrobe that would launder without ironing. this top is well made, super soft, and works well with jeans, capris, skirts, and leggings due to its longer length over my posterior. i should have read the other reviews first though, this is a tad large and i needed to us invisible tape to keep everything from hanging out the front. i ordered a medium a",4,1,0,General,Tops,Knits +861,35,Cute summer tee!,"I originally ordered the peach stripe tee in my normal size, medium. after going to the store and trying another color on in a small i realized i should have sized down. i have since purchased the blue stripe in the smaller size. i love the fit and the colorful stripes of both. great light-weight, casual tee. i love the button details on the shoulder.",5,1,4,General,Tops,Knits +1085,31,Favorite purchase!,"I cannot give this dress enough praise!! i say it runs a little large because i'm normally an 8 but the 6 was just more flattering. i wore it for a wedding and i was showered with compliment after compliment about the dress! i've never felt more beautiful, and wish i could have one in every color! and quality? absolutely amazing.",5,1,1,General Petite,Dresses,Dresses +1116,63,,"Thought i would splurge on a tracy reese coat. i got a size small, (120, 5'6) felt huge on me and i looked like a wooly mammoth. very unflattering. another reviewer also mentioned on how it flairs slightly at the bottom?.adding to the overall bad look. i had it on for about 20 seconds and put it back in the bag to return. din't have to ponder about it at all.",2,0,5,General,Jackets,Outerwear +820,51,"Nice summer top, but very billowy","I got the green motif color which is really multi color: blue, orange, purple, yellow, green and brown. the fabric is gauzy and sheer, nice and breezy for summer. there is a subtle stitching detail at the shoulders. i ordered my usual size, medium, and it fits well in the shoulders and arm holes, but it is extremely billowy in the body. i had to take it in a couple inches on each side to make it a little less full. it's still has some swing, but not quite as much as before.",4,1,1,General,Tops,Blouses +1116,50,Unique coat,"Love the unique look of this coat. living in the northeast, during cold weather i wanted something warm that wasn't your run-of-the-mill wool coat. i agree with the other reviews about the somewhat ""bulky"" nature of the coat, but i'm not wearing a coat of this nature to look thin. i'm fairly thin, 5'4"" 102, i know i'm not bulky, so i didn't care if the coat made me ""look heavier"" than i am, it's a winter coat, get over yourself, no one really cares how much you weigh. so, if you can get past tha",4,1,3,General,Jackets,Outerwear +872,58,,"More of a blouse than a tee because of the fabric which has a linen feel to it, on the front, the back of the top is more of a tee shirt material. not a travel top as it would wrinkle. the pattern and colors are the same as pictured. the sizing is large - i ordered an xs; my size is usually a small. it is a generous fit and boxy, not shaped at all. the back has a horizontal stitch band about half way down which provides a loose blouson effect.the back (which is all black and is tee shirt fabric)",5,1,14,General,Tops,Knits +1085,31,,"On the hanger, this dress looks a bit boxy, however once on, it has a beautiful flow and elegance to it. it's super feminine and cinches in at the waist perfectly. my one (major) complaint that prevented me from purchasing the dress? there's no give to the dress. i wasn't able to lift my arms up past 90 degrees and that's sort of a problem. it's a shame though because the outside shell is gorgeous and so structured, and it would have been a nice contrast to the shape of the dress on a body.",4,1,0,General Petite,Dresses,Dresses +861,37,Waaay to big,"Ordered this in xs my normal size (5'5"" 110 lbs) and it was huge! did not particularly care for the style either nothing special.",3,0,0,General,Tops,Knits +1085,43,Christmas and valentine's day dress in one!,"Gorgeous laser cut top layer in a true vermillion red, oh la la! style is feminine, elegant, and appropriate for all ages. i plan on wearing this for the upcoming holiday season as well as valentine's day 2017! quality is top notch and fit is true to size all be it a little snug in the sleeves. for reference i'm 34e-30-40 and the size 8 worked, i would have like to have tried the 10 but the store only had an 8. the arms are a little snug, nothing uncomfortable, just snug. length is below kne",4,1,3,General Petite,Dresses,Dresses +1085,44,,,5,1,0,General Petite,Dresses,Dresses +820,58,,"The fit is a little bit odd, it is short and wide, too much fabric. the quality is not good, the buttons can easily break and the stitching was falling apart. i am returning it.",3,0,20,General,Tops,Blouses +939,43,,,5,1,0,General,Tops,Sweaters +895,35,Sparkles and lace a nice touch,"I got this top in the beige, size small. it is flattering and though i hadn't noticed the lace details in the back before i purchased it, they are a nice touch. this is a versatile piece. i can dress it up or down. this will definitely be a favorite of mine this season.",5,1,0,General Petite,Tops,Fine gauge +895,61,More shimmery than pictured,Very pretty & shimmery. suitable for slightly dressier occasions. comfortable fit.,5,1,0,General Petite,Tops,Fine gauge +1085,22,Awesome flare!,I bought this dress with a specific occasion in mind. i could not turn it down because it fit like a glove. i love the cut and the length.,5,1,1,General Petite,Dresses,Dresses +753,51,Comfy but put together.,"Obsessed with this sweatshirt! it's a must have for any loungewear lover. i'm normally a xs but sized up to a s for a more loose, relaxed look. i was afraid it would swallow me, but i love the fit! the knot in the front is a nice detail that makes this comfy top really cute. the fabric is a great texture, great for transitioning from summer to fall and winter to spring. love everything about this sweatshirt and will easily pair with leggings or jeans. worth every penny!!!",5,1,6,Initmates,Intimate,Lounge +820,65,Blue stripe is pale! :(,"I bought this in the blue stripe and the color is not what is shown at all! the photo shows a bright, vibrant blue and white stripe top. i got a white and very light pastel blue stripe top. so disappointed because the top doesn't have that wow look as shown in the photo. however, it goes well with blue jeans even in the lighter shade of blue. + +and, the fabric is nice and cool for hot summer days. the fit is tts. i bought a 16 and if you wear an 18 this will fit also. i didn't find this too box",4,1,1,General,Tops,Blouses +895,22,"Elegant design, awkward cowl","I love the sparkled fabric and intricate design on the back. i had trouble with the front because the cowl exposed a bit too much, so i wore a tank top underneath. ordering a petite may have helped with the cowl.",4,1,0,General Petite,Tops,Fine gauge +872,67,Runs quite large,"The blouse is beautiful. the quality and design are spot on. but it runs quite large. i normally wear a small or an extra small depending on the cut. i ordered this in a small based on the way it seemed to fit the model. it's huge. i'm going to have to reorder in a smaller size, but i'm not sure if the xs or xxs will fit better. i'll probably drive to my retailer store and try it on in person. for comparison, i am 116 pounds, 36-26-36.,",5,1,3,General,Tops,Knits +895,64,Pretty but unbalanced,"I didn't mind the ""scratchiness"" others proclaimed this garment had, but it is made very tight in the arms and across the back. looks great from the front, but uncomfortable.",2,0,1,General Petite,Tops,Fine gauge +1027,54,Tts but really long!,"Love these pants. love the fit. i can't wait to wear them, but i have to find the time to hem them first. i am kinda tall at 5'9"" and i wear a lot of heels, even tall heels. but these pants are even too long for my 3-4"" heels, and i don't wear taller than that to work every day. only on very rare occasions. so they do need to be hemmed. they are a great cream white color so can carry on through the winter and will also get a lot of use in the spring and summer. good fabric and a nice fit!",5,1,0,General,Bottoms,Jeans +872,50,Love at first sight!,"I knew i had to have this shirt when i saw it online. the embroidery is almost like english smocking. i was not disappointed when i opened my package. the only flaw i've noticed is that it does ""pucker"" slightly around the shoulders and chest area due to the tight embroidery not allowing it to stretch. it is not terribly noticeable though. lovely shirt all around.",4,1,1,General,Tops,Knits +820,51,Here comes summer,"Looking forward to wearing this blouse for the summer. easy to wear--no special bra needed. thin cotton material will be perfect for vacationing in japan. i wear a 4p but because the smocking in the shoulder area leaves the lower part of the shirt a bit blousy, i bought the 2p. i prefer the straight hems instead of the dresses and tunics with the longer back hem, which gives my petite frame the illusion of looking shorter. i liked this blouse so much that i bought it in the green and white strip",5,1,11,General,Tops,Blouses +895,34,Sparkly sweater,It hangs very nicely on the model in the picture but when i put it on it fit tight in the sleeves and upper back but huge in the front. the sweater was also sparkly which made it look cheap. i loved the lace detail in the back but the sweater was returned. did not fit well and was not good quality. very thin,2,0,0,General Petite,Tops,Fine gauge +753,55,Soft and super comfy,"This hoodie is just what i had hoped it would be...it is super soft, comfortably loose, but with the tie bottom hugging the hips and low v-neck - it's just the right amount of sexy. it will be my go-to this fall and winter!",5,1,1,Initmates,Intimate,Lounge +96,41,,This could have been an amazing chemise but it is too short even for bed- perhaps it could be used for a tank. i am 5'3 but do have a long torso. it did not fully cover my booty.,2,0,5,Initmates,Intimate,Intimates +939,35,Could do better,"There are a lot of boiled wool sweaters and jackets available right now-this is not one of my favorites. while the color is amazing, the buttons are very cheap plastic and they look that way. the are very close together which is hard to button up. the coat is not flattering in the same way it is on the model when it is opened an requires to be closed to have an hour-glass shape. however, sizing down (which would also fix this problem) would cause the shoulder/arm area to be too tight.",4,1,10,General,Tops,Sweaters +1078,44,,I tried this on in my regular size and a size up. just didn't work in either. the attached slip bunched underneath and the material was rough. i did not purchase it.,3,0,3,General Petite,Dresses,Dresses +1081,68,,"Full disclosure, i'm six months pregnant. as such, this dress is perfect for me. it's soft and flown, and i look like i have a cute bump instead of like i'm wearing a sack. i ordered my usual medium based on other reviews, and t fits perfectly--so it would have been too big normally.",5,1,1,General Petite,Dresses,Dresses +939,67,Sooo flattering!,"I have a narrow face, and most coats with the big collars overwhelm me. this proportion is perfect. follows my shape without constricting but flows so well for a good line. color isn't quite laden green; it's more teal which works even better for me. so hard to find a wool coat these days that isn't bulky.",5,1,3,General,Tops,Sweaters +1095,34,,,5,1,0,General,Dresses,Dresses +1095,21,Poor quality,"I bought this dress to wear to an out of state wedding. first time wearing, when i tied the strap, the pull through at the top of the halter broke with minimal stress. i sewed it back with a repair kit from the hotel but was worried the whole night the dress would not hold up. if this is all that is holding the dress on, it should be more secure with reinforced stitching. beautiful material and comfortable.",2,0,2,General,Dresses,Dresses +939,67,Lots of style,"This is a great coat, very lightweight, but warm. the color is gorgeous. it is fitted at the waist with fullness below and a great length. i am writing this review to give a heads up about the sizing. by usual retailer sizing this runs small and short waisted. i am generally an retailer x small and i need to exchange this one for a small or maybe even a medium (if i want to wear much underneath it). as it is it fits too well, like a dress, not a coat and looks short waisted. in fact, when i tr",5,1,26,General,Tops,Sweaters +872,39,Great design but fabric pills very quickly,"I bought both colors. the navy is beautiful but the grey is closer to a drab beige and the color really disappointed me, i'll be returning that one. i love love the fit and feel of the sweater. it drapes wonderfully whether open or closed and it's so soft. however, the fabric pilled significantly, big pills not even little ones, where my arms touch my sides after just four wears. !!! i get that rayon is finicky but that is ridiculous. the navy is now out of stock in my size so i guess i'll try t",4,1,0,General,Tops,Knits +1078,49,"No, just no.","I wanted to love this. couldn't wait for it to arrive. unfortunately, it doesn't look anything like the picture. i usually wear a m/l in holding horses so i ordered a l but as soon as i held it up i noticed it was ridiculously large. the fabric is on the heavy side so the dress just hangs in a very unflattering way. and, it is extremely shimmery. i love velvet, but the texture and sheen of this dress was just over the top. sadly, it is going back.",1,0,0,General Petite,Dresses,Dresses +1078,39,Gorgeous for fall,"I bought the ""light grey"" color. the dress in the photo does not look a thing like the dress in person, it does not look grey at all but more of a light teal/light blue. it is absolutely gorgeous and has a slight swing shape. i took my normal size xs. the end of the sleeves (where the buttons are) are very tight but still fit, you just have to be careful taking off or else undo the buttons. also online inventory says no one has this in store, but i did end up finding it (rockefeller).",5,1,0,General Petite,Dresses,Dresses +939,30,"Great light coat, poorly made","Love the color, cut, and weight (its like a fleece-weight coat, but longer and more appropriate for an office.) + +within two wears one of the buttons popped off. + +within three wears, one of the back shoulder seams had split. + +this coat is lovely but shoddily made. worth it with a discount and if you know how to hand-sew, because minor repairs will be in your future. it is so beautiful but not worth full price at this build quality.",3,1,2,General,Tops,Sweaters +1078,40,Not quite the right fit,"On the hanger, this looks like a great lbd. on me, not quite. the bell shape of this dress made it appear that i was carrying extra weight in the middle. for reference, i tried a 0p, and i'm 5,1"", 102#, and 34a.",4,0,0,General Petite,Dresses,Dresses +14,32,Luxurious and flattering,The bikini bottoms are high quality and feel very luxurious. order one size up. this line runs small. i read the reviews and ordered a medium. i am normally xs/s in underwear but the medium fits me perfectly. i wish i had ordered in other colors before they sold out! trust me you'll want another pair after trying these on.,5,1,0,Initmates,Intimate,Intimates +1078,57,Picture misleading,"I ordered this and there is just so much fabric! in the pictures i think it is pinned in the back, in the main photo, to make it look more streamlined. definitely a miss!",3,0,0,General Petite,Dresses,Dresses +1078,35,Cute!,"This dress is cute!! i ordered my regular xs which was too large but liked it enough to exchange for an xs petite and hopefully the fit will be better. (the xs was much too wide and came past my knee. i'm 5'2' and 123 for reference). the grey is very pretty and is blueish gray... very misty and unique. the pockets are awesome and i like that it's lined in a fine poly that shouldn't cling to tights, etc in the winter. if you can find a size that fits you, buy it!",5,1,0,General Petite,Dresses,Dresses +1077,25,,I always search each summer for a maxi dress and this is the winner this summed! i love the way it wraps. fits perfectly. i got a size medium and i am 5'5 34dd; the dress is long enough to wear with flats or heels. i recommend this!,5,1,4,General Petite,Dresses,Dresses +939,35,Fall perfect,"It was lighter weight than i expected but that's perfect for me considering florida winters are mild. it's more like a wool sweater than coat. the design is gorgeous, however, ran bigger than anticipated. i'm hoping an exchange to the xs will work otherwise i'm not sure i can get the fit i expect from this sweater coat. the buttons are plastic and would have made a much bigger impact if they were wooden but they're still nice. overall i love it and am hoping for the right fit so i can flaunt thi",5,1,6,General,Tops,Sweaters +1078,29,Cute but runs large,"I was really hoping this dress would work out, as it looks like it could be a staple outfit for work! the material is very nice, but unfortunately the dress was way too big. there is a band right under the chest that i would think should be somewhat fitted to give the dress some shape to your figure, but it was wayyy to big on me (especially considering i am large-chested! i will be returning this.",3,1,0,General Petite,Dresses,Dresses +1077,28,Very pleased,"I found this dress delightful! i have worn it numerous times and though quite long (for some girls) fits me well. my only complaint is that if the wind blows it tends to fly open as there is only on clasp at the breast. the fabric is light and comfortable, i wore it in costa rica and it felt refreshing. i am 5'9"", 155 lbs and a 34a cup; i would suggest a larger size for girls as the small fit me very well.",5,1,2,General Petite,Dresses,Dresses +1078,50,Great with leggings,"This dress is too short for me to wear as a dress, at 5'7"" and over 40. however is is great with leggings and boots. +it drapes nicely not over sized like many dresses this style. the color is more earthy than pictured. it's actually nicer in person than online. and it has a wonderful texture to it. i was drawn to it when i walked in the store they had it on display under s short cropped jacket and boots.",4,1,13,General Petite,Dresses,Dresses +939,53,So disappointed,"I loved this coat in the picture, and couldn't wait to get it. sadly, it did not deliver in real life. i got my usual size small, and it fit well in the shoulders and sleeves, and okay in front. the big problem was the back. it just hung from my shoulders with zero shape, and a lot of extra fabric. i considered trying the xs, but was concerned that the shoulders might not be comfortable, and honestly i can't believe the xs could possibly have been different enough to work. maybe i got a defectiv",1,0,2,General,Tops,Sweaters +1078,47,A shirtdress that swings,"This is a really cute and flattering dress on me. i am 5'4"" 120 lbs and the 4 is a perfect fit. i am a little busty but the empire seam brings the dress back in slightly below my chest so it does not tent out.the asymmetrical hem makes it really flowy when you walk. the under dress is a lightweight fabric in a sheath cut that is shorter than the over dress which is a fun detail. the over dress material is somewhat gauzy and it moves as you move. the pockets are positioned in the front which is a",5,1,1,General Petite,Dresses,Dresses +996,45,"Beautifully-made, lovely 3-seasons skirt",I'm not sure why this skirt is described online as having a blue motif. the background is black and the blue in the pattern could pass as grey. the material is a strong polyester which should be nice and easy to clean but it almost feels like silk. i love the aline and even with the ruffles it looks very slimming on this pear-shaped gal. i can see wearing it with strappy sandals and a light blouse in the next few weeks but pairing it with a sweater and boots well into the fall and winter. i thin,5,1,0,General,Bottoms,Skirts +1078,42,Classic!,Very comfortable to wear. you can wear it any season. it runs true to size. nice fabric. it&#39;s a simple black dress. love it!,5,1,0,General Petite,Dresses,Dresses +1078,61,Enormous,I ordered a size 0. the dress was extremely large. i am 5'2 and weigh 110. i guess you really must be 5'9 like the model to wear this dress. such a shame..,3,0,7,General Petite,Dresses,Dresses +1078,33,Not my kind of fit,"I wanted a comfortable and loose casual dress. i liked the pictures and decided to give it a try. +the dress turned out to be too loose (i got size 4 after checking the measurements chart, i'm 5'7' 125 lb and usually wear s). i could practically wrap myself in this dress. besides, it looks a bit too long (well, i'm not as tall as the model in the photos and i don't like wearing high heels). +the material looks faded, not as bright as in the pictures. i like distressed and vintage style, but this",2,0,0,General Petite,Dresses,Dresses +1081,29,Great basic,This dress fits great. i love that it's fitted at the top but drapery and swingy at the bottom. it has a thicker t-shirt type fabric. i will definitely style this with a variety of necklaces or a scarf and cardigan for cooler weather. it's much cuter in person. for reference i'm 5'4 105 and got xs.,5,1,2,General Petite,Dresses,Dresses +839,33,Stiff material,"I found the material a little stiff, im asummig linen is stiff at first. i got an xxs and fit tts in my case (34 b, 5'7, 120 lb).",5,1,3,General,Tops,Blouses +1077,57,Not at all as pictures,"This is quite an odd dress. it does wrap and is beautiful material. however, the dress does not close at all in the chest area. i thought perhaps it was meant to be a kimono. it will go back for sure.",1,0,0,General Petite,Dresses,Dresses +1095,34,Beautiful and flowy,"Love the colors and pattern. i am normally a m/l. i ordered a large as that's all they had in stock and it fits fine though the medium would probably have fit a little better for me. it is very long, even for me and i'm 5' 9.",5,1,0,General,Dresses,Dresses +996,38,Runs small...dowdy length,"First, i was surprised that this skirt fabric felt similar to men's tie. it is a thick weight silky feel. next, i was surprised by the cut.... i wear a 12/14 petite, and the waist of the large is at least a size 10 if not smaller. finally, the length was really long. i realize i am 5'2 and buying non-petite sizes, but the cut was high ankle on me. i like the pattern and ruffles of fabric, both are unusual and good for fall/winter. but i did not like the rest.",3,0,0,General,Bottoms,Skirts +1078,44,Wonderful but button issues,"This dress just feels and looks amazing. i love how it isn't too short like a lot of new styles. i think it will be wonderful with leggings or tights in the winter. i also love the plaid cuff detail. the only drawback is the buttons need to be reinforced. i got home and realized one button was missing. i went to the store to swap for a new one and when i went to cuff the arms, 2 buttons popped off!",4,1,0,General Petite,Dresses,Dresses +1078,42,Why isn't this dress sold out?!,"It is such a pretty dress. the pics don't do this dress any justice. the cut and style is so flattering. the colors are gorgeous. you can wear it on a cool evening in summer and well into fall. i absolutely love this dress. even if the material appears a bit rough, there is a slip underneath.",5,1,0,General Petite,Dresses,Dresses +1078,39,Velvet crush,This dress is so soft and cozy and pretty. love the shine and interesting sheen whenever you move. very comfortable and looks great with a variety of layers. i want to buy more colors but right now i just have the mauve. ordered size m and i'm 38-27-35 #135.,5,1,0,General Petite,Dresses,Dresses +1078,47,Babydoll,The colour is gorgeous but it's basically a baby doll dress - it looks like the waist is much lower on the model but for my height and large chest it' fell like a baby doll or a maternity dress. not flattering. pockets are a nice touch though.,4,1,3,General Petite,Dresses,Dresses +1078,38,Versitle,"I ordered this online with out trying it on the store. it does hang a teeny bit loser than in the photo of the model but in my opinion doesn't look bad. plus, i'm not a model...;) what i did was put a thick belt on and it just brought the dress to a new level. love it with a belt. i am an art teacher and it was perfect for work and then going out after with friends. (the school is not secular so the skirt must be long enough (it hit right above my knees in the front) as well as the sleeves) i ag",4,1,0,General Petite,Dresses,Dresses +996,32,,,5,1,0,General,Bottoms,Skirts +1077,28,,,5,1,0,General Petite,Dresses,Dresses +1078,44,Classic and comfort,"This dress is gorgeous yet sturdy, it is all about the lace. size regular 4 fit my chest area well and i like the midi look (i am 5ft2in, 34b, 26 waist, 36 hips). whether regular or petite size, when i walked or turned, the pleats added too much volume and looked overwhelming and no shape. i tried it with a belt and it looked better, but looked odd because the pleats poofed at the belt area. i tried with a sweater, jacket...then finally gave up. it would look gorgeous on a tall thin gal.",4,1,0,General Petite,Dresses,Dresses +1078,44,Babydoll rock and roll,"This dress is modern yet timeless, cute yet rock and roll if worn with boots. i am 36b, 26 waist, 36 hips, and size regular s fits well. i like regular size because it is longer in the torso (lengthens waist for a belt) and the length is right above the knees, appropriate for work. the bust area fits me perfectly so well-endowed ladies may want up a size. i am into grey now but all colors are gorgeous, love the sheen, colors are true like shown (1 star off for hi price for a simple dress).",4,1,0,General Petite,Dresses,Dresses +1078,38,Great fall dress,"I tried this dress on in the store. i wear either a s or xs in retailer clothes. its loose fitting, so i went with the xs. the arm holes were tight, but have very cute buttons if you look closely at the picture. you can also roll the sleeves up and there is a coordinating plaid underneath, which adds a nice touch. great length, not too short or too long. the grey color is much prettier in person. i felt it had a little more of a blue tint. for reference i am 5'6"", 124 lbs, and 32b.",5,1,0,General Petite,Dresses,Dresses +1078,64,Classic and classy,"I originally bought the white lace version of this dress, but it felt too ""bridey?"" then i snagged all three of the velvet blazers and spotted this black version. i like that it is not all lace, with the pleated chiffon ""center."" the under slip is straight and fits with the outer layer sheer enough to give the appearance of there being a shape under the flow. it is so versatile as i can do it with the velvet blazers and booties or classic lbd with black pumps. well worth the price as this will f",5,1,5,General Petite,Dresses,Dresses +872,54,Great light weight sweater!,I got this sweater in navy and it is much cuter than online! it is a great transition sweater and also i can see it used on cool nights at the beach. i have worn in professional environment to work as well as with a tee and jeans. i love it!,5,1,0,General,Tops,Knits +1078,39,Cute and comfortable,"This dress arrived today, and it is both flattering and comfortable. i am just a smidge under 5'4"", and i ordered a regular xs. in the front, it hit me about 3"" above the knee. it is office appropriate for a business casual environment. the red was deeper in color than i expected (it seemed a little ""brighter"" on my monitor), but this is no problem for me; it is still a great color. i tried it with clogs, knee boots and ankle boots - all really cute. and, as and added bonus, it looks good with b",5,1,24,General Petite,Dresses,Dresses +1078,47,Really pretty dress,"I wanted to love this dress - it is gorgeous on the model, but unfortunately for me, it didn't fit right. i'm petite and ordered the xxs petite. it was snug in the upper body and looked like i was wearing a baby-doll dress. the material is high quality and i love the burnt red color. it just didn't fit right. definitely looks great on the model, but hung funny on me. i can see why it was highly rated, gorgeous dress - just not on me.",3,0,8,General Petite,Dresses,Dresses +862,51,Super hip,Love the dolman sleeves and its the perfect length. throw on a cute necklace and go.,5,1,0,General Petite,Tops,Knits +988,67,Beautiful,"This skirt is gorgeous, sturdy, well constructed. i was afraid the midi length would look frumpy, but it was beautiful. it has a nice lining, flares into a pretty a line, and has a pull tab belt around the waist to cinch it a bit. i am normally a 2-4, and i bought the 4. it was a bit big, but the belt helped with that. i wore it for my bridal shower and got many compliments!",5,1,0,General,Bottoms,Skirts +1095,45,Classic,Beautifully fitting. simple and flattering. i am an athletic size 8/10. the 10 fits well but the straps may have to be taken in a little.,4,1,7,General,Dresses,Dresses +1104,32,It's beautiful!!,"What a perfect summer dress! after reading the previous review i ordered a size up and it's perfect. the slip is a little snug on the hips, but most dresses are on me so i think on most people it would fit very well as long as you ordered one size larger. i can't wait to wear this while traveling through europe next summer!",5,1,5,General Petite,Dresses,Dresses +870,29,Suprisingly great!,"This was my first time to purchase and wear a tunic and i was very hesitant about the look, but i love this design! it is beautiful and seems to be very well made. i agree with a previous reviewer that the slit is high (it comes to my waist, but i don't think it is a problem. i always appreciate this in other reviews, so hopefully it helps: i'm 5'2"", 117 lbs, and a small 32b. the xs works well for me.",5,1,1,General,Tops,Knits +1054,43,Oh myyyy comfort!!!!,Want to combine super comfort with super style and quality!! stop here and buy these!!!! you will not be disappointed!!!,5,1,0,General,Bottoms,Pants +1025,45,The new overall,These are by far the sexiest fitting overalls ever! they are lengthening and flattering and comfy at the same time!,5,1,4,General,Bottoms,Jeans +850,47,Unique and beautiful,This top is beautiful. so beautiful that i am keeping it even though it is a little bit large and drapey. the fabric has a golden glow to it. the details in the back are darling. perfect for a romantic dinner out.,4,1,0,General,Tops,Blouses +850,53,Gorgeous and unique,"This top is really beautiful. my girlfriend saw it on a rack outside the dressing room, or i would not have seen it. i tried it on, and loved it instantly. it does run a bit big, and i ordered the extra small to make sure which one would work. the photos don't do it justice. reminds me of retailer of 10 years ago, when just about everything in the store was truly unique.",5,1,0,General,Tops,Blouses +850,35,,I am addicted to retailer and have purchased many many items from them. this is definitely one of the best blouses i ever purchased by far. i saw this while browsing through the store and love the print and colors and detailing. i espeically loved the velvet cutouts that gave this already beautiful sweater something extra. i did not purchase this top then because i felt full price was too much and on the hanger it looked like it could be short and boxy. when retailer had their black friday sa,5,1,0,General,Tops,Blouses +870,68,Cute and comfy!,"I am so pleased with this tunic. the fabric heavy enough to wear through winter, and it is very flattering. the colors are as pictured, as well. as another reviewer mentioned, the slit is high. but it still works perfectly with leggings or mid to high rise skinny jeans.",5,1,0,General,Tops,Knits +850,53,Amazing vintage top,"I just purchased this velvet top in my regular size small (34-27-35) so i'd say it runs tts and i couldn't be happier! the designer, moulinette soeurs is one of my very favorites here at retailer and always seems to come through for me when i need something really special. it's is a vintage style top that reminds me of something miss fisher from ""miss fisher's murder mysteries,"" the ""downton abbey"" ladies or the designer sisters from ""the house of eliott"" would wear and that's a major compliment.",5,1,6,General,Tops,Blouses +850,24,Such a unique piece!,"Retailer is known for their unique designs and this one does not fail to disappoint. i usually wait for items to go on sale but knew i had to have this one in my collection due to the fact that it can easily be worn with a pair of pants. the actual shirt is a bit shimmery which you can't tell by looking at the photo. i didn't mind it and thought it was actually a plus! i just think it is a bit too expensive, because although it is nice quality, i don't feel it is worth the price tag. pretty",4,1,0,General,Tops,Blouses +850,42,Too shimmery,"While this top has a lovely design, neckline and color the metalic threads made it too shimmery for me. i actually think it looks better in pictures than in person because of the metallic threads.",3,0,0,General,Tops,Blouses +944,47,Too much fabric,"The fabric is very nice on this wrap, but it wears like a blanket.",1,0,1,General Petite,Tops,Sweaters +1095,46,Classic dress,"Classic and beautiful style. structured material that will always fall just right. looks beautiful and will take you to any occasion - heels or flats, office or dinner party. definitely shows off your shoulders.",4,1,3,General,Dresses,Dresses +850,39,Lovely colors but boxy,"I had the priviledge of trying this on during the 20% off tops sale, too bad but the store only had regualr sizes, and xs was the smallest. i am not super tiny (read have muscles), but this looked huge on me. love the colros and textures though, the line in the back is pretty and adds charm when you turn around, and the combo of all the colros is awesome, but i would need a xxs or perhaps a petite (though it is short, so not sure about petite)... soft, but try a smaller size...",4,1,4,General,Tops,Blouses +850,54,,"Absolutely gorgeous! i bought my regular size m and while it's a little wide in the shoulders, it drapes beautifully. because i'm so short, i found the sleeves too long so i took it to my dressmaker and she shortened the sleeves about two inches so it's still elbow length and while i was there, she put in two small darts in the back so make it less boxy for my frame. can't wait to wear it - it's a beautiful material and i love the combo of the metallic sheen and velvet. so elegant. very gatsby,",5,1,0,General,Tops,Blouses +1054,37,,These are absolutely fabulous!!! love them! comfortable great fabric! best buy of the year so far!,5,1,0,General,Bottoms,Pants +870,55,Lovelovelovelovelove*million,"When i saw this in store i was so attracted to the colors on the v neck and actually thought it was a dress! until i tried it on i was confused about the very high side slits.... then i figured it was a tunic. i've always hated/avoided tunics because i thought they would widen my thighs and give me a bad shape. they actually made me look straighter/slimmer which looked amazing! the more i had it on, the more i fell in love with it and didn't want to take it off! i can wear it in the winter and f",5,1,1,General,Tops,Knits +1104,37,Cute and understated,"I saw a review from another petite person who said this runs small, but i'm my case it ran true to size. it's a very flattering dress and easy to wear for any occasion.",4,1,1,General Petite,Dresses,Dresses +850,63,Gorgeous arts and crafts aesthetic,"I am a collector of clothes and textiles. that is a passion. this blouse meets all the criteria of something treasured from times past. the roses are almost charles rennie macintosh. i am so happy to own this blouse! it fits perfectly and makes me feel beautiful, stylish in my own style.",5,1,0,General,Tops,Blouses +1095,34,Two tone halter dress,"First, let me start out by giving a reference. i am 5'1"", 138lbs, 34dd, 30, 38. i usually take a size 8 in maeve, esp if there is no give. i bought a regular size 6. + +first the good: the design. it is classy. it will keep boobies (the ones of the larger side) in place. this is amazing as there isnt really a way to wear a bra with with dress. it is slimming and i have hips. + +the bad: surprisingly, the fabric gets dirty super easy. i have no idea why everything clings to it. i got my dress f",3,1,6,General,Dresses,Dresses +1095,51,Try it and you won't regret it,"I picked this dress up off the rack on a whim, and did not expect to love it. i was so delightfully surprised! this dress is made of a lovely, thick, starchy cotton--i found i didn't require a bra. which is great because the back is a gorgeous feature of the dress. the white band across the midsection makes the waist appear small. the dress has sort of a retro feel with the tea length and looks best with heels. i did note a little bit of gaping under my arms but not enough to keep me from buying",4,1,19,General,Dresses,Dresses +870,35,,Matronly and unflattering. i think this may work on a very tall and slender body type.,2,0,0,General,Tops,Knits +1104,35,Good for broader shoulders,"The design/pattern balances broader shoulders/narrower hips and gives my straighter waist definition. + +at 5'1"", size 2 ended mid-knee, but overall felt a little too long (torso length). i normally take 0p or 00p in retailer dresses. + +i like the feel of the fabric and the overall playful yet chic look.",4,1,1,General Petite,Dresses,Dresses +944,45,,"This is so bulky and itchy...could not stand to have it on! i'm a 6/8 & ordered the small, but it was still gigantic.",3,0,1,General Petite,Tops,Sweaters +870,25,"Strange fit, nice fabric and stitching","I ordered this in my usual size small (36b bust, 5'5"", around 116 lbs), but the seam around the high waist stuck out and didn't cinch in at the waist at all, rather bubbled out a bit. the tunic ""flaps"" laid strangely as well, like they were too small almost. the high cut sides were indeed high cut...showing the waistband of my leggings. apparently that is a new style, as i have seen a few other tops like it around, but i question whether slits that high are appropriate for actual wear outside on",2,0,1,General,Tops,Knits +900,64,Pretty but going back,"The quality of the fabric is soft and thick and well made. loved everything about it but if you are ample in the chest, it is snug and does not hang and drape as well like on the model, so you may want to size up. i am sending it back as the fit is not flattering on me for the price. someone with a boyish no-curve figure would look dynamite in it!",3,1,2,General,Tops,Fine gauge +900,41,Love it,Very chic version of a turtleneck/tunic. material more substantial than i expected. ultimately it wasn't really flattering on my body type but otherwise i would absolutely recommend.,4,1,0,General,Tops,Fine gauge +850,29,Stunning top,"This top is beautiful and special. the burnout velvet (so nice and soft), the flowers, the pretty metallic threads and even the back closures make it wonderful. i took my usual size 0. it is a bit more fitted on the bottom of the top (hip area) than i was expecting but not snug. i will wear this during the holidays and beyond! happy with my purchase and looking forward to wearing it!",5,1,0,General,Tops,Blouses +850,56,Greatest party top,"I have never written a review on retailer before, but after seeing this top in the store and then seeing how it is depicted online, i felt i had a duty to review it. it is gorgeous! i saw it in the store and tried it on with my mom and we both had a fit over it. the fabric is light pink with a shimmer. the flower detailing is so feminine and soft. the back's closure is just another piece of the beautiful detailing. i left the store and thought i would think about it only because i was trying to be",5,1,27,General,Tops,Blouses +870,30,,,5,1,0,General,Tops,Knits +1095,51,,"This dress fits true to sizing for this dress designer (i.e.: a little on the large side as compared to other dressmakers). it is very flattering on and is made of cotton sailcloth, so it is not ""flowy"".",4,1,9,General,Dresses,Dresses +900,49,It's a shame,I wanted to love this tunic sweater. the material is so soft and a perfect weight. the color is pretty. bu the fit absolutely did not work for me. the tunic runs very small. a large usually fits me but i felt like i was wearing a small. the slits are quite high. i was sorry to do it but this one went straight back!,1,0,1,General,Tops,Fine gauge +870,53,Cute,"This is a very cute tunic, but it is slit so high on the sides. i really like the fit, but i think i'm going to return it because it is slit so high.",4,1,19,General,Tops,Knits +1010,54,Runs very small,"Great item. ordered for my wife for christmas. received it and the medium petite waist size measured at approximately 26"" (so it is at least 2"" off the standard--and a thick material needs a bit more room to fit well). disappointed! replaced with next size up...we'll see!",3,0,8,General,Bottoms,Skirts +850,43,Exquisite!,"This picture does not do this blouse justice. the material is velour where the flowers are and there's a bit of sparkle. i'm generally a pl in other stores and bought a m and was pleased. it's true to size. i'm 5'1"" and the regular length was perfect and not too long at all. i won't have to shorten it. the blouse will look great with skinny jeans and boots or the right long flowy skirt. it can easily be worn to a dressy occasion. it's gorgeous!!",5,1,12,General,Tops,Blouses +1104,36,,"This dress had so much potential. the top was absolutely gorgeous. my issue was with the bottom half of the dress. the bottom is made from a heavy quilted material that is stiff and has no movement at all. the dress is supposed to fit like a modified mermaid dress where its more fitted around the hips and flares out, the dress i received had so much material on the bottom that it actually made my hips look bigger. i though about having the dress altered but decided to return instead.",1,0,9,General Petite,Dresses,Dresses +1095,36,Beauty,"I absolutely adore this dress. i took my time buying it and when i was ready to purchase they were sold out of my normal size 6 but the 8 was still available, so i snagged it. i'm glad because the dress runs small and the size 6 would have been snug around the waist. the style is perfect and the dress is well made. the material is a heavier cotton and the white banding accents it perfectly. i don't think it's too white, like some reviewers have stated. you can't wear a bra with this dress, but t",5,1,3,General,Dresses,Dresses +1054,47,Super cute,"I absolutely love these pants! i was really hesitant to try these on for fear they would look like a diaper. i've always liked the look of these pants but didn't think i had the body type to pull them off being 5'5"" with some curves. i tried them in my local retailer in the solid grey in both a medium and small. i could have gone either way but the medium fit better in the he hips. the draping isn't as exaggerated or bulky as it looks in the pic either so it didn't add weight to my frame. the mate",5,1,7,General,Bottoms,Pants +1095,39,White too white,"Loved the dress, but the white of the dress was neon white, way too bright and made it look terrible against my skin. i can imagine this looking good on someone with darker skin. but i""m my pale skin it looked bad. otherwise the fit was great, besides missing out on the petite sizes which are sold out.",4,1,1,General,Dresses,Dresses +1054,37,Best pants ever!!!,"First off, the pictures online hardly do these justice. these pants are way cool. they are soft, have the perfect little pattern, they have a great tie detail on the cuff, they are higher waist (which is always more comfy), and they are super stylish! just like the other reviewer, i am occasionally hesitant on drop crotch pants...but i was so drawn to these. i'm glad i have them a shot because they are way better than i expected! these are worth the buy!",5,1,2,General,Bottoms,Pants +1054,29,,,1,0,0,General,Bottoms,Pants +900,57,Tunic love,"This is a very chic tunic sweater. i absolutely love it. fabric is super soft and is a good weight. not too thick or heavy, which for me is a huge plus as i tend to run hot and usually can't wear sweaters. being hot natured, the turtleneck was a problem for me so i had my tailor alter it. it is still beautiful without the high neck. +the fabric is quite stretchy and i found it to be tts. however, it is not as loose on me through the chest as it is on the model. i am just over 5'4"", and wear an",5,1,0,General,Tops,Fine gauge +864,50,So pretty!,"I bought this in blue and can't wait to wear it, feels so soft. exactly like the picture.",5,1,0,General,Tops,Knits +870,49,Love the design,"This tunic was a surprise - the navy color and the knit material and the colorful designs on the front just accentuates the tunic. however, i agree with the previous reviewer about the high slits and it's pretty wide, better if it was a 1/4 or 1/2 inch less. fits tight on the arms and shoulders but a bit loose below the bodice. + +i cut the tags to wear it and found out that part of the embroidery on one of the designs had unraveled! +sadly returning.",4,1,0,General,Tops,Knits +1095,45,Very flattering dress!,"I got this for a special event and while i had to special order due to it not being in my local store yet, the minute i tried it on was very happy with the fit, feel and overall look. at the event i got so many compliments and love the way it fits - attractive, sturdy and very comfortable to wear, even with kicking up my heels on the dance floor. am so happy i got this and plan to wear it to other events coming up (weddings, parties, etc.)",5,1,4,General,Dresses,Dresses +1054,24,Unique and so fun,"I was drawn to these pants because i loved the color and pattern, but i was sure they would be difficult to pull off. i tried them on and loved them! they will be perfect summer pants because they're so light and not clingy at all. the material is great. these will also be really fun to wear at the beach. i could stand for them to be about an inch longer, but the wide waistband is super flattering and versatile so i just wear them closer to the hip for the extra length. definitely worth trying o",5,1,3,General,Bottoms,Pants +1054,43,"Kinda cute, but elastic too tight around the legs","These felt like they were cutting off circulation around the calves. i tried pulling them lower to reduce the tightness but that made them way too droopy between the legs. an alternative would be to clip the elastic, but ultimately decided to return.",2,0,0,General,Bottoms,Pants +1110,20,Cute dress,"I usually wear a small, 4 or 6 and in this dress i couldn't even zip up the 8. so tight in the rib cage and chest. if i tried to go up even further the bottom half got much bigger. guess this one is not for me.",3,0,1,General Petite,Dresses,Dresses +18,42,Disappointing quality,"I ordered these leggings and loved them, for about an hour- at which point the belt loop ripped off of the pant, leaving a hole. i called customer service and they sent me a 2nd pair. same thing happened. i never even pulled on the belt loop. they are just so flimsy. it's a shame bc they are cool looking.",1,0,0,General Petite,Bottoms,Jeans +1089,41,Gorgeous!,"Oh my, i just received my dress and it is gorgeous!. i was a little skeptical with the reviews but i am on the slender side so perhaps that is the body type it works for. i am 34b with a 25 waist. i got a size 0 and it fits well. i am 5'5"" and the length is good too, not too long. i could wear reasonable heel/wedges. it is a great class, sophisticated look. the material is great quality. i can't wait for an occasion to wear it to!",5,1,0,General Petite,Dresses,Dresses +1110,60,Easy summer dress,"I just received this dress and i love it. after reading the reviews i was worried that it would be too tight so i ordered both a 6 and an 8. i am 5'8"", hourglass, 135 lbs, and the 6 is just perfect. i love how it falls just below the knee, but the front slit gives it that little flirt factor. this is the go-to summer dress i had been looking for!",5,1,0,General Petite,Dresses,Dresses +1089,41,Do not buy this dress,"I should have heeded the previous reviewer's advice. but i'm really short so i thought i'd give it a try. there is something really wrong with the bust. first, it's about 3-4 inches higher than it should be. the bottom trim cut across the middle of my bust. even if i hoisted everthing up in there to fit the cups, they are really only designed to fit cones, not curves. from the side it looked hideous. too bad, because the fabric and fit everywhere else is gorgeous.",1,0,17,General Petite,Dresses,Dresses +1110,42,Not a fan,"I am 5'8"" 140 lbs., 34b, and i ordered the 6 in denim. the dress is certainly tts: the 6 fit like a glove but wasn't at all tight. perhaps my expectations were too high with this dress--based on the other reviews, i thought that it would be perfect for my pear-shaped figure. however, i found that the a-line skirt accentuated my lower half, thereby making me look larger than i am, so i sent it back. otherwise, this is a great dress. it certainly did manage to hide lumps and bumps in spite of bein",3,0,0,General Petite,Dresses,Dresses +1110,45,Best. dress. ever.,"Yay, i found it: my go-to dress for this summer! it's perfect for casual day-to-day stuff, as well as summer festivals, nights out, travel, etc. i love the design, length and fit. it's a bit snug in the chest area but i went with the smaller size as the shoulder straps sagged a bit in the larger size. the lace-up front gives it a sexy corset-type bodice, but in a very casual, appropriate way. i think this dress will work well with many body types and ages, it's flattering for us curvier ladies,",5,1,0,General Petite,Dresses,Dresses +1110,29,Super flattering and unique,"I love this dress. i got it in the blue and i feel like everything about it is so modern and class and summery. it runs a bit on the small side. i'm between a 6 and an 8 - i went with the six, but it's definitely tight. i have a larger chest, and it's pretty low and sexy, though you could knot the laces at the top for a more modest neckline. i've also put shirts under it and it's a super cute jumper. i'm 5'1 and the dress (regular, not petite) hits right below my knee.",5,1,5,General Petite,Dresses,Dresses +1110,55,A dress fit for a woman,"I?ve been looking at this dress online for some time now, but i?ve been put off by the photo of the woman wearing it on the boat. it just did not seem right. but then i saw it in the store and i was sold on it. it is a wonderfully soft, linen dress. it is a bit tight in the midriff, so i had to size up a bit. i usually wear a size 2, but went with size 4 this time. size 4 fit perfectly. it is comfortable, easy to wear, just the right amount of sexy. it will be a nice every day dress for summer i",5,1,12,General Petite,Dresses,Dresses +1110,59,Great find,"Love this dress. i have it in white. just washed it in cold water in the machine and it still looks like new. very cute and comfortable. i stitched up the slit a bit, i am older, but otherwise, perfect.",5,1,1,General Petite,Dresses,Dresses +1110,39,Perfection!,"I absolutely adore this dress! the beautiful details and shape make it so much more unique and special than your typical linen dress. it's effortless, yet still a showstopper. i am a size 4 with hourglass shape and my normal size 4 it fits me like it was made for me. it's not too tight in the ribcage, yet it is slimming and flattering. not matronly at all! the laces can be worn tied up for a more modest look, or worn untied for a breezy, casual, a bit more sexy look. i will be wearing this dress",5,1,0,General Petite,Dresses,Dresses +1110,35,,"Yes! yes! yes! +i buy a lot of dresses from retailer, and about once a year i hit the jackpot with a dress that hits all the marks! this dress is it! + +i bought the white linen version on a whim. i never buy white dress because, 1. i don't want to look bigger than my pear shape already is, and 2. i like red wine and i that's risky in a white dress! + +i don't know how this designer did it, but this dress is amazing! it's slimming and flattering and summery and current. and i am two sizes bigger",5,1,6,General Petite,Dresses,Dresses +975,37,,"This jacket fits just a tad big, but it's quite comfortable. it's the perfect touch to dress up jeans! i've gotten lots of compliments.",4,1,0,General,Jackets,Jackets +1110,51,Love this dress,"I saw this dress online and loved it. i ordered the blue denim one in my usual sizes an 8 and 10, but i think the 10 was sized wrong. anyhow, both were too small, so when i returned them, they were in the store! i ended up with a size 12 which fits great, with a little bit of room. it is light weight, simple but fun and very comfortable to wear. i have received many compliments on it on my first day wearing it. i also ordered it in white, thinking that i might prefer that color, but when it arri",5,1,0,General Petite,Dresses,Dresses +863,41,Not as it seems..,"I'm always looking for pieces that would good for either layering or worn alone. this looks cute on the model, but when i received it, it's actually very flowing. i wanted more of a straight cut. doesn't work very well on my body. i'm 5'3, 123 lbs., 34-d. it's going back.",2,0,3,General,Tops,Knits +1089,53,Three strikes,"I am now the third person to try this dress and return it for the same reason. the empire waist is too high and hits across the bust instead of underneath it. i can't imagine how they got it to fit this model so well. i am petite and i really love the idea of a maxi with sleeves, so i decided to try it even through the two previous reviewers reported this issue. unfortunately, i had the same problem. i am a c+ cup size. perhaps this would work on a very thin figure with a small bust. i ordered t",2,0,13,General Petite,Dresses,Dresses +1110,51,Recommend with a but,"The double seams down the front of this elongate; the material is light and would work spring through summer, kind shape. even though the dress hits below the knee, the buttons end mid thigh and make it cute rather than matronly. here's the but: +the rib cage area is very fitted. i'm a 6-8, in pretty good shape, and that is not a ""problem area"" for me. however, in this dress, it was. there was no way for my figure to pull it off. from behind, in both 6 and 8, every bundle of skin seemed ample. i",3,1,28,General Petite,Dresses,Dresses +818,50,Lovely color but flimsy!,"I am on the fence about this top. i like the color but i'm not sure what to make of the style. the top part of it, around the chest and straps is lovely and flattering, but the bottom flairs out way more than i like. the back is longer than the front and it's almost a pregnancy top in how much it flairs. it's also quite thin and flimsy material given how expensive it is, even with the tag sale. the color, pattern and the chest part of the top is nice enough that i may keep this one, but, as i sa",3,1,0,General Petite,Tops,Blouses +1110,39,,"I love this dress! it is more of a thick cotton linen than actual denim. it fits true to size in the sense that i am usually a size 6, but i would say it is smaller on top than normal size 6 dresses. i am 5' 8"", small busted, and a ""pear"" shape, so i like the more fitted style of the top with the a-line skirt. i love the length hitting just below the knee. it is flattering for my body type. seems well made and at a good price point.",5,1,0,General Petite,Dresses,Dresses +851,59,,"Its a beautiful print and design. the shirt overall is a little short but untucked it can work. i dont know why everybody is making these short square little tops. overall, i am intrigued with the whimsical print and i like that enough to overlook the length.",4,1,0,General Petite,Tops,Blouses +851,38,Gorgeous blouse,"This is a stunning blouse! you can't tell from the photo, but it looks very 1930-1940's. i am so happy with this blouse, it is gorgeous. i'm an xl, and purchased this blouse in xl and it fits wonderfully. it fits nice and flowy and i feel i don't need a cam underneath. i highly recommend it!",5,1,0,General Petite,Tops,Blouses +1110,51,The white dress is extremely see-through,"I ordered the white ""denim"" online and was very disappointed by how thin the material was. i had tried on the light blue denim in the store and it had a nice weight to it. the style is wonderful and the fit is very flattering, but too sheer for me to wear outside the house!",2,0,1,General Petite,Dresses,Dresses +975,48,Amazing jacket!,"Don't be put off by the sparkle! this jacket is amazing. lovely detail with the print on print with the sequined patches. i love this retailer in house brand, elevenses. i take a medium in this brand( 8/10) and the medium fits full with room like a bomber style would offer. i had tried a small in my local store and it was not a small -small so if you want a tighter fit then go for a small. but i like thinks to have a more fluid feel. i have a 34 dd chest as reference. i plan to wear this in spring",5,1,3,General,Jackets,Jackets +1110,55,Great linen dress,"This dress is cute and the a line style is quite flattering. a few minor issues: fabric is linen not denim as the name states, petite sizing is still a little large and back zipper doesn't zip down far enough to step into so has to be pulled over head (not that big of a deal). for reference i'm 5'4, 120, 32d and i ordered a petite size 4 and it was a bit large and fell bellow my knees. will be returning for a size 2. fingers crossed!",4,1,25,General Petite,Dresses,Dresses +975,46,,This jacket is so pretty and fits amazing! i ordered the size small and it fits as expected. i normally wear a size small and a size 4.,5,1,1,General,Jackets,Jackets +863,64,Very cute,"A couple of months ago i bought the white in this top in my usual size small. it's cute & flowy & like to wear it with ankle or capri leggings. have worn with shorts as well. casual & cute! plus i love cotton anyways. 5'3"", 117#. think i'll go ahead with the other colors since the heat will be arriving soon....",5,1,0,General,Tops,Knits +659,23,Love! my new favorite swimsuit!,"This top is beautiful. i would say the pink stands out more in the print in person than in the picture, and it's gorgeous. the adjustable strap is nice. there is just enough padding in this swimsuit to feel protected without being bulky or worrying about it moving around in the top. this is seriously my new favorite, could not recommend enough! + +for reference, i am a 34a, and purchased a small.",5,1,0,Initmates,Intimate,Swim +1089,31,Loved it,"I did not experience the issues the other reviewers mentioned. wore this to a wedding last month and received many compliments. beautiful, comfortable dress. the bust fit well -- slightly large on me (i am *just* a b) in the size i needed, but not horribly so. love this dress!",5,1,3,General Petite,Dresses,Dresses +1110,44,Hourglass figure gals rejoice,"This dress is very feminine and flattering on, especially for hourglass figure gals. i usually wear size 4 regular in this brand but i sized up to 6 regular (i'm 34b, 26 waist, 36 hips). when it's very fitted on top, i like my dress to be a bit longer. the bottom hem falls about 2 inches longer on me than shown on the model (i'm 5'2""). it feels tight when first zipped because the dress is cut to fit the curves of a woman, but it loosens up after a few minutes of wear. the design of this dress is",5,1,2,General Petite,Dresses,Dresses +1110,38,Fabulous spring/summer dress,"This dress makes me looks curvy,thin and sexy! i tried on almost every dress in the store in every style. this one was a winner. i bought 2 others but this one was my favorite. i'm 5'5"" 130 (32dd) sz4 fit perfect. the picture on-line does not do it justice - you must give it a chance and try it on for yourself. it looks like an average dress on the model - if you have curves you'll love this dress!",5,1,6,General Petite,Dresses,Dresses +863,49,"Simple top, love the shape","I actually love the fit of this t. the photo of the model does make it look more of a straight fit - but i love that it has more of a flared shape. the armholes are high enough that it covers that bit of arm chub i hate, it swings out enough that it looks a little dressy and a little more special than your basic t, and it drapes nicely even over my curvy shape.",5,1,0,General,Tops,Knits +1059,53,Will pass on these,These look much cuter in the picture than in person. i found them to be very thin and cheap looking. i am pretty sure you could find a similar pair at a budget department store.,2,0,28,General,Bottoms,Pants +1059,33,Excited,I'm really excited that retailer is selling basics. i love the flow of this fabric and it does not cling. i haven't worn them yet but they'll be perfect for work. i look forward to trying on the other essential styles.,4,1,0,General,Bottoms,Pants +834,44,Not flattering on anyone,"Disappointed, the cut of the layer makes anyone wearing it look pregnant. even the model in the picture the way that layer hangs.",2,0,0,General,Tops,Blouses +1085,56,Not a rich style...,"The fabric and its texture didn't meet my expectations unfortunately. there were too much fray and cast-off of edge yarns of a fabric... +however this will fit if you wear over the swimming wears.",2,0,4,General Petite,Dresses,Dresses +829,49,Great staple,"This shirt is the perfect go-to; classic white button down, with a twist! the fit is flattering & i would have to say runs a little large. i am 5'4,124 lbs, broad shoulders, with a 36d bust and bought the 2 (outside of retailer, a 36d usually needs about an 8). i was worried what may happen when i wash it because it fits perfectly but i washed it in cold & hung it up to dry & it was fine.",5,1,5,General Petite,Tops,Blouses +1085,50,Definitely a summer dress,This dress is tricky. the fabric is very thin and the under slip it comes with runs small. i wear it with my yoga shorts underneath. the fabric is a very thin linen. my husband loves me in this dress so that a huge pro. its very light and cool perfect for the summer time.,3,1,2,General Petite,Dresses,Dresses +829,54,Flattering,"This top is a must have for summer. it is light and accentuates the figure. i'm 5'3 and many tops overwhelm me, but this is shorter in the front and a touch longer in the back. the cotton is very nice and it has a somewhat wider hem. if you have hips this somehow makes them look narrower. +if they had additional colors, i would have bought them all. i'm a 36c and the size 8 was perfect.",5,1,8,General Petite,Tops,Blouses +1044,41,Cute and comfortable,"Just buy these! i bought the olive green color and loved them, so i bought the navy blue. they fit true to size, i'm a size 4 and bought the 27. they are comfortable and make your bum look good. i prefer skirts, dresses and shorter pants like these gauchos instead of shorty shorts during the summer, and these will be something i wear all the time in warm weather. you can wear them casually or dress them up.",5,1,3,General,Bottoms,Pants +829,39,Classic,"I tried this top on with a pair of white shorts, half tucked, and it looked really classy and nice. the fit was loose but flattering, it is a tiny bit sheer, but i was wearing a magenta bra, so perhaps i am biased. overall, i think this is a good basic addition, to a summer wardrobe, can be worn with a nice skirt, or with jeans as shown here. the 0 (or xs, can't remember) fit me at 115 lbs, with 30dd chest.",4,0,4,General Petite,Tops,Blouses +831,33,Dissapointed,I agree with the other reviewer that the color of this top is more burgundy with purple undertones rather than a deep red like shown online. the fit was very boxy on me and it did not look flattering. i was not willing to to have it altered so i returned it.,3,0,0,General,Tops,Blouses +829,29,Wanted to like this more,"I really wanted to like this top, but couldn't seem to find the right fit. i tried it on in 3 different sizes and none of them were right - they were either too wide in the hips, or a little narrow in the shoulder. it is cute overall though - and a good way to do a short top, without feeling like you're in a ""crop top""",3,0,7,General Petite,Tops,Blouses +829,49,Great fun top,"Nice quality, not too thin like most white tops and the arms are cut just right. perfect length too.",5,1,3,General Petite,Tops,Blouses +1111,33,,This dress is amazing. it is comfortable with great fabric and very high quality. if you have a lot of curves it may not be the best dress as it has no give and flows straight down from the shoulder.,5,1,1,General,Dresses,Dresses +1082,57,Awesome colors and shape,"This dress is gorgeous!! amazing colors, drape and bra friendly if ur not too big chested. i can wear this w a strapless bra and the tie in back does work.",5,1,1,General,Dresses,Dresses +1044,24,Vintage-contemporary fashion,"I purchased this gaucho as a gift for my mother. +at first, i was about to try it for myself because gaucho is a little trend nowadays. +but later, it turned out that it was a perfect fit for my mother. +it went well with her perhaps because she saved a lot of her fashion from 1980s. +it also fit well with contemporary fashion as well. +however, i think it matches better with vintage fashion than to contemporary fashion. +so, if you happen to save those ""good old fashion"", take them out and try",4,1,3,General,Bottoms,Pants +1044,51,Great cropped pants,"Awesome pants. they look a lot better in person than in these pictures. i got it in dark blue. they are very comfortable, and can be used day to night. if you like cropped pants and wide legs this one is a good option. it's a bit more dressy than other models, still look casual and fun. i may end up getting a couple more for myself...",5,1,8,General,Bottoms,Pants +1080,29,Could have been great!,"I wanted to love this dress, it looks beautiful on the model but it isn't the flattering, even on sale i am not sure if it would be worth it, it it runs pretty big.",2,0,5,General,Dresses,Dresses +831,60,Cute and different!,"More flattering than it looks on the model. comes in at the waist on me. i ordered it in blue, and it's very pretty; will go nice with a business suit but requires a cami underneath for work occasions.",4,1,0,General,Tops,Blouses +1059,46,Really cut pants,"With the pleats, probably need to tuck in shirt. these were too big for me, so need to return.",4,1,0,General,Bottoms,Pants +829,74,Cool top,"Impecable workmanship (overseas). i usually wear a petite 2 but ordered this in a regular size 0 and glad that i did. since it curves up on this side, it barely overs the waistband on my jeans. ordered this in pink but it's more of pale coral pink. the style is more of a semi-halter sleeve but it have snaps on the inside shoulders to keep the bra straps from showing or you can wear a halter bra. it's a very light weight cotton and flowing and it will be great for the hot weather.",5,1,10,General Petite,Tops,Blouses +1081,33,Cayucos tunic,"When this dress first showed up online, i liked it, but didn't buy it because i wasn't in love. retailer weekend popped up, so i decided to take advantage of the 15% off and ordered this dress. it shipped to me in no time! the dress is beautiful. the fabric is soft and airy. this is the first ""off the shoulder"" dress that actually stays off the shoulder. no riding up, no fussing! i suggest sizing down because this dress is slightly flowy.",5,1,7,General,Dresses,Dresses +945,32,Perfect for fall!,"This is such a cute top! i've learned to size down in swing tops or else they look way too big - in a sloppy way. i ordered the xxs (5'3"" and 110lbs) and it fits well. it'll look cute with my black skinny dress pants or jeans. i definitely recommend!!",5,1,1,General,Tops,Sweaters +1059,32,Cute and comfortable,"I'm curvy, and i often have trouble finding pants that don't have weird creasing and fit both my waist and thighs. these fit awesome, especially when i use the buttons at the waist to make it a little smaller. they do emphasize my hips, so if you're trying to hide hips, these aren't for you. i love them, though--they drape beautifully and feel great.",5,1,0,General,Bottoms,Pants +1044,45,Great product,"Fits well (true to size), very stylish and comfortable. i'm going to have to buy these in more colors!",5,1,0,General,Bottoms,Pants +829,28,"Simple, flattering, very summer","This tank is so classic and summery and i never want to take it off. it's very soft, and the fabric is decently thick. it hangs away from the body and has a nice swing to it. it works well for my very straight figure and small chest, but finding the right fit might be problematic for someone more blessed in the chest area than me.",5,1,2,General Petite,Tops,Blouses +1059,41,Super cute,"I feel slim and comfortable in these cute trousers. got compliments at work. they are definitely more of a work pant, due to the material. i think i could wear them outside of work (look-wise), but maybe wouldn't feel as comfortable in them after the hours of nine-to-five, due to the material.",4,1,0,General,Bottoms,Pants +598,36,Fine on sale,Totally pretty but not crazy flattering. a bit wide in the hip area if you are not tall. good on sale but i wouldn't pay full price.,3,1,0,Initmates,Intimate,Swim +1086,45,Summer favorite,This dress is so versatile. great summer wear!,4,1,0,General Petite,Dresses,Dresses +649,43,New favorite brand of yoga pants,Delighted with these. made in the usa was a big selling factor. great quality and fit. will look out for more active wear from this brand.,5,1,2,General Petite,Intimate,Lounge +1085,44,Nope,"I was so excited for this dress.. but sadly it did not meet expectations. the gauze fabric already had several snags/pullers in it. the underslip was very short and just cleared my derriere.(i'm 5'7"") i normally take a 10/12 and ordered this in a l.. it was somewhat clingy in the hip area but yet bulky on top. also, i like to have the first button open, but you could then see the v neck of the underslip and it looked hokey. it's definitely a thicker material than the previous plaid tunic holding",2,0,3,General Petite,Dresses,Dresses +1044,25,Fun and tons of compliments!,"I bought these pants in yellow for an event where i had to wear yellow. i was weary about the color but it is so great in person. it's a very bright lemon-y yellow. they're high waisted and very flattering. i'm 5'11"" and normally wear a 30 and they were a little too large but nothing a tight belt couldn't fix. they also hit a little bit above the ankle which initially i was worried about with the flare but it actually was a really cool look. i received so many compliments that day and am glad to",4,1,2,General,Bottoms,Pants +828,36,Love the back,Another cloth and stone success! love the back! denim goes with most anything!,5,1,0,General,Tops,Blouses +649,37,Aquarelle leggings rock!!,Love the bright colors! made really well!! super soft and vibrant!,5,1,3,General Petite,Intimate,Lounge +945,35,Nice fit - super cute,"This top fits exactly like the last photo, which was my hope. it is not as slim as the other images. it's a swing top and the arm holes are perfect size, and the mock turtleneck is not too high. the fabric is thick, so will be perfect transitioning from summer to fall.",5,1,4,General,Tops,Sweaters +1044,49,Completely cute!,"I'm so glad i tried these on at one of my local retailer stores. i didn't really think much of it online but they have a much nicer look and cut in person. i got the navy blue in size 27 which fit tts. i got a regular size vs. the petite size which i usually like to go with because i'm short but i actually found that they fell very similar to the model's length shown online. they seem so versatile, i'm looking forward to wearing these!",5,1,4,General,Bottoms,Pants +598,68,Not worth the price but looks good!,"I bought this scarf/dress for 20% off on mother's day weekend. i really like how it looks and can be worn over a bathing suit or just as a dress, but it is not worth the money. it is poor quality, a scarf stitched together with an attached chord that you tie around your neck. you can make this yourself or wait until it is at least 50% off the original price.",3,0,7,Initmates,Intimate,Swim +1059,33,Staple!,"Love these pants. they are so easy to wear and look really polished and put together. i bought all 3 colors but i had to go a size up so that they draped correctly on me. i am usually a 4 but bought a 6. + +i also love that they hit above the belly button so they work with longer crop tops. + +i do wish they came in more colors.",5,1,0,General,Bottoms,Pants +935,60,Warm and cozy,Love this sweater! it feels so soft and it slides right on over the head and neck. easy to wear. this is my favorite sweater. i wear it all the time. the lilac is a really nice subtle color as well. meant to be roomy.,5,1,2,General,Tops,Sweaters +829,52,The fit is the thing for this top!,"I normally avoid white tops because they usually don't have that pop,but when i saw the 50's styling on it i just had to try it. i came in to buy another top from their catalog but it was such a wow i walked out with it instead.",5,1,5,General,Tops,Blouses +1044,48,Nice quality pants at a great price,"I found these at my local retailer on the sale rack, in a moss green color. the material, cut, and overall quality of these gauchos is excellent. they will be a nice transition into autumn with a light top and a jacket. i got them in size 26, and they fit perfectly. highly recommended - with the 40% off of sale items, they cost $42 + tax.",5,1,3,General,Bottoms,Pants +1059,34,Great for work,"I got these in kelly green because i am tired of all of the black and navy in my wardrobe, and i was not disappointed. the pants are well-designed and drape well. unlike a previous reviewer, i did not find the fabric to be cheap, but it is light and a little blousy--not bad for a warm region like mine. this polyester fabric has two advantages: no fading and no wrinkles. a good staple for work.",4,1,2,General,Bottoms,Pants +1044,48,Even works for the petite,"Was worried these pants would make my 5'2"" frame appear even shorter, but no, they looked great and fit perfectly. very comfortable. love your pilcro brand, but will remember this brand for the future.",5,1,2,General,Bottoms,Pants +1104,58,Perfect dress for a casual outdoor wedding,"I fell in love with this dress when i saw it. i am usually a petite, so i knew it would hit me just above the ankle, but it works! what is lacking from the description is the under slip that comes with the dress. it is a knee length, cotton jersey slip that is bulky and uncomfortable - thus the 4 star rating instead of 5 star. i won't use the slip, so this makes the dress fairly sheer when backlit. otherwise, the dress is well made and the addition of the piping at the seams makes it special. i",4,1,3,General Petite,Dresses,Dresses +1059,34,Great!,"Tried them on in store. they were actually kind of sexy on. i have an hourglass figure and the way that these fit, felt sort of like a 50's/60's fit, accentuating and flattering my shape. +on my to get list.",4,1,6,General,Bottoms,Pants +1044,45,"Great fit, but high maintenance","I love a good gaucho/ culotte. these are very comfortable and fit is tts (i'm 5'9"" 145 and wear a 29). they are ironed with a line down the front, which i don't like, as it's always hard for me to keep the ironing straight. the pants have a little bit of stretch to them which is nice. since they're linen, they will require frequent ironing (which, i hate to do in the summer).",4,1,6,General,Bottoms,Pants +282,45,Mixed review,"I'm keeping these shorts because they are cute. i sized down as the previous reviews suggested and they fit great, but they are snug around the legs. i think i would have preferred a more baggy look, but then they would have been too big around the waist (had i ordered my typical size). they are soft and comfortable, the navy color is really pretty.",3,1,5,General,Bottoms,Shorts +282,45,Love these!,"I love these shorts! i know reviews say to size down and yes you very well could. but i like my shorts a little bigger so they hang on the waist and can wear a belt. they are so comfortable and the length is perfect! i love that they are loose around the thigh so they don't ride up while walking. i think they might look silly rolled down because they are so wide. i wish they had black, army green, and a dark wine. i would be in heaven!! i got the dark grey and the navy and am very happy.",5,1,3,General,Bottoms,Shorts +282,33,Great shorts,"Very happy with the fit, sizing, and look of these shorts.",4,1,0,General,Bottoms,Shorts +52,48,Cant go wrong,"I purchased these in taupe, mint, and coral. they are extremely comfortable and soft. they can be rolled up to 3 different lengths. i stayed in my regular size and the fit is great. i can see why they sell out so quickly. a must for summer season.",5,1,0,General,Bottoms,Shorts +282,48,Fave shorts,"I live in these shorts all summer long. they are so comfortable, soft and practical. i have purchased a couple of these every summer but this year they were so many pretty colors i ended up with 6 new pair.. they go with just about everything and are soft and perfect for texas heat. i stayed true to size on them.",5,1,0,General,Bottoms,Shorts +859,57,Great top!,"The photo does not do this top justice. if you pull the tie a bit, it shapes the blouse a bit. i have a few work tops from retailer that i treasure -- they look good, wear well, wash easily and drip-dry perfectly. this top fits the bill too. and it goes with navy, black or even wine-colored pants. grab one!",5,1,2,General Petite,Tops,Knits +282,41,Best shorts!,"I bought one pair last year and two more this year! i love them! they fit tts and the ""red"" ones look exactly like the picture.....more of a pink color. super cute color! buy these shorts!!!",5,1,1,General,Bottoms,Shorts +881,33,Boxy,Way too big and unflattering. i would love it to look like it does online but it's huge in person.,3,0,6,General,Tops,Knits +282,49,Love these shorts,I absolutely love these shorts!!! everything about them is perfect!! i have them in almost every color. they wash beautifully. i don't dry my shorts in the dryer. they fit the same as last years'. i'm thin & pretty straight with little hips. i wear them in a size 28. i tried the 27 & they felt a little snug. i don't like my shorts tight & i like when they can hang down a little with a belt or not (like the model in the picture). i don't find that they stretch out much after wearing but that coul,5,1,0,General,Bottoms,Shorts +282,54,Love. love. love.,"These shorts are perfect. not too short, but can be cuffed so not too long either. the fabric is soft and gets even softer after washing. bought two colors in the late spring and then recently added to my ""hyphen"" shorts collection. you can dress them up or pair with a casual t and flip flops. note - if you like your shorts loose, order true to size. they do stretch at the waist, so if you want them to fit true to size, order one-two sizes down.",5,1,0,General,Bottoms,Shorts +1095,36,"Ethereal, powerful, unique - once i put in darts!","This dress set my heart a-flutter, but i had quite a time figuring out the sizing. i literally ordered six different sizes, and when i put them on, they all seemed to look like a very beautifully embroidered and elegant tent. if only i could just nip it in a tiny bit at the waist! then it would look like the model does! (i actually think they probably pinned the back of the dress to get it to fit on the model). + +so i played around with it and ended up putting in 2 small darts in the front. and v",5,1,0,General Petite,Dresses,Dresses +1128,41,,This would be perfect except for the ridiculous attached scarf. the material is so soft and luxe. the colors are richer in person and perfectly go with everything. but the attached scarf ruins everything!! the scarf is not flattering and takes away form the cute buttons on the front. if the scarf could be removed it would be a great sweater coat. so disappointing.,3,0,14,General,Jackets,Outerwear +1033,40,Just okay,"I wear a typical 25 in coh jeans and i ordered these in a 25. they fit but they feel more like jeggings than skinny jeans. the wash isn't as faded out as in the picture. and at 5'2"" the rip is right at my kneecap. i bought these for the distressed wash, and will probably return this pair as it looks darker and less faded in person. i look nothing like the model does in this pair of jeans.",3,1,2,General Petite,Bottoms,Jeans +881,58,Short waist,"I loved this top but the cut was too short in the waist for my 5'8"" frame. wish it came in a tall size!",2,1,10,General,Tops,Knits +282,37,Different colors are sized differently,"I tried these shorts on in 5 colors and found a wide variety of sizing. in the dark grey and taupe i needed to size down one from my usual 28 to a size 27. in the sapphire, lavender and red my regular size 28 fit perfectly. i ended up purchasing the dark grey and lavender with a discount. i gave 4 stars for the variation in sizing but once i got the correct fit the shorts have not stretched out on me throughout the day in either color. the length is perfect, short enough to not look frumpy, but",4,1,14,General,Bottoms,Shorts +282,39,Comfy and ok for muscular thighs,"I never buy shorter shorts, my legs are so muscular that most are unflattering, but these were actually ok. they didn't look loose like the model, but hit a nice spot on the leg, and they have enough stretch to fit me nicely. i even bought the white color... unheard of! i weigh 115 lbs, all legs...",4,1,2,General,Bottoms,Shorts +282,41,Love these but color faded when washed,"I'm pretty disappointed in these. just bought the yellow pair and wore today for the first time. super cute and very comfortable. i was in love with them. they got two small stains on them from the day's activities ( and not even crazy, untreatable stains). unfortunately, the stains did not budge yet the color of the shorts washed out. they are completely ruined after one washing (on cold). i'm hoping this was a fluke and plan to order a second pair before they sell out. these will be going back",3,0,1,General,Bottoms,Shorts +859,54,,"Perfect top! i love the mix of materials, silky in the front and comfy knit in the back. the tie on the side is adorable and adds a little something special to the shirt. happy!",5,1,0,General Petite,Tops,Knits +282,43,New favorite shorts!,"I love these shorts. would buy them in every color! the colors are all fabulous and the fit is great too. not too short, not too tight. very soft comfy feel.",5,1,2,General,Bottoms,Shorts +282,48,Great casual short,These shorts are age-appropriate for all. they're loose fitting and cal me rolled up or left down where they end above the knee. the fabric is soft and colors are fun,5,1,22,General,Bottoms,Shorts +282,56,Summer staple,"Bought these shorts in the store, in navy and loved them so much that i ordered them in the taupe. for some reason, the taupe pair is shorter but they still fit beautifully. the fabric is ligher weight than denim so i wear them a lot. love pilcro!!!",5,1,0,General,Bottoms,Shorts +282,49,Color run,"I love the way these shorts fit and look; very comfy, but after laundering one time, the lavender color became blotchy. used regular detergent in gentle cycle and it looks like someone poured bleach on them in random areas & they are unwearable! i have several colors, but the only color that was a problem is the lavender. $58 for one wear was a waste. i hate to leave negative feedback, but be careful with laundering.",1,0,0,General,Bottoms,Shorts +1131,38,Great fall coat!!,"This coat is super cute and flattering. i am 5&amp;amp;amp;#39;8&amp;amp;amp;quot; and it comes almost to my knee on the back. i&amp;amp;amp;#39;m usually a small but got the medium in case i wear a bulky sweater underneath. comfy and warm, but won&amp;amp;#39;t be warm enough when winter hits without a big sweater underneath. great to throw on to walk the dog or hit the bus stop in style.",5,1,0,General Petite,Jackets,Outerwear +282,31,Love these shorts!!,These shorts are great! perfect length and this can be addicted based on how much you roll them up. i love all the colors. i've bought several pairs because of how comfortable and versatile they are!,5,1,0,General,Bottoms,Shorts +1095,33,It fits!,"I ordered this dress to wear for summer weddings this year. i am both surprised and excited that it fits. + +i normally wear an 18, sometimes a 16. stores like retailer are a place i go to admire fun cloths, but not to actually shop. i was concerned that the xl was going to be a fake xl- this happens sometimes. a brand only makes clothing up to a 12, so they're xl is really a 12. but not so! i feel like the xl could fit a 16 - 20. the l would probably fit a 16 as well. + +this dress fits in",4,0,6,General Petite,Dresses,Dresses +282,49,Comfy and cute,"Love these shorts. they do run large, i wear a 29 in pilcro and the 28 in these shorts fit comfortably with a bit of room to spare. the turquoise is definitely green, and not as bright as what i see in the online photo, but still a nice color. they have a funny smell but i'm sure that will wash out.",5,1,0,General,Bottoms,Shorts +52,33,Super comfy and cute,"These are some of the softest most comfortable shorts i own and wish i had them in more colors. i like that i an adjust the length of the cuff since it's not ""hemmed"" to a certain length. i ordered the pink/salmon color and they go with so much!",5,1,0,General,Bottoms,Shorts +1033,28,Whoa vanity sizing!,"I was extremely excited to receive these pants, given the two positive reviews. i'm a petite woman and have trouble finding jeans with the right proportions. i sized down from my normal size (27 to a 26) and was swimming in these pants. i would have had to go down three sizes to make these work. i'm not sure if i received a defective pair or what, but be cautious ordering these pants.",1,0,2,General,Bottoms,Jeans +282,53,Please bring back the grey/gray!,"I listened to the other reviewers and ordered down...silly of me! all plcro seem to run a bit large and do stretch out. i got the 25 in the lovely light grey...fit me, but too tight to be comfy. i usually wear a 25,26, or 27 in jeans depending on the style. unfortunately, there are now no more in the grey...too bad. this shouldn't happen at the beginning of the season....please please please bring them back in this great neutral color or a stone.....",4,1,0,General,Bottoms,Shorts +282,42,,"I ordered these in white and sized down from my normal 28 to 27 based on reviews and they are too small. i've seen with other pants/shorts that sizing can be off with different colors, so i'm guessing it's the same case here. i'll try ordering again in my usual 28 and hope that they will be a good fit. otherwise, nice shorts for the price.",4,1,1,General,Bottoms,Shorts +282,63,Do not buy it!!!,"This pants the worst short that i ever had!! +i bought ;this short last week and i laundry it yesterday and it came out lost color!! +i was really shock definetly will return it to store. +fyi, i never use chrolox or bleach when i laundry.",1,0,1,General,Bottoms,Shorts +282,49,,"Great shorts. i've been buying these for the past few years. each year, i add to my collection with new colors. i have 8 pairs now! perfect length and can be rolled if needed to show some more leg.",5,1,0,General,Bottoms,Shorts +282,43,I love these shorts!,"So glad i gave these a try last summer in the peachy pink color. this year, i got the darker grey. color is great- goes with so much-and they are so soft and comfortable. also love that these can work rolled up or down at the bottom",5,1,0,General,Bottoms,Shorts +282,28,"Comfy, summery",I bought these in a few different colors because they are so comfortable and perfect for summer. they fit true to size if you want a more relaxed fit. i sized down for one pair for a more fitted look.,5,1,0,General,Bottoms,Shorts +282,42,Wow,"I absolutely love these shorts! i wear a 28 in all pilcro and these are no exception. i would not have grabbed these to try on, but the person who put my clothes in a fitting room added them for me. first, they are definitely short when rolled twice, and i do not have skinny legs. in fact, i never wear anything that exposes my thighs because i really dislike them. for some reason, these shorts make my legs look great! i thought for sure it was the mirrors at retailer, but i still like them at home",5,1,0,General,Bottoms,Shorts +881,34,Very soft and pretty,"I am 5'1'' and most normal size retailer tops are too big on the armpits and neckline for me. +i don't usually go for peplum, but i was drawn to this top bc it was very soft. when i tried it on, everything fit just perfect and length was also right for me. i like slight stretch of this fabric which hugs body nicely. i would say you should get a size that fits nicely on chest area.",5,1,1,General,Tops,Knits +282,47,Something about these shorts!,I really like the hyphen pilcro chino pants so i figured i would try the shorts and voila' - i love the shorts too! colors are great and you don't have to cuff them if they seem too short - they're versatile and who doesn't love options?????,5,1,0,General,Bottoms,Shorts +881,39,Fun and unique,"I have been eyeing this top online and initially thought it was very fitted and structured as it appears on the model. upon trying it on at the store, i agree with other reviewers it is a tad boxy. i ended up sizing down to a small and it fits nicely. (5' 8"", 145, usually i take a medium or 6/8 in retailer tops). i can see where this might not work for everyone, but i found it to be a fun take on a classic ""tweedy"" look. i plan to add a pop of color with jewelry or even pair it with the pin",4,1,3,General,Tops,Knits +1095,70,Most beautivul fabric ever!,"This dress is lovely and the fabric is sensational. + +the slits on the two sides of center front are really cool too. + +i am 5'7 and it was way too long and i would not have it hemmed at it would remove the gorgeous +lotus pattern near the base of the skirt. i only wear flats at 70 but hope this fabric appears somewhere else +sometime. it is truly a gorgeous dress for a taller person.",5,1,4,General Petite,Dresses,Dresses +282,25,Great fitting for women with curves,I have had a hard time finding shorts as i have a smaller waist and bigger thighs. i am 5 ft 4 and weigh 125 lbs and i wear a size 25/26 in jeans i bought a size 26 in these and they fit great. i wouldn't size down if you have thighs as i like some room in mine.,5,1,8,General,Bottoms,Shorts +881,29,,"I want to love this shirt but it isn't happening. the proportions shown on the model are not how this shirt ends up fitting. the fabric is super soft and the pattern is great, if the fit works for you.",3,0,0,General,Tops,Knits +282,34,Love pilcro!,"First let me say that i've recently fallen in love with the pilcro brand. i love the pilcro hyphen chinos and needed some new shorts for the summer. i have extremely muscular legs and have a hard time finding shorts that look good. i was hesitant to try these on because they said the inseam is 4"" but one other reviewer pointed out that they are a good mid-length if you unroll them, so i just went to try them on at the store, and what do you know? they are exactly that! unrolled, they come about",5,1,0,General,Bottoms,Shorts +817,49,Super gorgeous!,"The quality of this top is quite high. it feels like silk. the print is lovely, showy without being too over the top. i love it and would highly recommend it.",5,1,1,General,Tops,Blouses +859,39,A favorite this season,This top is totally adorable. it's one of my favorite retailer tops this season. i wear it with jeans or even red skinny pants and i get tons of compliments on it. it fits true to size and the material is washable and durable.,5,1,4,General Petite,Tops,Knits +881,52,Perfect for party,"I was looking for a lightweight top to wear with black linen trousers to a party, i was not sure of this top seeing it on a slender model (i am a more typical 50 year old mom body) and i have never worn a peplum style. i put it on for my husband and approved, so i wore it. i received many compliments - a few from good friends who congratulated me for going out of my 'comfort zone' with the style!",4,1,0,General,Tops,Knits +282,28,Love and disappointment!,"These are my all time comfiest shorts and i am obsessed with the lavender color. sadly, using free and clear detergent on a cold, delicate cycle made the color turn splotchy, and they are unwearable. this happened once and i exchanged for another pair, but i'll be returning this pair. i'll be sad to see my favorite color go, but there is obviously a defect in the dye used. maybe i'll try another color!",2,0,0,General,Bottoms,Shorts +282,41,Great shorts!!!!,"I purchased two pair (navy and sky) for a trip to the caribbean and i'm so glad i tried them on in the store! these are the nicest fitting and most comfortable shorts i own by far. would highly recommend, well made too.",5,1,5,General,Bottoms,Shorts +818,36,Pretty,"Falls nicely. pretty peachy pink color. darker than pictured. bought sz l, 5'8"" 175lbs, am busty. very nice fabric, prone to wrinkles.",4,1,9,General Petite,Tops,Blouses +282,51,Go to shorts!,These are great wear- anywhere shorts. they are not too long and not too short. they are very soft and comfy. i ordered a size 6 and after wearing them a couple of hours i found that i should have gone with a size smaller perhaps. i will still keep the 6's for wearing around the house .,5,1,0,General,Bottoms,Shorts +1128,40,,"I really love this coat! it is beautiful and very comfortable. while the attached scarf does cover the cute buttons, i'm glad it is there! it comes in handy when the temperature drops quicker than anticipated. the only thing missing on this coat is a lining as soft as the exterior.",5,1,6,General,Jackets,Outerwear +282,29,Perfect shorts,I absolutely love these shorts and have them in 3 colors. they are a great price point and comfortable fit. be careful with washing as the darker colors seem to bleed.,5,1,0,General,Bottoms,Shorts +282,39,Best shorts around in years!,"Wonderful flattering fit, mostly cotton so very cool and huge color selection. i bought 3 pair. thrilled with pilcro. +only thing that could make these better would be if made in the usa. cuffs roll down if you want less sun.",5,1,0,General,Bottoms,Shorts +1095,33,Burlap maternity dress?,No. this is one of the most unflattering things i've ever put on my body. i'm a very well-proportioned hourglass - i tend to wear a small despite a booty and 36d chest - this made me look huge. don't do it.,1,0,1,General Petite,Dresses,Dresses +862,28,Too pricey for the product,"I like this top. i received a ton of compliments when i wore it to work, but the material doesn't feel as high-quality as i had expected from the pictures online. it wasn't worth it to me to send it back, but i doubt i would have bought it if i had tried it on first.",4,0,9,General,Tops,Knits +282,41,Love these shorts!,"I absolutely adore these shorts and pick a few colors every year. like last year, these do run big so do size down. the length is perfect to roll them as much as you like. they look great after washing and wish they came in more brighter colors. love these and highly recommend these!",5,1,4,General,Bottoms,Shorts +817,60,Amazing top!,This shirt is amazing. the pictures on the model do not do the shirt justice! the shirt is a bit longer in person than shown on the model. the colors are also more vibrant. the material is so soft and has great flow. i am excited to dress it up for work with a pencil skirt and have the option to wear with skinnies and a cute sandal on my off days.,5,1,0,General,Tops,Blouses +282,43,Favorite shorts ever,If i could get these in every color i would! these shorts fit so well and the quality is really nice. i wear them with t-shirts or dress them up with a blouse. i'm a mom in my mid-40's and its hard to find a decent pair of shorts that fit me without being too long or too short - these fit the bill.,5,1,0,General,Bottoms,Shorts +282,38,Just what i needed in a summer short,"I was running low on good summer shorts and thought i'd try these based on having a pair of the pilcro cropped pants i got a couple months ago. i tried these shorts on in-store to make sure they fit right and that i liked how they looked but then bought them online (more colors were available in my size than what they had in store). i bought these in 3 different colors and i absolutely love them all! they are my go-to shorts now, they look good with the legs rolled up or down, and i will be wear",5,1,0,General,Bottoms,Shorts +282,32,Perfect,"These have an amazing fit! i have them in three colors. they are not too low rise, they are not too high. they are the perfect length. the only thing i do not like is the rolled cuff is not stitched and comes down easily if you do not iron down.",4,1,0,General,Bottoms,Shorts +818,57,Simply beautiful.,"A romantic find. light and airy. the color is slightly darker than shown. the soft, subtle ruffles give it just the right touch.",5,1,7,General Petite,Tops,Blouses +1094,23,,"Another excellent maxi dress by ranna gill. usually this brand of dresses tends to run small in the bodice requiring me to go up a size but i found that this dress ran true to size. i got a petite as well cause the standard size was a touch too long for me. very happy with the color, quality and uniqueness of the dress!",5,1,0,General Petite,Dresses,Dresses +1086,26,Perfect for summer!,"I'm 5 ' 5"" and 132 lbs., 34d and the size m is perfect. i will probably wear a thin, long cami under it as it is slightly see through. it doesn't gape under the arms like some sleeveless items...it fits smoothly. as the other review mentioned, it would be a perfect swim suit cover up. but i'm going to wear it more as a casual, very versatile, perfect for a hot day summer dress!",5,1,3,General Petite,Dresses,Dresses +1022,38,Love these jeans!,"This is my second pair of these jeans (i ruined the first pair and immediately ordered a replacement). wear them all the time. i did go up one size to get a better fit (i don't exactly have slim thighs--ha!), but other than that, they are pretty perfect!",5,1,0,General Petite,Bottoms,Jeans +1030,38,So long,I liked the cut and color. seemed like good quality. i'm 5'5 and theses were so long. i had to fold them up like 6 inches not to step in them,3,1,0,General,Bottoms,Jeans +872,38,In love,This top is amazing. so soft and the off the shoulder part stays where it belongs. i'm usually a large but got this in a med. fits perfectly.,5,1,0,General,Tops,Knits +984,34,Perfect for fall,"Been searching for a denim ""trucker"" jacket since last fall and was happy to see that retailer had this in stock, purchased it online without thinking twice. typically, due to my small upper frame, i'm 5'4, 130lbs, 34 a for referance, i'm between a size small and an xs. bought both and opted for the size small when it arrived. +i love the fit, slightly cropped in the back and i also like how it""s lined inside. great quality and perfect for fall!",5,1,9,General,Jackets,Jackets +872,52,,"Really like this top. colors are great for summer into fall and beyond. can be worn on or off shoulder. it is longer, but not tunic length. covers your bum. i haven't loved a couple of other off shoulder tops i got at retailer, but this one i do. the fabric isn't ""puffy"" so i don't balloon out under the bust. i am 5'6"" 123lbs and 32d. got the small because i wanted length. would have even got the medium but the neckline was too wide.",4,1,6,General,Tops,Knits +945,22,Perfect,"I've received so many compliments. it's comfy and cute looking. the sleeves are a little short--which i wasn't expecting, but i love it nonetheless. just putting that out there in case you couldn't tell from the picture. i ordered an xs",5,1,7,General,Tops,Sweaters +1094,28,Fall transition dress,"This is the perfect dress to transition into fall, either dressing it up with wedges or down with a leather jacket. i have never purchased this brand, ranna gill, but needed to size up which is rare for me when i shop at retailer. it is comfortable and lightweight. i marked it down one star on quality because for the price, i have already noticed some of the black lace stitching coming undone.",5,1,0,General Petite,Dresses,Dresses +945,23,Not for me,"I ordered this with another sweater to compare the two, hoping that one would be what i was looking for. the stitching on this sweater is beautiful so i honestly expected to keep this one. i was looking for a cardigan that was on the longer side as i wear leggings often. this cardigan was not as long as it seems in the picture (hit at my hips, 5'10"" tall). the material seems stiff and a bit rough. the sizing is a bit boxy because it is wide/big cardigan but also short. the stitching was just as",4,1,2,General,Tops,Sweaters +1094,62,Gorgeous but super overpriced,"Yes, this is a beautiful print and fits perfectly...but it's unlined thin polyester. full price is pretty ludicrous on this one. tts, but might need to size up if you have a larger chest (no stretch). hoping to grab on sale.",4,1,1,General Petite,Dresses,Dresses +872,48,Great top!,Loving this top! the material is lovely and high quality plus the design is very flattering on body. perfect for cooler evenings out. did i mention super flattering?,5,1,0,General,Tops,Knits +984,39,Great shape,"I purchased this jacket and the levis sherpa denim jacket for comparison. i chose this one over the levi's jacket as this one had more shape/curve to the bodice, which i wanted. i am usually a small but needed a medium in this jacket-- i have wider shoulders, 34c chest, 28"" waist, 38"" hip, 5' 4"" 120lbs.",5,1,0,General,Jackets,Jackets +1094,41,So beautiful!,Love the way this feels ? epic and flowy and flattering ? and features my shoulders and de-emphasizes shape and size from waist down. waited for it to go on sale and it paid off. i'm wearing it to a wedding this weekend. i can't wait to show it off! highly recommended.,5,1,0,General Petite,Dresses,Dresses +21,55,Love love love,Just like the afterward lace cardigan i love this so much. i've had the black and white for about 2 years now and they are still intact! only the buttons fall off once in a while but that's when i'm being aggressive and on the go buttoning. the cardigans from this year just add to my knitted and knotted collection!,5,1,0,General Petite,Tops,Fine gauge +1094,33,Elegant and fun,Bought this dress for my boho bridal shower and loved it! it was perfect for the season and fit like a charm. i normally wear a 4-6 and needed the 2 so heads up that they run a little big.,4,1,0,General Petite,Dresses,Dresses +984,42,Classic and edgy all-in-one,"I haven't owned a denim jacket since college, but i felt inspired this season. this pilcro jacket is perfect. a little distressed along the edges, tailored fit, and i love the cozy collar. looks expensive. fits really well.",5,1,4,General,Jackets,Jackets +1094,30,Gorgeous top to bottom,This dress fits perfectly and is travels wonderfully through the seasons! the color and cut is really flattering and flows nicely!,5,1,3,General Petite,Dresses,Dresses +872,46,Perfect summer to fall top,"I bought this in late august and have been wearing it ever since. i love that you can wear it either on or off-the-shoulder. the second option adds sexiness even though the top is flowy, comfortable, and easy to wear. on the shoulder i've even worn it to work on casual friday. the print is versatile, and i like that the fabric has a little heft while still being soft and drapey. i definitely recommend, especially since i notice it is now on sale!! it is generously sized, so i'd recommend erring",5,1,0,General,Tops,Knits +1086,47,More colors please!,"I really love this dress and want to buy it, but i won't buy it in white. it is just too easy to get dirty. i would love a pretty blue or even a darker yellow.",4,1,2,General Petite,Dresses,Dresses +988,25,Really close to liking it - but planning to return,"The print of this skirt is so fun. i love how it's styled on the model, and i could see it being very versatile. i decided not to keep it because, mainly, it is pricey and i'm afraid it'll get easily damaged. if i would wear it, i think i'd be worried about sitting on a dirty chair or spilling something on my lap and it being really visible-- and then having to upkeep it through dry cleaning. the fabric's nice and good quality. but honestly, if the skirt were cheaper and the fabric were cotton a",4,0,2,General,Bottoms,Skirts +872,66,Adorable but different than i expected,This top caught my eye right away and i had to have it! i am obsessed with everything off the shoulder and this is a great transition piece to wear that off the shoulder look well into fall. i was expecting the fabric to be a little lighter and i did't realize there would be a ribbed texture to the fabric. the shirt is also very long and i feel as though it runs large. that being said it looks super cute on and i intend to style it just as shown in these pictures with zipper accented skinny jean,4,1,5,General,Tops,Knits +872,41,On trend,"Cute off-the-shoulder top with a dark floral motif totally on trend for fall. as previous reviews mentioned, material is ribbed, which makes it look a bit like corduroy. but, it is not thick so it just makes it seem more appropriate for colder weather. i think it will be great with skinny jeans and a choker.",4,1,0,General,Tops,Knits +988,26,My heart broke a little when i received this skirt,This skirt for sure was the most disappointing thing i've ever ordered from retailer. it looks like an all white skirt that has a little stiffness to it but looks are deceiving. it has this weird checkered patten and there is no shape to the skirt at all. there are also weird stitching lines. one more thing that i didn't like about the skirt was that it's a cream-ish color. not even the cute flamingos will make me keep this skirt. it's going back.,2,0,3,General,Bottoms,Skirts +921,32,Love!!!,Love this cardigan. the quality is beautiful and and comfortable. i think the cable stitching and pockets add such a unique touch.,5,1,1,General,Tops,Sweaters +1094,36,,,5,1,0,General Petite,Dresses,Dresses +1086,48,Too sheer,"The dress is beautiful on the model. in person it's sheer, but i could have dealt with that if the fit had been great. i am 5'4"" and the petite was too short and the regular too long. both are very boxy and seem to run big. even the size small in both petite and regular were too big on me and usually in cloth and stone size small is perfect. i really wanted to love this dress but ended up returning several sizes in my attempt to find the perfect size.",1,0,0,General Petite,Dresses,Dresses +872,66,Not for me.,"I didn't plan to wear this off shoulder. sadly the neck is too loose and big if worn on shoulder. the fabric is nice. i liked the vintage looking design that's black with purple flowers. the body has a lot of fabric and although i ordered size large, i would size down to a medium if i were to reorder. don't think i will, though.",3,1,2,General,Tops,Knits +1094,22,Love love love this dress,"I absolutely love the color, cut and style of this maxi. the high neck and drop waist are both so flattering! the color and design is gorgeous as you'd expect from rana gill. i got my normal size 8 and it was perfect. i would have expected the fabric to be a little heavier but it works as a late summer early fall dress",5,1,2,General Petite,Dresses,Dresses +984,28,Stranger things look,"I got this jacket after being inspired by the looks from stranger things, and love that the fuzzy collar style is coming back! i tend to wear medium shirts and large jackets/coats to fit my long arms, and the sleeves are a great length for me. the lining has a gorgeous pattern on the inside too. the buttons were difficult to button at first, but became easier over time as the fabric softened. i also bought a pilcro skirt and it's comfortable too, so overall i'm very happy with this brand.",5,1,0,General,Jackets,Jackets +872,55,Great casual or dressy top,"I was really suprised when i received this top. it was a knit (more like a t-shirt material), which i really like. this way you can wear casual as well as dressing it up. it is not see thru at all and it stay off the shoulder. the one thing i dont like is the elastic band at top is too wide. but overall ita s keeper!",4,1,1,General,Tops,Knits +1022,57,So happy i treated myself!,"I love these jeans ~ the are so soft, so comfortable, nice fabric weight...not too heavy or stiff at all, very flattering, best of all they move with you, but do not completely stretch out by the end of the day ~ i am on retailer site now to purchase another color~",5,1,2,General Petite,Bottoms,Jeans +1086,22,Cute but needs a lining,"I love cloth & stone clothes and have this version in a long sleeved shirt. it is a little boxy, but the weight of the fabric helps with hang of it. i love the feel of the fabric and the weight of it for a summer dress, yet it is too sheer for a summer dress. it needs a liner or little cami dress to wear under it to keep it from being see through, however, for a texas summer, that defeats the point of a loose, easy dress to throw on. i sadly sent mine back.",4,1,0,General Petite,Dresses,Dresses +732,43,Unique little socks,Unique pattern. got lots of compliments! great fall accessory!,4,1,0,Initmates,Intimate,Legwear +868,36,Not good,"I loved this color and ordered it online because i thought it would work for both casual and work days dressed up a little. ummmmm, no. it's weird and boxy and does not look at all like it does on the model. i think maybe if you have no bust whatsoever and size way down it would look okay. i'm only a 34b, weigh 110 pounds, 5'3"" and it made me look huge and awkward. this is going back!",2,0,5,General,Tops,Knits +872,42,Must have!,"Love this top! i just purchased this shirt from my local retailer store. i noticed it when i walked in and saw it on display. it's stylish, comfortable, and subtle. it runs large so size down. normally, i wear a medium in retailer tops but needed a small. the flower print is small and the colors are muted against the black. pairs well with several colors: black (like model), dark denim, olive green, and mauve. the display had it tucked into a soft khaki colored pair of pants that worked as well.",4,1,2,General,Tops,Knits +1094,39,,"I usually have to order a size up in ranna gill dresses because of tight bodices. i did this time and it's too big, so i would stay tts or size down depending on your bust size. color is more moss/olive (green with a gray undertone) than shown online. no liner and the fabric is a smooth polyester that feels more summer weight than autumn. gorgeous embroidery on the chest. teeny tiny neck button closure and fussy side zip. i am 5'3"" and purchased petite but it is still too long unless i wear my f",4,1,6,General Petite,Dresses,Dresses +868,33,Doesn't wash well :(,"I purchased this top on sale and was really excited about the style. it fit great the first time i wore it. i washed it once, according to the care instructions. after washing it in cold water and allowing it to air dry, it was basically ruined. it shrunk up in length widened out about two inches. i'm pretty bummed about it because it was cute.",1,0,3,General,Tops,Knits +872,36,Love it!,"Saw this in the store and immediately liked it. when i tried it on, i loved it. colors are muted, and the style is very flattering. the fabric drapes nicely but is not too heavy, which is perfect for me to wear all through winter in the south. length is perfect for me (5'8""). it does look great off the shoulders, but i also think it can be worn up on the shoulders for a more work-appropriate look. it does run slightly large. i wear a large, but went with a medium in this one so it wouldn't be to",5,1,0,General,Tops,Knits +1086,52,"Simple, well-made dress, but needs a slip","This dress was almost perfect, but the white was just a bit too sheer to be worn without a slip. i wear a lot of cloth and stone pieces, and i generally like the fabrication, which is a bit thicker than some. in a top, the white of cloth and stone is sheer without being vulgar. however, translated to a dress it becomes a bit too sheer in certain areas. even with a nude bra and underwear, i could see everything. it might make a good bathing suit coverup, though. +the fit is tts: 36c, broad should",4,1,23,General Petite,Dresses,Dresses +1094,32,So flattering!,"I bought this dress to wear for our upcoming family pictures. i don't think the image does the dress justice - the fit is so flattering and slimming. i feel like it can easily be dressed down too, with a cute jacket in either denim or leather. the material is thinner, and it does wrinkle a bit. the price tag is a tad high also for a thin maxi dress, but i just had to have it. :)",5,1,0,General Petite,Dresses,Dresses +1123,52,Worth the investment!,"This vest is a stunner! the dark brown suede is so beautiful. the bronze grommets on the front are a perfect enhancement to the vest. it's hard to see in the picture but the stitching is also top notch. yes, it is a little pricey but it's an investment piece that you will wear and not only get a ton of compliments but feel special when wearing it too. it's a keeper!!!",5,1,2,General Petite,Jackets,Outerwear +872,34,Great fall top!,"I bought this top to wear this fall, and it does not disappoint. it's a heavier light knit and the pattern is subtle but really pretty. i ordered a size smaller than i usually wear so that i can wear it on or off the shoulder, making this great for work.",4,1,1,General,Tops,Knits +878,43,Disappointing,I love sundry and their fun designs--i was disappointed because the fabric is very thin and the dark part of the heart is not black but bluish slate grey. it is just not what i expected from the picture. i bought the xs and it felt baggy on the body.,1,0,3,General,Tops,Knits +1086,62,Cute summery print,"I couldn't resist the toucan print when i saw this online, and ordered in my normal size s (27/4 in pants, 34b bust, 5'7""). the fit is perfect - arm holes are an appropriate size (not huge like some dresses), semi-fitted and flattering, nice length for work, and the tie front is a nice detail to help define the waist. length is about the same as the model shot. i knocked off a star for quality since the fabric is not particularly breathable for summer and the zipper is a little tough in the wais",4,1,7,General Petite,Dresses,Dresses +878,42,Seeeee thru!,This is baggy on me in my regular size. this happens to be a good thing because it's also very thin...tissue thin... material. the reason that's a good thing is i can wear another t- shirt under it with all that extra room and it hangs nicely. i'm hoping it shrinks a bit when i wash it in hot water.the design on the front is the only real reason i'm keeping it.,3,1,4,General,Tops,Knits +878,33,,"Love this shirt. it's perfect. it's so perfect that i bought two. it is boxy but it has a lovely drape. please note, the heart is navy blue and not so black as shown. it's a thin shirt and i know it won't last a super long time, hence the back up.",5,1,0,General,Tops,Knits +1080,24,So short,So despite reviewers saying this was too short i decided to try it anyways. the dress is adorable the print t g e pockets so cute but the description is incorrect. the petite falls 30 from shoulder which means it's right under your bum so you move anyway and someone gets a show. it's unfortunate because this dress is adorable. it would fit tts except length. unfortunately this one has to go back.,3,0,0,General,Dresses,Dresses +1086,41,Lovely little number,"This is a wow dress as far as fit if you are a voluptuous or hourglass figure woman. i have +a 38inch bust and the medium fit perfectly...the whole dress fit perfectly. i'm so glad i took a risk and ordered it. i wish it was made from a better material + like cotton versus polyester, but it has such a nice fit that i'll forgive the material choice.",5,1,0,General Petite,Dresses,Dresses +878,34,,,5,1,0,General,Tops,Knits +1080,35,"Cute, go to dress","I was nervous about this dress due to the reviews saying it was odd and the colors being different. but these weren't issues for me. the color is navy. it has the loops at the sides of the dress to hold the belt on, but it also has a loop in the front center of the dress, which i think is nice, no one likes a limp bow ;) the belt is nothing to write home about, but it ties the dress together nicely. +the front pocket is different, but i really like it. i had a hard time conceptualizing it before",5,1,0,General,Dresses,Dresses +1086,39,Whimsical style,"What an adorable print! yes, it may be a bit juvenile for someone my age but i don't care. the toucans are rendered in soft primary colors. the skirt is swingy but not poufy. whole dress is lined so thankfully it's not a see through white fabric. the bodice in medium petite fits me just perfectly (36dd) so if you are slender on top, size down. agree with the previous reviewer about the zipper, which i find to be cheap and irritating, especially when zipping over the waistband. worried abo",5,1,1,General Petite,Dresses,Dresses +878,62,,"I really love this tee! but, the fit can be boxy so i ordered it online in a size 0 and am very happy with how it fits me. i've worn it with skinny jeans and have gotten complimented repeatedly.",4,1,0,General,Tops,Knits +868,44,Great top if you get the right size!!,"This top is so soft, simple, and such a closet staple, if you get the right size! for reference, i am 5'3, 128 lbs, and i ordered the petite medium. it's perfect. the black is a great color, hard to describe, kind of soft with some warm blush tones. i also ordered the white and the peach. great at the sale price!!",5,1,0,General,Tops,Knits +972,72,,"The kimono is as pictured. the colors are true to what is shown on line, though the description indicates ""green multi""--it is not green. i returned the item, however. the quality is fine, but it seemed extremely over-priced to me. it seems to me that half the price would be fair for the quality.",3,0,5,General,Jackets,Jackets +868,50,Adorable,I bought this shirt for my 16 year old daughter. it looked adorable on her! she loved it and can't wait to wear it. the fabric felt like a great quality and the color was quite unique.,4,1,0,General,Tops,Knits +868,43,Cute and swingy,"This top runs large. i had no problem sizing down one size, and could have gone down two sizes if not for the bust area. i ordered this tee in the distressed black color (in real life, it's more like distressed charcoal gray), and really like the fit. the asymmetric peplum is unusual, and cut at a flattering angle. i also really like that this top is not short; i often have trouble with length at retailer, being long in the torso. even going down a size, the length is great. overall, i like that t",5,1,6,General,Tops,Knits +868,40,,This top runs larger so size down. i love it besides that. it's adorable!,5,1,0,General,Tops,Knits +1081,22,Fabulous dress!!!!!!!!!!!,"Love love love this dress! quality and fabric are terrific, design is a little 50s throwback! fits well and flatters the body!",5,1,1,General Petite,Dresses,Dresses +868,33,I really like it,"This top looks great with a long straight skirt (the grey with a black skirt....) and skinny jeans. i can understand why the style might not work for everyone but for me it's a perfect blend of elegant and funky. i'm sometimes a medium sometimes a large and the medium work well for me, so if in doubt size down",4,1,2,General,Tops,Knits +864,46,Too much fabric,"This blouse has too much drapey fabric and it's just not flattering. in the front part of the blouse the fabric is relatively short, but the sleeves have so much excess fabric it almost looks like a clown suit. sending back.",1,0,0,General,Tops,Knits +827,53,Off or on the shoulder....,"The top is nice, good quality, etc.... but how do you keep the 'off the shoulder' off the shoulder? mine keeps inching up until it's just a boring white top with a strange loose neckline.",2,0,0,General,Tops,Blouses +868,42,Love it!!,"I tried this (black motif) on yesterday in my local retailer store and fell in love...after sizing down! i do have to agree with previous reviewers that this top runs large. i am typically a s, but sized down to xs, and the fit was not even slightly snug. the material is soft and comfortable and i love the asymmetrical draped ""skirted"" bottom..very funky and arty-looking. i am 5'5"" and the regular length was great on me. as much as i will enjoy wearing it all summer, i also can't wait to layer it",5,1,3,General,Tops,Knits +868,29,Bulky!,"I wanted to like this top, as i usually adore a cute peplum feature. when i tried it on yesterday in the store, i was disappointed by how wide and bulky is it. i am petite (5'2"", 110 lbs), and i tried my usual xs. the fabric was substantial and of a high quality, but unfortunately in this design, that became a bad thing as the bottom of the shirt balooned out around me. it was very unflattering and i felt lost in the shirt! definitely try it on for yourself before purchasing.",3,0,1,General,Tops,Knits +997,52,,,4,1,0,General Petite,Bottoms,Skirts +868,59,So great,Just got the small peach in the mail; love it. also got the black small petite; works great as this shirt is pretty long. great boho tee.,5,1,0,General,Tops,Knits +864,38,Hidden treasure,I found this today on the one and only rack. i absolutely fell in love with it. i bought my normal size medium and it fit perfectly. other customers were asking where they could find it in the store. i highly recommend. it can be dressed up or down.,5,1,0,General Petite,Tops,Knits +868,25,No!!,"I thought i would love this shirt because it goes along with my style, but i returned it immediately. it runs so large! the colors are faded, and the trim of the shirt curl over, so it looks cheap and frumpy. i do not recommend this! it hits in all the wrong places.",2,0,0,General,Tops,Knits +868,31,Love it,I love the way this top fits and the way it flows. i have it in two colors.,5,1,0,General,Tops,Knits +864,36,Pretty and classic,"This blouse is pretty and drapes wonderfully. i don't think it's too wide at all. it's soft and comfortable. it's stretchy, yet with quality fabric that should keep its shape. definitely a classic piece. the sale price makes the cost more appropriate. the white is a little transparent, but with a tank, it's not a problem. the black is beautiful. i'm having a hard time choosing between them. i love the cut and sleeve details. it wouldn't have looked right with less fabric. it's needed for the sty",5,1,0,General Petite,Tops,Knits +868,35,Modern swing,"This is a modern version of the peplum top and very flattering if you don't mind flowy cuts. the material has a nice heaviness to it, and i love the black pebbled effect. 34 d, 130 lbs fit small perfectly.",4,1,3,General,Tops,Knits +868,25,,This is my new favorite shirt!! you can dress it up or down. so comfy and totally flattering :),5,1,0,General,Tops,Knits +1099,32,Shrank!,"This is a very cute dress. it was perfect before i washed it. the problems i had after washing it was the outer cotton layer of the dress shrunk length wise while the inside black lining did not, so the black lining peeks out a good inch or two. and since the dress is shorter i can't really wear it without using biker shorts, especially for the back of the dress since it's shorter there and if i bent over you could see everything. i'm so disappointed in the quality because it is a very cute, ver",3,0,1,General Petite,Dresses,Dresses +868,67,"Cute top, poor fit","This is a cute top but the fit is problematic. it runs small on top especially around the bust and sleeves but then it flares below the waist in a billowy and unflattering way with way too much fabric. +i got both an xsp and an xxsp. the xxsp fit better on bottom but i could hardly pull my arms through the sleeves. both are going back unfortunately. for reference i'm 5' 103 lbs 32b.",3,0,16,General,Tops,Knits +868,37,Unique but runs big,"This is a super cute style and i love it with white skinnies. i purchased the gray colorway. i am normally a small in tops but purchased the xs based on other reviews. the xs is still pretty loose on me, but i don't mind too much because i like flowy tops anyway. the color is so pretty and the design is edgy. it will transition to fall well.",5,1,1,General,Tops,Knits +868,25,So comfy and versatile!,"I now have this tee in 3 colors - partly because my daughter loves and shares them with me. i typically get a size medium because i like things to fit a little loose, but needed a small in this shirt. goes great with all styles of jeans/knakis.",5,1,0,General,Tops,Knits +1099,50,More colors please!,"This dress is crazy flattering and extremely versatile. i wish it came in other colors...i would scoop them all up. great price (plus used by birthday 15% off coupon). the fabric is light weight...but not flimsy. plus it's lined with a satin fabric so the dress won't stick to you. i'm 5"" 113 and i ordered the petite x-small and it is perfect. i can see it with fun sneakers (like the picture) or with some fun jewelry and high wedges for going out. thinking of buying a 2nd one as back up...it's th",5,1,10,General Petite,Dresses,Dresses +909,49,Lovely modern design,"This is a beautiful piece that looks even better in person - a nice mix of modern and artistic, with just enough color and a flattering fit. my only concern is that it may get itchy throughout the day, especially at the neckline. if you can handle a little wool blend next to your skin, i would recommend it for style and fit.",5,1,1,General,Tops,Fine gauge +491,50,Casual layering piece,"This is great, lightweight top layer that's just right for the little evening chill in the summer when the sun goes down, or on a breezy day. it's sheer, so it requires a bottom layer. the medium fits a little tighter across the shoulders and arms for me than it shows on the model, which i like.",5,1,0,Initmates,Intimate,Layering +997,36,Not what it seems,So you're thinking this is a red and black skirt right? nope. it's an obnoxious cherry red netting with cranberry crushed velvet insets overlaid on bright red actual spandex. spandex that shows every wrinkle and panty line. it's really god awful.,2,0,42,General Petite,Bottoms,Skirts +868,36,Like it so much i ordered a second one!,"I ordered this in the peach color way. it is a nice, thicker cotton and while i have only worn & washed once (i air dried) it feels like a fabric that will hold up well. fit is good, i stuck with my usual medium. at first i thought it was a little big but i didn't want to risk the arms being too tight or short by going down to a small. in the body a small would have worked i am sure, so if you have slender arms going down a size may work well. i liked it so much though i ordered a second one in",5,1,0,General,Tops,Knits +868,34,Cute top,"This top looks exactly as pictured, it is a little more billowy but i liked that about it. i found that it ran true to size and i am 5'8'', 128lbs and ordered a small. i am going to order the white because the cut is super cute.",5,1,2,General,Tops,Knits +864,66,No go,"I got the black in a medium. it just made me look wide and i felt frumpy. i think it's the angled wide sides. on me, the design just created bulk. nice substantial fabric but it isn't soft or cozy. back it goes",3,0,3,General Petite,Tops,Knits +997,57,Don't do it,I wish i had read the reviews prior to purchasing. this skirt looks amazing in photos and lace appears black. the lace on mine is actually purple - at first i thought it was just purple due to lighting with red underneath - but nope - pull the netting away and it is purple. lace netting hikes up on the right due to poor craftsmanship. i ordered a medium and felt it was a bit large. will return.,1,0,3,General Petite,Bottoms,Skirts +1009,38,Beautiful skirt but so noisy,This is a beautiful skirt. it is exactly as pictured. the colors are bright and vibrant and the skirt is very full as expected. i feel like it does run a bit small. i'm usually an 8 in skirts and dresses and bought a 10. it was a bit snug at the waist but not too tight so i decided to keep it for now. my one complaint is the horrible noise that the skirt makes with my every movement. anyone and everyone can hear you coming from a mile away. the skirt is beautiful but a little stiff as well. i do,4,1,6,General,Bottoms,Skirts +1081,46,Retro chic,"This is a beautiful dress! great and flattering fit, comfortable, adorable print (the blue is stunning), and nice movement. one can't really see it in the photos, but the skirt is actually pleated. imo this adds interest and originality to the dress. i've been getting lots of compliments. get it while you can!",5,1,5,General Petite,Dresses,Dresses +868,51,"Love the color, design and flow","Love this shirt, can dress up or more casual. wish i would of purchased all colors!",5,1,0,General,Tops,Knits +868,28,Beautiful design but too big,"I really wanted to love this top. i got it in xs in peach. the color is beautiful. i wish they had this exact same color in the boardwalk stroll top. the v neck was way too low and i don't want to have to wear a tank underneath. i would be willing to try an xxs but it's been sold out for awhile now and looks like it's not coming back. if the size were smaller, v neck higher up, and the top portion of the dress more fitted, it would be the perfect tee!",3,1,0,General,Tops,Knits +868,23,Go to tee,If you are looking for the perfect t-shirt to add a little flare to your basics this is the one for you. it is so comfy and baggy yet still looking like you pulled yourself together. i am just waiting for more colors to come out. i basically live in the green and white versions of this shirt.,5,1,0,General,Tops,Knits +868,34,So tent-like and unflattering!,"Looks great on the model, but in actuality there is way too much fabric; what should be flowy and billowy looks like a tent (or a maternity top on a petite woman). it didn't matter which size, they all fit me disastrously. i love the look and i thought of keeping it and having it taken in, but there's too much fabric under the chest to make it an easy cut/alteration on the side seams. sometimes i wonder who comes up with these patterns, and if they pin the shirts back on the models. if you put a",1,0,0,General,Tops,Knits +864,43,A diamond in the rough!,"One of the best retailer pieces i have ever purchased! high quality and fits true to size. i have a large chest, and this minimizes and creates a really nice silhouette. i highly recommend, got so many compliments i bought both colors!",5,1,0,General Petite,Tops,Knits +868,42,,,5,1,0,General,Tops,Knits +827,26,Love this too,"Such a cute top. does run slightly big, depending on how loose you want it to be. for such a simple design, the quality is great.",5,1,0,General,Tops,Blouses +1099,51,Simple summer style,A perfect little simple style summer dress just throw it on with some trendy sandals and off you go. runs true to size. just wished they would of made it in other colors and prints.,5,1,0,General Petite,Dresses,Dresses +868,41,Pretty but really large!,"I am all for a cute flowy tee but this one felt like i was swimming a bit. if you're a true xs, i'd skip this one. however, if you are able to size down i think it would look really great!",3,1,4,General,Tops,Knits +868,37,,"Love this tee! it's stylish and comfy. i ordered the white and it's a thicker fabric, so i don't have to wear a camisole underneath. i want to order more colors. it does slightly big.",5,1,0,General,Tops,Knits +843,43,Great print!,Love this crinkle cotton top for spring. the print is great and i can't wait to wear it!,5,1,4,General,Tops,Blouses +868,32,Cute tee too much fabric,I bought the top in an x-large because i normally wear a 12/14 and i was swimming in it. i unfortunately returned it but did eventually buy the large. it is a cute fit and a fun tee to have. the fabric is soft but a little excessive on the bottom.,5,1,2,General,Tops,Knits +869,39,Green is a gorgeous color,"I purchased this in the green color, and in person it does have a little bit of blue in it so it's a very flattering color. the blouse has a simple shape but the details are what makes this an interesting piece. it looks as good under a suit as it does with jeans and a leather jacket. fits tts.",5,1,0,General,Tops,Knits +868,55,Elegant,"I love this t-shirt, i feel classy, stylish and comfortable wearing it. as other reviewers have noted, it is bellowy in the peplum, but that is the design and i love it. it looks great with skinny jeans and can be dressed up or casual. another terrific purchase from retailer!",5,1,1,General,Tops,Knits +521,32,Beware - not enough bottom coverage!,"Such a cute pattern, and i loved the fold-over design, but beware - there is not enough bottom coverage! i should've looked more closely at the photo - it's pretty accurate in showing the bathing suit bottoms have limited rear coverage. a couple more inches of fabric would've really helped. i'm used to fuller coverage bathing suit bottoms, and these just expose way more cheek than i felt comfortable with. i could maybe wear them around my husband, but definitely not my dad! i felt like if i bent",2,0,2,Initmates,Intimate,Swim +868,32,Almost great,"I had been eyeing this top for weeks. it's look so beautiful on the model, however, not great on me. material is fab. the tee is way shorter than it appears online and there is too much flutter material.",3,0,2,General,Tops,Knits +1028,34,,"This is my 6th pair of rockets. they've become my hands down, favorite cut from citizens. for curvy girls, these are the perfect skinny jeans. they come up high enough to tuck everything in, no muffins top. they shape and lift my butt, which i need because i've got a generous one. they hold their shape amazingly well and don't require a wash with every wear in order to regain their shape. they truly have been the holy grail of jeans, for me. with all that said, these are not a 5 star version of",4,1,5,General,Bottoms,Jeans +1084,56,"Pretty, femine","I really like the dress, the material, the print and the pleated skirt are totally fun. however, the neckline is a bit to low, and a cami is necessary, at least for me. the material is very sheer, which will be noted on the sleeves and the lower skirt where the liner falls short ( about 4 inches above the knee).the main draw back i personally have with this dress is taking it off. there are no zippers or buttons. getting it on is easy, not so when taking it off!",3,1,3,General Petite,Dresses,Dresses +486,29,Beautiful but not the best quality,"I used my birthday month discount to treat myself to this gorgeous chemise and matching robe in the mauve. the color is prettier in person than on my computer. i bought it in size m, and size m clothes are normally a little big on me. this chemise fits, but there is no extra room or looseness. i am disappointed in the quality of the pieces. i have several beautiful 100% silk undergarments that i bought for myself in the 80s and 90s, and i am comparing this chemise (& robe) to those. this silk us",3,1,1,Initmates,Intimate,Sleep +1083,46,Just gorgeous!,"Since there was only one review on this i thought i would chime in. i had been eyeing this for months and was able to get it on sale which was a plus since this had a pretty hefty price tag to start. that being said, the tailoring and detail work on it is just beautiful. i am a little worried about how the knit will wear but not worried enough to return it! as far as sizing goes, i ordered a 4 in the last byron lars dress and i am a 4 in this too. it fits snugly, but a 6 would have looked lumpy",5,1,4,General Petite,Dresses,Dresses +949,42,,"I'm a m/l size in most things....depending on the maker and design. i tried this vest on with the paired top in the photo and couldn't believe how big and boxy it was. very boxy. it looked dumpy on my 5'3"" frame. i thought it might work because i have broad shoulders to hang the vest off,but noooo. i have breast and that ruined it. well there you go, a size 36c wasn't going to help with this one. but i'm going to try sizing down to a small to give it a chance in fitting better. it runs at least",4,1,4,General Petite,Tops,Sweaters +1084,50,Great dress!,"This dress is not only beautiful, it's so comfortable to wear. it's also very flattering. i love that i can wear the dress with sandals or boots. great buy!",4,1,1,General Petite,Dresses,Dresses +788,53,Loose and so comfy,Love this easy caftan short dress so soft easy and so stylish,5,1,9,Initmates,Intimate,Lounge +949,33,Cool sweater vest,"Great sweater vest. its not too thin or too thick, just right for fall or winter when its time to start layering. the material is a nice soft knit and the zipper on the back is a great addition. its easy to put on and i don't worry about the zipper snagging the material and causing any damage. i plan on pairing it with a polka dot long sleeve shirt that i have and it looks great. i am looking forward to wearing this when the weather becomes cooler. highly recommend. i am a 36b and usually wear a",5,1,0,General Petite,Tops,Sweaters +984,34,,,4,1,0,General,Jackets,Jackets +984,69,Great jacket!!!,"Had my doubts and ordered on sale just to try. am amazed how often i have worn this jacket!! goes with a lot of pants and skirts. great buy on sale. am 5' 6 1/2"" 150lbs and medium is perfect..",5,1,1,General,Jackets,Jackets +984,60,Sloppy looking,"The color is darker than shown (i ordered the denim looking one). the flower things are not very visible as it all looks one color. it must be great for the tall skinny model , but if your 5'4'' and pear shaped like me, it's a no go! took it back to my local store.",1,0,0,General,Jackets,Jackets +1093,34,Beautiful dress but too dark,"I was very excited about receiving this dress. unfortunately i was a little disappointed when i opened the package, as the color was darker than on the picture. +i live in florida where the sun is always shining and although this dress has a beautiful simple design, it isn't for me as the color is too ""winter"".",3,0,1,General Petite,Dresses,Dresses +984,46,,"This is a very pretty jacket. light weight and perfect for spring/fall. i had ordered it online as it was not in my retailer store. i did end up returning it though. it does run large, i am usually a l/xl and based on previous reviews i did size down and get the l. the pockets for me were a little big an pushed out having an unflattering look! i was sad to have to send this one back! i was hoping to love it! someone smaller might love it!!",3,1,5,General,Jackets,Jackets +984,45,Attractive,"I was not impressed upon first taking it out of the package, it was a wrinkled mess,lighter weight than i imagined and i felt like it hung like a potato sack. however after i gave it a good ironing and used the inside back tie to sinch in the waist i was in love. it draped beautiful, the blue has beautiful embroidered detail and i love the full length sleeves that can be rolled. i feel iike i will use for many seasons.",4,1,2,General,Jackets,Jackets +1050,67,Great pants,"When i saw that these were on sale, i was actually going to order another pair as i have really been enjoying them and wear them quite a bit. unfortunately, the large that i take is sold out otherwise i would own two pairs. although these are called lounge pants, i put them together with white or black accessories and have worn them everywhere. since my legs are not long, i did have to shorten and they are still a bit longer on me than the model. however, it was well worth it.",5,1,0,General Petite,Bottoms,Pants +1050,66,Nice but longer than i hoped,These are really cute and done in a substantial knit type fabric that drapes well and doesn't cling. i ordered my normal size large. so i'd say they're true to size. the leg isn't too wide and bells out nicely toward the bottom. the color variations are striking but on me they made me look wider than i am. i'm short and the hem hit at the top of my ankle instead of the cropped look shown. think they'd look best with shorter tops. i decided to return but still highly recommend.,4,1,2,General Petite,Bottoms,Pants +949,36,Great vest,"I love vests and this is a great one, warm and cute!! because it is sweater material some of the threads look like than can pull, but i still think its stylish and different and still a classic to have!",5,1,0,General Petite,Tops,Sweaters +984,34,Anything heihei is amazing,"Love everything about this jacket its super soft, thin, and looks great! it's versatile and a great layering piece for someone that lives in a very warm climate! prefer the sleeves to be worn rolled up and the inside belt definitely helps give the piece more shape and dimension!",5,1,2,General,Jackets,Jackets +1004,43,Eh...,"This skirt looks/lays exactly like the photo. i bought a size small and i usually wear a size 4. it was maybe a smidge big, but nothing that affected the look of the skirt. the material reminded me of felt/wool mixed together, almost like sunday school felt cut outs (but stiffer) (not a fan).. i was underwhelmed - it looked plain and simple, and the color washed me out. definitely not worth the price (for me anyways). good luck!",2,0,6,General,Bottoms,Skirts +984,53,"Beautiful, unique piece!","I love this thing. i bought it yesterday and already am wearing it today, and i have been known to leave things sitting around in my closet for awhile before i wear them, especially if they aren't a sure thing. for reference, i am a curvy, busty size 14. i bought an xl but a l would have worked too. it has a drawstring on the inside back and on the bottom center back hem, so it can be adjusted for more shape through the waist. it has a beautiful drape, is very soft, and the embroidery makes it s",5,1,26,General,Jackets,Jackets +486,23,Elegant and comfy,"I was able to try this one on at the store, and it was so loose on me, i assumed it was a large, but no, it was a small! (i usually wear size 6-8 in dress size, s/m in tops) admittedly, it does pull over the head, with no zippers or elastic to give shape. but it feels like water on the skin and has just the right amount of ""show it,"" plus coverage for wearing around the house, i'm keeping it.",5,1,3,Initmates,Intimate,Sleep +984,56,Not attractive,"I bought this jacket based on how it looked on the model, and from the reviews. i found it to be super big, and unflattering to say the least. i'm 5""10, 155lbs. i sent it back.",1,0,5,General,Jackets,Jackets +984,67,Fun jacket,"Love the fabric and the casual way this jacket drapes. the color is nice, i bought the blue. usually wear petite sizes but they were sold out so bought the misses in medium and it works perfect. like i can layer it for summer/fall since its very light weight fabric.",5,1,1,General,Jackets,Jackets +949,35,Classy & stylish,This vest is well made and a very flattering cropped silhouette. i typically wear a 0p and ordered an xxs--it fits perfectly. it looks awesome with the shirt pictured underneath.,5,1,1,General Petite,Tops,Sweaters +1020,39,Love love this skirt!!,This skirt is gorgeous!! drapes beautifully & the color is vibrant! get it!! you'll be so pleased! i sure am!!!,5,1,1,General Petite,Bottoms,Skirts +949,45,,Runs shorter than i expected. i purchased on line but will be returning it for a larger size.,3,1,0,General Petite,Tops,Sweaters +1050,65,Comfort at its best,"I purchased an xl and am 5'8""tall. the pants fall near the ankle just like the pic. i plan to wash on my gentle washing machine cycle. the texture fabric print will pair well with any printed tops you choose. these lounge pants are great for everyday wear especially for errands in town. so much better a choice than yoga pants which to me look ridiculous when wore in public. so ladies, please leave your yoga pants for the gym and treat yourself to these casual, comfortable pants. i have two pairs",5,1,0,General Petite,Bottoms,Pants +20,34,Classy black dress,"My husband bought this for my birthday. i love that it can be dressed up or worn for a more fun occasion. + +i'm a tad small up top, so it fits a little too loose up there, but other than that it fits great. i'm considering getting it altered just because i love it so much.",4,1,0,General,Dresses,Dresses +1125,39,,"If i could tell you how many compliments i got on with this coat, i would end up writing a book. this coat is beautiful, fits like a glove. i got the size 4, went into the store to try it on to make sure it fit right and tried on both the 4 and 6. i'm typically a 2, so i guess i went a size up. this coat is striking and the colors are beautiful.",5,1,0,General,Jackets,Outerwear +863,48,Basic t goes girlie,"This is a super cute t-shirt! it runs a little big and not as long as some t-shirts which is good. it hits mid-hip on me and i'm 5'7"". i got the gray at my retailer store and liked it so much i ordered the black one too. warning: the black one is actually a brownish-black which i didn't like so back it goes.",5,1,6,General Petite,Tops,Knits +212,34,Beautiful. great quality. low cut bottom :/,I was so stoked about this swim suit. i bought it for mine and and my husband's anniversary trip. it didn't disappoint. it was gorgeous. amazing quality. fabulous on. unfortunately in my case though - the bottom is incredibly low cut and showed my c-section scar. so it had to go back :(,5,1,1,Initmates,Intimate,Swim +1125,36,Runs small,Love this coat. the colour is vibrant and it is well made. it does however run small. for me it was two sizes. i am usually a 00p and ended up purchasing the 2p. glad i tried it on in a store. it is a good spring/fall coat as it is lightweight. if i had purchased the 4p i could layer it a bit more. good but though. just be sure to size up.,5,1,0,General,Jackets,Outerwear +429,23,Pretty but poor quality,When these shorts arrived i loved them and was so excited to wear them on my upcoming trip to the beach. the high rise waist is very flattering and the material was extremely soft. the floral detailing was a little more orange than in the picture but i still loved the contrast. the first time i wore these i immediately noticed threads coming loose throughout the day. it was minor but still concerning for an item that was so costly. the real problem arose in the evening when i put on a jacket on,3,0,3,General,Bottoms,Shorts +863,61,"Great, great summer tee!","Got this in medium (5'6', 36c, 120 lbs.). many of retailer tops i'm a small but this was a good fit for the m. got the white. not really see through but need to cut the side tag out as it shows through. i'm not sure about the other reviews - this was totally not boxy on me - falls very nicely and drapes slightly. a really sweet but simple tee shirt to wear in the summer. you can wear this dressed up with heels, stacked sandals or just with flats - ballet or strappy sandals. looks great with rolled",5,1,4,General Petite,Tops,Knits +863,44,,"I really wanted to love this top but the other reviewers are spot on when they say it is too short and boxy. so, fresh out of the package, the ruffle hit me right at the widest part of my hips and when i raised my arms the shirt exposed my midriff. not cute. i really liked the quality though so i washed it on delicate and then tugged gently to stretch the length out and hung to dry. now, it's still a wee boxy, of course, but significantly longer and much cuter on me. so, i'm keeping. even thinki",4,1,11,General Petite,Tops,Knits +863,47,Material too filmsy,"I am always on the hunt for a cute white t-shirt but this one was a miss. it is too boxy (short) and the material is very thin for the price. i gave it two stars because it has nice colors for spring/summer. for reference, i am 5'4 and 115 lbs and i ordered a small. bought it online so i ended up returning it to the store.",2,0,4,General Petite,Tops,Knits +1103,33,,"This dress fits awfully. it's not short, as pictured in photo. it hit just above my knees. it looked like sack. i would've, also, felt like i was choking all night with it clasped around my neck. it, potentially, may look okay on someone who is very tall, skinny, and lanky, but i have my doubts about that too.",1,0,1,General,Dresses,Dresses +995,56,Beautiful design and color,"I bought this skirt in the blue motif in my usual size large. it is very comfortable, light and it is lined! i wore it with a navy cotton lace meadow rue top from last year, gold gladiator sandals and a long gold retailer necklace.",5,1,7,General,Bottoms,Skirts +863,36,Fun top,"Just the perfect weight for summer wear. falls gently over tummy without being too long and the ruffled edge and quirky uneven length make it just interesting enough to make it feel like more than just a tee shirt. i got it in black and re-ordered in pale blue and am hoping the lighter color is not ""see-through."" this is a nice buy on sale and can be dressed up or casual. it feels and wears great but i have not washed it so gave it a good on quality. if it washes well then an excellent would be",5,1,0,General Petite,Tops,Knits +863,29,Love this tee!,"My daughter loved this tee the first time she tried it on. since then i have purchased the white, yellow/lemon and rose pink colors for her. the material is soft, it washes well and it looks great. she says these tees are some of the most comfortable she owns and it looks good with shorts, jeans and leggings.",5,1,0,General,Tops,Knits +863,48,,"The ruffle is a sweet detail on what might be an otherwise basic, rather boxy shirt. it is a nice weight and drape, but please know it is a bit short and square. i love the asymmetrical ruffle, however, and think it makes this tee worth it.",5,1,46,General,Tops,Knits +829,52,"Nice boxy shirt, pretty buttons","Runs really large. i am 5'4"", 120lbs, 32c, and had to exchange xs for xxs for width, but then the sleeves were a little tight. decided to keep the xxs in white.",4,1,3,General Petite,Tops,Blouses +573,39,A-mazing!!!!!,"Love this dress! paid full price and completely worth it. fit tts for me- i'm 5'8"" 135 lbs., with a slim upper body so i had no issues with the neck being tight. definitely would be braless or need a strapless bra. gorgeous material, light and breezy dress. best retailer purchase in a long time!",5,1,4,General Petite,Trend,Trend +829,49,I so want to love this shirt...,"...the print is so sharking, and i love the way it looks on the model -- but i'm a more curvy figure, and the boxy-ish cut plus rather stuff fabric in front is incredibly unflattering. ordinarily i love everything made by maeve, but this one sadly must be returned... on a thinner/straighter-shaped person i expect it would be great.",3,0,1,General Petite,Tops,Blouses +863,57,This product was great,Great color fit was very true to size,5,1,0,General,Tops,Knits +829,68,Very pretty,"I really like this blouse. you could wear it tucked, but the pleats would disappear. my only complaint is that it's a bit too full round the waist. it would be a good choice for thanksgiving dinner!",4,1,0,General Petite,Tops,Blouses +863,63,Staple with a quirk,A little boxy but will be a go to basic. the off set ruffle gives interest,3,1,2,General,Tops,Knits +863,64,,"I love this tee shirt. i love the higher neckline and the feminine and subtle ruffle at the bottom. it is my favorite tee by far! i am buying my second round of it now. i have one in coral, light blue and i am ordering more. the only down side is that both of my current shirts developed holes veyr quickly.; one on the shoulder and the other in the usual belly area that comes from the granite counter and jeans top button. there is no excuse for the shoulder holes in my mind...but i love the look",5,1,0,General,Tops,Knits +863,57,Dress it up of down,This top is easy with nice hem detail.,5,1,0,General,Tops,Knits +573,39,So pretty,"I tried on a size 8 in the store just for fun... (i am a 0 petite) and then decided to take a chance and order my usual size. i was a little worried as many reviews said the dress was small, but it was on back order and decided to wait before ordering a size up. the 0p was actually fine, yes, it is a little hard to zip up, but once on, it is totally fine... not even too snug... but i didn't sit and eat... we shall see. i don't plan on ordering the size up. i think the zipper needed some wiggling",5,1,3,General Petite,Trend,Trend +895,39,I just love this!,"Bring back the old retailer timeless pieces! this cardigan is very flattering, the flutter sleeves add a romantic touch to the cardigan. the colors are neutral, and the vine part (black) is like velvety. the fit is super flattering, i originally bought hte xs in the store, but decided to also order the xs petite to compare ( i am 4115 lbs, 5'1.5"" and 30 dd, with 26-27 waist). both fit, but the petite was better fitted on my waist. also, the length would work better on top of dresses. i also tried",5,1,20,General,Tops,Fine gauge +863,39,"Noce yellow, but so thin","I like the cut and look of this shirt, and tried on the xs (fits 115 lbs, 30ss chest), but i find that the t-shirts lately are kind of thin and see through... the shirt is fun, and the color is adorable, but had to pass as i could see my bra too clearly for my liking.",4,1,2,General,Tops,Knits +829,39,Very pretty,"As others mentioned, love the little buttons, and the cut is flattering. i ordered the ""denim' one (multicolor). i didn't end up keeping it but will order again if goes to sale. likes: colors are fun, material is soft, buttons are beautiful, cut is decently flattering. what i didn't love is it looks wrinkled. + +i ordered the xxs and xsp - only tried on xxs as i didn't think i would keep it anyway, but thinking of it, is should have still tried the xsp. arms were almost snug on me (i lift weight",4,1,1,General Petite,Tops,Blouses +863,52,"Tshirt and jeans, updated","Love this top! got it in the blue and it looks great with jeans, shorts, crops...some say it's a little short and boxy. while the style is cut larger, i wouldn't call it boxy and i definitely didn't find it to run short. a great staple, wish it came in other colors besides white and black/gray.",5,1,1,General,Tops,Knits +895,56,Beautiful and delicate,The sweater is beautiful and lightweight. it is very short. i am short-waisted but felt that it was too cropped for me. the deign is lovely and the fabric is soft.,4,1,0,General,Tops,Fine gauge +863,37,Ruffle adds just the right flirty touch,"Feminine but not too fussy tee is a nice linen-like material. i got the white one which will go with a lot of my skirts, pants and shorts. unlike other reviewers, i didn't find it too short for me at all, but i am high-waisted. casual but with extras.",4,1,0,General,Tops,Knits +829,51,,"Very cute top. i went down a size because for me it was a little large in the back, but that was just my taste. i purchased the denim print.",1,1,1,General Petite,Tops,Blouses +1072,40,Details,"Beautiful color and the fabric is very substantial and soft. but, they didn't finish the bottom hem! the dress is lined and the bottom inside has a ribbon sewn in as a type of hem, but the actual edge is just cut and not turned in on itself. because of this the whole bottom had a hundred little fabric frays. the rest of the dress is so polished it just doesn't make sense. also, while the fabric is beautiful my dress had a weird mark on the chest, almost like a water mark. just overall bad attent",2,0,7,General Petite,Dresses,Dresses +573,43,Odd cut,"I order from retailer regularly and am pretty consistently a 0 petite or xxs petite. i ordered this in a 0 petite and it was like 5 inches too small in the rib cage and chest area. even if i would have got it zipped up, the halter cut is cut narrow so you can't wear a bra for sure...strapless would be necessary. also, the actual neck part was tight. for reference, i am 5'3"", 108 pounds and a 32c bust. it seems you need to be flat chested to pull this one off and maybe missing a few ribs.",3,0,17,General Petite,Trend,Trend +895,34,,,5,1,0,General,Tops,Fine gauge +573,34,Ok,"I was so excited to receive this in the mail as it had been on backorder for awhile. the dress is beautiful, but run smalls the buttons on the back are nearly impossible to fasten. if you are single, good luck trying to get it buttoned. i'll be returning it.",3,0,4,General Petite,Trend,Trend +895,38,"Oh, so pretty!","This cardigan is oh, so pretty! it does have a cropped length; it fall exactly at my waist.",4,1,2,General,Tops,Fine gauge +995,40,Colors vary slightly from picture,"This is an interesting skirt. the fabric is comfortable, breathable and flowy. it is eye-catching. but the pattern is not one i would say i love, although i do like it. the lighter color in the pattern is more pink than off-white, which is fine, but that did surprise me a little. overall, i kept it for comfort and because i liked it enough for the sale price i paid for it.",4,1,0,General,Bottoms,Skirts +863,45,Ruffled hem tee,Super cute!! will be buying another color of this tee.,5,1,1,General,Tops,Knits +829,63,,Nice top that can be worn alone or underneath a sweater. can be dressed up or down and worn in all seasons.,5,1,0,General Petite,Tops,Blouses +829,62,Pretty blouse,I debated between the xs and the small..and ended up with the small because it's 100% cotton i probably couldn't probably gotten the xs one. we will see if it shrinks. i hope it does a little. i do wish the retailer sizing was a little more consistent because sometimes the xs is fine.,5,1,3,General Petite,Tops,Blouses +1125,26,Statement piece,I bought this for my mom's birthday and she loves it. fits true to size and flattering for all busts. mom went up a size to be able to put a sweater underneath but she received lots of compliments at a recent function she wore this to. great lines.,5,1,0,General,Jackets,Outerwear +829,69,Love it,"I love this top! i was thinking that i was going to need a x-large because i'm very ""busty"". i tried it on at the store, and the large was perfect! it's comfortable and flattering. not boxy at all. i bought it in plum and white. the plum is more a wine color than a purple, which i prefer. + +the buttons are beautiful, but i couldn't see myself buttoning and unbuttoning all of them, since they don't slide out of the buttonholes easily. but i had no trouble slipping it over my head with just a fe",5,1,1,General Petite,Tops,Blouses +863,47,I wish they would redo,The idea of this shirt is awesome! it just needs to be made longer and not so boxy. the ruffle is darling! i would be so happy if the the designer made some modifications. i think a lot of people would buy it then.,2,0,10,General,Tops,Knits +863,23,Flowy and casual,"This shirt is awesome. i absolutely love the style of this shirt! it's super flowy, and is a really breathable fabric. i've been wearing this shirt a lot lately with printed pants. the only downside is the quality of material. it kind of feels like this shirt could have been made myself with a plain t shirt and some basic sewing skills. it also feels like it's going to start falling apart at the arm seams. nonetheless, i adore the shirt, and will be getting a lot of use out of it this season! no",5,1,1,General,Tops,Knits +829,59,Pretty detail,"I first ordered this in the patterned denim. the online photo looks washed out in comparison. the blouse has very pretty detail all along the body and cute brass buttons. the pattern unfortunately looks more vivid in person and as result, i did not like. i brought it to the store and tried on white but it was very sheer (all though the pleating in front helps). i ended up exchanging it with plum which is also beautiful - not as much sheen as shown on the photo, but still beautiful.",4,1,1,General Petite,Tops,Blouses +829,50,,"Love the design and colors +runs a but large through the middle",5,1,0,General Petite,Tops,Blouses +863,49,Nice twist on a classic tee,"I liked this top a lot when i saw it at the store - the cotton is soft and comfortable, the colors are good (i tried on the white, charcoal, and light aqua blue), and the asymmetrical edge really makes it. the subtle ruffle detail at the edge combined with the pieced asymmetrical hem takes it from a classic tee to a contemporary style. however, my store doesn't have petite sizes, and the regular size hit me at a point in the hip that wasn't super-flattering on me (at 5'1""). it imay be an excelle",4,1,1,General,Tops,Knits +863,66,Love it!,"I was looking for cute comfy stylish tees and was ecstatic when i came across this one. i purchased the coral and i love it! it's adorable on, i'm going to purchase another color. so happy!",5,1,0,General,Tops,Knits +863,58,,"I think this top works best for a petite person. i am 5'1"" and 106 lbs. the xs is perfect for me. i love it so much, i purchased it in more colors. i machine washed and line dried. it washed beautifully.",5,1,7,General,Tops,Knits +863,34,Went out and bough it in a second color,I read the mixed reviews on this tee but i think the fit is flattering and comfortable. i sized down as i do in many retailer tops and it is fitted in the shoulder and chest and then widens away at the waist. the length hits me at the hip--i have worn it layered with a longer tank underneath.,4,1,0,General,Tops,Knits +863,44,Love this shirt!!,"This is a great t-shirt; i love it. it fits great, isn't too bulky and has a great length to go with anything. i love it.",5,1,0,General,Tops,Knits +863,62,What a darling t.,"A great basic t, so very much cuter than most. i have black and white both and wish it came in more colors.",5,1,3,General,Tops,Knits +829,23,Beautiful blouse..try on before purchasing,"I bought this blouse in plum. it is very beautiful, and is a gorgeous color for fall. since i bought this in-person i decided to try it on. i am normally an x-small in retailer blouses. i tried on the x-small, and although it did fit, there isn't much room. this could be a problem for women who are bustier and fuller in the chest and arm area.",4,1,12,General Petite,Tops,Blouses +895,38,Darling cardigan with beautiful detailing,"This cardigan is beautiful with its cropped fit, flutter sleeves and vineyard detailing. i can see wearing this a lot this fall and winter. my only complaint is that the sweater was pilling/shedding quite a bit the first time that i wore it. i hope that that doesn't happen every time that i wear it. i also have yet to wash it to see how the fabric looks after washing.",5,1,0,General,Tops,Fine gauge +863,56,Simple and cute,"I bought this in the white and it is super cute. more fitted at top, slightly belled at bottom and thankfully not see through",4,1,0,General,Tops,Knits +863,36,Adorable!!,"I bought this in the sky color (and sized down from my normal medium) and absolutely love it. i don't think it's boxy at all. on the contrary, i love the way it hangs (i don't find it to be short either, though i do tend to layer with a longer cami underneath). p.s. the ruffle detail is precious!",5,1,0,General,Tops,Knits +829,66,Sweetest print,"I ordered size large in the denim color and tops like this are the reason i shop at retailer. this is such a sweet little floral, vertical, slimming, goes with anything print. the buttons down the front close with loops. it's easy to unbutton a few and pull this over your head. i'm a busty 34g and there's no gapping or pulling. the shirt arrived with the sleeves rolled and i had a heck of a time getting those tiny buttons into the cuff but once in, the cuff is wide enough to just slip your arm thr",4,1,6,General Petite,Tops,Blouses +890,66,Statement piece,"Beautifully made, designer sweater. and it's soft and comfortable. i decided to return because it's just too much for my body. the fringe, which is quite long, overwhelmed my shape and i looked much larger than i am. the color is true white. the knit itself is fuzzy. it closes with a single button on the placket at the neckline. although not for me, i do recommend.",4,1,0,General,Tops,Fine gauge +863,45,Super cute,"Love this shirt so much i bought it in 2 different colors. the reviews said it was so boxy and plain, but i disagree. looks great with jeans or a skirt without looking looking too casual. love that they are not too long also. so many tees are soon long and these are not thank goodness. +definitely runs big",5,1,9,General,Tops,Knits +863,49,,"I absolutely love these tees! i have them in almost every color - i find i can wear them with almost anything (can dress them up or down).... +i feel like they are true to size. i purchased the small but i probably could have worn an xs too - i wanted a looser fit. +also, they wash and dry well too! +for reference: 32d, 27, 35",5,1,0,General,Tops,Knits +829,48,Love this style,This shirt has a great fit and a nice change from the swing style. short in front and longer in back looks great with the higher waisted pants and traditional skinny. nice details on buttons and trim,4,1,1,General Petite,Tops,Blouses +573,45,Even more beautiful in person!,"This dress did not disappoint. it fits great. i'm 5'3"" and weigh 114 and i got a petite xs. length was perfect, i have a longer torso, so the waist was a bit higher than mine, but it didn't sit strangely and hung well. i am small chested, and the top fit me very well, i think if you have been blessed in that area, you may want to size up. +overall, it really is beautiful, the pattern and the unexpected transition from one pattern to the next is just what i hoped for and why i buy from retailer. i",5,1,27,General Petite,Trend,Trend +863,34,,"I love this tee. as others have noted, the ""pink"" is really more of a coral orange, which is what i was hoping for. i wish they had another good color for a redhead because i would buy it.",5,1,0,General,Tops,Knits +895,39,Vintage picnic style for the win,As-advertised crop sweater is a great length. design is an iron-on velvet texture rather than intarsia. weight of sweater is great for transitional weather.,5,1,0,General,Tops,Fine gauge +895,45,Shorter than on model,"This is a darling little sweater. it is well made and the fit is true to size, however, it's just not long enough on me to be a top, which is what i was hoping for. i thought it would be pretty with some high waisted trousers in a sort of 40's style but it's way to short on me for that. even with my highest waisted pants and skirts, it shows skin. i think it can really only be worn as a shrug over a dress or something. that explains why the model looks hunched over in some photos. i'm still",3,1,1,General,Tops,Fine gauge +863,39,Great idea poor execution,I love this brand and the material of these shirts and have a ton similar and thought this was adorable with the sweet detail but it is super short and boxy and i felt uncomfortable with the length on me and it also made it so it wasn't so flattering on. such a bummer cuz its a sweet spin on a plain basic tee!,2,0,30,General,Tops,Knits +1125,46,Absolutely perfect design and fit,Just loved it at first sight and waited for it to come on sale .. i am usually a size 0 or xsmall but this one fits perfectly with a size 2 .. i am about 122 lbs and 5 ft 2 and this size fits really well - - petite is too short esp on the arms -- the lining is really nice as well - the design and the cut of this coat is really flattering unlike some of the boxy designs -- absolutely divine - just loved it !!,5,1,1,General,Jackets,Outerwear +863,36,Perfectly comfortable!,The best shirt to throw on with a pair of shorts and it's effortlessly adorable!,5,1,1,General,Tops,Knits +995,35,"Pretty, comfy skirt","Love tracy reese finds at retailer! first day wearing this skirt and have already received a number of compliments! not a typical material i would buy clothing wise, but it's really comfortable and not clingy as i thought it may be. i appreciate the built in slip for some extra substance as well",4,1,0,General,Bottoms,Skirts +573,51,,This dress is very pretty and would be nice for a summer wedding. you will need to go braless or wear a strapless bra. i am sending it back because as it runs very small. i am a 34a and the size 2 was too snug across the top.,4,1,26,General Petite,Trend,Trend +1125,33,So excited it's on sale!!,"I have been wanting this coat ever since i tried it on in the store a month ago. it's beautiful and well-made. it fits tts, but a snug tts, so if you are between sizes, i would order up. grab this asap while the price is right and it is still available!",5,1,0,General,Jackets,Outerwear +995,35,Comfortable and beautiful!,This skirt is true to size and very comfortable on! the colors are beautiful and deep! so glad i snagged this on sale! it will be a great piece to dress up or down depending on where i am going! love it! get it while you can!,4,1,0,General,Bottoms,Skirts +829,73,,"This is a great shirt to wear with jeans or pants. i love the tucks in front with brass buttons. you don't have to unbutton all of them as the shirt slides easily over your head, i love the pattern and it is a great look for fall and later on winter . i think this will be my go-to shirt this season.",5,1,1,General Petite,Tops,Blouses +573,41,Bummer,"My first complaint is, this dress is pinned back so obviously in the video that when the model turns around (not all the way), you can see the pin in the back. that should have been a clue that this dress isn't meant to fit anyone properly if it doesn't fit the model. i agree with another reviewer that the model in the still product photos sized up and up because the dress does not fit loosely in regular size nor is it that long. you have to have a longer torso to pull off the top, or the fabr",3,0,2,General Petite,Trend,Trend +1125,41,Statement piece,"This coat won't take me through a cold boston winter, but i will be willing to sacrifice a little warmth in order to take this beauty out for a night on the town. it's chic, slim, elongating and bold. it looks fantastic paired with some bold tall boots and solid colors underneath. as for sizing, i tend to disagree with most ""runs small"" reviews, but this baby runs small. especially if you really do live in a cold climate and intend to wear something substantial underneath. my bust measurement is",5,1,1,General,Jackets,Outerwear +1125,48,Really special topper/coat/long jacket,"I picked this up during the bf promo and very happy to find my size 10. i was watching this coat, i call this really a topper, because it is not heavy and finishes an outfit, i went up to a size 10 because it runs slim as noted in the description and the reviews. i find this piece to be a reminder of the old retailer pieces i have collected over the years ( since 2001!) my chest is a 34dd and even then the 10 is snug. i can't wait to wear this bold statement piece, i purchased the bailly 44 navy p",5,1,0,General,Jackets,Outerwear +995,47,Get it now,"This skirt is so much better in person than in the pictures. fit is true to size, perfect drape, lined & not clingy, just perfect in every way. it's at such a decent price point too that i think it will sell out--grab it now in your size while you can! + +only ""con"" i can think of is that it might be a bit long for petite sizes, but maybe they make it in petite...?",5,1,3,General,Bottoms,Skirts +863,34,So boxy!,"I bought this shirt in a l, since i didn't want it to be too fitted and was concerned a m would be. it is so boxy! it's like a completely different shirt. i have no idea how it looks good on anyone, unless it is simply widened the larger the size. maybe a m wouldn't be as wide and therefore as boxy, but this shirt is just a bad mess. returning.",1,0,0,General,Tops,Knits +863,58,Cute tee,"I bought this tee in gray and i liked it so much, i got the pink as well. it is not see through or sheer in either of the colors that i purchased. for reference, i am 5'2"" and the shirt hit at low hip. i ordered one size up for a""swing"" look. very fresh, fun take on the basic tee. love it!",4,1,4,General,Tops,Knits +863,31,Surprisingly flattering,"I have a couple of these tanks so i thought i would try the tshirt and its even more flattering than the tanks (which i also love) great material, doesnt stretch out like you would think it would and looks great with shorts or pants.",5,1,0,General,Tops,Knits +829,52,Works for casual and business casual,"This is a lovely blouse. i think is a bit roomy, but even so, i like the look. i have to dress business casual for work and this blouse fits the bill as it's not too casual.",4,1,0,General Petite,Tops,Blouses +863,47,Super cute & comfy,"This is an awesome t'shirt and i'm so glad it finally went on sale. i had been eying it for a while: it's true to size, can be dressed up with nice slacks or dressed down with boyfriend jeans. washes great and looks different from other shirts -- the ruffles on the bottom really make a difference. gotten lots of compliments.",5,1,0,General,Tops,Knits +1125,32,,"I was going to order this coat online, but i ended up finding it in store. there wasn't a 2 petite available but the store had a 2 reg and i found it to fit well enough. i'm about 100 lbs with a 5 ft frame and a 34d chest. i was able to button up with a sweater underneath. + +this is a fabric coat though i think it could have been great as a wool coat. the design and the colors make it easy to dress up any simple or basic outfit. i highly recommend!",4,1,0,General,Jackets,Outerwear +863,59,Defective,"I bought 3 of these tops in different colors, the blue one had one sleeve noticeably shorter. sent it back. now less than 10 days later they are on sale. the style is darling and get many complements on the two i have. fyi i'm a 36d 130lbs and med fit great",3,1,0,General,Tops,Knits +863,60,Yikes!!!!!! $58 wasted!!!!!,"I bought this very cute t-shirt in sky. wore it once, then washed it according to the washing instuctions (machine washable/dryable). this t-shirt turned into a crop top!!!!! i can't wear it. it's going to goodwill. i would suggest that you air dry this shirt, if you want to take the chance that it won't shrink up several inches.",1,0,14,General,Tops,Knits +573,38,Great flowy dress to combat the summer heat!,"I picked this dress up from the sales rack at retailer and immediately fell in love when i tried it on. the colors are prettier in person. the cut on the top is a little snug. my bust size is 32b and i got the size 2. i can see the top being an issue for bustier women. overall, wonderful quality and design! i'm wearing it today to combat the 90 degree+ weather.",5,1,2,General Petite,Trend,Trend +890,62,Beautiful!,"This sweater is really beautiful! i love this brand and this piece is one of their best yet! the fringe is perfect and flowy, a sweater that you can team with jeans and boots and be the best dressed in the room. tts, soft with no itch, really happy i bought it, and because of the color and weight this is an all year sweater which i love, because i know i will not want to pack it away. it fits just like the photo.",5,1,0,General,Tops,Fine gauge +863,62,,I ordered the blouse in black. it's not quite black but maybe in between a brownish gray. very pretty color. it fits just right. would have like it just a tad longer.,4,1,2,General,Tops,Knits +863,21,Light and airy,I got this shirt in light blue. i absolutely love it. i just bought it for the summer and i wore it on a day where it was 85 and it was just perfect. it is a very light material and it's very flowy so it breathes very well. i got an xs. i am 5'6 and it fits just perfectly. highly recommend!,4,1,0,General,Tops,Knits +573,39,Pretty but small,"Gorgeous print on light weight layers in a cut that's flattering, feminine & fun. i sized up and ordered the the 12p to fit my large rounded rib cage & 36dds. i agree with previous reviewers that the bodice runs small. i will add that the neckline is tight if you have a fat neck like mine. stats are 5'3'' 140# 36dd 8/10 on top, 6/8 on bottom.",5,1,4,General Petite,Trend,Trend +1125,46,Florilege coat,"I'm a size 2 in retailer pretty much across the board - size 26/27 bottom, 2 top, generally go for the xs. and i ordered this in a 4 based on other reviews. it's definitely not a winter coat, which i understood. it's not for layering over a heavy sweater either. i wish i had ordered the size 2 instead so that it was a little snugger in the waist. as is i can wear it over a shirt, dress, or light sweater, and that's fine, but unlike other reviewers i don't think you need to size up if you want the",5,1,1,General,Jackets,Outerwear +863,46,Ruffled hem tee,This is one of those you can tell from the hanger that it's not going to work. too boxy. too short. and the girlish ruffle makes it look like an over-sized child's shirt that got all messed up in the washing machine.,2,0,2,General,Tops,Knits +995,60,This skirt is sooo comfortable!,Soft and flowy and perfect for those in-between seasons.,4,1,0,General,Bottoms,Skirts +829,51,I love it!!,"I knew i would keep it as soon as i put it on -- comfortable, beautiful fabric, cute gold buttons! as well, due to the cut, it feels roomy, but has a slender fit around the arms. the ""denim"" color has beautiful detail, but i don't think i would like the maroon solid. i wish there was another nonsolid color -- i would buy another one!",5,1,0,General Petite,Tops,Blouses +1125,53,A real beauty,"Runs almost two sizes small. i plan to wear as a jacket over a sleeveless dress / skirt / trousers like a suit. the material is sturdy. i recommend for early autumn or spring weather. once again, a collector's item with unique colors and design of pattern.",4,1,0,General,Jackets,Outerwear +895,48,Classic retailer,"From unique shape to feminine design, this cropped summer sweater is the kind of item that attracted me to retailer thirteen years ago. it's also flattering, especially for this petite, who doesn't like to show her upper arms.",5,1,6,General,Tops,Fine gauge +995,35,,,3,0,0,General,Bottoms,Skirts +1125,51,Treat yo self,"This coat is just as nice as the russian one from a few years ago, and fits the same. it is stunning! i swear, life is way too short to wear only average coats. if you are a parks and recreation fan, think back to the treat yo self episode.....and you'll know what i mean! i can't say enough wonderful things about this one.",5,1,2,General,Jackets,Outerwear +838,65,If you love cotton and feminine details...,"This is the kind of blouse you want at your reach when dressing on a humid day. cotton enhanced with beautiful detail. a very classic timeless, ageless piece. i bought the medium, which fits perfectly (size 8 top, 34f). my only ding is that the neck opening should be stitched less deep; there is a gap. funny thing is that, in the photo, the model's blouse is pinned exactly where i'm talking about. i didn't take off a star because i had a dressmaker fix the problem, but this was annoying. i wore",5,1,10,General,Tops,Blouses +829,66,,,5,1,0,General Petite,Tops,Blouses +573,40,Flirty with an odd fit,"This dress is so light and twirly and the fabric is as airy as it is pretty. sadly the fit was a bit off. i am 5'7"", 128. i tried on my usual sz 2 and found the top to be saggy at the armpits but too tight at the waist seam; going up to a 4 only made for a saggier top. most likely a great dress for lean or long-torsoed ladies, which sadly i'm not!",4,1,3,General Petite,Trend,Trend +863,22,Simple and feminine,I saw this shirt on a friend and had to buy it right away! it has the comfort of a regular tee but the frills at the bottom give it that retailer look! true to size.,5,1,0,General,Tops,Knits +863,60,Great little t-shirt with a sweet ruffle,"I bought this top in the store where i found they had a beautiful mint color not shown here. i think the length is perfect. so many of the tees, etc. are extra long, so it's nice to have a variety to chose from. i'm 5'5"" and this little tee hits right where my legs begin. it is very free flowing and cool. i own several similar tees and tanks from this line and they are great when the weather gets hot.",5,1,9,General,Tops,Knits +863,64,Cute as can be,"Love this! it's loose and easy for summer, fabric is not too sheer. the asymmetrical ruffle is such a cute feature. washes well. i got the pink for myself (though it's a deep coral color - perfect for me) and the gray for my daughter. wish they'd had the powder blue when i bought ours; i'd have bought that color for her instead.",5,1,0,General,Tops,Knits +288,48,Beautiful and comfortable!,"There may be no inner lining, but it is a gorgeous bra! and so comfortable! the straps and well make and sturdy and the detailing is stunning. it is absolutely true to size. 34c fit like a glove. a winner!",5,1,1,Initmates,Intimate,Intimates +1125,52,Beautiful one-of-a-kind jacket,"I love this coat! i purchased the size 6. i am a size 6 petite, but they were out. plus i wanted the coat to be a little longer. i wasn't a fan of how high it was on the model. it fit as i expected. i will have to take up the arm length, and it hit a little longer than it did on the model. i am 5' 120 pounds. 34c + +the quality is what i expected. it's excellent with lining. color is as shown. this coat will go with everything! i plan to dress it up and down. i purchased the ""orange"" pants and the",5,1,0,General,Jackets,Outerwear +863,49,Great easy tee,"As other reviewers said, this top is rather boxy. but i assumed it ran big, ordered a size down, & i love it. i ended up buying it in both black & white. personally, i don't find it too short. it hits (on me) just below the waist of my jeans - it covers up my tummy - which no one needs to see - but still looks youthful. the little ruffle detail & front seam take it from boring basic to something special enough to feel put together by just pairing with cute jeans. i generally wear a 14 & 38dd bra",5,1,0,General,Tops,Knits +1090,34,Beautiful dress for spring,"I bought this dress for an awards ceremony, and couldn't be more pleased. the quality and detailing on the dress are great, and the hidden side zipper makes the dress easy to put on. i love that it's machine washable on a delicate setting. i've already worn it twice, and can't wait to wear it again for easter.",5,1,5,General Petite,Dresses,Dresses +1094,47,,"This is a beautiful dress and it was hard to let it go but, unfortunately, because the fabric is a little stiff, it accentuated my curvy back side in a bad way. it will definitely look great on someone with a smaller bottom. i tried the xs and did not experience the issues that other reviewers mentioned, such as the large arm holes.",4,1,2,General,Dresses,Dresses +873,44,Pretty tank top,This is the perfect tank for everyday but it looks like you've dressed up a bit. i love the flow and the ruffles and it looks super cute with a pair of skinny pants. really comfortable and it is good quality.,5,1,0,General Petite,Tops,Knits +1094,39,Just say yes!,"This dress is lovely. the embroidery is beautifully done and with bright colors. the material is sturdy. the fit is overall true to size but slightly small through the bust. the length is several inches above my knees and i ordered the 6 regular even though i am only 5'4"". the pockets are a bonus!",5,1,0,General,Dresses,Dresses +1094,49,Beautiful dress,This is beautiful dress with great fit. i agree with other reviewers that the top is small but works well for my small bust size. the fabric is heavy giving the dress a more sophisticated feel.,5,1,0,General,Dresses,Dresses +1094,35,,,5,1,0,General,Dresses,Dresses +1094,48,"Pretty, but stiff",This dress you will want to try on in the store. it is very thick and stiff fabric. the whole front is embroidered and the big drawback for me is that waist seam. there is absolutely no give in that waist. this is not stretchy fabric and not easy for just any body type to wear. sad because it is very pretty on the rack!,4,0,5,General,Dresses,Dresses +1097,25,Beautiful olive green,This is so amazing! the dress is solid and will go under many different jackets kimonos and sweaters!,5,1,0,General,Dresses,Dresses +1001,54,,"Pros. 1) the color and texture of this skirt are gorgeous. twice as pretty as the photo . +2) you could wear this with almost any color top, black boots and youve got a great outfit! +3) the black side panels make this a very figure flattering skirt. + +cons +this skirt is unlined. because it's a knit skirt on some mesh it's slightly seethrough. i'll wear it with a slip, but seriously for this price it should be lined",4,1,1,General,Bottoms,Skirts +1094,20,Beautiful special occasion dress,"I bought this to wear to holiday parties, but it would work for any special occasion. the embroidery is gorgeous and really pops on the black background. the dress itself is a brushed cotton that is thick enough to not to show every bulge. i said it runs tts. i bought the size 2 and normally would wear a 2 or 4 in retailer dresses. the dress is fitted through the torso and flairs at the hips, so you may want to size up or down depending on your body type.. i did not have any issue with the armhole",5,1,1,General,Dresses,Dresses +1094,30,,,5,1,0,General,Dresses,Dresses +1078,40,Adorable and comfortable,"This was a rare full-price purchase for me. i do think that it runs slightly large, but that is part of the ""look"" of this dress. i considered sizing down to an xs for more definition at the waist, but they didn't have one in store so i decided to stick with my regular s. i look forward to wearing this with sandals while summer is still sweltering, but i also think it will transition well with tights, boots, and a cardigan when temps start cooling off.",5,1,3,General,Dresses,Dresses +854,52,Great tee!,"This is a great, versatile everyday tee. the fit is flattering, and the material is soft and lightweight. this, like many retailer tops, runs large under the arms. i first tried the medium, and although i liked the way the tee hung, it gapped in my underarms. there was no small in my store, so i tried on the xs. it still hung nicely, and no underarm gap. love the simple colors - denim blue and gray is a great combination. liked it enough to pay full price:)",5,1,11,General Petite,Tops,Knits +1094,32,Beautiful dress,"Pictures don't do this dress justice, color in store is much more vibrant! embroidered flower is more orange/coral colored. also, at certain angles (depending on the lighting) this dress looks navy blue versus black, which i enjoyed. sizing - while i could have gotten away with my usual 8 the side view was too voluminous and somewhat unflattering so i ended up sizing down to a 6 for a more tailored look.",5,1,0,General,Dresses,Dresses +873,48,Tank top with a little something extra,"I usually wear a size small in deletta. i am 5'5"" and 140 pounds. the small ran true to size for me. saying that i am a size 8 so usually everywhere else i can take small or medium, so i can see how reviewers say it runs big. love the ruffles on this tank. makes it a little more special. super comfy and easy to wear. will be great for hot summer days in florida!",5,1,2,General Petite,Tops,Knits +873,40,,This is a really pretty top that you can dress up or down. the draping on the neck and shoulders falls nicely and i love the back with the lace. it is simple but unique and has nice classic lines. i am usually a pxs but based on the measurements i went with the regular xxs and glad i did bc the petite would have been too short.,5,1,0,General Petite,Tops,Knits +1094,24,Favorite dress,"In agreement with all the reviewers before me, this dress is gorgeous! +i am 5'4"" 120lbs 34a and got this is in a size 0 and it fits perfectly but i would be in a little bit of trouble if i were significantly larger up top, so if you are, definitely size up. +the material is thick, structured and very well made. every time i wear this out i get a ton of compliments! +one of my favorite parts about it is the intricate embroidery on the neck-line that gives the illusion that you are wearing a necklac",5,1,1,General,Dresses,Dresses +1094,34,The dress has nice fabric.,"I ordered a 6 and it fit great i am 5ft 3"" and 130lbs 34b in the chest! i love the fabric, i was drawn to it because i don't think it will wrinkle and crease as easily as other fabrics. it is a flattering cut and is very beautiful in person. the embroidery makes the dress unique.",4,1,6,General,Dresses,Dresses +854,41,,"This is a soft, comfortable shirt. it fits like a t-shirt should. i usually buy m but based on other reviews i purchased s. the fit on me in size small is similar to the model in the photo.",5,1,2,General Petite,Tops,Knits +873,32,Run large,"I love the idea of ruffles, but this shirt was huge! i normally wear a small or medium, and i got the small. it felt more like a large to me. maybe if you size down 1-2 sizes, it will work out for you. i'm going to take it back rather than exchange. i also wish it was a more lightweight material for summer, but it's pretty thick.",3,0,3,General Petite,Tops,Knits +890,36,Bohemian and lovely,"I ordered this on a whim during the 40% discount upon sale price. i was a bit worried it looked like a burlap sack initially, but after trying it on with an under tank and leggings i decided it was a keeper. its quite soft and is flattering. i usually wear a medium, got the m/l and fits well.",5,1,1,General,Tops,Fine gauge +854,38,Unique blouse; comfortable fit,"I'm an xl in retailer tops, and the xl in this blouse fit nicely. tops from tiny can sometimes be really tiny, but this blouse is cut correctly for it's size. i'm full figured and busty and the xl fit comfortably. if you're athletic or have a petite bust or are slender you might be able to size down. +. +the neckline is really beautiful and unique, and the shirt material is soft. the front is a very pale lavender, and the sleeves and back of the blouse are gray. there is a pale lavender lining fo",4,1,11,General Petite,Tops,Knits +1094,31,My favorite retailer dress ever!,I absolutely love this dress. the pattern is gorgeous and it is so comfortable. i have received many compliments every time i wear it. i will definitely start paying more attention to this brand when shopping retailer.,5,1,0,General,Dresses,Dresses +873,60,Cute black t-shirt,"Cute black t-shirt that runs absolutely huge +i ordered the extra small because the extra extra small was sold out + the extra small was not even close to fitting + + so disappointing very cute t-shirt for very big people do not buy if your petite",4,1,4,General Petite,Tops,Knits +1094,57,Perfect little dress,"This is the perfect dress for going out and wearing to work (with a jacket or sweater and boots). it fits perfectly across the bust and waist and then has enough room to glide over the hips. +the material is structured enough to give me a nice curvy shape and the embroidery is well done and beautiful. my husband picked this out from the catalog and loved it on me as well.",5,1,4,General,Dresses,Dresses +873,39,"Large, long, and lovely","I like this top because it covers the bum. it is a little longer in the back than front. it is cotton modal soft, and it is light enough for summer. the ruffles add nice flow and fun detail. i bought this piece because it will make a nice top to wear in the summer, but classier than a tank top. i also knew it would make a nice layering piece under a sweater in the winter. i buy all my clothing pieces now based on versatility, material (for comfort), and classical style.",5,1,2,General Petite,Tops,Knits +1078,38,"Pretty dress, poor fit","I really wanted to love this dress, but it just didn't fit in anyway. i ordered an xs petite, and it was very large. the lacing in the back is completely useless, and that's what i liked about the dress. i was thinking it would be unlaced more at the top (because of chest) and then lace more tightly near the waist. it was completely closed off and the dress was still very loose and unflattering. beautiful fabric, great color combo, bad fit.",2,0,2,General Petite,Dresses,Dresses +1094,46,Embroidered perennial dress,"I'm usually a 2-4 in retailer dresses and i was surprised how well the 2 fit. i like that the dress is navy instead of black, which makes it even prettier.the embroidery is very nice without being too much to wear for more casual activities. fabric is thick enough for wearing out in autumn with some tights and a sweater. prettier in person.",4,1,5,General,Dresses,Dresses +1078,58,Fun dress!,"This dress has the same bold, great color as the picture. although it has a big ""swing"" to it, because the upper portion is a bit fitted, i don't feel like i look pregnant. the material is extremely well done and i like the above the knee styling. i'm very happy i bought it.",5,1,8,General Petite,Dresses,Dresses +1094,35,,Love embroidery!,5,1,0,General,Dresses,Dresses +1094,40,,"This dress is gorgeous. i tried it on in the store several weeks ago and loved it, but the cost was a deterrent. when it went on sale, i ordered it immediately. hoping it gets here soon! the fit is wonderful, length perfect, embroidery just beautiful, and quality is excellent. it is versatile, too; easy to dress down with a sweater and boots, and beautiful for a more formal event like a wedding. for fit reference, i am 5'8"", 130 lb and ordered size 6 (this was the correct fit in the store). exci",5,1,1,General,Dresses,Dresses +1097,46,Very cute summer dress,"This dress was adorable. i found it to be a little too short for my taste- i'm 5'9"", and it hit mid thigh. i think you would probably see my rear if there were the slightest breeze, but it would be perfect on some shorter. embroidery was beautiful, and i loved the collar. also a little sheer, but with nude colored under garments, it would've been fine. definitely try it out!",4,1,5,General,Dresses,Dresses +1001,50,Misleading colors,"This skirt and top is nothing like the picture. the skirt is black not maroon. top is also black. although the skirt is nice, the image was fabulous. the side panels of the skirt are also a knit. quality is good but skirt is overpriced for what it is. would have expected suede or leather panels for the money. not sure if going to keep or not. was really looking for the maroon color instead of the black.",3,1,1,General,Bottoms,Skirts +1094,44,"Love this dress, and so comfortable!","I just wore this dress tonight to my holiday party and received many compliments on it. it's so comfortable and even though the fabric is thick, it's not bulky or stiff like some embroidered fabric can be. and the side pockets make a great addition too. unlike other reviews, i thought the armholes were perfect. the cutout in the back is a nice touch, and i was able to wear a regular bra with it. the colors are beautiful and true to the pic, i was not surprised by the ""brightness"" of it like othe",5,1,1,General,Dresses,Dresses +1094,44,Best dress ever,"Is it possible to be in love with a dress? i think so and i am. when i put this dress on it literally took my breath away. it is beautiful and very well-made. this dress is so fun! i wore it to an event this past weekend and received more compliments than i ever have on something i'm wearing. this beauty is so incredibly comfortable and bonus - it has pockets! i am a petite 4 and it runs very true to size for me. in the store, it looked more navy than black, but as i have it home, it is definite",5,1,5,General,Dresses,Dresses +862,39,Transformed into a crop top with one washing,I loved this shirt until the first time i washed it. it shrunk so much it became unwearable. when i returned it the salesperson said she had also bought this shirt and the same thing happened.,1,0,0,General,Tops,Knits +1082,41,Compliment grabber,I wore this dress to work with a tan pair of booties and the compliments started upon entry and did not stop till the end of the day. very feminine and comfy all at once.,5,1,1,General,Dresses,Dresses +1082,47,Average,The dress is too loose and runs too big,2,0,0,General,Dresses,Dresses +862,49,Love the shirt but do not wash!,"I don't usually write reviews but this one definitely needs it. i bought this shirt in the wine color in a small. i'm 5'6"" 135lbs and usually wear a small in retailer clothing. loved the color and fit of this shirt, a little longer and loose with unique detailing on the sides. i loved the wine color so much i bought the gray and white stripe one as well. when i bought the gray and white one i had to try on 5-6 smalls before finding one that fit just right. there was a significant difference in the",3,1,2,General,Tops,Knits +862,55,Shrunk terribly,"I was so excited to find this shirt on sale at my local retailer store. but, i did not notice the high percentage of rayon in the fabric, which caused the shirt to shrink significantly in the wash (even when following washing instructions). i washed it on cold with woolite and it is about half the length it was initially! i'm so disappointed. how can you make a shirt that can't withstand washing?!",1,0,0,General,Tops,Knits +1082,38,"Lovely colors in a relaxed, beautiful dress","This is one of those just throw on and go dresses that i love. it is breezy and easy, comfortable, but also polished and lovely with some really nice design features and a beautiful mixed print. you can wear it with some cute flip-flops, or polish it up with some cute boots.",5,1,1,General,Dresses,Dresses +862,33,,Wish i would have read the reviews before i purchased and wore two of these. washed as directed and same outcome as everyone else. basically unwearable unless i maybe use it for a nightshirt. the shrinkage lengthwise was ridiculous. glad i didn't buy every color like i had planned to do!,1,0,0,General,Tops,Knits +1082,35,,,5,1,0,General,Dresses,Dresses +862,65,Shrunk!,So disappointing! everything i've owned from bordeaux has washed well and stood the test of time. one wash and this was ruined! shrunk terrible even after washing in cold water on delicate and laying flat to dry. completely ruined. returned it.,1,0,1,General,Tops,Knits +1082,62,Love it!,"This is beautiful - the colors are rich (though the pink is slightly more noticeable than the model image. the length was just shy of my knees at 5'7"", and the fit was overall swingy. i am happy with my normal size s, though i would be curious to see how the xs fits too. i suspect that it would be too tight in the shoulders but fit everywhere else better. one major difference that slightly annoys me is that the sleeves are not long as shown in the model shot. the flared portion starts at about m",5,1,30,General,Dresses,Dresses +1092,25,Cute in theory,"Adorable, old school retailer; the only gripe i have is trying to get this on. the slip is similar to putting on a straight jacket. once you figure it out, then it's gorgeous. just be careful and lay it out carefully before you pull it over your head.",5,1,6,General,Dresses,Dresses +999,34,Love it!,"Stunning! i got about 6 compliments the day i wore it. 2 different men i barely know said ""you're really rocking that outfit."" + +i wish they made this in petite as the xs is slightly big (i'm 5'3"" 106 lbs) but i kept it anyway since i'm both a little underweight right now and also since i was able to roll the top so that it was an appropriate length to wear with flats. + +i paired with a denim shirt- perfection.",5,1,0,General,Bottoms,Skirts +1080,53,Beautiful dress!,"Love, love, love this dress! the fabric is high quality; the colors are rich and vibrant. the fit is very flattering, with the open neckline and fitted waist. versatile piece that can be dressed up with heels and jewelry or dressed down with tights and boots. my usual size fits perfectly.",5,1,1,General,Dresses,Dresses +302,32,Cute top,This top is very cute but runs large. i am a 32b and i had to take the xsmall. the back of the bathing suit only has one slot for closing it up so you can't adjust it.,5,1,0,Initmates,Intimate,Swim +862,30,Do not wash,Ok so when i bought this in every color there were no negative reviews. i loved this shirt. it was amazing. fit perfect was so comfortable. then i washed it. ahhhh. it shrunk so bad my3 year old could wear it. i washed it according to the tag. then the second color i just hand washed in ice cold water and laid flat and it still shrunk. man. i wish i could return these shirts. they are so bad. and i typically love bordeaux quality. these are horrendous.,3,0,0,General,Tops,Knits +862,50,Poor quality,It's a cute top but once i washed in cold water and laid flat to dry it shrunk and lost it's shape. very disappointed. i am going to return top.,1,0,1,General,Tops,Knits +868,27,"Wants to be modern, but didnt get there.","I was hoping this top would be a nice architectural piece to add to my wardrobe with its straight black line accents. sadly, in the end, it is just a t-shirt. a large t-shirt. i ordered my normal size (medium) and this shirt ran more like a large. i also did not like the way the neck was hemmed. the fabric folds over itself, when i think a better design would have been a more simple hem. i ended up returning this item due to its size.",4,1,0,General,Tops,Knits +1082,69,Love it with a design change,"I purchased the dress on a promotion. the dress i received had the sleeves end about the elbow. i added a 4"" black cotton lace to the sleeves. i love the result. it makes the design richer and brings out the lace running down the front of the dress. the sleeves are a much better length for me now. dress runs tts. i purchased a medium, am 5'7"", 150 lbs, really am large boned, straight up and down.",4,1,0,General,Dresses,Dresses +862,41,,"I loved this top when i wore it! it draped beautifully. i always snatch up all of bordeaux t-shirts because of the way they hang. but beware - you must dry this flat. i've always had no problem washing and drying their t-shirts, but this one shrunk up to half it's size the first time i washed it and is no longer wearable. it does say on tag lay flat to dry and they mean it!",3,0,0,General,Tops,Knits +999,49,So beautiful,"As the previous reviewer stated, this skirt is a stunner, can be worn in all four season. it's long and runs on the larger side. so that you compare, i'm 5'9"" and it goes all the way to the side of my foot. i'm 146lbs, 28 waist, 38 hips and always a medium on maeve, this skirt on a medium was too big for me, at least a size larger. take that into account when ordering. other than that it's a great purchase. can't wait for my exchange to arrive.",5,1,2,General,Bottoms,Skirts +999,47,The perfect maxi skirt,"This skirt has a more dusty black background than the website lets on, which i love. the floral pattern is delicate and subtle, and the tiers give this gorgeous skirt the perfect amount of flounce. it is so versatile! the quality is excellent. the skirt is fully lined. it will take me easily through three seasons (the weight of it might make it a bit too warm for summer). i'm so happy i bought this!",5,1,0,General,Bottoms,Skirts +1082,41,Sack like,I thought this would be cute with leggings based upon the length on the model. i forget that the models are almost 6 feet tall. this has a polyester slip goes under it that snaps onto the shoulders. it came down to my knees and was completely like a sack no leggings and boots with this one. lovely material but not at all figure flattering.,2,0,2,General,Dresses,Dresses +862,76,"Loved it, but...","I loved this shirt so much i bought it in 4 colors. however, two of them shrunk. i was very disappointed.",2,0,0,General,Tops,Knits +862,50,Buy one every color !,How can you go wrong with soft cotton top that is neither too snug nor too loose? expect will wear these as layers under when really cold and by them selves in early spring and in the fall. great colors and love the multiple textures.,5,1,0,General,Tops,Knits +1082,57,,"I just bought this dress in the store and i absolutely love it except for one thing. why are the sleeves on the actual dress so much shorter than the picture with the model? i suspect the model has long arms, not little t-rex arms, so why does the sleeve hit at the top of her wrist, while my lovely dress hits just past my elbow. it's a mystery. was the pictured item not what the store took delivery of? anyway, still a great dress, just trying to figure out if i should add lace or something to ma",4,1,14,General,Dresses,Dresses +862,31,Beware of care,"Let me start off by saying i never write reviews, but feel compelled to so that no one else gets swindled into buying this beautiful one-time wear piece. i absolutely fell in love with this shirt when i bought it in the fall in black... perfect basic to wear under my new draped open vest from retailer! and perfect fit! i'm long torso-ed and long armed and always have trouble with fit. this being kind of oversized was just loose enough and long enough i could actually feel comfortable wearing it wi",3,0,0,General,Tops,Knits +1082,57,"It's adorable, but...","This dress is absolutely beautiful! and, had it been just a little longer or a little shorter i would have kept it. but, the hem hit me at just the wrong spot! alas, i had to send it back :(",4,1,0,General,Dresses,Dresses +1082,45,Cute....but,"This is a cute, flattering dress, however the drop-waist, the short length and the odd-length sleeves (shorter than shown in the photos!!!) added up to me feeling like i was dressing way to young. it just didn't convey an elegant, mature vibe. this dress is perfect for a 20s-30s woman who wants a versatile dress to wear on many occasions. it's great because it's not too expensive and you could wear it with any type of shoes. + +my big problem is the lack of transparency regarding the actual slee",3,1,1,General,Dresses,Dresses +1028,39,Second attempt to write review...,"This review will be shorter as i already wrote another one and it was never posted.. +---------- +1) these are high quality jeans; the fabric weight is light enough you will be able to wear them year-round +--- +2) i am 5'8"", 144 lbs, and the size 29 felt best on me; for this brand i typically wear a 28-29. i felt like the 29 was cut too narrow in the hips for my body type. for ref. i am athletic, with shoulders broader than hips. if you're unfamiliar with this brand know they do not use a lot o",4,1,13,General Petite,Bottoms,Jeans +1044,32,,"This one didn't work for me. there is no zipper, you climb into it from the very large neck hole. it was very low cut and the shoulders kept sliding off but the bottom half fit snug. the tie and waist seam didn't hit at my waist but the largest part of my middle. i tried other belts and it wasn't much better. the fabric and print were great. i love jumpers but this one went back.",2,0,0,General,Bottoms,Pants +1082,35,Fun for fall,"This dress is so fun and very comfy! the slip it comes with pulls the whole dress together! it has been great for warm fall days, but i can see it being warn with leggings and boots into the winter. i love the combination of blocked deep colors along side of pastels. i'm 5'5"" and the length is just right, not too short.",5,1,2,General,Dresses,Dresses +1082,66,Dont love,"I ordered size large and find this to be way too oversized, wide, long and unattractive on my frame. the print is just okay but since it doesn't wow me, i'm returning.",3,0,0,General,Dresses,Dresses +1104,44,Way too much fabric,"I loved the look of this online and ordered the xs as maeve seems to run large and that was the smallest size offered. the length was good for me (only 5'4""). the elastic top fit well (32b) but then from there it was too much fabric. i thought this would be a straight fit or a slight a-line but it was just a huge amount of fabric on me...several inches on both sides big. i think with the large ruffle along the top and the tremendous amount of fabric hanging down from the dress underneath the ruf",3,1,0,General,Dresses,Dresses +862,29,Shrinkage,"I loved this shirt when i got it. it fit perfectly, and was so soft. but when i washed it, following the instructions, it shrank up to well above my belly button. i'm talking 6 inches of shrinkage, at least.",1,0,0,General,Tops,Knits +1080,24,Amazing and it has pockets!!!,I saw this dress online and thought it might be an adorable eclectic piece to add to my closet. and was i right. the simple shape mixed with the bold pattern make this dress an awesome one to own. its easy and fun and funky. plus it has hidden pockets! beware though this dress seems to run a bit small. i would say if you switch in between sizes like me i can be a 6 or an 8 then possibly go with the larger size. i do have a large bust as well i wear a 34ddd so it shows some clevage but the girls,4,1,1,General,Dresses,Dresses +999,36,Better in person,"This skirt has a beautiful, flattering feminine fit. the floral pattern is delicate and a little different and, of course, the layers are what make this piece a stunner. i highly recommend it. can see wearing this all year, dressed up with jewels, or down with boots and a casual sweater.",5,1,5,General,Bottoms,Skirts +862,56,,"After reading all the reviews i figured at 40% off i could at least try it. i'm 5' 3"" and typically wear a m or size 10. i ordered the m, but as other reviews stated the arms were tight. since i'm expecting it to shrink, and want it to cover my booty, i ordered 2 colors in the l. it's exactly the oversized, slouchy look i wanted, without the neckline being too low, but will still be ok if it shrinks. i'll have these dry cleaned to minimize shrinkage. it's a wardrobe staple that looks great with",4,1,0,General,Tops,Knits +999,33,,,5,1,0,General,Bottoms,Skirts +999,31,Stylish,"I got this skirt because its elegant and can be worn in three seasons. it is stylish and can easily be dressed up or down. i usually wear an xs in bottoms and this runs about one size large in the waist area. still, i am keeping it and plan to have it altered. it is cute and completely worth the extra effort",5,1,0,General,Bottoms,Skirts +302,89,,"Love the fabric, fits true to size, great quality.",5,1,0,Initmates,Intimate,Swim +1082,39,Great dress for day or night,"Love this length, print and material! have already worn 2 times and wears and washes well! sleeves are short than pic shows but i don't mind...",5,1,3,General,Dresses,Dresses +862,68,Will never be the same after washing,Bought two of these because i loved the way they fit off of the rack. washed them according to directions and they were ruined. the material shrank up making the shirt short and boxy and the side panels ended up being rippled. definitely going to try to return these.,1,0,0,General,Tops,Knits +862,47,Great versatile shirt,"This is a great shirt. it's super comfortable and fits nicely. not too big and not too small. +you can wear it with leggings or dress it up with skinny jeans and boots. +i bought the striped and black one. i highly recommend it.",4,1,0,General,Tops,Knits +862,26,,I thought these were great everyday shirts for the price. i got them on sale over christmas. they fit well and i really love the striped shirt. the navy is an odd color and looks strange with jeans but i love the top regardless,5,1,0,General,Tops,Knits +1082,43,,,5,1,0,General,Dresses,Dresses +862,27,,Super soft and the trimming on the neckline and sides adds character to the shirt. runs a bit shorter than i expected.,4,1,0,General,Tops,Knits +1082,67,Peasant with style!,I first saw this dress in one of the stores and the rich colors caught my eye. this dress is very comfortable to wear but is also unique. the fabric feels great on and gives the dress an overall stylish flair. the photo doesn't do it justice!,4,1,2,General,Dresses,Dresses +862,35,Loved this until....,"I purchased this shirt in a medium, in the wine color. i love the drape and fit of the shirt. it has a laid back vibe and the material is supper soft and comfy. it is also a bit more substantial than some of the thinner shirts i've bought at retailer. you could easily dress this up or down. i wore this shirt a couple times and then machine washed it on cold on a delicates cycle and dried it flat. it majorly shrunk! now i can't wear it because the length shrank at least an inch or more. if you purc",3,0,0,General,Tops,Knits +1094,31,Pretty but runs large,"I am 5'4"", 100lbs, petite frame, i bought this dress in xxsp. the fabric was good quality and thicker than i have imagined, good for fall, maybe a little warm for the hot humid summer days, but perhaps a cooler summer day. unfortunately this dress runs pretty large, much too large for my petite frame, so i had to return it. i would recommend sizing down. this dress is very beautiful and would be great to wear to work or out for after work drinks, also maybe a bridal shower or other brunch event.",3,1,9,General,Dresses,Dresses +999,37,Gorgeous!,"I picked this up this weekend. so gorgeous! i usually don't do maxi length. at 5'3"" it can be overwhelming. but this is so flattering! this is floor length on me. i picked up a couple tops at another store because the suggested sweaters were just too baggy for my frame. i'll pair it with a cream blouse (pictured) to dress up and a pink crepe blouse and denim jacket for a more casual look. i'm usually a 4 and the small fits perfectly.",5,1,3,General,Bottoms,Skirts +1082,39,,"This beautiful, soft, swingy, dress is oversized on me. usually when someone reviews that a dress runs large but their body type is opposite mine, i pick tts and 90% of the time i'm right. not so in this case. the outer dress is very wide and the amazing super stretchy under slip is too large also. debating on sizing down because of potential shrinkage after laundering. i bought m and my stats are 5'3"" 140# 39/28/35. dress ends just above my knees. + + +agreeing with the previous reviews th",5,1,12,General,Dresses,Dresses +862,48,Poor quality,"When the top arrived and i tried it on; it was great. the length was perfect even though i am curvy. after one wash (done according to the directions), the top shrank in length considerably. i do not mind paying a higher price for something unique and something of quality.....i do have a problem with something that does not hold up to basic use. i will be returning this item.",1,0,0,General,Tops,Knits +1082,66,Cute but big!,Loved this dress but ran much larger than other maeve dresses i have ordered in the past!,5,1,3,General,Dresses,Dresses +302,38,,,5,1,0,Initmates,Intimate,Swim +1044,36,So good!,"Wonderful fabric. surprisingly great fit. super flattering. i'm so glad i bought it, despite jumpsuits being a bit of a risk online.",5,1,1,General,Bottoms,Pants +1092,52,"Transitional, versitile, and well-made dress","It was the color that prompted me to take this dress to the fitting room. as seen in the photos, it is a deep burgundy or dark maroon. though the color is deep and rich, the design of the dress makes it lighter and easily able to be worn during the heat of the summer. + +in the later months of summer and early fall, i will wear this dress without leggings for a transitional look. when the temps cool down, though, i will wear leggings or tights throughout the winter with the dress. it will easil",5,1,17,General,Dresses,Dresses +1094,40,,,4,1,0,General,Dresses,Dresses +781,35,Great fit casual wear,"These are nice dusty rose pants. they have a great textured design on them. they will look nice with a plain white tee or chambray shirt for brunch! i will say they are not soft like sweatpants, definitely feel like a poly-blend but the look makes up for it. the material is a little on the thin side and they are not lined....but not see-through either.",5,1,1,Initmates,Intimate,Lounge +302,32,,,5,1,0,Initmates,Intimate,Swim +862,31,Shrinks! don't buy,"I tried on and bought this shirt in my usual size and it fit long and loose but still had great shape. after hand washing in cold water and air drying, as per instructions on the tag, the shirt shrunk significantly. so much so that my stomach shows if i raise my arms at all. it also lost its shape, and now looks very boxy and is very unflattering. i won't be wearing it and am disappointed i didn't even get to wear it once!",1,0,0,General,Tops,Knits +1082,61,Patchwork dress,"I love swing dresses and normally order l , but this one turned out to be way too large. and as other customers said the sleeves are short , so the whole look is out of proportion. the colors are much brighter than they appear in the photo. the dark patches are a bright peacock color and the hot pink is just too much for my taste.the material design is not as classy looking as it comes across on line.so sad because i love this dress pictured on line and this is not it. +the quality of the slip",4,1,3,General,Dresses,Dresses +878,35,Gorgeous cardigan,I wear cardigans pretty much every day since my office is chilly and i need something a little dressier to be able to wear that will keep me warm. i love the design of this cardigan which makes it very flattering-the longer in front is a style i gravitate toward and i like that the back isn't just straight but it has that little flair-this is not something that is commonly seen in a cardigan (unless it is short all the way around) and it was great attention to detail by the designer. i like the,5,1,15,General,Tops,Knits +872,35,Thick material,"I really like this top, it is form fitting and i think true to size that i would normally wear. i do not think the v-neck is too low so that i would feel comfortable wearing this even to work. i was surprised at how thick the fabric was, but i am typically cold so i like this feature. the criss-cross design in the front and back of this garment is very flattering and i get a lot of compliments whenever i wear this piece.",5,1,4,General,Tops,Knits +1020,30,Really small,This product runs either really small or is super high waisted. either way not for me.,2,0,5,General,Bottoms,Skirts +1024,53,Most comfortable jeans!,"I just purchased these jeans on-line in my regular size 27 (5'4"", 27/35, 116bs) and they fit me just perfect so they are tts. they are super soft and there's just enough stretch in these that i'm able to bend easily yet they retain their shape nicely. the pockets in the front are super cute in person and the back gives a really cute look. the color is just as shown in the picture, a nice shade of blue that's in the middle plus they are really incredibly soft. i'm only 5""4"" but found the regular",5,1,4,General,Bottoms,Jeans +907,20,,Cute sweater to wear over a dress or tank top. looks better on than in the pictures.,4,1,0,General,Tops,Fine gauge +907,64,,,5,1,0,General,Tops,Fine gauge +872,55,Well made,"I wanted to love this top. unfortunately, the color & fit didn't work for me. i'm a 36ddd. the fit was ok, it even flattered my bust, i just felt the stripes didn't flatter my waist. this would be perfect for an athletic frame.",4,1,0,General,Tops,Knits +895,46,Super cute,"I normally wear a xs, but i got a small so it would be a little longer. great quality and adorable!",5,1,0,General,Tops,Fine gauge +505,26,,These little shorts have become my favorite. they are so sweet and feminine and very comfortable. the fabric washes very well,4,1,0,Initmates,Intimate,Sleep +1020,41,"Great skirt, runs small","I definitely agree with the other reviews, however i really like this skirt because it will go with a variety of tops to dress it up, or down, as well as color options. the tricky thing is that it runs super small. i'm usually between a 6, or 8 (28/29), and ended up getting a size 10. i don't like high waisted skirts or pants, so it sits just below my navel and is very comfortable. maybe best to try on in store, but worth it!",5,1,6,General,Bottoms,Skirts +907,39,"Ok, but have seen better","I tried this on as it was on sale and my size was on the store. i didn't end up buying it as it felt jsut meh compared to so many cute cardigans. i do have a couple of grey ones and tried on grey, so perhaps i jsut dind't need it... pros: short so would work with dresses and high waist.",4,1,0,General,Tops,Fine gauge +1080,39,Interesting color,"I wasn't sure about the color but ordered based on how much my stylist loved it. my usual xs petite fits perf daly, no chest problem (30dd) and the length is quite nice. romantic look, the drawstring in the back helps making sure the dress fits properly at the waist. it is a high low style with flowy skirt. overall great. i need to stop going to the store""",5,1,0,General,Dresses,Dresses +907,42,Disappointed,"This sweater looked so promising with the tie waist and pretty lacy edging, but turned out to be a disappointment. it was much shorter than it looks in the photos and barely came to my hips. and the plum color was much darker than i expected, more of a dull brownish-burgundy.",2,0,17,General,Tops,Fine gauge +907,54,The perfect cardigan,"I love love love this cardigan!! i ordered it in plum, regular small as they were out of petite small ( my preferred size). i was very impressed with the quality of the cardigan. the details like the sheer fabric around the neckline are very delicate and beautiful. the waist line sits exactly where it should. i was worried it would sit too low as i am short and did not get this in petite sizing. so maybe i should say this cardigan runs small. i think i have found the perfect cardigan. it goes wi",5,1,1,General,Tops,Fine gauge +878,46,Sky blue is beautiful,"I ordered the blue in size xl. it's even prettier in person. the fit runs a little smaller/shorter on me than shown on the model. i'm 5 ft. 5 1/2 in. for reference. i love the detailed stitching. it is delicate and can catch. my dog's claw pulled on it and i had to reweave the thread back. i've washed mine twice, reshaped & air-dried. it didn't shrink much at all. it's perfect for spring & summer. i've gotten a lot of compliments on the shade of blue. it's really so pretty.",5,1,0,General,Tops,Knits +872,40,"Very comfortable and cute, too!","I love this top and bought it in both colors. what's really fun is that i found a pair of espadrille sandals to match the sandy beige and white colored top and i have attached a photo of me under my arbor to show you. these tops are designed to have a flattering fit. i ordered size small and they are not too tight. i am 36 c in the bust line and an hour glass figure on bottom. i love that they are off the shoulder a bit and in a v neck, which is flattering on me. the material is soft and of good",5,1,1,General,Tops,Knits +872,61,Great top!,"I was hesitant to try this top on because i thought it might be too tight, and then was delighted to find that it is so comfortable and flattering. i am usually a m and the m fit me great. i have to disagree with another reviewer that this top is for those of us b cup or smaller. i am a d and it fit me great. it's got enough give and support (great fabric and wrap design) to fit a wide range of bust lines. it's a great blend of being attractive without being too revealing. i love it. got it in b",5,1,4,General,Tops,Knits +907,49,Too short,"I'm about 5'9"" and this sweater was too short for me. the arm length was great but the overall length was just too short :-( i'll be returning this one.",4,1,6,General,Tops,Fine gauge +895,75,Gorgeous sweater,"This is a very substantial, warm sweater that is so classy and super soft and just different enough. really great with neutral sweater leggings or jeans with boots. you have to wear a longer tank or tee underneath as it it split on the sides but the belt cinches the whole sweater in.",5,1,8,General,Tops,Fine gauge +1080,42,Light and flowy,"I purchased this to wear in spring and summer for work or in the evening. i am 5'8"" and have actual measurements of 29"" ribcage and 33"" at largest part of my bust. i wear a 32c/d bra. i found this dress fit me perfectly in the bust and the darts on the front create a flattering shape. i was disappointed in the waist at the back. from the photos, it is not clear that there is a drawstring waist cord. i thought this made the back look bunchy. i would have much preferred a side zip so the back coul",4,1,3,General,Dresses,Dresses +1020,55,Goes with anything,"Love this skirt its like a denim feel so there is good structure, love the colors anything goes with it, and i love pockets very comfortable day skirt for just around town",5,1,1,General,Bottoms,Skirts +505,31,,I couldn't agree more with that first review. i would add that it does run large.the leg holes are big. beautiful flower watercolor design as it shows in the picture. soft fabric and thin elastic waist band. no fake string tightener or buttons. simple and romantic. yet still a good sleep short to prance around the house in:),4,1,1,Initmates,Intimate,Sleep +1009,40,,"Just didnt like the fit. it ""puffed out"" in front, so that wasnt very flattering. i have an hourglass shape, and this was not a good fit for me.",3,0,0,General,Bottoms,Skirts +872,32,Cute and casual,"Shoulders hide bra straps well - relaxed, but flattering fit. comfy, but can be dressed up!",4,1,0,General,Tops,Knits +907,83,,"I purchased this sweater in the grey and loved it. +much prettier in person, the photos do not show the delicate details, which are lovely. +i found that it fits true to size and has a very flattering fit. +it is also a very versatile piece depending on what you pair it with. +i love it so much that i purchased the peach and wine colors as well. +i found all 3 colors beautiful and each gives this sweater a different look. +the grey is sophisticated and works well with almost anything. +the peach is del",5,1,1,General,Tops,Fine gauge +895,45,,"I passed this over on first sight because it looked like it might be on the short side in length. after seeing a few other photos and reading the reviews, i opted to give it a go. the store did not have my usual xs or even a size small, so i tried on the medium. it was too wide as expected, but the shoulders are adjustable so i fiddled with it a bit and decided it was really cute. there were no more xs available to order so i asked if the store could order the small. it arrived and is absolutely",4,1,1,General,Tops,Fine gauge +1080,35,Disappointed,"The print on this dress is really pretty and the styling with the lace is a nice touch. unfortunately, it runs quite small in the bust, so i had to return it. for someone that is small busted, it will be quite cute. everywhere else it is true to size.",3,0,4,General,Dresses,Dresses +1020,48,Cute unique skirt,"I loved the multi stripe pattern, buttons, pockets and a-line shape . i agree it runs small. i sized up from my normal size 4 to size 6. it sits at my belly button which i like. i can tuck in a thin shirt comfortably. the pockets kind of sag/pooch forward and don't lie straight through the course of the day but not enough to really bother me. i straighten the skirt by pulling up. great buy on sale. i'm 5'2"", 115#.",4,1,0,General,Bottoms,Skirts +374,49,A zip-up jacket with a little extra style,"Like the other reviewer mentioned, this jacket has a very trim fit, so size up if you want any extra wiggle room or are not a fan of snug clothing. i liked the warm neutral color and the gathered ruched detail up the front. ultimately i did not buy it due to the sleeves being a bit long and the style more body-hugging than what i was looking for. but it is comfortable and a nice twist on a classic.",4,1,4,General Petite,Intimate,Lounge +153,42,,"I wanted to love these, but they're so tight around the top. my legs are normal size and i couldn't get them above my knee. the top isn't stretchy...it has a string that keeps it from expanding. they are so very cute, but unfortunately must go back for me.",3,0,0,Initmates,Intimate,Legwear +1009,36,Adorable all season skirt,"The gorgeous coral color of this skirt makes it a great all seasons skirt. the slightly heavier weight of skirt makes it extremely adorable for fall/winter. pair it with some tights, chunky knit and booties, good to go. very flattering one. has a slight a-line cut to it. i love love this one.",5,1,1,General,Bottoms,Skirts +907,40,Lovely product,This is such a nice little sweater to add to a dress or tank. fits true to size and i love the tie and hook and eye closure. quality.,5,1,0,General,Tops,Fine gauge +872,26,,,4,1,0,General,Tops,Knits +895,45,Love it!,"I saw this in the store, not on sale and loved it. was so happy when it went on sale! it is beautifully made and is soft and cozy.",5,1,0,General,Tops,Fine gauge +1009,45,Cute in coral,"I love it! it's cute and short and shows off my legs. the material is thick and great quality, so great for the fall. the color is great for florida!!! brightness year round. it's fits perfectly. i purchased a 14 and it fits like a glove. i am going to wear with my booties and a jacket like the model. hey it works!!!",5,1,1,General,Bottoms,Skirts +907,64,Lightweight cardigan,"This very lightweight cardigan looked like an eggplant color online. it's brown with a hint of burgandy. not bad, but unexpected. i am very short -waisted, and this lies very high on my torso. the seams are unfinished, and it looks cheaply made. glad i got this on sale.",3,0,0,General,Tops,Fine gauge +505,26,Light and airy pjs,"I love these pjs! i thought $100 for the set was a little too pricey for me but as soon as they went on sale i knew i had to have them! they are so light and fresh, perfect for the texas heat! it helps that the print is absolutely precious as well!",5,1,0,Initmates,Intimate,Sleep +1020,41,Overall a nice purchase,The skirt is so cute but it runs pretty small. the fabric is nice and heavy it is adorable with a chambray top.,4,1,0,General,Bottoms,Skirts +872,25,Super cute and chic top,A really great basic that can be styled a number of ways. i bought it in tan and white and received many compliments on it. the slightly off the shoulder look is really flattering and perfect for a spring or summer look.,5,1,0,General,Tops,Knits +505,43,Lovely and perfect for summer,"I purchased both the floral sleep shorts and the top. the floral watercolor pattern is gorgeous and the fabric is very soft. like the other reviewers, i appreciate the feminine quality of this set while also being able to run around the house. i am 135 lbs and purchased a s.",5,1,1,Initmates,Intimate,Sleep +872,37,Adorable,"Love this top the crossover design is so cute. i ordered by normal xs (5'5"" 110 lbs) and was worried it wouldn't fit right in the chest (34 d) but it does and even though it's cut on the lower side it's made so there is no gap in the shirt when you bend over. has a little elastic in there to keep everything together. perfect length and nice thicker material got the navy and red stripe and with white jeans is so cute!",5,1,0,General,Tops,Knits +895,38,,"What can i say? it's like wearing a hug. it's so wonderful i have a hard time taking it off at the end of the day! it's extraordinarily soft and thick, and stylish to boot! the one thing is that the thread holding the pockets together was already coming unraveled when i took it out of the package, and i had to sew them back on right away, as they were starting to come completely apart. a small price to pay for being a new owner of the best thing ever.",5,1,1,General,Tops,Fine gauge +374,35,Size up,"I love the ruching on this hoodie, which is why i ordered it. i'm typically a size small, 34b, 130lbs but the hoodie was a bit tight in the waist and around the bottom band. i might order it in a medium (although the sleeves will likely be too long) the only thing that makes me hesitate is the color. it's more of a brown gray (instead of just gray as you see on your computer screen.).",5,1,4,General Petite,Intimate,Lounge +1009,52,This one picked me!,"Tried it on a whim and could not leave it behind. 5/4', 135, size 4-6, took a 6. something about the pocket placement, fabric weight, cut, and color make this one a real winner for me. plan to wear it with a creme windowpane coat.",5,1,0,General,Bottoms,Skirts +872,36,Cute style but a little large,I ordered the red/navy and i love that its a true red and navy. the subtle ribbing adds the right amount of texture. i normally order size small but i felt the top was a little big and has a very long hem line. i'm hoping it shrinks in the wash and i might alter the hem if its still too long after washing.,4,1,4,General,Tops,Knits +374,38,,This is the softest jacket! i could sleep in this fabric. the ruched details and fun collar make it unique. plus it has inside pockets! one of the best finds in a while.,5,1,2,General Petite,Intimate,Lounge +1020,34,Cute and comfortable,I found this fit tts for me. i'm normally a 10/12 and took a 12. fit and length are great. the fabric felt substantial and the colors are soft.,5,1,0,General,Bottoms,Skirts +895,47,Soft pretty poncho,"The colors are so pretty, a pinkish brown and a light brown trim. it is very soft and elegant looking. great with jeans or leggings. the tie is a little high in back but looks great. highly recommend!",5,1,0,General,Tops,Fine gauge +895,38,Comfortable & effortless,"This top is the bomb. the red is a perfect balance of washed out but still rich. the thin spaghetti straps and scooped back make it sexy, but it still looks effortless. perfect to pair with light weight, light wash jeans. it's also nice that it's not clingy at all, lends to the casual look. total keep for me.",5,1,0,General,Tops,Fine gauge +895,62,Had potential,On the mannequin this looked adorable. it is made well but if you have any bustline it just billows out below like a tent and is not flattering. if it had less fullness it would have been really cute.,3,0,6,General,Tops,Fine gauge +374,36,So cute and comfortable,This fabric feels a little bit like heaven. i would totally wear this out and not just with my jammies. it's adorable and the fabric is so soft. i think i'm in love. i'm 5'2 95 lbs. xxsmall was a perfect fit.,5,1,0,General Petite,Intimate,Lounge +907,64,Oh my goodness!,"I love this sweater! i ordered the dark gray and wasn't expecting fabulous but that's what i got. the skirt below the waist tie is actually pleated so that it falls perfectly. the seaming detail is beautiful. i am between a size large and extra large and the extra large fit perfectly. the sweater is short, half way down my hips but looks good over a long tank. this a medium weight knit and will be wearable all year with skirts, dresses and any kind of trousers. this is one of my favorite purchas",5,1,6,General,Tops,Fine gauge +895,48,Cute summer tank,"Loved the red and white stripes and soft fabric, lays nicely has a nice cut. pairs well with jeans and a cute casual jacket or dress it up. nice quality and color!",5,1,2,General Petite,Tops,Fine gauge +907,40,,This sweater is super light-weight and is very cute.,4,1,1,General,Tops,Fine gauge +895,48,,"Bought the red/white. normally a size small but they were out so tried a medium. it fit perfectly. and feels amazing. love how it hangs and know i will get lots of compliments on this! jeans, white linen pants, very versatile how this can be warn.",5,1,1,General Petite,Tops,Fine gauge +374,35,"Soft, body conforming and comfy!","First i must say that i bought this zip up hoodie because of the material and how incredibly soft and comfortable it was - absolutely worth the price. however, the sleeves were about 4"" too long! because i am a seamstress, and this was an easy hem for me i went ahead and purchased it and hemmed up the sleeves, but i was honestly shocked how long they were. you would have to have very long arms for this to fit you without alterations. if you don't mind rolling them up i suppose it might work as w",4,1,1,General Petite,Intimate,Lounge +872,24,"Loved it, but it didn't work for me.","I wanted this top to work so bad. unfortunately the way the bust of the top is designed it isn't flattering if you aren't flat chested. it squishes on side of your chest and leaves the other side alone. i'm a b cup and had this problem so if you are a b or larger, i don't recommend. however, if you are smaller busted, this piece would be worth the purchase.",4,1,9,General,Tops,Knits +907,48,Frumpy,"Did not work for me. material was a bit thin, poor quality, the tie doesn't quite work correctly. had a cheaper look to it. not the quality i'd normally expect. this is going back.",2,0,0,General,Tops,Fine gauge +1020,46,Striped skirt,Wow! love this skirt! and i totally agree with reviewers--this item runs a full size small. i am normally a true six on bottom and it was a bit too tight considering i would wash/dry/shrink. the size eight is perfect. fabric is very good twill and forgiving... $19.95 and 40% off!!! cannot wait to wear my bargain skirt next summer!!!,5,1,0,General,Bottoms,Skirts +1020,35,Sizing differrent from other current pilcro skirts,I have the moss colored pilcro skirt that is out right now in an 8 and love everything about it. ordered this in an 8 and it is tight! sending it back. it is very pretty though. just don't love enough to exchange for correct size.,4,1,2,General,Bottoms,Skirts +906,38,,The perfect cardigan for transitional seasons! i live in southern vermont and i can already tell this cardigan will be in heavy rotation during the summer to fall and spring to winter transition times. has such a cute back detailing that gives you a break from your common cardigans. great quality. i'm 126 lbs 5'4 and i got the small petite and is perfect if you want it to be slightly loose but not swimming in it!,4,1,0,General Petite,Tops,Fine gauge +862,51,New favorite !,"Love this shirt, great fabric and fit. trying to wait for a sale to buy several others in additional colors.",5,1,0,General Petite,Tops,Knits +1104,57,Runs big,"I wanted to love this dress so much, but unfortunately it ran way too big for my taste. i am usually a 4/6 in retailer, and the small was huge on me. the bottom half of the dress is very much a ""swing"" dress and is very wide, much wider than it looks in the pictures. i suppose that sizing down (maybe even to a petite), and having the dress altered to be narrower on the bottom half would've made it look like the picture, but that's a lot of extra work for a dress that is already pretty pricey.",3,0,1,General,Dresses,Dresses +285,22,,"It seemed to stay in place and did not require constant readjustment. however, i found the band to be extremely small and tight. it is not the most comfortable bra because of the way the band just presses into your skin.",1,0,2,Initmates,Intimate,Intimates +862,45,,,5,1,0,General Petite,Tops,Knits +906,48,Love this sweater,"Can't wait for the weather to cool so i can wear this! the split back makes it very flattering. + +the 'green' is definitely more brown.",5,1,0,General Petite,Tops,Fine gauge +862,39,Solid versatile piece,"On sale this is a great deal. the structure and fit of it are perfect- maybe runs a tad big, but i liked that- it's supposed to be a snug fit, and is, without being too clingy. i chose the berry color and love it- the ribbed style of fabric wasn't as visible in the pic online but i don't mind it in the darker color. can be worn with a bit of flair by unbuttoning the turtleneck or kept classic by not-",5,1,0,General Petite,Tops,Knits +909,41,Warm and comfy,"36dd, 10/12 in tops, 12/14 in bottoms + +very soft and warm sweater, the boucle body almost feels like comfy pajamas! lovely heathered pasted colors as well. i found the large to be too big - the sleeves fit fine as they are a tighter knit, but the body sagged oddly. medium was the best fit.",4,1,0,General,Tops,Fine gauge +906,28,Love this sweater!,"This is a great sweater that i know i'll get a ton of use out of! i've already worn it three times, and i've had it a week. i typically wear small or medium in tops and sweaters, and ordered a medium in this one to ensure the arms were comfortable. the nude color is perfect.",5,1,0,General Petite,Tops,Fine gauge +862,27,Love this sweater; no need to dry clean,"I love this sweater. i purchased it in the red/berry color. it is so incredibly soft and cozy and the fit is fantastic! it hugs my curves in all the right places! i purchased it without even looking at the care instructions. but, after reading a couple of reviews here, i opted to wash on delicate and line dry. it came out perfectly!",5,1,4,General Petite,Tops,Knits +835,49,Nice mix of romantic and practical,"I have a long list of criteria for this sort of a top. the lace can't be too fragile, the top can't be too see through, it can't bind my arms in an uncomfortable way and it can't be dry clean only. the stars have aligned on this one! i bought my usual size 2 and it fits tts. i only wish it was a little longer but i will probably wear it layered with a long cami. it certainly seems worth it for full price.",5,1,2,General Petite,Tops,Blouses +835,49,,Was hoping i was going to love this top and i did. its a fun piece to dress up or down.,4,1,2,General Petite,Tops,Blouses +933,26,Comfy & gorgeous,"I've only worn the sweater a handful of times, but i'm already in love with how soft and comfortable it is. it's a bit on the baggier side, but that doesn't stop it from looking great. i've gotten complements on it every time i've worn it. i would highly recommend it to people who don't like the typical scratchy/itchy textiles.",5,1,0,General,Tops,Sweaters +906,35,"Love, love, love",This has quickly become my go-to cardigan! it's light which will make it great for the spring and summer nights. i got it in the rose... and loved it so much i bought the olive too. bought a small- fits perfectly! arm length is great too.,5,1,0,General Petite,Tops,Fine gauge +903,31,Cute crochet!,"I wear this top all the time! perfect with jeans and can't wait to wear with a skirt in the summer. +i am 5'2 and have the xs which hits in a great length, just as pictured. i bought at full price, so for the sale price you are getting a great deal!",5,1,10,General,Tops,Fine gauge +1022,52,Slimming and comfortable,"I have countless ag jeans but this has become my current favorite. i love cuffed jeans and actually ordered the two washes for this style. the lighter one which is getting rave reviews i actually returned because of too much distressing and stretch. i like this darkly uniform shade, slimming and more office appropriate for casual fridays. you need to size up on your usual ag size, however, to get the perfect fit.",5,1,8,General,Bottoms,Jeans +862,61,"Nice, casual top!","Usually wear a small, sometimes medium. bought this in medium and am very happy with it. form-fitting but not too tight. would probably fit well in a small, if i was in better shape. it does show any flaws, so the medium is more forgiving. bought the black and am considering the neutral stripe. this is a great, medium weight top for cooler days. the snap collar looks nice open. i plan on washing on delicate and hanging up to dry. i never dry clean anything except wool suits and coats.",5,1,0,General Petite,Tops,Knits +862,41,,All i really need to say is this is the perfect layering piece. i love that you have a choice in the neckline that you want to wear. form flattering and is true to size.,5,1,11,General Petite,Tops,Knits +906,32,Amazing cardigan,"I am always a fan of retailer cardigans, but this one exceeded my expectations. the quality is a work of art, especially the back and the color, i chose the green, is so unique and beautiful. you will not be disappointed, go for it!",5,1,0,General Petite,Tops,Fine gauge +862,37,"If you want it more fitted, size down","I technically measure to a medium in both regular and petite sizing, but i took a chance an ordered the regular small in red. it is as depicted, and i agree that it is soft and can be clingy, but the regular size fits slightly too big on me. this is fine since it would show lumps otherwise. i bet this would be perfect had the petite size have been available. nonetheless, the fabric is substantial enough that it doesn't show the fact i carry weight in my upper body and stomach, so i'm keeping it.",5,1,0,General Petite,Tops,Knits +835,46,Touch of class,I got this in the royal blue.it is absolutly beautiful.,5,1,0,General Petite,Tops,Blouses +862,65,,Loved the fit. the size was true and it felt so soft on.,5,1,0,General Petite,Tops,Knits +835,29,Very cute,"I loved this top when i tried it on in the store. i was very close to buying, but i knew my sister would want, so i moved on. it is a great fitting top. i am 5'7, 125lbs, and the small fit perfectly. i do question how well this top will fit petite people.",5,1,1,General Petite,Tops,Blouses +1104,39,Pretty big,"In both senses, it is pretty and big and pretty big. i ordered the xs as the xxs and xs petite were both out, and it is to big on me. i am usually xs petite or xs, if shorter. i definitely need xxs (petite or not). +(115 lbs, 30 dd, 26-27 inch waist) + +that being said, it is really cute and fun and flirt, but not romantic flirty, just girl next door flirty. +the navy and white stripes are classic, so will last over the seasons. the cut is flattering, i really love it, just not on me being that",4,1,1,General Petite,Dresses,Dresses +862,39,"Yoo big for smaller framws, but","Looks nice and +i did like the button detail on the collar. colors are nove and the feel is soft. i would probably have to get a petite smaller size.",3,1,0,General Petite,Tops,Knits +835,39,True comparison,"I ordered this shirt in each color and different sizes: petite, regular, ""my"" size, a size up and one down! + +verdict: i ended up in regular size, not petite because i felt the petite was jsut that short and i could feel te cold breeze in the store. i could have gone in the 00, 0, and 2 #2 is my usual size#, but ended up in a 0 only because it was less wide on me. it is, hwoevcer a tiny bit tighter around the back if i cross my arms forward #really, i don't do that move on a daily basis#. colr: i",4,1,4,General Petite,Tops,Blouses +862,39,"Cute, comfy and flattering",I love this top so much i bought it in 3 colors. the material is so soft and comfortable. has a slight fitting in the waist to make it very flattering. you can wear the next as pictured or button it up and slouch it and it looks great both ways. perfect with jeans or dress it up with slacks. just wish it wasn't dry clean only.,5,1,0,General Petite,Tops,Knits +906,65,For kicking back or out to dinner.. gotta love it!,"Got this for work (my style is casual to boho) and it turned out to be my go-to cardigan. +the color is soft and pretty. it drapes perfectly. got the x-small +and it fits beautifully. plus, the weight of the knit is just right for +chilly evenings. would love to have it in more colors!",5,1,9,General Petite,Tops,Fine gauge +903,28,Boxy,"Loved this top online but when i tried it on it was shorter than expected so only fitting for high waisted bottoms and much more boxy than it appeared online. i wish to high heaven that this top came in a more ""normal"" cut. hip length and slimming, the fabric and collar are beautiful!",2,0,1,General,Tops,Fine gauge +906,34,,This is a lovely sweater but i wished i had ordered the xs (only the small was left).,4,1,0,General Petite,Tops,Fine gauge +835,29,Love lace,"This top is lace done extremely well, i love the silk, the double attached layer, and the length. dress it up or down, this top is a definite show stopper. +it does run small in the arms though, size up!",5,1,2,General Petite,Tops,Blouses +906,37,Beautiful transitional cardigan,Lovely drape and design. true to size. more of a muted crimson/brick color.,5,1,0,General Petite,Tops,Fine gauge +835,46,Unwearable but pretty,"I ordered the blue in size 16. it ran at least two, if not three, sizes too small compared to my other retailer 14 & 16 blouses. it was too small through the body, other than the peplum. the arms were tight too. the waistline and length matched the online photos. it's widening. the material they chose was also scratchy and rough, especially around the neckline. i returned mine after trying it on and seeing there was no way to make this work. the blue color was gorgeous though. the patterned lace w",1,0,0,General Petite,Tops,Blouses +862,60,Best top!,I love this top! the unique neck detail is awesome! i dress it up; i dress it casual. works for every adventure. more!!!,5,1,0,General Petite,Tops,Knits +909,30,"Beautiful sweater, but pills","I love the look of this sweater and was so happy with how it looked and felt when i first tried it on, but within a day of wear, i noticed significant pilling, which made it appear much older / worn.",3,0,0,General,Tops,Fine gauge +862,64,,"Loved the look, fit and styling of this turtleneck. but dry clean only, you have to be kidding?",1,0,36,General Petite,Tops,Knits +909,56,So soft!,"I love the coziness of this sweater. i do think it is designed for a looser fit, but i sized down for a closer fit. the sleeve design is unique and flattering i think, kind of of like a cap sleeve would be if you were wearing a long sleeve shirt under it. i gave it 4 stars instead of 5 because it does shed some, but has so many other positive features that i am keeping it and plan to wear it with lighter colors so i don't need to worry about it. +just lovely really, love the blue color especially",4,1,0,General,Tops,Fine gauge +835,42,,Absolutely love this shirt. i purchased this in the black and blue. perfect for holiday parties.,5,1,0,General Petite,Tops,Blouses +862,53,Dry clean only for casual top. no way!,"This is the 2nd time i've purchased a dolan top and returned it b/c it was dry clean only. both tops were what i consider to be casual tops to be worn with a pair of jeans, running errands, etc. i do not dry clean this kind of casual shirt. it is made out of rayon, and that's the problem i think. + +i purchased this in the wine color and it is a lovely color, hangs nicely, doesn't cling. the sleeves are a bit long but i could live with that -- i just pushed them up. as a turtleneck, it was a bit l",2,0,4,General,Tops,Knits +862,65,Beautiful and snug,"High quality, great color, loved the neckline. unfortunately a little too snug on me so it showed my bulges on waist and back. not too snug if you don't have that problem. i loved this shirt but had to return it.",5,1,1,General,Tops,Knits +862,26,Comfy,This sweater was cute and comfy and was true to size.,4,1,0,General,Tops,Knits +506,64,,"I was very pleased with this purchase. lovely print, good fit, and silky fabric.",5,1,0,Initmates,Intimate,Sleep +1104,42,You will fall in love in person,I didn't think it was that cute in the picture online but when i saw it in the store i was in love! i am typically a medium and this was true with this. i have a 34dd chest and you can wear a strapless easily with it and it doesn't show. i am going to wear it for a cocktail party but it would work with flip flops too. just love it so happy i went into the store and saw it.,5,1,0,General Petite,Dresses,Dresses +903,20,Soft and casual,Love this shirt. i have a bit of a tummy so i usually don't buy shorter shirts but with my high waisted denim and skirts it looks great.,5,1,2,General,Tops,Fine gauge +835,48,,Pretty delicate lace top...love it! hits right at waist so not unflattering at hips.,5,1,0,General Petite,Tops,Blouses +906,73,"Lovely, but runs small","5,7"" , 138 pound,, 73 year old grandmother. can't wear wool and always looking for stylish cotton/linen sweaters. +ordered m based on reviews. very tight across back and sleeves too short. loved the style, the below hip length, and color so reordered in a large. still waiting for sweater. hoping it fits better",5,1,6,General Petite,Tops,Fine gauge +862,43,Fits well,It's a unique piece and feels very comfy for casual wear - lots of compliments.,4,1,0,General,Tops,Knits +412,34,Yasss,"This bra is the one. i have been searching high and low to replace my worn out comfy bra, and this is it. if you are looking for a wireless bra with thin straps that can peek out from your shirt and not announce themselves as hello bra straps, a v-neck cut (none of that scoop cut nonsense), and you don't care about trying to boost your cleavage, this bra has it all. so comfy too.",5,1,6,Initmates,Intimate,Intimates +906,36,Not too thin; not too thick,"I like the weight of this sweater. it breathes a little but the knit isn't too thin. it is a little see-through, so i like to stick to solids underneath it. it's just a cleaner look than seeing pattern peeking through. great rose color.",5,1,0,General Petite,Tops,Fine gauge +906,46,Love this cardigan!,I bought this cardigan in both rose and nude and i absolutely love both! the weight is perfect for spring and fall and i love the details in the back and the pockets. i thought the rose would be hard to match for tops but i have a number of things that work with it. it fits true to size in my opinion.,5,1,0,General Petite,Tops,Fine gauge +506,41,Comfy summer pajama pants,"Like the last reviewer i saw these pants in the store and decided to give them a try. i'm glad i did because i absolutely love them and they were the last pair on the rack. the fabric is nice and light, perfect for warm summer evenings and the pattern is really pretty almost like a watercolor painting. this is my third pair of sleep pants by elouise and i absolutely love them all.",5,1,0,Initmates,Intimate,Sleep +1054,26,Great pants!,"These pants are beautiful. great fit and great fabric. really comfortable and elegant. i am tall 5'8"" and have a long torso so it's nice to find pants that are high waisted.",5,1,0,General,Bottoms,Pants +862,47,I love it.,"It's very beautifully designed, simple but elegant. material is thick and soft so it makes good shape. color is a little different from picture but it didn't disappoint me because everything else is so good.",5,1,0,General,Tops,Knits +862,40,Perfect closet staple,This is the best! i have the black and striped version and wear them weekly. great layering piece and also for fitting so they look great with skinny jeans. i love the snaps. i saw this at full price but waited for the sale so that i could get more than one!!! now i just need the gray one...,5,1,0,General,Tops,Knits +909,32,Love,One of the most beautiful sweaters i've ever seen. i love it!,5,1,0,General,Tops,Fine gauge +906,53,My shoulder season companion,"I bought this cardigan to take on a trip to the middle east. it turned out to be a great purchase. the weight of the sweater is substantial enough to add warmth and not just style. i am not a huge fan of light-weight sweaters as i tend to be chilly all the time. i was concerned that the design of the back might accentuate my rounder backside, however it drapes very nicely. i am petite 5'1"" with moderate curves. i typically get the xxsp and this was perfect. the neutral color is great with almost",5,1,0,General Petite,Tops,Fine gauge +906,42,My favorite!,"Fell in love with the design of this sweater. its lightweight, appropriately sized, with delicate details. the pockets are somewhat hidden which is a nice feature. the shawl collar falls just right. the unique design in the rear makes it stand out from your standard cardigan. i purchased in rose for a rich color addition to my wardrobe. the xs fit perfectly. i'm 5'3 and typically wear xs in retailer tops.",5,1,2,General Petite,Tops,Fine gauge +906,44,,Great light weight sweater. perfect for spring. runs true to size. definitely will buy another color.,5,1,0,General Petite,Tops,Fine gauge +909,39,"Nice, soft, cozy... sheds!","Lovely sweater. it fits baggy and form fitted somehow. i like the multi-fabric look. however, the main body of the sweater does shed!!! like, i just held it up to my body to look at it in the mirror and the shirt i had on was covered. haven't washed it yet, so can't speck to that, but i'm guessing it will lose some of that in the wash.",4,1,0,General,Tops,Fine gauge +835,29,Vintage looking top,"I bought this in a size 0 which is my usual retailer size. the lace is nice quality, not rough or scratchy. i purchased the ivory which does have some blush accents which make it look ""vintagey"". it will be perfect for the holidays or all fall/winter. i like that the peplum doesn't seem to flair out much. very pretty!",5,1,0,General Petite,Tops,Blouses +862,44,Snap neck pullover wardrobe staple,"I bought this shirt in black and it goes with everything. definitely runs large-i have big boobs and bought the xl and returned it for the large which was even still a bit too big (long running in the sleeves) though i was comfortable with keeping it. it's a soft, comfortable shirt. the snap detail is quirky and allows multiple looks/ styling. i love the shirt and i'm glad i got in on it while i did.",5,1,0,General Petite,Tops,Knits +546,19,Great shorts!,"These shorts are beautiful and the fabric is used is so soft. i wore them to the beach and they were very comfortable for walking around in all day. my only concern was that the shorts run large in my opinion. they have a tie string, which ended up working out, but i was hoping it would fit more like the model. i am 5' 4'' with a 24-25'' waist and ordered an xs. i usually wear petites, but i have bought xs shorts in regular sizes and they have always fit. i do still recommend these shorts, as th",4,1,0,General,Bottoms,Shorts +1104,48,Ahoy swing dress,Loved this cute dress. so easy and simple to wear. i wore it with tan/nude sandals to keep it casual for the race track in saratoga. so comfortable. for this price it is a must have.,5,1,0,General Petite,Dresses,Dresses +1022,45,Sadly disappointed,"I wanted to love these jeans, but as a woman who is almost 45 there was way too much stretch in them. i am always a size 26 and i couldn't wear these, they were way too tight! they went back the next day. i will say, it could be my body type, i""m a runner so my legs are muscular. if you have very thin legs, these could be great and work for you. i loved the color, dark blue.",2,0,6,General,Bottoms,Jeans +909,50,Super cozy,Wow great soft feels great but not too clingy. only thing keeping from 5 start is that it will pill some. the sleeves are not fuzzy so they don't pill but body will/does.,4,1,0,General,Tops,Fine gauge +1100,30,Beautiful dress,"The dress is lovely and fits true to size. i like the petite fit. i would note, however, the dress length does not match the description. the description states the dress falls 45"" from shoulder. i measured it at 40 inches. it is definitely shorter than i was expecting.",4,1,4,General,Dresses,Dresses +862,36,Elevates a basic turtleneck,I love this turtleneck so much!! got it in black. looks great with skirts and under sweaters. love that you can wear the collar two ways. drapes and clings perfectly. the silver snaps along collar are such a nice detail. details like this is what makes retailer pieces so unique. love it! i am usually an xs or small in tops. 34b bra size. i ended up with the xs.,5,1,2,General Petite,Tops,Knits +862,32,Love it!!,This is a great sweater. it's lightweight and very comfortable. i bought a medium but really could use a small. medium still worked well though.,5,1,0,General Petite,Tops,Knits +862,41,Great quality,"The quality of he fabric is amazing. the thickness is perfect as to look form fitting while not too tight or thin showing any ""wrinkles."" i had been searching for a versatile turtleneck i could dress up or down a finding this was a definite win! the style is timeless and with the high quality i know this will be a staple for years to come.",5,1,0,General Petite,Tops,Knits +862,25,Great find,The shirts fits well. it is very soft and stretchy but thick enough that it's not see through. the collar is the best part. i wear small and i'm 5'3.,5,1,2,General Petite,Tops,Knits +835,31,Elegant & fun,"Purchased this fun, feminine top right before vacation and wanted to wear it every single day. the peplum style isn't typically something i gravitate to, but this peplum is the perfect length and i love the sheer 3/4 length sleeves. i chose the ivory version of this top and it was adorable with jeans, oxfords & a cute hat. for how beautiful this top is, i feel like the price tag is an absolute steal!",5,1,1,General Petite,Tops,Blouses +835,26,Gorgeous top,"I saw the cream top online and loved it, but it is even prettier in person. i typically purchase petite sizes online, but i tried on the 0 in the store and it fit nicely-- not super fitted throughout the waist as others have mentioned, but the length was just right and the arms/chest fit perfectly. for reference, i'm 5'2"", 100 lbs, 32b. this will look great with skinny pants or jeans.",5,1,3,General Petite,Tops,Blouses +909,55,,"Didn't like at all. itchy fabric, looked good on model but on on busty girl.",2,0,0,General,Tops,Fine gauge +909,46,Has mohair,"I loved this but didn't realize it has mohair which agitated my contacts. i had to return it. if you don't have that problem, this goes great with leggings or jeans.",4,1,0,General,Tops,Fine gauge +862,60,,"Great layering top! love the color- grey striped, matches almost anything. the sizing is perfect and the material is nice and think but not so chunky that it adds pounds to your frame. interesting detail with the snap neck looks sporty and jeeps it from being just another basic turtleneck.",4,1,0,General Petite,Tops,Knits +909,27,"Soft, lovely top","Very soft, cute design, great over leggings!",4,1,0,General,Tops,Fine gauge +906,33,"Cute, but the quality is so-so","I like the design and the color of the cardigan (i got green). i like the details on the back. the cardigan is tts, the shoulder width and sleeves length seems perfect (for reference: 5'7"", 125 lb, got size s). + +the problem for me is that the cardigan is not as long as it looks in the photos for the rose color; the pictures for the beige show the length more accurately. it may work for a smaller lady, but i like my cardigans a bit longer and cozier. + +also, it is not just that the material is",3,0,1,General Petite,Tops,Fine gauge +862,53,Comfortable!,I love this stylish sweater. i ordered black. it is very soft and comfortable. i wear it with snaps open or closed. looks great either way.,5,1,0,General Petite,Tops,Knits +862,38,Just ok,"I ordered this in black and red. i had high hopes based on the reviews this received, but it's just ok. i will be returning.",3,0,0,General Petite,Tops,Knits +1100,63,Adorable dress with vintage flare,"I am 5'4"" so at the ""tall"" end of petit - and this is the perfect length. i haven't really done midi dresses before because i feel make me look stout. this is not the case. it hits mid-calf. the fabric is very thick, although for polyester i think it's kind of pricey. i'm going to keep it anyways, it doesn't look or feel cheap, and i think it will be good for travel because i don't think it wrinkles easily. the ribbon hits in a very flattering place right above the waist. i have a very athletic",5,1,5,General,Dresses,Dresses +903,25,Cute top,"Love the collar, cut is cropped but i'm wearing a tank under for hole coverage anyways. no complaints!",5,1,1,General,Tops,Fine gauge +906,37,,,5,1,0,General Petite,Tops,Fine gauge +835,42,Beautiful!,"I bought this blouse in both the cream and the blue. both are lovely. i would say that the size runs a bit large, i bought size 12 and the bodice hangs away from my back, arms fit well though, loose fit. hangs well. the lace is nice and stiff. the cream has some cafe au lait shading on some of the lace so it could almost look stained. i don't think that will be how it reads, though, but fair warning.",5,1,0,General Petite,Tops,Blouses +909,59,,"Love this sweater! it's really flattering, long and lean, though not tight, just the right amount of shape and length for my size. i run between and 8 and a 10, and i'm about 5'8"", i ordered the medium. i love the contrasting knits of the sleeves and body of the sweater. i only wish it came in more colors, i'd order it again!",5,1,0,General,Tops,Fine gauge +862,40,So soft,So soft that i bought in 3 colors. i love wearing them. it is comfortable yet tailored. i highly recommend.,5,1,0,General Petite,Tops,Knits +506,46,,Retailer sleep pants are my favorite...the only sleep pants i will wear. fit is perfect. flowing shape and ultra-soft fabric feel like a little bit of luxury. first thing i put on when i get home from work!,5,1,0,Initmates,Intimate,Sleep +506,29,Comfy and cute!,"I grabbed this pair of pj pants on sale, and i'm glad i did. the material is soft and lightweight-- ideal for summer,. they fit loose but true to size for a standard pair of pj pants.",5,1,0,Initmates,Intimate,Sleep +909,33,,This thing sheds so much it's almost unuseable but i used an entire roll of sticky roller and got it to the point where i could wear it with only a glob of fuzz on my underwear not other people's couches. it's cute and fits well other than that. buy a sticky roller!,3,0,0,General,Tops,Fine gauge +906,58,My new go-to,"I've been looking for a mid-weight, shrug-on cardigan for a while now and i've finally found the one! as a petite (5'4"", 130 lbs) lady with big boobs, i hate clingy cardigans with buttons since they are just so unflattering. + +luckily this cardigan is warm without being stifling, fitted in the sleeve without being impossible to wear over clothes with different-length sleeves, and perfectly cut to slim even thought it is shrug-y. i especially like the back details, which are even more curve-fla",5,1,1,General Petite,Tops,Fine gauge +909,36,Great long sweater,Love the softness of this sweater - it's very flattering without feeling like i am swimming in it. like the other reviewer said - it sheds a lot! the cream is very sheer so i had to wear a tank underneath.,4,1,0,General,Tops,Fine gauge +1100,62,Lovely flattering dress,"This dress is so flattering on, i was astounded. often the ""waistline"" in the petite dress are very high, even though i'm only 5'1"" tall, but this one hit at the right place and the skirt made me feel slim and tall. the fabric feels silky and the pattern is nice, but it is a pretty conservative style and perhaps a bit dark for spring. would be great for work, or church, but unfortunately doesn't really fit my lifestyle and i personally prefer a more unique style for the price. i highly recommend",5,1,10,General,Dresses,Dresses +906,33,Sweater fits beautifully,"I bought the sweater in nude, and it fits perfectly. it is so much better than a standard cardigan- it has beautiful details. its drapes so well across your body, and it longer in the front than the back which makes it hang beautifully. i wear this to work, but would definitely wear this on the weekends for more casual outfits- its very versatile.",5,1,0,General Petite,Tops,Fine gauge +909,41,,"I bought this sweater in dark grey in the store. i really loved it at first - it's very soft and cozy and fits really well. i especially like that it's long enough to cover my tummy and butt when i wear skinny jeans or leggings. however, the other reviews that mention it gets fuzz all over the place are accurate. i doubt i would have bought this if i had read them first. it even has dark grey fuzz in the inside of the sleeves. however, my biggest disappointment is that after just one wearing, th",3,0,0,General,Tops,Fine gauge +835,44,Makes me feel beautiful!,"I ordered this top in ivory in 2 sizes, because i'm in between and it looks so great in the photos and didn't want to risk it selling out while i debated sizing. i really loved the larger size because the material is not stretchy and i didn't want the sleeves to be tight when i move. it is somewhat boxy on the seam at the waist so i'm having it taken in a little so it fits more like a peplum and flares. adding a skinny belt just didn't distribute the excess fabric as i envisioned. it really is a",5,1,1,General Petite,Tops,Blouses +909,45,"So soft, but sheds so much!","I got this sweater in the neutral color, which is very versatile. it is truly, beautifully soft and the design is very pretty -- i really like the different material of the arms and v-neck. the length is good, too, if you like longer sweaters, as i do. the downside: it sheds so badly! sweater is just everywhere after putting it on. i don't think i could wear it out of the house for this reason. another reviewer suggested taking a tape roller to it to make it wearable, but i think that would take",4,1,0,General,Tops,Fine gauge +933,54,,"The colors are so much brighter than pictured. although the sweater is very comfortable, i did not like the color combination. i will be returning it.",2,0,0,General Petite,Tops,Sweaters +862,41,Washed and dried it!,"Ok, so by now, we know this is a cute top that is basically true to size but a little clingy. i prefer to wear it with a tank top or tee shirt underneath. it would also do well layered under something. for refernce, i am 5'7, about 120, and xs was the best fit. + +but what i really wanted to mention is that i washed it in the machine on cold delicate and dried it on low, and it survived just fine!",5,1,1,General Petite,Tops,Knits +862,45,Oops forgot to dry clean,"So i love this top. i got it in black and red. both are amazing and go with about anything. they run a bit large. i sort of forgot to read the label and thought it was just a cotton turtleneck. i threw it in the washer on regular settings and cold water and hung it to dry. i would say it shrunk 10% at most. beyond that, no difference. in fact, it fits better after it shrank since it was a bit big. obviously, if you do not dry clean this, you are going against manufacturer recommendations, but i",5,1,0,General Petite,Tops,Knits +506,38,Comfy and cute,"I spotted this pj pants in the store, tried it on, and love it! the material is very soft and comfortable. the fabric is on the thin side, thus, one star off the quality. the pattern/color varies, the one i got has more pinkish flowers. i am 5'2"", 120lbs, and size s fits nice. i could probably go down to a size xs, but i like my pj pants to fit a bit roomy, therefore size s fits better. the length is more like ankle length on me since i am petite. it is very cute on and perfect for a chill summe",5,1,1,Initmates,Intimate,Sleep +862,40,Snappy top,"I ordered the neutral one with the fine stripe. it will layer nicely with neutral colored sweaters and blazers. the fabric is soft. the quality is good. the neck is cool that you can wear it two ways. overall, it is a good top. i think it's a little clingy, which highlights every flaw, in the back especially. i wouldn't size up. i still think it fits tts.",4,1,4,General Petite,Tops,Knits +862,42,Great black turtleneck,"I love this black turtleneck. arms are a little long, so should have gotten small. i wore it and love it! you can play with collar and snaps; up or down.",5,1,0,General Petite,Tops,Knits +909,35,Very soft,"I love this sweater, i bought the grey and the neutral one. it is very soft, has great color combos and seems to have minimal pulling. even though it's lightweight, it keeps me warm.",5,1,0,General,Tops,Fine gauge +862,36,Dry clean only,"Unfortunately i didnt read the fine print when i ordered this re: dry cleaning only, but this in itself wasnt a total deal breaker. it did fit well -- i am 5'2, 32c, 107 lb and the xs petite fit very well, definitely form-fitting, not long in the arms or waist. the grey heather design was not my favorite look, actually thats the main reason i am returning it -- there was a dark grey splotch of the heathered design on the chest, and it looked like i had a huge dark stain.",3,0,0,General Petite,Tops,Knits +835,35,,"Beautiful top, i love the peplum. the color is actually cream with blush accents in the lace. i gave it two stars for quality because the hem was uncut and unfinished so it's going back.",3,1,2,General Petite,Tops,Blouses +906,47,Soft,Just a lovely soft and easy cover piece. the back is so different and interesting.,5,1,0,General Petite,Tops,Fine gauge +903,60,Feminine take on the classic polo,"This polo shirt has just the perfect amount of feminine detail to make it a great addition to my wardrobe. i love the shorter version, and it looks great with both jeans or skirts.",5,1,0,General,Tops,Fine gauge +862,41,Pretty and unique!,"This is such a gorgeous and unique turtleneck from retailer. my favorite color is the nude and buttoned neck is really pretty. i'm 5'1 and 105 pounds and i got the small since i liked the longer length and did not want it too clingy. it is a personal preference but you may want to go up a size. as for the dry cleaning, i washed this on delicate cycle without dryer and it came out perfect. love this!",5,1,5,General Petite,Tops,Knits +906,42,Great color,"Cool color, great feel to this sweater. nice with jeans, skirts, etc. very cozy to wear. i just want to keep grabbing it every morning.",5,1,0,General Petite,Tops,Fine gauge +862,38,,I have two of these tops. the maroon and tan and white stripe. the material is great and the neckline lays great. it isn't too thick so i can wear it on cooler florida days. you can dress it up under a jacket or dress down with some jeans.,5,1,0,General Petite,Tops,Knits +862,54,,Nice piece. the fabric is very stretchy with that heavy luxe kind of feeling. the neck snap placket is genius because when it is snapped up the neck stays up without restricting the throat. nice long lenght too.,4,1,0,General Petite,Tops,Knits +906,39,Beautiful in red,"I got this in the red. it is a muted color that is very pretty. i am 5'5"", and it is neither too long nor too short. it is a nice, light weight. the quality is good and on par with other purchases from this brand.",5,1,0,General Petite,Tops,Fine gauge +862,41,,Great spin on a basic turtleneck! i like it unbuttoned just as must as buttoned! material is super soft. good length.,5,1,0,General Petite,Tops,Knits +862,26,Very good,"I liked this so much that i bought it in all three colors, but send berry color back. the top is flattering and looks good. i did wash it at home, it seems to shrink a bit. but i ordered up for longer length. i really like the style. it is perfect to wear by itself or as a layer. perfect for fall and winter.",4,1,2,General Petite,Tops,Knits +909,45,This sweater is everywhere!,"And not in a good way. everywhere i went, i left a little of this sweater behind. within hours of having it on, i was picking balls of fabric off the couch, bed, and the sweater itself looked like it was molting. great style, fabric and fit (although a little on the long side,) but there's no way i can keep it.",2,0,3,General,Tops,Fine gauge +862,62,Snap neck pullover,"I love this top. i ordered it in a large thinking it would be a tight rib but it is not so i reordered it in a small. i am 5'7"" 145lbs 34g chest. the small fits perfectly and probably could have taken an xs. it is stretchy but fits wonderfully. i bought the black. i love how the neck snaps and adds a little pizzazz to a simple black turtle neck. i'm wearing it today with straight leg jeans and my leopard print ballet flats. i feel like audrey hepburn!! i will not be dry cleaning it. i will wash",5,1,4,General Petite,Tops,Knits +835,43,Perfect lace top,"I absolutely adore this top! it is so versatile and looks equally beautiful with jeans as with dressier, skinny pants. i bought this to wear for our holiday photos and have gotten so much use out of it. worth every penny. i have just ordered the blue version and cannot wait to get it.",5,1,0,General,Tops,Blouses +1104,48,Absolutely adorable!,"I am in love with this dress and can't wait to wear it to brunch this weekend! i am normally a ps, but they only had the pxs which i took a chance on. fits like a glove. slightly tight in the chest area, but i am chesty for a petite girl. the length is perfect and modest, the detail up front is adorable.",5,1,0,General Petite,Dresses,Dresses +1009,33,Soft and lovely,"What a find! this skirt is so soft and fits like a dream. perfect shape and length. i've been looking for more pieces to match a couple of fabulous pairs of purple shoes i have, so this is just the ticket!",5,1,0,General,Bottoms,Skirts +1033,63,My favorite jeans,"I love these jeans so much i have 4 pairs. i bought pink and gray last year and then black and denim this year. i am 5'4"" 112 lbs. with a slim, straight, athletic build. these jeans look amazing on; they don't have those funny crease rolls in the legs because the legs weren't cut right, i don't have to tug on the waist to get them to stay up and they are just very flattering on. sometimes when i try on skinny jeans, they fit funny around the waistband and make my hips look weird. not these, i ju",5,1,1,General,Bottoms,Jeans +1033,29,Comfortable jeans,These jeans are very comfortable with a higher waist than average jeans. the material is soft and seems to be quality. the are also stretchy which makes wearing them for long amounts of time very comfortable! i ordered a size 28 and they fit great! i normally wear a 6.,4,1,0,General,Bottoms,Jeans +380,33,Fits amazing,"This is the first one piece swimsuit i've owned since i was a toddler. i'm 5'3"" and 120 lbs 34b bust with short torso and athletic built legs...so i wasn't sure how this would fit. was i ever surprised!! i bought the size small in the mint chevron pattern. the material is substantial but not overly thick. it is double layered and the cups are padded for extra coverage. it was a little tight to pull on but after having it on it conformed to my curves like it was cut to fit them. the top offers an",5,1,3,Initmates,Intimate,Swim +1011,51,Very ivory in person,"The pattern, while beautiful, is on a much more yellow-ivory background than pictured. the skirt is very voluminous and the elastic waist seemed very loose, like it would not support the skirt. while i did like it, i didn't love it, so it had to go back.",4,1,0,General,Bottoms,Skirts +945,35,"Versatile, cute","I noticed this vest hanging in my local store and tried it on on a whim because it felt so soft. i usually wear an xs or s in retailer's clothing so i tried on the xs/s and felt it was true to size - it's obviously large, but that's because that is the style! the shoulders fell perfectly. i was in love from the moment i put it on! while it's not my normal style, it was so soft and beautiful and it flowed perfectly, plus the extra fabric allowed for a bit of ""cozying up"" in colder weather by wrappi",5,1,5,General,Tops,Sweaters +1077,30,,"This dress is beautiful! it is a nice, heavy fabric with stretch and just fits perfectly.",5,1,5,General,Dresses,Dresses +1033,67,I pity the fool who paid full price for these.,"I bought these on sale and they quickly went back. i was very disappointed after reading the reviews. i thought for sure these would be a winner. however, i was sadly mistaken. i ordered another pair of jeans, the same, from a different brand. these were way too small while my others were too large. they didn't live up to my expectation and were still rather long. even though i bought these on sale, i was not happy with the quality.",1,0,0,General,Bottoms,Jeans +945,56,Cozy yet stylish,"This ia a long boiled wool vest with some spandex in it. it is very soft and cozy. i went with the m/l cause i preferred the longer length, even though i also fit in the xs/s. +i have worn it many times, and my favorite way to wear it is with skinny jeans tucked into cowboy boots paired with a black lace top and a cool necklace. when i am hanging out at home in yoga pants and slippers, i throw it on when i get cold-its like a cozy hug. i highly recommend!",5,1,1,General,Tops,Sweaters +543,68,,"These run a tiny bit large, but i'm still keeping them. they are so soft and comfortable!",5,1,1,General,Bottoms,Shorts +1035,41,It's all in the details,"I love these jeans- they really added something special to my wardrobe! + +size: +i purchased my normal size in the store and was worried they wouldn't stretch out. the sales clerk helping me order the larger size alerted me that these will stretch a full size as i wear them but i wanted to be sure so i ordered the larger size just in case. + +i received the larger size and when i tried them on i could feel them stretching out right away and feeling too loose. i kept my normal size and wore th",5,1,5,General,Bottoms,Jeans +839,62,Classic and unique,"Totally love this shirt as a basic with fun details. super soft great quality fabric, and the cutouts add the perfect bit of interest. can see this accessorizing well and looking good with jeans or skirts. really happy with it. fits loose, but tts.",5,1,1,General,Tops,Blouses +945,63,Basic,Perfect way to add warmth in transition weather,5,1,0,General,Tops,Sweaters +380,32,,,5,1,0,Initmates,Intimate,Swim +1077,37,,,5,1,0,General,Dresses,Dresses +380,33,Very flattering and easy to wear,"Really love this bathing suit. it fits very well, definitely don't need to size up for this one. flattering to my mom-bod and breasts that have seen perkier days. excited to be taking this one to costa rica with me this summer!",5,1,5,Initmates,Intimate,Swim +380,35,Had high hopes but pattern is sewn crooked,"The chevron pattern on the mint/seaside version needs to be centered in the front to look right. mine was totally off so i returned it and had them overnight me a new one to my vacation address. unfortunately, the 2nd suit i received was also ""off center"". that one is going back too. would have loved this otherwise! a quality check on this is definitely needed.... beware.",2,0,1,Initmates,Intimate,Swim +1035,63,,"Great jeans!!! i'm over 60 & it's difficult finding jeans. these fit like a glove, with just enough stretch & the twisted hem adds a bit of unexpected style. i liked them so much, i ordered another pair!",5,1,3,General,Bottoms,Jeans +945,37,Timeless staple in your closet,"I stumbled upon this vest in my local store and i'm so happy i did. i was looking for a classic staple that will be on trend but pass into classic season after season. i wore this with a black 3/4 sleeve top, dark skinny jeans and black booties....perfect look for most seasons in dallas. so happy about this purchase!",5,1,0,General,Tops,Sweaters +1079,24,,Beautiful dress. the printed material under the tulle however hung 3 inches lower than the tulle skirt. i had to take it to the cleaners and have it hemmed to match the length of tulle skirt because it looked awkward. even after paying full price for the dress i didn't mind spending the extra money to have it hemmed because the dress is that beautiful.,4,1,0,General,Dresses,Dresses +937,36,,"I love the fit of this sweater. i recently had a baby and am a little self-conscious of my stomach area. the sweater, in my usual size s, hides my problem area without being big and boxy. the weave seems like it will be prone to snags, so i'll have to be careful.",5,1,2,General,Tops,Sweaters +1035,61,Summer jeans,Fit great and cute. cannot wait for summer to wear with sandals.,5,1,3,General,Bottoms,Jeans +1094,59,Cute dress but the waist band runs way too large,"I wanted to love this dress. i ordered an xsmall and a small. i am 5'6"" and 110 lbs, slender build. the xsmall fit great everywhere but the waist band was completely out of portion for the dress. both sizes will have to be returned. possibly if you have a more straight up and down figure it will fit better and pull in your waist!",3,0,18,General,Dresses,Dresses +839,67,Very versatile,"I bought a similar shirt from this same manufacturer in blue and i've returned for another. i love it because you can layer it. you can wear this over a colored shirt and the color will show through the designs in the yoke. it looks great with bright colors. yes, it wrinkles easily but i am hoping that it will wrinkle less each time it is washed.",5,1,0,General,Tops,Blouses +1009,43,Great detailing,This skirt is lovely and fits perfectly. the print on the front provides a great contrast to the back of the skirt and stands out. the material is thick enough to take you from fall to winter easily. and the fabric is structured enough to highlight all the right curves. a great purchase.,4,1,1,General,Bottoms,Skirts +1054,55,This product is too hip,"Although i loved it i feel like its too hip for me! love the material, style, just doesn't look right on me!",5,1,1,General,Bottoms,Pants +1054,40,Not for petite girls,"I think these are amazing for anyone over, say, 5'5"". the way these hung on me (at 5'2"") were very unflattering in the front. they had an unfortunate masculine effect to them. that's all i can say without being crass.",3,0,0,General,Bottoms,Pants +380,38,Chevron pattern off center in back,"I purchased this swimsuit in the mint. gorgeous color combination. i'm 5'5"" and weigh 117 lbs. i purchased a small. the fit is true to size. i love the front design; however, my husband promptly brought the back of the swimsuit to my attention. the chevron was off center. the design should have been centered with my back; however, it was on the right side of my back. i immediately called retailer assuming the product was defective. the item was sold out on line; however, a supervisor was able to l",1,0,5,Initmates,Intimate,Swim +1043,31,Love love love!,This caught my eye straight away and it hasn't disappointed on either. really unique and i imagine it will suit many different occasions. high quality and slimming vertical stripes too.,5,1,0,General,Bottoms,Pants +787,35,Soft and cozy,These pants are very soft and comfortable. great for lounging around the house and for sleeping.,5,1,0,Initmates,Intimate,Sleep +1054,27,Chic harem pants,"I love these pants so much, i have them in two colors. they are super comfy, light and actually really chic. perfect cool girl pants. i have got so many compliments. my young students (4-5) love my ""ninja pants""! i got them on sale. great, great buy. i highly recommend them.",5,1,0,General,Bottoms,Pants +380,53,Beware of the mint striped pattern,"I have this suit in the ""tile"" pattern and i love it. i am a breast cancer survivor and this suit is perfect for as it covers a little issue i have on the left. so i ordered the ""mint"" pattern. the colors are beautiful but the pattern is off. the ""v"" pattern on the front is not centered. as a result, my body looks a little lop-sided. i looked carefully at the suit on the model and noticed it was slightly off center on her also. however my suit is quite a bit off-center. it's too bad, because the",3,0,8,Initmates,Intimate,Swim +1033,24,Favorite black pair of pants,"These pants fit comfortably and are really nice on! they're not too bulky and can be worn in a casual way and/or with a formal look. i just wish black jeans didn't always have that odd rubber smell. other than that, these are great!",5,1,0,General Petite,Bottoms,Jeans +1035,42,Unique fun jeans,"These jeans immediately caught my eye online, and when i saw them in the store on display, i knew i had to at least try them on. they are absolutely adorable. i love the uniqueness of the buttons at the bottom. great fit, and great stretch. i wore them for the first time today, and i had at least four people i didn't know approach me and tell me that they liked my jeans.",5,1,7,General,Bottoms,Jeans +512,58,Cute and sweet,Ordered my regular size s early this week and was thrilled to receive them yesterday. they fit just as expected and are quite comfortable. i would definitely recommend them as a nice alternative to pajamas or even as a slip.,5,1,2,Initmates,Intimate,Sleep +1054,47,,,5,1,0,General,Bottoms,Pants +1033,30,,Love these jeans however they get a little saggy in the front while wearing which i don't like :/,4,1,1,General Petite,Bottoms,Jeans +1035,39,Rise hits much lower on me,"I agree with the other reviewer: the snaps at the ankle are a cute idea, but bad in execution. they look and feel odd when on. +---------- +these fit tts, and they are soft with decent stretch. but the rise is much lower on me than other 8.5"" rise jeans i have; as a 43 year-old woman they seemed inappropriately low-hanging on me. +---------- +as an aside, these will def. color transfer - there is a whole lotta rinse on these. and they have a strange chemical smell to them; not sure if that will diss",2,1,31,General,Bottoms,Jeans +1094,37,Awkward waist band,Super cute dress but the waist band is very large and bulky.,2,0,12,General,Dresses,Dresses +945,66,Nice!,"Did not even know this is available in petite! as someone who is at 5' exaggerated, there regular size xs/s fits nicely. great find. goes well with leggings or jeans. this will be a wardrobe staple for quite a while.",5,1,2,General,Tops,Sweaters +839,63,Pretty shirt!,I loved the cut out features on the shoulders of this shirt. it has the palest tone as pictured and will be cute with jeans this summer and on vacation. i took one star away because the body is cut rather large. i tested the center back fit and that was fine. i wish the body was a little more narrow.,4,1,5,General,Tops,Blouses +1011,31,Feminine,"I love the print and style of the skirt. it is very cute and feminine and can easily be worn into autumn. the downside is that the elastic waist is a little too loose and needs to be tighten. also, the is a lot of extra fabric in the skirt and makes it look so much larger than it is and it runs about 3 inches longer. for reference, i'm 5'5, 34 24 35 and the xs is loose in the waist. still, i really love the skirt and plan on keeping it and having it altered.",4,1,0,General,Bottoms,Skirts +1011,69,Loaded with feminine touches,"The skirt is lovely, has beautiful colors , and the touch of lace takes it to that ultra feminine level. it's a lot of skirt---yards of material and i like that it is fully lined, but this creates a problem, the source of the only negative thing i have to say about it. the only criticism i have is with the waistband---it's much too flimsy to stay up on the waist because of the weight of the skirt. i had my seamstress add a heavier weight elastic band inside the one it has or the skirt would star",4,1,4,General,Bottoms,Skirts +1033,28,The perfect black jean,"I cannot begin to tell you how much i love these jeans. i have been searching everywhere for the right pair of black jeans, and this is it. they run a little small and don't have as much give as regular pilcro jeans: i am normally a 28 in pilcro and i purchased these in a 29. the fit is wonderful and they keep their shape beautifully.",5,1,0,General Petite,Bottoms,Jeans +1033,33,Absolutely wonderful.,Absolutely wonderful! they fit like a dream. you could dress them up or down. i'll probably live in these jeans forever.,5,1,0,General Petite,Bottoms,Jeans +945,58,Fabulous vest,"I was intrigued by this vest on-line but really wanted to try it on first before i purchased it. stopped into my local retailer store today and was happy to see they had it in stock. i am typically a 10/12 and purchased this in the m/l. this picture does not give the vest justice in terms of the way it falls, which to me is what makes a vest a success or not. also, the colors are great. i was wearing a cream sweater and black pants when i tried it on, went great with those colors but i think it wi",5,1,7,General,Tops,Sweaters +543,35,,"I love these shorts, the subtle floral pattern is even prettier in person. the drawstring waist allows me to customize the fit for my newly pregnant belly.",5,1,0,General,Bottoms,Shorts +1035,56,Really cute spin on indispensable ankle jeans,"I have to disagree with some previous reviews -- i think the buttons on these ankle jeans really set them apart. they look absolutely adorable with booties, flats, wedges, heels, anything! and they're extremely comfortable and flattering, as most pilcros tend to be. i got my usual size 26 and the rise and fit is great. i think maybe they stretch out a bit; i've only worn them a couple times and by the end of the day the waist seems a little loose. but overall, great and a good price (at least co",5,1,12,General,Bottoms,Jeans +1035,37,Love these jeans!!,I have never tried this brand before and was pleasantly surprised at the fit! i especially like the button detail as it makes them a little more dressy and different. i plan to wear with a simple white tank and sandals. i will definitely look for this brand again!,5,1,0,General,Bottoms,Jeans +1033,60,Great jeans,"These are fabulous pants. they can easily be worn to work. best jeans/pants ever for women with no butts!! they stay up, and they're comfortable. +i can't speak highly enough for these. don't ever stop making them, retailer!!",5,1,0,General Petite,Bottoms,Jeans +945,37,Love this vest,I have this in another color and it is my absolute fav! transform any outfit! it has an over-sized fit.,5,1,5,General,Tops,Sweaters +1035,64,Just love...,"Ordered my usual size 28 in pilcro jeans but these are on the small side. fit is a little small in the waist area, & don't mean to be crude but the crotch area is on the short side for me. legs fit snug, & i have skinny legs! i'll have size up to a 29. the twisted seam look is really cute. 5'3"" abt 118# - too much ice cream lately.",4,1,18,General,Bottoms,Jeans +1033,64,Perfection!,"Great fit. love the mid rise! my usual size 28 in these leggings hug in all the right places. they look on me as in the model pic except the length falls abt 1"" below my ankles. i may have them hemmed after they're washed. just wait & see... 5'3"" 117#",5,1,4,General Petite,Bottoms,Jeans +380,33,Most flattering suit i've ever seen,"I love this suit! the fit is incredible. + +i'm unsure that the fabric will stand the test of time, but i got it on sale, and i don't know about you ladies but ill do anything for a great suit!",5,1,0,Initmates,Intimate,Swim +1035,38,I love them.,I actually love these jeans. i feel they run true to size. i actually love the button detailing at the bottom. makes them unique and different from the other jeans in my closet. i can wear them dressed up with heels or wear with sandals.,5,1,6,General,Bottoms,Jeans +1033,29,"Great jeans, horrible smell","I love the way these jeans look and fit, but they have a chemical smell. i assumed the odor would go away after i washed them, but it doesn't seem to have helped.",2,0,5,General Petite,Bottoms,Jeans +1033,36,Pilcro jeans are amazing,I love pilcro's jeans. they fit adults without being mom jeans. the quality is great. the legging cut is simple with just the right amount of stretch. they're a tiny bit short but i like to show a little skin in booties.,5,1,2,General Petite,Bottoms,Jeans +1011,38,Pretty skirt but very long,"This skirt is very pretty but i think it runs very large. i am a size 4, xs in retailer. my waist is 28 inches, 5'7, 140 pounds. the skirt is touching the floor. even if i wear high heels, i will have to wear it up my waist. the elastic band is weak, not sure if it will hold the skirt. it should be ok with a belt. i still recommend it cause it's so pretty.",3,1,1,General,Bottoms,Skirts +839,32,Super cute!,"I really love this shirt. the cutouts make it unique and the fabric is super soft for a chambray style. i thought the fit was perfect - i'm 5'5"", 120lbs and i ordered an xs. still enough room to be comfortable. super cute! glad i bought it.",5,1,2,General,Tops,Blouses +1035,43,Pleasant surprise,"These jeans were a pleasant surprise. they are comfy, stretchy and fit right at the ankle. i have skinny legs and i love that these are a slim fit .i am normally a 27 waist but the 26 had a better fit. the dark demin and the gold buttons give it a dressy look. they also give my derriere a nice shape. i am 5?2?, 116 lbs and i have slim hips. to top it off, the jeans were an additonal 30% off the sale price!",5,1,4,General,Bottoms,Jeans +1084,29,"Perfect, effortless party look","I absolutely fell in love with the design of this dress! the colors and cut are easy to wear but unique enough to stand out. i was between the medium and the small and ultimately went with the medium. the dress hits right above my knee, fits nicely at my waist, and is well made. the top does seem a bit loose (as pictured on the model) but i prefer a slightly more fitted look. a padded bra would probably have filled out the extra fabric but it was an easy alteration and will allow me to wear the",4,1,0,General Petite,Dresses,Dresses +872,29,Short and small,The shirt is mostly a thick sweatshirt material and is very short when trying on - undershirt required to make up for length and the see through mesh in the pattern. felt about 1 size too small as well,3,0,15,General Petite,Tops,Knits +872,62,"Unique, casual top","I was drawn to this top due to its unique detailing and soft, casual cotton feel. i wear a nude bra underneath with no problem. i'm 5'5"" 120 (34c) and the small hits right at my hips, so it's not to short or too long. i often wear an xs in tops and i didn't even try on the xs in this one because i felt the small fit just right. with the cutout detailing, i'll hand wash this. i hope it holds up.",4,1,0,General Petite,Tops,Knits +877,35,A cozy peplum top,"I love the look of peplum tops, i think they are very forgiving, and they do a fantastic job of hiding my residual baby weight while still allowing me to look like i have an amazing figure (not washed out figure). i have several peplum tops, but most of them are made out of a thicker fabric and they don't have much movability. i absolutely love this one because it is a more casual design and much more comfortable than i am used to while still keeping the integrity of the peplum design. the fabri",5,1,7,General,Tops,Knits +949,38,Terrible fit,I am 5 6' and 130 pounds and ordered this in an xs. the sweater is enormous. the material is also scratchy and not soft at all. i'm disappointed with retailer's sizing this year. i've had to return a # of xs items because they are huge. really disappointing.,1,0,0,General,Tops,Sweaters +1084,42,"Beautiful dress, awkward fit","This is a fantastic dress for fall, if you have specific proportions. the dress comes in s-m-l, rather than in particular dress sizes, so my assumption was that a large would fit a range of 10-12. the dress fits me well in the fitted waist (which has zero give), but the top fits very strangely (you can even detect it on the model in the photo), with a tightness at the clavicle, and a weird abundance of fabric above the waistband. + +i will still happily wear the dress with sweaters this season,",3,1,0,General Petite,Dresses,Dresses +422,60,Cute and so soft,Great for lounging or running errands. can be dressed up or down. i found them to run at least a size large though.,4,1,1,Initmates,Intimate,Lounge +984,41,,"I agree with the other reviewer, the picture does not do this jacket any justice at all. the material drapes beautifully and is easily cinched or opened up for slightly different looks. i kind of consider it more of a cardigan than a jacket and plan on wearing it over everything. i tried it on over workout gear and it looked great than wore it over jeans and a chunky sweater and it looked awesome. very versatile and flattering.",5,1,17,General,Jackets,Jackets +984,58,Just what i was looking for!,"Agree with the others. when i saw this jacket in the store i really liked it, and when i tried it on i had to have it! it looks great, drapes beautifully and the color goes with so many things. my first instinct was to size up to a medium to maximize the drape, but it wasn't necessary. runs a tad on the large side.",5,1,1,General,Jackets,Jackets +872,80,Huesca,"Love the contrast of fabrics, thick and thin. comfy like a favorite sweatshirt but with style. can be worn both, on a night out or curled up on the sofa watching a movie at home.",5,1,1,General,Tops,Knits +984,37,Great layering piece!,"Non-stop compliments! i wear this with dresses at the office, and denim on the weekends- super versatile. this is one of those pieces that you keep forever.",5,1,0,General,Jackets,Jackets +984,31,Great find!,"I initially ordered a small, but found it looked way more oversized then what it should look like, even considering the style. (i was swimming in fabric!) i exchanged it for a petite small, and it fit perfectly. it goes so well with so many looks, and it is going to last a long while in my rotation. looks much better in person, too. my only reservation is that unlike the original one i received, this one had many threads loose throughout, which i clipped and think will be alright, but i expected",4,1,0,General,Jackets,Jackets +931,39,Adorable and easy to combine w/bottoms,"I love this sweater. my only worry is that i'll constantly be catching the little loops on things and getting it all messed up. i haven't been able to wear it out yet, so we'll see! i'll just have to be careful :)",4,1,1,General,Tops,Sweaters +872,59,Cute shirt,"This is a really cute shirt. i love the design, color and everything about this shirt but the size. i am 5'1 and 105 lbs, i can usually wear an xs or xsp. the xs was huge and they were sold out of smaller sizes or i would have ordered one. this unfortunately had to go back.",3,1,0,General,Tops,Knits +422,35,So soft!!,These pants have a very odd design but they are so soft and so comfortable i could not resist. going on a trip to key west and thought they would be great for the plane ride. they fit true to size. could not pass up as they were on sale.,5,1,1,Initmates,Intimate,Lounge +984,25,My new favorite jacket,"I would have never purchased this jacket based on the photo displayed here. it looks like something my grandma would wear. in person, however, this jacket is so versatile. the fabric moves with your body,and the ties at the bottom in the back and inside at the waist can be cinched to give it the look you want. i purchased this to wear with the weekend widelegs (which i also adore), and it's absolutely perfect. color goes with everything. i'll wear it with boyfriend jeans in the fall, too. great",5,1,0,General,Jackets,Jackets +984,23,Great layering piece!!,"I love, love this trench! i bought the grey, and it goes well with so many other pieces! i can dress it up for work or wear it out for brunch on the weekend. it's a great layering piece for the san francisco weather i'm adjusting to! + +it does run a little big, but i don't mind because it gives enough room for layering. i'm short at 5'3 but still stuck with a small-- a small petite probably would look great as well! + +hei hei consistently makes great jackets/trenches :)",5,1,0,General,Jackets,Jackets +1084,49,"Great style, poor quality","I wanted this dress so much, i ordered it twice. both times the zipper was defective--it would get stuck midway up, at the waistline--so i had to send it back (there isn't an retailer in my area). this is a shame because it's got great colors and looks flattering on, and i was looking forward to pairing it with a cardigan/boots for fall. i even thought about taking it to a seamstress to have the zipper replaced, but the cost didn't seem worth it. too bad, as it seems like it would be a nice",1,0,5,General Petite,Dresses,Dresses +872,55,So unique and pretty,"This top is so pretty. i would say it's probably about 1 size smaller than normal, but i like the cropped fit.",5,1,0,General,Tops,Knits +872,83,Beautiful and unique.,"Love this top, just received it today. +it is a very artistic interpretation for a casual top. +the blue is gorgeous! +the unique style of the peplm and the details on the front set this apart! +runs a little shorter, but i feel the length enhances it;s beauty, and is appropriate for the overall design. +love !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! +ordered my usual size and it fits perfectly.",5,1,9,General Petite,Tops,Knits +872,32,Indigo love!!,"This is such a gorgeous shade of indigo! i was instantly attracted to it! upon trying on, i was surprised at how soft the fabric was. definitely a cozy sweatshirt feel in disguise! i love the peplum detailing and found the xs to be just right in length to my hip and everywhere else! i can't wait for it to cool off here in new england so i can wear this beautiful top!! i anticipate many compliments on s lovely top!!",5,1,3,General Petite,Tops,Knits +984,22,,I absolutely love this jacket! i wear it almost everyday. works as a cardigan or a jacket. my favorite retailer purchase so far:),5,1,0,General,Jackets,Jackets +930,50,,Wow this is a keeper. love how soft and special the color feels. the knit for back and arms makes it very comfy and easy to wear. not really easy to layer it since arms pretty fitted. love it with jeans since the back ends at waist.,5,1,0,General,Tops,Sweaters +1084,44,Great for curvy girls,Beautiful dress for those with a large chest and small waist. sadly i am not one and needed to return the dress. fabric is heavy and the pattern is great.,4,1,0,General Petite,Dresses,Dresses +872,52,,,5,1,0,General Petite,Tops,Knits +872,58,Perfect top,"This top has the thickness and comfort of a sweatshirt, with artistic flair and a figure flattering, unique cut. it works very well on me as i'm a petite large. i only wish it was a little roomier, or that i was 10 lbs lighter, but it's stretchy and i really love wearing it. the color is a rich indigo with a slightly worn look which adds texture and dimension.",5,1,4,General Petite,Tops,Knits +860,55,Perfect for petites,"I fell in love with this top when i first saw it in the store, and bought it during the 25% off sale. i'm petite, 32dd, usually a size 4. i tried the xs and s and while both fit, i like the roominess of the s so i got that size. i bought the regular size for a little extra length, but could have worn the petite. it's great for layering because of all the bright colors, and although the front is polyester, the back is knit so it's nice and cool. i personally love loose-fitting, shorter tops, so i",5,1,1,General,Tops,Knits +860,62,,"The colors on this top are beautiful, even more vibrant than the online picture. i was so excited to try it on. the problem is with the fitting. it's too short and too loose. you can see in the picture that the shirt isn't even tucked in and it barely hits the hips. as much as i wanted it to work, back it goes.",3,0,4,General,Tops,Knits +1084,26,Poor quality,"I like the design of the dress, but the fabric makes it look cheap. for an expensive dress, i had expected better quality.",2,0,0,General Petite,Dresses,Dresses +1084,63,Love this dress!,This dress is absolutely darling! it is light as a feather and floats on the body. the fabric looks almost handpainted and fits like a dream. i disagree with the previous poster and i think it looks very rich. super comfortable and i know i'll get lots of wear out of it. you can dress it up or dress it down. love it!,5,1,2,General Petite,Dresses,Dresses +984,67,Built in saddlebags,"Beautiful fabric with soft drape. unfortunately the ""captain kangaroo"" pockets are awful. unless you have a straight up and down shape with no hips this is very unflattering. the pockets look like saddle bags and add a huge amount of fabric where most people don't want added bulk. very disappointing. returned.",1,0,2,General,Jackets,Jackets +930,30,So warm and cozy,"I love this cardigan. it's quite luxurious and roomy and long in the front, leaving lots to wrap around yourself. the back is more cropped +and slim fitting to help balance. this is so soft and warm, i love it. definitely bulky and cozy, not fitted. but perfect for a casual look. i'm usually a medium in sweaters but got a small in this, and it's still a little loose which is perfect.",5,1,3,General,Tops,Sweaters +872,28,Great top!,"This top is very cute, very flattering, and very unique! love the high/low back! also very comfy, would recommend to anyone!",5,1,2,General Petite,Tops,Knits +1084,22,Not for short or petite women,"I bought this online with the intention of it being my graduation dress. i'm 5'2"", 115 pounds so i should've known better and gotten a ""petite"" style dress. however, i loved the modern look of this and since my boobs are a bit bigger (34d) i figured they would help fill it out. upon receiving the dress, i was first shocked that for the price, the construction was pretty poor quality: there were strings coming out of the straps and they looked unevenly sewn. when i put it on, it was clear that th",2,0,15,General Petite,Dresses,Dresses +949,69,Ski lodge turtleneck,"Cozy slouchy sweater. very versatile. fits tts, just as shown on model.",4,1,0,General,Tops,Sweaters +984,43,,,4,1,0,General,Jackets,Jackets +422,38,Lovely lady lounging pants,"Soft, pretty design and perfect length. i'm 5'6"" and the m fit perfectly!'",5,1,0,Initmates,Intimate,Lounge +860,39,,"The pattern and color of this top are beautiful. when i saw the pattern, i knew i had to have it. the fit is a bit strange, short (which is fine for me as i am petite) and boxy. i bought it on sale and think its good value for the price. its a good late summer/early fall piece.",4,1,0,General,Tops,Knits +984,32,Like a nightgown!,I could seriously sleep in this--it's that soft! i dressed this with a white tee and holey jeans then i wore it to work today over a blue midi dress. love this jacket!!!,5,1,0,General,Jackets,Jackets +984,71,Great jacket!!,"This is a very stylish and unique trench. it does run a bit large as i am usually a medium in jackets, but needed a small for this one. i am 5'2"" , 120 lbs., but with a large chest. i think it's very flattering. i have small hips, but the large pockets do not make me look bigger. it arrived very wrinkled, but i just touched it up with an iron. i think the color is more of a taupe-gray and will go with everything. love it!",5,1,1,General,Jackets,Jackets +422,31,,,5,1,0,Initmates,Intimate,Lounge +984,52,Way better in person,I tried this on at my local store and immediately had to buy it. the picture does not do it justice. it drapes wonderfully in front and sticks out a bit at the pockets to give some added personality. fabric is very soft and light weight. highly recommend!,5,1,21,General,Jackets,Jackets +984,40,Better in person!,"As other reviewers have pointed out, this jacket is way prettier in person than it is in the photos. i can wear it with just about anything. the fabric is soft and lightweight, and drapes really nicely. my only complaint is the photos make the taupe jacket look like it has just a hint of peach/mauve, but in person it's a pretty standard beige. i would have liked that hint of color.",5,1,0,General,Jackets,Jackets +1052,43,Super cute pants but run really big!,"These are the cutest pants ever. they are super soft and a nice lightweight material for spring/summer. sadly, i have to return them because they are huge. i generally wear an xs in retailer, and these literally fall off my waist and look like clown pants. i wish they made an xxs. if you size down at least one size, they are adorable!",5,1,0,General,Bottoms,Pants +984,46,Drapes beautifully!,"Absolutely love this jacket.initially wanted to buy the melita draped jacket, which looks similar to this one, and tried them both on in store. the latter just didn't drape properly and looked more like a bathrobe on me, but this piece is amazing! it falls nicely and the pockets jut out a bit giving it a unique look. the fabric is fluid and soft and it has a tie waist with another tie in the back of the jacket,middle bottom, which is a bit of an added but subtle flair, the color is a bit more 't",5,1,1,General,Jackets,Jackets +872,63,,,5,1,0,General Petite,Tops,Knits +860,43,,I disagree with the fit description from the other reviews. i find the shirt to be super flattering and comfy. yes it it short in comparison to many styles these days. but it hits right at the waistline without being too short. super vibrant colors.,5,1,0,General,Tops,Knits +984,48,,,4,1,0,General,Jackets,Jackets +877,40,Peplum,"I am short waisted and i still thought the pleats started too high on me. also, the whole thing was a little bit big. i always wear a medium, but in this top the shoulders and everything was just a bit large. since i bought it online, i couldn't size down. the fabric was a nice quality.",4,0,3,General,Tops,Knits +984,37,Terrible,"I do not understand all the great reviews but that goes to show everyone likes different things! the jacket looks great in the pictures but in person, it just looks awful! gray is one of my favorite colors but this color is so drab and the material looks old and worn. it definitely has a grunge look to it and overall, it is just a wrinkly mess. another reviewer said it looks like old clothes and i have to agree. it looks very shabby. it also reminds me of those smocks they have at the hair salon",1,0,0,General,Jackets,Jackets +872,54,Interesting design,"The concept of this top is edgy for a sweatshirt fabric. i think it works better on a thin frame instead of my curvy frame. although i appreciate the design, it did not work for me.",3,1,3,General Petite,Tops,Knits +872,64,Cute styling,"This shirt is semi-fitted. i like it because it is not boxy but not overly tight. it is not heavy even though it is a sweatshirt material. i wish the neck was a bit higher but i will wear a tee under it. the back is really cute. +it is different and i like that.",4,1,0,General Petite,Tops,Knits +984,54,My go to j,"I do not understand how a couple people gave this a bad review. i loved this jacket from the minute i tried it on. cute in the picture and cuter on, because it is so comfortable. the fabric is super soft and does not wrinkle (as one reviewer stated). i took it on the plane with me just to keep warm and it was fabulous. looked as good going on the plane as it did coming off. the drape of the jacket flows nicely and i love the oversized pockets to stash my phone or lipstick. this jacket will carry",5,1,1,General,Jackets,Jackets +872,26,Average top,"This top looks much nicer on the model than in-person. i tried it on, it didn't look flattering and was shorter than i like. in the picture i really like the top with the design and frills on the side, gives the model a waist. in-person the design doesn't stand out much and the frills look wrinkled.it is also sweatshirt material and a tad stiff. i am sending it back. it just didn't look as flattering. also, it seemed more fitted at the top than bottom.",3,0,5,General Petite,Tops,Knits +872,56,,"This top is made from a thick, sweatshirt-type fabric, making it a nice choice for transitional weather. the details are quite unusual and lovely. i just got it and i've already worn it twice.",4,1,0,General Petite,Tops,Knits +949,47,Super scratchy,"This over-sized sweater is light-weight and scratchy. i knew it would fit big, but the neck is overly bulky. the color is a bright blue as depicted in the picture. fits a little larger (on me) than on the model. i'm petite so it overwhelmed me.",2,0,0,General,Tops,Sweaters +872,52,Flirty,This was a nice surprise because it's a thick sweatshirt type of fabric. don't be deterred! it is nothing like a sweatshirt. it's comfy like a sweatshirt though. i'm 5 feet tall 120 pounds. i ordered my usual size petite small and it fit perfectly. what little height i have is in my torso. i didn't find that the top was short at all. it's without a doubt tts. order your usual size. if you have a tummy or bootie this top is the ticket! the description on the fabric details that the other reviews,5,1,10,General Petite,Tops,Knits +860,53,Beautiful top,"Another beautiful retailer top. i ordered a small (5.4, 112 lbs, broad shoulders, athletic build) and it looked really large when i pulled it out of the package. it's a bit large, but i wouldn't want it tighter through the bust (34c). the colors are vibrant and the print is really beautiful. although it can be hand-washed, i will be taking this to the cleaners to preserve the color! i love retailer because their clothing is so often unique.",4,1,0,General,Tops,Knits +836,35,Soft and beautiful,No only is this a beautiful update to a basic white top it is incredibly soft. i couldn't pass it up and wish it came in more colors!,5,1,8,General Petite,Tops,Blouses +883,54,Love !!,Love this & so cute to have t-shirt with additional details. usually get medium size in blouses but liked the fit of the large better.,5,1,0,General,Tops,Knits +836,54,Defined waist,"Really love this blouse for several reasons....it fits! pretty true to size depending on how fitted you want it. not too much of a difference between a 6 or 8. it is a bit sheer but i am not worried about it. now my favorite part is the tie in the middle.....finally not a boxy waist, it's up to you to pull it in or loosen. the length is perfect...not too long so it works over skirts too. it is soft. my only concern is how long will it last. will require careful washing and ironing. may end up pu",5,1,2,General Petite,Tops,Blouses +1092,48,Beautiful,"I went into retailer looking for a specific dress and had to try this on when i saw how lovely it looked displayed at the store. it is a beautiful dress. not see through at all. substantial weight, not to heavy and so very beautiful. i stayed tts on it . i would have purchased it but was buying 3 other dresses.. i may go back as it will be perfect for the hot summer days.",5,1,1,General Petite,Dresses,Dresses +883,48,Unique tee,I was so impressed with the quality of this top that i bought it in all the colors.. it is comfy and thin. i purchased my usual size . it is so adorable with the lattice stripe..,5,1,1,General,Tops,Knits +860,27,Great tunic,"I love this top. i got the blue, the colors are deep and just beautiful +i'm normally a large, so i feel this top runs large. i got the medium and it fits perfect +it is long, i'm 5'6"" and it hits the bottom of my butt. +you won't be disappointed, try this top",5,1,6,General,Tops,Knits +883,46,Petite size is really short - nearly a crop top,"Very disappointed in this top. i have a short waist, and it was still too short for me. :-(",2,0,1,General,Tops,Knits +883,35,"Pretty top, very comfortable","I bought this top during the extra 30% off sale, so the price was definitely worth it and i know i'll get a lot of wear out it. i bought the grey and the lace isn't too revealing, but just enough for me to want to wear a cami underneath, especially at work. i'm normally a small/4 in retailer brands, but i bought a xs and it fits great, so it does run a little large.",4,1,0,General,Tops,Knits +836,34,Great twist on a classic,"As a curvy, short gal, finding a nice button down that isn't boxy or way too low cut is like finding a gem. this shirt is perfect for work, and i love how flattering it is. my only reservation is that it is more sheer than i would like, and so i need a camisole with it. i wish this style came in more colors!",4,1,0,General Petite,Tops,Blouses +836,43,Wearable,"I love this shirt. great mix of chic, comfortable and feminine! can wear for many occasions!",5,1,0,General Petite,Tops,Blouses +458,47,"Comfortable, soft, flattering lounge pants",I bought these in the navy stripe and they're soft and comfortable. i'm between a small and a medium and the medium works here -- i could not have worn a small in these. the narrow stripes make the pants flattering and the drape is lovely. i wish they had pockets but i guess i can't have everything!,4,1,5,Initmates,Intimate,Sleep +1092,53,Love the dress,"I just bought this dress as it went on sale recently. i read all the other reviews - and, imho, the dress is ivory not yellow as another reviewer suggested. i am only 5'2"" and weigh 115llbs - there were no petite sizes available so i bought a size 2 which is a bit long, but that's ok. the arm holes weren't too small and the neckline is large enough to slip over my head. the dress is very much a swing dress...i wish there was just a little less dress...it really is too voluminous for my taste. i",5,1,0,General Petite,Dresses,Dresses +860,61,,Very happy with this top! love the design--very different. also like that the front panel is different fabric. buttons also are a fun detail. great shirt to transition from summer to fall. i usually wear xs or s--ordered this in xs and perfect fit. going to be a favorite.,5,1,2,General,Tops,Knits +833,40,,"I bought this top thinking i would wear this and feel like i was part of some fashion week, but it's cut way too large that i felt like a football player. this top is made for women with small shoulders and a super petite frame. also, the cut is way too big. i was swimming in this.",2,0,0,General,Tops,Blouses +836,27,"Beautiful design, very sheer","I ran to the store to try to this on after seeing it online. i'm usually between a small and medium on tops depending on the shirt; the 6 fit true to size. everything about this shirt fit perfectly and it is beautifully designed, but it is just soooo sheer. i had a nude bra on and you could see every detail of it through both the front and back. i couldn't wear this comfortably without a cami. disappointing as i had the highest hopes for finding a crisp white shirt for the summer!",3,0,17,General Petite,Tops,Blouses +883,38,,This t-shirt is uniquely designed and it fit well. unfortunately within an hour it shed all over. i had white fuz all over my arms and pants. i was very disappointed.,3,0,0,General,Tops,Knits +833,39,Sold out,"I am writing a review even though this is currently sold out (and was just released). what i love: the fit: snug, not too tight, and xs is true to size in the sense of historically. the wasit is cinched in, ample room in the chest. the fabric is substantial (thick and sturdy) and not prone to wrinkle, based on me having it in the bag in the hot car) and no false pleats was created. the sleeves are fun and different, may be a bit much for some. it is in multiple pieces, why it flutters so nicely.",5,1,1,General,Tops,Blouses +836,39,Nice shape but thin,"I have mixed feelings about htis top, it is a nice shape and comfortable, fits triue t o size, but hte fabric is thin adn sheer. i decided to keep in mind if it goes on sale. the 0 fit me perfectly. (115 lbs, 3-dd chest).",3,1,2,General Petite,Tops,Blouses +860,61,Nice tunic,"This fits me more like a tunic so i wear it with jeggings. i am 5'4 and usually a 10-12 petite and the s fit well. +the arms are stretchy which i like since i have an athletic build. love the butterfly pattern !",5,1,0,General,Tops,Knits +836,45,Great blouse with a twist,"I had to go up one size, but i love this blouse! dressy enough for work, and you can make it casual with jeans. tight across the chest, but the next size up fit perfect!",5,1,0,General Petite,Tops,Blouses +860,70,Inconsistent size between the two colors,"Like others are saying, the sleeve and bust are running small. i found out that when i was trying the blue color one (butterfly). however, before trying the blue one, i tried the neutral color one at my local store in the same size (s), it fit me perfectly, no issue with the sleeve and bust. i don't understand why they're different.",4,1,0,General,Tops,Knits +883,46,Awesome tee,Love this tee. it has a drapery cut which i love. the only thing i found was that it ran a bit smaller.,5,1,1,General,Tops,Knits +1092,42,Such a fun dress!,I love this dress! it is super cute and swingy. a perfect summer dress - dress it up or even for a fun summer afternoon with sandals. the fit is great (the armholes on the regular 0 were a little big. the 0petite is much better),5,1,1,General Petite,Dresses,Dresses +883,41,My favorite linen tee,"I love the look of this tee, casual, but with some interesting details that make it more flattering and wearable than a plain tee. i tried on my regular size xs and it was large and frumpy, so i was initial disappointed. however, when it was on promo i decided to try the xxs, and it made a huge difference. if you size down it is great and looks like it does on the model. i ordered the coral and it is a beautiful color. the dye seems to be uneven, as it is darker in some parts. for this reason i",4,1,1,General,Tops,Knits +883,49,Great top,The shirt is a little roomy but so flattering. the design with little see through holes across the shirt are unusual and make it unique.,5,1,1,General,Tops,Knits +1092,20,Sweet summer dress,"This is such a fun dress to pull out during the summer. it is beautiful and i receive numerous compliments whenever i wear it. also, it is pretty lightweight, so it stays cool.",5,1,1,General Petite,Dresses,Dresses +860,63,Beautiful design,"I purchased the tan ""ish"" gray colored one in xs. it looks a bit mauve in the pictures, but is still very beautiful.. i like the drape of the fabric and the cats on the front. the one drawback is that the arms are very snug, especially the upper arm and chest. i have not worn it yet and am debating whether or not to exchange for the next size up. just have to get to my area retailer before they sell out of the size small.",5,1,0,General,Tops,Knits +883,32,"Beautiful top, runs wide","I purchased this top in a size s. it is lovely but way too wide. i am 5'8"" and 140 lbs. so it's unusual for me to have to size down to an xs. i am going to see if sizing down helps, but i am worried it will still be too wide. the fabric seemed of high quality and i loved the faded color so i am going to give it another chance.",4,1,3,General,Tops,Knits +883,22,Want this in every color,This is longer than i thought it would be- but again i'm petite! i ordered the grey and it's more of a grey green color that is absolutely beautiful. it is such a cute and easy top to wear!,5,1,1,General,Tops,Knits +860,29,"Nice design, but loose fit","The shirt design is very nice, but it fits very loose. it will not look good if you are heavier as this shirt will make you look wider because of the baggy fit. the sleeves though are fitted and feel a little tight. the material of the sleeves also is very itchy and feels like some wool material.",3,0,1,General,Tops,Knits +1092,37,Definitely ivory,"I saw this dress and was immediately drawn to it. the pictures others posted of themselves wearing it just made me want it more. i knew the color said ivory when i ordered it, but i wasn't prepared for how yellow it was. there is a liner/slip and it was honestly a pale yellow. it made the whole thing look dingy. i was so disappointed. if this dress was white i would've kept it. sadly i had to return. i am 5'1, around 135 lbs and i ordered a petite 6. i probably could've gone a petite 4. very cut",4,1,1,General Petite,Dresses,Dresses +836,33,,I bought this top after seeing it featured on a style blog. i was really excited to wear it until i realized how see thru it was. i had to put a cami underneath which detracted from the beauty of the top. even my flesh toned bra showed thru so i sadly had to return it.,4,0,3,General Petite,Tops,Blouses +883,26,White lattice t,This shirt is so cute with the cutout stripes and it goes with everything. it's easy to wear and true to size. you can dress it up or dress it down. the fabric is soft but also light weight. i am so happy to own this classic piece.,5,1,0,General,Tops,Knits +883,46,,Super cute top! thin!! would look great layered! not crazy how it looked by itself!,3,1,2,General,Tops,Knits +836,38,Feminie and structured,"I love this blouse. it is perfect for a curvy figure. i think it runs true to size. maybe size up if you have a larger chest. i love how it is so feminine yet structured. the fabric is lovely, soft and structured all at once. love the knot, i tried it with the stevie ankle jean and couldn't leave the store without it. it is pricey but sometimes its okay to pay $$$ for a perfect fit!",5,1,7,General Petite,Tops,Blouses +883,26,Design fix,"For the price of this tee the beautiful front lattice work should have been extended onto the back. would have been a classier, more finished looking garment. if the cost is not an issue then this tee makes a nice neutral addition to a neat but casual summer look.",3,1,11,General,Tops,Knits +984,39,Oversized and does not drape well,"I was really excited for this jacket to arrive but it's going back. because the fabric is coated, it does not drape or hang nicely at all. i expected it to be boxy but it sticks out so oddly in every direction that it looks horrible. i'm usually an xs and ordered an xs and it looks ridiculous on me.",1,0,1,General,Jackets,Jackets +1092,42,Good quality but seemed large for size,"Good weight and texture to the dress but looked to tent-like for me. even taking it out of the package my first thought was, is this size mislabeled? i got a 0 but could probably have done better with 00 if those were in stock or if petite sizes were still available. returning but wish i could keep it",4,1,0,General Petite,Dresses,Dresses +883,56,Lace inset is see through-runs large-loved mauve,"I loved the mauve color! i loved the idea of the heathered fabric and lace insets, but the linen was rough and scratchy. my regular size was boxy and a little too short! + +size: i ordered my normal size small for retailer brands! i'm 5'4"" tall, approx. 135 lbs, 35-29-36, 34d, long torso. + +fit: i was swimming in size small! the cut was boxy and unflattering on me. very wide through the chest. it kind of hung on me. the length was a bit short for my liking. + +if i were to size down, i would b",4,1,57,General,Tops,Knits +860,46,Lovely top!,"I love this top! the arms fit slender but the rest of the top is a nice loose fit. i love the navy blue one with the print, i normally don't like long tunics but it's so flattering even for my short frame! i'm usually a medium on top and bought the medium which was perfect.",5,1,0,General,Tops,Knits +883,34,Classy and cute,"A classy t-shirt - can go from work to casual. +the gray and mauve were both drab in color and hard to pair with neutral dress pants. +i chose the white. it definitely runs large, so size down (i.e. wear m/l, chose s). +the fabric is linen, very itch, so tank is probably needed underneath. +flattering fit for curvy figure.",4,1,0,General,Tops,Knits +883,34,Nice spin on a classic tee,"Comfy, gauzy tee that has lovely lace detailing. the white is totally see through just fyi. i don't think it's the best quality but totally worth the sale price. i got the m and it's loose and flowy in a good way.",4,1,0,General,Tops,Knits +836,43,Cute top but not for the price,"The top is really cute, but it's see through and the material doesn't seem like the highest quality. definitely not worth the price.",3,0,0,General Petite,Tops,Blouses +860,39,,"This is a pretty top but the arm sleeves are scratchy. i have sensitive skin, and had to return it because of this. otherwise, it would have been a keeper.",3,1,0,General,Tops,Knits +836,33,Small and see-through,"I purchased this shirt online. i thought it would be perfect for work, but when i tried it on, i couldn't even button half the buttons. it is also extremely see-through, and even a nude or white cami underneath would look really odd. need to return, unfortunately. if the top came in other colors, i would return for a larger size, but i can't deal with see-through work tops.",3,0,1,General Petite,Tops,Blouses +1092,33,Extremely well made,"The detail and overall quality of the fabric is incredible. i normally avoid swing dresses, but this is a flattering dress. i typically wear between sizes 2-6 (depending on designer) and a 6 fit me perfectly. i'm extremely happy that i purchased it and received compliments as soon as i wore it out. i'm also tall, so i have to be concerned with length of dresses and this falls perfectly right at the top of the knee.",5,1,0,General Petite,Dresses,Dresses +986,34,"Super-thin fabric, but really pretty","The fabric is so thin, i think this entire garment might actually fit in a normal-sized letter envelope. the problem is not going to be that the garment is see-through (which it is) - it's the fact that the super thin fabric is not silky, it's cotton-ey, and i suspect it will get ""stuck"" against the back of my shirt/pants while i'm wearing it and not drape nicely. i wonder if some tiny weights could be sewn to the bottom hem to keep it laying properly..... + +however, i'm such a sucker for a pre",4,1,0,General Petite,Jackets,Jackets +854,51,Lovely,The embroidery across the top is quite lovely. the softness and light weighted fabric was ideal for the summer months. making this purchase on sale was such a bonus!,5,1,0,General,Tops,Knits +860,22,Like wearing art!,This is absolutely beautiful. the picture online doesn't do it justice. i slipped this on with skinny jeans in the store and was hooked instantly. fit was a little large. i would have tried a petite but this shirt doesn't come in petite sizes. love this!,5,1,2,General,Tops,Knits +860,38,"Pretty, but too long on my short torso","This is a very pretty blouse and i like the mix of fabrics. i bought this in my usual size and it fit nicely except for the fact it is much too long. i have a short torso, and all this does it just cling and sit on my butt. perhaps this would work very nicely on someone that was athletic or tall and slender. sad to say, i had to return this because of the length.",4,1,0,General,Tops,Knits +833,38,Gorgeous blouse; runs small,"I'm a size xl, so my review might not apply to all people. i purchase my retailer tops in size xl and sometimes they fit great and sometimes they don't. when i put this top on it looked like i was wearing an open cardigan; nowhere near buttoning. i have some sewing experience, so i removed all 4 box pleats which gave me an additional 8 inches of fabric. after doing this i was able to easily button up the blouse and have it lay nicely. but i literally needed that extra 8 inches of fabric in the mid",4,1,2,General,Tops,Blouses +836,24,Perfect white blouse!,"I tried this top on in the store before i ordered it online. i'm a size 2/4 (varies), and i ordered it in a size 2. i've been searching the perfect, fitted, white, button-down blouse for weeks, and i love this top! it's figure flattering, true to size, and a cute, classy alternative to your basic white button down. i can't wait to wear it! =]",5,1,1,General Petite,Tops,Blouses +836,62,Size up if you're busty,"I've been looking for a great white blouse for awhile, and this is it! the tie waist is especially flattering for hourglass figures, but i'm sure it would add some curves to any body type. the fabric is soft, not crisp, and drapes beautifully. you definitely will be doing some ironing, though. it's a bit sheer, but i always wear nude bras and felt no need for a cami. i did buy the regular, rather than petite sizing and usually wear a 0 or 2, but had to size up to a 4 regular to avoid gaping in f",5,1,1,General Petite,Tops,Blouses +860,55,Love the design,Although the blouse is pretty it did not fit me well. i downsized two sizes and it still didn't hang well on my body. i think it looks great on the model and would probably look better on a thinner person. i am disappointed it did not work out and i will be returning it.,3,0,0,General,Tops,Knits +860,46,Not flatteuing,While these seem like interesting designs which i applaud! the execution in the design of the fabric is not appealing.,3,0,1,General,Tops,Knits +1092,35,Adorable!,"I ran into retailer to actually return a dress and saw this hanging in the petite section and had to try it. at almost 5'4"" i can sometimes go between regular and petite sizing. and thankfully i could grab the petite with this dress. (they didn't have the regular size) it's airy and summery, i love the design of the swing. it's loose, but not tent like. the length came to about 3 inches above my knee. it's not see though at all! i had black bottoms on and you couldn't see them. another plus it tha",5,1,45,General Petite,Dresses,Dresses +867,56,Amazing,"As previous reviews have stated, this blouse is see through but it is amazing!!! very rich quality and can be dressed up or dressed down. it is well worth the price now that it is on sale!",4,1,0,General,Tops,Knits +883,44,Not too bad..,"I purchased the grey in a medium, i normally wear an 8 or 10 in tops, 36 c.. i found it to fit quite well, but it has the shape that seems common at retailer lately in that it is shorter and more boxy. so if you have a longer torso(like me), you may not be the happiest. i loved the lace and didn't have an issue with that area being sheer, but the non-lace part is very thin. i did try it on with a black bra and it was obvious i was wearing black all around, you could even see the width of th",3,0,5,General,Tops,Knits +836,68,Not your normal white shirt!,This top has great lines and has a very flattering fit.,4,1,0,General Petite,Tops,Blouses +836,54,,,5,1,0,General Petite,Tops,Blouses +836,44,Great design- beware the thin material!,"Fun take on the white shirt- it is flattering and fun. and yes- very soft material so comfy! +but as others have stated, the material is very thin so your full bra outline will show- or you throw on a cami.",4,1,1,General Petite,Tops,Blouses +984,29,Very cute jacket,"Love the swing-style boxy fit. versatile - works well over jeans or any pants and top. like the coated linen (or cotton?) look. serves much the same purpose as any light weight or denim jacket - good to wear over a top to complete an outfit or as an extra thin layer but not a substantial outdoor jacket. really quite cute. fairly tts but if between sizes, size down.",4,1,11,General,Jackets,Jackets +867,48,Not as expected,"The top was very small. i am usually a size small but this was tight around the top, arm holes and it was short. also i didn't notice if it said it was sheer ( see through) in the description but it definitely requires another shirt underneath.",2,0,0,General,Tops,Knits +984,49,Versatile,"I've had this jacket for a few weeks and it has been a terrific transition piece for the spring. this is a lightweight layering piece without any lining. it works well as a topper for cooler morning temps and you can still wear it later in the day without perspiring through it. i bought it in the olive color, which works with just about everything and the xs was tts (for reference-5'4,116 lbs.). the fit is slightly boxy with a nice swing and drape in the back. for those concerned about the back",5,1,3,General,Jackets,Jackets +836,47,Pros & cons,"I am 5' 8"", 145 pounds with a 32 ddd bust. i typically purchase a small or a 4 to 6 in blouses. this blouse was small across the chest and therefore, i purchased a size 8. it is a nice fit. however, the button placement on the blouse does not work well for someone who is chesty. one button is placed slightly above bust line and the other slightly below. this causes a peek-a-boo space between buttons. therefore, i wear a bright white tank top beneath the blouse and wear the blouse unbuttoned to j",3,0,0,General Petite,Tops,Blouses +860,39,Love it so much i got both,"I loved the print on both, but first bought the blue to check out the fit and feel. i went ahead and ordered the cat one today. the fit is relaxed and slightly oversized so if you want a slimmer or less boxy fit, size down. for myself, m was perfect since i'm built larger and broader on top. the top is a bit long, covers my hips and some of my bottom. it's a mixed fabric design, so the linen part may feel scratchy to sensitive types.",5,1,0,General,Tops,Knits +1092,39,Cutesy,Cute and perhaps a little too innocent for my age because the petite was too high and wide on me. fits great on my shoulders/chest and the flare can be controlled with a layer and belt. i already have a few ivory lace dresses that look age appropriate first try. i don't think i have the right personality for this one. looks great on everyone else i've seen wearing it!,4,1,0,General Petite,Dresses,Dresses +883,65,,"The label says 100% linen, but it's so silky and drapey that it feels like silk and linen. it's not a scratchy linen at all. it's a very very fine knit, but the top is not sheer. i do not think you need a cami under it. + +i bought the xl and the fit is just as shown. it has a slight drape, but it's not really baggy at all. i bought the grey and it looks lighter on-line that it really is. it's a bit darker and has a silver essence also. i liked this so much, i just bought another one in mauve.",5,1,20,General,Tops,Knits +867,58,This top is so cute!,"Saw this top in store months ago but couldn't justify paying full price. when i saw it on sale i had to get it! it's flattering on both me and my mom, and we wear xs and l - good for a lot of body types since the fit is more loose. the top is more sheer than pictured, but it should be fine with a tank underneath. i plan on wearing it when going out with friends :)",4,1,0,General,Tops,Knits +883,35,Nice for summer,"Love the lattice inserts, makes it feel like you have ventilation which is nice on a hot summer day. i purchased this in grey and in xs. i normally wear m for a looser fit, s for a more fitted look, so i was really surprised that an xs worked for me and was fitted. i haven't worn it since i washed it though. decided to buy the white but in a small, pretty but very see thru. will need to wear a shirt underneath, a little bummed because i liked the breeze! one other comment, this shirt is long! wh",4,1,1,General,Tops,Knits +841,34,Beautiful flowy top,This is a fantastic top to wear with the paige high wasted flair jeans. love it,5,1,2,General Petite,Tops,Blouses +860,55,,Love the the pattern on these tops. i got the grey and got a ton of compliments on it. the fabric is a great weight for fall. it does fit on the larger side so i would definitely size down. i got the xs and wish xxs had been available.,4,1,0,General,Tops,Knits +867,32,,As all the reviews say it is completely sheer. it's a very cute top other than that.,4,1,0,General,Tops,Knits +836,42,Soft & pretty!,"I wasn't sure about this top online. in the picture, it sort of looks like it juts out after the tie. but the reviews said it was really soft and flattering on. i wasn't sure exactly how the sizing translated (numbers vs letters), so i ventured into the store. i am normally either an xxs or xs in most retailer tops. i went with size 2. i think i would have been ok in the 0, but it might have gotten a bit snug in the shoulder area sizing down. and with the front tie, it can be cinched in to create",5,1,4,General Petite,Tops,Blouses +860,26,Nice tunic,"I like this tunic. it is quite long and print in blue looks good with the butterflies. it feels very hot though! maybe better for winter. the sleeves are linen, i usually don't like linen much, it feels scratchy. this top works better in colder weather due to the sleeves and length of top. more like a tunic. i recommend it but am sending it back because i need something for summer.",4,1,8,General,Tops,Knits +860,23,Gorgeous tunic,This top caught my eye in the store due to the beautiful print and lovely fabric. the photo really doesn't do it justice. i happened to have on a pencil skirt when i tried it on and the top looked great with my skirt though i will probably wear it more often with jeans or pants. it's a stunner!,5,1,0,General,Tops,Knits +1056,62,,"The petites fit perfect!! these are so comfortable, i will get much us out of them!",5,1,0,General Petite,Bottoms,Pants +1056,24,"Cute capris, fit great","I bought the size 27 in these - i'm usually a 27 or 28 (measurements 27-38), and they fit perfectly. i'm more of a pear shape and they're very flattering. the moss color is lovely and will go with a lot, and they can be dressed up or down.",4,1,0,General Petite,Bottoms,Pants +1056,40,,,5,1,0,General Petite,Bottoms,Pants +1094,41,,"I wanted to love this dress. i ordered online and what you cannot see in the picture if the pleating on the dress. i ordered a medium, i am usually a large in retailer and the medium looked like a tent. i realize this should be loose fitting but it was huge.",2,0,6,General,Dresses,Dresses +939,51,Love love love,Just as beautiful as in the picture. it is warm and the best part is that it is not itchy! love it and cannot wait to wear it as the weather changes.,5,1,0,General,Tops,Sweaters +1056,40,Great pant in petite size,I just got a pair of these in petite 28. and really like them. i am short though so even the petite length is too long for me- i wish it was the height of the cuff shorter than it is so i end up folding the cuff up. it still looks cute though. the stitching details are nice and quality seems good. hoping they hold up. the fabric seems durable if not a little too thick for hot summer weather but great for indoor a/c office temperatures. i am not going to buy another pair at full price but would c,4,1,0,General Petite,Bottoms,Pants +939,58,Wanted to like this...,"The craftmanship & material (not itchy at all to me) are exquisite for this unique sweater/coat, but the shape is not for me. i have a slender build, 5'8"" 130 lbs, 34 b chest (i oredered my usual sm, which fit), and the silouette of this piece looked ridiculous on me. when buttoned, the top half was nicely fitted-- not snug; however, the lower half ballooned out to overemphasize the hips due to the pleating in back. the thing is, i have no hips, and having hips is a very good thing, though not i",4,1,0,General,Tops,Sweaters +1056,55,Love 'em!,"I'm 5'5"", 115 lbs, with a 25"" waist and 35"" hips. i purchased a 25 and the fit was perfect. i'm just a bit short waisted, have a rather small waist and often find that pants of any kind gap at the back. these fit perfectly, felt great on, and i love the fabric.",5,1,9,General Petite,Bottoms,Pants +898,68,Very pretty sweater with nice detail,"This is a very pretty sweater and the neutral color works well with everything. the detail in the back makes it unique. it runs large though, so size down. the sleeves by the cuffs do tend to stretch out easily, but it washes well, so it's not a big issue..",4,1,0,General Petite,Tops,Fine gauge +854,44,So pretty...,"Haven't worn it yet, but i am loving this top. it is much prettier in person. i sized up to a med based on reviews and it looks like it runs small. i didn't try it on until i got home and probably could have done ok in a small but will keep the medium so it's not tight across my chest. the knit material that makes up the arms and back is thin, which is my only complaint. if it was slightly thicker it would look nicer and i'm sure wear longer. i'm happy with my purchase-the colors, fabric, embroi",5,1,0,General,Tops,Knits +1056,48,,"Loved my. mustard colored ones so much, i also bought the ligher green color. fit is wonderful- and very flattering. they can be dressed up or down. they look great with heals or booties!",5,1,2,General Petite,Bottoms,Pants +1056,26,Waist runs big,"I was so excited to try these but was really disappointed in the fit. i found the legs and butt to be tight but the waist to be really big. if you are normally a size 24, i wouldn't bother with these.",2,0,0,General Petite,Bottoms,Pants +1056,61,,"I'm a 5'7""and curvy, these pants fit well and are so comfortable. i think everyone should own at least one pair!",5,1,0,General Petite,Bottoms,Pants +872,34,,I am two months postpartum and bought this top to have something to wear for a date night. it is so flattering and has a beautiful cut. loose but not baggy or unflattering. i bought a small but could have probably sized down... so there's a decent amount of wiggle room in the sizing. great length for jeans or leggings.,5,1,3,General Petite,Tops,Knits +898,36,Fabulous long-sleeved cardigan,"I ordered in this in the kelly green and loved it so much i wore it the very next day after it came in the mail. the green color is gorgeous and easily complements so many other colors in my wardrobe. the cardigan itself is super comfy and i love the full length long-sleeves! so many cardigans these days come with 3/4 length sleeves, which are fine, but sometimes you want a long sleeve. the fit almost runs on the larger side, but i think that a slightly looser look works well for this cardigan,",5,1,0,General Petite,Tops,Fine gauge +939,45,Unflattering flair,"Really love this sweater. i am pretty crushed i'm returning it. the flair below the waist is too much. the quality is wonderful, the color lovely, the style great- i wore it around the house and every time i caught a mirror, it just was too much material, too big a bell shape. oh well, still looking for the sweater for winter 2016/17.",3,0,1,General,Tops,Sweaters +1056,39,Not loose fit on me...,"I tried on a returned 24p in my store, they were almost the right length, but the fit was more snug than pictured here (i have muscular thighs/butt, and 115 lbs). they were nice though, kind of a skinny pant. the carbon is a dark grey, can go with anything... only gripe is the waist height is low, at least on the behind... i would certainly show if i bend down without a long top.",4,1,1,General Petite,Bottoms,Pants +939,39,Classic,"I like this jacket, very neutral in color, classic cut and vintage like old retailer. unfortunately, i ordered xs p and not xxs p... and i found it wasn't right on me, a little loose, so not as flattering. i understand that jackets are meant to be worn over things, but i didn't love the look. some may find the material itchy, fine for me, but i am not as sensitive as others (can do small amounts of wool). i am 115 lbs, 30 dd and 26.5 in waist, for reference with sizing,.",4,1,3,General,Tops,Sweaters +853,39,Wow,"This one is way better in person. admittedly, i put it in my basket only becasue it was on the stylists picks...well, it is great. a little sheer, adn super static-y when i received it, but oh so soft. the plunge is a tiny bit low for my liking, but this doe'n'tt come in petites,so i had to suck it up and keep the regular sie. teh coloring is nice too, neutral, event htough there is rust and navy and greay-ish, it stil lcan be worn with anything..",5,1,4,General,Tops,Blouses +1056,38,Watch out for dye staining your load of laundry!,"I read the cleaning instructions label carefully. followed them closely. and still, the dye ran and stained some of my colored clothes. pi**ed me off! just after the first wash and even before wearing them, i have streaks of uneven color on the pants. bad quality material or dye is what causes this. now i have to go and see if i can even get out my other stained clothes. thanks a lot retailer.",1,0,6,General Petite,Bottoms,Pants +1094,31,Pretty frock..,"These days i am more like a 6 after gaining some weight. when i was in my local retailer the other day i happened upon this dress only in a small/petite. i tried it on and it actually fit me very well. i am 5 foot 6 so i thought the petite might be too short or wouldn't work, but surprisingly it fit my body type. i think i'll like wearing it best with a pair of wedges or heels. like most other reviews i'm inclined to agree that the regular size has too much fabric going on and probably is s",4,1,0,General,Dresses,Dresses +841,63,"Beautiful top, worth the necessary tailoring","The beautiful bold print drew me to this top and it did not disappoint upon receipt. however, the bottom ruffle belled so far out on each side that it was laughable! the actual fit is nothing like the picture; clearly the model's arms are placed in front of all the extra fabric to hold the ruffle back. +however, the fabric is beautiful, the fit was perfect (size 2, 5'4"", 106 lbs.), the quality is great and i love the print so i decided to take it to my tailor to ""sew away"" the ""wings"" on both si",4,1,15,General Petite,Tops,Blouses +1080,50,,,5,1,0,General Petite,Dresses,Dresses +1056,61,,"I got the pilcro hyphen chinos in a size 25p and they fit, so i assumed i would be the same size in the pilcro stet chinos...nope. the 25p was way short and way tight. i'm 5'3"" and about 113 lbs. my mom is 5' and 98 lbs and they fit her so i gave the 25p stet chinos to her to keep. disappointed!",3,1,0,General Petite,Bottoms,Pants +898,36,Comfy and practical,"I bought this cardigan in grey. it's sturdy, soft, great layering sweater over a top or even under a heavier sweater. the tail in back is long and unique. the shape is flattering. and for a lighter cardigan, it's more substantial than others out there. the sleeves are long enough for my long arms, which i love.",5,1,0,General Petite,Tops,Fine gauge +683,33,In love!!!,I love this sweatshirt! new favorite! it has a comfy meant to be oversized fit... love the little inspirational quote... and it's the kind of sweatshirt you want to live in! so stinking soft! got lots of compliments at the gym and the pick up line at school!!!,5,1,0,Initmates,Intimate,Lounge +854,32,Just the right amount of pizzazz,"This top is lovely! exquisite embroidery in a silvery-beige color compliments the deep plum. the fit is close to highlight your curves, while being just a touch comfy. very chic for a jazzed up outfit for a night out with jeans or black pants and your best booties. i wear a size 8 normally and the medium fits me perfectly. my body type is curvy and athletic.",5,1,0,General,Tops,Knits +872,56,Comfortable and unusual,"This top is beautifully made, but comfortable. the neckline is a stretch fabric and the cut is very flattering. the length is just short enough that it doesn't look like a dress.",5,1,0,General Petite,Tops,Knits +939,35,Great jacket,"Beautiful design and soft, warm wool. warm enough to have on outside in the fall (i live in pdx), and also stylish enough to keep on inside. buy the right size (not too big) because it's meant to fit on the waist and the skirt swings out from there!",5,1,2,General,Tops,Sweaters +1056,43,Casual pant,Very comfortable. im 5'2 so i ordered the petite and its a perfect length. no need to roll up. slightly slim fit but not overly tight. typically order everything online and didn't need to return. ordered charcoal color which is simply a faded black/dark grey.,5,1,3,General Petite,Bottoms,Pants +841,35,Not as expected,"In paper crown dresses, i wear a small or size 6, so for this top, i ordered a small. it was huge on me! for reference, i'm 5'7"", 130 lbs, 34a. it is very wide towards the bottom, and it flares out way more than in the picture. the material is also a little stiff, so it really sticks out. even if i sized down to the xs, i think the bottom would still look unflattering, so i'm returning this.",2,0,11,General Petite,Tops,Blouses +898,45,Great length,"I'm a little on the short side, i was afraid it was going to be too long in the back. the sweater is perfect all the way around. i like the looseness in the front and like the way it lays in the back. the color is great.",5,1,0,General Petite,Tops,Fine gauge +872,61,Lovely!,So glad i purchased this tunic! just lovely. can see myself reaching for it constantly this summer. necklace friendly too!,5,1,1,General Petite,Tops,Knits +1056,41,,"Great chinos, but they run a size large. i ordered my normal pants size and had to return them for one size down. i actually like them so much after finding the right size, i bought a second pair in store. i have the grey and mustard yellow. love them! just order a size down!",5,1,2,General Petite,Bottoms,Pants +1056,28,Love these pants,"Ordered the grey colored capris & they fit great. i am 5'5 110lbs and the size 25 fits me comfortably. i've recently been making a transition into more comfortable, looser style pants instead of skin tight jeans. these are great. still figure flattering, but comfortable and well made. the detail on the button section is lovely also.",5,1,0,General Petite,Bottoms,Pants +1056,51,Love these pants but they are not colorfast --,I love these pants -- bought them in the mustard color. my only complaint is that they are not colorfast -- i washed them in cold water with other colored items -- most of which belonged to my husband. not good -- and pretty much ruined an entire load of laundry except for these pants. retailer -- please color test your garments. there is really no excuse for fabrics like this to run in this day and age!,3,1,0,General Petite,Bottoms,Pants +1056,42,Wash separately,"I have mixed feelings on these. i ordered the honey which is a mustard color as shown in the picture. they are true to size, cute, and comfortable. i washed them the first time with a load of darks and the color ran onto other clothes. plus the pants looked a little streaked in some areas. i'm not sure if this was a bad lot, but back to the store they went.",3,1,11,General Petite,Bottoms,Pants +1056,56,Soft and pretty,"I am 5-9 1/2"" tall, 150 lbs, i bought the 8 in the honey color. they fit perfectly. there is some stretch and they are super soft! which for some reason is totally why i buy clothes. the length is good since they are capris. also, they did not have my size in store, so they had them shipped, for free, to my home. received them within 3 business days. + +i would very much recommend them for a casual, fun look. the honey color will look great with navy, grey, and white for summer.",5,1,2,General Petite,Bottoms,Pants +1056,22,First time purchase of pilcro!,"Earlier this year i bought a pair of pilcro hyphen's as a birthday gift for a family member, and she absolutely loved them! after hearing from her how comfortable and amazing the pants are, i had to get some for myself! i usually only wear denim pants, everything else is skirts, dresses or shorts. so this was a big change in style for me.so far i love them, they are way more comfy than i had expected and made from great material! +i'm 5' 2'' and 120lbs. they 27s fit perfectly. i do not have slim",5,1,0,General Petite,Bottoms,Pants +1056,49,,"Bought the pink color in the store and just loved the way that they fit me. i ended up ordering the light blue. perfect for a cool summer evening. can be worn with sandals, wedges, or converse sneakers!",5,1,0,General Petite,Bottoms,Pants +854,37,,,4,1,0,General,Tops,Knits +1056,32,,"This is my third pair of these pants. they are my everyday staple, good for work or play",5,1,0,General Petite,Bottoms,Pants +1056,24,So soft!,These pants are so great! they fit as expected and are a nice skinny crop but nothing too tight. the fabric is very soft making these pants incredibly comfortable. this was my first pair of the stet crops but will probably buy another pair in the future.,5,1,5,General Petite,Bottoms,Pants +939,35,Prettier in person!,"This coat is a beauty. the embroidery is much prettier irl and the wool is not itchy at all. best of all is the tailoring, as i am very petite and i am so tired of all the shapeless, sack-like coats/jackets. it fits tts and has pockets. it is perfect, just wish retailer has more offerings like this.",5,1,28,General,Tops,Sweaters +939,41,My cup of tea,"Thank you, retailer, for creating this sweetly vintage and feminine sweatercoat. the boiled wool is lovely and the embroidery makes me lightheaded just looking at it. this is definitely a nod to retailer's past, and i love it to bits! +i usually wear a size s or xs, but bought this in the xs. the fit is flattering as can be. i was so happy to find a fitted and timeless piece in the sea of boxy and trendy sweaters. +(it's true that this sweater isn't lined, but to my mind, it would be a crime",5,1,8,General,Tops,Sweaters +828,72,Beautiful!,"This shirt is more beautiful in person. it has a lovely hand feel (soft) and the blue is as shown but a bit more vibrant. i bought it for my 13 year old niece. she loved it! she may have to return for a small, but i do feel the size ran true to size. it depends on how you want to wear it.",5,1,4,General,Tops,Blouses +854,34,Stunning day to evening top,"This top is so gorgeous! the color, the embroidery, the neckline, are all perfect. this can be worn casually with jeans or dressed up for a special occasion. i wore this to a thanksgiving part, but also to take final exams in (because it is comfy too!). this piece definitely runs small. i ordered a large despite being a medium in almost everything else at retailer and the fit is perfect.",5,1,0,General,Tops,Knits +939,28,,"Gorgeous embroidering and feel -- very soft for wool. this is a lot lighter than more jackets but with good layering can be worn in the winter. i'm 5ft tall and 150 lbs, curvy and hourglass; this hugs my curves beautifully in a size small and gives me a feminine shape. it runs up to my knees and the sleeves are a bit long which will be hemmed soon. i wanted the petite but it was sold out, honestly this is perfect minus the arms. the quality is gorgeous -- so soft and inviting to wear. it runs la",4,1,0,General,Tops,Sweaters +898,56,"Pretty color, but runs big.",".unfortunately it hit at the widest part of my hips, so it wasn't very flattering. the point in the back was also kind of odd, and off center. i had to return. pretty color, though.",3,0,0,General Petite,Tops,Fine gauge +1056,42,Versatile pant,"These are the same in sizing as the hyphen chinos, but these are far more versatile. i love the boyfriend look of the hyphens, but the stet chino can be dressed up or down. they are so comfortable and the fit is wonderful. i'm 5'8"" 138 lbs, and i took my usual size 28 in these. i have full thighs, and i didn't find these to be too tight in the legs at all, but i only tried on the black/charcoal.",5,1,0,General Petite,Bottoms,Pants +939,22,Great fit and style!,"Absolutely adore this jacket. i'm typically a true medium at retailer and the medium fit perfect. the small actually fit really well to and had a little room for sweaters under it but i decided to stick with the medium just so i could bundle up if need be. so perfect and beautiful, the embroidery is gorgeous, i feel so feminine in this coat",5,1,0,General,Tops,Sweaters +1056,61,Great colors,I got the honey colored and love the color. they are very comfy and soft. i look forward to wearing them all summer,5,1,0,General Petite,Bottoms,Pants +828,28,Plaid and dye fun,"I am a huge fan of cloth and stone tops as they are very versatile. +this particular one didn't disappoint. the combination of plaid and tie dye is so fun and fresh, yet the blue makes this piece an easy one to match with many bottoms. + +now for the fit: +the cotton is very soft and lightweight. +i bought my normal size medium and it fits perfectly. + +i look forward to wearing this piece often.",5,1,9,General,Tops,Blouses +1056,25,"Love, love, love","I bought 2 pair of these in the store and ordered another color at the same time! these chinos are great for my figure. i like to think of myself as a ""diamond"" shape ;) large chest, moderate waist, large hips, and small legs. these pants fit so great!!! i bought my regular size and don't have to take in the legs! the fabric is nice with the additional stretch so we women who aren't 20 or 30-something any longer can still feel great and look good without being dumpy! i'm not a teeny woman either",5,1,4,General Petite,Bottoms,Pants +1056,57,Comfy and classic,"1. i'm 5'5"" tall, 145 lbs, and 38-32-40 and the size 30s fit me perfectly. + +2. i love the hyphen chinos, and these fit almost the same, just a bit trimmer. they are not tight, and just skim my body perfectly. + +3. i love all the colors. the red is darker than the two hyphen pinks. + +4. the pants are comfy enough to be really casual and dressy enough to wear to work.",5,1,66,General Petite,Bottoms,Pants +1056,54,Great chinos,"I bought the moss, which is more of a pretty pastel green. they are very nice in that they aren't tight, yet stylish and i can dress them up. the only drawback is that they stretch a lot. i can get two wears out of them, maybe a 3rd, if not worn for hours and hours or all day each wear. i'm getting the light yellow pilcro hyphen chinos, now. all the colors of both styles in the store are very nice. i'd like to have each color. for reference - i'm 5'2"" and size 27. i would say that they are tts b",4,1,1,General Petite,Bottoms,Pants +1056,26,,"I absolutely love these capris. after reading the reviews, i thought that they may fit a bit snug through the thigh, but they fit perfectly. i am roughly a size six (depending on the design, i can sometimes squeeze into a 4). i bought the size 27 in these and its perfect. also, i thought that the green would be more of a mint, but its definitely a more of a mossy color. i love that they are so versatile and literally go with everything! will be getting more colors in the future! great buy!",5,1,1,General Petite,Bottoms,Pants +939,43,Classic retailer,"This is classic retailer at it's best. quality style a little something extra makes this piece something that will likely live in my fall / winter wardrobe for decades to come. first the quality is superb, soft gray wool with a delicate floral embroidery motif on the front. military buttons down the front with a fit and flare waist on a 3/4 length coat. versatile enough to wear as a sweater or light coat for early fall. fit is generous enough to easily fit a bulky sweater underneath and lay",5,1,14,General,Tops,Sweaters +1056,39,Cute and comfy spring pants,"Cute, comfy, and would highly recommend them to others. i plan on getting one more color because i feel like i will wear them all the time!",5,1,1,General Petite,Bottoms,Pants +939,34,,"Love the design!! it's screams retailer and is form fitting, flattering, and super cute!! however the material has the itch factor for me. it's not lined and therefore quite scratchy along the collar as well. what a shame.",4,1,0,General,Tops,Sweaters +872,44,I beautiful and feels good,"Love the fabric on this. so many retailer tops sit unworn in my closet because they are sheer and i have to wear a layer underneath. this will not be one of those. the fabric is beautifully embroidered and thick enough that it doesn't feel too delicate. the back is a super soft jersey....feel wonderful! will go nicely with jeans & flats for me! as a super bonus, i bought it with my birthday discount and now have in in time for a downton abby party. :) i'll be so pretty!",5,1,2,General,Tops,Knits +1056,41,I want to live in these pants,"The perfect summer pants. i will be ordering more colors and possibly a smaller size. i think the slim fit would look just as good in a less slouchy size. i bought a size 31 petite in the dark blue (not navy) and they fit perfect and the color is amazing. very high quality, feel very soft and comfy. for reference, i'm curvy, 5'2"", 146 lbs, usual size is a 31 (10-12) but i've recently been losing weight so my sizing may be off. the pants do stretch out like most pilcro chinos.",5,1,0,General Petite,Bottoms,Pants +959,32,,Very cute and great fit. i removed the belt (it's removable) for a different look.,5,1,0,General Petite,Jackets,Jackets +854,54,,"I fell in love with this top when i first saw it on the retailer website and was pleasantly surprised when it was every bit as beautiful in person as it was online (even more so). the bronze colored threads are to die for and the fit is perfect on my 5'4"" (129 lb) 34c frame. if your on the fence on this one, get it. it's worth the purchase!",5,1,0,General,Tops,Knits +1156,35,Bottoms,"I love these bottoms. great colors. i also love the feel of the bottoms, very soft. high quality.",5,1,0,Initmates,Intimate,Swim +872,30,"Beautiful embroidery, unique design","I'm 5-months pregnant and wanted some beautiful tunics to mix it up between the usual maternity wear. this top is lovely! i love the cut, length and embroidered details however i am not a fan of the side slits. this will work much better post partum so i plan to keep it but my belly currently pulls the slits a bit awkward.",4,1,0,General,Tops,Knits +1056,34,Comfy pants but run large,"These chinos are really soft and comfortable, but they run really large. i have the 27 petite (5'4"" 115 lbs.) and they are too big. i originally bought the 28 petite and exchanged them for the 27 and after wearing the 27s all day i have realized they are significantly too big. they stretch as you wear them so they ended up completely saggy in the butt and hanging around my hip bones. i was in the store today and tried on a pair in 26 regular and those were also too big; i didn't have time to try",4,1,1,General Petite,Bottoms,Pants +939,39,Sweatercoat of the season,"Beautifully constructed and designed, this lovely sweater coat from rosie neira makes me anticipate fall weather more than i should. the fit is perfect for light layering and has a feminine silhouette. the wool feels like all my other boiled wool pieces--it's soft, slightly itchy, but tolerable. i wear a layer anyway so i hardly notice. just be aware for those that are extra sensitive. i purchased size mp and my stats are 5'3"" 135# 38/28/35",5,1,5,General,Tops,Sweaters +1056,55,,,5,1,0,General Petite,Bottoms,Pants +1056,46,Pilcro stet chino capris,"I'm not much of a chino girl, but these fit like a favorite pair of jeans and with heels still look really polished. love them!",5,1,2,General Petite,Bottoms,Pants +854,62,Sweet on embroidery,Soft. fitted without being tight. flattering neckline. nice embroidery.,5,1,0,General,Tops,Knits +1056,26,Soft but fit oddly,"I wanted to love these, but the zipper is extremely short and they were not flattering on my thicker thighs and large behind. the fabric is so soft, however and the color is great. would work on a less curvy woman!",3,1,0,General Petite,Bottoms,Pants +1056,41,Love this chino!,"I'm so pleased with this cropped chino with all its lovely colors. i have bought 3 colors so far and i love the fit and comfort of these. i'm 5""1, 104 pounds and took the 24p since this runs a size large. my favorite is the lovely moss color which really a brighter mint green and i also love the honey color for spring and summer. these fit slightly slim yet still feel relaxed. love them and highly recommend these!",5,1,3,General Petite,Bottoms,Pants +939,64,Itchy!,"I love the idea of this coat and foolishly purchased other items in happy anticipation of its arrival. + +the description does not say ""lined,"" and i hoped for soft wool that i recently got on the ""yellow with white piping"" sweater coat. this is hard, coarse, itchy wool - impossible for me to wear an unlined garment. i am consistently puzzled by the high prices for garments that are unlined when they really need to be. it went back, and i cannot really recommend this as i know i am not the only",3,0,22,General,Tops,Sweaters +1094,35,,,2,0,0,General,Dresses,Dresses +898,67,Ordered two,I took a chance and ordered extra one for my daughter-without ever running it by her first. i'd first seen the sweater in the store when another customer was tracking it down. it looked so nice and unique i couldn't forget about it even though i didn't try it on at the time. very happy i got it on sale-and so i got two-luckily we go to our different workplaces in different towns!,5,1,0,General Petite,Tops,Fine gauge +898,44,,"Super soft, cozy cardigan! i have a long torso and this is just the right length to cover my behind! i wish retailer would carry more sweaters with this shape. the sweater is soft and light - perfect for every day and you could wear it year round, although with its lighter weight, it might not be as perfect for winter. i purchased this in the kelly green color and it's gorgeous. i have it on right now!",4,1,0,General Petite,Tops,Fine gauge +1056,31,Really wanted to love these,"These are so soft and cute and i could see myself wearing them a lot. however, my normal 25 was just too baggy and the few times i tried to wear them around the house, they just bagged out and all i did was pull them up every 2 seconds. i ordered the black, mostly because i wasn't crazy about any of the other colors. if there were any colors left in a 24 that i could see myself wearing, i would re order them in a smaller size and see if they were any better for me. i think if they fit you well a",4,1,1,General Petite,Bottoms,Pants +1094,39,Huge,"This dress is huge. also, i was super disappointed in the fabric. i thought it would be silly like a georgette. but it was coarse, more like a poplin, and thin. i thought it looked cheap.",2,0,1,General,Dresses,Dresses +854,39,Unique and a great fit,I love tiny tops- they fit great. i buy a small. i wish this was a henly style like some of their past versions of this embroidered style top but i still ike it and will get a lot of wear out of it. at first i thought it was too much detal but it grew on me after pulling an outfit together. won't dissapoint.,4,1,0,General,Tops,Knits +468,54,Perfect symmetry in lifesaver colors,"Just got these mara hoffman classic bikini bottoms in flight azure print.today and love them: high quality, fully lined and reversible. the pattern placement is perfectly symmetrical and the colors are just like the online photos. +. +i think the size chart on the mara hoffman site is correct for where the bottoms sit on my body, above the widest part. i have a a-shape with smaller waist and hips, full behind and thighs (currently 33-25-37ish, 38"" at the widest which is at my thighs). in these t",5,1,0,Initmates,Intimate,Swim +931,47,"Big, oversized sweater","The neck is so big on this sweater, i couldn't make it lay right. the shape of the sweater is odd. it is really wide on the upper torso, but tapers near your waist. it did not look as depicted on the model. the sweater is a lovely color, i liked the two-tone, but overall the fit was too weird for me. material is soft and it felt really nice on, but just too oddly shaped and a crazy big neck.",2,0,0,General,Tops,Sweaters +1070,68,,"I loved this on the mannequin and assumed it would look terrible on me. i tried it on anyway and was delightfully surprised. i tried a small and it was too roomy in the top so i opted for the extra small. i'm 5'6"" and 130 lbs, (27 in jeans, 34a). my booty definitely fills it out but the rest of the fit is similar to the model. it is hard to get on and off but if you tie a looser bow before slipping it over your head it's much easier to get back on and you can tighten it up again fairly easily. f",4,1,5,General,Bottoms,Pants +872,52,Love this top!,This top is one of my retailer faves! it is so comfortable and love the quality and design. i receive many compliments on this top. i usually wear an xs or s in retailer tops and the xs was a little tight in the arms. the dressing room attendant suggested ordering a petite small so i wouldn't lose the shape. so glad i did. it fits perfect! i even ordered when it was on sale!! the gray color is perfect! its not too thick or thin.,5,0,2,General,Tops,Knits +872,35,,"Love the blue color, different than many blue tops i own. i thought it was going to be a thicker knit and perhaps more stiff, but it is soft and a lighter knit and it makes the shape once on much more flattering.",5,1,3,General,Tops,Knits +872,42,Cozy cool pullover,I ove the interesting details on this pullover. it is super cozy on and i love the arched hem and extra long cuffs. the crew neck is wide and comfortable but not so wide that you need another shirt underneath. great easy pullover with jeans or leggings.,5,1,1,General,Tops,Knits +872,56,,"I loved this top so much i bought it in both colors. i have not seen anyone complain about this, but on me, the mock neck collapses in and looks messy. unfortunately i returned both. i sew, and i do not understand why this happened.",4,1,2,General,Tops,Knits +872,36,"Well made, not correct fit for me",I really loved the color and fabric of this sweater. i liked everything about it except how wide it was at the bottom. i returned it for this reason.,3,0,0,General,Tops,Knits +1070,57,Beautiful jumpsuit,Perfect fit for my size. it elongate my petite frame.,5,1,0,General,Bottoms,Pants +818,60,Gaping,This shirt is not near as nice as it may look the fabric is just ok it runs large i ordered a xs and the neck line was huge and gaping not worth the money even on sale,2,0,0,General Petite,Tops,Blouses +872,41,,Great top that can be worn so many ways. i bought the top in gray because it is way more interesting in person. it has just a touch of sparkle in it and lots of texture. i have seen this top on several people and it seems to flatter lots of different body types.,5,1,2,General,Tops,Knits +872,43,So bummed,"I so loved the look of this top and most of the reviews seemed really good. i thought the material was great and i ordered the blue which is a beautiful color....but......the fit was way off and the design is way off for a girl with hips. first the fit, the arm pits are low and don't actually tuck into where your armpits are, so you have this weird restriction in arm movement. then the design is not great either (and others mentioned this), the sweater at the bottom has way too much extra materi",3,0,1,General,Tops,Knits +1070,41,,"Well first off i knew a jumpsuit was going to be a gamble for me- i have a long torso at 6 feet , but i just loved the print and the style and typically all things sactuary so i was willing to risk it. +sadly the torso length was an issue and it seemed to run small to me-i ordered a small which usually would fit fine, but ended up pulling across my hips and with the patten being what it is... well on me it just wasn't flattering or comfortable.",4,1,23,General,Bottoms,Pants +1070,28,Legs are very long but beautiful,I tried this on in a m - it fit tts aside from the fact that there were super long. very form fitted and flattering.,4,1,0,General,Bottoms,Pants +872,39,I wanted to love it,"Love the blue color, and the bit of sparkle gives this otherwise casual piece a bit of flair. the hem is cool. love the big cuffs. but i looked like the liberty bell in the small. it is huge through the hips! not at all like on th model. i also worried it would shrink and i would lose the length in the arms. returned :(",3,0,1,General,Tops,Knits +872,39,"Like it, comfy, nice but dind't keep","This sweater is pretty, the cut is very flattering, both colors are nice (i ordered both), but i decided to reutn both only because i have enough sweaters and live in southern california... otherwise, say go for it. it is well made and woud definitely keep me warm. i also like the mock neck, the long sleeve ""hem"" and contrasting colors... i tried on petite xs, which was perfect for me #5'1.5"", 115 lbs#.",4,1,0,General,Tops,Knits +1070,47,Almost right but not quite...,"I bought this jumpsuit in a size medium (32d, 31 waist, 38 hips/butt). i have a jumpsuit in this style but it's silk so i was looking for one i could wear anytime. that said, even i need a heel with this jumpsuit. the problems were these: first, it was very hard to get on. very hard to tie the back, get all four panels even, tied, hiding my bra, etc. lots of fussing. your may need a partner to help. if i hadn't been doing a lot of yoga, i may not have managed. once on, the style looked great. as",3,1,22,General,Bottoms,Pants +872,36,Classic,"This top caught my eye in store because of the fabric texture and light gray color. i wasn't too sure i'd like the cut on the bottom, but the neckline was so lovely i thought i'd try it out. i went with a small which is my usual (if not extra small) and loved it as soon as i put it on. the shape is very flattering, even with my post baby figure. i definitely think that it's better in person than in the photos online. and the price seems very good for a lovely sweater that's both classic and mode",5,1,6,General,Tops,Knits +955,51,Too smalllllll,"High quality, and worth full price.... but way too small. also a bit short in the torso.",4,1,0,General,Jackets,Jackets +818,34,Just didn't work for me,"This top does look as pictured, the sleeves hit me the same and the size was true... i just didn't like it... it was shorter than i wanted in length and i just didn't feel like this top was worth the price so it's going back. i feel like i have had shirts with this texture and over time, they just didn't wear as well so i was afraid with 3 kids it wouldn't be a good idea. i paired it with a blazer and it looked great, but on it's on, i don't know, just not for me. for reference, i am 5'8'' 128lb",4,0,2,General Petite,Tops,Blouses +1080,36,"Gorgeous, vintage inspired and elegant dress","This is by far one of my favorite dresses i have tried on in a long time. i am a 2-4, the small was tts and so flattering. i think this would be better for someone taller with a lean frame, though its not super tight and the material has a great weight to it, it isn't lined and could definitely show figure flaws. for me it skims my body elegantly and was very comfortable through the bust, waist and hip (34c/26/36). it fits me like the model in the image. the one down side is that it is pullover",5,1,0,General Petite,Dresses,Dresses +844,39,For the lanky models,"I so badly wanted this top to work. it looks so cute! but, as soon as i tried it on, i knew it wasn't a keeper. i didn't even need a mirror! it's not suited for those of us with a bust (i'm a 34d) and anything but a lanky model-esque frame. i suggest sizing up if you're busty and want to give it a try. it looked dowdy on me.",3,0,0,General,Tops,Blouses +844,33,,It's a beautiful top but not for bigger busts. ordered an xl and the top part would not button. i recommend for those with smaller busts.,2,1,0,General,Tops,Blouses +872,57,Amazing top!,"I purchased this top (i thought of it as a sweater) to wear for a chilly holiday in mn. it's super flattering and i think it would be on anyone! my 28 year old daughter saw it on me and claimed at a christmas present so i just ordered another. we have very different body types but the neckline made us both look very elegant and it is super comfortable. i haven't seen how it cleans, yet. we both got the lighter colored one...love!",5,1,5,General,Tops,Knits +872,62,Loved so much i bought both!,"Immediately loved this when i saw it online and even more in person. i'm only 5'1' so i tried the petite sizing first but ended up buying the regular in an xs for the slightly longer length. the regular fit me like the model in length and i probably could have taken the xxs except the sleeves were too narrow in that size. i like that the cuffs are long so if you have to turn it up (like i do) it doesn't look weird. also, i found the fit flattering at the hips, following my hourglass shape withou",5,1,11,General,Tops,Knits +797,30,One the fence,"I am on the fence about this one. the length is great. it hits right above my knee at 5'1. overall it was larger than i was hoping. the waist is pretty loose, and i really had to tightly tie the back to get s good shoulder fit. the bottom is very voluminous making me look wide. i wish they had it in a petite size. for this price, i will probably return it. it's not worth the 300 price tag.",3,0,2,Initmates,Intimate,Lounge +818,45,Great top!,I love this top. it looks exactly like the picture except the sleeves are not full length; they are closer to 3/4 length. the color is vibrant and the material is light and comfortable.,5,1,1,General Petite,Tops,Blouses +872,34,A slightly shimmery everyday pullover,"My retailer location only had the blue option, which i found to be very appealing and better in person for the following reasons: +__________ +pros: +- lighter knit like others mentioned. +- the blue is a deep blue with threads of shimmery black that give it a more elegant touch while still being casual. i didn't see the grey, so i cannot compare the two differences, but i found the blue color lovely. +- this looks much better in person! +- it sat well on my tall frame of 5'9"", 36 c, wide hips, and hour",4,1,6,General,Tops,Knits +1080,36,Great in photo... not so much on,"This dress looked like something i would wear and covet for years. unfortunately it was loose in the places where it should show shape and was tight in others. the bodice is incredibly small and not meant for bigger chested women. while the fabric is beautiful, overall the dress did not look like much. disappointed.",3,0,0,General Petite,Dresses,Dresses +929,46,Barely covered my bum,Not a tunic unless the model pictured is 5'1. barely covered my backside and not as advertised. design on top is interesting and the fabric is soft so it's a good buy if 50% off or more.,2,0,0,General,Tops,Sweaters +872,39,It sparkles!,"I was thinking this would be a straight up terry cloth athleisure top, but the subtle metallic thread woven into the cloud gray fabric elevates the style. really loved the top because of the cut and interesting hemline, but i adore it for the bit of sparkle.",5,1,0,General,Tops,Knits +872,56,Fun yet not too casual,One of the sales women was wearing this today. she looked amazing. then i tried on. i looked really great. the gray pattern is much more distinctive in person. it is comfy - 97% cotton. the unique hem adds punch. able to dress up or down. i'm a true size 6. small fits perfectly. medium was very loose and oversized. well constructed. feels more like a $98 ($78 retail) pullover. highly recommend.,5,1,16,General,Tops,Knits +929,68,Too short,I was interested in this sweater because i actually thought it was a tunic. the sweater is much shorter than i thought. i wish i could return it. i bought a size large which is my normal size.,1,0,7,General,Tops,Sweaters +872,38,Love!,My sister gave me this top for christmas and it's perfect. i find myself grabbing for it constantly. i'm usually an xsp and the xxs fits me perfectly. i wear it with leggings and jeans.,5,1,2,General,Tops,Knits +872,51,Satisfied and beyond,Beautiful choice...beautiful fit for my daughter's slim body,5,1,2,General,Tops,Knits +872,54,Blue version runs much wider in the hips,"Tried on the blue in xsp and xs, tried the grey in xxs. i'm 5'2"", currently 33-25-37 with narrow shoulders and a long torso. +. +the blue version runs very wide in the hips compareed to the grey, but is very fitted at the top, giving it a trapeze shape. not a good look on my pear shape. the sleeves on the petite size were a better fit, but it was shorter than on the model. the grey is more slender with very snug arms that do stretch out. +. +a pass for me, even though i love the mostly cotton fa",4,1,0,General,Tops,Knits +872,47,Pretty fabric- nice fit!,"I love this color blue. when this item went on sale i had to grab it and i'm glad i did. it feels medium weight to me so i could throw this on, on a cool summer night and also in the fall. there is some sparkle to the fabric which i think is really a nice added touch. feels comfortable on and looks adorable.",4,1,0,General,Tops,Knits +872,31,Unique item,"I didn't thoroughly read the description of this product, so when it arrived i was surprised to see the thread was sparkly. i tried it on and the neckline is absolutely beautiful and feminine. it looks like a masculine cut on the model, but it's actually a really beautiful neckline with flared flowing bottom to it. + +my only complaint is that it looks a tad longer on the model then it is is real life. i'm 5'9"" and it shows most of my behind, unlike the length of the model where it seems more like",4,1,5,General,Tops,Knits +929,34,,Really well made. beautiful. sadly it is very short. not a tunic at all.,1,0,2,General,Tops,Sweaters +895,67,Trendy and nice casual,"Purchased this sweater as a gift for my daughter and when i saw it wanted one for myself. it is a light to medium weight and works well with jeans or for work. the sweater is shaped smaller at bottom and is flattering. the one problem was that when you raise your arms, the sweater also rises to expose your torso. it was returned.",3,1,0,General Petite,Tops,Fine gauge +1077,34,Love this dress!,"I absolutely love this dress! the fit is great and the elastic waist helps to show off your shape. it's great for the warmer fall weather we have in the south, but i can put tights with it when it gets colder. the dress is thin, but not sheer so there's no need for a liner. i'm 5'8, weigh 144lbs and ordered this dress in a size 10. i think i might have been able to wear an 8, but the 10 fit so well that i kept it.",5,1,0,General,Dresses,Dresses +869,69,Best summer top,"This top is the best summer top ever. looks great, washes great, packs great. i get compliments whenever i wear it. fit is true to size. goes with everything.",5,1,0,General Petite,Tops,Knits +869,39,,"I think this top looks lovely; however, it does not fit my body shape. i am an hourglass shape. the shirt clung tightly to my chest and didn't drape nicely around my waist/hips like on the model. i think top could look great on someone who has a lean, square, or athletic build. + +also, this top definitely runs large. according to the retailer size chart, i should be between a small and a medium for my waist and hip measurements, but this top was much too large overall in a small and still",4,1,0,General Petite,Tops,Knits +1077,23,Not for the uber-curvy,"So much about this dress is wonderful - the fabric is a nice weight, the color is gorgeous (i got this in the blue), the length on the petite hits right above the knee. unfortunately, i got a 12p - my usual size in antho dresses - and the elastic waistband was on my boobs rather than under them. i've got a sizable bust (36g), so this happens from time to time. i'm exchanging for a regular, which hopefully will have a little more room, but busty gals beware! at least it's not too low cut!",3,1,1,General,Dresses,Dresses +1077,37,I recommend dry cleaning!,"This dress was my absolute favorite recent retailer purchase. the fit is so flattering. i think this dress runs true to size-i usually wear a size 6 in hd in paris, and that's what size i ordered. i expect i could have fit in a 4 but the 6 is comfortable. i am 5'4'' but i ordered the regular length and it hit just above the knee. i agree that it could use pockets but no need for lining. however-- i just laundered this dress for the first time-hand wash, lay flat to dry (as recommended) and this dr",2,0,1,General,Dresses,Dresses +895,20,Absolutely lovely,"It fits perfectly, slim but not clingy, and it has a beautiful pattern/texture to it. its surprisingly warm for how thin it is and its a great layering piece.",5,1,0,General Petite,Tops,Fine gauge +869,60,,"This is a beautiful top! it fits like a glove, very flattering.& got lots of compliments. +i am 5'4"" and 125 lbs, i bought size medium. love it! worth the money:)",5,1,0,General Petite,Tops,Knits +1077,62,Easy everyday dress!,"Just bought this in navy and love the easy versatility of it! the other colors in the print (including some black) can be worn as is, with a cardi, denim jacket, leggings/tights and boots, etc. i found the fit to be somewhat loose in my usual size 4, particularly in the chest (i'm 34a), and length was long enough to not need leggings in spring/summer (at 5'7""). the neckline is cut somewhat low, but retains modesty in my opinion because of how narrow of a v it is (don't feel need for cami). very",5,1,1,General,Dresses,Dresses +1077,52,Great dress,Comfortable and flattering for all body types...good for both day and evening...,4,1,0,General,Dresses,Dresses +869,58,Don't pass me by....,"Beautiful. did not look like much on the hanger, but this is a beauty. give it a try! +i am 5'10; normally a size 6 and the small fits perfectly. it should be loose fitting, with a dropped, not so obvious flounce. the colors are subtle and it will go nicely with many lightweight summer pants and shorts!",5,1,17,General Petite,Tops,Knits +1077,31,Perfect summer to fall dress,I love this dress! purchased it in pink and then in the blue color. it's perfect for any occasion and is very comfortable. i feel like it fits true to size and was not to revealing in the front however if i was to wear this to work it would need a cami underneath. it is not lined as well. love this dress! buy it in every color!,5,1,0,General,Dresses,Dresses +652,67,Runs small and short waisted,"I'm writing this to warn others that these run small. i ordered my usual small and then because of the elastic waist i also ordered the medium. neither size fit me. even the medium was not only too tight in the elastic to be worn at the hip as shown, but too short waisted to be worn at the waist. they are generally smaller everywhere, which just seems wrong in this style pant. also, take note, these are slit up the side, which i could not see in the photo. it's not a high slit, but still, does c",3,1,7,Initmates,Intimate,Lounge +1077,34,,This is a great throw on and go dress. it would work great with a sweater and tights or by itself in the hottest of weather. it looks a lot less awkward on than the picture online indicates.,5,1,2,General,Dresses,Dresses +1077,39,Caught my eye,"I saw this dress in the new arrivals in red, and it caught my attention, but not enough to order it (the pictures online for other colors didn't look that great). well, i saw the black in the store and decided to try it on as it looked like hte cut would be cute. it fit like a glove and i actually love the pattern. i ordred the peite to compare, and also the red to see in person... we shall see which is the winnrer!",5,1,2,General,Dresses,Dresses +895,39,Cute but big,I love the idea but it is more of a over sweater than to wear by itself like model... too big/baggy,4,1,0,General,Tops,Fine gauge +1077,28,Liked but too big,"Really liked this dress, but it ran too big for me.",3,1,1,General,Dresses,Dresses +1147,37,Way too big/colors off,"Finally received this in the mail today and was very disappointed. i am swimming in the xs (5'4"", 110lbs). the colors are much more vibrant that shown in the pics - the green is a bright kelly green, the red is much more red than rust colored, etc. and it's a sweater coat! for the price i was expecting it to be lined and higher quality. i don't doubt that it will be warm, but can't justify the price. it's going back to the store.",2,0,6,General,Trend,Trend +1077,46,,"Dress is cute and comfortable to wear. i bought the black motif in regular size 0. it fits perfectly and falls just above my knees. i have washed it in the washing machine placed in a large zippered mesh bag and hung it to dry. as mentioned in previous reviews, with the exception of it being unlined, it's a wonderful dress and am so happy to have it.",4,1,5,General,Dresses,Dresses +875,58,,Beautiful lightweight cardigan. the sheerness is really pretty. ordered one for my sister too!,5,1,2,General Petite,Tops,Knits +1077,29,New favorite dress,"I love this dress. i am wearing it for thanksgiving! i bought the black because the red was sold out, but would definitely buy more colors. true to size. i'm 5'6"" 135 and bought the 6. only issue is i have to wear a slip underneath because it's not lined and a tiny bit low cut for me.",5,1,0,General,Dresses,Dresses +830,37,Wanted to love it,"Ordered online, and when it came i was very excited to open it - but the photo doesn't show how incredibly wide the cut is. it is also quite cropped and looked very awkward on me - 5'9, 130. the embroidery is lovely, but the style doesn't work. i had a small, but the area in the shoulders was cut very tight and it would not have worked well if i wanted to raise or lower my arms above shoulder height. might work better on someone with a more petite frame, but i do caution how ""voluminous"" the cut",2,0,3,General,Tops,Blouses +1031,45,,"Beautiful thick sturdy denim. probably the best denim i own in terms of the material. the cut can be awkward as it can be tight across the thighs and hips and kinda makes my butt flat. however i love the wash and quality of the material and at a sales price, totally worth it.",3,1,0,General,Bottoms,Jeans +1147,43,Not what i expected,"I am going to review this pretty much the way the person ahead of me reviewed it. first, the colors are way more vibrant in person than in the photo. there is even a lavender (which you can sort of see under the yellow stripe). it really makes it look different. second, it is monstrously huge. i am 5'3"", 110 pounds and i ordered the xs and it completely swallowed me up. because of the vibrancy of the colors, it didn't blend well with my fair complexion and also, it is like a heavy sweater, not a",4,1,3,General,Trend,Trend +1077,33,"Great style, but fabric could be better","I bought this dress in black with the polka dot pattern, and the style is adorable. i love the empire waist and the fit is very flattering. the v does come down a bit low, but a cami can be work underneath for more coverage. my main complaint is the fabric. it is very thin and wrinkles extremely easily. luckily the dark color hides this, but it's a bit disappointing how easily it wrinkles. + +great style with leggings or tights - really an all-season dress, though. ran very large for me - i purcha",4,1,1,General,Dresses,Dresses +869,41,Beautiful summer top!,"I'm glad that i went with the other reviewers and sized down on this one. i bought this in a medium (usually wear a 10/12) and it fit perfectly. the colors and pattern are beautiful and will definitely look great with dark jeans/pants/shorts. the lace detail is just gorgeous! the bottom flows more loosely, but just enough to cover any midsection flaws and pairs nicely with dark skinny jeans.",5,1,0,General Petite,Tops,Knits +869,63,Beautiful garment,"Well made garment. i love the colors, fabric and flounce at the bottom. the top is a little large on top with large armholes, but at least it will be cool on a hot summer day.",5,1,1,General Petite,Tops,Knits +433,47,Beautiful print,"I bought these shorts in my usual size small (4-6) 38"" around hips/butt. they are a little loose in the butt and hips but i like them that way, especially given the drapey fabric they're made out of. the print is gorgeous, especially at the waistband. you need a cropped top or you need to tuck in your shirt to show it off. the red is a true bright red but beautiful. the waistband has a functional drawstring. i suspect they will need careful washing and line drying. i would not put these in a dry",5,1,3,General,Bottoms,Shorts +1077,32,In love with this dress!,"I purchased this dress for my 31st birthday and i am so glad that i did! i saw it in my local retailer store and immediately had to try it on! it is very flattering because i am 5'0, usually a size 8 or 10 in dresses and it fit perfect! the material is light, definitely suggest delicate cycle and hang-drying, but it is nice because you can layer this dress with a vest or coat! highly recommend this dress!",5,1,1,General,Dresses,Dresses +895,33,"Easy, cute sweater","I just picked this up today in the store and i have to say i really love it! on the site i thought it was just ""meh"" but in person the space dye is interesting and the seam detail make the sweater better than i expected. it definitely runs large, i sized down to an xs (usually a s, size 4/6) and it's still slouchy and comfortable without looking sloppy, the dolman sleeve gives you plenty of room in the chest and the neck isn't at all tight. it's soft and just an overall cute sweater!",5,1,1,General,Tops,Fine gauge +869,34,Beautiful top,Flowing top that looks great with skinny slacks... makes a great and comfortable work outfit.,5,1,0,General Petite,Tops,Knits +1077,38,Great color and design!,This is a beautiful dress! i bought the red color in petite and love it. i know i will wear it a lot and the style is really easy to wear. i feel amazing in it even tho my post baby body isn't what it was.,4,1,2,General,Dresses,Dresses +869,38,Vanity sized,"Lovely top, well made and feels wonderful on. attention petites - i highly suggest you go for petite sizing because the standard xs is ginormous and looked nothing like it does on the model pictured.",5,1,3,General Petite,Tops,Knits +1077,26,"Comfortable, casual and classic","I am 5'9 135lbs, small chest and narrow shoulders. the 6 fits me perfectly. i love the fact that there is a hem, if i decide to let it down just a little. being over 60 and tall, it is so disappointing to find a dress you love but is just a little too short. the fabric is not too heavy for our moderate summers and i think i will wear this often.",4,1,1,General,Dresses,Dresses +1077,48,Not for the high waisted,"I was so sad not to love this dress. it is beautiful, but is so unflattering on. there is a lot of material under the arms and it gathers up due to the smocking. so, it just made me look incredibly frumpy. i don't really think a petite would have helped - the gathers just bunch a bit and so rather than hang, the dress sort of clumps. i am lean but broad shouldered and maybe that is the problem, but i was super disappointed. narrow shouldered people with long torsos could pull this off. it is a t",2,0,0,General,Dresses,Dresses +433,32,These will be my go to summer shorts!,"When i opened the package i knew i was in love. the colors are vibrant-true to the photo. the fabric is delicious, soft and silky, the perfect weight for a warm summer day. these can be dressed up or down. i am 5'9"" 140lbs. i bought the medium and they fit with plenty of room. + +i would highly reccomend these shorts-just gorgeous! come on summer!",5,1,2,General,Bottoms,Shorts +1147,24,Super cute!,"I love this coat! it does run a bit large. i am 5'2, 125 pounds and usually, wear a petite in most retailer clothes. i ordered a small, but wish that i would have ordered the xs. the length of the jacket is fine, but the arms are very long. i think that i might have the arm length hemmed, but it looks ok rolled up too.",5,1,1,General,Trend,Trend +813,28,Cute and comfy,Really love it - soft and nice quality - only complaint is the straps are too long for a normal sized torso. the front drapes below my breasts at the tightest /smallest setting.,4,1,0,Initmates,Intimate,Sleep +895,49,,This shirt is wonderful! i totally recommend it for everyone.,5,1,0,General,Tops,Fine gauge +1077,67,Runs big,"I liked this dress, but had some issues. i am 5' 3"" and a 34 d. with small shoulders. the dress was way too big in the shoulders in the 6 i usually wear, so just hung on me funny. otherwise i really liked it. if it weren't for the way it fit me on top (not an unusual problem if you are large busted but have small shoulders) meant i had to return it.",4,1,0,General,Dresses,Dresses +1077,23,Cute dress,For reference i am wearing a medium in the photos and my measurements are 38-30-40.,4,1,0,General,Dresses,Dresses +869,53,Lovely but large,"As other reviewers have noted, this is a pretty top. i really love the design. alas, however, it is too big for my frame. for reference i am barely 5'1"" and about 105 lbs. i ordered my usual xxsp and the fit is just not flattering on me. it is looser than on the model and the flounce does not hit me in the proper place. the top is also too wide so that it has these odd gaps near the armpits. i highly recommend this top unless you are an xxsp. i am going to have to part with it, sadly.",3,1,1,General Petite,Tops,Knits +1077,47,Love it but dry clean!,Love this dress! but don't wash it! it shrinks about 2 inches making it way too short for me! it should be dry clean only!,4,1,0,General,Dresses,Dresses +895,36,,"Grabbed this off the sales rack-not expecting much-but it is a great sweater! like other reviewers mentioned-roomy but still form fitting. i wear it to work with black pants and boots and it looks great. cozy, warm, very cute. i usually wear a small but got an xs in this. a much better sweater than how it appears in the online pics.",5,1,0,General,Tops,Fine gauge +1077,33,,"Beautiful dress. not lined, but the fabric is sturdy enough. i do prefer a slip under but that is my preference for most things. great for dressing up or down. so comfortable.",5,1,1,General,Dresses,Dresses +950,36,Swoon-worthy!,"Once this caught my eye, i couldn't let it go. i kept revisiting it...thinking it was too expensive, probably itchy, +too bulky, a problem if you wanted to eat something. +but the color looked yummy so i finally ordered it.... +and i'm so pleased i did! +the shape is actually easy to wear - it's not chopped. it drapes nicely over my hips and it isn't itchy. +i would not wash the dishes with this sweater on...but you could dress it up with velvet pants for a party or +more casually with jeans.",5,1,1,General,Tops,Sweaters +1077,40,,"Love, love, love this dress! i needed a fun but not over the top dress for family pictures and this was perfect. great pop of color and looked amazing with over the knee boots. i see myself wearing this thru the holidays and will likely throw on with a jean jacket. i found it true to size - my normal size 4 fits me well. buy this dress - you won't regret it!",5,1,1,General,Dresses,Dresses +1077,36,,This fits like a dream! the almost three quarter length sleeves are perfection. worth every penny!,5,1,3,General,Dresses,Dresses +652,47,Love 'em,"I actually like the fit - but i guess it depends on your overall body type. i too ordered a small and medium. i actually could fit the small, but preferred the room in the medium. the movement on these are spectacular and the material is light and cool.",5,1,1,Initmates,Intimate,Lounge +869,38,Failed to notice the peplum,I didn't look close enough when i ordered and failed to see that this was a peplum top. it did not do my post-pregnancy body any favors. but the collar area detail is quite nice and this would look great on the right body.,4,1,0,General Petite,Tops,Knits +903,50,Cute and simple,"Although seemingly simple, this hooded sweater top is actually versatile. wear with jeans or leggings, even a skirt. wear over a cami, tank or even sleeved top. i do like the delicate nature of this piece and it does appear to be made well enough to be durable. would recommend.",5,1,0,General,Tops,Fine gauge +1077,30,,Comfortable fabric and beautiful print! light enough for the summer but is also great for fall.,4,1,1,General,Dresses,Dresses +652,44,Terrible all around,"These pants looked worn, washed & old looking when i received them! the quality is super thin cotton as if it's been washed a million times & is about to fall apart! the workmanship is terrible. you can see loose stitching all over. the top portion is too tight & looks terrible stretched out. i liked absolutely nothing about this pants except the idea of them from the picture online...",2,0,1,Initmates,Intimate,Lounge +1077,33,,,5,1,0,General,Dresses,Dresses +1031,39,Unflattering,The wash on these jeans made my hips look twice as big. that in combination with the looser boyfriend cut was not flattering. quality was excellent. denim was thick with the right amount of stretch. unfortunately they had to go back.,2,0,0,General,Bottoms,Jeans +869,25,Pretty pattern,"This shirt fits well, is flattering, and has a really pretty pattern to it. the lace adds a romantic touch that sets it apart. it's also incredibly soft and comfortable.",4,1,0,General Petite,Tops,Knits +1147,49,Better than i expected!,"I read some of the other reviews and was surprised about comments that the color was off... i thought they were pretty dead on. i absolutely love this jacket, but do agree that it's more of a sweater-coat than a heavy coat you'd wear in the winter. but, i live in california, so this will be just perfect for our winter. i was afraid it might be too ""classic"" and uptight looking... but it's so fun! the bell sleeves add some extra flair. the overall coat has some stretch to it as well... making it",5,1,0,General,Trend,Trend +1077,49,Great fun and versatile dress,"I love this dress.i have it in black and am about to buy it in the blue..i'm usually a 4 but i bought a size 2. it is light and flattering with the gathering above the waist....does tend to crease a bit, but it's not too bad. love the way it can be dressed up or down (think boots or vans or sandles). i will dress it up to go out, but also throw it on to pick the kids up from school.",5,1,1,General,Dresses,Dresses +950,62,Wow!,I do not know where to begin....this sweater exceeds my expectation! i ordered this along with the mes demoiselles fringed sweater and i thought that was the game stopper....as beautiful as that one is...this one made my mouth fall open. it is unlike anything i have. it is an oversized substantial chic piece that is all over the runways. not to mention the color that i can not stop staring at and it will go with everything! order your regular size as it is suppose to be big!,5,1,0,General,Tops,Sweaters +1077,54,Almost perfect,"I love everything about this dress. cute, comfortable, easy to wear. it does wrinkle a little and it's not lined but otherwise, i love it.",5,1,0,General,Dresses,Dresses +869,37,Dream of a top,"Every once in a while, i randomly pick something from the sales floor that really knocks it out of the park. print is subtle and pretty, crochet neck really lightens up the look of a long top with a lot of coverage. it's cut perfectly--beautifully drapes without being so flowy it's mistaken for maternity. worth full price! word of warning, i saw one top on the rack with a small amount of crochet that was unraveling, so may need to check before buying. i'm usually a size 6-8, purchased size small",5,1,11,General Petite,Tops,Knits +1077,80,Cute & flattering!,"I bought this dress in the blue print and love it! the drape is lovely and its not too short. i feel like it can be dressed up or down. i plan to wear it to a wedding at the end of the month. for reference, my measurements are 36-27-38 (chest 36d and height 5'4) and i ordered the small. i'm usually a small-medium but went with a small based on other reviews. i have a short torso as well and i feel this dress fits perfectly, not too small or too large. as other reviewers stated, there is no linin",5,1,0,General,Dresses,Dresses +1077,35,,Very flattering to a woman's figure. can dress up or down.,4,1,2,General,Dresses,Dresses +869,44,My new favorite!,"I can't say enough about this top! absolutely adorable, the pics don't do it justice. it is made of a soft, medium weight jersey material. the lace makes the top more dressey and unique. the drop waiste elongatesy our torso and is loose pleated at the bottom for interest. i am 5'6'', 135 pounds, and long waisted. this fits me perfect (sz small.) the pleated bottom on me begins at low hips (below belly button) so it layes nice and is very flattering. no swing to the top,no bulky extra flare at al",5,1,3,General Petite,Tops,Knits +869,65,Meadow rue's designer should take a deep bow!,"This is a stunning, flattering, well-designed and sized, magnificent, and yet wearable, comfortable summer blouse! i am a busty, 34f, size 8, and this lovely piece makes me look amazing. i most highly recommend to any woman. the 100% cotton body has a very soft feeling and a little bit of ""give"". i experienced no pulling at the chest or back, which can happen for me. the bottom 2"" of the crochet v is backed by the body of the top, so you may not need a cami. the combination of leaf print/crochet",5,1,3,General Petite,Tops,Knits +1077,35,Great fit and quality,"Love this dress and have bought the style in three color/pattern variations. fits comfortably, looks polished yet effortless. appreciate that the sleeves come closer to the elbow, gives it a vintage vibe.",5,1,1,General,Dresses,Dresses +1077,37,Beautiful dress!,"This is a pretty, yet comfortable dress. perfect to wear to work or out to brunch with the girls.",4,1,0,General,Dresses,Dresses +1077,60,Holiday lifesaver,"This is a fun little dress, with a nice double seam bodice detail. i'm large busted and it's very flattering. also, in my size (12) the hem hit just at the top of the knee, which i prefer. great with tights and booties, or boots. cute with a sweater. all around very wearable and a nice holiday option.",4,1,2,General,Dresses,Dresses +1077,35,,"I love the simplicity of this. it's not fussy at all. i fell in love with the green color online. fortunately someone had returned a green to my closest store though it wasn't my size. the color is even better in person.i tried on the blue (also pretty) in a 8 and 10, as i'm all over the place in retailer sizing. i could've taken either but the 10 had too much material on top for me. i ordered the 8. i'm hoping it won't be too short for church.",5,1,0,General,Dresses,Dresses +1077,48,"So cute, but didn't work for me","I've never been so bummed a dress didn't work for me. this is so cute. i love that it's got a bit of a sleeve. it's one of those easy, pop-it-on-and-go pieces i'd love to have in my closet. i'm 5'2"" and i tried on a 6p in the store and it was prefect except for the bust. the elastic peaked in the front and i can't imaging this dress working on anyone with more than a b cup. (i'm a d and it looked ridiculous in the bodice). i tried on a 6, and the proportions were all off. if the elastic went str",4,1,0,General,Dresses,Dresses +1147,54,Nice coat but....,I liked this coat but my family said it looked too much like something hilary clinton would wear. i am 54 and i think it made me look a bit dowdy since it runs a bit big.,4,1,2,General,Trend,Trend +942,36,Girl scout smock,"I liked the concept of this vest, but when i tried it on, i felt like i was 9 years old again and wearing my brownies girl scout uniform. it was also very boxy and wide. it seemed to be well-made, though, and maybe would have worked if it were a different color.",3,0,1,General,Tops,Sweaters +881,47,,"This ia a great casual top...the design flaws mentioned in previous reviews are what gives it a trendier look...the length is perfect but i needed to size down from a large to medium because the fit was a bit loose on the body and arm...would like to add that while it is good quality it's still somewhat overpriced for a t -shirt material top, lace accent..",5,1,0,General,Tops,Knits +903,59,A unique design,"I was worried about ordering this top after the first review, but i was very pleasantly surprised. the sweater is a nice weight on the front panel, and a lighter weight knit on the back panel, which gives it a ""flowy"" quality. it looks slender and trim in front, with the unexpected surprise in back. the transition between the front and back panels is well done, which doesn't really show in the photos. i purchased the yellow sweater and had many compliments on it's uniqueness the first time i wor",5,1,14,General,Tops,Fine gauge +1008,66,Uniquely retailer!,"I love this skirt! it is unique and flattering clothes like this skirt, that brought me to retailer in the first place. as the first reviewer said, this is a well-made striking skirt. it is tts (i usually wear a size 2 - and the size 2 fit perfectly; i am 36-17-36, and 122 lbs, 5'4"".) the skirt is lined and is very comfortable to wear.",5,1,2,General Petite,Bottoms,Skirts +942,53,Great style!,I like this sweater vest - really nice quality. looks great with ankle lenght jeaens and booties or a shorter skirt as shown on the model. quality is really nice - it's fairly heavy. i love the slits on the slide. i do find it runs a big large.,4,1,0,General,Tops,Sweaters +1094,44,Great fit - perfect summer dress,Tried this after missing out on the very similar terra max dress where petite sizes sold out. the medium is perfect and the style can be dressed up. wore it on a day out and two strangers complimented me on the 'great dress'!,5,1,0,General,Dresses,Dresses +1094,25,"Nice, but not for me.","After eyeing this product online for awhile, i was able to try it on in store. i'm so glad i did, because while this dress is lovely, it is clearly not designed for my body type. i have a small rib cage and a large bust (32h,) which is i think what caused the keyhole to be so gaping on me. additionally, the straps of the dress were up by my neckline instead of lying properly on my shoulders, which was unflattering and left my bra straps clearly visible. the fabric was gorgeous and soft, and the",3,0,2,General,Dresses,Dresses +854,41,Great find,Was pleasantly surprised at house nice this too was! the colors are beautiful. the top is flowy and drapes nicely. true to size. i'm a 4/6 and ordered a small.,5,1,1,General,Tops,Knits +881,29,Lovely shirt,"I love this shirt. it is very soft and the lace on the sleeves adds an extra element. i liked this shirt so much, that i ordered a second one.",5,1,1,General,Tops,Knits +854,38,Adorable but big,The design of this top and colors are amazing! the only complaint i have is that it is quite large. i should have sized down. needless to say i kept it as a summer to fall transition piece!,4,1,0,General,Tops,Knits +1094,38,Looks better on,"This dress looked ok in the hanger, but oh my on was so much better. quality is great, i love the fabric and that it has pockets. +i'm 5'8 and normally a ddd usually a large too...so i worried about the size - the medium fits great everywhere",5,1,4,General,Dresses,Dresses +854,46,Easy and breezy,"This tank is very loose fitting, which i can understand would make some think it runs large. taking into account the fabric and the twisted straps, i personally think it would look ridiculous if it was more fitted. i love the draped styling, which i also think makes sense with the pattern. it's an easy top too...just throw on and go. and the loose fit is perfect for the disgustingly hot and humid summer months here in the midwest.",5,1,6,General,Tops,Knits +854,35,Fun casual summer top,"Love the floral pattern. top is loose and flowy, as expected. i like to tick it into my jeans or shorts, so it doesn't look quite so shapeless on me.",4,1,0,General,Tops,Knits +1094,36,Fabulous dress,"I ordered this dress in both a petite xs and regular xs and the petite fit the best. for the first time in my life i did not have to shorten a maxi dress and i am 4ft 10""! +the color is a beautiful dark blue( not sure why the color online says charcoal) and the opening at the chest area is a little low, but nothing that double sided tape can not fix. another bonus, as other reviewers have stated, is that you can wear a regular bra. lastly it does not wrinkle, so you can bring this on vacation",5,1,1,General,Dresses,Dresses +854,41,Fit,"I loved the design and light weight quality. reference i'm 5'4, 125..i ordered a small, it's a tad big but i can handle it. because of the neck line, you must wear a strapless bra.",5,1,0,General,Tops,Knits +854,35,"Great, casual tank","This top does run quite large. i am normally an xs or s in tops (i'm 5'7"", 130lbs, 34a), and i was debating between the xs and xsp. the xxs was out of stock, so i wasn't able to try it on for size. the xs is noticeably longer and fits more like it does on the model, but it was also a little too low cut for me on top. the straps are twisted and not adjustable, so i went with the xsp, which is what i'm wearing in the photo. it does come up a little shorter, but it fits me better in the bust. the f",5,1,4,General,Tops,Knits +854,60,,Very nice and the sleeve have a great design and the length is finally long enough,5,1,0,General,Tops,Knits +1094,46,Great fit,"This dress fits so well, it is extremely well cut and flattering. the length is perfect (i am 5'5). i passed on it though, because i didn't love the color. almost like a navy blue that has been washed one too many times. if this dress had more color options or made in a cute print i would not hesitate to buy it. if blue is your color go for it.",4,1,2,General,Dresses,Dresses +942,54,Endless possibilities,"My imagination went wilt with all of the possible combinations for this vest. dressy and casual...with jeans or slacks; long or short pencil; leather too! +best gift to date.",5,1,0,General,Tops,Sweaters +835,64,,"This just arrived and it looks exactly like the photo. very well made, crisp and lovely. not see thru at all which is a plus. a bit overpriced but going to keep it.",4,1,11,General,Tops,Blouses +942,56,Love it!,"This is a great sweater. great color and style. i love that it's a little retro. can be worn with jeans and tights. highly recommend. it does run a little big, but not by a lot.",5,1,0,General,Tops,Sweaters +903,49,"Fun style, but didn't quite work for me","I tried on the white top at the store. the quality was very good and i loved the overall concept of the design. the dark stripes on the back are slightly raised, giving it a nice texture. the fabric was soft and comfortable. however, the shape just didn't drape as well on me as i had hoped, so ultimately i didn't buy it. perhaps a petite length would have fit me better.",4,1,13,General,Tops,Fine gauge +838,46,Wanted to love...,"I have been looking for a nice, white tunic and i should have known when i saw this was one size fits all. maybe because i am petite (5'2"") but there was so much material hanging everywhere that it made me look even shorter and fat. who wants that? so sending it back.",1,0,1,General,Tops,Blouses +854,48,Love it!,"Love everything about this top! comfortable yet classy, dress it up or down depending on occasion. beautiful design.",5,1,0,General,Tops,Knits +903,55,Beautiful detailing on back!,This blouse is very unique due to the pretty piped design on the back. looks great with jeans. the front is shorter and more tailored than the back. i love this blouse!,5,1,7,General,Tops,Fine gauge +854,37,Pretty shirt,"This tank is pretty. it looks nice and is not cut too low. the bottom is ""flowy"" and not extremely fitted. i always get a lot of compliments when i wear it.",4,1,0,General,Tops,Knits +1094,30,Sexy comfort!,"I just had to try it on because it was so soft! and i have never felt so comfortable and so sexy at the same time in a dress! i am 5'4 170lbs and 36ddd and the large fit well. i only with the slit came up higher. that might be an issue just because of my height though. loved it, waiting for a good sale!!",4,1,1,General,Dresses,Dresses +1094,30,The dress fits nicely,"This dress is so soft! the dress hangs really well across the front and hides your stomach area a bit. you can wear a regular bra with this dress as well. +the downside to this dress is that is shows the slightest liquid and stains very easily. wore this on a hot day and the slightest sweat showed. in addition, the front drape across the chest can gape open and show your bra. +overall, i really love the fit of this dress.",4,1,3,General,Dresses,Dresses +1033,69,Great jean - just runs big and stretches out,"The fit on this jean is amazing, they just run large, and then they also stretch quite a bit after 1-2 wears. i am usually a solid size 30 (and have other pairs of dl1961s) but i am buying in a 28 - so i would say one or two sizes down from your usual size.",4,1,0,General Petite,Bottoms,Jeans +835,64,Beautiful fabric but unflattering fit,"Fell in love with the look of this top in the store but they didn't have it in my size (0) -- thought i'd try the 2 as the 0 was sold out online as well. alas, the fit is rather tentlike -- it did not drape as i had hoped. a beautiful and unique pattern on the right body, but on my slight frame it was not flattering. it's going back to retailer.",3,0,0,General,Tops,Blouses +854,35,A unique tank,"The flower print really caught my eye. i like the unique twisted neckline. there is a lot of material here, but it hangs nicely without billowing out like some other unfortunate tops.",5,1,0,General,Tops,Knits +1094,38,Gorgeous,"This dress is amazing. based upon its rack appearance i never would have tried this dress on but the fabric was irresistibly soft so i gave it a try. i was amazed to see it fit so well. i'm very curvy (125lbs, 5'4"", 32dd ) so normally a dress without structure doesn't work on me but this one somehow does. the elastic waist hits right at the smallest part of my waist (i'm very short waisted if that helps) and flows from there beautifully. i think the v-cut at the chest area help reduce the appear",5,1,8,General,Dresses,Dresses +1094,34,Not good,I'm not sure why this dress is getting great reviews. the plunging neckline is ridiculous and ran down to the underwire of my bra and the slit up the side came up to the upper part of my thigh. it was one of the worst fitting/cut dresses i've every tried on at retailer. i'm 5'4 125. maybe you have to be 6 feet tall and 90 pounds for this dress to not look like a bad renaissance faire costume.,1,0,0,General,Dresses,Dresses +854,27,,,4,1,0,General,Tops,Knits +881,31,Chic top,"This shirt is so cute. it's so soft, love the lace element on the arm. definitely thinking of ordering the white. the back for me is a lot longer then the pic shows but i think it looks good.",5,1,0,General,Tops,Knits +1094,29,Beautiful. dress up and dress down,I have worn this dress twice and it is amazing. the material feels heavy and drapey but i still feel nice and cool in it. i always have several people asking me where i bought it when i wear it. i am 5'1 130 lbs and 34 d. i bought a small petite and it fit perfectly. i love this dress and would highly recommend it to anyone. definitely one of the best things i've ever bought from retailer.,5,1,0,General,Dresses,Dresses +854,36,Will shrink significantly when washed!,"This top is very pretty, but it doesn't make up for the problems with it. retailer seems to be suffering from quality issues as of late. the sizes are all over the place and items i have purchased don't seem to hold up to normal use and washing. i normally wear a medium in tops. the medium in this top was huge. i needed an extra small, which means a lot of people are sized out of this top. i hand washed this top in cold water as the tag indicated and it shrunk! it shrunk so much that i can",3,0,0,General,Tops,Knits +1125,48,"Really nice, but a few improvements needed!","I saw this jacket on the sale rack at my local store but the size was extra small, and needed a medium. the store was able to order since it showed back order . i do miss the charge send option, but still love retailer! normally i wear a medium in this brand. i received my order today and it's a beautiful jacket however there's a few things that could have been done in the manufacture that would've improved it. one, the jacket is not lined and it would be beneficial if the jacket was lined or even",4,1,4,General,Jackets,Outerwear +903,55,Very stylish,I wasn't sure about this top when i saw it on line but it is actually nicer than the picture. it is very flattering and the color is perfect for the summer!,5,1,3,General,Tops,Fine gauge +1094,31,Best dress ever,"I got this dress in pxxs in the gray color, i am 5'4"", 100lbs, petite frame, and it fits like a dream. true to size. the fabric is super soft and thick, drapes well, not too tight, and u can wear a regular bra!!!. length is also perfect, no shortening required (which is rare for me - this could be an issue for tall girls but i wouldnt know about that). it looks great with dressy flip flops for any summer occasion, can be casual or dressy depending on accessories. great purchase, 100% recommend.",5,1,0,General,Dresses,Dresses +942,51,Exactly what i was looking for,I was looking for long vest to go with skinny jeans. this is exactly what i was looking for. the color is better than the pic to me. the style is flattering.. the size is just right. can't wait to wear it. i strongly recommend it.,5,1,0,General,Tops,Sweaters +942,49,Versatile piece,I purchased this in gray and it is proving to be quite versatile. it is softer than i expected and not heavy or bulky. i also like that the side slits are a bit higher than i expected. i have paired it with knit pants and with a maxi dress. i think it will work pretty much any time i need an extra layer.,4,1,1,General,Tops,Sweaters +1094,39,Just agreeing,"Just agreeing with all the good reviews. love the color, feel, fit and versatility. you can look sexy or modest depending on your underpinnings and accessories. drapes over and disguises my figure flaws. this is a three season dress for me and i look forward to having this in my rotation in the years to come. i bought regular hem instead of petite.",5,1,0,General,Dresses,Dresses +854,44,Runs huge!,"I bought the tiny brand ""cassia"" tank last week in a small, and it fits beautifully. i ordered this ""sorcha"" tank in a small as well and it is huge! i am very sad about the huge size difference. look closely at the photos... the fabric twists as it goes over the shoulders to the back....it is quite bulky. hard to tell if that would minimize in a smaller size. my store doesn't carry this item so i can't easily try another.",3,0,4,General,Tops,Knits +1094,37,Not a true medium but lovely!,"My husband bought it for me and i was a bit skeptical at first. tried it on and absolutely loved it. besides the really soft fabric, it has pockets which makes it even more comfortable for me! i'm 5'8"", 123lbs. and flat chested. he got me a medium, which fits a bit tight, but my husband likes it so it's a keeper!",5,1,1,General,Dresses,Dresses +965,36,Great everyday jacket,I bought this recently and it is already a go-to piece in my wardrobe. i love it to dress things up for work. it is extremely comfortable and easy to wear.,5,1,0,General,Jackets,Jackets +1008,49,Beautiful!!,I'm not one for writing reviews but i thought i would for this absolutely beautiful skirt. i saw it in-store before it became available on-line and knew i had to have it. i don't like exposed zippers but in this case the gold zipper is a nice detail on the skirt. i'm curvy with a very small waist so the fit was fine. i would definitely recommend this product!,5,1,1,General Petite,Bottoms,Skirts +872,47,Great product!,This is the best ever t-shirt i've ever worn. feels so soft! looks gorgeous! very comfortable and yet has that bit of sparkle that makes it perfect for a special evening with friends etc! just love the fit- it makes me look slimmer:),5,1,3,General,Tops,Knits +1030,48,,"Great length if over 5'5"". ran at least 1-2 sizes smaller. great wash",4,1,0,General,Bottoms,Jeans +912,28,Comfortable but boxy shape,"I was pleased with the fabric and lace, and the arms fit me nicely. the only problem was that the bottom of the sweater was very boxy and not flattering. i am having the sides taken in to fix.",4,1,0,General Petite,Tops,Fine gauge +912,67,Not to fancy,"I was happy to receive this sweater in no time at all. when i opened the package it seemed too thin, however, after trying it on, it's the perfect fit and style. can be worn with jeans or skirts and even dress slacks. great buy.",4,1,0,General Petite,Tops,Fine gauge +965,51,"Strange fit, but fun jacket","I really like the look of the jacket and that it is stretching. sizing a bit odd. the xs is pretty snug in the arms, body is fitted. but the small seems 2 sizes larger. the body is very baggy. i kept the xs, but can't wear sleeves underneath!",4,1,1,General,Jackets,Jackets +872,42,Stylish & unique long sleeve t,I was surprised i was the 1st to review this t- i got it on black friday & loved the fit and look immediately! i wear w skinny jeans and boots but also converse or ... many options and a good price!,5,1,29,General Petite,Tops,Knits +1049,20,Flattering and versatile,"I purchased this early in summer and have worn it a lot. you can dress it up or down, and since it's comfortable you will want to wear it a lot. i can wear it for everything from walking the dog to going out to dinner.. i bought 2 jumpsuits this summer and this is by far my favorite. the fit is flattering, fitted but not tight and the self-tie belt gives your waist definition so the overall look is hourglass. i am tall and i normally take an xs or s. i went with the s to ensure that it was long",5,1,0,General,Bottoms,Pants +1030,67,Yikes these run small!,"I'm normally a size 25p. i bought these in a 26 because i wanted a more relaxed fit. i could barely pull them up over my calves. i could get them on and button them, but i felt like a sausage stuffed into a straw. size up 2 sizes at least!",2,0,6,General,Bottoms,Jeans +872,39,Cute,"This little number is really cute, i got it on sale, after i looked at it, went home, slept and decided i had to go ack for it:-0 +i will wear it with trouser jeans and a blazer for work, or jsut jeans and boots for casual wear.",5,1,1,General Petite,Tops,Knits +872,20,Casual,Such an amazing shirt to dress down for a long day at school,5,1,0,General Petite,Tops,Knits +1025,38,I wish they came in more colors,"I'm 5'10"" and have athletic legs. these jeans are so comfy, long enough, and look good on the booty. the photo is deceiving as they are much longer. i wish they carried more colors. it's hard to find a jean i really like and i really like these.",5,1,0,General,Bottoms,Jeans +872,66,Nice tee,Love the tee but it is very thin. best for layering,4,1,0,General Petite,Tops,Knits +872,33,Easy everyday wear,This shirt fits great. normally wear an xs or a small and a small fits in this. comfortable and cute on. i wish i had ordered the other color as well.,4,1,0,General Petite,Tops,Knits +936,47,Gigantic and heavy!,"I purchased this sweater in my usual xs, but found the silhouette to be way more tent-like than pictured on the model. the knit is pretty stiff, too, so the sweater didn't lay flat but hung on me in kind of a triangle shape. also, the sweater knit was heavier than i expected from the picture and seemed to be more of a fall weight piece. i am fairly small, but lately i'm finding that retailer pieces are huge in an xs and i have to size down to xxs. i know i'm not that tiny ... maybe this wou",2,0,2,General Petite,Tops,Sweaters +1008,29,Perfect party skirt,"This skirt is absolutely beautiful and in my opinion, totally worth the price. it's very, very well made and fits perfectly. i usually wear a size 4 but with skirts that are supposed to sit right at my waist, i size down to 2 so they fit properly. i did that with this one and i have to wiggle a bit to get it past my hips but once on it fits like a glove. i'm 5'11"" and the skirt comes to mid-calf on me which is exactly what i was looking for. love love love this skirt, i totally recommend it.",5,1,0,General Petite,Bottoms,Skirts +1111,36,Timeless elegance!,"The first reviewer was right about this dress--checked her review before buying it. it's a beautiful creation and perfectly designed, and it's also slimming. i was worried that the fit might be too tight in the skirt, but it is fine. highly recommended.",5,1,0,General,Dresses,Dresses +965,46,Fun blazer,"I bought the blazer in the grey motif color. it is definitely a taupe color versus grey but it does look as pictured.i bought a small after trying it on in store. i think it runs a bit small as i mostly wear xs at retailer. the arms are very fitted in my opinion, so if you have bigger arms, it might feel too snug. you don't really see this detail in the picture but the lapel folds differently on each side, meaning one folds back higher than the other, so it isn't a symmetrical look. i actually lik",5,1,1,General,Jackets,Jackets +872,64,This top is versatile.,"It's really a casual tee, but with the cute pattern that gives a pop of color, it can have a little more dressed to go out look. i thought it might be a bit wide by the picture, but has a nice flattering flow. a bit expensive at full price but an amazing score on sale.",5,1,1,General,Tops,Knits +872,36,Style and fit win!,"Fits great, not too tight/baggy. pattern on shirt is pretty and should work for layering or wearing on its own.",5,1,1,General,Tops,Knits +872,48,"Cute, but says hand wash on mine","I thought i'd add a review because a lot of this landscape-print tee was still available at my local durham, nc store (the week after xmas anyway). it's a little different in person than how it appeared online (when it was still available). the white cotton is definitely a cream or off-white. and the silkscreen is darker colors and much more metallic than shown. the metallic is a subtle gold. it's definitely 3/4 sleeves, which i like and it has a curved bottom hem. the surprise to me was that it",4,1,7,General,Tops,Knits +1049,40,Perfect jumpsuit!,"This jumpsuit is so pretty and fits perfectly. i am 5'2"", 102 lbs. and 32c and got the xsp and the proportions are perfect. i wondered if the pattern would be too overwhelming or busy on a petite frame but it's not at all and fits like a glove. i removed the little loops that hold the belt because they stuck out too far. easy to throw on when i'm out and about with my kids or dress it up with heels or a wedge for night! love!",5,1,3,General,Bottoms,Pants +936,34,Chic sweater,I wish we had cooler weather in california so i could wear this more often. i bought this sweater/coat on sale plus an extra 20% off so i got a great deal on it. i love this sweater! it looks matronly in the picture but it looks very chic and sophisticated in person. the sleeves hit above the wrist as shown on the model. it does have pockets. it's the right weight for chilly weather.,5,1,11,General Petite,Tops,Sweaters +547,38,Love this top!,"This top is beautiful! it drapes just like the picture with gorgeous details in the back. this is what i expect from retailer! i am 5'4"", 120# and 34b and took my size small so i would say tts. i tried it on with a strapless nude colored bra and it was not visible. give it a try you won't regret it!",5,1,13,Initmates,Intimate,Layering +547,42,Great staple!,"I always go w/ black, but deviated this time & so glad i did! quality fabric, not sheer at all. a great layering piece and new staple for the wardrobe. fits tts, sm (i'm 5'2"", 109lbs)",5,1,1,Initmates,Intimate,Layering +872,58,Really nice tee,I got this tee for a great price online and i did like it a lot. i got it in medium and i might have liked it better if it was just a bit bigger or if the material wasn't quite so clingy. i decided it had to go back.,4,1,2,General,Tops,Knits +1025,39,,"A great skinny jean, these grey beauties are flattering and light weight. they fit true to size, but seems a bit on the long side, bunching oddly at the ankle when wearing them with booties. hopefully they hold up to some heavy wear.",4,1,0,General,Bottoms,Jeans +547,41,,,5,1,0,Initmates,Intimate,Layering +872,31,Cute and casual postcard tee,Great fit and very cute design. goes great with jeans.,5,1,0,General,Tops,Knits +872,37,Adorbs,"I didn't even notice this tee online, but in person in the store, i instantly loved it. then trying it on, loved it even more. it is flattering without being too tight. i got an xs, which is my usual size. i'm not a huge fan of the 3/4 sleeve length in winter, so i almost wish it had been either long or short sleeve, but no biggie, i still love!",5,1,3,General,Tops,Knits +965,63,Classic comfort,"Love this dark gray heathered blazer ( no stripes, contrary to its name)! very easy to wear with the bit of spandex, and not hot or heavy like my tailored wool blazers. i am usually a petite medium but decided to order petite large to better accomodate layers or sweaters, sleeve length perfect even with sweater on. will get lots of wear with this dress-up or dress-down piece!",5,1,1,General,Jackets,Jackets +872,31,A nice surprise,"I don't normally spend so much on t shirts but this one is worth it. really well made and quite unique. i reckon i'll get a lot of use out of it,",5,1,3,General,Tops,Knits +872,58,Really like!,"I probably wouldn't have even tried this on in the store, but i took a chance when it was on sale. i put it on and it was immediate love. the fit is perfect. i am between a medium and a large and got it in a large. it is not boxy, but not too tight either. it feels well made.",5,1,1,General,Tops,Knits +936,39,Love!!,"So glad i bought this!! its beautiful and being on sale made it even better. good quality and versatile, highly recommend.",5,1,2,General Petite,Tops,Sweaters +872,48,Very impressed,"Love this top. purchased in a size medium, my typical retailer size and is very comfortable and lovely. wearing it under the pink peplum cardigan it was shown together with as well as wear it with jeans and other pants. i wish it came in different colors and other images as this a very well made top. purchased during the after christmas tag sale and love it even more. will be great in spring and summer, cooler days in summer.",5,1,1,General,Tops,Knits +965,36,Dressy casual,"I tried on the grey motif yesterday, and it was the one thing i tried on that i loved, and the only thing i bought. i'm 5'4 34 dd 125 lbs, and the xs was a perfect fit for me. i sometimes find that retailer stuff is tight in the arms, so i generally wear a small, but i tried on the small, and the arms were a bit baggy. i plan on wearing tanks underneath, so the xs was the right call. if you want to wear something thicker & long sleeved underneath, go with your usual size.",5,1,2,General,Jackets,Jackets +1049,33,"Big booty, big thigh girls need not apply","Ok, if i had a different body, this would be awesome but i have a big butt and meaty thighs so just did not flatter me. although my husband couldn't tell that the pants were tugging on me (thanks to the pattern it does camouflage), it was uncomfortable. so if you are built like me, this isn't the jumpsuit for you. + +this is a well made garment but there is no give in the butt and thigh area (hence would not recommend for my thick thighed sisters). + +for reference, i am 5'3 and 150 pounds. th",3,0,1,General,Bottoms,Pants +965,45,Looks great...feels like a sweatshirt!,This is the perfect throw on little blazer-like jacket that feels like a sweatshirt! i loved it so much (on sale) that i bought another one in a different color. i am 5'0'' and 115lbs and the xs fits like a glove. it is so great. well made. so comfortable. versatile. dress it up for work or down with a pair of jeans.,5,1,1,General,Jackets,Jackets +872,56,Cute shirt,"I bought the grey t with the design around the yoke. it's cute, but the fabric is a little on the thin side. kind of cheap. i'm glad i didn't pay full price for it. runs true to size.",3,1,0,General,Tops,Knits +1049,58,The jumpsuit to end all jumpsuits,"This. jumpsuit. is. amazing. + +i ordered the small, and it fits perfectly - loose and flowy, with room for boobs (i'm a 32d) and hips. perfect for humid summers when you'd rather your clothing hang a bit away from your body. the fabric is deceptively light for how it hangs (in a very flattering way) when i have it on. + +i would say that if you're shorter than 5'4"", the petite is the way to go. however, i am 5'4"" and the length hit me almost exactly where it is on the model. i lifted the leg a",5,1,10,General,Bottoms,Pants +965,38,Perfect blazer,"Nicely structured, yet soft blazer. wardrobe staple. runs true to size. i would buy all colors, but restrained myself to the black/green.",4,1,1,General,Jackets,Jackets +1025,48,"So cute, so comfortable","I'm 5'8"" about 134, somewhat of a pear, and these jeans in size 28 fit like they were made for me. plus, the fabric is really soft and comfortable and i love the color. ankle opening is more straight than skinny, which is a change from my usual skinny jeans, but i like it.",5,1,0,General Petite,Bottoms,Jeans +936,34,An elegant design but...,"I agree with the other reviewer, this is a nice piece. i felt so-so about it when i tried it on though. see below. + +___________ +pros: +- not too heavy or warm due to being part linen/cotton blend, making it breathable and great for more milder temperatures. +- soft floral arrangements with lovely pattern throughout the sweater. +- lovely collar giving it a sophisticated feel. +- ran tts. i'm 5'9, hourglass with some meat on my bones and found the medium to be an ideal fit. +___________ +cons:",3,1,14,General Petite,Tops,Sweaters +899,53,Too boxy,"Unfortunately this piece has a very boxy cut and the white layer is stiff and billows out - i am tall and thin but this made me look pregnant - very unflattering. i considered trying a smaller size, but i did not like the material too much either so i just returned it.",3,0,2,General,Tops,Fine gauge +1008,31,Beautiful!,"This skirt is so beautiful!! it's a bit small, but only a tad. i can still wear it, and it encourages me to lose 5lbs haha! i get compliments everywhere i go.",5,1,3,General Petite,Bottoms,Skirts +1025,50,Great jeans - lovely color,"Great jeans in a lovely shade of grey. they are longer than shown in the picture, however, which i love. i haven't worn mine yet, and i wonder how stretched out they'll get, but overall the fit is quite flattering.",5,1,1,General Petite,Bottoms,Jeans +965,33,Great comfy work blazer!,"I purchased this blazer in both striped versions for work. it's basically a blazer/sweatshirt hybrid! + +while it does run true to size, i can wear a small or medium in retailer; i purchased medium in this. don't size down if your size is ambiguous!",5,1,1,General,Jackets,Jackets +1030,41,Run really small,Love the wear of these jeans but they run small! designed holes have grown much larger-i don't dryer dry them.,3,1,1,General,Bottoms,Jeans +936,55,Gorgeous,"I purchased this on a whim and i'm so glad i did. this is a gorgeous piece. fabric is soft very feminine and stylish. quality is outstanding. it can be worn with a dress or jeans. lovely shades of pink and soft gray. i live in florida, so it's a bit heavy for hotter weather, but will be great on a cool spring day. love it!",5,1,13,General Petite,Tops,Sweaters +965,29,Great for business casual,I love this blazer because it feels like a sweater but has the formal structure of a blazer. great for fall!,4,1,2,General,Jackets,Jackets +1081,45,Not if you have bigger breasts,"I bought the blue dress, though the ""blue"" dress was a little more like grey according to my husband and i. the quality of the fabric was quite nice. + +i have to return the dress because it does not fit me around the bust. i consider myself to have a good size bust (not huge), but the dress seems to expect quite a bit smaller. + +i was initially attracted to the dress because it looked a little more casual, which is what i wanted, but i guess i just wouldn't call it at all pretty.",3,1,1,General,Dresses,Dresses +308,35,"Great fit, comfortable, flashy","I love this top soooooo much! i love straps and i love tops that will show some of my sports bra in the back, since i tend to buy some that have some strappiness. i love that this top has it all-it is lightweight, and it has some character so it is more attractive than an everyday kind of workout top. it is comfortable, even for classes like body pump where you are constantly moving your arms. i love that the colors are not bold, i am sick of neon!!!!",5,1,3,Initmates,Intimate,Lounge +1080,38,"Beautiful dress, poor zipper choice","This is a beautiful dress. the lace top is stunning! the fit is true to size, and there's no stretch. i had the same problem as other reviewers... that darn zipper. it's so small and gets hung up easily. i could see it eventually failing in the future.",3,1,1,General Petite,Dresses,Dresses +1078,29,Too much fabric,"This is definitely a personal preference review. i loved this dress when i tried it on. it's really beautiful. however, there was just way too much fabric on the sleeves for me. i know it's the style and i have similar style dresses, but i felt really large in this dress and it all came down to the sleeves for me.",3,0,1,General,Dresses,Dresses +936,62,Disappointed,"In the photo, this sweater is very appealing but in person very disappointing. i am 5'7, always take a size medium but on me, the sleeves were far too long and the sweater just didn't fit properly. the collar doesn't fold right in the front and it hangs awkwardly. if you try to use the button, it stretches and looks terrible. in the back, it falls short. it's going back.",3,0,0,General Petite,Tops,Sweaters +1078,56,Gorgeous fabric,"This is an absolutely gorgeous dress. i have the arcata patchwork dress which fits beautifully without looking too full, but this one is just too voluminous. also, the bottom of the front yoke hits at a weird spot on my bust. this would be a great maternity dress or it would be perfect for a thin woman who can carry off the large amount of fabric. so disappointed, the fabric is beautiful and the colors are too. this can be worn year round, with sandals or boots.",5,1,16,General,Dresses,Dresses +1078,54,Fell in love instantly,"As soon as i opened the package, i knew that this is going to be my all time retailer favorite. many reviewers mentioned how puffy the sleeves are but i see it as quite proportioned with the rest of the dress. tts i am 5'5"" and 128lb, ps fits perfect. i am an addict of retailer dress <3",5,1,0,General,Dresses,Dresses +1078,39,Beautiful impulse buy,"I popped into retailer the other day just to look around, and saw this dress - the fabric stood out first, then i saw the cut and style, and fell in love! they only had xs and s, and i'm usually a m because of my chest (34d) but it looked so voluminous, i thought i'd try it on. the s fit perfectly! the bodice fit a bit more closely, and the rest of the dress flowed beautifully beneath it. the sleeves are quite large, but it's kind of a fun look and feel. it's got a very ""peasant princess"" feel to",5,1,0,General,Dresses,Dresses +1030,56,Too small,"I have never bought the mother brand before, but at close to 200$ i was expecting something fabulous. at size 29 (my usual) i couldn't even get them on my leg. i can't imagine how many sizes i'd need to go up to even get them to fit!",4,1,5,General,Bottoms,Jeans +878,22,Sweetest sweatshirt,"It's the perfect sweatshirt! super comfortable, but also cute! i am 5'4'' and 125 pounds, and the size 0 fits perfectly.",5,1,1,General,Tops,Knits +1080,45,,"A beautiful, comfortable dress with it's own unique style. a must to add to your wardrobe",5,1,1,General Petite,Dresses,Dresses +835,33,"Great top, but not for a large bust","So many things to love about this top. if you're a fan of peplum tops - which i most definitely am - this is a great one. slightly shorter in front than in back. nice flare, but doesn't stick out too far. and overall, i thought it was well-made. i tried on the red in stores, and it looks a lot like the color in the photo. however, i'm a 36dd, and unfortunately, the top was just not large enough. totally squashed the girls, and there's basically no give in the fabric. i'm normally a 10/12, and ot",4,1,14,General,Tops,Blouses +1080,39,Zipper broke when tried on but,"This dress looked very flattering on me, i say true to size to slightly small. as mentioned in title, the zipper ended up opening in the middle near where the waist is. the lace is soft and fits comfortably, the waist band is the tighter fit. the skirt is less see-through in the store anyway. darker red in person (overall). hoping the one i tired on was a fluke. the skirt has a bit of pleating to it, or atl east it looks like it... + +regular size hit me below the knee, almost mid-shin, wasn't t",4,1,9,General Petite,Dresses,Dresses +1059,39,Nice and soft,"Kind of silky, but to a point where they almost look like pj pants. i am not sure if i will keep, but overall nice feel. i tried on a xxs p as it was a return, xs sold out, so went with it, stretchy enough to fit me... (115 lbs)",5,1,2,General,Bottoms,Pants +1059,34,,,4,1,0,General,Bottoms,Pants +878,48,Love this sweatshirt,"This is a great staple for laid back weekend wardrobe. the inside of the pullover is soft, like sweatshirt material, and its comfortable enough to sleep in. also cute enough to wear out with jeans. i would definitely recommend this sweatshirt. i'm typically a size 0 in retailer - i ordered this shirt in a size 1 and i love the fit.",5,1,1,General,Tops,Knits +835,35,"Very nice, but not for me","I did like this top, but it was a little big- i bought a size 4 and i have a size 32 chest. the color is great, the fabric is amazing, but it just didn't fit me perfectly. i thought about trying a smaller size, but i just wasn't sure that i would wear it a lot.",4,1,0,General,Tops,Blouses +1078,70,Love at first sight,"Lush eye catching print. saw it, tried it on and had to have it, full price or not. very comfortable. bought one size down and it fit perfectly.",5,1,0,General,Dresses,Dresses +1078,48,Boho beauty,"I love this dress! it's so comfy and flowy. i wore to an event and got many compliments on the color and design of the dress. i'm 5'5"" and weigh 150.",5,1,0,General,Dresses,Dresses +1080,41,Love it!,"I love this dress! i ordered a petite size and just love how it fits. i would highly recommend this dress, too cute!",5,1,1,General Petite,Dresses,Dresses +1081,29,Beautiful -- runs very small,"This is a gorgeous dress... great print, comfortable fabric (very wrinkly, though). runs very small. i'm usually a 00 or even sized out at retailer and will need to size up to a 2.",5,1,5,General,Dresses,Dresses +1081,32,Awesome day dress,"This dress is slightly tight on me and i usually wear petite 00 or xxs (5'1 100 lbs) the quality of the fabric is thick and texture, colors are just like the photo, and it has a nice satin like underlining in a dark navy. the snug fit of the dress makes it so i don't need a bra, which is nice especially for a day dress !",5,1,1,General,Dresses,Dresses +1022,50,Love jeans with one issue,"I bought these in the ivory and love them so i decided to get the taupe. imagine my surprise when i got them and they were grey. if you hold up the pant that i received to the taupe shown online you can see how different the colors truly are, the grey color is nice, but i don't need another grey jean. i am disappointed that the taupe is so off as that's the color i really need. i would buy the ivory as it's true to color. not sure about the green. the jean itself is soft and fits perfect. i have",4,1,0,General Petite,Bottoms,Jeans +1080,29,Something different,"This dress is a nice twist on a luncheon/work dress. can pair with blazer or sweater, and it looks really cute with hair styled up - almost throwback. + +zipper sometimes gets a little caught on the lace top, but overall i'm really happy with this dress!",4,1,1,General Petite,Dresses,Dresses +1022,41,,,5,1,0,General Petite,Bottoms,Jeans +835,45,Gorgeous.,"I'm so glad the other reviews were so good. i couldn't agree more. this top is very well made, lined. i'm 5'5"", 32 dd and got the 6. i'll have to take up the shoulders a bit since the v falls a little low on me. what can i say, i'm modest. :) i wish they made more colors. this top is awesome.",5,1,3,General,Tops,Blouses +878,23,Super cute and fun pullover!,"Quality is great, fit is great, and the message keeps me in a good mood and motivated throughout the day :) + +i got it in a size 2 (i am usually a s-m in retailer tops) and it fits great (for reference 5'4"" 140lbs, 37-29-39). + +i usually don't wear grey but the bright colored font led me to make an exception. + +very happy with the purchase!",5,1,1,General,Tops,Knits +1080,58,Waist is higher than my waist,"I ordered this dress and have sent it back. i think it could be a flattering dress; the waist hit quite a bit above my natural waist which made the entire thing fit weirdly. i am very long waisted, so this might just be a problem for me. i ordered regular size 2.",3,0,2,General Petite,Dresses,Dresses +1080,41,Zipper is defective,"I love this dress but the zipper is definitely defective. +its a flatering style and i love the fabric and fit. im normally a 10 but the 8 fit perfectly. + +i'm nervous to wear it because of the zipper. i would return it but dont have the receipt.",4,0,2,General Petite,Dresses,Dresses +996,30,Soooo comfy!,Very comfy versatile skirt. the fabric is soft and stretchy that feels really nice on. i live in hawai'i so i like having skirts to wear that work well with the climate but not typical of the fashion out here. the pleating is very flattering and the skirt layer underneath makes it wearable to work.,5,1,0,General Petite,Bottoms,Skirts +1080,35,Zipper was broken,I received this in the mail and it looked beautiful but the zipper was broken just like one of the other reviews. normally i would just exchange but i don't know if it's worth getting another broken one.,3,0,6,General Petite,Dresses,Dresses +1080,29,Much prettier in person,"This dress is so much better in person! i got the petite size (i am 5'2"") and it seems to run a bit smaller than the regular size- i have a fairly large bust so i went up a size and it seems to fit perfectly. love the colors and vintage design! i can't wait to wear it for a wedding i will be attending!",5,1,0,General Petite,Dresses,Dresses +1078,39,Didn't work for me,This dress overwhelmed me. i'm 5 feet tall and the print and material just took over.,2,0,1,General,Dresses,Dresses +1078,26,Love the long tassels,I was tempted to get this online but just wasn't sure i wanted to buy even with the sale because i only wear dresses to the knee and didn't know how this would look with leggings or jeans. i tried it on in the store the next day and it was so cute! there are long skinny black tassels in the front that you can't really see in the online pics that i love. it looks great with my skinny jeans with tears or black leggings and boots. i even have some cute leggings just past the knee that this looks aw,5,1,0,General,Dresses,Dresses +936,43,Perfect with everything,"I received this as a gift and have seldom been so pleased with anything. as another reviewer noted, some retailer clothing looks darling and then falls apart. not something acceptable at this price point. + +unlike her, this was not one of those times. i've worn this daily, for weeks and feel like the buttons, trim and weave could not be any better. not only that but it looks terrific with everything. the sweater has a flattering line that tapers at the waist even unbuttoned. it is soft, warm and cl",5,1,9,General,Tops,Sweaters +996,32,Great skirt,"This is a great skirt to add to your closet. i love it. it is comfortable, soft, and has detail to it. i enjoy wearing it for work or a night out.",5,1,0,General Petite,Bottoms,Skirts +1081,42,Awesome summer dress,"Dress just arrived and i was a bit nervous of the fit based on the other six reviewers stating it runs small. i actually found it to run exactly true to size. i'm 5'6"" 38-26-38 slender, and on average i wear a size 6, which is what i ordered - 6 regular and it fits as though it was custom made for me. this dress is made very well - looks tailored and hits me right above the knee similar to the model. i feel i scored big by purchasing it at the sale price.",5,1,0,General,Dresses,Dresses +1078,61,Bohemian chic,"The picture of this dress does not do the colors justice. they are a very rich green and pink, which were a popular color combination in the 70's. (i was there!) it adds an authentic touch to this great peasant dress. the black and white embroidery on the bib gives it a modern flair. i am 5'6"", 130 pounds, and usually wear a size six in a dress. the small fit perfect. while the dress is billowy, the square on the back pulls it in, so it doesn't fit like a tent. perfect for boots now, sandals lat",5,1,5,General,Dresses,Dresses +936,28,,,4,1,0,General,Tops,Sweaters +464,25,The perfect suit,"The mara hoffman cross-front one-piece is worth every. single. penny. the colors are vibrant--a perfect compliment for my fair complexion. the cut of the suit is immensely flattering, particularly the definition created at the natural waist. the quality of the suit is impeccable, and i have never felt so confident in such a little number! and guys, it's reversible (inside is a gorgeous royal blue).",5,1,2,Initmates,Intimate,Swim +996,29,Comfy and versatile,"This skirt is flattering and so soft. i've worn it once, and while it did keep feeling like a scandalous slit, i just had to keep reminding myself of the awesome inner skirt. i gave a 4 instead of 5 because my elastic seems to roll ever so slightly in front so that the pleats don't hang flat, and also a little bit of stitching on the outside was loose. since it's nothing that will unravel the whole thing, i'm not too worried about it.",4,1,0,General Petite,Bottoms,Skirts +1080,24,,Beautiful dress! the pics online do not do any justice! i got compliments all day!,5,1,0,General Petite,Dresses,Dresses +1078,37,Stunning!,"The second this dress arrived in my store i knew it was a must have. i am all things bohemian and this dress encompasses everything wonderful about a free fitting, feminine bohemian dress! first off the sleeves are not fitted. they have quite a bit of fabric to them (big armed ladies rejoice!), but have an elastic cuff so you can wear them high or low. the only fitted part to this dress is the lace panel (which still fits true to size), and the slip underneath (which appears to have a bit of str",5,1,14,General,Dresses,Dresses +1080,35,,I just got this dress and i love it! it is classic and beautiful. the zipper is tricky right at the band but otherwise no issue there. i cannot wait to wear it.,5,1,1,General Petite,Dresses,Dresses +1078,56,"Recommended, but with reservations","It broke my heart to have to return this dress -- the fabric is simply gorgeous, very high quality, and i love the contrast between the yoke and the rest of the dress. but it was simply not flattering on me. i am 5-4 with a relatively large bust and an overall medium build. the small size fit me perfectly, but the cut just didn't look good on me. i have other tunic dresses that look great on me with tights and boots. so i am not entirely sure why this dress just didn't work for me. it may be tha",3,1,1,General,Dresses,Dresses +1080,41,Great dress!,"Just received my dress today and i am pleased with the quality of the dress. i am small on top , small waist with hips and a heavy bottom . i normally. wear a size 8 dress , so i ordered this dress in a size 8 and it was a perfect fit . the material is soft and so comfortable . the zipper was not a issue as mentioned in the other comments . i can't wait to wear this ! my new favorite dress .",5,1,3,General Petite,Dresses,Dresses +936,31,Nice but sleeves are way too long,"I ordered this and thought it would be cute for work, but it tuns out the sleeves are ridiculously long. i am 5 foot 10 and do not have short arms. also it is a bit short waisted for me. i do love the floral detail of the button.",2,0,0,General,Tops,Sweaters +835,52,"Beautiful red blouse, dress up dress down",Usually red tops which are a true red are hard to find. this is more red in person that in the photo. great feel to material and the drape is wonderful. sometimes peplum tops can make me look bigger than i am (5'6 and 138 lbs) but this one has a nice slimming effect and the v-neck is complimentary to a smaller bust 36b. love it !!!!!!!,5,1,7,General,Tops,Blouses +1080,40,,,3,1,0,General Petite,Dresses,Dresses +1078,35,My new favorite!,"I saw this online, and liked it but then tried it on in a store a few weeks later, and the pictures truly do not do this gem of a dress justice. the fit is flowy but tts as the cotton lining underneath fits closer to the body. it's an incredibly comfortable and easy piece to wear. the first day i wore this i received so many compliments! the colors are vibrant and it's really just a unique piece with beautiful detailing from the embroidery on the top of the dress to the beads on the ties on the",5,1,3,General,Dresses,Dresses +1078,61,Love this dress - hate the lining.,I love this dress and have already worn it a couple times since purchasing. it is great because it has sleeves and i don't have to wear a sweater with it! my only complaint is the lining on the inside is pretty form fitting. i would have liked it to be more flowy like the dress.,4,1,1,General,Dresses,Dresses +1080,59,Gorgeous but small on top,I normally wear 0 in retailer dresses. the bottom is roomy but top from band up runs small. i bought a 2 and love it. i plan to wear it to a wedding.,5,1,1,General Petite,Dresses,Dresses +936,58,Too big with no structure,"In the picture it looked to be a structured blazer, but when i tired it on (i got an extra small) and it was too big.",3,0,1,General,Tops,Sweaters +613,35,,Great as a beach coverup. i paired it with a slip underneath and a belt and it looks amazing! can't wait to wear it on the beaches of the bahamas soon!,5,1,0,Initmates,Intimate,Swim +1078,35,"Beautiful, just not on me",This was all wrong on me. the puffy sleeves made me look a foot wider. i'm thinking this will look good on tall slim ladies. it is extremely comfortable and the material is very pretty though. tts,5,1,1,General,Dresses,Dresses +861,47,,"Good quality shirt. cute design and not sheer. not quite as loose and stretchy as most of retailer's shirt, but good fit.",5,1,0,General,Tops,Knits +1091,47,Not the usual retailer quality.,"I was disappointed with this dress because it is not the usual retailer quality. the quality of the material is not very good. i've bought boiled wood jackets from this brand before and they're very soft and very well made, hence my disappointment. i agree with the other reviewers in that this dress runs very large and the length is short for a winter dress.",3,0,3,General,Dresses,Dresses +1091,35,,"This dress runs very large. i am 5'4 and 120 lbs, hourglass, curvy build. i ordered a size small and its enormous on me. the description says fitted but it is not fitted at all. it's like a big wool sack. i'd have to gain 30 lbs for this dress to come close to fitting. i'm very sad that the fit is so far off and the dress is now all sold out in all smaller sizes, including petite. (i never normally buy petite clothes but i think i would have to get a petite xs if it were available). the dress lo",2,0,4,General,Dresses,Dresses +1195,38,No thanks,"I tried this dress on in store. i loved it online, but in person....not so much. it looked and felt like a cheap halloween costume. the fabric was bad. really bad.. the mustard color was beautiful.... boo",1,0,0,General,Dresses,Dresses +1091,35,"Beautiful dress, but ill-fitting","I wanted so much to love this dress, but unfortunately the fit was so poor i had to return it. the color of the dress (green) was lovely, and i liked the fabric and the overall design very much. i read the reviews and decided to order an extra small petite given that reviewers said the dress ran large; but even at that size the dress was too large, especially around the hips (which, for someone with an hourglass figure, is saying a lot!). the extra fabric around the hips belled out some, making",2,0,2,General,Dresses,Dresses +1091,41,,I love this dress!!! this is perfect for ladies with curves. it does run a little large and i felt i could have worn both the small and the medium. i bought medium because it accentuated my curves without being too revealing. i bought the dark green which is a beautiful color and not see through at all...although i can guess the white might show a little but the white was not available in my store. this will be so perfect for the cold weather.,5,1,12,General,Dresses,Dresses +1086,41,"Cute, but runs so small","Bought this for my brother's wedding and i just received it. i ordered my usual size xs. it's a tightly woven knit, with little to no stretch in it. i could barely get it over my head and my arms could barely fit in the sleeves. and i don't have big arms at all. for reference, i'm pushing 5'7"", around 125 lbs. i'm glad it's so structured because i was worried that it would lose it's shape with this material make-up. but, no. it's really fitted. alas, i need to try again with the next size up. ma",4,1,16,General Petite,Dresses,Dresses +861,19,"Cute, casual top","I love the button details on this top. i was expecting the material to be thicker, but it's quite thin. it isn't sheer, but i will layer it for the winter months. overall the fit is true to size. i am 5'0, 110 lbs and the xxs fit me well. the arms were more snug than shown on the model and the shirt was loose without being too flowy or boxy.",4,1,11,General,Tops,Knits +861,52,,"Fabric is soft and comfy, color is true to photo. the arms are a little tight now and i haven't washed it yet so i am a bit worried but still a keeper.",4,1,1,General,Tops,Knits +1091,39,Still thinking,"As others have said, this dress does run large. i ordered the xxs petite, and ti isalmsot big on me (hips are wide, so at least, it is comfortable in width). material is a bit scratchier than i am used to s well. + +color is great, and it looks nice when i see it on my stylist, who convinced me to hold on to it for a little... thinking about it. + +my zipepr was also a little hard to work. + +shorter than some other dresses...",4,1,1,General,Dresses,Dresses +1086,40,,"I loved this purchase. the dress is beautiful. it?s classy, very feminine and rich-looking. the colors and fabric are exactly as shown on a picture. it is tailored and non-stretch, so size has to be right. i am between 6 and 8 and my size m dress fits well. had to spend time shopping for a belt as the dress definitely needs one. gorgeous dress!",5,1,5,General Petite,Dresses,Dresses +861,48,Comfy & versatile,"I love this top!! in fact if it came in more colors, i'd buy a few more. it's just so soft and comfortable, wear it now in cooler weather with layers or later in spring and even cooler summer nights. the neckline is perfect, love the subtle details. it fits perfect in my usual size medium and is a good length to wear either with jeans or long enough for leggings with a cami peaking out beneath. yes, i love it, just wish there were more colors.",5,1,2,General,Tops,Knits +1086,58,Beautiful dress,"This is a gorgeous dress that while it runs quite small ( i normally take a s or xs ). i had to exchange it for a medium. i am 5 4"" and it falls below the knee which is how i like my dresses. it is a gorgeous pattern of color which could be worn for 3 seasons. i look forward to wearing it for many special occasions.",5,1,5,General Petite,Dresses,Dresses +861,47,,,5,1,0,General,Tops,Knits +1025,37,Worth every penny!,"These jeans are amazing! i just got them from retailer the other day and i have worn them almost every day since! i have washed them once. the tag says to turn inside out, wash in cold, and hang dry. i was a little skeptical that they'd still be soft without the dryer/dryer sheets, but they are wonderful and do not stretch out. i will get lots of use out of them and i just wish they made them in more colors. they're very comfortable: i totally love the high rise. they're a little long but i",5,1,1,General,Bottoms,Jeans +1091,49,"Very cute, but...","This is a very cute and warm dress. it is flattering, yet appropriate for work. but i had to send it back for two reasons. the zipper didn't work well. it just wouldn't zip without someone helping me and even then it was very difficult to zip. perhaps it was just the zipper on my dress? + +the neck felt like it was strangling me was the other reason i sent it back. if i am not comfortable i will not end up wearing it, so even though i loved the style of it the pragmatics were lacking.",4,0,1,General,Dresses,Dresses +1025,73,"Great fit, great wash. don't stretch out!","These are my new favorite jeans. the gray wash is nice, and the distressing is subtle enough that i can wear these to work. the rise is high enough that i don't need to worry about bending over but not so high that they get near my belly button. and the description is true: they don't stretch! i'm a loyal ag stevie shopper, and the fit on these is similar... just a little skinnier in the ankles, maybe. true to size. a little long, so i'll probably hem them a couple of inches.",5,1,1,General,Bottoms,Jeans +1025,35,Love these jeans!,"These are the second pair of paige jeans i have purchased, and i have not been disappointed! jeans are great for casual dress or a night out on the town. fit stays true even after first wash. wish i had a pair of these in every color.",5,1,0,General,Bottoms,Jeans +1091,47,Beautiful dress when you are on the go,Wore this dress last weekend in nyc. wore it from lunch until late night drinks after dinner. walked for hours in the dress. comfortable but dressy.,5,1,1,General,Dresses,Dresses +1091,31,Odd shape.,"I agree with the review above regarding the sizing of the dress being large. i am a pear shape so i was worried the small would be tight in the hips however, the dress as a whole seemed large and not overly shapely. i'm 5'8"" but i also thought the dress was an inch or so shorter than i would prefer for a winter/fall dress. the dress is a very dark forest green (not black). see the photo for the shaping of the dress - it shoes that, due to the material, it oddly bulges in certain regions rather t",3,0,37,General,Dresses,Dresses +861,58,Disappointed purchase,Material is too thin and quality is poor,1,0,1,General,Tops,Knits +1086,47,Not great,Looks much nicer in the photo. i expected a much higher quality fabric. this fabric truly felt cheap. i expected a nicer dress for the price. the fit was unflattering on me. sent it back,2,0,0,General Petite,Dresses,Dresses +1195,45,Not great,"The fabric is very thin. it isn't see through, just thin. i would have kept this if the full length shell wasn't longer than the dress.",3,0,0,General,Dresses,Dresses +850,70,Retro chambray shirt,The shirt brings back the '60s look of appliquã©d patches on shirts. it is a quality piece with a bit of humor. the length is shorter than usual for chambray shirts but also very comfortable . it could be left open as a light jacket over tees and tanks. fabric feels good on skin.,5,1,1,General,Tops,Blouses +1086,48,Lovely slim dress,"This dress is lovely. the colors seem a bit more muted than as reflected on model; otherwise, looks very similar to photo. it has a slimline style and is very flattering. the dress has a more casual appearance than as is reflected in the photo. its really more of a day dress than a special occasion dress, notwithstanding another reviewer's opinion to the contrary. + +i ordered up a size due to reading other reviews. i found it to be a bit larger than i wanted so i washed and tumble dried it on low",4,1,1,General Petite,Dresses,Dresses +1091,41,Classy and practical,"I purchased this beauty in the sophisticated dark green on black friday and it has been in constant rotation. it looks chic and classy, feels comfortable and warm. i only wish it was about 2 inches longer, i'm 5'5 and it hits at low thigh, i prefer just above the knee for a winter dress. very practical for walking around city all day and then being ready for a dinner or drinks in style. love it.",5,1,0,General,Dresses,Dresses +959,46,Great staple piece,"Recently, i have been so wanting to get a lightwash denim jacket and i found the piece right here! i love that its cropped and so easy to wear. its not stiff at all and sized right. i got an xs my normal size and its so comfy and surprisingly soft. +great find but just a bit pricey.. but probably bc its paige. too bad pilcrow couldn't have made something like this.",4,1,0,General Petite,Jackets,Jackets +1086,47,Loved floral design not the dress,"Ordered it because i am fan of floral dresses. +i found that colors are not as bright as pictured, overall color looks beige in real life. fabric has nice weight, not too heavy nor too light, it is not itchy, but not very soft either. good dress for colder weather. the sizing was right, i got my usual m and i am 5'10'' 145lb. the dress has a side zipper, but i did not need it. the dress is slimming and close to the body. the cut did not work for me: sleeves were too short, i had to pull them up t",3,0,2,General Petite,Dresses,Dresses +1086,63,,"This dress does run a tad small. for me it was small across the chest and i did have to shimmy into it. i am 5'6"", 110 and got size s. if i had gotten the m it would have looked a tad frumpy (on me). pretty, but wasn't happy with the fit aside from that the ""line""separating the top from the bottom was rather high for me and it seems that it was not really intended to be an ""umpire"" waist. i tried a belt with it and at my natural waist left the line uncovered several inches up toward my chest. i",3,0,1,General Petite,Dresses,Dresses +861,32,Shirt has slits!,"This is a cute shirt, but it has slits at the bottom of the hem so that the front bottom of the shirt has this small rectangular ""flap."" it's not visible from the photo. i think it'll have to be returned for this reason.",3,0,1,General,Tops,Knits +1091,63,Large and thin,"I bought this for an upcoming conference and was grateful that it shipped very promptly. + +it runs quite large, in my opinion. i'm 5'7"" and about 130-135lbs. the small was huge on me in the chest and shoulders/arms. the stomach also wasn't very fitted. the material is thinner than i expected (you can see through the dress to some extent when you hold it up to the light), but i don't think this is a problem, necessarily. had it been thicker, it probably would be too warm. but you might need a slip",3,0,82,General,Dresses,Dresses +868,64,"Nice, but not for me","I took a chance on this top because i liked the style. i prefer natural fibers like cotton and linen. this is rayon and spandex. sure, why not at least give it a shot and go outside my box?! if the fabric would have been my preference, it would have been a keeper. i did not like the feel, nor the semi-sheer quality. maybe it would work for you, but not for me. back it went.",3,0,2,General,Tops,Knits +1091,50,"Warm dress, slightly itchy","I got this dress in the green in an xs and was a little leary of the fit in light of the previous review. however, when i tried it on, i was impressed how it felt in the upper torso - it fit great in the neck, arms and shoulders. and i didn't find the rest of the dress to be too roomy, although it wasn't a snug fit either. it came below the knee on me, but it didn't bother me that it was slightly longer than in the modeling pics. it is a little on the itchy side so, it may be best to wear a cami",4,1,5,General,Dresses,Dresses +1091,50,Love!,"Dress is comfortable, feels great and the fit exceeds flattery. the length hits just above my knees and the small side triangle cutouts add a unique cute, fun but still classic detail that i didn't notice in the picture online. i love this dress and get so many compliments.",5,1,0,General,Dresses,Dresses +861,37,,,5,1,0,General,Tops,Knits +1091,36,Dress is extremely pear-shaped.,"I bought this dress in an xs, and am 5'4"", 115 lbs, and fairly proportional. the shoulders were snug, but the hips (and maybe waist)were at least 2-3x too big. comically so-- the fabric stood away from my body like wings on each side.",2,0,21,General,Dresses,Dresses +1091,39,"Simple, yet sophisticated",Love the easy fit of this dress. great for work or family events. love the ribbed sleeves and pockets are a plus!,5,1,0,General,Dresses,Dresses +1091,39,Nice dress but what's with the hips?,"So i now own three sparrow wool sweater dresses (shyle, bressay, this one). they all have the same problem...hips cut large/wide past the waist! everything from the waist up fits great. i'm not sure who they are using as a fit model, but she must be curvy in that j.lo way (which is nice but not my shape). i love the green color, the warmth, the neckline, and the easy fit. i will wear a coat to hide the body of the skirt. and do more squats",4,1,0,General,Dresses,Dresses +861,43,Loooooooow cut,"This shirt is beautiful and so soft. it would have made a wonderful long-sleeved tee except for the fact that it was so low cut. the only way this is wearable is with a tank underneath which, for me, defeats the purpose of this type of shirt. i am rather busty (34 dd), so maybe if you are smaller on top you might could pull it off.",3,0,3,General,Tops,Knits +850,40,,Super cute version of your standard chambray shirt. i'll be adding more of my own patches to this one!,4,1,0,General,Tops,Blouses +861,62,Runs large for brand,"I am 5 '4"", 124lbs, and 36 c - usually take a small or sometimes a medium in t.la tops. this top seems to run particularly large as i ended up with an xs.",4,1,17,General,Tops,Knits +863,32,,"This was a really nice, soft lightweight sweater, perfect for transitioning into fall. i found it to be a tad boxy and while i love a high/lo hem, it was a little short in the front for my liking. i'm still debating if i'm keeping it since i bought it full price, but the color was really pretty and on sale, i would def. go for it. for reference, i got a large since i normally like my clothes more loose.",4,1,0,General Petite,Tops,Knits +636,28,See through,I would really like this dress if the material were a little thicker. it's really thin so you can see my nipples straight through the dress. you can't wear a bra with it because it is backless so i don't understand how you are supposed to wear this outside of the house.,1,0,0,General Petite,Intimate,Lounge +636,26,Cute cover up,"I bought this as a swimsuit cover and it was exactly like the picture. so soft, very good quality, fit perfectly. definitely worth it for this price!!!",5,1,0,General Petite,Intimate,Lounge +232,40,,"I ordered this top in my normal size medium, and it was very large. i am 160 lbs, 36b, size 8 top and 12 bottom. it was so pretty, that i took a chance and reordered it in a small. the small on me fits just like the model in the picture. it's pretty lightweight, but is not see through. it is a very wide v-neck, but i am small on top, so it does not bother me. it's such a comfy yet sexy top!",5,1,0,Initmates,Intimate,Sleep +636,41,Very cute style,"This dress has really great features--the style is adorable, and i love the color. the contrasting color straps are a nice feature. the only thing i don't like about it is that it's a rather thin material. not quite sure yet if i should wear it as a dress or simply as a swim cover-up.",4,1,0,General Petite,Intimate,Lounge +863,61,,Loved this sweater but too boxy,4,1,1,General Petite,Tops,Knits +636,39,Great swim cover or pj dress,"I bought this for a swim suit cover up and i'm very happy with it. the fabric is thin and rather sheer, i wouldn't buy it to wear it outside as a regular dress. i'm 5'6"" and the front of the dress hits me above the knees. the fabric is soft and comfy. the blue with white piping is pretty and the fit is flattering. i'm really happy with this dress.",4,1,1,General Petite,Intimate,Lounge +863,69,Love the color,"I love this sweater. the pale pink color is gorgeous. i ordered a large because i have broad shoulders, and it fits perfectly. it's a great sweater for any season. love the slits on the sides and the longer back. i would order more if it came in white or black. love it!",5,1,3,General Petite,Tops,Knits +232,57,Poor quality,"Recently received this and was very disappointed with the quality. the fabric was very thin, easily stretched out of shape. price is ridiculous for this item!",1,0,5,Initmates,Intimate,Sleep +636,44,Bathing suit coverup or pjs,"I agree with other reviewers that the material is pretty thin, and it would make a far better swimsuit cover-up or pajamas than an actual dress -- unless you don't mind that it is semi see-thru. however, that said, i do love it! it is soft, the cut on top is nice and the strappy back is pretty, and it is flattering -- as long as your tummy is fairly flat because it does hug your body as you move (so no bread and pasta). i have worn it a couple of times already, and i have received compliments on",4,1,1,General Petite,Intimate,Lounge +863,66,New love??,"Wow. this is the perfect sweater. beautiful, soft color. lightweight enough to wear now and into the coming seasons. it drapes beautifully. the knit is tight, no see through or snags. very soft and comfy. the casual, easy, pulled together look is hard to do and this one does it with style. am starting to love this designer. highly recommend.",5,1,1,General Petite,Tops,Knits +636,35,Disappointing quality,"I was so disappointed with the quality of this dress, especially because it looks so beautiful on the model. the fabric was so thin that after one hand wash, it's already developing a tiny hole and pilling. also, it is definitely not a ""day dress""--i wore it as a swim coverup, but it is much too thin and pajama-like to be worn as an actual dress. the color is much different in person--the blue is brighter and, for lack of a better way to describe it, cheap looking. the white banding around the t",2,0,0,General Petite,Intimate,Lounge +863,80,,This top is perfect. i absolutely love this sweater. it is super cute to wear with shirts for the summer and it will look just as cute with jeans for the fall/winter. the color is very subtle and not too pink. it is super soft and i would 100% recommend this to someone!,5,1,3,General Petite,Tops,Knits +636,46,Crossback day dress,"Definitely pj quality. i have a fairly thin frame and this hung on me like a tent. and it's very thin, so it works as a swim cover, but definitely not a dress for anything else.",3,0,14,General Petite,Intimate,Lounge +996,33,Xl runs small,"Would have loved this skirt, but the xl is closer to a size 12 than a 14 or 16. larger ladies beware!",3,1,0,General Petite,Bottoms,Skirts +792,29,Cute & comfy,"Just bought these today and they are super soft and beautiful. also, 100% cotton (yay! i hate poly)! thought i should mention though that they do shrink in the dryer. so unless you're skinny, you might want to buy a size up or hang them to dry and then put in the dryer on low to fluff.",5,1,0,Initmates,Intimate,Sleep +996,38,Great buy!,"I added this to my cart on a whim, and what a nice surprise! the color is gorgeous--this dark plum color is a great alternative to grey, black, or brown. i'm planning to wear it first with a cream sweater, a mustard colored scarf, and a brown leather jacket. i am a pear-shape, and this skirt works very well to structure (and minimize!) my bottom half. it also isn't as short as i thought it might be--although i, like the previous reviewer, plan to wear this with tights and boots. the only negativ",5,1,1,General Petite,Bottoms,Skirts +828,59,Love,"This top is so cute. i don't usually like crochet tops, but when i saw this i just had to order it, so glad i did! my only complaint is that one of the button hooks broke, but that can be fixed.",5,1,3,General,Tops,Blouses +861,53,"More colors, please!","Love this top - it is a beautiful shade of blue and the buttons at the bottom add a nice touch. it is light weight and not too long or wide. i have other t.la tops in small, but the xsm worked better for me with this top.",5,1,1,General,Tops,Knits +828,46,Not for me,"Although the fabric and color is beautiful, the sleeves do not lay properly. they are too stiff and look like wings on me. sadly i must return. the quality looks great. it is unfortunate that the design was a miss.",3,0,0,General,Tops,Blouses +819,55,Great top,"Purchased this top at my local store and it is very flattering! not to boxy, hits at the hip and drapes nice. great for work or with jeans. i purchase the navy faux fur scarf to wear around the neck and wow!",5,1,0,General,Tops,Blouses +828,25,"Beautiful top, but not on me","This top is gorgeous: beautiful lace, substantial fabric, great color. but it looked so weird on me. i have broader shoulders, and the sleeves did not drape on me like they do on the model, they just stuck straight out. as another reviewer mentioned, the fabric is stiff. i didn't want to size up because the body and length both fit well. perhaps if you have smaller/ rounded shoulders this top will hang better. for reference i'm 5'4"", 120 lbs, and tried a size s.",3,1,0,General,Tops,Blouses +828,83,So wanted to love.....,"I saw this top online and ordered immediately! +i loved the color, lace, and unique details. +sadly it just arrived and it is a disaster! +the lace is stiff and doesn't lay softly, and is very rough against your skin. +the style ( and i like shorter style tops) is extremely boxy and the sleeves protrude outwards in a funny way.,..... +that although i am so in love with this color, i would be embarrassed to wear this top in public. +it could have been fantastic, if the lace was softer, and some a",1,0,16,General,Tops,Blouses +996,74,Darker in person,"Just got this skirt in the mail today and overall i'm happy with it and will keep it. i was disappointed that the color is not really plum in person as it looks in the pictures. it's more of an ambiguous color somewhere between brown/gray/plum. the fit is good, the quality is good, although the skirt is a little longer than i would like (and i ordered the petite size). it's not really a mini skirt, just an above the knee skirt on me. i'll take it to my tailor and have him take it up an inch and",4,1,3,General Petite,Bottoms,Skirts +818,38,Chic top,The material is soft. it looks perfect with ankle jeans or flare jeans.,4,1,0,General Petite,Tops,Blouses +996,45,Lovely skirt for the fall,"Very nice casual corduroy skirt for the fall. it sits nicely at the waist and the asymmetrical cut gives it some visual interest. it has a slightly a-line shape and the side seams round up a couple of inches. i took a point off for it not being lined, and the closure relies on the zipper alone instead of having a hook along with the zipper. i took my usual small and like how it fits. my only concern is that it is a little on the short side for me but since it's a fall skirt and will always be wo",5,1,9,General Petite,Bottoms,Skirts +861,45,T.la's cutest tee. ever!,"Every spring/summer i look forward to t.la's tanks & tees and stock up on them. sometimes it is difficult to determine the color online, but this top (i bought it in green) is without a doubt the same color in person as it is online. the color is a gorgeous sea green and the softest cotton tee (just keeps getting softer wash after wash) and the silver buttons on the side (what a unique twist to an everyday tee). now all i need is the blue one.",5,1,5,General,Tops,Knits +135,27,Perfect shorts!,"I absolutely love these shorts! they are the perfect length, too. i have been looking for shorts this length and rise height for years. it's hard to find shorts that aren't super short yet aren't bermuda and are still flattering. i especially recommend these for those that miss wearing shorts because of insecurities with their thighs/mid-section. + +rolls are not sewn on both ends, so you'll have to re-roll each wash. + +wish you carried these basics at all times.",5,1,2,General Petite,Bottoms,Pants +828,45,Cutest top ever,The color of this top is amazing--much more vibrant than in the photo and the fit is perfect. it is very flirty and pretty and the detailing around the top is gorgeous. it's pricey but i splurged and am glad i did. it looks adorable with a corduroy skirt and boots for the fall.,5,1,1,General,Tops,Blouses +861,69,,T.la got it right this time. love the fabric. the color is perfect for summer and the color is a great shade of green. exactly as pictured. the left side has a slight cut with silver buttons. exactly as it looks on line. i certainly recommend this top. love it.,5,1,12,General,Tops,Knits +716,32,,My new favorite socks! has a grip and doesn't slip off like some of my other liner socks have because this one covers more of your feet. perfect for my low boots.,5,1,0,Initmates,Intimate,Legwear +135,35,Great summer shorts,Love the color and length of these shorts! i have been searching for a pair of dark denim shorts that were not cut-offs and these pilcro shorts are winning! fit great like all pilcro denim and i'm sure i will be getting a lot of wear (i.e. every day) out of these shorts.,5,1,0,General Petite,Bottoms,Pants +996,51,Cute and stylish,"This is a nice looking skirt. the corduroy has a little sheen to it. looks cute with a sweater, tights and boots. length is slightly longer on me than the model in the photo. there are small slits at the side seams and the hem is curved at the slits.",5,1,0,General Petite,Bottoms,Skirts +135,30,I love them,Cute denim shorts that roll up or down. perfect with everything.,5,1,0,General Petite,Bottoms,Pants +135,45,Stretches out,"I have 7 pair of pilcro denim shorts from retailer and for some reason the colored ones (white, yellow, pink) hold their shape but the denim blue completely stretch out. i went down a size in these and they still stretch to the point of sagging. i really want the black ones...hoping they don't do it too.",4,1,4,General Petite,Bottoms,Pants +861,34,"Cute design, poor quality","This is an adorable basic & i should have been wearing it once a week this summer, but instead the fabric developed noticeable holes after the very first wear. this brand makes some of the softest, cutest tees, but unfortunately more often than not are unwearable after the first or second wash. i wash on gentle & hang dry. not worth the cost.",1,0,0,General,Tops,Knits +861,35,,"I love the cut and ""swing"" of this tee. the royal blue is very saturated and pretty.",5,1,1,General Petite,Tops,Knits +830,34,A flattering peplum top,"I had been eyeballing this for a very long time because i loved the look of the skirt and this top (of which i snagged the skirt when it went on sale). i was delighted to finally take a chance and buy this when it went on sale, too. thoughts below: +______ +pros: +- it is well made and on the thicker side. +- for a peplum, it is actually slimming. i am an hourglass and with hips, which usually means such tops flare out so much making me look wider in all the wrong places. so i was skeptical abo",4,1,0,General,Tops,Blouses +939,39,Love so much i got three,"I love everything about this jacket so much that i had to buy three colors (grey/rust/teal). not only is it figure flattering, it's warm, water repellent, easily layered and well made. the little pop of color contrast added to the stripe seam makes it unique. i would say sizing is tts to a bit large. the only thing that would improve the coat is better finishing of the hems.",5,1,0,General,Tops,Sweaters +828,50,Gorgeous green,"I'm 5'9"" and 155lb. i have been wearing small a but this was realllllly small especially at my arms. it made me look like i was taking off... much more beautiful on the model. a medium would e been too big on my torso. the color is amazing! made my blonde hair really pop. i don't love green but this was so different. would love to find something else in this color that suits me! you need to be a super skinny waif to look good in this!",3,1,0,General,Tops,Blouses +830,34,Good quality,I was looking for a good navy top for the spring/summer to wear with white denim for a nautical look. this top is perfect and i especially like the neck for when its cooler in the evenings.,4,1,0,General,Tops,Blouses +861,52,It's in the details,"This brand always makes the softest tees, and so i buy several each season. when i saw this one online, i worried that it might be too long for my short waist, but i decided to order it anyway. success! i ordered my usual size m (for knit tops - 10/12 in fitted ones), and the length was perfect due to the buttons on the side. +fyi: short waist, broad shoulders/back, 36c - i carry my weight in the middle, since i virtually do not have a waistline. so a longer, boxy tee will emphasize the parts of",5,1,14,General,Tops,Knits +1009,42,Great transition to fall,"I really like this skirt. it is soft and the length is just right. i hate skirts that go below the knee. the only thing i don't care for is that there seems to be extra fabric in the back... maybe i should had ordered a size down. and the skirt does wrinkle easily. still, not enough reasons to send back. i have had many compliments at work.",4,1,0,General Petite,Bottoms,Skirts +831,35,Pretty,"The colors on this are beautiful! i have wider hips and thighs and this blouse just looks too boxy on me. i ordered a size down and from that aspect it fit. however, it is too flowy and boxy for my body type. i considered keeping it for layering but even on sale, it is too expensive for this purpose. i'm so bummed because the colors are so pretty!",4,1,0,General,Tops,Blouses +1072,35,,"I don't know how to explain, but this dress at least for me did not look like the model, first off the dress is extremely heavy and extremely long and then where the fur starts, for me it didn't start at the right spot so it was very awkward looking... so definitely not for my type of body, i am normal height (5'5'', athletic and curvy body) but maybe for a very tall person looks good! the material is very interesting, it's so soft!",2,0,2,General Petite,Dresses,Dresses +1081,51,Romantic,I loved this dress as pictured online and when i received it i fell in love with the look as well as the fit. it is such a perfect dress for the day or night. i am so happy i ordered it.,5,1,8,General Petite,Dresses,Dresses +1052,31,Very cute but cheaply made,"Saw this online and went in to try on. fit great and is true to size, but i should have known there would be issues as three out of six on the rack had the sewn in tags were all but hanging by a thread. i bought this for my bachelorette weekend in napa and when i put this on i noticed the straps had a few threads coming out and i thought, better get this to the seamstress as soon as i get home to secure the straps. well, literally five minutes into the car ride to the wineries i noticed the seam",2,0,1,General Petite,Bottoms,Pants +1081,37,Uneven reviews - but i love it,"I'm torn on how to review this dress. + +i bought it in a lovely slate grey (which doesn't appear to be available now). it drapes cleanly and is extremely comfortable. it has also proven extremely versatile through weight and body changes. i bought a small and am 5'9"", and am typically ~130 lbs with a very long waist. i wore it through early pregnancy and now love it because i can nurse my newborn comfortably and it still nicely fits my ~150 lb frame. + +the problem is that my husband hates th",4,1,0,General Petite,Dresses,Dresses +1099,37,,"Giving 3.5 stars due to how big this dress runs. i am 5' 118lbs and i was swimming in the xs. it is a beautiful dress, just beware it runs very large.",3,0,35,General,Dresses,Dresses +1081,46,Dress it up or down,"I got this tunic in the bright red, and it is a great, fun color that leans just slightly to the orange side of red. (my computer screen makes it look more orange than it does in person. i'm happier with the actual color.) the fabric is soft, comfortable and hangs beautifully. wrinkles fall out when you hang it up. i also have the tegan tunic in 2 colors and find the fit to be the same. however, the hi-low hem on this dress is a little more exaggerated than on the tegan. the tegan travels very w",5,1,0,General Petite,Dresses,Dresses +860,59,,"Runs very large and way too much fabric. i wanted this top to work because it looks cute on hanger. i usually wear s/m and the xs had too much fabric. may work better on someone with longer torso and taller. i am 5'6.5"" 36c 126lbs",2,0,9,General Petite,Tops,Knits +860,45,Beautiful color and style,I really love the color of this item. it is very generous in cut. i would suggest sizing down as i like my clothes more fitted. i received many compliments among my colleagues who wearing.,4,1,0,General Petite,Tops,Knits +1081,49,Super comfortable,"I love this dress! the fabric feels amazing & is super flattering. i am 5'4 with broad shoulders & a 36d chest and went with the small petite. i originally purchased the regular extra small which looked great, i just think the sp was slightly neater though the shoulders & length. it hits me above the knee as shown in the photo of the light colored dress with the long vest",5,1,0,General Petite,Dresses,Dresses +867,43,Poorly constructed and unflattering,"I ordered the taupe version of this tee, which was a medium brown with black stripes. the fabric felt itchy and rough, and was pretty sheer for not being light colored. i didn't care for the fit, which was extremely boxy and wide; from the picture, i expected an a-line fit, but not a wide drop with webbed underarms. i ordered 2 sizes, and could have worn the smaller if i'd kept this tee. it runs on the larger side. what astounded me most was that both tees i ordered were sewn with completely cro",1,0,4,General,Tops,Knits +1081,48,,,5,1,0,General Petite,Dresses,Dresses +1099,43,Unflattering - too flowy,This dress is so pretty in the photos but in person it's huge. and not in a way i could adjust by sizing down. the shoulders and arms fit but the body of the dress is absolutely huge. i normally love a trapeze dress but i was swimming in this so it was quite unflattering. it was also much longer than it looks on the model. i'm not short - in fact dresses are normally a bit shorter on me than the average person but this was just frumpy.,3,0,1,General,Dresses,Dresses +1099,28,Charming,"This seems to be designed to fit a bit loose, but not in a bad way (for me). the floral pattern on the collar with the polka dots on the rest of the dress are very cute, and i think this can look good with or without a belt. light for summer but still covers a lot, which is nice for the office. the sleeves are a little short, but it doesn't look bad. glad i snatched it.",4,1,0,General,Dresses,Dresses +1081,48,"Cute, but oversized","I tried this cute black dress on in the store and even in the xs it was a little too big. i'm 5'3"", so if they had petites available in the store maybe they would have fit better. just found too much material around the middle even though it is meant to be a loose fitting dress. the material is heavy weight, very stretchy, but not a thick fabric. could be great in the summer.",4,1,0,General Petite,Dresses,Dresses +1081,36,,,5,1,0,General Petite,Dresses,Dresses +1081,42,,"I bought this item in green and then ordered it in red. very comfortable fabric and flattering by itself or over leggings. these tunics will be staple in my closet. i normally wear a medium in retailer dresses, but i ordered a small to have it a bit more fitted instead of baggy. good decision!",5,1,0,General Petite,Dresses,Dresses +932,36,Cute little fox,Lovely foxy sweater. i dressed it down for work but would look fantastic with a pretty skirt too!,5,1,0,General,Tops,Sweaters +1081,30,Love!,"Really happy with this tunic. at 5'2 i am able to wear this as a dress or a top (with a belt). it's comfy, light material, and can be dressed up or down.",5,1,0,General Petite,Dresses,Dresses +1099,31,Gorgeous dress but runs large,"I am 26 weeks pregnant and bought this in an xs to wear to my shower this weekend. i am delighted with how it looks on, but it really might be too big for someone who isn't pregnant.",4,1,1,General,Dresses,Dresses +1081,39,Material is amazing,"I am in love with this dress. it's super soft, flattering and comfy i want to wear it everyday. it was recommended to me by a friend who is taller and slimmer than i am so i was skeptical of the fit. sometimes you see things that are only meant for models to wear. so not true here. i am 5'3"" 140 pounds with slightly broad shoulders and i bought an xs. i'm considering getting a second one.",5,1,0,General Petite,Dresses,Dresses +860,40,Just okay,I bought the shirt in ivory and went down a size per the advice from other reviewers. what i should have done was go down 2 sizes! runs huge! my husband said i looked pregnant and that's never a good look if your not. sent this back the same day.,2,0,0,General Petite,Tops,Knits +1081,53,Love this dress,"I also have this dress in 3/4 sleeve, tegan tunic. i love this dress. it can be dressed up or down.",5,0,0,General Petite,Dresses,Dresses +1099,39,Fun and different,"I ordered a xxs petite based on previous reviews but it was too short and snug in the shoulders. i then tried on the regular xs and it fit nice.y. loose but it is the style (shoulders fit). i usually need xs petite so kind of true to size to me. i am 5'1.5"" and 115 lbs. color is nice, i liked the blue polka dot with flowery tie neck. the tie. neck is a. nice. on trend feature, can. be tired at different heights for different looks, i think i will keep the xs regular....",5,1,1,General,Dresses,Dresses +1063,42,A bit thin,"Material is a little think and they run a bit long like many other retailer pants. otherwise, a great deal if you get them on sale.",3,1,2,General,Bottoms,Pants +860,46,Pretty tank,"I ordered the ivory in size xl. it is such a cute, comfortable top. all of the details are well-done. the quality of the material is great too. it's a flowy fit. after washing & air-drying, it does shrink a bit. great tee for summer!",5,1,0,General Petite,Tops,Knits +860,59,Original top - runs large,"In that i'm on the busty-side, i thought, ""surely an xl will not be too large."" ah contraire. wanted it in crimson anyway, so will try it in a large. the fabric in the white is nice in that it is substantial enough not to see-through. will look most interesting under a sweater or jacket.",4,1,0,General Petite,Tops,Knits +1081,45,"Pretty, but too loose and sacky","Wanted to love this dress - pretty fabric and colors. i think it would be more flattering on a taller woman (i'm 5'3"", ordered a s), this just looked like a nightgown on me. sorry to say it's going back.",2,0,0,General Petite,Dresses,Dresses +1081,53,,"I really want to like this dress - it's beautiful, but it just fits like a sack. the yoke exaggerates my bust and the dress makes me look 20 lbs heavier. perhaps if you are tall and thin like the mode, or small chested, it would be great! the quality and color is beautiful.",3,0,1,General Petite,Dresses,Dresses +1081,42,Super comfortable and flattering,"I have had this dress for a few months now and find it is super comfortable for the hot weather and can go dressy or casual with the right accessories. it does run large in xxs; the xxs petite fit a little better by was way too short for me. even better is that you can wash on the super gentle cycle and lay flat to dry. yes it says dry clean only, but its is made of cupro and you should be able to wash that material. i have washed mine several times and it has never shrunk or lost shape. the she",5,1,0,General Petite,Dresses,Dresses +867,43,"Fun, flattering shirt","This is such a fun version of a v-neck tshirt. the lines and seams are very flattering, the neckline is perfect. i'm 5'10"" a size 10/12 (depending) and i ordered the medium in the navy which fit perfectly. the length was slightly shorter on me than the model. overall a great shirt. highly recommended.",5,1,0,General,Tops,Knits +860,21,Love it!,"Got this top in white and the rust color. other reviewers mentioned it being much too large, so i went with the xs instead of my usual small. it's slightly oversized, but i love that look, and it's still flattering on me. i also didn't find there to be too much fabric. i am very tall and am happy with the length of this. 34b, 126 lbs, 5'10""",5,1,0,General,Tops,Knits +1099,69,Great dress!!!,"Purchased in the blue polka dot and love it. am 5' 6 1/2"", 155lbs, long arms. dress is meant to be full. i don't see the ""that is runs large"". the shoulders fit, the sleeves are not too long. it is a very cute dress. after receiving the dress, ordered it in the black motif and hope to like it just as much as the blue.",5,1,1,General,Dresses,Dresses +1081,58,Love it except...,"This is gorgeous! i absolutely love it but i need to return it. this is the second time i've ordered this dress/tunic. the fit is amazing, the fabric is so soft and it looks so fabulous on. the issue that i've had twice is that the back of the dress was not cut in the same direction. this means the sheen is different on one side of the middle seam in the back than the other side. unfortunately, it looks like 2 different colors. i returned the first one and i reordered but i have the same thing a",4,1,0,General Petite,Dresses,Dresses +1081,43,This is a must-buy!,"This one is a must-buy. i have 3 of the longer sleeve version (the tegan dress) and one of these. i am about to buy more of the lola/ short sleeved version. these dresses are flattering and comfortable. they can be worn as a tunic with leggings or a dress. they are great for travel. if you roll them, they don't wrinkle. they can be dressed up or down. my sister and i have very different figures and this dress looks great on both of us. i can't recommend a dress more. the lola and the tegan are t",5,1,2,General Petite,Dresses,Dresses +867,42,"Comfy, flattering, and classy","I absolutely love everything about this top! i bought it in the taupe/navy stripes version and got compliments the first time i wore it. i do not find the fabric to be sheer at all, but perfectly lightweight for the heat of summer. the neckline and sleeves seem tailor-fitted for my body. i don't often think much about sleeves but these sleeves are the perfect length/shape to be incredibly flattering. they're in a sweet spot somewhere in between a cap sleeve and regular-length. the neckline is eq",5,1,4,General,Tops,Knits +860,41,Exactly as i'd hoped for.,"I love the details of this top: the pleats and ruffles are so pretty and the fit is flattering, especially if you have a tummy. the arm holes aren't gaping like so many tops, so you don't even need a cami underneath to hide your bra. it is a bit on the larger side. i often wear a large, but i got a medium and i may have even been able to get away with a small.",5,1,0,General,Tops,Knits +1081,55,Perfect dress for a civil ceremony!,"This dress is gorgeous. i purchased it recently to wear to my civil wedding ceremony and it is absolutely perfect. it is light, flowy, and comfortable, but the details make it special. the sheer sleeves give it ethereal vibe that i love. the quality seems to be extremely high as well. if you are looking for a white dress that is casual, but still unique and beautiful, please give this one a shot. i cannot wait to wear it on my special day!",5,1,0,General Petite,Dresses,Dresses +1081,39,??this,"Adorable & comfortable. i'm 5'3"" and 115 lbs. i ordered an xs. it hits at my knees and is not see through. the color is pinkish in person which i like more than the photo.",5,1,1,General Petite,Dresses,Dresses +843,54,Does not have a straight line fit,"The fabric of this top is lovely. the fit not so. it does not fit as shown on the model. the fit is very large around the middle and fits more like a ""swing"" top. i am 5'9"" slim build. i ordered my usual size medium. shoulders and back fit perfectly. too much material around the middle. had it had a straight cut to it, as shown, i'd keep it. because it doesn't it's going back.",2,0,2,General,Tops,Blouses +860,67,Love this!,"I absolutely love this top.....the color, style, fit..everything! i took another reviewers advice and sized down from my normal large to a medium. i have had so many compliments wearing this top. it is very feminine, flows nicely, hangs well. love the color. can't recommend this enough!",5,1,0,General,Tops,Knits +867,42,Relaxing versatile top,"Love this casual and soft flowing top. its a nice loose fit. slightly big, however i'm petite. asymmetrical hem adds a unique touch. pairs well with a variety of denim skinnies...black, dark denim. planning to try with white ankle skinnies as well. the v-neck is just right. dips enough to show the neckline without revealing cleavage. it's the perfect lightweight layer for spring to fall. i even added a black blazer for a cool evening out. love this top and would buy in other colors.",4,1,3,General,Tops,Knits +1081,60,Another dolan classic,"I own another dolan dress which is virtually the same as this but has long sleeves. i wear the long-sleeved one whenever i give presentations or readings. the material is absolutely genius for travel. just unpack, shake it out and you're good to go. +i love the sleeves on this short-sleeved version. i'm fairly fit but at my age i'm not excited about showing off my arms! the drape is beautiful and i can wear high heels, bootees or flats with it. i bought the red. sometimes you can't tell if the c",5,1,0,General Petite,Dresses,Dresses +1099,23,Another adorable tylho dress!,"Thylo strikes again! this dress was magic the second i put it on - flowy, polka-dot magic! this baby can transform itself as you go from a casual day out to an dressy evening, with plenty of customizable options in between. to dress down, it looks great with a denim jacket, then take the jacket off and you are ready for some dressed up fun. you can pair it with tall boots or short, sandals, pumps, you name it. the ties at the neck look great undone, loosely tied, or done in a bow. leggings or ti",5,1,4,General,Dresses,Dresses +860,49,Perfectly cut!,This is a great summer top! love the way it drapes and the quality of the material. bought the ivory and went back for the rust but my size is sold out. my only complaint is that it doesn't come in way more colors!,5,1,0,General,Tops,Knits +860,68,Sleeveless ruffled top,"I love the muted red pleated ruffle tank. i usually wear a large in retailer tops. this top fit a bit loose. there is a bit more space around the armholes. this only concerns me because i can't wear a bra or cami without it showing. just mentioned this in case others may wish to buy one size smaller. i am 68, around 5/5"" and weight 144 lbs. love the young, modern tops that i find at retailer. i just ordered the white version of this tank top in a medium to see how it will fit (btw, there is a",5,1,0,General,Tops,Knits +1099,48,Polka love!,What a great light dress for spring and summer evenings. i love the length and the laid back style. this dress is true to size.,5,1,1,General,Dresses,Dresses +860,25,Cute but gigantic,"Was excited for this shirt. i usually wear a medium to large depending on the cut and material, so i went with a medium. i was swimming in it. definitely recommend ordering a size below your normal.",3,1,0,General,Tops,Knits +1081,43,,This dress fits and hangs so nicely. it is so versatile as well. dress it up or down!,5,1,0,General Petite,Dresses,Dresses +1081,66,Not for me,"Wow. this didn't work for me. loved the red color and drape and subtle shine of the fabric. but it fit like a sack. and you could see deeply into the armpits from the side revealing my bra and more. way too long. i looked silly. maybe it was the size. i'm 5'3"" and ordered the large. this was my first retailer dress order but i'm not giving up. maybe the petite would have been a better fit. don't think i'll try again with this one, however.",3,0,0,General Petite,Dresses,Dresses +1081,43,,"I loved this dress when it came out last spring in gray. this year, i got the red and sand color. it wears so easy and can be dressy or casual- depends on how you want to wear it. i would say each color fits differently, try them on. the dress is worth the price.",5,1,1,General Petite,Dresses,Dresses +860,33,Boxy fit,This is a very cute designed shirt but it fits very boxy and runs large,3,1,0,General,Tops,Knits +1081,39,,I bought this yesterday in store in the red color. normally i wouldn't spend this much money on an everyday dress- but there was no way i could walk out of the store without it! the fabric and fit are amazing. the dress has a chic-ness about it that makes you look completely put together but doesn't make you look like you are trying too hard. perfect balance of comfort and style. i'm seriously thinking i need it in black as well!,5,1,0,General Petite,Dresses,Dresses +843,32,Nice too but not what you expect from photo,I ordered my usual size and i think the length and the top (chest/arms) for great. however the bottom is more of a swing style than a straight or slight a-line as depicted in the stock photo. there is too much fabric in the stomach area and just not flattering.,3,0,2,General,Tops,Blouses +1081,52,Beautiful/runs large,"The photos don't do the top of the dress justice; it's really gorgeous. however, it runs very large. i am going to exchange it for 1 or 2 sizes down.",4,1,0,General Petite,Dresses,Dresses +860,54,Practical femininity,Love this. bought the cream in store and the burgundy online. perfect alone or to wear under an retailer sweater.,5,1,9,General,Tops,Knits +1100,38,Beautiful print,"This dress is beautiful, but not made for someone with a 36d. i ordered a 12 and i could get my chest in this dress. i really wish it fit. it's well made and very beautiful. belt does not come with the dress.",4,0,9,General,Dresses,Dresses +1081,32,"Amazing product fit, black color looks faded","I tried this product in store in red and fell in love with the fit, it fits in the most beautiful flattering way, red looked gorgeous - rich glossy fabric, this could easily be one of those effortless summer transition pieces that can go from a day dress into incredible sexy night outfit. the fabric was very lush and had this rich gloss to it, i have never seen a fabric like that, it almost looked coated. red being such a statement piece was a bit too much for me, so i decided to order the produ",4,1,0,General Petite,Dresses,Dresses +1099,32,Fun and easy dress,I saw this in the store in blue and loved it. wore it and received lots of compliments. just bought the second color online as there is free shipping today. great dress for work as the weather is warming up.,5,1,1,General,Dresses,Dresses +986,42,Love it,Love this kimono. design is bohemian and it will be a great layering piece. can be belted over simple black dress or layered with jeans and boots. almost didn't purchase because of the reviews concerned with fragile material but i didn't find that to be an issue once i felt the garment. great piece for fall.,4,1,0,General Petite,Jackets,Jackets +1099,60,,"Wonderful and comfortable dress, very sweet.",5,1,1,General,Dresses,Dresses +843,43,Easy summer top,I love that this top is double layered so it prevents any sheerness. the cream colored trim on the white top is really pretty- great combo. has a shabby chic feel. the fit is nice through the shoulders and eases up through the body - not fitted which i like.,5,1,2,General,Tops,Blouses +1099,28,Lovely style!,"I purchased this dress for a baby shower and it was just perfect. i am 5'3"" and 110 pounds and ordered the petite xs which fit great. the dress is supposed to be a tad oversized and flowy so this size worked out great for me! it will also be a nice transition piece into spring with a pair of black fringe booties :) overall, i recommend this dress!!",5,1,3,General,Dresses,Dresses +1081,68,Lovelovelove!,"This is the perfect little throw-on dress. flattering, uber-comfortable, nice fabric. i found that it runs slightly large.",5,1,0,General Petite,Dresses,Dresses +1099,38,Ok curvy peeps! ;),So i notice most ladies on retailer love to say how tiny they are. so some of us that are busty and have a hip--this is nice. i actually could've done a medium but the large was the only one and on sale. it's meant to be loose! it's kind to ladies that aren't all size 2 :),5,1,0,General,Dresses,Dresses +1100,39,Just as pictured.,"This dress is so pretty in person. the colors are great - the blue and green and just beautiful in person. the fit is tts. i happen to have a blue belt and could style it just as the model has, but really it doesn't need it. it is super flattering even without a belt. i am just a hair shy of 5'5"", and i cannot wear flats or it would drag the floor. but adding a 2 1/2"" wedge is perfect to keep it off the floor (no hemming needed). i don't usually pay full price, but i am glad i did in this case.",5,1,14,General,Dresses,Dresses +1081,39,Great dress,I have this in black and red. it's a great and flattering dress that is a worn a bit large. you can wear it out on a date or more casual. the fabric is super comfortable as well.,4,1,0,General Petite,Dresses,Dresses +860,52,Boho vibe,Flowy boho tank. great details. good fabric. wear under a long cardigan or with a pair of denim cut offs and a necklace. oversized fit. i would size down one size.,5,1,1,General,Tops,Knits +1135,53,,,1,0,0,General,Trend,Trend +860,60,Pleated ruffle tank crimson,"This is an awesome tank top, comfortable, great fit, casual but with ruffles a bit dressier than an ordinary tank top. i loved it so much i came back and bought it in the cream color. this runs a bit larger and i typically take an extra large but bought this in large and its perfect.",5,1,0,General,Tops,Knits +860,39,Too fussy and too big in the wrong places,"I tried this on in a medium in the store and it was too big overall. i thought it was a nice concept for a feminine, whimsical top so i ordered a small online. but even then a small is still too big (and i usually wear a medium or an 8 in tops). maybe if it was slimmer through the ribs/waist area it could work but it just ends up looking maternity-ish and too voluminous everywhere below the bust. the front was too short, as well (stopped higher than what is shown on the model and i'm assuming sh",2,0,2,General,Tops,Knits +460,43,Great summer staple,"Love this romper. fits perfectly, and looks like the picture. i'm 5 ft 7, 125 lbs, and usually am a size 4 or small. i ordered a small, and it fits beautifully. i've worn this a lot this summer in florida, and am getting a lot of compliments. don't be put of by the long sleeves for summer wear- the romper is loose enough and has a nice flow to it.",5,1,0,General,Bottoms,Shorts +819,43,,,3,0,0,General,Tops,Blouses +460,34,Not for me but seemed like good quality,The romper was really quite and looks just like the picture. quality felt good too. but when i tried it on the sleeves just didn't look right on me. they were too long and too big. for that reason i decided to return it.,4,1,2,General,Bottoms,Shorts +831,33,Nightbelle halter top,"Very cute on, fits well. versatile top, i think it will work well with a sweater or blazer for fall.",5,1,0,General,Tops,Blouses +933,54,Love this pullover but to late for the off white,Cool cut and texture a winner,5,1,3,General Petite,Tops,Sweaters +460,41,Surprised by how much i like it,It's really not in my typical wheelhouse. i took a chance based on reviews. the shorts are long and roomy enough. and i love it with the long-sleeves. i somehow feel less exposed in it than i thought i would. i do agree with the comment that the material feels pretty flimsy for the price point. that's a bummer.,5,1,0,General,Bottoms,Shorts +460,29,,"One of my first rompers, it's super cute. i need to get used to the puffy sleeves but my husband also really likes it and he's definitely got an opinion about these things.",4,1,0,General,Bottoms,Shorts +460,38,Gto for a summer night out,"This romper is my new go to outfit for a summer night out. the material is light weight, not flimsy. you could dress up or down. the bottoms are the perfect length. i'm a bit short-waisted, 5'7"",125lbs and the small fit.",5,1,0,General,Bottoms,Shorts +460,46,Adorable!,Very trendy and very cute. i love how it fits perfectly without being too tiny on the backside. the material is a bit flimsy for the price.,4,1,1,General,Bottoms,Shorts +1081,55,Cute dress,"I just recently received this dress in the mail. i went up a size to a 10, i am usually a 6 or 8. it fit perfectly. the top is very fitted and the bottom flows nicely. i really like this dress and am looking forward to wearing it to work or out.",5,1,0,General Petite,Dresses,Dresses +1033,53,Nice but no...,"I should have looked more carefully at the description of these before i made the purchase. these jeans, unfortunately are very stretchy which i don't like at all. i was looking for 100% cotton with no lycra-love rigid denim so these are not for me. they have a very nice design and fit tts. they are very long so expect hemming if you are not 5'10 at least! the 29 was perfectly sized and will be flattering on a curvy figure, i would imagine. rear pockets are placed very low on the bottom giving t",3,1,2,General Petite,Bottoms,Jeans +1081,26,Warning for busty ladies - othewise perfect!,"Found this lovely dress in store and wanted to try it on. fits true to size everywhere except the bust. i am a size 2-4 with a 34dd bust. i can normally fit most retailer dresses no problem though. this one was very very very tight just in the bust and squished my chest to be a very unflattering shape. + +i am 5'4 and the length was perfect just above the knee, for a youthful but work appropriate length. +i am a relatively fit but hourglass curvy lady, but certainly not a 'perfect' beach body and",4,1,5,General Petite,Dresses,Dresses +460,37,Perfect - at first :(,"I loved this romper so much! the material is thin, but perfect for summer. the style is just what i was looking for. it's so so cute and fit perfectly...at first. i wore it one time and then washed it exactly as described on the tag and it shrunk beyond recognition. it went from loose and flowy, like on the model, to little booty shorts and a body suit...not the look i was going for. i am so disappointed.",2,0,2,General,Bottoms,Shorts +1081,40,Charming dress,"I bought this dress when i saw it go on sale, and i am glad i did! love how it fits the length everything about it. it is true to size and it looks very flattering, i will be wearing it for my anniversary date with my husband. highly recommend! i am 130 lbs, 34d, and the size 6 fit perfectly!",5,1,0,General Petite,Dresses,Dresses +1081,43,Polka dot perfection,"This dress is super sweet, but also unique with the reversed fabric on the skirt. it is true to size, unlike a lot of retailer clothes that seem to be boxy/run big. the fabric bunches a little bit at the waist though -- that's my only complaint.",4,1,0,General Petite,Dresses,Dresses +831,64,Beautiful but strange back design,"This top is very pretty and looks expensive and as pictured +nice pattern and could be dressed up or down +the gathered neck is beautiful and has a bit if a stretch +however, the back of the top has strange bat wing-like design element that seem unnecessary and distract from the elegance of the rest if the top +sadly, i think i may send it back.",4,1,5,General,Tops,Blouses +819,53,Too boxy for petite frame,"This was a bit of a disappointment. the colors are beautiful, but the shape was not flattering on my petite frame. it is somewhat wide and boxy in the shoulders and body. the fabric is stiffer that i expected, and therefore it doesn't drape nicely on the shoulders and through the torso. if you look closely at the model, you can see what i am talking about at the shoulder. the shoulders stick out a tad, and the gathering at the neck contributes to the larger, boxy look. this might look nice on th",4,0,18,General,Tops,Blouses +1081,35,This dress hit the spot...,This dress was just perfect. the fit was just right and it is made well. love the ruffles... could definitely be dressed up or wore casual. great dress all around ... a keeper!!!,5,1,0,General Petite,Dresses,Dresses +1081,35,,"Sized up due to my 36ddd breastfeeding bust and the 14 for perfectly. i am 5'6 and 165lbs, just fyi. dress is super flattering on my post 4-baby body. it's very slimming. looking forward to wearing to a casual wedding,",4,1,6,General Petite,Dresses,Dresses +819,62,Will be wearing this shirt all summer!,"After reading the other reviews, i took a chance and ordered the peach one and the blue (red?) one in large. i am usually at the top end of xl's, but i've noticed that holding horses items tend to run a bit bigger. i hit the jackpot with this one. yes, it's a little ""boxy"". all the better to hide what i want to hide. the length is perfect for me and the gathers at the shoulders give enough room across the chest so that it doesn't pull at the buttons. the peach one came today, and i was a bit sur",5,1,0,General,Tops,Blouses +1081,45,Adorable dress,"Love this piece! i hope to see more cute, fun dresses like this from retailer. the greatest feature is it is super comfortable! it could be worn to a great number of events, dressed up or down for any occasion.",5,1,0,General Petite,Dresses,Dresses +819,50,Blousy back,"Beautiful crepey fabric, lovely color. i was surprised to see gold threading in the peach option; i'm not a big gold thread fan, but it's do-able. the ruching across the back makes the fit very loose and blousy. this is not a figure-defining piece. but it's comfortable (will probably be more so after a wash to get that stiffy factory fabric finish feeling out), and versatile.",4,1,0,General,Tops,Blouses +1081,45,Just perfect!,"Love, love this dress! the fit is perfect, the cut is feminine and flirty but not too showy and bare. there is the perfect amount of swing and it's a great length, i can't say enough about it. i think it's worth the price, which i have to admit, i was hesitant about. so comfortable and versatile! i see it being worn quite often! +keep dresses like this coming! +btw, the neck line is flattering on every body type! +for reference, i'm 5'3"" and weigh 110 lbs and i purchased a size 2, but i think a",5,1,2,General Petite,Dresses,Dresses +1081,55,Lovely just lovely,Someone recommended to size up if u have large breast and i am glad i did! it fits like a dream! this is the cutest dot dress i have ever tried.,5,1,0,General Petite,Dresses,Dresses +1081,35,Great bra-less option,"I literally bought this dress 2 days ago and now it is listed as ""no longer available"" on the retailer site. i am a size 12 with about a 36b-c bust. the thing i love about this dress is that it looks really nice without a bra. i was really surprised at how well constructed it was.",5,1,3,General Petite,Dresses,Dresses +898,47,Midnight dream,"Perfect for dressing up or dressing down with a pair of jeans. this pullover can be worn during all four seasons of michigans weather, which is a bonus for me. it can also be paired with heels, booties or flats making it extremely versatile.",5,1,1,General Petite,Tops,Fine gauge +1081,57,Runs short,"I just received this in the mail today! fabric and construction are beautiful and high quality. my only concern was that it ran short on me all around. i am 5'2, 100lbs, 32b, 24 waist, 33 hips. the dress was an appropriate length all around but ran very short in the arm holes, the back cut-out, and the waist. i felt like i was trying to wear a little-girl's dress (and i tend to be short waisted and long-legged as is). i may exchange it for a regular size because it is such a beautiful dress!",4,1,4,General Petite,Dresses,Dresses +460,48,Too narrow for this romper,"I wanted to like this romper, it is very cute and colorful, but to top was overywhelming for my size and made me look even shorter.",3,1,0,General,Bottoms,Shorts +819,46,"Metallic gold in peach, not so apparent in photos","Bought peach online, but exchanged for other color. there is a metallic gold stripe that i didn't expect in peach option. i thought i would mention as it wasn't so apparent in photo. interestingly there is no metallic thread in the other color option.",4,1,3,General,Tops,Blouses +819,52,Gotta love lurex,"The 'peach' color is actually a lovely shade of rose and the smocked detailing at the shoulder is exquisite - but there are bold stripes of gold lurex running through the plaid. if you like that kind of thing, you'll love this blouse. it hangs well and is a substantial but airy fabric.",4,1,0,General,Tops,Blouses +460,41,Not as expected,"It was so cute in the pictures and i was looking for something to wear to my trip to europe so i purchased it but it really didn't live up to my expectations. i'm 5'3, 115 and got a s. it looked odd on me...a little too short on the bottom, a bit too big on top and overall i thought the material looked cheap for the price. i returned it.",2,0,0,General,Bottoms,Shorts +1033,57,Low in the back.,"1. i'm 5'5"" tall, 145 lbs, and 38-32-40 and the pilcro hyphen chinos and stet chinos fit me perfectly, if a bit loose in the size 30. the size 30 in this flare pant was snug in the hips and waist and loose in the thighs and legs. i could not tuck a shirt in. + +2. the front pockets with the leather trim are sewn shut. i'm fine with this, as it keeps the pockets aligned properly. however, there are still pockets on the inside incase you want to unpick all the stitching that's keeping the pocket clo",4,1,23,General,Bottoms,Jeans +943,43,This looks different in person,"I don't think the sweater looks like the one pictured. it's pretty and i love off the shoulder sweaters, but i have to say it's a little scratchy and its a lighter grey than what shows on my computer screen. if i hadn't gotten it on sale and with an additional birthday discount i would send it back. it also runs big. i got an xs/s and it fits perfectly. im 5'6"" and weigh 140. i usually wear a medium in most things and am a size 8. i like it a lot, but i don't love it. it also reeked of patchouli",3,1,2,General,Tops,Sweaters +819,45,Beware shrinkage!,"I really liked this shirt the one time i got to wear it...but when i washed it, according to the directions on the tag, it shrunk! a lot! the sleeves are now too tight, and it is much shorter. thinking about returning it to the store, but in any case, i cannot wear it again.",1,0,0,General,Tops,Blouses +1081,41,Pretty and flattering,This dress is flattering and seems to be made well. the polka dots add interest. i am usually a 2 and did go up to a 4 in this. .,5,1,0,General Petite,Dresses,Dresses +898,44,Bohemian *light*,"I like the pointelle feature in the front. i end up wearing a lot of black, but this at least gives me the option to do a bit of color underneath if i so chose. i've worn this with white, black and blue jeans w/ boots. looks great. i'm 5'3"" and 125 lbs. i got a medium, but i could have possibly gone with a small. my only complaint is that it might be a tad bit too long. since i'm on the shorter size, i can't imagine it would be too much of an issue for others.",4,1,0,General Petite,Tops,Fine gauge +866,60,Wrong mountain,"The design and style of shirt is quite cute -- but the mountain pictures is not mont blanc, nor does the mountain find itself near chamomix. +it is an unmistakable image of the matterhorn and the small town of zermatt is at its base.",2,0,1,General,Tops,Knits +1081,34,"Busty ladies with curves, size up!","Like other ladies have mentioned, this dress runs small in the chest and waist region. you must size up! +__________ +pros: +- flattering fit and flow. hides lumps and bumps. +- cut at the neck and back is cute and didn't make me look chunky surprisingly. +- little red polka dots aren't overwhelmingly at all and add a nice retro feel. +- good overall length. +- usa made! +__________ +cons: +- runs small in the chest and waist. i'm a 36c, hourglass, 170 lbs and normally can wear a size 10 in tops",4,1,6,General Petite,Dresses,Dresses +460,31,Amazing,"This fits so perfect! it is light fabric, not clingy. very flattering! i am 5'4 120lbs with athletic build.",5,1,0,General,Bottoms,Shorts +1081,57,So so cute!,"This dress fits so perfectly. just the right amount of skin, not too bare, not too short, not too long. can't wait to wear it. great quality.",5,1,16,General Petite,Dresses,Dresses +460,25,Great color,"This romper was so cute and with the great reviews i thought i needed to try it...but once trying it on i realized it was an odd fit, there is not enough fabric to make it look as relaxed as it does on the model. also, the sleeves were a bit wider than they look in the picture. would probably work well for someone with a petite figure.",4,0,0,General,Bottoms,Shorts +460,53,I love it!,"I wasn't sure how this was going to look on me, but it was so darned cute, i had to give it a try. and i love it! i'm 5'4"" around 130lbs and i bought both a small and a medium to try. the medium fit best. the length is perfect. hits just a little bit longer than the model but almost the same. the material is light but nothing see thru about it. it is slimming and looks so cute on! so glad i gave it a try.",5,1,2,General,Bottoms,Shorts +460,44,Love!,This romper checks off all the boxes! it's beautiful and the fit is perfect!,5,1,0,General,Bottoms,Shorts +1033,48,Love,"This is m frist pair of flares, and i love them--make my legs look miles long and they're also my most comfortable jeans. i'm 5'4 and around 108 lbs with narrow hips--the 25 fits perfectly. i've worn them with 3 inch heels and the jeans dust the floor (longer than on the model but i like that look; if i wanted to wear them with flats they'd need to be hemmed, but i prefer heels anyway) ii've avoided high-rise jeans out of fear they'd look matronly, but combined with the flare, the high waist is",5,1,2,General,Bottoms,Jeans +448,28,"Cute, breezy shorts","I was really lucky to pick up these shorts during the tag sale, and they are great! lightweight, roomy in the legs (way more my speed, i prefer shorts that don't cling) and really soft. they also weren't too short. i am usually between two sizes at retailer, depending on the brand, and ended up going with the smaller size. they're not really a size too big, but would've been a little too roomy/baggy in the waist, had i not purchased the smaller.",5,1,0,General,Bottoms,Shorts +460,34,Great romper - but read the reviews about washing!,"I purchased this romper over a month ago and love it! i ordered a s and would say that it is true to size. it falls well and i love the blousy look on top. it is expensive at full price, but i purchased it with a promotional discount. luckily, before i washed this (as the tag says handwash only), i read the reviews in which some reviewers had said that they followed the directions and it still shrunk. i let it sit in my hamper until today after i read online about using dryel and rayon. dryel in",5,1,0,General,Bottoms,Shorts +460,25,So adorable,This romper is adorable!!! i love the long sleeves!,5,1,0,General,Bottoms,Shorts +1094,36,Cute dress,I loved this dress immediately. i got the blue and orange and love the combination of the top fabric and the flowy skirt. only one complaint. it's a bit short on one side so i'll have to wait for cooler weather to wear it with tights (if i want to wear it to work).,4,1,0,General Petite,Dresses,Dresses +860,43,Great versatile top,"I really like the style of this top, the open sleeves are subtle. i think it is even work appropriate in a business casual environment. it is slightly short waisted in my opinion and runs a little small, but my usual medium worked for me. i am a solid 8.",4,1,0,General Petite,Tops,Knits +895,36,,,5,1,0,General Petite,Tops,Fine gauge +1056,49,Super cute,"I just received these pants and they are really cute. they are casual but i think with a cute top/jacket and heels they can be appropriate for a fun night out or casual date. they are really comfortable but they do stretch so size down for sure. i am 5'5"" and weigh 130 lbs and wear a 4/6 in antho. pants that aren't chino fabric but wear a 28 in designer jeans. i ordered a 26 and can probably wear a 25 when these stretch out. i will keep the 26 but they will be baggy. i ordered the kakhi and the",5,1,0,General Petite,Bottoms,Pants +1094,48,Beautiful dress,"Casual dinner out dress love the color, mine is navy.",5,1,0,General Petite,Dresses,Dresses +1094,46,Cute and flattering but some flaws,"This caught my eye and i tried it on the in the store today (the green). i found it to run a little bit large - i expected the small to fit, but the xs fit me better (better fit in armholes and also less billowy). i really like the way it looks, but ulitimately did not purchase it today. i might reconsider on sale. the flaws (in my opinion) are that it is dry clean only, the skirt is not lined (and should be), and it's a bit overpriced for the quality. but on the other hand, it's very cute and f",3,1,8,General Petite,Dresses,Dresses +257,33,,"Amazingly soft jacket! tried this on and three sales girls all said they wanted it! the other reviewer said there wasn't any pockets but yes there are- they are sewn so you have to undo the stitching but they are there!! perfect jacket at a great price. first time i wore it, i received several compliments.",5,1,5,Initmates,Intimate,Lounge +1055,60,Not side zip and huge!,"I ordered these because of the side zipper, but they zip in front, even though the order listing and bag label called them ""wine, side zip pants."" they were also at least two sizes larger than marked and very flimsy material. what bothers me is that i was charged $5.95 to send them back, even though the product description (and the name before someone changed it on the website) were wrong.",1,0,0,General Petite,Bottoms,Pants +860,33,,,5,1,0,General Petite,Tops,Knits +860,39,Meh,"I agree with those who thought this material looked a little cheap. i ordered the white knowing about the sleeves and thought i'd like the slits, but the material + sleeves definitely gave an undesired pirate vibe. + +true to size.",3,0,0,General Petite,Tops,Knits +1094,32,Perfect for summer,"I want to address that with lightweight but not too skimpy for the summertime, and the stress works perfectly. i got the red in a small, and although one reviewer said that she did not like that the top and bottom are two different materials i actually think it's super cute. not sure if i would pay the full price, but the 20% off sale made it worth it.",5,1,9,General Petite,Dresses,Dresses +895,37,Yummysweater,Sooooo soft! not a ton of shape but very versitile and warm!,3,1,0,General Petite,Tops,Fine gauge +1056,57,Favorite brand,I love these pilcro cropped chinos. i ordered them in the sand and will be ordering them in the grey. they are very soft and comfortable,5,1,0,General Petite,Bottoms,Pants +1030,28,Sadly had to return,"I absolutely love mother jeans, but i unfortunately had to return these ones. this particular style seemed to run pretty small. too, i always size up in white jeans, and even the size up that i had ordered were just too tight. i typically wear a 28 in mother, and ordered a 29 in these.",2,0,2,General,Bottoms,Jeans +257,39,Super comfortable and surprisingly warm,"I received this for christmas this year and have already worn it several days in a row. it is warm enough to wear while walking the dog in the snow and can also be worn to lounge around the house. + +the only reason i didn't rate it a 5 is due to the design fact that it doesn't have pockets. i don't love to carry a purse around all of the time so i use my coat pockets a lot. regardless though i would definitely recommend this especially for the price. i was expecting to come here and see this pric",4,1,6,Initmates,Intimate,Lounge +907,47,,"Really wanted to luv this top buttt it ran small in arm length & in the front, bottom...backside was perfect coverage...also most important this top is see-through! item as pictured is not accurate!",1,0,2,General Petite,Tops,Fine gauge +1147,36,Great design,The top is totally see through and fabric some what itchy. it also feels cheap to the touch. i love the idea but can't keep it for this price...i'm a shorty so i'd have to hem it too! sadly will return.,2,0,2,General,Trend,Trend +1078,35,,,5,1,0,General,Dresses,Dresses +257,61,Very cute and comfy,"This is my favorite weekend jacket! it is so cute, soft and comfortable! the interior is an extra soft cotton that feels like my most favorite soft tee-shirt?? it is true to size. the best features are the versatility of the neck, pockets. and a little longer in the back - great over leggings/yoga pants. i ordered 2 sizes just in case the sizing was off - an xxs and xxs. i am a 2 petite and the xs is roomy enough for a sweater or sweatshirt under it. the xxs looked and felt great too and had a m",5,1,4,Initmates,Intimate,Lounge +1094,62,Cute dress,"Love this dress. i like that it is somewhat form fitting but also has a nice swing to it. green color is nice for summer. +bought a similar maeve dress last year and it was all cotton like and soft, this one has a soft top but a different material on the bottom. a little scratchy and crinkly. wish the entire thing was as soft as the top",4,1,10,General Petite,Dresses,Dresses +1055,36,,"I'm baffled why none of the other reviewers have mentioned how large these pants are. i ordered the petite small, and i'm always a small. these are huge. i felt like i had on a large. i like the thin material and color, and i'm sad that they are so large.",1,0,0,General Petite,Bottoms,Pants +866,23,Weird seams,This would have been a cute top but the shoulder seams come halfway down the arm and give it a really weird shape. it looks smooth and fine on the model but in real life they stick out and make you look boxy. too bad!,2,0,3,General,Tops,Knits +895,23,,"I am tall and this sweater is a great length. very flattering, slightly loose across the tummy. i have the red/mauve color and may order the gray too. super soft , medium weight sweater- very versatile. love",5,1,8,General Petite,Tops,Fine gauge +1094,29,Seriously comfortable with vivid colors!,"This dress has a really lovely design and is very, very comfortable. it is not quite as flattering as i had hoped, and doesn't have quite as defined a shape as i expected. still, it's cute and i'm happy to have it!",4,1,0,General Petite,Dresses,Dresses +863,73,,"Love the color and design but way to small. i can wear a small in many manufacturers but certainly not in this one. the medium was like an extra small. sorry because i liked what i saw in the advertisement. +as an older lady i love your well made, fresh, styles but need to be able to trust that a size is true to form.",3,0,4,General,Tops,Knits +1094,36,Love it,"Bought this dress in the blue and absolutely love it! it looked big in person, but when i tried it on it fit perfectly. i'm 5 foot 120 lbs and got the petite small. the colors are vibrant and will really stand out. cant wait to wear it!",5,1,0,General Petite,Dresses,Dresses +895,31,Perfect fall sweater,"This is such a great casual fall sweater. it's so comfortable, has a bit of design too it, and it goes with everything! i bought it in the grey and love it! fits a bit big",5,1,1,General Petite,Tops,Fine gauge +828,53,Soft and lovely,This is now one of my favorite retailer button downs. it's super soft and super flattering. it's everything you'd want this cute shirt to be!,5,1,0,General Petite,Tops,Blouses +860,37,,"Ordered this as a gift. she said it is great! nice fabric, great fit.",5,1,0,General Petite,Tops,Knits +1055,39,Looser fit and thin,"I ordered these in eptites, tey were a ltitle long still. also a tiny bit on the loose side. i am not sure i think they are worth as much as they cost, so wil lwait for hte sale. color combination was nice though,a dn the cut relatively flattering, i jsut ahve seen better out there for hte price. nice business/casual pant.",4,1,8,General Petite,Bottoms,Pants +907,39,Love - soft and feminine,"I decided to order this on a whim during the promotion on tops, why? because it looked decent and i like the other tops from the same brand. i am so glad i did, it is even better in person. + +color: nice ivory with subtle speckle in it. very neutral in color, but also on the warmer side. the fabric is a little sheer, you could definitely see my bright colored bra, but a nude one will do the trick. + +the length was a little longer, and the sleeves were a bit long too (doesn't come in peite0, bu",5,1,4,General Petite,Tops,Fine gauge +895,63,Love this sweater in black,Very nicely made sweater which fits well. i bought the black with white accent and am very pleased with my purchase. the small fit me perfectly (34d) can't wait to wear it this fall!,5,1,1,General Petite,Tops,Fine gauge +1094,30,Fit and flattering,"Gorgeous dress. ordered the orange in an xs. i'm usually a small in retailer but the reviews accurately assessed this dress to run large. i'm 5'7"" about 140lbs and this dress is just above my knee. very flattering and feminine. only issue is that the bottom is a thin material that can be see through in the right light...",5,1,1,General Petite,Dresses,Dresses +1056,42,Great casual pants,"I ordered these in teal and once they arrived, i bought another pair in gray. great for casual office wear or weekend errands. a bit of a stretch in the material and a true to size fit.",5,1,0,General Petite,Bottoms,Pants +895,43,Great sweater for fall,"This sweater is adorable. i got it in the grey pattern. it's got a great, forgiving fit, lots of stretch, with a hi-low waist, in a thick, soft knit and 3-quarter sleeves. the contrasting collar and cuffs add interest. it's great with jeans or dressed up with a pair of slacks. i can't wait for the weather to cool down so i can wear it. i might get it in more colors, too. it's a great basic.",5,1,17,General Petite,Tops,Fine gauge +1094,42,Beautiful fit,"This dress has a beautiful fit--5'4"", 150 lbs, 34ddd, and the medium regular fit great. the only issue is that the bottom part of the dress wrinkles terribly. when i bought it, the woman folded it nicely, and i stashed it in my car for the rest of my shopping trip. when i arrived home and pulled it out, the bottom of the dress was horribly wrinkled. plus it's dry clean only. going back. :(",4,1,1,General Petite,Dresses,Dresses +907,41,Love this top! simple with pretty detail.,"I was so excited for this top! it looks exactly as pictured. material is soft albeit slightly see through but if you wear a nude bra, it's fine. i love the ruffle details and it's very comfortable. i'm 5'7"", 140 with an athletic, hourglass shape, 32dd chest. i bought the small and it's perfect. the medium would have been a little looser fitting with more drape but i enjoy the fitted look. don't pass this up. great price point and sure to be a staple.",5,1,6,General Petite,Tops,Fine gauge +895,41,"Beautiful, soft cashmere","This is a beautiful and super soft cashmere sweater. i found it to run large, so thankfully i ordered one size down, which was perfect. i'm normally xs, but the xxs was very flattering, still loose and casual, but fitted in the waist and arms. it is longer in length and hit mid to lower hip on my petite frame. the regular was fine, but a petite would probably be great. the sleeves are nice and long and have a pretty lace stitch detail. the cowl is nice, not too overwhelming. this is so soft and",5,1,0,General Petite,Tops,Fine gauge +860,42,Not as expected,"Guess i should've looked at the pictures more closely. i ordered the white version and in the pictures you can't see that the sleeves are split - and it barely shows in the picture for the blue version. it also would've helped if the detail of the sleeves were noted in the item description. anyway, i will be returning this top because i don't like the way the sleeves look each time i bend my arms. looks a bit pirate-like to me.",2,0,26,General Petite,Tops,Knits +1056,59,Sizing inconsistent,"These are a great casual pants with a lot of style. my major disappointment comes from the inconsistent sizing within the size runs. i purchased a 29 in store which fit i then ordered another 29 online which did not fit, there is at least an inch difference please see photos. i then ordered a 30 online to see if that would be better and there's over 2 inches of difference within the same size run of the 30s. + +who is making these pants? can't they get the pants to be the same size within the sa",3,1,0,General Petite,Bottoms,Pants +1055,29,Perfect work pants for warm weather,"These fit much better than expected. they are made of a very comfortable lightweight fabric. not very substantial, but they will be great for the summer. i was worried that they would be too roomy in the hip area, but the cut is rather flattering. such a great deal at the sale price.",4,1,0,General Petite,Bottoms,Pants +860,39,Cute top!,"I saw this in the store, it is definitely something i had passed over on line. it is so flattering on! i bought in ivory then immediately ordered the grey online!",5,1,3,General Petite,Tops,Knits +270,41,Gorgeous!,"This bikini is so gorgeous and fit me like a glove. i'm a true xs, bra size 34a. i ordered the small. this was more than worth full price!",5,1,0,Initmates,Intimate,Swim +860,27,Love it!,"I seriously love this top, and at the sale price it's a steal! i ordered the ivory color and it's just as beautiful in person as in the product photos. i thankfully read the reviews and knew that the sleeves would be slit. i think the slit sleeves add more interest to an otherwise basic blouse. it can be dressed up or down and is great for work (at least in my very casual office). the fit is perfect; i ordered my normal size medium and it's definitely true-to-size.",5,1,0,General Petite,Tops,Knits +895,48,Perfect fall/winter swearter,Fits perfectly! super soft and well-made! love the 3/4 sleeves and back drop. i can expect i will wear a lot in this coming fall/winter season in ca. highly recommend!,5,1,0,General Petite,Tops,Fine gauge +1094,54,Cute dress,I got this dress in neutral motif. looks very cute and the size is perfect.,4,1,4,General Petite,Dresses,Dresses +1094,67,Love it!,"I was a little hesitant to order this dress because of the a-symmetric hem. being very petite i thought it would be too bold for my small frame. i loved the colors though-- i ordered the one in red--and the the way the dress twirls and flows so i took a chance--and so glad i did! +the dress is beautiful and unusual and so very flattering. the top portion is of a heavier fabric,so no see through at all. the slanted cut of the white and tan portion is very slimming and flows beautifully into the r",5,1,5,General Petite,Dresses,Dresses +860,33,Fabric looks inexpensive,"The arm slits are actually subtle, and don't gape open. the chiffon type pleats are lovely, but the cotton material they overlay appears cheap and isn't dressy enough for my work.",3,0,0,General Petite,Tops,Knits +1094,29,,"This dress in the blue motif has a really flattering fit and look. the dress especially in this color, hides the belly area well and does not make you look wide if you are heavier in the bottom half. it is not too short and goes past my knee. i am 5'3'.'' the material is also really soft and the dress is easy to pull on.",5,1,2,General Petite,Dresses,Dresses +1056,23,Super cute pants!,I ordered these online. i usually wear a 4-6 depending on the brand. i ordered the 6 and love the way they fit as i didn't want them tight. they have a lot of stretch and the fabric is nice quality.,5,1,0,General Petite,Bottoms,Pants +257,48,Wonderfully soft jacket,"Love the asymmetrical zipper, style, fabric and color. so soft, comfy and warm. i got a size small and it fits perfectly and isn't tight or loose. the pockets are sewn shut but easily opened by cutting the thread with scissors. highly recommend this cute and functional jacket!",5,1,0,Initmates,Intimate,Lounge +895,20,"Lightweight, sheer sweater","I ordered this on line. pretty, but ran large so returning. i am 5'10"" and 140lbs., not large chested, and the m was too loose and looked frumpy. the sweater is a very soft, loose, knit that requires a cami underneath as it is slightly sheer. it was not quite as soft as expected for cashmere but good value at sale price.",3,1,1,General Petite,Tops,Fine gauge +895,76,Belt missing,"I ordered this quite nice cardigan. i received the sweater promptly (yay fast shipping!) but never received the belt to it. i tried emailing about it, but didn't get a response. the sweater really is the softest thing ever but it will not close without the belt and trying to use a different belt just doesn't work. i hope to receive the belt soon, because i'd really like to wear this a lot this winter.",3,1,1,General Petite,Tops,Fine gauge +1056,52,So comfortable!,"I fell in love with these cropped pants & first purchased a size 31 but realized that they do run true to size so i exchanged for a 30. i usually wear an 8-10 pant size. + +i am so happy with these chinos!",5,1,0,General Petite,Bottoms,Pants +828,36,,"Very pretty and soft, love this designer. be warned it definitely runs large. it's supposed to be loose-fitting, but i ordered my normal size and it looked as though i was wearing my husband's shirt.",4,1,2,General,Tops,Blouses +1078,62,Patch work dress,"I love this dress . +perfect fit and very good quality.",5,1,3,General Petite,Dresses,Dresses +1094,27,"Stylish, professional, comfortable","I love this dress. wearing it is the equivalent as wearing your coziest t-shirt. there is stretch up top if your chest needs it, the neckline is modest, the stripes and geometric pattern are flattering and vibrant, but not gaudy in the slightest. the length is perfect with the shortest part at my knee. silhouette is tight at the natural waist and flares out in the most flowy and flattering way. i got the large. i am 5'7"" and fluctuate between 170 -185 lbs.",5,1,0,General Petite,Dresses,Dresses +1056,45,Awesome chinos,These chinos fit great! they are extremely comfortable and true to size but note that they do loosen up quite a bit with wear. i bought all 3 colors!,5,1,0,General Petite,Bottoms,Pants +1117,74,The outfit-maker,"I love lightweight coat-jackets, of which this is a great example. they effortlessly pull an outfit together and give real personality to simple staples. the unstructured linen, while indeed lined, gives this coat a casual drape for spring/summer. i see it paired with bright red joggers and a white t, with chambray or white linen pants, even as a chic beach cover-up. i un-tacked the cuffs to give the sleeves a simpler look, but it's decidedly day and casual as opposed to evening or work wear. fu",5,1,6,General Petite,Jackets,Outerwear +828,51,Wanted to love,I so wanted to love this top. i first ordered in the medium because previous reviews said it ran large. i got the medium and it ran so small in the arms that i could almost not get it off with ripping it. so i ordered an xl hoping that would work. unfortunately it ran just as small i'm the arms and i had to return.,3,0,0,General,Tops,Blouses +1056,53,Love the fabric,"I don't usually have the best luck with pants from retailer but something made me try these on. i am so glad i did! i love the fit and the fabric, they are so soft and comfortable.. i loved them so much that i bought an additional pair of the grey wanted the turquoise but they were sold out of my size so i settled on the sand... i will definitely try other styles of the pilcro.",4,1,0,General Petite,Bottoms,Pants +1094,47,Structure and flow,"This dress is so versatile. the knit top is nicely structured and the flowy skirt is forgiving and flattering. i bought the white, gray and poppy colored one, and i think it's smashing.",4,1,0,General Petite,Dresses,Dresses +1094,35,Clean and cute,"I love this dress. i got the coral, and it's clean and simple, but with visually interesting lines. the top is a slightly heavier, stretchy fabric (no zippers or closures), while the skirt is made of a lighter fabric that gives it a bit of flirty swing. the hem is also slightly a-symmetrical, which i didn't notice from the online pictures. it's a very comfortable dress that i could see being very versatile - dressed up for work, dressed down for daytime weekend wear, or even for date night. (i a",5,1,15,General Petite,Dresses,Dresses +1094,23,I need to try on the petite version,The regular length i tried on in store definitely didn't work for me. for reference in the photos i have a medium on and my measurements are 38-30-40.,3,1,3,General Petite,Dresses,Dresses +895,45,"Softest, most flattering sweater","I had been eyeing the maroon one and i snatched it as soon as it went on sale. when i pulled it out of the package, i could not believe how soft it was. literally, as a cloud. think of the softest, fluffiest baby blanket. also, the cut is extremely flattering. i am 5'7"", 135 lb and the medium fit me perfectly, flowing, but not boxy. love it!",5,1,0,General Petite,Tops,Fine gauge +895,31,,,5,1,0,General Petite,Tops,Fine gauge +1094,38,Beautiful light and versatile,"I love this dress - design, fabric, colors +currently wear it as maternity and it's super cute but it is my size and can't wait to wear it next spring/summer as a regular dress when i can show off a more slender waist. get compliments all the time. dress up w a pair of heels for a date night or dress down w flip flops :) +the fabric on the bottom wrinkles easily when gilded so not ideal for travel but that's a minor thing",5,1,0,General Petite,Dresses,Dresses +860,71,Useful top,"I love this, despite the split sleeves. the day it arrived i paired it with a black boucle midi skirt (from retailer) jewelry and mid high black slings and we to out to dinner with friends. several people complimented me so it must have looked as i'd hoped. i have worn it one other time with straight legged pants and a cashmere cardigan and felt comfortable and a bit more dressed up than usual slacks, jeans and shirts. it is soft, feminine and comfortable...the ubiquitous ""dress it up or dress it",5,1,0,General Petite,Tops,Knits +860,43,The sleeves.....,"I was aware of the split sleeves when i purchased-- hoping to try something new. they're not attractive. the slit stays open with any movement. i don't think it would be appropriate for work . overall the fit is true to size. i otherwise liked the design, but the sleeves made this a quick return ....",2,0,1,General Petite,Tops,Knits +895,44,Itchy and dull,When i returned this the salesperson asked what was wrong w it bc it keeps being returned. i got the black w the white collar/cuffs. i thought it was terribly itchy material (which could be remedied w a shirt underneath) but the white collar part was such a dull ugly white-dirty color. maybe the other colors are better?,1,0,1,General Petite,Tops,Fine gauge +1030,37,I ordered up 2 sizes,"I usually wear a 27 in ag and other designer jeans. i ordered a 29 based on the other reviewers. they fit like the model and look great. i might have been able to go with 28 if these end up stretching out, so i'm hoping they don't. they are nice and thick for white jeans, yet soft and comfy.",5,1,0,General,Bottoms,Jeans +1056,48,Love these pants!,Just received these pants today and i absolutely love them! the material is super soft and the fit is true to size! i ordered the tan color. i really like the wide leg and the frayed bottom!! i may order the gray too!,5,1,6,General Petite,Bottoms,Pants +860,22,Statement sleeves leave me timeless and trendy,"So the other review complained that there are slits on the sleeves of this blouse. yes, that is true. however, i love that about this blouse! i tried this blouse on in the store so the slits were not a surprise to me, but i can understand how they may upset a customer who wasn't expecting them. i think the slits are elegant and are in no way obtrusive or revealing. you could totally still wear this blouse to work or a nice dinner. i love it because its unique enough to be worn alone and simple i",5,1,18,General Petite,Tops,Knits +860,52,,"Bought this in navy. needed something comfortable, but able to dress up denim. this was perfect! wore it already and immediately got 2 complements. the only drawback was that the elastic in cuffs was a little too tight and my forearms are not large. bought in medium. i'm 5'8"" and 145 lbs. just washed it for first time. noticed that it dried a little wrinkly in front. may have to steam to get wrinkles out, but still worth it.",5,1,1,General Petite,Tops,Knits +1094,50,Oddly shaped.,"I thought i'd like this dress in the neutral color. i had to return it it as it was quite unflattering. the skirt made my hips look big and the uneven shape didn't help. the top fit well, in my usual 4 petite, i think it would look nice on some people, as it's something different but i am not one of those it worked on.",3,0,4,General Petite,Dresses,Dresses +1094,38,Not as nice in person,"The design looked super cute online, but in person, the material seemed cheap. actually, at least in the green one, the material is different in the striped and solid sections; if it had all been the striped material, it would have been much nicer.",3,0,25,General Petite,Dresses,Dresses +1094,36,Comfortable dress!,"I love this dress! i bought the blue one and i love the designs. i recently had a baby so my body is still recovering so finding clothes is a bit difficult, but this dress looks awesome and it makes me feel like how i was before i was pregnant! it flows nicely and is super comfortable.",5,1,0,General Petite,Dresses,Dresses +895,24,Great sweater for the fall season,"I went to my local retailer store in kansas city,mo at country club plaza and let me tell you when i saw this sweater i mediately fell in love with it. i bought mine in the red color in a size medium and it fit me perfectly. i would definitely recommend getting this sweater because it's so soft and very flattering on my body type. i also love the pattern and definitely worth the money!!",5,1,5,General Petite,Tops,Fine gauge +1056,59,Great quality,"Okay, i am not that tall and don't have legs for miles, but i loving wearing a wide-legged cropped pant with heels for a change from the everyday. these pants are great because they are 99% cotton. the cotton is a nice weight (not too light) and the barely there fringe bottom is a nice detail. i usually wear a 28 in pilcro and that's what i bought! i would describe the color as leaning more toward khaki than green, though it did look little green under the lights in the store.",5,1,2,General Petite,Bottoms,Pants +860,38,True to picture,"Due to the prior review, this top came without any surprises. i had read about the open sleeves and actually have a dress with a similar design. this top can be dressed up or down and is perfect with skinny pants.",4,1,0,General Petite,Tops,Knits +1094,37,So many compliments!,"This dress is so flattering and comfortable. i bought it in xs and it fits perfectly. i'm 5'7"" and weigh 135 - i usually wear a small but the small would have been too roomy on top. i got so many compliments on the dress (in blue) that i ordered it in green as well! perfect combination of comfort, style and flattering fit.",5,1,0,General Petite,Dresses,Dresses +1094,32,Comfortable and flattering,"I got this dress in green and it looks better in person than it even does in the online picture. the fabric is soft and flattering. i am pear shaped so a lot of things don't look good around my waist, but this worked beautifully. the only thing is that i can't get the slight wrinkles out of the bottom. i washed it and lined dried it and some still show. the care says not to iron. a steamer would probably work well on this. the slight wrinkles are not an issue for me though. well worth it and a g",5,1,0,General Petite,Dresses,Dresses +1056,43,Comfortable and stylish,"I love these pants, they are soft versatile and stylish! great choice!",5,1,0,General Petite,Bottoms,Pants +866,35,"Very cute, challenging fit","This top is adorable and has a looser fit (as shown on the model shot), so i would have liked to size down; however, the arms are extremely fitted/tight and there's no way i could have fit my arms into the next size down. if you have slim arms, maybe you could size down and make this work.",3,0,5,General,Tops,Knits +1056,60,Comfortable,I liked these as soon as i saw them. the are very comfortable and the fit is great. well constructed and the material is soft but thicker.. easily worn into the cooler days. i am so happy i made this purchase!,4,1,0,General Petite,Bottoms,Pants +257,66,Product has holes in the pocket area,This is a very soft and comfortable jacket but it has holes in the pocket area. it was returned to the store and the other jackets had the same problem although not in the same area. the store was considering pulling the product off their shelves. it is unclear if the holes are just the beginning of a pocket or what. but it was flawed by everyone who looked at it.,1,0,2,Initmates,Intimate,Lounge +1094,23,Pretty & effortless,"This dress is such a lovely thing to have in my closet- it's so easy to pull on, but adding a nice pair of shoes, a piece of jewelry, and leaving my hair down reveals a gorgeous outfit that takes next to no time. i must admit, my local store didn't stock this dress so i wasn't quite expecting the texture of the fabric (i was expecting it to be smooth but it's almost ribbed?). it's soft and comfortable though, so that's certainly not a deal breaker. i only wish they'd had it in petite as i feel t",4,1,0,General Petite,Dresses,Dresses +1094,43,Nautical vibe and super wearable,"Love the nautical vibe, perfect for summer wear. the knit top with cap sleeves is easy to wear and not clingy for those with limps and bumps. the asymmetrical skirt has a flare which again makes this dress easy and comfortable to wear. i'm usually a size 8, 36-29-40 and the medium fit my hourglass shape perfectly.",4,1,0,General Petite,Dresses,Dresses +1056,43,Great transition pants from summer to fall,"Pilcro has become my go to brand for pants as they always seem to fit with consistent sizing. i'm an 8-10 and size 30 never fails to fit perfectly. i've got hips and a booty so it's great to have a brand that works with my curves. these chinos are super soft and feel like pants i've had for years -- broken in but still look polished. i bought the green (which is really teal) and feel in love with them. i've since bought the gray and sand/khaki color. i'm 5'6"" and the length hits just below",5,1,0,General Petite,Bottoms,Pants +257,52,Great jacket,"Soft, lightweight, comfortable. i wore this as soon as i got it and have received many compliments on the style and color. super soft, love the angled zipper and sleeve length is long enough to be comfortable. great cool weather jacket.",5,1,1,Initmates,Intimate,Lounge +257,36,,"Very soft, cozy, and exactly what is needed on tbose in-between days. the collar is a bit dramatic if you are petite, but there is an extra button that makes it more manageable. stylish, cute",5,1,1,Initmates,Intimate,Lounge +895,43,Fantastic fall sweater!,"I purchased the red color in august after seeing it in the store. it is cozy and stylish-love the coordinating pattern in the cowl neck. i am 5'7"" and 135 lbs and the s fit great. noticed that it is now on special promotion and would advise you purchase now! it is completely worth full price but if you can save and buy say a coordinating pilcro pant, all the better, right??",5,1,0,General Petite,Tops,Fine gauge +1094,36,Great quality!,"I bought this dress in green and i really like it. the bodice is a substantial knit - light enough for summer but thicker and sturdier than the typical jersey tee - and the skirt is a lightweight woven fabric with good drape. true to size and extremely comfortable. it's a great work dress. the striped colorblocking is not very flattering on my frame (broad shoulders, larger chest) but it's not bad. you'll probably want to try it on in person.",5,1,0,General Petite,Dresses,Dresses +1056,48,Second pair of these,"I love these pants, i actually bought them twice! the special dye in them did not agree with my detergent so i bought another pair on sale.....some woolite and will wash them inside out/hang to dry. will take better care of my second pair.",4,1,0,General Petite,Bottoms,Pants +895,46,Very cozy sweater,"I like the grey pattern and black and white contrast versions the best! very soft and falls nicely on my bust. the biggest differences wit the sizes are on length, so i ordered up for it would be a bit longer. it's a great piece.",4,1,0,General Petite,Tops,Fine gauge +1094,43,Flattering dress,"It's hard for me to find dresses that look good on me since i have more of a straight build and tend to carry a little extra weight in my middle. however, this dress was super flattering, giving me some curves and hiding my tummy. i got the one with the red skirt (it's definitely an orange-red) since that looked a little more polished and less casual than the green one i tried on in the store. the full, fluttery skirt is feminine and fun, and the knit top is very soft and comfortable. every sing",5,1,0,General Petite,Dresses,Dresses +863,34,Not tts,"Based on the other reviews, i ordered a l and xl even though i would normally order a m. the l fits like a slightly fitted m without being too tight; the xl, of course, is a little larger, but not like a typical xl, certainly not sloppy-looking or oversized. the material is soft and the dark blue is lovely. i will be keeping both sizes. i would most likely not have been happy with a m.",4,1,3,General,Tops,Knits +1055,32,,"I ordered a medium in these, and they were *just* too small for me. i'm a 12, so i was pushing it. there is no room for thighs.. :( but the material is great and the styling is fun. the length seemed ok for me, too. (i'm 5'9"") hoping when i return them they have a large for me to exchange for",4,1,0,General Petite,Bottoms,Pants +860,46,,,5,1,0,General Petite,Tops,Knits +860,37,Black or grey?,This is a great shirt. the ruffles are strategically placed and hide any stomach flaws. i get that others are surprised by the arm slits but a couple of well placed stitches will make it very work appropriate or if you're worried about arm waggle. the color borders on black/navy,4,1,0,General Petite,Tops,Knits +863,57,,,1,0,0,General,Tops,Knits +1094,33,,,5,1,0,General Petite,Dresses,Dresses +860,70,Not for me,I ordered this blouse because it was such a good price on sale but should have paid closer attention to the reviews. the slits on the sleeves are much more noticeable than in the photo and the blouse just didn't work for me. something about it reminded me of seinfeld's pirate shirt. i appreciate retailer's return policy. i took it back to the store and got an immediate refund on my cc.,2,0,0,General Petite,Tops,Knits +1094,53,Accented all the wrong spots,"I ordered the geometric, blue/red pattern in a small regular. the material was soft and comfortable. it is a stand-out piece but unfortunately, it made my stomach look like it was sticking out too much. the neck line did not stay flat against my chest which resulted in an ill-fitting, bunched up look. i returned this one. for reference, i'm 5'4"" 120lbs 34 a.",3,0,0,General Petite,Dresses,Dresses +1056,45,,,5,1,0,General Petite,Bottoms,Pants +895,61,Comfy cute,I bought this in the reddish color. i was a little skeptical that the fit or style would really work on a petite person but it looks great on. the fabric is very soft but with enough body that the cowl keeps it's shape. i predict that people will get tired of seeing me in this as i'm going to wear it a lot.,5,1,1,General Petite,Tops,Fine gauge +1056,52,Great fit,These pants are a great fit. perfect for the in-between seasons. casual comfortable but look very nice and polished when worn. a practical steal at retailer's sale prices.,5,1,0,General Petite,Bottoms,Pants +828,50,Beautiful boho top,"Love this top , although it ran very small in bust and arms , i'm normally a medium will have to return for a large!",3,1,1,General,Tops,Blouses +1094,38,Eghhh,"First of all, the colors are really pretty, fabrics feel really nice. but.... the fit was no bueno. i think if you are tall and small chested, this dress would look great. but i'm short and large chested and it was very unflattering. when the fabric transitions from the stripes to solid, it doesn't hang nicely due to my chest. sadly this is a return for me.",3,1,0,General Petite,Dresses,Dresses +1094,39,Casual,"Great looking casual dress, but i'm not sure about the fit on me. the skirt drape may be a tad overwhelming on my short legs if i want to emulate the styling of the green model. bodice fabric is a nice, clingy but lined stretch material of medium thickness. the skirt is a thin crepe viscose/rayon without a lining and i think it really needs one. i was hoping the skirt was the same material mix like the elysian maxi. i picked the medium petite and sizing down would be appropriate for ladies with",4,1,0,General,Dresses,Dresses +1147,39,Pretty & pricey,"This gorgeous &amp;amp; beautiful dress is hampered by a see-through unlined bodice and all viscose/polyester fabrication. by the way, did you see the price tag? at least the skirt is lined. if you have deep pockets and don't mind the slightly rough fabric, go for it. and wear a nice bra. size up if you're busty.",3,1,0,General,Trend,Trend +1078,66,Work and play,"This dress is great for work and play. i bought a l and a xl. both fit well, but the sleeves in the large were quite tight. so i kept the xl although it is a bit loose. this dress looks great on. i wish the material was a little higher quality, but i loved the design and plan to wear it with boots. the top is cotton and i liked the lace up feature at the neckline.",5,1,3,General Petite,Dresses,Dresses +1056,40,Comfy and cute!!,Love these wide-leg chinos. they are super comfy and the fabric is incredibly soft. the size fit true for me. i would buy these again.,5,1,0,General Petite,Bottoms,Pants +1094,51,Great dress !,"Love everything about this dress -- i ordered the 'red' which is more of a 'red orange' / with cream and beige - as pictured, colors are beautiful. the dress has a nice 'drape' / great feel, love it !",5,1,0,General,Dresses,Dresses +1094,44,Absolutely adorable!,"I saw this online and said to myself, next time you are in the retailer store look for this dress. i am glad i did! i bought the neutral dress (off white,tan.black) because i knew it would go with everything and most occasions. i am 5'6"", 136 pounds, the small fit me perfect! in retailer dresses i am between a small/med. the top of the dress is lined and form fitting which is a plus. the off white coored section does go across the chest so one must wear a neutral colored lined bra even though the to",5,1,0,General,Dresses,Dresses +257,52,"Cute, elegant, and warm","Hi, + +like the other reviewers, i expected the price to be much higher. it is so warm, yet so flattering and cute. this will sell out, so buy now if you want it.",5,1,2,Initmates,Intimate,Lounge +942,64,Soft as a kitten!,"This is a well made sweater. i sometimes have a problem with wool but this is as soft as cashmere and does not itch at all. the color is beautiful and will work with gray,black,tan and navy. i found this to run a little bit on the large side. i am between a size large and extra large and ordered the extra large. there is too much fabric on the sides and the peplum starts at an awkward spot, mid hip instead of waistline. i think that sizing down to a large will solve these problems. it is really",4,1,0,General Petite,Tops,Sweaters +895,44,50 shapes of grey,"Saw the grey one on the table at my local retailer. first thing i did was touch it to feel if it's soft and it felt like butta. surprisingly, it's a very snuggly and warm sweater despite it not being very thick. i think the grey is conservative enough for the office and it goes with pretty much everything, yet the geometric shapes make it modern and interesting looking. i hate turtleneck (choke!) and big cowl neck (reminds me of the 80's), but this is a compromise of both which is a bonus. since i",5,1,2,General Petite,Tops,Fine gauge +1094,58,Comfy dress,"Tried this on in the store, very soft and hangs well, better on, than the hanger. needless to say i bought it!",4,1,2,General,Dresses,Dresses +907,57,Love it but.....,Loved the look of this top. sadly it runs quite small and was very tight where other non-swing tops in a large do not. the item ran out of stock far too quickly. i normally wear a large but feared that the large would be small and wanted to order up but it was already put of stock. the quality and style are great especially for a larger chest. length is great for taller women.,3,1,0,General,Tops,Fine gauge +1056,38,A change from the average chino,The teal color is beautiful. the fit is wide leg with a low waist. i have been wearing so many high waist pieces lately they felt really low. the material is really soft. they fit tts.,4,1,0,General Petite,Bottoms,Pants +1056,38,Great crops!,"Love these! the raw hem is on-trend! length is great (i'm 5'6""). material is the classic pilcro washed chinos. perfect. as with all pilcro pants, they stretch a bit. :)",5,1,0,General Petite,Bottoms,Pants +895,36,Works for small frames,"Purchased this sweater in an xs, grey pattern (for reference, 5'4"", small frame) and was worried it would be too overwhelming. this is not the case! the pattern is the perfect scale and the sweater hit just right. it seems to be true to size. i especially love the bracelet length turned back sleeves. it's a little pricey, but i think it will be worth it because it is so different!",5,1,0,General Petite,Tops,Fine gauge +1094,41,Cute!,"I got this dress in a petite xs. i'm 5'4"" and 110lbs. it fit just right. i usually wear a regularl xs in most brands, but with retailer, i noticed i always have to go to the petittes. anyway, the dress is super cute. love the diagonal striping and the draping is not too poofy which is great. the material is very lightweight on the bottom - which is good for spring/summer.",5,1,34,General Petite,Dresses,Dresses +895,32,Deliciously soft,This sweater is gorgeous. ordered in the grey motif. was as described and wonderfully soft. i tried it on with just a tank top underneath and did not find the material scratchy at all. i ordered the small size and felt it ran a tad on the large side however not enough to feel like i needed to return for an xs. looking forward to the colder months!,5,1,0,General Petite,Tops,Fine gauge +863,50,Nice long sleeves! runs small!,This sweatshirt is very comfortable and the length of the sleeves is very generous! the bodice is short so you may have to wear a camisole or tank top to avoid exposing your tummy. i usually purchase medium sized tops but had to return for an xl! this runs very small.,3,1,3,General,Tops,Knits +1117,65,A true classic,"This is my kind of clothing item. i love linen, stripes, pockets and a loose look in an over piece. it has the lining to give a good hang to the coat. linen may not be for all but i do like the look of the fabric. i feel this is true to size giving you the loose look and not a slim fit. the sleeve length is just perfect for this look and finishes the overall style. it does not have any neck closure which may bother some. i have never purchased from this maker so took a chance in quality but am p",5,1,10,General Petite,Jackets,Outerwear +257,35,In love!,"I absolutely love this jacket! it is the softest jacket i own. the collar takes this to the next level. i wasn't sure i would like the collar but after trying it on, i love it. i'm so confused as to why the pockets are partially sewn together. it's weird but according to the other reviews, i am hoping to open the pockets up completely. i really should have gotten a medium in this coat. i am usually between a small and medium and this is a little on the smaller side. i bought this one on sale so",5,1,0,Initmates,Intimate,Lounge +860,38,,,4,1,0,General Petite,Tops,Knits +1094,44,Meet me at the museum!,"Beautiful dress! perfect for work, the museum, a summer picnic...so chic, yet extremely comfortable. i purchased the blue/orange combo and the colors definitely pop. for reference i am 5'2, 115, and i went with the xs petite. especially reoommend for anyone with her hourglass being more full on bottom. super flattering!",5,1,1,General Petite,Dresses,Dresses +1094,62,Nice dress,"I am a solid 14 and the size l fit nicely. it's easy to wear. the diagonal print is quite flattering. my husband liked it. i am 5'9"" and it was a bit short, but not too short. i've not washed it yet so can't say how that will go. the fabric is knit but does not look like it will pill.",5,1,2,General Petite,Dresses,Dresses +1098,62,Tricky but cute,"I was immediately drawn to this dress when i saw it in the store. i'm normally a size 2 but i feel like the size two was too constricting in the chest and arms, so found a size 4 to be just right. it's longer and a bit wider than the size 2 everywhere else, but given the design, i thought it was fine. the main thing to note is that the top is snug and has no give whatsoever. if you have a larger bust or broader shoulders, sizing up is a must. lengthwise, it fit me like it does on the model. (i t",4,1,0,General Petite,Dresses,Dresses +829,39,Great design and color,"The shirt is a heavier weight than how it looks on the product page which was a nice surprise. it has a boxy shape and was shorter than expected. i'm 5'7"" and the front of the shirt above the hips. the design and color is great. very happy overall.",5,1,1,General,Tops,Blouses +319,29,,"I absolutely love these shorts. i ordered a medium. i was nervous they would be too small, (my legs aren't the skinniest), but because of the slit on the side, they were fine. i do have a pretty tiny waist, and they were slightly snug but not too much to send them back. i am almost 5'7' and weight 145. i have a solid black one piece suit and they look great with it. i love the material as well, they are extremely comfortable. a little pricey, but i will definitely make use of them. i love the pr",5,1,0,Initmates,Intimate,Swim +1094,44,,"I was confused by this dress. the heavy fabric made me think of winter but the cut and print are springy. it's also not lined and the material is not exactly soft. i put it back. cute, but missed the mark.",3,0,0,General Petite,Dresses,Dresses +855,53,Cute top,"This is a really cute top. yes, it is dry clean only but i plan on hand washing it. one negative is that it is extremely short in length. i'm 5 feet tall and this top barely goes past my bellybutton. it's extremely soft though and definitely different.",4,1,2,General Petite,Tops,Knits +1098,34,Cute but not worth the price,"Cute dress, runs small, especially in the sleeves and chest (i usually wear a 0 and purchased a 2). the outer layer is very sheer and while the print and shape are cute, the quality could be better, especially for the price.",4,1,0,General Petite,Dresses,Dresses +1094,37,,"Well - i was disappointed in the fabric for this dress. it is a heavier material and i suspect will not be very cool / comfortable during warmer weather when i would normally wear a sleeveless dress. +on the upside - the pattern is really pretty.",3,0,0,General Petite,Dresses,Dresses +1098,50,"I love it, but it may not be for everyone.","This dress is perfect for me (i'm very bohemian/rocker vs prim, & flowy vs structured). it will be in regular rotation for years. it's slim through the shoulders and arms, and flowing everywhere else. love the pockets. the fabric is light, but i love in so cal, so it's great. i'm wearing it right now with gray skinnies, heeled clogs, and a scarf. i'll also wear it all summer as a dress. so perfect. i'm 5'4, 140lb, 34b, and the 8 fits perfectly.",5,1,0,General Petite,Dresses,Dresses +1094,36,Not for me,"I really had high hopes for this dress. i had several issues with it, though based on the high ratings other customers did not experience the same problems. +1- it was to short. i am 5'8"" and it was really really short on me. i could not sit down in it. +2- i found that it ran large. i've lost some weight recently, so perhaps i've gone down a size, but the medium was like a sack on me. +3-the waist was really roomy. it ballooned out to the point that it was comical. +4- as others have noted,",3,0,0,General Petite,Dresses,Dresses +1094,62,Cute and right price,"For the price, you can't beat this dress. i love the thicker stretchy fabric used for it - if you're a fan of some of the popular maeve pencil skirts (like the tearoom pencil skirt), you will love this! for me, it's the perfect piece for work with a black or white cardi or denim jacket over it. it's a perfect length (above the knee on 5""7""...similar to the model), armholes are the right size, and the overall cut of the dress is forgiving and flattering, even post-baby. super happy with the value",5,1,1,General Petite,Dresses,Dresses +1098,37,"Great concept, poor execution","I really like this dress/shirt. it's great for layering, super cute and will hide my traditional holiday and this year's pregnancy weight gain. i think it will be so cute with some leggings and boots. + +unfortunately the back panel of the dress does not seem to vary based on the size. this may sound weird but i've tried on an 8 and a 10 and the ability to reach forward didn't change between the two sizes. i just returned the 10 and am hopeful the 12 i ordered will be slightly roomier in the back.",2,0,0,General Petite,Dresses,Dresses +855,41,Note this is a crop top,Listed on the package labeling but not in the product description. i am short in the waist and this is still much shorter than pictured. disappointed to send this one back as it's otherwise perfect.,4,0,0,General Petite,Tops,Knits +1094,23,Comfy and unique!,This is awesome multi-season dress.,5,1,0,General Petite,Dresses,Dresses +1098,35,Didn't fit right,"It is so cute in the picture but wasn't flattering on me. it also felt like i couldn't raise my arms while wearing it. i love retailer and will be a forever fan, but this dress just wasn't for me.",2,0,1,General Petite,Dresses,Dresses +1094,23,So cute!,"The first thing i noticed upon receiving this dress is how soft it is and the fact that it wasn't wrinkled coming out of the packaging bag- an excellent quality! my next surprise was to find that it is fully lined with a very nice soft knit and felt awesome on. i ordered a size small and it fit perfectly- it was fitted through my waist and hips (37 chest, 28.5 waist, 37 hips) and dropped straight from my hips just like i like. i was afraid it would be too sheath like for my figure but it is perf",5,1,0,General Petite,Dresses,Dresses +992,37,Love the comfort of thi skirt,It is easily paired with a nice tip for work and feels great to wear all day,5,1,0,General Petite,Bottoms,Skirts +121,44,Need more than 1!,"I just bought the grey, and now i'm coming back for the black and cream i lovethis staple item!! so soft fits great!",5,1,3,Initmates,Intimate,Layering +121,49,Had to return,"This top fit perfectly but too much of my bra was showing through the black lace. it would be a great top to use as loungewear, though.",2,0,2,Initmates,Intimate,Layering +829,44,"Great quality, unique design",Very unique shirt-- you will get a compliment! the material has a great feel and weight. beautiful color. it runs true to size.,5,1,1,General,Tops,Blouses +940,55,Classic design,I wore this sweater while gathering ingredients for my thanksgiving feast and 3 different women at whole foods complimented my sweater. it is soft and warm. would love in other colors too...like a mint green.,5,1,0,General,Tops,Sweaters +1094,29,,I bought this to wear to my winter bridal shower. it was a cold day so i turned it into a jumper by pairing it with a silk blouse. it is flattering and comfortable. great for work and other semi-formal events.,5,1,0,General Petite,Dresses,Dresses +121,52,Comfy and adorable tank top!,This tank is super soft and very well fitted. it fits true to size. the lace is so pretty in front but what makes this unique is the lace on the back of the top. it is a unique design and good quality!,5,1,3,Initmates,Intimate,Layering +1094,54,Great dress,I think this dress is adorable . it fits great. wear it with heels or cowboy boots. you will not be disappointed,5,1,19,General Petite,Dresses,Dresses +1098,38,Better for smaller chest,"Tried this dress on in the store and could barely button at my chest but the waist and length were perfect. ordered a size up and two sizes up online. went with the two sizes up because it did not pull as bad across the chest, though now it's a bit ""blousey"" around the waste. fabric is a little thin. similar to other reviews the slip is a little weird/wonky. i'm keeping it because i like the idea of the dress but i'm not sure about the lifespan with how gauzy the material is.",4,1,2,General Petite,Dresses,Dresses +940,44,Super soft,This is a great sweater to wear out over a top or instead of a jacket.the yarn used is super soft and warm. i typically wear a size medium in sweaters and tops and ordered a size medium. it fits perfectly!,4,1,0,General,Tops,Sweaters +1009,47,Beautiful skirt,"I agree with the other reviewer, this skirt is has beautiful print combed cotton with a sheen. it is kind of stiff with a little give, a perfect a line. the waist is a little tight so i sized up, usually wear a 2 and the 4 was perfect for me. wore it to a show last night and was super comfortable and pretty all in one.",5,1,1,General Petite,Bottoms,Skirts +1094,39,Love this dress,"Easy to wear, get lots of compliments when i wear it. can be dressed up or down",4,1,0,General Petite,Dresses,Dresses +975,36,Cute!,"This is very cute and well-made, but unfortunately for my coloring and hair, washed me out a bit. the attention to detail is fabulous and it is a great layering piece for spring. tts but definitely longer as is shown in picture on model.",4,1,4,General,Jackets,Jackets +1094,36,,"This dress is adorable, but it unfortunately didn't work for me. i agree with the reviews that stated the fabric is very heavy",4,1,0,General Petite,Dresses,Dresses +121,35,Deep 'v',"The lace detail adds a nice spin to an otherwise plain tank. looks great under a cardi, jacket, sweater coat... for the most part it fits true to size. it's not as fitted as i hope it would be. at 5'1"", 115lbs, i got my usual xsp. my biggest gripe is the very deep v-neck--its shows my bra. eek. it's like the strap could be shortened to help remedy it but then it may leave the arm hole too small or bring it too high up. perhaps it may shrink in the wash or i just need to get bigger boobs. maybe t",4,1,21,Initmates,Intimate,Layering +121,32,"Lovely top, but too tight",The top is a pretty design. it's a low v-neck. but it would be nice for layering. it was just way to tight. runs small. order up a size.,4,0,0,Initmates,Intimate,Layering +1098,38,So cute but tight!,"I wanted to love this dress so much and am so sad - it just didn't work for me. i am 5'2"", 138 pounds (still trying to lose that last 5-8 from my third daughter) and the chest/back of this dress was so tight i was afraid if i hugged someone it would split up the back. i am normally a size 6 and tried the 6 p, 8 p and 8 and they were all too tight in the chest/back. it sounds like this is common for these holding horses dresses. :(",3,0,3,General Petite,Dresses,Dresses +121,46,Lace layering tank,"This seemed to run a little bit small on me... more form fitting than on the model in the photo. also, it's thin. i'd be sold on it for sure if it were just a little longer too because i like the almost-lingerie-like look. the lace applique is pretty, and if you purchase it for that, then it really shows up better on the two lighter colors - it really gets lost all in black.",3,1,0,Initmates,Intimate,Layering +855,49,Dry clean?!,This is adorable but if it truly has to be dry-cleaned that is deal killer,1,0,7,General Petite,Tops,Knits +1098,37,So comfortable,"I love the style of this dress, comfortable but chic, and it feels great!",5,1,0,General Petite,Dresses,Dresses +1098,26,Underestimated,"When i first saw this dress, it honestly didn't catch my eye, but as i kept seeing it in on the catalog and other places on pinterest, i realized how unique this dress is. i looked at the reviews and was surprised at how negative the comments were- i'm the type of lady who gets stuck on something and won't get off of it until i try it for myself. so, i ordered it on sale and i love it! it isn't flannel material, and so i wasn't expecting this to be a dress that would keep me warm by itself- but",4,1,2,General Petite,Dresses,Dresses +940,48,Cute idea,"Scratchy, wide cut = not flattering, i tried to make this work because i wanted a different, unique cardigan. but.... the color is not for me either.., it's yellow/ivory. bummer! so cute on the model! the snaps are my very favorite part!",3,1,0,General,Tops,Sweaters +1094,49,Material not as expected,This is a cute dress but the fabric is very heavy and i didn't find it to drape well on me. it is a very heavy felted poly type of fabric. i ordered it for a specific event coming up this summer and the fabric will not work for warm temps. the style and design of the dress is great though. for reference it did fit fairly true to size. i wear a 0 or 2. the xs fit well. if the fabric works for your situation then i would try this dress.,3,0,11,General Petite,Dresses,Dresses +1094,62,Too small and too big!,"I ordered a size small. i am 5'7"" size 6 and the dress was a mini on me! way shorter than on the taller model. the stomach and hips gaped out from my body yet the waist was cut way too high, so the dress was both too small and too big! very odd fit. the material is soft, thick, stretchy and has a textured pattern which i liked. this one is going back.",1,0,0,General Petite,Dresses,Dresses +975,39,Unique and lovely,"This blazer is beautiful. it runs tts. it is lightly lined with an off-white poplin. in the body of the jacket, the off-white lining is an adorable swiss dot. though the lining makes the lace portions of the jacket not completely see through, a darker shirt would still show through. the detail is amazing - from the adorable buttons to the variations in the fabric texture. i am 5'5"", and the fit (as far as length) is very similar to what is shown on the model. the sleeves are a little on the long",5,1,9,General,Jackets,Jackets +1094,47,Nice,Heavier fabric than it looks but cute and versatile. flattering as well!,5,1,0,General Petite,Dresses,Dresses +1098,52,Pretty in plaid,"Dress runs a little small in the arms but flows nicely on the body. see through and comes with slip but slip is stiff and doesn't give. was hard to get on so i wore my own slip. other that that, dress is feminine and looks great on!",4,1,0,General Petite,Dresses,Dresses +908,38,Perfect,"I love this duster! i got my usual size and it fits exactly as pictured. the color of the fabric is a perfect neutral and will look good with anything. the knit is open and fairly see-through, this avoids the bathrobe look that a long length sweater can have. bought at full price and i'm not sorry because i bet it will be gone before long!",5,1,1,General Petite,Tops,Fine gauge +1104,44,,"This dress is perfection! great, quality fabric. bright vibrant color. the design and texture allow it to be dressed up or dressed down. i sized up a size because my normal wasn't available and it fits perfectly!",5,1,0,General Petite,Dresses,Dresses +144,29,,"These are my favorite tights. i love how they are opaque. i love that they are thick but not so thick as to be only appropriate for winter. they are slimming without feeling too tight. + +why don""t you sell these any more??? please bring them back!",5,1,0,Initmates,Intimate,Legwear +1046,46,Perfect summer pant,"I initially worried about these because i am curvy on the bottom and short (5'3), but they balance me out perfectly. they are light and airy and perfect for summer. i have paired them with form fitting tops which work best considering the bottom volume., and my latigo clogs which give me some height. these are my new favorite go-to pants!",5,1,0,General Petite,Bottoms,Pants +829,66,Fun piece,"I am not sure why this is listed on the website at hd in paris, because i purchased this shirt in carmel, ca and it is actually maeve, which is a brand i buy often and always fits me well. this piece did not disappoint. this is a fun and versatile black top, but has a little edge with its design and i know that i will get a lot of use out of it. i don't find the fabric to be ""rough"" at all, but it is textured which i just think adds to the interest of this piece. i am a 34d and did not find my c",5,1,2,General,Tops,Blouses +1104,29,Sadly had to return,"I was so excited to purchase this dress for my masters graduation party. it looks beautiful on but i could not get over one little detail. the structure of the top falls funny on your chest - a bit too high from the rest of the pulled fabric. it doesn't look right. if you have a necklace that falls perfectly on the piece of fabric, like the main photo shown, you are good. the third photo with the short necklace shows this issue best.",3,0,2,General Petite,Dresses,Dresses +1104,25,Just ok,"I bought this dress to attend a couple of summer weddings. it seemed like it would be a nice, light summer dress that i could wear all day. i do think it fits that qualification, however, it wasn't as flattering as i hoped. i'm generally pear shaped - small waist, larger hips. this dress does fit well over my hips, but does very little to show off my waist. overall, it is just ok.",3,1,1,General Petite,Dresses,Dresses +1104,62,Yes yes yes,"I've been looking for the right red dress for a while and this one is a winner! flattering fit, comfy quality fabric...makes me feel great even right after having a baby. fits tts and i can't wait to rock this beauty!",5,1,4,General Petite,Dresses,Dresses +648,62,Cute and practical,"These are fab as always with pure good printed leggings. bright, beautiful print, great quality fabric, and flattering. goes with lots of color tops too! took my usual size s (4/27 in bottoms) and found them perfect.",5,1,3,Initmates,Intimate,Lounge +144,26,,"I love these tights! i stock up every year. they are a great quality, not too thick to be hot, but not too thin that they are sheer when you put them on. they also don't squeeze you at the waistline. favorite tights.",5,1,0,Initmates,Intimate,Legwear +1104,47,Adorable fit,This dress is a lovely fit. the knit top accentuates the bust and the loose skirt below the empire waist just skims the figure. it's pretty casual and the skirt is a tiny bit sheer so better for weekends than for office wear.,4,1,1,General Petite,Dresses,Dresses +1104,20,Simple and classy,"Love this dress. it is so comfortable. it fits great and can be dressed up or down. hides the tummy, too.",5,1,1,General Petite,Dresses,Dresses +829,39,"Nice, but not very forgiving","I should preface this by saying that i'm in between sizes. i chose the smaller size and found that this top is not super forgiving. i'm keeping it bc it is good quality and i like the style, but i wouldn't be comfortable wearing it right now! maybe after i lose a few pounds!",4,1,0,General,Tops,Blouses +1104,66,"Synthetic fabric evokes ""cheap"" quality",I love the style the lightness and the fit ... but the fabric in the skirt just did not meet my expectations. this might be something to find at a mass retailer. i guess i simply prefer a natural fabric.,4,0,1,General Petite,Dresses,Dresses +1046,54,Not as pictured,"I was so looking forward to wearing these pants on an upcoming trip. i already had my outfits planned! when these pants arrived, however, they were very different from those shown in the pictures online. firstly, the pants are, in actuality, quite cropped. i am 5'9-- the model in the pictures is at least that height, if not taller-- and the hems were several inches above my ankles. secondly, the pants appear to be an even wider cut than what's shown, although the width of the pant legs may have",2,0,4,General Petite,Bottoms,Pants +829,59,Maeve tunic,"I bought this tunic today because it paired well with patterned slim pants. at 5'2"" the tunic felt like it added height and even though i'm a 34f the top fit well across the bust. i tried on the large first, and it felt very comfortable but a bit big. the medium fit a little more snugly, but was more proportional in the arms, so i purchased it instead. +the neckline is not too low and does not require a camisole under and the buttons add a nice weight so that the top drapes towards my chest inst",5,1,4,General,Tops,Blouses +829,60,Perfect for fall,"I saw this today and decided to try it on, it fit perfectly! i have a generous bosom 36e, and a large fit without gaping or the button issues a previous reviewer noted. the fabric is comfortable, no itching. too bad it's 90 degrees, i'm ready to wear this.",5,1,2,General,Tops,Blouses +144,65,Love the color!,The raspberry color is really stunning! i have been looking for colored tights for a while and had difficulty finding really rich colors. i was thrilled when i saw these! i've worn them once so far. very comfortable and seem like they will last.,5,1,3,Initmates,Intimate,Legwear +1064,46,I wanted to love it.,"I read the other reviews before i purchased this jumpsuit because it's very cute. as another 5'3"" reviewer mentioned it will be longer so for me that's a plus but i have thighs, not huge but regular well proportioned woman thighs and boobs. it was a little tight but doable around my thighs but my boobs got ""lost in the sauce"". i gotta love it to keep it and i don't. it's a great print and fabric though.",3,0,0,General,Bottoms,Pants +1104,37,Love this dress!,"Love the bright red color. such a comfortable fit, but still feminine and pretty. could be dressed up or down. will definitely be a summer favorite.",5,1,2,General Petite,Dresses,Dresses +1053,51,Beautiful jumpsuit,Tried this soft yummy jumpsuit on and loved the flow and softness of the fabric ...... will be able to wear into the fall with oversized sweater or wrap. just love,5,1,0,General,Bottoms,Pants +829,47,Cute throw on tunic,I loved this tunic. dress up or down layer it with a cropped leather jacket and booties. i bit on the long side so if you are short it might make you look stumpy but really cute with leggings or skinny jeans.,5,1,0,General,Tops,Blouses +144,25,Perfect,These are the perfect tights-fit and feel are top quality and they wash well!,5,1,1,Initmates,Intimate,Legwear +1104,25,"Cute color, but not a flattering dress","I really wanted to like this dress, but where the skirt meets the top of the dress in the back creates sort of a hunchback effect in the back. will be returning.",2,0,4,General Petite,Dresses,Dresses +1029,35,,,5,1,0,General Petite,Bottoms,Jeans +56,43,Beautiful and comfortable,"I own a couple of pairs of natori hipsters and recently purchased the yellow to go with the front close natori bra. i tried to wear thong panties but they just didn't work for me. thankfully, natori makes these lovely panties that still make me feel sexy and they are way more comfortable. they also receive rave reviews from my husband. : )",5,1,1,Initmates,Intimate,Intimates +829,64,Elegance and comfort,"I love this tunic! it has an unusual neckline with decorative stitching and beautiful buttons,.i like the slight sheen of the fabric as well. wearing it makes me feel elegant without sacrificing comfort. i'm going to wear it for work with black leggings and on weekends with jeans; i suspect it will also be great to travel in. the only potential downsides might be the deep side slit and the fact that it has to be dry cleaned.",5,1,0,General,Tops,Blouses +1104,32,"Love, love, love! new favorite.","What?! i can't believe this got so many mixed reviews! i wasn't sure what to expect and now that i've received it, i think it's absolutely perfect. it's flattering, the length is great, it's tts, and the color is beautiful. i have no issues with the skirt whatsoever either. i'm really pleased with this purchase and i can't wait to wear it.",5,1,2,General Petite,Dresses,Dresses +829,42,Front slit,"I somehow missed that there was a slit in the front of this tunic below the buttons. it looks fine on, i'm just wondering if i can still pull it off with only leggings underneath (why i got it). otherwise, just as pictured. i'm 5'7"" 125 lbs and got an xs.",4,1,0,General,Tops,Blouses +1046,66,Wonderful,"This wide leg pant gives the perception of a skirt that is feminine, comfortable, and moves beautifully when you walk. can be used all year round!",5,1,0,General Petite,Bottoms,Pants +1114,44,"Beautiful, all wool coat","This coat is beautifully tailored and made in the usa of 100% wool the color is vibrant. it looks great when you need a longer coat for the cold. it's almost an outfit on its own. lastly, the size was perfect. i ordered my normal 8 and it fit like a glove.",5,1,0,General,Jackets,Outerwear +144,52,My go to tights for another season,"I have worn these exclusively for the past couple of years. they fit great (tts), stay put, and wear very well. these are well worth the price.",5,1,1,Initmates,Intimate,Legwear +173,24,Great product,Cute little sleep mask! the elastic band is wide so it doesn't ever feel like it's digging into your head. does a very good job keeping out light.,5,1,0,Initmates,Intimate,Intimates +144,42,,Great tights with good color and quality. i got a lot of compliments on my head to toe retailer ensemble!,5,1,0,Initmates,Intimate,Legwear +1035,44,Unique wash,These jeans are soooo soft. fit is great and the wash is a unique inky grayish color. perfect for fall. love.,5,1,3,General,Bottoms,Jeans +857,37,,"Love this! i am 5' 118 and the medium fits like a dress, not a tunic. i opted for the medium because i didn't want the fit to be tight. it is thin so you'll need a slip.",5,1,6,General,Tops,Knits +964,61,Perfect jacket!!,"This is the jacket i've been looking for! i love the collar/lapels - they can lay flat or be worn up a bit. the material is really soft so the jacket is comfy and soft. the sleeves are of a ribbed material that makes the jacket even softer and more comfy. i got the black but it's really more of a charcoal black vs. jet black. the color/dye is saturated and dense so there is no sheen to the material ensures that it will be colorfast. when zipped it's form fitting but not tight (tts - i'm 120 lbs,",5,1,6,General Petite,Jackets,Jackets +1001,37,Easy skirt,I really like the skirt! it's very comfortable and i can wear it with so many colors.,5,1,0,General,Bottoms,Skirts +1035,41,I'd recommend!,"I originally bought these jeans in my true size. after wearing them a few times i realized they stretched out quickly making it hard to wear them again. retailer recommended i go down a size and now they are my favorite jean! they are a little tight for the first 5 mins, and then they are perfect fit wear after wear. and so soft!",4,1,1,General,Bottoms,Jeans +1035,55,Finally found a perfect pair of jeans,"I have had a problem finding jeans that fit properly (that i don't have to pull up every single time i walk up the stairs or stand up) but these are perfect. they are made with a bit of a stretchy material, yet keep their shape well. i am 5'7, 130 pounds, athletic body type and got a size 25. the only thing i am worried about is the dark color bleeding onto a light colored couch/quilt/purse/etc. as this has happened to me before with dark wash jeans.",5,1,27,General,Bottoms,Jeans +413,61,Beautiful online,"I loved the romantic look of this robe and gown set, but the material was very thin and wrinkled and needs to be ironed. the m/l was uncomfortable and i normally wear only a m. sadly, i returned the set.",3,0,0,Initmates,Intimate,Sleep +860,60,Not a keeper,"I have to agree with another reviewer - this blouse has an odd fit! the small petite (my usual size) was a good length and there was plenty of room in the body, however i found the shoulders to be quite small which made the neckline pull. since i definitely do not have broad shoulders this may be a particular problem for those that do. i also found the gathered seam above the bustline and across the upper back resulted in an unflattering maternity top effect. the blouse i was sent had one sleeve",3,0,1,General Petite,Tops,Knits +1035,27,Most comfortable fit ever,"I love pilcro script jeans. the rise is super comfortable and the fabric stretch is perfectly flattering without being too tight. the wash is great. from the pictures, i didn't realize this pair had the fringed bottom rather than the hem, but they cuff easily if you want to hide it. plus, with boot season approaching, i think it will make boots more comfortable without the bulky hem. i wish they would make this cut with all of their products - would love to see a pair of cords or dress pants!",5,1,1,General,Bottoms,Jeans +1001,32,,,5,1,0,General,Bottoms,Skirts +1001,27,Great skirt,I loved this skirt. they didn't have my size anymore so i tried on a few others. i really needed a small p. otherwise i totally would have kept it!,5,1,0,General,Bottoms,Skirts +860,46,"Colorful, pretty shirt","Casual, pretty. runs a little large, especially through the waist, but a great comfortable shirt.",4,1,0,General Petite,Tops,Knits +964,37,,"Ordered this in my typical size, xs, and it fits perfectly. the weather hasn?t cooled off enough for me to wear it on a daily basis, but after just trying it on i can say that it fits really nice. the sleeves are a knit material which make them very forgiving and the jacket easy to wear. plus, there is enough room for me to wear a tee-shirt or thin blouse underneath. ordered the slate color and it is a very beautiful neutral, brown that should go with almost anything.",5,1,3,General Petite,Jackets,Jackets +857,39,Actually nice and comfrotable,"This says online only, hwoever the balc one was in my store (and some other colros too). anyway, i actually liked this top, it is more flattering than the model shows, i think i could wear this with pants or legginss in botos. on me, the regualr size is almost a dress (should i be younger), but i do like that (i did debate ordering petite, and decided not to). it is thin enough to not be too hot indoors, and sublte stripes on the black version. +noyte: previous reviewer mentioend something about",5,1,6,General,Tops,Knits +1001,36,Love this skirt!,This price is amazing and goes with everything! fits great! so glad i made this purchase.,5,1,0,General,Bottoms,Skirts +896,58,,"Pretty and comfortable fun cardi for those of us who love a nice little cropped number. glad to report that this cobalt beauty fits true to size in an xs all over -- shoulders hit at a nice place, arms, waist, length is great above your waist or just at it. the cotton is ultra comfortable. the zipper has that luxurious feature of a double zip where you can zip from the bottom or the top once closed, creating a nice opening. i love this for a casual but chic holiday look thanks to the velvet ador",5,1,0,General,Tops,Fine gauge +860,40,Worn once...already received compliments,"Great light-weight blouse for mild fall days. fabric is thin so not too warm, which is great for southern california fall. great color palate.",5,1,0,General Petite,Tops,Knits +860,52,Awkward fit - was not wowed,"I love natural colors and nature themes but this top was a disappointment. i ordered both the small and the xs because retailer can run very large. the small was too big and the xs did not hang correctly, the arms hit at a weird spot and the neckline wouldn't sit right. overall the fit was boxy and unflattering. the fabric is pretty but the style is well....boring. there was just no wow factor for me. i think the fabric deserved a much better design. imho i think this top might be better suited fo",3,1,3,General Petite,Tops,Knits +1001,28,Cute casual skirt,"Cute casual skirt, i love that it is longer in the back than the front so i can comfortably wear it to work. i had to size up, which i usually do in bottoms that do not have stretch because i'm my athletic frame.",5,1,0,General,Bottoms,Skirts +1035,54,,"Love these pants. i have several pairs of the pilcro scrip (and formerly super script). these do not have quite as much elastic as some cuts, but they still fit well and look great.",5,1,0,General,Bottoms,Jeans +964,25,Great transitional jacket,"I have the marrakech vest from the summer and really liked the quality and fit of that, so i ordered this one. fit is very similar. this one is made of a lightweight cotton, and has a similar cut. will be a great fall transitional jacket, and looks great with lots of things--maxi skirts, skinny jeans, long tops with the hems peaking out, etc. i found it tts: i got an xs and am 5'4"", 120 lbs. i don't plan to wear more than a thin top underneath, but don't think i could fit a sweater under the sle",5,1,0,General Petite,Jackets,Jackets +860,53,Sweet and comfy,"I like this comfy top. i bought it to wear with a cute pair of gold charlie cropped pants i bought from retailer last fall. the only thing i don't like is the odd length of the sleeves. they are somewhere between elbow and 3/4. i am a true xxsp in most tops, but the sleeves end right at my elbow making it difficult to wear them unrolled. for reference i am 5'1"" and 107 lbs. a larger size would have been too wide and roomy. overall, i am happy with my purchase.",4,1,0,General Petite,Tops,Knits +203,48,Comfy,"The pattern ""camouflages"" my curvy figure :-) . the fabric is very soft, great for lounging. i wish the fabric offered a little more support though for working out.",4,1,5,Initmates,Intimate,Lounge +1001,65,Fit issues,"This skirt ran short, small, and boxy. if you can get the right fit, the skirt is great quality and super cute, but i recommend trying on in store for sizing.",3,0,1,General,Bottoms,Skirts +857,39,Not as described,"I did not like the fit of this. as another reviewer stated, it is not a swing tunic. it hangs fairly straight. i don't have large hips. i'm 5'8"" and 120 lbs with a full bust and this did not look flattering. i returned it immediately.",2,0,0,General,Tops,Knits +1025,32,Great classic boyfriend jean (not distressed),"I bought these in the store yesterday and am thrilled with them. + +sizing: they run large. i am glad i bought them in store because i was planning to buy the 28s and the 26s fit instead. for reference, i am 5'4"", athletic, postpartum, 135 pounds. + +fit: inseam is very long. waist is a flattering v-shape, versus straight across the midline. i find these a little lower rise than i'd ideally choose--they hit around 2 inches below my navel. the back pockets are small and high. i find the butt are",5,1,2,General Petite,Bottoms,Jeans +857,57,Holy tightness,"This was not what i was expecting. at all. i am a medium in just about everything but ordered a large to possibly wear this as a dress instead of a tunic since i am around 5' 4"". the large fit like a small on me, and not like a typical oversized sweater type small, but a normal fitted top small. a previous reviewer said it is long and straight, and i think that is a good description for it. i think the models wearing this in the pictures are all wearing an extra-large #or a different cut of the",2,0,0,General,Tops,Knits +1001,45,Great skirt!,"This is a throw it on and you're cute. so easy and comfy, requires barely any styling to look cute in this. and it has pockets!",5,1,0,General,Bottoms,Skirts +1025,59,Very soft but too low rise,"I really wanted to like these. they're soft, long enough for 5'8 1/2 and a nice color cut the rise is quite low and the hips puffed out in a weird way. have to return ;(",3,1,0,General Petite,Bottoms,Jeans +1001,26,Great casual skirt,It's comfortable and easy to wear with lots of styles.,4,1,0,General,Bottoms,Skirts +860,38,Pretty blouse; comfortable; buy one size smaller,"This is a pretty blouse that is also very comfortable. i am always an xl in retailer tops, but i needed to go down to a large on this one. this blouse is cut generously everywhere, but going down one size was perfect for me. the fabric in the back falls from the shoulder blade area, so it has a very nice drape in the back. the sleeve cuffs and placket are some sort of cotton, so the cuff made a nice base to fold the sleeve around and up to the elbow. i wore a nude bra underneath, and i can't see m",5,1,5,General Petite,Tops,Knits +867,24,Beautiful top,"Was excited to receive this top in the mail, and wasn't disappointed when i tried it on. beautiful colors (true to image) and pattern -the blue back does extend into the front, but does not look unflattering in the least or leave for an awkward fit, imho. very happy with this top, it looks so cute from the back, too~",5,1,1,General,Tops,Knits +857,42,,,4,1,0,General,Tops,Knits +860,69,Goes with anything,This shirt is a simple but versatile top. it goes anywhere with anything so it's a great travel piece. i'm curvy on top but short waisted and this shirt does a good job of disguising that figure flaw. i got loads of compliments from men who liked the femininity that stops short of 'sugary' as one guy put it. it's quite comfortable and doesn't bunch up when one sits down. i wore it with copper jewelry and that really made it 'pop.' a great piece for one's wardrobe.,5,1,0,General Petite,Tops,Knits +1025,31,Not entirely as described,"The item i received was not distressed. i bought one size larger thinking they'd be super slouchy, but they just looked sloppy. also, the hips puffed out in a very strange way. i wanted to love since they are so cute and soft, but i look like a man with hips in these jeans. returning this weekend.",3,0,0,General Petite,Bottoms,Jeans +1025,38,Comfortable,"I bought these in the store today. they're a great jean. none of the pairs i saw had as much distressing as the picture. there were no holes, which i'm actually grateful for, i don't like holes in jeans. anyway these had a great fit for me. they fit more like a slim straight jean on my curvier figure and really flatter my backside- they aren't baggy, as pictured on the model. they're a great casual jean which i know will be my new staple! (even better- my husband gave them a big thumbs up!)",4,1,9,General Petite,Bottoms,Jeans +964,56,Cute but not for me,"I ordered this online, but i own the vest and i love it, so i took a chance. this is a super comfy, great quality jacket. the sleeves are some kind of knit material and that makes it really cozy and not constrictive. the color, i ordered the green, is perfect. i ultimately returned the jacket because i thought the lapels were just too wide for my liking. they look exactly like the picture so if you don't mind that, you will probably be very happy with this jacket. it just wasn't for me. i ended",4,1,5,General Petite,Jackets,Jackets +964,46,Love this jacket!,I've been looking for a more polished edgy alternative to my jean jacket and this is perfect! it's super soft and comfortable. will look awesome over a dress or with jeans. love it!,5,1,0,General Petite,Jackets,Jackets +860,47,Beautiful flowy top,"This top is even better than pictured. the colors are brighter, though still natural. this allows lots of possibilities with pairing bottoms to it. i ordered a large (my usual size) and would say it's pretty loose, but doesn't look ridiculous. it just hangs well and fits the way it should. the fabric is a little thin so you'll need a shade shirt or tank under it if you don't want your bra to show through.",5,1,2,General Petite,Tops,Knits +1001,34,,,4,1,0,General,Bottoms,Skirts +1001,32,Fun skirt,"This is a great casual skirt for summer, color pairs well with many tops.",4,1,0,General,Bottoms,Skirts +860,63,Great netural top.,"This top is simple but beautiful. i am either a large or xl but purchased this in the xl. it is a swing top, but has a beautiful flow to it which is not overbearing. i am around 5'6"" and slightly on the broad side and do not feel overpowered by this shirt at all. +i love a top that can be worn everyday with a pair of jeans or dressed up with a pair of slacks. the plus to this top is that it can born worn almost year round which i like. +a great staple for your closet.",5,1,0,General Petite,Tops,Knits +1001,40,Love this skirt,"This skirt is fabulous!!! i ordered it in both grey and green. only flaw was the grey one was 2 inches shorter all the way around (made it too short!!!), so i kept the green. great for summer and maybe fall with flats and a jacket.",5,1,0,General,Bottoms,Skirts +857,34,More of a lounge/layering top,"The neutral color was at my local retailer, which is a rich brown/mocha, much nicer looking in person. like others, this is quite sheer and thin. however, it is so stretchy, breathable, and comfortable that i would use this for layering instead. for my 5'9"", 36c, hourglass frame, i found the medium to be rather body hugging. it was not at all loose like on the model. for me, this is fine because i will layer, eliminating issues of sheerness.",4,1,2,General,Tops,Knits +1001,31,Perfect skirt,"This skirt is soft and comfortable, breathes and moves really nicely. great quality and fabric, just be careful in the first wear i snagged a spot with my rings. i ordered my usual medium, but probably could have sized down to a small. i plan to wear this all the time.",5,1,0,General,Bottoms,Skirts +964,39,Great jacket,"This is a great jacket for fall layering. love the color and cut. it wasn't appearing to me in the photo that the sleeves were knit, but it actually works. i wear the sleeves pushed up as i have really long arms and they are a smidge short. now my go too for casual work days and weekend wear.",5,1,0,General Petite,Jackets,Jackets +1001,33,,,5,1,0,General,Bottoms,Skirts +860,32,"Nice print, sloppy design","This is another one of those darned swing tops. i can't even with this trend. this shirt has such a nice print/color palette going on but it's ruined by the swing cut/henley combo- it looked like i was a little kid wearing an oversized men's night shirt/smock? i don't know, it was just not at all flattering. i ordered my regular size large and a medium would have worked and probably still been generously cut. i disagree with a reviewer who said it might work for larger sizes.. this just made my",2,0,1,General Petite,Tops,Knits +964,31,A great piece to throw on,This jacket is surprisingly soft and comfy. i'd been debating getting a leather jacket in this style but when i saw this it seemed a great option. seems to be very versatile.,5,1,0,General Petite,Jackets,Jackets +857,44,,"Description is wrong. not a swing tunic. more long and straight. keep that in mind when buying this. if you have hips, this might not be the top for you",2,0,27,General,Tops,Knits +1001,35,Way longer than pictured,"I tried on the grey version in store, and it was significantly longer than pictured. the back came down to just below my knee, which looked awkward with the split sides. i am 5'4"" and this was a regular (not petite) size. however, the overall quality of the fabric was good and it seemed durable.",3,0,0,General,Bottoms,Skirts +857,25,Chic + comfy,I've been searching for a brown top/dress/tunic forever and i finally found the perfect one!! i stumbled across this adorable tunic while browsing the clearance room at my local retailer and you can imagine my excitement when it was my size (small). i tried it on and almost asked to wear it out of the store. it's sooo soft and has a beautiful rib-like pattern/texture to it. you could wear it as a top with pants or a dress with tights/leggings.,5,1,0,General,Tops,Knits +889,54,Quite soft but prone to pilling,"This 'poor boy' mock t-neck/high crew neck top looks a tiny bit more olive to me than the online photos. the fit runs on the smaller size, and the sleeves will be bracelet length or 3/4 length for taller women. +. +i tried a size xs that was in the store and it fit with the sleeves just above my wrists, but a size s would have been fine too (i'm 5'2"", currently 33-25-37, narrow shoulders and torso).for reference, even the size m of the short sleeve version fit fine, so there is a lot of give. +. +no",4,1,0,General,Tops,Fine gauge +857,42,Love the silhouette...but the shirt is see through,"This shirt had everything going for it - the cut, the length, the fun texture, but when i stepped into the light it was totally see through. i don't want to have to wear another shirt underneath. this one is going back. definitely not a swing, but still cute.",3,0,7,General,Tops,Knits +1024,44,So good,"These make your rear look ah-maz-ing!!! i mean, seriously good. every time i wear these, my husband cannot keep his hands off. usually, i'm 27/28, in these i took a 29. perfection. i also got them in the black and blue washes. i may not be wearing any of my other jeans at this point. so good. awesome price point too.",5,1,0,General,Bottoms,Jeans +940,57,Some comcerns,"It is beautiful, but not practical for me - the student who carries a backpack ! i didn't notice it doesn't have sleeves, it is regular poncho, soft and stylish . recommended for poncho lovers !",4,1,1,General,Tops,Sweaters +1053,36,Amazing!!,I am amazed this is still on sale. it's so comfortable and fabulous!!,5,1,0,General,Bottoms,Pants +1053,33,Not for petites,"I so wanted these to work. i am 5'1"" and 120# ordered an xs. they were just way too long. i love the look of a cropped jogger but they looked nothing like the model. i rolled the waistband and it brought the hem up to my foot/ankle but they were still way too long to be flattering. otherwise they were super cute and cozy.",4,1,0,General,Bottoms,Pants +1024,28,Quality that lasts,Love this denim and particular wash. button fly will last forever. looks so cute rolled a little on the cuff.,5,1,0,General,Bottoms,Jeans +624,33,,Although not the highest quality of clothing i've ever received from retailer they are still comfy.,4,1,0,Initmates,Intimate,Lounge +1086,37,,Love this dress! really comfortable and flattering. the arm holes are a little big but not too much for me to return the dress or not wear it. love it!,5,1,0,General,Dresses,Dresses +1081,37,Great comfortable casual dress,A great little dress that can be dressed up or down.,5,1,0,General Petite,Dresses,Dresses +1053,62,So comfy!,"I can't think of many things more comfortable than cloth & stone's fabric, so when i saw this jumpsuit i had to try it. it is a nice mid-weight perfect for fall weather or a mild winter like we are currently having in the northeast! looks very cute with a duster cardigan over it. fits true to size (meant to fit a little loosely). length is great everywhere on my 5'7"" frame. feels like wearing pajamas, with the benefit of looking put-together!",5,1,11,General,Bottoms,Pants +1053,51,Stitching falls apart,"I thought these were gorgeous and was going to buy them although the price was a bit high. in fact, two separate women came up to me as i was walking around the store and asked where i got the pants because the colors are so vivid. however, as we were looking at the items, we noticed that both the green and the blue both had several small holes in them due to stitching quality, as the previous reviewer noted. therefore, none of us purchased the pants. + +the staff at the store were very helpful",1,0,5,General,Bottoms,Pants +1081,27,It was ok,"This dress was cute but the fit was not quite right. the bottom half fit well but the top half was a little loose. it was wearable but i was worried after wearing for a few hours it would stretch out even more and look frumpy. like other reviewers have said, this dress really needs a belt to bring it together. i ended up returning it because i didn't love it.",3,0,0,General Petite,Dresses,Dresses +1086,30,Lovely but large,"I know that some folks said it runs small, but i am usually a size small or medium in dresses and the medium feels big to me. that being said, it definitely works, and i think it'll be great. excited to dress it up with accessories- feels professional enough for me to teach in.",4,1,0,General,Dresses,Dresses +1086,59,,"Dress fits perfectly and is extremely comfortable. great for day or evening. love it!,",5,1,0,General,Dresses,Dresses +1086,36,Perfect summer dress,I got this because it was on sale and it looked like a fun design. i like it so much more than i expected to! the material drapes beautifully so the lower parts skims my body while the upper part moves nicely but doesn&amp;amp;amp;#39;t stick out too much. i love the green color too! i tie the ties on the back of the dress--at the level of my shoulder blades--rather than on top as in the photo. i think it looks cuter that way. so glad i took a chance on it!,5,1,0,General,Dresses,Dresses +940,35,Great gift,Gave this sweater to my mom this christmas and she has hardly taken it off...so cozy and cute!,5,1,2,General,Tops,Sweaters +1081,39,Comfy and nice contrast,"I have seen this dress for a while and was holding off, but then i decided to try it on (the regualar) size in store to keep in mind for my next binge :-). + +the cut is flattering, length is jsut above my knee so i would not get the petite on this one. i would, as others have mentioend, wear it with a belt. overall it fits like a nice comfy t-shirt with comfy skirt, but as a dress, very nice.",5,1,15,General Petite,Dresses,Dresses +1081,60,Dressed to impress.,This dress is so cute and so comfortable. i will be wearing this to a lot of different kind of events. i am so happy with this purchase.,5,1,1,General Petite,Dresses,Dresses +1086,31,"Nice fall dress, but didn't fit me well","For reference: 5'3, 130#, athletic/muscular body type (broad shoulders, slim hips) +i'm a bit confused on the sizing for this, especially based on other reviews mentioning they needed to size up. i ordered the xs, and i was swimming in it. i usually am quite comfortable in size small, so i'm not sure why the xs was still too big. perhaps you need hips for this dress to work, because it was really just hanging on me and not figure flattering at all. i'm not sure if ordering the xxs would make thi",3,1,1,General,Dresses,Dresses +857,49,Comfy and warm,"I only gave this three stars due more to personal preference than to any real flaws with the product. it is very comfortable and for a jersey-style shirt quite warm. but that is one of my issues with the shirt. i wanted to wear it well into spring and i think it'll be just too warm. (i live in the northeast) i also felt that while it fit tts it had a more generous fit than what i expected, which was another negative for me. i wanted it to be more fitted to my body. however, i did keep it because",3,1,1,General,Tops,Knits +1086,35,Love this dress,"This is the most comfortable dress ever! it's so soft. i typically wear a size small and this fits true to size. it is long enough to wear to work, which i love. it looks great w flats in the summer and it's going to look great w boots!",5,1,0,General,Dresses,Dresses +1081,28,,Very cute and comfortable! can be wear with tights and boots or into spring with flags! very flattering fit for someone with smaller upper body them bottom half!!,4,1,2,General Petite,Dresses,Dresses +1068,60,Cargo pants with style and comfort!,Like these pants and they were on sale--does not get better!,5,1,0,General Petite,Bottoms,Pants +1086,59,Everything summer,"I meant to order this online and forgot. i was very happy when i was able to get it in one of the stores yesterday. it's everything a summer dress should be: flowy, lightweight and a great print. i can't believe there's no reviews and that it still available in every size. for reference i got a small i am 5'4"" 135. this dress i thought would make me look wide because it's all straight across but in fact it really has a great flow and is cut well. grab it while you can.",5,1,4,General,Dresses,Dresses +1081,29,So cute,"This was way better than i expected it to be. tts and flattering. the material on the top section is on the thinner side, but is very soft and comfortable. the skirt section is a little on the shorter side for me, but with tights i think i could still make it wearable for work.",4,1,0,General,Dresses,Dresses +624,46,,Cute and comfy. looks like i will be able to dress up a bit too. fabric and fit are great!,5,1,0,Initmates,Intimate,Lounge +837,35,Great design with cheap fabric. not worth it.,"Really wanted to like this and took chances based on other reviews, even with the sale price and addtl discount. it's basically $30 blouse fabric with design and detail-work of a much more expensive blouse. the white is sheer and and fabric will wrinkle easily. if it were black, you could probably get away with it, but the white shows too many flaws and will wrinkle. sad to have to send it back.",2,0,0,General,Tops,Blouses +1053,45,Odd proportions for me,"I ordered a large, and was hopeful that this would be as comfy and stylish as others reviewed. for me, it was not. it ran a little small on top, buttons bulged at my chest, and was hard to put on. bottom part fit well (although flattened my butt unflatteringly). i'm sure this works for some, just wasn't the right fit for me. sent it back.",3,0,0,General,Bottoms,Pants +1053,38,"Pretty, but a bit small","I can't decide on these pants. after trying them on in the store, they are very soft and a beautiful blue color. however, i found them a bit small. i usually take a l in retailer pants, and these are very tight. probably could pull them off with a tunic top, however, in spite of the fabric, the fit was just not comfortable for me. a good alternative for denim if you are slender, rather than curvy.",4,1,12,General,Bottoms,Pants +1081,36,,This dress is so cute but it definitely is highly as other reviewers have stated.,4,1,0,General,Dresses,Dresses +1081,30,Easy peasy,What a great find! this is so easy to dress up or down and a very comfortable fit and fabric. the skirt fabric is pretty form fitting so not something i can comfortably wear to work but it's a versatile piece otherwise. the buttons on the sleeve are a nice touch.,5,1,0,General,Dresses,Dresses +1081,24,,"I really like the look of this dress, but i ended up returning it because it was too short. the shoulder area was also too big on me.",3,1,1,General,Dresses,Dresses +1024,66,So good,"At 5'3"" and 155 pounds with a short waist, it's hard to find attractive jeans. hit the jackpot with these. they're comfortable, very slimming with a perfect rise and length. i ordered size 32 so i did go up a size. love the button closure instead of a zipper. these are much better than my citizen boyfriends that cost twice as much. try these, you won't be disappointed!",5,1,0,General,Bottoms,Jeans +1086,66,Not for me,Took another reviewer's advice and sized up to an xl. unfortunately it grabbed around my midsection and wasn't attractive. love the color. and it's dreamy soft. the sleeves are attractive on less than toned arms. my problem was with the side view which emphasized my tummy (it clings) and you could see a lot of my bra because in the larger size the armholes are large. sadly returned.,3,1,2,General,Dresses,Dresses +995,48,Cuter in person,"Don't think the photo does this skirt justice. it's a very flattering fit, the kind of skirt you'll wear all summer!",5,1,0,General,Bottoms,Skirts +1068,46,Comfortable and stylish,These are great for lounging around or even wearing to work as they can be dressed up or down.,5,1,0,General Petite,Bottoms,Pants +1081,22,The sisterhood of the traveling dress,"If any of you have read the book or watched the movie ""sisterhood of the traveling pants"" then you will understand this analogy. i am convinced that this dress hugs everyone in the right places. it looks kind of boring on a hanger, but has an incredible fit that complimented my waist so much. i instantly felt tinier in every trouble area of my body. although the design of this dress is casual, i feel that it can easily be dressed up for a nice brunch or meeting. i love basic clothing designs tha",5,1,6,General,Dresses,Dresses +828,41,,"Wanted to love this top, but couldn't. the arm holes where so big you have to wear a top under to hide side boob... very light sheer material. had to go back",3,0,0,General Petite,Tops,Blouses +1081,27,"Great dress, even better with a belt!","Easy to wear and very cute, especially for curvy ladies. but, i think it looks best worn with a best, or a blazer on top, something to emphasize the waist a bit more.",4,1,0,General,Dresses,Dresses +1086,31,Not for my curves,"5'7"", 34c, 28 jeans, size 4 dress. fell in love with the pattern in particular, knowing the design might not work best for my body. ordered the size small - it was not unflattering - but it did nothing for my body type. if anything, the excess fabric made me appear wider and made my waist non-existent. the trouble was that the skirt portion has the elastic band starting high - approximately right under your chest - almost like an empire waist (this is hidden by the flap of material hanging over",3,0,5,General,Dresses,Dresses +1053,34,Poor quality - disappointed,"I am sooooooo massively disappointed in this purchase. i thought i had found the perfect pant in this style. both more comfortable and more flattering than similar styles in the store. i wanted to wear them every day; received lots of compliments; felt that you could dress up or down; etc. this is where i have to admit that i wore them several times straight from the store before washing. on the second wear, i noticed threads coming out on the seams, but just on one side of one leg. this was irr",2,0,0,General,Bottoms,Pants +1086,37,Very comfy dress!,"Very comfortable dress for fall and early winter. love the material and great to throw on to run errands in over the weekend, or could dress up with flats and sweater for work.",5,1,0,General,Dresses,Dresses +1068,47,Great pants,These pants are perfect for any closet! they can be casual weekend or paired with a light top and heels. very comfortable. love the detailing around the pockets.,5,1,0,General Petite,Bottoms,Pants +837,41,,"It's definitely not a $100 blouse, but i took advantage of the sale on sale and gotta say i love it! it's slightly sheer, but with a plain nude bra it's fine. beautiful details, very retro, light and breezy. wearing it to work and with jeans.",5,1,1,General,Tops,Blouses +940,25,Love this cadigan,This cardigan is defined by comfort. it is of a lovely knitted like material and is very warm. the pockets are great for holding your phone and the billowy sleeves make you feel like you are wrapped in a blanket.,5,1,0,General,Tops,Sweaters +940,48,Take a close look,"When i saw this online, it looked like a regular cardigan with a hood, but with looser arms and a generally looser fit. just be aware it has bat wings or something (not sure what it is called). there isn't one picture included with an arm lifted, so without a really close look, the arms look loose, but normal. i returned it :(",5,1,5,General,Tops,Sweaters +1086,29,Very comfortable dress,"I love how comfortable this dress is! i ordered an xs and it fit perfectly (i'm 5' 4"" and it falls to just above my knee). it holds its shape and is very flattering. pair it with a cute denim jacket and ankle boots for fall, or a light scarf and ballet flats for spring!",5,1,0,General,Dresses,Dresses +1068,47,I will live in these pants the rest of my life,"Seriously, most comfortable pants ever!!! fabric feels very luxe. are they dressy enough for the office? i don't care, they feel that great.",5,1,0,General Petite,Bottoms,Pants +1081,40,Dolan softness,"This dress is is super snuggly and soft. i have recently been purchasing more and more dolan clothing because of the quality and comfort. i'm 5'7"" 126 lbs and the medium fits well. i find the arms to be somewhat long, but not too much so.",4,1,0,General,Dresses,Dresses +1081,19,,"Really cute everyday dress. love the fabric and material, it's super soft. a great dress to just throw on and go.",5,1,1,General,Dresses,Dresses +1086,33,So soft and comfortable!,This dress is really really soft and comfortable. it's loose but still flattering. i would definitely recommend it.,4,1,0,General,Dresses,Dresses +1024,31,In love!!,I may wear these every day! i am obsessed. i am 5'8 125ibs normally a size 25/26 in jeans. i ordered these in a 26 and they fit like a glove! they do not stretch much at all and keep a really nice vintage fit and feel. i am extremely happy with this purchase. these are a must have staple in anyone's wardrobe.,5,1,1,General,Bottoms,Jeans +1086,32,Fun dress!,"I bought this dress to wear to a pre-wedding event at an out of country beach wedding in late fall, so i bought it a size smaller than normal, but it fits, so i could say it runs a little big. very cute though and i thought even more flattering than i thought it would be from the picture! i'm more top heavy, and it kind of camouflaged that, which is always great!",4,1,3,General,Dresses,Dresses +1081,68,"Styish, cute and comfortable","This ""little"" dress is extremely cute and very comfortable. i didn't pay enough attention to the picture and totally missed the faux wrap skirt, but that only adds to the appeal, and is well done, not showing too much skin. this dress looks great with a white denim jacket or a red cardi. it will get lots of use and really is a 3 quarters of the year piece.",5,1,0,General,Dresses,Dresses +1081,50,Beautiful dress!,"This dress is so pretty, comfortable and easy to wear. i got so many compliments in it. it is a winner for sure!",5,1,0,General,Dresses,Dresses +857,55,,Love this top!,5,1,1,General,Tops,Knits +1086,33,Perfect for year-round work comfort,"Soft, comfortable, flattering - great for spring, summer, fall, and wear a tight black long-sleeved tee underneath for winter! not form-fitting, even if you size down.",5,1,0,General,Dresses,Dresses +837,37,,"Very nice but thin materal. very sheer. i paired with the palmarosa wide legs. loved the way it looked. i do think the sale price is a bit high for this shirt, though.",5,1,0,General,Tops,Blouses +1068,54,,I got this before the winter. so i could wear it for summer and fall. it is light wave material for summer and fall. i think it would be good for spring time too.the color of this pants is more natural so it is easy to march any color of tops.i really enjoy it.,4,1,0,General Petite,Bottoms,Pants +1086,44,Sized up and perfect!,"I tried this on in the store and was sad that the small was a little unflattering around my mid section. couldn't stop thinking about the dress though, so checked reviews online from home...many said to size up. i ordered a medium and it is perfect! fits so nicely now and the fabric is so cozy!! i thought the top would be too big in a larger size but it still looks good.",5,1,0,General,Dresses,Dresses +828,67,,"I really love cloth & stone, and this top did not disappoint. i am usually a size small in tops but tend to be an xs in halters because the arm holes are usually big on me. i went with my usual xs and it fit perfectly. it has a nice drape to it and is super soft. i will add that when looking at the picture, i didn't notice that there is a muted pink to the plaid design. i originally thought it was just a navy blue and white plaid. however, there is a really light pink to it as well. i actually w",5,1,1,General Petite,Tops,Blouses +1078,28,Love this dress!,Wonderful dress! very comfortable and great fit! received numerous compliments whenever i wear it.,5,1,0,General,Dresses,Dresses +1094,30,Cute dress with faulty zipper,This is a beautiful dress. i sized up 2 sizes based on other reviews and it fits well. it is on the shorter side. i purchased the blue and it's a beautiful color. i was in love with the dress until the zipper burst open after wearing it for five minutes. i think i'm going to have the zipper replaced because i like it so much. but at the high price point there should be a functional zipper.,3,1,1,General Petite,Dresses,Dresses +1081,53,Neckline bothers me,"I like the fabric - very smooth and feels nice on the skin. i like the handkerchief hemline too.i didn't realize how much i would not like the neckline. it feels too tight and too high to me and i'm not sure i could wear this for long without pulling at the neck. also, the fit is loose, maybe a bit too loose for my taste. but it's the neck fit that makes me have to return this dress.",3,0,28,General,Dresses,Dresses +1078,33,I want to wear this everyday!,"This dress is so soft and comfortable. great winter staple. i purchased the blue motif, which really doesn't have any blue on it. the stripes are fun and make this the perfect dress to throw on and feel great while staying comfortable.",5,1,0,General,Dresses,Dresses +1094,66,Hideous in green,I ordered this dress in the green color. the dress did not look like the picture. i returned the dress since it looked like something to wear to a farm barnyard dance. i returned the dress.,1,0,1,General Petite,Dresses,Dresses +1078,32,Love this dress!,I love this dress! i generally wear size 10 and the medium fits perfect. i'm a curvy lady and this dress fits great. i've received many compliments on it and might even get another pattern because i love it so much!,5,1,5,General,Dresses,Dresses +1078,38,Comfortable meets cute,"This dress is adorable. it's easy to wear, really comfortable and i think looks great on. i'm 5'4"", i probably should have gotten a petite - the shortest part of the dress meets my knees. the fabric is quite soft, flows like jersey - it does seem to be a little cheaper and i can't speak to durability yet...hoping it holds up!",4,1,4,General,Dresses,Dresses +1078,41,Just perfect!,"I wanted to love this dress..and it did not disappoint! true to size, not too snug but doesn't make you look shapeless. the material is soft and has great movement. looks great with boots and booties. i know i will be wearing this one often!",5,1,1,General,Dresses,Dresses +1078,28,,"Casual comfort with style! fabric is a dream to wear and it flows nicely. not exactly form-fitting, but still flattering. i'm 5'9, 140, and wore the medium.",5,1,0,General,Dresses,Dresses +1078,59,,The fabric is super soft and litght. it hardly feels like you are wearing it. body skimming fit can disguise a less than perfect figure. can easily go from day to night. absolutely love.,5,1,0,General,Dresses,Dresses +1078,28,Fits like a mumu,"This dress looks great online with boots as shown. when it arrived and i tried it on, it fit great on my arms, wasn't too tight on my neck, but once it went down over my chest (36c), the dress never came back ""in"" to show my feminine waist/shape. it just looked like a big trash bag on me, very disappointing! similar to a mumu.",2,0,2,General,Dresses,Dresses +1081,68,,"I didn't think i'd like this due to the high neck, but i was in the store and it was so soft that i tried it on in the black motif. this dress is so comfortable and flattering. it's definitely a versatile piece: dress down with a denim jacket or dress up with heels. and it has pockets!",5,1,0,General Petite,Dresses,Dresses +1081,46,Maeve has done it again!,"Tried this dress on at my local retailer and just fell in love with it. it is a sleek, almost '90's style design that is so comfortable and flattering at the same time. and it has pockets! i will be wearing it all summer with flats or sneakers.",5,1,0,General Petite,Dresses,Dresses +1078,48,So simple but so cute!,"I bought the multi-color stripe and it is adorable! i am 5'9"", 135 lbs and purchased a size small. it is a perfect length and drapes well...not too tight at all. i received a ton of compliments the first time i wore it. highly recommend!",5,1,1,General,Dresses,Dresses +1078,57,Thin and sheer,"I was hoping this dress was a bit thicker, but when i tried it on the fabric was very thin and sheer. because of the body skimming design, this dress likely won't work on many without some serious spanx or body trimming hosiery. if you work out and are very fit, you might like it, but i don't so i'm not that brave! lol",4,0,19,General,Dresses,Dresses +1078,58,Classy cling,I took a chance buying online. i'm thrilled this dress clings at the top and releases where it should (below the bust) without looking like a tent. a very classy dress for work or play. just hope it holds up after a wash as the material is thin (but opaque). love this dress.,5,1,0,General,Dresses,Dresses +1081,47,Great dress,"I always wear dresses because fl is hot. this one is easy breezy and fun. it's trendy without trying too hard. nice lines, the fabric is nice and soft and washes well. the pattern is pretty, i got both colors. i always get compliments when i wear this dress.",5,1,0,General Petite,Dresses,Dresses +1094,24,Great dress but not functional,"I loved this dress. it runs small (i'm normally a 2) so i had to get a 4. in the fitting room, the zippers got stuck a lot. i assumed it was just from the way the waist was sewn in. finally i found a dress that would zip pretty well. + +i went to put on this dress for my rehearsal dinner the night before my wedding. my fiance and i tried in vain for 20 minutes to try to zip it up... and then it broke. the part that was zipped became unzipped and the zipper had no where to go. it was awful. i co",1,0,3,General,Dresses,Dresses +1078,27,,"Love this dress!! i layer spanx and a seamless tank underneath, as the fabric would show everything if worn on it's own.",4,1,0,General,Dresses,Dresses +1081,62,Funny armholes,"In general, if you were a fan of the turtleneck swing dress, you'll love the overall fit (tts) and fabric of this. the patterns/colors are also great! my issue was the armholes...they are a bit too large and the opening comes a little too far forward which makes it a little unflattering in the underarm area. i may reconsider when it goes on sale, but it's a pass for now.",4,1,3,General Petite,Dresses,Dresses +1078,62,Bought every color,"The price is amazing for this easy and flattering dress. looks great as is or with a scarf, sweater, jacket, you name it! i just couldn't resist getting carried away with this one..",5,1,0,General,Dresses,Dresses +1081,33,"Soft, comfortable, and flattering","I love this dress so much. it is more comfortable than any of my pajamas and the best part is it is very work appropriate, especially paired with chambray shirt buttoned and then tied at the waist.",5,1,0,General Petite,Dresses,Dresses +1078,43,Just a few things off,"I thought this dress looked really cute and many people gave it great reviews. for me, there were a few key things off for it to work. i thought the material was soft, although not thick as you might expect with a turtleneck style dress. i ordered a small and the top fit ok, the arms were a little tight. then the larger problem was the body, it hides everything which is great but the way it fell and just sort of hung there, it didn't do anything for my figure and was not flattering around the wa",3,0,0,General,Dresses,Dresses +1094,49,,"Outstanding dress. looks like a class that i will wear for many events to come. i couldn't decide which color way i liked in this dress----the red/white or the green, so i purchased both. i can see myself wearing the red into early fall and the green is a very springtime/summer dress. yes, the cut runs small but i don't think it is as small as some of the other reviews. i typically wear i size 6, and this one the 8 fit perfectly, so maybe one size up.",5,1,0,General Petite,Dresses,Dresses +1078,69,Great dress,"Great dress - the hardest part was picking which color. the dress is a slim swing silhouette and very flattering. the fabric skims the body without highlighting my problem areas (lower abdomen and hips). the dress is modest enough for work (it ends a few inches above the knee in the middle, comes to my knee on the sides). i am always a xs or s in maeve - i went with the small on this dress. the sleeves aren't as long as the picture shows - they ended where they should. i went with the navy and w",5,1,17,General,Dresses,Dresses +1078,45,Awesome dress/tunic,"I fell in love with this as soon as i tried it on. it doesn't look nearly as good on the hanger, so definitely worth trying on. the fabric is high quality and super comfy; the fit is very flattering. i am curvy, 5'7"" and got the navy stripe print in size small. it's very forgiving, fitted without clinging to any ""problem"" areas. i also love how versatile it is--you can wear it as a dress as shown on the models, or as a tunic over tight jeans or jeggings/leggings. love it!",5,1,0,General,Dresses,Dresses +1078,39,Almost passed,"I saw this online and wasnt sure and actually walked right past it in the store. but my usual stylist walked around the store with me and insisted it was a goodone. she usually knows what she is talking about... super soft nd comfortable, love the long sleeves (it has hidden buttons), cut is flattering on everyone. i ended up ordering petite size. turtleneck is not too tight, and the dress can pretty mjuch be dressed up or down. my friend also bought it (huhm twinsies)!! my favorite design was t",5,1,1,General,Dresses,Dresses +1081,63,,"Great, stylish, swinging dress. softly draped fabric, so comfy to wear....very slimming and figure flattering.",5,1,0,General Petite,Dresses,Dresses +1078,29,,,5,1,0,General,Dresses,Dresses +1078,43,"Comfortable, flattering, and versatile","I love this dress (i bought the navy with white stripes). it is comfortable, flattering, and versatile. best of all, i received a complement from my husband, who never comments on my clothing! the drapey knit fabric fits closely (but not tightly) in the shoulders and bust and then skims over the lower body. the fabric is soft and stretchy, not too thick, but still substantial enough that i did not need to wear support garments underneath (i am 5'4"", 123 lbs). i wore this to a christmas party and",5,1,1,General,Dresses,Dresses +1094,30,"Pretty dress, annoying zipper","I bought this dress at the sale and love it! very retro inspired and pretty. however, because of the placement of the zipper with the ribbons, it's hard to zip up. i had to size up to a 12 for this problem alone.",4,1,3,General Petite,Dresses,Dresses +1094,32,So perfect...except that zipper,I ordered online. i sized up one size. it fit perfect. so flattering and so pretty. then i tried to take it off and the zipper stuck...badly. 30 minutes later i was sadly packing it up to ship back. the zipper is that awful.,2,0,2,General Petite,Dresses,Dresses +1078,29,Fun comfortable dress,"Love this dress - ""swingy"" is definitely the right descriptor. as someone with a large chest i was worried it would be boxy and make me look larger, but the cut is flattering even if it is on the loose size. it runs slightly large so if you're between sizes i would size down.",5,1,3,General,Dresses,Dresses +1081,29,Meh...,"I have the long sleeved version of this dress and was super excited to try on the sleeveless version, but it just didn't work nearly as well. the armholes are huge and will definitely show quite a bit of bra. the black pattern was also nothing special. i like the mock turtleneck and the dress has a nice swingy feel - would consider getting it if it went on sale. + +i tried on the small and the extra small - didn't notice a difference between the two. i think i have on the xs in the photo.",3,0,1,General,Dresses,Dresses +1081,46,Lovely but not for me,"I wanted to love this dress.....the reviews were great, the price was right and i needed a simple black dress. the fabric (jersey) is lovely and drapes nicely and the print was pretty. unfortunately, the armholes were way too long and low for me and even with a black bra, i was sharing more of my lingerie than i wanted. perhaps someone with a slightly smaller chest could size down and avoid oversharing! +for reference, i am 5'5"", 145 and wear a 30gg bra. i ordered the m.",4,1,1,General,Dresses,Dresses +1078,55,Great dress!,This dress is a great casual outfit. tha fabric is substantial and very soft. the only negative would be it is a little large through the chest/arms. i ordered a large as i am curvy but would like to exchange for a medium. sadly the medium is sold out but i love the dress so much i am keeping it!,4,1,0,General,Dresses,Dresses +1078,46,Extremely awkward,"I bought this online so didn't realize that the fabric at the bottom is very, very stiff. i was expecting something silky, or at least on the softer and more moveable side. the best description i can think of is an overly starched mens dress shirt. that being the case, it kind of juts out in weird places. the sweater part is very nice, but it is somewhat closer fitting than what it seems in the picture. the fabric bottom is too ample for the slimmer design of the sweater which just adds to the o",1,0,9,General,Dresses,Dresses +1078,29,Comfy!,"Love that this is comfy, with a subtle yet sexy vibe. had so many compliments when i wore this to work, with everyone asking where i got it! fits true to size (110lb, 5'4"") and xs fit perfect. took off a star because it may look like it could get that ""fuzzy"" pilling over time.",4,1,0,General,Dresses,Dresses +1078,28,"Perfect, easy cold weather dress.","This dress is completely versatile and great to wear as is or add a vest or chunky sweater for a layer. i bought it late last week and love the fit and comfort of the jersey knit fabric. also, you can't beat the price for an retailer dress!",5,1,3,General,Dresses,Dresses +935,38,80's acrylic quality,"My conscience screamed at me not to buy this sweater and i wish i had listened! i noted the fact that it was acrylic and also the fact that it was oversized. but i also loved the design and can't resist anything with mustard yellow. i was instantly disappointed when i received it, almost didn't even try it on. how can they possibly charge $185 for terrible itchy 80's acrylic? it looks cheap, it feels cheap and it didn't even fit well. only redeeming quality: easily returnable!",1,0,3,General,Tops,Sweaters +1081,47,"Love this dress. if they make more, i'll buy more","I love this dress! the design is simple, colors and patterns are eye-catching but not over the top. cutting is perfect for me and very flattering. the material is flowy not clingy. it is a piece of easy, no-hassle garment that i would love to wear everyday and make it my uniform. seriously, it doesn't get better than that. if they make more of this style with different colors and patterns, i will just buy them blindly. + +a word of caution: the dress does have slightly bigger armholes so some pe",5,1,0,General,Dresses,Dresses +1094,47,Darling!,"This dress is adorable. i got it in red and it is very flattering. i love the shape - it has a slight flare without being too full. the fabric is firm so it holds a nice shape, and there is a stretchy material lining on the inside that make it very comfortable. my only complaint, and why i didn't give it a 5 star rating, is that the zipper sticks at the ribbon junctions. a bit frustrating, but not enough that i won't keep the dress.",4,1,6,General Petite,Dresses,Dresses +1081,42,"Love it but it's pink and blue, not cream and blue","Just a heads up because i didn't notice the pink in the blue motif print until it had arrived. almost sent it back - changes the overall aesthetic, makes it harder to layer in winter, black shoes stand out more etc... but i don't really like the orange print and i'm a red head... so i'm keeping it but it would have been amazing if it were cream and blue. i also bought the emerson swing dress. this dress runs tts (emerson runs a touch larger). i'm 5'5"" and the dress came to just barely above my k",4,1,1,General,Dresses,Dresses +1094,43,Very cute!,This is a super cute dress which is quite flattering. it is made with a higher waist and a bit of a fit and flare. the only complaint is the side zipper which seems to get caught and not move easily.,4,1,0,General Petite,Dresses,Dresses +1078,54,Perfect!,"I originally bought this dress in navy and i absolutely loved it! so i bought a second one in the neutral color. they both fit perfectly and are very flattering! i love how i can dress them up or down. i wear them out to run errands and look cute while being comfy. i also wear them to work! i am an np so business casual is a requirement for office days. when i'm used to wearing scrubs, i hate wearing true dress clothes. these dresses are a happy medium. i only wish my size was available in the t",5,1,0,General,Dresses,Dresses +1078,60,Darling dress,"This dress is super comfy and really cute! i was worried that the horizontal stripes might not be flattering, but they didn't make me look larger at all. it's great for casual wear, but can easily be dressed up with a jacket and booties.",5,1,2,General,Dresses,Dresses +1094,36,,Super cute well made dress. runs very small. order at least two times your typical size.,3,1,1,General Petite,Dresses,Dresses +1078,36,Perfection,"This dress is absolutely flattering and will make you feel beautiful. fabric is thin but can easily be transitioned from fall to winter to spring. hugs all the right places. true to size. i am 5'2 and 120lbs, curvy and the small fit well. i am so happy with this purchase. great price point as well",5,1,1,General,Dresses,Dresses +1094,50,Great fabric and detail,"Since several reviews said that this dress ran small online, i decided to go to my local retailer store to try this on in person. i am 5""6"", 120 lbs. and normally a 0 or 2. the 2 worked perfectly. i loved the red version online but thought the green was better for me in person (the red is a tomato red and was more overpowering on my fair skin). the green also has light blue in the detail print so maybe good if you have blue eyes. no problems with the zippers on the ones i tried at the store.",4,1,0,General,Dresses,Dresses +1094,24,"Gorgeous dress, poor quality zipper","First, i absolutely love this dress, and i was super excited when it arrived today. i sized up as other reviewers recommended, and the dress fits perfectly. however, when i zipped the dress up, the zipper came apart in the center. going up another size would make the dress fit improperly, so i am hoping to exchange it for a new one and have better luck with the zipper.",3,1,0,General,Dresses,Dresses +1081,67,My new favorite,"Just got this dress in the orange print and i can't begin to say how much i love it!! looks even better in person than online and it's super flattering. love the neckline, armholes are perfect and show off toned arms and shoulders ( this is the kind of dress that makes time spent at the gym worthwhile!). the fabric is light and stretchy and the pockets are an extra bonus. +i would say fit is tts but keep in mind that it's very loose at the bottom so i would go down in size if you want a less loo",5,1,5,General,Dresses,Dresses +1078,63,Speaking to the older (still hip) size 12-14 & up,"Love this dress! purchased it online, the xl sizes can be difficult to find in the store. dress is very cute on and you don't need to be reed thin like the model. it flatters the figure and yes, i wore spank with it. the length is good, the design (black and neutral) is flattering. i chose this to wear to my husband's christmas office party (his new job)! you know first impressions; i did not want to be over dressed. i wore my antho black boots which lace in back and go over the knee- (slouch a",5,1,2,General,Dresses,Dresses +1078,36,Work or play!,"This dress is super comfortable and flattering. i went with the stripes (and the p to shorten the length) -- it looks amazing with otk boots. however, the material isn't very thick; it's more of a fall/spring dress than a winter. i'm a xs-s p in retailer dresses - i went with the small. xs would've fit but less flatteringly",5,1,0,General,Dresses,Dresses +1078,28,Love this fabric!,The sleeves are fitted which i love. works with a belt or without.,5,1,0,General,Dresses,Dresses +1078,42,Say yes to this dress!,"I read the rave reviews, but tried this on with low expectations. i am curvier on top so i thought the dress would make my chest look huge and show my tummy budges. the dress was the exact opposite - so flattering and a piece i could truly dress up or down. i am 5'6"", 135lbs and a small fit perfectly. i rarely purchase anything at full price but plan to circle back to my local retailer to pick this up today.",5,1,0,General,Dresses,Dresses +1094,24,,"Loved this dress when i tried it on in the store and thought it would be perfect for a casual wedding. unfortunately, the day of the wedding the zipper split and i had to wear something else. it fit well, but was poorly made. based off other reviews, this isn't the first time this has happened with this dress! not worth the risk at all.",1,0,1,General,Dresses,Dresses +1078,42,Super flattering,"This dress is comfortable, hugs and skims at all the right places, and sports a perfect length for a shortie like me. wish the other patterns weren't sold out.",5,1,0,General,Dresses,Dresses +1078,49,,"Love everything about this dress...cut, color, material and price!",5,1,0,General,Dresses,Dresses +1081,39,Stargazer dress,This dress has style and a delicate balance between design and the beauty of the material.,5,1,1,General Petite,Dresses,Dresses +1094,29,Runs very small,"A cute dress, though waist a little too high (more of an empire waist... hitting at widest part of rib cage). this looks like it should be a stretchy knit dress, but the detailing has no give whatsoever and the dress runs quite small. i usually wear a 00, but though i could get it zipped, it wasn't comfortable, and if i want to keep it, i'll need to size up to a 0. i'm 5'6"", 32b-24-35.",4,1,26,General,Dresses,Dresses +1078,46,Love it!,"The fabric feels and hangs nicely. it's very versatile, you can dress up or down. i purchased the navy stripe one and wear with brown boots. thinking i might need one of the other two as well, perfect for texas winters!!",5,1,3,General,Dresses,Dresses +1078,31,Love,"Super cute, flowy, and flattering. i would buy again in a heartbeat.",5,1,0,General,Dresses,Dresses +1081,22,Exactly what i hoped it would be!,"I finally pressed 'go' on the orange dress during the weekend sale. the dress is terrific. i am a busty (36dd) size 8/10 and the m fits perfectly. based on the reviews, i had planned to take this to the tailor to take in the armholes, but it is not necessary at all - no bra showing in front or back. i am 5'6"" and the shortest part of the hem is about 2"" above my knee. there is no lining, so i might add a short pull-on slip depending on where i wear it, but otherwise this is an easy dress to be w",5,1,0,General Petite,Dresses,Dresses +1081,38,Perfect summer dress,This dress is so beautiful on. purchased in black motif and it can definitely be dressed up or down. material is lightweight (perfect for summer) and the dress washed up beautifully in the washing machine. i always wear an xs in maeve and the dress fits true to size.,5,1,0,General Petite,Dresses,Dresses +1078,55,"Fl;attering, versatile, packable","I had to order this dress in three different sizes to get it right. i'm 5'6"" and 125, but have a petite frame with curves, so i ordered the small petite; the sleeves and length were too short. then i tried the small regular, and i swam in that one; way too much fabric. the i tried the xs and it fit perfectly. it does stretch around the bust line, so wearing a red bra would look tacky as you can see through the lighter fabric, but black or nude is fine, or even a slip or a tank would cure that is",5,1,0,General,Dresses,Dresses +1094,49,,"I so wanted to love this little dress, but it just didn't fit my body well. as suggested by others, i ordered a size up, and it did fit. the fabric is stretchy, so there is some give there, but the size zip was a little sticky, because the trim causes a lot of fabric to be bunched along the zipper. the real problem was that the dress was too short-waisted for me. the waist band came right under my chest. maybe this would fit someone with a small-or mid-sized bust better than it did me. i also th",4,1,0,General,Dresses,Dresses +1082,54,Best dancing dress ever!,"I bought this dress for an all white event. i had many compliments but it was the most fun dancing dress because the top layer spins out! it is loose and flowy but the arm holes are rather large and sizing down might have been better. i am 5'8"" and athletic and ordered a m and if i had time might have exchanged for a s. you must steam out creases before wearing.",5,1,3,General,Dresses,Dresses +1078,36,,"This is the softest most comfortable dress ever. i bought a large because it was the only one in stock at the store. i'm 5'9, 135 and it's a little loose but still flattering and comfortable due to my height. if you are tall you will not be disappointed w this dress!",5,1,0,General,Dresses,Dresses +1081,49,A little too flowy for me,"This is a really cute dress, just did not look flattering on me at all. i suppose i could have gone down a size, however i just did not love it. i am 5'3"" 130#, athletic build, 36dd. i read the other reviews and everyone loves this dress. here is what i did not like. there are pockets, which i cannot figure out the purpose, that lay oddly all bunched up right at the hips. due to the shape of the dress, it bunches out. on my short frame, it made me look shorter and wider. the fabric is a lightwei",2,1,1,General Petite,Dresses,Dresses +1081,24,Wish the fabric was better!,I loveeeeeeee this dress! i saw it online and immediately loved the blue/ orange large floral print but so did everyone else and it sold out quick. but i thought the shape could be flattering so i ordered in the black polka dot and loved the shape! so flattering. i ended up going in store and buying the other two colors. the patterns are vibrant and lovely shape. my only concern was seeing it in store i noticed it stretching while just hanging on the hanger. i wish the fabric was of better quali,4,1,0,General Petite,Dresses,Dresses +1078,42,Love the design!,Finally a dress that is not too short! i'm 5'11 and ordered two sizes. the small was too short and a little snug for my liking. but the medium was a perfect fit.,5,1,1,General,Dresses,Dresses +1081,43,,"I got so many compliments from friends, i bought another one in different print. packs and travels well. i'm 5'6"" and a heathy 160 lbs, carry my weight in the middle. this dress is very flattering and fabric feels like pj's. also east to wear with regular undies and racer back bra. living in a warm humid climate, it's my new go to dress. the fabric is so stretchy that i found the medium a better fit instead of my usual large.",5,1,0,General Petite,Dresses,Dresses +1078,51,Perfect fit,"This will be a great go to piece with leggings and boots for winter and to transition into spring with wedges. i purchased the blue stripe and the multi stripe with the intention of returning one but i liked them enough to keep both. the quality of material is great and super soft and i love the little snap detail on the sleeves. i am 5' 7"", and most always wear a size medium and it fit perfect. the dress hit right above the knee but not too high so i can wear the dresses with or without tights.",5,1,0,General,Dresses,Dresses +1081,61,Fun dress,"I got this in black with white dots. fits great, flattering and helps hide middle section.",5,1,0,General Petite,Dresses,Dresses +1094,34,,"Tried and bought this in the store! loved it. my normal size 4 worked great. little word to the wise, be careful zipping it up, which is a little tricky. the first one i grabbed had a broken zipper. just takes a little work getting it up bc the fabric is thicker.",5,1,3,General,Dresses,Dresses +1078,39,Like butter!,"Love this dress! i bought the blue motif. which barely has any blue at all. it is the softest cotton dress i own. i wore it with my red hunter boots today and it made for the best rainy day ensemble. love, love! and i got it on sale which just sweetens the deal :)",5,1,0,General,Dresses,Dresses +1078,43,This dress is everything,"If you want it, buy it now. this dress is everything and then some. love it. i bought two, the neutral (black) and the turquoise. the turquoise one is a very retro print, i am getting many compliments. they are so comfortable and flattering. i'm all about this price point retailer. more please!",5,1,0,General,Dresses,Dresses +1078,34,,Absolutely love this dress! so cute with booties and a jean jacket. will be a great staple for spring and fall,5,1,0,General,Dresses,Dresses +1078,46,Super swing dress,As usual this dress does not disappoint. looks great with boots and is the perfect day to date dress.,5,1,2,General,Dresses,Dresses +1094,58,"Runs small, but gorgeous!","Gorgeous, color, fabric, and cut. i ordered the blue in a 14. i always wear a 14p or large petite in retailer. i purchased a regular 14. it's a full size too small in the ribcage. cannot zip it up.. i'll be exchanging mine for next size up. even though i'm 4'11"", the length is fine. if you're tall, it might be pretty short for you.",5,1,35,General,Dresses,Dresses +1078,36,,"Very comfortable and stylish. can wear with tights, as a dress, or over jeans. cute any way! the material is not super thick, but not too thin.",5,1,0,General,Dresses,Dresses +1094,38,Beautiful summer dress!,"This dress is really lovely. i purchased in the blue green color and think the pattern and ribbon detailing is gorgeous. it runs very small - i am normally a 00p in maeve, and in this dress, due to the length, ended up with a 2 regular. i like my dresses to fit and could have gone with the 0 - it fit well at the waist but was tighter than i prefer across the chest and wanted a more comfortable fit. as other reviewers have noted, it has a higher waist which i think contributes to the sizing issue",4,1,3,General,Dresses,Dresses +1078,41,Lovely perfection,"I bought the dress in navy stripe in december and it became a favorite, so i jumped at the opportunity to buy the ""blue"" (pink/purple/blue/black stripes) when it went on sale. this dress is very flattering and feminine, i love the fitted top, fitted sleeves with a cute button detail, and the asymmetrical hemline. i use the navy for work, whereas the colorful stripey one is fun on the weekends. it washes well and holds shape (i hang it to dry). i like it best with boots, but it would work with fl",5,1,0,General,Dresses,Dresses +838,50,Classy and good quality!,"I have never purchased this brand before at retailer and there were no reviews on it when i purchased it. i bought my usual size medium and it fit perfectly! i am 5'2"", 120# with broad shoulders. loved the fringe on the top and i think it will be very versatile . . .jeans/boots, skirts/heels. definitely a keeper! as a petite gal, this was not overly long. if you have larger hips, this will not hang well.",5,1,0,General,Tops,Blouses +1078,48,Simple and stylish,"I really liked this dress. ultimately, the turtleneck isn't as flattering on me, but it was a tough choice. the fabric is nice, the style is nice, and it would be easy to wear.",4,1,0,General,Dresses,Dresses +1094,48,Striking and adorable,"This dress is super cute and has the most striking color (i got the blue). i just love it. it's comfortable and flattering and hits me in all the right places. i am a petite girl and normally wear a 0 or 2 in retailer dresses, and, as the other reviewers mentioned, this runs small, so a 4 was what i needed, and even the 4 does not leave any wiggle room. that said, i like my dresses to fit sort of snugly so it works for me. i highly recommend it overall - the quality, cut, color, and comfort all ma",5,1,5,General,Dresses,Dresses +1094,34,"Beautiful dress, but very small","I just received this dress in the blue and its very small in the ribcage/bust area. i'm 120 lbs, 5'1, 34d bust and i'm always a 2-4 regular or a 4-6 petite in this brand. i couldn't even zip up the 4 regular all the way. i will probably reorder it in a 6 and an 8. great material, beautiful color, great style.",4,1,30,General,Dresses,Dresses +1078,61,Perfection!,"Love this dress! i can't say enough about it. comfortable, stylish, packable! doesn't wrinkle at all. i love it. i bought the neutral and the turquoise. only planned on keeping one but i love it so much i'm keeping both. good dress for fall/winter to wear with flats or tights and boots. can easily be dressed up or worn casual. i am 5'1"" 115 lbs and bought the xs petite. perfect fit. a great price point especially with the 25% off dresses.",5,1,4,General,Dresses,Dresses +1081,61,,,5,1,0,General Petite,Dresses,Dresses +1094,31,,,5,1,0,General,Dresses,Dresses +1078,40,,,5,1,0,General,Dresses,Dresses +1081,61,So comfortable!,"Read other reviews, was worried about neckline being tight-- went with size of last dress i bought from retailer ---s---, perfect!! can't wait to wear this dress! got it in the black white polka dot-- plan to layer with capri legging!",5,1,0,General Petite,Dresses,Dresses +1078,39,Gorgeous dress,I absolutely love this dress. it's great quality and fits perfectly.,5,1,0,General,Dresses,Dresses +1078,39,Amazing dress,"Once again, retailer delivers a beautiful, quality dress. i love it! it is comfortable and flattering. the material is light-weight enough that i will be able to wear into spring.",5,1,0,General,Dresses,Dresses +1028,49,"Love, love, love!","I have been eyeing these jeans for a while but was hesitant because of the price and also because i'm short waisted so don't normally like high rise pants. i finally pulled the plug when i had a 15% off code (still expensive imo). i am so glad i finally bought them - they are well worth the price! i am 5'6"" with longer legs and i agree with the other reviewers that these run a little longer than one might anticipate. they hit about 2 inches above my ankle bone, which suits me just fine. they are",5,1,1,General,Bottoms,Jeans +1081,42,Love it!,I bought the orange color and the pattern is absolutely beautiful. the fabric and style is very flattering and comfortable. well worth it. runs true to size (i am usually an xsmall 134 lbs 34 c and the xsmall fit perfect). perfect summer dress: soft fabric and light.,5,1,0,General Petite,Dresses,Dresses +1094,47,Beautiful dress! runs small!,"Totally agree with the other reviewer! just got this in the mail today and it is a beautiful dress but it does run one size too small. i am always a size 8 in maeve but couldn't zip this one up! and at 5""7' it is a tad short but i'm exchanging it for the 10 in the hope that in the next size it will be a bit longer--and that it will fit! but it is a super flattering fit!! and the blue color pops! a stunning dress and love that it's machine washable!",5,1,3,General,Dresses,Dresses +1081,47,Fabulous print!,Love this dress in the orange print! i do agree with one reviewer who said the high neck is bothersome--it is! but i'm willing to overlook that because it is the style of this dress. and it is adorable! easy and comfortable to wear--and i just love the orange pattern print! took my usual size!,5,1,1,General Petite,Dresses,Dresses +1081,51,Casual summer dress,"I ordered this dress in the black motif and a petite size. the color is slightly more washed out than depicted probably because of the stretchy fabric used, but it is still nice. the dress does run large. the length is a bit too long and the pockets which i was surprised were even there are several inches too low for my 5'2"" frame. overall though, this will be a good dress for hot summer days and should travel well. i wish the blue, floral one was available when i ordered this dress as it looks",4,1,0,General Petite,Dresses,Dresses +1078,46,Love it!,I love this dress. the quality of the material is very nice - good weight and softness. the dress hides my baby belly and feels really comfortable on. i got tons of compliments when i wore it!,5,1,0,General,Dresses,Dresses +1078,26,Youthful swing dress,"I am 5'1"", 32-26-36 and 115 lbs and got the xsp in the neutral motif at a great price. shipping was quick as well (2 business days). the dotted swirly lines are more beige than they appear on the model. great shape and easy jersey silhouette that will be flattering on all body shapes! will look great with a long statement necklace.",5,1,3,General,Dresses,Dresses +1094,33,No issue with fit,Lovely dress in bright teal color. the zipper was a bit sticky as the other reviewers had mentioned. unfortunately i sized up (6) based on past reviews and had to exchange for a smaller size(4). the fabric does have a bit of stretch so i'm really not sure why so many people had sizing issues. this is really a great buy with the current sale. tempted to pick up the red version too.,5,1,0,General,Dresses,Dresses +1094,38,Perfect summer dress,I absolutely love this dress. i have received so many compliments. the quality is incredible.,5,1,0,General,Dresses,Dresses +1081,43,Fun breeze,"The great thing about a swing dress is that it doesn't cling to the curves. this one is the same way. i got the geometric print. the colors are fun. i would have gone down to the small just to loose some of the material on this dress if it had not fit across so tight across the back. if you have no bust, i would say size down two sizes or try a petite. the dress has a breathable fabric so great for summer wear. the only cons are the large armpits and extra fabric but sizing down should help.",4,1,3,General Petite,Dresses,Dresses +1078,31,Cheap,"This dress looks and feels cheap. the white material is stiff and does not iron nicely. the grey sweater is super thin and very cheap looking. overall, a pretty horrible dress. save your money,",1,0,0,General Petite,Dresses,Dresses +1028,44,Way way too long,"These are absolutely beautiful pants. soft and wearable right away, but the other reviewer is right. if you are average or short, these will be way too long. they won't even look like cropped pants, just regular wide leg jeans. i am keeping them b/c i love the look and i will also have them altered to be shorter. it's disappointing that these were designed for the statuesque instead of the other 90% of us, especially considering the amazingly high price for a pair of jeans. so... i guess i am di",3,0,2,General,Bottoms,Jeans +1081,39,Great feel,Order a size down,4,1,2,General Petite,Dresses,Dresses +1081,39,A thousand compliments,"I got this in the floral print before it sold out, and i have never received so many compliments on a dress! it hangs so nicely and is so flattering. the neckline doesn't bother me at all (i know some reviewers mentioned that), but i am a very small busted woman so maybe it has something to do with that? i find it super comfortable, like wearing a nightgown. i am so in love with this dress i just ordered it again in black. it will be a summer staple. i found it runs true to size (i'm 5'3"", 115 p",5,1,1,General Petite,Dresses,Dresses +1078,47,Just bad,"I'm usually a fan of maeve, but this dress is just bad. the fabric is thin and filmy, and it stretches to sheer over your chest. the turtleneck is neither tight nor loose, it just droops in a most unfortunate way.",1,0,2,General Petite,Dresses,Dresses +1078,28,Great dress for ladies with smaller curves,"I wanted to like this dress, but it just did not work for a bustier frame. the fabric is quite loose, does not nip in at the waist and is not particularly clingy, so if you are well-endowed, your assets create a bit of a shelf from which the rest of the dress just hangs. as a result, the swing comes from the apex of your chest as opposed to from your hips (as on the model), and the asymmetrical hemline makes the look even more awkward. on smaller curves, this would likely be very flattering, but",2,0,1,General Petite,Dresses,Dresses +1081,43,Nice and comfortable,"This is a great dress. i purchased the red and gold motif. i like that it is versatile and very comfortable. plus, it has pockets!!! love that! i am fuller in the bottom, so i was concerned with the pockets adding bulk. so far, so good.",5,1,0,General Petite,Dresses,Dresses +1094,44,Beauiful dress!,This dress does fit small.. i am generally a size 10-12 in maeve but purchased this in a 14. i have a large chest (34g) which contributed to my need to size up. the green color is beautiful and the dress looks darling on. i have a little trouble with the zipper but nothing that required me to return the dress. my biggest complaint is that the straps are a tiny bit too long and don't lie flat on my shoulders. other than that i receive a ton of compliments every time i wear it!,4,1,0,General,Dresses,Dresses +1081,33,Comfy dress with plenty of compliments,"I am 5'4"", 145 pounds, 34dd and ended up with the size small for reference. it fit well but definitely roomy - in case you're not into that style. never tried the extra small, but i would prefer this dress not to hug onto me so i stayed with the small. + +this dress was really nice and comfy, soft material. the pockets are low and my phone stayed in while i walked but i wouldn't recommend anything heavier than a phone to go in the pockets. + +i wore this to a family and friends function and re",4,1,0,General Petite,Dresses,Dresses +1028,46,"Warning if you are ""average"" height!","First off - i love these jeans... they are the exact look i have been searching for, and the bands around the hem are what really sold me on this specific pair. the only problem - which i found with a previous purchase - is that they hit me at the ankle, rather than what is pictured. since i liked everything about these jeans, i decided to so with plan b and had them altered to be about an inch shorter. this involved cutting the hem at the top of the bands and reattaching... the stitching blends",4,1,15,General,Bottoms,Jeans +1078,42,Fabric quality,"I ordered the neutral and this dress feels and looks great. but my issue is with the fabric. while very comfortable, it fades where its stretched. so around my bust and my back when i moved my arms. i am 5'9"", 145 lbs and the small fit me the best but i tried on the medium just to see if it was a fit issue. the fabric still looked weird. i'm disappointed to send it back but i just can't keep it.",3,0,3,General Petite,Dresses,Dresses +1081,31,All about the swing!,"I bought this dress for my daughter for her birthday and she loved it! she tells me she has worn it many times and gets compliments each time on both the style and the color (ordered the orange). it's a lovely lightweight knit and is easy to dress up or down, plus it is so comfortable and flattering!",5,1,0,General Petite,Dresses,Dresses +1094,51,Hoped this was the dress for summer,I have several maeve dresses that fit really well. this was not the case with this dress. fabric and color are great! fit was off especially in top. worst part was zipper that wouldn't move smoothly. took me a good 15 minutes to get it unzipped. such a bummer!,2,0,3,General,Dresses,Dresses +1094,29,Horrible zipper beautiful dress,"I'll start by saying that i loved this dress. i tried it on in the dressing room and knew i had to have it. the colors and design are beautiful and the fabric is soft. i did have to size up but it fit me perfectly once i did. i'm 5'1"" 130 lbs 34 d size 6 fit great. +the first time i pulled it out at home, i was gently pulling up the zipper and once it hits those ribbon areas on the side, the zipper seam split. i tried for a half hour to get it to realign. i finally decided to go exchange it for",3,0,2,General,Dresses,Dresses +1094,35,Casual pretty!,"It first really run small exactly, rather if you size up one, the zipper works a lot better. it's beautiful in person! i normally wear a 2 or 4 but i tried a 4 and 6. i bought the size 6. for reference in 5'10 130 lbs",4,1,0,General,Dresses,Dresses +1078,43,Fun dress,"I watched this dress for quite awhile and when it went on sale ordered it. i'm very happy with the purchase. it's swingy and fun, looks great with tall boots too. i said it runs true to size but i bet the size smaller would have been great too just because it is a bit of a looser fit.",5,1,0,General Petite,Dresses,Dresses +1078,43,Easy comfort,There's a stretch and a swing to the dress that makes you feel light and free. really sexy as pictured with boots and scarf,5,1,1,General Petite,Dresses,Dresses +1078,79,Love this dress!,"Soft and flowy. fit is great. quality is great. i love this dress and i purchased in the turquoise color as well. i haven't worn a dress in 10+ years so i had a lot of reservation that this would be my first. highly recommend. +i paired this with 4"" short black suede boots and black tights. many compliments (even from my husband and he doesn't usually pay much attention).",5,1,1,General Petite,Dresses,Dresses +1094,28,,"This dress is so cute! i went to the store to try it on and although i knew the dress would fit i could not get the zipper up. my mom, the sales lady and i all tried to get the zipper up and it would not move past the ribbon. i wish i could have bought this dress but i can't without a working zipper. i tried a size up and every dress at the store that was my size and none of them worked. please fix the zipper problem so i can have this dress!",1,0,3,General,Dresses,Dresses +1094,56,Should be recalled because of faulty zippers,"I agree with the other reviewers. i ordered 2 of these but had to return both because the zippers didn't work. when i returned them, the saleslady said many people had problems with them.",4,0,1,General,Dresses,Dresses +1094,35,Cute dress but sticky zipper,"I ran into retailer today and was very excited to see this dress since i had liked it online but wanted to be able to try it on based on reviews. it does run small for maeve. typically with maeve a 2 fits better on me but i can always wear a 4. in this dress the 4 just fit. it is darling. i got the red and i love the fabric detail and stitched detail. however, the zipper is awful! no way around it, terrible! when i went to try this on at the store the zipper split just opening it to try th",4,1,7,General,Dresses,Dresses +1094,41,"Cute dress, impossible zipper, funky sizing",This dress is so cute but it's going back. the zipper is horrible and all of the other reviews are true - you'll need to size up.,2,0,2,General,Dresses,Dresses +1094,55,Love this dress!,"The blue version of this dress originally caught my eye on-line, but wasn't available in the store, so i tried the green one, mainly for size since everyone said it runs a bit small. i did have to size up one or two sizes. i fell in love with the green dress and bought it. it is so comfortable, great quality fabric (not too thin or too heavy). looks great on. i have received several compliments.",5,1,1,General,Dresses,Dresses +1081,38,Lightweight and flowy,"I love this dress so much, i've considered getting it in the other prints. it's fitted in all the right places and has pockets! i love that it's stretchy. i'm a 36d and it's hard to fit dresses over the chest. this dress is a dream!",5,1,44,General Petite,Dresses,Dresses +1078,57,"Cute, comfy, swing dress",Love this swing dress. i purchased it for work. it is light and comfy. i wear it with tights and boots. i even purchased it in another color.,5,1,0,General Petite,Dresses,Dresses +1094,53,Too small and short for my age.,Very pretty but too short for my age. looks well made and green dress is beautiful. it was just too short for me to be comfortable wearing.,5,0,0,General,Dresses,Dresses +1081,63,Cute and flattering!,"Ordered this in the orange (black, white and turquoise) print in both a small and medium. the style is cute and i like the high neckline that shows off the shoulders and swing skirt that falls beautifully and hides a multitude of figure problems. :) i also previously bought the emerson swing dress, which is the same style by maeve. the emerson style ran a bit larger and as the reviews there state, the armholes were a bit long - so i ended up with a small in that one. this lilt swing dress, howev",5,1,81,General Petite,Dresses,Dresses +1078,40,Navy striped dress,"I purchased a medium. i am 5'6"" 140 lbs and it fit perfectly. the navy is pretty dark, almost black. the fabric is very soft. the cut is more form fitting in the top and then comes out to an a line. it is not as bulky as some swing dresses. in the photo it almost looks like a handkerchief hem, but in real life it is less pronounced. i have no negatives. i would consider getting a second pattern if it goes on sale.",5,1,4,General Petite,Dresses,Dresses +1078,61,Fits very nicely,The most important thing is that my husband said he really liked the dress when i put it on.,5,1,0,General Petite,Dresses,Dresses +1078,41,Great dress for every day,"I purchased this dress in the navy and white stripe. i did purchase the petite since i'm 5'2"" and it worked out great. very nice style, comfy and flattering. looks great with a pair of boots. one of my go to dresses for sure.",5,1,0,General Petite,Dresses,Dresses +1081,20,"Great dress, comfortable and cute","This dress is so comfortable and versatile. you can dress it up or down and it's perfect for almost any summer occasion. i have it in the black color and it goes with almost everything! the only complaint i have is the arm holes drop a little too low. you can see part of my bra because of this but it's not too drastic. i'm 5'4"" with an athletic build and i feel like the petite would have fit me better. regardless, it's a great dress.",4,1,0,General Petite,Dresses,Dresses +1078,41,Figure flattering and the material is so soft!,"I bought this dress in the navy stripe version and love it. the material is so soft it's like wearing pajamas, and the actual swing skirt is flattering (which surprised me when i tried it on). i wore it to work with burgundy heels and got a lot of compliments from my co-workers. i'm 5'9"", 130 lbs and the xs worked best for me.",5,1,0,General Petite,Dresses,Dresses +1078,34,,This dress is great! i purchased the navy colorway. it is really soft and the fabric flows nicely. i was lucky enough to snag this on sale so i couldn't beat the price. i like the buttons on the sleeves. it adds just a cute special touch. i'm 5'3 and this hits me right at the knee.,5,1,0,General Petite,Dresses,Dresses +1081,24,Tight neck,"I tried a size x small on in the store and i am 5'4"" 120 lbs. i had trouble getting my head through the dress, and once i did it felt so tight at the neck, as if it was chocking me. the dress color is very nice but the tight neck and odd arm holes were a no. i would not recommend this dress for those reasons.",2,0,0,General Petite,Dresses,Dresses +1078,84,Closet staple,This dress was perfect for the fall/winter. i wish i would have bought more colors. the fabric is soft and clings just enough. i lived in it this winter.,5,1,0,General Petite,Dresses,Dresses +1094,38,Adorable! runs very small,I got the blue & it is so cute! i'm a very consistent 2-4 & i ordered a size 6 & that fit well. the a-line does stick out farther than it shows in the photos so i'm having that taken in some...looked like a triangle. it's definitely worth the price & super flattering!,4,1,0,General,Dresses,Dresses +1078,38,,"This dress is very comfy and soft. i am returning because i didn't like it being a turtle neck, just a personal dislike.",5,1,0,General Petite,Dresses,Dresses +933,38,Wanted to love this...,"I should have listened to the previous review on-line before ordering. unfortunately this will go back as the design fit and proportions are simply off. i love uniquely shaped wraps like this, but this one didn't make the cut for me.",1,0,0,General Petite,Tops,Sweaters +1078,39,Adding to the rave reviews,"Putting my two cents in regarding how fantastic this dress is! i bought the medium petite in navy stripe. it fits great, it's not too clingy and it's flattering to my disproportionate figure (makes me look more hourglass).",5,1,0,General Petite,Dresses,Dresses +1081,39,A little disappointed.,"I was really looking forward to getting this dress in the orange print, but when i finally received, i was a little disappointed. the print placement is not the same as shown on the model, so it doesn't look as a vibrant and colorful. my version of the dress has more of that muddy dark print and hardly any orange or turquoise. also the backside of the print is white and the dress is not lined. i do like the way it drapes on my body and the overall styling. the dress fits nicely in size medium on",3,1,0,General Petite,Dresses,Dresses +1081,42,,"Great dress! needs a tank top underneath, but has a great shop.",5,1,0,General Petite,Dresses,Dresses +1078,37,Very comfortable,"I love this dress, it's very comfortable, slim swing and very ingratiating. the fabric is light, i like the details of the buttons on the sleeves. overall, i'm pleased and happy for the purchase of this dress. i will definitely recommend it.",5,1,0,General Petite,Dresses,Dresses +834,43,,,5,1,0,General,Tops,Blouses +1081,30,Nice dress,"I like the way the skirt of the dress swings when you move. in order to get the arm holes to not be too low, i ended up with the smaller of the two sizes i usually buy. i also appreciate the dress has pockets and the soft fabric. the tag says you can machine wash cold gentle which is also a plus!",4,1,0,General Petite,Dresses,Dresses +834,27,Amazing go to white blouse,"This is such an amazing take on a white blouse. it's fun and still polished! the fabric is so soft and so easy to dress up or down! + +the arm holes run a little small but the cut of everything else is amazing.",5,1,1,General,Tops,Blouses +1078,52,Fantastic dress,"This is a great dress, both in design and comfort. the material is very soft and warm. yet it is also very stylish, and can be dressed up with big necklaces, a belt, and boots. the stylist in the store mentioned wearing it with a vest. it is a great piece that has so many possibilities. i bought it in navy. thank you retailer!!",5,1,0,General Petite,Dresses,Dresses +1078,62,"Love, love, love this dress...!","I almost ordered this dress yesterday online but did not. i went into my local retailer today and they had it in stock. tried it and completely fell in love with it and even my retailer lady in the back was amazed! +i am 5""5"", 115lbs. and went with the xs petite. +excellent price point. + +gorgeous in ""neutral"".... + +tts + +highly recommend!",5,1,31,General Petite,Dresses,Dresses +1078,39,,"The stress is a simple basic. i got it in the navy stripe and have worn it with the long gray scarf, similar to pictured. it is very soft and comfortable.",5,1,1,General Petite,Dresses,Dresses +1094,46,"Runs small, impossible zipper","I ordered the red version--it is incredibly cute, soft, vibrant, and a flattering a-line. however, this dress is sized oddly, running at least one or two sizes too small, particularly at the waistband. i ordered my usual size and one size up, and even the larger size was too snug in the waist. yet at the same time, i had some gaping at the straps, and i have a full bust. even worse is the *impossible* side-zipper that is a workout to get past the seam at the waistband. trying to wrestle the zip",3,0,11,General,Dresses,Dresses +1081,68,Comfortable and casual,"Cute, easy fitting dress. i got it in orange, which is a summery, pretty print. i ordered it in petite because i am 5'1"", but the dress is very short, so i'm exchanging it for a regular size. if you're average height, be aware that the dress will be well above the knee.",4,1,2,General Petite,Dresses,Dresses +689,34,Quirky,They make your butt look great! very whimsical design.,5,1,0,Initmates,Intimate,Lounge +1078,48,Not for the large busted,"I was so excited when this dress arrived today. as other reviewers have mentioned, the fabric is lovely, soft and drapey and it feels great on. it felt great, that is, until i looked in the mirror. while the dress fit fine, i have a large bust, and the fabric stretched across the bust, causing the print to appear washed out across the bust. not a good look. sigh. another return.",3,0,0,General Petite,Dresses,Dresses +1094,62,,"Love this dress! it has a nice stretchy weight to it and is texturally interesting. it's the first retailer piece that i ever bought my teenage daughter and she looks so sophisticated in it, like a young lady. it's both classy and youthful! for reference, she's 5'5 100# and is wearing a 00.",5,1,1,General,Dresses,Dresses +1094,22,Love the dress - zipper is an issue,"I love this dress, it's flattering and a nice a line cut that is comfortable to wear, however there are 2 issues with this dress as mentioned by others. the dress is cut at least 1 size too small and the zipper is very difficult. typically i'm a 0 in mauve and i went up to a 2 as the 0 doesn't fit my (petite) rib cage. the zipper is annoying, but i can deal with it for the half off sale price i got with an additional 30% off. i wouldn't have purchased this dress if it were full price, however.",4,1,2,General,Dresses,Dresses +1094,40,So beautiful,This is a gorgeous dress. i got the red version. it's stunning...the zipper is trash however. i'm scared of getting stuck in it like another reviewer.,3,1,0,General,Dresses,Dresses +1081,42,A-symmetric hemline,"It's not totally apparent in all of the photos, but this dress does have a very noticeable a-symmetric hemline. i have read other reviewers that have said this dress is ""forgiving"" and a good choice for people with an hourglass frame. if you are truly an hourglass (small waist, larger shoulders and hips due to bone structure rather than weight,) this dress is a poor choice. the fabric of this dress tends to cling to the outermost hip, and the a-symmetry of this particular hemline not only draws",3,0,4,General Petite,Dresses,Dresses +1081,47,Easy summer dress,This swing dress is very cute and easy to wear. i ordered the orange print and the black because i couldn't decide. the orange looked washed out against my skin color but the black was a keeper. i am usually a small but ordered one in the small and one in the extra small since it is a swing dress and they usually run large. the top is mostly the same fit so i think i may keep the extra small. even still there is a lot of extra fabric. the rayon is a little on the cheap side but it is so comforta,4,1,4,General Petite,Dresses,Dresses +1078,69,,,5,1,0,General,Dresses,Dresses +1094,38,Bummer,"Oh, i wanted this dress to work! i bought it in green, red and the solid blue. all ran really small. i *just* fit in a 10, when i would normally take a 6 in retailer sizes (5'8"" and 140 lbs). as with many other reviewers, i also noticed that the zipper was a huge flaw. it took a long, slow motion to get it zipped because it would get stuck on the fabric variations. such a cute style, was really bummed it didn't work. i kept ordering it in other colors thinking i would hit the jackpot, but they wer",2,0,0,General,Dresses,Dresses +868,61,Very stylish but made with cheap fabric,"I love the design of this tunic. it is sewn well, but the fabric is cheap. i disliked the texture of the fabric so much that i returned it.",3,0,2,General,Tops,Knits +868,35,Stylish and comfy,"Love the multi textured look of this top! to me it's like a modern take on a classic sweatshirt. i'm 5'4 and loved the length. to me it is tts, but bigger busted girls may want to size up. i'm a 34b for reference.",4,1,0,General,Tops,Knits +107,52,Gorgeous,"It's a phenomenal wardrobe peice. quality, comfort, versatile. dress it up or down, belt it or not, boots or shoes. i'm 5'3"", 115ish lbs, small fit my 34d chest beautifully. a great buy - have fun with it!",4,1,0,Initmates,Intimate,Sleep +868,45,Love this top!,"I love the fabric, texture mix and length of this top. i gave it a four stars because my usual size is a medium but had to go with a large. a medium felt a bit too snug through the shoulders. very happy with this top and look forward to wearing it a lot.",4,1,0,General,Tops,Knits +1094,34,Love this dress!,"I'm not sure why this dress has such bad online reviews because i absolutely love it! it fit tts for me, but i have a large bust so will run big if you are smaller on top. i don't like paying full price usually, but the quality and beauty of this dress justified it! if you are into prints and colors, you will definitely be able to pull it off :)",5,1,5,General,Dresses,Dresses +868,39,Really pretty but big,"I tried on the regular size at my store (wish stores close to me carried petites), and it was jsut too overwhelming (aka big). i wanted to purcahse the petite, however, as i really like it (striked out as they are sold out in my size, bummer). + +the cut is otherwise flattering, and the sweater is really comfortable. i like all the contrasting ""colors"" and patterns too.",5,1,0,General,Tops,Knits +107,34,Flexible use,"I bought this 'nightgown' to wear as a winter maternity dress. it really fit the bill!! the knit fabric stretched nicely as i grew but was still flattering before i got larger as well. there is no way i would actually sleep in this dress. it would be way too hot! it is cute with calf length boots and i look forward to rocking it without the belly next winter. i would normally wear a petite length and bought the medium and though it was longer, the length was not awkward and kept it from being to",5,1,0,Initmates,Intimate,Sleep +1094,57,Runs quite large,"Was really excited to get this, but got it on and i was swimming in it. i'm not a tiny girl thicker athletic build and the large was massive. sadly had to return. don't know if i'll try a size down.",3,1,15,General,Dresses,Dresses +896,45,,"This is cute! i've been so looking forward to it, but it's big!! i'm usually a small in retailer size, medium most of the time otherwise. i ordered the medium, but it's way too big. doesn't fit at all like the pictures. sadly, it's going back, hopefully for a much smaller size. but other than this, it's lovely",4,1,2,General,Tops,Fine gauge +1094,41,Too much,"This dress looks cute in the picture and i was hopeful since it was actually silk. i'm tired of paying close to $200 for dresses that are polyester or viscose. that being said, this dress simply had too much going on. the fabrics aren't only mixed, but there is also a faint underlying pattern on the fabric that is the same shade of the main color of fabric. it was simply too much and the black lace trim made it look kind of cheap. my real issue is that although the dress itself ran big, the uppe",3,0,13,General,Dresses,Dresses +868,29,Sleeves are a dealbreaker,"This is literally the most unflattering thing i have ever tried on from retailer. the sleeves are so weird and ugly. they get really fat at the top, like a dolman sleeve, but it looks really strange because they don?t flow into the rest of the top, which is very structured. it made my shoulders look huge even though i have very narrow shoulders. this is not apparent in the model picture at all. the thick black seams at the shoulders are also placed in a really awkward spot which also contri",1,0,2,General,Tops,Knits +868,44,Tight through the bust,I normally wear a large but this had no give through the bust! beware big chested girls!!!,4,1,0,General,Tops,Knits +107,41,,Many complements today at work! comfortable even on days you don't want to wear something form fitting,5,1,0,Initmates,Intimate,Sleep +850,27,Pretty top,"This is a nice light weight cotton i purchased for work.. i usually take a size 4 or 6. i bought it online and opted for a size 6. i will be exchanging this for the smaller size, as it is a bit boxy and the sleeve length is ample. once the exchange is done i look forward to having this blouse that i can wear untucked and still not be wearing yet another tunic (my go to style).",4,1,3,General,Tops,Blouses +868,43,,"To my surprise this sweater is heavy, chic and stylish. its well made and fits tts. i'm looking forward to wearing it. i would recommend this tunic to everyone. it looks better on me than the model.....event though it doesn't look bad. you need curves to enhance the look of this tunic sweater. i really like all the different textures in this sweater.",5,1,1,General,Tops,Knits +1145,51,Beyond boxy,I am not sure who would look good in this dress. it is extremely oversized with tons of fabric that will not flatter anyone!,1,0,0,General,Trend,Trend +107,54,Great dress!!,"It is hard to believe that this is called a chemise! it is a fabulous dress! this dress caught my eye in the store and i had to try it on. i went with the navy, which is beautiful and has a great pattern. i had to order a petite xs because the regular xs was loose in my shoulder area. i am petite and narrow and 5'1"". the petite xs was perfect for me. it is quite form fitting and does show curves, lumps and bumps so i wore my dress with spanx tights. it was such an easy dress to wear, looked styl",5,1,2,Initmates,Intimate,Sleep +896,38,Unique blouse; comfortable fit,"I'm an xl in retailer tops, and the xl fits nicely in this blouse. if you are athletic or slender or have a petite bust, you can probably size down. +. +this is a nice lightweight sweater. i would not say that it is too thin or anything like that; its just lightweight for being categorized as a sweater. i absolutely love the pattern placement of this sweater, it makes the sweater so unique and figure flattering. honestly, i'm not crazy about kimono/bell sleeves because i feel they are at best impr",4,1,4,General,Tops,Fine gauge +975,33,Nice coat but too lightweight,"I live in ny and bought his coat for the winter, thinking since it was made out of wool it would be warm. this coat is extremely thing, more like a spring/fall coat and therefore i don't think the price justifies the quality. i am going to return and consider repurchasing if it goes on sale. i also wish it had a button or way of keeping it closed rather than just hang loosely.",3,0,3,General,Jackets,Jackets +1094,47,Ethereal and beautiful,"I don't usually pay full-price for retailer clothes, but i had a 20%-off coupon and i decided to give this dress a try, as it irradiated a happy vibe and reminded me of books and dress-up clothes from my childhood. i don't regret it one bit! the colors and the print are absolutely beautiful and i love how they mix up and contrast in a subtle way. i really like the long sleeves with the elastic at the wrist. the cord at the waist hangs with a fun mix of tiny beads, faux mini crab claws, and faux mi",5,1,1,General,Dresses,Dresses +868,36,Too short tunic,I really wanted to love this top. love the mix of fabrics and patterns. but it is too short for a tunic length. i should have paid attention to other reviews. i'm about 5'8'' and was not too tight in the bust and shoulders.i have to return because the length isn't right.,3,0,0,General,Tops,Knits +1145,37,Quirky and so fun!,"This dress was returned to my store and i was immediately drawn to it. i love absolutely anything with a full shape, and this dress has it! its cut like a circle...so ladies this dress has a lot of fabric. i'm 5'8 and wouldn't be able to wear it as a dress, but it made for an adorable tunic with leggings. the arms are a tad more fitted (though i have larger arms) which helped make the dress feel super cool and feminine. if you love a cool quirky piece, this one is a winner!",5,1,0,General,Trend,Trend +107,39,Blue/grey color is fantastic,"The blue looks a lot more grey in person and i've gotten several compliments wearing it with black leggings and grey booties. the texture/print is really unique. i'm 5' 11"" 135 pounds and a small fits perfect. highly recommend!!",5,1,0,Initmates,Intimate,Sleep +1145,37,So many compliments!,This is such a fun dress to wear. i wanted something comfortable and flirty and this checked off both boxes. im typically a small size 6 but went w x-small on this one to hug the shoulders more.,5,1,0,General,Trend,Trend +868,34,Unique and wonderful,"The sweater is comfortable and a good weight. the zipper is very difficult, but i do not have to unzip the sweater to pull it on.",5,1,2,General,Tops,Knits +107,30,Gorgeous,"Bought this dress as a winter dress. it looks amazing, and even more so with some boots. love it. also, its more gray than blue, although i like that.",5,1,1,Initmates,Intimate,Sleep +868,39,Too boxy and heavy if you are petite and curvey,"I was looking forward to this cute top to get me through the winter, but the combination of the very think fabric and boxy shape did not work on my 5'2"", 130 lb, 34d figure. the one i received also had an open unfinished seam beneath the zipper. i imagine this would be a great top for someone taller.",3,0,0,General,Tops,Knits +868,44,Unique mix of textures and patterns,"I ordered a small and medium because i was worried about the chest being too tight (i am 5'6"", 140 lbs, 34d) but i was swimming in a size medium. it was huge. the small really fits me just fine. my only issue is that the very bottom of the sleeves is tight. i would like to push them up a little since they are 3/4 length, but they are tight. i am still keeping the small though....maybe i'll do surgery on the cuffs!",4,1,0,General,Tops,Knits +107,31,Not sleepwear!,"I had no idea this was considered sleepwear until after i bought it. i saw it in the store and promptly tried it on, it is really flattering. i wear it as a sweater dress on a regular basis. it is really comfortable, and is something you could dress up with booties or be more casual with cute tennis shoes like keds. i get compliments on it all the time. i also like the slit a lot.",5,1,0,Initmates,Intimate,Sleep +868,22,Odd length,"This fabric of this top is gorgeous. however, i'm 5' 5"" and it hits in a really weird spot. right no the point of the hip that you don't want to accentuate. you could wear it with leggings to a casual thing, but i work in an office so its too short to wear with leggings and too long to wear with jeans. sad, i love the top 90% of it.",3,1,9,General,Tops,Knits +107,36,,"I really thought i would love this dress the style is really nice and the material is great. however, the length made me feel like i looked short and kind of stumpy. i feel like this dress would look really good on somebody that is more like 6ft, not my 5'6"" self.",3,0,0,Initmates,Intimate,Sleep +1095,50,Busty petites rejoice (1),"This dress is lovely . i am 5' 1, athletic and busty (38 d/dd) - but not super slim so not easy to petite items that fit in the chest/arms. i ordered pm which usually works and it was actually too big in the chest. im waiting on the ps but think it will work since the cut is generous. material/item is so lovely and comfortable!! i never have extra chest room, so this was such a great surprise!! hope the ps is great but think it will be unless they went crazy on making it to small.",4,1,15,General Petite,Dresses,Dresses +1095,44,,"I think the model photo doesn't do this dress justice. it's comfortable and perfect for a summery day. i wear it to work with a light grey cardigan, and of course it works well causally. i'm busty --d on a small frame -- but there's not gapping. the colors are pretty with blues and pinks without being childish.",5,1,0,General Petite,Dresses,Dresses +1038,34,Just beautiful,"The embroidery is actually navy blue, not black like it shows in the photos, which was even better for me. these are so soft and feminine looking. love love love! please make more decorated and embroidered hyphens like you have in the past retailer :)",5,1,5,General,Bottoms,Jeans +1030,48,Perfect jeans,I purchased these jeans in my regular size. they are a slouchy slim leg that looks adorable with flats or heels.. i could have sized down but wanted the slouchy look. they are very stretchy and soft. have worn a few times and they retained thier shape...,5,1,0,General,Bottoms,Jeans +1038,59,,I have been eyeing these jeans the last few times i have been in retailer shopping but did not really need another expensive pair of jeans. today i finally gave in and tried them on. i fell in love and bought them. i sized down one size. they are so darn cute!! i ended up also buying the pilcro em jeans too. loving pilcro' new cuts and styles lately. the embroidery on these jeans is unique and they are really flattering. already planning to wear them out to lunch with friends tomorrow. highly reco,5,1,0,General,Bottoms,Jeans +1086,62,Never fails,"Cloth and stone never lets me down! awesome quality, comfort, and versatility. i imagine myself living in this dress this summer! soft fabric, easy breezy fit, pockets, machine washable...what's not to love? go buy it!",5,1,3,General,Dresses,Dresses +1095,62,Surprising gem!,"I wasn't expecting much out of this when i was in the store, but liked the colors and thought i'd try it out. grabbed a s and xs (i'm usually a s in everything but maeve is weird sometimes) - the s fit perfectly (tts), and the xs felt tight in the shoulder seam as well as in the armpit. it does have a detachable slip/liner that may be too fitted for some of you are prone to that issue. in the model shot i think the horizontal seam at the swing portion looks higher than it was on me...falling low",5,1,7,General Petite,Dresses,Dresses +1038,42,,,5,1,0,General,Bottoms,Jeans +1095,31,Unflattering shape,"Ref: 5'4"", 125# 27/4, 32g. i don't think this is for us shorter women. this hits you right where you don't want a vertical line to hit. it flares out at your hip and makes you look shorter than you are. the fabric is like a double gauze and very soft and the colors are beautiful but i couldn't even dream of making this work. i thought maybe with my larger bust it would create shape but it looks like i just wrapped a bunch of fabric around me! glad i tried in-store and didn't online order.",2,0,5,General Petite,Dresses,Dresses +1095,58,Super easy summer dress,"Love this comfy, breezy dress. so easy & cool to wear around the hood or casual dinner out. i gave 4 stars for quality because of a small gap in seam near one of the pockets, which i'll fix next time the sewing basket is out. i think the double layers of gauze-like material makes the dress a little delicate if you have animals, so be a careful around claws & paws. the back side is straight which isn't as interesting as the front but for my use, the dress is darling.",5,1,1,General Petite,Dresses,Dresses +988,57,Great skirt!,"Love the colors for fall, feels good and perfect for work. size seems to run a little large but overall works really well and can go to work and out at night - perfect!",5,1,1,General Petite,Bottoms,Skirts +850,43,Not great,"I loved this top online but it arrived very wrinkled which raised a red flag as to how it would look after wearing it. seemed high maintenance. also, didn't love the fit. color is vibrant but overall not a fan of this top.",2,0,1,General,Tops,Blouses +1109,42,Great lbd for the winter,"Usually a m, ordered a s and sp. the sp fit well. comfortable/flattering. fit note: picture makes it look like nude lining is a lot shorter, it is not - this was true in both sizes. great holiday/nye party dress. i disagree fabric feels cheap, but hem off pattern/not even. worth it on sale but not full price.",4,1,0,General,Dresses,Dresses +1095,39,Great summer dress,"This dress runs large! +i tried on a large, then a medium and then a small! couldn't believe i fit a small! this is a cool, breezy summer ensemble that you can wear anywhere! dress it up or down, it's comfy and makes you feel like you can breathe under its baggy motif. love it!!",4,1,1,General Petite,Dresses,Dresses +1095,49,Funky plaid!,"The moment i saw this dress, i knew i had to have it. the plaid is beautiful with tones of red, blue and periwinkle. the photos on the website are very true. the unexpected pockets make it even cuter. i also got the sandals as pictured because i love the whole look. i an 5'5"" and usually wear a 4 or 6. i got the small and then wondered if it were too big. i ended up going back and trying on the extra small, but it turns out the small was correct. it should hang and drape and it not meant to be f",5,1,4,General Petite,Dresses,Dresses +912,56,Love,"I love this sweater. it's heavy, with a rich texture that feels like very cool grandma. the cut is straight, and the collar feels natural. a small wraps closed across my chest (usually a s/4/6) without being baggy. falls to my mid-calf at 5'6"".",5,1,0,General,Tops,Fine gauge +1095,47,Beautiful dress,This dress was exactly what i wanted. great material. cute pale blue slip lining the dress. i ordered a medium and it was perfect. i am about 5'6 and about 145. i received compliments all day on how cute it was,5,1,2,General Petite,Dresses,Dresses +1038,44,Unique jeans,There were only 2 pairs left in my store and they had my size! they are super comfortable and easy to wear with anything on top because of the navy embroidery being such a classic color. i would definitely recommend. i may buy the floral embroidery ones too.,5,1,0,General,Bottoms,Jeans +1038,57,,"Love just know the embroidery is navy blue wearing them today, size down",5,1,4,General,Bottoms,Jeans +1038,44,Love these jeans!!!,I ordered a size down as the reviews suggested and i love them!! they are so cute and snug enough in the calf that i can wear boots with them in winter. great buy!,5,1,1,General,Bottoms,Jeans +1086,34,So cute,"This dress looks way better than pictured online. it is lyocel i think so it has a little bit of weight (not heavy and bulky like denim but not as thin as some chambray items i've purchased before) and lays great! i purchased a size small, i am 5'8'' 128lbs and thought it was true to size, i can't wait to wear this! warm weather, sandals and a tote for running errands!",5,1,17,General,Dresses,Dresses +1086,25,"Well made, fit strange","I really loved the fabric of this dress, however, it had a weird fit and the pockets made the front hang funny.",4,1,2,General,Dresses,Dresses +1095,58,Fun summer dress,"I am so pleased with my purchase. the two different levels of the dress is just simply fun and unique. the attached matching, adjustable baby blue slip is a nice add. neither the dress or slip fit too tight or too loose around my torso. i ordered a small which fits me perfect and in case it is helpful, i am 5'7"", 133, and a 36a. +if you have been considering this dress, don't delay, especially at the wonderful sale price!",5,1,0,General Petite,Dresses,Dresses +1086,37,,"This dress is beautiful on, is thin enough to be extremely comfortable. being curvy, it feels a little more narrow than i would prefer, but i kept it anyway because it is so beautiful as well as functional.",5,1,1,General,Dresses,Dresses +1038,42,"Very stylish and affordable, but ...","I like these jeans. when i wore them, i received compliments. they do run large. i sized down one size, but probably could have sized down two sizes. they feel tight when you first put them on, but as you wear them, they loosen up and i find myself pulling them up to meet my waist. my other complaint is a small one. the embroidered flower on the knee rubs against your knee as you move. after awhile, my right knee felt like it had a carpet burn on it. that is why i gave this only 4 stars for desi",5,1,2,General,Bottoms,Jeans +1086,33,,"Man do i love this dress! love the fit and the quality of the fabric, lays really nicely. i gave it only four stars because it is super short. true i am 5'11"" but there is no way i could wear this without pants or leggings. i am super bummed because i really love it but must send it back.",4,1,1,General,Dresses,Dresses +1038,41,So unique and so comfortable!,"I love these jeans! when i saw them in my retailer store, i instantly fell in love. they fit like a dream and they look so much better in person than online. they're definitely a boyfriend fit, so if you're between sizes, go down a size. i've already gotten tons of compliments!",5,1,1,General,Bottoms,Jeans +1038,50,Very nice...,"These jeans are beautiful. as the other reviewers have noted...they run very large...like 2 sizes, even then they are very stretchy. the embroidery is dark blue (looks black on screen)....lovely pair of jeans. if they had other colors i would by them!",5,1,0,General,Bottoms,Jeans +1095,53,Wanted to love this dress,"I love the look and feel of this easy dress. i loved that it comes with a baby blue slip, however i was in between sizes. the medium - a bit too small and the large- just too big. this dress is probably best in a tall thin body type, especially in a madras plaid.",3,1,0,General Petite,Dresses,Dresses +1095,55,Get it before it's gone girls!,"I'm 5'7 and 137 pounds and i tried on this dress in the store. i got the small as it has a little more material in the medium and the small fits like a glove. this dress is great quality and feels good, looks good and can be dressed up or down. like the model in the picture i like the flats with this dress. high quality fashion and total comfort on a hot summer day. go anywhere with this dress and you look like a million dollars. one more little hidden detail it has a detachable slip underneath",5,1,2,General Petite,Dresses,Dresses +937,37,Not as expected,"I stalked this sold out product for weeks hoping my size would become available. when it did, i was very excited, in fact i ordered both a s and xs to be sure one sweater would fit me! unfortunately, neither did and i felt the actual sweater was not as pictured. the sweater has an overall baggy fit and the cutouts don't fall as neatly and as evenly on both shoulders as the picture shows, making the look a bit sloppy in my opinion. it is such a shame as this look is very of the moment and the mod",1,0,1,General,Tops,Sweaters +1038,53,Very unique jeans,"These jeans are very unique thanks to the embroiding. would have perferred colorful embroiding though. they are boyfriend cut, but not slouchy. just a bit loose even around athletic legs. they run true to size, but have a lot of give. after wearing them for a a little bit i catch myself pulling them up a bit. if you want a snug fit and are between sized i would go down a size.",4,1,10,General,Bottoms,Jeans +1095,73,Perfect summer dress,"I ordered this dress on a whim because of the lush colors and the sale price. to my amazement, it has become one of my go-to dresses. it is far more handsome and flattering in person. i ordered a m for my 5'9"" and 36c frame and the fit is perfect. contrary to how the back of the dress is shown on the model, the back is not straight, but flows whimsically thereby adding to its famine appeal. at this price, it's a no-brainier purchase.",5,1,0,General Petite,Dresses,Dresses +1095,59,Just great,"If they still have your size, grab it. fits a bit snug in chest, but material is light and airy. got so many compliments on it. great style",5,1,1,General Petite,Dresses,Dresses +1086,37,Love it!,Love this dress! the material has a softness to it - just love it! can't wait to wear it this summer. fits true to size.,5,1,0,General,Dresses,Dresses +1095,36,Love it!,"I actually ended up buying two of these dresses. i took the first one to the dry cleaner and they chewed up the slip and put a hole in the dress. i was so sad that i went and bought a second one before they could sell out. the good news is that it was on sale! this is an awesome light and airy dress that is great for those hot summer days. i pretty much wear it every opportunity i get. for reference i purchased the small. it's loose but the shoulders, armholes and slip all fit perfectly. i weigh",5,1,1,General Petite,Dresses,Dresses +1095,39,Surprisingly cute,"I wasn't going to even try to see it this dress would fit. it just seemed like such an unflattering silhouette since my body is nothing like the model. i'm so glad i gave it a try because this dress is cute and comfy and looks great on me when i belt it! my outfit is a floppy straw hat, skinny leather belt and flat sandals. there's a lot of fabric but it gathers well without poofing out. i ordered the medium petite and i am 5'3"" 36dd 140#.",5,1,1,General Petite,Dresses,Dresses +1095,49,Fun!,"This is my go to, cool, summer dress. it's very light and airy and extremely comfortable. great for 90 degree days! +highly recommend!",4,1,0,General Petite,Dresses,Dresses +1086,31,Very happy,Love it! perfect casual look with a jacket and booties,4,1,0,General,Dresses,Dresses +1095,39,Classic comfort,I fell in love with this dress immediately. gorgeous print and colors. light and breezy. classic and comfortable. the petite length is perfect for my height and hits a few inches above the knee. i have a small bust (34a) but a wider rib cage so the petite small was a perfect fit. couldn't be more pleased with this purchase.,5,1,0,General Petite,Dresses,Dresses +1086,31,Classic and comfortable,Love this dress so much. it's super comfortable and i always get a ton of compliments every time i wear it. the fabric is the perfect weight not too heavy. i'll be wearing this all summer long.,5,1,0,General,Dresses,Dresses +1095,35,A steal at sale price!,"I love this dress. i don't have many pink things but saw someone in this on instagram and had to have it. it is as comfy as a nightgown. it has pockets! i tried it with brown sandals as well as with a dark jean jacket and taggart grey booties and looks cute both ways. also looks great with a blingy necklace. tts- got my normal med and it's roomy, but not too big.",5,1,1,General Petite,Dresses,Dresses +829,50,Very blousy but still cute,"I love the length of this - no danger of explosing my muffin-top! the fabric is super cute - good weight, pretty color. i got a medium which is a bit blousy - i think i could have gone with a small.",4,1,1,General,Tops,Blouses +1111,34,,"Gorgeous dress. it was designed to accentuate a woman's figure. lovely material, holds everything in place without being too revealing. the dress does not lose its shape. definitely a head turner",5,1,0,General Petite,Dresses,Dresses +820,37,Shrunk terribly!,"I bought this top in the store, which was good because i ended up wearing a size smaller than i usually do. i loved the flowy fit of it. the washing instructions say machine wash cold, tumble dry low. i washed it on cold and hung it to dry. it shrank to the point of being unwearable (the dreaded button gap!) and lost its softness. i hope the store lets me return it.",2,0,3,General,Tops,Blouses +1110,24,"Cute, but bad fit.","The waist is a little high and large, and this causes gapping in the small-of-the-back area. very cute dress, if it fit well. would probably work on someone less curvy. 00p, 5'4'',110lbs,32c for reference.",4,0,0,General,Dresses,Dresses +820,45,Love this blouse!,"This is one of the best purchases f +i have made at retailer recently. i got this in ivory in my usual xs. the pictures do not do it justice. it has such a nice drape and i love the detail on the back. looks great with black cropped trousers, as well as skinny jeans.",5,1,0,General,Tops,Blouses +820,53,Love it,I bought this shirt along with a matching vest and duster........love it!,5,1,0,General,Tops,Blouses +820,57,"Love, love, love it!",This top fits well as expected for the size. i love the ease of the top and wear it both casually and a bit more dressed up. great styling on the back.,5,1,0,General,Tops,Blouses +829,52,Cute shirt,"I bought this at the retailer store the other day and i wore it to work and i received so many complements. it has the perfect amount of swing and hides your middle without looking frumpy. i got the blue color and wore it with skinny jeans and ankle boots. the red is really more of a bight pink color, not a rich red as pictured. i wish it came in more colors and patterns...maybe green or purple? it does run big, i usually take a large, but a medium was perfect.",5,1,1,General,Tops,Blouses +1078,38,,,5,1,0,General Petite,Dresses,Dresses +830,57,,"Lovely top, very rich looking, i always get compliments. it's loose fitting but not baggy and the embroidery is well done.",5,1,2,General,Tops,Blouses +820,31,Great staple piece!,"Great fit and quality. i'm 5'3"" and 130 lbs, size 4 fit perfectly. bought both the blue and black. could definitely dress up or down!",4,1,0,General,Tops,Blouses +820,42,Light and flowing,"I am normally a 4, but they only had the white in size 2, so i tried it. i was pleased to see that it worked out just fine because it is meant to flow, therefore has plenty of fabric. it is very graceful and very pleasant to wear. i don't know how to explain it, but i had to take a second look when i saw it on the photograph because i was not sure it was the same blouse. much better in reality than on the picture.",5,1,1,General,Tops,Blouses +820,42,Not a white background,"Love this top. it's everything all the previous viewers said....except that the white isn't white but a creamy white.it has a yellow under tone.. this restricts my over all plans,but i still like it.",5,1,4,General,Tops,Blouses +863,31,,"Nice lines, just a bit tight if you have larger / more muscley shoulders.",3,1,0,General,Tops,Knits +495,39,See-through shorts,"I really wanted to love the shorts. when i read that the shorts were lined, i expected them to be lined so that my underwear didn't show. even though the shorts are lined, you can see through the fabric completely. this was absolutely disappointing since the shorts have a lovely exterior design; pockets; and, comfortable waistline. i'm returning the shorts as well.",1,0,2,General,Bottoms,Shorts +820,35,So many compliments,"I have so many compliments on this blouse. i love the style and design. i wear it with my long cotton skirt because it runs a little short since i have a long torso and i am 5""8 tall. i would love to wear it with my skinny pants but then it won't look right in the back kinda hang out. otherwise really nice quality blouse. i would definitely buy another just to have a back up.",5,1,0,General,Tops,Blouses +820,45,,,5,1,0,General,Tops,Blouses +801,39,What's with the pockets?,"The one i tried on had something wrong with the pockets... one was regular height,t eh other was so low, i could barely put my hand in it. however, the jumpsuit itself is really pretty and soft. color is nice, but hard ot pull off on pale skin like me. i tried on the xs, but that was big. i would need xxs p if it was made in that size, so i let it go... (looked nice with pinched fabric in the back. + +for reference i am 115 lbs, 30 dd< 26.5 in waist.",3,1,0,Initmates,Intimate,Lounge +1078,30,Pretty and versatile,"I was a little hesitant about this dress at first because it looks a bit baggy on top on the model. but decided to order it online anyway based on reviews. well i must say, i'm so glad i did! i really love the shape of this dress. i'm heavy on top but it somehow minimizes that and it also accentuates my waist. the dress is very well made. if you order the right size for you, the slip dress will stay in place. i'm going to style it with high black platform heels, but i also like it with boots as",5,1,0,General Petite,Dresses,Dresses +1078,33,Don't miss it!,There isn't anything i don't love about this dress! get it before it's gone! i get compliments every time i wear this dress.,5,1,1,General Petite,Dresses,Dresses +1110,49,Looks better on me!,"For once, the dress looks better on me than on the model. mine is tight above the bow and black/grey. my bow isn't this big?not pulled so much and maybe it's not knotted in the photo. it's heavy canvas and doesn't show my flaws. i'm saving it for summer?can't imagine wearing it as a jumper as in the photo. + +for me (5'3"", 32e, 125 lbs) the bust is slightly tight in a 6 but the shoulders are a bit wide in an 8, but both look good. mine is not petite and hits me above the knee (6). + +the dress is co",5,1,4,General,Dresses,Dresses +820,26,Great top,I tried this in store and fell in love. i'm usually between a 0 and a 2 in tops and took this in a 0 because of how flow and lose this is. the fabric is light and not bulky so it can also be tucked in.,5,1,0,General,Tops,Blouses +830,55,Cute top,"This top is really cute and can be worn off shoulder or not. the embroidery is really pretty. my only comment would be the top is shorter than i expected, if you wear it off shoulder its of course longer but still shorter than i would have preferred. keeping it anyways as it will be a fun going out casual top.",4,1,0,General,Tops,Blouses +1187,35,Cheaply made but flattering cut,"This is the perfect peplum. it floats a bit but doesn't stick out and is super flattering. that's why i kept mine even though the front seams were like an inch off, and the peplum pleat is crooked. geeze retailer. this is why i can't justify buying much of anything unless it's on sale. quality in recent years has gone wayyyy downhill.",3,1,5,General,Tops,Knits +829,65,Great top,Super soft and comfortable with a flattering fit. love the tiny buttons and the 3/4 sleeves since many times the sleeves are too long for me. already my favorite fall top.,5,1,4,General,Tops,Blouses +820,35,Super cute!,"I was a little hesitant to order this, thinking it would be too large and unflattering but thankfully i was wrong. this shirt is super cute and comfy. it is a bit of an oversized fit but the fabric drapes nicely and is quite flattering. my new go to outfit this fall will be this shirt with the sleeves rolled up, ankle jeans and my fave oxfords. i'm 5'3"", 115lbs and went with the size 4 regular",5,1,0,General,Tops,Blouses +820,55,,"I fell in love with this shirt the moment i saw it! +unfortunately, when i went to put it on, there was a hole running down the seam in the back. i went to store to exchange, wore the shirt, and someone tells me i have two holes in the back of my shirt. horrified, i went home, took a look, both holes along the seam! i will be returning this, i really liked this shirt!",2,0,0,General,Tops,Blouses +829,36,Just ok,"I love good, flowy blouses and like the over sized look, but this one didn't wow me. i thought the quality was just ok. it didn't flatter me. i almost liked it, but i didn't. i'm glad i tried it on, because looking at the pics online i thought i'd like it way more than i did. just not great.",2,0,0,General,Tops,Blouses +1078,35,Pretty fabric,"Such pretty pattern and colors, pleased with dress",5,1,0,General Petite,Dresses,Dresses +820,29,Soft and fun,"This shirt is very soft and fits nicely. as with a lot of maeve tops, the arms are a little snug so if you have muscular arms you'll definitely want to size up. it won't make the shirt too ""blousey"" because it will still look really cute tucked in in the front with ankle jeans and a trendy belt. i wish i had gotten this in the blue before it sold out because it is lovely!",5,1,0,General,Tops,Blouses +820,34,Odd cut,I loved the star pattern of this top but the cut was odd. it is very big in the chest and full at the bottom. for anyone who is petite on top it tends to look sloppy.,2,0,0,General,Tops,Blouses +820,46,Love this shirt!,"I bought this in both the black motif and the ivory. i got a size 2 and i would say it is true to size. the fabric is very comfortable and doesn't wrinkle easily. it does have a ""flowy"" look to it but i didn't find that it had too much fabric. i wouldn't tuck it in though. i find it looks really good with skinny jeans/pants and i love throwing a cardigan over it for cooler days. the details in the double buttons and on the back are really cute and make it more unique. i recommend the shirt.",5,1,0,General,Tops,Blouses +829,51,Not for me,The quality of this shirt is great and the colors are pretty. it just made me look super wide. i feel like the waist is too high - not quite empire and not quite at the waist. it just wasn't going to work for my body. maybe a different size would work but i don't like it enough to try.,3,0,1,General,Tops,Blouses +820,33,The perfect button-down!,My expectations were blown away in the best way when i tried on this top. i typically have issues with button-downs in the chest area (buttons never lay flat) and this top lays perfectly. the material is super soft. looks great buttoned all the way up or with a few buttons left open. i can't wait to wear with a pair of black high-waisted jeans this fall!,5,1,0,General,Tops,Blouses +831,30,Beautiful - the first time you wear it.,"This top was gorgeous and fit perfectly right out of the bag, with only a quick ironing. unfortunately, the first time i washed it (cold water, hang dry), it shrunk so that it no longer fits across the bust without tape where it was once roomy, is much shorter, and feels rougher to the touch. like another reviewer said (unfortunately, after i had purchased and washed!), i wish the label would have just said to dry clean only, because i regret washing it and would have done otherwise if i had kno",2,0,1,General Petite,Tops,Blouses +820,59,"So soft, so versatile","Beautiful blouse that can be dressed up or dressed down. online shows as purple, but the black mortif is be true black background with pretty floral colors. i rarely wear floral design, but this blouse make it work. the material is such a soft rayon material. love, love, love.",5,1,0,General,Tops,Blouses +829,67,Must try on to appreciate.,"The first time i saw this in the store i passed it by because the fabric didn't appeal to me .... but the second time i tried it on and fell in love .... had to have it in the beautiful blue. i'm busty 32h but wear a small and the gathers do wonders to camouflage, which was a nice surprise, because i usually avoid anything with fullness. will look great with white or black jeans but i will also pair with a very subtle pattern legging as the length is perfect. i'm short, 5'3"". neckline is fem",5,1,2,General,Tops,Blouses +1078,34,Just as pictured,Love this dress! it's exactly as pictured and the fabric design is so pretty. will look great with a cardigan for fall but also will look nice for summer with the cutout in the back. nice too that it has a detachable slip.,5,1,0,General Petite,Dresses,Dresses +829,45,"Great fall top, may need to size down","I looked at this on the hanger and almost passed it up. i'm so glad i didn't because it ended up looking so much better on. i wear a s or xs in retailer tops and went with the xs. i'm 5'6"" and it still had plenty of room and enough length to cover my backside. i usually gravitate to reds but the red in this top, while pretty, had too much pink in it for me.",5,1,1,General,Tops,Blouses +820,32,Beautiful softness,"This shirt has an incredible softness to it and the purple print is so lovely, i did end up returning it simply because the flowiness was a bit too much for me. i had tried the 2 and 4 and went with the 4 due to arm restrictions in the smaller size. too bad because it really is a lovely top. definitely worth a try in store!",4,1,14,General,Tops,Blouses +50,45,,"These are soft and skim the body the way well fitted undergarments should. they do not pinch, bind, or ride up. they coordinate perfectly with the matching bra. i am very pleased with this purchase.",5,1,0,Initmates,Intimate,Intimates +820,59,Light draping style,"This blouse drapes and floats lightly like a dream. the dark black patterned top is not see-through which means you can easily wear it without having to layer. the length covers past your hips and the pattern is flattering. + +the doubled-up buttons makes the blouse unique and it's comfortable enough to wear to work or with jeans from late summer into fall.",5,1,3,General,Tops,Blouses +820,49,Love it!,This shirt is wonderful! i love the styling and the print. sure to be a favorite!,5,1,0,General,Tops,Blouses +820,40,Great blouse,"I got the dark blue print which is a really pretty pattern. the fabric has a nice crinkly feel and the cut is very forgiving. i thought from the pictures it would be more of a traditional button down with straight lines. it actually is a looser fit but without the trapeze shape of some ""swing"" tops which i have found to be less flattering for those of us who are curvier on the bottom half. it's comfortable and flattering, could be tucked in or worn out and likewise dressed up or worn casually wi",4,1,0,General,Tops,Blouses +1078,34,,,4,0,0,General Petite,Dresses,Dresses +820,39,Really comfy and can be worn almost year round,"This is a super comfy and adorable shirt. got the black motif - it could def. be passed off as a dark/inkish navy color, too, so it's very versatile. it runs typical/tts for maeve (if you're unfamiliar with the brand, order up one or two sizes if you have broad shoulders and/or large arms). this is super lightweight; feels ""slinky"" for lack of a better word. essentially, it's rayon-gauze- but it is double-layered, so it is not sheer at all (no need for a cami, although in the lighter version i c",5,1,58,General,Tops,Blouses +831,26,Simple yet charming,"I really wish i could keep this top. the material is okay and i have noticed with this brand, shirts made from this material do not wash well or look that nice after a wash. if you have the time to dry clean then i would 100% recommend this top. another tip if you buy this (since i didn't read the description) the top has buttons all down the front. i am not a fan of button tops because i have a larger chest so i wouldn't recommend this top to someone who is busty.",3,1,2,General Petite,Tops,Blouses +1187,34,"Cute...but not ""amazing""","A cute top. the peplum seam hits me at the right spot on my waist. for my curvy figure, this isn't always the case. i also am drawn to tanks that i can actually wear a bra underneath without showing bra straps. +i usually vary between a medium and a large in deletta, but definitely needed a large. +i ordered the ""lavender"" color, which is disappointing; a dull gray. i've decided to return and order the coral instead.",3,1,2,General,Tops,Knits +820,44,Returned,I got the blue. it is very short. one side of the shirt i received was shorter that the other. the material feels cheap and pleats out a bit right over the bust - only flattering on small busted models.,1,0,0,General,Tops,Blouses +820,48,Super-delicate fabric,"I wore this for a few hours, and while it i got compliments i ended up needing to return it after the seams opened up over the shoulder blades. the fabric is so fine that during the normal goings-about of my day it gave way. and no, i didn't buy too small, and the fabric didn't pull while i was driving or reaching for anything.",2,0,1,General,Tops,Blouses +820,39,Beautiful blouse,"I bought the black motif, the design lends to a nice pop of color. the venting detail on the back is beautiful, but probably not as obvious on the black. maeve is one of my favorite retailer designers. i'm usually between a s/m or 6/8 in blouses. i followed advice from other reviewers and got the 8- for room in the arms. the blouse is very billowy- much more than in the photos, but i'm wearing it with skinny jeans and i love it!",4,1,0,General,Tops,Blouses +820,34,Cute casual shirt,"I got this shirt as a gift. it's cute and very comfortable. it is,however, a little thin so you may need to wear something underneath.",5,1,0,General,Tops,Blouses +820,53,Shrunk after first wash,This item states you should wash in cold water and tumble dry low heat. it shrunk after first wash in cold water and i didn't even use the dryer. do not wash. real bummer..,3,1,0,General,Tops,Blouses +820,48,Good shirt,"I purchased this in blue. it has a soft fabric and seems well made. i have worn it several times and think it is quite comfortable. i bought one size up due to comments on the site, but my daughter thinks i should have stuck to the size chart.",5,1,0,General,Tops,Blouses +820,45,,"Easy breezy top that goes with so many outfits. i am petite (5'0'', 115lb), but like the longer look of a top, so went with 4r, thought that the arm holes would be too small if went with 2r. there is a lot of excess material around the sides...and back. i was tempted to return, but the armhole issue prevented me and it was so cute, i kept it. i think it will go through the a few seasons (seattle is unpredictable weather-wise...) and can be easily layered. i like the blouse...but don't love.",4,1,0,General,Tops,Blouses +801,44,Sleek and unique but not sure . . .,I think this jumpsuit is different! the xs fit well and the material is a pretty color but very soft. the store had it styled with a metallic scarf that really accessorized it well. i thought it would be great for my date night but stopped short of buying because i just can't picture this worn to other outings. it is very unique though so i just might be back to purchase.,4,1,0,Initmates,Intimate,Lounge +820,32,My new favorite shirt,"I got the navy blue pattern and i absolutely love it. it's soft and cozy and just dressy enough to pull an outfit together. i initially sized up to a 10 based on other reviews but exchanged it for an 8, my normal size. it's flowy so the bigger size was way too much fabric. in the 8 it's just right for the style.",5,1,0,General,Tops,Blouses +820,36,Shrunk,I absolutely loved this top. it fit great and was easy to dress up or down. i wore it once and washed it according to the tag. cold water and flat dry. it is now 4 sizes too small and unwearable. extremely disgusted.,1,0,0,General,Tops,Blouses +820,58,Versatile,"I bought this shirt in a size 10. i am a 32 4d and it fit perfect, but wanted it to fit flowy as it does on the model...so sizing up to a 12. very nice quality fabric...not sure how it will be after it's washed. looks just like the picture. i bought the ivory color.",5,1,0,General,Tops,Blouses +820,29,Unique soft and comfy fall top,I love maeve designs in general and find that their sizing and quality is consistent. this top is so soft and a bit billowy.. the darker pattern in the black motif combined with the lightweight nature of the material make it perfect for fall. i love the little details: staggered/ paired buttons down the front and interesting seaming that isn't as apparent in the photos. considering another color as well...,5,1,1,General,Tops,Blouses +820,43,Bainbridge!,"I love this blouse. it is soft and has nice drape. even though it is very voluminous on the bottom, the true-to-size cut of the arms and shoulders as well as the seaming in back keep it crisply tailored and not overwhelming. thinking about buying more prints!",5,1,0,General,Tops,Blouses +820,35,Perfect for work,"Swingy and just the right weight for the office. the cream is ever so slightly sheer but looks really good with a darker bra, even for the office because you can't really see through it. i'm wearing this all the time this fall and winter with skirts, black pants, and skinny jeans",5,1,0,General,Tops,Blouses +1110,39,Tts to large,"Great spring time dress that looks good with a thin top, a cardigan or by itself. the fit is a bit loose but not oversized in my usual size, so if you want a slimmer silhouette or you are not busty, i would size down. love the fabric as it has some give despite its thickness. i would have paid full price but i'm lucky to have purchased on sale.",5,1,0,General,Dresses,Dresses +829,58,Love it,I love this top! the length is just right and i love the flow of it!,5,1,3,General,Tops,Blouses +820,32,So much fabric...,"Finally a pretty maeve shirt that actually fit my (apparently) giant hulk arms.. but it's so flowy/swingy i had to return it. this might just be a problem with being a larger lady, but the excess fabric made me feel like i was wearing a tent and made me look 10x bigger than i was around my waist/hips, even when balanced out with leggings. i thought about trying to size down but wasn't sure if that would even solve the excess fabric problem and still leave room in the arms. of course i can't try",3,1,1,General,Tops,Blouses +1078,46,Bretin dress,"I usually wear a 2-4 in retailer dresses and i was surprised the xs fit better than the s. very pretty, really perfect color for fall. i like that it's not tight or constricting so you can wear it for every day and not feel like it's difficult to move around. the longer length is nice too for. bonus that it's not dry clean only. my only problem with this dress is it's all polyester, which is just cheap fabric. if it wasn't for that, i'd give it 5 stars.",4,1,1,General Petite,Dresses,Dresses +1110,38,,,5,1,0,General,Dresses,Dresses +820,44,Cute and comfortable,I love this shirt. i bought the ivory color. it's incredibly comfortable and an easy style.,5,1,0,General,Tops,Blouses +820,32,,,5,1,0,General,Tops,Blouses +1078,36,Dress,"I love the look of this dress but the length feels a little awkward which might be my height (5'4""). i'm thinking about having it altered, not sure if i will do that or return it. i love the colors and the back cut out, it may be a better length for taller individuals.",3,0,0,General Petite,Dresses,Dresses +495,36,"Cute shorts, but runs big","Cute shorts with great fabric (and lined so they lay smooth over your body). i really love that the material has a dressier feel, but they ran a bit large and looked sort of frumpy on me (curvy body, 5'7'', 150). i'm returning them and trying a small. elastic waist is great for me after having a baby, but would look just fine under a belt or covered by a shirt.",4,1,8,General,Bottoms,Shorts +829,50,,"The sales girl added this to my room, it's so darling and it came home with me.",5,1,1,General Petite,Tops,Blouses +820,35,Lovely and fun to wear,"I really like how this shirt flows and feels. the details are super cute (double buttons in front, pleats in back). great shirt to transition to fall.",5,1,0,General,Tops,Blouses +1078,42,,,5,1,0,General Petite,Dresses,Dresses +863,62,Perfect!,I purchased this striped racer tank to wear during the day on july 4th! it was perfect! the back is really special and dresses it up!,5,1,0,General,Tops,Knits +1110,52,Classic and versitle,"I wanted this so much that i purchased it at full price. i purchased the light denim in a petite small. +this dress would be flattering on any figure. i am an hourglass and it is so flattering on me. i am also busty and this dress fits quite nicely as well. the material is thicker and somewhat stiff in a positive way. it has substance and the detail zipper on the back is different. this brand has never let me down. the tie doesn't have to look like the one in the picture. i made a lose double kn",5,1,0,General,Dresses,Dresses +1078,64,Lovely dress!,"This dress has a beautiful pattern, and is perfect for work. i wore it with tights recently, but could see wearing it in the summer too- the print is versatile enough that it translates. the top layer is sort of a crepe like fabric and there were a lot of strings that needed to be cut that were hanging off. i got many compliments the first time i wore this! i'm very curvy and i got the medium and it fits great and is very flattering.",4,1,0,General Petite,Dresses,Dresses +872,39,Always receive a complement when i wear this,I've worn this shirt approx 3 times to work. each time someone comments on how much they like it. i'm attempting to add more color to my workwear. this shirt tends to swing so much i feel exposed. that is the biggest drawback.,4,1,0,General,Tops,Knits +1094,45,Unwearable art,"The fit, once you get it on is as flattering as can be. its beautiful quality is undeniable. the problem and it's a big one...you can't get it on without destroying your nails. the beautiful little buttons running up the bodice are impossible to get done and undone. 'dear designer, you forgot the zipper. sincerely, women everywhere'. i loved it so much but just couldn't buy an outfit that was going to take me 20 minutes to put on and since it is a jumper it would be a process throughout wearing",3,0,3,General,Dresses,Dresses +872,48,Colorful vibrant top,I was so happy to find this in extra small. it is such a cute loose fitting top.. very soft and flowy tank. the orange color is so pretty. i went down a size in this top,4,1,0,General,Tops,Knits +872,38,Swingy,"This is a swingy shape which means a lot of fabric on the bottom half. so many retailer tops could be maternity wear for this reason, i'm ready for the trend to die out! that said, this print is very pretty and the fabric is great - not sheer for a nice change. i'm returning it because the arm holes are large and my bra shows at the sides. this is a pet peeve of mine. i don't want to wear a cami under a tank. almost a home run, i'm tempted to try one size down but i wouldn't like it shorter so i p",4,1,25,General,Tops,Knits +1014,56,Lovely multi-season skirt,"This skirt arrived today and i love it. the fabric is substantial and can be worn in the fall and maybe even on a mild california winter day. i plan on wearing it with tights and/or boots. the fabric will go with a variety of colored tops and sweaters. it's not ""pull on styling"". it has a side zipper. fits true to size, but is longer on me than the model, but then i am pretty short. got this on sale!!",5,1,1,General Petite,Bottoms,Skirts +1094,38,Fantastic jumpsuit,"This jumpsuit is a classic!!!!! i read the reviews where some were complaining about the buttons i did not have these issues (maybe because i have short fingernails). i like this jumpsuit because the style of it will be around for a long time. you can dress the jumpsuit up or down. i rarely pay full price but this jumpsuit is so great/fantastic, that i did not mind doing so. i strongly recommend this jumpsuit.",5,1,1,General,Dresses,Dresses +872,40,,,5,1,0,General,Tops,Knits +1082,31,Has no shape,"This dress is very cute on the model online, but in person it is quite large and just hands there and doesn't do much for the figure. cute but not worth the $148 price tag.",3,0,1,General,Dresses,Dresses +570,56,Fun fabric,"The print is unique and fun. however, the longer length and heavier weight of the fabric was not the piece i needed in my closet.",3,1,4,General,Trend,Trend +1094,32,You need this!,"Rompers are my fav so i'm biased writing this review. although they are a little tricky with the fit i definitely can say that this beauty makes my body look amazing! the cut of the fabric makes for a great shape. yes, the first couple of buttons are tough to get on but i'm guessing that after a couple of wears it will get easier. i got my usual size 4 and it fit like it was made specifically for me. i'm very happy with this purchase.",5,1,1,General,Dresses,Dresses +1059,74,Great flow of movement,These pants have great style and movement.,5,1,1,General,Bottoms,Pants +840,42,Odd fit,"I really wanted to like this but the fit was just off. it made me look like i was very pregnant and i usually wear loose and flowy tops too. this one was just too much material. i am usually an xs and that was the right size for me. i thought about taking to a seamstress and having some of the material taken in, but decided in the end to return because i just didn't love it. the pink color and the fabric are nice, though there were several hanging threads too which is why i gave quality a 3.",2,0,3,General,Tops,Blouses +1094,39,Design flaw but awesome,"As others mentioned, you have to unbutton all tiny buttons to put on and off... i do hope this gets easier with use... but - gorgeous and flattering as all get out! :-) i love the design in the back, and the little annoying buttons are sooo cute. the cut is super flattering, and classy. i can wear this to work, or out, just don't drink too much water ladies.... i am 115 lbs and 30dd chest, and the 0 petite was perfect. seriously, beautiful... so torn (keeping it for now!)",5,1,2,General,Dresses,Dresses +782,37,Cute top,"This top is cute, my kind of style, but it is really sheer. i would need to wear a white tank top underneath.",4,1,4,Initmates,Intimate,Lounge +872,61,Summery,"This top makes you feel like you should be in the tropics sipping a frosty cocktail. fabric is soft, not too sheer. i'm usually an xs and that's what i kept in this top. armholes not too low as in some. for reference, 5'4"", 123 lbs",5,1,2,General,Tops,Knits +1006,57,Wanted to love this skirt,"I was so curious to see this skirt. it looks just like pic. really gorgeous bold pattern and a faux suede like fabric. my only problem was that i thought there was too much fabric. i love maxi skirts. i am 5'8" and 136 lbs. it was a bit long on me but just had too much fabric. i have slim hips but this made them look larger. skirt is almost ballroom gown like in its fullness. loved it and someone else might love it but for me, it was too much. wish it worked!",2,0,0,General,Bottoms,Skirts +1094,39,Takes 20 minutes to put on,"This romper fit like a dream! it is gorgeous, unique, and sexy. i am rating this 2 stars because it took me 20 minutes to try it on! there is no zipper and the only way to get it on and off is by buttoning and unbuttoning the small buttons on the top. nobody's got time for that!!!! i wanted so desperately to wear it to my friend's 40th birthday party. but i imagined myself spending half the night in the restroom trying to get this romper on and off. no thank you! i considered buying the romp",2,0,2,General,Dresses,Dresses +872,34,Love it!!,"This is a gorgeous top. it is a very soft fabric that drapes beautifully. i purchased the red print - i tried both on in the store. the red really pops. i've only +owed this top for a week and i've received many compliments on it.",5,1,0,General,Tops,Knits +1014,55,Nice fall florida skirt,"I am usually between a 8 and a 10 and was an 8 in this skirt, it is very nice because it has so many soft colors in it and will go with anything. i live in florida so for me this is a fall skirt! i like the look of a wrap and it is not a wrap it fits great.",5,1,1,General Petite,Bottoms,Skirts +54,27,,,5,1,0,General,Bottoms,Casual bottoms +872,48,Super cute!,"Just picked this up in my retailer store and i love it. i bought the orange print and the colors are vibrant and perfect for summer. i am 5'5"" and 140 lbs. i took a small which is my usual size at retailer. could be worn unbuttoned as a sleeveless cardi over a tank. i will wear a cami underneath as it is sheer, but that doesn't bother me. another shopper was trying this on in the fitting room and it looked great on both of us. i will wear this all summer long. looks great with denim. happy find!",5,1,9,General,Tops,Knits +1082,41,Great summer dress,"I absolutely love this dress! the fabric is very light and airy while not being revealing. the color, being nude as indicated, is a nice change from plain white or off white and the embroidery is just beautiful and makes this dress quite unique. i love the fact that it is a tunic dress which lends to less of a structured look and more of an easy casual style. i recently wore this dress to an out door bbq and was both cool and comfortable all day. i also received many compliments from friends and",5,1,0,General,Dresses,Dresses +963,33,"Good idea, looks so cheap","Love the idea of this top, but it is so thin and the sequins look so cheap. the quality reminds me of something you would buy for $20 at a market abroad. definitely disappointed with the quality for the price. will be retuning.",2,0,1,General,Jackets,Jackets +872,23,Lovely top,"This top can be dressed up or down. i got it in the blue motif. it is so cute and that wearable, washable fabric. i am a medical student so it is important for me to be able to wash my clothing and not wear things too low-cut (i.e. professionalism). this top fits the bill while still being fabulous. of course it is loose-fitting on the bottom, as the image indicates. it is a swing top. i recommend with skinny pants.",5,1,0,General,Tops,Knits +872,32,Adorable must have,"I just received this and wore it immediately - it is cute even under a cardigan because the pattern 'peeks' out, giving some depth to an otherwise plain white shirt. the material is soft and sort of on the thin side but not see-through. it is a fine knit, and has a satin-like thread to it which makes it soft and cool - perfect for a summer day! it is not as slim on me as the model but i am very petite (51 100 lb) and i think this would run closer to tts.",5,1,27,General,Tops,Knits +1094,67,Major design error,"I was so excited to receive this jumpsuit as it looks so elegant and i love the lattice back. as soon as it arrived i set about unbuttoning it to try it on. 10 minutes and 2 broken fingernails later i got done. when i tried it on i found that it fit everywhere except the bust which was much too tight and i am not a busty person. so back it goes. even if it had fit, i do not think i could have handled the hassle of those buttons. why they didn't design it with a hidden zipper on the side and kept",2,0,1,General,Dresses,Dresses +872,53,Perfect for summer,"I ordered this in the blue motif and the print is really fun. the orange is even brighter in person. at 5'8"" 130 lbs the small has more than enough room and is a bit longer than some of the other offerings lately.",4,1,0,General,Tops,Knits +840,60,So cute for summer!,"Although this is an online only, i was lucky enough to stumble along a return in the store. this is the same quality and soft fabric that i expect from tyhlo. it doesn't show as much in the model photos, but this top has a subtle high-low effect, which adds a bit of elegance to the top. + +i took my usual size xs in the tyhlo brand. however, note that i am small busted (~34b/c) and this was already starting to pull some across the chest. my biggest critique it that this pulling caused a small ga",5,1,16,General,Tops,Blouses +782,60,"Shoulders are off, bad pleat placement",Overall the top is cute . what doesn't show in the photo are the pleats on the shoulder/neck area. the placement of the pleats makes you look like you have a football player neck . the neck area doesn't lay flat but comes off as puffy at your neck. i've never seen pleats placed in such a spot. ruined an otherwise cute top,3,0,2,Initmates,Intimate,Lounge +872,56,Cute & unique tank,"I love the bright floral print flanking the solid white middle in this top. with its swing style and large arm holes i think i could have sized down and been ok, but i usually wear a cami with my tanks so the arm holes are not an issue. also, it has a touch of spandex in it which make it extra comfy. overall, a darling top!",5,1,2,General,Tops,Knits +1082,44,Not for me...,"I ordered this and didn't even try it on when it came. the color was not as i expected...it had pinkish undertones and it just wasn't what i was looking for as far as color. also, the fabric is very thin not like the other two tunic dresses i have ordered recently from retailer (toscana tunic & sandscape swing dress). it was also easy to see that this runs large. oh well, thought i might have one more fresh summer tunic dress to throw on in a flash but i'm happy with the other two (i was finally a",3,1,2,General,Dresses,Dresses +872,67,Wearable art,"I bought this recently after trying on both the small and xs. for reference, i'm small-framed, 5'3"", 120 pounds, size 4 in most clothes, but can't wear petite sizes, usually a small or medium in retailer tops. i liked the fit and length of the small but the armholes were so big you could see the whole side of my bra. no one wants to see anyone's bra, not even their bra straps. i'd worn a white cami in under my tee that day, so i put it on and it improved the side view, but i didn't like the white",4,1,3,General,Tops,Knits +1094,36,Jumpsuit revelations,"If you haven't yet joined the jumpsuit bandwagon, now is the time! this jumpsuit is absolutely stunning! classy, elegant and a stand out piece. i purchased at full price. i have a hard time with jumpsuits as i am quite tall and they usually look like an adult onsie on me - this jumpsuit made me feel beautiful, put together and graceful. i cannot recommend it enough! fit is true to size, i am a 4 and purchased the 4. not too short in the crotch and i am almost 5'10. form fitting but still a bit f",5,1,17,General,Dresses,Dresses +872,40,"Runs quite large, but beautiful",This is quite large for akemi & kin i typically wear a medium but will be returning for a smaller size.print and flow of top are stunning.,3,1,1,General,Tops,Knits +829,39,Another see through ivory blouse,"I purchased the blouse in both the ivory and black. the black i decided to keep because it will go with anything. i was hoping the ivory blouse would work but it's thin and see through. if someone could please tell me where i could find a casual, white or ivory blouse that is not entirely see through i would greatly appreciate it!",3,0,14,General,Tops,Blouses +872,43,Lovely summer top!,I purchased the orange version (definitely orange - not red) before heading out on vacation and it was perfect for hot summer weather. the swingy shape keeps you cool and the print is much better in person. the fabric is very soft and hangs well. look forward to wearing to work also with a cardigan. i own a few akemi + akin tops and always get a s. this one seemed a bit large even in s but i liked the length so kept the s.,5,1,0,General,Tops,Knits +872,42,A bit big and sloppy,"This looks cute on the model but was way too big, loose and sloppy for me. i probably needed a petite size. i ordered a regular xs, but returned it. it is an okay black top, nothing great.",2,0,2,General,Tops,Knits +1094,56,Poor desgn,"This jumpsuit is so cute and it looked amazing on. i had to return it because of the poor design. it was extremely hard to put on and take off! there are so many buttons to do and undo which are not as easy as snaps! the fabric buttons definitely make a great look to the jumpsuit but there should be a zipper on the side for easy access, or use snaps instead of the loops for the fabric buttons. what a shame of a lovely and classy design on a good quality material, but not worth it if it's difficu",1,0,0,General,Dresses,Dresses +872,26,Versatile tank!,"This tank is super amazing. very versatile - wore to work with dress pants and flats, and wore out to dinner with jeans and heels. a bit out of my comfort zone since it is a ""swing"" tank, but love the color and cut! perfect for professional life and going out on the town. i did choose a petite in this due to the long armholes (even though i have a long torso for my body size).",5,1,0,General,Tops,Knits +1059,44,Great spring/summer pants!,"These pants are so comfortable, it's ridiculous. they are lightweight and perfect for spring/summer at the office or an evening out. i am 5'9"" and the pants fit as pictured. i paired with a sweater and kitten heels. they do run a little large so consider going down a size.",5,1,2,General,Bottoms,Pants +963,31,Fav kimono ever!,This kimono is beautiful! pictures definitely do not do it justice! i love the details of the beading and sequins throughout. the only downfall is that they can snag and get fall off quite easily. delicate but still my fav kimono ever.,5,1,1,General,Jackets,Jackets +872,51,Versatile top,"I have about 3 or 4 akemi & kin tops. i usually take a small. i think this one runs a bit bigger. the armholes are too deep and there is just too much fabric for me. (5'6"" 125lbs) i am going to try to size down because i really like everything else about the top. orange is not my color but this has enough white to compensate. the pattern, button detail and fabric are all very nice.",4,1,2,General,Tops,Knits +872,39,"Ridiculously big, unflattering over bust","I was excited to get this shirt in the mail, i liked the pattern a lot, but was so disappointed when i tried it on. i am 5'4"", 130 lbs. and wear a c cup so i tried ordering a small as a starting point. there was enough fabric on the sides to make another shirt! despite the excess fabric, the shirt pulled open in the chest area, making it a complete fail. i'm sure the model in the photo must have the shirt clipped in the back to pull in the excess fabric, especially since she's small on top. ther",1,0,1,General,Tops,Knits +963,68,"Very beautiful, very versatile and very flattering","I cannot keep my hands off this gorgeous kimono - i want to wear it every day! it goes with so much of my wardrobe. it's thin, and cool (both meanings of cool apply). i like to keep my arms covered (i think my upper arms are too fat) and this kimono does just that, while keeping me cool as a cucumber, i wear a sleeveless white or gray cami under it and it is soooo comfortable, i could sleep in it. it would also look great with lime green cami and white pants. so far, i wear it with blue jeans an",5,1,0,General,Jackets,Jackets +872,33,Great comfortable shirt,"I really love this shirt! i ordered the orange and am considering getting the other color too. it's very comfortable and cute. i got a lot of compliments when i wore it. this shirt definitely runs large and i had to exchange the medium for a small. the looser cut makes it very easy for this to look like a maternity shirt, so i'd advise everyone to size down.",4,1,0,General,Tops,Knits +872,60,Comfortable nicer t-shirt,"This is a soft, comfortable and flattering alternative to a regular t-shirt - not dressy, but a little more put together looking. it also doesn't wrinkle, so it's my go-to travel shirt for warmer months.",5,1,1,General,Tops,Knits +782,23,"Beautiful top, shorter than expected","I love this top! i've already worn it 3 times since getting it about 2 weeks ago. it is beautiful and has a lovely, subtle pattern to the fabric that i didn't initially see in the photo, but then did and still wanted it. it has a nice drape and is comfortable and flattering. my only critique is that it comes up a little shorter on my torso than i expected. i am a medium/size 8 with 34d bust and the top comes to maybe 2 inches below my belly button. i think it's still flattering and comfortable,",4,1,0,Initmates,Intimate,Lounge +872,44,Good for skinny minis,"I just sent this back. it is very cute & the fabric is great, so soft & comfy, but it doesn't work with my shape. it is extremely swingy in shape and the buttons up the front only work if you don't have a large chest. on me, it looks like maternity and it gaps when i button it. am a 34dd. it's not the fault of the top, but a bigger size would have swallowed me. i think if you are thin and also not top-heavy like the model, this will be adorable on you. i am just too busty.",3,1,1,General,Tops,Knits +1094,56,,I agree with all of the reviews. the design and fit are wonderful if you can get it on.! the buttons are a nightmare! whoever made these clesrly sewed the loopholes on the buttons closed with no thought as how to open them or get them off. ridiculous! they need to put a side zipper on this as i will probably check into since i really want to keep it. so so so disappointing,2,0,1,General,Dresses,Dresses +840,48,"Thin, shapeless","I was expecting a lot more, but this was disappointing. the material is thin and the quality isn't great. it also hung loose, just too loose, as it runs very very large i returned it",2,0,0,General,Tops,Blouses +963,48,Light weight but super comfortable,"I bought this to wear in the warm climates, when you go indoors it is always freezing. i also travel a lot and wanted something light weight to wear on the plane and airport. wore it the first day all day with jeans and top. lots of compliments. i was worried that driving in the car, it would get torn or snagged. didn't! loved it so much, going to by another one similar and have on again!",5,1,6,General,Jackets,Jackets +829,24,Great top,"I really love this top. it looks great under a black tahari suit that i wear to work. the neckline looks really nice. the only negatives are that it's a bit sheer, so i have to wear a tank under it and it's a little wide. it looks fine tucked in or hanging out with jeans for a more casual look. i'd recommend this top, especially if you can get it on sale. pretty true to size. i'm 5'4'', 120 pounds, and a 32 c and the size 4 top fit me nicely.",4,1,1,General,Tops,Blouses +1059,48,Love these,Fit great. hang nice. extra loop to hold belt. perfect design.,5,1,1,General,Bottoms,Pants +1094,48,Stylish jumpsuit!,"Really liked the styling on this jumpsuit. it looks great on, the lattice back is unusual. i had been looking for a little black jumpsuit for the longest time and this fits the bill. just wish the fabric wasn't polyester. on the down side the top buttons are really hard to put on and take off. if you take care of your nails, it could do a number on them. the bottom buttons are easier. can only imagine a struggle when trying to take this off in an emergency bathroom break!",4,1,15,General,Dresses,Dresses +1082,57,,"Love this dress! the embroidery is stunning and adds to each detail of the dress. i love the pink undertone. it is subtle. it makes it more unique. this is why i love online exclusives. they have that ""one of a kind"" look to them. the quality is great and the style is that there really is no shape to it. it has a nice everyday feel, but along with its elegance, can easily be dressed up as well. priced a little high is my only complaint.",4,1,1,General,Dresses,Dresses +829,34,The reviews tell the truth,All the reviews have said the truth. this shirt is absolutely adorable in terms of the top. but you will definitely need this tailored at the waist. give it a little more taper at the seams to suit a woman's curves. it seems almost funny they didn't do it to start with given the really feminine details on this shirt with the lace and the sleeves...,4,1,1,General,Tops,Blouses +873,66,Lovely knit texture! terrific styling! a winner!,"Absolutely adorable!!! i must object to previous reviewers who have stated that the top ""fits nothing like that of the model in the photo"". i have found that it fits exactly like that ""look"". i usually wear xl but bought this one in large as the price was too good to pass up! this top affords the slightly slouchy look on top (thanks to the dolman sleeves) but with a bit more fit or i should say....with a bit better fit through the midriff than that of the model. one reviewer stated this top make",5,1,0,General,Tops,Knits +871,39,,The shirt is beautiful but slightly long. it is see thru and you do need to wear a cami underneath.,5,1,1,General Petite,Tops,Knits +871,57,Pretty colors,The colors on this top are very bright & cheery. i love wearing this top. i get a lot of complements on the combination of the pastel colors. it reminds me of a warm summer day. i wear a pink tank under neath and it really brings out the pink colors of the top.,5,1,0,General Petite,Tops,Knits +871,62,Great versatile tank!,I love this tank top - it is perfect for work and dressing up a more casual outfit. the fact that it has small cutouts is cute and doesn't make it so you absolutely have to wear a tank under it in more casual situations. i love the colors and the boxy fit. great purchase!,4,1,1,General Petite,Tops,Knits +878,34,,"The blue has three colors of stripes: blue, white and black 9between white and blue). the black stripe made it too busy for me. the material is soft and clingy. i followed the advice of previous reviewer and sized up to a m (normally wear s). the shirt fit as pictured on the model, not tight but form fitting.",3,1,3,General,Tops,Knits +1048,79,Sexy and flows,"I love this jumpsuit! i'm usually a size small, however i was a lot more comfortable in an xs. the fit was comfortable and sexy! i received a lot of compliments and a couple of ""i need to borrow that from you""! i'm only 5' tall so it went down all the way to my ankles but i paired it with 4"" open toed heels and it worked! the neck line is pretty high but you can adjust it to your comfort. i highly recommend this jumpsuit ...even to the petite ladies!",5,1,8,General Petite,Bottoms,Pants +1095,48,Fit was off,"I was really excited to get this dress, i initially ordered a small (i am a size 4) but when i tried it on, it was really tight. the bodice at the top fit strangely-i had to shorten the straps quite a bit, and the dress just looked off. i love retailer and get all of my dresses from there, and the look of the dress on line was beautiful, but just didn't fit right. i did love the lace look, and would love seeing more dresses with this design.",1,0,5,General Petite,Dresses,Dresses +1081,62,Leaves much to be desired...,"I bought this on sale thinking it was a great deal, but when it came in i found it to fit like a totally unflattering sack. the pattern didn't help anything, looking totally faded and washed out...the fabric and overall quality is nice, but the fit and pattern are just so..ugly, unfortunately. had to return it.",3,0,2,General,Dresses,Dresses +871,34,,,4,1,0,General Petite,Tops,Knits +1048,41,Unfortunate,"This jumpsuit looked so great on the model, and looked so hideous on me. i'm 5'4"" and in great shape, and this jumpsuit looked absolutely ridiculous....not to mention it rode right up my backside in the worst possible way. i'm so disappointed!",1,0,0,General Petite,Bottoms,Pants +1027,41,J brand cropped rail jeans,"I love j brand, however the fit of these jeans was all wrong for me. they were perfect from the knee up, however they stuck out too much at the bottom. a slight taper from the knee down would have made them perfect. i had to return them.",3,0,2,General,Bottoms,Jeans +871,33,Beautiful lace tank,"This is a beautiful shirt. like many other reviewers stated, this shirt does not have a lining. but any white camisole works just fine. love it! i've already gotten tons of compliments.",5,1,0,General Petite,Tops,Knits +1072,40,,,5,1,0,General,Dresses,Dresses +1048,42,Oh la la,I have a love and hate with fit and fashion. i love super beautiful clothes that are comfortable to wear. normally i am the one everyone keeps asking where did you buy that and i inwardly roll my eyes because my rule of thumb is dress with the most comfortable thing i can. now i'm also a full figured mama. these outfit made me look chic parisian and made my derriere look like it was very attractive. i have a long torso and a long neck and long legs and it hid my flaws. so if you want to look lik,5,1,1,General Petite,Bottoms,Pants +1078,48,Surprise,"This dress did not show well on the hanger but thankfully it intrigued me. i love it, it's very flattering and easily dressed up for work with a heel or dressed down for the weekend. great buy!",5,1,2,General,Dresses,Dresses +1048,47,A very nice surprise,"I think i've made a hobby out of trying on jumpsuits & rompers this season. i now own three (including this one in my usual size small: 32d-31-38). i passed right by this on-line but it drew my attention in the store. i didn't realize it was chocolate brown and ivory (i'm a sucker for brown). i tried it on on a whim and it looked great. i am tall--almost 5' 9"" and it looked great. i will say it shows off my bottom (for better or worse) more than other jumpsuits. it doesn't give me a wedgie but a",5,1,5,General Petite,Bottoms,Pants +871,49,,,5,1,0,General Petite,Tops,Knits +1048,27,Flattering + chic + comfortable,"First of all, this is so much prettier in person. if i were looking online, i would have scrolled right by this beauty. i am usually a medium or small in retailer tops and dresses. in jeans, i am a size 8 or 10 but i always have to get the waist taken in (little waist, big thigh problem). this piece was tricky for me but i ended up with a medium because the legs are so roomy. also, there are little ties on the sides to pull in the waist more if necessary. the scarf can also be tied behind the neck",5,1,0,General Petite,Bottoms,Pants +871,43,Gorgeous,"This top is even more beautiful and vibrant in person, but you definitely need a racerback cami underneath it as the laser cuts are big. the first time i wore it today, i got a number of compliments. a definite keeper.",5,1,2,General Petite,Tops,Knits +829,58,Adorable,Cute top. fits short but roomy. will get a lot of use in my wardrobe.,5,1,1,General,Tops,Blouses +871,38,Beautiful tank,"The colors on the tank were beautiful i didn't keep it because i have a few similar tops, but i liked it! fits true to size with an a line shape",4,1,0,General Petite,Tops,Knits +878,31,Super soft,This shirt is super soft and comfortable! luckily it's a good length and not at all short!,5,1,0,General,Tops,Knits +1048,49,Love!,"I am so happy i decided to try this on in store. it is absolutely stunning! unfortunately they only had a m and it was a little too flowy so have the s ordered and anxious to try it on. the top is really where i am concerned it is too large. i am 5'3"", 36dd and 130#, athletic build. since you really cannot wear a bra with it, which is okay btw, the armholes were a little too open and afraid things may show ;). the bottom fit okay, a little on the large side but this should fit loose and flowy. c",5,1,0,General Petite,Bottoms,Pants +878,28,Cream / black stripe,"I ordered bought a medium for a comfortable fit. the material is stretchy, so size down for a body - hugging fit.",4,1,3,General,Tops,Knits +1048,41,Can't wait to wear it,"I've been wanting to buy a romper that was easy to wear and take off and i like this one for many reasons. the elastic waist ""holds"" the romper in place when you take the top off, the top comes off easily bc it's a halter and the design is very chic and sophisticated. the only down side is the tie is really heavy if you tie it in the back. it's better to tie it in the front like the model in this picture. it is a bit long (comes down to my ankles) but looks good with heels.",5,1,1,General Petite,Bottoms,Pants +871,63,Airy and feminine,"Love the colors and design of this lace-printed top but didn't realize it's not lined. the description says its polyester lace with polyester lining so i assumed it was lined and when you look at the photos, there is a lining under the top. the arm holes are slightly cut-in both front and back so it will be rather difficult to find a camisole with thin straps with a similar cut so they don't show. other than that, it's a beautiful, unique summer top.",4,1,18,General Petite,Tops,Knits +878,26,The everygirl basic,"I've been on the lookout for a great quality basic black and white stripe shirt. it's easy to find the super cheap ones that last you maybe four wears. this one is great quality, extremely soft, and comfortable. i'm usually a small in tops, but got this in a medium so that it would fit like the model, slightly loose, i didn't want it body hugging. so, if you're looking for that fit, go up a size, it doesn't stretch out much.",5,1,14,General,Tops,Knits +871,36,Pretty colors,Great quality and beautiful color! i wear size 6 and ordered s. got lots of compliments :),5,1,1,General Petite,Tops,Knits +871,35,Prettier in person,"Fyi-the model is wearing the top with a cami tank under. on it's own, it's lace and has holes throughout. i prefer it that way, so you can layer to make it more conservative, but also wear with a nude bra for an edgier look. material washed well and has a pretty raw lace edge seam on the bottom!",5,1,0,General Petite,Tops,Knits +871,20,,"This top is so beautiful! whenever i wear it i get lots of compliments. i have washed it a few times on delicate and it still looks great. i do have to wear a cami under it, but the way the straps of the top are made, you cannot see see my bra or cami strap.",4,1,0,General Petite,Tops,Knits +871,41,,"Nice quality, definitely need to wear a tank top or camisole cause this doesn't come with it. color is great not too bright. true to size. if you want short length zed a petite size.",4,1,0,General Petite,Tops,Knits +878,32,Man i love this shirt!,"I couldn't decide whether to get it in the black and white stripe or the blue, so i bought both. these t-shirts are incredible--soft, comfortable, fit well (i'm 5'2 usually a size 2 in retailer clothing, xs fit true to size for this shirt). the blue is vibrant and, as another reviewer noted, there's a tiny black stripe in between the blue and white. the black and white is actually more of a cream/offwhite but still pleasing and versatile. sleeves roll up easily, which is a preference of mine. they",5,1,3,General,Tops,Knits +871,33,Great pops of color for the end of summer,"The colors of this top are my favorite part, i want to hold onto summer for as long as possible and this time lets me do that!",4,1,1,General Petite,Tops,Knits +1072,39,Fuzzy pink perfection,"Loving the ombrã© color combination, the smooth lining, the fuzzy felty warmth and the slimming effect when viewed from the front. if you are busty or hourglass, stay tts or size up. if you are straight and/or small busted, size down. if you have a round bottom but slender on top, i'm not sure this dress will fit the way you want, do try it on in person.",5,1,0,General,Dresses,Dresses +1048,45,Another confusing review,"I'm another borderline petite at 5'4"", and i loved this. the pants are like palazzos on me, and i think with a heel it will look great. i plan on wearing my hair up and tying the tie in the back in a big bow. in fact, i don't see the button back spoken of in the description, so i think one would have to do so!",5,1,1,General Petite,Bottoms,Pants +1078,51,"Nice dress, not beautiful; well-made, comfortable","This was a perfectly nice dress, but embroidery was less elegant than i had expected. be sure to look closely at the neckline, where the material is thick and somewhat informal. it's pretty, but doesn't work for me. otherwise, it is a well made, comfortable, easy-to-wear summer dress. (i sent it back, but thought about it for a while first.)",4,1,2,General,Dresses,Dresses +871,65,No lining in this!,"This top is really pretty. it's a very strong embroidered lace all over (front and back) with small holes. but, the description states there is a polyester lining, and this is unlined! so,there are holes. but, i do not think this is immodest and needs a cami. just wear a nude bra under it. the holes are not revealing at all. + +the sizing is tts, and is as shown in the photo. i bought an xl because if a top isn't stretchy i need to wear a 16 or 18. this fits me, only it's not as loose in the bac",4,1,18,General Petite,Tops,Knits +836,40,Beautiful top with odd fit,"This top is beautiful to look at but did not fit me like the model. it was tight across the bust but very poofy at the bottom, which normally i like, but not this time. sad.",3,0,0,General Petite,Tops,Blouses +836,54,,"I am on the fence on this one........it's quite beautiful as color goes, the pic online seems rather faded. i just felt it was a bit wider on the bottom than might be flattering otherwise. beautifully made and the fabric is of great quality. +i just i wish some of these tops were in better proportion from top to bottom, and less bulky. +other than that i still may purchase as the print is beautiful..........",4,1,0,General Petite,Tops,Blouses +1078,53,My new favorite,This is one of those stunning retailer pieces that keep us coming back for more. it reminds me of the lithe dresses from the earlier retailer days. it fits tts. well made with side zipper that zips both the inner sheath and outer tulle overlay ( as opposed to those obnoxious linings that you wrestle with). the inner sheath has a fabulous lattice work pattern while the overlay has beading and embroidered detail. sure to sell out.,5,1,0,General,Dresses,Dresses +1027,33,Not good for big hips,"The quality of the fabric these are made from is wonderful- they are soft yet structured and i was so bummed they didn't fit me. i usually wear a size 28 in premium denim so i ordered a 28 and i could barely pull these up over my hips. once i pulled them on i was about 1-2 inches from being able to zip them closed. the pants fit in the legs but they were very close-fitting, which is not the look i'm going for. i am 5'5"" and was worried they would look too long since usually pants are for me, but",4,1,4,General,Bottoms,Jeans +836,33,Fit issues for a curvy gal,"First off, the other reviews are spot on regarding the quality of this top. the material is thick and pleasant feeling, the print is beautiful and the construction is nicely done. however, i just couldn't get past the fit issue, which was also mentioned by the other reviewers. i ordered a 14 for my 38 dd chest, and it was loose in all the wrong places. i'd be interested to see what a 12 looks like on me, but i'm afraid it would be too snug. this may look awesome on someone else, but i had to ret",3,1,16,General Petite,Tops,Blouses +836,41,,"This top really pays attention to detail. it is very refreshing to buy a top that is lined so i don;t need to struggle to find the right cami to go underneath. also there is a lovely snap fixture to hold your bra strap in place. very thoughtful :) the top seems to run true to size and fits well. neither the arm holes or the v-neck are too low. i agree with the first reviewer that the main need for sizing up or down is due to breast size. i'm a 36dd and the 10 fit perfectly. also, the colors in t",5,1,19,General Petite,Tops,Blouses +954,33,Delicate,"This piece is stunning. you can dress up or down with it. my husband said ""wow that's very elegant"". it is very soft. thin but warm. however, it came to me with numerous holes along one strip of fabric. i returned it for another. it is a very delicate fabric. the zig zag stitching may snag easily. i'm afraid it will not wash well. definitely a hand wash item. i'm not sure i will keep it in the end. the design i thought should be a 5 star because of the look and versitality of the item. quality",3,1,0,General,Tops,Sweaters +836,29,Unflattering,"As someone with a large chest and a smaller waist, i found this top incredibly unflattering (and i like swingy tops). it was too short, too wide in the hips, and too tight in the bust. the pattern and fabric are very pretty though.",2,0,4,General Petite,Tops,Blouses +836,52,Beautiful top!,"I absolutely love this top! i often shop the sale items first, but when i saw this top in the store, i didn't hesitate to pay full price. the material reminds me of vintage clothing - it is a dry clean only item, but is so special that it's worth it. the colors and construction (beautifully lined, bias trim) are impressive. and, this top looks better on me than on the model:)",5,1,1,General Petite,Tops,Blouses +1081,31,Sexy!,"This dress is so comfortable and so sexy. hugs your curves. probably would not look great on an athletic frame. i bought on sale and was a good price. i usually wear a 2 or 4 in retailer, and the xs fit fine. the small was much too baggy.",4,1,3,General,Dresses,Dresses +831,47,Stunningly beautiful,"I took a risk and bought this blouse and got a wonderful surprise. i bought my usual size small (34c, 31"" waist) and it was perfect. the details of this blouse are amazing. you cannot see the flecks of copper-gold leaves all over the fabric or the gold threads running down the seam in the front. it is really, really beautiful. the fabric overall is soft and flowy and the sleeves do not stand out off my shoulders in a weird way. there is a soft flow of ruffle down both sides of the shirt. the fro",5,1,3,General,Tops,Blouses +836,53,Too big....,"This is a beautiful blouse but needs to be returned for size. i have lost a bit of weight; the last couple of blouses i have gotten in a m (including this one) have been to large for me. i am 5'5"" tall, 138 lbs and in this blouse need a s. the fabric is satiny and substantial with a gorgeous lining edged in contrasting thread., it hits at the top of my thigh in a regular size 8 but i should have ordered a 6. i would say to size down if you are close to being between sizes. the colors are as show",3,0,0,General Petite,Tops,Blouses +1081,48,Probably best on hourglass bodies,"I'm a little on the fence about this dress. it doesn't do much for my fairly straight/petite body type; i.e. it's not fitted at the waist which i think would help even though i don't have much of a waist to begin with. but the low v-neck is flattering and the flared skirt is too. it's just that it probably looks better on an hourglass shape... i was fine with the fabric type, i'd describe it as a mid-weight ribbed knit blend. i'd say it's true to size, i got my usual xspetite and i'm 34aa, 26"",",4,1,1,General,Dresses,Dresses +836,60,"Love, love, love it!","Tried this little gem on in the store but they were out of my size. the ladies were so helpful, ordered it, shipped to me directly and i received it amazingly fast - not an easy task when you live off grid in north idaho! +i wore it last night to a st patrick's day party in california and received a ton of compliments. paired it with black leggings and strap or black heels. +i'm still smiling today, can't wait to wear it again. the fit is flattering and the quality superb. +thanks retailer",5,1,2,General Petite,Tops,Blouses +836,39,Gorgeous!,This top is gorgeous! the print is lovely and the material and cut are well constructed. can't wait to wear!,5,1,3,General Petite,Tops,Blouses +1072,62,,"This dress is beautiful. it may run a tad large. everything about the dress is very appealing from the nice fabric, beautiful design and colors of the print. it will go straight into fall. so very happy i tried it! i have a beautiful, elegant dress for the hot weather.",5,1,4,General,Dresses,Dresses +836,60,"Lovely, but odd fit","I really wanted to love this top, but the fit was just off on me. the design and material is so pretty. however, i expected the fit to be more ""peplum"", but there was not any structure. i think this would be better on more slender women.",4,1,13,General Petite,Tops,Blouses +836,37,Super cute top,Love the way this top fits. got many compliments on it! wish the arm holes were a little closer fit - can see the bra peeking out a teensy bit.,4,1,0,General Petite,Tops,Blouses +836,53,This top is the bomb!,I bought this top because i loved the floral print. i had no idea i was getting a top notch quality top. i love the flow of the bottom and the zipper in the back is so classy. it has a lining and the coolest thing about it is the snaps that protect your bra from showing. love love love this top!!,5,1,0,General Petite,Tops,Blouses +832,30,Stain on shirt,I was very disappointed with my recent retailer order. i ordered the meleri eyelet tank and it had a stain on the front. i also order a dress that came with a tear in the fabric. sale items should not be damaged unless the customer is aware of the damage and accepts it in that condition. very disappointing.,1,0,0,General,Tops,Blouses +836,23,Busty ladies size up,This is a wonderfully-made top. i love the colors! if you are busty you must size up! this fabric doesn't give (stretch) at all.,4,1,0,General Petite,Tops,Blouses +836,61,A piece of art,"Stunning! very well made. the colors are so vibrant and stand out without being too flashy. the cut is a bit strange but it works. runs true to size. i took my normal size 0. i rarely buy anything at retailer full price, but i made an exception with this one. a must buy!",5,1,3,General Petite,Tops,Blouses +836,42,Not right for every body type.,"I have a 36c bust. i bought this blouse in a 10, even though i wear an 8 or 10. i sized up based on previous reviews. this top was super tight in the bust (it literally flattened my breasts) and very loose on the bottom. it was not flattering at all. the material is gorgeous. it is thick. it is lined. it is darted at the bust and it flares out in a peplum fashion where the light fabric up top meets the dark band of fabric in the middle. the problem is that busty ladies will find the bust area wa",3,0,3,General Petite,Tops,Blouses +836,38,Loving it,Adorable peplum top! colors are much more rich in person. saw it in the store and stalked it online until it went on sale. beautiful material and craftsmanship. i thought it ran on the large side though wish it was a touch longer but not enough to not purchase. highly recommend....great piece to dress up or down and easily add layers for fall.,5,1,1,General Petite,Tops,Blouses +836,34,Like wearing a beautiful painting,"The retailer by me actually had this and i had to try it on. my thoughts below: +___________ +pros: +- well-constructed with lining underneath to avoid the need of a cami or tank. no see-through issues whatsoever. +- the fabric is great quality and looks nicely sewn. no fraying or strays seen on the 2 sizes i tried. +- there's a back zipper that goes from top to bottom at the back. unusual as i don't see why that's needed since you can just slip it over your head. +- front ""v slit"" isn't too low or reve",4,1,78,General Petite,Tops,Blouses +826,62,Gorgeous,The most beautiful top in my closet and i have a huge closet of beautiful clothes! hope retailer carries more peasant top by this brand...stunning,5,1,0,General Petite,Tops,Blouses +836,46,Shirt is beautifully made,"Sadly, this shirt was too short for me. i'm 5'11"" and have had a hard time with some of retailer's shirts lately. but it is absolutely beautiful and the fabric feels expensive and it's well made.",4,1,1,General Petite,Tops,Blouses +836,49,Pretty tank,"It is a pretty tank, the fabric feels nice and substantial.",4,1,0,General Petite,Tops,Blouses +1027,42,Runs two sizes small,"Nice fit and color and i love the tall cuff but you will need to size up at least two sizes. as the previous reviewer stated these jeans do run extremely small. i usually wear a 27 ag in jeans, sometimes a 28 for the ag legging jeans but the 28 in these were still very tight all over, and uncomfortable. i don't like my jeans skin tight so i had to go up to a size 29 but they fit and look great. sizing definitely off on these. i am 5'3"" 115# for reference.",5,1,3,General,Bottoms,Jeans +836,38,Triangles aren't my shape,"So, i want to start off by saying, the quality of this shirt really was great. as was the pattern, unfortunately if you're going off the picture know that they definitely pinned in the sides on the model. this shirt has a full on triangle shape and flares significantly towards the bottom, it's not a straight fit as the picture would suggest. i'm sure this works for some women but if you're muscular with an already v-shape to your body (meaning your shoulders are significantly sized and you have",2,0,0,General Petite,Tops,Blouses +836,35,,"Bought this on sale in my reg size- 10. im 5'9"" and about 36c. the fabric is heavy and pretty. this is a more formal top in my opinion. it is lined. it is much wider around the waist than appears on model. zips up the back, but i can pull on and off without unzipping.",4,1,2,General Petite,Tops,Blouses +1100,35,,"I was really pulling for this dress to work because it's beautiful, however the neckline is cut so extremely low that i had to return. it's much higher on the model than in real life. the petite length was still far too long, so additional hemming required, otherwise fit was true to size (5'3, 130 lbs, size 6p)",3,0,4,General Petite,Dresses,Dresses +1076,65,,"I love how different this dress is in terms of the design. it catches light beautifully. the short, biased hem makes the dress fun and flirty. but, this dress is completely sheer. there is no lining which is very disappointing. i do have a short, nude slip that makes this dress work for me. you will need a slip, for sure! unless you are rhianna. the sizing runs a little large, i probably could size down given the loose cut but overall the proportions are flattering showing off my legs. i will re",3,1,0,General Petite,Dresses,Dresses +1080,31,Wonderful dress that can be dressed up or down!,I bought this dress in a medium petite. i'm 5'2 and 140#. it fit great and made my waist look really tiny. i cannot wait the dress with heels or else you would see the entire shoe. it works perfect with flat sandals. i've received tons of compliments! you can also wear a normal bra with the dress. love it!,5,1,0,General,Dresses,Dresses +381,31,Lovely one piece,"This is a beautiful swim suit! the overall look is lovely; the ruffle is sweet and the low-cut front keeps it just the right amount of sexy for a one piece. i didn't keep it only because i would have preferred the leg opening to be cut a little higher. otherwise, it fit very well. i'm 5'10"" and 150, with broad shoulders and a substantial rack (nursing a baby right now) and i didn't have any problems with support. great buy!",4,1,1,Initmates,Intimate,Swim +381,38,The 1 piece,"A must have 1 piece. every time i wear this i get compliments! it's very flattering, amazing quality, soft material, good support and vibrant colors! i wish this came in more colors and patterns. worth the money no questions asked!",5,1,3,Initmates,Intimate,Swim +1080,29,Cute,I like this dress. very nice easy to wear everyday dress. the top is lined but the bottom is a bit thin and unlined. i don't think it was too sheer though. it seems much of the quality of retailer is going down a bit. disappointed overall in the quality of their dresses this year.,4,1,1,General,Dresses,Dresses +381,46,Beautiful and flattering,"I ordered this in the china pattern color, and the colors are vibrant and beautiful! the suit is well made and slimming. there are no bra cups; just a shelf bra, but the tie halter adds some extra support. i have trouble buying bathing suits, but i am very happy with this one.",4,1,8,Initmates,Intimate,Swim +933,62,"Great quality, but odd fit","When i saw this, i ordered immediately thinking it was similar to the popular colorblocked stripe sweater from last year. the knit is stretchy and textured and feels like great quality (would wash well), but it's pretty lightweight. the fit is huge...could easily size down. i'm 5'7"" 128# and found the small to be loose everywhere, including the arms. the length was at my knees, and the stripe fell awkwardly across my chest. no idea what i'd wear this with even if it fit better. sadly, it's going",3,0,1,General,Tops,Sweaters +1080,62,Keeper!,"I adore this maxi! the fit, style, pattern (black motif), machine washability, everything! fits tts (got my usual size s for 5'7"", 125lbs). i would say that the length is appropriate - some are super long on me, and i'm not one to wear heels. i was also happy that the top fits nice and snug - my issue is usually that when i bend forward the top drapes open due to my small chest - no problem with this dress! i think it's perfect piece for spring/summer/fall and dressing up or down. my one slight",5,1,6,General,Dresses,Dresses +1080,30,Great maxi,"I agree with another reviewer. the neckline is just right, not too low cut and a normal bra should work fine. also it would be nice if this dress were lined. the top part has more than one layer so that's not an issue, but the skirt doesn't so i'll likely wear spanks. other than that, it's a great maxi and perfect for spring or summer (light weight)..",4,1,6,General,Dresses,Dresses +381,29,Flattering suit!,I ordered this after reading the stellar reviews and i was not disappointed! i ordered the black and purple floral motif and both are excellent. i have a rather big chest (36dd) and the shelf bra and halter support are just enough for me. look forward to wearing this on my upcoming vacation!,5,1,2,Initmates,Intimate,Swim +999,33,Just what i was looking for!,"This skirt is great! the fabric is so soft and light. i was hoping that the lower portion of the skirt wouldn't be too transparent, and it wasn't. the slip lining on the upper portion of the skirt is nice. the color is exactly as shown. i followed the advice of the only reviewer and sized up... i shouldn't have! the skirt was too big in the waist and too long. so i exchanged and the fit was right on. i think the skirt is meant to sit a little higher on the waist, so keep that in mind. the only t",5,1,2,General,Bottoms,Skirts +1080,39,Comfy whimsical,"Love this black and white dress. the bottom art print is so nice, i am a sucker for flowers, i also love the cut of it, teh tiered hem is very flatering, not too much amterial. the upper part covers a normal bra, and the whole dress is super flowey, substantial amterial, and stretchy (for those days where you ingest more than itnended). flattering cut (waist being the aame apttern as the bottom, gives it a nice shape). i can't say anything bad about this. + +regular xs fit me but i would ahve t",5,1,9,General,Dresses,Dresses +1080,41,Absolutely amazing,This is such a simple dress to throw on that will give you instant wow factor. you can dress up or down but know that it is completely flattering - head to toe. i am in love with this dress!,5,1,1,General,Dresses,Dresses +1100,28,Very pretty dress but runs big,"Beautiful print and a flattering cut. however, the proportions are off. based on other reviews, i ordered a petite (i am 5'4"" and don't normally need a petite cut). i also ordered a size down. even the 0 petite requires that i wear 3-4 inch wedges and pin the top in the back to keep it in place. i am going to take it to a tailor to have the hem shortened and the top sleeves adjusted...then maybe the v neck won't be almost to my belly button.",4,1,1,General Petite,Dresses,Dresses +381,30,Not for the busty babes!,"Loved the material and the style. unfortunately, my fears came true when i received this swimsuit, and there wasn't enough support despite a review i had read. as a 36d, i thought the halter would be enough support, however, the material is too stretchy to rely on that completely. i am sad i won't be keeping this though. the material is heavenly!!!",2,0,4,Initmates,Intimate,Swim +1080,38,Love!,"Great petite maxi! i'm 5'3 and it skims the top of my feet. soft, fits great and went right into my suitcase for my upcoming trip. can dress up or down.",5,1,0,General,Dresses,Dresses +1080,44,Lovely!,"I was on the fence about getting this maxi because it's a tad pricey but ended up scoring an retailer coupon that took a bit of the sting out of the price. i'm so glad i went ahead and ordered it! it's absolutely lovely! i'm 5'3"", 117# and got an xs petite; it fits like a glove and is the perfect length to wear with either flats or a higher heel. love, love, love!",5,1,0,General,Dresses,Dresses +273,39,Terrible buy,I wouldn't be so unhappy if these pants cost about 75% less. they are so cheaply constructed. one wash and they're all but guaranteed to shrink. the material is so cheap and flimsy not at all what i expect from retailer. they are also 32 inch inseam not 35.5 as stated on the web site which is the whole reason i bought them.,1,0,10,Initmates,Intimate,Sleep +1080,32,,Very comfortable and easy to dress up or down. i get tons of complaints on this dress- it's a definite win!,5,1,0,General,Dresses,Dresses +1080,24,Great petite maxi,"I ordered this dress online and i love it! i'm only 5'2"" so it's always a challenge for me with maxis but this one fit the bill. not too much fabric to be overwhelming on a shorter frame and the length was perfect. the fabric is very comfortable and moves with you. also the quality is great! i ordered a small petite but i probably could have gone xs petite. this would dress would be flattering on most people. need same dress, more colors!",5,1,2,General,Dresses,Dresses +1080,38,Cute maxi,"The material is nice and has a lot of stretch. i ordered the small as i'm a 6 in most dresses. it fits comfortably i could probably get away with xs but have a large chest so was afraid it wouldn't cover me. i'm 5'2"" so a petite might be a bit better but it was sold out. i'll have to wear tall wedges with this one.",4,1,0,General,Dresses,Dresses +1100,32,Love!,"This dress is beautiful and fit exactly as pictured. i'm 5'9"", 140 lbs and a size 4 fit perfectly.",5,1,4,General Petite,Dresses,Dresses +1080,60,,,5,1,0,General,Dresses,Dresses +1076,35,Scratchy and boxy,"For me, this looked better in the picture. i found the actual item more garish in person, and way too scratchy (on the outside) for my liking. hard pass for this petite.",2,0,3,General,Dresses,Dresses +1080,32,"Lovely dress, fits well","This dress is very forgiving on my post baby body. i'm glad i purchased the petite, it hits my ankle perfectly (i'm 5'5""). very versatile, i can see wearing this at work (with a blazer) or on a weekend.",5,1,1,General,Dresses,Dresses +1080,33,Fantastic buy!,"This is my new favorite dress! i can't tell you how flattering it is. i just had a baby a few months ago, and it's the only piece of clothing i actually feel like i look like my old, pre-baby self in! i'm on the shorter side (5'3""#, very busty #because i'm nursing# and about 118 lbs. i got a mp and it fits great. i could have gotten the small, but i feel that would have been too low cut. honestly, love the cut, the pattern, everything about it. would buy again!",5,1,0,General,Dresses,Dresses +862,54,Oddly fitting top,"I was disappointed in this bordeaux top, a brand i usually enjoy. i ordered a medium, my usual size in their tops. it was very very big and did not fit at all as pictured here. also, the fabric is somewhat sheer and while i tried it on wearing a darker bra, the combo of being way too large and a bit sheer was enough for me to return it.",3,0,11,General,Tops,Knits +1080,44,Go to dress,"I love my new maxi dress! as soon as i put it on, i knew this dress would be my go to dress of the summer. i love the styling with the thicker shoulder straps and higher cleavage. you will definitely be able to wear a regular bra with this dress. the material is soft, light, and flows well. i particularly love the ruffle on the bottom of the dress - it adds that extra little feminine touch. i can't wait to wear it.",5,1,0,General,Dresses,Dresses +1080,40,"Cute but missing some ""oomph""","I think it's a cute dress, but nothing spectacular. that being said, i get a lot of compliments. it's a very flattering cut, but i wish it was more colorful, not just black and white. i'm 5'10, 145 lbs and got the s, i could have probably gotten the xs too, but i'm happy with how the s fits. great length too, since i often have a hard time finding dresses that are long enough for me.",4,1,0,General,Dresses,Dresses +1080,27,Beautiful and comfortable,"I love this dress! my goal is to have a closet full of clothes that are really cute and stylish, but are also very comfortable... this dress fit the bill. the mixture of the fabrics is even more cute in person than it looks online, and the fabric is so soft, it almost feel like wearing pajamas. the weight of the fabric also makes it hang really nicely, and so it's flattering. overall, a great addition to my spring/summer wardrobe.",5,1,2,General,Dresses,Dresses +1080,37,Great maxi!,This is a great dress for summer and very flattering! i am 5'4 and could have pulled off the regular length but chose to go with the petite so that i could wear flats.,5,1,0,General,Dresses,Dresses +1080,33,Lovely,This dress is beautiful. the neckline is not too low and the straps are wide enough so you can wear a normal bra! the waist is very flattering and the ruffle at the bottom is not too much. i am short so i ordered the petite and it is a perfect fit. now i just need some warmer weather!!,5,1,17,General,Dresses,Dresses +1080,35,Awesome dress!,"One of the best maxi dresses i have ever found! i needed a dress that could accommodate a large bust (36g) and camouflage my postpartum belly. the dress did it all. i ordered the large (5'7 and 155 lbs) and it is so flattering. it has just the right amount of coverage up top to prevent looking too busty. and the band around the midsection makes me look much slimmer. like i said, best maxi dress ever. price is pretty high, but it was worth it!",5,1,4,General,Dresses,Dresses +1080,44,Perfect maxi dress,"I love this dress. i live in maxi dresses versus shorts in the summer and this is the perfect cut, weight and quality. i did have to order it in petite or else i was stepping on the bottom (unless really high heels). i am 5'5"", so i would say that it runs long. offer this cut in more colors!!",5,1,2,General,Dresses,Dresses +1080,45,A perfect dress,"This dress is extremely comfortable and looks great on. i'm 5'3"" and 34dd and the m petite fit like a dream with even a bit of room at the bust. the length is perfect with sandals or even up to 2-inch heels. perfect for travel and summer entertaining!",5,1,0,General,Dresses,Dresses +1100,38,Much lower top,"I'm 5'8 128lbs and bought a size 2. i loved this dress, but didn't expect to have to go bra-less or wear a tube top under. the top lands much lower than i expected but the rest of the dress was lovely. + +i ordered a size 2",3,0,2,General Petite,Dresses,Dresses +999,59,Only one problem- length,"Beautifully made. beautiful drape. deep blue. so long tho i have to role it up at the waist so nix on tucking a white blouse in. why is it so long???? in 5'6"" and got a large. with 2 inch heels i still trip and not about to wear really high herls. +ill keep it tho because its a nuce dressy skirt. may take it to be hemmed but the last item i got hemmed ended up an uneven mess",3,1,0,General,Bottoms,Skirts +1080,35,Even more beautiful in person!,"I was on the fence about purchasing this dress for a while and finally took the plunge. glad i did because this dress is stunning and very comfortable. i ordered an xsp and it was the perfect length. originally, i had also considered xxsp. while it fit well above the waist, it was slightly too short. for reference, i'm 5 ft 3.5 inches, 105 pounds.",5,1,0,General,Dresses,Dresses +1080,53,Beautiful and flattering,"This dress is wonderful. wide enough straps for a bra to be concealed, lovely pattern that draws the eye down instead of across, and a waistband that hits at the narrowest part of your midsection, making it look super-tiny. the design is simple but very clever--it's feminine, flattering, and slimming. my only quibble is that it's quite long (and i'm almost 5'7"" in my stocking feet)...i will have to wear heels or have it hemmed. highly recommend.",5,1,0,General,Dresses,Dresses +1028,45,Great jeans!,These are so comfy! mom of two boys on the go! great for running around and then can be dressed up for a night out on the town! not mom jeans!,5,1,0,General Petite,Bottoms,Jeans +381,28,Lovely little number,"Took the plunge and ordered this in the romantic floral pattern. i almost got the black because i thought it would be 'timeless' but the print is so fun - i'm glad i went with it! ordered a size m - for reference, i am 5'6, 135lbs, 34c, 28/39 and the fit is comfortable. i don't need a lot of support :) and i find the coverage adequate up top and on the bottom. i think it'll still fit perfectly even if i lose a few pounds before my beach trip. this is the first one-piece i've had since i was a gi",5,1,7,Initmates,Intimate,Swim +1080,40,Love this dress!,Another perfect maxi from retailer! the print is feminine and can be easily dressed up or dressed down. i ordered my normal size in maxis (medium) and the top fits nice and snug but not too tight. i am busty and the neckline is high enough that i don't feel like i am showing too much cleavage. it is a little long on me when i have flip flops on but with a little platform sandal it will be perfect.,5,1,3,General,Dresses,Dresses +999,53,A basic for my closet,"Love this skirt. i love that it is pleated and sheer on the bottom. i'm so happy i found it online! love anything maeve, you can count on the quality and simple elegance.",5,1,0,General,Bottoms,Skirts +1100,36,Pretty dress with problems,"I'm 5'4"", 32c and 125 lbs. i ordered the size 4p and while the color and fabric is pretty, the back and front bodice were much to low to wear a bra even if i were to shorten the straps. it was also very tight across my ribs. despite ordering a petite, the hem was much too long. i ended up returning it.",2,0,0,General Petite,Dresses,Dresses +1080,39,I look taller!,"Gorgeous dress with a slimming pattern and flattering waistband. i would say the bust cups are a little floppy on the medium petite and i have 36dds. like others, i wish the skirt was lined but it's not a deal breaker. tracy reese did a great job creating movement in the skirt and flounce without the bulk. i can wear a little heel but wearing flats makes the hem drag.",5,1,0,General,Dresses,Dresses +1080,40,"Beautiful, flowy summer dress",The cut is wonderful and the fabric is soft and flowy. it is pretty sheer so a slip is recommended. i wish this dress had a lining like some other dresses i've gotten at retailer.,4,1,10,General,Dresses,Dresses +381,46,Ruffled halter maillot,Bought this for my girlfriend and she couldn't be happier! she's a size 4/34c and the small fits perfectly and is so flattering and comfortable. highly recommend.,5,1,1,Initmates,Intimate,Swim +999,36,Great maxi,I've been looking for a versatile maxi skirt all season. the pleats and layered look were a great effect to a really basic navy maxi skirt. the waist is elastic (great for after baby) and will look good with a shirt tucked in and belt. the only drawback is that it's a little too long and will drag on the ground if i wear flats (i'm 5'7''). soft material with some flowy movement when you walk.,4,1,2,General,Bottoms,Skirts +1080,29,,"As other reviewers have said, this is the perfect summer maxi dress! i'm tall, just under 6 feet, and while the dress could be just a bit longer it still works for my height. i do wish the skirt was lined, but other than that the dress is excellent. worth buying at full price if you're worried about it selling out!",5,1,1,General,Dresses,Dresses +1080,22,Beautiful classic dress!,"I can't get enough of this dress! this dress is everything. from the flattering fit, to the colors and pattern, to the design, and to the quality.. this dress really has it all. this is worth every penny and in my opinion, a great price for a versatile, high quality dress. the material is that super comfy, stretchy material which is perfect for everyday! it is a no brainer and easy to throw on. also, the neckline is flattering and sexy without showing ""anything""! definitely can wear a normal bra",5,1,0,General,Dresses,Dresses +1080,39,Beautiful!!,This dress is so easy to wear! the neck line is not too low! can wear a regular bra!! it flows beautifully! i love it!!,5,1,0,General,Dresses,Dresses +1080,47,Beautiful dress!,"This dress is so much prettier in person - the pattern is unique, adorable and not over-powering. i'm an xxs petite and i can wear the dress with flats. (5ft) i think this is versatile enough to wear to work, party or a casual wedding. the fit is perfect - hugs at the correct spots. the fabric feels really soft and silky and feels a bit heavy which allows it to drape nicely. overall - i love it.",5,1,2,General,Dresses,Dresses +381,59,Breastfeeding friendly,"I'm on the smaller end of the bust spectrum even nursing i'm a 32c/d at my fullest. i adore this suit. there is zero support so if you need that move on don't buy this. i love it -hides the post partum baby puff, pattern detracts from flaws, deep plunge is modest yet still sexy and it's super stretchy and easily be pulled aside to feed a baby. underneath there's a fabric bra insert so if you bend over nothing can be seen which i like. haven't worn in water or waves yet but fabric feels awesome.",5,1,7,Initmates,Intimate,Swim +1080,61,Perfect dress,"This is the perfect dress to take traveling. dress it up with heels or down with sandals. warm up and wear it with a short black sweater. a nice easy elegant dress. size small fit nicely, medium probably would have been fine too.",5,1,6,General,Dresses,Dresses +381,30,Flattering and subtle,"This is a really nice suit. it fits well and is slimming with the cross waist. it's also supportive in the bust even, and maybe especially, because it doesn't have moulded cups or underwire, which allows for flexible sizing. the back rises high enough that it supports around the chest as well as from the halter straps. the straps are wide too so they don't dig in and are comfortable. the look is subtle and feminine in the black and the quality is good. it is true to size, but might run a tad lar",5,1,0,Initmates,Intimate,Swim +1080,36,,Beautiful in every way. you can never go wrong with black and white. very lightweight since it's not a lined dress so it's perfect for our florida heat.,5,1,2,General,Dresses,Dresses +1059,52,Classy with a little swagger thrown in,"The ""movement"" in these culottes when i walk makes me feel like i should have some, ""yeah, i can wear these attitude!"" not only is the quality exceptional but the fabric is ""thick"" enough to hide flaws. i am 5' 120 lbs and i ordered the 4petite. i am usually a 6petite. the size 4p fits perfectly. i ordered the apricot color. great neutral. i'm so happy i was able to get a pair -there's a reason most sizes are sold out! i have short legs, and my legs are medium in size. i worried about the thigh",5,1,0,General Petite,Bottoms,Pants +1080,34,Perfect cut,"This maxi is perfect! the neckline is sexy but not too sexy (yay for normal bra!), and the waistline is flattering. the skirt isn't very full, but the ruffle effect at the bottom gives it nice movement. it could easily be dressed up or dressed down. i can't imagine that this wouldn't be flattering on anyone. it fit totally true to size for me.",5,1,38,General,Dresses,Dresses +1080,43,Playful and easy to wear,"This is a fantastic maxi -- it is very flattering, you can wear a normal bra with it (for me, very necessary) and the added ruffle makes it perfect. its a casual fabric but because of the contrast in fabric can be dressed up easily. + +i am 5 foot 1, 123, and curvy on top and ordered a small petite. in many antrho maxis i go down to an xs, but in this one the small felt the best -- more comfortable around the waist. + +will get tons of wear out of this -- have already taken it on a trip and wo",5,1,1,General,Dresses,Dresses +829,68,,,5,1,0,General,Tops,Blouses +940,35,"Yay, a long one!","I really love everything about this cardigan. the detailing at the bottom part of the arms adds a lot, the color is highly versatile, it is a thicker fabric so it keeps you warm, and my favorite part is that it is long. i like longer cardigans that you can easily pair with skinny jeans. the only drawback is there is no way to close this cardigan, likely if i end up purchasing this i will also purchase some sort of broach to pin it with or pair it with one of the belts i have from retailer to",5,1,12,General,Tops,Sweaters +1024,37,Practically perfect,These are just as cute as pictured. they are generously sized made from soft denim. the denim has quite a bit of stretch. i ordered a size down from my normal size. i was surprised by all the extra threads in the pockets. they were still attached to the inside of the pockets. it just made them feel a little unfinished. these didn't impact the overall wear or appearance of the garment. the straps are adjustable with two buttons on the overalls and three strap-length adjustments on the straps. the,5,1,5,General,Bottoms,Jeans +829,26,Versatile !,"Love this shirt...got it in the ""blue"" but i will say the print is a very dark navy, almost black. i'm 130 lbs, 34d and the size 6 fit me fine. so i would disagree with other reviews that says it runs large. this is perfect to hide muffin tops with the slight swing style that has a little flair!",5,1,0,General,Tops,Blouses +829,30,,"As other reviewers have said, this shirt runs a little short and wide. i usually wear petite, so the length didn't bother me. the sleeves fit me perfectly (which is rare in regular sizing), so others may find that they are too short and tight. to fix the boxiness issue, i just stitched 2 of the seams in the back together to give it more shape. since i bought the black pattern, my diy fix isn't too obvious but this may not work for the other colors. it needed a little work, but it was worth it fo",4,1,0,General,Tops,Blouses +829,25,Quirky staple,"Let me just say the ski pattern is the cutest thing i've ever seen!! i literally bought it as soon as a saw it. i got a size 2. i'm usually a 0 or 00 in most blouses and shirts, but i wanted this to be a litter looser so i sized up. it's definitely not oversized even though i sized up. the fit is a little boxy and a little shorter in the front - really flattering in my opinion. the material is really nice and it can definitely be dressed up for work or dressed down with jeans and a chunky scarf!",5,1,1,General,Tops,Blouses +829,28,Short and wide,First off the prints are gorgeous - i ordered three. i wanted to love them but unfortunately i found them short and wide. so back they go..,3,1,0,General,Tops,Blouses +829,42,Too short :(,"I didn't have any problems with the fit, i love the puffin pattern, the material is nice---it's just so short. i really haven't decided if the print is worth the awkwardness of the length, or if i'll just keep it and only wear it when it's cool enough outside to wear a tank under it, so i can avoid flashing my stomach every time i lift my arms. but, yeah...it stops right at my waist in front. way too short--stop making these great shirts so short, please.",3,0,0,General,Tops,Blouses +940,47,,Absolutely beautiful!! quality is worth it...i agree with other review and also sized down from large to medium for a more fitted look ....the color is gorgeous..lighter shade of brown...so thrilled material does not contain dreaded wool lol!,5,1,17,General,Tops,Sweaters +1094,35,,,4,1,0,General,Dresses,Dresses +940,33,,Beautiful stitching on the sweater. very soft and a nice length as well. like the soft brown color - will match many things in my wardrobe.,5,1,0,General,Tops,Sweaters +1145,46,Perfect for a tent,"This runs sooo big! i normally wear a large ( 145lb, 5'-4"", 36dd) but due to the limited sizing small or medium i chose small because it looked big on the model and this style of dress seem to run large. the size small that i ordered couldve fit two people easily together! i loved the pattern, color and the slip underneath actually fit well but i dont want to look like im wearing a tent, lol. also, the back is slightly longer than the front, something i couldnt see from the pictures online.",1,0,2,General,Trend,Trend +829,23,Adorable,"I am partial to maeve tops, i love the prints! i loved the ski print as soon as i spotted it. i think its such a darling shirt for winter. the material is light weight which is perfect for layering, i'm planning on wearing it with my fur vest as well as a knit vest i got at retailer last summer. i got a 4 (i go between 2 and 4) because i prefer some room in button down shirts and it fits as planned. i wanted to wait for it to go on sale but i was worried about selling out so i picked up on black f",5,1,1,General,Tops,Blouses +829,62,Weird maeve sizing/fit,"As another reviewer mentioned, maeve really needs to get their sizing under control and more consistent. i ordered a 4, and while it fits, i think a 6 would be more comfortable in the arms and shoulders (and i'm a thin build). the length on this was also a little weird to me...a little swingy/flared, but also short, making me feel like i'd always be playing with it while wearing. the orange print is absolutely adorable, i just wish the cut were more similar to past buttondowns that maeve has don",3,1,2,General,Tops,Blouses +829,41,,What a sweet shirt!! the ski pattern is adorable and they have a cute cat pattern that i've only seen so far in the store. the fit is small. i sized up from my normal 8 to a 10 but could have even gone to a 12 as there wasn't much difference between the 10 and the 12 except in length.,5,1,31,General,Tops,Blouses +1110,41,,"I really wanted to love this dress. the striped material was very nice and would go with so much plus the length was great. however, the buttons were a nightmare. the buttons are barely in the button holes and give very easily. the linen material is going to give even more with wear and the button holes are sure to loosen up even more. as i was trying the dress on and moving around two different buttons gave way on me. maybe the very slender will be able to wear this without buttons sliding out",3,0,18,General Petite,Dresses,Dresses +829,29,Excellent purchase,Bought with the 25% off retailer was running -- usually a little skeptical of maeve regarding size but the material of these shirts is excellent. bought the ski print and the red penguin print. perfect for low-key and where i work!,5,1,0,General,Tops,Blouses +829,40,Great prints,"I am submitting this review because there were size issues mentioned in some reviews. i generally wear a size 4 but often size up to a 6 because i'm a d cup. i purchased an 8 in this because of reviews saying it was small. trying it on , the 8 is fine but it does tent out a lot at the bottom. i think i may have been fine with the 6 because of that; it seems a little big from the back view.",4,1,0,General,Tops,Blouses +829,39,Beautiful top,"I usually wear a 4 in maeve, and purchased this is a 6 in the orange. i'm just over 5'7"", 34c, size 26/27 jeans. through the bust and arms the 6 fits great. i still found the front to be just a tad shorter than i am comfortable. it hangs well, though, if not a bit loose. definitely more billowy and boxy feeling in person. i think if it were slightly fitted through the waist, the length wouldn't be an issue. and it isn't even that much of an issue, but i did knock off a star for that reason. i bo",4,1,3,General,Tops,Blouses +940,70,,"High quality, soft, thick fabric that drapes well, keeps you warm, and figure flattering. i'm 5'4 and the length is perfect. the color is a great neutral that goes well with everything. love the design detail throughout. this cardigan does not have a button or tie closure so if you are between sizes, go with the smaller size for a tailored fit.",5,1,19,General,Tops,Sweaters +829,39,"Love it, typical nice comfy shirt","I tried this on in the sotre (in balck) as i was planning on ordering the orangey one. + +my usual is 0 or 2, sometimes petites. i thought the regular 0 was sjut fine and flattering. fabric is soft, adn every pattern they ahd in store was really nice (no orange-red though). was not overly snug anywhere, and i am a bit braod for my size. + +i deceided not to purchase only because i have done seriosu damage in the last month *multiple purcahses) and this was one of 2 i had to pick... if it goes on sal",5,1,0,General,Tops,Blouses +940,33,More beautiful in person,"This is the second sweater i've purchased recently that i overlooked online, but fell in love with once i tried it on. it is extremely flattering and the length is perfect. i will be wearing this a lot! i am 5'-7"", 138 lbs. and the medium fit perfectly.",5,1,3,General,Tops,Sweaters +829,56,My winter wonderland,"I seldom buy prints and almost never buy a traditional button front blouse but this shirt is my favorite purchase of the season. i chose the skier print as it was whimsical and subtle. rather than wear it buttoned and tucked i use it as a jacket over solid tees. i bought it a size larger for this reason. i like the layered look and the fabric is flowy and drapes nicely. i have been so pleased with every piece of ""maeve"" clothing i have purchased. once again thinking slightly outside my comfort-z",5,1,0,General,Tops,Blouses +829,46,"Size 16 cut inconsistently, too small","This top was a big disappointment. i ordered two of the grey motif with the print of the forest animals in size 16. neither of them fit well, but one was cut much smaller than the other. i've had this problem with all of the numerically-sized buttondown style of maeve tops. i don't understand why in size 14 & 16, this keeps happening. that's why i purchase two of each. usually one fits and the other doesn't. this time, unfortunately, neither worked. they both were too tight in the arms/shoulders",1,0,3,General,Tops,Blouses +829,47,Adorable cat pattern but strange fit,"Love the cute cat pattern and quality of the blouse. unfortunately the front was too short and the back didn't fall properly. also, i found the arms to be tight. i'm usually an xs and a size 2 in maeve blouses. i would've ordered the the 4 but it's sold out. definitely size up if possible.",4,1,0,General,Tops,Blouses +1094,47,,"Gorgeous, but so big. i got eh pxs and it's like a mumu. i wiill return",2,0,0,General,Dresses,Dresses +825,34,,"A bit wide in the torso, but the detail at the bottom of shirt makes up for it.",4,1,0,General,Tops,Blouses +1094,42,Lovely but runs very large!,"Tried this on in the store in a small (i'm a size 6 in most retailer dresses) and it was enormous. i'm short (5'2"") so i knew i'd need a petite size. ordered a petite small and the length is better - still a lot of fabric, but i think a petite xs would be too small if you are curvier up top (i'm a full 34d and the petite small is just slightly tight in the bust). definitely size down in this or you'll be swimming in it!",5,1,0,General,Dresses,Dresses +829,29,Great top,I loved this top so much i ended up getting it in three colors. it's comfortable and so easy to wear. it does run large though in my opinion. i normally wear a 6 in tops and i bought this is a 2.,5,1,1,General,Tops,Blouses +1145,35,Huge,"I like my dresses oversized but this one is ridiculous. it's seriously unflattering. i usually between a m & a l and i got a small and it's still massive. but the slip is tiny. + +it looks so cute in the picture. but not good in person.",2,0,2,General,Trend,Trend +829,26,,"I love this shirt! i got the one with the skiiers. for reference, i got a size 2 and i'm 5' 6"", 135 pounds. it's a bit tight around my shoulders, but not enough to make me want a size 4. if you have broader shoulders, a 4 would probably be good. the bottom flares out a little and is cut shorter than other button downs. it's too short to really tuck in comfortably. the print is absolutely perfect. the shirt is soft and very flattering. it's pricey but super cute!!",5,1,0,General,Tops,Blouses +1024,44,Awesome jumpsuit! many compliments!,"I purchased this online and absolutely love this:::: it can be dressed up or down. i received many compliments, its also so soft and very comfortable!!! a must have!!",5,1,2,General,Bottoms,Jeans +829,54,Great gift,"My kids gave me this blouse for christmas in my usual size 6. it was so tight through the chest, shoulders and arms. i ended up having to exchange it for at size 10! there was barely any difference in the size 8. unfortunately, i now need to have the sleeves shortened, but as this blouse is so cute, it's worth the effort.",4,1,3,General,Tops,Blouses +1024,38,Sooooo cute,"I had been looking for something like this to add to my summer wardrobe. fortunately for me i saw these in the retailer catalog and thought, how perfect, exactly what i've been searching for. they are a bit pricey, and crotch hangs a bit lower on me because i'm only 5'3, but it's not enough to make me send them back, i will have them altered if need be, they are to cute. + +i'm a size 4 in pants and ordered the 29, i wanted some wiggle room, i didn't realize the denim has stretch, i will keep the",5,1,1,General,Bottoms,Jeans +829,27,,"Must have - i splurged on the white style and red style; couldn't choose between the two. shape of shirt worked for me. the white style isn't too thin that you have to wear something underneath. costly for the quality of fabric, but i had a gift card, and it is retailer after all.",5,1,0,General,Tops,Blouses +904,27,,"Loved the look, quality was great, but didn't work for me. too busy and off-fitting. i did return.",3,0,0,General,Tops,Fine gauge +1024,41,,"These are worth the money! gorgeous fit, soft denim, and make my body look long and sleek (especially my bottom). i wear mine w a white tee underneath and plan to add booties for the fall but for now, platform clogs. fabulous.",5,1,3,General,Bottoms,Jeans +862,42,A little incongruous,"The fringe and fit were beautiful, but the lace with it (a little hard to see in the photo) seemed like an odd pairing -- just too much going on. returning . . . .",3,0,0,General Petite,Tops,Knits +829,32,Cat lovers dream blouse,"I bought this for my sister. it is perfect for your favorite cat lover, the print is adorable up close but not overwhelming to secretly hide your crazy cat lady intentions. i love this myself, the material is soft and it's a perfect flowy blouse for day to night.",5,1,0,General,Tops,Blouses +829,28,Short!,"I'm 5' 7 and bough a size 8 regular. this is so short that if you wear with jeans you can see a midriff. cute pattern, but i'm returning it.",2,0,0,General,Tops,Blouses +829,42,Cute but short,"Tiny collar and short bodice length. lovely fabric, soft and silky.",4,1,0,General,Tops,Blouses +829,60,Conversationalist buttondown,"The blouse was not flattering on me. it would be for someone with a straight slim body type, it falls mid hips and so it accentuates my hips making them look larger. it's flared so it cannot really be tucked in.",3,0,0,General,Tops,Blouses +306,48,"So cute, petite fits great","I think this romper is super stylish, kind of dvf-ish and it's as-pictured except it's more colorful in person; the vines are pink and pale aqua, and the flowers are deeper yellows with white & beige parts and pink dots in them. i see what other reviewers mean that the fabric is thin, it is, but i wouldn't say sheer. it's a lightweight woven fabric. the problem is there's no stretch, so when you reach up, the whole romper hikes up. i think it's true-to-size. i got my usual xspetite and it fits g",5,1,0,General Petite,Bottoms,Pants +829,37,"Adorable, fun blouse","I am writing this because my experience with this blouse differs from that of the other reviewers. compared to all my other maeve blouses, this top fits true to size/slightly larger than usual. it's wider/boxier than it appears online, and the arms are totally normal (in fact quite roomy) on me. all the other reviewers thus far have complained of very tight arms/bust and had to size up. i am having the opposite dilemma... given the extra width due to the cut of the blouse, and the fact that the",5,1,2,General,Tops,Blouses +829,37,,"Great shirt!! i bought the red penguins and its adorable. i am returning it however b/c the size i bought was too big, with that said it was my error not the brand. i think it runs true to size.",5,1,1,General,Tops,Blouses +1110,45,Loved the idea but ...,I saw this and was hoping to try it so i went to the closest retailer.. the design of this dress is fantastic but if you have curvy hips this is going to cause you problems. i am 32c-24-35... i have a definite curve between my waist and hips and it totally interfered with the line of the dress. i think if you are straighter between your waist and hips or you are long waisted then this lovely dress is for you. the waist line was simply too long. i needed the dress to flare out higher. the to,4,1,2,General Petite,Dresses,Dresses +829,49,"Cute top, but uneven fit.","I tried the black cat pattern in the store and it was cute, but the sleeves tend to run quite slim while the bodice is loose. so be aware you may want to size up if you ever have issues with tight sleeves.",4,1,1,General,Tops,Blouses +829,38,Perfect every day top for work or play,"I purchased the blue stripes and the black cat prints on sale and i'm very pleased. they each fit me a little differently as the black cats fit tighter through the arms, the stripes remain a bit looser throughout. no complaints here! i like the variation. i ordered a size small as i'm normally a size small (36c, 135 lbs, 5'2"").",5,1,0,General,Tops,Blouses +862,45,,"Love this top!!! my summer ""go to""! fits beautifully, cool & comfortable. the only reason i didn't give it 5 stars was that the back layer is a little thin--i hate that. just beef up the product, i'll spend the extra $$ to have a perfect shirt!",4,1,2,General Petite,Tops,Knits +829,29,Fun blouses with cute patterns,I did not find this blouse to be tight in the arms or chest. (i'm a 34a though so maybe that is why?) i also don't have a problem with it being too short in front. i took my usual size 0. i like the feel of the fabric and the prints are great. the only thing i slightly dislike is the flowy bottom of the shirt. i wish it was more fitted and that is why i took one star off. i got the cat print. the cat faces are white and on random faces there are pink ears or a pink nose.or a winking eye - just a,4,1,0,General,Tops,Blouses +940,55,Nice cardigan,This is a beautiful warm cardigan! just from the picture thought it was going to be longer. bought to wear with leggings but can't. i will wear it with jeans skirts and dresses. i am 5 feet 7.,4,1,2,General,Tops,Sweaters +327,66,Not for d cup,"I knew going in that it may not fit a d cup but the fabric is beautiful so i thought i'd give it a try. i wear a 36d and bought a large. it's got a clasp in the back so there's no adjustment on how it fits around which for me was too big. the triangles did not provide enough coverage, left too much side boob. the fabric was very pretty in person but thinner than i expected which also made it seem less sturdy. sadly, have to return and cancel the back-ordered bottoms. i would recommend to someone",4,1,8,Initmates,Intimate,Swim +940,39,Love it!!!,"My new favorite sweater for layering!! perfect color, length and fit. i am 5""4, 125 and purchased my usual small. if you're on the fence about this one i say try it on it's totally worth it!",5,1,2,General,Tops,Sweaters +327,36,Gorgeous prints! not a great fit for everyone.,"I ordered the romantic floral in s and xs to try on at home and just love the print! the fabric is so pretty and unique! others have mentioned how ""thin"" the fabric was but i thought it was pretty standard for a bikini/swimwear and had no complaints myself. there are removable cup liners so nothing can really show through the top. the sizing was tts and the xs fit me best. unfortunately this bikini will be returned because the fit is a little off. i love the thicker strap at the bottom of the ha",3,0,3,Initmates,Intimate,Swim +829,33,No problems w fit.,"So, i'm really surprised that reviewers said the fit was too small and too tight in the arms. i'm 5'7"" and 183lbs and my husband (god bless his soul) bought me an 8 for my birthday. i tried it on just to see and was pretty impressed i could button it across my chest and get it over my arms as those are common problem areas for me. regardless i need to exchange the shirt for a larger size because even though i got it on its not how is supposed to look. the shirt is loose around the midsection whi",5,1,2,General,Tops,Blouses +829,36,Best of maeve,"I love this brand! they produced a number of incredibly cute blouses in 2006-2010 and i've missed their quirky designs. this shirt does not run small. i am usually a 6 and have a little extra room in the chest area, even though i'm a 34dd. the arms are the perfect length as well which is nice as i have long arms. the only reason i did not give it five stars is that i wish it was a bit more fitted through the stomach area. its very billowy. i may take it to the tailor... so cute though! on a side",4,1,1,General,Tops,Blouses +1075,45,Okay...,It's okay for a coverup or beach dress and lounging around the house. it's comfy and i like the detail of the back. the front is very plain but okay. it's not too baggy and it's a straight cut. the detail in the back makes it a keeper for me but only as a casual dress too chill at home or quick errands to grocery store.,3,1,0,General,Dresses,Dresses +940,60,Classic sweater,"Beautiful angel of the north sweater! tts, lovely color and a staple classic.",5,1,1,General,Tops,Sweaters +829,60,Memories,"When i saw this shirt it bought back wonderful memories of ice skating on wheatley's pond as a child where i primarily grew up in the northeast. just loved it!! i tried my normal size 4 on but it fell off my shoulders and the cuffs fell mid hand so, i tried the size 2 and it fit perfectly. i see where many say it runs small and for full busted ladies it may but i am only 34b and 116 lbs and the size 2 worked fine. it is slightly blousey in the mid section but not overly so, the fabric and stitch",5,1,6,General,Tops,Blouses +829,35,Love maeve generally,This blouse ran so short in the body it has to go back. it would not cover my stomach untucked or tucked in. it's unfortunate i think it would be very beautiful and flowey.,3,0,5,General,Tops,Blouses +829,57,Its alright,I liked this top okay but i did not think it was worth full price. i thought it was only average.,2,0,1,General,Tops,Blouses +829,33,Baggy,I read the other reviews that said the shirt ran small but i found that it fit fine and i chose my regular size in maeve. the only issue is that it's baggy around the middle which is a little off and i found that it was a little too short. i gave it four stars because of the print. i chose the cat print and it's just so adorable. i might try to have the shirt taken in at the waist and then it would be perfect.,4,1,1,General,Tops,Blouses +825,38,Really interesting blouse; very happy w/ purchase,"Great blouse for curvy women. i'm always an xl in retailer tops, and even then sometimes the xls can be too tight to keep. however, i was so happily surprised with this blouse. the arms are usually an issue for me, but the arms in the blouse are perfect and loose in the bicep area. this blouse fits beautifully and is really high quality. the blouse lays nicely everywhere. i plan to wear it with a pair of gray pants so the lace cut out at the bottom shows up more. the lace is heavy duty and doesn't",5,1,0,General,Tops,Blouses +1024,52,Stylish and fun,"Soft stretch denim, 70's fun vibe . i so wanted to keep this , but for me the sizing was off. i ordered a size 27, my usual denim jeans size . the waist down fit perfectly but i couldn't zip the top portion. i fear that even if i order one size up which i believe would still be ok for the bottom half ; i still won't have enough room from my rib cage to the top of the bib section. i had a 3 inch gap in that area +. for full disclosure , i am a size 36b with broad shoulders and a broad back",3,1,4,General,Bottoms,Jeans +940,63,Like wearing a hug,"Great sweater, beautiful detail, warm and cozy. i will wear this well into spring because it's a nice weight for cool spring evenings. the knit pattern is beautiful and will be great for casual wear and dressy occasions as well.",5,1,1,General,Tops,Sweaters +538,50,Very soft,The straps are long but work ok for me. the material is very soft and the color (pink) is very nice. this is a tank you can wear under almost anything as the soft silky fabric will allow whatever you wear to glide right over it....no sticking!,5,1,1,Initmates,Intimate,Layering +829,36,,"This top is too short, so much so that tucking it in would be difficult. the designs are lovely, but the short length is putting this top back on the rack.",2,0,3,General,Tops,Blouses +306,33,"Cheap, thin fabric. too bad.",Wanted to love this colorful romper. the fabric was suuuuper thin and very cheap feeling and looking. no way would i wear this.,1,0,0,General Petite,Bottoms,Pants +829,45,Lots of room!,"I followed the reviews and bought a larger size in the blue stripe. i am usually a size 8 but ordered a 12 (ok, maybe overkill). i usually have problems with sleeves being too tight, but this was way too big and tent like. i will be hopefully exchanging it in store for a smaller size. stay tuned for an update!",3,0,0,General,Tops,Blouses +829,42,Cute shirt!,I bought this shirt in the black cat print. the material is very soft and it has a nice drape. i wear a size 32dd and worried that the size zero may be too small across the bust but it fits perfectly. i am 5 feet tall with a petite frame. the front of the shirt falls a few inches below my waistline and the back of the shirt is longer and provides plenty of coverage so it can be worn with skinny jeans. i can also wear this to work with a pair of slacks and it looks nice. i would actually love to,5,1,0,General,Tops,Blouses +829,36,Weird fit,"I am totally on the fence with this shirt. like the other reviewers, i sized up because my normal 14 was too tight in the chest (a common problem for me). the arms are strangely tight and i didn't get much more room in the bust with the 16. but then the bottom of the shirt tents away and hangs funny. this is obviously meant for those with a very small bust who are on the slender side. i love the pattern and material though, so i'm going to visit my trusty seamstress and see if she can place dart",3,1,14,General,Tops,Blouses +829,38,"Cute, quirky prints and comfortable!","I am somewhat of a perennial sale-only retailer purchaser (often even when a promo code, i don't buy full price! lol!). when i saw this top i decided it was worth it. i got the penguin print - my 2-year-old squealed when she saw me pull it out of the box! thanks, retailer, for your woodland-inspired prints that enamor my little one. + +maeve tends to run big, so i went with the 00. in my opinion, it fits true to size. i probably would have liked it just a little bigger, maybe the 0 would have been bes",5,1,1,General Petite,Tops,Blouses +1024,62,Favorite summer piece!,I love these so very much! by far my favorite addition to my wardrobe this summer. i find they are the first thing i grab because i feel wonderful in them. they fit perfect even with a large bust which i was afraid i would not be able to pull off....but very tastefully do. i highly recommend these and i plan to wear them into the fall with boots and long sleeve t-shirt. worth every penny. if your size is available grab them...you will be happy you did.,5,1,2,General,Bottoms,Jeans +829,66,,,5,1,0,General Petite,Tops,Blouses +829,60,Thumbs up for the downhill skier blouse,"I had my eye on the skier blouse for awhile before i gave in to the purchase. love it for fit and graphics - those happy little skiers! i think many reviewers here don't realize this blouse has the cut of a swing style. it's not meant to be tailored for tucking in. if you want to tuck it you'll be wearing a high-waisted skirt or pant, cute also ;-) +rayon fabric is a good choice for the style being heavier than cotton and having a better drape over the chest. the sloping longer hemline toward the",5,1,0,General Petite,Tops,Blouses +829,34,,Such a cute top! i got the black with tiny car faces on it. absolutely adore it.,5,1,0,General Petite,Tops,Blouses +1024,39,,,5,1,0,General,Bottoms,Jeans +1094,39,,"Beautiful bohemian maxi that feels like soft woven cotton/poly but it's unfortunately viscose. the print is as vibrant & detailed as expected from hemant & nandita. color contrast not as bright irl. body of dress flares out to an a-line after the arm holes and the hem is a shark bite to show off your footwear. there is no lining, but it doesn't seem see through. very relaxed fit that feels tts but if you prefer a slimmer cut and are of slender body habitus, size down. otherwise, if you are busty",5,1,3,General,Dresses,Dresses +829,52,"Very baggy, but adorable fabric pattern","The skiers, cats, and puffin patterns are adorable and i was very tempted to keep the shirts just for the patterns. unfortunately, the fit was awful. i am short and need to highlight my waist and this shirt did the opposite. the skier fabric is also see-through. the tenting issue could be fixed if you belt the shirt or tuck it in, but it is not very long. 100% rayon fabric is a bummer too. the shirt was snug at the bicep, but not as bad as i expected from the reviews. i sized up from an 8 to 10.",2,0,0,General Petite,Tops,Blouses +1110,35,So close,"Like another reviewer, i really wanted to love this dress. everything about this screamed perfection: the length, the cut, the stripes, but the fit was really off for me. i'm 5""10"" and am usually between a size 8 and 10. i tried the 8 and the body fit well but the chest and straps were entirely too large (i'm a 34d). so i tried the size 6 and chest and straps fit but the body pulled at the buttons. normally, i'm all for tailoring to fit, but chest would have needed to be reconstructed which isn'",4,1,3,General Petite,Dresses,Dresses +829,68,Best thing i've bought myself in a long time!,"I purchased the gray motif with the bright flower design. i have owned many blouses in my lifetime, but i must say this is one of the best fitting and most attractive of most any i have ever owned. it falls just right on my body and is smooth and luxurious with a silky feel. the cuffs fall on my wrists just perfectly. the color is just right for my fair skin and light hair. this was my first order from you and if this is any indication of the quality and fit i will receive i'll do a lot more ord",5,1,0,General Petite,Tops,Blouses +829,28,Ski jumpers,"I love the design on this top- so playful! i was super confused on what size to buy since all the reviews said different things, so i bought a size 0 and size 2. i'm usually a size 0 or xs is most clothes, and after trying both on, i kept the size 0. it's ever so slightly snug in the chest area, but the sleeves and shoulder areas fit perfectly. the size 2 was a little too wide and drapey and the sleeves were a little long.",4,1,0,General Petite,Tops,Blouses +829,43,Fun at work,Super comfortable..great layering piece or by itself...got lots of compliments at work.,5,1,0,General Petite,Tops,Blouses +829,39,Not cut like a traditional button down,"I ordered the red color way, and the bird print is very cute. that said, it is cut a-line and not like a regular button down. through i found it tts and good quality, it was shorter than i would have liked. this exaggerated the a-line shape. i didn't completely dislike it, but i didn't love it either.",3,0,1,General Petite,Tops,Blouses +327,37,Not good for girls with a big chest,I was very excited about this product. when i saw it the pattern was beautiful in the romantic floral and the bottom band looked like the bathing suit was a little longer so i felt it would be good for a large chest. when i received the package i knew instantly it ran small. i tried it on and it barely covered half of my chest. also the band at the bottom is actually very small and not what i expected. the print is just as lovely in person as it is online. i don't even know if sizing up will mak,2,0,14,Initmates,Intimate,Swim +829,61,Conversationalist button-down with cats,"I love this shirt, very comfortable and has a nice drape. i originally bought the size i normally wear but found it to be a little tight across my chest, so i returned for the next size up. + +very well made and not sheer so did not have to wear a tank underneath.",5,1,2,General Petite,Tops,Blouses +1110,38,,I'm so glad i tried this dress on to see how lovely it is. definitely a keeper!,5,1,0,General Petite,Dresses,Dresses +829,26,Nice shirt,"I really like this shirt. the design and colors are very good. i ordered the black one with cats, it was cool. however, in general i don't like high-low tops because they don't look flattering and you can see that it is asymmetrical from the front, makes it awkward. the shirt's design doesn't make the high-low aspect stand out much which is great. but it is a tad shorter than i would like in the front. it is also loose fitting. it is perfect for a slimmer frame, but on my curvy figure it just wa",4,1,0,General Petite,Tops,Blouses +1083,31,Cute fun dress,"Got tons of complements and can work for many seasons, just throw a cardigan for fall -runs a little bit and would like if it was touch longer but overall very happy with this find!",4,1,0,General,Dresses,Dresses +834,70,,,5,1,0,General Petite,Tops,Blouses +834,45,So cute!,"I am in love with this top. it is so feminine and cute. i wear it with skinny jeans and tall boots and feel so pretty!! i got the cream color. i wish there were more solid colors. i usually wear a medium, which is what i ordered, and i love how it fits. i like flowy tops so it is perfect. please make solid colors!!!",5,1,14,General Petite,Tops,Blouses +823,43,Awesome!,"What a wonderful find! yes, it runs big. .. and beautiful! love the quality, and design. very light and airy. this is great for me because i'm not short & i am busty & i love tunics. this item can be dressed up or played down with class. the lining is a perfect complement to the tunic as well and fits nice with the garment. i am usually to busy to write a review, but i felt obligated on this item. five stars!",5,1,9,General,Tops,Blouses +834,44,,I wasn't able to purchase this item because i just couldn't get the size right in the bust. the small puckered at the bust and i swam in the medium. bummed because the colors are so vibrant and pretty and the length and flow were great!,4,1,2,General Petite,Tops,Blouses +834,28,So silky soft and lightweight,Just got this shirt in the mail and i am absolutely in love! i paired it with jeans and brown boots and got so many compliments. the shirt is light and flowy. it very flattering for any body shape.,5,1,1,General Petite,Tops,Blouses +1099,38,,The dress runs big you should size down. i find the weight to be great for mild winter weather. the length was longer than i expected based on previous reviews.,5,1,3,General,Dresses,Dresses +823,45,Surprisingly beautiful,"The picture online does not do this picture justice. it is actually very pretty and delicate. i love the sequins. other reviewers were correct it is a little big, but a great tunic to dress up or down. i love it.",4,1,0,General,Tops,Blouses +823,33,Beautiful top,"The top itself is beautiful and colors are like pictured. my only issue was the size. i went for medium ( i'm usually m or l) and i'm 5'4"" so i can get away with regular and pettite. this top was way too long. looked like dress on me. i'm sending it back for exchange",4,1,0,General,Tops,Blouses +834,40,"Very nice, just as pictured","Very cute top, just as pictured, nice soft material, color is bright and true to size. wore it to work today on casual friday and received many compliments. highly recommend!",5,1,0,General Petite,Tops,Blouses +826,36,Love love,I love this top and it's so pretty in person. knew it would be full but was hoping it wouldn't be too big. it's perfect and looks good with jeans.,5,1,0,General Petite,Tops,Blouses +823,42,Sparkly fun,"This shirt runs big, it's very long. material is very pretty and it is lined. i am keeping it for that spontaneous need to wear something sparkly...dinner party maybe?",4,1,0,General,Tops,Blouses +823,35,Love this top,"This top is so much prettier on. you can dress it up or down. it does run a tad large. i'm 5'7"" and 145 lbs. i am usually in between a small and medium but usually a medium. i went for the small on this and i loved the fit of it. still pretty flowy and the medium would have been just too big. it is a tunic so it runs kind of long. a tiny bit too long for me but i will still wear it a lot.",4,1,0,General,Tops,Blouses +1086,62,Exactly as pictured,"This is a pretty tunic/dress that looks and fits exactly as shown. i imagine that it would be quite long on anyone under 5'5"" or so, since it falls maybe 2 inches above the knee on me at 5'7"". it's cute, and an easy throw on and go piece. the quality is even good. i decided to return it though because it felt a little plain for the price...maybe if it were more exciting colors or patterns? a slightly more fitted cut? i couldn't place my finger on the exact thing that wasn't clicking for me, but",4,1,2,General Petite,Dresses,Dresses +463,62,Cuteandcomfy,"Comfortable, cool-perfect summer tank. ordered one for my daughter(small), had to get myself one too(medium)-both tts. great for errand runs, around house, lounging, sleeping. seems better made than more expensive tops ordered as of late. good job retailer",5,1,0,Initmates,Intimate,Layering +1036,50,Why did you discontinue these?,I love these pants and wear them all the time. i wish they hadn't been discontinued,5,1,1,General,Bottoms,Jeans +872,33,Pretty,"I don't usually spend this much on a top but despite the high price, i really love the style. i like that it's made out of cotton and it can be worn down on the shoulders or left up. looks cute both ways. i ordered the xs which is usually my size. it fits perfectly. i imagine the s would have fit also. it hits just at the hips. i have a long torso so i would have liked it a bit longer, but it's not a deal breaker. my one splurge this summer.for reference 123 lbs, 5'5', 32 d.",5,1,2,General,Tops,Knits +463,67,Great aqua print,"Love the aqua print, which looks vaguely japanese to me. the quality is good, but unlike the other reviewer, i had to size up. my usual size x small was too tight. wish there were more colors.",5,1,2,Initmates,Intimate,Layering +984,66,Perfect white jean jacket,Love this white jean jacket! love the stretchy fit.,5,1,0,General Petite,Jackets,Jackets +834,32,,"I usually wear an xs and in this i wore a small because on the bottom of the sleeve, it was tight. it's a great piece and i get a lot of compliments.",4,1,0,General Petite,Tops,Blouses +834,46,"Xl fits great, color description is a bit off","I ordered the purple in size xl. the fit on me matches the model so i think it's true to size. i wouldn't say there's much purple to this print. i can't really find any. the areas where the blue/red overlap just look navy. the photos show how it really looks. it's a great mix of light brown, peach, white, red and different shades of blue. there will be variations because of pattern placement. i love this style--it's very comfortable.",5,1,2,General Petite,Tops,Blouses +823,53,Huge!!!,I was really looking forward to getting this top but what a disappointment. it is absolutely huge! i normally wear a large and i think a small would have fit me and a small never fits me. too bad cause it's such a pretty top. p.s. this has an attached camis (which i hate).,3,0,1,General,Tops,Blouses +826,35,So in-love!,This top is simply amazing! it's a statement top everyone should own! the green is so rich and full of life! and the floral pattern is just beautiful!! i got so many compliments on it and i felt like a million bucks! confident and trendy! love love looovvveee this top!,5,1,0,General Petite,Tops,Blouses +826,41,Absolutely beautiful,Got the green one,5,1,0,General Petite,Tops,Blouses +834,40,"Flirty, frilly and fun.","I love wearing this blouse with jeans and my cute sneakers. this blouse is frilly and flirty. it has three quarter sleeves that have one cute fabric covered buttons that match the button front closure. i am 5ft 1 inch, pear shaped, and my bust line is 36 c. i ordered an xs and small regular. i ended up with the small regular, and it fits nicely and i get loads of compliments when i wear it. it's made very well and the plaid pattern is random. i wear a cute boxy sweater over it when its chilly, a",5,1,2,General Petite,Tops,Blouses +834,52,Boxy - odd fit. bodice not as fitted as shown,After reading so many great reviews i was sure i was going to love it but i'm so glad i tried it on in the print at the store. the small was baggy in the bust - ti was not slightly fitted as shown in the picture. the extra small was to small in the chest and the seam came up too high. it was also very low cut. the shirt as shown has to be pinned behind the models back because there's no way it would look like that otherwise. if it would have been a little more tailored as shown in the photo i wo,3,0,2,General Petite,Tops,Blouses +363,20,Immediate favorite/ instant staple,"I stumbled upon this as a return to our store. at first, i was a little put off by the change in stitching to add support and shape. but once you put it on, it's perfect. it's very flattering and very comfortable. there are snaps in the crotch, but i wore it for a full day (8+ hours) and had no discomfort. if there were more colors, i'd buy them all lol.",5,1,0,Initmates,Intimate,Layering +834,36,Pretty design but poor quality,"Pretty design, but when i tried it on, the fabric was thin and delicate. i don't think it would last long with much wear. too bad. if the fabric were sturdier, it'd be great as the cut is flattering and i love the pockets.",2,0,0,General Petite,Tops,Blouses +823,26,Nice but complicated,The top was very nice and i liked the material. my problem was getting it on with the cami being attached to the top. it took me a while to figure it out. and for that reason alone i returned it.,3,0,0,General,Tops,Blouses +823,48,Huge,"I'm a tunic lover so i'll usually take a chance on them. i""m 5'4'' and usu a size 8 or medium. i ordered a small instead of a usual medium since other reviewers said it runs small. this hits about mid thigh which is a good tunic length but the overall fit is oversized. it's more like a swimsuit cover up rather than a nice blouse. that's really the best way to sum it up. oversized swimsuit cover-up like top. i'm going to exchange it for an xs but i think even that's too large.",3,0,1,General,Tops,Blouses +463,32,Perfect,"A lovely, soft material with a subtle aqua pattern. i'm very fussy about seams that fit my waist, and this one fit perfectly.",5,1,0,Initmates,Intimate,Layering +872,45,,,5,1,0,General,Tops,Knits +463,83,Beautiful basic for summer,"Classic tank with the perfect fit! +soft aqua perfect for summer. +fit is very true to size!",5,1,3,Initmates,Intimate,Layering +823,60,Love the design,Really like the loose flowiness. runs big went from med to small with better results. style is forgiving,4,1,0,General,Tops,Blouses +984,53,Thumbs way up!,"Loved this pilcro denim jacket. slight stretch, well-constructed white denim with yellow-gold stitching. it is short and very nice fitting-versatile! runs tts. i am 5'5"" 142 lbs 34d and small fit perfectly. i really like it and am not put off at all with thread color. actually gives it some character. mine did have a pen mark on the back but as usual retailer's great customer service provided a solution.",5,1,0,General Petite,Jackets,Jackets +823,35,Pretty top,Nice color and great work but runs little large.,3,1,0,General,Tops,Blouses +823,41,Gorgeous colors,"This is a really beautiful top. the colors are lovely a subtle. it is larger than i expected. i ordered a small which is my usual size and it is more of a baggy tunic. it still works because the material is so sheer, but does not fit me like the photo size down",4,1,0,General,Tops,Blouses +834,66,Loved the colors!,"I got the purple motif and loved the colors and the feel of the fabric. i am 5'6"" and 107lbs., 32d. the small was too big and there were no xs or xxs.",5,1,1,General Petite,Tops,Blouses +1086,49,"Love the style, wish it came in petite","I love the asymmetrical style of this dress - so unique. also the cotton blend is appreciated in a sea of polyester. the body of the dress hangs nicely and is flattering to the figure. but it didn't quite work for me due to the sleeves- they are narrow and not stretchy enough to be comfortable. sizing up may have helped, but because i am also short (5'1""), the sleeves were also too long for me. i wish it came in petite length. if so, i could probably just go up a size to make the sleeves more co",4,1,5,General Petite,Dresses,Dresses +834,57,Nice flow top,"I am 5'7"" and 36a cup. i tried on the small and it fits perfectly. i can see how if i was bustier it could be a problem. it looks better in person, dressy enough for the office but comfortable fabric and nicely shaped. i love this with jeans and can't wait to wear it to work!",5,1,0,General Petite,Tops,Blouses +834,32,Light and comfy,"Fun, flowy top! maybe be a little snug across the top for larger chested girls but this flares out into a light and airy dream to wear!",5,1,0,General Petite,Tops,Blouses +826,35,Too flowy,"Loved the open shoulders, but not how large and flowy the rest of it was. i could have worn it 9 months preggo ;)",2,0,0,General Petite,Tops,Blouses +463,33,,I love this shirt! it was a great price and very high quality. it has different material stitched in the inside,5,1,0,Initmates,Intimate,Layering +363,54,So disappointed,I wore this bodysuit once. it had a hole under the arm when i took it off,1,0,2,Initmates,Intimate,Layering +823,39,,,2,0,0,General,Tops,Blouses +1086,64,A pressing matter,"First of all, i am only 5'1"", so this adorable tunic does fit me like a dress. i am also pear shaped, and this dress is flattering to my shape. but my biggest issue, it that the dress came in very wrinkled, especially the ruffles. +i took the dress to my retailer store, and they were able to steam some of the wrinkles out, but not all of them. it seems that the fabric used for the ruffles is suppose to be a little crinkly. but it will most likely look worse after you sit. therefore, i am uncertain",4,1,1,General Petite,Dresses,Dresses +898,46,Comfortable and casual,This sweater is a nice addition to a fall or spring wardrobe. it must be layered as it is sheer. i read a review about snagging but i have not had this issue as of yet.,5,1,0,General,Tops,Fine gauge +363,29,Winter staple,This bodysuit will be a staple for me this winter. i wear it own its own and under just about everything. i just ordered another one!,5,1,1,Initmates,Intimate,Layering +1086,67,Very flattering!!,"This dress is extremely comfortable and flattering. it has a forgiving a line shape to it for women like me who are pear shaped. the top of the dress is made of a heavy type of cotton material and the bottom tiers are made of a silky material that hangs beautifully! even the tie closure in the back of the dress adds a lovely touch to the dress. i would recommend wearing it with leggings ( as shown with the model) or black tights. the fit is true to size. i am 5'6"" and the length is a liittle low",5,1,6,General Petite,Dresses,Dresses +834,49,Nice top,I purchased my normal size small. i loved the colors in the purple which are more blue and vibrant red to me. this top is a nice soft fabric. it will pair nice with denim jeans.,5,1,4,General Petite,Tops,Blouses +823,36,"Awesome, such a pretty top!","This shirt looked plain online, but when i see it in store, i thought it's so pretty! it is the over-sized style, when i tried it on, it's so flattering, even though it is over-sized but it doesn't make you look chunky at all! i got it while it was on sale with extra 25% off! i range from 2 to 6, xs, s for retailer sizes. i got a xs for this top.",5,1,0,General,Tops,Blouses +834,55,,,5,1,0,General Petite,Tops,Blouses +1083,37,,"Love this dress so much, i bought the checkered, and then had to go back for the black! it is so worth the price. i wear it with sandals in the warm weather, and a blazer with boots in the cooler weather. it is beautiful and so flattering.",5,1,0,General,Dresses,Dresses +826,50,Beautiful top!,This top looks even better in person! the green is a little brighter than the photo. this beautiful blouse is silk with a sold underlining. it is very full and has great flow and movement. super trendy with the open shoulders and a nice long sleeve for fall. it's really beautiful and perfect for any festive occasion!!,5,1,7,General Petite,Tops,Blouses +1099,32,Comfortable and warm,"Quality of this dress is excellent! i ordered it in blue and the color looks exactly as it does online and the fit is exactly as it looks on the model. i am 5'4"" , 120 lbs, with an athletic build and ordered a small.",5,1,0,General,Dresses,Dresses +872,24,,So beautiful! i got the xs and it fits tts! it goes with everything! perfect weekend addition!,5,1,8,General,Tops,Knits +823,57,Beautiful tunic,"This is beautiful tunic for the spring and summer. great paired with jeans or white denim. runs large and is a true tunic length. very pretty fabric and built in camisole, too. only downside is that it probably needs to be hand washed/line dried to keep it looking like new.",4,1,2,General,Tops,Blouses +826,43,,,4,1,0,General Petite,Tops,Blouses +834,34,,I loved the look and feel of this tunic. the fabric is soft. it has pockets!!! i felt like it ran a little small in the bust. i'm a 34d and rather than my usual size medium i took a large in this. i took off one star because when it was shipped to me the shoulder was coming apart. i will have a tailor fix it because i do plan to keep it.,4,1,0,General Petite,Tops,Blouses +834,60,Great top-but quality an issue,"I love(d) this top. it was my go to top even in the heat, the fabric is light and breathes. however, pulled it out of the washing mashing to find that the sleeve has shredded away from the body. it could not be repaired. i am so disappointed as i really loved everything about it.",2,0,0,General Petite,Tops,Blouses +872,39,Nice detail,This top turned out to be better than expected! i'm a large girl and the length is enough to cover my hips and the shirt it not tight at all. the embroidery details are lovely too. i bought this for a trip to italy this summer because it is cotton and because i consider it to be a classic piece being that it is black and white. one nice feature is this top does not have to be worn off shoulder. it looks just great with the sleeves up.,5,1,37,General,Tops,Knits +1099,35,,"I am on the fence about this dress. the fabric is gorgeous and soft. however, i was hoping the fit was more slouchy like pictures on the model. it was much shorter on me that pictured (for reference i am 5'7) and the turtle neck part of the dress is kind of high and tight. i wanted to love this so much, but it is a touch off from what i was hoping it was going to be.",3,0,26,General,Dresses,Dresses +823,39,Removing the liner,"I love the pattern and flowy design. i also like the peach liner but i will use that on other outfits i own and replace it with a slip that has a designed hem. this top is too long for me to wear as a top. so i will wear as a dress with the a longer slip. i'm hoping that the sequins will remain intact for the most part as the construction of everything is too delicate. bought the size s and i am 6'3"" 140# 39-28-35.",5,1,0,General,Tops,Blouses +1099,39,Soft,"Good job retailer for getting the color representation spot on! the blue is so vibrant and the cashmere knit is so soft and comfortable. the dress is oversized but a little too much so. i recommend sizing down to get that ideal slouchy drape, otherwise you may overwhelm your frame with too much fabric.",5,1,0,General,Dresses,Dresses +1022,32,Amazing fit!,"This is my third pair of ag primas - i love them! the higher rise is nice to keep smooth lines, they're made of such soft material that moves with you rather than restricts you, and the cut of the legs is skinny without being skin tight. absolutely my favorites jeans - retailer, sell more washes and i'll buy 'em!! :)",5,1,1,General,Bottoms,Jeans +823,52,Light & airy,Beautiful pale colors. there is too much room under the arms and at the sides but it will be an easy alteration. plan on wearing with skinny jeans.,4,1,0,General,Tops,Blouses +834,58,Lovely,I bought this in black and the checkered pattern. love both. very floaty and feminine. fits true to size.,5,1,1,General Petite,Tops,Blouses +834,36,Runs very large,"This top is really cute, but it runs very large. i am 5'2 100 lbs and the xs petite looked like it was 3 sizes too big on. the design is really cute, but recommend ordering down at least one size.",4,1,2,General Petite,Tops,Blouses +1036,54,Really streeeeetches out so size down,"These are my first pilcro. love the tuxedo seam and notch at the side, and the noni green is a verstaile, yet unusual green. thicker soft cotton with just 3% spandex. +. +ordered sizes 25, 26 and 27 regular which are a perfect full length for me. i'm 5'2"", currently 33-25-37, longwaisted and pear shape. i wear a 26 in ag stevie cords which are snug first, then stretch to a perfect size and often a size 27 in their less stretchy stevie jeans. +. +in these the 27 were so big at the waist that they sli",4,1,0,General,Bottoms,Jeans +823,35,Didnt love it,"While there is nothing wrong with this top, it didn't really have an retailer feel. it looked more like something from a dept store, maybe a boutique. i got on sale but sending back bc i just don't like it that much, especially next to my pale skin. i could see it looking much better in someone with darker skin tone. i'm usually a 8/10 med. small in this top fit well.",3,0,2,General,Tops,Blouses +823,35,Flowy blouse with a little sparkle,"I ordered this blouse after it went on sale - i'm not typically the blouse-y type, but i thought i'd try it. for me, and i'm a pretty consistent small across brands, it was quite flowing and a little long, but that may be what someone wants. it was a little light in color to look good on me, but i think this would be really cute with dark skinny jeans - easy to dress up or down :)",4,1,0,General,Tops,Blouses +912,35,Disappointed,"I love finding unique retailer pieces that don't require dry cleaning. i was excited to find this shirt, but it's not flattering. the bottom hem is a little tight, which makes the rest of the shirt look bulky. perhaps it would work better on people who have narrow hips. i also didn't like the pink tones when i saw the colors in person. i'll be returning this item.",2,0,1,General,Tops,Fine gauge +940,33,Everything i'd hoped.,"When i saw this online, i knew i'd have to order it fast--it's just gorgeous. i got it in the mail today and couldn't be happier! i'm usually xs in angel of the north sweaters and this was no exception- it fit great. colors are as pictured.",5,1,7,General,Tops,Sweaters +865,45,Finished touch in one piece,"This top is so darling, the different textures are so elegant that you really don't even need to accessorize. it has a very flattering cut and a must for any figure.",5,1,1,General,Tops,Knits +1110,46,Mango beauty,"A mango beauty that resonates the color of blossoms in bloom. comfortable, effortless, and charming. i wear a size small in retailer dresses and this one fit true to size for me. tried the xs since reviews mentioned it ran large, but too tight across my average chest. looks great with denim jacket and red suede strappy sandals. also worn with a belt to accentuate waist.",5,1,0,General,Dresses,Dresses +927,42,Worth the regular price!,"Amazingly soft, thin and super warm! this a classy staple with an amazing swing fit and worth every penny!",5,1,0,General,Tops,Sweaters +927,68,"Cozy, great for autumn & mild winter, nice shape","I'm heavier than i'd like to be and this fits. the rear emphasizes mine. my only compliant is that the faux fir collar is buttoned on in six places, leaving gaps that my fingers catch in, that can hook on things, and that require me to adjust it to be sure i've got it lying flat when i put it on. the faux fir is so realistic a veterinarian asked me what animal it was from! lovely color, not starkly black but dark. it's not at all a winter coat weight, but rather a moderately warm non-bulky sweat",4,1,2,General,Tops,Sweaters +1110,59,Gorgeous color!,"Beautiful dress, can be dressed up or down. runs just a bit large, but if i had sized down it would have been too tight in the bust (38d). i normally wear a medium and the medium was perfect in the chest. the color is absolutely gorgeous and i love the length - i don't like dresses that show my knees. my only complaint is that a dress that is this expensive even on sale should have better quality control. mine made it to me without a button at the the back. not a huge deal, but it won't be easy",4,1,0,General,Dresses,Dresses +878,51,Great tee for summer days ahead,"There's no doubt that this tee is sheer. i found that a nude bra is sufficient in overcoming the issue. the fit is true to size, with just enough room for drape without being too oversized. the beachy theme will be perfect come warm weather!",5,1,4,General,Tops,Knits +927,20,Will get lots of use,"I was attracted to this sweater because of the pretty fur collar and the color, which is a gray-black that seems to go with everything. the cut is a-line so it drapes over what you are wearing underneath. since the fabric is soft it doesn't add a lot of bulk and keeps the fit flattering even though it is not fitted. i have worn it many times since purchasing because the color and fit make it easy to throw on over your outfit for some additional warmth. personally i found that it runs very large.",4,1,3,General,Tops,Sweaters +1110,49,Runs large,"Fyi to help with sizing i am 5'7"" weigh 134 lb and like things loose fitting but the medium was too big and sack like. dress is cute and the color is true to photo.",3,1,1,General,Dresses,Dresses +927,42,Pricey but nice,"I like the top without the fake fur collar. when the collar is removed the neckline's shape is really nice. the collar seems cheap. i thought the sweater ran true to size. i'm 5'7"" 115 lbs. a small was a good fit although higher armholes would have made the whole thing fit better through the rib cage. it was loose there, but necessary looseness for layering anything underneath.",5,1,0,General,Tops,Sweaters +927,54,Go-to sweater,"Wonderful fabric, drapes nicely from waist= flattering, use for air travel as not too heavy in weght. beautiful charcoal grey goes with all colors. nice addition to tight, patterned pants & boots. dress up or casual",5,1,1,General,Tops,Sweaters +1081,72,A fun dress,"This will be a 3 season dress for me.. its well made, comfy and flattering . the suede skirt is risky i know .. but i'll be sure to put the napkin in my lap!",5,1,2,General,Dresses,Dresses +1110,46,Nice summer dress,"I ordered a size xl in the mango. the fit on me matches the model for the most part so i think it's true-to-size. it looks like it's intended to have a loose, flowier fit throughout the dress. the only confusing part to me is the model is listed as being 5' 9"" and i'm under 5' 6"" yet the length is the same. it fits me at knee-length too. i thought it would hit a little longer based on the model's info for the photos and getting the regular sizing. the one thing i wish was different is to have it",5,1,0,General,Dresses,Dresses +1110,58,Different fabrics make fit off,"I so wanted to love this dress! the color and fabrics are beautiful and scream summer! i was so disappointed by the fit through. the different fabrics are such a cool concept but it wasn't executed that well. one material is pleated like an accordion so wants to ""constrict"", the next material is crocheted so is a little more stiff and the third material is pretty average. on the bottom where it's flowy it doesn't make that much of a difference, but on top and in the middle it gives this weird ""i",3,0,6,General,Dresses,Dresses +1110,32,,"I get a lot of compliments on this dress, it's bright and cheerful for sure! it runs maybe a bit large but is a great summer dress!",5,1,0,General,Dresses,Dresses +1111,31,"Pretty, but not for boobs.","I ordered the petite in my size, since i'm well petite, but curvy. i recommend this dress if you don't have a lot of boobage. unfortunately, for me the waist line came up high an inch below my bra line and made the dress poof out at my hips in an unflattering way. its so pretty and i was really excited about ordering it. it fits, but just is not flattering because of my boobs. this is always my problem though with dresses.",3,1,0,General,Dresses,Dresses +1021,44,Gorgeous skirt,"This skirt is absolutely beautiful. the design and organza are so feminine, and i love the length. it flows beautifully and it isn't stiff or anything, but it does hold its shape well. i ordered it through the store, and the wrinkles came out easily after it hung for several days. i think it would be easy to snag the material, so i will be really careful when i'm wearing it. the zipper is a little hard to pull all the way to the top of the skirt, and i worry a little about the hook and eye closu",5,1,2,General,Bottoms,Skirts +1110,56,Beautiful!!,"Love this dress!! the vibrant color and lace details are just beautiful. can be dressed up or down. the only concern i have is that the straps are thin and delicate, but i'll just have to be careful when hanging it up.",5,1,0,General,Dresses,Dresses +1110,27,This color is everything!,"This yellow/mango color is so beautiful in person. i actually don't have the best skin tone for shades of yellow, but i couldn't resist trying this one on & it turned out to be perfect! the silhouette is very feminine, especially around the neckline & shoulders. there is a lot of fabric, but i actually appreciate that the dress is substantive. finally, the nicest thing is that the dress can easily be dressed up or dressed down depending on how you accessorize it. looking forward to summer!",5,1,0,General,Dresses,Dresses +927,71,Such a cute and versatile piece,I love this sweater coat;! it's so nice and fits well. would look great with jeans or a skirt. the collar is adorable! have already worn it and received compliments! i love retailer :)!!,5,1,0,General,Tops,Sweaters +1110,45,"Cute, but ""off"" fit","I drooled over this dress online, so couldn't pass up trying it on at my local retailer store. while i loved the unique color in person, & the drape of the skirt (good quality, fully lines), i was so disappointed with the top of this dress! it's very tight, ill-fitting, & just plain...weird. i can't imagine the fit of the top being flattering on anyone, regardless of chest size. it's a shame, because otherwise, the dress is adorable!",2,0,0,General,Dresses,Dresses +964,31,Nice material with some stretch,"I found this to fit really well and i've got a chest, and the hourglass to go with it. the stretch really helps it to be comfortable too. i reckon it's pretty versatile too.",5,1,2,General,Jackets,Jackets +927,54,This sweater is beautiful,This sweater is much more beautiful in person. the quality is very good and the fur is nice too!! i am 5'8 inches and 155 lbs and the medium fit me perfect.,5,1,0,General,Tops,Sweaters +1110,35,One big flaw,"This dress is cuter is person than online, but it has one huge issue - there is a teeny tiny button at the neck that is held on by a thread and requires fingers the size of a two year old to get open. it fell off the minute i tried to undo it. i can't believe these other reviewers didn't have the same problem. or, maybe they put a snap there instead. too bad.",2,0,0,General,Dresses,Dresses +927,49,Great holiday sweater,This sweater is very nicely made...i got a lot of compliments the first time i wore it. it's a light sweater and looks great with jeans! love it,5,1,0,General,Tops,Sweaters +927,53,My favorite piece this season,"This sweater is lovely! i have worn it every other day since i got it. it is soft and warm and elevates everything that you wear it with. i have gotten compliments every time i've worn it. my daughter, who rarely likes the style of clothes i wear, said i looked like a winter princess in this! it is so flattering and comfortable---a winning combination!",5,1,1,General,Tops,Sweaters +912,56,"Fit was small at waist, large up top! odd spots!","I was so disappointed in this top. the fabric blend was too thick for summer. the cut was wide across the shoulders, and very narrow and short through the waist. add in the odd splashes in the print, and it spelled disaster. + +size: i tend to run between small and xs. i ordered xs. i'm 5'5"" tall, 135 lbs, 34d, 35-29-37, narrow across shoulders, with short arms and long torso. + +fit: the cut was so wide across my narrow shoulders that it looked baggy and felt odd. however, the sleeves didn't sl",4,0,12,General,Tops,Fine gauge +878,46,Cozy,"Comfortable but if you put in the dryer, even on low it will shrink a little so beware",5,1,0,General,Tops,Knits +964,28,Too large and too small at the same time,"I was leery of purchasing this blazer online without any reviews to read...and now i know better. the color and fabric are nice and what you would expect from the photos. the sleeves, however, ran small compared to the body. the shoulders also pulled and felt narrow compared to the torso. the body the opposite...too large and not flattering on an hourglass figure...no darts, no fitted places, nothing making it tailored to fit. open it hung wide with an unflattering silhouette. buttoned, it sprea",2,0,12,General,Jackets,Jackets +1110,48,Happy yellow!,"This is a unique color, and a lovely dress. i have the yellow, and i didn't find that it ran large. it definitely has a loose, flowing fit, and you can wear with or without a belt for different looks. the pleated fabric near the waist does fit differently than the other fabrics, but i don't think it looks odd. you have several pictures of people wearing them, and you can see that it looks amazing on everyone!",5,1,0,General,Dresses,Dresses +927,52,In love with this sweater coat!,I just received this in the mail today and haven't taken it off since! i feel like i should be in a romantic movie with a cute black dress under it. can definitely see myself getting a lot of use out of it. can not wait to wear it for the holidays!,5,1,2,General,Tops,Sweaters +1110,82,Great dress for spring,"Great dress that can be dressed up for work day or even dressed down for a nice weekend day. +i have it in black but thinking of buying in the yellow/orange color too.",5,1,1,General,Dresses,Dresses +1110,53,I can't believe that this has so many good reviews,"I love the color of this dress. it is not flattering, even though it should be. the weird panels of different materials makes it hang super funky. the lace is heavy but the silky panels aren't. so not flattering, it's just odd. and the fit is super huge, you are swimming in it in addition to a poor body drape. it could have been so cute, but was executed so poorly.",2,0,0,General,Dresses,Dresses +940,58,"Nice style, but not on me.","I received the vest and it was pretty much as pictured however, the color isn't quite yellow; it has a little green to it, kind of chartreuse. + +i returned the item because it didn't look as good on me as it did on the pictured model. this would probably look better on someone taller than me.",3,1,2,General,Tops,Sweaters +865,31,,"Beautiful and classy- i love this! i'm 5'8""/125lbs/34b and my usual xs works great (could probably also have worn a s). i was a little worried it'd be scratchy and/or too structured, but it's soft and flattering. photos are accurate. would definitely recommend!",5,1,0,General,Tops,Knits +1110,52,"Very pretty, lovely color, nice fabrics","This dress is really beautiful, cheerful, the color lovely, the fabric soft and beautiful. i wish it had worked with my body because i really liked the style, fabric, and color. i am 5' 5"" with long legs and a shorter upper body, so i needed to buy this dress in a petite size, but they were sold out of petite smalls and mediums. so i tried the small in a regular size. the armscye (depth of arm hole) is so low that my breast was completely revealed! i thought about shortening the straps entirely",4,1,0,General,Dresses,Dresses +1110,31,Sweetest summer dress!,"I'll admit that i often believe you pay for the design aesthetics at retailer, but not necessarily the quality. however, this dress happily has both! the fabrication and lacework on this dress are beautifully made and the price tag fits. i do think the sizing is off; i'm 5'5"", 137, 34b and the medium (my usual size) was huge, small was still gaping under the arms, and xs fit perfectly. i haven't worn an xs in anything since middle school, ha! the banding at the bust does make it tight, so i can we",5,1,1,General,Dresses,Dresses +1110,36,,"I recently purchased this dress in the yellow, which is not advertised online, but glad i saw at the store because the color is vibrant but not too loud and really compliments my olive skin. the dress ran a little on the larger side so i had to size down. also, you will have to either wear a strapless bra or go without because you cant hide bra straps as this is more of a halter look. i'm 5'9"" and the length was perfect for me, will be able to wear with heels or flats.",5,1,23,General,Dresses,Dresses +927,40,Better in person than the photos,"Like another reviewer, i was in the store looking for the vest with the faux fur collar and tie-waist. it turned out to be too long/bulky for my small frame, or there wasn't an xs (can't recall), but i saw this and it's just the thing i didn't even know i needed. i'm fairly thin and petite at 5'4 and drown in most cardigans. this is just long enough. it was a subtle a-line shape. fabric is not thick but is substantial enough that it's still warm. i also like that it's hand washable, nice to have",4,1,1,General,Tops,Sweaters +927,59,Super cute sweater coat.,This is a go with everything throw on sweater coat that is very soft and flattering on. the fit is true to size for a swing coat. being a heather black helps with the no show of lint. i will wear this no doubt for years to come. thanks retailer.!!!,5,1,1,General,Tops,Sweaters +940,35,Beautiful but fuzzy,"This is a lovely cardigan--especially over dresses with leggings, over-the-knee socks, and boots. i was so ecstatic to get it at the black friday price. the description says its white but it's more like a cream. it was for this reason that i initially reconsidered the purchase. i was hoping for more of an off-white or winter white as it appears on the model. except, it looked so great over dresses and suitable for the southern california winter. i didn't care for the wrap belt. it just looked li",4,0,13,General,Tops,Sweaters +1110,35,"Beautiful golden yellow, size down","I wanted this dress in yellow from the moment i first saw it on instagram. i waited for it to be available online and once it was i ordered it. i am usually a size medium but sized down to a small petitie (5'5"") -- and the fit is off. i am a 34b so its too roomy in the chest. because i love everything else about this dress i am going to re-order in an xs petite but that will be two sizes down for me. not sure if it will fit. length was good. looks great with a dark denim jacket . the dress is li",5,1,12,General,Dresses,Dresses +1021,19,Love,"This skirt is a must have!! it is very classy, and the pockets are perfect for holding lipstick for a little refresher throughout the night. it is high quality and definitely worth the price. i paired this skirt with a more casual black top and some pearls for a fancy banquet dinner, and got a lot of compliments. comfortable and classy.",5,1,1,General,Bottoms,Skirts +1110,55,Special piece,This is such a pretty dress. it will look beautiful in the summer with a tan and lace up sandals for a very effortless look. fits very fitted in the top and loose throughout yet still slimming. i am petite 5'2 about 105 pounds and for reference i went with the xxsp. it looks expensive and well made and the yellow color is stunning and cheery. the yellow will look beautiful on darker skin tones as well as lighter skin tones who have a warm undertone. if you are on the fence order it and you won't,5,1,19,General,Dresses,Dresses +1110,38,Elegant sundress,"I'm 5'4 with an hourglass shape. i love this dress. it drapes nicely, the material won't be hot for summer and the color is perfect for my olive complexion.",5,1,1,General,Dresses,Dresses +940,42,Confused by the gold,"This is so soft and has wonderful drape. i want to love it. it is not gold. not in my opinion anyway. the ""gold"" parts look like muted lime green to me. it's true to size and looks similar to the picture otherwise. i just don't know about that color- especially on me.",4,1,4,General,Tops,Sweaters +862,35,Great pattern,"I love this shirt. the quality is great, and very soft. the length seems a bit short, i will only wear it tucked in to a higher waisted skirt. the arm holes are tight.",4,1,0,General,Tops,Knits +927,39,Don't detach the collar,"Don't detach the collar unless you like getting frustrated. i made the mistake of taking it off just to see what it looks like without it (cute) but reattaching was the biggest pain! i have pretty nimble fingers but stretching the little loops around the little buttons tested my patience to the limit. so other than that--buy this sweater if you get a chance. it's stylish, flattering, soft, versatile, etc, etc...",5,1,0,General,Tops,Sweaters +1110,39,Don't size down if you're busty,"I took everyone's advice and purchased a size small instead if medium. i wish i had gotten my usual size as the neckline and bodice is very tight. i'm top heavy with a wide rib cage and 36dd's. other than that, the skirt of this mango hued beauty is large loose and flowing which i can see why people suggest sizing down. i think my fit problem would be solved if petite was available.",4,1,0,General,Dresses,Dresses +1081,46,Dress up or down,"Love the dress, a little cheaply made but overall, it fits nice and will be great next fall. it will show tummy shape so if you do not have a flat tummy, this may not be the dress for you.",4,1,2,General,Dresses,Dresses +1110,46,Dress me up or dress me down !,"I have a gala to go to wear i am a board member. i had been eyeing this dress online and tried it in store! lurve! i got the black one which is a black lace over a sheer cotton nude, i also got the regular when i am petite as it hit longer for a black tie event. i have a large bust at 5'2"" size d, but small and short torso and the large just hugged the girls just right. i love the it can be worn fancy with block heels to a gala or wit ha jean jacket or espradilles for a casual summer night. this",5,1,0,General,Dresses,Dresses +927,53,So cute!!,This sweater coat is so cute!! i agree with the other reviews it does run a little big. i always wear s tops from retailer....was a little hesitant to order this in a s since i would be wearing it over things....so glad i did the small is perfect so i would say it runs a little large. i do think it is is a little over priced but i did get it at 20% off and it was a treat for myself!,5,1,1,General,Tops,Sweaters +1110,24,Love this,"This dress is gorgeous on the hanger and even more gorgeous on. definitely runs big though, so sizing down is probably best.",5,1,0,General,Dresses,Dresses +1110,58,Runs big!,"This dress is really cute, but it runs quite large. order a size smaller! i got a lot of compliments on it at the party i wore it to. it can be dressed up or can be casual with a pair of sandles.",4,1,26,General,Dresses,Dresses +1070,38,Amazing pants/leggings,"As stated in my review title, they're amazing! they're incredibly well made, have just the right amount of stretch, and are so flattering. i think the boot cut makes them look like pants rather than leggings. they can definitively be worn to work, or at least where i work, where the dress code is business casual. my only issue is the length, which being at 5'3 isn't surprising. they're about 3 inches too long. i'm a size 8-10 and got the large. i couldn't recommend these enough",5,1,0,General,Bottoms,Pants +945,69,Amazing sweater!,"I don't understand the negative review +on this sweater. it is nothing short of stunning. the quality and design are absolutely beautiful! and i love the lined pockets! i can honestly say i don't think i'll ever part with it - this is a sweater you hang onto forever. i will say it runs a bit large. i ordered the xs/sm and if i didn't know better i would think its m/l. either way if you can you get your hands on one in store or a return online, do it! it is worth every penny, especially for the s",5,1,0,General Petite,Tops,Sweaters +945,69,Gorgeous! sooo soft!,"Ignore the nutty negative review because this sweater is beautiful and really looks like a hand knit sweater. the quality is excellent, with two side pockets that are lined. it's really soft and so comfy and thick. just perfect for my southern ca evenings all year long. +so comfy you can wear it as a robe! +looks just like the photo; i got the m/l and it fits like an extra large, which i like in a bulky cardi. +super gorgeous! what a steal at the sale price.",5,1,2,General Petite,Tops,Sweaters +868,46,So soft!,"Retailer has great designs but sometimes they use cheap fabrics and are not quality made. this top is quality made and super soft. its a little thicker than a normal cotton t-shirt but thinner than a sweatshirt. i normally wear medium (34dd, 135-140 lbs, 5'4"") and this was tts. i got the blue and its a little bit darker in person. one big plus imo is that you can put it in washer and dryer, no need to line dry! i am going to buy the natural colored stripes one too. also, i bought the normal size.",5,1,12,General,Tops,Knits +993,39,Pretty and comfortable,"This skirt is very stretchy and a nice soft thickish fabric. the pattern is also very cute. i ordered the xs p and it fit just right, length was pretty much as pictured, just at or slightly below the knee. the opening in front was also as shown, a bit wide, not a slit but shaped like a thin arc. overall, i still recommended it, it rusn pretty true to size (115 lbs, 26.5 in waist)",4,1,2,General,Bottoms,Skirts +1068,62,,I love the great variety of fabrics and textures used in these joggers - you will also!,5,1,1,General,Bottoms,Pants +868,37,Nice top but runs large,"Quality is excellent. i agree with another reviewer that the top runs large. i am usually a medium, but i was swimming in it. i live in alaska and would not know how to return it so i am just keeping it and wearing it on those cool lazy days. i'm sure it would still look classy because of the design.",4,1,0,General,Tops,Knits +1068,61,Not good for curvy girls,"I ordered these hoping they would look like the model - but they didn't. i am small but curvy. it hugged too tightly in the hips so sadly, these pants are going back.",3,0,2,General,Bottoms,Pants +1025,28,Great fit,"Love these pants, i am 5'2 and these fit in length nicely!",5,1,1,General Petite,Bottoms,Jeans +836,39,,The shirt was cute. i'm very petite and it ran very wide so didn't fit me well.,3,1,1,General Petite,Tops,Blouses +1068,47,Love these pants,"I have a couple of pair of hei hei pants from last summer that i love and was so happy to see these. i am curvy (5'8"" size 8) and got these in a 30 and they fit perfectly in the hips and no gap at the waist. i love them so much that i bought a second pair. the only thing that could make them better is if they had a bit of stretch.",5,1,0,General,Bottoms,Pants +562,32,Very nice skirt but too small,I would have liked it but it was too small for me.,4,1,1,General,Trend,Trend +868,61,,,5,1,0,General,Tops,Knits +1025,38,Fantastic fit and fabric,"I went to the store to buy the transcend verdugo ankle in blue. however,i left with it in blue and black. the black is perfect. absolutely amazing fabric that shapes your behind, and no ones is more imperfect than mine. i cant say enough about these except paige rocks! i'm a fan!!",5,1,5,General Petite,Bottoms,Jeans +945,40,,"What a let down. the sweater i received in no way resembles the product pictured. based on the original price point, i envisioned a beautiful hand-knitted sweater made of high grade yarn/ wool that i could use for travel. instead, i received something that is grossly oversized for xs/s, made out of weird crafting yarn and looks like an ugly holiday sweater. my kids could make something better than this on their toy loom. not the quality i expected from retailer. back it goes.",1,0,17,General Petite,Tops,Sweaters +831,60,Classic flannel,"This is a simplistic beauty. the colors are lovely and as pictured. i believe it is tts but if your small busted you could probably go down a size. i personally stayed with my small and i lke the flow of it. the flannel has a nice weight to it so you can wear this fall, winter and early spring if you live in a cooler climate.",5,1,1,General,Tops,Blouses +836,38,"Interesting blouse, some limitations","This blouse is basically a rectangular piece of fabric that is folded over and sewn up the sides. the side seams are about 2-3 inches in from the edge of the fabric. the neck opening is finished nicely. the fabric has a nice drape to it, but the design on the front isn't as crisp and clear as i thought it would be; the design is a bit fuzzy. so i wish the picture on the front were clearer. i always wear an xl in retailer tops, but the size l in this fit nicely in the bust except is too snug at the",4,1,9,General,Tops,Blouses +868,72,"All-around quality, but big","This is a top-flight notch: an attractive design, nicely made. for me, the fabric is rather heavy for summer wear, but that won't prevent me from keeping it for cooler days. my one complaint is the sizing. i weigh a bottom-heavy 146 lbs. and hoped i'd get away with a medium. but it swims on me...not ""a bit too large,"" but ""way too large."" i'm returning it and hoping that a small will be small enough.",4,1,4,General,Tops,Knits +831,34,,"This top is great and perfect for fall/winter. i've gotten a lot of wear out of this so far...great with jeans and sneakers for a casual look, or dress it up with black jeans and boots. great layering piece as well. the fabric is soft and comfortable. the fit is nice and relaxed, but tailored on the sides to give you some shape. the colors are beautiful.great buy, i highly recommend!",5,1,2,General,Tops,Blouses +675,49,,I was not going to purchase this jacket thinking it was too pricely but i am glad that i did. true to size and made with great craftsmanship. it looks very delicate but made strong. very pretty .... true too picture. it works out perfect for after yoga!,5,1,2,Initmates,Intimate,Lounge +1068,34,,"Love these pants, they do run small in the hip area and are not stretchy at all. so beware, if you are curvy, you might want to size up. great quality and style overall.",4,1,2,General,Bottoms,Pants +836,50,Pretty but sleeves make it seem large.,I lived the front and back designs but didn't like the fit.,3,0,1,General,Tops,Blouses +562,35,,"This is a beautiful and versatile skirt. i love the layered detail, length, and flattering cut. + +the fabric is a 80% cotton/20% linen blend. it's a thick weave with tiny nubs here and there. the skirt was made in turkey. + +i usually wear a size 4 in retailer skirts, but i sized down to a 2 in this skirt. the size 2 fit at my natural waist and looked as pictured on the model, whereas the 4 looked bulkier on me,",5,1,10,General,Trend,Trend +562,25,Not as it seems,"I thought this would be a cute business attire skirt. i hate to say it, but i felt like it flared out as if i were amelia bedelia or some whacky children's book character and not retailer. the fabric made it look bulky. i sadly had to return it.",1,0,5,General,Trend,Trend +875,42,Scratchy,"Love the design of the fabric. i actually bought these in both colors. i gave only 1 star due stitching on the fabric, it's very scratchy.",1,0,0,General,Tops,Knits +1095,45,Beautiful dress!,"Beautiful dress! it looks fresh, feminine and the quality of the fabric is very nice.",5,1,0,General Petite,Dresses,Dresses +875,24,Perfect lightweight top,"I bought this in my usual size small (i'm a 4-6, 27"" waist, 32b), and it fits perfectly. it's a little loose and boxy but still structured and cute (it fits me like the model). i don't find it itchy at all, and the embroidery is just gorgeous. this is perfect for transitioning from summer to fall!",5,1,0,General,Tops,Knits +875,36,Cute summer top,"Picked this up end of season sale, but i go to florida a lot so i will still be able to use it. it runs a bit large. i'm usually between a s and m at retailer and i'm a bit heavy right now but the small fit loose and comfortably. i would recommend sizing down if you are between sizes. not itchy but i would wear a cami underneath because it is white and could start to itch after a while i suppose. it's definitely not a soft flowy t. mix of t-shirt material and linen. the main part of the t is cotto",5,1,0,General,Tops,Knits +1095,44,Beware of care instructions!,"I have wanted this dress since i first tried it on in april. finally got it as a birthday gift and after looking at it closely there was makeup on the collar. i checked the instructions and it says ""cold water wash"". so i washed only the collar part by hand and every part that got water on it bled!!! looks like the popsicles are melting! i'm so sad because this dress is adorable! i'm buying another in hopes retailer will make this right by taking back the first one. should be dry clean only!",2,0,4,General Petite,Dresses,Dresses +1095,53,Adorable,"Wanted to buy this dress, but the bust area was way too small. as i went up sizes, the torso began to be too long, and i would have to have it altered, i guess. what a shame. +but, if you are small chested, then this is your dress.",5,1,0,General Petite,Dresses,Dresses +334,58,L space ruched maillot,"I love the color and design of this suit, however, the rise is too high on my derriã¨re and was not appealing on myself! i am 5'7"" 110 lbs., with a very small bust and a short waist. i think the suit runs very small, as i am a size xs/s in most of retailers clothing. i would recommend it to young lady with a very small derriere and is more petite!",3,1,0,Initmates,Intimate,Swim +1059,37,High quality,"This cropped trouser is very high quality and perfect for summer. i ordered my usual size petite 4 (i am 5'2"" 115 lb) and i felt a little tight but since other previous reviews said they do stretch after wearing it, i decided to keep it. i hope they stretch out a little bit more. overall, i am very happy with my purchase.",5,1,3,General Petite,Bottoms,Pants +875,31,Beautiful but boxy,"Such a beautiful and unique design - i only wish it fit! it is so, so boxy - i'm thin, but would have needed almost a foot of fabric removed in order to make it look right (and i don't mean making it super tight). the seaming and button details on the back are such that it would be tough to have a tailor refit it appropriately. so, i had to return this, despite really wanting to find a way to make it work.",2,0,0,General,Tops,Knits +977,41,,If you have any curves at all then this will look like a sack on you. i wanted to love it because of the material and i've been looking for a blazer/ jacket that was heavy in weight. this just looked awful on me. maybe for someone who is very slender this will work but i was highly disappointed in the cut.,3,0,9,General Petite,Jackets,Jackets +977,50,Nice jacket,This jacket is a flattering although somewhat boxy. it does run large - i wear a medium and ordered a small. fits perfect. looks great with jeans and a t-shirt.,4,1,0,General Petite,Jackets,Jackets +977,26,Great casual jacket,I love the oversized look of this jacket--my building is kept freezing cold so while at work i am constantly fiddling with cardigans and scarves and a space heater to try to keep from freezing while working and i thought this jacket would be a great jacket that basically functions as a blanket while still looking professional. (my boyfriend doesn't quite get the 3/4-length sleeves but that definitely keeps the look of this jacket polished--if they were longer i think it would be too much just li,5,1,0,General Petite,Jackets,Jackets +1095,23,,"This dress is very cute and well made. unfortunately it was too short waisted for me and runs small in the bust. the arm holes were too big yet the bust small, very weird fit on me. i am six feet tall with 38c bust, maybe if you are shorter with smaller chest this dress will work for you. it has a thin lining and is not see through even though it is white fabric. i love the dress it just wasn't made for my tall figure.",2,0,32,General Petite,Dresses,Dresses +829,31,Just didn't work for me,"This shirt looks nice on the model, but it felt stiff and unflattering on me. i am 5'5"", 135lbs, 34c, and the size 4 fit overall. i just didn't happen to like it on me.",3,0,3,General,Tops,Blouses +875,32,"Gorgeous design, loose fit; mixed cotton textures","Echoing others' remarks, this top runs large/wide (wise to size down). the embroidery is beautiful and for the volume of work, this arrived with minimal to no loose threads. however, i was bit disappointed by the mixed cotton textures - most of the top is a knit, tshirt like textures, while the bottom hem (with the horizontal stripe embroidery) is a stiffer, thinner woven cotton that i had thought would be the material for the whole shirt. the mixtures of textures and predominant knit textile ma",4,1,1,General,Tops,Knits +1095,41,"Ice cream, you scream!","I was so excited to get this classic-looking retailer dress- i love the ladylike shape and whimsical print. the popsicle print on this dress is really, truly adorable. unfortunately, the dress is cut really weird and it made me feel like screaming: i bought a size two and it was snug and gaping at the chest (and i'm only a 32b, ladies, so be warned!) at the same time, the arm holes were huge, i mean massively big. i think if you have a swimmer's body this might work. otherwise, you'll for sure nee",2,0,2,General Petite,Dresses,Dresses +875,29,Itchy!,"This top is cute, but i found issues with both the fit and the quality. i tried on an xs, but found it to be boxy on my petite frame (5'2"", 110 lbs, 34a). even worse, though, was the feel of this shirt. it's not lined, so you can feel every bit of the beautiful stitching on your skin. it was so itchy, and i only wore it for a minute in the fitting room. it's a pretty shirt, but not worth actually wearing.",3,0,27,General,Tops,Knits +826,39,Lovely fabric,"The cut is on the boxy side and i'm not sold on the tiered effect, but i love the silk fabric and the print so much that i just don't care. the silk is deliciously light and breathable, and the print is neutral enough that i can pair it with several different cardigans and necklaces to mix it up. and the quality of construction is excellent--all of the seams were expertly sewn and pressed, and the print was lined up like in the online picture. given the material and construction quality, it's de",5,1,2,General Petite,Tops,Blouses +1095,29,Cute dress,Well made dress. cute pleats - though a few didn't lie perfectly flat. it was a little too long for me (i'm 5'1) especially in the torso/straps area. also the armholes were a little large. fits tts,5,1,14,General Petite,Dresses,Dresses +829,39,So flattering,"I love this top, on me, it looks so flattering, the tie detail is really nice, and i love the white subtle details at the bottom and collar. i actually haven't seen the sleeves unrolled on me, i roll them up. the tie part is a little wrinkled from shipment, but who cares. i ordered the regular 0 as the petite have been sold out a longtime ago, i actually got this shirt a while back and thought i had already written a review... i am wearing it with boyfriend jeans right now (for casual friday and",5,1,1,General,Tops,Blouses +1059,57,Super for summer,"I live year round in warm weather and found these pants to be a great addition to my wardrobe. flattering and comfortable, the cropped look is a nice alternative to shorts. i'm 5.7 curvy but athletic.143lbs i usually wear an 8 or 10 in retailer but took the 10. i prefer my pants a little less fitted.",5,1,0,General Petite,Bottoms,Pants +875,38,Comfortable with a beautiful design!,"This shirt totally exceeded my expectations -- the detail and colors are wonderful, and the shirt itself is quite comfortable. the shirt is a bit boxy, but there is enough structure and detail so that it looks quite flattering on. plus, it looks great with jeans or with a skirt -- it is very easy to style!",5,1,1,General,Tops,Knits +334,45,Love this suit!,"I was looking for a basic black one piece suit that sucked in the tummy, but with style and a little flair. this is it! the ruching is perfect, the material is great and the separation of the straps at the top give it more style. i am usually a size 6, but ordered an 8 because i have a 34d chest. i was right on. the 8 covers the top with a small amount of cleavage and the bottom still fits because the ruching is a little tighter in the waist. i plan to wear this to the local pools this summer an",5,1,3,Initmates,Intimate,Swim +1095,49,Just knew i would love this!,"I have had this dress in the shopping basket on my retailer app and was dying to try it on in the store. luckily, newbury street in boston had it so i stopped by yesterday. the dress is everything i hoped and even better! the cut could not be more flattering. to get the nice, classic fit in the front, i stayed true to my usual size (4) but worried the buttons would be straining like another reviewer said. as soon as the bow in the front is tied, it keeps everything together and is very comf",5,1,11,General Petite,Dresses,Dresses +1095,35,,"I love this dress. it is super cute and comfy. i am 5'7 and a size small, 4 and 36c and i got this dress in a 4 and it fits great. a 2 might be a little more fitted on my waist but the 4 is comfortable and looks great. the length is perfect, not too short at all.",5,1,0,General Petite,Dresses,Dresses +1095,50,"Short waisted, fits small","I love the look of this dress on model but sadly, fit didn't work out. very short waisted and tight across chest with very ample arm holes. i'm 5'8"", 155, 34c, reliably a size 10. this dress seemed at least 2 sizes off for me. my daughter, usually a size 2, could wear it except for the arm hole size (and the fact that it's 158 dollars and she's 13....going back.) btw, ""novelty print"" means ""ice cream novelty"", little popsicles with bites taken out - cute but more juvenile than i expected.",2,0,11,General Petite,Dresses,Dresses +875,32,,"I really love this shirt for its versatility. it looks casual with jeans and dressy with a skirt, or even jeans and heels. the shirt itself is super soft. it's boxier than it looks in the picture, but not to the point of crop-top. the shirt still hits at my hips.",4,1,0,General,Tops,Knits +875,27,Pretty details,"I love the idea of this shirt-- the embroidered pattern is fun and summery! the fit of the shirt is a little strange. i saw that in other reviews, but i had to see for myself. it is rather boxy. i think i may keep it, though. i will look cute with super fitted skinny jeans to balance out the boxiness of the top.",4,1,0,General,Tops,Knits +829,27,Strange,"I was struggling with the options above-- does it fit true to size or is it too small or too large? it is both too small and too large, which is really strange. the model makes this shirt look stunning, but the product is actually very boxy. i am 5' 3"", weigh 112 lbs and i typically order anywhere from a 00p-0r/xxs-xs. i ordered this shirt in an xsp and the shirt sleeves were short and the middle was boxy. quite frankly, it looked like a maternity shirt and the structure was not worth the money",2,0,1,General Petite,Tops,Blouses +875,43,Beautiful but boxy,"This shirt is super cute and stylish, but too wide for my liking.",4,1,0,General,Tops,Knits +875,32,,"This top is cute, light and summery. ordered a small...is a little short/boxy but otherwise fits true to size. great summer/warm weather top!",5,1,0,General,Tops,Knits +875,31,Love the stitching,I love this top because it is light weight (a must in southern heat). i have a shorter torso so the length didn't bother me but someone with a longer torso may find this top too short.,4,1,0,General,Tops,Knits +1095,35,Worth the required piece of fashion tape!,"Just too much cuteness! the print is amazing, the bow is darling, and the crisp structure keeps it from being too precious. looks amazing on my hourglass shape! runs a bit small--had to size up a bit and felt more comfortable once i put a piece of fashion tape in a spot that gapped a little. definitely worth the splurge!",5,1,0,General Petite,Dresses,Dresses +875,39,Cute!,Great with a tank top underneath and jeans. i also wore with a delicate gold necklace. charming!,5,1,0,General,Tops,Knits +1059,48,,"Love the pattern and material (not thick) for spring and summer. like the fit and style. i'm 5'2"", 115#. i've purchased regular (not petite) front and side zip (with internal button) charlie trousers earlier this year and last year. got a size 4 (i vary between size 2 and 4) in the front zip trousers and they stretched out and got a little loose after fitting perfectly. so i got the side zip in size 2. those were tighter initially and stretched out but are still snug. with this particular p",5,1,1,General,Bottoms,Pants +875,39,,"I have this shirt in more than one color! i totally disagree with the first review i find this shirt to be super comfy and unique! i personally feel the material isn't scratchy at all! also, i love this designer they are one of my new favorites!",5,1,17,General,Tops,Knits +875,38,Love the embellishment,The stitched pattern on this shirt is so pretty! it fits loosely and looks good with a slimmer bottom. it is a little bit itchy but i didn't feel i needed to wear something underneath.,4,1,0,General,Tops,Knits +875,32,Fun and stylish,"I love this top. it was cool on a summers day. i did get one of the strings of the design snagged but it worked out just fine, not ruined at all.",5,1,0,General,Tops,Knits +1095,68,Popsicle print,"Several reviews have stated this dress is embroidered with a popsicles. it is not embroidered, but an attractive popsicle print. i usually wear a 2p and after reading review ordered an 8p. a bit roomy in waist, but with tie at waist it works. length great, but arm holes large. will have altered as this fit/flare shirtwaist dress is so flattering.",4,1,1,General Petite,Dresses,Dresses +1095,36,Could be great-on someone else!,"I love all whimsical prints and shirtdresses and wanted so badly for this to work! i'm an athletic person with more of a pear shape so a-lines really work for me. i got my usual size 2 in this dress, and while i felt like the waist was true to size, the top gapped so badly (i'm a 32b) that i had to return the dress. a tailor probably could have done something to it, but i decided i did not want to mess with the extra expense. too bad, because the fabric is a lovely weight, the length was per",3,1,2,General Petite,Dresses,Dresses +875,56,Turquoise is lovely! size down for best fit!i,"I waited in anticipation for the turquoise version to appear online. turquoise and red can be found on another product page with the same name. + +size: i'm between small and xs for most retailer brands. i wanted this top to be a bit more fitted, so i ordered an xs. i'm 5' 5"" tall, 135 lbs, 35-29-36, 34d, with long torso and narrow shoulders. + +fit: xs is spot on for me. i don't really mind the shorter length. it didn't appear to be too boxy. i layered a white shapewear tank underneath to help w",5,1,32,General,Tops,Knits +1095,32,Adorable and excellent quality,"This is such a clean and cute printed dress and i knew that i had to try the dress when i first saw it online. after reading other reviews, i sized up. i am normally a 0 or 2 in retailer. i ordered the 2 and it fits nicely and looks great. however, i feel like the 2 buttons at the lowered rib cage area gape slightly. the tie covers it and holds it in place, unless i sit, then it gapes freely. i am a 32 a so not big chested at all, and yet this fit snug in the chest area. i would worry about",4,1,0,General Petite,Dresses,Dresses +875,37,Love,"I have this top with the red stitching and it is one of my most favorite items from retailer ever. i wear it with a tank top underneath so i haven't noticed any itchiness like the other reviewer mentioned. +i wear it with slightly cropped slim boyfriend jeans and i get so many compliments every time i wear it. +i wish i had it in the blue color too!",5,1,11,General,Tops,Knits +1095,48,Lovely pattern,"I really wanted to like this dress, but it just didn't suit me. i have others in a similar style, and they are a bit tight in the bust but not too much for me. the print is adorable - very quirky, but subtle. in the end, it's the bright white that doesn't work for me. it made me look incredibly pale.",4,1,2,General Petite,Dresses,Dresses +1095,65,Summery-est ever,"I started stalking this dress when i saw it on a store's instagram feed, and i was so thrilled to get it in the mail. however, i ordered it before reviews started popping up, and i was concerned it would not fit in the bust. however, when it arrived, the fit is perfect. it's not exactly loose in the bust, but there also isn't any pilling. the high-waisted nature was also suited to my shape. i'm usually between a 4 and a 6, and the 6 was great in this dress, and a perfectly joyful length--appropr",5,1,2,General Petite,Dresses,Dresses +977,31,"Modern,oversized men's wear meets utilitarian chic","Not for everyone - this coat has an intentional slightly oversized body and sleeves, with a short sleeve length, and a heavy fabric that is perfect for cold california winters (and maybe fall weather everywhere else). the weight comes from what seems to be a lining of a heavy hunter -green-colored neoprene-like substance. it definitely feels substantial and worth the price. a coat like this would look amazing with crisp, clean lines, culottes, joggers, flatforms/clogs, or can transfer into workw",4,1,21,General Petite,Jackets,Jackets +875,32,Lovely,"When i first saw this too online i thought it was beautiful. i was right. when jt came in the mail, i really loved how the embroidery was intricate and detailed. the colors also popped making it a great shirt for spring, summer, or early fall.",5,1,0,General,Tops,Knits +1095,42,Gorgeous but weird fit,"Everybody else is correct. the dress is adorable but the fit is weird. i am usually a size 2 (134lb, 34 c) but got the 4 based on the reviews. the waist fits perfect, the top is huge, especially the armholes. if i get a size 2 then the waist will be too tight. however, the dress is so cute i am considering taking it for alterations and keeping it. definitely it has fit issues.",3,1,0,General Petite,Dresses,Dresses +1095,37,Too small in the bust,"I loved this dress so much, but it just didn't work. i'm not particularly busty (36b) but it just did not work for me. i sized up several sizes from what i usually wear and it still was tight on the bust and then just looser around the arms as i went up. such a beautiful dress though - great quality and really adorable fit for someone who is built for it!",4,1,0,General Petite,Dresses,Dresses +829,57,Love,Love love love. fits great. super comfortable and looks both casual and dressy at the same time. i could wear this every single day.,5,1,7,General,Tops,Blouses +875,20,"So nice, i'm getting another","Just bought this at the store. just to be safe, i thought i would try it on before ordering just to confirm the size. that was a good idea. ( i am a 38b, 5'9"", and have variable results with trying to order with the size charts.) the large looked nice but was slightly too large in the chest. when directly compared to the medium, it seems the major difference is the length-- the large was > 1"" longer than the medium. i did not find either to be itchy and the construction seems totally ok.",4,1,0,General,Tops,Knits +875,35,Cute blouse,"I really like this shirt, and have gotten plenty of compliments the first time i've worn it.",5,1,0,General,Tops,Knits +1095,27,You cannot wash,"As another reviewer pointed out, although the tag inside the dress says that you can machine wash in cold water, the color around the popsicles will bleed! this is extremely disappointing. i'm hoping it can either be fixed with dye remover, or that retailer will take this item back. would only dry clean this item.",2,1,1,General Petite,Dresses,Dresses +977,27,Wonderful autumn coat!,This coat is wonderful! i am usually an xs-s in retailer and i got the xs. it is supposed to be a bit large. goes with everything and great quality.,5,1,2,General Petite,Jackets,Jackets +1059,56,Cute but stretched out in minutes,"I thought these pants were cute! when i put them on, they fit perfectly, and were comfortable, however i wore them for about 20 minutes and they were a completely different size, and looked awful!",2,0,2,General,Bottoms,Pants +1095,52,Runs small,This dress is very cute and is made well. i bought up a size from what i usually where as one reviewer mentioned the dress is small in the bust. this is always a problem for me therefore i ordered a 14. i was surprised that the 14 was sung in the bust. and then understood why the 16 was sold out. i was 30/40 lbs heavier when i wore a 16..never would have thought i'd have to order up that high. i've been running a 10 or 12 depending on the level of my activity. i'm keeping the dress because i kn,3,1,0,General Petite,Dresses,Dresses +868,41,Great tee!,"I was hesitant to buy but this tee is easy, light, and fun to wear. the fabric is light but not see through in the slightest. the construction is perfect. it is tts for an oversized tee.",5,1,0,General,Tops,Knits +875,39,Scratchy and prickly,"This top is really cute, but the threads underneath the shirt scratch your torso. i suggest wearing a tank underneath to protect your skin.",2,0,1,General,Tops,Knits +1059,34,Cute pant,Cute and great fitting pant. love the pattern and it fit tts for the brand. i normally wear a 10/12 and i took at 12. flattering.,5,1,0,General,Bottoms,Pants +1095,51,Cute dress for everyday,"As others mentioned, the arm holes are a bit large- but i didn't find this too much of a problem. possibly that's because as a smaller chested woman i run into that issue regularly. i'm 5' 4"" 130 and the size 8 fit perfectly. the length is at the top of knee.",5,1,1,General Petite,Dresses,Dresses +1095,37,Precious design,"The dress is precious and looks good on all body types. however, the bust is extremely tight. i had to go up a dress size just to fit in the chest area.",3,1,0,General Petite,Dresses,Dresses +875,41,Embroidered sienna top,Love this shirt! looks perfect with a pair of jeans! makes the outfit with out any effort!!!!,5,1,0,General,Tops,Knits +1095,39,Perfect ice pop for summer,"Like the previous reviewer, my size 10p gaped and strained the buttons at my chest (36dd wide rib cage 5'3"" 140#). also the skirt flared out too high on my waist. i'm going to try a regular 10 with hope the torso will fit better. other than the fit on my particular body and the one distracting chest pocket, this shirt dress is very well made, very cute",5,1,9,General Petite,Dresses,Dresses +826,46,So beautiful,"I wanted to give this top some love. i ordered this top and the kota peasant top with plans to only keep one of them. this top is definitely the winner. the neckline, sleeves, pattern, fabric, and length are gorgeous and flattering. it is very feminine and elegant and i think it will also be versatile....it could be very dressy (depending on what you wear it with) but it will also look great with jeans and shorts and sandals. it is a bit sheer so a tank or cami might be needed underneath. i orde",5,1,6,General Petite,Tops,Blouses +875,36,Love this top!,"This top is beautiful in person, love the buttons in the back, fits a little boxy but i like that style",4,1,0,General,Tops,Knits +828,44,Great date top,"This top is a classic subtle sexy top, great for casual wear and especially to go on a date. the hem of the sleeves have a slit, neat detail. small fit me well width wise but sleeves are too long (2 in. pass my wrist) but i cannot roll them up because the bell shape does not hold and i cannot hem them because they would lose the original stitching (i am 5ft2in, 34b, 26 waist). no petite size so i passed. cloth and stone is better in making petite size but not for most items, sad for us shorties.",4,1,0,General,Tops,Blouses +1095,44,Not so vanilla!,"This is a true retailer dress, cute and quirky. kudos for the built-in liner (with scalloped hem, very pretty) and pockets. i like the colorful yet subtle embroidered ice cream sticks on the dress, and the white background makes the colors and details really pop (pun intended!). i echo the previous reviewers that the bust is very small. i usually wear size 4 regular in this brand (i?m 34b, 26 waist, 36 hips. i?m 5?2?, and the bottom hem falls right at the upper knees). but when i tried on size 6,",5,1,3,General Petite,Dresses,Dresses +1095,38,Adorable but runs small in the bust :(,"I ordered my typical 6 petite and found that the buttons were pulling at the bust ( i'm 34 b) and at the waist. i'm returning and ordering a size 8 petite because i'm a sucker for a shirtdress and a cute novelty print. the quality is nice and the length was perfect for my short 4""11 frame, now only to wait for it to be shipped! oh how i wish petites were available in my local store!",4,1,45,General Petite,Dresses,Dresses +1059,42,Unfortunately unflattering,"I wanted to love these great spring/summer pants, but sadly, they are just too unflattering for ladies with hips. if you have a ruler build, these pants will be fantastic, but these pants are not forgiving in the hip and thigh area for those of you blessed with a curvier build. i was really hoping for pants that had this clean, vintage inspired, audrey hepburn look re-imagined for the every-girl, because nothing is more flattering to an hourglass body than clean, non-bulky lines (something like",3,0,3,General Petite,Bottoms,Pants +1095,38,Classic,"This is a fun and classic dress. the dress is well made, as others said, it doesn't have much ""give"". i am a 36c, 29"", 39""- and the size 8 fit perfectly. i didn't experience any gapping between the buttons. it is a nice fun summer time dress! it is also very flattering!",5,1,1,General Petite,Dresses,Dresses +829,47,,"Not sure about this yet. reordered larger size because it hits much higher than shown. belly peeked out from under it! ordered 6 and i'm normally a small/6. like the design but really short.,",3,1,2,General,Tops,Blouses +873,21,,"Great shirt, the material is lightweight without being see through. i didn't find the cut to be all that flattering, but it was a cute enough style and comfortable enough that i wanted to keep it. definitely see it becoming a staple in my closet.",5,1,0,General Petite,Tops,Knits +863,67,,I love this top. it's very comfortable looks great and the quality is very good. i've had many compliments on it.,5,1,5,General,Tops,Knits +1035,34,These stretch out horribly,"I've never had a problem with pilcro jeans. i own several pairs. however, i ordered my regular size 28 (i'm 5'3, 120 pounds) and not only were these jeans thin, they had zero stretch and after 1 hour of wear stretched out horribly. they fit really loose and hung around my knees and legs which is very disappointing for a skinny jean.",2,0,3,General,Bottoms,Jeans +1078,40,"Not exactly as expected, but lovely nonetheless","This maeve dress caught my eye for its unique styling, and did not disappoint in person. v-neckline is deep, but not revealing. there is a nice hemstitch detail on the sleeve trim. the pattern is a good scale for a strong frame. +what surprised me: 1.) the dress is actually black with light brown flowers. on my screen, it looked brown with bronze flowers. 2.) there are pockets in this unlined dress! they are placed on-seam, but feel weirdly awkward to access, almost as if they are set back. they",4,1,7,General,Dresses,Dresses +863,29,,"This shirt is very comfortable. though it's casual, its uneven seams and asymmetry give it a little +more edge and character. fit is slightly large. i'm 5'5'', 125 lbs and purchased the small. the arms are a little longer than i'd like and the overall fit is slightly too loose. however, it's not a significant enough problem for me to return the shirt.",4,1,0,General,Tops,Knits +863,34,Too thin,I bought both black and white shirt. white is see through completely. black is ok. but the material is still too thin. i feel like it is going to tear after the first wash. not worth the money. i bought plenty of similar shirts from the same brand and this run is way too cheap.,3,0,6,General,Tops,Knits +1078,45,Love this dress!,"I saw this dress in the store and was drawn to the pattern as an alternative to my normal lbd. it looked okay on the hanger, but when i tried it on...wow! so pretty and chic. it actually hangs a little lower in the front on me than on the model pictured which adds to the chicness and makes it a sophisticated take on a kimono. (my husband's words) i wore it out that evening to dinner and received several compliments. i did not have any issues with fit. i am a size 6 and purchased a size 6. it fit",5,1,1,General,Dresses,Dresses +824,37,Prettier in black but would pass on ivory,"It's a pretty top with a lot of intricate detail and love the edge the studs give it but it looks fuddy duddy in ivory. looks nicer in black but you loose some of the detail in the dark color. the lace is not soft either but has more of a polyester, slightly scratchy feel. sizing is true to size and it fits well if the style floats your boat.",3,0,1,General Petite,Tops,Blouses +1078,51,Small,"Too tight in strange ways. beautiful dress i was so excited to receive it, however it just did not fit.",1,0,0,General,Dresses,Dresses +863,54,Super cute fall top with skinny jeans,"It's too hot here in ca to wear this yet but i can't wait for cooler weather. i tried it on with skinny jeans and it's darling. love how it's much shorter in front with the side splits and long back to cover the bum. perfect for leggings. nice slim, but not tight fit.",5,1,0,General,Tops,Knits +1086,41,,"I bought this dress as a back-up for my bridal shower and loved it when it arrived. it does run large, so definitely size down. there isn't a lot of shape to the dress, but the quality is high, the color is really vibrant and it's a comfortable fit. i'm 5'5 and it fell to my knees. i paired it with black tights and booties and plan on wearing it the spring with wedges.",4,1,2,General Petite,Dresses,Dresses +824,41,Another beauty from maeve!,"I am a big fan of maeve tops. i love the beading and structure of this top. despite the fullness of the design, the fit is flattering",5,1,3,General Petite,Tops,Blouses +1133,51,"Very pretty, quite small","This is an attractive, fitted vest. the tight belt on the back gives it a new look, great shape. the fabric is good quality. the neck is tight and high. i usually get a small at retailer, but this small is way too tight and there is no way you could put a sweater under which you usually do in weather cool enough for a vest. judging from the photo, i would guess she is an extra small wearing a small or medium. it looks good with taupe or brown pants/jeans",4,1,6,General,Jackets,Outerwear +1078,54,Love this dress!!,"I am a curvy girl with boobs! this dress was perfect. it hugged in all the right places and had room for my bust! i did go up a size...however, i normally have to do that anyway for the top to fit. + +this dress is funky, and i look forward to wearing it with tights and boots in the winter, very comfortable. it has pockets!!!",5,1,1,General,Dresses,Dresses +1078,45,,Great dress for fall! runs slim through the hips and neckline is a little low.,4,1,2,General,Dresses,Dresses +863,70,Perfect little white tee,"Love this little ""throw on and feel comfortable all day"" tee shirt",4,1,3,General,Tops,Knits +1078,43,What a shame,"This was a disappointment because beautiful fabrics with interesting design are a rarity--and especially at this length! unfortunately, this is a mess in terms of proportions. if a size 2 can barely get it off, then there is a design flaw. sadly, the fit was so strange that it did not seem that simply sizing up would correct the flaws.",1,0,1,General,Dresses,Dresses +863,51,Tee with a punch,"I love that this tee is so soft and is not boring! when i originally took it out of the bag, my teenage daughter did not like it. then i tried it on and she was wowed! the longer length in the back makes it very interesting. i am looking forward to wearing this with jeans.",5,1,2,General,Tops,Knits +824,53,,,5,1,0,General Petite,Tops,Blouses +824,38,Adore this top!,"Saw this one online and when it came it did not disappoint. i ordered a xxs in black, and it was perfect. i am 5'3"" and 110 lbs. it definitely has a lot of volume to it, but i still found it flattering because the shirt is very sheer, so you can ""see"" through it to your thinner figure underneath. it comes with a comfortable but fitted camisole to wear under it, which makes it flattering. another reviewer mentioned the beading turning. i have not seen that on mine, but now i will be looking for i",5,1,2,General Petite,Tops,Blouses +873,37,Sheer,It is very sheer which is too bad because the design is super cute.,3,0,0,General Petite,Tops,Knits +1035,37,Pilcro has gone so down in quality,"Pilcro jeans used to be my favorite. in the past 6 months or so, i have bought 3 new pairs, and all have been so disappointing. first of all, the quality is horrible now. in the past, they would last for years and hold up great. my last pair of stet jeans started to visibly wear out within a month. also, pilcro jeans now stink in the most disgusting toxic way. they smell horrible despite washing. what happened, pilcro?!?!?",2,0,7,General,Bottoms,Jeans +678,49,Easy & comfortable...perfect for the heat,"I love this item! . they hang & flow beautifully like the weightlessness of a silk skirt. +the front peek-a-boo cut outs really make them a delight to wear & show off some skin! +somewhat transparent,i topped it off with a lightweight tunic length for modesty... but the placement of the painterly design really works in my favor so i could wear them with something shorter if i choose to. (like the model) +heads turned as i walked by!",5,1,0,Initmates,Intimate,Sleep +823,52,Sleeves not like those on the model,The print and front ruffle are beautiful. the sleeves are awful and poorly represented in the picture of the model. it's almost like the sleeves have a life of their own - so mismatched with this style of blouse. such a beautiful print but so disappointing in shape.,1,0,0,General,Tops,Blouses +863,51,Fresh take on a classic t,I bought this in black and i can already tell this is going to be a staple this fall and winter. the unusual hem and extra long sleeves are really flattering.,5,1,1,General,Tops,Knits +978,49,Double duty: functional & fashionable,"I am a lover of jackets and coats; this is my new fave! +great color, versatile (i.e. work, weekend). fun accent piece to shield yourself from a brisk wind, while maintaining full fashion status. +my first day wearing and i've rec'd many compliments. love the combo of trench coat and poncho. my one issue...i wish the sleeve strap actually buckled, it keeps slipping out of the faux buckle and i'm afraid i'm going to lose it. i usually wear a medium/size 10, but medium was sold out, so i ordered",5,1,1,General Petite,Jackets,Jackets +863,65,"Adorable, lightweight and comfy","I love the weight of this shirt and the open scoop neck. really flattering ...i wear tanks under my shirts anyway but it is see through. the weight is nice even in heat, and i expect it to be so nice layering in the winter. the cut at the hem is great..... very flattering and does not seem to cling. + +i bought a white one, now i have repurchased another white (xs) and a black one. while i was vacillating, theblack xs sold out so i got a small and will cross my fingers that its not too big.",5,1,1,General,Tops,Knits +873,27,Could have been great,"I really loved how this top looked and was really excited it to get it on sale. i was worried that it might be too small/tight (i ordered a m and would consider myself a m) but was relieved to find it fit just fine. i was extremely disappointed to find that it was too sheer to wear by itself and still showed my bra with a layering tank on underneath. it was also more like a crop top for length, which does not work with my mama belly.",3,0,0,General Petite,Tops,Knits +863,52,Save your money,"What a disappointment and for the price, it's outrageous!",1,0,1,General,Tops,Knits +863,40,Unique cool top!,"I absolutely love this top, i purchase this brand frequently because the designs are simple, yet unique and cool. i'm 5'7"" 170 lb.s curvy/athletic and i got this in a medium, it fits perfectly and looks really great on! i love the asymmetric cut and raw hem... wish it came in more colors!",5,1,0,General,Tops,Knits +678,38,Gorgeous... try it,"I tried the xs in store and waistband is very stretchy and the material is lightweight (feels delicate) and to the floor. fell in love with the watercolor print. this would be great as a quick cover up over a bikini. beware- if you plan on wearing this anywhere besides by the beach, make sure to rock your nude undies because the cream color is super see-thru, which is my least favorite part of this piece. i couldn't get to the petites sizes before they all sold out, so i'm crossing my fingers th",5,1,14,Initmates,Intimate,Sleep +1072,41,"Description way off, but beautiful dress","First of all, this dress is not cotton. it is 100% silk. it also not a pullover dress (it has a side zipper) and does not have an elastic waist like the description says. lastly, it is not by moulinette souers. i've really never seen a description so far off on one of the items pictured. nevertheless, it is a gorgeous dress. the silk is beautiful and can easily be worn for fall with a sweater or jacket. the waist is a little poofy and the chest is a bit snug. however, i was able to go down a siz",5,1,1,General Petite,Dresses,Dresses +863,46,Love this shirt!,This shirt fits great. it is a fun look. i wore it wear a pair of leggings and sneakers for a casual day look. it goes down to my knees in the back and the front is asymmetric. so cute. i think i will get a lot of use out of this going forward.,5,1,2,General,Tops,Knits +863,29,Love this style,"This shirt fits true to size. i love the cut of the shirt which adds some edge to a basic tee. i know i will wear this all the time throughout the fall and winter months. perfect to wear as is or layer with cardigans, jackets and scarves in cooler weather.",5,1,2,General,Tops,Knits +678,40,,"Very pretty and comfortable. it was not obvious at my store that this was to go with swim suits. it was located next to regular pants, but once i tried it on - i realized it was somewhat see through. i still got it as its very lovely. i'm going on a beach vacation, so i know i'll use it over bathing suits. honestly i may use it with nude underwear or long shirts anyway, since its so different and pretty. i bought a large as i'm a 10-12 and its still pretty loose.",5,1,2,Initmates,Intimate,Sleep +823,66,Nope,There's a reason the model is holding her arms up in all the frontal views. it hides the very weird wide top part of the sleeve that absolutely destroys and distorts an otherwise beautiful blouse. the print is lovely but the fit is very odd. it's pulls at and is very tight through the bust too. i wear medium or large and ordered size large. if you're less well endowed this might be an okay choice for you. but i have to say this blouse made me look overweight and very wide. returned.,1,0,0,General,Tops,Blouses +863,66,Nice top??,"I love this designer and decided to give this one a try. i ordered size large in black. it's a nice weight knit but not too heavy. good for fall and winter. the color is an intense, saturated black that's really sharp looking. i thought it split up both sides, however, it's only split on one side and then angles across the back to the other side, which isn't split and is shorter. i carry weight in my midsection, and this flows a bit away from the body but not in a giant oversized way. i like t",4,1,17,General,Tops,Knits +873,51,Summery versatility,"Super cute. cotton is substantial enough not to show bra lines, but light enough to be summery & breezy. i misread ""xs"" and tried it on, thinking it was a medium, & oddly there's barely any difference among the xs, s, and m sizes--the buttons didn't even buckle out across my bust on the smaller sizes--so, this top could be a nice ego boost if you want to size down (i got the m anyway). armholes not too big, ruffle hides any tummy flaws. great with jeans, shorts, and skirts--like a perfect white",4,1,15,General Petite,Tops,Knits +1078,28,"Nice print, not flattering for me","Loved the print on this dress, however the fit wasn't for me. i feel like it exaggerated my belly, and just overall i didn't feel great in it. the sleeves were also really big.",3,0,1,General,Dresses,Dresses +1078,40,"Pretty dress, love it!","This dress is gorgeous. it is somewhat fitted but i didn't find it to run small. i am top heavy 36d and usually wear a size 10, but i bought this in an 8 and it fits me great. i will say the zipper is a bit tricky. at first i thought the dress was too tight but it turned out the zipper was stuck. after fiddling with it, i realized the dress fit but the zipper was a bit tricky. i wore it to work and got so many compliments. also the picture makes the background look burgundy but it is mostly blac",5,1,1,General,Dresses,Dresses +873,64,,"This top is really cute but shorter in length than expected. plus, it shrunk considerably!",3,1,0,General Petite,Tops,Knits +1078,46,Bummed,"I got this dress today. i was super excited and hoped to use it. it runs so, so small. i'm returning and ordering up.",4,1,18,General,Dresses,Dresses +873,31,See through,"This white shirt is very thin esp in the front and see through - i would have to wear a cami underneath unless i wanted people to see the outline of my bra. it seems very flimsy and poor quality, even at the sale price. disappointed and will return...",2,0,0,General Petite,Tops,Knits +1133,46,Super cute,"This vest is so cute and a perfect transition piece for fall. it runs a little big. i normally wear an xs, but i had to exchange for an xxs",4,1,0,General,Jackets,Outerwear +824,30,Beautiful top!,"I absolutely love this top!! i bought the ivory color, and i am definitely considering buying the black as well! it feels true to size, but i did size up only because i like my tops to fit a little generous and flowy. i can't wait to wear this top all season long!",5,1,3,General Petite,Tops,Blouses +873,63,Great white top.,"Finally, a white top that does not show every nook and cranny. this is a great fabric. many times white shirts are see thru and i won't buy them. this top is lightweight but has enough substance to cover everything. the online picture does not do it justice. +it can be worn with anything and is made very well. this one's a keeper for your closet and will be worn over and over all summer long.",5,1,2,General Petite,Tops,Knits +1035,46,,As another reviewer mentioned the quality isn't here. they pilled in the thighs after wearing once and stretched out so much at the end of the day i was pulling them up constantly. such a bummer because i love this brand.,3,0,0,General,Bottoms,Jeans +1072,31,Anther at it's finest,"What a dress! the print, the feel of the fabric, and the overall fit of this dress, it definitely has the wow factor! i plan on wearing this dress to the kentucky oaks this year. i typically wear a 6 and sometimes a 4 in retailer dresses. i'm 5'6'' 130 lbs 32dd and took a 6 in this. i could probably even try the 8. it fit a bit tight in the bodice for me but i'm not sure if it warranted a size up. it is pricey but i see this being a closet staple and one of my favorite maxi's yet.",5,1,4,General,Dresses,Dresses +844,45,Strange cut,"The quality is good, as is the design idea, but, practically, it doesn't work. ordered an xs and the top still ballooned out stiffly. this top is not soft or flowy, it is stiff and very wide.",2,0,0,General,Tops,Blouses +678,41,Beautiful pants!,I love the print on these pants. they are beautifully flowy and flattering. the only downside is that they are see through so i'm going to take them to tailor to have a lining put in up to the knee so i can wear them to places other than the beach. i bought them on sale today in the store and bought a size small.,5,1,0,Initmates,Intimate,Sleep +678,27,"Beautiful colors, runs large","Bought these for my honeymoon to hawaii- they will be perfect for lounging. very comfy, but a little see through so likely not to wear on their own.",4,1,0,Initmates,Intimate,Sleep +824,51,,Another beautiful mave piece!! that is too big!! waiting for the size down to come in the mail. fingers crossed this works. the large was too overwhelming on my 5'6 frame. the tank that comes with it is soft and comfy and the gold accents really make this an outstanding number!! too bad no petite is offered. i ordered the black but it was hard to choose because the white also looks amazing. i predict lots of cooing over this lovely!!,4,1,4,General Petite,Tops,Blouses +863,50,A bit thin but otherwise perfect,"This fits great. it looks great with jeans or exercise pants. a little lighter weight than i hoped but looks great, hangs well on my body. i bought the white.",4,1,1,General,Tops,Knits +823,36,Ready for clown college!,"This top is perfect for the first day at clown college if you want to see some clowns cry. the sleeves are probably the worst part of this overpriced monstrosity. the elastic at the cuffs makes the already comically large sleeves billow and puff out even more. + +buy this if you enjoy walking to the post office to return things.",1,0,0,General,Tops,Blouses +1078,35,"Love,love",Love this dress. fits true to size!! can be dressed up or down. very flattering1 prettier in person,5,1,0,General Petite,Dresses,Dresses +1078,37,Bummed,"I love the maeve line and was excited to get this dress. unfortunately, the fit was just bad. the top fit fine but the bottom half was too snug and there were unattractive gaps around the waist and the pockets. don't think another size or tailoring would address the issue. for size, i am 5'4"", 130 and ordered the 6.",3,0,6,General Petite,Dresses,Dresses +1035,50,The jeans are a great find.,The jeans are flatering and stylish. they are slightly distressed but will go with anything. the fit is like other pilcro stet pants i've purchased and loved.,5,1,0,General,Bottoms,Jeans +678,60,Beautiful beach pants,"Have not worn them yet, but they are so soft and pretty. seems like a good item to travel with.",5,1,0,Initmates,Intimate,Sleep +863,41,Cute tee,"Very flattering tee. nice details & quality. +my first time purchasing this brand, but will look for similar items from them.",5,1,1,General,Tops,Knits +824,47,"Unique, detailed - lovely!","This is a really pretty top. the beading/rivet detail is really cool and it feels comfortable on. i think the lining is really silky and the lace feels gentle, not stiff. the top is kind of like a swing top, there is a lot of fabric, but it is just right. the fabric looks rich and lovely. great top!",4,1,0,General Petite,Tops,Blouses +1035,37,"Cute jeans, terrible quality!","I've purchased pilcro jeans in the past and they've held up great. unfortunately, the material used for this particular jean is a far, far cry from what it used to be. the thighs of these jeans start pilling (yes pilling!) after just a few wears. i've never had jeans do this -- whatever denim blend they are using is a complete disaster. + +don't buy these -- you will be very disappointed.",1,0,0,General,Bottoms,Jeans +903,40,Love this sweater!,"I reallllly love this sweater! i could wear it every day if i could. the sweater is comfortable, lightweight (but not see through) and versatile.",5,1,0,General Petite,Tops,Fine gauge +844,28,Pretty top,"I loved the way this top fit and i am a total sucker for floral prints. i took my normal medium (5'5"" 150lb). unfortunately the material was very thin, scratchy and had a horrible chemical smell. back it went.",4,1,3,General,Tops,Blouses +881,73,10++++++,"I can't rate this with enough stars or numbers! great fit, can't see up the sleeve, perfect length, just right amount of fabric for draping. i am 5'3"" and 130lbs. fits like a dream and when i got it home from the store....it goes with all things in the closet!!! my one reservation is it only comes in one color. let's get on it designers! we need a lipstick red for summer and coral and navy and black and white. i don't need any other top! this one has great cool fabric and you don't need to wear",5,1,5,General Petite,Tops,Knits +881,31,"Sadly, too big","This top is really beautiful. the color is rich and the texture on the back is a unique touch. and i think it might have worked for me except that i could only find a m/l and it was just too big. i love drapey styles and think this top would have been just the right amount of drapey if i'd been able to snag a smaller size. but the m/l looked like a teal sack, so it's going back.",3,1,0,General Petite,Tops,Knits +865,38,Cute but huge,I'm wearing this shirt right now. i'm usually a large in tops. i bought a medium and i'm kinda wishing i got a small instead. it's very swingy. its super cute but size down at least one size maybe two,5,1,0,General,Tops,Knits +881,61,Super comfy!!,"This is a perfect top for warm weather. and depending on the accessories you pair it with, it can be great to wear while running errands or for a casual date. the woven texture at the back is unique and gives it the retailer vibe we all know and love. definitely runs big but that's part of the charm of the top.",5,1,2,General Petite,Tops,Knits +881,57,Beware! launder before wearing!,"This was my absolute favorite top before it transferred dye onto the driver's seat in my car. >:-( there is nothing in the language of the care tag which advises to wash before wearing because of the possibility of dye transfer to other surfaces. the care instructions say that is is washable with like colors and, in fact, recommends dry cleaning. really? and dry cleaning will remove all of that excess dye? don't think so. after i discovered the dye transfer on my car seat, i washed the top in a",3,1,2,General Petite,Tops,Knits +881,54,Cool summer tee,"I picked this top hoping that it would go with the dipped horizon skirt and the color was a perfect match! i love the irregularities in the dye, and the woven back. the cut is boxy, but the fabric is soft and drapes well so very flattering. looks great with white jeans",5,1,1,General Petite,Tops,Knits +881,24,A flattering over-sized shirt,"I generally wear a small or medium in tops, and decided to get the medium/large. it's over-sized, but it lays very nicely and doesn't look ""frumpy"". the back of the shirt is exactly as it looks in the picture. the front of the shirt is more of a solid blue than is shown, but still lovely.",5,1,1,General Petite,Tops,Knits +865,42,,,4,1,0,General,Tops,Knits +881,48,"Love it, it's much longer on me","I just got this in xs/s at my store and i love it. i have a petite frame (5'3"", +/- 105 lbs) so it's much longer on me than on the models. and the one i got is much more saturated with dye on the front than what's shown in retailer's pics, so that may vary a bit. however, the back of mine looks exactly like what's shown above. i love the drape and the way it falls on me; super casual-chic in my opinion. i'd say the color is deep teal. wish it wasn't hand wash, but sometimes that's worth it.",5,1,21,General Petite,Tops,Knits +903,56,So comfy!,"This is the ideal easy-breezy sweater to throw over leggings when you just feel like being comfy, cozy, but still stylish. i love it.",5,1,0,General Petite,Tops,Fine gauge +881,50,A very flattering shirt!,"Comfy, casual, and stylish! i received many compliments on this shirt. it drapes across your body very nicely and does not cling. it has a great asymmetrical cut that is very flattering. the material is comfortable and the color is warm and summer-like.",5,1,10,General Petite,Tops,Knits +881,32,Huge!,I am a pretty curvy girl and thought the m/l was gigantic. i returned and was afraid to exchange for the smaller size thinking it would pbly be very large as well. it was not flattering because it was so boxy.,2,0,0,General Petite,Tops,Knits +865,35,,This top has too much fabric! i would of liked it more if they had a smaller size but the small seemed like a medium or large!,3,0,7,General,Tops,Knits +818,54,Beautiful detail,I love this top. it comes with its own camisole. the embroidery is lovely and the fit is perfect.,5,1,3,General Petite,Tops,Blouses +881,51,Awesome shirt!!,"Love love love this shirt! great quality .. washes / dries wonderfully! it is loose and flowy .. it's supposed to be that way - but it lays nicely! it's longer than pictured which i love - i'm sure i'm shorter than the model but it's truly a perfect shirt! goes great with my jean skirt.. jeans, shorts and dressier skirts. if you get a chance to order .. don't hesitate! :)",5,1,0,General Petite,Tops,Knits +881,36,Took me by surprise,"Grabbed this top because i loved the color and to my surprise i loved the style too! it is longer on me than the model (and i'm 5'10"") and it looks great with a long pendant necklace and white skinny jeans. i also wear a white tank underneath just in case, otherwise i think i'd be showing some skin. i like that the front and back are two different materials.",5,1,0,General Petite,Tops,Knits +865,30,,,2,0,0,General,Tops,Knits +865,44,Perfect,"This tank is perfect for summer since it pairs so nicely with shorts! jeans work well, too, and during cooler seasons, i can wear a cardigan over it to stay warm. + +the fit of this top is not true to size, for it runs large, but is flattering on the body nonetheless. the stripes and miniature circular openings, i noticed, add beautiful detail for formal or informal events. + +as a whole, this shirt is perfect! the one aspect of this top that may need to be carefully attended to is the material",5,1,1,General,Tops,Knits +881,54,Loose & exotic,Wasn't sure about this but got the xs/s on sale. the style is very wide and is longer on me than pictured. somehow it works because it drapes nicely from my shoulders. should be comfy to wear in the summer. the two i received are a deep turquoise and will pair nicely with some of my favorite jewelry.,4,1,0,General Petite,Tops,Knits +865,35,Much nicer in the pictures,"This tank is not very flattering. there is a lot of fabric, it's very boxy, & the holes kind of remind me of a high school basketball jersey. i even sized down and it's still just wide. i'm returning :(",2,0,0,General,Tops,Knits +881,34,Great top!,"I bought the m/l (5'4"",130lb) and love the way it hangs and the length, and the fact that it can be worn over a lightweight top. the color and feel of the fabric are very nice.",5,1,0,General Petite,Tops,Knits +865,37,Fun little tank!,"Love this. the stripes are cute and simple, but even better is the texture of the fabric (do a close up on the photo if you can). it's a swing tank, so there is a lot of fabric, but styled the right way and this is dreamy :) i passed on it only because i like my tops much longer than usual and this one wasn't quite long enough for me. i tried true to size and had it been longer i would have went with it - but smaller ladies might want to down size a size or two :)",5,1,5,General,Tops,Knits +865,35,,The length in the front is too short and the bottom flares a lot which is really unflattering. i love the top half of the shirt but the bottom half should be more form fitting.,2,0,0,General,Tops,Knits +373,51,The perfect bra,"Oh how i love this bra!! its so comfortable and very flattering. i find that many bralettes totally flatten me out but this one does not. and the floral lace here is just beautiful. the daisy-type flowers look so cute and feminine! i've got it in so many colors now. for sizing, i'm 34b and the s/m fits great.",5,1,1,Initmates,Intimate,Intimates +844,40,Beautiful top,"I received this top over the weekend and i absolutely love it! it does not smell, nor does it itch, as the other reviewer stated... at least not for me. i was worried about the green color, but it's quite lovely. this is a keeper for me! i am 5'1"", but ordered the regular xs, and i am happy with the length.",5,1,4,General,Tops,Blouses +881,35,Runs large!,"What a great shirt. however, none of the ones i saw in store are colored like the picture. the front of them are all a deep blue color, no tie-dyed effect or whatever you're seeing on the online pics. the shirt runs large. i am an 8/10 38c and the smaller size was plenty big. i can't imagine how the larger size would have looked! i think this top will go with many things, including as a cover up over dresses.",5,1,1,General Petite,Tops,Knits +865,35,Baggie and big,It's nice material but the design makes you look like a pregnant lady,2,0,0,General,Tops,Knits +865,35,It's cropped in the front,"I got this shirt in a medium, my normal retailer size and while the short fit, the front is cropped! i am a fan of the tops that are shorter in the front and longer in the back, however this was just too short in the front. my belly button was exposed, and that wasn't the look displayed on the model. unfortunately this top is going back to the store.",1,0,1,General,Tops,Knits +840,33,New favorite peasant blouse!,"I took a leap and ordered this top in both colors. my style is bohemian and flowy so i knew this fit the bill. i purposely bought these blouses because i read the reviews and being a 16/36h, i knew i needed then to run on the larger side. i love both colorways equally, but that said, the blue and yellow pattern runs a whole size smaller than the brown patterned blouse. the fit and fabric even feel different! the blue and yellow is thicker and less flowy and fits exactly to my body instead of bei",5,1,0,General,Tops,Blouses +927,67,Beautiful sweater,"The design and colors on this sweater arguably make it a ""statement sweater"". it has a modified raglan type sleeve. i found the sleeves to fit just fine. for reference, i am 5'9"", 150 lbs., 34dddd, and the medium fit perfectly. it is not a long sweater and, with my height, i wear a long tank top or cami underneath. i love the way it looks.",4,1,0,General,Tops,Sweaters +1022,45,Fabulous fit; distressing will get more pronounced,"I have loved ag stevie ankle denim for awhile now and have never been disappointed with the fit or quality. this pair is no exception to that. i am 5'5"" and about 113, slender with athletic thighs and the 26 fit great. buying them on-line, i wasn't able to check how distressed the denim was. the pair i received in the mail was indeed slightly different in the distressed locations from the on-line image. mine had no distressing on the upper thigh and one medium and one small spot on each leg. onl",5,1,2,General,Bottoms,Jeans +854,48,Beautiful top,I love this top. the color and the embroidery are beautiful and unique. i love the soft cotton arms and back. wish there were more colors.,5,1,1,General,Tops,Knits +927,60,Striking,Very attractive and well fitting. absolutely recommend it.,5,1,0,General,Tops,Sweaters +854,39,This looked surprizingly really cute in person,"I didn't expect the fit to be as cute, i am not sure i like how the model is wearing this top, but untucked, or more tucked both look more falttering on. the color is more vibrant in person, still light turquoise, but richer. i don't think i nbeed petite in this as it is blousy, but not oversized or boxy.",5,1,6,General,Tops,Knits +927,39,A tad scratchier than most,"Also, does run big, though i felt te xs seemed fine (usual size is xs). passed as there were better options, runs big,but mostly, it was scratchy. beautiful color and design, however.",4,0,0,General,Tops,Sweaters +927,58,Fun sweater,This is a cute sweater that can be very versatile. i love to wear it to work with a dress pant as well as with jeans on the weekends. it is soft and looks great on. would recommend.,4,1,0,General,Tops,Sweaters +1009,37,Absolutely stunning!,"I got this in an xs as the s sold out before i could purchase. i can still zip it at 27.5/28"" but would be more comfortable at say 26"". i'm almost 5'5"" and with 3"" heels it skims the floor perfectly. i'm so obsessed with the weight and texture! it is full and fabulous! i'll just need to slim down a tad so i can be comfortable at my sister-in-laws wedding next month. +i wore a very fitted tank and it works perfectly! photographs well and feels very red carpet worthy.",5,1,1,General,Bottoms,Skirts +840,39,Very boxy,This shirt has absolutely no shape. look carefully at the model and you we discover she is cleverly positioned to hide the sheer boxy-ness of this shirt. the print is beautiful but it looks like a maternity shirt. i even ordered the xs at 5'7 and 130 lbs but found it too baggy. returned.,1,0,0,General,Tops,Blouses +927,66,Great royal blue color,"I immediately loved the rich royal blue color of this sweater with its pretty flower, nice fabric and medium weight. nice warm sweater.i have an retailer skirt just like the photo, great outfit. i am happy i ordered it, but hope it shrinks after washing.the small is very big and boxy, sleeves long. i am 5'6 medium build. small usually fits me well. +i recommend downsizing or you will probably take this back.",4,1,0,General,Tops,Sweaters +909,70,Great fit and style,"This is a great cardigan to wear buttoned or open. the fit is perfect; it is fitted and looks great with jeans, skirts or over a sleeveless dress. love the little detail of lace to show skin. fabric has lycra so it hugs your bodice just enough!! love it.",5,1,1,General Petite,Tops,Fine gauge +927,63,Comfort and color,This is a cross between a sweater and a sweatshirt. not a heavy weight but very warm. the color is vibrant. many compliments.,5,1,0,General,Tops,Sweaters +927,49,A true winter sweater.,"I bought this sweater online and was surprised by how thick and fluffy it is. this is a warm and cozy sweater, more bulky than oversized. pattern has a comic book-style art look. it has raglan sleeves and a boxy cut and narrows a bit at the waist. cute, warm sweater for winter--wore with an undershirt.",3,1,0,General,Tops,Sweaters +927,49,Cute but runs large,"This sweater has a fun big bold flower and a nice blue color and is quite roomy. the fit is larger around the arms and chest, which might work well for people who are very curvy on top. it seems to taper a bit to the waist. the roomy fit to the arms gives it almost a bat wing shape. it was too overwhelming on my petite frame, what with the bold flower and the fit, so i passed. but if you like the big flower and color and want a roomy sweater, this could work well for you.",3,1,2,General,Tops,Sweaters +854,51,Perfect!,Bought this top for date night -- something a little special. it's that and also very comfortable. i have broad shoulders and this style accommodates. easy to dress up or down -- perfect!,5,1,1,General,Tops,Knits +1103,43,Absolutely beautiful dress!,"I love this dress so much...what an excellent purchase! i wear this with white leggins and love the look. this dress has a sheath underneath the flower pattern that is form fitting, which i think is way sexy from the back. the front part of the dress is very flowy and moves nicely. i love the high neck on this piece and the beautiful colors. a wonderful pick up from retailer.",5,1,0,General,Dresses,Dresses +1059,35,"Fun, funky but really long","The reason i purchased these pants is because i don't have anything like it. they are fun but nice enough to wear in the work place. well constructed, too. the only thing is they are very long. i am 5'4"" and these are probably 3-4 inches below what the picture shows. i had purchased a pair of platform shoes from retailer awhile back that will go perfect with these pants; however, i my still have to have them hemmed. other than that, they run pretty true to size. i usually wear a size 10 and the pa",4,1,0,General Petite,Bottoms,Pants +1059,38,Very flattering fit,This is a great pair of trousers for work but can also be dressed down. they are very flattering and runs true to size. they're also a bit highwaisted which i love. my only complaint is that they are unlined. i'm not sure why a nice pair of wool trousers would be unlined. however i'm still giving them 5 stars because the fit and quality outweigh the one con.,5,1,1,General Petite,Bottoms,Pants +840,26,,I love this top! i originally bought the brown/purple pattern and wore it all the time so when i saw the blue and yellow on sale i had to get it. the fabric is really soft and breezy - perfect for the spring to summer weather. the sleeves are a little long on me but doesn't bother me. it runs a little large but works with my style. i would have sized down but it wouldn't have fit in the bust (i'm a 36d). i definitely recommend this top!,5,1,1,General,Tops,Blouses +854,56,Great shirt,This shirt is more stunning in person. the color is a brighter turquoise than shown & the details are beautiful. fits true to size & is very flattering/slimming. love it!,5,1,8,General,Tops,Knits +1103,23,Blue lining and awkward arm holes,"The dress i received has a blue lining under the patterned chiffon, unlike the white lining that is pictured. the back of the dress is more open than it appears in the pictures so the blue lining and the large exposed zipper is a significant portion of the dress design. also, the arm holes are cut short which makes the dress feel awkward on. the quality of the dress is very high.",4,1,8,General,Dresses,Dresses +840,73,On its way back to retailer,The print is very pretty but the fabric is stiff and it runs way too big. looks great on the model but awful on me.,1,0,1,General,Tops,Blouses +927,46,Could have been one of the great ones,"I wanted to love this sweater. the color is gorgeous, the pattern unusual, it is soft and warm, and would have gone with so many things. but the cut is awful. mainly the sleeves are way too big, making me look misshapen and my arms look huge. the body was a bit boxy but that would have been workable if the arms had been normal. too bad.",2,0,49,General,Tops,Sweaters +238,47,Beautiful print and design of suit,This swimsuit is so beautiful and fits wonderfully and is very flattering. comfortable fit as well. love it!,5,1,0,Initmates,Intimate,Swim +927,45,Beautigul but boxey,"Love the colors and design, however the sweather is much boxier than what the photo shows, and it is itchy. i am still deciding as it might be fine with a shirt worn underneath it.",3,1,0,General,Tops,Sweaters +854,39,Another great tiny henley,"I have quite a few of these tiny henleys because they are unique and comfortable. the color and details of this one are beautiful. if you are a fan of these too, you won't be disappointed with this one.",5,1,5,General,Tops,Knits +854,44,This top surprised me!,"This too is easy to wear, skins the body nicely & the color is very pretty. some of the retailer tops have issues for me because i find the necklines too low. not this one. the placket lays flat & doesn't expose excessive cleavage. the details on the blouse are pretty & subtle. the top washed well in the delicate cute. just hang it to dry and it looks great!",5,1,1,General,Tops,Knits +854,64,Beautiful blouse,"Bought this for my daughter in law's birthday. it's just a beautiful, feminine design, well made, nice fabric.. she can wear this for work or for lunch or an evening out. very versatile.",5,1,0,General,Tops,Knits +854,61,Pretty blouse,This is a pretty blouse but everything else you wear with it needs to be sharp because it can be dowdy otherwise.,5,1,1,General,Tops,Knits +1094,55,Transitional,I bought this dress in black and i think it will be a great piece to transition with but definitely great during summer. doesn't come down too low on me which is sometimes an issue. the arm holes seem to be on the larger side. i'm 5'3 so it is not this short on me. i'm really happy with this purchase. plus it has pockets!,4,1,4,General Petite,Dresses,Dresses +1033,31,Wanted to love.,"Wanted to love these pants, they are way, way, too long (i'm 5'4 128lbs for reference). i didn't love the way they looked cuff and didn't think it was worth having them hemmed. loved the color. would work well for someone tall and slim.",3,0,0,General Petite,Bottoms,Jeans +825,60,Color is spectacular!,Love this blouse and stunning color. the ruffles make it special and different!,5,1,0,General,Tops,Blouses +861,26,Priced too high,I took this too to the register thinking it was marked down to same price as another tee by the same brand. it wasn't so i ended up paying way too much for a thin tee. will probably return.,3,0,0,General,Tops,Knits +1033,37,,,3,0,0,General Petite,Bottoms,Jeans +1033,32,Looove,"These are such a great fall staple. the silver color is the perfect grey-olive, and the texture is perfect. doesn't feel like there is extra material like most cords, and they hold their shape throughout the day. the fit is just perfect, i can finally order pants online that i know will fit just perfectly.",5,1,0,General Petite,Bottoms,Jeans +1033,21,Not mid waist,"These corodorys are considered mid waist but i interpret them as the perfect height for the low waist or regular rise. other than that, they are beautiful so comfortable not stretchey yet not constricting. i'm 5'6"" 107lb got a size 25 and i need a belt in the waist but the butt and legs are perfect and the waist isn't too big just not constricting. i always get urban outfitter corodorys but this year their quality is bad and these made of up it 100% plus the length is perfect",5,1,0,General Petite,Bottoms,Jeans +1035,40,,"These jeans are great, however they are very long. i am 5'4 and i should have ordered a petite size. even though i never have to buy petite size pants. wish they made these a bit shorter.",4,1,0,General,Bottoms,Jeans +1094,40,Pretty but runs large,"This is a lovely dress looks very expensive, nice fabric and detail. i'm 6ft tall 160lb. i normally order a l/10 but got an m color black because other sizes were sold out. length wise the dress is a little shorter than it looks on the model, but then again i'm pretty tall. you can't really tell on the online photo but this dress has a white undergarment, which makes it great because of the see through detail on the fabric. size wise, i felt like even with an m the dress is oversized. it sits we",4,1,0,General Petite,Dresses,Dresses +1033,59,Comfortable,"I ordered the dusty pink color and love it. works well with many colors and tops. i am 5' 6"" and 121 lbs. with an athletic lean body. i do have a butt however and a small waist. i vary between a 26 and 27. ordered both because i could see this was a very slim pant. i could barely get the 26 up over my hips. the 27 fits like a glove, with just the right amount of stretch. i can't see these pants bagging after wear, which is something we all hate. love these pants and i know i will wear them often",5,1,1,General Petite,Bottoms,Jeans +1033,31,Great corduroy by pilcro,Tts - bought my usual pilcro size. enjoy the fit of these better than the serif style.,4,1,0,General Petite,Bottoms,Jeans +866,32,Really comfortable and cute - extremely soft fabri,"This is probably the softest, most flattering hoodie that i have ever worn. i can dress it up or down and it has drapes really beautifully. great for spring & summer, love it as a coverall at the beach. my partner rarely compliments my clothes and actually told me how much he liked the way it looked on me. highly recommend.",5,1,3,General,Tops,Knits +1033,36,Great pants,"These are flattering and the colors are really nice. they're a bit tighter than other pilcro pants i've tried, but the material is stretchy.",5,1,0,General Petite,Bottoms,Jeans +1094,25,Adorable easy dress,"I love this dress! high quality dress in a classic style. the cotton eyelet detailing is my favorite part and really elevates this from just another black dress. it is a swing silhouette (as described in the product description) so there is a little more volume than a regular dress, but that's what makes it fun and breezy! great dress, can't wait to wear it when it gets a little warmer.",5,1,1,General Petite,Dresses,Dresses +1099,62,I don't get it...,"I know this is supposed to be a loose, flowy fit which is exactly the style i love. however, this is beyond tent-like. i'm 40 weeks pregnant and i can probably fit two of me in my normal size small. fabric is very thin and pattern looks like drab wallpaper. huge bummer, especially after seeing a few 5-stars.",3,0,1,General,Dresses,Dresses +1033,66,Favorite purchase this year,"Love these. i bought the grey which is a grey/taupe/light olive chameleon. totally depends upon what i wear with them. the rolled up cuff is adorable and the material is perfect. the fit is true to size - tight but not restrictive. comfy all day long. and best of all, they don't stretch out over the day. i'm 5'10, a size 6 normally and a size 28 fit me perfectly.",5,1,0,General Petite,Bottoms,Jeans +1094,45,It won't fit over the chest,"I saw this dress in the store and loved everything about it. they had an extra large, i usually wear a large, and i thought it would perfect with some leggings. i tried to get the dress over my chest but no chance. my sister who wears a medium tried to put it in too and she couldn't fit it past her chest either. we flipped it inside out and couldn't find a zipper. maybe the dress in the store was mislabeled but the bust ran very small. it's too bad, it looked adorable and i was so excited to try",1,0,0,General Petite,Dresses,Dresses +1033,52,Beautiful color,"I just received the pink in the mail. i am 5' 5"" and around 140. i ordered the size 29, they fit perfectly. they are a very straight leg with a snug fit. you can adjust the cuff to whatever length you need or unroll them completely. the fabric is of beautiful quality. i basically never wear corduroy because it can add pounds. not so with this pair of pants. i am thinking about another color!!",5,1,0,General Petite,Bottoms,Jeans +1094,37,Perfect comfy little dress,"Just picked this up at the store 40% off sale price, well worth it! the petite hits perfect on my 5'3"" frame, right about where it hits the model in the pic. very well made good quality piece i can see myself wearing quite often.",5,1,0,General Petite,Dresses,Dresses +1033,40,Super cute!,"I bought these cords in navy. the color is beautiful and the fit is great. it is a very slimming fit. i am usually between a 27 and 28, i ordered the 28 and they fit perfectly!",5,1,0,General Petite,Bottoms,Jeans +1033,55,Great cords,I love these cords! soft and great fit. bought three colors!,4,1,0,General Petite,Bottoms,Jeans +1094,41,Retro-mod yum,This dress is a zillion times cuter in real life. it's very retro-swingy and girlish- it reminds me of something mia farrow would've worn in her rosemary's baby era. i have the black version and i've paired mine with tall black gladiator sandals for a more sultry nighttime look and also flip flops for beachy summer days. i think it's a total steal at the sale price.,5,1,5,General Petite,Dresses,Dresses +1033,43,Pretty color,"I really love this rose-pink color. the pants fit like a glove. the cuff is not sewn up, so you can lower the cuff to where you like it.",5,1,0,General Petite,Bottoms,Jeans +1094,28,Not for my body type,"First off, the dress quality is great, the fabric is very nice, the color is great. i am 5'4"", 150 lbs. the dress looked like a parachute on me, very unattractive, because the fabric is pretty stiff. i quite honestly looked pregnant.",3,0,0,General Petite,Dresses,Dresses +1033,57,Cute pants,These pants are a really pretty color and feel nice on. the fit was great and did not really shrink with washing. i received a lot of compliments the first time i wore them.,5,1,0,General Petite,Bottoms,Jeans +871,67,Not best quality but really cute,"I got this top in green and i'm overall happy with it. i agree with the other reviewers that the material is thin and the quality not top notch and it certainly is overpriced for what it is (especially with the shipping fee). however the style is really cute, love the lace up in the back and if flows nicely without billowing as is the case with so many retailer swing tops lately. +i didn't find it to be so see through that it would need a cami (at least not the green color) and a nude strapless br",4,1,2,General,Tops,Knits +871,37,Great summer piece,I love this tank. i didn't find it to be see through at all. it runs true to size. it's super comfy and the lace up detail makes it more fun than a plain old tank top. it's a great basic and i love the lilac color.,5,1,0,General,Tops,Knits +1094,45,,Great fabric and color but fits like a potato sack -- so sad bc i would have loved it,2,0,4,General Petite,Dresses,Dresses +871,53,"Love the color & style, but....","I ordered this in the mauve and it's a really pretty lilac color. unfortunately, the fabric is very thin and you can see your bra right through it. my usual size fit great in the shoulders and bust area, but goes downhill from there. the top is cut wide under the armpits and just hangs funny in front. based on the model picture, i thought this would be a little more form fitting in the front. it's also very long. completely covers my butt in the back and then some. could of been a beautiful tank",3,1,13,General,Tops,Knits +861,53,Quality doesn't match the price,"This is a cute top, but not worth the price in my opinion. i love the colors, pattern and soft material used. however, the fabric is quite thin and just not worth paying $58.",3,1,6,General,Tops,Knits +1099,64,Beautiful lines,Out of stock so quickly in my size. please restock!,5,1,10,General,Dresses,Dresses +1033,41,,"Just got the silver ones in the mail yesterday -- really great fall pants! they are quite a bit more grey than how they look on my computer, so i was a bit surprised, but not unpleasantly. + i'm one of those people who always has trouble with pants because my thighs are bigger and my waist smaller than usual. i'm 5'6"", 120 with a 26 inch waist and 38 inch hips. i ordered the 28 so my legs could fit inside the pants, but there is quite a bit of gaping at the waist meaning that i cannot go without",5,1,0,General Petite,Bottoms,Jeans +1094,39,High quality but too big,The dress is extremely high quality! i purchased the dress in black. the white collared shirt that the model is wearing under the dress is not part of the dress. the dress overall is like a balloon. unless you're extremely tall and skinny this dress makes you look bigger! i ordered the small petite and am 125 lbs and 5'4. i really wanted to like this dress but unfortunately it's going back:( the petite hits 3 inches above the knee for reference.,2,0,1,General,Dresses,Dresses +1094,25,Beautiful design,I really wanted to love this everything about this piece. especially after reading all of the great review i was so excited and looking forward to getting this dress. unfortunately it just did not work out. i ordered a large and it fit fine but the dress did not give me the faltering shape i had read about and was hoping for. it literally just hung on me and made me look wider. sadly i had to return this.,3,0,0,General,Dresses,Dresses +871,29,,"This top has a nice design. i love the lace up back which makes it much more adjustable in shape. if you lace it lower it is more flattering to your waist. however the fabric quality is very poor on the white tank. it arrived with a small tear in the front hem area, which i could have easily fixed. it is very sheer; even with a nude bra, my bra was too visible for my comfort. plan on wearing a full camisole underneath, tank, or bralette you are fine with being on display.",2,0,0,General,Tops,Knits +992,41,,,4,1,0,General,Bottoms,Skirts +1033,37,Love these,"I bought two pair in one week...crazy right? i am 5'11 and 150lbs. i bought the pink color, soft faded pink, which drew me to them right away...kinda soft and romantic pink. then two days later went back (one hour drive) and bought the silver which is really a worn in green color. i feel these are true to size, i wouldn't size down because these are""t super stretchy....feels like it also won't bag out during the day. i really love these cords....and the rolled up cuff is adorable.",5,1,0,General,Bottoms,Jeans +871,37,Ivory is almost completely see-through,"I only tried on the ivory one, but it was so see-through, there was just no way. i can't speak for the other colors. seemed true to size, maybe a little large, but that's the style. very cute design, loved the back. too bad.",3,0,30,General,Tops,Knits +1035,57,Soft and retro,"These flares are so soft and comfy they just may become my favorite go to jeans. +i loved the higher rise because they don't feel like they're will fall off like many low cut jeans do. +the material might be the softest jean fabric i have ever owned. +love the braided styling around the pockets. +the bell bottom may be a bit too wide for my liking but the other aspects make that one thing ok.",5,1,0,General,Bottoms,Jeans +1035,35,"Nice jeans, wish they had belt loops!","Love pilcro jeans and really hoped these would work for me. lovely soft material (98% cotton/2%, which you don't see often anymore!), great length, nice medium rise but for me the deal breaker was the lack of belt loops. the braided detail at the waist is a fun design touch, but as someone with a small waist and wider hips, i almost always have to wear a belt with jeans and that's just not possible with these. if you don't usually wear a belt or have a straighter figure, these might work better",3,1,0,General,Bottoms,Jeans +871,28,Great concept poor quality,Even on sale sale...this tank is not worth the money. the design in the back is adorable & would expect it to be so much better quality but the fabric is flimsy(think old man white tanks that come in a pack) completely see through and lack of shape..i wanted to love this but definitely photographed significantly better than actuality!,1,0,0,General,Tops,Knits +896,41,,Thank goodness they had a special discount because i love this sweater. it is not normal for me to splurge but there was something about this sweater and it didn't disappoint. too cute. a great top to wear to a concert or a relaxed party. i love it.,5,1,0,General,Tops,Fine gauge +1094,32,This will be a summer staple!,"I love this dress. it is loose fitting so be prepared for that. i ordered an xs. i believe the dress was intended to fit this way though and i do not think it looks too big on me. i typically wear a 0 or 00 in dresses. this would be a great dress to wear if you were planning on eating a big meal, ha. i can't wait to wear this dress in the summer and believe i will wear it often. it has more of a boho look to it. i do think it could be worn with heels though. i will probably wear it with flat gol",5,1,0,General,Dresses,Dresses +1033,45,Surprise winner,"When i tried these on in the store in my size, but thought they felt tight, but the person helping me pointed out that they hug you, but are not uncomfortable. i uncuff the bottom and wear them full-length. ended up buying one of each color.",4,1,0,General,Bottoms,Jeans +871,53,Love!,"I got the green one. as the other reviewers commented, yes, the fabric is thin. however, i wear it with a nude bra and a nude cami and i've had nothing but compliments!",5,1,0,General,Tops,Knits +871,41,Great shirt!,"I really like this shirt. i almost didn't order it based on the other reviews, but its cute and comfortable! i didn't get the white color, so that may be why mine is not see through. i just wear it with a bra and its good to go!",4,1,0,General,Tops,Knits +862,29,Ahhhhmazing!!,I loved this shirt online but when it came to my house i loved it even more. super comfy and really flattering! i love it!!! runs true to size!,5,1,0,General,Tops,Knits +1094,35,Carefree cute!,"I love this dress, and on sale it's a total steal. it's true to size, and beyond comfortable! i live in az so i can easily wear this year round. i got the black color and love it. i'm 5'4"" and it hits a little above my knees. love the loose, feminine swing. i feel like skipping wearing this dress :)",5,1,0,General,Dresses,Dresses +862,30,Super cute!,"I ordered an xxs and it fit perfectly. i love the simple, yet girly look of this top. the bottom material is delicate and adds a feminine touch. it looks even better in person than in the pictures. the material is very soft and comfortable. looks great with jeans and flats or boots!",5,1,0,General,Tops,Knits +871,31,Unique and casual winner,I loved this top. i paired it with he ag stevie short and jasper and jeera beaded sandals. look was super cute and casual. i love the fact you can adjust the fit in the back with the lace up detailing. flowly tank without the maternity look. i went with the lavender color and it looks great with my olive skin. i had no problem with sheerness when wearing a nude bra. for reference i am 5'6'' 132 lbs and went with the small.,5,1,1,General,Tops,Knits +1033,50,,,5,1,0,General,Bottoms,Jeans +1035,39,Nice color!!,This pair of flare is just what i have been searching for. the color is a nice vintage blue. i love the fit of the flare however please keep in mind these do run long and larger that size.,4,1,0,General,Bottoms,Jeans +1033,37,"Finally, flattering cords!","I've been on the hunt for flattering cords for a long time, and these fit the bill! bought the silver on friday and am going to order the pink. the silver is really more taupe, as pictured, so if you're looking for true grey, this is not the pair for you. but the fit is fantastic. i'm 5'3"" athletic build about 130 lbs and the 27 fits perfectly. finally cords that don't make my muscular thighs look giant!",5,1,4,General,Bottoms,Jeans +871,34,Great summer top,I tried on this top in store & was a bit wishy washy on it at first. however i am so glad i bought it and have worn it 3x in a week (shh!). it is incredibly lightweight & breathable which is great for hot texas summers. i also love that it has interesting back detail. the other reviewers mentioned it was see through but i don't agree - i wear a nude bra with it and have no issues. it can be worn casually with shorts or dressed up with white denim & fancier accessories. either way it looks best w,5,1,6,General,Tops,Knits +1033,34,Like a hug for your lower half!,"These cords are so soft and snug on- like a hug for your lower half! i appreciate their lack of stretch: they don't seem to ""bag out"" like other cords can. i like that the fabric is soft but the shape is more stiff. the grey is slightly lighter/more silvery in real life than the picture depicts. for ref, i'm 5'2"" and 103lbs and i bought the 24p.",5,1,2,General,Bottoms,Jeans +1033,56,,,5,1,0,General,Bottoms,Jeans +1035,37,,"Very comfortable, but ran small. great quality and great look.",5,1,0,General,Bottoms,Jeans +1033,39,Hard fit,The color on these are amazing. i am 5'2 and these are really meant for that long lean profile. note they have very little stretch.,3,1,7,General,Bottoms,Jeans +908,34,Comfortable and classy,Top feels like pajamas but looks very classy. the sweater material is so soft. i wear it with a blazer over the top and i get so many compliments on it. wish they had it in more colors! must have!,5,1,0,General Petite,Tops,Fine gauge +1033,34,Great pants,These are awesome! i have the pink which is a very light faded sort of color. they are beautiful and very nice quality. they are slimmer and stretchier then i imagined but very flattering.,5,1,0,General,Bottoms,Jeans +1035,36,Love them,I just received these jeans. love them. i usually wear a 29- i ordered a 30 and they fit great. they are too long- will need to be hemmed. but the fit is great. the material is soft. lovely. great buy.,5,1,0,General,Bottoms,Jeans +867,36,Great casual top,This top is comfortable and yet with some stylish detail. the fabric is soft and the lilac color looks great. it hangs loose but with a nice drape. at the sale price it is not to be missed.,5,1,1,General Petite,Tops,Knits +895,44,Big but so good.,"Yes, it is big. but it is also amazing. so soft, the colors are great, and the hood, well, the hood makes it. great colors for fall. it's a poncho. it's not supposed to be fitted. i'll be wearing this all fall through winter. love it.",5,1,0,General,Tops,Fine gauge +404,35,Flattering,"Holy cow! i just got a new bathing suit so i cannot splurge again, but this is flattering!!!! i like the more tame colors which doesn't scream ""look at me"" (let's be honest, there are certain times of the month where we'd rather crawl in a ball and hide). the design along the sides is absolutely flattering and slimming on anyone. i also like the skin-tone/coral detailing around the top of the breast that extends all the way around the back. retailer is really winning with their swimwear thi",5,1,7,Initmates,Intimate,Swim +895,35,Very pretty and comfortable,"I like how styling and comfortable it is, i bought it in both colors. definitely a nice piece for fall/winter in this houston weather.",5,1,0,General,Tops,Fine gauge +1082,36,Disappointing,"When i received this dress today i was really excited to try it on. it is a pretty dress. looked good in the pictures. however, when i examined it and proceeded to try it on, i was really disappointed. the quality is ok, but not expected for the price paid. and the cut is off. it is extremely small at the top. i am not big by any means( 32d,109lbs, 5'0""). the bottom part fit. sadly, not impressed. this one is going back :(",3,0,7,General Petite,Dresses,Dresses +895,46,Poncho x3,"Wore this poncho and received 5 compliments before the school day even began! love the pockets and hood. bought three at the sale price - one for me, a friend, and my niece - different ages and sizes but everyone of us love this poncho.",5,1,0,General,Tops,Fine gauge +1082,36,Beautiful and comfortable dress,This dress is beautiful. fabric is thin but the details are perfect.,5,1,2,General Petite,Dresses,Dresses +1020,43,Not the right fabric,"I ordered this skirt because the 4 i tried on in store was huge and the 2 was way too small. the sizing was an issue so i thought i would try another 4. the skirt that arrived by mail was so wrinkled it was obvious that a day of wear would turn it into a nightmare of unflattering creases and stretched out areas. i like the concept of the design with the button front and a-line ""princess"" seams in the front and back, but i just feel the fabric in this skirt has too much stretch. i returned it.",3,0,0,General,Bottoms,Skirts +895,38,Wanted to love this...,I saw this on a mannequin in the store and so wanted it to work but was just too oversized and bulky. very good quality and material.,2,0,8,General,Tops,Fine gauge +1078,34,Perfection!,The photos do not do this gorgeous dress justice. the iridescent material makes it perfect for a fancy date night and i received complements from complete strangers. would also be great as a wedding guest or bridesmaid dress!,5,1,0,General,Dresses,Dresses +1078,31,Detailed and classy,"I have loved this dress from the first time i saw it. but the price scared me away until a sale came to be that meant i could justify buying it. honestly it's worth it's original price, i'm just too much of a scrooge to pay it! the details are adorable. the length makes it very versatile. it seems well made and pretty weighty. fits nicely due to the elastic in the back; i got an 8.. i weigh 170, 5'8"" with a small chest. most of the dresses i buy are just as much art as they are fashion and this",5,1,0,General,Dresses,Dresses +1078,56,Gorgeous,"I thought this dress was beautiful, but i felt it was a little young for me. i am 55 and was looking for something to wear to my niece's wedding. if i had been the mother of the bride, i would have kept it, but....",5,1,0,General,Dresses,Dresses +895,36,,"This poncho is lovely. i found it fits perfectly. im 5'4"", 125 and got the xs/s..just long enough (loke jacket length) and the hood doesnt add extra weight (doesnt drag it down the back). arm holes are approriate size. very cool piece for any weather layering.",4,1,0,General,Tops,Fine gauge +1078,48,Absolutely gorgeous,The appliquã© on this dress is well done. i would recommend it to anyone. the design is super flattering and feminine.,5,1,1,General,Dresses,Dresses +404,36,Cute suit but order a size (or two!) up!,"Cute suit over all. cups are lightly padded, which is nice if you're concerned about modesty. it runs really small in my opinion. i am 5'7"" and 125 lbs. i almost always wear a size small, but i ordered a medium in this suit, and although it fits and i'm sticking with the medium, i'm wondering if a large might fit even better. it's also too tight on the leg openings, in my opinion. i like that the straps are adjustable. the pattern is flattering, and i like the suit well enough to keep it. but i",4,1,4,Initmates,Intimate,Swim +944,46,Everyday,This is great just to have and throw on.it is a everyday piece.,5,1,0,General,Tops,Sweaters +404,32,Very small leg openings!,"Uncomfortable in the leg area, but otherwise very flattering.",4,1,3,Initmates,Intimate,Swim +895,37,Not what i'd hoped,"I had this in my cart for a week before i took the plunge, because i thought it would make the cutest boho statement piece that could go from beach to casual evening outings. i'm 5'9"", so i got the m/l to ensure length. maybe that was wrong? if the ""laid flat width"" was included maybe that would have been more helpful, but this thing was massive and looked like a potato sack. the side slits (of course hidden in the photos) came up to just over my natural waist, enhancing that effect. i loved the",2,0,29,General,Tops,Fine gauge +895,51,Great poncho,I love this poncho because it's the perfect weight and it is softer than i thought it would be. i will get a lot of use out of it. getting it on sale made it even better.,5,1,0,General,Tops,Fine gauge +867,46,Flattering for xl,"I ordered the lavender version in xl. it fit me as shown on the model so i think it runs true to size. it is a little shorter than shown. it hits my waist & i'm 5 ft. 5 1/2 in. for reference. it fits close through the arms & body but with a comfortable, stretchy material. a tank underneath is needed. i love the draping. it's very flattering. the color is more of a gray than purple. i took the chance on it when it was on sale and it's now a favorite. great neckline for wearing necklaces too.",5,1,0,General Petite,Tops,Knits +895,24,So comfy!,"This is going to be my go-to winter sweater for work! this piece is super comfy, yet a bit more dressy than just a regular sweatshirt. it will be an especially great layer for the ups and downs of the office thermostat.",5,1,0,General,Tops,Fine gauge +867,49,Good idea- bad execution,I loved the idea behind this shirt but it just hangs around the waist with tons of extra fabric. i suspect the model in the photo has the shirt pinned. totally unflattering making the chest look small and your midsection appear huge. maybe if you size down it would be better- xs was not available for me to try. also the lavender color is really washed out...,1,0,0,General Petite,Tops,Knits +783,37,Pajama time,"This pants are very comfortable, and add a little flare to my typical ""mom pajama"" look. i found them true to size; size small fit my 5'7, 135lbs frame. comfortable to sleep and lounge in!",5,1,0,Initmates,Intimate,Sleep +1020,38,Recommend with reservations,"This a great skirt for someone with a straight or boyish figure. this skirt does not accommodate a curvy figure - small waist, feminine hips.",2,1,1,General,Bottoms,Skirts +1020,25,Great quality skirt!,"I've been wanting a higher-waisted, button-front skirt. this one was perfect because of the texture on the denim.. it makes it dressy enough to wear to work if you are in a business-casual setting. i think it has a ton of versatility for multiple seasons. i'm normally a 0 or 2 in dresses (5'6, 118 lbs) and i ordered a 0 in the skirt, as the natural waist is a little on the large side. i love it!",4,1,0,General,Bottoms,Skirts +867,70,Comfort & style in one great top!,"The design is loose and forgiving, and it is very comfortable. the fabric is soft and light weight, and i love how the sleeves are full cut so even those without stick arms can fit in them! it drapes beautifully and is quite lovely on. you can easily dress it up with jewelry or wear it over jeans for a great go-to top on the weekend. i also bought the purple version - it says it's mauve in the description, but it's really more of a pale lavender color. still very pretty, but i wish it was mauve!",5,1,2,General Petite,Tops,Knits +1020,39,Small,"Tried this on in store and it runs very small. i am a size 4, but have curvy hips, so i sized up to a size 6 and i couldn't even button it. i was hoping it was more of an a-line, but it's fit more like a pencil skirt. not very flattering on my body type. overall, cute design, but not for me.",3,1,2,General,Bottoms,Skirts +867,65,Love it!,Bought this top in black and i love it! fits true to size with arms a little snug but because of the stretch in the fabric it is fine. the top is very flattering and looked like the model. the front is shorter but very flattering! love it.,5,1,0,General Petite,Tops,Knits +1083,41,Shirtdress,I ordered the large since the med wasn't available and it didn't complement my figure because it was too loose all over. i like the design detail with off-center buttons and the fabric is a nice quality.,3,0,0,General,Dresses,Dresses +1020,38,Pretty cute but...,"...for real, reinforce all the buttons before you wear it out. i've had three different ones pop right off.",3,1,0,General Petite,Bottoms,Skirts +895,22,Perfect for fall and cozy days,I absolutely am obsessed with this poncho! it is the perfect piece for fall and so easy to layer.,5,1,0,General,Tops,Fine gauge +867,45,,"This runs way big, i'm a size 8, purchased the medium. it's just big with no shape.",2,0,4,General Petite,Tops,Knits +867,29,"Beautiful, easy top","I love this shirt so much i came back and bought it in black (i originally got the lavender color). it is super easy to wear and has a delicate quality to it (though i washed it on a regular cycle and it's holding up well!). as you can see from the photos, because of the wrap style, the middle of the front is shorter than the rest of the shirt. i've worn this top with regular rise jeans and haven't had a problem, though if you lift your arms, your belly may show. i purchased my usual size small",5,1,0,General Petite,Tops,Knits +1104,48,Must have,"It's is an absolutely gorgeous dress, one of a kind . you must have it in your wardrobe . my seamstress needed to adjust it just a tiny bit but it's truly fits to size and is emphasizing the figure.",5,1,0,General Petite,Dresses,Dresses +1020,26,Really disappointed with the quality.,"I loved this skirt when i tried it on. the material is soft with a bit of stretch. i'd say this runs a little large. for reference, i'm usually a size 2/4 in retailer and the 2 was still a little large towards the end of the day as it stretched out. + +however, my disappointment was with the buttons.i wore it for a day when all of a sudden the top button popped off. fine, that button is the most used. i sewed it back on myself and even reinforced the top three buttons that i use to take on and of",1,0,4,General Petite,Bottoms,Skirts +1083,32,Love it,This dress is awesome - i actually first saw it on lucy lui on elementary and thought it had to be from retailer. sure enough it was and it was on sale. i got the blue and would have gotten both if they had my size. i am usually a m and found this fit true to size. i always love a wrap dress and this with the buttons keeps it from spilling open - love it!,5,1,0,General,Dresses,Dresses +895,65,Beautiful colors,"I bought the green motif and the colors are beautiful and look just like the picture. as others have mentioned, it does have a high slit on the side that has a tendency to separate and look bulky. i just put a couple of small hooks to keep it together. i normally would wear a medium or large, but based on other reviews, i ordered down to the small and it was perfect. since i live in the south where it can stay quite warm through fall, it will be a great transitional piece.",4,1,0,General,Tops,Fine gauge +751,48,So close...,"I was hopeful my size l would fit after another pair of leggings from antrho in this order was too small. these went on easier and i was feeling good until i reached the lower abdomen and everything came to a screeching halt. i'm not sure they are too small, rather, i believe, they are styled to be low-rise. not sure why anyone would want that in a legging, but i'm new to this athletic-wear trend. regardless, i won't be wearing these!",3,0,0,Initmates,Intimate,Lounge +909,66,Underwhelmed,"I've never spent this much money on a sweater but took the plunge using the retailer day discount. still painful but hopeful it would be worth it. i ordered the xl hoping to compensate for the shorter length. and it fell just below my hip bones so that part was okay. while this looks like the cashmere is on the thinner side, so the garment flows nicely, it's not. the weight of the sweater is substantial, heavier and much thicker than it looks. the color is different too. it's tan and grey, not whi",2,0,0,General,Tops,Fine gauge +1083,34,,,4,1,0,General,Dresses,Dresses +585,44,Better than expected!,"I was not expecting the material to be as thick as it is. it has a wonderful drape and hand to it. i love the string tie straps so i can adjust it to fall on my chest a little higher. it seems that everything is too low-cut for my modest taste, but the ties let you decide how much cleavage to show. finding the right bra is always a little bit of a challenge with a cami, but i usually wear them under sweaters and jackets, so i'm not terribly concerned.",4,1,0,Initmates,Intimate,Layering +895,54,Adorable,I love this poncho. i would wear it to the beach or even for fun outing like wine tasting!,5,1,0,General,Tops,Fine gauge +867,34,Another basic top to add to your work wardrobe,"Love the draping on this top - covers the stomach area, and looks great on curvy girls. +i am between sizes, and ended up purchasing the m. fits well. i chose the mauve, which is more of a light gray/purple.",4,1,0,General Petite,Tops,Knits +1078,48,Stunning dress,"Classic retailer stunning dress! the embroidery is beautiful, with the beads and details. the blush color can be difficult with my pale complexion, but i didn't have trouble with this. i got a ton of compliments. it looks a bit flat on top on the model. i'm not very curvy, and it accentuates my curves nicely. it doesn't hang down quite so much as it looks in the picture, but has a more classic fit and flare shape, very flattering.",5,1,0,General,Dresses,Dresses +895,22,,"I agree with the other reviewer. the colors were fabulous, but it was boxy and fit me like a sack. the slits on the side really detracted from the cute fabric and the hood drooped way in the back due to being able to pull away from the slits. it was really a cute idea and i'm sad it didn't work. i started not to order it based on the first review but i wanted to give it a chance,--i should have listened !",2,0,12,General,Tops,Fine gauge +895,54,Keeper,"Wasn't expecting this to look good on when i grabbed it off the sale rack. to my surprise it's very cute. the very high up slits for the 2 front panels and the lightweight knit break up the heavy appearance of this poncho when it's on. you can slip your arms out of the sleeves to keep warm when the evening gets cooler. i love it. got the gray and black stripes on off white background. will try belting the two front panels, as another reviewer suggested. i'm 5'3"" petite. so, it doesn't swallow me",4,1,0,General,Tops,Fine gauge +1020,32,Cute but runs huge,"I have been looking for a button-down denim skirt that would be short enough for me, and was glad to see that this one came in a petite. i ordered it in a 2p and a 4p with plans to return the one that didn't fit. 99% of the time, one of these sizes will fit me. in this case, however, even the 2p was slightly too big. i'm going to exchange for a 0p. for anyone who normally wears a 0, you might want to pass on this, as it will probably be too big. + +on the plus side, it's quite lightweight and so",4,1,4,General Petite,Bottoms,Skirts +895,39,Fabulous fall poncho,"I love this poncho!! it's perfect for chilling saturday mornings at the soccer field. it's a nice warm layer, but doesn't get to hot. pair it with a long sleeve shirt, jeans and some boots and you're set.",5,1,0,General,Tops,Fine gauge +1020,58,Love this skirt,I have been looking for a skirt like this and love this one. it does sit a little high on your waist but i like that and think it's more flattering (at least on me it is). i marked that it runs try to size but may run a tiny bit on the larger size. i usually wear a 4 but a 2 fit great and it's been a long time since i've worn a 2!,5,1,1,General Petite,Bottoms,Skirts +1020,36,Great wardrobe staple,Adorable skirt. thought the a-line and length were great. 5'4 and 135lbs. went up a size and it fit perfect. can dress it up or down. really happy with this wardrobe staple. not too stiff denim of so moves well and feels comfortable.,5,1,1,General Petite,Bottoms,Skirts +895,53,Great top!,Love it to layer. it is not heavy the perfect weight & soft material. my daughters all want to steal it!,5,1,0,General,Tops,Fine gauge +867,33,Love!,"I got the purple and its a lovely muted purple, almost lavender. nice quality, flattering. i recently had a baby so this is a nice shirt to hide my wobbly bits. i'd recommend to anyone (with or without wobbly bits).",5,1,8,General Petite,Tops,Knits +1078,29,"Beautiful, but wasn't quite right","In theory, this dress was perfect for me. the colors, the embroidery, the sheer top and keyhole back... so romantic! sigh. something about the fit just kept it from being a wow moment. i'm usually 10-12, the 12 was way too big, the 10 more fitted, but still it wasn't quite right. the sheer part dips quite low, and sizing down helped, but it could still be a lil dangerous. i kept feeling like it wasn't defining my waist enough and wanted a tighter waist and more full skirt. maybe i would have fel",4,1,1,General,Dresses,Dresses +867,41,,,5,1,0,General Petite,Tops,Knits +1011,30,"Cute fit, love the pockets!","The only critique i have of this is that the zipper gets stuck at the waistband every time i try to zip it up (even when it's not on me - just trying to hang it up) the fabric is strange but really cool, and the fit is nice, although a little tiny bit big on me. i am 5'5"" with a 27"" waist and i got a size 2. the pockets are awesome!",4,1,1,General Petite,Bottoms,Skirts +895,62,Gorgeous!,I wish they would have shown this belted as it is beyond striking if you slip you belt thru the top of the slit.under the fabric and bring thru the front belting only the front leaving the back full...stunning and chic! because of the colors this will be incredible in the fall...i plan to wear with all my on trend overalls and booties...madly in love with it. i am certain if all these 1 star reviwes played with it in the fashion they too would have given 5 stars. the knit is beautiful and again,5,1,2,General,Tops,Fine gauge +895,43,Pancholicious!,"Great green color combo, runs a bit large but, hangs nicely! really spruces up a t-shirt and jeans. wish i purchased the black and white as well!",4,1,0,General,Tops,Fine gauge +895,46,Nice neutral colors for fall,"I am usually a medium/large and was pleased to fit in the small/medium that i ordered after reading some of the reviews. lovely piece, great to wear over a short sleeve t-shirt, 3/4 of a sleeve shirt or even a long sleeve shirt when weather permits here in florida. very happy i ordered this!!",4,1,0,General,Tops,Fine gauge +1078,23,Maid of honor dress to be...,"This dress is adorable! i plan on wearing it as maid of honor in my sister's wedding next year! i am in between a size 4 and 6, usually go with 6 because i'm a bit busty and have some hips. but since i got it after it was put on clearance, only a size 4 was available.it turned out to be a perfect fit, literally. i tried it on bra-less (if i had any sort of padded bra, then i would have trouble fitting in the top section), which worked out perfectly since the arm holes are a bit low ( i think it",4,1,0,General,Dresses,Dresses +1020,44,Nice basic skirt,"This skirt was placed next to the gallery skirt (corduroy skirt) and i thought it was the same until i touched the fabric and realized it was denim. the material is not the average stiff jean type but much thinner cotton material. i am surprised that this skirt is now released because i feel that it should have belonged to the summer collection. i think it is a nice basic casual skirt if you need one. kudos for the unique buttons, the first button is decorative which stands out from the rest of",4,1,0,General Petite,Bottoms,Skirts +895,32,,"Great fabric and design, beautiful pattern with flattering angled bottom hem and fringe. so soft and comfortable. the hood is cuter left down. perfect transitional piece for fall. i got the neutral color and it is so easy to wear. i'm 5'3"" and got the s/xs size and feel that it is still wearable. i second the opinion one reviewer mentioned about wearing a belt through the slit over the front part. definitely works well and makes for an effortlessly stylish look.",5,1,0,General,Tops,Fine gauge +895,54,Retailer clothes,I love all my retailer clothes! it's my favorite store! i even love the displays!,5,1,0,General,Tops,Fine gauge +1011,54,Dramatic in every way,"Love the clean lines, the texture, and the slight sheen on this skirt which does run a bit large in the waist. the online photos are very true to what the fabric looks like. it is a stiffer, but lightweight fabric so the skirt stands away from the body. the quality of the finish is excellent and i really appreciate the hidden zipper and pockets. +. +fit: runs large in the waist. the size 2 i have measures 27"" on the top inside of the waistband, and i think the model is wearing a size too loose oth",4,1,0,General Petite,Bottoms,Skirts +1020,45,,Love this skirt length and the detail buttons. also great give to the jean fabric. looks great on and runs true to size.,5,1,0,General Petite,Bottoms,Skirts +895,42,Good value,"Flattering poncho, pair well with leggings or skinny jeans and booties",4,1,0,General,Tops,Fine gauge +1082,32,Wanted to love it,"The dresss is much shorter than described. very see thru, though guess you can tell from picture. expected more for the price.",2,0,3,General Petite,Dresses,Dresses +272,41,Beautiful,"I was a little bit afraid to purchase this because of the price, but i am so glad i did because this is a gorgeous swimsuit. the quality is amazing, and the colors are exactly as pictured. i have a small-ish frame with a big bust, and this style keeps my figure very flattering without making my chest look too big or heavy.",5,1,2,Initmates,Intimate,Swim +1095,40,,"I normally wear a 4, and that technically fit if i didn't plan to sit. i went a size up and it was still gorgeous but now i could breathe. it is incredibly sexy yet sophisticated, my husband is always asking why i need another dress and when he saw me in he fitting room his eyes lit up and he said you definitely need to get this dress. needless to say i'll wear it on our next date..",5,1,1,General Petite,Dresses,Dresses +1058,36,"Weird fit, makes you look like you're on stilts","I was so excited about these pants but they were a total disappointment in person. the fabric is a rough gauzy texture. the bottom has a big hem that weighs down the pants and makes them hang funny like you are walking on stilts or something, they do not hang or move well on the body. also, they are very long but small in the waist and have a high crotch so the fit is pretty off. sadly, these are going back.",1,0,14,General,Bottoms,Pants +1095,37,Pretty!,"I am five foot tall, about 103lb and got the petite zero - it fits perfectly and i love the flower pattern! great for weddings, parties or work.",5,1,2,General Petite,Dresses,Dresses +985,53,Instead of denim,"Great little summer jacket that takes the place of a jean jacket . i am not usually fond of olive green but this is a bit deeper than a drab olive without being too green. it is sooo soft and comfortable that i find i am pairing it with all sorts of outfits. fits tts if you are going for the look on the model- not too fitted. +i highly recommend this timeless piece.",5,1,7,General Petite,Jackets,Jackets +1094,33,Average,"This dress is made of nice thick stretchy fabric. comfortable on, but fairly tight and body hugging. i liked the fabric, but it was the length that got me. i tired on a 6 - i'm 5'6"" and this dress was just at that awkward length. made me look short and stunted. not a wow piece.",3,0,8,General Petite,Dresses,Dresses +1095,21,Beautiful dress,"I am 5'3' and 120 lbs for reference, and pear shaped and this dress in a 4 petite fit like a glove. granted, not a dress i would want to gain weight in, but fit perfectly. usually i am a 2 in retailer dresses but read other reviews and definitely made the right choice. it hits at a very flattering length even for someone as short as i am.",5,1,0,General Petite,Dresses,Dresses +877,63,Love it!,I love this shirt! it is so different from most things i get but such a fun change. the colors are bright and fun! you totally do not have to be western to enjoy this shirt and it's fun for a good country dancing/party/concert too. my roommate has already asked to borrow it (as in she's wearing it at a concert as i type this!). it is incredibly comfortable! i got the xs and was kind of surprised it still felt a little big. but i kept the size to wear it half tucked or even kind of oversized. i w,5,1,0,General,Tops,Knits +828,25,Staple top,"I bought this top to have so that i can pair it with a lot of my other wardrobe pieces. the top is amazing! it is soft, great fabric, a cute cut, and can be styled in so many ways! definitely worth the buy!",5,1,1,General Petite,Tops,Blouses +1095,21,Great dress,"I ordered this dress, and loved, loved it. beautiful, great fabric. the length was even perfect for me and i'm 5'4"". i am usually a size 8, but ordered up to a 10 because i am a little woman with the exception of my chest. i have ordered dresses before from retailer where i had to order certain dresses a size larger and they worked. unfortunately this time, it wasn't to be. tried the dress on and it fit nicely until the side zipper got to my chest area. i would have ordered another size lar",5,1,1,General Petite,Dresses,Dresses +1095,46,Classic/modern style,"This dress is made well; the construction/sewing details give the dress a beautiful shape. it has a nice zipper at the back, and fabric feels light. pockets are a good size. skirt flows, but doesn't feel heavy. fit is comfortable. i typically wear somewhere between a size 4/6. i ordered a 4 and it fits just right. i'm 5""6 and it falls below my knee--length is nice. armholes are a bit lower than i thought, but not too low. it's a classic/modern look. it was sold out when i first wanted to buy it,",5,1,1,General Petite,Dresses,Dresses +1095,37,"Great design, sizing tough","I absolutely loved this dress when i first saw it. the fit was not quite what i expected. i usually sport a 0 or 2, but this dress wouldn't zip up all the way in a 2, so i return/exchanged it for a 4.",4,1,0,General Petite,Dresses,Dresses +1059,46,Fabulous pants,"I have a booty, and these pants love it. they fit my curves (size 10 with flat abs, but as i said a booty) all while looking professional. at m y husband's insistence i'm buying they grey too.",5,1,3,General,Bottoms,Pants +1095,62,Size up for comfort,"Maeve really keeps me guessing on sizing...usually too big, but this one is too small in my normal 4, so i went with the 6 for comfortable movement while still maintaining the intentional fitted look. fabric is of beautiful quality, colors are true to the picture - just a gorgeous timeless dress that i imagine wearing to many special events, or with a denim jacket over it for work :)",5,1,2,General Petite,Dresses,Dresses +1142,20,Order only if you like super sparkly metallic trim,"I was excited to buy this sweater based on the online pictures. although the ombre coloring is beautiful in person, i did not like the metallic trim at waist & cuffs. the pictures don't really show the extreme brightness of the trim. it looks literally like xmas ribbons were sewn into the sweater. to me it looked like something a child would wear. i ordered the 1, which was the smallest size offered. it is oversized without much shape and i felt it added bulk around the middle.",3,1,0,General,Trend,Trend +1059,41,Stretch out,"These pants are so cute and comfortable that i ordered each color. after wearing the black ones one day, they stretched out so badly that i returned the other two colors. i wish the fabric was thicker with more stretch because the style and cut is really cute. bummer",3,0,0,General,Bottoms,Pants +985,33,Perfect!,"This jacket is so great! i've gone through a few seasons now trying to find that one perfect little olive green jacket. this one wins! the color is nice and saturated. the fabric is soft and drapey so it's still flattering to my shape. it's slightly relaxed and i think it creates an ""easy"" look. i've already worn this with a dress, and it will finish off many other looks in my closet! yea! i'm 5'6"", 138 lbs and took a medium.",5,1,0,General Petite,Jackets,Jackets +831,38,Lovely top for fuller figures,"Gorgeous top, and generous to fuller figures. i meant to order an xl but somehow ended up with the l. was positive i'd have to return it, but it was perfect. went back and bought the white. it's one of those wonderful pieces that feels classy and fun at the same time. very flattering fit.",5,1,0,General Petite,Tops,Blouses +877,75,Perfect western scene,"Love the print so much!! it is a bit boxy, but for the length i needed to size up to a s from my usual xs with my long torso at 5'7"", 111lbs. i'm thinking that sizing up will also save me from any potential dryer accidents. but it doesn't really matter what size you get-just get it for the cute print scene!!",5,1,0,General,Tops,Knits +1095,23,,"This is a great dress that i wear to work, but would also wear to a cocktail party or wedding. it rides up a tiny but, but is long enough that i feel completely comfortable. it is tiny up top so i'd recommend ordering up if you have any chest - i'm 5'4"", 100lbs, bra size 32b and it was a two-person job to get the bodice zipped.",4,1,3,General Petite,Dresses,Dresses +965,41,Wish it worked,"I had such high hopes for this jacket based on the photo, i even waited for it to come back in stock. the detail is beautiful but it is shapeless and boxy. for reference i ordered xs, and i am usually a 0/2 on top (small chested). it might look better on someone with a larger chest but looked like a sack on me. so disappointing.",3,0,6,General,Jackets,Jackets +840,46,"Scratchy material, plaid doesn't align","I ordered this top in size xl. there is a lot of excess material below the empire waist so it flows out too much. this accentuated my pear-shape and was unflattering. the sizing on the top portion & sleeves was true-to-size. + +the material is so rough, scratchy & uncomfortable. they should have used a softer fabric. the pattern alignment is terrible on the one i received. at $100, i hoped the plaid would have flowed in a continuous, matching line. i didn't notice the mismatched sleeves of the",1,0,3,General,Tops,Blouses +1059,62,Love these pants,"I have a hard time finding slacks that are a step up from jeans and that is why these are such a great find. they feel great, fit well, the price was good even before i got them on sale, i love the color and they seem like they will be easy to take care of. wish they came in more colors..",5,1,0,General,Bottoms,Pants +1095,66,Beautiful fit and excellent quality,"I absolutely love this dress! i purchased it in my usual size 2 petite and it looks as though it was made for me. the combination of the placement of the pattern and the cut of the dress was quite figure flattering. the only tiny issues i had were that the dress fell to the middle of my kneecaps and may need a hem; in addition, the dress takes a bit of maneuvering to get into due to the side zipper and the close fit. despite these issues, i feel that it is definitely worth buying and i will be k",5,1,3,General Petite,Dresses,Dresses +877,33,Wild wild west,"I really like this shirt. i fell for it after seeing it paired with grey jeans, but when i searched the entire website i couldn't find it. then a couple of days later it appeared. i was super excited and i'm glad i ordered it. i was not disappointed. the shirt is soft and long enough to cover my waist area without riding up if i bent at the waist. the colors are very vibrant and its quite stylish. i ordered a medium and it fit perfectly.",5,1,2,General,Tops,Knits +1095,31,Classic but unique,"This dress is really beautiful. i was looking for something to wear to a summer 6 o'clock wedding, and this dress will work perfectly. the fabric is smooth and has a tiny bit of sheen to it which makes it look a little nicer and more formal. however, you can easily dress it down. my only issue was the length. i'm 5'4 and this dress was way too long. definitely need to take off about 5 or 6 inches! i also had to size up. i could have tried the petite, but it fit so well everywhere except length,",5,1,7,General Petite,Dresses,Dresses +831,34,,,5,1,0,General Petite,Tops,Blouses +985,53,Cute!,"I bought both the small and the medium and seem to be right in between. the small is a tad tight through the shoulders and arms, but the medium feels a bit baggy. it is soft and hangs nicely - i just need to figure out if i will wear it enough to justify the price.",4,1,0,General Petite,Jackets,Jackets +877,22,Darling!,"I've been moving toward a simple tee and jean wardrobe, and this is the perfect addition! it's so fun and different and so comfortable. i've been loving retailer's new tee's! it runs a little large but in a cute way.",5,1,0,General,Tops,Knits +1095,48,,"I found that this dress ran very small. i am true 8, ordered a 10 and it was snug",1,0,2,General Petite,Dresses,Dresses +1095,41,Great dress!,"I'm 6 ft tall and usually wear a size 10/12, but had to size up to a 14 because this dress runs a bit small around the waist. it's a beautiful dress. it hit me right below the knee, so might be long on shorter gals. i received many compliments on this dress. the colors are beautiful. the main color of the dress is a dark navy. it looked black online. definitely buy this dress! it's a great work dress and you won't be sorry that you did.",5,1,0,General Petite,Dresses,Dresses +1094,57,Great versatile dress!,"Love this dress! can be dressed down or up for dresser occasions. i did order a petite which i usually don't do but due to the length being so long but the petite is just right hitting a couple inches below the knee. i'm 5'4""",5,1,6,General Petite,Dresses,Dresses +877,25,Love love,Love this shirt and the print. i would wear it all the time if socially acceptable. i've only worn it once but have already gotten so many compliments. there are hints of neon in the coloring that can't really be seen in the pictures. i saw it in store and fell in love and then decided to splurge when i saw it online and couldn't think of life without it.,5,1,0,General,Tops,Knits +965,47,It's cute,"I thought it would have been heavier, surprised it was so thin but it works. i live in the deep south so it doesn't get that cold. i wore it to dinner with a black top and jeans, it was super cute. i'm happy with my purchase.",4,1,0,General,Jackets,Jackets +877,82,Western t,"This is a cute t with colors that blend with so many things i already have in my closet. +and, i love the western theme which isn't at all girly. usually i purchase v-neck items because +they suit me best, but i couldn't pass up the idea of cactus and succulents. it will be a fun +shirt to wear.",4,1,0,General,Tops,Knits +985,59,,"This came in the mail today. i wasn't sure of my size, so i ordered a s & m. i tried on the small first and it fit perfect. i never tried on the medium. fyi, i'm 5'5"", 125 lbs., & 34a in the chest. this jacket is a keeper. +it is so soft & comfortable on; i love olive as it goes with everything; it can be super casual or dressier depending upon what you're wearing. i also like that it is collarless as that better allows for a wrapped scarf. i will use this jacket a lot.",5,1,5,General Petite,Jackets,Jackets +877,67,Perfect print tee under denim shirt!,"I bought both of these tees and they are perfect under my new fringe denim cloth & stone shirt and dress ....had to have both! the gray tee is so cute has every color of all my pilcro chinos...what a bonus. looks too cute paired with the denim shirts and is a great fall transition. i dressed up the cowboy tee with a chunky green stone necklace. i bought the small and for reference am 5'3"" and 32h bra size and have no pulling so they are tts and only slightly shaped which works perfect for us bus",5,1,0,General,Tops,Knits +1142,83,Omg! gorgeous sweaters!,"I just received these sweaters............couldn't decide which color i liked best....blue and green are my favs. +and so i ordered them both! +they are a wow ! +i am totally in love with both of them. +they are sooooooooooooooo beautiful! +beyond my wildest expectations! +i wear a size 8 and ordered the size 2 and it fits perfectly......a 2 is a size medium per call to retailer before i ordered.....and 1 is small, ad 0 is extra small. +this is a bulky, cuddly winter sweater with a touch of glam w",5,1,1,General,Trend,Trend +877,35,Love this shirt!,The print is even better in person! true to size. flattering fit.,5,1,0,General,Tops,Knits +1094,36,,"This is the dress that i have been waiting for all season. perfect color. the material is also ""firm"" without being heavy or thick (if you know what i mean). it lays flat and smooths out any bumps without being overly stiff. the v-neck is also not too deep and the sleeves are not too short. overall, a complete win. now go and make it in gray and navy blue please.",5,1,32,General Petite,Dresses,Dresses +877,62,Loved the pattern,"Loved the print/pattern and the light grey.....i think it might have been better if reversed (it has a v in the back, and the front neckline was very intrusive and scratchy to me). i'm normally a small but got this in a medium and it was very short on me. wish it could have worked but returning it.",3,0,2,General,Tops,Knits +840,34,Runs big,"This is a cute top but it runs pretty big. order a size down. the material is like a thick gauze almost, so i'd definitely wear a tank under.",2,0,2,General,Tops,Blouses +965,33,Not a jacket.,"I didn't receive a jacket. i received a very expensive cardigan sweater with no structural qualities to it. jackets have some structure to them. for example they might nip in at the waist a bit. this cardigan doesn't do that. it hangs in a very boxy shape. the quality is great. very light weight and i really love the little pockets and details, but i don't need/want another cardigan. + +i'm 5'5"", 118 lbs and got a small. the small seemed big, but i think it would have fit fine if it had more st",2,0,10,General,Jackets,Jackets +1059,26,Stretches out majorly,"Loved these in store when i tried them on but was in between sizes so i ordered them in the larger size. boy do i regret that! these stretch out so much i have to wear a belt with them and it gives me this saggy bunchy front when i sit...not attractive. wish i could return them, but i took the tag off and wore them not knowing this before hand!! if in between sizes definitely size down.",2,0,0,General,Bottoms,Pants +840,73,,"Great hopes but a sorry disappointment. at this price, one should be able to expect better pattern alignment as shown on model. the pattern in the garment i received was poorly matched on either side of the button placket. i am 5'6"" and ordered xxs. garment was significantly over-sized. i would have had to order one and probably two sizes smaller to achieve a decent fit. because of the oversizing, the shape is more boxy than it appears in the catalog photo. sadly, this buttondown has to be retur",2,0,3,General,Tops,Blouses +985,23,Cute jacket,I am wearing a large in the photos and for reference my measurements are 38-30-40.,4,1,24,General Petite,Jackets,Jackets +877,30,"Cute, unique t shirt. great with jeans!",I love western motif so i had to try this t shirt. quality is great..material is high quality. also the length is long..perfect with jeans and jacket or sweater!,5,1,0,General,Tops,Knits +1095,50,Love this dress!,"I absolutely love this dress! very well made, fits like a glove, and very flattering! the fabric is stretchy which makes the fit perfect and comfortable. i will be wearing this to a graduation and i'm sure i'll find many other occasions to wear this dress.",5,1,1,General,Dresses,Dresses +985,66,Runs small,"Should have ordered the xl instead of the large. didn't even come close to being able to button the front but i'm a 34 g. i find sanctuary to run small. beautiful soft green color, fabric is soft too. it is cropped to the waist. decided to return instead of reorder.",3,1,0,General Petite,Jackets,Jackets +877,66,Darling little basic tee,"I just couldn't resist the western scene and it doesn't disappoint. i ordered size large and although it's a bit long for me, it flows nicely over my hips. i had to try it on with several different bottoms and find it looks great with shorts and skinny or boyfriend jeans. just darling under a jean jacket and cardigan too. the fabric isn't thin or heavy. wasn't it goldilicks who said: it's just right! i love the uniqueness of the print that is just edgy and different enough to translate to great,",5,1,3,General,Tops,Knits +985,69,The cutest ever!,"This little jacket is so soft and perfectly lightweight. the color goes with everything! more money than i wanted to spend, but i am so glad i took a chance and ordered online. it is exactly what i was looking for!",5,1,0,General Petite,Jackets,Jackets +1005,22,Cute and edgy,"I love pairing this skirt with edgy tops, it plays so well with the detailing! i'm usually a size 8 but sized up to a 10 so that it didn't pull, other than that, absolutely love it! beautiful all over",5,1,0,General,Bottoms,Skirts +965,56,,"Looks so cute in the picture, but just didn't really look that flattering on - plus the sleeves were too tight and too long for my short arms so going back....",3,0,0,General,Jackets,Jackets +828,22,,"I have had good luck with cloth and stone and this did not disappoint. i knew i would like it because i have this same top in a long sleeve and sleeveless. it is cute, not too sheer and easy to iron.",5,1,1,General Petite,Tops,Blouses +817,62,,"I love this top! the fabric is so soft and it's perfect with white pants. yes it does run wide and is short, but if you get the correct size it looks just like it does on the model!",5,1,1,General Petite,Tops,Blouses +831,34,Nellore blouse for the win!,"This blouse is stunning. i have been wanting it for some time. i finally broke down and purchased it. i am 5' 8"" and about 160lbs. i generally wear size l /size 10. i bought this in a large. i need a medium for sure. i could get away with the large, but it's very flowy. i think the med will be more flattering. i am planning to exchange for a smaller size. i would recommend this blouse for sure. if you want it, buy it. it's often times sold out.",5,1,4,General Petite,Tops,Blouses +1095,33,Size up!,"I have a countless number of maeve dresses, all size 6. bought an 8 after reading reviews and glad i did. fits perfectly for me one size up. only other issue is the cutout in the back. my bra shows unless i'm very careful.",4,1,2,General,Dresses,Dresses +828,62,Great shirt,Love this shirt. great shape and lightweight material for hot houston weather. washes up nice but does need some ironing.,5,1,1,General Petite,Tops,Blouses +1094,39,,,5,1,0,General Petite,Dresses,Dresses +1094,33,Perfect lines,"The lines on the dress are lovely. the material is a nice thick jersey, which can be body-hugging, but mostly on top. it falls beautifully and looks good with heels and flats and boots. i am xs or s depending on the dress, and i got the xs in this one.",5,1,4,General Petite,Dresses,Dresses +1095,29,Great wedding guest dress,"Just purchased this for a midsummer formal wedding. i am 5'6'' 125 lbs, ended up going with the size 2 for extra room, the 0 felt very snug thru the chest.",5,1,0,General,Dresses,Dresses +985,61,Soft and flattering,"What a great little find. it is so soft, and the color blends with everything. a great way to get a few more weeks out of your summer sleeveless dresses, and ease into fall. great with t shirts and pants as well.the collar is flattering over any neckline. it also looks great as a shirt. it really can be worn all year round. i usually wear a size six on top, as ""my girls"" are large. the medium was a perfect fit. and there was no billowing in the back. worth the price, as it will become a go to ja",5,1,0,General Petite,Jackets,Jackets +1095,65,Beautiful but the fit is off for me,"Not sure i'm keeping this. i love it but it's short in the waist (i'm 5'7"") and very tight in the top. i'm on the small side of a size 8 normally. a 6 sometimes, but the 8 in this is very tight. i do have broad shoulders but am thin at 126 pounds. so not sure if it's just me or if the dress is truly smallish. it is lovely and i want to keep it. will try it on again tomorrow and decide. if you are on the large end of any size, do size up.",5,1,1,General,Dresses,Dresses +1094,50,Super flattering and comfortable,"This dress is of great quality and design. the lines and the way the dress shapes your body are perfect throughout the entire dress. i am short and it is a little long on me; it is between my calf and my ankle, but the way it flatters in the bust and waist more than makes up for it. with the right shoes, it is a real winner! i think this dress would be flattering on every body type. highly recommend!",5,1,3,General,Dresses,Dresses +1094,47,"This season's go to black dress, well, one of them","I find that every year (or two at the most) i have to find a new favorite black dress or two (fading, etc.), and, this is definitely one of those dresses for this year (almost one to buy another, so i have one that looks good in a year or two)! the dress is all around flattering and comfortable... looks wonderful with high heels and flats, looks good at work and while out having fun! probably won't be able to count how many times i wear it this year!",5,1,1,General,Dresses,Dresses +877,26,"Brighter & boxier, but still fabulous!","I love this shirt! the colors are more muted in the photos, so i was a little surprised to see how bright some of the colors were. still super cute! also has a looser fit--i'm a small across brands (5'7"", 130, straight/slender build), so if you prefer a more true or tighter fit, size down. either way, get this!!!!",5,1,3,General,Tops,Knits +877,44,Cute sweatshirt,"I really wanted this to work. the embroidery detail is very pretty. however, the inside of the sweatshirt is a bit scratchy from the embroidery so i would recommend wearing a cami or tank. the sweatshirt is also on the short size. the small hit the top of my jean waist. in the end, i decided to return it:(",3,0,5,General,Tops,Knits +985,49,It's a keeper,"This jacket fits great! i got a medium, and am 5'6"" , 140 lbs. very nice light weight jacket.",5,1,0,General Petite,Jackets,Jackets +817,36,Cute but billowy,"This is an eye-catching top and cute design. the xs fit but was extra-billowy for my taste...if you notice on the model it also shows that the back is not fitted and flows behind wider than is normal...a great and breezy style, but for me, sadly it overwhelmed my short frame. the bottom of the ruffle hit me just at the hips which made the top also a tad too short for my taste. i am sure on others it will work and look amazing.",4,1,4,General Petite,Tops,Blouses +877,59,Yee haw!,"So i fell in love with the print without even noticing that it had horses on it until after it arrived! i was sooo excited! but really the length and fit are the best part about this shirt. with my long torso things are generally too short on me. i'm a sucker for spending money on clothes but still i wish retailer could make cute tees for under 40 bucks:/ i say that, yet i'm not sending it back:)",5,1,0,General,Tops,Knits +817,46,"Incredibly soft, great print","I just got this top today. the print is just as beautiful in person as it is on the web. it is so incredibly soft and comfortable. i tried it on and it fits just like the photo. i am 5'8 so i can get away with the blousy effect, but, i think that is part of why it is so charming. i think you could dress it up or down really well. i am really pleased.",5,1,2,General Petite,Tops,Blouses +1094,36,,"This dress is so flattering, not the usual type of dress i go for, but decided on a whim to try and am glad so glad i did. the material has enough heft to give you a beautiful silhouette without being too clingy. you can dress up or down, if you don;t like showing too much cleavage you may want to put a tank underneath to give you a little coverage.",5,1,3,General,Dresses,Dresses +985,43,Great transitional jacket,"This is a great lightweight jacket. i really like the olive color as it goes with so many things. it can be worn with dresses or skirts which is what i mainly wear. i'm an anti-pant person. the only downside is the price. it's a nice stylish jacket, but not sure it warrants the high price tag. it also doesn't look to great buttoned up; has to be worn open. i do recommend it though.",5,1,0,General Petite,Jackets,Jackets +877,22,So cute!,"Bought this in store yesterday, light fit and extremely comfortable! i'm 5'4 135 and have a long torso, so i ended up going with a large in this one because i like my shirts to hang loose. print is more vivid in person but nonetheless a great but!",5,1,0,General,Tops,Knits +840,68,"Runs big, order one size down",I bought a similar top by same manufacturer in fall in xs. this time it ran huge and had to order xxs which fit fine. it's very cute on.,4,1,0,General,Tops,Blouses +1058,60,"Stylish, but has a few issues","First, let me say i really like these pants before i get into what's wrong with them. the fabric is a nice weight and drapes really pretty. they are very long for you leggy girls out there or ladies who like to wear platform shoes and that's a plus for me. + +now for the issues: the waist runs small, but not so much that i can't wear them. they are roomy and comfy otherwise, just snug there. the hem came out of mine, so that's the big bummer here. i have to hem them, which is a chore and i wish th",4,1,3,General,Bottoms,Pants +965,34,Great little light cardigan,"I honestly liked this little cardigan. it is a misnomer as a jacket. it really is more of a light sweater/cardigan, but i didn't have any negative issues like others on here. +________ +pros: +- great feel on the skin and fabric. this really caught my attention. hard to find a sweater that's breathable for cool summer evenings or mornings. +- color scheme will go with anything, elegant touch. +- unlined making it breathable. +- runs large, forgiving it. stretchy. i'm normally a size 10/12 (m/l)",4,1,3,General,Jackets,Jackets +1094,53,Thick and heavy,"Nice dress, you can wash it, i got black in med. i am 8-10 in tops and it is perfect, +brand new is beautiful not sure how it will look after wash. great design. i wish it would be lighter material. +material is very thick and heavy for a short sleeve dress. probably will stretch when you sit in car driving. +i will be returning it for that reason, too heavy for summer .",3,1,0,General,Dresses,Dresses +1059,40,Split it in the butt,I love these pants. bought them in both black and burgundy. but the burgundy pair split in the butt before i even made it to work in the morning. they weren't even tight. so disappointing. i will be returning them.,2,0,6,General,Bottoms,Pants +1059,44,Great pants but seam issues,"These are really great fitting pants. they are perfect for work. i noticed a little stretch throughout the day but just the perfect amount. the only draw back is that after wearing them once, i noticed a 6 inch opening at the seam of the back leg. i had to get the tailor to fix them. they need to work on the seams in the future.",4,1,0,General,Bottoms,Pants +985,39,,"Confused and a little disappointed because the s is too tight in my shoulders and the m is too big all around. weird because i'm a 39"" chest+breasts so m shouldn't look that baggy on me. please sanctuary, make a petite version, maybe that will solve my issue. otherwise, this jacket is soft and relaxed and has no distracting collar. price point is bit over indulgent for what it is combined with my issues. who knows, maybe i'll try again?!?",4,1,3,General Petite,Jackets,Jackets +877,54,A keeper!,Ok you had me at the western scene. soft and comfortable. true to size. you can dress it up or down. just a great t shirt. recommend it! get it!!,5,1,0,General,Tops,Knits +877,50,Fun sweatshirt,"Cute sweatshirt with fun print. i bought it using retailer discount, and probably would not have paid full price for it. embroidery is a nice touch. i ordered an xs, which fits fine, but the overall design of the shirt is a little short and boxy. i did not realize until it arrived that the back of the shirt is a v neck. it's not a deep v, but it feels a little odd at first.",4,1,3,General,Tops,Knits +817,78,Buy this top!!!,"Love this top. the material is light, soft and comfortable. one thing to note. it runs very large? this feature is perfect for me as i was worried it would be too tight around the middle?this style would not look good if it didn't fit loose?..so i was pleasantly surprised to see that it fit me with plenty of room?.something i need for my full figure. if you are trim around the middle i recommend going down a size or two.",5,1,3,General Petite,Tops,Blouses +877,62,Fun tee,"Maybe i'm hanging out with my grandson too much because this appealed to the kid in me! looks great under a jean jacket and under a leather jacket - oh, and cool under a silk bomber jacket as well.",4,1,0,General,Tops,Knits +985,37,Perfect !,"Light weight jacket, perfect layering piece . short enough to be the right accessory over a dress or skirt without getting a sloppy look. versatile, - also great over a long tee with skinny jeans. well made, fold cuffs back for the classic look.",5,1,0,General Petite,Jackets,Jackets +877,44,Looking sharp!,"I saw this and the ""giddy up"" tees at the store, and it was so difficult to decide because they have their own uniqueness. unlike the giddy up tee, this tee has no embroidery, but saying it has just patterns is underestimating it. the pattern is a work of art, it has cowboys, ranch scenery, cacti, and the earthly colors are gorgeous for all seasons (especially for those who still have a leftover summer tan). the hem of the tee is a bit round which i thought is unique and versatile for tucking in",5,1,0,General,Tops,Knits +877,28,Fun t,"This is just as cute in person. i wear it with black jean shorts, boyfriend jeans, washed out jeans like the model, or khakis. the colors are great and so is the fit. love it.",5,1,0,General,Tops,Knits +1094,31,Terrible for my body type,"I'm surprised this worked for so many people. for me, this dress fit terribly. however, the fabric was very thick and the dress felt very well made. i am 5'3"" and about 117 with a really short torso, and this dress just showed every bump and lump i have. i think the bodice was just too long for me. the neckline was also too low. on someone taller, or maybe with a longer torso, i could see this dress being really lovely.",3,1,0,General,Dresses,Dresses +831,42,Very pretty!,"I purchased this blouse over the summer and it's very pretty. i love the cap sleeves with the lace and the detail in the front. it can be dressed up or dressed down, my only complaint is that it wrinkles very easily.",4,1,3,General Petite,Tops,Blouses +877,59,Excessive shrinking,"This is a cute top but unfortunately when i washed it (delicate, cold water, line dry) it shrunk excessively in length. i'm very disappointed.",3,0,1,General,Tops,Knits +877,29,Pattern different than expected,"This top fit nicely and was tts, but the pattern was different than i expected. i thought it would be more of a desert scene and it turns out there are cowboys on it and it just didn't fit my style. if there were cowgirls on it i would have kept it.",3,1,0,General,Tops,Knits +877,58,Great for fall,"Loved it as soon as i opened the box--it's a light-to-medium weight sweatshirt with the wonderfully vibrant flower front. i wasn't sure about the flowers online, but like 'em! the cuffs and hem are nicely made and the v-neck back is an unexpected addition. this will be great with a scarf or alone this fall. can't wait for the weather to cool down!",5,1,1,General,Tops,Knits +965,50,Totally adorable,This jacket is adorable.. it is very flattering and different. can easily be dressed up for work or dressed down as shown. note: it is unlined and very light weight. these are huge selling points for me as it makes the jacket seasonless. love it!!!,5,1,10,General,Jackets,Jackets +877,52,"Fun, soft, light weight","I have featured a picture below. i'm 5 feet 120 lbs. i ordered an xs petite. i'm pretty busty so i don't like a loose fitting top, so ordering a size down did the trick. it's super soft, one of a kind and the edging of the neckline is delicate looking and soft and therefore adds a feminine element. i'm enjoying wearing the top.",5,1,0,General,Tops,Knits +877,33,Shirt,"This shirt runs boxy, but the print is as cute as it looks online",4,1,0,General,Tops,Knits +877,62,Out west,Cozy. soft. comfortable. a perfect transitional top that bubbles over with personality..it's a unique fabric design that makes you feel like you're on vacation ..love it.,5,1,0,General,Tops,Knits +909,56,Pretty,This blouse if very pretty and feminine. i agree with the other reviews that said it emphasizes the size of your hips. i don't have any so it was great for me!,4,1,0,General,Tops,Fine gauge +939,42,,,5,1,0,General,Tops,Sweaters +909,40,"Very soft, thin & a bit short for long torso","This top is very interesting, has delicate knitting pattern, feels very soft but also very thin. i ordered a purple size large, and it was true to size, but a little shorter in the body than looks, sleeves are long just as other reviewers have mentioned. i am 6ft tall, 160lb and i have long torso & curvy body, so this sweater turned out to be shorter than i hoped but with all that underneath layering it could be manageable. overall look of the sweater is about the same as the photo, the only mat",4,1,1,General,Tops,Fine gauge +1026,54,,Perfect! awesome! i have a few of these now and love them. they do stretch a little so i wouldn't size up. i'm about 138 pounds and 5'8'' and normally m. i wear the 27 in these.,5,1,3,General,Bottoms,Jeans +909,67,Simple yet stunning,This pullover is a great purchase. the color is simply stunning and is very comfortable.,5,1,0,General,Tops,Fine gauge +939,52,Lovely take on the moto jacket.,"I bought this jacket in green and it is beautiful. the green is a true +forest green. sizing is accurate. my only wish is that they offered more colors and the snaps were double faced so you could snap the collar back.",5,1,8,General,Tops,Sweaters +1087,31,Colorful and unique,"I love lace dresses and this one is no exception. great construction and color. i paired the dress with a plum colored blazer and i really was pleased at how well it all went together. i'm about 5'8"" and 170 i'm normally an 8 or 10 at retailer, my 8 fits great and is not tight at all, so i'm thinking it may run a tad bit big.",5,1,0,General,Dresses,Dresses +909,65,,I love this sweater. the green is soft. the fabric is light enough for year round in my area. i thought it might be too young but it works nicely for me. i bought it in two other colors when the package arrived today.,5,1,0,General,Tops,Fine gauge +939,31,Not for the full of chest,"I am a 34dd so i purchased the small in green, hoping for a more fitted silhouette. i got what i wanted and it looked great overall. except for the chest. it just sort of mashed my chest down in a very unflattering way. but despite all that i almost kept the coat because it was so soft and warm and beautiful. and sturdy! i could have sized up for a better fit in the chest but then it would have been boxy and we hourglass shaped ladies know how poorly that works out. wish this would have worked b",4,1,1,General,Tops,Sweaters +909,31,Beautiful!,"I love this top. it was everything i hoped it would be. it is lined so it is not see through in the chest/back; sleeves are sheer. soft. gorgeous color. love the layers. runs large so definitely size down. i am usually a m and ordered the s. i'm 5'8"" curvy 32dd",5,1,0,General,Tops,Fine gauge +909,37,Love.it,I thought the sweater was pricey until i saw it on me. this sweater is really flattering! i chose the grey colored one. i'm smaller on top and this sweater is perfect with the v neck cut out the fabric is also really soft.,5,1,1,General,Tops,Fine gauge +939,28,Hit or miss sizing,"I loved how this jacket looked online and decided to order it. however, sizing can sometimes be tricky for me so i ordered both a petite xs and petite xxs (i'm 5'1"", 113 lb, and a bra size 32 c). i tired on the xxs first and was swimming in it! so naturally i thought the xs would be even bigger; but to my surprise the xs fit way more snug! in the end, i still didn't like how loose the xs fit so i returned them both. the material is great quality and it's a cute design. i would recommend trying t",3,1,3,General,Tops,Sweaters +909,29,Soft and elegant,"This sweater is very lightweight with the loose knit, but is much warmer than i was expecting. the periwinkle color is gorgeous. the chiffon hem provides a cute detail and it is true to size for a loose fit",5,1,3,General,Tops,Fine gauge +895,41,,Yay for the return of shirts that show your form but don't reveal the flaws! i bought this in cream which only seems to be in stores right now. the stripes on the cream version are vibrant and beautiful. the weight of the top is very nice and really hugs your shape. i did think it ran a tad small. i bought the large but also could have worn the medium.,5,1,5,General Petite,Tops,Fine gauge +909,20,Comfy and cozy but looks good,"It's hard to find a sweater that is warm and cozy, but doesn't look bulky. this sweater does it all. it is delicate looking and soft and flattering. it is also surprisingly warm. i wear it with jeans for everyday, but it looks good enough to wear out to dinner or such. i bought the periwinkle which was the most flattering on me (blond and fair). i am hoping to get the green too when they go on sale. i said it runs a little small because i took a small instead of my usual extra small in sweaters.",5,1,3,General,Tops,Fine gauge +939,31,"Warm, soft and lightweight","I loved this jacket! it's exactly what i was looking for. i set out to find a lightweight sweater or jacket that would keep me warm and also versatile enough to wear with different outfits. this definitely fit the bill! in addition, it's really soft and not at all itchy, which was a concern i had since it was wool and i ordered it online. i have received a bunch of compliments! i definitely recommend it!",5,1,1,General,Tops,Sweaters +909,39,Soft and romantic,"This top comes in 4 lovely colors, too bad only one of htem looks decent on my skin tone (purple), though i might have gotten away with the silvery grey. +fit: nice falttering line, flares at the bottom and is loose aroun d the waist, so if you ahve a problem area, nice coverage. +feel: super soft - nuff said ;-) +versatility: i am not sure it will look great with everything on my body type, but definitly a nice pair of jeans (flare or skinny with boots),a and may try the pencil skirt look like the",5,1,7,General,Tops,Fine gauge +909,37,Soft and versitle,Great flow and and spring color. short waisted and fit wonderfully. i can see how long waisted people would have an issue.,4,1,0,General,Tops,Fine gauge +939,38,Great quality,Love the fit. nice and warm and good quality material.,5,1,0,General,Tops,Sweaters +909,46,"Orange color is pretty, quality is poor","I ordered the orange in size xl. the fit on me matches the model other than being a little shorter in length. + +the quality is bad. i ordered two of these sweaters and both arrived, new in the packages, with one having a small hole. the knit is so thin, as is the base material. the arms are basically see-through. it doesn't offer any warmth because of the thinness. i layered a long-sleeved white tee underneath which helped. the edge of the sleeves stretched out within an hour. i also had two area",2,0,0,General,Tops,Fine gauge +909,55,Beautiful soft sweater,This green sweater is solo pretty . i wanted it from the moment i saw it. pretty layers on the bottom make it so unique!,5,1,0,General,Tops,Fine gauge +939,29,Was looking forward to receiving this,"This runs a bit on the large side. i ordered my usual m and had room to spare. the green color was lovely, but between the fit and the scratchy fabric, this is headed back. too bad!",3,0,0,General,Tops,Sweaters +1026,56,The best yet?,"Dare i say, this is my favorite pair of pilcro legging cords yet. the pattern is beautiful, with green, black, and grey. the fit is as usual stellar and comfortable. the best yet!",5,1,0,General,Bottoms,Jeans +909,41,,"This sweater is very pretty. the pictures online do not show the intricate knitting and the lovely details or how delicate the yarn is. i bought the light orange color and i think it will transition nicely into spring. the shape is very figure flattering as well. overall, i am very happy with my purchase.",5,1,0,General,Tops,Fine gauge +984,62,Love this jacket!,"I was on the lookout for a denim jacket when i found this beauty on line. i fell in love immediately and didn't think twice about paying full price. i wear it with moss green chinos and it looks really good. the little dots in the jacket are actually a pale green, which gives it extra character. very well made. i was a bit skeptical about the hook and eye fastenings, but they are very secure. + +i ordered my usual xl and found it roomy enough in the bust and arms. i would definitely call it tru",5,1,7,General Petite,Jackets,Jackets +939,37,Flattering structure,I was on a mission at retailer to find a versatile and comfortable jacket/cardigan. this is perfection. the detail and pattern in the wool make it unique and the zipper and snaps are great quality. i bought it in the green and is great for the office and out in jeans as well.,5,1,3,General,Tops,Sweaters +909,56,Lovely sweater,I love this pretty sweater. i am petite and thin and ordered the regular xs. the length was perfect- just below the hips. the sleeves are a bit long but you can pull them up a bit. this is a perfect winter dressy sweater to wear with black jeans or leather pants. the knit is very delicate and light but warm and the layered chiffon bottom makes it special.,5,1,1,General,Tops,Fine gauge +939,46,Great jacket,"This is a great fitting jacket. the style, etc. +i got this in the grey - i would have exchanged it for the green (but have a similar color that i bought last year from retailer. +so i ended up returning it - only because i didn't like the color on me.",5,1,3,General,Tops,Sweaters +1053,39,My favorite pants in my closet!,I adore these pants! comfortable as jammies and i wear with both sandals and booties. every time i wear them i am complimented on them!,5,1,1,General,Bottoms,Pants +862,39,Fyi photo of black shirt is misleading,"1.) if you look at the 4th photo of the grey shirt and zoom in you can get an accurate view of the back: this shirt is attached in not one, but two places in the back (in the photos of the black shirt it looks like it is only attached, or ""knotted"" in one place, and that is not the case). disappointing. +---------- +2.) unless you want to wear this as an off-the-shoulder shirt with a strapless bra size down. caveat: sizing down will become problematic though for those with large arms as the sle",2,0,37,General,Tops,Knits +1026,60,Couture cords,So sure from the online shop & images that i ordered two pairs. the package arrived in less than 2 days and immediately i could see how the cords were everything i expected them to be. so incredibly soft and body forming and has a classic cord texture only softer. i love them ! this look works both daytime as well as evening - it's geared to work with any casual to couture look. my 22 year old niece wanted to buy the second pair (sz 28) from me so i gave them to her. she's a nice niece : ),5,1,0,General,Bottoms,Jeans +909,60,,I'm on the fence about this one. it is pretty,3,1,0,General,Tops,Fine gauge +909,55,Beautiful design,"I really love the way this sweater fits. the only negative is that it fits rather tight on the shoulders?i have broad shoulders and the sweater fits fine when my arms are down but a little tight when i raise them. but the size small fit well everywhere else, so i'm keeping it. the orange color is pretty but kind of glows a bit, but wish i'd also gotten it in the blue-green. very pretty and feminine, great with pants or skirts. i'm usually a small or medium (often just for shoulders) but got this",4,1,0,General,Tops,Fine gauge +939,31,Super jacket,"I am really into this jacket! the fit is nice although it does very slightly large; however, not enough to go down a size for me. all of the different textures are really cool and the details do seem to be pretty slimming, which is always a bonus. i am a bit worried that the wool will pill like crazy though. let's hope i'm wrong and that it lasts!",5,1,1,General,Tops,Sweaters +1026,59,,"Omg! so comfortable and feels like wearing nothing at all! i wish the blue print was still available in my size. tried them on at the store and fell in love! they say the length is 31.5, however i am on the tall side, usually wear 34"" in jeans, but these are perfect. i see from other reviews that these pants have been around for a while. please don't change them, and i will be getting another pair or two next year!!!",5,1,5,General,Bottoms,Jeans +939,41,Warm and stylish,"I tried on a dressing room full of items before christmas, and this was the clear winner. i got it in the green xs, which fit perfectly. i am 5'6"" and of medium build. the s was slightly too big through the chest and arms - skewed a little too military looking for me. i like the versatility of leaving it open or zipping it up, but like another reviewer, i wish the top lapel would snap back onto the shoulder because it can flop back and that gets a little annoying. overall, i really like the fitt",5,1,0,General,Tops,Sweaters +975,57,"Poorly made, static, and too tight.","1. i like a shorter jacket, but this one was poorly made and poorly fit. + +2. the sleeves were way too tight. i'm a size 10 or 12, and the large which would be a 14 had tight sleeves that wrinkled up my arms, and the hem of the sleeve turned inside out. + +3. i ordered both a medium (size 10) and a large (size 14) , and neither hung right. the m too tight, and the large too loose in the body and too tight in the sleeves. + +4. very polyester with lots of static. + +5. cute idea, but not very good in pe",1,0,8,General Petite,Jackets,Jackets +939,32,,It sits a little short but works great for a jacket when you don't want to have a big winter coat when going out.,5,1,0,General,Tops,Sweaters +909,81,"Chic and feminine sweater, i love it!","I absolutely love this sweater. it's soft, and delicate. i bought a green one which flatters my skin tone. i feel that i can wear it for three seasons, except summer... lol + +it runs a bit large. i normally wear size medium for tops from retailer, but the size s of this sweater fits better than size m. the sleeves are bit long than other sweaters, but i think that's the style, as shown on the model. + +if you like feminine and romantic tops/sweaters, you will like this piece. :)",5,1,0,General,Tops,Fine gauge +909,43,Soft and flowy,I love this pullover. i felt it was a little wide at the bottom but i received lots of compliments on it. i ordered a large because i did not want it tight around the bust (i wear a 36j bra) and biceps but i think i would have been fine in a medium.,4,1,0,General,Tops,Fine gauge +909,43,"Soft, beautiful sweater!","I purchased this in both the green color and the grey color and am in love with both. they are much longer than last years design and it has a pretty weave to the sweater with multiple layers that sit perfectly past the hips. the fit is true to size although the fabric is quite thin and i worry about pulls. also, the sleeves are a bit long, but this doesn't bother me too much at this point. very versatile!",5,1,0,General,Tops,Fine gauge +1026,37,Planning on living in these!,"For years i've eyed these printed pilcro cord leggings. every single year in every single incredibly cool print - i've always wanted them. finally i decided to try them on after we got this green and navy print, and i'm so glad i did. these are dreamy! they are so stretchy and so comfortable! they hold snug against your leg for a very streamlined fit, but plenty of stretch so movement is no issue. the print is my favorite part. the colors are extremely fun, but still classy enough to not feel to",5,1,6,General,Bottoms,Jeans +939,56,Several great points,"Green color is fantastic - dark forest green. material, wool, is substantial and of good quality. however, on my 5'1"", 120lb athletic frame, i felt both the petite xs and petite s were too small for me when worn over a v.v.v. thin ls t-shirt. i also thought it was a bit too short in the back. the petite medium would have been a great fit for me, but all gone.",4,1,0,General,Tops,Sweaters +939,42,So comfy and stylish,"Love that it is light and very comfortable. i got both colors, the only thing is it's dry clean only. love that i got it on sale!",5,1,0,General,Tops,Sweaters +909,48,Chiffon knitted blouse is stunning!,Beautifully cut and styled!its versatile and can be paired with trousers or a skirt,5,1,1,General,Tops,Fine gauge +909,53,Soft feminine top,"I ordered this top in the purple color and was pleasantly surprised that it was more of a soft periwinkle. the weave is quite open and sheer which is what i had hoped for. the fit is great and the bottom flows quite flatteringly. overall the sweater is soft and very feminine, but careful, it snags easily.",4,1,2,General,Tops,Fine gauge +909,56,Easy flattery,"Flattering even for a 50+ year old body. the lavender is subtle and pretty (it's a blue-ish color) and the sweater skims the body nicely. i have a broad back and some delicate sweaters make me look unwieldy; this one is minimizing. sleeves are long, but not too much so. i usually wear an 8 and the m fits well.",4,1,5,General,Tops,Fine gauge +1026,47,,,5,1,0,General,Bottoms,Jeans +909,60,The most beautiful sweater!!!,"This is simply the most lovely, interesting, flattering sweater ever. i got the green which is a lovely minty color. couldn't be happier!",5,1,1,General,Tops,Fine gauge +909,47,Lovely and light weight,"This top is comfortable and pretty plus, i like the extra length in the sleeves. it is very lightweight and i'm cold natured so, i wear a bra top tankini underneath for warmth.",4,1,1,General,Tops,Fine gauge +909,43,Beautiful but not for those who are short waisted,"I saw the orange/tangerine colored version of this sweater and loved it. it looked beautiful on top. the chiffon material at the bottom of the sweater is a lovely detail. sadly, the bottom portion of the sweater made my hips look huge and i felt i looked pregnant. i weigh 111lbs. i am petite and small boned. i think it was because i am short waisted that this style did not suit me. i wish i could look good in this! it is absolutely exquisite in color and texture.",4,1,32,General,Tops,Fine gauge +909,64,Gorgeous but delicate,"This is a beautiful piece - but not if you need a hardy sweater. the material is lovely as are the two colors i saw. but it is lightweight and delicate. i tried an xxxs petite which is my norm and it fit perfectly. i did not buy it as for the price and relative usefulness, i had to say no. i will watch for sale.",5,1,2,General,Tops,Fine gauge +939,65,"Perfect, flattering sparrow jacket!","I was in my local retailer to scope out a different piece, when i spotted this very attractive, well-designed jacket. sparrow's jacket looks dynamite on. the scale is perfect for me; the high level of detail is ideal. i chose this over getting an oversized sweater coat: it felt like these proportions were most flattering on my body. it will be appropriate for work or nice casual events. i bought the medium, true to size; i am an 8 top, 5'1""130#, 34f. although i largely buy online, sometimes you ju",5,1,9,General Petite,Tops,Sweaters +823,44,Love it !!!!,"I am obsessed with the off the shoulder trend this season. i were mind on the shoulders so its work appropriate, and you can still tuck it in. the length is perfect. the colors are awesome. t paired it with a pair of pilco cords. it easily work with a skirt or dress pants. +i would highly recommend!!!",5,1,0,General Petite,Tops,Blouses +939,38,Sleek moto sweater - upgraded cardigan,"I didn't end up keeping this, and i feel like i might regret it. ;) i have a similar sweater. this jacket is super streamlined with a sleek fit. the bummer for me was that it didn't have snaps to hold the collar down to the jacket when it was unzipped, so the flaps seemed to flop around. the s was perfect. not too tight. i'm 5'8"", 140 lbs, 34c.",4,1,0,General Petite,Tops,Sweaters +462,41,Soft and light,"This caftan is very light and well-made. i love the colors and designs on this fabric. i was worried that it might make me look boxy, but it accentuates my figure surprisingly well. the fabric is so soft!!! i'm amazed at the price because this is a really beautiful cover-up.",5,1,1,Initmates,Intimate,Swim +1110,64,Perfect dress for me!,I needed a pink dress for a local breast cancer awareness luncheon. this is a perfect fit for the occasion!,5,1,3,General,Dresses,Dresses +1072,55,,"This dress is as flattering as wrap dresses usually are. the x-small fits well (dress probably runs a tiny bit large as i go between a small and extra small), though i did move the tiny snap at the neckline down as it fastened too high for me. the dress did snag slightly in one spot but overall, it is really very flowing and lovely on, with unusual colors that look nice with late summer tan and gold earrings.",5,1,6,General Petite,Dresses,Dresses +1072,42,Great fall dress,"Great, easy to wear wrap dress. rich colors are fabulous for fall. the contrasting knit back adds just the right touch to make the dress more interesting as compared to your typical paisley print dress. i ended up with a petite as the length seemed more flattering and the bust line fit better than the regular.",4,1,0,General Petite,Dresses,Dresses +1111,39,"Pretty, flirty and loose","I ordered the white in 0p (i wanted red, but was sold out and don't have a white one so thought why not). i really liked the fit, flirty, flattering, very nice (love the crossed straps in the back). as someone mentioned, the fabric is a bit heavy for summer, but since i spend a lot of time indoors in a cold environment, no biggie, i probably will have a seater on top of it too. the cut is flattering, chest area not too snug, and i can wear a strapless (more comfortable for me). 115 lbs, 26.5 in",5,1,0,General Petite,Dresses,Dresses +1111,38,Maternity tablecloth,"I had high hopes for this dress but my husband said i looked pregnant and that i was wearing a tablecloth- and he was right! i'm usually a size 10 so perhaps this would look good on a talk lanky person with a very long torso... but probably not. way too much fabric around the midsection. it's a shame because the fabric was really pretty, but too stiff a hand to drape well.",1,0,0,General Petite,Dresses,Dresses +1110,39,Lovely dressy dress,"I found this in-store when looking for a dressy, slightly boho dress for an upcoming wedding. i'm really happy with it -- the a-line cut disguises some recently gained extra pounds but it doesn't feel like i'm hiding in a muumuu because the shoulders and chest are relatively fitted. the flowy hemline offsets the short length (maybe 4-5"" above the knee for me). the pink color is very light -- lighter than in the photos, i think -- but it will work nicely for the wedding. as the first reviewer sai",5,1,7,General,Dresses,Dresses +462,49,Pretty cotton caftan,"This is a lovely, light coverup with a beautiful pattern, however, in the catalogue it appears blush pink when in reality it is white. the model must be wearing a pinkish swimsuit underneath the caftan giving it the allusion of being a color which it is not. i still like it enough to keep it but am disappointed that the item description did not mention this optical illusion.",4,1,1,Initmates,Intimate,Swim +1110,24,,Love this dress! it is so comfortable and can be worn as casual or dress up.,5,1,0,General,Dresses,Dresses +1110,45,"Pretty, but not for mr","Received this dress, the sleeves are very pretty, the drape was just what i was looking for, but the overall dress was not very flattering on me. i am a little busty on top so it pulled in a unflattering way. i would say that if you are tall and not on the busty side this could be an amazing dress on. this one had to go back",3,1,0,General,Dresses,Dresses +462,37,,Perfect! can't believe how inexpensive this is for the look. it looks just like it does on the model. i can't wait to wear it on my vacation.,5,1,0,Initmates,Intimate,Swim +1072,56,Summer/fall wear,"I first spotted this on an retailer employee, she paired it with a peasant top & wore it open w/jeans & boots- so darn cute. love how this peice transitions from summer to fall. i'm 5'4"" so i had to order the small petite which is perfect. note that this dress is very long! it's just a must have garment. the colors/ print are just beautiful.",5,1,1,General Petite,Dresses,Dresses +1110,32,Swingy cool,"Saw this in the store in pink....very cool dress but i want black so i'm ordering it. the fabric was almost lace-like & it comes w a slip. it was sort of swingy, and designed to be a-line. loved it. the bell sleeves totally make it.",5,1,28,General,Dresses,Dresses +1110,59,Fun dress,"This is a fun dress to have in your closet! i ordered the 4p, and it was just a little to short for my taste. had the regular 4 sent, and it was perfect! i wore it the very next night to a party... feels great and lots of fun with the bel sleeves!",5,1,0,General,Dresses,Dresses +1111,38,Love this dress!,I am simply mad about this dress. i am smaller on top with larger hips. my bust is a mellow b but i could see this working on a or c cups also. this dress is extremely flattering for my body type and the bodice fits like it was made for me. it fits fine without a bra and just perfectly with a semi padded strapless. i got this dress to wear to a summer wedding. the texture and color are beautiful and i will pair with simple jewelry and nude heels. it's a great find and excellent quality. definite,5,1,1,General Petite,Dresses,Dresses +1111,44,Beautiful dress but too delicate,"This dress is lovely. feels like a dream...so comfortable and the lining is silky soft. i feel it runs a little large (as maeve has been this spring/summer) as i ordered a p0 and p2...the p0 fit (i am 5'4"" about 118#.) i ordered the white hoping to take it on a beach vacation. it was just a little too delicate for my needs...i have two younger children. it seemed to be easy to snag or to make a hole in the more delicate woven areas of the dress. otherwise i really liked this dress a lot. too bad",4,1,4,General Petite,Dresses,Dresses +330,23,,"I ordered a large and it was skin tight, if that's the look you're going for..",3,1,1,Initmates,Intimate,Sleep +1072,47,Perfect dress,This is a great maxi dress for people that want a classic fit but nothing tight. it is figure flattering yet modest enough to wear to work. i am 5'3 (and a half!) and many maxis are so long that i must wear heels. this one is perfect length for me and can be worn with flats or heels.,5,1,0,General Petite,Dresses,Dresses +1072,39,Don't ignore this one,"When this dressed first debuted, i pretty much ignored it because i was not looking for a sleeveless maxi dress for fall. then i went on instagram and saw all the marvelous ways retailer employees were styling this. this can be worn as a long vest over jeans or a long sleeve maxi. and the rich autumn colors go well with boots and sweaters. add a wide leather belt when it's opened or closed, works great either way. when i bought my dara vegan leather moto in plum, i knew this would be an ideal pair",5,1,0,General Petite,Dresses,Dresses +1111,46,Summer moon dress,"Color is beautiful, fits perfectly, lace is lovely and cut is feminine and flattering. hoping to top with a sweater so i can wear it longer in the season.",5,1,0,General Petite,Dresses,Dresses +1072,53,Mountaire maxi dress write your review *required,"This is a wonderful dress. i love the fit and feel of the fabric. i have been looking for a while for a 'fall' maxi to wear with a pair of free people boots i purchased. this dress is perfect with them. the colors are fall and fresh, can i say that about fall?",5,1,0,General Petite,Dresses,Dresses +1111,27,Love love love!,"I already knew that it's not the lightest summer dress by reading previous reviews. +yes, it is fully lined with stretchy fabric which is kind of thick and heavy for skinny straps. i still love this dress it's very beautiful and versatile. it's perfect for san francisco summer it never gets too hot anyway. +the color is also beautiful but it's little pink side of red. +i am 5'4 size 0 it fits perfect just like the picture.",5,1,4,General Petite,Dresses,Dresses +1072,44,Beautiful,I was a little skeptical about this one at first. i have a hard time with the over all styling of many maxi dresses. i liked the print and figured i would give this a whirl. it is beautiful! looks great on and i love the fabric!! so happy i picked this one up.,5,1,0,General Petite,Dresses,Dresses +1080,28,Absolutely stunning,This dress is breathtaking! it is super lightweight and will be the perfect addition to my suitcase for summer travels! can be dressed up or down with jewelry & heels.,5,1,0,General,Dresses,Dresses +861,33,"Pretty and comfrotable, get on sale","I feel the same way about this shirt as i do about the sungarden tee. it's a lovely pattern and i like the fit (it's not clingy), but it's a bit see-though. it's not as bad as the other tee, but no contrasting or patterned bras can be worn with this shirt (unless that's your thing). that said, i'm happy with it because it's a soft and pretty shirt that will get a lot of wear in warm weather. i am very glad i got it on sale though. i wouldn't have paid full price for it.",3,1,0,General,Tops,Knits +1081,66,,,5,1,0,General,Dresses,Dresses +974,33,Uniqueness won over a couple of flaws,"I knew this jacket would be mine as soon as i saw it online, but i also have a hard time trusting retailer's online photos by their color and angle etc. + +i took a gamble and, for the most part, it paid off. i do like the jacket's unique bohemian gone chic/uptown styling and the gorgeous patten with a spattering of embroidery on the chest and back. what i don't like is the mix of black leather trim and big brass studs. i feel like there might be one too many ideas, or they could have been toned",4,1,0,General Petite,Jackets,Jackets +861,31,,,4,1,0,General,Tops,Knits +861,41,I'm going to wear it a lot,I did size up on this one. it came in and it was too snug for a loose shirt. i sized up and i love it now. i went to the store and bought it in white and black. i sized up in the white but not the black. you may want to try them on before purchasing them. i want more.,4,1,2,General,Tops,Knits +1081,72,"Great dress, wrong color","I debated whether or not to order this dress. i love the cut and style, but i was afraid the color would not work for me. with dark hair and pale skin, yellow tends to wash me out. i was correct, but the dress was adorable. definitely size down. i usually wear a medium or 8 in retailer dresses, but based on other reviews, i ordered this in a small. might could have used an extra small. this dress certainly won't show off those 10 pounds you lost, but it is very comfortable and not overly boxy. als",5,1,0,General,Dresses,Dresses +867,44,Sale find,I bought this in navy and love the multi textures and look. i'm happy it was on sale because it is so cute but i would not have paid full price on it. it runs small. i plan on wearing it for casual errand days.,3,0,0,General Petite,Tops,Knits +867,38,Cute but small,"I wish i would have read the other reviews before ordering. it's cute, but very casual and very thin material...not like other retailer tops. also runs super small. i ordered a small (i wear a small or xsmall at retailer) and will likely jump to a large given feedback in other reviews.",3,1,0,General Petite,Tops,Knits +861,41,Cute tshirt,I really liked this tshirt but unfortunately the v-neck is just too low for my taste. it fits really loose and even buying the xxs i just felt it would stretch out and be even bigger. really cute style just not sure it's worth the price. great colors though.,3,1,1,General,Tops,Knits +1080,46,Amazing dress!,Wow! i saw this dress in the store and had to try it on. it is simply stunning! the bright colors and design are a true tracy reese dress and i looked like a fairy queen in it! lol. i can't wait to wear it!,5,1,11,General,Dresses,Dresses +861,58,Great t-shirt,"I love the fit and the color. i would buy this t-shirt again in other patterns and colors. the fabric is thin and lightweight, but i knew that when i bought it. ( apparently, nothing this is a problem for some others.) i do choose to wear a camisole or a tank top underneath it. to preserve the fabric, i hang dry after laundering. the colors have not faded, and the fabric is holding up well. i am 5'4"", weigh 134 lbs, and do typically wear size medium.",5,1,0,General,Tops,Knits +861,30,Beautiful tee,I bought this tee in purple. went back the next day and purchased the peach! this is a classic tee with a girly twist! cute with jeans and a jean jacket!,5,1,0,General,Tops,Knits +877,40,Great addition to wardrobe,I love this duster. it's really different and interesting. i wear it with the dress in the picture but i have the green dress.,4,1,2,General,Tops,Knits +861,34,Awesome every day tee,"I now own this shirt in 4 different styles. although i don't expect it to last forever, thus far, they wash really well given how thin they are and light weight. i love the simple cut, and how good they look dressed up or down. it is so hard to find comfy tees, and this one fits the bill! my only wish is that they sold it in solid print colors like white and black. then i would own 6 ;)",5,1,0,General,Tops,Knits +861,39,Comfy yet stylish,"I saw this tee and was unsure about the print, but decided to give it a try. i'm glad i did, as it has become a weekend staple.",4,1,0,General,Tops,Knits +974,37,I loved it!,"Runs a little small, but is very chic!!! you can wear it with jeans and a white t-shirt and you are going to look awesome!!!",5,1,3,General Petite,Jackets,Jackets +937,20,Not flattering on me,"I ordered this online and was disappointed with the fit when it arrived. i ordered the xs and it was still oversize to the point of being unflattering. i am tall 5'9"" about 130 pounds and have a fairly thin torso and look best in cloths that have some shape. if you like a loose fit this might be for you. the material is thicker and warm and comfortable. i would suggest ordering down a size.",3,0,2,General,Tops,Sweaters +861,44,,,4,1,0,General,Tops,Knits +974,58,Great addition to fall/winter wardrobe,"I saw this piece and fell in love with it. the print is beautiful and is well placed on every piece! it is a little boxy, and is a bit warm for indoors, but it is unusual enough to overlook the flaws. i am 5'10"". usually a small, but sized up to a medium with this one.",5,1,0,General Petite,Jackets,Jackets +831,28,Shrunk!,"I was so excited about this top, super cute and fit perfectly but as soon as i washed it (cold, hand wash, air dry) it shrunk! now it is too short and tight. i did not expect the material to shrink so very disappointed.",3,0,0,General Petite,Tops,Blouses +831,54,Well made and flattering,The blouse is as shown in the picture. it falls nicely and is flattering to wear. the detail on the yoke and hemline is of good quality. i've received a lot of compliments on this top.,5,1,0,General Petite,Tops,Blouses +867,48,Cute back hem feature,I bought this shirt in a size small. it fits the same as it does on the model. it's a comfortable cute shirt. wish the other colors were available because i'd order another one.,4,1,0,General,Tops,Knits +861,41,Pretty top,Got a ton of compliments. great tee with beautiful print.,5,1,0,General,Tops,Knits +877,54,Comfy but classy,This product is amazing. i love that it's comfortable and stylish at the same time. i love the unique color pattern and the length of this product. i also love that i can wear to any occasion and can dress it up or dress it down. it's very versatile and i love it.,5,1,0,General,Tops,Knits +1081,41,"Pretty, airy dress","I tried the pink color on in the fall and liked it but wasn't sure how much i'd wear it for the price. i ordered down a size in the maize for the holidays when it went on sale. i think i prefered the subtlety of the pink/blush color. the maize is a goldenrod yellow, not as light a shade as it looks in the online picture. i'll still keep it because it is super comfy, though the sequins don't show as well as on the blush. it will look cute with leggings and boots or high heels. i didn't find it to",4,1,0,General,Dresses,Dresses +1080,39,Lovely cut,"And lovely color, just not on my pale skin hue unfortunately. i tried on the xs in store, and that was a little long on me, so i would need petite. the cut was very flattering, and super feminine, i love the color and pattern on the dr4ess too. sadly, not for me, i looked sick in it. (115 lbs, 30 dd and xs petite would fit)",4,1,2,General,Dresses,Dresses +861,34,,,5,1,0,General,Tops,Knits +861,33,Pretty colors/lines,"This top was very pretty when i got it, but i was hoping it would be a bit longer. the v neck design was nice, and the fabric very soft. i liked that a simple t shirt was so feminine.",4,1,0,General,Tops,Knits +871,59,Ample and soft,"Ordered this in the white/gray. likely one of the softest tops i own, and drapes beautifully. density of fabric enough that i won't need a tee underneath. design of the pointed front will look great with a shorter jacket. i'm busty and there is a ton of fabric in the front. due to shipping i won't return but could have gone a size down, and i'm a 42dd.",4,1,7,General,Tops,Knits +831,46,,,4,1,0,General Petite,Tops,Blouses +861,42,I feel so betrayed...,"I bought this top in the blue motif and loved it so so very much until i washed it. it came out of the wash (delicate/cold cycle) with 3 small holes. i am devastated because it was destined to be my favorite top for summer. it is flattering, lightweight, gorgeous color, cool raw edges, v-back detail...i could go on and on about all the things i love about this top, but now it has holes after one washing so it's all for naught. do-over please with better fabric qa.",2,0,3,General,Tops,Knits +861,26,V-neck tee,"Fit is okay, the style of the shirt and the purple flowers are beautiful!",4,1,0,General,Tops,Knits +974,42,Lovely jacket!,Ordered this with my bday discount - the small felt a bit roomy so i took it to the store so i could possibly exchange for an xs. i literally could not even get my arm in the xs! tried a different small which was more fitted than the small i had received - so i would say the sizing can be inconsistent,5,1,0,General Petite,Jackets,Jackets +730,32,"More ""cheeky"" than expected","Cute print on both sides, but far more ""cheek"" was exposed than i anticipated from the photos. the front isn't too skimpy, but the back is a bit too small for my taste. definitely narrower in the back than a standard bikini cut. too bad :( the matching top is my favorite top, so i guess i'll just have to wear black bottoms with it.",3,0,1,Initmates,Intimate,Swim +974,42,Had great possibilities,"Loved this as soon as i saw it. definitely darker than the photo; not as muted. since it was a jacket and i'd be wearing something under it, i chose a medium rather than the small i generally wear. the shoulders just fit and the rest was big making me look large. not a flattering fit and a major disappointment. nice that it works for the other reviewers but not for me. sadly, going back. the sweater shown underneath also runs loose and large so i'm exchanging that one for a small.",4,1,9,General Petite,Jackets,Jackets +867,44,Short/boxy,"Love the idea of this but it ran short and boxier than i would have liked. material is soft, cute design but not flattering. returning",3,0,0,General,Tops,Knits +974,40,,"Just beautiful! the details and the colors are combined in such an usual and chic way. the fit is really comfortable too--i found that the jacket runs tts, maybe even a bit large, but i purchased my regular size so that i could wear layers. keep in mind, i have a rather large bust, so someone with a smaller one could probably size down. please note, there are no closures in the front of the jacket, but it looks almost closed when you're wearing it.",5,1,14,General Petite,Jackets,Jackets +861,37,See through,"I purchased this shirt with the purple colored flowers. while the cut is fine, the quality of the fabric is not great so the shirt is very see-through. will be returning it.",3,0,0,General,Tops,Knits +861,42,V neck,Great shirt. love the detail in back. feminine and different than the average t,5,1,0,General,Tops,Knits +861,68,Not my thing,"Wish i'd noticed that the sleeve cuff and hem were 'cut' to look hippie-casual. i'm taking this back with great regret. it's soft and the prettiest pale lime-sherbet color; made for a cool summer look. i don't like 'tattered,' though - so back it goes. sigh. it's soft, true fit, and beautiful. i'd buy it in many colors and in the lovely lavender print if it wasn't for the 'cuts.'",3,1,0,General,Tops,Knits +861,46,Great fit & colors & style!,"Nicer twist on the casual tshirt. soft, comfy. love the purple.",4,1,0,General,Tops,Knits +861,24,Casual striped v-neck t-shirt,"This t-shirt is very casual, so it is perfect for everyday use. +touch of textile is comfortable, so i feel relaxed whenever wearing this t-shirt. +although stripe is a simple design, it does not limit your choise of fashion, so it can go with almost anything. +just be aware that this t-shirt runs a little larger than the true size.",5,1,0,General,Tops,Knits +861,34,Great shirt,I love florals and this top can be worn with jeans and also i have worn it for work. it's very comfortable and light.,5,1,0,General,Tops,Knits +1081,38,Beautiful color!,"This dress is happy! it is easy to wear and it is lined. it came in the mail super wrinkled tho. i went for the color more than the style and while the style is lovely, i fell in love with another retailer dress in the same color so i may return this.",4,1,0,General,Dresses,Dresses +861,60,,,5,1,0,General,Tops,Knits +937,33,Love it but it's itchy!,"This shirt aesthetically is very pleasing. i love the overall design and colors. however, when i tried it on i was immediately itchy! the material is not soft like a cozy sweater ought to be. in addition, though i ordered a size medium, it fit very large - almost too oversized. the sleeves were extremely long on me and the overall body was too big. it's too bad, i really loved the look but i'm not the type to layer. if you are, go for it, but get a size smaller than you normally would!",2,0,4,General,Tops,Sweaters +1081,24,Great dress overall,"This dress was overall cute, but you have to have an olive/darker complexion or a nice tan to really pull it off because it is such a pale pink. i'm very fare, but normally can do light punks, but this one just clashed. it does run pretty true to size. if you're on the edge between a smaller or bigger size, i recommend the smaller size however. hope this helps y'all!",4,1,0,General,Dresses,Dresses +877,45,,,5,1,0,General,Tops,Knits +1083,52,,This is the perfect holiday dress. my best purchase of the season!,5,1,3,General Petite,Dresses,Dresses +877,44,Easy wear!,"I found this in store last weekend and thought it was it perfect. i got the size small which had plenty of space for me, usually a 4-6 or small (34a-28-26). +it's long, i found it to be just below knee length (5'6""). +if you zoom in, you can see some detail work along the front edges which complements the pretty openwork in back. +it has pockets too btw :) +this will be worn over everything this summer, let's hope the poly/rayon/spandex blend washes ok!",5,1,8,General,Tops,Knits +1081,34,Finally a sweater dress that's not too tight,I've been looking for a cozy sweater dress for a while because everything always seems to be so form fitting. i'm between an xs and a small and i got the small for this and it's just a little roomy so it's perfect. fabric is pretty thin so it drapes well and it won't be too warm.,5,1,0,General,Dresses,Dresses +1083,21,This dress is extremely elegant and fun!,"I love this dress because it is amazingly feminine and easy to wear. i put this dress on and immediately felt elegant, sophisticated, and flirty all at the same time. a few tailoring uniquenesses i want to mention; stretchy, form fitting, sexy sheer upper and front back panel, you can wear a bra and not see it thru the sheer front and back portions of the dress, the waist is exactly tailored to show off back side. it is true to size.",5,1,0,General Petite,Dresses,Dresses +861,49,Perfection!,"I love this tee, i bought it in white and the bright salmon pink and wished i could have bought it in all the colors. the v-neck is low enough to show just a hint of cleavage without being too revealing. the rough edge of the hem is a nice touch. i like the double-v neck in the back as well as front; it adds a little interest to the back and is not too low. the label is sewn on with red thread which shows up on the white color in back but in a nice way. overall the length and cut are just ideal.",5,1,7,General,Tops,Knits +974,49,I looked like a linebacker,"When i saw this jacket in store, i fell in love with it. the colors with the quilting and gold studs are gorgeous. i am 5'3"" 130# 36dd with petite frame. i tried a m on in store and the sleeves were super long and wide. the s was too small across chest and hung open oddly. the jacket is a nice heavy weight and great quality. i ordered a petite m and it was no better. i literally looked like a big marshmallow...a linebacker! the sleeves were so unflattering where it looked like i was wearing pvc",2,0,0,General Petite,Jackets,Jackets +1081,30,Sequins??,"Just a warning, the yoke on this dress has sequins underneath. i'm not a sparkle kinda gal, so as soon as i saw that, the dress went right back in the package and will be going back to the store. i wish that had been described or more evident in the pictures, to me, it cheapens the whole dress, which would otherwise be adorable.",3,0,0,General,Dresses,Dresses +861,28,V neck flower tee,I like this shirt and think its very feminine.,4,1,0,General,Tops,Knits +861,23,Cute tee,"I am wearing a medium in the photos, my measurements are 38-30-40 for reference.",4,1,2,General,Tops,Knits +861,34,Great basic t,"This top is true to size, although i am a little nervous about washing it... hopefully it won't shrink. it is super think so great for hot days but because it's so thin, i'll be careful. i have white and am def. going to get more colors. i am 5'8'' 128lbs and purchased a small. i think medium might cut to low in the v, but haven't tried it yet, let's just say if it shrinks after washing i will get a medium...",4,1,20,General,Tops,Knits +1081,35,Huge,"I knew there was a problem when my dress arrived and the small fit perfectly when i was 9 months pregnant...i even bought a small even though i normally wear medium +i bought it for family pictures once my daughter was born but it made me look like i was still pregnant even though i had already lost all the baby weight in 3 weeks. +it is a beautiful dress though and may try to get it altered to see if that works",3,1,0,General,Dresses,Dresses +861,61,Cute tee shirt,"Very soft and lovely t-shirt. beautiful flowered print and cute detail on neck. i am 140 lbs and 5' 4"" and got a large.",5,1,0,General,Tops,Knits +861,69,Great t,"I love this t-shirt because it has the combination of elegance and relazation to a ""t"". +it's soft, pretty and covers my wide bottom well.",1,1,0,General,Tops,Knits +861,49,Cute top,"I bought this top in 2 colors -- white and light green. i really like them both. the shirt is a nice weight and texture and the soft green color is really nice. the fit is true to size. i am 5'-6"" and 145 lbs. and the medium was perfect. i like how the back dips in a slight v as well.",5,1,2,General,Tops,Knits +1080,45,Absolute sunshine!!!,"Absolutely gorgeous. i never have been a yellow person but today i am converted. all the colors are vibrant and true to the photo. i'm 5'6 and the length is perfect for flat sandals and my wedges, so i can dress it up or be stunningly casual. i range from 14-16/ l-xl in retailer dresses. the size is dictated by my broad shoulders. since this one is sleeveless i went with the large and it's perfect. the nude slip has clasps to keep the straps in place and its adjustable. the slip is als",5,1,2,General,Dresses,Dresses +861,44,Great shirt!,"I bought this top about 3 weeks ago& love it! i like it because it's better than a plain t-shirt so it's perfect for running around doing errands or shopping. i like the material and the length, i'm 5'8"" and sometimes i feel like shirts are to short. i wash it and hang it to dry, no shrinking or pilling so far! i am ordering this in at least two more colors!",5,1,0,General,Tops,Knits +861,60,Purple floral tee,I think 56 reviews says it all! basic tee with a little tailoring on upper back in a variety of colors. i purchased the purple floral tee in my local store and it is prettier in person than on the website. much more vibrant in color. it is tts.,5,1,1,General,Tops,Knits +1081,38,Fancy and cas at once,"Will be cute in the summer months and with a pair of sweater tights will work for holiday parties. doesn't seem to come in a petite which is a bummer so i sized down. +.",5,1,0,General,Dresses,Dresses +831,64,Great details and fit!,"Ordered this top in navy with white irregular dots since it was not available in smaller sizes in the store. i took a chance and ordered an xs and the size and fit are perfect! love the scalloped edge, small side slits and the crocheted detail on the top. great addition to my florida wardrobe!",5,1,1,General Petite,Tops,Blouses +861,32,Great deal!,Tts and comfortable. this t shirt brings flair to everyday wear and i purchased on sale for a steal!,5,1,0,General,Tops,Knits +974,43,Frankenstein experiment gone wrong,"This jacket looks like such the statement piece online with the soft focus lens, but in reality...meh. i think the pattern is gorgeous and would have worked without the studs. and the studs are unique and would have worked on a simple solid color. but put them together and you have the unwanted love child of a laura ashley bag and a marching band jacket. to me, it all felt more cloying than clever. + +the quilted fabric and boxy cut of the jacket also makes it unwieldy and uncomfortable. since i",2,0,5,General Petite,Jackets,Jackets +861,56,Nice tee!,"I usually wear a small or a medium in tee shirts, and i had to get a medium so that it fit comfortable throughout the shoulder area.",4,1,0,General,Tops,Knits +1080,70,Another lovely retailer dress,"Gorgeous with that retailer uniqueness. + +unfortunately this shade of yellow just wasn't right for me. + +but it is a beautiful dress",5,1,0,General,Dresses,Dresses +937,40,Beautiful sweater but extremely itchy,Couldn't wait for this sweater to arrive. i love oversized sweaters for the fall! unfortunately this sweater is extremely itchy that it has to be returned :(,3,0,0,General,Tops,Sweaters +1081,42,Peasant dress,I purchased this dress in pink. it is absolutely beautiful. the shimmery detail around the neck is gorgeous! it is so flattering and looks amazing with boots or sandals! this dress will not disappoint!!,5,1,0,General,Dresses,Dresses +1081,61,Let the sun shine,"Beautiful dress. the color in person in a rich golden sun, not too flashy. a very warm hue, it will compliment every skin tone. it is more fitted than most peasant dresses. not as much flowing material, very flattering. the slight beading on the yoke makes it a standout. very well made, with a nice cotton lining. i am usually a size six in a dress, and the small fit beautifully, even with my large top. it is a stunner, that can be worn with boots or sandals. you will receive a lot of compliments",5,1,0,General,Dresses,Dresses +861,41,"Cute, great color, runs a little big","I got this in light green and it's a gorgeous color. first tried a small, but it was a little too wide and long. exchanged for xs, looks great. now i just hope it doesn't shrink too much!",4,1,0,General,Tops,Knits +1081,39,Love this dress!!!,I love this dress! would like to see one.september make it in sky like their meda lace top. runs a little big. i normally wear a l but the m fit perfectly.,4,1,0,General,Dresses,Dresses +861,43,What's up with the tag??,"I tried this shirt in the purple motif, it fit true to size, my normal small worked well. all was good on the front turned around to admire the slight detail of the neckline in the back and all i could see with the red thread the designer used to sew their tag in. really? on a white shirt? it annoyed me so much i didn't buy the shirt.",2,0,1,General,Tops,Knits +1080,33,Disappointment,"I've had a lot of misses from retailer lately. i've loved this dress since i first saw it in the spring/summer releases and gave it a try when it went on sale. when it arrived i literally lol. it's an ill fitting nightgown. the size small was a tent on me and it's so flimsy and sheer it probably shouldn't be worn in public. there's a short sheer slip that comes with it but unfortunately doesn't do much. pass, ladies.",2,0,0,General,Dresses,Dresses +831,40,,Cute but classy top because of the embroidery at the bottom!,4,1,0,General Petite,Tops,Blouses +861,39,Cute but where is the skirt???,I'm dying for this skirt in the picture. where is it??,5,1,7,General,Tops,Knits +861,32,Cute tee,"I bought one of these tees and i washed it a few times and luckily no holes yet like other reviews have stated. i just got a 2nd tee as they are quite comfy. i bought these both in-store but the petite size might have been better for my frame. i wish retailer would look into having petite sizes available in store and not just online. sometimes i do get lucky on finding petite sizes in-store, but it's usually from a return.",4,1,0,General,Tops,Knits +1025,41,,,5,1,0,General,Bottoms,Jeans +877,51,Adds a little something to an outfit,"This duster is a nice light weight dark navy that you can throw on to add a little something to a your outfit without adding bulk or warmth. looks nice over dress, jeans, crops. just a fun little item to have in you closet that you can grab to put a little twist to an outfit. best part of the duster....it has pockets!! i love being able to slide my iphone into a pocket while on the go!",5,1,0,General,Tops,Knits +861,34,"Too thin, too sheer","I have been looking for a nice white top to go with many of my skirts for summer, and this is not it. like others, it's just so thin and sheer. i live in the south. i don't need my bra showing and i was wearing a nude bra when i tried this on and you can see everything. this is fine to layer in cooler temps, but now in our horrible summers where that's the last thing i wish to do. + +- the only plus i can tell you is it's tts and the fabric is so comfortable and feels great on the skin. however,",3,0,19,General,Tops,Knits +974,33,Boxy and gapes but thick and well made,I love the look and design of this piece but the fit is awkward. the m gapes open and is much boxier than it looks on the model but the s is too tight in the elbows. i think i might have to return it :(,4,1,0,General Petite,Jackets,Jackets +831,33,Great details,"I got this shirt in black, and it's perfect for the office. i ordered a medium, which i thought was a little on the larger side. well made, the details make it an interesting top.",5,1,0,General Petite,Tops,Blouses +1080,34,Beautiful and flowy,This dress is beautiful and flowy but flattering. the colors are vibrant. the slip is tighter than the dress but i don't mind. it is a half slip and the bottom is sheer. i'm normally a 10/12 in dress and the 12 fit well. the length was good for my 5'9 height.,4,1,0,General,Dresses,Dresses +861,35,My new favorite tee,"When i walked into the store, this tee instantly caught my eye. it's light weight, not too low cut and longer in the back. great with jeans, skirts or shorts.",5,1,0,General,Tops,Knits +974,67,Edgy jacket will add oomph to outfits,"This jacket is well made and the fit is perfect. it is quilted and will work well three seasons of the year. it goes with jeans, cords and flannel, and would work with skirts and dresses. colors are a bit more muted and darker than my display shows, but only slightly. studs and black trim really punch up the look of this jacket. i am very pleased with it!",5,1,11,General Petite,Jackets,Jackets +1083,41,,Was looking for the perfect birthday dress....and i found it! gorgeous! i generally wear a size 0 or 2 but opted for a size 4 to give some wiggle room and it still fit me like a glove.,5,1,2,General Petite,Dresses,Dresses +867,52,Unique style,Got the mustard and grey. very cute. looking forward to wearing it,5,1,0,General,Tops,Knits +1080,41,Very feminine summer dress,"I purchased this for a late summer wedding that i was invited to last minute and i can't wait to wear it! i got it on sale with an additional percentage off and for the price it is a steal. like all of tracy reese designs it is so cute and feminine. it runs just a tad bit on the larger side so the medium fit my size 10 figure perfectly (i tried on the large and it was too big and too long for me). the medium length was perfect for my height (5""6).",5,1,1,General,Dresses,Dresses +1080,38,,Just received this dress in the mail and i'm in love. it's beautiful and fits so well. i was a little hesitant ordering a yellow dress but i'm so happy that i did. ??,5,1,0,General,Dresses,Dresses +861,28,Love the stripes,"I tried both the xs and s in the store. i am usually an xs, but ended up buying the s, because the xs was really short and i didn't want it to be any shorter after washing. the s fit more like a normal t-shirt, although the back is longer. love the color (blue) and the fabric is super soft. also happy that it's not too thin, nor see-through.",5,1,0,General,Tops,Knits +861,54,"Cute tee, very soft","I have bought several tees by t.la and this one is really cute. i bought it in the blue stripe size xs. it runs slightly larger than most in that size, but it will probably shrink a little. it's not overly baggy, just comfy fit. i like the colors in this top and will wear it often with shorts or jeans. the fabric is thin so i'm not sure how long it will last, but until then it will be a keeper in my closet!",5,1,0,General,Tops,Knits +974,33,Simply amazing!,"This jacket is extremely good quality, has gorgeous detailing and is warm! quilting makes it thicker than expected, but plan to wear as both a blazer and fall jacket. highly recommend.",5,1,1,General Petite,Jackets,Jackets +861,42,Perfect....for two wears,"Ok ladies....you need to know that this type of fabric is the one that will get holes (i bought the white one). it is super thin and lovely, but i was only able to get two wears out of it. i did wash it and it maintained it's size because i restretched it while wet then hung to dry. i was super disappointed about the wear but appreciated being able to return it without question at my local retailer.",1,0,4,General,Tops,Knits +937,63,Graphic appeal,"I tend to like grey, black simple clothes with a splash here and there for everyday. this will be perfect in the fall/winter. it is wool, so be prepared for the felted wool feel, but it is casual comfortable. i am 5' 4"" and boxy. the medium is still roomie on me but that is how i like it.",4,1,1,General,Tops,Sweaters +861,46,Great shirt,The shirt was soft and very flattering on. got multiple compliments.,5,1,0,General,Tops,Knits +1059,38,I love these,"I noticed a xxs p at the store. i thought they would never fit me since i am an xs, but i decided to try for fun and to my surprise they fit perfectly. i love it! very stylish and flattering.",5,1,0,General Petite,Bottoms,Pants +861,33,Staple with flair,Great basic but with a little something special to it. great t all around!,5,1,0,General,Tops,Knits +974,57,Quilted jacket,"The jacket is cute, it runs small but looks good. i like it even though it feels tight on my arms.",3,1,2,General Petite,Jackets,Jackets +155,45,Perfect pair of tights for winter!,"These tights are exactly what i was looking for! they are a great weight for the winter months and can be worn out/dressed up or for lounging around at the house. they are a nice weight and durable construction. i plan to pair them with skirts, tunics and dresses. they are super cute with ankle boots.",5,1,4,Initmates,Intimate,Legwear +705,20,Exceeded my expectations,"This romper is absolutely gorgeous. the embroidery is detailed and lovely and the fit is feminine and flattering. it's super versatile and easy to dress up or dress down depending where you want to wear it. i'm in love! +it is a little on the sheer side, though, and i chose to wear a tank top underneath for more coverage, but this was an easy fix. it was a reasonable trade off to wear a camisole under in exchange for the lightweight and flowy material. totally obsessed.",5,1,6,General,Bottoms,Shorts +155,35,Comfortable leggings,"These are perfect with a long tunic for the weekend to run errands! they are not tights-like in the sense that there's full coverage across your bum -- no accidental flashing of anyone. they're not itchy either. i bought these in brown, and want to buy the rest of the colors available!",4,1,4,Initmates,Intimate,Legwear +1089,42,,"Beautiful dress; however, the top was small for my chest and the rest ran large.",3,1,3,General,Dresses,Dresses +1081,42,Gorgeous! stock photo does not do it justice,"I had seen this online a few times and while it caught my eye because of the color, i never really bothered to check out the details due to the stock photo. it looks quite bland as it doesn't really flatter the model. however, once i saw this dress in-store, i was drawn to it immediately. the dress is well made, the embroidery is delicate and beautiful with interesting design features. i love the combination of the summer dress with a collar. it makes this dress so work appropriate as well as it",5,1,1,General,Dresses,Dresses +155,31,Cozy,Ordered these to wear around the house more as leggings and they did the trick. love the color and the fact that they are warm without being too thick.,5,1,0,Initmates,Intimate,Legwear +155,32,"Versatile, cozy, and fabulous!!!!","Given that tunics and thigh-length dresses are the hot new thing this season, i kept finding that my black-only-tights collection wasn't going to fly with my cute new tops and boots. so i searched far and wide for different colored tights that didn't look cheap or inauthentic in color, and found these. i bought them in blue, gray, and brown and i have worn them with so many different pieces! they look more ""rustic"" than the average tight, almost like they are leggings, not tights. they are a lit",5,1,0,Initmates,Intimate,Legwear +1081,46,"Beautiful fabric, perfect fit","I was a little hesitant to order this dress due to the cotton/polyester blend...not generally a fan of poly for summer. it is high quality though, very soft, lightweight and lays beautifully. it's not see through either, which seems like a rare find in clothing lately. the embroidery is very well done too, and i think it adds just the right touch of feminine, while not being overly ""precious"". it does run small by a whole size, which i've found to be typical of eva franco dresses. i am usually a",5,1,15,General,Dresses,Dresses +155,40,Cute and comfy!,"I wear tights all winter. it's difficult to find cute, fashionable tights that aren't ""heavy"" and have quality fabrics that will last through an entire season. these fit great, don't roll or bunch, don't shrink, have great feeling fabric and aren't super thick... but not see thru! love these and plan on purchasing in all of the colors!",5,1,0,Initmates,Intimate,Legwear +705,42,Great fit,This romper was cute and short but not too short. the fabric is soft and elegant.,4,1,0,General,Bottoms,Shorts +940,36,Nice design but not great quality,"I love the design of this sweater and ordered it online, but was disappointed with the quality of the yarn when it arrived. also the color was a little different than i expected from the photo, still a type of ivory, but a little yellow-y. the sweater was solid looking, but the yarn seemed a bit cheap and i'm not sure how well it would have worn over time. flattering cut. i liked how it fit, but for the price and fabric, i decided to return it. unfortunate to lose money on shipping.",3,0,0,General Petite,Tops,Sweaters +155,52,,"I have the blue and gray and love the look and feel. however, the gray within days ripped at the seam and other areas.",3,1,0,Initmates,Intimate,Legwear +155,53,Love these tights!,"Just received first pair in brown...love them and ordered two more! these tights actually stay up and you don't have to keep pulling on them throughout the day. super comfortable and perfect weight, not too thick and not too thin. they will run, so be careful when washing or putting them on.",5,1,1,Initmates,Intimate,Legwear +940,25,So surprised by the poor quality,"I loved the look of this sweater, but the workmanship was surprisingly poor. there were missed stitches, and loose threads throughout, and even a tag sewn to the outside. retailer was great about the return. i really wanted to keep it and was very disappointed.",1,0,3,General Petite,Tops,Sweaters +155,43,Great tights!,These tights are awesome! i bought three pairs. they give a nice casual look to some of my multi-season dresses.,5,1,0,Initmates,Intimate,Legwear +155,36,Lovely material,These tights are comfortable and the material is great. i bought the gray and holly color and the colors are as shown online. similar to most nylon tights they snag easily. definitely not a legging and similar to other reviewers these won't keep you warm in the winter.,4,1,4,Initmates,Intimate,Legwear +940,37,Comfortable sweater,"I love this sweater. it's warm, comfortable, and soft. nice quality too.",5,1,0,General Petite,Tops,Sweaters +1089,50,,"This dress looked so cute on the model, but unfortunately not so much on me. it appeared so much more fitted in the picture than it actually is. i ordered the xs and it is huge on me. definitely a tunic/swing style, rather than streamlined. my husband said it looked frumpy on me. it is also longer than it appears on the modei. for reference i am 5' 4"" +i wish this would have worked, but i need something more fitted for my body type. if you are looking for an unfitted tunic style, this could be s",3,1,3,General,Dresses,Dresses +155,22,Blue tights,Perfect substitute for leggings to wear with a long shirt skirts or shorts. and are thick enough to keep you warm and aren't as thin as some tights normally are.,5,1,0,Initmates,Intimate,Legwear +705,34,So cute!,"This romper is so dang cute. i normally wear a m/l or 10/12. i took a medium in this though either size would probably have worked depending how loose you like it. it's not too sheer and the shorts aren't too short (i'm 5'9). my only complaint is the front toe came off on one side as i was trying it on, an easy fix but still it should come off that easy.",5,1,0,General,Bottoms,Shorts +705,36,Very comfortable with super pretty embroidery!,"Love this romper! very impressed that even though the material is ivory colour, it's not sheer and undergarments won't show through. a forgiving fit for everyone",5,1,3,General,Bottoms,Shorts +155,40,Cozy,"These tights are light but at the same time super cozy. definitely cut and sewn as tights and not meant to be worn as leggings -- they're really sheer around your rump. i've worn them around the house with oversized t-shirts and long sweaters. would only wear out of the house with a dress or serious coverage, despite what i thought when i bought them. i wish they were available in a few more colors. worth the sale price.",4,1,0,Initmates,Intimate,Legwear +155,30,Cute and simple,"Got them in the light blue. i'm 5'0"" so they're a little long. i like the texture and they are really comfortable! the only thing is the awkward seams around the crotch area so you really can't wear them alone with a cropped tee or shorter top.",3,1,0,Initmates,Intimate,Legwear +155,52,,The tights are thin and not how they appear in the photo. one of my pairs had a hole in the seat and it was obvious they had been repackaged with part of the packaging missing. very disappointing. i wish i had found the hole before i try them on. they are definitely going back.,1,0,0,Initmates,Intimate,Legwear +35,52,Breathtaking,"I am so happy with this chemise! the pink is the most breathtaking blush and the fabric is super soft. i like that the straps are adjustable, allowing me to make the bodice a perfect fit while adjusting the gown to the perfect length for me. it's definitely my new favorite!",5,1,1,Initmates,Intimate,Intimates +1099,33,Cute but huge,"I was very excited to receive this dress. i ordered my normal size small, which i should have realized was a mistake. you could fit two of me in that size small. i realize the dress is supposed to be ""flowy"" but it would have been baggy on me at nine months pregnant. the fabric is soft and comfy and the pattern is cute, but order at least one size down. i'm going to exchange for the xs in hopes of it not resembling a short muumuu.",4,1,0,General Petite,Dresses,Dresses +1078,32,Great dress,This dress has a great design for any frame. it looks great with a belt to accentuate the waist but the dress stands great alone and doesn't require a lot of styling.,4,1,1,General,Dresses,Dresses +944,41,Sooo soft,"Such a pretty little sweater, gorgeous detail. i wish it were a bit longer, it was too boxy for my large chest. otherwise it fits tts. i wanted to lie inside of it and take a nap. so comfortable. please make more sweaters in this knit!",5,1,0,General,Tops,Sweaters +1099,39,Soft and comfy,"And flattering! i love the feel of the dress, it is flowy, loose but still flattering. i can't wait to wear it with boots. i could go with flats for summer, too, if i wanted to. i have had this dress in my wish list, then i deleted it, but it was in the store as a return in xxs p so i thought, why not! i shouldn't have really, coz now i have to get it... and i did. + +colors are actually great, i don't know why people have issues ""matching"" - black or navy are equally neutral in my books... + +f",5,1,0,General Petite,Dresses,Dresses +1099,43,Perfect dress for autumn,"This dress is perfect for wearing in autumn (and beyond)! it will look great with casual flats or sneakers while it's still warm outside and it will be very stylish and cozy with a denim jacket and boots when it's cooler outside. it runs large in the skirted portion of the dress, like last season's similar floral dresses by this brand. the dress is a medium weight rayon and is not lined; some people might want to wear a slip or half slip or wear leggings with this dress for modesty. as for the c",4,1,7,General Petite,Dresses,Dresses +1099,50,Cute and comfey,"This dress is cute and comfortable. big but not too big, skimming. i usually wear a 12 pant and bought a medium and it is great. i am on the taller side and the length was great too.",5,1,0,General Petite,Dresses,Dresses +1099,56,So many compliments,"I love this dress! it's super comfortable--soft fabric and doesn't bind anywhere--yet somehow it's still feminine and sexy. i get compliments on it wherever i go! also, it works all year-round (in winter it can be easily paired with boots, tights, a long-sleeved black t-shirt, etc.).",5,1,0,General Petite,Dresses,Dresses +1115,41,Great vest!,Well made & lined. great find for the fall!,5,1,2,General,Jackets,Outerwear +1099,23,Flattering,"I am short (5'3'"") and have a short torso so the empire waist line was really flattering. i got the petite size small and it fell just above my knee. loose skirt portion led to an easy look to the dress. overall, super cute!",5,1,0,General Petite,Dresses,Dresses +878,36,Super cute!,"This is such a unique design and i love the colors. i could be a small or x-small and chose the x-small, fits perfectly.",5,1,3,General,Tops,Knits +1099,35,Fabric is cheap.,The fit is really flattering and cute but the fabric and finishings seem really cheap. it's a printed plaid - not woven.,3,0,7,General Petite,Dresses,Dresses +1020,47,Darling little mini,"Really cute, really comfy, great color, love the oversize buttons! all around just a great skirt. nice shade that goes right into fall. i have several of this style skirt and love them all!",5,1,0,General,Bottoms,Skirts +878,49,Comfortable,"Comfortable, stretchy fabric. i ordered the xs and will probably take the sides in at least a couple of inches for a snugger fit...the fit is looser than it looks on the model.",3,1,3,General,Tops,Knits +828,64,,This really is a lovely shirt . i like the long length of the sleeves as sleeves are often too short on me to wear cuffed at the wrist. i now have the option of long or rolled up sleeves. the fabric is the perfect weight for indoors. it is definitely a keeper.,5,1,0,General,Tops,Blouses +828,29,Perfect white shirt,"This is a basic that i've been looking for for ages. i've never found such a flattering plain white button down shirt before -- everything is either not basic enough, unflattering shape, too masculine, too boring, too wrinkly, or too hard to take care of. this shirt is perfect. it is shaped to flatter, but doesn't have any finicky details. this is just a wardrobe staple, plain and simple. it is going to work hard for me, year round. i have other cloth & stone tops, and have loved them all. their",5,1,0,General,Tops,Blouses +35,29,So comfortable!,Bought this for a vacation to mexico with my boyfriend. super flattering and soft. big thumbs up!,5,1,1,Initmates,Intimate,Intimates +828,56,So soft and amazing,"I'm normally a size small, but the store only had a large. i tried it on and it still fits great as an oversized button down for a threw-on-my-boyfriends-shirt kind of look. i wear it tied in a knot with leggings. + +the shirt is so so so soft and high in quality.",5,1,0,General,Tops,Blouses +1099,46,Red and navy checks,"This is a cute dress, but it runs very large through. if i had decided to keep it, i would have taken it to my seamstress to remove some of the volume. when i ordered, i assumed it was red and black checked, but it is navy. my black cropped leather jacket and boots won't work with those colors, so it is going back.",4,1,13,General Petite,Dresses,Dresses +1099,41,,,4,1,0,General Petite,Dresses,Dresses +1099,57,Mona plaid,I thought this would be a great dress for late summer early fall and i was right. it's light and flowy but the colors are darker. it's very cute and i can't wait to wear it with nice boots like in the picture.,4,1,0,General Petite,Dresses,Dresses +878,56,,Wore for the 4th with white jeans super cute love the ruffle,5,1,0,General,Tops,Knits +818,31,Great top,Really love this top even more than i expected based on the picture. i have already worn it 6 times in a short period of time. it's been a great fall top,5,1,0,General,Tops,Blouses +1099,43,Love this dress!!!,"This is a fantastic dress. it's very flowy, comfortable, stylish, and it has pockets!!! whoop! whoop! i have a larger bust (34d) and even though it's button down, the openings in between don't peak open to show your bra. it is navy and red, but i think you could wear black boots with it, no problem. this is my new favorite dress and i'm very happy with my purchase. buy it!!",5,1,0,General Petite,Dresses,Dresses +818,29,,"I actually found this blouse to be quite nice. i'm not sure that i'd wear it as a tunic, though. it looks great tucked in and the print is fun but nothing exhilarating. for the price, i expected more.",4,1,0,General,Tops,Blouses +818,46,"Beautiful, looks like just photo on....","I disagree with a previous review saying that this top is unflattering and boxy. i bought this top and it actually looks just like the image in the photo online. i received a lot of compliments when i wore it. i wore it with black skinny jeans, black tall boots and a short sleeve cardigan which i used as a jacket, and did not keep on the entire night. i think the shirt even looks good without being tucked in. :) i really love it. maybe just wish i could button the top from time to time to change",5,1,2,General,Tops,Blouses +828,53,Elegant and casual at the same time,"This shirt can look very elegant thanks to the nice duffs and hidden button line. the material is pleasantly substancial and very soft. the only thing i did not like is that the bottom button broke it two pieces the tirst tme i buttoned it. no spare buttons included, but as the buttons are not visible i think i can find a similar one to replace it. not big enough of an issue to return,",5,1,0,General,Tops,Blouses +1078,30,Cuter on the model,"No, no, no...i don't know if it was the way it got flattened out in the packaging, or what, but it sticks out like a tent from the hips down. i'm 5'7"", about 145, 32c, usually wear a 6 or 8 in dresses. this thing barely buttoned over my bust, and then flares out to a tent-like triangular shape at the bottom. i don't think it would come out by washing and ironing it; i'm afraid it was just cut poorly. i looked like a sad prisoner in stripes, unfortunately. i bought three different dresses in the",2,0,2,General,Dresses,Dresses +828,34,,Absolutely perfect staple top to have in your wardrobe. fits very nicely. not see through at all. highly recommend this top.,5,1,0,General,Tops,Blouses +35,24,,I love this gown so much. i have two of them! the gray and pink. they are really soft and comfortable. i sleep in them all of the time.,5,1,1,Initmates,Intimate,Intimates +828,34,Nice but too big,"I'm 5'3"" and 120 lbs. i ordered a m and it was far too boxy and long in the arms as well as the back. the collar is small and lays flat. the material is good quality and soft but heavier than i had hoped.",3,1,0,General,Tops,Blouses +1099,35,Runs large!,"First, i'm an 8/10 and tried the s and m. i could've worn either but the m looked too large in my opinion. i kept the small. the color- i think you could wear black or navy as the navy is very very dark. the only con- the sleeves. they stick right out to the sides and don't lay down as much as the online photo. it definitely looks best with a cardigan or jacket over it. material is super light.",5,1,0,General Petite,Dresses,Dresses +861,45,Lots of compliments,"I got the black in size small. i love this easy, breezy and comfy t. i love that it's different and can wear with anything. the shirt is more flowy vs fitted which i like. i wish they had more colors! i could see myself wearing this shirt a lot this summer. + +i'm a size 2 and bought a small.",5,1,1,General,Tops,Knits +831,33,"Fun, neutral layering piece","This top is a great neutral layering piece with some nice visual interest. the black-and-white pattern and tie-neck style will add a little something to a cardigan or blazer. the neck can also be tied multiple ways. it's definitely appropriate for work and i found it tts. i normally wear a 10/m, and took an m in this top.",5,1,6,General Petite,Tops,Blouses +830,35,Super cute summer top!,"I just got this top in the mail and love love love it! i thought it was on the pricey side for a shirt, but couldn't help but purchase it full price because i love anything pineapple print! the metallic print is cute and chic from day to night. i also love the open shoulders, making this design different and perfect for summer. i'm only sorry that i didn't see this top online until i already returned from my vacation in maui! very comfortable and easy, worth the price!",5,1,1,General,Tops,Blouses +861,34,,,5,1,0,General,Tops,Knits +993,75,"Awesome, fun skirt","This skirt has a unique, fun pattern and a fit that is absolutely perfect. just figure flattering without being too tight or revealing. can't wait to wear it for a holiday dinner.",5,1,1,General Petite,Bottoms,Skirts +993,33,This skirt is perfection!,"I'm in love with this skirt! i already have so many outfits planned out! i do feel it runs slight large, maybe half a size?? i'm 5'6"", 135 lbs, and usually wear a 6. i ordered a small, and it's fairly loose, but i like that personally. if you want a tighter pencil look, then size down.",5,1,2,General Petite,Bottoms,Skirts +993,47,"Gorgeous, must have skirt","I love this skirt. it is stylish and very comfortable. ladies, don't be afraid of wearing a pattern on the bottom. it is flattering and slimming. i wear it with a black wrap sweater or black cotton casual jacket.",5,1,1,General Petite,Bottoms,Skirts +1078,40,I felt frumpy,"I love the pattern of the red/orange dress. i bought this online for easter. i'm bummed. i felt frumpy. the dress fit. i'm 5'5"" athletic build and i bought the xs. it is just not flattering on my frame. i looked like i had big hips, the waist band was not creating a waist for me and i need that... i wanted to keep it but sadly i will be returning it. my husband agreed i should return it.",3,0,4,General,Dresses,Dresses +1078,39,"Fun, flirty and comfy","I ordered both colors and my usual size (in eptites) and one size smaller... definitely true to size as in not smaller size. + +i am 5'1.5"" and the best size was xs petite. + +i ordered both colors and msut say they are both gorgeous, so can't go wrng there, as long as it goes with your skin tone, for me the red was better, but i did love hte neutral color as well. + +comes with a lining #bude color#. +wasit is elasticized, and comfortable, love the sleeves, this is light enough for spring and",5,1,34,General,Dresses,Dresses +831,38,"Cute, work appropriate top","Wish i had snagged both styles of this shirt before they sold out. this is a very cute, work appropriate top - good weight and quality to the shirt. i wear a lot of black and white at work (so sick of gray..why are all business clothes gray?) and this top will be added into my regular rotation.",4,1,0,General,Tops,Blouses +1078,43,"Cute, versatile dress","I debated for awhile about getting this dress. being tall i was worried that it would be really short on me, so i ended up ordering it in a large (i'm 5'10"" a size 10/12.) it definitely has a blousey look to it which i like. i kind of wish i had ordered it in a medium as well, but i think the large will work just fine. the length is good (hits right above my knee), the elastic waistband is nice because i can pull it up around my natural waist or pull it down for more of a drop waist effect. as o",4,1,1,General,Dresses,Dresses +1078,46,,"I am 5'9"" and 138 pounds slender, but with a tummy. the small fit great ,and i agree with the other reviewer that the elastic waist band is complimentary. the dress flounces out a little, but in a cute way, and it's not too short compared to so many other baby doll dresses out there now. i didn't think it looked that great on the hanger, but when i tried it on it looked so much better than i expected. got the brown. thank you to the other reviewers for the bootie, boot, moto jacket transition to",5,1,1,General,Dresses,Dresses +1030,53,Runs small,"I ordered these jeans twice because i love them. the first pair were mis-marked by about 4 sizes so i re-ordered. second pair still didn't fit, they run really small, i would probably need one maybe two sizes larger than normal to achieve the fit and feel of the other skinny jeans in my closet:(",2,0,2,General,Bottoms,Jeans +902,46,,Very cute but true it's very sheer. good with a simple nude tube underneath to avoid bra straps showing. i got in both colors. great with slim pants or jeans. may need to order up a size if long torso like me. the small was a bit short.,4,1,0,General,Tops,Fine gauge +410,34,"Comfy, but too much coverage","I'm a b-cup who hates traditional underwire bras, so i was excited to try this one out. while i appreciate that this bra has more structure and support than other wireless comfy bras, the cups provided too much coverage for my style. if you want to wear a shirt with a wide neck, or do a cute off-the-shoulder thing with your shirt, the top of the cup shows. bummer!",3,0,0,Initmates,Intimate,Intimates +1078,41,Odd fit,"I was excited to receive this dress because it seemed like a beautiful, breezy dress for summer. unfortunately i didn't find the fit to be very flattering. as two other reviewers mentioned there is too much fabric creating an odd bunching especially at the back waistline. i also found the dress to be a little tight across the bustline, upper arms and shoulders. the bunching can be improved by pulling the fabric of the dress forward in the front but this creates more of a plunging neckline than i",3,0,6,General,Dresses,Dresses +993,66,Gorgeous pattern,"Retailer has the greatest pencil skirts. i usually get 1 every year. the pattern on this one makes it very eye catching with blue birds on green or tan background and black and white flowers in a tree pattern. so it is versatile to wear with many colored tops. +i bought a large because they didn't have medium in the store. it is a bit loose in the waist but comfortable . the rest fits nice and slim. i am usually an 8-10 in jeans.",5,1,1,General Petite,Bottoms,Skirts +993,49,,,5,1,0,General Petite,Bottoms,Skirts +1020,64,Perfect denim skirt,"If you love denim skirts as much or more than you love the perfect pair of jeans, then you'll love this one! the waist fits perfectly with just enough give from the spandex to make this skirt comfortable all day without stretching so much that you'll wonder if you should've bought a smaller size. it's also a great length for fall/winter and looks fabulous with boots. i just wish i could find the perfect buttondown shirt so i can tuck it in and show off the cute detail buckle in back!",5,1,1,General,Bottoms,Skirts +1020,62,Great midi denim skirt,"It is very hard to find a great midi denim skirt. pomona's is very stylish, well made, and looks great on. i had to exchange my size 10 for a size 12 and am awaiting its arrival, remaining hopeful it will provide a better fit. first time in my life i have purchased a 12 so can't say for sure whether the skirt runs small or i am now running larger. i recommend this skirt.",5,1,4,General,Bottoms,Skirts +1078,23,Not so great,"The dress has a partially sewn-in slip, which really didn't work for me. no matter how much adjusting i did i couldn't get the slip and dress to sit properly. + +i ordered a medium, and if it hadn't been for the slip, the fit would have been good. the length was as pictured. for reference i am 5'5 145lbs, 38-30-40, 34ddd.",2,0,3,General,Dresses,Dresses +1078,44,Classy and effortless,Easy to wear dress that looks polished and professional for work.,4,1,1,General,Dresses,Dresses +1078,41,Just ok,"I wanted to love this dress as it seemed perfect for spring and summer, but it just didn't work for me. it made me feel a bit frumpy, honestly. i purchased the neutral color. maybe the ""red"" would have been less... grandmotherly. something about the elastic waist just didn't work for me either. i tried this with boots, booties, heels, clogs, flats, sandals and i just couldn't make this dress work. sadly sending this one back. i'm 5'7"", 140 lbs and tried the medium.",3,0,10,General,Dresses,Dresses +861,39,Cute and comfortable tee!,Love this tshirt! casual but can be dressed up with wedges and a scarf!,5,1,0,General,Tops,Knits +207,37,Wanted to love it,"I wanted to love this set, but sadly it just didn't fit as i had hoped. the small was bigger than expected and looked frumpy and not sexy. returned.",3,0,1,Initmates,Intimate,Intimates +1078,26,Buy this dress.,"The model in this photo should be standing tall, because this dress looks absolutely fabulous right out of the tissue paper! i ordered a small, and am 130pounds 5'5""- the dress fits like a glove, and is a pull over style. the nude slip- lining connected to the outer shell works wonders and allows for a full coverage feel, yet nice breezy, sexy appeal. this dress can be worn to work, on a hot date, and even a nice weekend look. when i say slimming i mean it. the center detail- grabs the most perf",5,1,5,General,Dresses,Dresses +993,46,Shrinks in the wash,"Even following the care label exactly, it shrunk ~3 inches in the length and overall in the diameter. i had to return this since i am tall and it looked more like a work-inappropriate mini after the first wash.",1,0,0,General Petite,Bottoms,Skirts +1020,72,Awesome skirt,I feel really cool wearing this skirt :-) a nice alternative to the jeans that are my standard uniform. loooks great with short boots. i'm wearing it as i write this review--and was wearing it all day. awesome skirt!,5,1,1,General,Bottoms,Skirts +1075,49,Beautiful fabric but not for the busty,This dress is very beautiful - great fabric and colors - but it looked terrible on me because i have large breasts. i am 32dd and this dress made me look pregnant. if you have the right body type it would be a great breezy summer dress. i'm sad because i can't wear it:(,3,0,1,General Petite,Dresses,Dresses +861,40,"Cute idea, poor execution","I love the cold shoulder trend, and this top seemed to satisfy. i bought it in the blue, which is really more like a very light mint green. however, i think the material is pretty thin (though soft), and the keyhole sleeve area, right by the twist, is not substantial so it looks a little cheap. i ordered the small, but i think i could have definitely sized down to the xs (110 pounds, 32dd). it's very loose fitting but i wouldn't say it looks bad. it's just a very relaxed fit. for the price, thou",3,1,6,General,Tops,Knits +1078,37,Not quite,I like the idea of this but had to return it. the fitted liner is attached at shoulders and awkward to get into. the shirt is too poofy. didn't flatter short and curvy.,3,0,0,General,Dresses,Dresses +1020,23,Comfortable,"I am 5'6"" and run between a size 9-10 pant. i ordered the size 10 skirt and the waist fit perfectly and so did the back of the skirt, which i was afraid might be loose (i don't really have a butt but it fits nicely). looks like the picture so the skirt goes straight down, it does not taper to smaller width like some regular pencil skirts might so the bottom part will not be fitted, for your reference. the denim actually has quite a lot of stretch so it's very comfortable as well as the waistband",5,1,1,General,Bottoms,Skirts +1078,42,,,5,1,0,General,Dresses,Dresses +1078,35,Perfectly neutral dress,"I bought this in the neutral motif and my expectations before trying it on weren't high but i was sold once i was in the dress. sometimes dresses that have the elastic band in the waist can be tricky if you don't have a perfectly flat tummy and can accentuate the tiniest bump. however, this dress sits perfectly on the waist and is actually super slimming. i wasn't 100% sold on the pattern or color (i wish it was more off white than brown) but the fit was so great that i had to buy it! the dress",5,1,7,General,Dresses,Dresses +1078,60,Perfect summer work dress,"Ordered this in the neutral motif, size large and it's a great little dress. comfortable and cute, but modest enough that i'm not worried about my bust (38d) hanging out too much. the v-neck hits at the perfect spot. the sleeves are the perfect 3/4 length, not too tight and it's not too short on me (5'9""). i'm a light blonde and i don't feel washed out in this. it hides a little belly well without being a tent. also, the lining is super soft and flexible. the only problem is the upper back falls",5,1,1,General,Dresses,Dresses +1078,48,Daytripper dress,"I must be one of the rare people that this dress did not work for. i adored it online and even on the hanger. putting it on, it just looked frumpy on me (i tried my usual small first). decided i must need a smaller size, so i sized down to an xs. this one looked much better on, but was nearly impossible to get in and out of, the built in slip got twisted and i had to start over twice). i decided i wasn't willing to work up a sweat getting dressed and undressed when i wore it. i passed.",3,1,0,General,Dresses,Dresses +861,38,What's with the pocket?,"I love this shirt but have 1 issue- that darn pocket. it's so awkward. it even looks awkward on the model. then, i bought another t-shirt by the same company from elsewhere and guess what? same awkward weird floppy pocket. it's so odd, i can't even explain it.",4,1,0,General,Tops,Knits +1078,53,Great dress,Great dress that can be casual or dressy. well-made and comes with.a built-in slip.,5,1,0,General,Dresses,Dresses +1097,35,,"I love how this dress is photographed, but when it arrived to my doorstep i was highly disappointed. there seems to be no shape to it whatsoever. the fabric is much stiffer than i was expected i thought it was going to be more like a sweater dress, but it is not an overly comfortable fabric and it does not move like i thought it would when i put it on. this one is going back.",3,0,2,General,Dresses,Dresses +1078,51,This is a cool dress with one issue...,"The linen makes it a big wrinkly mess. i tried it on and just the act of trying it on, made it so wrinkly. i would have bought it in a second had it not been for that. love the mango color..i am in-between a 2-4 and went with the 2. i'm 5'3 and the length was a few inches above my knee...there is also a separate slip attached. +bummer.. maybe this won't bug some people but it would drive me mad. :-)",4,1,2,General,Dresses,Dresses +880,37,,,5,1,0,General,Tops,Knits +1081,58,Flattering but heavy,"I just received this dress and it so adorable with the pineapple print, really flattering on and very well made. the shoulder styling and cut out in the back makes it really stand out for style. the con for this cute styling is it is not bra friendly no matter what bra you wear. even strapless will show in the back cut out as it is open where most bras go. it has handy side pockets and fits very true to size. i'm a 12 in most dresses and the 12 fit perfectly everywhere. but, i am sending it back",5,1,18,General,Dresses,Dresses +819,59,,"Love this top-i love the colors, flow and that you can wear with a regular bra and straps are covered. i was torn between the xs and s but went with the s due to length. have already worn several times with a casual white jean summer skirt and crops. love love love.",5,1,3,General,Tops,Blouses +1078,48,Super cool!,Perfect for day at the beach! i'm 5'6 and the length is just right above knee not too short. fresh and cool cotton. comfortable feel.,5,1,0,General,Dresses,Dresses +1087,39,The best buy,"Absolutely gorgeous! +words can't describe the beauty of this dress! +i hope they will restock it cause i would order size s (didn't know how it runs).",5,1,8,General,Dresses,Dresses +1078,52,Casual dress with style,"Really cute dress -- the lace-up detail is distinctive, and i think this dress will be versatile. great for hot weather, but i tried it on with retailer skinny pants, and that looked cool too. the included slip (not a lining) is soft and not clingy. i'm on the petite size and often find that relaxed-fit dresses like this make me look like i'm wearing a sack, but this one is not too billowy or shapeless. i tried the mango color on in the store, and really wanted to buy it, but the color just is not",4,1,0,General,Dresses,Dresses +880,39,,This shirt runs extremely large. looks boxy and unflattering.,3,0,0,General,Tops,Knits +819,62,A new favorite!,"This top is gorgeous and better than the web photo. i love that it goes with the off-the-shoulder trend while allowing for a normal bra - in fact, it even has the little snaps at the shoulders to hold your straps in place (awesome detail). the ruffled portion looks good over or under your arms, length hit at about my hip (5'7"" with long torso; 125lbs, 32b) and, and it has an overall flowy but not sacklike fit. i found this to fit tts (bought my usual s). beautiful vivid print looks great with wh",5,1,8,General,Tops,Blouses +1078,62,Cute and comfy,"I found this to be a comfortable, stylish, no-fuss look. bought my normal size 4 (5'7"", 128#) in the orange, and it fits like the model. it's a nice lightweight linen and is machine washable, which is always a plus. you can't tell from the photo, but the lace-up portion actually has a bit of fabric in it, so you aren't revealed if it isn't tightly laced ;)",4,1,2,General,Dresses,Dresses +880,62,The perfect tee for atlanta's hot weather!,I agree with the other reviewers about sizing down in this tee. the colors are beautiful and design lovely. i love how the sleeves are finished and the neckline. i purchased at my local retailer store along with the flower days tee (that i purchased in a larger size because of the differences in the design of the two shirts). highly recommend both!,5,1,8,General,Tops,Knits +880,39,Too much fabric,"I saw the shirt at my local retailer store and loved the color and print; however, the shirt had way too much fabric! i was swimming in it. it was not flattering whatsoever. plus, it's overpriced for a shirt. i'm sadly returning it.",3,0,1,General,Tops,Knits +880,58,Huge!,I really liked this top when i saw it online. i went to the store to check the sizes. i am a small or a medium. i tried on the s and the xs. even the xs was huge. unfortunately the xxs is sold out. i don't understand the sizing on this at all. it's a shame because the top itself is very pretty. just be sure you try it on before purchasing.,3,0,1,General,Tops,Knits +819,70,Runs large,"Pretty top. quality material, it is not thin and see through. size down because this runs large. although it is meant to be flowy, if you don't size down, the arm holes will show your bra and the rest of the body will have too much fabric looking too boxy and unflattering.",4,1,19,General,Tops,Blouses +819,39,"Pretty, big, but for tanned people","This top was really cute on someone else, but not on me... on me, ti was too big and the color washed me out. the fabric is nice and the pattern and colors are nice too, just not on porcelain skin... like many tops this season, it is a bit boxy, but looks nice with jeans, white shorts or half-tucked into a skirt. i would probably size down a bot...",3,1,4,General,Tops,Blouses +880,41,Surprisingly cute!,"When i first saw this i thought it was a bit boxy but i was drawn to the colors. the arm-holes are a little large and i got an xs (normally wear a size 2), so i will probably wear a tank underneath, but overall the fit is relaxed and comfortable. i love the colors. it has a little longer length (i'm 5'5""). i see this being cute with white jeans, blue jeans. love it!",5,1,28,General,Tops,Knits +880,54,Huge!,"I am normally a size m, sometimes a small. i ordered a small based on the reviews and it was so huge i could have been six months pregnant and it would still fit. i would need to size down to an xxs, but at this point i'm returning it....gorgeous colors. i wish it fit :(",4,1,3,General,Tops,Knits +1078,29,So comfotable,I ordered this dress in 0p since i am 5ft. it fits great its not too short just above the knee.,4,1,0,General,Dresses,Dresses +1082,39,,"Too thin at bottom where lace is. couldn't sit in the dress without worrying i was ""hanging out""",2,0,0,General Petite,Dresses,Dresses +857,46,Red version in xl is perfect,"I ordered the red in xl and the fit on me matches the photos on the model. it's true to size. the quality of the material is fantastic. the stitched upper portion is well-done. the color is much prettier in person. it's such a bright, cheerful, well-made top. i washed mine and air dried it. fits & looks great after washing. this is a bargain, especially on sale. the red combo is such a unique mix of colors. i like using blue jewelry with it. but, also mint green jewelry too.",5,1,0,General,Tops,Knits +819,41,Great shirt!,"I love this shirt for a throw on and go. hangs nicely and fits great. colors are more vibrant in person. i love mauve, i think they do a great job with their designs!",4,1,2,General Petite,Tops,Blouses +880,46,The purple is beautiful and comfortable!,"The fabric is very soft, love the purple floral color. the top is very flattering with the ease and comfort of a t-shirt.",5,1,14,General,Tops,Knits +1078,49,"Cute, but not cute enough for me.","When this appeared on line, i thought t would be a sure thing, color (blue), cut and style, this dress appeared to have been made for me, but i ultimately i ended up returning it for several reasons. fit: i was worried about the length on my 5'5"" frame but it was actually long enough. i have narrow shoulders and average arms but i found the shoulders or maybe it was the upper arms to run slightly small in my regular size which caused some strange poofing at the shoulders. not sure if going up a",4,1,0,General,Dresses,Dresses +1097,61,Great dress for full figure,"Great dress for a full figure. +forget about the horizontal stripes. you can wear this with great style and get away with wearing those dreaded stripes. the possibilities have been great because i wear this dress with sweater vests, athletic vests, sweaters, jackets and wool scarves. i have worn this dress with cowboy boots, dress boots and pumps and it looks great with all options. the material is thick enough that panty lines don't show. women of different ages stop me and tell me they want thi",5,1,1,General,Dresses,Dresses +868,30,,"Great shirt, more of a stretch to it than i thought it would. very flowy, looks great with jeans & leggings.",5,1,0,General,Tops,Knits +868,60,,,4,1,0,General,Tops,Knits +880,64,,This is a nice top but it runs very large. the small was still too large for me. hoping they have this in xs.,4,1,0,General,Tops,Knits +1097,61,Obsessed!,"This dress is chick but funky! the material is knit but not the usual itchy knit. it's comfortable and cool. the colors of the stripes are cool - they're earthy and go well with black, brown, blue and gray. this is going to be a favorite for years.",5,1,0,General,Dresses,Dresses +880,36,Large & boxy,"I ordered the black and white pattern, which was ok. i got a small, but the shirt was very square - with a short and wide fit! i doubt an xs would have helped with such a boxy shirt. sent this one back.",2,0,0,General,Tops,Knits +880,38,,,4,1,0,General,Tops,Knits +880,45,"Great patterns, too big","Loved the brushstroke design and simplicity of black on white; however, the tee was way too big. it looked boxy and sloppy.",2,0,0,General,Tops,Knits +819,52,,"Loved this blouse the moment i tried it on! it is one of ""those"" items for me. it does run large so size down. if you are concerned about the arms don't be. i usually go between a medium and large and the medium was perfectly roomy without being to large.",5,1,4,General Petite,Tops,Blouses +857,39,"Really cute shirt, but don't upsize","Love this shirt. the print is a little loud, but cute. i always upsize shirts due to my bust size and not liking them to be too clingy. however, that was a mistake with this shirt. there was too much fabric around the midsection with the larger size. i did like it enough to order again in the correct size (l). i am a size 14 and busty, if that helps. the red is short-sleeved, by the way if ordered online, cute and flattering.",5,1,10,General,Tops,Knits +857,26,So much better in person!!!,"I have four kids and a post baby bump that wants to live on forever, so i'm a huge fan of flowy tops--this one looked cute online, but i wasn't sold on it and passed. then i went to the store the next day and saw it, and the colors were more vibrant, so i thought, why not try it on, though i wasn't that excited about it. i tried it on and it was like the shirt was having her cinderalla moment--totally transformed how it looked on me and in person. i love it! it was one of those instant ""i'm buyi",5,1,0,General,Tops,Knits +1081,53,Beautiful from the front. . . .,"I was looking forward to receiving this dress. i am tired of all of the swing dresses - most of which are not flattering on my petite frame. i am also uncomfortable with dresses that fall much above the knee as i am somewhat older. the colors and fabric of this dress are beautiful. vibrant, but not too bright. when i got it on i was thrilled with the fit - until i looked at the back. there are pleats at the waist in back and there is way too much fabric. it looked like i had a bustle under the d",3,0,11,General,Dresses,Dresses +880,40,So cute!!,Love this shirt. it's easy to throw on and makes a cute outfit with about any kind of bottoms. i've wore it with leggings and jeans.,5,1,0,General,Tops,Knits +880,69,Lovely lilac,"This top is soft, comfortable and drapes nicely. the print makes it fresh and different. i sized down to a small.",5,1,18,General,Tops,Knits +880,44,"Runs large, order 1 size smaller","Perfect fit shirt. super cute and very comfortable. i purchased a size xl at first but it was too large, l fit perfect. i'm normally a size 14 on top, but this runs large.",5,1,0,General,Tops,Knits +819,23,"Made well, but not flattering","The top is made well and has a strap holder to keep your bra hidden which is always a nice feature. however the amount of fabric made it unflattering on me. the overall design is fun and i probably would have purchased if it had been more fitted and flattering. i have a medium on in the photo, my measurements are 38-30-40.",3,0,16,General Petite,Tops,Blouses +1078,35,"Cute, but something is off","I am short (5'3"") and very curvy. i usually get petite in dresses. something about this fit was strange. it was definitely a little shorter than most petites. the lace detail on the front of this dress is really cute and it is a color you don't see often so i kept it.",4,1,3,General,Dresses,Dresses +880,42,I so wanted to love this top!,"This top is gorgeous in person, but when i tried it on, i fell out of love. it didn't happen immediately, but the more i wore it around the fitting room area, the less i appreciated its beauty. i tried it on in an xs - i typically wear a s or xs in most retailer tops - 5'8"", 140 lbs for reference. this top is just huge in the body! the fit is very boxy and just not flattering. yes, it could be cute with skinny jeans and perfect for preggo's! this was just a miss for me.",3,0,2,General,Tops,Knits +868,21,Closet essential,"A great white blouse! i expected this top to be sheer and yet it's quite opaque. i bought the white in a size small, i find it true to size and the silhouette is very flattering. relaxed yet super polished look.",5,1,0,General,Tops,Knits +880,29,A bit large!,"I bought the white tee. while the print is nice, the size is a bit too large with the xs looking relatively baggy (i am around medium weight and very short).",3,0,0,General,Tops,Knits +819,66,Add me to the list,Absolutely love this top. followed reviewer advice to size down and got the medium. good choice and probably could have gotten a small. love the fabric and pattern. it's so light and pretty. love the marriage of bare shoulders with sleeves.,5,1,2,General Petite,Tops,Blouses +1078,27,Perfection,This dress is amazing. bought in orange and fits wonderfully. great quality and could transition in between seasons,5,1,8,General,Dresses,Dresses +211,28,Beautiful,This is a beautiful piece for the price. very well made and flattering. i'm a 34c and usually wear a size 2-4 on top and solid size 4 on bottom. a size small in this fit great. it does not provide any support up top though so be aware of that.,4,1,2,Initmates,Intimate,Intimates +1078,51,Loved the style but the fit was off,"Loved this dress until i tried it on! it was too big in the body and tight on top in the arm area. from the reviews already posted stating the guy was great, i'm wondering if i just received a defective dress? i also wish the dress were a truer orange/mango color instead of a burnt orange since this dress is for spring/summer.",3,0,6,General,Dresses,Dresses +1078,42,Perfect shift dress!,"I love shift dresses and i love t linen so this one was a must for me. i had it in my inbox as soon as it came out on the website and then i found it in the store and had to try it on. i took the six and the eight to the fitting room because i run in between, and the six fit better so i guess it runs a little bit large. really it just depends on how you want it to fit. the length is great too, about 3 inches above my knee, i'm 5 foot 5, which is exactly where i like my dresses to hit. i got the",5,1,15,General,Dresses,Dresses +857,36,"Fun pattern, great fit","I purchased this in store and the red motif is short sleeved as pictured. the pattern is fun, vibrant and great for summer months. it's a more substantial weight fabric, not sheer or clingy. the fit is tts and it is a slightly longer length which i loved.",5,1,3,General,Tops,Knits +880,67,Flowers and butterflies!!,"This is why i shop at retailer. i was in one of my local stores recently, mainly to check out the sale. my boyfriend was with me. we hadn't been in the store 5 minutes when we passed a table with piles of folded tees. this one caught my eye. the color, omg! and then flowers and butterflies! try it on, he said, as i held one up. no..... i shouldn't. we wandered around, checked out the sale and all the new. and i was back at that table looking at that tee. so, i took a small and an xs to the fitting",4,1,7,General,Tops,Knits +1081,57,,"I received this dress yesterday and it exceeded expectations! i was not expecting the fabric to have a slight stretch and felt that the fabrication aided to the overall comfort of the dress without losing any of the quirky elegance. due to the stretch, however, i immediately ordered a size down for comparison. i'm a pretty solid 2 with eva franco dresses but with this cut i had about an inch of fabric in the waist. regardless, i'm keeping the dress - jury is just still out on which side!! measur",4,1,0,General,Dresses,Dresses +1078,53,Linen coolness,I love the way the dress fit definitely a flip flop by the poolside bar dress. i ordered the mango colored one and was disappointed that the color resembled a dark squash orange and not as bright as it looked in picture. i think it will look nice with a tan so i will keep it. wouldn't plan to dress it up too much because it will definitely wrinkle ! i am a petite 5'4 and got the regular and it fits just above my knees which is good for my taste!,4,1,0,General,Dresses,Dresses +880,70,,This is an attractive shirt but runs big. i ordered the black and white.,3,1,0,General,Tops,Knits +1078,57,Cute and comfy!,"Purchased this in the burnt orange color - very nice! +will be lightweight for our hot, humid summers but has a bit of pizazz with the lace up front. +the slip is nicely made with strap attachments in the shoulders so they do not slip. +i wear a ton of dresses in the summer so this will definitely be a go to item for all the horse races we attend. +looking forward to snagging a nice derby style hat to match!",5,1,3,General,Dresses,Dresses +1119,60,Beautiful lightweight leather vest,I love this piece ! i purchased it on sale months ago and when i wear it i just love it!! it looks great with every outfit the neutral colors perfect it's very light very hip looking one of my very favorite pieces of clothing i'm very petite and i believe only the small was available but fits fine would love more of these genuine leather pieces at purchasable prices thx retailer!,5,1,0,General Petite,Jackets,Jackets +880,42,Perfect light weight tee,Have had many compliments on this tee! feels dressed up without feeling too fancy,4,1,0,General,Tops,Knits +880,65,Cute and comfortable,"I have the purple and the white. i purchased the purple first in m. it wasn't too big to return, but it was a little roomier than necessary but when i saw the white on sale, i purchased it in s which fit just fine--still plenty roomy as the style allows. both these are cute alone and also with a little sweater or denim jacket. i haven't washed them yet but i imagine washing on delicate with a good gentle detergent will keep them looking nice for a long time.",4,1,0,General,Tops,Knits +880,68,,"This product is made of good-quality cotton material. it does run a little large, but it still fits nicely. i like the fact that the design is both on the front and face of the garment.",5,1,0,General,Tops,Knits +1081,31,Midi dress with retro appeal,"I saw an outfit post of a gorgeous lady in this dress so i had to try it. it's so flattering and well constructed, if a little longer than i usually prefer. i'll just have to wear pumps with it. i don't have the right bra so i just pinned the straps to a bit of ribbon in front to pull them underneath the dress. it does have pockets, also. i ordered the 12 and it fits beautifully. for reference i have a 40"" bust and 33"" waist.",5,1,0,General,Dresses,Dresses +857,21,,I just want you guys to be aware that the red print is not short sleeved! we have this in store and both are 3/4 length sleeves! great material and fit.,5,1,28,General,Tops,Knits +857,32,Tee shirt material... blowsy,"I didn't realize the patterned material was tee shirt material. i got lots of compliments on it though. i'ts blowsey from the bust down (i got the short sleeved red one) but it's comfortable without looking sloppy. if you can pull off the tucked in look, it's super cute.",4,1,0,General,Tops,Knits +857,36,Fun top!,"I ordered the orange motif in short sleeves.and i got what i ordered- and love it. it is a little big, but i wanted a looser top. i was looking for something bright and fun for the spring time that i could wear to work with nice slacks or dress down with jeans. this top meets my needs for sure. i really like the detailing on the top collar-bone area. my husband loved that it was bright and cheerful- so i take this as a win!",5,1,1,General,Tops,Knits +857,36,,,5,1,0,General,Tops,Knits +690,36,Super sexy,"This was just what i wanted. a simple design (so many of retailer's suits have way too much going on) and this one fit the bill. sexy, strappy and clean. i can't wait to live in this top this summer.",5,1,2,Initmates,Intimate,Swim +1081,39,Retro perfect,"So happy to say this dress was built for my body type. i'm heavier & wider in my upper body so the cut of the bodice/halter fits perfectly and comfortably. going in at the waist and flaring out to a soft a-line, the skirt pleating lays just right since i have no hips or booty. yes, the fabric is heavier weight, so i wouldn't recommend wearing in hot & humid weather. i love the unique print & colors! i do not own anything in this color combination. the retro vibe is strong in this one so i",5,1,2,General,Dresses,Dresses +857,39,Boxy but cute,"I got the red, which was short sleeved. the shirt itself was so cute, but the fit is very boxy. i got a small and it was way too wide. far wider and shorter in the waist than the picture shows. i am sad to return, but it makes me look like a square. (shape that is)",3,1,0,General,Tops,Knits +868,61,"Versatile, comfortable, quality","I bought this shirt in white, i have worn it 2 ways so far and love it. i wore it under a pull over and had the tail ends stick out and it was great that way, and i wore it with a long cardigan. i received a lot of compliments on it. i will be buying it in red!!",5,1,0,General,Tops,Knits +1078,57,Muddy color,The shade of orange was quite muddy and not vibrant like photos show. it's going back .,3,0,0,General,Dresses,Dresses +1081,50,So pretty!,The print and fit of this dress is perfect! it's very flattering and slimming.,5,1,1,General,Dresses,Dresses +868,61,,,5,1,0,General,Tops,Knits +857,26,"Cute, runs large","This top runs very large and is loose fitting in the middle. it looks very flattering and is very comfortable. i bought the one in red and it looks quite good. i would go down one size, maybe two.",4,1,0,General,Tops,Knits +1078,44,Amazing dress!,I tried this dress on in the store in the mango color but opted to order the blue. the dress is beautifully made and the fit is fantastic.,5,1,10,General,Dresses,Dresses +880,28,It's a tent,This shirt would be perfect if i needed a canopy on my tent. this shirt runs ridiculously large. purchased a medium and it should be labeled an xl. no impressed with the pattern in person. looks cheap. will be returning.,1,0,0,General,Tops,Knits +1087,43,Runs small?,"Beautiful dress appears well-made, but unfortunately i wasn't able to get it on! about 6 inch gap in the zipper over chest area. first time i've ever sent something back to retailer for not fitting.",3,1,3,General,Dresses,Dresses +1078,52,Comfort,"I purchased the mango. it is flattering with my olive skin and golden brown hair. i am keeping it. i'm used to linen so no surprises there. i agree with a reviewer that said it will work in summer and fall. i could wear this walking on the beach, to a summer casual dinner party. i plan on wearing gold sandals and gold jewelry. this will make the feel more summertime. then i will wear boots with it in the fall. i'm very happy with the choice. my store didn't have the blue. the fit is tts. i'm 5 f",5,1,2,General,Dresses,Dresses +857,52,Great ultra casual top,"Really pretty blue top. great for wearing around the house if you want to be comfy and casual yet look good in case your neighbor shows up at your door, of if you have to run a quick errand! if your wear it with distressed jeans it will add to the casual vibe. the blue is vivid and perfect for any hair color. don't get me wrong. the top is casual and cute. it is not sloppy and has an international, worldly vibe. i recommend it.",5,1,1,General,Tops,Knits +1078,39,A great addition to any wardrobe,I bought the dress in mango. i love the color. it is very vibrant. the fit is great and i imagine getting a lot of use out of this dress during the summer months. my only complaint is that i expected the fabric to be a little bit heavier. i find it to be kind of thin.,4,1,0,General,Dresses,Dresses +898,60,Great color and design!,I love the sweater online and even more in person! i paired it with a long sleeve top with a bell sleeve and it looked great!! very bohemian look!,5,1,0,General,Tops,Fine gauge +1087,61,Love love this dress!,I saw this dress on someone and knew immediately i had to have it. it is stunning in person.,5,1,0,General,Dresses,Dresses +1056,46,,"This jumper is so much more flattering than it appears in the product photo! i am not sure why it was paired in a way that made it look so wintery- and did not play up on the capri length and interesting artsy top! + +i am a curvy 4 or a 6, smaller on top, with hips. i love this fit. it it pulls in at a high waist, with a stretch in the pants---it's just adorable! i would say that the top portion is quite fitted- it's not a stretchy material, more of a textured thick fabric- so that is somethin",4,1,3,General,Bottoms,Pants +898,39,Too bad too big,"The smallest size, xs, was big on me, i was overwhelmed by the sweater. it is a bit of swing shape, doesn't hug the body. sleeves are interesting though, but not flattering on a petite frame. color is a pretty green, made me think of wintergreens. fabric may be itchy to some. just ok for me. + +for reference xs bog on 115 lbs, 30dd, 26.5 in waist.",3,1,4,General,Tops,Fine gauge +842,32,Super cute,"I have worn this with skinny jeans and espadrilles untucked and with black linen shorts. i also wore tucked in with high waisted slim fit black pants, + +i got compliments on all the looks. i think it's a fun and cheerful, feminine summer top. + +i got mine on sale so i thought was a fair price for what it is. wouldn't have paid full retail. + +requires ironing. + +i am a size 4 and 5'3 and have a small.",4,1,0,General,Tops,Blouses +1025,38,,"Would recommend, but with the caveat that i had to return due to the pants being way too big all over, even the length was more than i expected from the photos online. i am 5'5"" 120lbs narrow hips, usually a 25 in pants (including other level 99 pants i own). i ordered a 25 and i could have pulled them off completely buttoned, plus they went nearly to my ankles. anyhow, the material is really nice, soft and comfy, color was good (i ordered the dark), and i could imagine they would be super cute",3,1,2,General,Bottoms,Jeans +898,34,Elegant sweater,"This worked for me, very elegant, cozy and comfortable.",5,1,0,General,Tops,Fine gauge +1087,27,"Good idea, poor execution","I really loved the idea of this dress and thought it may be perfect for work with a pair of wedges. but, the first thing that set me off was the color and the material. the color is more street sign yellow than a soft, warm yellow. the fabric is a thin, sheet like fabric that makes the yellow look even cheaper. i was anticipating a thicker shirt-like fabric. when i tried it on, i liked the idea, but the material and the color made me feel like i was wearing costume...or a parachute. i will defin",2,0,1,General,Dresses,Dresses +823,74,Lisette tank,"Beautiful,well made top.it just runs small not for me",3,0,0,General,Tops,Blouses +818,61,Weird shape,"The pattern is very adorable. unfortunately the design is flawed. sizing is great at the waist and hip, and the length is spot on, but the top is wide. it's strange because i don't think it would fit someone that was bustier than me either. +will return. i'm considering buying again on sale and having a tailor correct it.",2,0,23,General,Tops,Blouses +1049,39,Relax comfy with style,Extreme comfort for travel and out door activities.,5,1,1,General,Bottoms,Pants +1049,60,Quality produbt,I ordered top and pants online as seen. pants are of good quality and hang beautiful. i love the color and quality of the fabric. nice and vibrant. nice fit at the top into a flowy drape. the top runs big and glad i ordered down one size. love the outfit for my upcoming island trip.,5,1,0,General,Bottoms,Pants +921,33,Beautiful piece; runs large!,This jacket is beautiful and easily dresses an outfit up and can just as easily be dressed down and worn casually. i consistently wear a size 8/10/m and have this piece in xs. the reviews do not lie - size down!,5,1,0,General,Tops,Sweaters +818,29,If i had the right size...,"...maybe i would've kept this top. i love the print, colors, and design. however, i feel like i had too much of a bosom to wear it. since my bust and torso seemed too large for it, the peplum ruffle bottom lining and top straps did not look good.",3,1,0,General,Tops,Blouses +1056,59,,,5,1,0,General,Bottoms,Pants +1087,53,Want to love this but....,"I wanted to love this dress. the cut, fit and color are adorable. unfortunately the fabric is super thin. due to the material type it can be clingy in a manner that requires the anti-static spray your mom used to use in the 80s. i was on the fence of keeping it, but if there is so much as a wrinkle in your panty-line the whole world will see it. i would hate to have to wear a slip with this due to static issue. i am most likely going to return it; even at 15% off, it is over-priced for the cheap",2,0,9,General,Dresses,Dresses +1056,43,Cute!,"This is a pretty adorable jumper. the size 8 would fit someone really well who's about a typical size 6 and maybe 5'6"". i'm 5'9"" and it was too short. it's fun and definitely different. i'd otherwise wear it.",3,1,6,General,Bottoms,Pants +818,25,Super cute,A gorgeous and vibrant print! love the ruffles on the bottom and the detailing of the straps in the back. perfect for a beach day!,5,1,3,General,Tops,Blouses +1049,39,"Versatile, comfortable, good-looking pants","Great alternative to yoga pants, these pants are stylish and on-trend but also easy going. dress them up or throw on a hoodie and your look is instantly transformed with very little effort!",5,1,1,General,Bottoms,Pants +898,43,Too much sweater,"I couldn't wait to try this on this sweater. sadly, it was too large in all ways. the sleeves are adorable, but the ruffle overwhelmed my arms. this was much longer on me than the model. it stopped mid-thigh. the quality seemed fine, but it is a thin sweater.",2,0,0,General,Tops,Fine gauge +1056,48,Perfect!,This is going to be perfect for my daughter's graduation. she is in love with it and it looks amazing on her!,5,1,0,General,Bottoms,Pants +1025,37,Awkward,"The fabric is absolutely lovely on these, but very thin. the top part was tighter than usual (and i sized up from my regular pilcro jean size) and they flare a lot. so the thin, tight top was not a flattering look. the rise also felt short. + +i'm 5' 4"" with a 30"" inseam and the regular length just hovered above my ankles. my husband burst out laughing when i tried them on, which is never a good reaction! even if i hemmed them, i think these are a miss for me. will be returning. + +better for",3,0,3,General,Bottoms,Jeans +921,46,Too large even in xs!,"I'm 5'5"" and 140 lbs - hardly super-tiny and the xs was swimming on me. the shoulders are oddly large and this beautiful sweater/jacket just hangs off the body. believe it when they say ""oversized styling"" - unfortunately will have to return.",2,0,4,General,Tops,Sweaters +1126,62,Chic raincoat,"Subtly chic raincoat, with a lovely drape (except see below) and wonderful details like the large diagonal-opening pockets, snaps, and decorative cord. the striped lining throughout is a cozy but light jersey layer. the coat would be ample cover for temps in the high fifties or low sixties. + +problems: the double zipper was hard to use, but in my experience with other jackets, you get the hang of a wonky zipper eventually. + +there seemed to be a problem with a seam by the left pocket so that m",4,1,3,General Petite,Jackets,Outerwear +1056,33,Very well made!,This jumper is adorable and very well made! it is a bit tight in the ankles and it kind of gives me a hungry bum look but then i realized i ordered a 4p so it is actually tts. going to preview this number at my bachelorette party!,4,1,1,General,Bottoms,Pants +1088,56,Fell short of expectations.,"This is a beautifully made dress and i couldn't wait to put it on. i was disappointed. i am 5'5"" and a size 4- 6. i ordered the 6 and it was too 'long and heavy' looking on me. but the waist and upper body fit tightly. the zipper up the back was very heavy looking and the cut away shoulders didn't work for my body type, making me look bulky on top. the torso is really built for someone with small breasts - i am average and the way the darts are, made my breasts look flatter and lower than they a",3,0,1,General,Dresses,Dresses +1095,60,For a nymph waist,"This is a lovely dress, with great fabrication. nice detail on the zipper placket. good material. however, it runs small in the waist, if you had a nymph waist this is for you! i couldn't get it zipped.",3,1,5,General,Dresses,Dresses +1056,62,Small!,"I finally ordered this at this incredible mark downed price...but i see why. it is cute, but serious size issues, i have a bust but smaller everywhere else but i did order up because of it being a jumpsuit...i would have needed 6"" more to even zip the top part! i have many trendy jumpsuits in my closet and this is a first! if you are flat chested you may want to try at this great price as it would be a great piece for sitting by the fireside next fall/winter...never too soon to plan ahead!",3,0,3,General,Bottoms,Pants +1025,53,"Material to thin, unflattering cut","Those pants sit pretty snug on top and get very wide very fast. this looks odd in my opinion if you do not wear a tunic style top like on the picture. also the material is quite thin, which makes the snug part look unflattering. they were not for me unfortunately.",3,1,2,General,Bottoms,Jeans +921,25,"Love, love, but way too big!","I so wanted to keep this, but the xs was even too big. i usually take an xs/s petite and thought i could get away with the xs of this. it is just too big. so sad to be returning it, wish it came in an xxs or petite.",4,1,4,General,Tops,Sweaters +1056,48,Size up.,I sized up to my higher size choice and it was snug. not for athletic builds. top was fitted and thighs tight which caused the belly area to pouf out. good for very thin gals. also good if you are long waisted.,4,1,0,General,Bottoms,Pants +921,38,Gorgeous,"The previous review was right: this jacket/coat feels and looks expensive. nice weight, very soft. pattern is better in person. i normally always wear a l and in this, i can't decide between the s or m.",5,1,0,General,Tops,Sweaters +796,26,Nice tunic but runs small,"I really really like this tunic. it is gorgeous! but it runs small. i tried in l, usually wear l/xl, i may need to try the xl. but i sent it back because it just too expensive. the fabric itself is thick and heavy. i didn't like the fabric much, i wish it were softer. especially for such a gorgeous tunic. it was hard to send it back, but i may try the larger size in the store. i think i need 2 sizes up, it runs too small.",4,1,2,Initmates,Intimate,Lounge +842,37,"Cute, but not quite right...","Great idea, but this was not a flattering top on me. it almost worked, but ended up making me look like i am pregnant?not a look i am striving to achieve?it has potential and maybe others with a different body type may have success. ( i am curvy on bottom and have a long torso) for the price, it did not justify a place in my closet?",3,0,5,General,Tops,Blouses +818,51,,"I loved fabric, print and back detail. design, however, was a little too boxy to be flattering on me. even at great price i sent it back.",2,1,0,General,Tops,Blouses +1033,47,Comfort and style,"These jeans are amazing. they are so comfortable. they have a great amount of stretch but do not sag even after wearing them all day. i am 5'4"" and 135 lbs and purchased my usual size 27. i did have to have them shortened +but only b/c i bought in store and did not have the petite online option. i have worn them on several occasions. great purchase.",5,1,0,General Petite,Bottoms,Jeans +1033,29,Great work pants!,I love these pants! they are comfortable and dressy enough for work! the wide leg is the perfect size and the higher waist is professional! these are also nice and long for wearing heels. i ordered a size 27 and they fit great. i normally wear a size 6 in us sizing.,5,1,0,General Petite,Bottoms,Jeans +1033,53,Love love love these,"These fit beautifully and are very flattering. they are true to size but may be a little long. i am 5'5"" and wear these with 2 in. heels. i have already had numerous compliments on them.",5,1,0,General Petite,Bottoms,Jeans +1033,50,Cute pants,These pants are really cute and comfortable. the fit is very nice.,5,1,0,General Petite,Bottoms,Jeans +1033,64,Love these jeans,I have always been partial to palazzo pants. these fit like a dream and are very comfortable.,5,1,1,General Petite,Bottoms,Jeans +1033,46,"Wonderful fabric, fabulously stylish","Softest denim -- they feel like they've been through the wash a hundred times already! i'm pleased that the belt is removable as it adds just a bit too much bulk for me. i'm 5'4"" and bought the petite for a perfect fit. these will become a go-to pair!",5,1,2,General Petite,Bottoms,Jeans +392,39,Super cute,"I love these bottoms they are super cute, comfy and very flatering. finally a bikini botom i feel comfotable in after having my babies. its just high enough to cover my stretch marks on top and the ruffles cover the one down low :) and fits loosly enough to avoid a muffin top. i am normally between a size 8 and ten 145 lbs. and i ordered size large.",5,1,0,Initmates,Intimate,Swim +1033,31,Casual chic,"I'm really glad i read the previous reviews on this. i'm normally between a 27 or 28. thought a 28 would work best for me seeing that it's high waisted but i recommend sizing down on these guys, the 27 fits very comfortably. + +i""m 5'7 and i can wear them with flats.",5,1,1,General Petite,Bottoms,Jeans +1025,39,Pretty good!,"I have a hard time with skinny pants due to my muscular thighs... but these worked. the length on the petite was a tad long, but i see on the model hers do a similar thing so perhaps it is meant to be that way... would look better with heels for me (below 5'2"")",4,1,0,General,Bottoms,Jeans +895,39,Not sure,"I love it but i don't at the same time: + +sheer, so sheer, you can probably get away with a nude bra, but not sure... i tried on both colors, and love them both. love the shimmer... i ordered btoh xxs p and xxs regular...i think i would go with regular, the petite seemed cropped on me, so if i lift my arms, hello belly... + +so overall, i would probably get this if it goes on sale, color is either way, but since i don't have an immediate need, i passed. nice turtleneck, though. + +reference: 11",4,1,0,General,Tops,Fine gauge +1033,39,Just awesome,"I have been waiting for these to go on sale for some time now, and so happy to day they still had my size...in both colors. i don't usually buy 2 things the same in different colors, but in this case, i did... + +fit true to size for me, almost had a hard mite buttoning... but they are stretchy, so don't buy a bigger size, they will stretch. could not decide which color to keep so kept both... i ordered the 25p (0p) - i am 5'1.5"", and 115 lbs... i think these are vanity sized, but my usual vanit",5,1,0,General Petite,Bottoms,Jeans +1025,40,So good i had to buy another pair,"I bought these to wear to a christmas party with a lacy blouse, but found they were what's been missing in my life. after wearing them nearly every other day, i decided i needed another pair. + +feel like yoga pants but look polished. make your butt look perky and your legs slim. .... maybe i need another pair!",5,1,2,General,Bottoms,Jeans +1033,61,Sooo flattering,"Saw these at my local retailer store and almost didn't try them on. so glad i did. they made my legs look long and lean. they run a little big and i decided to go down a size because i think they may stretch out after wearing for awhile. the material is fairly thick but i think that helped in making them appear to slim my hips, butt and thighs. the material is really pretty stretchy and that made them so comfortable. i love how i look in these!!!",5,1,5,General Petite,Bottoms,Jeans +1077,41,"Effortless, easy summer staple","This dress is gorgeous! the colors are deep and rich and the fabric is super soft. the top part is lined but still avoids feeling like it would be too hot when the temperatures warm up. bonus-- a regular bra works perfectly underneath without anything showing, even with the deep v neckline. while the waist does sit a bit high, it works perfectly on my body-- emphasizes the smallest part of my waist and then flows away. it drapes nicely, not too full and not too clingy. i am 5'7 and a true size 6",5,1,4,General Petite,Dresses,Dresses +1033,35,Classic jean,"Great fit and style. the color is perfect for spring, they have a nautical feel to them.",5,1,1,General Petite,Bottoms,Jeans +916,47,Unique,"When i first received this sweater, i was a little worried about the bulk, especially the thick cables and popcorn stitches. after i got it on and adjusted it to all the right places, i would say it looks similar to the model in the photo. i did not find it itchy. the yarn is soft and airy but i guess it depends on how sensitive your skin is. the length was low hip on me and i'm 5'9"" tall. overall, i'm very pleased and looking forward to wearing it. can't speak to the quality of the garment beca",4,1,2,General Petite,Tops,Fine gauge +916,54,Unique,I did not try this on alone but rather with a long sleeve white tee and white button down shirt. i really liked both looks. if i find it to be itchy like the other review i will have to return. this is an effortless fashion statement yet it could easily be a weekender cozy staple. my only complaint is why two neutral colors? this would have been great if offered in a richer darker yarn. the two offered colors are so similar and both looked drab against my skin tone.,4,1,16,General Petite,Tops,Fine gauge +1025,35,,I am 5.1 and 113lbs. i ordered the petite size 26 and it fits like a glove. i gave 4 starts as i wish i had less stretch in it but other than that they are perfect length and sooo soft. super happy with the cut and waist height!,4,1,1,General,Bottoms,Jeans +1033,44,,"Me: 5'6"", 130, waist 28/39, hips 36/37. tried the size 27, the usual for me in pilcro. they fit like a glove and i loved them. i clearly needed a 2-3"" heel to do them justice and now i see the photos of my rear i'm a bit doubtful but pilcros always stretch a little and these are super soft and funky. +a win!",5,1,4,General Petite,Bottoms,Jeans +1146,38,Great material,"I bought this dress for my wedding rehearsal dinner. it's beautiful. the material is thicker than i imagined, not a bad thing at all. i ironed it with lots of steam and it came out great. the tie in back is nice because it can be cinched tight or worn more loosely",5,1,0,General,Trend,Trend +1033,47,Jeans too heavy and large,"It was way to heavy and big for someone with a petite frame like me. +i really liked the design and thought since it came in petite, i'd try it. +it would probably be better on someone much taller but the material is still too heavy.",3,0,0,General Petite,Bottoms,Jeans +392,49,Please offer this in more colors retailer!,"I bought this in black last year and i love it. i also like the two prints offered here but unfortunately the matching tops aren't really my style and these prints wouldn't be so easy to mix and match. please offer in other solid colors! i would buy all of them, this skirt is really that fabulous. + +not only does it fit well and run true to size, it also comes up a bit further than other swim skirts i have tried on, and gives a little more tummy coverage. but not too much! somehow it hits me a",5,1,2,Initmates,Intimate,Swim +1077,31,Oddly short-waisted,"I found this dress to be very short waisted, much closer to an empire waist than shown in the picture. it was also an inch or two longer in the skirt than other maxi dresses i've gotten from retailer. it really could have used those inches above the waist. just a strange fit overall.",2,0,4,General Petite,Dresses,Dresses +1025,58,,I love these pants! so comfortable and the material is so soft.,5,1,0,General,Bottoms,Jeans +1077,35,,"Great fit, comfortable and stylish. easy to dress up or down, excellent item for any wardrobe.",5,1,1,General Petite,Dresses,Dresses +1025,36,"""won't stretch"" tags are misleading","The tag on the jeans said ""won't stretch out"", and i've already returned one pair to size down when they stretched out by the end of the first wear. ive been wearing the smaller size for a week, and it's stretching out as well. the crotch ends up dropping two or 3 inches and i keep having to hike the pants up in public, after just a week of owning them. i love paige jeans, and the cut and color of these are amazing. i'm going to have to size down one last time just to get them to stay up, i hope",3,1,5,General,Bottoms,Jeans +1025,37,Love!,I love these jeans. they are flattering and don't sag after wearing them for a hour or two. they look great with flats or booties.,5,1,1,General,Bottoms,Jeans +1077,56,Cute versatile maxi,This darling dress has a fun boho vibe to it and the color/pattern would flatter a variety of skin tones. a long necklace is a must with this dress. it has a flowy drape below the waist so it's a generous fit. i purchased the medium.,5,1,0,General Petite,Dresses,Dresses +392,44,Best swim skirt ever...please offer more options,"I ordered this in xs and s. they both fit very well and i couldn't tell much difference between the two. i kept the s as it seemed to have a little more length on it. i am 5'4"" about 120#. i wish this were offered in lots of different solids and more patterns (the taupe and white stripe...hint hint hint) too. it's just perfect. i am in my mid 40s and have young kids so it's great for my life right now! comfortable too!",5,1,2,Initmates,Intimate,Swim +1033,44,So flattering...,"I ordered the petite size 27 and the fit is just like on the model...not tight at all and very flattering. even the petite length is long on me and i will need to wear wedges or something with a heel but honestly that makes them even more flattering...makes my legs look long! i am 5'4"" and about 118#. the material is so soft and substantial...the color is very accurately portrayed online. i can't wait to wear this fall!",5,1,2,General Petite,Bottoms,Jeans +1025,39,Size up,"I typically wear a 26 or 27 in jeans, had to size up to a 28 in these. the legs felt fine in the size 27, but the waistband was a bit tight, so i went with the 28s. i am 5'2"" 115lbs. i'll also be hemming or possibly just cutting these off, they are about 4 inches longer on me compared to the model pictured.",5,1,3,General,Bottoms,Jeans +916,31,Itchy express,I was so excited to receive this sweater in the mail since my local store didn't carry it. it is a very cute design if you have a smaller frame but i'm curly up top and it didn't lay they way it did on the model. there's plenty of stretch. unfortunately the fabric sheds and itches terribly. you could wear a shirt underneath but i'd have to wear a turtleneck so it'll be going back.,3,0,35,General Petite,Tops,Fine gauge +1025,34,Flattering and comfy - my perfect jean!,"I adore these jeans! i bought them in a size 31 but probably could have gone with a 30. i decided to keep them anyway and have been very pleased. the fit is flattering. the color is perfect! i prefer these gray jeans to any other color for most outfits. the waist is a little higher than i'm used to, but that makes the fit even more flattering and helps prevent the ""sagging out"" issue that my older paige skinny jeans have. + +i love these jeans and definitely recommend them for hourglass shapes. mo",5,1,0,General,Bottoms,Jeans +1077,45,So so flattering!!,"This dress is gorgeous! i ordered it because i was getting other things and there was free shipping., i am 5'3.5"" and abt 123 lbs. usually between an xs and s and also between reg & petite. sometimes i have to order multiple sizes to get a decent fit. i ordered a sz small petite and it's perfect. super soft, great colors, perfect length!! love it!",5,1,2,General Petite,Dresses,Dresses +1033,53,Sadly they are going back,"I really wanted these jeans to work but i am too curvy and not tall enough for them. i just felt like they were swallowing me up with fabric. i am 5'5"" and had a stacked boot heel on when i tried them on and they were still too long. i felt like they made me look even bigger than i am. the fabric is nice, not as dark as the photo as others have said.",3,0,0,General Petite,Bottoms,Jeans +1033,26,Classic flare jean,These give an amazing slimming effect and i love the dark wash and fit on the waist. only negative is that being 5'4 and a size 30 the length of the pants is a few inches too long for me. i still love them but will have to wear heels with them always.,4,1,1,General Petite,Bottoms,Jeans +1033,70,Great pants,"These pants are flattering yet comfortable. i am thrilled that they are available in tall sizes because i am 6 feet tall. the 36 inch inseam is perfect and for me prevents the problem of ""high water"" pants. the zippered pockets are flattering yet useful. the high rise waist is wonderful. these pants are perfect for wear in a number of occasions. they are great.",5,1,9,General Petite,Bottoms,Jeans +1077,32,My new favorite summer dress,"I have never been able to find a maxi dress that just fits me. i'm pretty short (5'2"") and the xs petite comes exactly to my ankles. no hemming necessary! the neckline is very flattering and the waist is a semi-empire elastic waistline that makes this dress both elegant and comfortable. the dress is very stretchy but doesn't look like it. it is absolutely one of my ""summer staples"" now - especially for traveling. if i could have this dress in fifty different patterns i would.",5,1,0,General Petite,Dresses,Dresses +1033,45,Beautiful and slimming!,"These are the perfect dressy 'jeans'. they are super soft but have the right amount of structure. they sit higher on the waist, which is one reason they are so flattering. the other reason is the flared, long leg! very long, in fact. i'm 5'5, 130 lbs and ordered a size 28. they fit me perfectly but i do have to wear them with my tall heels - which makes them perfect for work, with pumps as well as for casual outfits with tall wedges. if my size wasn't sold out, i'd order another pair - they are",5,1,0,General Petite,Bottoms,Jeans +1033,34,Great black trousers,Trousers fit tts with nice thick fabric and great fit. the length was perfect for my 5'9 height. they are flattering very nice quality.,5,1,0,General Petite,Bottoms,Jeans +1033,61,Great fit & comfort,They fit perfectly and the stretch makes them very comfortable.,5,1,0,General Petite,Bottoms,Jeans +1033,47,Perfect interpretation of latest style,"These wide cut stretchy demon trousers are so flattering; i'm 6' and 160, which translates into curvy territory. i didn't need extra length, and the size 32 was bigger than i need, but not too big. these are very classy looking, and go with sandals to booties for every type of look, summer to winter, with a breezy top or a cozy sweater. +the revisitation of bell bottoms and culottes had me slightly down: those cuts are not the most flattering for most people. these jeans are smart but trendy;",4,1,1,General Petite,Bottoms,Jeans +916,46,Cabled crossover wrap,"This is like wearing an afghan, but i get cold really easy so for me that's a good thing. and it's super soft and not itchy. i could easily never take this off. runs a little large, but that should be fine when it gets layered. ...only thing i didn't like was the one long stitch that holds the wrap in place. i worry it will snap and the whole thing will unravel.",4,1,5,General Petite,Tops,Fine gauge +1033,40,,,5,1,0,General Petite,Bottoms,Jeans +1033,45,Love them,"Sits slightly below waist, i bought size 30p, length is good no alteration required for petite height 5'4 and 136lb. material is good and i recommend them.",5,1,1,General Petite,Bottoms,Jeans +1033,43,A great look but not as shown online.,"These are super comfortable and with heels can be very flattering. i like the fact that you can wear them with or without the belt. +however i wish that the color was the same darkness as shown online. they are lighter and a bit duller. i look at a few pairs and they are all the same. still love them but i'm sure they would have been even more fantastic if they looked like the picture.",4,1,1,General Petite,Bottoms,Jeans +1033,28,"If you have a big booty, get these jeans now","I have a tough time shopping for jeans because almost everything that fits my butt is too big in the waist. also, i have thick thighs so that's an issue and i hate shopping for jeans. these are so much cuter on than on the hanger. try them. you won't regret it. so flattering.",5,1,3,General Petite,Bottoms,Jeans +1033,52,"Polished, a step up from average jeans","I ordered these in the blue size 28p. i am 5' 120 lbs. a size 6p and curvy. the jeans fit very nicely in thigh and hip area (and i don't have skinny thighs). the jean is not a low rise which is what i was looking for. i was looking for a jean that was a little dressier yo wear out to grab a drink or catch a movie. these jeans fit the bill because they give off a polished vibe, especially when paired with a dressier top, blazer, skinny belt and heels. also, i like that the jeans don't have the to",5,1,6,General Petite,Bottoms,Jeans +1077,34,Wierd pattern,"I love this dress as far as the fit goes. it makes my curvy figure loook even better with how it's cut. that being said the different patterns over each boob made the dress look crazy. it makes you look quite lopsided in the chest. wasn't just me, but my store people also agreed. had the pattern on the chest been the same it would be great, but even though my boobs are of ""mostly"" equal size, they looked too crazy. it's quite noticeable on. so sad:(",2,0,0,General Petite,Dresses,Dresses +1030,26,Love these!,"I am a huge fan of all things ""mother"" brand now. they fit great and are true to size! they have just the right amount of stretch, but maintain their fit all day.",5,1,0,General,Bottoms,Jeans +1033,45,Cute pants,"These ""jeans"" definitely look more like pants and are very snug, but stretchy. i'm 5'10 and ordered the tall, and mine are a little longer than shown on the model. they look nice on, but are a tad tighter than i anticipated.",4,1,5,General Petite,Bottoms,Jeans +833,59,,Runs big so size down. i love this top for many reasons but armholes are big so went to xs and i am usually a small or medium. xs was perfect and still long enough for me. gorgeous fabric and color and flow. got tons of compliments! very feminine and comfy. looks great with jeans and white crops.,5,1,1,General Petite,Tops,Blouses +862,59,Color is more a mauve rather than a light pink,"Perfect in every way- easy to wear-very feminine, comfy and goes with everything. only problem is color is not like picture. it is a mauve not a light pink. i still love this top and the color it camre in. brighten up with lipstick- necklace- earrings- whatever your pick. highly recommend. a winner!!!",5,1,3,General,Tops,Knits +815,37,Different but nice,"This top was different than what i normally wear but based on good reviews i purchased. i really love it. it is different than i thought it would be. i thought it was longer sleeves but it is just above the elbow. definitely need a tank or something underneath as it is see through and the sleeve holes are quite large. +definitely recommend.",4,1,0,General,Tops,Blouses +1094,37,It's worth a look,"The cut and design of this dress is lovely! the fabric is heavy enough for fall/winter, but the sleeveless style makes it a great transition piece for when the weather warms up again. it does run slightly larger than most other retailer dresses. i sized down to a 2 from a 4. the bust stretches a bit for the ladies who might be heavier on top (i'm a 34 dd), however, i noticed the white shows through in dark places around my bust. also, the boning in the front pushed against the fabric a bit",4,1,0,General Petite,Dresses,Dresses +862,47,,"Really beautiful top. i agree with the others, a bit on the short side. it is cut a little wide but has a nice flow. the color is not pink. it is a blush type color that can be hard to wear for some skin tones, but i'm going to make it work because the top is too pretty to pass up.",4,1,2,General Petite,Tops,Knits +862,47,,"Boxy, short & wide! luv this brand but super disappointed with this design...",1,0,3,General Petite,Tops,Knits +833,50,Beautiful but....,"......not for the long waisted. i immediately ordered this top when i saw it online. the embroidery is beuatiful (although it will require extra care). the soft lavendar color was a breathe of fresh air. however, i felt like i was wearing a maternity top as it hung oddly on my slim, 5'9"" frame. i am long waisted so perhaps petites will find this top works for them. i agree with the other reviewer that indicated the arm openings are a bit large and deep. sadly, this one went back....",3,1,2,General Petite,Tops,Blouses +862,43,Lovely blouse!,"This blouse does have a flowy, boxy shape to it but the details make up for that. when i wear it tucked into a skirt it looks wonderfully flattering. i tried on an xs and considered looking for a xxs but i feel that size would probably end up being too short instead of more fitted.",5,1,3,General Petite,Tops,Knits +862,62,Short and wide,"I desperately wanted this to work - it's a beautiful color and overall quality...it is just so short and wide (almost a perfect square if you lay it out flat). i can see it looking better on someone on the shorter side, but on my 5'7"" frame and long torso it just didn't look right. few extra inches and this could have been awesome!",3,1,6,General Petite,Tops,Knits +833,62,Wait for sale...,"Tried in store today and found to fit tts. images are accurate in terms of color and showing that there is a tiny bit of sheerness to this (as you can see near the bottom in each photo). i really loved everything about it except that it flared out a bit on the bottom in a way that i'd probably fuss with too much. id probably buy it on sale, but not before that.",4,1,1,General Petite,Tops,Blouses +1094,34,Beautiful,"I didn't look at this dress twice online but when i tried it on in the store i was floored. it was beautiful, flattering, and so much fun.",5,1,0,General Petite,Dresses,Dresses +702,31,,"I fell in love with this romper and it was my go-to for any given day, but as soon it got wet the blue dye bled everywhere, so i had to return it.",3,0,3,General,Bottoms,Shorts +833,39,,"This top is gorgeous in person! i got the small because at 5'5"", 127 pounds and a 30f chest, you never know how a top will fit. however, this one is big. i definitely needed the xs which is now sold out. i'll be taking in the sides because the arm holes show too much bra and there's a ton of extra fabric that makes it way too blouse. love this shirt though and am not willing to part with it!",5,1,0,General Petite,Tops,Blouses +815,55,,,4,1,0,General,Tops,Blouses +833,55,Beautiful embroidered purple tank,"I am an retailer employee and this top just screamed my name when it arrived in our store. i love the colors and the feminine flair of this top. i am short and this top is a little longer on me than pictured on the model. i like the fact that it is a bit longer, it helps cover up some of my extra assets. the top is to big at the arm holes which is the story i have heard from my customers who did not purchase the top even though they loved it. i should have purchased the xxs online, it would",5,1,2,General Petite,Tops,Blouses +867,36,"Beautiful, romantic top","I got this top in the ""brown"" color, although it is really more of a burnt rose, or light sienna shade and it is just lovely. i love the color. the fit is just right, comfortable and a good length. it feels very well-made and has beautiful details from the pleated collar/neckline to the slightly sheer upper back panel. i have only one tiny issue with this top: in the very front where it buttons, there is no lining or fabric behind the crocheted lace panels. in retrospect, i can see this slightly",5,1,0,General Petite,Tops,Knits +833,40,Too wide,"The detail on this top is beautiful, love the embroidery ! i wanted it to work so bad, but it is much too wide, bells out and makes my size 8/10 body look wider than it is, another reviewer mentioned the model must have it pinned on the sides, because the top does not lay like that. it runs large, especially under the arms. too bad......",3,0,2,General Petite,Tops,Blouses +833,39,Based on trying on one size larger,"I tried on a small, but usually am xs: + +this shirt dind't seem like it had too much fabric or too bulky to me as it did to others adn i tried on a larger size. teh material is soft and feminine, and love the embroidered detail. one thing to note is i found that even with the layer of fabric, it was still a bit sheer and i could see through in some of the dressing room lighting. didn't purchase only based on the skin tone v's shirt color. color of shirt is gorgeous, but i am pale and it wasn't",4,1,1,General Petite,Tops,Blouses +867,26,"Pretty, comfy top","I just ordered this top and so far really like it, it is pretty and feminine and comfortable. the one thing i would note is that the lace running down the center has holes which you can see through, unlike the lace to each side. it's not extremely noticeable, but i am planning on wearing a cami under it. i ordered a small and it fits pretty well but is definitely on the looser side, i wonder if possibly the extra small would work for me, but i'm fairly tall so i went with the small.",5,1,0,General Petite,Tops,Knits +833,29,Very wide,"The color and detailing on this shirt are pretty, but it is incredibly wide at the hips. as someone with a large chest, it was very unflattering.",3,0,4,General Petite,Tops,Blouses +833,48,Meh,"I wanted to love this top. i really did. the color is beautiful, the embroidery is well done, the fabric is soft, and it feels like it would be very comfortable in the summer heat. but the armholes are big and so the holes show my bra which is not good. i guess i could wear a bandeau or tank underneath, but the armholes just kind of ruined my love for this top. i think i will try again and order next size down.",3,0,1,General Petite,Tops,Blouses +867,35,Pretty details,"I liked the details on the front a d back of this top. while i was pregnant i purchased the white color in the small. everything fit, suprisingly, the top even covered up my pregnant belly. i returned it since i didn't want a top with so much room in the waist area post pregnancy. i recently got this top in the xs thinking that it will be a great stylish breasting top. while everything fit in the hips, and waist, the chest area was too tight. this top did not work for me as i am in between sizes",4,1,0,General Petite,Tops,Knits +1094,38,"Beautiful dress, comfortable","Super flattering dress. love it. makes my waist look tiny. great fit and flare style without making me look pregnant! i love the fabric. will be great as a travel dress (packs easy, doesn't need to be ironed really, substantial fabric). love it. i think it runs large since i'm rarely a 2 at retailer, but i find that maeve runs all over the place. i'm usually a 4 at retailer and i got a 2 in this.",5,1,0,General Petite,Dresses,Dresses +1033,59,"Cute, but not for my figure","I just got these and had to return them as they were not becoming on my physique. for reference, i'm +5' 5""; 122 lbs; 26"" waist; 38""hips and i have a long torso and short legs. i ordered a 29 petite. the fit +was tight, but they are supposed to fit tight. if i wasn't so ""hippy"" i would have kept them. the model is +slender with long legs and she looks fantastic in them. not me. i do recommend these as they are cute, but perhaps geared for a more slender body type.",4,1,6,General,Bottoms,Jeans +862,51,Really pretty and feminine,"I love this blouse. it reminds me of something out of europe with the swiss dot and crochet delicate sleeves. i ordered the xsp and it fits perfect. i'm 4' 11"" so the shortness of the top isn't a factor. the material drapes nicely and doesn't make me look wide or boxy. i was afraid that the sleeves were going to be overly puffy put luckily they are not. the only thing to note is that the color is more on the tan / beige side rather than pink. i find with a lot of retailer tops that the colors are",5,1,2,General Petite,Tops,Knits +917,46,Very unique top,"I purchased in the raspberry, love this color and the asymmetrical design is super cool, and the color is unique - however i am on the fence. this knit top is very thin and for the price and to wear in the cold fall and going into winter i think i need it to be more of a light sweater or at least a thicker fabric. i am 5'9 and 140 lbs. and the small fits perfect. the sleeves are long which you tall gals will love.",4,1,0,General,Tops,Fine gauge +862,43,A little short....,"While i love this top ( beautiful color and pattern) i found it to be a bit short. if it were a few inches longer i would be thrilled. i'm 5'8 , curvy, and have a long torso-- so that may be the problem. i will say that within 2 hours of wearing this, i had 5 strangers stop me and comment re: how pretty it is. i am keeping it :)",4,1,0,General Petite,Tops,Knits +815,34,Beautiful!,"I tried this on in the ivory color because it was on sale and i thought it ""might"" be sort of cute. a comfy, flowy, warmer to cooler weather transition top. little did i know how much i would fall in love with it! i tried it on over like 3 things in the fitting room, including a black strapless maxi dress i wore into the store, and it still looked great! it is comfortable, loose, and goes with pretty much anything (i've tried and still haven't found anything it looks bad over). it's not super dr",5,1,2,General,Tops,Blouses +867,42,Beautiful tank but poor shape,"I really lived the detail , fabric, and quality of this tank. however, the sizing seemed disproportionate. it was tight through the bust and loose the waist. i really loved all the colors i purchased online but had to return them because of the sizing.",3,1,0,General Petite,Tops,Knits +1094,26,Simple & beautiful,I tried on this dress in store and was amazed by the quality and simple structure of the dress. bought it with no hesitation.,5,1,0,General Petite,Dresses,Dresses +976,42,I wanted to love this,"I wanted to love this, but instead of being a flowy kimono top as pictured- it was a thick blazer type garment. not at all what is pictured here unfortunately. also it was much shorter than pictured and i am only 5'4''. + +love most retailer styles, but this one was a miss and a return.",2,0,3,General,Jackets,Jackets +1094,90,Gorgeous,Absolutely beautiful dress. i'm 5'11 and this dress works for tall girls:)),5,1,0,General Petite,Dresses,Dresses +862,34,Beautiful spring!,"No need to be on the fence about this top, it's lovely! what you see pictured here, is exactly what you get, even the color of the top is 100% accurate. for reference i'm usually an xl/16, apple shape, 40 c bust, and this xl does not cling at all to me, so you may even be able to size down. the drape of the clipdot fabric is flattering, and thick enough not to need a cami. all of the fabrics used are nice and soft... and the details! it's going to be a beautiful spring!",5,1,16,General Petite,Tops,Knits +815,66,No go,"Ordered navy in a medium and it is wide. sometimes that's a good thing, but not this time. am short waisted and hoped this would be more fitted at the waist on me but it isn't. it just looked frumpy with lots of see through parts. obviously it needs a cami but wasn't attractive on me at all. seemed well made and probably better on someone taller.",3,1,2,General,Tops,Blouses +917,66,Unique,"I ordered my normal size large and it fit well although a bit on the long side. the fabric has a waffle texture that's lightweight but warm and cozy. i got the blue and the color was a bit intense in combination with the tie dye affect and waffled texture. my favorite part are the lighter striations on the neck. that opening is really small. it just didn't suit me, so i returned but recommend giving it a try if it's calling your name.",4,1,0,General,Tops,Fine gauge +1094,33,Dressy yet comfy,"I saw this dress a few weeks ago in the store, tried it on but didn't have anywhere in mind to wear it so i passed. noticed it on sale online and had to order. it is so comfortable and flattering. the material is thicker therefore it keeps a nice shape. not slinky at all.",5,1,0,General,Dresses,Dresses +862,47,Really elegant in person,"This top is my favorite spring item. the color is a soft petal, but it doesn't wash me out (i'm a sandy paleface), and the details make it special. the cut is a little wide (i sized down), but it's also forgiving and perfect with slim pants or a pencil skirt. it's really a find.",5,1,0,General,Tops,Knits +867,38,Runs large,Runs large and it also had a small hole in the back had to return it.,2,0,0,General Petite,Tops,Knits +1088,35,Lovely concept,The idea of this dress is lovely. the fabric is pleasing to the touch. the print manages to be eye catching but understated. i don't know my exact measurements but i typically wear an extra small and i rarely have fit issues with off the rack clothing. i read the other reviews about the odd fit but decided to take a chance. i ordered an extra small in this dress and the bottom half fits perfectly. the top fits poorly. i have a fairly athletic build but it is a bit too large for my shoulders. how,3,1,1,General,Dresses,Dresses +815,85,I'm a lil disappointed,"Wish someone warned of the navy one being not as pictured!! i ordered the navy because the crocheted part appeared to be more intricate than the ivory. in reality the navy knit is just like the ivory. it seems well made but very delicate. i'm not a fan of tops (especially pricey ones) that require a camisole but this top is a very ""retailer"" piece so most likely i will keep it, just a bit disappointed.",3,1,0,General,Tops,Blouses +867,46,,"This is a very pretty, feminine top with nice detailing.",4,1,0,General Petite,Tops,Knits +833,58,Cute top,I ordered this on a whim and am so glad that i did. it's a great color shirt and the embroidery is perfect. i like the length of the shirt.,5,1,3,General Petite,Tops,Blouses +1094,37,"Great shape, poor condition","Love the shape and flow of this dress. but i was sent a dirty stained dress so this is going back. + +would not recommend",2,0,1,General,Dresses,Dresses +1025,31,Always like paige jeans,"Expected them to fit somewhat loose but actually tight for a boyfriend fit. like a slightly relaxed skinny with a really low crotch. stretches everywhere when sitting and walking except the waistband. the distressing and fraying holes in good placement. wish there was some on the back of the leg but i have yet to find a pair that does that. good color and quality, but not quite worth full price. will probably look for them on sale later. i always prefer skinny jeans over boyfriend do it might bi",4,1,3,General,Bottoms,Jeans +862,43,Gorgeous but tent like,"The blouse is gorgeous. the detail to the blouse is outstanding and it is very feminine. from the pictures, front and back, there appears to be flow to it and room. however, my general size m was absolutely gigantic. it was like a tent. i was speechless when i looked in the mirror. i debated tapering it and then thought that's just too much effort. i'm going to return and see if i can order in 2 sizes smaller. i'm 5'1 and a 36c, if this helps.",4,1,2,General,Tops,Knits +1094,37,A sweet surprise,"This dress is made of a wonderful, thick material that is flattering. i think the photo doesn't really bring it to life- it's a great dress that can dressed up and is at least a 3 season dress thanks to the colors. the v-neck is a little deep if you are bustier but not inappropriate for a slightly more casual office. it runs a bit large and the fabric has some give so i would potentially size down. i also think if you are more narrow shouldered it might not be the best fit without a nip and tuck",5,1,0,General,Dresses,Dresses +833,43,Unique and eye-catching top,I love floreat and was excited to find this top on sale. i received multiple compliments the first day i wore it. it is true that it might be better with a bit less fabric but it wasn't a deal breaker for me. the flowy shape it ideal for summer.,5,1,0,General Petite,Tops,Blouses +833,46,Billowy waist,"Pretty color, great details, awesome stitching.. aaaaannnnnnd it actually not only goes out a line but ballooned out above the hem and then came back in - just too much fabric down below. nice at neck, arms and chest but disastrous anywhere below that.",3,0,1,General Petite,Tops,Blouses +867,48,Great piece,I love this tank to wear alone because it is soft and more lovely than a basic plain tank. it is especially great to layer with a sweater/ cardigan. the colors are always fabulous and the design is wonderfully feminine. i own several and love them all. it's a great value especially on sale. i normally wear a size 6 and the small fits perfectly.,5,1,0,General Petite,Tops,Knits +862,34,Agree with others; not for long torsos,"Like others, i think this is just lovely on so many levels. however... +____________ +pros: +- great color, will match with many things. +- great design at the sleeves and overall. +- the ""v-neck"" part isn't too low. +- fabric is pretty comfortable and breathable for the most part. +_____________ +cons: +- it is boxy/wide. for my height and weight, the medium fit well, but i noticed it made my torso look shorter. plus, i'm a 36c (not huge, but to retailer's standards, i've had issues with things b",4,1,3,General,Tops,Knits +862,40,Beautiful blush top,"The details on this blouse are so pretty. it is a bit wide, but it flows nicely. it is also a little shorter than a lot of tops, but i think it will work nicely with higher waisted flares this spring. the sleeve is very flattering. i got medium, my normal size.",4,1,0,General,Tops,Knits +815,35,,,5,1,0,General,Tops,Blouses +833,46,Beautiful but lots of material,This top is beautiful but beware there is a lot of extra material on the sides. it was not flattering on only because of all the excess fabric. clearly the model in the picture has it pinned behind her. it would be a keeper if it was cut closer to the body but sadly it's going back.,3,0,6,General Petite,Tops,Blouses +867,50,Beautiful!,"I love this top! it is sheer, so wear a cami, but it so pretty, i will wear it a lot! a winner for sure.",5,1,0,General Petite,Tops,Knits +1033,29,"Runs small, but cute","I have the jeans version of these pants, and these run smaller and they're a little thinner than jeans. i like the style, and i looove the jeans, but i'll have to exchange these for one size bigger and see if they work.",4,1,3,General,Bottoms,Jeans +862,55,,Beautiful and delicate!!,5,1,3,General,Tops,Knits +1094,23,Much prettier in person,"This dress is beautiful and extremely flattering- i have an hourglass shape, and this dress highlighted that perfectly. the pictures online do not do it justice.",5,1,0,General,Dresses,Dresses +917,64,Love the blue in this top,"I love the tie-dye look! i ordered the blue color in my usual size small. fit is tts. love it!. just a fyi: 1. on mine, one arm is a darker blue tie-dye, the other is very light (color variation). 2. the white band on the mock-neck doesn't give much, so be careful when putting on/taking off. i think it's pricey, but ordered during the promo so that made it better. it came yesterday, put it on w/ my washed blue skinny jeans, out to dinner we went!",5,1,0,General,Tops,Fine gauge +815,45,This top is beautiful,"The top is gorge, it may look somewhat slouchy but it falls perfect and looks great, especially the navy color with white jeans. i liked it so much i ordered the ivory color too. beware the quality of this top is extremely delicate and if you don't want it to snag, do not wear a bracelet that can snag it.",5,1,0,General,Tops,Blouses +862,50,"Love, love, love this top!!","This top is awesome!! it is feminine and flattering at the same time! the color also makes it a little romantic. i will wear it with jeans or very a little dressier night out, black pants. buy this and you will not be disappointed!",5,1,2,General,Tops,Knits +833,65,This is a fun top!,"For myself it brings out the playful side of me. it is flows and just looks lovely. i wore it with a white denim skirt, and booties. i know white, and it looked great. the fabric is beautiful, and in the sun it is breathtaking",5,1,0,General Petite,Tops,Blouses +1094,42,Very flattering!,Love this dress! accents your curves and slims you waist!,5,1,0,General,Dresses,Dresses +201,24,Add a little shimmer to your outfit,"These tights are wonderful, exactly as pictured (but the shimmer is more apparent in person), definitely true to size, and super comfy! the only tricky part is finding the right shoes to pair with.",5,1,0,Initmates,Intimate,Legwear +1094,56,"Beautiful dress, but huge!","I am giving this dress 3 stars bc it's pretty and i bought it, but i'm going to need to get it altered big time. i got the 00 and it's too big on top, but this is the type of dress that should be fitted on top. i am a small person, but this fit more like a 4 or 6. print is beautiful though. wayyy prettier than the pic. i suggest getting 2 sizes down. i could see it being extremely gorgeous if it fits correctly!",3,1,0,General,Dresses,Dresses +1139,48,So soft and pretty,"I love this tunic! it's wool but the same kind of thin high quality wool you might find in a nicer scarf. colors are much nicer than they show up online. this is one you really need to see in person. the only drawback is that the material seems to snag easily. i returned the top at full price as it is just too much to spend for something i'll only wear a few times before no doubt ruining it. if you are not hard on your clothes like i am, this is a great find. i may repurchase it when/if it gets",4,1,1,General,Trend,Trend +1004,62,Great casual skirt,I almost never buy full price but i did with this skirt. it is adorable! saw it in the store. it is too short to wear to work but is fine for casual wear. i am a size 14 but the largest one they had was a 12 and it fit perfectly. i'd size down. the fabric is stiff and the a-line stands out. colors are southwesternish. can be worn with any color top. i bought a cream colored top to wear with it (that was on the sale rack) but i'm sure there are plenty things in the closet that will go.,5,1,0,General Petite,Bottoms,Skirts +873,47,Nice addition to my wardrobe,"I'm 5""1, 115 and bought the small. i buy most retailer tops in xs but the small fit well - not too tight and is flattering. the colors are as seen and are a soft muted color. the material is thin which is fine for hot weather and i haven't washed so can't say how colors will hold and how well material will hold but have high expectations for retailer apparel. this will work well to wear with shorts or a navy maxi skirt. adds a nice touch of color for spring and summer.",5,1,2,General,Tops,Knits +873,61,Great top,"I usually wear a medium in tops from deletta so i would say this top is true to size. i personally loved the fit. in the front, the seam goes up slightly to follow the bust line. there are some gathers in that area as well so that any little bulges in the tummy area are hidden. the fabric falls nicely there. the seam at the waist on the side and back hit exactly at my waist. i love both of the prints. the tops seem to be well made. time will tell.",4,1,0,General,Tops,Knits +1110,54,A keeper!,"Very lovely dress!!! perfect in all ways. although i do find it to run big. i ordered the small, and i usually wear a 4 to 6 in a dress. there is a lot of fabric, but it lays nicely. it's mostly just the arm hole. it's rather large showing the strapless bra. so, deciding if i should size down, if there isn't a huge change in sizing, or keep and have altered. +if anyone has tried in both the xs and sm i will watch for comments overall size differences. i have the black and white, and wish now i wo",5,1,0,General Petite,Dresses,Dresses +873,61,Very flattering top,"The photo does not do this top justice. the design of this peplum is very slimming and the colors are complimentary to any skin tone. i usually wear a m (10) but purchased the l based on other reviews. it fits perfectly. +would highly recommend!",5,1,0,General,Tops,Knits +895,56,Beautiful cardy,"Even though i had to return this top because it did not fit me properly, it's a very nicely made and attractive piece with a lot of versatility.",4,1,0,General,Tops,Fine gauge +1110,41,Beautiful swing dress,"I love the feel and drape of silk. this dress has lovely drape, and fantastic color. i think if paired with the right sweater and leggings, this will work well into the fall, and also transition into other seasons if you are savvy! the only awkward point about this dress is that you must wear a belt with it if you have an hourglass shape, otherwise it's a beautiful swing fit.",5,1,0,General Petite,Dresses,Dresses +873,39,"Material too thin, too wide on bottom","Based on other reviews that this top ran large, i ordered this online in two sizes. both seemed to fit alright in my chest (although the chest fit tighter in the smaller size), and both were much too big on the bottom. the front bottom of this shirt has a series of pleats, so the bottom of this top really, really, really flared out away from my hips. the length seemed fine on me (5'10""). the material is very thin, and i could see my nude bra through the white pattern.",3,0,0,General,Tops,Knits +850,59,,I bought this top in pink today and it is a beautiful bright pink spring color. i did have to size down from my normal size six all the way down to a 2 due to armholes being being too big. i tend to have a chronic problems with armholes being big so not sure others may find the same problem however i typically size down to a 4 when armholes too big. plenty of room in body still but i lost some length. i do have a short torso so can get a way with this. aside from my armhole problem it is a gorge,5,1,10,General Petite,Tops,Blouses +873,53,Adorable!,Love this top! bought it in the relish color - loved it so much bought the green too! usually wear a small but the medium was perfect.,5,1,0,General,Tops,Knits +873,39,Super cute top!,I love this top. fit is perfect for me. shows just the right amount of cleavage. wore it to dinner on my birthday and got a ton of compliments!,5,1,0,General,Tops,Knits +873,25,,"Cute pattern, but the shirt is very thin and runs small and short!",3,0,0,General,Tops,Knits +850,38,Nice detail,"I purchased the mustard colored item and it is very good for spring. nice fit, nice quality",4,1,1,General Petite,Tops,Blouses +873,45,Simple stylish top with jeans,Have worn this top multiple times with jeans. neckline makes even those of us who are small busted look great up top!,5,1,0,General,Tops,Knits +873,32,Fun summer tank,"This top is all around great for summer... i've worn it to festivals, for casual workwear, etc. love the colors, they're vibrant. this top could even be worn on the warmer days of fall with a light jacket over it.",5,1,0,General,Tops,Knits +839,49,Cute as it is comfy,"This is a very flattering and comfortable top that can easily transition into fall. i can't wait to wear it (i have the black and white one) under my new leather jacket! the store was out of my size, so i had to order the top, which came with a small snag. i trimmed the thread and wore it anyway! it is also long enough to wear with leggings.",4,1,1,General,Tops,Blouses +873,35,,Just bought the patterned and gray. the small fit perfect. i do have a short torso though. chest size 32dd. i tried the medium but then the underarm portion was too wide. i might have gotten a medium petite but small petite would have been too small i think. i hope the quality holds up which was the only thing i wasn't sure of. great summer tank to throw on with jeans or shorts.,5,1,3,General,Tops,Knits +1004,36,Quirky and pretty,This flared skirt caught my attention the first time it came up in the website. i am more a florals and lace kind of girl but the flattering shape and stripes kept me going back to it agin and again. i finally saw it in person at my store and needed to try it on. perfect! the colors are matte and not metallic as i thought based on the website photo. you can definitely dress it down with a chambray too or t shirt. i wore it to a work meeting and can't wait to wear it again. it's a bit on th,5,1,0,General Petite,Bottoms,Skirts +895,62,Pretty everyday sweater,"The design on the blue sweater is actually a dark navy (not black, as i thought it was), but it still looks beautiful with black underneath. rather than jeans like it's shown, the v-neck is a nice change from other cardigans i have - looks great with a cami or another v-neck underneath it. soft, nice medium-weight and not at all itchy. happy with this as an easy everyday sweater.",5,1,0,General,Tops,Fine gauge +850,57,Feminine blouse for summer,"Top is blouse and long enough to stay tucked in if you want. like the laser cut detail front and back. sleeveless is great for summer months here. can wear to work or dress down with jeans. fit is true to size. i am 5'5"", slim and small busted so anything fits me. i would think it you're busty it would be fine as it's a blousy fit. +the color is more of a salmon pink which works for me. however if your looking for a true pink it may not work.",5,1,0,General Petite,Tops,Blouses +850,37,Perfect fit on me!,"I ordered this in an 8p yellow. the yellow is more of a rich golden yellow than the easter yellow i see on my monitor that i was hoping it'd be, but i'm keeping it because it fits me perfectly. i am chesty for my size (32ddd), and somehow i don't look bigger than i am in this top. i also have broad shoulders and this doesn't feel tight when i move my arms. bonus that it has loops to keep your bra straps in place! i have to dock a star though because there are quite a few fabric threads to trim f",5,1,2,General Petite,Tops,Blouses +1110,42,Beautiful,"I have been eyeing this dress for months and finally, a sale. the pattern is beautiful and is a great quality. the fit: +it is a swing dress, so if you are a bigger girl, this may not be flattering; try a belt though. the high neck could be a bother for some-it does fit close to the neck, but not tight. +also, size down...two sizes. i do usually a medium and i went with a petite small. +finally, this dress can be worn in summer and winter. i do a belt and a blazer for office and a light sweater for",5,1,0,General Petite,Dresses,Dresses +839,54,Don't miss this top,"This is a great top and worth the money. nice flow to it, soft material and light weight for hot summer days. many light weight tops are sheer and require a cami - this one does not which is key for those of us that live in hot climates. don't miss out!",5,1,3,General,Tops,Blouses +1110,34,,"I love this dress and would have bought it on the spot without hesitation if i just had an event to wear it to! i am plus sized (18 pants, 16 dress, 5' 7"", 36-38 ddd) and i never size down but i was able to with this dress because it is so flowy. the dress hit just below my knee and the only fit difference i saw when i tried on the petite is that it was slightly shorter (still no thigh showing). this would be flattering on absolutely anyone! if you are worried about bulges this dress will give y",5,1,0,General Petite,Dresses,Dresses +1004,39,Love the length as i am short,"This skirt is beautiful, i even have the perfect shirt to wear with it, sadly, though, i have to decide between too many nice things... what to do! i tried on the 0, and it fits me perfectly. above the knee, waist just right (26.5 in). colors are fun and great for fall, but could also summer-ize the skirt.fabric is thick, however, and well-made. i highly recommen, but leave a 0 for me!",5,1,1,General Petite,Bottoms,Skirts +873,31,Even prettier in person,"I purchased the purple motif in petite size small. it hits just the right length for me, but i can see that if i were any larger chested, it might be an issue. (for reference, i'm a 32d, 5'4, 112lb.) it's very forgiving on the tummy area, without looking bulky (other moms know what i'm talking about and understand my appreciation for this). the shirt is also a nice quality, really comfortable, and it's easy to wear with jeans, shorts, skirts, etc., making it a welcome versatile piece.",5,1,2,General,Tops,Knits +873,31,Cute top!,"This was really cute and fit true to size. the only thing i didn't love was the dip on the top left side of the tank near the cleavage. i probably shouldn't have been surprised since it actually shows up in the picture on the model, but it doesn't lay flat correctly there like the right side. either way, it's still very flattering and cute.",4,1,1,General,Tops,Knits +850,46,Terrible quality of material,"I ordered the coral/peach version in size 16. it ran small, especially compared to other size 14 or 16 maeve blouses i've purchased. very tight throughout the blouse. the product photos looked so nice compared to what arrived. the material was extremely cheap in quality. it wrinkled terribly. the bow pulled the material down which obscured the look of the eyelet. the idea of this was perfect for my style. unfortunately, the poor choice in material & poor fit made this a return for me.",1,0,0,General Petite,Tops,Blouses +873,41,Flattering tank,"I purchased the coral color. i'm usually between an xs and small in this brand, and i felt the top runs a tad small, so the small fit much better. simple and flattering top.",5,1,1,General,Tops,Knits +1004,23,"Love the structure, not the length","I got this skirt earlier this week and wore it for the first time today. i love the color and the shape. everyone else loved it on me. it looked great with a buttondown. but, i will say that it's short. i'm usually a petite in bottoms, and i wore tights so i wouldn't flash anyone when i bent down. i can only imagine how it would be on a taller girl. it also fits at the natural waist instead of the hip. i'm usually a size 6 in bottoms, but i bought the size 4 because it sits higher up.",4,1,4,General Petite,Bottoms,Skirts +873,32,Really nice top,"I really love this top, great colors, comfortable, long enough (always a problem for me), light but feels quality fabric and nice details.",5,1,0,General,Tops,Knits +839,25,I wish i had bought it in every color,"This top is amazing!! i thought it looked really cute in the photos but it's even cuter online. the material is great and you can't go wrong with the fit. i love tops that are loose and flowy, so when i'm feeling a bit bloated i can still look cute in tops. this one is definitely a must!",5,1,1,General,Tops,Blouses +1004,53,Lovely skirt,"I was hesitant to try this on because honestly, it looked so short. however, i just bought this at my retailer store and it is very flattering on! 1st of all, it runs big. my normal size (12) was way too big and i had to go down a size. i could have gone down 2 sizes but the length became problematic. in my regular size (that was too big), the skirt hit me a few inches above my knee. perfect! in the size smaller, it was a tad higher; wish it was the same longer length as the 12 but still acceptabl",4,1,5,General Petite,Bottoms,Skirts +850,23,Very cute,"The only negative thing i have to say is that the color in person is different than the picture- it is much more of a coral pink than a rosy pink, which is fine just a tad unexpected! i ordered a size 8 and it fits perfectly (32ddd chest). the laser cut outs in the yoke add a very nice feminine, unique touch to an otherwise basic top. i can't wait to wear it!",5,1,0,General Petite,Tops,Blouses +873,29,Way too large in the waist,"Definitely size down, the waist and chest were baggy in my normal size s.",3,0,0,General,Tops,Knits +873,25,,This shirt is so cute. very casual. looks and fits exactly like the model and a basic retailer fit around the waist.,4,1,0,General,Tops,Knits +1004,39,Cute skirt,"The fabric was more ""southwestern"" looking when i got it than it looked in the pics. it fit a bit larger around the bottom than i like.",3,1,0,General Petite,Bottoms,Skirts +873,41,"Flexible style, cute fit","Very true to size. i'm a sm-med or 6-8. my sizing varies widely at retailer and this was a perfect medium fit. +adorable with jeans or shorts. or dress up with suit or pencil skirt. +i have the blue/green.",5,1,0,General,Tops,Knits +873,50,,Great shirt. i couldn't picture the material but it's washable and great for hot days when you want to look styling.,5,1,0,General,Tops,Knits +839,56,Darling summer top,"I usually try to avoid paying full price for items but saw this in the store and couldn't pass it up! tried it on in my usual size, 2p, and had to have it. i bought the white/black one, and it looks great with black capris. fabric is lightweight and airy; perfect for hot summer days.",5,1,1,General,Tops,Blouses +839,61,Love it!,"If you're looking for pretty and flowy, this is it! i frequently wear xs in retailer sizing, but in this top i went with a s. 5'4"", 123lbs, 34a. love the top but debating on keeping it because i'm not sure the yellow color looks great on my slightly olive skin....great with legging capris for summer",5,1,6,General,Tops,Blouses +1110,33,Not for the broad-shouldered,"This dress is gorgeous, but the cut of the neck and arms is designed for girls with a slim frame only. i wish it worked? the fabric and pattern are beautiful. sad to send it back.",3,1,1,General Petite,Dresses,Dresses +850,36,Pretty and sophisticated,"This is a great top! i love the color of the pink... it is the perfect color of pink; not too bright or too light, but a pretty pink-coral spring color! i am fair skinned and this color looks great on. +i got the 0 regular and it fits perfect. i am 5'2"" and 110lbs. i usually get petite but i can't imagine this shirt being shorter... it's a great length. i can wear it slightly tucked in or out without it looking sloppy. it also hides any belly issues for those mamas out there. love it! perfect fo",5,1,1,General Petite,Tops,Blouses +1086,29,"Very cute dress, but odd sizing","The pattern and fabric are very nice! i'm usually an 8/m for dresses. it was very narrow across the top (and i have a small chest), but hung very low in the armpit. i guess if you're small up top, this might fit better.",4,0,1,General,Dresses,Dresses +873,51,Great too,This is a perfect casual too to pair with jns and shorts for spring!!,5,1,0,General,Tops,Knits +839,44,Got the last one !,"I bought this at my local retailer store. i bought the last one and when i walked out of the dressing room a lady asked if i was buying it..uh yeah! this is so cute with jeans or pants and booties. i bought the yellow. its lightweight and perfect for work or weekend. ive received many compliments. the arm holes were small for me, i bought a size 6, normally i'm a small or xs in most tops. i am 5-2, 130 lbs, petite and fit, the 6 regular was perfect for me, i was ok with it a little longer.",5,1,0,General,Tops,Blouses +839,46,,"Nice to have colors rather than a solid top. i actually bought the pink also because i like the fit so much. i'm 5'8"", 140 and wear a size 6, tts. i like the cut and it's long enough, which can sometimes be a problem for me.",5,1,0,General,Tops,Blouses +873,36,Versatile top,"This top is beautiful and fits true to size, 4ft 11inches and 114 lbs and i purchased the xs. i was at the montclair location today and they had this top in white, lavendar, the pattern which is displayed online and gray. the white was see through so you will definitely have to wear an under garment with it. this top will be perfect for the spring with a cardigan or by itself in the summer. i still have a little stomach left over from my second pregnancy and this top hides it well. i decided to",5,1,18,General,Tops,Knits +873,37,Cute colorful top,"I love this tank - the colors are great and the fit is flattering. the fabric is lightweight but not cheap or so thin that you need to wear something under it. i am 5'7"" and the length was fine for me.",5,1,0,General,Tops,Knits +1110,61,Armpit issue,"I received tons of compliments on this dress. the print is fun and works well with the modest shape. i love the high neckline and the long hem. it's different and cool. +my only complaint: the arm holes fall super low. i didn't realize until i looked at photos but my bra was very visible.",5,1,0,General Petite,Dresses,Dresses +850,41,Navy top is classic and timeless,"I was looking for a navy top to replace an overused navy silk cowlneck that i have been wearing for years. this is perfect. light, versatile and classic.",4,1,0,General Petite,Tops,Blouses +873,40,Great purchase if on sale!,"I purchased this top on sale and it's almost perfect. the pleats under the rib cage make the bottom bell out a little bit - not enough to make me want to return it, but i'm glad i didn't pay full price!",4,1,0,General,Tops,Knits +873,47,,,4,1,0,General,Tops,Knits +850,39,,"Super cute with skinny jeans. true to size. i'm size 4, 138 pounds and 34c got a small",5,1,0,General Petite,Tops,Blouses +873,31,,,5,1,0,General,Tops,Knits +895,74,"Unique cardigan, both dressy and casual","I love this sweater because it is so versatile! it looks casual with jeans, but i plan to wear it to the opera with dressy black slacks. the beautiful black embroidery is unusual and asymmetrical in back.",5,1,0,General Petite,Tops,Fine gauge +839,42,Darling top!,"Love this top! such a fun pattern and style. soft too! easily paired with a sweater or light weight denim/cargo jackets for fall. i generally wear an xs in retailer tops and purchased this in a 2 which is a perfect fit. it could be a tad more roomy in the chest, however the 4 would be too big overall.",5,1,1,General,Tops,Blouses +873,40,Cute top!,"I purchased the teal/blue version and the colors are slightly muted, but very pretty. i wish it were a tad bit longer, but if you're looking for a shirt that does not look like a tunic, this is ideal. it's cotton, so it feels like a t-shirt, but with a much more elevated design and cut. a cute and easy top!",4,1,0,General,Tops,Knits +1101,49,Attractive and comfortable dress,"I was impressed with the textured knit of this piece, which looked nicer in person than online, and the open neckline with a contrasting stripe. i really liked that the whole bodice was lined with a sewn-in lining from neck to hem (minus the sleeves). i would have loved the dress overall but my usual size small was snug at the hips and it would have just made me too self-conscious for that reason. sadly, i have to return mine, but i would certainly recommend the style for someone with slim hips,",4,1,1,General Petite,Dresses,Dresses +839,48,Buy this shirt before it sells out,This was the best purchase of the summer. it's cute and comfortable without being too baggy/loose. i get compliments every time i wear it. fits true to size. i bought the floral (orange) one. couldn't be happier!,5,1,0,General,Tops,Blouses +873,53,Cute but thin fabric,"Love the style and cut of this top, but fabric is quite thin. tts if not a tad on the small side. i'm small busted so my usual medium was fine. undecided if i'm keeping this top or not.",4,1,1,General,Tops,Knits +873,58,Flattering shape,"I bought 2 in the store. i usually order large petite but i was in the store which doesn't have petites, so i tried a large, and it was tight in the bust, but i loved the shape. i ended up buying xl's and taking them up at the shoulders to make it a petite fit. gives me a small looking waistline.",5,1,0,General,Tops,Knits +839,23,Cute top,"I didn't love it enough to buy it, but did think it was cute. i am wearing a medium in the photos and for reference my measurements are 38-30-40.",4,1,14,General,Tops,Blouses +873,23,Cute tank,"I did not purchase because it was too low cut for my liking, but otherwise really liked this top. i am wearing a medium in the photos and my measurements are 38-30-40 for reference",4,1,5,General,Tops,Knits +839,22,Very flattering!,"Great fit! for reference, i am 5'7"", 160 lbs and bought a size medium. there is a piece of fabric that acts as a cami underneath to prevent any unwanted reveal with the lace up. soft fabric and falls beautifully!",5,1,0,General,Tops,Blouses +1101,40,Very flattering!,I bought this in blue and love it. i usually wear an xs to small in retailer shirts and a small to medium in dresses. i ended up with an extra small petite in this. it is really flattering and hides the stomach enough. i highly recommend the dress if you size way down.,5,1,1,General Petite,Dresses,Dresses +873,38,"Stylish, hip, & professional",I absolutely love this top. i thought it was going to be to big but it fits perfectly. fitted and flattering.,5,1,0,General,Tops,Knits +873,35,,,3,1,0,General,Tops,Knits +1086,47,Great day dress!,This is my favorite kind of neckline. it is very flattering & cool for summer. my only complaint is the armpit scoops down a little too low. but i will just wear a bandeau underneath it. its super cute. will be great for vacationing & next summer.,5,1,0,General,Dresses,Dresses +873,52,Not as cute in person,"Per the other reviews i sized up and got the medium. it was still tight around the girls (and i'm not that well endowed), but too big in the armholes. the fabric is a kind of thin tee shirt material. i kept it (because i'm lazy) but not sure how much i'll wear it given the strange fit.",2,0,0,General,Tops,Knits +873,29,Love this top!,I love how it fits very flattering! the quality of the cotton part of this top is a little less in quality of that fabric than i expected. but i love this top and i foresee wearing it all year round!,5,1,0,General,Tops,Knits +873,34,Great tank just not for me,The sizing and length are great had it not been for my chest area. i sized up from my usual medium but the pleats create a maternity look for me unfortunately. it truly is a great tank top!,3,1,0,General,Tops,Knits +525,36,Great fit,This is really a nice piece. briefs have nice coverage and more of a hipster but you can also easily pair the top with just black briefs. i only sent it back because the tankini style pushed up my love handles and didn't look quite right but for many others it would work nicely.,5,1,0,Initmates,Intimate,Swim +873,47,Adorable,"This top is adorable ,i finally broke down and bought it,so happy i did fits good,not too long sits at hip were it should (very flattering) i went with the reviews and sized up,i am a petite sx normally in retailer,but went with what the reviews said and got a reg small glad i did!it is a bit snug(not tight) in the chest,but has stretch to it , i am 5'1 108 33d (if you are bigger in the chest i would recommend a medium,) i got the purple motif (print) no see thru issues,the material is a comfortab",5,1,0,General,Tops,Knits +873,70,Very cute top for the summer.,"The top is adorable, but probably better to wait for a sale as the full price is a little high for a simple top like this. i got the print one and it's very true to size.",5,1,0,General,Tops,Knits +873,39,Great peplum top,I love the fit of the peplum top. it's flattering without being too full on the bottom. the print is lovely and great for summer and spring!,5,1,0,General,Tops,Knits +1101,53,"Flattering, even on my curvy figure","Normally i would never try on anything with horizontal stripes.... but for some reason, i saw it in my store and gave the dress a try. fit is perfect, and dress is lined. (side note: my store had the navy dress and the stripes are horizontal and not diagonal as pictured on the model- dress looks like the ivory dress.) can be dressed up or down, so ill be a great summer go to dress. i am a curvy girl and because of the different widths of the stripes the dress works and is very flattering. i'm ve",5,1,25,General Petite,Dresses,Dresses +873,56,Nice top!,I ordered my usual size small in this top (34c) and it just fits across the chest. very cute top.,4,1,0,General,Tops,Knits +873,26,Good staple,My normal size m fit well but i wouldn't want it to shrink any. hangs well.,5,1,0,General,Tops,Knits +873,33,,,5,1,0,General,Tops,Knits +873,27,Perfect shirt for all occasions,I absolutely love this top! i bought it in white and ended up buying it in the lavender as well. the top is very flattering and works with any occasion. the fabric is a little thin but its fine with a nude bra. i have worn the top to work and out at night and i always get lots of compliments!,5,1,1,General,Tops,Knits +1030,39,Great jeans! size down.,"I am really happy with these jeans. fun fit, high waisted, great detail, and have just the right amount of stretch. i have worn them 4 times and haven't washed them yet (i find this helps shape my new jeans) and they still fit like a comfortable glove. a different twist on the ripped up jeans because of the color! love them! i normally fit a 29, ordered 28 in these and they are perfect!",5,1,0,General,Bottoms,Jeans +1101,51,"Wanted to love this dress, but...","When you look at the online pictures of the navy colored dress, the stripes are diagonal. however, that is not the case with the dress in person. the stripes are all horizontal and not that flattering. such a bummer because i love maeve dresses and thought this would be a great addition to my summer dress rotation. alas, not very flattering, so back it goes.",2,0,9,General Petite,Dresses,Dresses +873,20,Would wear it every day if i could,"Absolutely fantastic top, the cut is very flattering and the colors are gorgeous in the pattern (i also bought the white).",5,1,1,General,Tops,Knits +873,41,,,4,1,0,General,Tops,Knits +873,73,Gorgeous top,"Went to the chicago michigan ave location and found this gem in the ""take a peek"" section... i think that's what it's called. anyway... been looking for a plane white top to wear with a red lace pencil skirt and this fit the bill! wore it today with a grey midi skirt and sneakers and looks adorable! it does flare a little and makes me feel like i'm wearing a maternity top but i don't care i love it! went back to another retailer location and purchased the lilac one! can't wait to wear that one",5,1,0,General,Tops,Knits +850,30,Cute but a little awkward.,"I adore this blouse, but the cut is a bit weird. the shoulders fit snugly and the body is blousy/boxy. the colors are super cute and the cutouts are unique but i don't think this top is for everyone.",3,1,0,General Petite,Tops,Blouses +850,32,"Versatile, great spring color","I ordered a size 4, my usual size in tops is s or xs for looser fitted tops, i prefer a more fitted look. for reference i am 5'4"" 120 lbs,, 32d. i ordered in pink and the color matches the online image. the pink is shear and i do have to wear a camisole underneath, which does not bother me at all. the top is adorable with jeans or slacks for work.",5,1,0,General Petite,Tops,Blouses +1004,39,Great skirt,"My hips are very narrow and i don't have much of a waistline. in a-line skirts and anything that sits below the waist, i wear a size 6. skirts like this with a defined waist almost never work for me because of the waistline. if this is typically your style of skirt, i think it will run large because the waistline is more generous than usual. + + i tried it on in the store today and bought it in a size 8. it's very comfortable and cute and will be easy to pair with different things.",5,1,0,General Petite,Bottoms,Skirts +850,50,,"I really liked this top when i saw it in yellow but i was on the fence about ordering it for a while. when i did order it i chose the pink at the last second. i love it. i've worn it several times with a pair of jeans and cardigan. it travels nicely in the suitcase, no need to pull the iron out. i wear a cami underneath but it's really not that sheer so you don't need to. it's a lovely piece",5,1,0,General Petite,Tops,Blouses +1110,35,"Lovely, a little large","The print is beautiful, the fabric has a nice weight. i actually bought this because i'm early in pregnancy and wanted a dress i can wear during the transition period - because of its swing shape, this is one of those rare dresses that looks good on me now and will still look good on me in 6 months when i've got a huge belly. + +fit-wise: i am 5'9, 155 lbs, 34d, and ordered a large, but i am exchanging it for a medium. the arm holes are also a bit large.",5,1,0,General Petite,Dresses,Dresses +873,57,,"Very nice quality!! awesome style, the fabrics is so soft but very durable!! this top will be great with jeans or a denim skirt!!",5,1,2,General,Tops,Knits +873,40,Great summer top,I gave this in her brighter rose colored print and love it! i get many compliments on this top! i did size up from my usual small to a medium to accommodate the girls :),5,1,0,General,Tops,Knits +873,23,Pretty blouse,"Made of casual materials, perfect for drinks or to be used as a vacation top. has a very flattering cut and pretty design with chiffon trim on top.",5,1,0,General,Tops,Knits +850,35,Simple and elegant,"I thought this shirt was really feminine and elegant. only downsides is some of the punched out holes had fabric still attached which you have cut off with scissors- otherwise the shirt will snag. and the second issue of bigger importance are the low armholes. lots of bra showing- not really sure how to get around that so i always wear it with a cardigan. but it would be nice not to have to. +other than that it looks nice and pairs nicely with almost anything.",5,1,0,General Petite,Tops,Blouses +873,38,Lightweight,This top is perfect for summer. it delivers style without the bulk. the peplum hit perfect for my 5'4 frame. unfortunately it was too low cut in the front. i had to return it.,4,0,1,General,Tops,Knits +873,28,Very flattering top,"This shirt is very flattering, which is not the case for all peplum tops. v-neck is appropriate for work. looks great with jeans or khakis. highly recommend! only con is that the material is quite thin. 5'3"" 115 lbs and xs fit perfectly.",5,1,0,General,Tops,Knits +839,60,Cute top,Purchased this top at my local store. usually don't pay full price for clothing but had to have this top. so cute and lightweight. love that you do not need to wear a cami underneath and has material that covers your bra. usually wear a petite size due to tops being cut so low but a regular medium was perfect. suggest purchasing this top full price or if still around when it goes on sale definitely purchase. i bought the floral design.,5,1,0,General,Tops,Blouses +873,27,Cute peplum top!,"I tried this on in-store. it is super cute! i am waiting for it to go on sale because i wasn't sure it was completely worth the price. if you are in-between sizes, take the larger size.",5,1,0,General,Tops,Knits +1110,39,Runs big,"I bought my usual size medium and it's huge on me. if i sized down, my chubneck wouldn't be comfortable. the buttons are frustrating. the color, the pattten, the style are 100% gorgeous! i think i will belt mine",4,1,0,General Petite,Dresses,Dresses +873,46,Cute top,"Great material, pattern and cut. perfect summer top",5,1,0,General,Tops,Knits +873,31,Adorable layering piece for spring,"I love this top! i ordered the print, and it will go perfectly with blue or white jeans, and even coral shorts. very flattering. i did go up a size (from xs to s) based on other reviews, and i'm glad i did. the larger size fits perfectly at the bust and falls just below the hip.",5,1,0,General,Tops,Knits +873,56,Comfortable & fun,Fun pattern which goes with just about anything. cool for summer. very comfortable. fitted style but true to size.,5,1,0,General,Tops,Knits +873,27,Patterned peplum top,"Adorable! very pleased with the quality of the fabric and the very comfortable fit. i'm sure i'll wear this with jeans, as pictured, but can also see it with a breezy summer skirt.",5,1,3,General,Tops,Knits +873,52,So much potential,"But, saldly, no....i tried the multicolored version in a size m and l. the fabric is almost good, though a touch sheer and perhaps problematic for washing. the real issue, though, is the fit. +fyi: 36c, broad shoulders/back, high waist +i typically wear a m in a knit top, but the waistband was tight and not forgiving. i think that the problem was that this is a top with a long waist. when i tried to put the waistband where it wanted to be (longer) it made the peplum stand out in an odd way from my",3,1,11,General,Tops,Knits +873,35,Cute and comfy,"I was nervous about buying this without trying it on, but i followed the size chart and wasn't disappointed! it's flattering thanks to the fitted upper-half and the forgiving peplum bottom-half. overall, it's thin, light, and airy.",5,1,0,General,Tops,Knits +873,35,Such a cute top,"I was so excited to get this top in the mail. i loved the colors, print, cut, everything. i put it on and was so disappointed, the top looks so much better on the model. i don't know if i should have gone down a size (i go between an xs and s), but it looked terrible on me! my husband took one look at me in it and said that's being returned. still disappointed",1,0,0,General,Tops,Knits +839,64,Adorable top,I ordered my usual size 6 in tops at retailer in both the orange/blue print & the pink color. fit is tts & looks pretty much on me as in the pic. lightweight & cool for these hot days. the 'pink' really is not pink - it's a true orange so i returned this one. i didn't really need an orange top. if it had been as in the pic which is a pink/coral-like color i wld have kept it. the orange/blue print is really appealing so that is a keeper. this top is a little flowy but not tent-like which is perfect,5,1,16,General,Tops,Blouses +850,30,Pink is brighter,"Just note the pink is different than in the photos. much hotter/more saturated. apart from that surprise, overall i'd recommend. nice design.",4,1,0,General Petite,Tops,Blouses +895,41,"Why don't you look good on me, lovely cardigan?","This cardigan is so pretty on the hanger! and it's a lovely color and the pattern on it is just beautiful. + +but somehow it just doesn't suit me. i bought it twice, the second time on sale, hoping it would look better on the second time around. + +nope. the deep v neckline and the cut of the body just makes me look really flat-chested and ""meh."" + +back it goes. again.",4,1,0,General,Tops,Fine gauge +850,65,Lacy cutouts/ flattering shape/ versatile,"I ordered this lovely blouse the moment i saw it, and i am very pleased that it is the quality and fit i'd hoped for. i bought the medium in pink. i am 130#, 34f, size 8 or medium on most tops. the medium fits me perfectly; i love the gathering at top back so that there is no pulling at all across the back or bust. i am mystified that all blouses aren't designed with a nice level of gathering to accommodate a bust and to give a flattering flow.. i am busty so awkward tightness can be a problem o",5,1,26,General Petite,Tops,Blouses +873,30,Great tank,"Love the fabric, print, and cut! it's a smidge low in the neckline, but that's probably because i'm busty. nice and breezy for our blazing hot and humid florida summers.",5,1,0,General,Tops,Knits +873,49,"Pretty colors, nice fit",I love the teal/aqua version. the colors are very pretty and look great with jeans. i got a medium. it runs a tiny bit small but a lot of fitted tops at retailer run smaller on me. i like the style a lot and the peplum is great.,4,1,0,General,Tops,Knits +1101,39,Off the shoulder?,"This dress references that it is off the shoulder in the description. but i did not find it to be so; it fits me as pictured on the model - sort of a ballet neck or wide scoop neck. in any case, the fabric is as pictured. and - it's lined! yay - not see through. the varying sizes of stripes give it interest despite the neutral colors. it is cute with a denim jacket and is really comfortable.",5,1,23,General Petite,Dresses,Dresses +873,40,Great layering piece,"I was looking for a flowier top to wear under cardigans, and this is pretty perfect. it is more sheer than i would like, but because i am wearing it as a bottom layer, i'll overlook that. the fit is great and the peplum is a cute detail to make this layering piece a little different.",5,1,0,General,Tops,Knits +873,52,Great top,"Love this top - on sale, i bought two of this color, a grey and the green, i never buy more than one of anything unless i absolutely love it ! complimentary to the body, and the colors are beautiful. i'm 5'2"" there were no pxs so i opted for xs, perfect... thanks retailer ??",5,1,0,General,Tops,Knits +873,28,Runs small,"Purchased on sale, would have never purchased at full price. runs small and runs short. will be returning.",3,0,0,General,Tops,Knits +873,39,The print is interesting,"I kept this one because it was different enough and good to wear casually and to work. i'm not sure how this material will hold up with washing, since it's basically a thin cotton material. it fits perfectly, so i'm worried that it will shrink. i give it a thumbs up for the design, but sale cost and material is like something you would find at forever 21.",3,1,0,General,Tops,Knits +873,20,Awesome!,Love the design (i got the blue and green one). it was more see-through than i thought but the pattern covers it so it doesn't matter what color bra you wear.,5,1,0,General,Tops,Knits +873,48,Cute top,It's a very pretty top. a little tight in front at the bust. i'm giving it 3 stars because the fabric is very flimsy and looks cheap.,3,1,0,General,Tops,Knits +985,26,Color transfers to other clothes!,"I really loved this vest online and decided to try it on in store. it was really cute on and fit nicely so i purchased it (in my normal size) and took it on a vacation. first time wearing it and the color transferred all over my white shirt even though it says it is pre-washed. i am very disappointed considering how expensive this was. overall, it is very cute but it may ruin your clothes so beware!",2,0,19,General Petite,Jackets,Jackets +1092,39,Must get!,This dress is amazing! the photos do not do it justice! runs a tad large - definitely can size down.,5,1,2,General,Dresses,Dresses +1110,45,Say yes to this dress,"Unique, sophisticated and versatile summer dress that you will fall in love with. dress it up with heels for a night at the gallery or dress is down with a denim jacket for an easy day look. it needs no accessories. this silk dress is soft and it lays beautifully. you will want to wear it all summer long. fits tts. love it!",5,1,6,General Petite,Dresses,Dresses +985,28,Beautiful,"I ordered the copper in a medium which i felt was tts (5'4"" 145). the color is beautiful and i love the buttons on the shoulders which i really didn't notice in the picture, the material is also very soft. but i have some complaints.. first i felt that the material, while soft, was not very substantial for the price. i purchased another vest from that store that has everything which was $100 less and seems to be the same quality. i also was expecting there to be some way to close the vest beside",4,1,8,General Petite,Jackets,Jackets +823,23,Really poor quality,"This shirt is purportedly made of silk, but it is extremely low quality. the material is coarse and scratchy. it's not even worth it at the extra 40% off sale price. returned.",1,0,1,General,Tops,Blouses +1059,40,,This is my favorite purchase so far! i am in love with this jumpsuit. it it fitted on top and has a flowy dress feel on the bottom. i got this on sale recently and if you can grab it do it! you won't be disappointed.,5,1,0,General,Bottoms,Pants +1110,34,,"When i saw the dress online i thought the print was beautiful and fun, and was not disappointed when the dress came in. the material is very soft, breathable, and easy to wear. i dress it down with a jean jacket or a jean vest but it can easily be worn by itself. it's definitely a delight go to dress for the weekends.",4,1,0,General Petite,Dresses,Dresses +985,26,Fun spring accessory,"This vest is adorable! i love the color, it goes well with almost anything. the drawstrings work great, some days i cinch them a little tighter for a more fitted look. honestly, i wear it at least once a week - out with friends or even to my job as a nanny. i was a little worried about the length of it because i'm tall, but it works perfectly with my build.",5,1,0,General Petite,Jackets,Jackets +1081,40,,"This is a lovely dress - however, there is a weird flap of fabric under the bow that doesn't sit right. it feels a little like a bib. if i could get it to sit right, i would keep it. every angle of the dress is lovely except for head on - which is a small problem.",3,1,1,General Petite,Dresses,Dresses +891,53,Nice cut,"The poncho style sweater has is a light airy cotton fabric ideal for a extra layer but certainly not warm, the hook and eye attaching the arm to the sweater is not ideal, i had to have a seamstress sew it and remove the hook, its just not practical that way, happy with purchase,",4,1,0,General,Tops,Fine gauge +828,27,"Tight sleeves, overly blousy top","The sleeves were very tight in the upper arm area but the body was blousy, too blousy so to go up a size for the arms would mean it would be very oversized in the body. i like the fabric (nice and thick) but it did not work for me.",3,0,8,General,Tops,Blouses +828,41,Perfect for fall!,Super soft flannel material. the colors are beautiful and perfect for fall! it's doesn't ride up the shoulders but stays in place off-the-shoulder style. i love it!,5,1,0,General,Tops,Blouses +828,52,Perfect,"Love this top. i get compliments every time i wear it. got the medium. fits perfect. 5'4"", 138#. even at my age it looks great.",5,1,1,General,Tops,Blouses +1110,63,Slik dress,The perfect dress for dinner date or summer weddings. or traveling. love this dress. not sure on washing yet since it is a silk dress. extremely comfortably and beautiful. i can't recall the last time i bought a new dress.,5,1,17,General Petite,Dresses,Dresses +1110,37,"Cute dress, but do not wash! dry clean only.","According to the label, this dress can be hand washed or dry cleaned. i hand washed and line dried per the instructions on the label, and all the seams have completely shrunk and gathered. it looks like there's a drawstring running through every seam. so disappointed in the quality and the labeling. awful! i gave it one extra star because it's cute.",2,0,3,General Petite,Dresses,Dresses +828,46,Test like fit,"This shirt was tent like on me and there was really no way around it. i am fairly small- usually a 4 or 6 in tops, and smaller on top- barely 34b. this top was incredibly unflattering, falling to cut right at my hips and sitting open and way too flowy-- like a pillowcase/sacklike fit. there was just too much fabric here to make it work for me. it's unfortunate because it looks adorable in the product photo and i love the plaid mix with the open shoulders- a nice transition to fall. unfortunately",1,0,0,General,Tops,Blouses +985,39,Like but not love,"If you are looking for a nice vest, this vest is nice enough, comfortable, and soft. the cut is also flattering, but i just didn't think it was as special as i wanted. it looks like many other options out there, so i decided to pass. + +xs fit me at 115 lbs.",4,1,1,General Petite,Jackets,Jackets +1092,39,Sbags easily,"I liked this dress but wasn't sure about the color on me. i tried it on anyway. originally, i tried on the 0, but it seemed big so i ordered the 00. also usually i order petite, but this dress is already short (and i am not getting younger), so i went with regular size this time. color was not bad on my pale skin, i think the hue was ok (surprisingly). one thing that might bug the perfectionist in me, the zig zag isn't always aligned, the waist, for instance was crooked, but if it is like that e",5,1,5,General,Dresses,Dresses +1110,29,Isn't she lovely?,"This dress makes my heart skip a beat. it's beautiful, soft and colorful. it's a lovely midi length which can be tricky for 5'5"" lil ole me but it's perfect. it has slits up the side for an easy breezy look. the fabric is so silky & pretty form fitting if you buy the right size. i'm a solid 4. have bought heaps of dresses from retailer and i can't stop, won't stop.",5,1,0,General Petite,Dresses,Dresses +828,25,A fresh take on flannel!,"I am in love with this top. flannel shirts are a fall staple, but i don't own any. any flannel shirt that i have come across has been a button down, which simply does not work for me, given my chest size. i hate button downs that gap or that i have to leave unbuttoned and wear a tank underneath. it's not flattering. this top is flannel, no buttons, and off the shoulder, which is such a unique and fresh style. the off the shoulder feature stays in place thanks to tiny straps sewn in that you put",5,1,0,General,Tops,Blouses +1110,61,Great dress!,"Comfortable, great fit and beautiful colors. the interesting thing is that in this picture, it shows the dress just below the knee. i am 5'5"" so totally average height, but the dress falls just above my ankles., which i personally think is way more attractive. not sure if there are two versions of this dress, but be careful if you buy online. i got mine in the glendale store.",5,1,0,General Petite,Dresses,Dresses +828,54,Love it!,"What a great, soft piece for fall. the top is flattering and comfy at the same time. it looks really romantic with the bare shoulder look.",5,1,1,General,Tops,Blouses +1110,63,,"I live in hawaii and always looking for a comfortable light and breezy dresses, this was perfect. the colors are gorgeous, the fit is true to size and it is extremely comfortable. dress it up or dress it down with a denim jacket and you will be definitely love it. i am thrilled i made the purchase!!",5,1,0,General Petite,Dresses,Dresses +940,65,,I absolutely love this sweater....it is perfect for fall,5,1,2,General,Tops,Sweaters +1087,45,,I loved the styling of this dress the first time i saw it. i ordered it and i slipped it on and wow! it is super comfortable. the darts at the waist add shape and interest. the shape highlights the waist. the fabric is cozy without being weighty. i did find it ran large and wish there was an xxs available. my husband loved it and he doesn't like anything! it is likely that the reviewers who think that t looked like a nightgown may have needed a smaller size. i think this one is a diamond in the,4,1,3,General,Dresses,Dresses +828,27,,Great shirt. very soft and comfortable. the elastic on top to keep it off shoulders is not too tight--just tight enough. the colors are pretty. it's give a rustic city vibe. love!,5,1,0,General,Tops,Blouses +828,41,,"Love! received so many compliments! it can be dressed up or down and is so comfortable. i did order a l based on the reviews, but found it to be big. i would've returned for a m, but it was sold out and i didn't want to risk not having it at all so i kept.",5,1,0,General,Tops,Blouses +1110,55,Feel like a million bucks in this dress!,"Hadn't really looked at this dress till i saw it in person in the store. so i tried it on. i'm only 5'1 and 140 lb. busty on top so i tried the 8. it was a smidge snug, decided since the dress has no give to go with a 10. would have liked this in a petite for the shorter length, but it's back ordered till august and i really wanted to take it with me on vacation. its just above my ankles in regular length, which will work and i can up the score with some wedges. this dress fits like a dream and",5,1,2,General Petite,Dresses,Dresses +828,37,,,5,1,0,General,Tops,Blouses +1092,45,Flattering fit and flare dress for fall,"I do not have a waist that goes ""in"". i either have to wear shift dresses that are cut slim, or find ""fit and flare"" pieces that create a waist for me. this is the latter. it's really cute, different and flattering. it has a nice mix of graphic sophistication with a somewhat romantic silhouette. it is gauzy with ruffles and tiers. the off-white slip underneath is great for a couple reasons: it provides a nice underlayer that is just visible underneath the ""turtleneck"" top, cutting the school-mar",5,1,2,General,Dresses,Dresses +1131,36,Classy piece,"I purchased this vest in the store. the colors vary depending on where it is sewn - i purchased one with black around the middle, and more black around the collar (it was more flattering). the fit and design are lovely. it's fuzzy, but since i don't have any 'fur' in my wardrobe, this is a nice ease into that part of fashion for me. i highly recommend it, even for the price.",5,1,0,General Petite,Jackets,Outerwear +828,60,Burgandy plaid beauty,"The burgundy plaid colors are what caught my eye! so perfect for the fall season. i usually do not like off the shoulder tops as most do not stay down but this one does and as others have stated there are arm stays inside to help with that. i stayed with my usual small to keep the length and it was fine. got compliments the first time i wore it. so glad they restocked in my size, as they had been sold out.",5,1,0,General,Tops,Blouses +940,40,Nice fit,"I love how this sweater fits. i was reluctant to get it because i thought it would be boxy, but it's a perfect length, especially for a higher waisted pants or jeans. the fabric is super soft. i only gave it four stars because i thought it was going to be grey, but it's more like a marled black/white, 80s-style color.",4,1,10,General,Tops,Sweaters +985,33,"Soft, thin summer vest","I like the way this vest looks: it's flattering and the color is nice, just like in the pictures (i got the orange one). i am 5'7"", 125 lb, got size s, and i am very happy about the fit. + +just keep in mind that the material is very soft and thin. it is good for summer, but i expected the material to be more... firm... something to be worn on cooler windier days. also, the vest does not close - i would prefer the vest to have a zipper or buttons. + +but if you need a fun and cute summer accesso",4,1,1,General Petite,Jackets,Jackets +985,34,Great vest!,"I have another sanctuary vest similar to this one and decided i needed to snag this one in the moss green. it's so pretty and it's extremely versatile. i'm 8 months pregnant and it's been a fun vest to wear over a tank with a necklace. i can see this piece working for all seasons. if the other color would have been available, i would have grabbed it, especially at the sale price. you can't beat it! the only downside to this vest is that compared to my other medium sanctuary vest, this one is a b",5,1,0,General Petite,Jackets,Jackets +828,48,Soft grunge,"I wear ddd so i do wear a strapless with this and it looks great. the plan looks fantastic with any color wash of jeans. i +love it",4,1,2,General,Tops,Blouses +828,46,Sexy,"Love this top. i'm athletic, it's a little tight around the arms. but it's a really nice looking blouse off and on!",5,1,1,General,Tops,Blouses +828,42,Great off the shoulder top,Off the shoulder is everywhere and this is a great shirt for the fall.,5,1,1,General,Tops,Blouses +823,41,Beautiful but runs small,I normally get a small in this style shirt but it didn't fit at all so i had to send it back. too bad,3,1,2,General,Tops,Blouses +985,22,Really cute vest,"I saw this vest at my local retailer store over the weekend and decided to try it on. i am typically an xs at retailer and the xs fit perfectly. i can't wait to wear this during the spring and summer. it's really lightweight and soft which i love. i purchased the copper color, and would consider the color in the photo to be very true. this was definitely a splurge, but i am overall very happy with my purchase. i highly recommend it!",5,1,11,General Petite,Jackets,Jackets +1059,31,Cute and comfortable,This jumpsuit is great dressed up or down. the only issue i had with it is that the straps are very long (but that was an easy fix).,5,1,0,General,Bottoms,Pants +1110,22,,"Bought this dress online and it came in missing a button. the dress is really pretty, and comes with a tan linen slip. i bought a size down because the dress runs a little large. also the sleeves are kind of puffy but overall the dress is elegant and pretty.",4,1,0,General Petite,Dresses,Dresses +1081,42,"Cute style, terrible material","Fell in love with this dress when i saw it online and ordered it right away. however i was sadly disappointed once it arrived. while the cut is cute, the fabric is just all wrong. i was expecting a nice, heavy knit-like material, but this feels and looks really cheap - especially given the price of the dress. sadly it is going back.",2,0,20,General Petite,Dresses,Dresses +1024,61,Not for slim hips,"These jeans have the good, classic 501 jean construction with medium weight fabric, tight french seams, and grommets at the ends of seams through the torso. however, the construction was not an ideal ""boyfriend"" slouchy style from my small hipped perspective. on me, these jeans were very large through the hips. + +another odd fitting (assuming we are talking about ""boyfriend"" jeans) issue is tapered lower leg. i can imagine the jeans would fit a woman with average to slightly padded hips, but that",4,1,11,General,Bottoms,Jeans +1087,30,"Sure, if you want to wear a granny nightgown...","Again, nope. looks chic on the model, looked like a floor-length flannel nightgown on me. if you'd put a bonnet on me and stuck a candlestick in my hand, i could double for ebenezer scrooge in ""a christmas carol."" i believe the word i used to describe it when i tried it on was ""shmata"" (yiddish for ""rags). it looked like i was wearing a rag. the ruching didn't do anything to flatter my figure, the knit did not seem terribly warm for a sweater (felt more like rayon or nylon jersey than a knit swe",2,0,7,General,Dresses,Dresses +828,47,New favorite top,The shoulder bearing aspect makes this top sexy yet it doesn't look like you're trying too hard. sleeves can be worn up or down and everything stayed in place either way. i get tons of compliments each time i wear this.,5,1,3,General,Tops,Blouses +5,39,Oldie but goodie,"I'm currently on the prowl for the other colors of this fantastic sweater dress/tunic. i own the lavender in size m and it fits perfectly on me (5'3"" 36dd) without enhancing what i want to hide. great for winter",5,1,0,General,Tops,Sweaters +1110,39,Eye catching,"The simple shape of this silky & comfortable shift is transported by the fun psychedelic pattern. the fabric is lightweight and drapes very nicely because of the lining. i purchased the size 10 petite to accommodate my 36dd bust/wide rib cage and it fits perfectly. the high neck is fastened with a single hook. versatile and comfortable and a clear winner for spring and summer. for sizing reference my other stats are 5'3"" tall, 140#, m/l on top, s/m on bottom.",5,1,23,General,Dresses,Dresses +1092,48,A break from all the bohemian dresses,"I decided to try this dress on based on the other reviewer's positive words, and i wasn't disappointed! it's so cute and stylish. i plan to wear with black boots. i'm 5'6"", 120 lbs, 34c, wear a 2 or 4, and i got a 4. one thing - at the waist, the pattern breaks a bit and doesn't match perfectly. i tried on a second dress and liked its pattern more than i did that of the first i tried.",5,1,2,General,Dresses,Dresses +1059,27,So so comfortable !,This is a super cute jumpsuit that is also super comfortable. the only thing i wish was different on this jumpsuit is that the pants would go all the way to the ground. but it is still super cute and a keeper !,5,1,0,General,Bottoms,Pants +940,40,,"Got this today and am really pleased. beautiful detail and i love how the cowl neck hangs. it's not itchy at all. overall, a great find for the colder months ahead. i got a small and probably should have ordered xs instead. runs a little big on my petite frame.",4,1,8,General Petite,Tops,Sweaters +828,42,Off the shoulder trend continues for the fall,"This top is really pretty. the fabric is soft and flowy (not too boxy) and the elastic at the top is comfortable. it does not ride up or fall off the shoulders, which i've found with tops of similar design. in my regular size s (5'6 - 125lb), i didn't find the sleeves tight like others have mentioned. one thing i did notice was that the hidden straps that many other tops and dresses have (the ones for hanging on a hanger) are sewn right on the edge of the upper elastic making them pop up a bit.",4,1,7,General,Tops,Blouses +1110,35,Not for petites,"Here's an example of lowering a hemline and slapping the term 'petite' on it. too much fabric, was bulky, and ran too small. the fabric was thin and pulled awkwardly over the bust. returned..",2,0,2,General,Dresses,Dresses +828,52,Fabric looks cheap,I returned this item. it was soft. very blah fabric. nothing special.,1,0,0,General,Tops,Blouses +1081,34,Hard one to review,"I had a really, really difficult time reviewing this dress. the instant i touched it, i wanted to love it! in theory, it should have worked for me. fit and flare is usually a really great option for my pear shape. the silhouette shows off my thinner upper body and camouflages my thicker lower body. best of both worlds! however, as you can see for yourself in the photo, this dress makes me look pretty big. i'm a solid size 8 and i feel this dress makes me look like a 12. it really makes my middle",3,1,6,General Petite,Dresses,Dresses +1081,35,"Wasn't for me, but was soft","I tried this on today because when i touched it, it was irresistibly soft. i like the orange, it was a loud orange-and i almost would have preferred some sort of design to it. i did not purchase this because at the end of the day it did not suit my style-it was very plain. i think you could dress it up with the addition of a belt or the right necklace, but i am not usually a fan of buying pieces that do not stand on their own and require an accessory. that said, it was very comfortable and soft",4,0,2,General Petite,Dresses,Dresses +1081,42,So flattering!,"This dress is everything i hoped it would be: flattering, cute, cozy",5,1,15,General Petite,Dresses,Dresses +1033,49,Individuality,"Great buy. i bought the cream jumpsuit. i'm small on bottom and larger on top. this was perfect, shouldn't fit tight, should flow, has lots of room, it is linen, adjustable buttons on front and adjustable on the back of jumpsuit. legs are wide and flowy. casual but classy. both sides have about 3 buttons at hips. great addition to any closet. unique in its own right.",5,1,7,General Petite,Bottoms,Jeans +1080,56,Not as described,"When i first saw this dress i was in love. i adore mexican print clothing and i couldn't wait to try this on. unfortunately, it is not as described, and it looks better in the photo than in person. the dress looks like it is embroidered, and it is not- the design is printed. second, it is described as a stretch fabric-lycra spandex-there was no stretch at all except for the back waist which was elastic and the fabric was very stiff. it pulls on over your head and there is no zipper. i couldn't e",4,1,11,General,Dresses,Dresses +860,39,Enormous....,"I knew that the cut of this shirt was boxy, but this is huge. i wear a l or xl at retailer, and i got the m/l and was swimming in this top. sadly, this will be going back.",2,0,0,General,Tops,Knits +1081,32,"Good cut, bad texture","The dress has a flattering cut and is a nice color. but, the fabric looks like old, matted carpet. i will be returning.",3,0,0,General Petite,Dresses,Dresses +1081,37,Warm and beautuful,This dress fits beautifully. it is warm and comfortable. winter's gem.,5,1,0,General Petite,Dresses,Dresses +862,42,Great overall top!,"I bought this top in a small and it was true to size. loved that it wasn't too fitted across the back, but was still able to show a bit of body with the drawstring by the waist. it will become a wardrobe staple during the hot months in dallas.",5,1,0,General Petite,Tops,Knits +1081,39,Fuzzy and needs to be dry cleaned,"I like design of the dress, softness and color ( i got grey), the dress is shorter on me then on model ( 5'6"" 145 lbs) i got m fits ok but i don't like fabric quality it seems like it can be peeled and picks up everything and needs to be sprayed all the time. despite i got it with 40% discount it will come back as it's poor quality.",3,0,0,General Petite,Dresses,Dresses +1081,26,Great winter basic!,"This dress is by no means a statement piece, but if you're in need of a good basic to get you through winter, this is a great option. i'm normally a m or l (busty and hippy hourglass shape) and found it to fit tts in a l. (if you fall in-between two sizes but don't have larger hips or a larger bust like i do, you could probably size down to the smaller of your two sizes.) it goes great with black tights, tall black boots and a scarf. i didn't realize at the time i ordered it that the material is",4,1,11,General Petite,Dresses,Dresses +862,38,,,5,1,0,General Petite,Tops,Knits +1081,27,Perfect winter dress,I've been looking for a new winter dress and this one fit the order! it's warm yet flattering and i love the color.,5,1,0,General Petite,Dresses,Dresses +860,26,Stunning,"I'm in love with this top! looks just like it does in the photos, except the colors are maybe a little more vibrant. it's definitely boxy, so you may not like it if boxy isn't your thing, but i think the pattern placement really works with the boxy shape. i usually wear a small in tops and the xs/s fits great. it's also machine wash and tumble dry which is a plus (although i haven't washed it yet). unique, chic, and effortless...order before it's gone!",5,1,0,General,Tops,Knits +1145,37,Did not fit :-(,"So sad that this cardigan did not fit me. i listened to the review i read and tried a small, didn't come close to fitting. i tried a medium and it also did not fit. i think this item is designed for someone who has a small frame. i seem to be too tall for the item and too big in the chest. i usually always fit into a size medium.that being said the cardigan is very pretty and feminine, has an interesting design and is well made. so sad this item didn't work for me :-(",3,1,0,General,Trend,Trend +984,47,,"I love this vest, good denim quality",4,1,1,General Petite,Jackets,Jackets +1084,25,Fun forties-esque dress,"I bought this dress in-store, and it's fantastic. i'm between a medium and a large, and i bought a large because it was the one available, and it's fantastic. some of the polyester is fraying between the seams, which is obviously not ideal, but i'm willing to overlook that for generally how great this dress is.",5,1,0,General,Dresses,Dresses +862,38,This is a very nice top,This top is true to size and fits perfectly. color is very natural.,5,1,0,General Petite,Tops,Knits +862,40,All-around cute top,"Cute style, cute color, cute cut. and i got it on sale!",5,1,0,General Petite,Tops,Knits +1084,31,Beautiful but a little too 80s,"I wanted so badly to keep this dress :( the print is beautiful in person, and the fabric feels pretty nice for a polyester. the waist silhouette is incredibly flattering--the way the waistline and pleats fall made me a look a lot slimmer. it'd be a great dress for dancing, since it flares wonderfully when you twirl. but the puffed sleeves looked a lot more poofy on me than they did on the model, and i wound up looking exactly like a picture of my mother from 1982. which isn't necessarily a bad t",4,1,2,General,Dresses,Dresses +1033,42,Will be my new sweats,"Bought on a whim, on sale. i am a small in 95% retailer but got these in m for comfy casual looseness--perfect. i am 5'8"", and these hit the top of my feet--perfect. fabric is substantial but not heavy--perfect for cool so. cal evenings. color is rich denimy blue--beautiful. buttons are pretty. i have nothing negative to say about these aside from their price (even on sale). oh, and the knot. as i sit on my squishy leather sofa, i feel the knot in my back. hmmm. oh well. still love them",5,1,4,General Petite,Bottoms,Jeans +1110,42,Tent,"Soooo disappointed in this dress. the colors are beautiful for fall. the fabric feels luxe. the slip fits perfectly. the dress however is a hot mess. it is easily two times more fabric than needed to create a flow-y aline dress. huge everywhere. under the arms, and waist and hips. it's just an enormous tent. i am 5'8"", 128 lbs. i ordered my usual size small. i looked shapeless in this. i can't think of any body type it would flatter. potentially, women quite far along in their pregnancy.",2,0,2,General,Dresses,Dresses +1081,43,Pretty but not good on me!,"I really wanted to like this dress on me, but it was not to be. the color is one of my favorites, but the dress accented all my problem areas. sadly, i returned it. i'm sure that someone with less substantial hips will look great in it.",4,1,0,General Petite,Dresses,Dresses +862,47,Great versatile top,"My friend and i both bought this in the ""white"" color in our usual sizes. the fabric is soft, the neckline is flattering and the drawstring is cute. hides a tummy beautifully. the store had the white and the green. the green color looks very different in person than it does online. in person, it is darker and more of a soft emerald green--not the pale green-gray pictured online.",5,1,15,General Petite,Tops,Knits +862,46,Soft and comfy,"I bought this to give room for an expanding tummy - i'm 6 months pregnant and this completely conceals the bulge. i suspect i will appreciate that in the spring when i'm actually trying to hide my leftover belly... it's incredibly soft and the top is wide enough to cover a bra strap. the arm holes are small enough to cover my parts but large enough to be comfy. i'm 5'5"", medium build and normally wear a medium but got a large given my circumstances. a medium would have probably worked normal",5,1,0,General Petite,Tops,Knits +900,30,"Not what i expected, but cute.","I was very excited when i saw this in a perk email and immediately went to order it. unfortunately, the stock image of this pullover is misleading. it's boxy (image makes it seem like it's form-fitting) and the weave/mesh is much thicker and open in person. as shown, you do need a cami underneath. i ordered this in a small and medium since it's an online exclusive and there were no other products by on the road to see reviews of to know how their tops fit. i wanted to love this. i didn't think i",3,1,1,General Petite,Tops,Fine gauge +862,48,Not for me and the red is more pinkish,"I tried this on in the store in size xs regular in green and i was happy to see it covered my bra everywhere. but it was a little too long (i usually wear xspetite). so i ordered it in the bright red hoping it would be less orange than shown, which it was, but it was more pink and kind of hard to describe; maybe more salmon or coral... i went up from my usual size to spetite for fear that the armholes would've been too tight on xsp but they probably would've been fine and the spetite is a little",5,1,2,General Petite,Tops,Knits +984,68,,"Love this vest. fits very similar to the pilcro denim jacket. the fabric is softer, and not too heavy. the wash on mine is pretty close to the one in the picture, maybe half a shade darker. can see myself wearing this with summer maxi dresses, skirts, and pants, a very versatile piece that will go into fall. i usually take a 0/2 and the xs fit perfectly.",5,1,1,General Petite,Jackets,Jackets +1145,32,"Cute, but big","I love his cardigan! i knew the small would be a little big since i am normally an xs or xxs. i decided to give it a try anyway. it's definitely a little big - i would have liked an xs to be an option (5'3"" and 110lbs, for reference). i'm keeping it because it still looks cute, just a little loose through the body.",4,1,5,General,Trend,Trend +1145,63,Cost of beauty can be painful,"First, this sweater drapes beautifully and has a unique look. +however, there are several items to note. primarily, this sweater is very expensive. the wool has an itchy feel. the "drape" is a second layer under the cardigan so it creates a liner but it is not sewn in at the bottom. so it is annoying when you first put it on. it is at least sewn in on the inside of the cardigan at the top. i also notice that the seams are sewn white or are falling apart already on the sleeves.",3,1,0,General,Trend,Trend +868,48,"Bright, fun blouse","I love this blouse. the color is so pretty! i might even wear this to a holiday party. the tie looks great so many ways--love the versatility. i think i will get a lot of wear out of this blouse--with a pencil skirt, jeans or under a blazer.",4,1,1,General,Tops,Knits +862,41,,"I received this top in white, last fri., and have already worn it twice. it is the perfect top for hot weather because it doesn't cling to the body. the top layer is flowy and breathable. i plan on buying the blue one next to get me through the warm weather months.",5,1,4,General Petite,Tops,Knits +860,66,Darling but size down,I got the m/l and it's huge. usually wear a large. so size down! it's a striking top. but i decided not to reorder because i don't really need another short sleeve top. i tried it under a cardigan and of course it looses its appeal because you can't see the floral design. had to return.,3,1,0,General,Tops,Knits +1084,36,Beautiful vintage inspired dress,"So this is actually a holding horses dress, its mislabeled on the website. tts, a stunning vintage inspired piece, very 40's but timeless. the keyhole isn't too low cut, this is appropriate for work. beautiful drape and great lining - this dress can twirl! i am usually a xsmall/small and went with the small, fits perfectly though a bit loose in the waist but still very flattering - the xsmall would have been too tight in the shoulders. lovely dress!",5,1,4,General,Dresses,Dresses +1080,41,Not flattering from most angles,"Love the color and overall design of this dress...but it's just going to have to go back. the view from the direct front and back are nice, but froth side the high waist and secure back make me look pregnant. not the look i'm going for especially at this price. + +the other oddity is that the white circle design is unfortunately placed! in the back it's all i see which is 'right' on a bulls-eye and the same on the front. i don't know how the designer missed this! it's the only white design on th",2,0,7,General,Dresses,Dresses +868,43,Boxy and unflattering,"Not at all tapered at waist as suggested here by photos. i have wide shoulders and am slim, and this made me look big all around. i am doubtful a smaller size would correct this- i am 5'10"" and ordered a medium. also, it curls under a bit at the waist. one nice thing about the cream is that it is not see through. anyway, i purchased this to go with high waisted skirts but am returning.",2,0,4,General,Tops,Knits +862,42,"Love, love, love.","This is such a flattering top. i bought it in green. the green is a cooler version of kelly green, not the muted green i see on my computer screen. i'm fair complected and that color looks great on me. i love the elastic at the waistband, which helps camouflage my mom belly. i wish they made more tops with blousy, elastic waists! i bought several new tops this summer and this is probably my favorite. after wearing it for a couple of weeks, i decided to remove the tie string, which hangs low; it",5,1,5,General Petite,Tops,Knits +862,42,Great top!,"I didn't think much of this tank while perusing sale items on the website. but after reading the reviews i decided to order it. and it did not disappoint. i ordered the green, which is more vibrant in-person than on the website. and i wore it the next day, which is always a good sign. i loved it so much i quickly ordered the white too. it is flattering, stylish and comfortable - an excellent combination! i highly recommend this tank as a summer staple. it goes with everything.",5,1,0,General Petite,Tops,Knits +1081,49,,"Bought this dress on sale in the orange as i feel like everything i have is black. it is a pretty orange not too bright, more of a rust color. it is very soft as stated in other reviews and has a nice built in slip that is very comfortable. i worry about pilling down the road but will have to wait and see. i am not crazy about the seams down the chest area. i think they could be more flattering but overall the dress is comfortable, cute and easy to wear, a perfect dress for the fall/winter with",4,1,0,General Petite,Dresses,Dresses +862,63,Great tank,"Grabbed this tank on sale today in the green color. great tank. it is not thin like some other retailer tops. it actually is a double knit fabric which hides those imperfections we don't want anyone to see or worry about. +the top runs a bit on the full side, so if you are in between sizes, i would go down one. this top is great to wear under any open sweater for the entire fall season. the green color is a jewel green so the top does not look summary at all. +it is extremely comfortable a",5,1,1,General Petite,Tops,Knits +1033,30,Pleasantly surprised,"I felt like i was taking a risk by ordering these without trying them on, but i am so happy i did. they are soft and solid without being thick or stiff. incredibly comfortable. i have a larger hip and booty and these fit great. no grabbing at all and without making the top too big or loose.",5,1,3,General Petite,Bottoms,Jeans +1081,46,Love this red dress!,This dress' style and color is very flattering. i think i will wear it in the spring and fall as well as the winter.the m fits me and i'm 5'8' and 140 pounds.,4,1,0,General Petite,Dresses,Dresses +862,32,A great casual top,I love this top! it's perfect for casual outings like a picnic or a movie in summer. it's material is thick enough to feel sturdy but still is very lightweight for summer. it's a little baggy in the front so if that bothers you then i'd size down one size from your normal. i bought my usual size of xs and it seems to fit perfectly. i'm tempted to buy this in more colors.,5,1,1,General,Tops,Knits +862,55,Comfortable flattering top,"I love this top! i have all 4 colors in size large. i'm 5'9 170 lbs with a large bust. it's a loose fit that is very flattering. do not dry i wash in cold water and hang dry. first one i bought i dried and it shrunk quick a bit. if you are tall, size up.",5,1,2,General,Tops,Knits +1033,47,"Love them, they can shrink","Love these, always get compliments. i'm 5'7"" bought size small. washed in warm & line dried. they are a bit shorter. lengthen the straps, drops the waist, but at least gets them to my feet",4,1,3,General Petite,Bottoms,Jeans +868,65,Comfortable,"This top is flowy, fluid and comfortable. the material is like a stretchy crepe. it's thin, but not sheer. well, i bought the bright red (maybe white is sheer?). oh, speaking of bright red, well it is! i mean, it is the most vibrant red. the photo on-line (at least on my screen) doesn't really do the red justice at all. + +the fit is true to size. the nice thing about this top is that it has movement and yet it isn't full of fabric and look like a maternity top. and, the armholes are not big. th",5,1,9,General,Tops,Knits +1081,62,,I ordered this dress before it became available in my local retailer store. i love the style of this dress but the fabric was not as expected. it is a heavy/fuzzy knit and i had envisioned something lighter and cleaner. i would love to see it in a different fabric! sadly returned it....,3,1,1,General Petite,Dresses,Dresses +1081,37,Stop what you are doing and buy this dress!,"I have been shopping at retailer for years and this is my first review - that is how much i love this dress! +it is so incredibly comfortable. it is like wearing a cozy blanket. you guys, it twirls. :) i never received as many compliments on an outfit as i do when i wear this dress. (i bought the orange one). i am plus size and i don't wear a whole lot of knee length dresses. dresses in general are hard to find because they don't fit right so i was thrilled to find this. i am also thrilled that it",5,1,0,General Petite,Dresses,Dresses +1081,65,I loved the dress!,"It's just as cute in person as it was in the picture. the material is very, very soft and 'sweater like'. i ordered my usual size and it fit fine, but i usually wear my dresses a bit looser. i liked it well enough to return it for a larger size.",4,1,10,General Petite,Dresses,Dresses +1081,52,Great winter dress,"Warm, cozy, can dress down/up, and is perfect for traveling. a great staple. as other people noted, the dress (if you buy your regular size) is a little more fitted than it looks on the model. size up if you prefer it to hang looser.",4,1,0,General Petite,Dresses,Dresses +1081,64,Touch it!,Found this little surprise in store yesterday where thankfully one of my atlanta stores carries petites. the materials is wonderful - feels like cashmere. i got the rust which will be an anytime-anywhere piece!. recommend highly.,5,1,2,General Petite,Dresses,Dresses +900,54,Great casual summer sweater,"A great sweater to throw over just about anything. i love it, but the only reason i couldn't give it 5 stars is because you must be very carful with it, as it can snag on anything. the fabric is similar to intertwined ribbons. the first time i put it on i got a snag right away, but it was easily pulled trough to the inside. now i am just super cautious. i do love it though. very comfortable and super casual. not heavy at all, but just enough to be happy to have to throw on when the cool spring/s",4,1,2,General Petite,Tops,Fine gauge +1081,55,My thanksgiving dress,"I love wearing a dress at thanksgiving but don't want to be too dressy. this was perfect;: casual with a bit of sass and comfortable. it's also arm enough and super cute with booties. i'm 5'4"" and small boned. the xs fit perfect.",4,1,1,General Petite,Dresses,Dresses +862,51,So comfortable,"This tank top is comfortable and very cute. it hides my tummy, as well, which is a bonus! ordered in another color i love it so much",5,1,0,General Petite,Tops,Knits +984,52,Soft and versatile,"I purchased a size small. i usually always buy a petite. but this fit me just fine since it is a vest. the length in the back didn't fall too long. it runs true to size. it's soft and i wear it with long dresses, rompers, short dresses, skirts. it's a nice tapered vest. i'm 34d and it's fine.",5,1,0,General Petite,Jackets,Jackets +850,54,Perfect blouse......,"I have been on the fence about this blouse until i went into the store and tried it on. instant love for me. +the fabric is not sheer.....yeah! the shoulders are cut in, so you may need a halter bra. i typically go between a 4 or 6, but found the cut at a a line so there is a nice flow, but not overly so, so purchased the 4. the colors will go with anything, for many seasons. love the quality.",5,1,10,General,Tops,Blouses +609,31,Perfect white tank,"I took this in a large. im a 36d 140lbs. this top in a large fit me perfectly without a bra. slightly see through but not by much... i haven't tried it with a bra on yet, but im sure it'll be just fine.",4,1,0,Initmates,Intimate,Layering +850,35,Makes you feel like a million bucks,"I had the pleasure of trying this on today and looooooove it. i love all things bows, but usually they are off-centered over the left shoulder. i have a bit of an ocd thing, and i prefer things to be over my right shoulder so usually while i love them, i can't wear them. i love that this bow is in the middle-and i like that it is higher than the neckline of the shirt so you know there is some skin underneath. it adds to the sexiness of the blouse while also creating a more pleasing look. i feel",5,1,2,General,Tops,Blouses +873,60,Casual beauty,"I love this jacket. it is stylish, yet has the softness of you favorite lounge wear. the faux fur gives it a touch of holiday fun, and, the fitted cut flatters your shape.",5,1,11,General,Tops,Knits +850,35,Lovely top,"I bought this top as it is perfect for work under a blazer! the patten is pretty and eye catching, i love that it's 100% silk and has the tie in front so it's not too low for work. so chic and sophisticated!",5,1,2,General,Tops,Blouses +880,40,Great transitional piece,This material of this shirt is soft and appealing. great for fall. the side slits are longer than they appear in the picture so wearing it both tucked and untucked requires a layering shirt underneath.,4,1,1,General,Tops,Knits +873,57,Sweet little jacket,"I love the color and textures of this jacket. +the shawl color adds interest while being cozy and fun. wish it ran a tad longer. otherwise a great mix and match piece.",4,1,3,General,Tops,Knits +873,48,Love,I am very petite and ordered the xs. it is too big which is often the case. i gauge how much i like something by my willingness to spend even more money on alterations. i love this jacket so much that i am willing to go through that extra step. i love winter and this is a perfect winter top. the faux fur is very soft and cozy and has a rich look to it. i have yet to have it altered which is the only reason for my 4 stars under quality. i don't yet know how it will fit once complete. the fact tha,5,1,2,General,Tops,Knits +850,39,"Flattering, flows out","This top isn't straight as it would seem on the ""tucked-in"" picture on the model. colros are really rpetty and neutral in eprson. fabric si very soft. i tried on the 0 but am wondering about trying on 00 or petite size...which i would have to order, so will wait a bit on this one.",5,1,0,General,Tops,Blouses +873,61,Loved it!,I purchased this jacket as a gift for my daughter for christmas. i thought it would look nice on her and i love retailer. she was very surprised and loved it. she wore the jacket the next day and it looked lovely on her. a very unique and beautiful addition to her wardrobe.,5,1,2,General,Tops,Knits +880,50,,Great boho chic top. a bit over - sized but soft and love the colors!,4,1,0,General,Tops,Knits +850,22,Must see this beautiful blouse,"I coveted this blouse for weeks and finally pressed go during the recent sale. it is truly lovely - the textured silk and its lining combine to give this blouse the weight it needs to flow perfectly when untucked. it is a-shaped and fuller at the hem. when tucked, it is neat as a pin. the colors are almost metallic and it looks as if the flowers have been painted on. this is an elegant casual look with white jeans and heels, or i've dressed it up with a black pencil as well as a skirt almost ide",5,1,1,General,Tops,Blouses +880,45,Perfection,"Gorgeous colors, great neckline (can be worn off one shoulder), the slits on the side allow for wear as tunic or as half tucked. very cute.",5,1,0,General,Tops,Knits +880,46,Day to night,If you're looking for a great day to night shirt this is it. perfect transition from the office to happy hour,4,1,0,General,Tops,Knits +850,61,Versatile and elegant,"I tried this on a whim last week even though it was a bit above my budget, and i couldn't resist taking it home. the photo doesn't do the textured sheen of the silk justice--the metallic tones of the flowers are really vibrant, but still subtle. my husband (who usually hates anything with a bow) loves this, though i have been tying the bow a bit lower than shown on the model. go one size down--i usually wear a 14 in blouses but took a 12 in this.",5,1,12,General,Tops,Blouses +880,47,Cute but big!,Adorable soft top for the fall! i wanted to love it because of the colors and the fact that it is so retro! it was just way too big for me. i'm always a medium but in this i probably should have sized down. i still gave it 5 stars because it is so cute--just didn't fit me! sadly i will be returning this!,5,1,1,General,Tops,Knits +494,38,Adorable,"Just so i'm clear, the only reason i said it runs large is b/c of the top portion, but the bottom or waist. loved this romper when i saw it online, it was however too big in the top portion. the straps are adjustable but the back is too low for a bra and it ""gaps"" too much in the front unless you are standing straight all day. + +also b/c i'm 5'8, the small was just a tad too short, definitely no bending ! + +i'm 5'8 tall, 127lbs with an average size chest #34c# i ordered a small and the bottom",3,0,5,General,Bottoms,Shorts +138,35,A must for any morrissey fan :),I was eyeing this sweatshirt but didn't want to pay full price- i got it on sale and am so happy i did! it is super soft and comfy. it also fits perfectly- not too baggy but also not form fitting. as a moz fan i couldn't pass it up. awesome sweatshirt!,5,1,5,Initmates,Intimate,Lounge +873,22,Flattering,"I tried this jacket on and found it extremely flattering. the knit is soft and feels more like a sweater than a jacket in that it isn't constricting. i am usually between a small and medium and the small was plenty big. the fur collar is a special touch. the one i tried on had several loose threads hanging from the seams and the seams puckered a bit here and there. i loved the jacket but did not feel that the quality in construction i would expect was there. however, the fit is so flattering i m",4,1,7,General,Tops,Knits +494,37,Cutest romper,"This is the cutest romper ever !! very high quality.. +it has always been a challenge for me to find and love rompers. but this fit beautifully. +i cant wait to wear it this summer.",5,1,0,General,Bottoms,Shorts +881,44,Classy sweater,"I was surprised at how soft this sweater is. i thought for a brief moment it was cashmere. i'm a little worried it might pill. we shall see! + +it is a pretty and classy sweater. will look great with jeans and heels or boots. + +it looks somewhat long on the model. it wasn't quite as long on me, which was a bit disappointing. i'm 5'7 with long torso (not abnormally long!). it's still a great sweater and will be great for upcoming holidays parties!",4,1,5,General Petite,Tops,Knits +881,29,Incredibly soft and light,"This sweater was far better than expected. very soft, and flattering. it's light to wear, but keeps me cozy in my freezing office. looks super cute with jeans and boots.",5,1,0,General Petite,Tops,Knits +864,35,"Pretty top, with some issues","I tried this top in both colors. for the black, the lining looks much more peach in person. the main issue though is the diagonal line that runs through the middle of the top. you can see it in the picture, but is much more pronounced in person. it appears to be where 2 pieces of lace are sewed together and it just looks sloppy. + +the line is much less obvious in the navy, and looks much more seamless, perhaps because there is a transition between two colors of lace. the black lining is completel",4,1,3,General,Tops,Knits +864,49,Gorgeous but runs very large,"I just received this top - it is stunningly beautiful, however, i will be returning it as it is very large. i am tall at 5'8"" and typically wear a size 4. i purchased this in the size s but it was very large. i should have read the reviews about sizing before ordering, although i think both the xxs and xs were already sold out.",4,1,0,General,Tops,Knits +609,31,,"Perfect semi-dressy summer top, that could definitely go year round. love the buttons up the back. it's flows but the slight peplum keeps it from looking tent like. love this so much i ordered another in black.",5,1,2,Initmates,Intimate,Layering +864,64,Unique,I love this top. i found it to be true to size. i usually wear a size large or extra large and the size large fit well. i really appreciate that the armholes are not gigantic and don't show underthings. i bought the navy/black and find that a navy cami works well under it. i like this with casual pants and jeans under an open front sweater for now and think it will be nice with a linen skirt or shorts in warmer weather. this is not a style i would usually wear but i found the two tone lace very,5,1,1,General,Tops,Knits +850,38,Gorgeous,The picture doesn't do this justice. this top is amazing in person. i purchased my regular size 2. it is very versatile and the colors are perfect as well as cut and material. worth the money,5,1,0,General,Tops,Blouses +850,40,Beautiful,"This is a gorgeous blouse! the quality is exceptional- beautiful, soft silk. the pattern is lovely, the shape and design is spot on!! finally! a lovely tie neck blouse that fits well and is made well. i'm a busty mama and my the size 2 fits perfectly. thank you retailerpolgie for a gorgeous piece of clothing!",5,1,0,General,Tops,Blouses +880,28,Runs huge!,"This skirt runs very large--even in the petite line. there was also no shape to the skirt (at least as it looked on my body). the color was nice (in the pink-grapeish hue), but ultimately the skirt just looked like a tent on my body (00p).",3,0,0,General,Tops,Knits +850,39,So cute,This top is so cute. i love it and get tons of compliments on it.,5,1,0,General,Tops,Blouses +829,55,Love this top!!,This shirt is so cute with skinny jeans and crossbody bag! i am 34b so i did not have the issue with the cut of top at the bustline. love it!,5,1,1,General,Tops,Blouses +829,65,Gorgeous white blouse,"I love this blouse, but after i got it i decided i really didn't need another white long blouse. it was more of a want than a need. very stylish and comfy with nice neckline. i love retailer anything. i'm obsessed with this store and every single thing in it. even the smell just makes me happy when i enter the doors.",4,1,1,General,Tops,Blouses +829,38,Perfectly unique white top,"I love this top. the seam does go across the bustling but if you are small chested like me...it is perfect. very bohemian and an almost classic look with a very contemporary twist. there are splits up the side that show off a great pair of leggings. i wore this today with some lysee black and grey patterned leggings, a long grey camisole, and some cute short free people booties...i may have gotten 20 compliments. love it.",5,1,10,General,Tops,Blouses +1081,20,Fun dress,"I purchased a small in this dress. 5'6"" 34d. i could have gone with a medium if i wanted to wear a bra. this dress is not meant to be worn with one. it fit much better without. i liked the regular length as the dress is supposed to be a midi. this dress screams ""summer"" to me.",4,1,8,General Petite,Dresses,Dresses +829,46,So cute....but,"I really like this shirt but it's a bit maternity. i don't mind some extra fabric around the stomach area but there is a lot here. i'm 5' 7"" about 125 and i think it makes me look like i might be hiding a little secret. since i'm done having kids, it has to go back. +it's also somewhat see through and had i kept it, i would have worn a tank top underneath. +as long as these things don't bother you, it really is cute!",3,1,2,General,Tops,Blouses +829,63,,Love this big top...! will be great for hot summer days.,4,1,2,General,Tops,Blouses +872,52,This top could have been so sweet!,"I ordered the top from a store to have it shipped. +it is very pretty but once on, it fit the wrong way. i got a small because i know that this designer tends to run tight across the bust. +the shoulder was too rounded for this neck line. sleeves should have been either longer or sleeveless. the empire waist even on a smaller busted woman like myself was cut too high.",2,0,3,General Petite,Tops,Knits +1081,69,Beautiful & sooo comfortable,"The fabric is so soft and completely lined; the straps are adjustable. +this is the best summer dress ever!!! so comfortable and easy to just throw on. goes with a multitude of colors for your sandals and bags. i love this dress! +i'm 5' 7"", 137 lbs., and ordered a size medium, with plenty of room around the bust; no worry about arm holes being too big because you adjust the straps to suit your body. i love the below the knee length. i like comfy but you could easily size down. +nice embroidery",5,1,0,General Petite,Dresses,Dresses +829,55,Nice but nah...,Ii loved the idea of this summer top flowing in the breeze... then i got it and the selves did nit give as much slack as i would have hoped #spandex so #returned!,1,0,1,General,Tops,Blouses +927,34,A simple staple,"I've been looking for a great long, loose, versatile vest for some time, and this is just about perfect. it's slightly heavier than i would have preferred (i'm in a warm climate), but it excels in every other way. it looks so much better on than it does on the hanger, and can be dressed up or down. definitely a steal on sale!",5,1,1,General Petite,Tops,Sweaters +1202,31,Bright and happy,"The colors are amazing. so vibrant and plentiful. the arm holes are fairly generous but not bad. i think it just adds to the loose fitting nature of the dress. i got a medium.. i'm 170 with a small chest. medium is my norm for maeve. the buttons in the back are difficult, you need help getting on, but getting off you can do solo. this dress makes your shoulders look really good!! it sits in a very flattering way.",5,1,0,General Petite,Dresses,Dresses +872,43,Too sheer!,This blouse has a very cute style. the ruffles are really nice but why does it have to be so sheer? there is no way i could wear this to work without a cami. it also felt slightly on the small size - almost too tight for my normal size.,2,0,6,General Petite,Tops,Knits +1081,32,Love,"So comfy, great quality, not see thru at all, has a liner that you cant even tell is there. wish it was a little smaller- got an xxsp but going to keep it anyway, dont need a bra.",4,1,1,General Petite,Dresses,Dresses +1081,36,Great dress!,"Wow. i just love this dress. it hangs beautifully and is such a great length. shoulder straps adjustable, simple button closures in back. i wore it dressed up a bit with a sweater and then again more causal without. i got it on sale so it fit even better!! :)",5,1,1,General Petite,Dresses,Dresses +1202,45,Armholes are huge,"The material of the dress is gorgeous, but the armholes droop much too low under the arms. in addition, i am fairly broad shouldered and the cut across the chest is too narrow, exposing your ""chicken wings"" in an unflattering way. this is gorgeous on the model, so i would say narrow shouldered girls should order a size down and give it a shot!",3,1,1,General Petite,Dresses,Dresses +1056,30,Runs large,I love these pants but they run super big and still stretch after wearing. i am usually a 2/ 26 and had to get a 0. also the pocket flaps stick up on the corners and ironing doesnt help. still comfortable but i would have never paid full price for these if i had known.,3,0,0,General Petite,Bottoms,Pants +927,62,Must try on,"This vest is so cute and flattering. these pictures don't do it justice. you must see it in person and try it on. it only has a small percentage of wool in it, so it could easily be worn in the spring/summer with a tank.",5,1,3,General Petite,Tops,Sweaters +927,36,Pockets not well executed,"I'm a vest lover of all shapes, lengths and styles so i had big plans for this vest. in the end, the pockets ended up ruining the lay and line of this vest. they are too bulky and end up pulling at the front of the vest, drawing your eye to the pockets and not the neckline. i agree with previous reviews that it could be worn into spring- i wouldn't wear it in summer. the fit is loose, i thought the medium arm holes were large for my frame- 5'8"" 140#. overall i sent it back.",3,0,0,General Petite,Tops,Sweaters +360,57,Hidden treasure,"This vest is awesome - the photo does not do it justice. you can dress it up or dress it down. great materials used. does run big, so select one size down!",5,1,0,Initmates,Intimate,Lounge +1056,43,Fitted cargos with cute details,"Love the look of the pant! would have given more stars if it had arrived wearable. the pockets all had a corner stuck folded up, requiring washing or ironing before i can even wear them. worried that they will constantly have that issue.",4,1,0,General Petite,Bottoms,Pants +1202,30,Great dress,This dress is very well made. the fabric is thick enough for winter weather and is great for work or a nice party. i do not think the arm openings are too large at all.,5,1,0,General Petite,Dresses,Dresses +1202,28,A bit like a muumuu,"The fabric on this dress is gorgeous. i wish it was tailored a bit more because as it is, it looks like a muumuu. i wish it would have fit better, but i returned it.",4,1,0,General Petite,Dresses,Dresses +829,53,Traditional material in a new way,Love the movement of the blouse and how it falls. great quality material.,1,1,0,General,Tops,Blouses +1202,44,Nice print,"This is a pretty dress, but it runs at least one size too large. the silk is of good quality. it would be good for somebody who is slim and tall.",3,1,2,General Petite,Dresses,Dresses +829,41,Cute summer top,"This is a great light, free flowing top for the summer. i agree with the other reviewers that the top section hits in a weird area, but if you are small busted, you won't be affected. it can be dressed up or down with jewelry and offers a whimsical option to a plain white blouse for the summer!",5,1,1,General,Tops,Blouses +836,30,"Flirty, fun","Bought this shirt on a whim, and it surpassed my expectations. just enough business, just enough pleasure. i wore it with high waisted skinnies and wedges and stopped counting the compliments! excited to try it in other ways. it's summery in print, but fall ish in color, so i think i can get even more use out of it in the next few months.",5,1,0,General,Tops,Blouses +829,36,Romantic flowy beauty,"This blouse is a beauty! i love the hemline across the bust and all the flowy fabric that drapes in front and in back. i love the long length and the side slits. the wide hemline at the bottom is lovely. the cotton is soft and light and as amazing to wear as it is to look at. it makes me feel beautiful just having it on. be aware the fabric is sheer and requires a tank, but i don't mind as it is both pretty and comfortable. i sized up, which fits how i like. i never tried it on in my normal size",5,1,6,General,Tops,Blouses +1033,37,A bit too small,I have several pilcro jeans in a size 26 that fit great but these ended up being just a little bit too tight in the thigh area to make the style of the jeans looks right. going to return for a larger size. nice material though!,4,1,0,General Petite,Bottoms,Jeans +829,53,Great spring tunic!,"I had been eyeing this top online, decided to hit my local retailer to try it on! it is an adorable spring tunic! +i think it runs a size larger then your usual size. for reference, i am 5'7"" and 139 pds, small busted, and i bought a size 6, fits perfect. i will machine wash and hang to dry. happy with my purchase!",5,1,5,General,Tops,Blouses +829,56,,"Not sure why some people did not like the fit. i am a ""d"" and yes the seam sits along bust, but not in a weird way. love this shirt, its adorable.",5,1,1,General,Tops,Blouses +862,44,Stylish & comfortable,"I love this top it is cute with shorts, capris and jeans. it's really comfortable but looks put together and stylish. great for running errands to drinks with the girls. a good transition piece into fall with a light cardigan.",5,1,0,General,Tops,Knits +829,45,This might be,"My favorite white blouse ever. +i was hesitant, but really love it. it makes me think of summer, flowers, paris.... it's so soft and comfortable. yes, the cut is different and took a moment to get used to... but i like that. and it looks better on. imo. i can see this getting worn a lot on hot summer southern days. i've been on a hunt for a great white blouse for a long time. tres chic!",5,1,6,General,Tops,Blouses +360,37,Way better in person,This is a must have! way cuter in person. love the look and feel. it runs large so size down. it's more cream than white,5,1,6,Initmates,Intimate,Lounge +829,32,"Floaty empire, classic white","Saw this in the store and had to have it after i tried it on. it's shape is unique, it's very ""floaty"" and looks awesome with skinny cropped jeans & chunky sandals. +the ""empire"" does hit across the breast line, not below. i thought it added to the different shape, & didn't look odd on me. i am 5'6"" so it might overwhelm a petite frame.",5,1,1,General,Tops,Blouses +1056,44,"Love ""em but hei hei where'd the side buttons go?","Hey hei hei! where did your side buttons go on this design? on all of the other hei hei's i own there are two or three very cute side buttons at the hips in belt area with a matching also cute cloth strip attached so that when the pant becomes too lose at the waist you can tighten it up a notch. + +i bought the sky & yellow in these pants in a size 10. i am 158 lbs and 5'6."" when i first put these on they fit just like i want them too (a bit of a boyfriend pant feel, not too slouchy), but witho",4,1,17,General,Bottoms,Pants +1033,32,Lovely pants,I wanted to add my two cents because i was worried when ordering the pants from previous reviews that they would be to tight as it had been suggested they run small. i didn't find that to be the case and think they run true to size,5,1,0,General Petite,Bottoms,Jeans +1056,42,Versatile casual pant,"Love these pants. the perfect cuffed crop pant for the summer. lightweight, cool, and comfortable. fun pocket details. i typically wear a 26 and bought a 2 in these. within a short time, they were slipping a bit low on the waist. that's my only frustration. they are a loose fitting pant but they shouldn't slip off the waist. perhaps a 0 would fit better. these weren't in my local store (an hour away), so i ordered online. perhaps i'll try ordering another color in both the 0 and 2. i would sugge",4,1,6,General,Bottoms,Pants +836,58,Lovely fall top,Love this top! tried it on in the store & loved it more. it's a great transitional piece with rich colors. the top is sheer so will need to layer with a camisole. haven't worn yet so can't speak to how well it will wash.,5,1,7,General,Tops,Blouses +862,61,So much fabric,"I really liked the fabric and look of this top, but i was swimming in fabric. there was so much that the top felt heavy. i returned it.",3,0,2,General,Tops,Knits +829,46,Very feminine!,"Probably not for everyone but boy do i love it and i've gotten loads of compliments on it! looks best with skinny jeans, would be good with leggings also. + +i am 5'7"", 155# and bought a size 10, fits perfectly!",5,1,4,General,Tops,Blouses +1081,46,Adorable,I saw this dress in store. at first i was not impressed because it was shapeless on but i added a belt and it was so much better. i styled it with my leather wrap around ada belt. looks great with a jean jacket or a leather jacket to make it look more chic.,5,1,1,General,Dresses,Dresses +829,33,,"I wanted to love this top. perfect weight, length, and shape. unfortunately, the seam goes right through the bust and just does not look right. if you are tiny on top, this will be lovely on you.",2,0,1,General,Tops,Blouses +1081,65,Love this dress,"I didn't notice this dress online but it jumped out at me at the store. i sized down to a small as the bust and arm area seemed very loose in medium. (36b). it's very comfy and beautiful. i tried it with a belt, but quite honestly it doesn't need one and it looks so much nicer without one. not sure about what bra to wear ...likely strapless , or as one person said. .none.",5,1,1,General,Dresses,Dresses +1033,42,Love the way these pants make me feel!,"The fabric of the pants is a great thickness so the pants have a very nice look. the fabric is smooth, not jean material. for me this is nice because though they have weight to them, the pants are not hot and can be used to dress up or down, much more versatile than jeans. these pants are very fitted through the hips but then fall very nicely. i am not a big fan of capri length yet i really love these! i have already enjoyed wearing these out and they look fabulous with any type of wedge or heel",5,1,8,General,Bottoms,Jeans +829,48,Love it!,"This may be one of the cutest items that i have every owned! runs big, i am a 4 and the 0 fits perfectly.",5,1,0,General,Tops,Blouses +927,35,So cute,"These photos do not do the vest any justice. i randomly saw this in the sale section at my local retailer. tried it on and it was super cute, but i did the whole ""walk away, maybe you'll forget about it"" thing. that did not happen. i ran back to retailer on my lunch break the next day, and thank goodness, there was still one left in my size. it actually drapes in a flattering way, and it looks polished. it's so versatile. i would not have looked for this vest based on these photos, but i'm telling y",5,1,1,General Petite,Tops,Sweaters +943,43,Soft but color not quite like pictured,"So i thought this sweater would be snowy white, but it's actually a beige kind of dingy color. i do not mean that it's unattractive, i do like it, just because it is not snowy white like i thought, it makes it more of a casual sweater in my opinion and i was hoping for a dressy sweater. it is very super soft and is as long as it is pictured. it fits like a dolman sweater which i did not expect either. it's a bit fitted around the very bottom and sleeves are billowy at the top.the picture does no",3,1,5,General,Tops,Sweaters +862,53,This style runs very large,"This top runs very large. i am a size 12/14 & purchased the size l. i could have easily fit in the size m. it's a pretty top in a comfortable knit fabric , but the size was overwhelming so i returned it.",3,0,0,General,Tops,Knits +862,55,So soft and great length!,"Love the cotton knit, for the comfort, but from a distance this blouse looks dressier. the embroidery adds a nice flare. personally, i was happy that this is long enough to cover my bottom, as it gives it a nice lean look with skinny jeans and pants. i found that it ran a little bit, but choose to keep the size i ordered anyway.",4,1,2,General,Tops,Knits +829,24,Love it!,"I had 3 shirts from clearance in my hand but put them back to get this shirt. it's perfect! great with skinnies/sandals for the spring, or boots/leggings for the fall. great for layering and so versatile...i will get more wear out of this than my 3 clearance shirts combined. i like the slit in the side, it makes flowy while also preventing it from looking like a maternity shirt. the only thing i would like is if the shirt was a little less see-through. it's not bad, but i will definitely have to",5,1,2,General,Tops,Blouses +1202,48,Pretty but big,Order a whole size down and this may work. i'm normally a 6-8 or a medium but this was huge. ordered the small because i loved the color/design. hopeful!,4,1,0,General Petite,Dresses,Dresses +360,37,On the fence,"I adore a good vest, so when i saw this one at my retailer i had to try it on immediately. i don't wear cream often, but the design and weight of this vest is dreamy. i tried it on at the store and i was on the fence. so i bought it, took it home and tried it on with everything. i am a curvy girl, and i wasn't thrilled with how this fit. now its part of the retailer athleisure line, and i could definitely see this being worn post workout with cute workout gear. girls who are tall and thin, or even w",3,1,6,Initmates,Intimate,Lounge +1033,47,Fantastic white pant!,"Love these! no bulging, substantive fabric, very flattering cut. i'm 5'7"", 170 lbs, wearing a size 12. these were perfectly cut for me, no pulling, bulging, or weird gathering in awkward areas (we all know what that means).. these will be a true staple for me with a variety of high-heeled sandals, kitten heels, and gladiators - i can't wait to wear them. + +my only concern is the fabric and it's ability to repel stains - sometimes the trade off for stretch is easy care. we'll see. i'm willing to",4,1,0,General,Bottoms,Jeans +1081,57,Fun summer dress!,"I love everything about this dress! i love the colors - style and fit. it is so comfortable. i had so many people ask where i got it. +i usually wear an xs or s in retailerpolgy dresses and i got this in an xs and it was perfect.",5,1,0,General,Dresses,Dresses +1081,48,So adorable,"I love how boho, colorful and comfy this dress is. sometimes you just want to wear your comfiest bra and not worry about a dress that doesn't cover the straps. they were out of the petite small so i went with the small. i am 5' 125 lbs, and it fits perfectly, just more of a midi length. no problemo!",5,1,1,General,Dresses,Dresses +836,42,,"Fit is boxy yet flattering and material is sheer but not overly delicate. took my usual size four, i am moderately short waisted.",5,1,0,General,Tops,Blouses +1081,43,Cute bohemian dress,"I saw this dress and had to have it. it is very cute and comfortable. i have fuller hips, so i'm not sure about the stripe across the widest section of my body. the arm holes are a little gaping as well as other reviewers have mentioned. i bought the medium which fits well everywhere, but the arm holes. i think the small would fit me everywhere, but the hips. so, i'm on the fence of whether to keep it. i do like the dress and it is of good quality; it just may not be the right fit for me. i'm a",5,1,0,General,Dresses,Dresses +1202,65,Nice,"Beautiful dress, i like the length and cut. nice material. runs a bit big. i think it'll look nice with a belt. great colors.",5,1,1,General Petite,Dresses,Dresses +829,32,Oh so sweet when it's the right fit,"I saw this blouse referenced online a few times and have a weakness for white blouses, so off i went to my local retailer. this blouse turned out to be delightful! my thoughts: i would say it fits true to size, as a 0 fits me perfectly in the shoulders. it is a flowy tunic blouse that has a high skit, so it's not possible to wear this as a dress (it is very sheer too). i do think this blouse is designed for the line to hit below the bust, so my incredibly flat chest works in this. if you have even",5,1,4,General,Tops,Blouses +1081,68,Dangerous beads on back-will rip upholstery,"Nice dress, but the leather seats of my car were ruined when the sharp metal beads on the back made deep scratches~ not fun at all. now i must carefully take them out, bad design feature.",3,0,2,General,Dresses,Dresses +1202,55,Striking!,"I got lots of compliments on this dress as expected. the arm holes are a little large, meaning low. but other than that i love it.",5,1,0,General Petite,Dresses,Dresses +836,65,Stiff fabric,"I normally am a xl or size 18 in fabric tops (if they're not knit and do not stretch.) but, this looked to be a bit boxy and so i bought the 16 and it fit fine. it fit like on the model....tailored, but loose and not really a lot of fabric or boxy. + +now, the fabric is stiff. and, it's sheer. but, the pockets land where your breasts are. so, i wore this with a nude bra and it's just like in the photo. there are peeks but you don't see anything. however, if this is for work, i'd put a cami under",4,1,4,General,Tops,Blouses +1033,48,"Cute on the hanger, not so much on","I saw these in my local retailer and loved them on the hanger. when i tried them on, not so much. the material is a pretty substantial white denim and very stretchy (i didn't find them to be that smooth of a fabric, but more of a traditional denim texture). i am a 6-8 in pants, and normally wear a 27 in pilcro denim. when i tried on the size 27 in the store, i found them to be very tight in the thighs - and i don't have big thighs. i also found the pants to pull conspicuously across the crotch are",3,0,1,General,Bottoms,Jeans +1202,32,Fabulously easy dress,"I'm taking this to hawaii for the holidays, i'm wearing it with black calf length tights and a black belt. it is fine without tights, i just like that look. it is a really great dress.",5,1,0,General Petite,Dresses,Dresses +1056,43,"Adorable, great capri","The details on these capris are adorable - the stitching and side ribbon detail, the fit, weight of the fabric, everything is fantastic. i got the taupe and moss green because i couldn't decide. i wish they came in more colors. fit, for me, was true to size, i usually wear a 2 to a 4 (size 26 to 27 in denim) and got the 2 because i wanted them to be more fitted. they stretched a bit after wear, but not so much that they were too baggy. i will live in these, this summer. if you want a more fitted",5,1,4,General,Bottoms,Pants +872,28,,,5,1,0,General Petite,Tops,Knits +829,28,Romantic,"I love love love this top! so flattering and comfortable- looks great with jeans, leggings, or i totally plan to use it as a beach cover-up as well. they only had medium left (i usually get xs/s) but it was still as flattering and i usually like my clothes on the roomy side!",5,1,1,General,Tops,Blouses +836,30,Love it!,"Yes it is boxy, but by design. because it is a shorter length and sheer it isn't an issue for me even as a petite. it has a bit of an ethereal look on as if it's just floating on your body. what doesn't show well in online pictures are beautiful chartreuse, charcoal & white threads running throughout the design. this adds to the classy look of this top. +great to dress up jeans or with a dressy pencil skirt for a night out.",5,1,0,General,Tops,Blouses +836,25,Cute and stylish,"I bought this top in hopes of getting a lot of wears out of it as we transition from summer to fall. the color is a pretty rust color perfect for fall, but also great for late summer. i love the leaf print, and the dark buttons on the sides really take the top to the next level. i love wearing this top with my high-waisted flare jeans, i get tons of compliments when i wear this top! it is definitely sheer, which i like, so i wish that it came with its own detachable camisole (the reason i took a",4,1,1,General,Tops,Blouses +829,25,New favorite top,"If i could wear this top every single day, i would. this is the white flowy top i've been dreaming of; but better! the fabric is so lightweight and breathable. i can wear this on a cool spring night with a scarf, skinny jeans & ankle boots, or on a hot summer day with shorts/skinnies and sandals. you can dress it up or down. be aware that the chest hem is at a non-traditional height; not quite above or below the breasts. however, i think it looks flattering on both small-chested and busty women.",5,1,6,General,Tops,Blouses +1056,50,My new faves,I have three pairs of these in different colors (one pair is striped) and i love them. they are flattering and comfy. they go with nearly everything. can't get enough!!!!!,5,1,0,General,Bottoms,Pants +829,38,No thank you,"I really wanted to like this shirt, but it made me look 9 months pregnant. which would be fine if i were pregnant. it sits wired in the bust and flows out in the front and back. not flattering at all.",3,0,0,General,Tops,Blouses +360,48,Beautiful,"Very unique, beautiful piece. drapes well, accentuates curves in a classy way. this is an eye catcher. definitely.",5,1,0,Initmates,Intimate,Lounge +927,35,Unexpectedly love it!,This vest is great. i'm wearing with my red striped turtleneck dress i got on sale here. i can see this going with so many outfits. mainly those dresses that might feel a little tight around butt and hip area- this will cover it all. worth full price imo. tts. i'm a 10 and this in m is perfect.,5,1,0,General Petite,Tops,Sweaters +829,58,Perfect white tunic,"I ordered this online in a sz 4, perfect fit and very comfortable. the side slits make it even more interesting since jeans or leggings will show!",5,1,1,General,Tops,Blouses +1081,48,Lovely for summer,"This dress pops! gorgeous colors and simple, classic flowy design. i thought it ran a little big, i ended up with xs for best overall fit in chest and a more streamline flow. 34b for reference.",5,1,6,General,Dresses,Dresses +902,25,Not a flattering fit,The shirt does have a weird yellow tinge as other reviewers have described. i could get over that if the shirt was a flattering fit which it was not. not worth the money so i returned it.,2,0,0,General,Tops,Fine gauge +881,34,This top is so soft...,"This top is so soft and with a henley neck opening and longer ribbed shirttail hems, it not only feels heavenly against the skin but it gives off a casual chic vibe. it is also great for layering under shorter sweaters and sweatshirts to give my staples a little oomph. it is a bit sheer so cami is a must. i am also not sure how well it will hold up after washings, especially since it's priced quite high. i love it so much that i will most probably end up keeping it it is true to size. i ordered",5,1,5,General Petite,Tops,Knits +1119,57,You will love this!,"I bought this as a ""reward."" i have wanted a leather jacket forever and i truly love this. goes with so many things; tons of compliments. soft, comfortable material.",5,1,2,General Petite,Jackets,Jackets +866,40,"Cute, but runs larger than large","I really liked this top the minute i saw it online, long enough and elegant at the same time. i'm 6 ft tall and i like to wear my stuff loose & have my back well covered. i usually get m/l depending on the fabric and style, got this top in l. this top however turned out to be larger than expected, there is plenty of room on the sides, and that bottom part is made of a thinner cotton material. the fabric of the top is not as soft as it may look, but the pullover is still very cute, maybe after fe",4,1,0,General,Tops,Knits +866,52,,"I was on the fence about keeping but the more i tried it on, the more i liked it. i feel like it will be a great winter casual top the reason i was on the fence was because its pretty big. i'm 5'4 and 108 and the xs is pretty voluminous on me. it's just so darn different and feminine though that i'm going to live with the fact that there is so much material. i think it is still cute. the fabric is also really soft on the inside so it will be cozy too.",4,1,0,General,Tops,Knits +902,58,Love this sweater!,I agree that the color in the picture online is lighter but i bought it from the store and really like that it isn't just another off-white sweater. it fits true to size and i love the quality. it is really beautiful!,5,1,5,General,Tops,Fine gauge +854,45,Very simple little sweater,I bought this to go with the pants they had online & i love them together. the sweater seems thin for the price but i still love it.,5,1,2,General Petite,Tops,Knits +1110,29,Gorgeous,"I absolutely love this dress. the color is beautiful and saturated, the fit is spot-on and so flattering. i ordered my usual size 10 - for reference i am 5'9"", 170# 34f bra and 40-41"" hips. i love this brand!",5,1,0,General,Dresses,Dresses +902,25,Beautiful fall sweater,"This top is really cute - a light sweater with a feminine lace detail. i would recommend it if you're looking for a flowy, feminine top to wear before it gets really cold out. the only reason i didn't give it 5 stars is because the material is a little prone to pulls and snags. i wore it once and got a pull from my cross body bag. thankfully, i was able to manipulate the threading and the pull is almost unnoticeable. but just know that it's a pretty delicate sweater and you'll have to be careful",4,1,3,General,Tops,Fine gauge +866,46,"Great, comfy & nice sweatshirt","I ordered this in size xl and it is now a favorite of mine. the sleeves are tighter on me than pictured. i've had great luck with this brand and was a little surprised that the sleeves were cut tighter than typical. the material has a little give so i was able to stretch that out a bit. everything else was true-to-size. the sleeves are a little long but i don't need to cuff them. + +the lace detail & the peplum are so pretty. it's a perfect option for cold weather. it did shrink a little, even wit",4,1,0,General,Tops,Knits +854,37,Unusual cardigan,"I bought this cardigan online and loved it as soon as it arrived. i bought it on my usual small but it fit very big. this is a nice unusual looking cardi and has a very sporty style , so i wouldn't use it in the office. the material is very soft and slightly on the thin side. i am 5'4"" and 160lbs. i had to return it because the small was too big and couldn't find a xs at the store or online.. size down.",4,1,2,General Petite,Tops,Knits +1072,43,,"This is a cute casual dress. i've received many compliments and wear it a lot. i deducted one star because the dress is pilling in some places (mostly expected friction areas, but others as well). also the back of the dress started to rip at the stress points for the button up area. i mended it, but it should have been reinforced to begin with for a dress at the original price point.",4,1,0,General,Dresses,Dresses +964,51,Failed to read vest polyester shearling-lined,"Failed to read website description that vest is polyester shearling-lined.that's on me. + +beware: pockets decorative only. + +runs a size small due to fact vest is polyester shearling-lined.",3,1,5,General,Jackets,Jackets +1075,60,Fabulous,"I love this dress ! my husband loves this dress on me ! +i ordered on line, it did not come in my usual 4, and it was only in petite. i ordered the 0petite. it fits fine, a little shorter than expected, but i am 5'2"" so it is fine. +very well made and lined.",5,1,1,General,Dresses,Dresses +1111,24,,"Saw this online when it first came up and thought it looked lovely. i purchased a different pleated dress and decided i didn't need a second pleated dress. was at my local retailer and they had one pink dress in a size 4 and a blue in a 0. decided to try them both on. the zero actually fit perfectly and at the sale price i had to have it. the material is beautiful, little details like the ruffled hem are lovely. one i will wear for years. thinking about getting the link but the blue is lovely. i'm",5,1,1,General,Dresses,Dresses +1110,38,This dress is why i love retailer!!,"This dress is beautiful. it is not meant to be super form fitting so in my opinion it was true to size altho i could see how others may want it to be more so in which case, size down. it came wrinkled but they make it in petite so they are forgiven and the material is such that i'm not sure how it could be prevented.",4,1,9,General,Dresses,Dresses +902,44,Snags!,"Such a pretty fall sweater. nice fit. wore it once out shopping and it snagged :( had to return, sadly.",2,0,0,General,Tops,Fine gauge +902,62,,,5,1,0,General,Tops,Fine gauge +902,28,Snags!,"Snags very very easily. i hadent even gotten to take the tags off and it rubbed against another item and snagged! so disappointed as it is a beautiful top, lovely color and beautifully detailed! i'm so disappointed i was hoping to keep it but will be sending it back.",3,0,0,General,Tops,Fine gauge +593,23,Gorgeous and socially conscious,"I was very hesitant about this. i read the previous reviews and thought oh no. the first time i saw it in person i was mildly disappointed because the material wasn't how i thought it would be. then i saw it up close, and i realized it was better than i thought. however, i didn't have time to try it on. + +it wasn't until later when i saw it on someone else that i realized i was looking at a must have. i am so happy i purchased this. its beautiful and flattering and the colors are bright yet und",5,1,0,General,Trend,Trend +1110,41,So sad i had to return,"I absolutely loved this dress and when i received it, it was exactly the way it looked/fit online. the material is so pretty and the fit was amazing. it was a bit wrinkled, but i'm used to ironing things, so that didn't bother me. unfortunately, i had to return it though because of the color. i'm filipino, and this yellow just isn't flattering on someone with dark/tan skin. yellow is a tricky color for me to begin with, but this was more of a mustard yellow and just totally wrong for my coloring",4,1,0,General,Dresses,Dresses +964,46,,This is a wonderful vest! i love the lining!! keeps you nice and warm! i love the muted green color! the pockets are sewn closed but can be cut open at the stitching without ruining the vest!!,5,1,15,General,Jackets,Jackets +866,26,Beautiful top,I love this shirt but it was huge! i ordered a small and i was drowning in it. unfortunately i had to return it.,5,1,0,General,Tops,Knits +1111,27,Summer dress,"This dress is not form fitting and some might consider it a little ""shapeless"". however, the color is stunning, the quality is great, and its a great dress for a wedding where you want to stand out but not have to worry about anything too constricting. great for dancing the night away - the under layer and frill at the bottom are perfect. i am very pleased with this purchase!",4,1,17,General,Dresses,Dresses +1111,39,Nice color but...,"The color of this dress is gorgeous and i really wanted to love it. but, it was awful. i am 5'9'' and the length was fine. the problem is the lack of shape which made me look 50 - 100 lbs heavier than i am. it would make a great maternity dress since that is what it already looks like.",2,0,3,General,Dresses,Dresses +1110,41,"Good fit, ok material","This dress is a good casual summer dress. the material is thin and feels nice on. the dress was very wrinkled when it arrived but that came out very easily and the fabric doesn't really wrinkle easily after initial wash and steam. the color is very vibrant and the fit is loose. however, if you have a larger chest (i'm a 34c), the hook and eye closure dones come undone. overall a good purchase. it looks good with a belt as well.",3,1,0,General,Dresses,Dresses +1110,39,Yuck,"Awful color, horribly wrinkled and just a mess...so disappointed",2,0,1,General,Dresses,Dresses +866,40,Soo cute!,"I loved this dressy ruffle sweatshirt. i am long waisted and these often look too short on me but this one fit perfect and actually accentuated my curves in a good way as opposed to making me look ""puffy!""",5,1,0,General,Tops,Knits +841,28,Just doesn't fit right,"I wanted to love this sweater but it is a return. it is a very weird fit, very thick, rug-like material and unfitted. the shoulders are bulky, the top is big and the booty is small. i am 5'2"", 34c and typically wear a small. the arms were very long, way too long. i will say other than that the top was true to size, may look okay on someone who had a larger chest and a smaller bum!",1,0,2,General,Tops,Blouses +964,31,Cute and comfy,This is a real cute vest that is also soft and comfy to wear. love it!,5,1,0,General,Jackets,Jackets +866,49,Pretty but...,Very pretty top. however you absolutely need to try it on before ordering. fit well in the chest area but way too big in the sides - i looked pregnant. had to return.,3,1,0,General,Tops,Knits +1015,51,Tapestry skirt,"I found this skirt beautiful for year round wearing. it's lined and tts. i usually wear a size 4 and this fit well. some might say it runs big but i like skirts to sit a bit lower on my waist and this gave me a good 2 inches in length. i'm 5'3"" and 119# and it hit me just above the knee. i paired it with the back tie embroidered top by akemi & kin because the blue of the embroidery in the shirt was beautiful with the blue in the skirt. it will also go with a cropped creme turtleneck i have",5,1,0,General Petite,Bottoms,Skirts +1072,50,Love this dress!,"I love this dress. the length is great and the dress just feels great. the material is raw silk (which i love) and the sizing does run a tad large, but with the make of the dress. i can lose weight and still wear the dress. well made and the buttons in back are super cute.",5,1,1,General,Dresses,Dresses +964,25,,,5,1,0,General,Jackets,Jackets +1072,59,"Classy dress, husband loved it!","Love trying things outside my usual style, thought this might look like a sack but fell in love! looks effortless, easy to accessorize, dress up or down & comfortable. keeper! want to try it with platform sneaks for casual look.",5,1,0,General,Dresses,Dresses +902,36,,,5,1,0,General,Tops,Fine gauge +1072,61,Shorter arm length than pictured,"I ordered a size 4, my usual size is a 4 or 6. the tunic fit well through the torso, but the arm length was too short and hit just below the elbow. the sleeve interfered with arm bending and moving. i have petite proportions so the arm length of regular size garments is usually too long. i don't want to go up in size because the body of the tunic might be too roomy.",3,1,1,General,Dresses,Dresses +1111,54,Great swing dress,"Bought this in pink for a wedding this summer. the dress detail is noted as a ""swing silhouette"" & should be perfect for twirling on the dance floor. the bit of orange under layer peaking out from underneath is just the right amount of contrast to the bright pink. a pair of heels will make this dress look perfect!",5,1,1,General,Dresses,Dresses +854,61,,,4,1,0,General,Tops,Knits +964,30,Great vest,"This vest is super cute! i'm 5'5"" 120 and usually wear an xs at retailer, i have this in a small and it fits perfectly, fits snug when zipped, my usual xs would have definitely been too tight. would definitely recommend!",5,1,11,General,Jackets,Jackets +964,30,"Comfy, cozy....",This vest is super cute on. it definitely has kept me warm this winter.,5,1,0,General,Jackets,Jackets +866,39,Completely shapeless - massive!,"Completely oversized top, size medium was swimming on me.....boxy, baggy, shapeless -- what more can i say? even in an xs this would not have fit in any way like the photo, returned.",1,0,0,General,Tops,Knits +902,47,,This sweater is a dull off white color. it looks old fashioned. don't get.,1,0,13,General,Tops,Fine gauge +593,42,Petite please,"I tried this on in the store and the colors and fabric are terrific. it's very light-weight fabric but isn't see-through. the colors are medium in depth, not too bright. if you typically wear ""cool"" colors and avoid browns, you may be able to wear this because the brown is very muted. there's two strings inside that you tie around your waist to pull the bust of the dress in. i'm 5'4"" and 125 lbs, so there's simply too much fabric in the dress. i would have bought a petite. the tag says it's avai",3,0,6,General,Trend,Trend +1110,38,Way too big,This dress has a beautiful color and design. however it runs too big. i'm usually between size 2 or 4 on antropologie's cloths. i had to size down to size 0 to get a more fitted look like the model.,3,1,1,General,Dresses,Dresses +854,48,Boxy,"I found this piece very boxy and not very feminine. i tried to make it work but i just wasn't feeling it the material is thin and the design is boring. unfort, it wasn't for me.",2,0,0,General,Tops,Knits +872,35,Cute but ...,"I thought this top looked adorable. and the material was soft. tops like these don't usually look great on someone who is a little bit busty, it can make you look fat or like you're wearing maternity. but the real issue was the arm holes were large and seemed to gape a bit. it just didn't look flattering. even if you wore a cute, lacy bandeau bra, the way the material sticks out around the arm holes would still look awkward. too bad, since it is a cute top, and well made.",3,0,8,General Petite,Tops,Knits +938,35,"Great consept, didn't work on me","I really liked this cardigan when i saw it today. the cut and detail in the back is slimming and very flattering. i love the idea of the safety pin closure, and i really like how the model wears it in this photo-open with the pin on the side. when i saw this in-store, it was closed in the front with the pin, which i also like. i thought for sure the cardigan was also pinned in back when i saw it in the model, so it looked fantastic. however, when i tried it on myself, it wasn't quite the same.",3,0,17,General Petite,Tops,Sweaters +937,36,Comfy and stylish,"I purchased this jacket in a pxs, as i am 5'2"" and 110lbs. the sleeve length is perfect! the fabric is soft and lightweight, which is perfect for living in southern california. i don't feel any itchiness either. the rest of the jacket fits me perfectly and hits right at the top of my hips. + + +there are two cute grommets on each side at the bottom by the hem, which add nicely to the look. i like how the sleeves are ribbed, giving it a comfy sweater feel. there's also two zippered pockets, whic",5,1,0,General,Tops,Sweaters +938,44,Great cardigan,"Great cardigan. love the tie on the back of the collar. excited i was able to get the blue on sale. definitely runs big, but the small fits me well!",5,1,0,General Petite,Tops,Sweaters +993,56,Beautiful!,"This skirt is so gorgeous. the picture doesn't do it justice. several layers of mesh. i am 5'10"" and this skirt is very long, which i love. so glad i found this in my size for such a great price. highly recommended..",5,1,0,General Petite,Bottoms,Skirts +831,47,Gorgeous and unique,"I ordered this shirt and was happy to see that it looks just like it does online -- i love the rusty orange and pale blue contrast with the navy. the navy blue underlayer is so flattering, and the sheer sleeves are feminine and lovely. the shape and pattern are forgiving. this brand is really hitting it out of the park these days. this blouse runs a bit smaller than some meadow rue. if you're between sizes (especially arm-wise), i'd order up. otherwise just get your regular size. the body is flo",5,1,0,General,Tops,Blouses +938,33,,"Love this sweater so much that i got it in both colors. got the size small, fits well and keeps me warm. the cream color is very functional. the blue color is beautiful and unique.",5,1,0,General Petite,Tops,Sweaters +938,62,Unique,"Gorgeous sweater, very unique, given as a gift so not sure how well it will wear",4,1,1,General Petite,Tops,Sweaters +872,57,Lovely color; beautiful detailing,"I am usually a size small and had to size down to an xsmall. as mentioned in another review, it runs large in the armholes and across the bust, which is why i'm counting off one star. the armholes are also cut in quite a bit, so i will wear either a strapless or racerback bra. i am fairly small busted and the gathers falling from the yoke lay nicely; however, i can see that it might not work for someone who is more amply endowed and that it might have a maternity look. that said, the detailing i",4,1,2,General Petite,Tops,Knits +938,37,,"Gave this to a friend as a gift. soft, lovely. she loves it.",5,1,0,General Petite,Tops,Sweaters +938,39,Very pretty and flattering,"I wanted to roder hte petite version, as it runs long, but they are out of the ivory. i put hte green-ish color in my basket, and may order it, but for now, i am hlding off as i have other nice seaters... so many choices. + +long, warm, fun closure, falttering, and nice tie back detail.",4,1,1,General Petite,Tops,Sweaters +831,38,,I love this shirt. the colors are just as depicted. the material is gorgeous and the top is very flattering. fits true to size for retailer small (i'm normally a medium outside of this store).,5,1,0,General,Tops,Blouses +938,46,Very heavy sweater,I ordered the blue version in size xl. it looked just like the photos online. it fit true to size. the problem for me was the weight of the sweater. it was too bulky & uncomfortable to wear. the color of blue was nice. the knit wasn't very soft but wasn't scratchy either. i found a better choice from retailer so i returned this.,4,1,0,General Petite,Tops,Sweaters +872,46,Pretty ivory tank,I ordered a size xl in ivory. it's prettier in person. there are great details. it shrunk a bit after washing and air-drying. i cut off the layer of chiffon around the neckline to make it more comfortable. a cute summer tank.,4,1,0,General Petite,Tops,Knits +1059,65,Terrible butt sag!!!,"These are horrible pants!!! they run small in the thigh and butt like other cartonnier crops. look great at first....after a few hours of wear the stretch out everywhere!!! absolutely terrible! i have several pairs of cartonnier crops that are my ""go to"" pants, but these are not worth even the sale price! i'd give them no stars if i could!! this fabric is very different from my other printed pairs. if u must try them, size down and suffer through the first few ""tight"" hours! trust me...they will",1,0,0,General,Bottoms,Pants +872,41,Big armholes!!!,Ordered this in white and the peachy color- the armholes were gaping. not well designed. i don't recommend this tee at all.,2,0,0,General Petite,Tops,Knits +385,39,Soft!,"Super soft comfy underwear. i sized up and they fit perfectly. normally wear xs and bought m for most comfortable fit. they don't ride up. i ended up ordering 5 more pairs. super comfy without being too ""mom"" like.",5,1,0,Initmates,Intimate,Intimates +1024,54,,"Love these pants! the print is very different, a little quirky, but black and light golden brown mixed together so very versatile. i have very thin legs and these are actually tight on me so maybe too slim for some.good length. they actually hit right at the ankle.",5,1,1,General,Bottoms,Jeans +938,49,Love it!,This is a great sweater. soft and beautiful. it's my new go to sweater??,5,1,0,General Petite,Tops,Sweaters +938,46,Good quality cardigan,"I really liked this cardigan when i saw it online. when i received it, i liked the quality of the yarn and the tie on the back, but the color seemed dull and i didn't like the huge safety pin on the lapel. i tried to remove it, but it was sewn on and was worried that if i snipped it off the thread, it might unravel the yarn. had to return it.",4,1,0,General Petite,Tops,Sweaters +872,47,Cute top!,"I tried on this top in the store in a large and the arm holes were too big. i am busty and usually wear a size 10, so i usually need a m to l. i ordered a m which was shipped to my home, and it fit perfectly. really cute with skinny jeans!",4,1,0,General Petite,Tops,Knits +385,39,"Pretty, but rides up","I wanted to love these because they are so pretty and come in lots of colors, but after only a few minutes of wearing them, i was having to pull them out of my bottom! why does women's underwear so frequently ride up? i normally wear a size 4/28, and ordered these in a m, but i guess they were still too small, which seems unreasonable to me. they are soft and pretty, but i will not be ordering more.",3,0,1,Initmates,Intimate,Intimates +985,35,Can't stop wearing it,"I'm 5'1"", <100 lbs. xs fits surprisingly well. the sleeves were rolled up when it arrived so i didn't noticed they were long. the wrinkled appearance looks fun and casual. + +the big drawback is that the interior seams poke and scratch my skin when i wore it over a halter top. even over a tee it was irritating in one spot. despite that, love it enough to keep.",4,1,4,General Petite,Jackets,Jackets +993,52,Lovelier in person!,"I'd been eyeing this skirt on the website, and was pleasantly surprised to find one hanging on the sale rack in a local store. i couldn't leave it behind. the silver embroidery and the lovely, flowinng weight of the tulle layers make this a beautiful skirt. i'm just over 5"" 4"" and it skims the floor on me with a 2"" heel. can't wait to wear it!",5,1,0,General Petite,Bottoms,Skirts +77,34,,,5,1,0,Initmates,Intimate,Legwear +1092,45,Missed the mark,"I loved the idea of this dress and was hoping it would be worth the astronomical price tag for what really is a cotton jersey dress. unfortunately, this dress missed the mark. in the pictures this dress looks like the fabrics are navy blue and some sort of white. well, it is not white or whitish at all but baby pink! bright baby pink! even the light pattern on the navy background is actually pink. huge disappointment. my other issue is with the length of this dress. the description says that the",2,0,10,General,Dresses,Dresses +984,38,Comfy and stylish,"I love this vest and could not leave without it. the color and lining just make it perfect, so stylish and comfy! i'm always a 8/10 and a m in this was perfect. the color is so beautiful and its so easy to dress up and down. i am big on the bottom, the tie in the back adds a nice shape to your whole profile and makes it a less boxy vest! love love...",5,1,2,General,Jackets,Jackets +938,25,,"Saw this online and ran over to the store to try it on. so lovely! i thought i would want it in the cream color but the blue was so lovely in person. it's like a muted blue that makes it so versatile. the detail in the back is gorgeous and so flattering. the safety pin is such a unique touch. it's nice and warm, just not super soft, but not scratchy. i do think i will be extra careful with it because it seems like it could get caught on things easily.",5,1,2,General Petite,Tops,Sweaters +872,40,,"Love this shirt. i am 5'2"" and 115 lbs. i am normally a pxs and got the pxxs and it got perfect! my new favorite shirt.",5,1,0,General Petite,Tops,Knits +993,42,Absolutely beautiful,"This dress is very beautiful. the dark color makes it very elegant. i tried on different top (white, silver, light blue, etc). they all look very nice with the dress. you can wear it casually or formally...depending on what kind of top you wear.",5,1,0,General Petite,Bottoms,Skirts +872,42,,"I tried this on in white and my usual size small. it is such a beautiful top and the detailing, lace trim is so pretty. my only complaint is that it lays funny on my cleavage, and i don't have much. it just gathered there and appeared clingy in that area. it's also one of those...am i hiding a pregnancy tops. i like it, but i think i'll wait to see if it goes on sale.",4,1,5,General Petite,Tops,Knits +937,66,Keeper,"Have been looking for a motorcycle style sweater for a while and hit the jackpot with this one. i have a large 34g bust and it's hard to find one without overly large lapels. these are perfect and they stay down, which is hard to find too. perfect length, beautiful color. not too long in the back. it has zipper pockets and the photos don't show the silver grommets on each side at the hem. the body of the sweater has a different knit than the sleeves so it has a bit of that vest over sweater look",5,1,3,General,Tops,Sweaters +937,37,Cute and stylish,"This sweater is very cute. i got a medium, i'm broad in the shoulders and a 34c. i wanted it a little loose. threw it over a tshirt and was not itchy at all. i feel it is light weight and perfect for our mild winters in florida. can't wait till the weather cools down to wear it.",5,1,1,General,Tops,Sweaters +871,26,,"Was hesitant to order it as first since i was worried it might be a little too boxy in person. glad i tried it since that turned out not to be the case. drapes nicely (exactly like in the picture) and can be worn either on its own or layered with a cardigan/shrug. loose fit means i can wear it to work, too. am usually between a small and xs but the xs fit me well. also wanted to mention this hits me right under the waist and i'm 5ft4 so there is a chance it could be a little too short for someon",5,1,4,General,Tops,Knits +938,48,Great casual sweater with lovely details,"I'm wearing lots of these long cardigans right now. this one is comfortable but holds up well. the blue color is a lovely wedgewood blue. the little tie detail on the back of the neck is cute, but doesn't get in the way. it's great for casual or casual work wear.",5,1,0,General Petite,Tops,Sweaters +938,65,Beautiful shade of blue,"Great, rather heavyweight, long cardi. i purchased the blue, which is a lovely shade of gray/blue, not quite as bright as the picture depicts. pin is adorable; doubt i'll ever use it to close the sweater, but still a nice touch. for reference i'm 5'5"", 136 lbs, 34ddd and typically fall between size small and medium. took a medium in this one and glad i did. perfect fit. falls exactly like on the model.",5,1,0,General Petite,Tops,Sweaters +938,31,,"Beware! there is a reason this sweater is on sale. it is not even remotely the same color as pictured. instead of the lovely antique blue in the photo, this sweater is a faded, boring, teal-green. what a huge disappointment.",1,0,0,General Petite,Tops,Sweaters +984,55,Ab fab!,"Love the distressed look and linen-like texture. the back ties cinch in for a custom fit & the knit hood is a nice touch. the length is great! fits tts (exactly as depicted) if not slightly roomy, which i like. absolutely fabulous!",5,1,4,General,Jackets,Jackets +872,35,,"Gorgeous top but runs large, especially in the arm holes.",3,1,0,General Petite,Tops,Knits +1059,26,For work and play,I knew i had to have these when i saw them on one of the retailer store instagrams. i bought them in the blue color combo and they are very comfortable and can be dressed up for work or paired with more casual clothing because of the material. they run a little large and have a lot of stretch so i would size down.,5,1,1,General,Bottoms,Pants +872,33,Beautiful top but too big,"I thought this top was absolutely beautiful! i couldn't wait to get it in but unfortunately it was very big on me. (i'm 5 ft, 105 lbs and got the pxs) the arm holes were so big as well as the overall fit. i'm very disappointed, i really wanted this top to work.",3,0,5,General Petite,Tops,Knits +1059,36,,"These pants are amazing and great quality! thank you to the reviewers who suggested sizing up one size. the trousers don't have a lot of stretch and are very cute and well-made and the size up is perfect! i am normally a 2r in most pants and skirts and i sized up to a 4r, they are perfect. gorgeous pattern, and i too, am not a ""pattern""-type. will go perfectly with a number of the solid, flowy maeve tops i have for work.",5,1,0,General,Bottoms,Pants +246,55,Cute and sporty,Really cute suit but way too small up top. not enough coverage under arms and across bust.i wish retailerpolgie carried bathing suits in the stores so they can be tried on. this is the 2nd suit i have ordered that had to be returned. i wont order a bathing suit again as its just to much of a risk.,2,0,1,Initmates,Intimate,Swim +984,56,Super stylish,"This vest is the one thing i will wear all year round. i couldn't wait for this to arrive, it looks and fits just like the pictures. great quality and value, is very stylish and adds a little flair to a simple top and jeans outfit. i have worn it several times and, in addition to looking great does keep you warm.",5,1,1,General,Jackets,Jackets +1059,65,Another charlie winner,"I am not really a ""print person"" but cartonnier gets it right every time - modern prints that lend themselves to many styling and paring options. the charlie trouser, which they do every season, is a great fitting pant (going up a size is a must as they do run small) with details (stitching, buttons, pockets) that make their pants look more expensive than they actually are. +i bought these in the blue combo when i saw them at my local retailer store. the blue combo has both blue and black (as well",5,1,16,General,Bottoms,Pants +1059,23,High quality and flattering,"I have the blue version. i love the bold, pop art pattern. the colors are strong but neutral enough to pair with a myriad of different options for the top.",5,1,0,General,Bottoms,Pants +938,34,,This cardigan was a keeper for me. i love the pin that pulls the two sides together or worn open is just a nice decoration. four starts only because i felt like the arms ran a little short.,4,1,0,General Petite,Tops,Sweaters +938,57,,"I agree with the last reviewer this is a great cozy sweater. i took an xs regular and i am 5'6"" 108lbs. the pin is used to close the sweater (no button). plenty of hand-knit sweater vests,wraps,shawls come with or are given with pins for closure. you will find many uses for the pin but as it is shown in the photo..... not likely.",5,1,2,General Petite,Tops,Sweaters +993,30,Great piece,"I got this planning to wear to a wedding, but have dressed it up for a gala event and down with a white sleeveless top to an awards ceremony. i've definitely gotten some mileage out of it! like the other reviews said, it is long, but was able to easily trim excess fabric from the bottom and it works perfect with wedges. love it!",5,1,0,General Petite,Bottoms,Skirts +1059,44,Very stylish and fitting,"You have to try it on to see, it fits really well and looks stylish. i love it. +my only concern is the fabric is rather stretchy, not sure if it will hold up well in the long run.",4,1,1,General,Bottoms,Pants +938,60,Beautiful but not for me,The length hit at the wrong place for me. lovely knit though so i am very disappointed. it will be going back to the store. interesting muted color that strikes just the right balance. very warm - perfect for fall and winter.,4,1,0,General Petite,Tops,Sweaters +1059,50,Adorable and high quality,"These pants are very, very cute and high quality. they can be worn with a variety of colors and can be dressed up or down. they are also very flattering. i definitely recommend sizing up as they run small. my normal size was a tad tight in the waist and there is very little stretch - but the next size up was perfect.",5,1,5,General,Bottoms,Pants +1059,52,Dress them up or down,"Let me talk about the fit. i am a size 6 petite. i weigh 120 and am 5' tall. i am curvy and have short legs. what little height i have is in my torso. that being said, i ordered the 6p and the 6. no doubt about it! the 6p fits like a 4p. the 6p was tight in the hips and thighs. the size 6 regular was a perfect fit. if you want the pant to have s cropped look like in the picture then order up a size and stay in petite. so i would have ordered a 8p i'd i wanted the cropped look like in the pic. bu",5,1,5,General,Bottoms,Pants +832,27,Beautiful blouse,"I love this blouse, it's very unique and gorgeous. this blouse is versatile with short, jean and skirt. love it!!!",5,1,1,General,Tops,Blouses +1003,44,Comfy,This skirt is very comfortable and fits tts or even runs a bit large. i was able to dress it up with a great white shirt and statement necklace. great find.,5,1,0,General Petite,Bottoms,Skirts +1082,28,,Lovely crochet lace tunic. also very comfortable. doesn't wrinkle and the cotton has a lovely feel.,4,1,0,General,Dresses,Dresses +1082,57,Stunning!,"This dress is even more gorgeous in person! i had seen in the spring catalog but liked it even more when i spotted it at my local store. i have been searching for the perfect ivory crochet or lace dress each summer for the past few years. i think i have finally found ""the one'! i should note i am 5'9"" and this dress goes all the way to my knees. it may swallow someone on the shorter side.",5,1,1,General,Dresses,Dresses +1082,56,I wish it was the same dress in the store,"I liked the look of this dress online, so i called my local store and had them hold it in a small and medium because of the reviews. i am a 34dd, and had no issues with the bust on the small dress. it's a pretty, feminine dress and i'm glad they had the 20% off sale when i decided to buy it. the reason i'm writing a review is because the dress here is not the same as the dress in the store. the dress in the store is pictured in the ""get the look"" photo. the dress in the store has cap sleeves, wh",4,1,10,General,Dresses,Dresses +1082,32,,"It is a pretty dress but runs large, i usually wear small and i ordered a regular xs because they are out of petite... it fits and since i am pregnant it works but it is a little large around the waist... +the lace is beautiful and the quality is amazing",4,1,0,General,Dresses,Dresses +862,53,,"I love, love love this top. i've bought several over the years and they wash great and are very flattering and comfortable. i always pick up the newest color.",5,1,2,General,Tops,Knits +1144,51,"Great quality, runs small","This lovely skirt absolutely hits the mark for quality. it is a substantial weight for fall, a deep vivid blue color, and just the right length to wear with boots. it was a trifle snug in the waist. i would have kept it anyway, but the oversized pockets stuck out on either side in an awkward way. at this price, it just wasn't right for me.",4,1,0,General,Trend,Trend +1082,46,Priceless classic,This is one of my favorite.it is timeless for sure.,5,1,0,General,Dresses,Dresses +1082,39,Nice ivory vintag-y,"I tried on a regular size at the store, and definitely need petite (5'1.5', 115 lbs). the dress is comfrotbale, and the ivory color gives it a victorian feel. the sleeves are nice a cover the shoulder in a flattrering spot, where hte muscles meet. there is alining, so not see-through. length was too long, why i need petie, also loose-fitting, i would like it more a little more fitted, jsut a bit.",4,1,25,General,Dresses,Dresses +1082,26,Gorgeous dress,"I stared at this dress for a long time online and finally went into the store and tried it on. it is a beautiful quality and material. note that it is ivory, not pure white, which is exactly what i was looking for. the fit is more of an a-line and it is slightly long which is part of the style of the dress. i am taking it with me to a beach vacation in mexico but i plan to wear to many more occasions because this could easily be dressed up or down. just don't wear it to a wedding since it is a w",5,1,1,General,Dresses,Dresses +1082,73,Yuck,"The dress is not the beautiful color in the picture...it is a very yellowish cream. the fabric is thick and does not +hang pretty. very disappointed. had to return it.",2,0,0,General,Dresses,Dresses +832,23,Unique design,"Loved this blouse when i received it after ordering online! the cut and style of the blouse is so cute and looks great with jeans. it is well made but it is see-through so i had to wear something under it. otherwise, really flattering, unique design!",4,1,1,General,Tops,Blouses +676,40,,Cute skort but seems to run big. it's also sort of long for shorts (the model must have much longer legs than me). i may try a size smaller since i love the print but i'm not optimistic.,3,1,4,General,Bottoms,Shorts +1003,60,,Super comfy skirt! can't wait to wear it to football games this season!,5,1,0,General Petite,Bottoms,Skirts +1082,41,,"This dress is gorgeous. more ivory in person. the crochet is amazing. i sized up from my normal s to a m, only bc i wanted a loose fit. and after reading reviews that it fit a little bit like a shift, i wanted a bigger size. but a small would have prob worked as well. depends on how you want this to fit. i love it. i wear mine now w a cropped jean jacket and leggings, soon w just sandals. great transition piece bc it's a slightly heavy dress but not enough to be overwhelming or hot for the summe",5,1,3,General,Dresses,Dresses +1082,28,Summer vintage,"I absolutely love this dress. i'm always leery about buying lace and white, but i love this off-white color and style. i was able to stretch the sleeves a tad to make them more fluttery, but they aren't as fluttery as the photo looks. definitely more of a cap sleeve. got so many compliments!",5,1,0,General,Dresses,Dresses +1144,34,Very cute,"This skirt is really adorable, but only if you're going to tuck in your tops. the pockets flare out at the top, so shirts don't lay correctly on them. instead the bottom of the shirt floofs out and looks really dumpy. tucked in though, super cute! + +the waist is really tiny and the fabric has no stretch to speak of. i usually take a 0/2 pant or 25/26 jean. i ordered the xsmall and could only get the top fastened by really sucking it in and struggling. i'll be exchanging for a small, hopefully t",5,1,2,General,Trend,Trend +1082,30,,I love this dress. the fit is great for tall girls i'm 5 9' and the length is perfect. can be dressed down with cute sneakers or up with heels. every time i wear this dress i get a ton of compliments and it is so comfortable.,5,1,0,General,Dresses,Dresses +1038,49,Love/hate,"I love these jeans! they are really cute and comfy, however, they are way too long. i couldn't believe these were a 33 inch inseam, but i measured them and they are. i am 5'4"" and put on a 4 inch heel and they were still dragging on the ground :( these will have to go back as i don't think the same look can be pulled off if they were hemmed.",3,0,1,General,Bottoms,Jeans +1036,33,"Great fit, just one small prob","I like the jeans a lot. they're definitely skinny fit and more like leggings -- very stretchy. i feel like they would fit all shapes and sizes because of that ""give,"" so the claim that they're flattering on everyone is probably valid. i also appreciate that there is no stonewashing, as grey jeans often seem to have -- they are all one hue from top to bottom, with a little bit of linear line texture to the fabric. the only flaw (at least i don't think it's intentional) is that the front pockets l",4,1,0,General,Bottoms,Jeans +1082,66,There's a reason the model is sitting down!,"The dress is really frumpy standing up. something about the bottom tier of lace just turns it into a frumpy maw-maw nightgown. the lace is really pretty, though",2,0,8,General,Dresses,Dresses +1082,45,Pretty everyday dress,"This is a great everyday dress. i bought it in black and it looks cute with wedges. it's a little boxy but that also makes it super comfy so i don't mind that too much. definitely order one-size down if you're between sizes. you may want to consider petite, if it's available, becuase i found it to be a bit long for my taste. (i'm 5'5"" and it hits at the knee). i've already worn it a few times and have had received several compliments.",4,1,0,General,Dresses,Dresses +1082,40,Go to lbd!,"Love, love, love this little lbd! +lots of rich detail and still very easy and laid back. dress up or dress down. +i will be wearing this into the fall season. i purchased the l, still roomy, tried the m but a little snug in the shoulders and chest. i am usually a size 12, d cup. very flattering style boho chic.",5,1,0,General,Dresses,Dresses +1082,26,Great detail,"Purchased this dress in black and love it. there is so much detail in the crochet, and can be dressed up or down. i am contemplating buying the same dress in white!",5,1,0,General,Dresses,Dresses +1038,23,Flattering,"These jeans look amazing on. i'm 5'5"" and an hourglass figure and these fit perfectly. if you like high waisted jeans, these are for you! a small heal does need to be worn but i wouldn't say they are excessively long.",5,1,0,General,Bottoms,Jeans +1082,40,Unique dress,"I love this dress for it's unique design with the crochet features. it is super comfortable, great for being layered without see through. i ordered a small though and it is still too large for me. i have been trying to decide on returning it since i love it so much. i'd recommend sizing down for this dress. i'm 5'6'', 135lbs, and still needed an xs which seems a bit off. i guess i'm used to retailer running a bit big, but i miss judge this one and hate to deal with the mailing and worrying",4,1,0,General,Dresses,Dresses +676,46,,"These looked so cute and colorful! very sad to receive them yesterday and having to return them today. cute overall, but run large. depending on cut/style, i range from 2-4 in bottoms. i ordered a 2 in these, and they were just way too big. i would exchange for a zero, but i bought them for a trip this weekend. oh well.... consequence of online shopping!",3,1,1,General,Bottoms,Shorts +1082,43,This is the lbd you need!,"Love love love this dress! have received so many compliments on it. i'm 5'4"", 118 and xs fit perfectly. love the cap sleeves and details, super comfortable too. i can see wearing this year-round and dressing it up/down.",5,1,0,General,Dresses,Dresses +1082,44,Not flattering on me...,"I am 5'4"" about 120# with an athletic build. i was so excited for this dress to arrive. when i removed it from the package i loved the way it felt and the weight of it. the color was as pictured on my computer. i ordered the xsp and was concerned it would be too small in the shoulders or too short. it was huge on me -- too long -- too wide -- too frumpy -- too loose all over. i checked to make certain it was a petite that was sent and it was. boo. i do like the cap sleeve better than the flutter",3,1,1,General,Dresses,Dresses +676,31,"Fun, flowy, vibrant","I'm really looking forward to wearing this skort on vacation in hawaii. it's a great color, soft, flowy, fun, practical.",5,1,1,General,Bottoms,Shorts +1082,37,Knock out in crochet!,"This is stunning. even more stunning in person. the crochet is divine. every inch of it is beautifully detailed. it's got a bit of weight to it and the crochet is very high quality. i am normally a l or xl, and i have curves. this is why this unfortunately did not work for me. it fits more like a shift with a little more aline room. on the right shape, it will be perfect. if you're curvy, size up. if you're lean or narrow, you might want to size down. the length is heavenly for tall gals, but wi",5,1,51,General,Dresses,Dresses +1082,43,Great lbd,"This is a beautiful, high-quality little black dress. it actually has a little weight to it, but nothing bothersome. i usually take a medium across the board, but i had to size up to a large. this is dress has more of a straight line versus a-line and i have wider hips, so the large fit really good. it's beautiful and versatile. i just wore it to my high school reunion and got compliments : ) great purchase, i would highly recommend.",5,1,0,General,Dresses,Dresses +676,44,The summer skort,Great summer skort! these are exactly what i have been looking for to wear to the carribean! the material is substantial but not enough to be hot nor too little to be called thin. the skort is constructed well with nice flow between the skirt and short portion which is sometimes a miss with other skorts i have tried on. it does run slightly large. i also sized down after initially trying on the one in the photo.,5,1,1,General,Bottoms,Shorts +862,44,,"I am so glad i found this tee. as usual i love bordeaux rayon-spandex shirts. the fabric is soft and comfortable. it's heavy enough to drape nicely contouring your natural curves. it does not cling to the body, is just loose enough to let you breathe during the hot summer days. i was afraid it would look like a swing tee and make me look like i am pregnant but it doesn't. it runs true to size. the only complaint i have is that the back runs too long.",4,1,2,General,Tops,Knits +1082,62,Cute lbd,"For anyone who loves lace. it fits pretty true to size. the size m length hits just to the top of the knee. i' 5' 4"" tall. to lighten up the dress just a little so that it does not look as some have said ""frumpy"" i hemmed the liner so that the liner hem is half way up on the ruffle. this makes the dress look less heavy, more fun, and repeats the openness of the lace on top. love this dress! will be wore a lot for summer evenings out.",5,1,0,General,Dresses,Dresses +676,33,Adorable and unique,A scandalous mini skirt that isn't a skirt! beautiful pattern. does run a little big.,4,1,0,General,Bottoms,Shorts +832,64,,"The look is frest, crisp with a touch of romance. very retailer!",5,1,0,General,Tops,Blouses +1082,31,Pretty but tight in bust,The xxs petite fit great except in bust and shoulder area. i'm a 32a and it was really tight.,3,1,19,General,Dresses,Dresses +1082,63,Elegant but easy,Ordered a few things for a last minute decision on what to wear to a wedding - i slipped this on right out of the box and decision was made! tunic style is great for all body types and hides any bulges. crochet neckline and sleeves are cute and a little sexy. dress is very comfortable and not too short. wore this with pearls and ankle-strap pumps for a dressier look. very happy with this one!,5,1,0,General,Dresses,Dresses +1038,40,,"I just tried these on today in the store. i'm 5'5 and found that they were definitely the right length for heels. the 33"" inseam is correct. however, i had them ordered in a petite so i could wear them with flats. these are super cute jeans!!!",5,1,0,General,Bottoms,Jeans +676,46,Awesome printed skort,"Wow! i had been looking at these shorts online...then found only one pair left at my store in a size four--a size i can sometimes squeeze into...luckily, these really do run a full size larger without being snug/too tight...$19.95 with 40% off!!!???? yes please, cannot wait to wear them next summer! and p.s. per above reviewer, you do need need to cut the cross strings at the pleats--they are just meant to keep the shorts nicely pressed/flat in the store, then you are on your own!",5,1,0,General,Bottoms,Shorts +895,20,Great light weight sweater,Great green color. drapes well. nice gray detailing adds dimension to an already pretty sweater.,5,1,0,General Petite,Tops,Fine gauge +1000,24,Awesome skirt,"Fits just like on the model, even though im 5'4''. really happy with this casual summer find.",5,1,2,General,Bottoms,Skirts +903,36,Retro chic!,"When i saw this sweater, it made me think of the 70's chic trend thats very now but due to the colors (my favorite tones) it would be something i would be reaching for for years to come. i love it combined with jeans but i also worse it over a dress (see photo) - i am wearing it over corey lynn calter floral dress ""paeonia dress"", and i paired it with the ""rosebud layered necklace"". i got two of this sweater as i want to have one for when i wear the first one out :) i am 5'6"", 127 and even thoug",5,1,12,General Petite,Tops,Fine gauge +1087,29,,"I thought this dress would make me look washed out, but absolutely doesn't--beautiful pop of color, and unique design. i've received many complements, this one is a keeper.",5,1,0,General,Dresses,Dresses +1016,50,Pretty and versatile skirt,"This is a flattering skirt for work or play. a few things to be aware of: +- it is a lightweight knit without a lining (would travel great and never need ironing) +- the waist is quite high +- the waist is quite slim (people with tummy self-consciousness might feel funny in it) +- the hang is flattering for people with butts and hips (such as myself) +- true to size for me + +i decided not to keep it because i couldn't come up with enough tops to love it with and because for the money i would",4,1,1,General Petite,Bottoms,Skirts +1086,47,Cute,This dress is super cute and sexy. i bought the taupe in a size medium. for reference i'm tall (5'11) and weigh about 152. i don't know how tall the last reviewer is but this was not too short in the front for me. i really like it.,5,1,7,General Petite,Dresses,Dresses +295,33,Long sleeve version of the tanks,"I was really excited that they decided to make these. i am a big fan of the tanks and wanted a long sleeve (or even short sleeve - hint!) version of them to wear under suits to work in the winter etc. these do the job nicely - bought ivory and black. other reviewer is right however, something strange in the shoulders as they are quite narrow and the fabric tends to bunch a bit and the arm length is a little strange. i am 5'8 and 150 lbs and order a medium in most retailer stuff and i tend to buy a",4,1,1,Initmates,Intimate,Layering +1021,39,Stunning but runs small,I loved the texture and look of this skirt. very classy. but it fits tight-- i usually take a 4 or 6 on skirts depending on where the waistband hits and i could barely squeeze into the 4 and could not get it zipped. i'd need to go a size bigger in this one but now it's unavailable :(,4,1,1,General,Bottoms,Skirts +903,39,Still debating,I tried on the petite in the store and loved it it's just the color kind of washes me out a bit... nut i did love hte fit and style...,5,1,0,General Petite,Tops,Fine gauge +903,33,Whimsically pink,This sweater has a retro feel to it. i like how it hits right at the hips and it's not too long or not too short. it keeps you warm and it's a nice alternative to all the drab sweaters that you would usually wear in the fall or winter.,5,1,0,General Petite,Tops,Fine gauge +1084,40,Great flowy dress,I love the unique style of this dress. the bell sleeves and the rather fitted body that poofs out at the end put the focus on these details. as for fit ... i'm a standard xs petite and the xsp fits to a tee.,5,1,0,General Petite,Dresses,Dresses +895,46,"Pink version is so pretty, xl fit great","I ordered the pink and it is the slightest hint of pink mixed with ivory. it fits true to size. the detailing of the crochet is outstanding. it reminds me of seashells that my daughter & i collected last year when we visited san diego. i wish the teal green one would be in stock in xl. i would grab it up. it's not the softest knit, but it's very comfortable to wear all day. very pretty version of a cardigan.",5,1,0,General Petite,Tops,Fine gauge +973,58,Flimsy and disappointing,"Even at a very deep discount, this piece is definitely not worth the money. the picture made me think this jacket had a longer curved velvet hem as part of its design (which would be cool)--which is largely what attracted me to it, but as i discovered when it arrived, that was actually part of the shirt worn beneath in the photo. so this image is rather misleading. the actual jacket is very thin--more like a shirt with an open front than a jacket. the pockets are just loosely tacked inside. for",1,0,6,General Petite,Jackets,Jackets +1086,30,Adorable dress,"I love this dress. i bought this dress in both a m and a s. i was worried about how ""loose"" the dress would fit and also how short it would be. the information about the model wearing the dress only said that she was 5'10"" but not what size dress she was wearing. i am 5'11"" and am in between a dress size 2 or 4. the medium was way too wide, but the small was still long enough with the perfect amount of flow. i purchased the green/slate color, which is more green and has very faint stripes. very",5,1,1,General Petite,Dresses,Dresses +1016,29,Nice skirt,"I disagree with the other reviewer - i thought the fabric of this skirt was high quality, and while it wasn't lined i don't think lining is typical in a sweater material. i also really liked the patter and the swingy bell shape. i usually wear a 6 or 8, but my store only had a 4 available. it fit, but was a little tight in the hips. the skirt was also longer on me then on the model, but i'm on the short side.",5,1,3,General Petite,Bottoms,Skirts +1021,25,Fun skirt!,"Great fit, a little stiff. i typically wear a 4, and was able to take a 2 in this skirt, though a 4 would probably have been fine! it's just a fun skirt, with a little shimmer to dress up an outfit.",4,1,0,General,Bottoms,Skirts +903,66,Lovely soft colors,"This is a sweater i love to look at and wear for any occasion. it looks on me almost exactly like the model picture in the online photo. i'm 5'6"". i bought a small and it fits very loose and comfortable. i would suggest 1 size smaller than usual would fit well. i usually wear small for tops and medium dresses. it is great to layer with a brown or rusty copper large cardigan. it has a somewhat southwest blanket look with its colors of soft apricot and soft brown plus 1 turquoise stripe. it dresse",5,1,0,General Petite,Tops,Fine gauge +895,53,This product has a fabulous design,This product was offered in a pink color which compliments many color palettes. perfect for layering.,5,1,0,General Petite,Tops,Fine gauge +1016,43,Not impressed,"Had high hopes for this seemingly cute skirt to use as a basic in my spring and summer outfits. however, that was not the case. this skirt is not lined and the material is so so. basically, for the price, i was underwhelmed and will return it.",2,0,6,General Petite,Bottoms,Skirts +895,49,Love this sweater,I bought the gray and it is so much prettier than it appears online. i agree with a previous post that it feels lighter but that works for me because i find wool terribly itchy and this sweater is not. i love it!,4,1,0,General Petite,Tops,Fine gauge +295,55,Runs very small,"I nearly always wear a size small, and sometimes even a small is too large. not in this case; this top is extremely snug. i would not be able to wear this, and i would've returned for a larger size but the ivory color was a little too yellow for me. in the online photo. the color is more of an off-white than ivory yellow. i'm guessing also that this fabric may not stand the test of time and easily snag. but that's just conjecture.",3,1,0,Initmates,Intimate,Layering +903,39,"Gorgeous, well-made sweater",Fits true to size and rides the line between contemporary and retro exceptionally well.,5,1,0,General Petite,Tops,Fine gauge +1080,28,Wanted to love.,"I was so excited for this dress to arrive, but when it did, it was a major disappointment. there is no lining on the skirt portion of the dress leaving it sheer. also, the top part along the chest puckered in a weird unflattering way. the colors were beautiful, but not enough to to make up for the other design flaws. i am 5'6"" 140lb and the small fit tts. will be sending it back",2,0,0,General Petite,Dresses,Dresses +1084,53,Lovely for fall,Love this dress! it's so soft & not to short like some retailer dresses. great transition piece! i'm a fan of bell sleeves & can't wait to wear this with boots& tights this fall.,5,1,1,General Petite,Dresses,Dresses +964,70,Great quality,The malabar moto vest is made of a beautifully soft fabric and is lined on the inside. the added details - pockets and epaulets - are a plus. the vest has snaps and a zipper. the length is just right and the vest has a flattering shape.,5,1,1,General,Jackets,Jackets +1003,38,Runs small,"I usually wear a small, sometimes and extra small, so when i ordered this skirt in a small, i wasn't worried. when it arrived, there is no stretch whatsoever and i'd have to wear it really it high in order to zip it. not necessarily a bad look but it is a little uncomfortable (no give, stiff material). it is really pretty, bright color and the eyelets and slit are unique. might try the next size up.",4,1,0,General Petite,Bottoms,Skirts +1080,36,,,5,1,0,General Petite,Dresses,Dresses +831,38,"Oh dear, no!","Uhm no. oh dear, no. i was initially drawn to this blouse's lovely fabric, the color and pattern are truly stunning. i decided to give it a try because it seemed somewhat boxy, oh boy was i right. sadly, this is one of the least flattering tops that i've ever tried on at retailer. it might be a great maternity top, though.",1,0,1,General,Tops,Blouses +895,22,Need to see this in person,"The photo does a disservice to this beautiful sweater it is truly special with a lace scallop pattern down the front and across to the back. it is absolutely beautiful!! the sweater is lightweight, perfect for a cool day or in an office on a cold day.. i snapped up the grey and may purchase the green if it goes on sale.(unless they can show this sweater off better i am certain it will.) i am usually right between a small and a medium and needed the medium in this sweater. the small was bit tight",5,1,2,General Petite,Tops,Fine gauge +216,37,Always active...,"I love these leggings so much i bought them in every color/design!!! they are amazing! +super stretchy and great for an active lifestyle be it pilates, yoga, playing with kids at the park or coffe with the girls.",5,1,0,Initmates,Intimate,Lounge +964,42,Perfect for all seasons,I ordered my usual size-small. it is perfect because it has enough room to fit a thin shirt or turtleneck underneath when the weather is cooler. the material is very soft. looking forward to a lot of wear out of this vest.,5,1,1,General,Jackets,Jackets +1072,38,Very nice dress,"I ordered my usual size 6 from retailer and it fit perfect. for reference i am 5'8"" and 137 pounds. unlike the other reviewer i did not have trouble getting into or out of dress. it buttons down the middle so you just need to make sure you undo them enough to get past your chest;) i really like this dress. i think it's beautifully made. is it my favorite dress i've purchased from retailer, no but still a nice dress:)",5,1,1,General Petite,Dresses,Dresses +1080,32,Almost great,"I tried this dress in an xs (my usual size) and it is tts. i love the fabric and pattern and the tiers of the dress are pretty. however, the color kind of washed me out and the neckline made the dress look matronly on me. i didn't get the dress and wished it worked out.",3,1,0,General Petite,Dresses,Dresses +1086,77,Love love love!,I just received this in the wine color and it's gorgeous! it fits well and is very pretty. it can be dressed up or down. i can't wait until the weather warms up and i get to wear this. i have already ordered the other color! great purchase.,5,1,7,General Petite,Dresses,Dresses +295,51,,"This shirt fits very closely to the body. it has a very strange fit in the shoulder, though. the arms themselves are really long, far past my hands, yet it's very tight in the shoulder and under arm area. for reference, i am 5'10"", 130 pounds and ordered a small, which is what i usually need.",1,0,3,Initmates,Intimate,Layering +895,38,,"This sweater drapes beautifully, but beware it is pretty light weight and feels more poly or nylon than wool. i dont know if you could wear a top with sleeves underneath either, it will probably work best with just a cami. that said, i love the style. note... the sweater is pretty long. i am 5'2 and normally 12-14p and the regular size came down to my knees. the lp was perfect, just covers my tush and has adequate room for curves.",5,1,12,General,Tops,Fine gauge +831,28,,Poor quality. i expected much more from the material.,2,0,0,General,Tops,Blouses +1084,48,"Love, love, love!","This adorable dress has surpassed my expectations! i ordered an xs and s and am keeping the xs. for reference, i'm 5'6"", 120 lbs, 34c, and the xs fits like a dream. it's not sack-like at all. the top is fitted, and the bottom flairs very flatteringly. the bell sleeves aren't too long like some i've seen. the color and print are the epitome of fall! the length is perfect; it's long enough for work but short and flirty enough for evenings out. i can imagine wearing with heels or booties.",5,1,4,General Petite,Dresses,Dresses +1080,59,Lovely and comfy,I bought the xs and love it. it looks better on than in the picture. it travels well (no wrinkles after being in the suitcase) and it is generous on the sides so you can actually eat a full lunch and not feel boxed in afterwards.,5,1,6,General Petite,Dresses,Dresses +831,44,Perfect tenfold,"This is so retailer - pretty in pink, unique design and print. i love origami and i love pink, and this blouse is a perfect combo. i ordered size petite s (i'm 34b, 26 waist, 36 hips) and it fits perfectly (the hem falls on the upper hips, just like shown on the model). the top has structure, not too soft and not too stiff. i think the sleeves are very unique and great for those gals who are conscious about their big arms, like me. this top has everything: flair, bright color, unique print, but al",5,1,6,General,Tops,Blouses +1072,64,Mixed feelings....,"The fit and design are interesting. in the 00p, the fit was good though the dress was not easy to get into or out of - strategy required. the quality is fine. but the color was very ""blah,"" with too little of the bright stripes in an otherwise rather dull color scheme. that made the dress overall feel too busy and rather confused. with the lining and material weight, it would be more a cold weather item only, not an all seasonal dress. + +generally, it was interesting but not a ""most come home wit",4,1,6,General Petite,Dresses,Dresses +831,71,,Such a pretty pink feminine blouse. love the sleeves! great quality and true to size.,5,1,1,General,Tops,Blouses +1003,28,Very cute skirt!!,"I love this skirt! it is sooooo cute!! fits true to size and the color is beautiful. the cut out in the front gives the skirt a sexy touch, the fabric is very nice, i am in love! this was one of my best purchases from retailer!",5,1,0,General Petite,Bottoms,Skirts +895,42,Great cardigan,Purchased this in green and love the color. it drapes well - not too long on me and hung just past my hips. it has very thin sleeves as other review mentioned to cannot wear anything bulky underneath. overall very happy with this purchase.,5,1,3,General Petite,Tops,Fine gauge +903,31,Bought two mine didn't work,I got this as a gift and one for me. the medium fits my mom but i got the large because i'm 6'1 and it was large enough but so short waisted. i wouldn't recommend it for women over 5'7,3,0,0,General Petite,Tops,Fine gauge +895,35,Nice lightweight sweater,I caught this on sale and bought the light pink version. it is very lightweight and delicate. i must admit on taking it out of the box i was a little concerned at the shape / design- but once i tried it on i found it draped beautifully and was really a good buy. it is very unique and i think i could wear it with nice slacks for work or keep it more casual with jeans and a t-shirt on the weekend. the only drawback is that the material is not what you would expect from a sweater- it does feel more,4,1,0,General Petite,Tops,Fine gauge +831,37,Perfect summer top,I absolutely love this top! cute and feminine without being over the top. i basically love everything meadow rue puts out there...and this was no exception.,5,1,2,General,Tops,Blouses +295,35,Just a layering piece for me,"Wow! this sure is close fitting, as in suction cups to your body! yikes, definitely not forgiving for those of us with curves. to me, it seems like the material will wear well. i bought this for a great sales price so i may keep it, not sure. it would work fine as a layering piece but if i gain even 5 lbs, it won't work. i ordered the medium and am usually a small. the large might have worked best but probably still pretty clingy. i do recommend this if you are thin with no problem areas.",2,1,0,Initmates,Intimate,Layering +170,62,Very feminine,"After surviving the winter months in various combo's of flannel and wool, i was craving something feminine to wear for lounging and sleeping while traveling the mediterranean with a friend. this little gown looked ideal. the lace is very feminine, and smoother than i feared. i reserved a single star over concern that the jersey knit of the body won't hold up to the test of time. it is not sheer, rather just opaque enough so i won't be self conscious. the curved, high waist is flattering. +regardi",4,1,2,Initmates,Intimate,Sleep +170,44,,This chemise is so comfortable and beautiful. can be dressed up or down and is a staple of a bohemian wardrobe. gave 4 stars for the fact that it is completely see through and requires a (not included) slip underneath. also because the super thin cotton will wear easily.,4,1,0,Initmates,Intimate,Sleep +907,30,Great cardigan,"This sweater is really pretty. it is a little itchy, but seems really well made. i also like that you have the option of wearing it open with the tie tied in the back for some shape. a nice alternative to the basic cardigan.",4,1,0,General,Tops,Fine gauge +854,29,Ok,I was not a fan. cute design but the sweater was not soft it felt thick like a weird blanket. the arms were small and the body was big... odd combo. the material didn't make me want to put it on. it went back.,3,0,1,General,Tops,Knits +862,48,Great style,"Love this tee, purchased the blue and white, i usually wear xs in many retailer items but opted for a medium in this tee so it would fit loose. works good not fitting too tight. i like it because it's a tee shirt but it's a little dressy, great for going out to dinner, etc...",5,1,0,General Petite,Tops,Knits +150,34,Husband said it looked like a straight jacket,"This is way cuter on the model. it runs so big that it is very unflattering. perhaps on someone tall it would look better, but sadly it looked dumpy on my 5'2 frame. it also arrived with some black stain on it. it is going back.",2,0,0,Initmates,Intimate,Sleep +907,46,Disappointment in the ivory version,"I ordered this in size xl in ivory. it was a drab, poorly-made, too-small sweater. the knit material wasn't good quality and the overall fit didn't work. i liked the light red color and maybe if that had been in stock, then i would have overlooked the problems. but, there are better ivory retailer cardigans available. this was returned.",2,0,0,General,Tops,Fine gauge +1184,44,Casual and dressy,I love the color of this top. it is a dark olive green and elegant. i mostly wear it under a blazer with my jeans. it fits true to size and the smocking detail is casual and elegant at the same time.,4,1,0,General Petite,Tops,Knits +170,55,,"I wanted this so badly, to wear as a dress over a slip. but it is not cute or flattering when you put it on. it made me look 20 pounds heavier than i am, and the fit was awful. i usually wear an xs in dresses at retailer and this swallowed me. i am petite but this is just waaaaaay too big. so disappointed because it's so pretty.",1,0,20,Initmates,Intimate,Sleep +1184,37,Dress up or down easily,This top is comfortable and vas easily be dressed up or down! love it,5,1,0,General Petite,Tops,Knits +862,42,,,5,1,0,General Petite,Tops,Knits +907,41,Pretty sweater,This sweater is quite lovely. the yarn is light and delicate and the sweater is over all very feminine and figure flattering. i bought the light red color which is quite attractive and i'm not usually a fan of reds and pinks. this sweater can be worn casually with jeans or more dressed up for the office. anyone that is looking for a sweater that can be worn with almost anything should defiantly consider this one.,5,1,0,General,Tops,Fine gauge +170,61,Adorable !,I saw this in the store and had to try it on. luckily i grabbed a couple sizes before heading to the dressing room since i thought it looked large but wanted to get the best look. i normally wear a large in most retailer items and if you want a really roomy look you could go for your normal size but i liked it a little more fitted and ended up getting a small. i plan to wear it over jeans or leggings. the delicate embroidery and details are so pretty. the stick out sides look a little funny but if,4,1,10,Initmates,Intimate,Sleep +170,49,Soft and sweet,"This dress is very soft and comfy but transparency is an issue. having said that, i think as long as you wear flesh-colored undergarments you'd be fine in a casual situation. the natural fiber is especially comfortable and the detailed stitching around the neck and chest area is pretty. my store didn't have petite sizes and the regular length was too long for me so i passed on it.",4,1,3,Initmates,Intimate,Sleep +854,36,Quite stylish,"Love this one. i usually wear a medium, got this in medium and fits perfectly. i agree with the prior reviewer regarding the arms, they are a little snug, but i like the fit just as is. the pattern and medium thinkness were just what i was looking for.",5,1,0,General,Tops,Knits +150,38,Great outerwear,"Beautiful jacket for a light day. fits a little large., so if you want it to fit a little more tailored look, order down a size.",5,1,0,Initmates,Intimate,Sleep +862,51,Beautiful color,"The color of this t is beautiful and the shimmer is understated. very thin fabric, but should be fine.",4,1,0,General Petite,Tops,Knits +862,41,Runs large and small!,"After reading the reviews, i ordered an xs and a s in this, though i usually wear an xs in bordeaux. i kept the xs. to me, the sleeves and shoulders run small, while the rest of the shirt is flowy through the torso. i prefer more fitted shirts, but decided this one looked ok. at 5'6"", the hem hit at my hip. i did not find it scratchy at all. in the pink, with a nude bra, it is not terribly see-through, but with a black bra, it is. i washed it in a lingerie bag and laid it flat to dry. maybe it s",4,1,0,General Petite,Tops,Knits +862,31,,I like this shirt. it's quite lovely. i ordered it in mint. it's nice to have a dressy t-shirt.,3,1,0,General Petite,Tops,Knits +150,31,,"I think this jacket is meant to be large on for a particular look. with an xs i had no problem. it's large, but slouchy and cute. i adore it!",5,1,0,Initmates,Intimate,Sleep +907,59,Love this sweater!,It is a great sweater that is soft but also warm i love the pretty design,5,1,2,General,Tops,Fine gauge +862,61,Lightweight & shimmery,Shimmery & lightweight t-shirts. i got the aqua & brown t's. good for layering.,4,1,0,General Petite,Tops,Knits +862,50,,I bought the blue and the white - the white is very sheer. the fabric is more scratchy on the outside than the inside - i wore it the whole day and it was not an issue for me.,4,1,0,General Petite,Tops,Knits +150,56,This product adds volume.,This jacket is very cozy but i had to send it back. i think it will be great on a taller person.,3,1,0,Initmates,Intimate,Sleep +150,59,Soft and stylish,"Love this jacket. it's soft and a beautiful shade of ivory. perfect for casual wear with a pair of black jeans, while still maintaining an elegant look.",5,1,3,Initmates,Intimate,Sleep +1020,35,Unexpected color,"First of all, the one that looks white is actually a powder blue color. this isn't necessarily bad, but i would have really liked a white one and i was disappointed when it arrived blue. i should have looked more closely at the picture and paid attention to the very unreliable color button on the website. + +at any rate, i like this skirt a lot as a causal everyday piece of clothing. in the summers, i tend to wear skirts rather than shorts and am always on the lookout for something that is not t",5,1,4,General,Bottoms,Skirts +877,33,Great fit!,"I purchased the purple t with letters all over. great fit, long and not clingy at all. i love the 80's motif/style of the letters. perfect t-shirt for a teacher. +the black design was strange - hearts, fox, cats... it just seemed random and no theme. i would buy colors of this t-shirt because it fits so well, but the black ""green"" design was too off.",5,1,0,General,Tops,Knits +1095,45,Beautiful pattern and nice fit!,"Very cute jumpsuit, especially for those who want to ease into the jumpsuit style. it looks very much like a dress but is very flattering as a jumpsuit because of the wide legs. the pattern is striking and bold but not garish. it has a low plunging neckline so you may need a camisole underneath (i did!) even though it has padding for those who want to go braless. i purchased a 2p and it fit my 5'3, 115 lbs frame perfectly. i would highly recommend!",5,1,0,General,Dresses,Dresses +1020,50,Wonderfully soft and cute pop of color,"My new go to skirt. great color for transitioning from summer to fall. i love the pockets and detailing, and yes, oh so soft...",5,1,0,General,Bottoms,Skirts +1033,40,,I knew from previous pilcro purchases to size down. went down 2 sizes and they fit perfect. this dark wash doesn't have as much stretch as some do which i prefer because they stay up all day.,4,1,0,General,Bottoms,Jeans +903,65,,I love this little topper. it is very comfortable. it looks elegant.,5,1,1,General Petite,Tops,Fine gauge +1095,42,This is absolutely amazing !,"I can't get over how fabulous this looks on, how well it fits, and how flattering it is. i'm 5'8"" and size 8/10 on a good day. seriously - i'm so happy about it ! i plan to get a lot of wear out of it - works for a wedding, evening out, or the office.",5,1,0,General,Dresses,Dresses +1095,56,Graphic fabric not well handled,"I bought this jumpsuit in both fabrics. i adored the fit and feel of both, but sadly, the graphic fabric was not handled well in the construction. three examples: a thin white piece along one leg seam made it look like a hole; mismatched large pieces of white in the crotch area looked sloppy and wrong; worst of all, a diagonal was placed on both breast pieces, but they were different angles, which again looked sloppy and wrong in a place where you really want it to look neat and right. too bad b",3,1,3,General,Dresses,Dresses +903,53,Great little topper,"I tried this topper sweater on at the store but wanted to wait for it to go on sale so i just purchased it with my extra thirty percent off and think it's such a nice deal. i really like how this one is soft, well made, has nice long sleeves and how adorable the inside lining is. the lining matches the print inside the pockets that peak out a bit. i didn't find this one too boxy for me as it's a topper after all. there are no closure buttons or clasps but i think it's a great piece to throw on w",5,1,3,General Petite,Tops,Fine gauge +1020,33,Cute skirt!,"Great skirt, fits as expected. very cute, can be dressed up or down. i love the pockets!!",5,1,0,General,Bottoms,Skirts +1020,33,Really cute!,"I've seriously been on the hunt for a olive green military-ish style skirt for a couple years now and i think i've found it! the color is great! the finishings are cool(rose gold buttons!) i actually like the a-line, it give me room to sit down without riding up. the waist is pretty fitted, verging on tight and i ordered an 8. i'm usually a 6 or 8 in bottoms, but i need to trim off a few pounds from a recent vaca! so i'm keeping the 8, it will probably be perfect soon enough! the length is just",5,1,1,General,Bottoms,Skirts +1095,58,Lovely fabric and design,"I'm 5'2"", weigh 120 lb.. i ordered p6 and found the torso too short. if i bent forward or kneeled down that fabric would ride ride up into my butt big time. the top was a little loose too. i'm 35ab cup. i love the colors and geometric design. sadly i have to return.",3,1,0,General,Dresses,Dresses +1095,46,Very flattering!,"Love love love this jumpsuit! normally i stay away from jumpsuits because i hate to have to completely undress to use the bathroom, but this was too cute to pass up. fits great, extremely flattering to my athletic build, super comfy. it sort of looks like a maxi-dress due to the wide legs. length was perfect. i am 5'3"" and did not have to hem it.",5,1,0,General,Dresses,Dresses +1095,28,Gorgeous,I bought this in navy - it is absolutely stunning and looks like a dress on. super flattering and i don't even need to wear a bra with it,5,1,1,General,Dresses,Dresses +1095,52,Perfect,"This was absolutely adorable on. it does look a bit like a dress but at 5'3 and 118 lbs i am normally a size 4, and needed the 2 in this. it fit so perfectly i didn't consider the petite. i can go braless as it has a well lined build in supportive bra. i purchased both colors and it can be dressed up or down. only draw back is dry clean only. super cute, and i definitely recommend this. cuter in person and on.",5,1,2,General,Dresses,Dresses +1095,39,"Cute,looks like a dress on","If you are afraid of the jumpsuit trend but like dresses, this will be for you. + the cut is flattering, and may not need a bra (i am droppy, but it was fine). the legs are wide enough that one time, i had both legs in one hole, so-to-speak, and it is very flowy. the patterns are both nice, i like the geometric one, but the polka dot is always a classic. the petite size fit me just right (xsp) at 115 lbs, 30dd. i like the tie it goes from around the cups to tie on the back, so you can almost ti",4,1,30,General,Dresses,Dresses +1033,39,So - snug,"I ordered the 25 (my usual is 25p lately, maybe vanity sizing, used ot be 26p), anyway, could not pull all the wayup or tie... + +otherwise, good cut and nice coloring. if you have non0muscular legs and bottoms, thee would be great. going back (i am 115lbs)",4,1,2,General,Bottoms,Jeans +1095,26,Super flattering and flowy,"I loved this at first sight, and ordered it in a 10, 12, and 14 to make sure i'd get one that fit me. (i ended up with the 12). i wear a 32 dd bra, so usually braless is not an option, but this actually offers enough support. and, if i do want to wear a bra it's got a well placed strap across the back that will cover it. + +it's super flattering, and really fun to wear out day or night.",5,1,1,General,Dresses,Dresses +1025,37,"Beautiful design, dubious quality","Love these pants, and will wear them all season like a uniform. but, the quality is a little low. made in china, and the black dye may be coming off on white clothes and my skin. i haven't washed them yet, and a little scared to. super comfy, stretchy and still classy despite the quality issues.",4,1,0,General Petite,Bottoms,Jeans +903,46,Fantastic yellow cardi,"I ordered the mustard shade in size xl. it is so well-made & comfortable. the patterned lining makes it extra cute and extra soft to wear. it's washed well too. i like the shorter length. it it fun to play with proportions when using it. i ordered the navy in xl since i've gotten such great use out of the yellow one. it hasn't shed/pilled either. well-made, quirky and useful for layering!",5,1,1,General Petite,Tops,Fine gauge +877,33,,"This shirt is not what i expected. i ordered the ""green"" motif, which is not green at all but black. in the product photos the drawings appear to have a white outlining but its brown. the shirt is made of a good quality cotton and fits great. i ordered the medium. which gave me a lot of extra room to where i could have sized down to a small. for reference i am a 36b and usually wear a medium in most retailer tops. i don't plan on keeping this because i was really hoping for a white background to t",3,1,1,General,Tops,Knits +1020,43,Cutest skirt ever!,The fit on this skirt is flawless. i usually need alterations at the waist but this one was perfect for me. the buttons are so adorable and the color (orange) is vibrant and perfect for spring and summer. will wear this a lot!,5,1,0,General,Bottoms,Skirts +903,35,,This is now one of my favorite items in my wardrobe!! it is comfortable yet can be dressed up or down to fit any occasion.,4,1,0,General Petite,Tops,Fine gauge +1095,40,Don't like wearing dresses? try this.,"I met my friend at the mall today. she complimented me on my outfit (i was wearing this jumpsuit in the navy with white polka dots motif - there's also a red, black, and white geometric print if you're not into polka dots). half way through our time together, she realized that i was wearing a jumpsuit, not a dress. she said that the legs are so wide and flowy that she couldn't tell. we tried on clothes at another store and i forgot to re secure the straps with the little snaps to my bra stra",4,1,2,General,Dresses,Dresses +1033,29,All-in-all nice denim,"I bought these assuming they would be the same as a pair of pilcro stet ankle jeans i bought a couple of years ago. this pair has less stretch than my older ones, so they are a bit tighter. i'm 5'2"" and these are more like a perfect length regular jean (rather than ankle). i always have trouble finding jeans that fit my curves, but smaller waist. these are a bit big in the waist, with the butt and legs fitted. all-in-all they are a nice looking durable denim that flatters.",4,1,7,General,Bottoms,Jeans +1033,43,,"Great fit. i love the slightly cropped leg and the dark, unvariating stain. fits like other pilcros. one caveat...the stain rubs off. i can see it on the edges of my white kitchen countertops. i've washed them twice with mixed clothing, and there weren't any problems with color transfer there. still, i like them so much that i'll buy a second pair if they go on sale, and i'll keep wiping the edges of my counters down!",4,1,4,General,Bottoms,Jeans +903,43,It's in the details,This lovely cardigan is just that much more special due to the lining on the body and in the pockets. they peek out and make the sweater more interesting. i wore the black one with a lace dress with cream underlayment and the cream details on the lining worked perfectly to offset the formality of the dress and make the whole outfit casual but chic. the sweater washed in the machine and kept its shape when i hung it to dry.,5,1,0,General Petite,Tops,Fine gauge +1020,31,Great skirt,Fits great and i love the length. very cute skirt!,5,1,0,General,Bottoms,Skirts +1020,23,"Cute, but not flattering on","I really loved this skirt on the model, but it just wasn't flattering when i received my order. i ordered two sizes - 2 and 4. i am 5'4, athletic build and the front closure made my waist look much larger than it is. the back of the skirt also flared out more than i expected it to. + +sadly, i had to return both. perhaps this would look better on someone with a much taller frame.",2,0,0,General,Bottoms,Skirts +1095,32,So perfect,"If you're a little afraid to rock a jumpsuit this one's for you. the palazzo leg makes it look a lot like a dress. a light shelf bra was very supportive even for my d/dd cup. it does run large. i'm typically a 14/16 and was easily able to fit in the 12, although the look it a bit racier on me due to cleavage. hides any tummy you might have very well due to the flowing cut. the fabric is light and comfortable. my only complaint is i wish it was a tad longer. i can not wait to rock this at a weddi",5,1,9,General,Dresses,Dresses +903,39,Love,"A great staple to pull out on chilly mornings. i am 5'9"" so the arm length was perfect",5,1,0,General Petite,Tops,Fine gauge +1033,43,Good quality,These jeans fit very well and of good quality . i think they need to be broken into a bit like most new jeans. overall i am happy with my purchase!,4,1,0,General,Bottoms,Jeans +903,36,,This was so boxy and unflattering. i loved the lining and the fabric was very soft but it looked like i was wearing a bag. was hoping to use this as a cute top layer for dresses but it was a terrible fit. sizing down would not help this one. went back!,1,0,0,General Petite,Tops,Fine gauge +1020,40,Cute and comfy skirt,This skirt is really cute and very comfortable. i can dress it up for work or dress it down for casual. fun color too.,5,1,0,General,Bottoms,Skirts +1033,35,Nope!,I ordered these a size up because i'd just had a baby and knew i needed a bigger size. my pre-pre baby size (chubby phase) were size 8/29. these fit like a size 4. way too small. very disappointed!,2,0,0,General,Bottoms,Jeans +903,35,"Pretty shirt, not the right body type","This shirt is beautiful, however i thought that it was made of a softer, lighter material. it is, instead, made of a thick, heavy material that was unflattering for my shape. ( short torso ann's large bust) it made me look boxy and chunky in the middle. sadly, i'll be returning it.",3,1,0,General Petite,Tops,Fine gauge +1095,60,This jumper is perfect!,I saw this on line this morning and was hesitant to order one size smaller so decided to visit local anthopology store with fingers crossed they would have it in a size 4. i'm 5'5 130 and a size 6 usually in retailer clothing. not only was the size 4 perfect the fabric and quality are excellent. nice flowy pant legs and the top has a one button adjustment on the shoulder if you don't want it too low. either way worked for myself. dress up or down. this is a must!,5,1,1,General,Dresses,Dresses +903,49,So love! so cute!,"I saw these sweaters in the store this fall and took a pass - they didn't look cute and i thought they wouldn't be cute on, because the little pockets looked droopy --but i was so wrong! once they went on sale, i took a chance b.c. i needed a black lightweight cardigan for a trip. ordered a size small and it fits perfect - so cute, i just love it! glad i bought it at the sale price because now i'm even happier!",5,1,1,General Petite,Tops,Fine gauge +1033,47,Disappointing,"I have purchased many different styles of pilcro jeans, and have loved them all!!! these, unfortunately i do not like. i think they run large and the fit, just blah. the waist gapped and kinda had a ""mom jean"" look. i felt the quality was also not up to standard for this brand.",3,0,3,General,Bottoms,Jeans +1020,45,,"Love this skirt... perfect length and cut! pilcro, make more of these!!!! i ordered up so that it hug more on my hips than waist, just prefer that better, but i think if you can pull of the waist look, go for it! would buy more in different colors!",5,1,0,General,Bottoms,Skirts +877,65,Nostalgia tee,"Precious tee, washes well, runs large",4,1,1,General,Tops,Knits +1020,46,,I was disappointed in the blue color of this skirt. i was looking for white. also felt it ran a little big.,4,1,0,General,Bottoms,Skirts +1020,47,Cute and comfortable!,Just got this skirt in the mail and i am so happy i took a chance and ordered it! my waist is a lot smaller than my hips so skirts can be a challenge! but this one fit me perfectly! it is casual but i can also see myself wearing this to work in the summer months. it is super flattering and very comfortable! the fabric is soft and it does have some give. i am usually a size 30 in pilcro chinos and the size 10 in this skirt fit me perfectly. so i would say it runs true to size. a great addition to,5,1,18,General,Bottoms,Skirts +1095,35,Believe all the great reviews!,"I was obsessed with this dress/jumpsuit after i read all the great reviews, even tho i had never seen it in person. it was already on sale and sold out online, so i called a bunch of stores and finally was able to track one down in the navy colorway in my size (it's tts). so glad i made the effort! it's as great as everyone says it is. i love how it's ""party in the back."" i'm 5'3"" so it was pretty much floor length on me.",5,1,0,General,Dresses,Dresses +1091,28,Wanted to love but...,"I wanted to love this dress but there were too many factors that ultimately had me sending it back. + +it is a very unique piece and high quality; however, i have sensitive skin c/o irish genes, and something about the silk/linen/sequin combo had be itching like crazy and really irritated my skin. i also did not love the way the top part of the dress layed on me- it was like there was a bit too much fabric up top meanwhile fitting perfectly around my hips (so i wouldn't want to size down...)",3,1,5,General Petite,Dresses,Dresses +1036,79,Love..,"I'm in love with these jeans! they come very long, but it's easy to cut them down where you want them since they are not hemmed. i have a short torso so for me they were high waisted, but still flattering, which surprised me! for reference, i am 5'2, 105#, and i got the size 24.",5,1,0,General,Bottoms,Jeans +1095,38,Simply gorgeous,"I got the blue with polka dots. it fits more like a midi dress. it is a bit large, i'm usually a size 10 and got a size 8. it's gorgeous on. i don't think i'll be needing a bra underneath this. it's got a supportive band and the ribbon also helps. i might order the other bold print too, it just looks so good on.",5,1,1,General,Dresses,Dresses +1020,53,Cute,"I am not particularly fond of this skirt - it is good quality and nice color but i expected material to be little bit more substantial, it is too ""limp"" for my taste, but if you prefer very soft and ""worn in"" feeling, it might work great for you. also, i prefer wearing my ts over the skirt (not inside) and since waistband is very elaborate and is followed with thick buttons right below, it just looks funny under thin summer t-shirts : /. overall, just not working for me, but skirt is cute and tr",4,1,1,General,Bottoms,Skirts +1095,33,Stunning,"This jumpsuit runs large so i sized down perfectly one full size down. i have a size b chest and was very comfortable with no bra, as the built in cups gave me the perfect coverage. it looked like a dress standing, but had such a flattering and fun shape when you move. everyone loved it!",5,0,0,General,Dresses,Dresses +1020,57,Cool summer skirt.,"1. i'm 5'5"" tall, 145 lbs, and 38-32-40. i wear a size 30 in hyphen chinos and they are loose. i could get in a size 10, but i felt the stretchiness made it look like it was pulling slightly. i decided to get the size 12 even though it was a hair loose. + +2. the skirt hem is right above my knees. it's not as short as it appears on the model. + +3. the back pockets are sewn shut, so they won't sag. + +4. my only complaint is that the hook and eye at the waist pulls away funny, but i'm going to t",4,1,10,General,Bottoms,Skirts +903,54,Arms too long and waist too short,"Loved the color and the deshn. but when i put on, did not look right. waist was too short and the arms were long.",2,0,0,General Petite,Tops,Fine gauge +1095,51,Not a take home for me,"I just tried the blue polka dot one on at my local retailer. i'm 5'3ish, 117#, 34d-dd and usually wear a size 4 or xs in most retailer brands. i tried this in size 2 and had a better fit hence the runs large rating. this is a very plunging neckline. not work appropriate and i'm fairly notorious for being out there. the band in the back didn't hit right at my bra in the back so not sure what to tell you there. the shoulder straps are adjustable. there are 2 buttons so you can tighten it up a bit so y",4,1,6,General,Dresses,Dresses +1095,39,So flattering,"I tried it on and it fit like a glove. i'm only 5'2"" and i can wear with heals or flats. great built in bra. i'm a c cup and i've got a bubble butt. very flattering on my figure. quality worth every penny. many compliments. work appropriate or a luncheon! my fav retailer purchase by far.",5,1,1,General,Dresses,Dresses +1020,51,Lovely skirt,"I bought the skirt in green in size 6 (i am 5'4"" and 143 lbs). it fit very well and was very flattering and the length was perfect. i can see myself wearing it a lot this spring and in summer.",5,1,1,General,Bottoms,Skirts +1033,40,,Blue jeans that fit like a dream & they were on sale.,5,1,0,General,Bottoms,Jeans +903,35,Too cropped,"As others have said, this is cropped, so will look funny with most pants that aren't high waisted. i'm going to try it with a few dresses before i return it. the lining is adorable, so i don't want to have to send it back.",2,0,0,General Petite,Tops,Fine gauge +1091,58,Stunning one of a kind,Gorgeous dress worth every penny--one of a kind twist on a kimono!,5,1,0,General Petite,Dresses,Dresses +1095,45,Stunning and so comfortable,I love this jumper! it is absolutely gorgeous and also quite possibly the most comfortable piece of clothing i've ever owned.,5,1,0,General,Dresses,Dresses +1030,37,Heck yes!,"I am so happy i splurged and bought these jeans. based on the other reviewer, i ordered one size up, and they fit perfectly. i'm 5'8 and appreciate the longer inseam. i can't wear a wedge heel or anything with them, but with a flat on they skim the floor perfectly. you'll love the raw hemline and the subtle ""wear"" throughout the fabric. it's not overdone. just like in the picture, they really seem to narrow the hip, think page boy style. very, very flattering!",5,1,1,General,Bottoms,Jeans +1095,94,,Flattering! i love how it looks like a maxi dress. fits me perfectly!,4,1,0,General,Dresses,Dresses +1020,66,Everyday perfect,"This is a skirt i will wear every day in the summer...great green/khaki color, casual. fit me like all the retailer size +8's do...perfect... only one thing...it is not as short as it looks on this model. i am going to have to have it shortened...but that is not biggy. the skirt is everything i hoped t would be and i know i will wear it to death.",5,1,2,General,Bottoms,Skirts +1020,48,"So flattering, not too short","I'm 5'7"", 120 lbs, size 0 was best. ordered the green color. great flattering fit!",5,1,0,General,Bottoms,Skirts +1033,36,Didn't work for my body type,I really like the pilcro serif style but the stet style does not work for my body. will have to return.,3,0,0,General,Bottoms,Jeans +1095,64,Cute & flowy!,"I love hd paris styles & this jumpsuit appealed to me online so i ordered a 6p. i am usually a 4 or 6 in regular sizes at retailer. i decided the regular size may be too long & too much fabric for me. i am 5'3"", 118#, 36c. it was easy to slip into it, zip up the back & tie the black ribbon in the back. it doesn't say in the 'details' that it has a built-in bra which is a good feature. the bra cups are a little small on me but not a deal-breaker. the length is fine falling just above my ankles. i j",5,1,16,General,Dresses,Dresses +903,32,More mustard yellow than the website pictures...,"I like the detail in this cardigan. the shape is true to the fit on the model of the main picture, the sleeves are a bit long, however i am 5'2.5 and 107 lbs, i ordered and kept the xxsp. great staple item!",5,1,1,General Petite,Tops,Fine gauge +1020,41,Cute!,"The is such a cute a-line skirt and perfect for the summer with a white tee. i bought the moss color and the rose gold buttons on it look really pretty. i'm 5'1 ,103 pounds and bought the 00 regular since i did not want to go too short with the petite size. it does run slightly big so order a size down if you have a smaller waist. love this and the price!",5,1,6,General,Bottoms,Skirts +1033,60,Very good quality jeans,"These jeans are fantastic - the denim is very high quality and the fit is true to size. the dark rinse is very flattering and pairs well with almost anything. my only (small) gripe is that the length is a bit awkward. i'm 5'4"" and it fits more like a regular pair of jeans, not ankle-length. just something to keep in mind if you're not super tall like the model in the picture.",5,1,1,General,Bottoms,Jeans +903,40,,"I just bought this in the yellow and am very pleased!!! the sleeves are super long but i'm happy about that! usually, they are much too short, this is much cozier! this will look cute over dresses and with jeans and a longer/tunic style top. nice quality too",4,1,0,General Petite,Tops,Fine gauge +1020,31,"Really cute, with some drawbacks...","I really loved this skirt on the model. i ordered it in my typical 0 and it fit well. the green was adorable, and the buttons are rose gold, which is quite pretty. i did exchange this skirt for a 2, only because the 0 was just too short for me. if the 2 is a bit longer but not terribly huge in the waist, i will probably keep it. i was surprised by how large the a line felt, but i think i can get used to it. it really is very fun, and very easy to dress up or down. i'm really hoping the bigger si",5,1,0,General,Bottoms,Skirts +1033,35,"Great color, stretch not great",I loved the color of these but they bagged out with just one wear. they are going back to store.,3,0,5,General,Bottoms,Jeans +1020,43,Runs long and large,"I received the moss skirt today. the material felt very soft and like good quality. i'm 5'4', 125 lbs and had ordered size 4 regular. unfortunately the skirt was huge and also very long, below the knees. the cut was not flattering for me as the material stuck out very wide on the sides. possibly a smaller size and petite would help but are sold out already in moss. plus i'm not sure the sticking out would be fixed, that might be the cut of the skirt. it didn't work for me and i will be returning",3,1,2,General,Bottoms,Skirts +1020,26,"Beautiful, comfortable, transitional!","I absolutely love this skirt! i feel like the color works well for most seasons: you can pair it with a light tee or tank top and some sandals during warmer months, or layer it with a sweater, thick tights and boots in autumn. really nice staple piece for your wardrobe. i do think it runs a bit large: i generally wear a 6 (depending on the brand and style), but this 6 was way too large around my waist by at least a couple inches. i returned it and got a 4, which fit me perfectly. it's nice that",5,1,1,General,Bottoms,Skirts +1020,35,,This skirt makes me look at least a size smaller. i love it! the sa was wearing it in the store and it liked great on her as well with just a plain white top. tts- got my usual 10 in green.,5,1,1,General,Bottoms,Skirts +1020,50,Perfect skirt,"Thank you pilcro for making a skirt that is a great alternative to shorts or capris. i bought the green skirt and wore it on vacation. i realized a lighter color would be nice for summer, and ordered the light blue. it's tempting to get the red as well. the fit is great. i am 5'7 and the length is perfect. the skirt has weight. i am sure i will wear both of my skirts time and time again.",5,1,1,General,Bottoms,Skirts +1078,69,Unique style,"I love the feel of the fabric and design of this dress. i look forward to changing the look with cowboy boots or fringed booties. i also like the option of wearing it opened over a white tee and jeans. worn loose or belted, it can be different every time you wear it. it does run large so you may want to size down.",4,1,0,General Petite,Dresses,Dresses +336,55,Great leggings!,"These leggings are very comfortable with a bit of control. i ordered the m and they fit perfectly, as usual i do have to tuck the hem up just a bit but i have to do that with all my leggings. i love the laser cut detail on the side which is a lavender color.",5,1,5,Initmates,Intimate,Lounge +895,35,Comfortable but not flattering,"I really like the color of this and the feel, but that is where it ends. it does not come with the gorgeous flattering belt that it is pictured with, and is cut without shape so it does not fit to your body and show off any glorious womanly curves. i could purchase the belt with it, but i don't prefer to purchase products that cannot stand on their own.",3,0,2,General Petite,Tops,Fine gauge +818,48,Cute but thin material,"Cute shirt with a few nice details: embroidery and tasseled tie in back. a little pricey in my view for what you get. nice, loose cut. true to size. cotton is very sheer. i'm well-stocked on white see-through shirts that require a cami, looking for one that doesn't need layering- returned for this reason.",4,1,5,General,Tops,Blouses +1078,35,,,5,1,0,General Petite,Dresses,Dresses +124,41,Great for animal lovers!,"Super cute, soft, and fuzzy...just like the woodland animals in the pattern. these loungers do run just slightly tight in the seat, so if you have a more developed bottom you should definitely get a size up.",4,1,0,Initmates,Intimate,Sleep +818,27,"I like the idea, but the execution wasn't so good","I think this top would have been amazing if it was in a jersey or cotton club but the gauzey fabric is so wrinkly and so sheer i don't know how i would use this top. i don't mind most of the slightly sheer retailer tops (if people see my bra slightly so be it) but this is really sheer, unless you are madonna you are going to want to wear something under this, and in my mind, that defeats the purpose of a lightweight, sleeveless top. i returned it and was sorry to have to do that.",3,0,0,General,Tops,Blouses +895,31,"Lovely, but not perfect","5'1'' 43-31-43 +i bought a petite medium in the orange red color and it's a wonderful cardigan with an oversize fit. it goes to about an inch below my knees, and the slits go up to mid-thigh. the sleeves start at about an inch past the shoulder cap, but the sleeves are so generous that you still have full range of motion. the sleeves hit mid hand and i wish they were an inch or two longer, but that's personal preference. because of the color and the long side-slits looks really stunning with a mi",4,1,0,General Petite,Tops,Fine gauge +828,28,Love this top,"Runs a bit small, but this top is super soft like all the cloth and stone tops. great for all seasons!!",5,1,0,General Petite,Tops,Blouses +1078,42,Perfection,"I'm not a western girl but this dress is so adorable. i love the colors, it's adorable and unique. while its definitely a full swingy shirt dress i didn't find it overly large. i plan on wearing as a dress with sleeves rolled up. under the pilcro denim jacket it looks so cute. and open over jeans with a white tank like a jacket.",5,1,2,General Petite,Dresses,Dresses +124,61,Who knew critters could be so cozy?,"I already have one pair of sleep pants by retailer and was looking for a second pair. i wanted something warm and comfortable for the fall and upcoming winter weather. (i live in the rockies.) as soon as i saw the woodland animal print on these pants i had to try them. i mean seriously, how cute are the raccoons and other critters here? when they arrived at first i thought they might be too thin for winter wear, but when i put them on i was pleasantly surprised by the soft, comfy fabric. i",5,1,3,Initmates,Intimate,Sleep +1078,46,Love it!,"I am not sure who in the world could really wear this as a dress without belting it...definitely a super weird cut. extreme a-frame. the fabric is just absolutely gorgeous and it is so well made otherwise. i thought about trying to size down but it would be too small in the shoulders for sure. i am going to keep anyway. i've already worn it with jeans and a t-shirt and as a topper with a denim shirt dress. it actually looked fantastic with both. i'll get a lot of wear out of it, just not the way",5,1,0,General Petite,Dresses,Dresses +1078,58,Not flattering,"I love the color patterns and fabric. it has full lining! my biggest problem with the dress is the swing style - makes it more like a maternity dress and so unflattering? a straight (shift) style would have been much better. dress runs large, however the arm/shoulder area is tight.",2,0,0,General Petite,Dresses,Dresses +1078,52,Super cute but big,This dress is super cute. good quality. from the front it is very flattering and hangs well. from the side and back it looks huge. i ordered a size 4 and i am a normal 6 or 8. i have re-ordered the 0 and size 2 to see if there is less material (others have mentioned that the arms are smaller in the smaller size. my trouble area is my hips so i don't think this will be an issue as i am quite small on top). if not i will have it altered because it is so cute and can be worn many different ways.,4,1,0,General Petite,Dresses,Dresses +1078,46,,Agree 100% with other reviews. this dress flares a lot so it does resemble a tent. to size down causes a problem in the shoulders. i had to keep the 8 - which is what i usually wear to accommodate my broad shoulders but i love it so much i am having it altered to taper and adding the pockets you would expect a dress like this to have. at this price i am hoping it's worth it.,4,1,0,General Petite,Dresses,Dresses +1078,33,Beautiful but huge,"I bought this dress in store today in a size 4, i usually wear an 8 (so i was thrilled) the print and details are gorgeous but it's a very wide swing dress, there is a lot of fabric and it has no waist. i'm going to wear this with a belt so it's fine but the images online are a little misleading.",4,1,21,General Petite,Dresses,Dresses +1078,42,Yee haw,"This is a very cute fall dress that can be worn in a myriad of styles. from styling it with a pair of wedges and dark tights, to donning a bolo and ankle boots, heads will turn when you walk into the room.",5,1,0,General Petite,Dresses,Dresses +124,25,Very nice christmas present!,I bought these pants for my girlfriend for christmas. she really loved them! the material the pants are made of is very comfortable. the animals are super cute too.,5,1,0,Initmates,Intimate,Sleep +336,35,,I cant say enough about these pants - they are such good quality. i bought the xs. they are tight enough and don't create crease in my legs. length is perfect for my 5.1 statue.,5,1,0,Initmates,Intimate,Lounge +124,63,A little disappointing... :(,"Just got these today because they were a steal of a deal with the sale on sale. was super excited because the pattern is adorable! i put them on tonight and noticed that they, firstly, aren't eloise like i assumed they would be, and secondly, that they weren't as soft as i had expected. all of the retailer/eloise pajamas i have purchased in the past have been so soft and comfortable - you don't want to take them off! did i get an off pair that just happened to not be as soft? i'm not sure, but i'm",3,0,0,Initmates,Intimate,Sleep +1078,39,"Cute, definitely needs to be belted","I'm a 36ddd, and have a bust about 42"" so when i tried this on in a size 12, i honestly didn't expect to be able to squeeze it on... and yet i had inches upon inches to spare in the bust. this really is built more like a tent than a dress. on the bright side though, if you belt it, and gather the extra material at the sides it'll define your waist and the skirt has lots of swing and flounce to it. i do love a line styles!! + +i found i had to roll up the sleeves otherwise the dress looked too s",4,1,8,General Petite,Dresses,Dresses +864,53,,,5,1,0,General,Tops,Knits +1078,46,,It is a beautiful top but runs huge!!! i followed other reviews and ordered a size down hoping it would work but it was totally unflattering! i wanted so bad to love it but there was no way i could keep it!!,2,0,0,General Petite,Dresses,Dresses +124,43,Soft & cozy,Super cozy! now that the colder weather is coming i will likely be wearing these every night relaxing at home!!,5,1,1,Initmates,Intimate,Sleep +1078,43,Adorable!,"Was so glad i gave this dress a chance - it's adorable! it does run large. i am 5'6"", 125lb and the 2 fits perfectly. it is super comfortable. i am taking away a star only because it doesn't have pockets - with all of the fabric - how were pockets left out?",4,1,0,General Petite,Dresses,Dresses +933,31,Love this beautiful stylish sweater wrap,"I am a frequent retailer shopper who has found many items to be hit or miss. this one's a definite hit:) i absolutely love the vibe of this sweater wrap (unique, bohemian, feminine, cozy), the fabric (beautiful intricate weave, high quality knit, wearable virtually year-round thanks to air conditioning), how stylish it is (fringe, very ""in"" kimono cocoon cardigan), how much of my wardrobe it goes with (neutral ivory color that can be dressed up or down, elegant or casual), and the fact that it has",5,1,1,General,Tops,Sweaters +1078,56,"If only i was 5'10""","Great dress in terms of material, quality, print...something about the weight with the lining made it not work for me. i ordered one size down as recommended by other reviewers, but that didn't work; there was too much fabric for the length and the lining made it look heavier. i ordered a medium and i""m 5'5"" on the curvy side. oh well. i've had so much luck with other retailer orders so i'm not too disappointed.",4,1,0,General Petite,Dresses,Dresses +1078,74,,"Based on the other reviews, i sized down from my usual 6p to a 2p, but this dress was still ridiculously huge and extremely unflattering. i could tell the minute i took it out of the package it wouldn't work. i can't imagine this would flatter very many people. the front photo of the model is incredibly deceptive. very disappointed--this will be going back for sure.",2,0,0,General Petite,Dresses,Dresses +818,58,Cute top for summer,I saw this shirt and new that i had to have it. i love the tassel on the back at the tie. the fabric is not too sheer. the fit is loose and will be cool this summer.,5,1,1,General,Tops,Blouses +1078,38,Love this dress but definitely size down,"I saw this dress in my local retailer store and had to try it on. i cannot say enough good things about this dress! i love it! + like other reviewers said it runs very big. i am 5'8"" 138 pounds and usually wear a size 6 but got this in a 2. fits like a shirt dress should once i sized down.",5,1,1,General Petite,Dresses,Dresses +828,42,Besutiful,Love this top!!!! it is just gorgeous and fits great!,5,1,5,General Petite,Tops,Blouses +1078,26,Larger than life!,"Larger than life in both size and personality. this one runs pretty big however the detailing in the fabric itself and embroidered collar balance that out. it's even more gorgeous in person! +for reference, i'm 5'7"", 125lb, straight up and down and i usually go for a 4 or 6 / small. i got a 4, but could have easily fit into the 2 or even the 0.",4,1,0,General,Dresses,Dresses +830,53,,,5,1,0,General,Tops,Blouses +336,68,Classy leggings,"These are very cool leggings. the cut out design really puts them several classes above a simple black legging. they can be worn with dressier tops and could be a sophisticated looking outfit. i wore them for the first time today and really loved them. i didn't feel like i was out in ""leggings"" but more like i was wearing a nice pair of pants. the fabric is soft and the cut is very flattering all over - including the rear. they are definitely sculpting and firming. they fit the same size-wise as",5,1,11,Initmates,Intimate,Lounge +933,26,Loved it on the model...,"I want to be the person who lounges like the model...but this was huge and more wool-feeling than the lightweight shawl i was hoping for. i am an 8, got the xs/s it was the right size....i returned it.",2,0,1,General,Tops,Sweaters +1078,36,I am in love.,"Based on others' reviews, i knew i needed to try this beauty on to be sure of my size. as others mentioned, it runs 1-2 sizes large. but, unlike others, i don't feel i need a belt at the waist. i am 5'2"" 140# 34d and with my body style (super short and not super slim in the waist but also busty) this is the perfect boho fit and the perfect drape!!! and the design and quality are superb to boot!!!",5,1,0,General,Dresses,Dresses +1078,59,So cute!,"As the other reviewers stated, it does run large, i sized down 1 size and it's perfect. great dress to wear so many ways.",5,1,0,General,Dresses,Dresses +1078,43,"Great dress, but runs big","I agree with the other reviews - great dress. i got a ton of compliments on it, but i had to take it to a tailor to get it taken in. not a fan of belts with dresses, but definitely wanted it so had quite a bit taken in. not sure why this seems to be a reoccurring issue with retailer. i was bummed i had to spend money to get the dress to look even somewhat like the photo.",4,1,0,General,Dresses,Dresses +818,38,Two strikes,"Two strikes against this top, and its going back. first, the white top is a light weight cotton... and it does not come with a lining or shell underneath. just know you will need one. i would have been able to get over that fact, since i have tanks i could have worn, but second strike is that it wrinkles. alot. it came out of the shipping box with the type of wrinkles that i know will get way worse after washing. i am not interested in ironing anything. for this price, i wouldn't have expected b",3,0,4,General,Tops,Blouses +895,33,Sophisticated yet simple,"This cardigan can be dressed up with leggings and booties or dressed down with jeans and chucks. i love the fit of the small (5''3"" and small/medium build). would highly recommend for a dinner out or lounging around at home.",5,1,0,General Petite,Tops,Fine gauge +1078,62,Adorable!,"This dress is loose, unique, and super cute! you'll get noticed in this dress! i ordered down a size.",5,1,0,General,Dresses,Dresses +828,46,Oversized and unstructured but soft,"I tried this shirt in a small (my usual retailer size) and it was very unflattering. the fabric was ultra soft and it seemed it was nicely made. however, this shirt is so unstructured and oversized, i might as well worn a brown paper bag.",1,0,4,General Petite,Tops,Blouses +895,39,So blah,"Based on the strength of the other reviews, i thought this sweater would be amazing, but i was disappointed. the knit is very thin, cheap looking and weak that it won't last a season undamaged. it reminds me of a duster i bought 15 years ago at a discount fast-fashion retailer when i was a student. sloppy looking with lots of creases out of the package. collar is odd and the sleeve openings have an annoying flare. the drape is not structured enough--everything about this screams over priced bath",2,0,0,General Petite,Tops,Fine gauge +1078,39,Into the west,"Totally out of my style range but am totally enamored by this tent dress/shirt/coat thing! ok, so yes it's very very tenty, but fits on my shoulders (size down 1x or 2x if you're narrow shouldered) and i use one of my leather belts to gather the material and make myself a nice western fit & flare! like the model shots, this looks great with a tee and skinnies. if you have tried the marvelous silk santee swing dress, the escalante has the same amount of fabric that reviewer either love or hate. i",5,1,3,General,Dresses,Dresses +864,56,Something different,I love this top. i ordered it online thinking that it would be a comfy top for the weekends and i was right. the front is a heavier fabric than the whisper thin tops and yet the back is a wonderfully lightweight cotton handkerchief feel. i am petite and it fits great.,5,1,4,General Petite,Tops,Knits +1078,55,,This is a great item! well made and heavier than it looks. size runs 2 sizes too small. it is great as a dress or open as a long shirt with jeans. i had my dressmaker put a dart right down the front under my breast to give a little more fit and less flare. this helps if you are curvy.,4,1,0,General,Dresses,Dresses +895,34,Wardrobe staple,"I had this on my birthday list and was really hopeful that it'd work out based on all of the good reviews. when i got it, i was happy with the fit and fabric, but i was stumped as to what i'd wear it with. it hung in the closet for a couple of weeks because i just didn't know if i could pull off the length. i took the plunge today and find it pairs nicely with a flared leg pant and simple shirt underneath. it's so stretchy, warm, and cozy! the sweater does shed as another reviewer mentioned so k",5,1,0,General Petite,Tops,Fine gauge +336,42,From work-out to errands,"I love the design of these. the laser cut outs are solid and hold up in the wash. they are great for work-outs and cute enough to wear as leggings out. i wore them to my bar method class, came home and just changed my top and continued wearing them the rest of the day as a cute outfit. they have a great snug fit and the fabric is thick and durable.",5,1,10,Initmates,Intimate,Lounge +1031,35,"Ran a bit big for a petite, but very cute","These are great overalls - cute design but wish they came in petite! the big/straps were a little too big for me, so i had to return, but i probably could have had them tailored.",4,1,1,General,Bottoms,Jeans +828,44,Soft and sweet,I cant say enough about this top. the material is soft and comfy . very well made. the length and size is spot on! looks great tucked in or out! very versatile. highly recommend!!,5,1,0,General Petite,Tops,Blouses +836,68,,,4,1,0,General,Tops,Blouses +836,40,"Very pretty blouse, just as pictured","I liked this blouse very much the minute i first seen it, it looks exactly as pictured but sits much better in person. i'm 6ft tall 160lb ordered a 10 which was true to size with a little more room to the bottom. i was able to see my belly button through the sheer part of the bottom fabric, but as soon as i sucked my belly in, it was fine. the quality of the fabric is so-so i had some threads hanging out here and there, but this top looks very good in person and the design is unique, you can hav",5,1,0,General,Tops,Blouses +1098,68,Runs really large,"I'm glad i red the reviews before ordering and sized down. for reference, i am 5'7"" and generally a size 8 or m in dresses. the small in this piece fits loosely in a flattering way, but a medium would have swallowed me. otherwise, it's a great, casual piece. the material is light and soft, and it's cute over leggings.",4,1,0,General,Dresses,Dresses +1098,53,Darling dress,"I just purchased this cute dress on sale and made sure to size down one size so instead of my regular small, i ordered an extra small which fits me perfectly. i'm a petite yet busty 34d-27-35 and 5'4"" and think the dress looks adorable on especially since i'm a huge fan of all things plaid. it's a lighter weight dress so it's perfect for spring or summer but can be worn in fall/winter with this color scheme by adding tights, boots and a sweater or jacket. i also love that it has pockets. i don't",5,1,1,General,Dresses,Dresses +863,33,Love the color,"This shirt is perfect. hangs nicely, and i love the little longer sleeves. + +beautiful color too!",5,1,1,General,Tops,Knits +975,69,Love! its so versatile!,I was so surprised by this jacket! i grabbed it as a last minute thought and then when i tried it on i was in love! i have a pink dress i'm going to wear it over but i also love it over a frilly off white tank or even just over a basic t. i am so excited for cooler weather. be warned its not lined or warm. its more of a shirt than a true jacket but it's perfect for fall in california. i wear a small or m and went with a medium on this one.,5,1,0,General Petite,Jackets,Jackets +993,54,Great staple,"Love this skirt, easy to wear and very flattering. looks better in person, i saw it at the store and bought it; when i looked at it on-line i didn't realize it was the same skirt. this is a ""go to"" skirt, comfy and sexy all in one! even wore it to the airport with a pair of boots and sweater....super comfortable and still looked nice! great purchase!",5,1,1,General Petite,Bottoms,Skirts +292,36,Super cute,Very comfortable. super cute! my husband says it's the cutest bathing suit i've ever owned (and i've owned a lot)!!!!!,5,1,0,Initmates,Intimate,Swim +863,48,"Flattering & comfortable, a bit flow at bottom","I got this in black, size medium, my usual size. i am fairly ""curvy"" on top and found the shape in that area very flattering to my figure. it is shown as being rather drapey in front and indeed it does fit rather large at the bottom & indeed through the body itself. since i'm slim there, i will have to tailor it, am used to this considering i have to buy to fit my chest. but i'm keeping it for sure as i love the fabric and i think it will become a staple of my wardrobe. good job retailer!",5,1,1,General,Tops,Knits +863,46,Great style & fit,"I ordered the gold in size xl. it fits true to size, matching the online photos. the color & details are prettier in person. such a comfortable tee. it's washed/dried well too. i hope they make more colors for this fall. it's been a great basic!",5,1,0,General,Tops,Knits +863,41,Cute - i ordered online,I ordered online and wear xs- m. i ordered a small but it seems big. i have to drive 1+ hour to a store so i do a lot of online ordering. i'm thinking of returning for smaller size. may make a road trip- have several items to return! i hate paying shipping to buy and shipping to return if it doesn't work!,3,1,2,General,Tops,Knits +975,61,,This jacket is perfect for fall! lightweight and easily worn over other tops or layers. looks great with jeans!,5,1,0,General Petite,Jackets,Jackets +907,37,Great features,Didn't notice the zipper in the back when i ordered this so it was a nice surprise,4,1,0,General,Tops,Fine gauge +294,40,Great jammies,"These pants fit great, are soft, comfy, and flattering. i'm 5'7"" and the length is perfect in a medium. they wash well.",5,1,0,General Petite,Intimate,Lounge +1085,42,Great dress,"I initially bought this dress to wear to an interview that required something casual, yet could be dressed up with interesting jewelry. although i ended up wearing another black dress, i kept this. paired with interesting black booties and a great necklace, this dress is easy to wear - and stylish. most importantly, comfortable. i could see myself wearing this on days that i feel inspired to dress up, but want to wear something that is not fussy. and, the pockets!",5,1,0,General,Dresses,Dresses +830,63,,"This top is great to wear under a blazer when cool or alone on a warm day. i rated it as runs small only because if you are a little busty as i am, it is a little snug across the chest. otherwise fits great.",5,1,1,General,Tops,Blouses +294,41,,"These sleep pants are very pretty, soft and comfortable. unfortunately, after washing them once i noticed some small holes in the fabric which is very disappointing considering the price. i don't mind paying a little more for clothing if i feel like the quality is there but in this case i'm not so sure. i guess if you don't really sleep in them or wash them then they would probably be ok but then what's the point of buying them?",3,1,3,General Petite,Intimate,Lounge +863,67,Cutest top,"This top is another winner from left of center! i love swing tops and this is just adorable. fitted through the sleeves and top portion, it drapes nicely in a very flattering way without looking ""maternity"". i love the rayon on the upper back which adds interest and a slight contrast. i purchased it in the gold color which is beautiful and the fabric is light and very comfortable. in my opinion it runs large. i'm usually a sp but ordered an xsp for a more fitted look but it still looked big for",5,1,3,General,Tops,Knits +863,65,Great color,"This is a great top and got compliments already...it does have a longer sleeve like the picture, but +really not bad. it's so comfortable and color is fabulous. great with any scarf too.",5,1,0,General,Tops,Knits +975,50,"Runs very small, more like a zippered shirt","Very pretty but runs tight - i usually wear an 8 or small/med in retailer jackets and couldn't zip up the 8 (am a 36c and thick/broad at the top) as there is no give. this is also more like a fitted shirt, made of lightweight muslin-like fabric. was looking for a summer jacket to wear over knits in a chilly, air conditioned office setting so sadly it didn't work for me. could be cute on someone with a smaller frame over a tank or cami.",3,0,1,General Petite,Jackets,Jackets +975,56,Beautiful but runs small,"Snap this one up but make sure you order a size larger than your normal size. it runs a full size too small. it sold out before and i was told it wasn't coming back in. i had purchased one previously in my regular size but it was too small. to my delight, it's back, and i've purchased one in the next size up. it's well made, can go from business to sport to casual.",5,1,3,General Petite,Jackets,Jackets +863,31,Crazy cute!,"I am obsessed with this shirt! it's sooooo comfy and soft, like wearing a blanket! perfect for throwing over yoga clothes. comfy yet adorable.",5,1,0,General,Tops,Knits +836,49,Pros and cons,"I tried this in the store after looking at it online. the material was soft and flexible which was nice - i had been concerned that it might be stiff. however, it was a bit difficult to get on and off with the zipper on the back and the high neckline. overall, as a petite person, i felt the spots were too overwhelming for me. but if you like the spots, and have no trouble with back zippers, go for it.",4,1,0,General,Tops,Blouses +1083,25,Huge letdown,"I never leave reviews for anything but this dress was such a complete miss. first off, it's about 3 sizes too big. second off, it's knitted with a metallic thread that you can't really notice in the picture. i'm usually a medium and feel an xs would be sufficient.",2,0,4,General,Dresses,Dresses +975,31,Perfect for fall!,"This jacket is a perfect, lightweight cover for dresses as shown online, but will also look great with jeans and tops. the embroidery looks amazing and is high quality. the tie in the back can make the shirt a little more form-fitted. while its a masculine style, its has feminine details and fit. this is my third hei hei jacket, the sizes between them are consistent (i'm 5'4'', 125lbs. 34c and i wear an xs in this jacket) - each one i've worn a million times!",5,1,1,General Petite,Jackets,Jackets +975,36,Great casual wardrobe staple,"This great weekend staple is the perfect lightweight jacket. it has a roomy, comfortable fit but the drawstring helps you create a bit of a waist. got lots of compliments on the embroidery.",5,1,0,General Petite,Jackets,Jackets +863,55,Love it!,"This top is perfect! i'm 5'9"" and a medium build, and it's hard to find tops that have long enough sleeves. this is really long! i love the weight of the fabric - perfect under a coat and heavy enough for cool texas winter days. the fabric is really soft and the color is a blue-ish grey. the style is feminine but not too girlie. it's my new go to top!!",5,1,0,General Petite,Tops,Knits +975,46,Beautiful!,"Purchased today at the 30% off summer tag sale. 5'7 and bought the size 6 - fits perfectly. a lovely combination of feminine and boho. will wear with dark jeans a a white tank. fabulous light, pretty summer topper...",4,1,0,General Petite,Jackets,Jackets +863,34,Love it,This top is awesome. i purchased the gold color in a small. fits perfectly and true to size; sleeves are nice and long. definitely recommend!,5,1,0,General Petite,Tops,Knits +907,61,Sweet sweater,"I like this sweater very much. it's short but not too short, and soft but not fluffy. the design is a little interesting rather than plain and the colors (i ordered the tan) are great for me, a redhead. i'm 5'3"", 125 lbs and don't like clingy tops so i took a m and it's perfect. really cutewith jeans.",5,1,0,General,Tops,Fine gauge +863,53,,,4,1,0,General Petite,Tops,Knits +830,57,Beautiful,I would highly recommend this top. it is beautiful and it helps to hide problem areas. much prettier than the picture depicts. i am very happy with this purchase. can't wait to wear with black or white capris this summer.,5,1,3,General,Tops,Blouses +975,46,"Fun and hip, but not too young","At 46 years old, i still like fun, hip, fashionable items, but i don't want to look like i raided my 21 year old daughter's closet. this jacket hits the mark perfectly. it looks great layered over a casual dress or with skinny jeans and a wedge. the embroidery and the back tie soften the masculine color and shape. i'll be wearing this often!",5,1,11,General Petite,Jackets,Jackets +863,40,Love it!,Very flattering on. fitted on top with a loose swingy bottom. like most retailer tops it does run a little big. i would size down if between sizes. the material does seem a little fragile so i'm not sure how it will hold up. i like the look/fit enough that i may get a 2nd color.,5,1,0,General Petite,Tops,Knits +863,39,,,5,1,0,General Petite,Tops,Knits +552,25,Not as pictured,"The jeans look so different online! the pair i got did not have the stone washed look and was completely different cut. the rise is not as stated and is actually 10.5 inches! also, i'm a true 25 and the waist is like a 27, but the legs are super skinny. i'm so disappointed and i'm not even sure if is worth swapping out for a smaller size. these look more like men's cut jeans.",1,0,21,General,Trend,Trend +975,57,Adorable,"1. i'm 5'5"" tall, 145 lbs, and 38 (36d) - 32-40 and the size 12 fit me perfectly with just a bra on underneath, when zipped up. i plan on wearing tank tops or thin t-shirts under it, and leaving it unzipped. i'm normally a size 10, but at retailer, i'm a 12 in their jackets. + +2. thin with a thin lining, but stiff enough to hold its shape. the front zipper also helps give firmness to the front edge. + +3. the fabric is white with lots of beige embroidery and lace holes. + +4. i have a feeling thi",5,1,19,General Petite,Jackets,Jackets +975,39,Great jacket- so unique!,I love this jacket. i have worn it twice and gotten compliments both times. the details on the sleeves are so unique and interesting. it fits tts. i am typically an xl and i ordered that size- i can wear a long sleeve collared shirt underneath so it is perfect for me. the pictures on the website don't do it justice. it looks much nicer in person.,5,1,5,General Petite,Jackets,Jackets +294,39,Super comfy,"These pants are super comfy and fit true to size. i went up to a size large because i wanted them extra roomy and longer. i'm 5'10"" and 140lbs and generally wear a size 6-8 in pants. i highly recommend them for stylish and comfy lounge pants!",5,1,2,General Petite,Intimate,Lounge +863,54,Love this top,I got the ivory. it's very cute under the split back cloth & stone button down denim in slightly oversized top (i wear sm but bought the med in the denim button down). this top in ivory runs true to size but the dark colors in sm fit like a medium. the top snags easily. it 's pricey but i love it.,5,1,9,General Petite,Tops,Knits +975,31,Runs small and looks different in person,I ordered this online and was disappointed when it arrived. it didn't look quite like it does in the photos online. it also runs small. i returned it because i did not feel it was worth the high price.,2,0,1,General Petite,Jackets,Jackets +1085,41,Manufacturing process incomplete,Only one sleeve is folded twice and sewed. meh.,1,0,0,General,Dresses,Dresses +836,25,Great too,"I really love this top. it's cute, whimsical, and comfy. i received many compliments on it. it's a really good length and good quality. happy i purchased it, especially during the tag sale.",5,1,0,General,Tops,Blouses +294,39,Comfortable and flattering,"Sleepwear is always hit or miss with me. i am 5' 8"" and curvy, and typically sleep pants hit right above my foot and aren't long enough. or they stretch out after a few wearings and look baggy or unflattering. however, this pair exceeded all my expectations! first, they are just plain pretty. the pattern and colors are lovely. the blue at the ankle is a cute touch. the fabric is soft and slightly drapey - but substantial enough for warmth and not see-through at all. i also like how the waist is",5,1,5,General Petite,Intimate,Lounge +863,30,Perfect not-so-basic basic,"This shirt is amazing. it's soft, comfortable. i can't speak yet as to how well it will hold up but i plan on wearing it a lot. the cut is great, the shirt flutters away from under the empire waist line and the nylon patch in the back, creating a flattering shape without clinging anywhere. the sleeves are nice, long, and fitted. + +this shirt will work great as a winter/fall basic piece but the texture, color, and contrast detail in the back make it interesting on its own. very versatile. + +the col",5,1,3,General Petite,Tops,Knits +977,52,Hideous looking,Does not look like the picture. lined with a cheap denim fabric inside that shows when arms are rolled up. i normally always fit in mediums and this jacket is so small in the arms as well as body that it fit like a xs.,2,0,1,General Petite,Jackets,Jackets +975,45,Love this jacket!!!,I tried it on in the store & loved it but didn't purchase. then the retailer sale happened so i had to order it. it's lightweight and perfect for southern california. the embroidery adds funk and femininity. i'm 45 and feel like this works well for any age. i'm typically a large or 12 and the large fit perfect. i can't wait till the temps drop so i can wear it!!!,5,1,1,General Petite,Jackets,Jackets +292,53,Maaji bottoms,"Love these bottoms, cheekier than i thought but like them even more!",5,1,0,Initmates,Intimate,Swim +975,50,Cute comfortable great details,Super comfortable and on trend with the embroidery and beading - wore it day after i received to the airport over tee shirt & jeans and got compliments left and right - love it!!,5,1,1,General Petite,Jackets,Jackets +899,29,Beautiful sweater/great quality but...,"I ordered this sweater online in a size 12. i am 5'7 170 i normally wear a 10/12, i was swimming in this one. i could have ordered an 8 and been fine. the fabric feels luxurious but the twist in the shoulder is not sewn into place, you will have to steam/press it each time you wear it or you could have it sewed into place.",4,1,3,General Petite,Tops,Fine gauge +977,54,Strange fit,"Well made but strange fit. the medium was long and narrow, waaay too small.",3,0,2,General Petite,Jackets,Jackets +909,41,Beautiful!,I found this at my local retailer. it is a beautiful unique sweater. it fits nicely a bit longer in the back and a tad loose on the bottom. i've gotten loads of compliments as it's truly special. i'm not sure why it's not sold out yet!,5,1,0,General,Tops,Fine gauge +863,60,Cute!,"Purchased this top in medium. i am 5'9"" so normally wear medium. however, could probably have ordered a small. sleeves are very long and it's very full around bottom. love the gold color!",4,1,1,General Petite,Tops,Knits +294,37,Tall girls,"The length of these pants is not quite long enough. i'm 5'8, and the only way i can make these work is if they're pulled low on the hips. it'd be nice if more brands offered long and short sizes in lounge",4,1,0,General Petite,Intimate,Lounge +907,59,Amazing.,"This cut and fit is so good. i sized up because my body just needs that with pullovers generally, and i was glad i did. it fits just right!",5,1,0,General,Tops,Fine gauge +975,64,Very cool jacket!,"This jacket is far more attractive than on the website. i would have passed this up had i not seen it in the store. the embroidered sleeve detail is intricate with raised cream colored stitching surrounded by small brass beads on a rich, olive green background. blue detail sets this off as a unique statement piece that will surely draw compliments. i am 5'1, 110 lbs. and the extra small regular fit fine. i considered a petite but the salesperson thought the longer length would look better so i w",5,1,2,General Petite,Jackets,Jackets +1083,39,Like wearing a soft blanket,"Pros--this dress is so super soft and warm...i feel like i'm just wearing a winter throw when i have it on. + +cons--way, way too big. i returned the small, which easily should have been a large (with room to spare) and got the extra small...it's still way too big. they definitely have this dress clipped behind her back so it doesn't look so huge and there's a reason there isn't a video showing how this dress looks when it moves...because it is ginormous and they know it! + +but i still kept the xs",4,1,0,General,Dresses,Dresses +907,35,"Short, but still cute","Like the other reviewers, i agree that this sweater is waaaay shorter than it looks on the model. i think she's wearing a large size and it's probably cinched in the back. still cute, though! i'm 5'9"" 145 and a medium fits well -- looks cute with high-waisted jeans (which i wear anyway).",3,1,0,General,Tops,Fine gauge +1085,50,Interesting piece,I couldn't believe how fast this dress sold out when they were having the fall promotion; they had just put it on the website and it sold out in my size in a matter of hours! i just received the dress today and really like the practicality of it. you can easily dress it up or down and it still looks sheek either way. what i didn't like about the dress was that the material is a little flimsy compared to how it looks in the picture. i am on the fence regarding if i will keep it.,3,1,0,General,Dresses,Dresses +975,48,Love!,A fabulous light weight jacket. love the detail and fit is perfect and comfortable. the jacket was not so interesting on the display table but once tried on it became mine and i suspect this is going to sell out. i really love the light color denim trim on the lapels. a keeper! i purchased a medium and that is my standard size in retailer jackets. for reference: 34 dd and 145 pounds and 5'4 height.,5,1,1,General Petite,Jackets,Jackets +552,53,You don't know what you get until you get them...,"Like a previous reviewer mentioned the jeans do not necessarily look like the one in the photo. i first ordered them in my regular size and also had to notice that they are cut like men's jeans with legs so skinny that i could only force them over my calves. the embroiding is beautiful, but it also stops the material from stretching, so the the super skinny legs are a real problem. also, they are not as intensely stone washed as shown in the picture. i decided to order them again one size bigger",3,0,1,General,Trend,Trend +552,29,Amazing unique,"I want to hate these jeans because they are so expensive but every time i try these on they just look so cool. +they seem to be handmade so the flowers are not in the same spot on each pair.",5,1,1,General,Trend,Trend +975,41,Perfect fit,True to size and fits great. the sleeves are the perfect size and it's so versatile.,5,1,4,General Petite,Jackets,Jackets +863,46,Perfect around the house shirt,"I work from home so i'm always in search of tops that are comfortable and cute, but don't make me look like i'm waiting for company to arrive. this is a great addition to the wardrobe. super comfortable, it has shrunk slightly with a few launderings, but it's still wearable.",4,1,0,General Petite,Tops,Knits +863,70,Great sweater,"True to form, this retailer sweater hits the mark! it's light weight, stylish, great for a shorter person like myself, and has cute detailing. the sleeves are little long, but i push them up anyway and the cream color i bought goes with everything. the xs size is more comfortable and flattering than the s if you are short. i would have bought the bluish gray color of this sweater, too, but already own a similarly shaded and textured sweater from retailer from last year...love that one,",5,1,1,General Petite,Tops,Knits +975,53,,Just purchased tonight and love i this little jacket. the embroidery and beading down the sleeves is such an interesting touch yet neutral enough to wear with just about everything this fall. runs tts.,5,1,1,General Petite,Jackets,Jackets +863,68,Love this shirt!,"Bought this in dark grey, which has a lovely bluish hue. the fabric is soft & comfy and it has great lines for a knit fabric. very flattering! the sleeves are nice and long.",5,1,0,General Petite,Tops,Knits +830,39,True to size and reversible,"I was leary about ordering this but absolutely loved it when it arrived! i found out the front could be the back and the back could be the front - reversible, right? and the styling of the shirt was very complimentary to my body.",5,1,0,General,Tops,Blouses +552,50,Unique jeans,"I love these jeans. i am usually a size 27 or 28 in boyfriend jeans and i kept the size 28. i chose the baggier fit. the size 27 did fit, but it was a more fitted look. so i guess i would say you could definitely go with your regular boyfriend size and pick the fit that you prefer. i really feel like this is a jean that you should try on before purchasing, but the availability of these makes it almost impossible. i literally stalked the site so i could purchase both sizes and choose the ones tha",5,1,1,General,Trend,Trend +863,30,Best fall purchase i made!,"Although the weather is getting warm in ca, the gold color and cut of this shirt made me want to buy just one more long sleeved item--and it didn't disappoint! i'm actually looking forward to next winter so i can wear it again!",5,1,0,General,Tops,Knits +909,57,Sweater not as shown in photo,"Much to my surprise when i tried on this sweater i found that it was cut in a bell shape and not at all fitted or straight like in the photo. when i pulled it out of the package i thought i'd ordered the wrong size because the shoulders looked so narrow. but when i tried it on the shoulders fit perfectly, with beautiful detail and high quality material, but the sweater belling out to a very wide shape. it is very wide at the hip and looks out of proportion. it doesn't look anything like the phot",1,0,17,General,Tops,Fine gauge +292,35,Make your buns look adorable,"Love this brand and i keep coming back. i don't have the most tone tush, but maaji always gives a cute little lift. i order a size up (usually a small so i order a medium).",5,1,0,Initmates,Intimate,Swim +863,65,A necessity!,"Yes, this is a bit expensive; however, it is made in the usa, so that is a very good thing. i appreciate having the opportunity to buy high quality, well-designed basic pieces that are simultaneously supporting my community and country. when you are considering this pretty top, please click on the gold so that you can see the detail. it is very well-made and flattering. i love how it has a slight shape at the back, very flattering and feminine. the feel and weight of the cotton is remarkably com",5,1,52,General,Tops,Knits +975,22,,,5,1,0,General Petite,Jackets,Jackets +836,41,Cute.....but odd color,"This top fits like shown in the pictures. however, i bought the rose color and thought it was a little ""off"". would have loved to find the ivory in my size.",3,1,0,General,Tops,Blouses +294,53,Beautiful pants,"I love these pants. only wish they i was a little taller, i'm 5'4"" and the small is a little long for me.",5,1,1,General Petite,Intimate,Lounge +830,54,Beautiful,Colors are very vibrant! lays very nicely on the body.,5,1,0,General,Tops,Blouses +1100,49,Flattering flowy dress!,"This is one of my favorite retailer dresses - it's flowy and makes me feel beautiful. i loved it so much that i bought it in two colors! it does run big, so i would size down but when you find your size, you'll love it!",5,1,0,General,Dresses,Dresses +1100,43,Great dress for all occasions!,"I really liked the dress on line, but, i didn't appreciate how lovely it was until i received it. it fit perfectly, and has a lovely flare at the hemline for a flirty feel. i wear it with taupe colored booties and it is perfect for work and afterwork.",5,1,0,General,Dresses,Dresses +1100,23,Great for all body types!,"I'm in love with this dress! i have seen the chevron pattern of this dress on many women and i can honestly say that i haven't seen a body that it doesn't look good on. i am a busty girl and was afraid the shape of this dress would make me look as if i was expecting and much to my surprise it didn't at all. this is such a great transitional piece to have in your closet, i highly recommend it!",5,1,1,General,Dresses,Dresses +1100,53,Perfect dress,"I'm in love with this dress and first tried on the petite size in the store. if you don't have enormous shoulders (which i do) , i think the petite would fit someone in the 5'6"" range. what i'm trying to say is the dress is pretty long. the cut is beautiful and patterns perfectly complementary. i've been reading marie kondo's book and this one ""sparks joy""!",5,1,1,General,Dresses,Dresses +860,35,Fantastic in both colors!,"I really love this top. normally i would not go for a lot of narrow stripes like this because i would think it is too busy, but this one is certainly the exception. both colors are fantastic and i think the design is alluring-not busy. i like that it buttons down which offers a lot of flexibility to display necklaces or have completely up to complete change the look. one of the things i absolutely love about this is that it has long sleeves. i think it is rare these days to find something that i",5,1,7,General,Tops,Knits +1080,49,Love this dress!!!,"I had this in my cart for ages, waiting for a sale and debating the dress in general. i am delighted as it did finally go on sale, i bought it, and it is fabulous!!! my measurements are 36/28/39, i wear a 34d bra, and the small fit perfectly. the only problem i have had with it is that the lining in the front shows about 3/8"" at the bottom of the dress once i have worn the dress. what seems to happen is that the dress creeps up due to its wrinkling, but the lining does not, hence the showing. i",5,1,3,General Petite,Dresses,Dresses +1100,44,,"This dress is fun to wear! i wear the purple one flowy and get lots of compliments. i haven't worn the navy yet, but when i do it will be belted. my only complaint is the material that is used at the shoulders shows bra/slip straps. luckily it isn't too noticeable but a design flaw worth mentioning nonetheless.",4,1,0,General,Dresses,Dresses +1111,57,Floral...embroidered...beautiful,"I was so happy to see this dress at one of my local retailer stores since i've had this in my basket since i first saw it, i tried it on in my usual size and it runs true to size in all areas. the length is as shown int he picture, i am 5'4"" and it hit me right above the knee. i am short waisted and the dress fit perfect, sat right above my waist and then lay just as shown. not too much material to make you look fuller in the hips, and also not too young looking. i am planning to wear it to",5,1,8,General,Dresses,Dresses +1094,56,Stunning,"This is a great summer dress. i bought this dress in both l and xl because this brand varies. i kept the l because the fit was better. the xl was wider and had larger armholes the fabric and colors are beautiful. lots of compliments, it is lined, highly recommend.",5,1,11,General,Dresses,Dresses +1100,28,Too big,"I order the blue and orange endora wing dress in an xxs and it was still very large. i know that this is a flow dress but there was so much excess material that i looked like i was swallowed. the colors are more muted than in the pictures, a faded blue and orange that i didn't really like. return.",3,0,0,General,Dresses,Dresses +1094,50,Not flattering on me,"May look better on someone tall. thin, and straight.",3,1,0,General,Dresses,Dresses +865,47,Runs small,"I love deletta and regularly search for their items here on retailer. however, this one is a miss as i think it runs small or you need to be taller and thinner then i for the gathering, opening to hit you right. i did really like the color ( ordered the brown) and material but back it goes.",2,0,8,General,Tops,Knits +865,53,"Odd fit, beautiful design but poor execution","I wanted to love this blouse so much. but try as i might, it just fit so oddly on me. i'm usually a petite s so i purchased the xs in brown. first. the color was more gray-brown but it was still ok. but second, the fit was off. maybe i just got a bad one, but the center of the blouse was so offset, that the slit in the front laid so far to the left and the v-neck was so low that you could see my bra - there was no adjusting i could do to fix it. the material has a lovely soft silky feel to it an",1,0,7,General,Tops,Knits +1060,39,Too long :-(,"These pants are really pretty and comfrotable, and i took a cahnce ordering them with a ""31 inch inseam:, i thought perhaps they would work with a 4-inch heel...howeverm it is not the case, tey much be much longer than 31 inches. due to the cut out i will not be able to have htem hemmed, so htey must go back. if you are taller, i recommend, they are truly flattering.",4,1,1,General Petite,Bottoms,Pants +1100,52,Super cute dress,"I got 2 of these dresses, one in the navy with small flowers and the gray/yellow print. i am 51 and the navy looked a little old fashioned on me. i think if you are younger it would be super cute. the gray/yellow diagonal stripe is super cute! it's a more modern design in the fabric and i love it. it will be my favorite go to dress for the summer. i also think it will pack nicely for trips. i am 5'7"" and wear a small or medium with retailer clothes and i got a small in this dress and it's p",5,1,0,General,Dresses,Dresses +1111,54,Gorgeous but not for me,"I was so excited about this dress. but when i got it, there were several issues i had with it. the neck is just too high for me and the skirt is too pleated and makes my hips look wide. i was hoping for more of an a-line cut. gorgeous though! wish it worked.....",4,1,0,General,Dresses,Dresses +1080,26,Such a perfect summer dress!,"This dress is beautiful - it is just as pretty as it looks in the picture, if not prettier. it is a great material, the colors are beautiful, and it is perfect to throw on in the summer. i highly recommend it.",5,1,4,General Petite,Dresses,Dresses +1100,51,Swing dress,"This dress is made well and fit nice. i am 64"" and 135 lbs. i really wanted it keep it but it is going back. the colors in person are much more muted and with my pale blonde hair and fair skin the color was all wrong.",4,1,0,General,Dresses,Dresses +1080,25,Amazing,Perfect summer dress! this is a must buy! it can be dressed up or down,5,1,2,General Petite,Dresses,Dresses +1111,23,Adorable...!!!,"Super cute dress, the material is not what i expected. it's stretchy and the slip is tight fitting too. the look is super cute though!",4,1,0,General,Dresses,Dresses +1053,47,Weekend or work - all good,"I am pretty obsessed with these and wish i could get them in many more patterns. the fit is ultra comfortable and true to size. the style allows you to put on a t-shirt, sweater, cardigan + t, whatever, and look completely put together. i got loads of compliments on them on the first day i wore them.",5,1,0,General,Bottoms,Pants +986,71,,"This fell apart after wearing it once. for the price, it should hold up better. it's too delicate.",1,0,3,General,Jackets,Jackets +865,27,Drapes so beautifully,I wasn't sure about this top but i had a feeling i needed to at least try it on. it drapes so beautifully and the keyhole neck is a lovely little touch. i love the asymmetric hemline and the fabric is incredibly soft. as far as the fit goes i found that it did run slightly small.,5,1,0,General,Tops,Knits +844,47,Just as pictured,"I took the advice of the other reviewer and ordered a medium in this (32d, 31"" waist, 38.5"" hips) instead of my usual small. it fits perfectly--a tiny bit loose like on the model. i bought the beige. you need a camisole underneath but the layered effect is very pretty. it is a delicate material which is why i gave it 4 stars. i can't speak to the quality of it, but will definitely use a hand wash cycle and line dry it. very pleased.",4,1,1,General,Tops,Blouses +844,62,I'm wearing the hadley tunic for my birthday!!!!,Love this top! tried on a small in the store as it was the only size the had. the sales person ordered me a medium on line. i am wearing it tomorrow for my birthday! the stretch fabric is very flattering.,5,1,0,General,Tops,Blouses +1080,41,Lovely summer dress - great cut,"I was skeptical when i saw it online. i was not sure about the white background. but it had good reviews and the cut seemed to be what i looked for so i gave it a try and ordered online. i ordered s and xs. i was really surprised how well this dress fits. i am 5.4 and about 126 lbs, pear shape. the fabric is thicker and lined but not too heavy. the cut is slimming, flattering and structured. i decided to keep the xs size. i hope i can find more dresses like this one in retailer.",5,1,4,General Petite,Dresses,Dresses +1111,25,Poor quality,"Very disappointed. ordered two sizes, the fraying of the embroidery was so bad on one of the dresses i wouldn't have worn it and the zipper was sticking. the second dress had fraying and loose threads as well and the seams at the shoulders were not properly sewn which made the lace at the neckline completely crooked. some of these issues would maybe be acceptable if the dress was under $100 but at $228 they are not. returning both sizes.",1,0,16,General,Dresses,Dresses +1080,47,Thick material,I love the look of this dress and i love the way it is cut. the one thing i do not love is the thickness of the material. it is just too much for a summer dress. it just felt heavy and hot. i still love this brand so i am hopeful for a few more great options to come out before summer is over.,3,0,5,General Petite,Dresses,Dresses +868,67,Love!!,"I feel for the reviewer who didn't like this top. i tried on my normal size medium and it was not very flattering (just too short). when i sized up, everything changed. this top is amazing--super flattering and high quality. i love the material, v-cut, and subtle way the tassels hang. i wish they had more colors-i would buy them all! this top sold out in a day at my store. it's a winner-just make sure you size up.",5,1,4,General,Tops,Knits +1080,56,,"This dress is so flattering, i had wanted to try it on for awhile. when it hit sale w/ additional % off i headed to my local store. the dress fits like a dream, so darn cute for summer, in cali we have a lot of summer left. this dress pairs perfectly with the gretta espadrilles. my usual size small was perfect. hurry and get this perfect dress before it sells out!",5,1,1,General Petite,Dresses,Dresses +179,29,Poor bust design,"As a petite, big busted woman, i found this dress wildly unflattering. the quality and pattern of the dress itself is beautiful, though it will require a slip as it is completely transparent. the design of the bust however, i found unflattering.",3,0,2,Initmates,Intimate,Intimates +1080,41,,Absolutely love everything about this dress. unlike many other dresses i've ordered from retailer it fits me in the chest (34c). it's very flattering. love the lace up front and the fabric is like a soft lined linen. can't wait to wear it. i got the s regular. if i was any bigger in the chest or through the ribs tho it would be too small. i almost ordered the medium and was certain i would end up needing a bigger size but the small turned out just right. like it was made for me,5,1,9,General Petite,Dresses,Dresses +1033,26,Comfy jeans,My review isn't really about the jeans! i want the top!,4,1,1,General Petite,Bottoms,Jeans +1094,62,Flattering dress,"Soft, silky, lined in silky natural fabric, hangs great without being weighty. extremely flattering on my xl short body. i'm petite, but for tunic dresses always order regular sizes, so they go just a hint over my knees--exactly what i need. lovely details: sequins and weighted tassels. highly recommend!",5,1,0,General,Dresses,Dresses +865,56,My go-to top!,This is my very shirt i have ever bought at retailer! it's very comfortable and fashionable.,5,1,0,General,Tops,Knits +1100,62,Everyone loves this dress!,"I get so many compliments every time i wear this dress. friends, strangers, younger, older and even the pharmacist at my drugstore wanted to know where i bought the dress. it has a 70's vibe to it, fun and swingy. perfect for fall in florida with sandals or when it gets cooler, i think it will look great with leggings and boots. i purchased the orange and dark gray in a medium petite (i'm 5'4' and 135) and it hit just above my knee. my favorite dress right now!",5,1,1,General,Dresses,Dresses +1160,50,Close but not quite right,"I was looking for an undergarment and this is more of a nightgown. +if it came in a solid color then i'd probably buy it. +i usually wear a small and this was a tad too tight. +on the upside, the fabric was soft and lightweight.",3,0,1,Initmates,Intimate,Layering +1100,35,Works in any season!,"This dress is just what i was looking for. i ordered it in late summer. it was back ordered and i ended up wearing it on thanksgiving day! it's so comfortable, and just the right length. i wore it with leggings and boots, but it will be just as great with sandals in the spring.",5,1,0,General,Dresses,Dresses +868,58,The fringe on the bottom is great!,"I love this tank top...the fringe on the bottom is fun, and i've gotten many compliments on it already...i think it runs true to size :-)",4,1,0,General,Tops,Knits +1094,54,Stunning!,"This is a beautiful dress. it has great detail and is well made. the tassles are very heavy which is kind of funny because the dress is light and airy. it is pretty, cute and sexy all in one dress!",5,1,2,General,Dresses,Dresses +878,64,,Great tunic! i get compliments every time i wear it. :),5,1,0,General Petite,Tops,Knits +1100,39,Perfect dress,I absolutely love this dress. it's flattering and feminine. you will love it. it runs large so size down.,5,1,0,General,Dresses,Dresses +1080,46,My fave this summer!,"Loved the dress on-line. ordered a petite small. fits perfectly. i am barely 5'5"" and carry my weight in hips and thighs. this fits perfectly without being too snug on the butt!! so, if you are a pear shape, get this dress!!",5,1,2,General Petite,Dresses,Dresses +1111,41,,"Beautifully embroidered dress. it's loose fitting, not meant to be tailor fitted, so it would run large to you if that's what you were expecting. the colors are gorgeous and the skirt has a really beautiful flow. if you are hoping for a fitted look, size down one size. there is plenty of stretch to this dress and plenty of room in the bust and waist. i generally go between 00p and 0p, and got this in a 0p (though either would work). it comes to just above my knees at 5'2"", 110, 32-24.5-32.",5,1,0,General,Dresses,Dresses +1094,58,Beautiful dress,"I saw this in the store and decided to try it on. it is so pretty. the fit is perfect. i didn't think that i would like it due to the sequins on the front. when i put it on, i didn't mind them at all. it really is a beautiful dress with beautiful colors. dry clean only is the only drawback to this one.",5,1,2,General,Dresses,Dresses +1100,38,,"Such a beautiful, flattering dress! i bought this to wear for our anniversary dinner and received so many compliments.",5,1,0,General,Dresses,Dresses +865,54,Asymetric draping,"I love clothing with elements that elevate them from basic to extraordinary. this tops does that for me: the black is a rich dark charcoal grey, the modal fabric blend has a nice feel and drapes well. however, the cut is very body conscious and i found both the medium and large tight in the midriff (my problem) area. since i love it so much, i will keep the medium since the sleeves are looser on the large. it looks exactly as pictured and would fit well on someone with a waistline.",4,1,11,General,Tops,Knits +1033,49,Nice jeans,"Good quality jeans, but had to return, as they did not fit my curvy hips.",4,1,0,General Petite,Bottoms,Jeans +1100,42,,"I understand the style of this dress is ""swing"", but there is just so much fabric, and it looked a bit like a tent on me. i ordered the s and i just found it to be too loose all over. the fabric is great and the colors are rich and lovely. this style would probably look better on someone smaller-chested, because there is no waist, it falls out from the bustline. cute dress, but i would size down.",4,0,0,General,Dresses,Dresses +986,68,Nice concept. disappointing reality.,"A good part of my closet is filled with retailer clothes. i mix them with my basics, scarves and jewelry. so, i immediately thought of a dozen ways this kimono could jazz up anything from skinny jeans to slip dresses, even though i felt it was pretty pricey. when it arrived, i was more than disappointed in the cheapness of the fabric. it does nothing for any of my intended clothes, so it is going back asap.",2,0,16,General,Jackets,Jackets +1111,62,"A knockoff, so what?","This dress is gorgeous, flattering, oood quality and, in my opinion, better than the erin fetherston dress because of the black, rather than nude liner, which really brought our the beautiful embroidery. come on, practically everything in rtw is a knockoff of something. i do have to comment that the slip is quite snug, though, but at least it's stretchy. that being said, it still had a bit of a tendency to creep up. i was glad i had a black half slip on as well. the fit is tts but a bit short wa",4,1,3,General,Dresses,Dresses +1111,56,Gorgeous dress,"I'm stunned by the bad reviews by others. i love this dress! it is an amazing, feminine, detailed, exceptional work of art, and lucky for me -- who usually takes 14s and 16s -- that it runs big. there is stretch to it, and it fits great! lucky, lucky me.",5,1,1,General,Dresses,Dresses +1053,36,Versatile joggers,"Great quality and cut! they are so versatile, which i love! highly recommend these!",5,1,6,General,Bottoms,Pants +844,27,Great length,"I am tall (5'11 and 3/4) and mostly leg with a shorter torso so i am always looking for longer shirts to balance my leg to torso ratio. i ordered this in the tan and blue colors in a large and so far have loved both of them. i am typically a medium in tops but tend to get the large for the extra length and have the top altered to fit if need be. however there was no need to alter these tops (making me think the tops typically run small). + +both tops are sheer requiring a tank of some sort to b",4,1,0,General,Tops,Blouses +1100,33,Paper crown does it again!,"This dress is beautiful. swingy and fun, and the floral pattern is just stunning for fall and winter. i am planning on wearing it with black tights and ankle booties. could be dressed up or down- very versitle. fits my tall curvy frame perfectly. love.",5,1,0,General,Dresses,Dresses +1111,58,,Saw this in the store and just had to have it. beautiful design. fits perfectly. looks nice with a belt as well.,5,1,0,General,Dresses,Dresses +1053,38,For slender legs only,"If you have muscular thighs, like me, these won't fit well. i'm usually a size 8-fitted/10-relaxed, i bought these in a large and the shins were the most relaxed part. had to return for not fitting well. but the quality of the product was nice.",3,1,4,General,Bottoms,Pants +1100,46,,,5,1,0,General,Dresses,Dresses +1033,28,Most comfortable jeans ever,"These literally are more comfortable than sweatpants. they are definitely ""relaxed"" and look a little baggier on than in the photo, but still cute and flattering.",5,1,5,General Petite,Bottoms,Jeans +1111,27,Floral and feminine,"This dress is a great dress for spring and summer (and early fall) events. it's surprisingly light weight and comfortable. you can pair different shoes with the dress due to the various colors which makes it easy to dress up and down. i definitely recommend if you're looking for a fun, floral, feminine dress.",5,1,4,General,Dresses,Dresses +1111,61,,"This is one fabulous-looking dress; however, the really scratchy neckline at the lace edge was a deal-breaker for me. i even tried sizing up, to see if that would help, but it was still too scratchy for me.",2,0,6,General,Dresses,Dresses +1094,39,Love & adore!,"Count me in as a five star lover of this dress! the details are so rich and interesting, so be prepared to get noticed when wearing. i'm happy to say that getting the size medium regular (instead of petite) was a good choice for my top heavy frame. the chest is fitted but not tight, the length is a not-too-short above knee, the tiered layers swing so nicely, and the beads/sequins add a touch is whimsy to the design. my one negative is the tassels at the neck tie--soo heavy cumbersome to style. o",5,1,6,General,Dresses,Dresses +1094,58,Beautiful just not for me,"This dress is lovely. it flows nicely and is extremely flattering. also true to size. unfortunately i do not care for a lot of glitter/sparkle, which this dress has going down the very front so it is going back. wish i could pull off the glitter but can't. i absolutely love this dress otherwise and very much recommend it.",5,1,11,General,Dresses,Dresses +1053,53,"Nice quality, but....",These looked super cute online and i was excited about getting them. i wanted that slightly baggy look to be able to carry them off similar to the model. so i referred to the size chart and ordered the size that said it would allow this. based on the size chart for this item...it is wrong. i should have had extra room. instead they were tight around the hips. i measured my hips before ordering and i am a seamstress....so i know where and what to measure. this is a nice quality product though...j,3,1,2,General,Bottoms,Pants +1080,32,,,5,1,0,General Petite,Dresses,Dresses +844,41,Stunning!,Love this tunic...and so do others! so many compliments already!! i've worn it with skinny jeans as well as flowy black pants. it needs a cami underneath since it's sheer. i also like to wear it with my long retailer necklaces!,5,1,0,General,Tops,Blouses +1111,56,,"If it's a knock off, its of the ""poise"" dress, and a pretty good one at that. this is a beautiful dress that took my breath away the moment i saw it. when i saw such a poor rating i just had to see why. the erin fetherston dress is over $100 more and they look just about the same. i'd rather have the $ and the look!",5,1,18,General,Dresses,Dresses +1080,60,Lovely warm weather dress,"I love this style and was pleasantly surprised that it fit my curvy shape well, despite it being a fairly straight shift style. it does wrinkel easily because of the linen fabric, but otherwise is really perfect! it is dressy enough for bridal showers or brunches but could also be worn casually.",5,1,0,General Petite,Dresses,Dresses +844,57,Love it,"Very comfortable, looks great on. like the color & fabric. something you can throw on & go",5,1,0,General,Tops,Blouses +831,37,,"Love this top! i'm 5' 118 lbs, purchased in a medium and plan on wearing it as a dress! it is so cute!",5,1,1,General Petite,Tops,Blouses +1100,34,Picture is misleading,This dress is navy and neutral stripes. not black and white. it fits true to the size width wise but is 2-3 inches shorter than the picture. to gain the length you might want to size up but it will be wider. the knot at the hip is beautiful and very flattering.,4,1,3,General,Dresses,Dresses +1033,57,Nice high waisted flare,"I'm so glad to own this one. i just tried it today and fully satisfied as always with pilcro. true to size, perfect color. +high waisted and flare just right. can be paired with cropped top or peasant top. looking taller on this outfit! +best of all i got it on sale!",5,1,0,General Petite,Bottoms,Jeans +1033,54,Ideal proportions,"The most disappointing thing about buying flare jeans when you're 5'4"" is taking them to the tailor to have a chunk of what makes them flares hacked off. not so with the petite 31"" inseam on these!!! love the perfect amount of stretch, the rise is high but not too high and the flare is perfect. definitely recommend.",5,1,4,General Petite,Bottoms,Jeans +862,34,"Less than ""just okay""","I was really excited for this top to arrive and was really disappointed once i tried it on. i am sure this is a gorgeous top on someone with a straighter or more slender frame. it is good quality and looks fine on the hanger. i think the color in the picture online accurately shows the color. ladies with hips or a booty, beware...this looked horrible on me! it clung to my butt and didn't hang nice and straight like it does in this picture. i expected the fabric to have a little give to it but it",1,0,1,General Petite,Tops,Knits +831,39,Love it!,I had this in my cart for a while online and ended up finding it in store. the medium fit good and looked great. i can't wait to wear it with a great pair of leggings. i did have to buy some static spray as it was sticking to my leggings i had on that day buying it.,5,1,2,General Petite,Tops,Blouses +1033,42,Runs smaller than usual pilcros...,"Love the pilcro brand, they are one of my favorites, even compared to other more expensive denim brands. i ordered my usual two sizes smaller and found they did not fit this time! i probably should have ordered one size smaller than my usual in this cut. sadly, i have to send these beauties back and hope for a pop-back.",5,1,0,General Petite,Bottoms,Jeans +1033,31,Love!,"I ordered a pair online, they came today and i am in love! the fit is great, i love the high rise waist. i will have to hem the bottom, i am a tad short (5'3"") and it is rare that i don't have to hem my jeans. they make my legs look longer and are a very flattering fit. i am very pleased with my purchase.",5,1,1,General Petite,Bottoms,Jeans +818,49,Pretty colors,Loved loved loved the shirt but...the material was so thin,2,0,0,General,Tops,Blouses +1126,83,Stunning!,"This coat is gorgeous. the minute i saw it online i ordered as fast as i can type! +when it arrived it exceeded my expectations in every way. +the lace detail is exquisite and the fit is so flattering. +i have the beatrice coat of last year and i so love it and this is equally beautiful. +a must for retailer shoppers. +i ordered my usual size and it fits to perfection.",5,1,0,General Petite,Jackets,Outerwear +1033,44,Great flares,"Nice jeans, fit true to size and look as pictured. i recommended those to a friend and she bought and liked them as well.",5,1,0,General Petite,Bottoms,Jeans +1033,57,Great fitting jeans,"I love these jeans. the wash is nice enough for work. they fit well around the waist and have just the right mid-rise height, to make them stylish- not mom jeans at all. i am a pilcro convert. very comfortable too.",5,1,0,General Petite,Bottoms,Jeans +1033,31,Love these!,"I rarely even try on denim at retailer because i'm quite curvy and the styles, while cute on the models, rarely have fit me. not so with these jeans! they're my first pair of pilcros and a steal at the sale price! i'm 5'3"", 150lbs, 32d for reference and i purchased a regular 28, even though i'm often a 27 in my favorite long and lean jeans. they hug my butt and hips in a very sexy way, but not to the point of not being able to wear them at my office. i will need to get them hemmed, but not",5,1,0,General Petite,Bottoms,Jeans +1024,42,Sexy!!,"I was hesitant to order high rise pants, seems they only ever look good on a tall person. but these worked out perfect, i'm barely 5'6"", and the pants are just as long on me as the model in the picture, just barely brushing the floor when i'm in heels, though if i'm honest they do touch down a bit which will scuff them most likely, but to tailor 1/4 inch seems ridic. love them, super sexy, slimming, and elegant, the color is rich and the material is not too thick or thin, very comfortable stretc",5,1,0,General,Bottoms,Jeans +831,37,Great for leggings,"I love the length of this top and i love tops that don't cling in the tummy area. it fits well and the crochet detailing is nice. for reference, i'm 5'.4.5"", 150 lbs, 34dd and the m fit me well. since i'll be wearing this with leggings mostly during colder months, this top is a little bright and the material is not meant for cold days. since i live in texas, i can get away wearing it even in colder months.",4,1,0,General Petite,Tops,Blouses +831,63,Beautiful top,"This top definitely looks better in person. i thought it looked pretty online, but when i tried it on, it looked even better! this top is on the longer side and fits like it looks on the model. the fabric is perfect in my opinion because i don't have to 1) dry clean it, 2) iron it, or 3) worry about it itching or bothering my skin. i am 5'8"", 140 lbs, and 34 a/b. i purchased a size xs and it drapes wonderfully. i love the crochet around the neckline, the 3/4 length sleeves, and the colors of the",5,1,7,General Petite,Tops,Blouses +831,50,"Love, love, love!","Saw this top online and immediately had to purchase it! the first time i wore it i received many compliments... even my husband commented how cute it is. as shown in the photo, the back is longer than the front. i am 5'6"" and my top fell as the model's does. love this top and so happy with my purchase! i bought a size small, i normally wear medium or small tops. fit runs a little large, but small fit perfect!",5,1,7,General Petite,Tops,Blouses +1033,52,,"Love these jeans!! i ordered one pair and liked them so much i ordered another right away! i ordered the 26 regular. +yes, they are too long (i'm 5'4 1/2""# for flats, but look fantastic with heels #i need 2 1/2"" - 3"" to wear with these). +the fit is comfortable, they stretch just enough to look nice and still move with you. they are not binding at all. + +the first time i wore them i got so many compliments. i even had a friend tell me she did not understand why flares were coming back because she t",5,1,0,General Petite,Bottoms,Jeans +1033,31,Finally!!,"These are absolutely fantastic! i love them! +i stopped wearing pants about 4 years ago. i could never find any that would fit over my thighs/hips that weren't too loose on my waist. took a chance with these after looking at the measurements and they fit perfect. higher waist than i'm used (sits just above my natural waistline) to with any of my skirts, but i'll get used to it. they're also too long to wear with any flats. being that i bought them for winter, i'll be perfectly fine with heeled bo",4,1,0,General Petite,Bottoms,Jeans +1033,40,Not for me but cute,These are a wonderful trouser style pant. i love fitted than flared denim so this fit isn't my top pick but it's a cute style! thick quality denim fabric with a medium rise cut.,3,1,0,General Petite,Bottoms,Jeans +995,30,,I loved this skirt. the material is so fun and a love the pattern. unfortunately they didn't have the size i needed so it had to go back to the store,5,1,0,General,Bottoms,Skirts +1033,40,,"I don't know why i had the opposite problem most reviewers had with these..... i tried on the regular length in the store and found that they were just a bit too short with heels. (i'm 5'5 ). i had them ordered in a petite and when they came, they were too short with flats! maybe it's the way i like to wear them, i like my flare jeans to barely skim the ground. i just exchanged them for regular length and will wear them with a small wedge shoe. aside from the length issues, these are super cute",4,1,0,General Petite,Bottoms,Jeans +1024,33,Beautiful color and very flattering,"These were as great in person as i had hoped; great color for fall, super comfy and flattering fit. happy with my purchase!",5,1,0,General,Bottoms,Jeans +1044,55,Love the look but.....,I ordered this in a regular medium even though i am short i never order petite pants as the crotch is always too short...but this crotch is very long.....i have exchanged for a medium petite and hopefully that will work. i have last years short denim romper by the same brand and did not run into this issue.,4,1,3,General Petite,Bottoms,Pants +1044,45,Spring and summer gotta have it,I am so happy i ordered this jumpsuit. it is exactly as pictured and has a very flattering fit. the fabric is light and it's very well made. great length for dressing up with heals or dressing down with flats. i love it!,5,1,1,General Petite,Bottoms,Pants +1072,40,Amazing. read my info about sizing before ordering,"Just got this dress in the mail yesterday and i love the style and fabric soooo much!!! the fabric looks kind of shiny in the photos so i wasn't quite sure, however in person it's a perfect blend that can easily be dressed up or down. sadly i cannot fully see how it looks on me because the bust of it is way too small. i normally wear a 0 or 2 in a dress and am a 32c but the inside panel that you cannot see in any of the photos is very fitted to the chest and i cannot even zip the size 2 over my",5,1,5,General,Dresses,Dresses +877,43,Cute top!,This top is very flattering and the silver line details give it a great pop of color!,4,1,2,General,Tops,Knits +1030,39,So crazy comfortable,"I haven't worn jeans in a year because i felt uncomfortable and constrained. these are as soft as my leggings. they have so much stretch, you could do yoga in them. if you want the jean look w/o the stiffness/structure, get these. flattering to the booty too.",5,1,0,General,Bottoms,Jeans +895,25,Absolutely amazing!!,I kept going back to this sweater as this goes with so many different bottoms! thank you retailer! i ordered the petite version since i am not as tall as the model so the length is perfect! the speckles of gray are beautiful and would frame any complexion! the fit if flattering with straight pants or short skirts.,5,1,3,General,Tops,Fine gauge +1030,51,Not the same...,"I agree with other reviewer, the material of these jeans is not the same! thin, stretches, and you end up pulling them up all the time. i am a short, curvy girl and would love to have the old jean fabric back! this seems to be the trend in jeans?nydj also uses this fabric?stretches too much.",2,0,0,General,Bottoms,Jeans +1078,39,Surprisingly comfy and flattering,"I ordered the xxs p and it is almost big, so between true to size and big. it is both flattering and stretchy. the waist comes in nicely, the sleeves are not annoying, and the sparkle add to the lbd in my opinion. length was right above the knee.just. i am 115 lbs, 30dd, 26.5 in waist for reference...",5,1,0,General,Dresses,Dresses +967,59,"Very cute, but...","I received this jacket in the mail today. i wasn't sure of my size so i ordered the s & m. i opened the medium first and found that to fit me well. i never tried the small on. fyi, i am 5'5"", 125 lbs. & 34a in the chest. it allowed some ""give"" room for layering, like the picture of the model. this is a very cute jacket, no doubt about it. i like the combo of the linen with the leather. the outside of the jacket is well constructed. the reason i put 4 stars and said ""but"" is because of the unfini",4,1,6,General,Jackets,Jackets +1072,43,Beautiful,"I am 5'8"" size 4-6 us. i could barely zip the inside bra on the 8. i wear 34 b. i think it is uk sizing. i kept the 8 ( had to return the 6). it's a beautiful dress but it is a lot of dress. maybe too much for someone more petite. it looks ridiculous until you put the belt on:)",4,1,4,General,Dresses,Dresses +967,38,Good idea...execution could be better,"For reference, i'm 113 lbs, with a short torso so i was thrilled when i saw this jacket on-line. i was expecting a soft, comfortable and polished piece. i tried on a standard size xs and the color of the khaki is muted on line, it's a little darker in person and the finishings like zipper plackets are much lighter in contrast. also, it is a ""mixed-media/material"" type. for example, it's linen with soft leather accents, which also have varying tones on the inside of the collar, on the wrist area,",3,1,9,General,Jackets,Jackets +877,38,Shorter in front than expected,"I'm 5' 2"" and 110 lbs. i ordered this in xsp but it was a lot shorter in the front than led to believe from the photo. it was also a little baggy on top. otherwise, i love the material, shimmer and overall look. i will be exchanging this for a regular xxs.",4,1,4,General,Tops,Knits +895,50,Great as a dress,"Have had a hard time finding comfy dresses appropriate but not too long for my 15 year old daughter. purchased this tunic in a regular xs and she loves it! she wore today with suede booties-very soft, cute and longer than many dresses sold for teens. she initially thought it was a winter sweater dress but i explained it is mostly cotton and would be a great transitional piece for spring and fall.",5,1,0,General,Tops,Fine gauge +877,46,Can't stop thinking about this one,"I am on an retailer diet but i can't stop thinking about this top! tried it on with my sister when shopping and if only they'd had my size in stock i'd have been a goner for sure. it is super comfy -- the fabric is somehow both lightweight and structured. while i'm kind of sick of high/low, this one manages to execute in a really subtle way that just manages to hide the bum without being in your face. love the sparkle -- you could wear this to work then out on a date or all weekend long. so versat",5,1,4,General,Tops,Knits +895,70,Comfortable style and fit,"This tunic is a lighter weight knit that isn't bulky to wear under coats, etc. it has grey shades running through the natural color which gives the knit more depth. it has a flattering fit. i bought it in the petite size and the length is perfect. i like the way the knit pattern runs two different directions in the front. it adds more interest to the look.",5,1,6,General,Tops,Fine gauge +867,29,Love!,"When i first saw this shirt in person i was shocked because the lines on it are sparkly and colorful. now that i look closely at the shirt online i see that, but i did not expect it cause it wasn't as obvious in the online photos. it is much more prominent in person. +i ordered it in my usual size and it fits perfectly - just like the model, definitely oversized but appropriately so. the length was also great (i'm 5'8) which made me very happy.",5,1,0,General,Tops,Knits +877,47,Not a tunic,"I just purchased this top in the store. it is definitely not tunic length as shown here, but rather hip length. also it runs a little small in the bust and had to go up a size. but it is adorable.",4,1,3,General,Tops,Knits +1035,49,Absolutely in love,I just received these denim joggers. this is my first pair of denim joggers and they are absolutely stunning. i like the decorative band. i do feel as these will be a staple in my wardrobe. the possibilities with these joggers are endless.,5,1,0,General,Bottoms,Jeans +877,41,Not the tunic show on model,"This shirt arrived today, and i was surprised how short it is. not a tunic at all. i wonder if the lengths on these vary, and if i order it again, it would be a different length. i ordered my normal size, xs petite. i'm 5-2"", so this should have been a tunic on me. perhaps if i see this shirt in the store, i'll try on the regular length. i'm returning the petite!",3,0,6,General,Tops,Knits +1044,33,Poofy,"I wish these fit more like joggers, but they are slightly poofier. with the big buttons, i felt a bit too clownish. however, it's a great statement piece if you're up for it. the quality is good and the fabric has a nice texture. i think the problem was that since linen doesn't drape and scrunch like less structured fabrics, so it holds more volume instead of loose, semi-flowy menswear look. i",4,1,1,General Petite,Bottoms,Pants +967,36,Great jacket,"This is one of the cutest jackets i have ever owned. nice soft material. i have a steamer so won't have to iron this, depends on how picky you'd be about that. great cut. ordered my normal size. sending another jacket back that luckily i hadn't worn yet. i know between the two, i will always pick this one. didn't find the sleeves too long which was good as no petite option. seriously so excited to wear this. :)",5,1,5,General,Jackets,Jackets +1035,34,All time favs,"Love everything about these! they are super fostering and comfy. i am a busy mom and need comfort. these are a great addition to my closet. super cute with booties, wedges and flats.",5,1,1,General,Bottoms,Jeans +1035,53,Great!,"They fit me great, are super comfortable. they are casual, yet also stylish thanks to details like the colorful waistband and the zippers on the side of the legs. they looks great and i think i can wear them for many occasions. i love them with booties :). i think they look better in person than online, too",5,1,1,General,Bottoms,Jeans +877,42,Not a tunic,"This fits like a regular top for me. i can take petite on top most of the time. i bought this in a medium regular and it fits like my regular high low tees or tops. i think it's so cute on. it's light weight enough for warmer weather. i'm going to love it this spring/summer and into fall with a jacket or cardigan. another plus is it doesn't gape at the armpit which i get sometimes with regular cuts. it's not so low cut on me either, but i have a 32f (37-38ish inches) bust so that may be why? it",5,1,0,General,Tops,Knits +895,35,So in love!!,"I am normally a pretty big fan of the moth brand, but i took a chance on this dress/tunic and i am so glad i did! i love love love this piece. it's soft, light weight material make t perfectly versatile so spring, winter and fall. it's so easy to throw on with a pair of leggings or skinny jeans and dress up or down with a scarf or necklace. i've already worn it several times and wearing it right now actually! it fits very true to size, i am 36d, 31"" waist and 5' 2"" so i ordered a large and it fi",5,1,0,General,Tops,Fine gauge +877,28,Not quite what i expected...,"I had read a few reviews on this shirt before ordering that said it ran small and was shorter than it looks. i thought it was worth finding out because i really liked how this shirt looks in the pictures on the store site. unfortunately, when i got it in the mail and opened it up i found out that all the earlier review were right. + +it is much shorter than the dimensions implied in the pictures of the model. i was expecting a tunic style shirt that could be worn over leggings or skinny jeans th",3,0,0,General,Tops,Knits +1080,42,,"I agree with the previous review that this dress runs large. otherwise, it is a lovely dress, though i added a belt since the tie wasn't defining enough for me. brown leather looks great with it and i get tons of complements.",4,1,0,General,Dresses,Dresses +255,45,Fantastic fit!,"This hoodie has a great fit! it is slightly tapered in at the waist so it is not boxy. in fact, it is quite flattering. it has pockets and a cute rubber zipper pull. the hood is a nice size, not overwhelming to the back profile. i purchased the matching pants a few months ago but had not idea when i ordered this. now i have a super cute ""lounge at the lake"" ensemble.",5,1,0,Initmates,Intimate,Lounge +829,53,Gorgeous,I was immediately drawn to this stunning blouse ( in pink) in the store. it is a fabulous silk and velvet just in time for the holidays and beyond. in true floreat style it is well made and unique. i'd say it fits tts to maybe slightly small if you want it to fit like it does on the model. i usually buy petite sizes when available but went with regular sizing as that is what was in the store and i liked the fit.,5,1,0,General Petite,Tops,Blouses +862,51,Beautiful pattern,"In person this pattern is vibrant and lovely. i usually wear an xl in tops but in flowy ones like these i can size down to a l, which i did. the nice thing about the cut is it minimizes a large bust while maintaining a nice shape. it is a bit long which lengthens the torso if you are short like me. the bib portion is almost quilted and very substantial. all in all, a great purchase.",5,1,1,General Petite,Tops,Knits +862,48,Sweet little top,This is an adorable little top. the tank has such beautiful detailing on the chest. the flowers are more red than pink. i found it to be tts on me.. the tank is flowy and loose.,4,1,0,General Petite,Tops,Knits +1111,28,So versatile,"This dress is great! it's perfect for a casual look with a denim jacket, comfortable for traveling, and can even be dressed up for a more formal occasion. i wore it on a cross country flight (toronto-british columbia) and was so comfortable with a sweater and scarf to wrap around me if i got cold. the only con i found of this dress is the back is a bit low leaving your bra showing and being a 32-d i don't feel comfortable going without a bra. i purchased a few of the bralettes to go with it to m",4,1,0,General,Dresses,Dresses +862,39,"Nice fit, beautiful embroidery","I love the embroidery detailing on the top. i think this shirt looks better in person than online. + +i'm an hourglass shape, and this loose style for shirts often tents out away from my chest, but this top drapes down nicely. however, loose shirts like this aren't my style, so i belt this at my waist, and it looks even better. the top flatters my broad shoulders (meaning that it doesn't make them look wider), and it hits below my hips (i'm 5'10""). i also appreciate that the armholes are small,",5,1,0,General Petite,Tops,Knits +868,70,Amazing top,This top is just amazing. it does run large so size down but fit and feel is wonderful especially if you would like to hide some lumps and bumps this is the perfect top.,5,1,1,General,Tops,Knits +688,34,Good purchase,These leggings are very comfortable and cute. only reason they are not 5 stars is because the pattern is not quite as vibrant as i was expecting.,4,1,0,Initmates,Intimate,Lounge +868,29,"Yeah, but it's a great tent!","Ok, this shirt is like my dream. it's large, comfy but sexy with the back dip. as a larger chested lady (32g), i really appreciate having a tee that i can easily throw on and look put together. clearly, this is a larger, styled swing tee but it's one of my favorites. paired with a cute pair of boots, and easily worn with a jacket. it can tend to fall off the shoulders so i'd size down. i'll probably pick up the grey too.",5,1,0,General,Tops,Knits +850,20,Great casual top for jeans,"I love this top. the material is soft but good quality and not flimsy. the cut is fitted and flattering. the color of the fabric is ivory, not bright white. the embroidery is a good quality and doesn't easily fray. the fit is true to size. i highly recommend this top. i wear it with jeans and it looks really cute, always get compliments. it's very comfortable too.",5,1,2,General Petite,Tops,Blouses +862,38,,"This top is so lovely. the fabric is thick and soft, and the drape is phenomenal. i did size down based on reviews, i typically wear a large and the medium is perfect, nice and flowy and very flattering.",5,1,0,General Petite,Tops,Knits +850,60,,"This blouse is sumptuous! the fabric is soooo soft, embroidery beautiful, fit flattering. sadly i returned it due to the color. i mostly shop on-line due to time restriction, and the picture looks to be a winter white to me. it is a light yellow color, most pleasing with the cobalt embroidery. alas, any shade of yellow makes my skin look jaundice - so back it had to go.",5,1,7,General Petite,Tops,Blouses +850,53,Beautiful details,The embroidery details on this top are beautiful. the material is soft and a really good quality. my first time wearing out and i received so many compliments! i love it!,5,1,11,General Petite,Tops,Blouses +829,39,Like but not love,"I tried on the pink in xs in store. it was so big on me. i wanted to love it, the stylist did, but i felt meh... so did another costumer, didn't like it on me. the colors are really nice (and the blue seems really nice too), but the cut was a little wide. fabric is very soft. for reference, i am 115 lbs, 0dd, 26.5 in waist.",3,1,0,General,Tops,Blouses +1092,39,"Beautiful, looks fragile but well-made","Love this dress, the colors are stunning, the make is beautiful...i don't know where to start. the body part is a nice neutral color, and has beautiful beading, my concerns is snagging since the fabric is so flowy and the beading pokes out sort of... i love that they used different patterns on the layers, the skirt bottom layer has cute polka dots that are translated on the sleeves (bottom of the sleeves). sleeves, are, by the way, fun and bubble-like. the cut of the dress is not following the b",5,1,4,General,Dresses,Dresses +1092,33,Not quite for me,"Based on other reviews i had no doubt this dress would be perfect. it truly is a work of art, however it just wasn't ""me"" when i tried it on. i'm sure for others it will be perfect. my biggest issues were the sheerness of the top portion, which is obvious in the photos. i was hoping it would be less obvious in person. also the elbows of the dress were tight, so it was difficult to bend my arms, and i have pretty slender arms.",4,1,0,General,Dresses,Dresses +255,58,,"Nice jacket, good quality, flattering design. i'm 5""4"", 115 lbs, bought a size s and fits well. love the hood. a little snug in the arms if you want to wear a long sleeve underneath. overall a good buy!",4,1,0,Initmates,Intimate,Lounge +850,61,Not like the picture,"Got this for my daughter for christmas. she loves the ""boho peasant"" look. i thought the fabric would be white or at least cream color but it was closer to pale yellow. although the fabric quality and texture is lovely (more substantive than i expected) , she just couldn't like the top with the color being so off. +disappointing as picture makes it much prettier.",3,0,1,General Petite,Tops,Blouses +862,46,"Very soft material, color is different in person","I ordered a size xl. it's flowy so it could be running larger but since the fit in the shoulders/neck/sleeves matches the model, i think it's true-to-size for the design. it is so comfortable. i love the softness of the material. the problem for me is the color. on my monitor, it looks like a light ivory or white. but, the embroidered lace bib portion is a darker ivory shade that doesn't work for my complexion so i'll be returning mine. everything is well-made though, especially the vintage-styl",5,1,5,General Petite,Tops,Knits +862,70,Pretty tank,"The floral pattern on this tank tranforms it to a beautiful piece. i usually tend to avoid top with full pattern because it tends to look busy, but not with this top. i'm usually wear s/m with retailer brand depending with the design. this tank has loose bottom section, so the s is tts for me.",5,1,0,General Petite,Tops,Knits +868,32,,"This top is cut too short & wide with too much light material in between. to be truly slimming & flattering, it needs to have more of the rayon/spandex blend, to make it heavier & bouncier. then it would ""hang"" appropriately and ""swing"" and (hopefully) not add pounds to the wearer. unfortunately this top is too lightweight & has too much material. pass.",3,0,0,General,Tops,Knits +862,31,,I purchased this top over the weekend and absolutely love it. i am currently 9 months pregnant (due in a week) and this top is perfect bc it has plenty of length. it is super soft and comfortable for the texas heat. i am 5'6'' usually 115 lbs currently closer to 140 lbs.,5,1,0,General Petite,Tops,Knits +862,33,Great ahirt,"Just got this in the mail today. very pretty, soft and comfortable. i could probably have sized down, but it fits fine. for reference, i'm 5'4"", 138 lbs and i got an xs. grab this while it's on sale!",5,1,0,General Petite,Tops,Knits +384,30,Very nice,"I'm not sure what cup size i am, 36b or 36c, but the medium fits perfect. material is soft and stretchy. i usually wear a medium size shirt. i definitely won't be wearing it out in public, but i like it a lot for at home wear. the matching underwear may run large. i'm usually one size larger in bottoms than in tops, but the medium worked for those too.",5,1,0,Initmates,Intimate,Intimates +255,73,Not dissapointed,"The weight and feel of this jacket is what i was hoping for. it is medium weight making it my go to on cool days and is also very flattering to wear...it actually gives you shape! i like the front texturing on the scroll work and the pockets are well placed. if anything could be different, i would have preferred a little more room in the sleeves as they run slightly snug so not made to wear with anything with bulk, but overall not an issue.",4,1,0,Initmates,Intimate,Lounge +1092,83,Gorgeous and exotic dress,"This dress is stunning. it is beautifully made with laces and beading in a way that is art. it fits in a very flattering and comfortable way. i think is would flatter any body type. the details are captivating and it immediately grabs the spotlight when you walk into a room. +i ordered online and when it arrived i was stunned with it's exotic use of fabrics, textures.....a rare find and a must have.",5,1,0,General,Dresses,Dresses +313,42,"Nice staple, thin, long",Was looking for a layering tunic and this does the job. it's very long and i'm 5'11 and this covers to my mid thigh. the arms are very tight but stretched after a while and the material is thin. i like the button details and the olive color are a nice break from black and white. white might be see-through.,4,1,9,Initmates,Intimate,Sleep +876,40,,I really wanted to like this shirt the quality is amazing and much prettier in person but it is hard to take care of. if you wash it the wrinkles are horrible so it has to be dry clean only. also the back is ridiculously long it looks very odd from the side view.,2,0,2,General Petite,Tops,Knits +862,61,Beautiful!!!,"This top is beautiful on, it has very feminine detail and is very flattering. the first time i wore it i got 4 compliments on it. i would definitely recommend!",5,1,1,General Petite,Tops,Knits +868,46,Blousy top,"I originally bought this in medium, my normal size. when it arrived, it was absolutely huge, like wearing teepee. i took it back to the store, and re ordered a small, in the black, and now it fits great. this is a great shirt, but giving four stars due to the inconvenience.",4,1,3,General,Tops,Knits +934,41,T-rex arms,"This piece is lovely if you do not plan to use your arms, or if you are a t-rex. if you are not a mannequin or a dinosaur and actually plan to use your arms, this top may not be for you.",3,0,0,General,Tops,Sweaters +739,60,Casual and smart enough for work,"I'm a teacher and am always looking for easy to wear pieces that will also work for my job. i also walk in to campus with my backpack, so i need something that looks good but is comfortable. +this dress drapes beautifully, is really soft, and has a wide, flattering neckline. i'm short and chose the regular size instead of petite so that it would hit right at the knee. it's definitely on the generous side: i usually wear an s and i sized down to an xs. +i can definitely see getting a lot of wear",5,1,2,Initmates,Intimate,Lounge +1080,44,"Beautiful dress, runs a bit big","I love this dress, i love the style, i love the pattern, i love the feel of the fabric. there's a slight puffiness to the shoulders that surprised and delighted me. however, i think it runs a little large, particularly because it's not fitted at all - that tie around the waist is the only defining feature, and it's a great one: this dress (and your figure) needs it. i am 135 pounds, 5'5"", and i normally wear a 6. perhaps i should've known to try a small, but i went with my usual size in dresses",4,1,1,General,Dresses,Dresses +876,57,,"This top is really nice and the fabric is more substantial than it looks in the photo. it has a great shape and is nicely made. i ordered an xs, which i nesrly always wear, but i measure 35"" in the bust and it fits well, but no extra room. i'm petite and it is not too oversized. really cute top and a great value.",5,1,1,General Petite,Tops,Knits +739,23,Good work dress,"I came to retailer just to browse and came across this dress. i almost didn't get it because it looked very big. however, i tried it on, and fell in love with it. it does run a little wide, but the length is good, and it is very comfortable. it is perfect for the summer months.",4,1,3,Initmates,Intimate,Lounge +862,66,Beautiful,"This is such a beautiful top. i sized down from a large to medium and it fits but too long and full for my shape. also found the armholes too deep and revealing for my large bust. sadly, returning.",4,1,1,General Petite,Tops,Knits +862,54,,"I agree with the other reviews, this top runs large so size down. with that being said, this is a beautiful top, love it!",5,1,1,General Petite,Tops,Knits +868,35,,This top is soft and comfortable without being some shapeless drag with too much fabric. i did size down as did the other woman in the store with me. i can see many more wears out of this top. wish it had been made in other colors or white would be beautiful!,5,1,0,General,Tops,Knits +829,38,Lovely colors but huge and not as pictured,"I loved the colors (especially the pink) and thought this would be really pretty. however, when i received it, its much shinier with is a very thin material and is a bit of a retro in a not nice way feel to it. i also found it huge. normally, i wear an xxsp or a 00p (for reference i am 5'2, 30e and 24 in waist. i tried both the xxsp (fit better but was too short) and the xxs (too large). i had hoped this would have more shape and would be more fitted, but its definitely not.",2,0,0,General,Tops,Blouses +862,31,Fabulous and versatile,"This top is beautifully constructed, fits true to size i ordered a medium - the armholes are nicely cut - not too loose will be able to wear with a racer back bra, accommodates my larger bust 34dd.",5,1,0,General,Tops,Knits +862,39,"Pretty, versatile swing top","This is a very pretty summer top. the detailing at the neckline adds interest, and the floral pattern is gorgeous! one note: in the picture, the top appears to have a white background, but it is actually more of an ivory/cream color. this is definitely a swing top style with a lot of room in the body. i am 5' 8"", 145, and normally wear a medium or 6 in retailer tops. i ordered a small in this top, and it fit great at the top but was almost too large in the body of the top. i am considering",5,1,9,General,Tops,Knits +862,39,,"This top is a perfect example of why retailer is heaven. the attention to detail is stunning and it drapes beautifully. i am 5'6"" and 140lbs with an average build. an xs fits me perfectly. this top is very flowy. i could wear it until about six months into a pregnancy, yet it is flattering even though i am not currently adding to the human race. it's an investment, but it's high quality and worthy of the price tag.",5,1,2,General,Tops,Knits +862,39,Lovely top!,The print is beautiful and the detail on the chest is so pretty. th fabric is a soft t-shirt martial. i ordered a medium and it fits like a large. it is supposed to be flowy and loose though. overall i feel beautiful in it. great for our hot humid charleston summers!,5,1,7,General,Tops,Knits +868,37,Love this!,"I tried this one on twice before i committed to it, but i'm so glad i did!! this top has a lot of volume. it is fitted in the arms (but stretchy), has quite a large neckhole (but lays beautifully on my neck and shoulders), and has a lot of volume on bottom. what i love about it is the variance in length at the hem. it's long in the front and back, then comes up on the sides. this makes the top really feminine and lovely! it's the perfect top for women who carry weight in their belly or butt...i",5,1,3,General,Tops,Knits +868,50,Super comfortable and flattering,"I tried this shirt on on a whim in my local store when i was there to shop the sale items an to my surprise, it was very flattering and comfortable. it had a unique fit and design; i tried on the black in an xs (my usual size) and surprisingly, i didn't find it to be too big at all. it fit just like it did on the model. you could almost wear it as a mini dress over leggings/shorts based on the length. like one of the previous reviewers, it would be great if it came in other colors. this top woul",5,1,1,General,Tops,Knits +688,39,Pretty,"I have admired the workout leggings retailer sells since they debuted last year and i was excited when these went sale-on-sale. they're very cute and definitely true to size. i was worried the white made me look big, but with a longish shirt it's fine. also, they aren't made from the most athletic fabric - i think if i sweat in them too much they'd get icky fast. i don't sweat that crazy from my legs though so i expect they'll be fine!",4,1,0,Initmates,Intimate,Lounge +352,24,,"This is so beautiful! i loved it online, but it's even prettier in person. it's a little greener than it appears in the photo. the straps are actually a green rather than white. i'm 5' 6'' 123 lbs and the xs fits perfectly. worth the money!",5,1,1,Initmates,Intimate,Intimates +868,67,Pretty but.....,"The fabric and style on this swing tee are really nice but be aware it runs really, really large. i downsized on my order because of the style but it wasn't enough. like wearing a tent. i would recommend it but know its very full. i did return it.",3,1,16,General,Tops,Knits +911,38,Preppy casual,"This top is super comfortable and has a great preppy casual look. i have been wearing it on weekends with jeans, but could also pair it with a skirt and tights to have a more work type look. i don't usually like the shorter length shirts, but the fit on this works for me.",4,1,0,General Petite,Tops,Fine gauge +739,32,,"Saw this online and didn't catch my attention, but saw it in store and decided to try it on. really cute and comfy on. the fabric feels so soft. it runs very big.",4,1,7,Initmates,Intimate,Lounge +255,46,,"The body is huge, while the arms fit. being returned!",3,0,1,Initmates,Intimate,Lounge +688,27,,,4,1,0,Initmates,Intimate,Lounge +868,30,Lovely but large!,The quality of this top does not disappoint; but it does run very large. i wear a size 14 and a 40d bra size; & the xl fit more like a xxl and was too big. i am exchanging it for a size smaller. i can't wait to enjoy it!,4,1,1,General,Tops,Knits +688,46,Summer blossom crops,"In the photo i loved the colors. in person though, the print on mine had the four huge pink lily flowers on the front and it just wasn't the look i was hoping for, like the photo. also, i failed to notice in the photo that there's elastic along the seam of the butt! this seems silly and unnecessary.... it's not terribly noticeable on, but still i felt weird. the fabric is thick and not see-thru and the quality is fine, but the combination for the shifted print and the unexpected ruching and thes",4,1,0,Initmates,Intimate,Lounge +862,40,Love!!,"Love this shirt so much. it is comfortable and a beautiful print. i sized down because it is very flowy! it is ivory instead of white, but still looks beautiful. one of my favorite tops.",5,1,1,General,Tops,Knits +1092,64,Work of art,"This is the reason i doggedly fight for items at retailer as there are often maybe 6 made in my xxsp. + +you really have to see this in person. even the slip could be worn as a chemise alone with the double layer and dots. the colors are gorgeous. i wanted this to try with my burgundy velvet blazer (and it works withe the copper color - too). + +the dress is really a swing shape - not close fitting - no ""waistline"" so it is very comfortable. the sleeves are fitted, but stretchy so should not be a",5,1,0,General,Dresses,Dresses +1092,26,Heartbreakingly gorgeous awful fit,"This dress, it is heartbreakingly gorgeous, stunning. the entire idea and design is so gorgeous! the style with the sleeves, embroidery and slight shimmer at the top, two layers underneath, the dress is extremely gorgeous. i am so so so sad i could not keep it. i don't get why the sizes are so off here. i have come across so many clothes with gorgeous embroidery but too loose or too tight. i didn't want to send this dress back but it did not look good. it was just too loose. sad!!",3,1,0,General,Dresses,Dresses +850,42,,,4,1,0,General,Tops,Blouses +829,42,Even more vibrant in person!,"The colors on this blouse are beautiful and even more vibrant in person. i love that the blouse is lightweight, perfect to wear to any holiday gathering!",5,1,0,General,Tops,Blouses +1066,50,Fun new toy,"I have always had a thing for velvet, and velvet pants are hard to come by so i was so pleased to see these and i rushed to order a pair in the dark turquoise. they are beautiful; exactly as pictured, but a bit longer in length on me. i am 5'3"". they can be dressed up, but what is so fun about them is that they can easily be dressed down as well. i am wearing them with a heather-grey t-shirt. they also pair well with the metallic linen tees. my one and only criticism is that they are a bit wide",5,1,13,General Petite,Bottoms,Pants +251,67,Cozy and stylish,"I love this cardigan! its fit, however, really depends a lot on an individual's height and build. i am about 150 lbs. i have slim arms and am larger in the chest. my typical size in retailer clothing is m. having said that, i found that in this top a s fit best. it made a difference with how the pockets and lapels lay. the pants you wear may affect the look when you snap it closed. wearing leggings or slim pants (ex. pilcro cords) gave a much more flattering look to my backside. jeans...not so muc",5,1,5,Initmates,Intimate,Lounge +1077,40,My favorite,This is one of my favorite retailer dresses of all time. it is soo much better in person and on than the stock photos. very romantic and fun.,5,1,0,General,Dresses,Dresses +1077,36,Just okay,"Frustrated that the details don't mention there's a side zip. for whatever reason, i have the hardest time fitting into dresses with side zips and so i was annoyed that the details say it's a pull-on style when that's not the case. there's also no give in the waist. besides the fit not working for me, it was a pretty dress but overall a little too much going on.",3,0,1,General,Dresses,Dresses +839,39,Love this tunic!,"This is figure featuring without being too tight. it fits exactly like the picture. it is a bit pricey, but can be dressed up or dressed down and is perfect for hot summer days as well as worn with a cardigan. i love it!",5,1,2,General Petite,Tops,Blouses +251,37,,"So soft and comfy. fits great, love the length. i am sure it will get much wear, great addition to my wardrobe.",5,1,0,Initmates,Intimate,Lounge +1077,33,Floral beauty,"I love this dress! there are so many different looks you can get just by adjusting the straps or shoulders. the material is lightweight and flows with every turn. i ordered my usual size 10 and it fits perfectly. i did need a little assistance in getting the side zip to go up, but once it was on i didn't want to take it off.",5,1,0,General,Dresses,Dresses +251,35,My new favorite cardigan,"This is the softest cardigan i own. perfect for lounging, going to / from yoga or dressing it up with a statement piece or a scarf. i've worn it buttoned or open, and receive many compliments. i have it hanging on the inside of my closet door because i wear it more than anything else at the moment : )",5,1,1,Initmates,Intimate,Lounge +870,46,"Tried to make this top work, too short","I bought this in size xl. it ran much shorter & smaller than is typical for this brand. i found the arms tighter on me compared to the model's photos. the lace itself was pretty, intricate and washed well. i wish this shirt had worked but i ended up donating it after wearing it a couple times. the cropped length and close-fit just didn't work on me. i thought the sleeve shape was pretty. with just a little more material, this would have been a favorite. i hope it works well on whoever receives i",2,0,0,General,Tops,Knits +122,37,So cozy,"Love wearing these, i see them getting a lot of wear in the winter",5,1,0,Initmates,Intimate,Sleep +1094,37,Unique dress,"I don't have anything like it in my closet, really excited to wear it",5,1,0,General Petite,Dresses,Dresses +251,37,Not for the curvy,"I ordered this piece online and returned it at the store a few days after arrival. the material is very soft and well made. however it is not flattering on the hourglass or pear shaped person. moreover, if you are short, the design may make you look shorter. i am 5'4"" and it did to me. the design is beautiful. if you are tall and have narrow hips, this is the piece for you. i am 5'4"", 160lbs and usually wear a s/m.",4,1,2,Initmates,Intimate,Lounge +1094,28,Heads up the sleeves are a bit tricky,"I love this dress, it is very photo friendly which is a big plus for me. i am not the tallest person, 5'4"" but i had to be careful not to get my sleeves in the food i was preparing. perhaps the sleeve length is a bit longer on me, but i had to be very cautious while trying to put the finishing touches on our holiday feast. it's just something to be aware of. i suggest sushi or a nice cheese plate if you want to wear it as the hostess.",5,1,0,General Petite,Dresses,Dresses +122,26,"Casual, pretty and simple",I was looking for a new pair of pajama pants/around-the-house pants/occasional-quick-errand pants to replace a pair that i bought from retailer six years ago and i fell in love with the look of these.they are truly comfy and are flattering on. the lace adds a nice feminine touch that makes me feel pretty even on my laziest days. i'm hoping these will last me another six years.,5,1,0,Initmates,Intimate,Sleep +1077,65,Photo friendly old school retailer dress,"I love this dress. my favorite retailer purchase in years. it is perfect. looks great- no need for ironing and is really sexy for the length and amount of material. i would buy it 10 more times if i could. + +yes!",5,1,0,General,Dresses,Dresses +1066,62,Huge disappointment,"These pants look beautiful when you first see them. it goes downhill from there. the waist is very small in relation to the rest of the pants. it felt fine when pulled up, but it is a struggle. i could get past that, but when i looked in the mirror, i could see right through them. no lining and not very thick material for this price!!! a real bummer, especially since it was a birthday gift.",2,0,1,General Petite,Bottoms,Pants +1066,67,Wonderful pants,"Just wanted to add my comments to the review that stated these pants ran small in the waist. i sized up because of that review and ordered an extra large as i wanted these to be loose and comfortable. i typically am a m/l in retailer. the xl is actually a little big but not enough that i need to return them. if you order these in a fit that is fairly loose, these are not see through at all. (i ordered the color shown on the model) i am about 5 feet 4 so the pants are not as cropped on me .",5,1,0,General Petite,Bottoms,Pants +1008,36,Super comfy. great fall colors.,"This skirt could not be more comfortable. and the colors are great--nice and vibrant. i got compliments on it the first day i wore it. the only problem is it fits larger than i thought it would--it's really stretchy fabric too. i'm a little curvy on the bottom and am short waisted, so i opted for a medium. i should have ordered the small. but it still works. + +the other thing that's nice is that for short people like me (i""m between 5'2"" and 5'3"") it doesn't drag on the ground; in fact it fits me",4,1,3,General Petite,Bottoms,Skirts +1094,60,Disappointing,"This dress has beautiful lines. i loved the design on the material, but the fabric looked very cheap & even was already snagged when it arrived. unfortunately, i must return it.",2,0,0,General Petite,Dresses,Dresses +1066,61,Love the feel fit and look,Classy pants that can look casual or sophisticated. my husband loves them on me. for a dinner out i dressed them up with a top from retailer. i think these will be a must on my trip to florida this winter since the pants will look great with a t.,5,1,0,General Petite,Bottoms,Pants +251,60,Amazingly comfy,"I had high hopes with the other good reviews, but you just don't know how amazing this is until you put it on! just so soft and cozy! i am so excited for more saturday/sunday products at retailer!",5,1,2,Initmates,Intimate,Lounge +251,38,,"I really wanted to love this cardigan and did until i tried it on. the arms are so tight! i ordered in a m, which is my normal retailer size, but couldn't move my arms. took it back, was going to try in a l, but store didn't have any. for the price, i need to be able to move my arms!",2,0,1,Initmates,Intimate,Lounge +1094,50,Surprisingly very pleased!,"I bought this dress online last week (in large part based on all the positive reviews), then i saw it in the store. i didn't try it on because it was already on the way to me and i had ordered a petite anyway and the store didn't carry petites. i have to say when i saw it hanging in the store i was disappointed! for some reason i didn't realize it was a sweater dress and it looked frumpy on the hanger. so i had resigned myself to returning it once i received it. well it came today and i figured",5,1,1,General Petite,Dresses,Dresses +1094,41,"Fun, feminine and functional",Very cute and comfortable dress. run true to size. i usually wear a 4 and the s fits nicely. stretchy and soft!,5,1,0,General Petite,Dresses,Dresses +251,37,Wanted to love this!,"This is a beautiful cardigan. its effortless, lightweight, with some cool detail to keep that low key look extra stylish. the moss color is very subtle with a small lined print. i wanted to love this...the detail, the length, the weight and the color are all so dreamy...but for me, the arms were super tight. normally i'm a l or xl in all retailer tops and sweaters...and i do have larger arms which is always a struggle for me when shopping. i couldn't even get the cardigan on my arms. there is no s",5,1,8,Initmates,Intimate,Lounge +1077,41,,I was very excited about this dress but when it came i saw it had too much going on. it either needs the ruffle taken away ( my first choice) or the halter part taken away. in the end i think it needs to go back.,3,0,8,General,Dresses,Dresses +251,36,,Love this cardigan! i've been searching for a comfortable lounge type of sweater and this is perfect. the sleeves are a bit tighter than the body. but i would wear it over a tank top so it is comfortable. i am 125 lb and 5'5' and i ordered my usual m.,5,1,0,Initmates,Intimate,Lounge +191,24,Love it but wish i could tweak a bit.....,"Let me just say that this material is awesome!!! when i first took it out of the packaging i was afraid that the top was too thick of a material but after wearing it around the house it seems light enough. (i live in a warm area). i will say that i find the top to be a bit larger. i ordered a medium in fear that the small would be too small on the bottom. i could have taken the small in the top---even though it is meant to be baggy + + the bottoms on the medium fit me great- they shorts don't b",5,1,1,General,Bottoms,Shorts +1094,43,Fabulous dress!,I was excited to order this dress based on the reviews. it was better than i expected. the fit is perfect and one of the most comfortable dresses i own. the fit is flattering and i will get plenty of use out of this one!,5,1,0,General Petite,Dresses,Dresses +1094,45,Not what i hoped for,"The color is a nice cool red and the material is very soft. but the dress left me feeling shapeless and the bell sleeve overtook it. i wanted to love it, but it just wasn't working for me. i'm 5'8"" and purchased a s. it fits true to size, however it was loose around the waist and just wasn't complimentary on me. this will have to go back.",2,0,1,General Petite,Dresses,Dresses +1077,35,Super feminine. love!,First i definitely understand why most reviewers either adore or hate this dress. luckily for me it worked in my favor although i will point out the downsides too. (1) it runs small. the only reason i was able to fit my usual size is because i have a tiny bust and have been working to tone up. but still i had to maneuver to get the sidezip up. i would size up but....(2) being that this dress runs small it appears more fitted on top as if it were a fit and flare or bustier which i like. (3) you h,4,1,1,General,Dresses,Dresses +251,34,,I purchased the moss color in this cardigan. i really love the texture of the material. it is very very soft. my issue with this is the arms. like other reviewers have said they are extremely small! i went up to a large rather than my usual medium and they were still tight. i really wanted this to work but i will probably return due to the arms.,3,1,0,Initmates,Intimate,Lounge +1094,28,Eye-catching piece,"When i first saw this online, i knew i had to have it. so, when dresses were 25% off, i grabbed the deal! it's perfect. it's super soft and an appropriate length. i love the bell sleeves-they're ultra feminine and slightly trendy, but not too much! i definitely recommend this dress! reference: 5'7, 140ish lbs--size 27 in jeans, xs/s/4 in tops and dresses and the small fit me better than the xs.",5,1,1,General Petite,Dresses,Dresses +1094,46,Anthousai swing dress,"I'm an hourglass shape and on me this dress didn't give me any shape at all. and i felt the bell sleeves were a little much. the lining though is really soft and excellent for colder weather. and the print is very pretty, just as pictured.",4,1,0,General Petite,Dresses,Dresses +1077,35,,"Overall a very nice and unique dress. it does have too much going on, but can be worn in a versatile way, and if you are small chested, without a bra. i am not a big fan of the material, i wish it was softer. it definitely has a gypsie/bohemian look if that is what you are looking for!",3,1,0,General,Dresses,Dresses +251,32,Love this thing :),"I know i will be wearing this a lot! i wore it on tuesday for work with some dressier pants and opened, i wore it on sat and sun for long walks :) great piece",5,1,0,Initmates,Intimate,Lounge +1008,69,Cute and flirty,Very versatile skirt that's suitable for any occasion or any season.,4,1,3,General Petite,Bottoms,Skirts +1094,28,Lovely!,"This is a lovely dress and exceeded all of my expectations. very unique and well-made. swing dresses can be a hit or miss, sometimes, but this one is perfect. couldn't be happier!",5,1,0,General,Dresses,Dresses +251,35,Very cute!,This cardigan is very cute. but after 1 wash and no dryer the back has a bunch of pulled threads! very bummed with the quality.,3,1,0,Initmates,Intimate,Lounge +191,36,Great colors but wrong for me,I love the quality and colors of this romper; however i have a long torso and the top part was just too short for my body style. it made the bottom part pull as well. overall the fit just wasn't right for me. i did love the material and it is a very nice piece.,3,0,1,General,Bottoms,Shorts +251,33,Really enjoy this cardigan,"I love the cardigan. it's super comfy and long enough to cover my behind. the pink and white stripe lining adds a softer touch. it's a little tight in the arms. i'm right between a small and medium, i wish i would have ordered the medium.",5,1,0,Initmates,Intimate,Lounge +251,33,Great cardigan,Just got this yesterday and i'm wearing it today! super comfy for running errands with the kids and going to and from the gym...or just to lounge around the house. i go between a m and l and went with a m since its flowy and it fits great.,5,1,13,Initmates,Intimate,Lounge +829,45,"This blouse is simply the best, i love it!","Everyone should have this blouse, amazing! simply love it! it does run large, so purchase down 1-2 sizes.",5,1,6,General Petite,Tops,Blouses +867,25,Comfortable & sexy,This shirt fits really well- i ordered a size small and it's definitely a bit form fitting. i was a little bit hesitant to purchase this at first- for a tshirt it's a pretty hefty price. but the quality and cut are really quite attractive and worth every penny.,5,1,0,General Petite,Tops,Knits +860,55,Polo shirt with twist,"I'm 5'2, 105lbs and bought xsp. seems a bit too short for my taste especially since this is a popover, but not bad enough to return. everywhere else fits tts. nothing stunning about it, but is unique enough to add to my everyday casual. it would be better if there are more colors to choose from.",4,1,21,General,Tops,Knits +1022,32,Great fit but do stretch out,"I love the fit of the stevie jean. they are not too tight to make them inappropriate for a mom/teacher, but are definitely not your momma's jeans either. i have two pair (gray and a dark denim) and both fit perfectly after a wash. however, the waist stretches out throughout the day enough that i have to wear a belt which i never do! i could probably size down, but i didn't want the thighs to be too tight. for reference i'm 5'2"" 130 lbs. and wear a pretty standard 2, sometimes 4. i bought these i",4,1,6,General Petite,Bottoms,Jeans +68,47,Love this dress,Confortable and looks great how ever you wear it.,5,1,0,Initmates,Intimate,Layering +1022,25,Love stevies,"These are a great dark wash and they fit true to size to every other stevies i own. for reference i am 5'6"", 145lbs, size 6/m and the 29 fit perfect. they are a bit long but i fold them up and it looks just as cute. i highly recommend especially since they are on sale, definitely a closet staple.",4,1,0,General Petite,Bottoms,Jeans +1084,43,Completely see-through!,"This dress looked adorable online, but unfortunately, it's not flattering at all, and it's completely see-through. completely. the material is so thin that i can't imagine it would hold up very well over time. this one is definitely going back.",1,0,18,General Petite,Dresses,Dresses +511,52,,"Reviews said it ran small so i ordered a size up, was large on me. nicely made, but wanted something a little smaller.",3,1,0,Initmates,Intimate,Sleep +860,50,Quintessential white top,This feels so nice and light and summery. nothing like a crisp white top for the season.,4,1,0,General,Tops,Knits +850,53,Just perfect,"Great for work, great for play. i love this shirt. perfect length for tuck in or not.",5,1,0,General,Tops,Blouses +511,34,,"This top may be labeled as a part of a sleep set but i threw a cami under it, styled it with skinny jeans and a top knot and this became a very effortless/chic so cal look. love that pop of hot pink too! i went up a size for a little extra wiggle room across my shoulders. overall this is a great summer top!",5,1,6,Initmates,Intimate,Sleep +1084,33,Odd cut/sizing,"As another reviewer noted, the upper portion (back, chest, shoulders, etc.) fit nicely. however, the body of the dress was enormous and did, indeed, make me look much heavier throughout the middle. back to the store it goes.",1,0,3,General Petite,Dresses,Dresses +615,41,Lovely fabric and style,"....but not for me. i usually try to buy petite sizes since i am only 5ft 0in, but this was just too pretty to pass up so i took a chance and ordered a regular size xs. right out of the bag, i was impressed with the colors and fabric of this romper. however, i did not notice that the entire back was open until i put it on. from the pictures, it looks like there is a small opening, but when i put it on i was exposed all the way down to my lower back. this may not be the same for a taller person s",4,1,4,General Petite,Bottoms,Pants +928,46,"Odd shape/texture, pretty colors",I ordered this in size xl in the multi combo. the fit matches the photos. it's a strange sweater but i like it. i'm glad i got in on sale though. i'm pear-shaped and the curved hem fits me oddly. i like the longer length and the mix of blues/whites/peaches so i'm keeping it. it's not scratchy but also not soft. this is one of those purchases that i probably should return because i don't love it but i know i'll get enough use out of it to justify the sale price.,4,1,0,General,Tops,Sweaters +662,27,Stunning!,"I am beyond pleased with this dress. photos do not do it justice and no, it does not look like a gown. it is comfortable, forgiving, and will be a staple for years to come. i am 5' 11"" and the large worked perfectly for me in length and size. this is my first maxi dress and i'm thrilled. do not miss this piece, it is special!",5,1,2,Initmates,Intimate,Lounge +867,33,Good basic,"I bought the blue & black, they are great basics. got the small. i am normally a extra small in retailer.",4,1,0,General Petite,Tops,Knits +829,36,Amazing!,"Sometimes you have those days where you feel overweight and unattractive. this shirt is perfect for that. it has a chic cut, and it doesn't look like you are having an off day at all. so cute. and i really like the length as well. i usually wait until items go on sale, but this i had to buy right away.",5,1,20,General,Tops,Blouses +1084,33,Better than expected!,"I purchased this dress before reading any of the reviews. i ended up reading them the day the dress was to arrive---and they worried me, since i was so excited for this dress! i put it on and i feel like it is not much different from the photo here online. it is meant to be roomy. it is more fitted on top, and the back is cute to give it some shape too. but it is meant to be loose fitting. i personally love it. i have added a belt to give it more shape when i want, worn it on its own, or with a",4,1,1,General Petite,Dresses,Dresses +662,53,Lovely dress,I saw this dress in the window in the santa barbara store and fell in love with it! it is described as a robe in one post i saw but i think it looks so much more like a great fall/winter maxi. in the window display it was paired with a cognac leather belt which made it look even better.,5,1,5,Initmates,Intimate,Lounge +871,33,Runs small,"Definitely size up...possibly two sizes. i can often wear an xs and the s is skin tight on me. other than that, it's a nice neutral piece.",4,1,0,General,Tops,Knits +662,36,Perfect with 1 alteration!,"The pictures of this dress do not do it justice. i bought it, cut the sleeves off to be even with the waist line and belted (with a slim belt ) and it is perfect! it actually becomes a very sexy dress, it is a true wrap with a deep v and the vent in the back, i mean this dress paid dividends at the end of the night (to be very honest)! + +wearing this to south beach, it will be perfect with strappy, high heels.",5,1,8,Initmates,Intimate,Lounge +871,35,Plan to size way up,"I'm a rather small person--5'2"", about 100 lbs, 32a bust. i typically take a 24p/00p/xxs. knowing how retailer's sizing is a bit all over the place, i ordered this tee in both xxs and xs, planning to return the size that was less preferred. imagine my surprise when i try on one of the tees and i barely can get it on; imagine my further surprise when i realize that the xs is the tee that was so clingy. now i realize that this is supposed to be a body-skimming tee, but even as petite as i am, i coul",2,0,11,General,Tops,Knits +867,68,Great present,I ordered christmas presents online this year. they arrived very quickly and were well received! they are ferry pretty!!! i will order online again!!!,5,1,0,General Petite,Tops,Knits +662,57,,"This unit is gorgeous as a dress or as a top with a cami, skinny jeans and boots. i'm wearing it to my cousins wedding and obsessed. i bought a long delicate necklace at retailer with a gold pendant and it falls perfectly with the neckline. my only slightly negative comment is about the quality. the material is beautiful but i noticed the elastic coming through the ends of the waistband where it snaps shut. still keeping it though!",5,1,0,Initmates,Intimate,Lounge +857,22,Perfect,I bought this in store on sale and absolutely love it.,5,1,0,General,Tops,Knits +860,41,Unique white top,"Although it kind of ran big and the material is stiff causing some protrusion off my shoulders, i decided to keep it only because it was unique and still looked cute",4,1,0,General,Tops,Knits +1099,38,"Versatile, fits true-to-size","As of late, it's been difficult for me to find clothing at retailer that fit's true-to-size. i'm 5'2"" and 107 lbs. and i've had to return several pieces because they were too big on me. this versatile piece fits true-to-size. i purchased an xsp. like the previous reviewer, i've tried this with a couple of different long-sleeve shirt and tights combinations. i think this will work in the spring and fall, too as the material is in between heavy and light/airy. great for work.",5,1,2,General,Dresses,Dresses +511,40,,"Such a beautiful top, i understand why other reviews suggested wearing it out. personal i love pretty sleepwear, so i will be wearing this and matching shorts to bed. i ordered a small in both and they seem to run true to size. i am 130lbs and 5'5"". my regular size is small or a size 4. i love the embroidery and the pink!",5,1,1,Initmates,Intimate,Sleep +850,48,Beautiful shirt,"Well made embroidery, held up well in the wash. love the unique green color pattern! comfortable. got a size 4(115#, 5'2"", 34b).",5,1,0,General,Tops,Blouses +867,33,Comfy but lacking quality,"I purchased this shirt in blue hoping it would be a basic add-on to my wardrobe. it's been about a month and i have since washed and worn it twice. the color is now fading and i found a hole in the front of the shirt! i'm not sure if its the fine fabric that caused it to tear, but i washed it on gentle cycle and didn't do anything that would have warranted a tear. sadly this did not serve up to its purpose. i wouldn't suggest paying the price tag or even sale price for an item that i don't expec",2,0,0,General Petite,Tops,Knits +850,55,Gorgeous embroidery,"I absolutely love this shirt! i saw it in the retailer store and immediately knew i had to have it. all they had in stock was a size 2 and a size 8. i'm usually a 4-6 in button-up shirts, but i tried the 2 anyway and found it to be quite generously sized. i have a 32dd bust, so button-up shirts rarely fit me properly. this one was big enough to be comfortable worn out or tucked in, and was loose-fitting without being sloppy. when i discovered that it came in petite sizes, i asked the so to order t",5,1,5,General,Tops,Blouses +867,28,So soft!,"This ribbed henley is incredibly soft. you'll love the way it feels, but it does run a little small so i'd recommend getting one size up if you don't want it to be too form fitting.",5,1,0,General Petite,Tops,Knits +867,60,Love it!,"I think this top is great. it does show cleavage. also, it's very romantic. i can't wait to wear it. if only the store had had the red and wine colors in stock too.",4,1,0,General Petite,Tops,Knits +1084,33,Unflattering,I was so excited to get this dress since it look so pretty on line but unfortunately the it was horrendous on. the model must have the dress tailored because it looks like a huge tent on me. it was very wide bust down and made me look 30 lbs heavier. i'm 5'4 and 125 lbs- ordered extra small and it fits bust up and arms so i say it's tts up top.,1,0,10,General Petite,Dresses,Dresses +662,35,Gorgeous in person,"The pictures online do not do this justice. i did not even recognize it as the same dress at first. i went a size down and that way it flatters my curves beautifully instead of looking like a robe. it can actually be worn 3 ways- i like closing the closest snap(there's two) in the middle with a skinny belt over it, and a slip dress underneath. this way, the dress has a deep v neck and opens out in front when walking. think 1940's glam. it can also be fully closed like in the picture, or left ope",5,1,6,Initmates,Intimate,Lounge +1089,40,Unique and fun,Like the color and the dotted fabric. the length is good. the fabric on the back is a nice touch. fits well and hangs well.,5,1,0,General Petite,Dresses,Dresses +662,60,Meh,"This dress looked great on the hanger, but once on, it did absolutely nothing for me. + +navy is one of my most flattering colors, but the navy in the dress did not make up for the yucky second color that was so blah it just reminded me of dirt. that second color made me look drab. + +i am 5'8"" with a long torso and wear a size 12 in tts tops and dresses, but the waist on this dress hit at an uncomfortable spot between by waist and ribs. i really needed the waist to be dropped further. or higher",2,0,2,Initmates,Intimate,Lounge +850,56,"Lovely, versatile blouse","I bought this blouse at the store today and i love it! they stylist brought it for me to try on with the green chinos and it was perfect. it will go with jeans or dark pants as well. very unique and flattering! i got a size 2. i'm 5'7'"" and 130 pounds.",5,1,4,General,Tops,Blouses +1089,32,Cute and flattering,"Dress is very flattering on, not tent-like at all!",5,1,10,General Petite,Dresses,Dresses +860,37,,This is my new favorite shirt. i'm actually wearing it today! i had to order another in white too. grab it while you can!,5,1,0,General,Tops,Knits +867,41,Love!,"This is a basic henley, and it is made well; a wardrobe staple, for sure. the cut is flattering, and the material is soft. i ordered the small, which is tight fitting. i'm a 34 c for reference.",5,1,1,General Petite,Tops,Knits +867,27,"Cute on the model, too tight in person","I loved the cut and style of this shirt, so was very disappointed when i put it on and it was very tight and slightly see-through. if you do order it, get it in a size larger.",2,0,0,General Petite,Tops,Knits +850,64,Summer beauty,"This blouse is easily one of the nicest i have bought in recent times. the quality is excellent, the design demonstrates that design and nature are extremely compatible. i have worn this blouse with jeans and in a more formal situation and with a little more jewelry, the blouse fits in perfectly anywhere. i highly recommend it.",5,1,2,General,Tops,Blouses +829,58,A wardrobe must have,"This white shirt is a perfect canvas. i can dress it up with a scarf for work or wear it with my favorite jeans. it's perfect for all body shapes with the a-line. i love how comfortable this shirt feels. i like wearing this shirt with my black knit pants, and my retailers braided collar vest.",5,1,0,General,Tops,Blouses +1099,28,Disappointed in the fit,"I ordered this dress in a xs petite. i am 5'0"" 105 lbs. the plaid looks more drab in person and the fit was very frumpy. the wrap style is typically flattering but on this dress, the dress tied above my natural waist and the fit made my hips appear larger. i was pretty disappointed in this little number and will be sending it back. it might work on taller people, like the model, but i would steer clear if you are a petite.",2,0,2,General,Dresses,Dresses +867,28,"Great shirt, but don't expect it to last","I originally bought this shirt in the blood orange color, which is lovely and vibrant. the shirt is extremely comfortable and very flattering. however, it is also very, very cheap. after about five washes, it has pilled and worn, the color has faded a bit, and i doubt it will make it through the spring. for perspective, i wash all my clothes on cold and use the ""air dry"" setting on my dryer. + +nonetheless, even having experienced the wear and tear, i went back and bought this shirt in every other",3,1,0,General Petite,Tops,Knits +1084,41,Beautiful and fun dress!,"This dress caught my eye because of the beautiful fabric, but i read the reviews online so i didn't buy it. i just went to a store and couldn't help but try on the size small. i usually range from an xs to a s, and i would say that the size s fits great around my shoulders. it is true what the other shoppers say about this dress being like a tent. it is and i won't lie about that. when i tried it on, i asked a sales person to bring me some belts to try on to create a waistline. once i put on a b",4,1,0,General Petite,Dresses,Dresses +860,55,Too big,The shirt is very big. it would be cute as a maternity shirt.,1,0,1,General,Tops,Knits +68,49,Exactly what i was missing from my wardrobe,I ordered this in gray and in white. these are not your mothers' slips. they are comfy and soft. i have worn the white under a shorter dress on a day when i wanted more coverage but didn't want to go for full on tights or leggings. i liked the effect of the slip being longer than the dress. the gray may even be opaque enough to stand (almost) on it's own. very happy with these.,5,1,0,Initmates,Intimate,Layering +860,62,,"I'd seen this in the store pre-sale and was delighted to see it on sale. i'm 5'4"", 125 lbs and prefer a looser fit, so went with the medium, as i expect that it may shrink a bit. but i appreciated the creative take on a classic look, good quality of the fabric, and this will go with everything in the summer. or even beforehand -- with a cardigan.",5,1,4,General,Tops,Knits +662,39,Better as a dress,"This lounge robe is the most fantastic, dramatic and comfortable wrap dress! to the reviewers who posted pictures--you styled this to perfection. a slip dress underneath is a must have since the opening basically unsecured. i purchased the medium petite and i am 5'3"" 36dd and 140#.",5,1,2,Initmates,Intimate,Lounge +860,58,Female version of a polo shirt,"I ordered this in white. the material is similar to a polo shirt, which i hadn't counted on. it was also on the large size and just unflattering on me. still, the quality seemed to be good.",3,1,5,General,Tops,Knits +867,35,Not worth the price,"Appears much more sleek in the photograph. in real life, this shirt looks more like a pajama top. thin, extremely casual, not worth the price i paid- even in black. will be exchanging it tomorrow.",2,0,2,General Petite,Tops,Knits +928,37,,"Stunning cardigan--i love it :) they only had a size l on sale so i purchased--i'm so glad i did. could have gone with a m though; maybe even a s, but that would be cutting it, especially since i'm 5ft 11in, 133lbs. compliments keep coming and such a great piece to have in my closet.",5,1,0,General,Tops,Sweaters +867,45,Around the clock and in every color,"I could live in this top: it's versatile enough to be dressed up or down or worn as a bottom layer; the color offerings are basic enough to match anything; and it's comfortable enough to wear around the clock. note that it runs small. i had to size up to a medium, even though 80% of everything else i wear is size small.",5,1,0,General Petite,Tops,Knits +850,46,Beautiful summer shirt; runs very large,"The embroidery is gorgeous! it's a lovely blouse--soft, lightweight, and of quality material. the only problem is that it is an oversized fit--running at least one or two sizes too large. it is enormous! i ordered it online but will return it and shop for a much smaller size in the store to guarantee proper fit.",4,1,4,General,Tops,Blouses +1022,35,,"I thought these pants had a great fit and the color is fabulous, i would have preferred a 30 inch inseam, but 31 is by far better than 34, that many designer jeans at department stores run.",5,1,1,General Petite,Bottoms,Jeans +867,42,Size up!,"I saw this top online and read the reviews that it was running small. i am normally an xxs in most retailer clothing. i am 5'6 110 for reference. found it in the store and took both the xs and small in to try on. the reviewers were right! i tried the xs on first and it was quite snug and short. the small fit perfectly. it was a bit longer too. great style and soft fabric. once you size up, you'll love it...",4,1,0,General Petite,Tops,Knits +850,56,Love it!,"This is a lovely and unique blouse. it can be worn with jeans, shorts or a skirt. such a beautiful addition to anyone's wardrobe!",5,1,8,General,Tops,Blouses +663,37,,,4,1,0,Initmates,Intimate,Lounge +663,45,Cute dress,"Got this to wear on a beach vacation later in august. i was hesitant to purchase what is essentially a light weight cover up at this price, but is is really cute. the only problem i have with it is the slits on the sides are a bit high up. it is a good color and feels very nice. i will wear this on tropical vacations and running about since it is so hot! i bought the medium and it is a perfect fit and comes to my knee in the front. for reference i am 5'8' and 160#.",5,1,17,Initmates,Intimate,Lounge +663,58,Cute tunic,This is a great cover-up or tunic over leggings or capris. i am 5 foot two and it comes to my knee,4,1,1,Initmates,Intimate,Lounge +663,39,The material is lightweight and comfortable.,The only draw back are the slits on the side. they are too high and if you turn sideways at some angles you can see your cheeks. i will have them sewn up a bit because i love the dress and it is worth it.,4,1,0,Initmates,Intimate,Lounge +970,47,Super soft but fits boxy and fits small,I wish this fit me better. i love the inside fur. it is extremely soft but it doesn't look flattering at all. it makes my shoulders look really broad and it was shorter in the length than i wanted. it wanted it fit over my butt (or cover half) and it sits a little below my waist. unfortunately i am taking it back. great idea though.,2,0,3,General,Jackets,Jackets +663,34,Good if you're taller,"I wanted to like this and even considered getting it altered, but just decided to return. it runs big and from the front it looks good, but the back just looked like a big oversized, stretched out tank. it was so comfy on though and not sheer or revealing. so if you're tall, go for it!!",2,0,1,Initmates,Intimate,Lounge +663,49,Perfect summer dress,"Good quality; casual feel good dress. it can be worn as dress, or as tunic over the pants.",5,1,0,Initmates,Intimate,Lounge +719,25,,"Unfortunately, the other reviews were accurate. i thought i could still make it work because i loved the design. but alas the dress is incredibly see-through. i tried using it like a bathing suit cover up, unbuttoned, like one of the models shows - but it looked very strange. would have definitely kept this dress for the beach if it weren't completely see-through.",4,0,0,Initmates,Intimate,Lounge +970,59,,"I saw this jacket and loved the plaid and the idea of a soft sherpa material as a lining was hard to pass up1it was true to size and the material was very nice. however, the button closure was difficult as the buttonholes seemed a bit too small. also, the back of the jacket did not lay flat and it kept rolling.... i had to return this jacket.",3,0,0,General,Jackets,Jackets +719,86,Nice summer dress,"This was long on me (i'm 5'1"") but it could easily be cinched up using the drawstring waist. very soft material, this will be a super comfy dress in hot weather. didn't seem too see-through.",5,1,0,Initmates,Intimate,Lounge +719,32,Beautiful flowy vacation dress,"The pattern on this dress is even more beautiful in person. as reviewers mention, the dress is sheer, but a nude slip underneath is an easy fix. can't wait to pack this dress for my next beach getaway!",4,1,0,Initmates,Intimate,Lounge +663,37,Perfect basic wardrobe staple,The fit is true to size. the quality is nice. i am happy to having this basic wardrobe staple added to my closet!,5,1,0,Initmates,Intimate,Lounge +663,22,Love this,This dress fits wonderfully. i can wear it causally or dress it up if i want to. great deal as well.,5,1,0,Initmates,Intimate,Lounge +719,55,The jury is still out on this one...,"Really pretty for summer, especially beach and pool wear. but i'm only 5'1 and even the petite is i think a tad long for flats (which is my preferred shoe for this dress). i'm also ""curvy and busty on top, so unless you are blessed with a nice thin waist it's not as flattering as the tall thin model shows. but still it looks nice on, and i though it might look good also with white footless tights i have too. so i'm on the fence about keeping it, since it's really pretty for a summer party.",4,1,15,Initmates,Intimate,Lounge +719,58,So pretty,"This dress is so vibrant in person. i am 5'10"" and the length is perfect. having a small waist helps too. certainly worth the $49 i spent on it. watch the sales. several times ill go to pay for an item, and its even cheaper that advertised. the uniqueness that retailer embodies is what i love the most about their clothing. i'm a size 10, ordered a medium",4,1,0,Initmates,Intimate,Lounge +663,54,Pretty standard,"It's cute. it works with jeans, linen pants, flip flops. but i wouldn't say it is a ""must have"". but i'm keeping it because it works!",4,1,1,Initmates,Intimate,Lounge +719,60,"So pretty, but so sheer","The material and design of this beach dress is so pretty. i was hoping that this could be worn as both a dress and a swim suit cover-up, but it is only the latter. you can't see it from the photos (the model or mine), but it is very sheer.... it can really only be worn over a swimsuit. whatever you wear (or don't) will be completely visible. so if you are looking for just a lovely, unique beach dress, this is it! unfortunately for the price i need more versatility! i will consider it on sale!",4,1,32,Initmates,Intimate,Lounge +663,54,Tunic for everything,"I bought this tunic to wear as a swim cover-up, last minute. but it has become my go to for wearing over skinny jeans. the length makes it so versatile, great layering piece.",4,1,0,Initmates,Intimate,Lounge +1022,42,Like butter,"I love these jeans. the fabric is super, super soft with good stretch and give, however they don't loose their shape either. they are mid-rise but a touch higher in the back so you never give anyone an unwanted show when you bend over. my only complaint - and this is just personal preference - is that the back pockets are kind of small. but the comfort outweighs any slight beef i have. for reference, i am 5'4"" and wear size 25. comfy, go-to's.",5,1,1,General Petite,Bottoms,Jeans +719,34,Beautiful!!,"This is a beautiful piece--and a really great deal on sale. it is sheer, but with a simple slip underneath it will work well for a comfortable but special-looking summer outfit!",5,1,0,Initmates,Intimate,Lounge +663,28,Sliced tunic dress,"I already have this in white. i wear it all the time and get tons of compliments because it's so unusual. the only reason i didn't give it 5 stars is because my white one is a large petite and this one was not available in petite (i bought a m). i'm 5'2"", 135lbs and am a little thick in the middle so the large petite gave me that extra room. this material is stretchy though so i am able to kind of pull on the sides to widen it a bit. i put it in the dryer and it shrunk a little in length too. th",4,1,1,Initmates,Intimate,Lounge +719,49,Beautiful fabric design,"It runs long for a 5'1"" woman like me:) other than that beautiful dress for vacation",4,1,0,Initmates,Intimate,Lounge +719,34,Love it more than i thought,I liked this online but loved it when i received it in the mail. i normally wear a m/l and the medium fit perfect. it is gorgeous and flattering with a tie at the waist. the bottom is flowy. i knew it would be sheer from the reviews so that wasn't a surprise but i really wish it came lined. no one wants to wear a slip to the beach and i feel it's too nice for a cover up.,5,1,0,Initmates,Intimate,Lounge +663,20,Casual & cute,"I am happy with my decision to buy this dress! it's casual, comfortable and my favorite color, too. this product is true to size, color and the material feels great.",5,1,0,Initmates,Intimate,Lounge +663,62,Great weekend and casual dress,"I bought this dress in both colors. it has an easy fit, is very comfortable and works well for a day dress, running errands, play time, and general casual. i am small framed and somewhat slender. i ordered the xs. the fit is easy loose, the fabric just right for the type of dress, like a favorite summer sweatshirt! i wish it came in other colors",5,1,22,Initmates,Intimate,Lounge +719,39,,I love how comfortable this fits and the fantastic pops of color. goes with just about every slip and tank dress i own! a perfect lightweight dress or layering vest with my hot weather wardrobe. can't wait to take this with me on vacation!,5,1,0,Initmates,Intimate,Lounge +13,39,Stylish but strange,"I love the color, the fabric and the style (especially in the model shots) but in reality, the cut is disproportionate. the hips and hip pockets flare out creating a saddlebag look. it is not smooth and fitted as shown on the model. overall you need to size down since i could pullover the dress without unzipping. i think the felted boiled wool is great quality but a tiny bit itchy. i still recommend the dress because i will be wearing it with a long sweater coat which will hide the weird hip act",4,1,0,General,Dresses,Dresses +663,42,Just as i expected,"When i saw this tunic dress, i knew immediately that i would wear it and it would become a favorite of mine. the cut is unique and it is versatile enough to mix and match with many different things. it is also very comfortable, true to size and very good quality material. i highly recommend.",5,1,1,Initmates,Intimate,Lounge +663,24,"Could be a cover up, dress, top over jeans","This tank is so light and made with great fabric. i bought this to wear over pants - black jeans, classic denim, this fall, maybe with a jacket over. +i purchased a size medium, and it is loose and comfortable.",5,1,0,Initmates,Intimate,Lounge +663,37,Ok,"This dress is more of a lounge dress for at home even a belt and nice shoes would. it make it ok for day. 5$2 back is way longer than the front, more so than shown in the picture and the material is not substantial but for a lounge dress or swim +coverup it is fine.",4,1,1,Initmates,Intimate,Lounge +324,58,Summer staple,"These are perfect for pulling off a finished look, proper enough for teaching in yet fun enough for going out afterwards or just running errands. the polyester material is substantial, lined and easy care. the pockets lay flat but may not be very useful since the skort is pretty fitted. i plan on wearing these a lot this year!!",5,1,3,General,Bottoms,Shorts +719,58,"Definitely beautiful, definitely sheer","I gave only 4 stars because i really wish the fabric was not so sheer. unless you are very unmodest, you will need to wear a slip. +i am 6 feet and it hits just above my ankle. slits on side and front. i know it is 'supposed to' be use as a beach cover-up..but forgot that! this is way too pretty not to wear out at night(with a slip {:>). +i am not a fan of the tie waist, so i at wear a belt to cover it. +overall, i recommend. enjoy!",4,1,1,Initmates,Intimate,Lounge +719,39,"Lovely on the model, but not for me","I'm 5'3 and ordered the small. as soon as i saw it in person, i knew it was an item to return. the material is too transparent, and designed to wear with undergarments or swim gear that you want people to see. it was way too long for me. i think it would work for a taller person. i just didn't feel it was worth the money for the quality and transparency.",1,0,1,Initmates,Intimate,Lounge +719,35,Beautiful,"This is the most comfortable beautiful dress/cover up. i can't believe the sale price. when i ordered, my reg m was not available so i ordered a small. it fits except the top button (36c). i just called and got a m since there was one available today online. hoping it ships! so impressed with this! i'll wear in summer and spring with a white slip underneath.",5,1,0,Initmates,Intimate,Lounge +1078,39,Gorgeous dress,"This is a beautiful dress. it's a great weight, unique pattern, and has gorgeous colors. it's fairly forgiving because of the heavy fabric but may run small on bottom. i am a 10 or 12 in pants, 10 dress right now and i bought the 12. i am 5'8"" and 175 lbs, and 36c - also in the last stretch of a weight loss journey so if that helps anyone choose sizing... also i have to buy long or tall pants and this dress was not too short and did not show my smooth wear underneath. i love it and bought it at",5,1,2,General,Dresses,Dresses +641,52,Beautiful gauzy cover-up/dress,"I tried this on in the store and immediately loved it! it is ""diaphanous,"" but that is the intended look. the dress is meant to be a cool, breezy, cover-up. the design would have been slightly improved with slight tapering at the waist and sleeves, but not everyone can carry a fuller dress to begin with. anyway, i purchased so many things that day that i had to narrow my picks down a bit. i left this dress behind, but kept thinking about how very pretty it was. when retailer offered an addit",5,1,0,General Petite,Intimate,Lounge +829,66,,"I was disappointed in this shirt. the color was not the pretty blue pictured, but rather a grayish blue which may look good on a brunette, but not on a blonde. the fabric felt like linen and wrinkled easily. normally, the quality of the fabric is one of my main reasons to buy holding horses, but this one felt cheap. the detail and craftsmanship was beautiful, and i wish this shirt would have worked for me. i waited for it to go on sale and was very excited to receive it. holding horses is one of",2,0,1,General,Tops,Blouses +1078,46,Easy summer dress,"Comfortable and loose fitting- perfect for summer weekends when you just want an easy dress to throw on. can go from home to running errands to going out for lunch. good color, too!",5,1,0,General,Dresses,Dresses +862,50,Cute,"This top looked so cute on! i loved the color and the way it looked on my body. as cute as this looked tied, it could also be worn open as well with a tank top. loved it!",5,1,0,General,Tops,Knits +862,52,Comfy,This is a comfortable cardigan in a versatile color palette. size small fits a little snug in the shoulder area but other wise true to size. fabric is soft. great quality for the price!,4,1,0,General,Tops,Knits +862,43,Cute and feminine,Loved this sweater wrap and bought it in both colors. very light weight and i will get lots of use out of this. i wish retailer would have more pieces like this. a+,5,1,2,General,Tops,Knits +1078,68,,"This does run a little large, but it's light and flattering for me. the material is a very light/thin chambray, but it's also lined.",5,1,1,General,Dresses,Dresses +1025,38,,,5,1,0,General,Bottoms,Jeans +1199,31,Flowy and light,"This dress in orange is lovely. it's very light weight which i was slightly disappointed by, i prefer heavier dresses. but it'll be good for spring and summer. it still seems to be constructed well. i'm 5'8"" and 170 and the 8 i purchased is a little too tight. so i'm thinking it may run a little smaller than some other dress brands i have from retailer. 8 is usually my go to size. a 10 would have probably been perfect.",4,1,0,General Petite,Dresses,Dresses +641,52,,White and silver threads made fabric look grey. almost dirty. fit was nice and price is great. villa to pool to restaurant would be great. colored fabric would be better.,2,0,0,General Petite,Intimate,Lounge +912,50,Cute,"Bought this on a whim, cocoon sweaters usually do not work for me. this cardigan is very cute, more of a dark gray. if it they carry again, grab it!",5,1,0,General Petite,Tops,Fine gauge +862,38,,"The cascadia cardigan is a flattering piece that is perfect for fall. arms are longer, which i appreciate being 5'8"". the backside is on the shorter side. overall really love this piece.",4,1,0,General,Tops,Knits +641,48,Great for beach & summer holidays,I'm glad i tried this on in the store because it runs very large. i usually wear a large and i ended up buying a small. the blue color is very striking. i plan to use it as a cover up and sightseeing dress this summer.,4,1,0,General Petite,Intimate,Lounge +1078,43,This is gorgeous,"I think this fits to true to size. i am 5""2 and 107 lbs. i always wear a xs. it was a tiny bit tight in the bust if i wore a big padded bra (34b). if i wore a normal very little padding bra, it did not pull much across the bust.",5,1,1,General,Dresses,Dresses +862,34,Good light sweater,"I really like this top! excellent over a casual dress!! perfect for spring, summer and fall!",5,1,0,General,Tops,Knits +1094,47,Nice but not for me,Love the dress and went a size up as recommended by other reviewers. but it was still too small. it's just not roomy enough in the chest--total boob squash. had to return it.,3,1,0,General Petite,Dresses,Dresses +641,71,Just hangs there,"I tried this on in white and considered whether or not i wanted ""just another cover-up"". in the final analysis, even at $35 (30% off 49.99), it just hung there. if that's what you're after, then this is for you.",3,1,0,General Petite,Intimate,Lounge +932,39,Classic love!,"Love this little number. very flattering, warm, and soft. color goes with everything, i tried it on with a slip dress, and it added class and warmth... big button details are fun well-made and beautiful cut. i ordered xxs petite, and it fit like a glove, with room for something underneath if needed. i also ordered te xs petite, as my stylist was afraid xxs would be small, but will keep xxs p after actually trying it on. +115 lbs, 30dd, 26.5 in waist.",5,1,2,General,Tops,Sweaters +1094,27,Gorgeous dress!,This is a beautiful dress. the embroidery is really lovely in person. i find that this brand runs a bit small usually. i am usually an 8 but had to go up to a 10 to fit my hips. i am a little bit pear shaped so that might be why.,5,1,0,General Petite,Dresses,Dresses +641,55,Gorgeous,"This is an exceptionally soft and high quality coverup. i always look for a coverup that could double as a dress so that i can walk into a restaurant without feeling underdressed. i bought the white -- i always buy white it seems, but loved it so much, i came back for the blue. get this and live effortlessly this summer.",5,1,3,General Petite,Intimate,Lounge +1078,50,Cute,Dress is actually very cute - i like it better in person than online. the color is a very pretty deep denim blue color. it is cut very roomy/swingy. length is a bit too long in the back for my taste but still like the way it flows. i am very slight of frame and on me there is a lot of extra material but nothing a good tailor can't fix in a jiffy. perfect for a summer day/bbq or casual party.,4,1,0,General,Dresses,Dresses +641,46,Perfect summer dress,"The softest cotton gauze but, not see through. relaxed but, the sleeves & neckline make it flattering. a gorgeous blue in person. so in love with this dress, going back for it in white!",5,1,12,General Petite,Intimate,Lounge +862,48,Love this cardigan,"This is one of my favorite pieces. simple, classy, and cozy!",5,1,0,General,Tops,Knits +1022,25,"Great pants, but found the sizing varied","I've purchased these in the past and found that they wear well, so i came back for some new colors this year. i ordered blue, holly (a deep olive-y green), and grey to try, and found that they all fit slightly different. the navy fit me perfectly in a size 27 (i'm 5'4"", 120 lbs), but the holly cords were tight in the legs, and i couldn't button the top. the grey was somewhere in between. i also felt like the grey showed more lumps and bumps. the navy is super flattering.",4,1,0,General,Bottoms,Jeans +641,47,Just okay,"I tried this on at my local retailer store in the white. the fabric is pretty with metallic threads of silver running through the white. the white is see-through but that didn't bother me as i would wear it as a beach cover-up. i would say it runs large. i am usually a size small (4-6) and the xs was quite roomy on me (and i'm 5' 9"" tall), 32d chest. i liked it, it was comfortable, but i just couldn't decide if i looked a bit frumpy in it. maybe it was just too big all over. in the end, i d",4,1,10,General Petite,Intimate,Lounge +926,78,Not for me!!!!,Unique jacket..... but when i put it on i felt and looked like charlie brown. this will be going back.,2,0,4,General,Tops,Sweaters +641,35,,"I thought this dress would be a cute beach cover up so i was excited to order it but i was very disappointed. i am 5'7 and i usually wear a size small top and 4 dress so i ordered a small in this dress but it was huge!! i understand that it is not meant to be form fitting and i wasn't expecting it to be but when i tried this on i felt like i was wearing a potato sack. i feel like an extra small would have been just as bad. i was so upset. it also has thin silver lines through it which, for me, m",1,0,0,General Petite,Intimate,Lounge +871,33,Roomy and flows,"Comfortable and flows well, does run large, order one size smaller.",5,1,0,General Petite,Tops,Knits +862,69,Not impressed,I'm too tall for this. back goes halfway up my back. cannot do much with it other than front tie. fabric is not soft at all. not impressed. returned it.,2,0,0,General,Tops,Knits +1078,67,Gorgeous,"This is truly a lovely dress. the colors are beautiful and i love the contrasting but complimentary fabrics which add interest to an already elegant dress. the material is substantial without being stiff so that it flows gracefully and it flatters the figure. +in my opinion if fits true to size, i'm 32b, 5' and 103lbs and i got it in a 2p which is the size i normally get in dresses. it is slightly more loose than other retailer dresses in the same size but it still follows your curves without being",5,1,0,General,Dresses,Dresses +862,41,Soft fabric,"Love this versatile cardigan, have both blue & orange colors & they're beautiful. it's light weight yet cozy. true to size but the sleeves are a little snug so if you like roomier sleeves size up.",5,1,0,General,Tops,Knits +1022,36,Mid-rise is comfy and flattering,"I love ag stevie cords! i'm 5'4 and pear-shaped and the 26p fit great, the length and mid-rise are perfect! very comfortable and can be dressed up for casual work environment or down for weekend. the material is a bit thinner and not as soft as versions from previous years but still very nice and perhaps more versatile. wish petite had more color options.",5,1,1,General,Bottoms,Jeans +1078,53,Gorgeous shift!,"I love it. perfect, body hugging, just right length and great fabric colors. this shift fits just above knee and follows every curve. it is, however, unforgiving-there is no room in this to cover bumps or bulges; it is sleek and so figure-flattering. i am 140 lbs, 5'5 tall and 34d and it fits perfectly. one more pound and it wouldn't have zipped! i got a size 6 (my usual)!but too tight had to size up to 8. if you are on the fence, go up a size. i can't, however, imagine wearing this sleeveless a",5,1,1,General,Dresses,Dresses +1094,49,"Sadly, not for the curvy","This dress is really beautiful. very well made and high quality fabrics. unfortunately, it is cut very narrow. i am between sizes, ordered up and still felt like it was at least a size too small. i think if you have any curves in your midsection that this dress is going to be a challenge. if you are lean and straight then this will look great on you.",3,1,11,General Petite,Dresses,Dresses +1078,49,Versatile dress!,Easy to take this dress from casual to dressy! super comfortable and cute!,5,1,1,General,Dresses,Dresses +1094,29,Runs a bit large,"Debated for a while about this dress...love the flower embroidery but i was worried the nude colored top would look drab on. it actually looks nice on my skin (tan-ish, yellow toned), surprisingly. however, there is a noticeable amount of extra room in the waist (i have a 24'' waist. it wrinkles a bit in that area when i move around. i'm not sure if that's a deal breaker or not...i guess now i have even more to debate about. the length is a tiny bit longer on me than on the model #5'0'', 100 lbs",4,1,1,General Petite,Dresses,Dresses +1078,44,Not for the curvy gal,I love this dress but when i put it on i was aghast! the chest was tight and the body was voluminous!! added the pounds which no wants! best left to the waify girls.,3,0,1,General,Dresses,Dresses +862,63,Perfect all seasons,"This cardigan is light weight and can be used for all seasons. additionally, you can wear it tied in the front or down for a cascade look. can be worn for the office or with jeans. love this little good for everything closet staple!",5,1,0,General,Tops,Knits +862,55,Similar but not quite as amazing as a similar one,"I don't like how short it is in the back. +i also prefer a solid vs. slubby material, +back it goes.",4,1,0,General,Tops,Knits +1022,38,Buyer beware!,"These pants were wonderful...for 2 seasons. yes, for almost $200 a pop they don't even last a full year! loved them so much, i bit the bullet & bought 4 pair. all 4 started to rip in the same spot! i tried to contact ag directly & they do not back up their products after 30 days. fortunately, retailer was wonderful (as always!) i will buy pilcro from now on - much better product for the money.",1,0,0,General,Bottoms,Jeans +1022,40,Sizing varies,"I'm 5'3" 118 lbs and the 26 navy fit great. the gray i can hardly button and are less flattering. i will order another size 26 in gray to see if it will fit better, but also try a 27.",4,1,0,General,Bottoms,Jeans +1078,32,Easy breezy,"Love this dress! it is tighter in the chest area than maybe expected, but not unwearable, though i am smaller chested. it will be great for hot summer days as it has a light lining.",5,1,0,General,Dresses,Dresses +641,24,"Lovely dress, but runs huge!","The materical is wonderful and light and the color is gorgeous, but the large was absolute gigantic. i'm returning it and sizing down possible to a small, which is unreal, since i wear a size ten normally! i am petite, height-wise, but more than length, there was just so much room width-wise. it swallowed me! the dress itself is lovely, though, so i'm definitely exchanging for a more reasonable size. but definitely size down!",4,1,3,General Petite,Intimate,Lounge +932,33,So cute and warm!,"I typically wear xs or s, or zeros but i got this in a m. it doesn't look big, it looks like a regular fit to me i think a small or xs would have looked and felt small. it's soft beautiful and warm. the hood is so cute. the detail is just so good. i love it over top of 2 long sleeve blouses i got there and one of the cloth and stone button downs.",5,1,8,General,Tops,Sweaters +862,49,,,4,1,0,General,Tops,Knits +1094,35,Dress saga,"So.. i saw this dress like a month ago and i fell in love. utter i-have-to-have-it love. before dropping $200 superfast, i gave myself some time to think it over. well, of course i decided to order it, and of course my size was sold out. most of the sizes were sold out, actually. they did have a petite left, so after i dried my eyes, i decided to wing it. the petite actually fit. the mid section is a little snugger than i am normally comfortable with (although the top is so structured that it ac",5,1,4,General,Dresses,Dresses +641,52,Pretty cover up,Ordered this cover up in a mp but it was waaay too big so now waiting for the sp to arrive! hope its a hit!,4,1,8,General Petite,Intimate,Lounge +1094,25,Great dress,"Very cute, and well made. fits true to size.",5,1,1,General,Dresses,Dresses +862,49,Cardigan,"I was on the fence about this cardigan. once i got it in the mail, it's cute! it will go great with a long tank or longer t-shirt. worth the sale price! i ordered a small and is true to size.",5,1,0,General,Tops,Knits +932,66,Don't size up,"Following another reviewer's advice, i ordered up to an xl. it's huge. stick with your normal size or go down one. it's a one of a kind piece. soft, lightweight, yet cozy and adorable. sadly have to return mine.",4,1,0,General,Tops,Sweaters +1094,33,Beautiful design and construction,"I ordered this dress in a size 2, it puckered at my lower back. i am still so disappointed in the fact that i really wanted the navy option in this dress, that i chose to ultimately return it instead of exchange for a 4. it is truly gorgeous though, the black and pink just does not compliment my complection.",4,1,0,General,Dresses,Dresses +829,36,Fun top,"Really like this top. fun flair, nice quality shirt. great for dressing up with skirt and also would be perfect with boots for the rodeo. i paired it with a skirt and boots for church. wore white cami under to emphasize lace details. super cute. tried 8 and 8p. thought petite was too short in length on me (5'4""). will send petite back.",5,1,6,General Petite,Tops,Blouses +831,37,Adore! fancy!,"I love this top, it is a very soft material and it looks very classy.. i have worn it with a skirt for work and skinny jeans. i have a bigger bust and i wear a small, it is true to size. very classy!!",5,1,1,General,Tops,Blouses +1078,37,,"This dress is beautiful and so striking in it's unique design. i ordered a 4, as that is what i usually wear. about halfway up my body i knew it was not even going to zip! i did not even try. i love the fabric and colors so much though that i am going to try a 6. here's hoping it works!",5,1,0,General,Dresses,Dresses +379,41,,,4,1,0,Initmates,Intimate,Sleep +862,38,Light weight cardi,"This cardigan is lovely, casual layering piece. it's a very thin lightweight knit and pairs well with a tee or tank under it. i really like the color and the style. the longer front can drape or tie for multiple looks",4,1,0,General,Tops,Knits +1078,36,Maeve stunner,"This dress is gorgeous, well made, lined, and tts. i get compliments each time i wear it and find it unique yet classy and appropriate for work. unlike some of the maeve tops i have purchased this year, it does not run big, and if you are banking on a little stretch, i would order the next size up. you won't be disappointed!",5,1,0,General,Dresses,Dresses +1078,50,Love this dress,"This dress is fabulous with attention to most details. 5'4"" 103 lbs the 00 fits perfectly. overall fit is excellent, sleek, but not form fitting so very appropriate for work. length is also great, another plus.for work, many times the dresses are just a tad short, but this is great. arm holes are also great, not overly long as they often are. very nicely lined, substantial fabric. the only lack of attention to detail is they did not include the bra strap holders. why can't more dresses be made t",5,1,0,General,Dresses,Dresses +1078,31,,"I really loved the pattern and style of this dress! unfortunately, i had to return it because i have broad shoulders and it is a pretty stiff top that cut into the flabby area near my armpits. for most people it's probably perfect! but if you have wide shoulders or any concerns about the armpit flab, this might not be a great choice for you.",4,0,0,General,Dresses,Dresses +1094,51,Gourgeous year round dress,"This dress is gourgeous, will be able to wear year round. +just add a cardigan or blazer. +the only fault i find in it is the waist band is a bit wide. +however i have a hour glass shape, so my waist is very small",5,1,19,General,Dresses,Dresses +1025,31,"Perfect, for the first month of wear","These were great pants that fit well, had good rise, perfect stretch for my curves, and i was really happy to get them on sale. (i'm 5'10"", 165lbs, with a pear shape). + +after only three months of occasional wear (about once a week, at most), and following wash instructions perfectly, they started deteriorating. the pockets are becoming unsewn, the fabric has over-stretched in little sections that bunch, and the bottom hem is coming unraveled. these are the most low-quality horrible pants i've",2,0,0,General,Bottoms,Jeans +1094,54,"Interesting, gorgeous dress","I love the black and pale pink of this dress, the contrasting fabrics and the embroidery. my favorite kind of dress, creative and a little edgy, but elegant and can be dressed for the office too. ordered a size up from my usual size because i tried the previous dress in this style and it was a bit snug. the size up was a good decision, fits in the shoulders and waist better. the fabrics are nice and the finishing on the dress is well done. the mesh in the bodice is a little delicate and i will h",5,1,0,General,Dresses,Dresses +366,38,Weekend top,"I love this top. it is very comfortable and great to throw on with a tank and jeans for the weekend. i am curvy, and the drape of the top works well on my frame. i could see using it as a gym coverup as shown, but i like the top too much to get sweat on it :)",5,1,3,Initmates,Intimate,Lounge +1022,36,Perfect cords,Great fit and style. i got the navy and the color is beautiful.,5,1,0,General,Bottoms,Jeans +829,58,Stand alone blouse,"This blouse, with a scalloped hem, is a good blouse to wear by itself. it goes well with higher waisted bottoms. it is very boxy. i like that but did buy a petite instead of s regular to compensate (i swing both ways on oetite/regular sizing). i'm so-so about the patch pockets, the material is fairly heavy, but they do add to the look of the top. it's well made and nicely finished.",4,1,0,General,Tops,Blouses +1078,36,"Pretty, casual dress.","It's relatively light material; even if you layered a sweater over this i can't see it being good for winter. i'm in california so it's fine :) length is great - i'm 5""4 and it hits just at the knee. i'm a true size 2/small and this fit great, even though i have a curvier figure. pretty classic dress.",4,1,14,General Petite,Dresses,Dresses +862,49,Love this cardigan!,I was looking for something to wear over a spirit football shirt and this was the perfect piece. it's light weight and the material is super soft. you can wear it tied or untied.,5,1,1,General,Tops,Knits +1022,45,Love these cords,I bought these cords in another color last year and they are my favorite pants. they are so comfy and keep their shape very well. when i saw they were back i had to buy another pair. i purchased navy and the color is beautiful.,5,1,0,General,Bottoms,Jeans +862,50,Lightweight,"This lift weight cardigan is true to size, perfect for fall or spring. colors are quite nice, especially the little pops of orange.",3,1,0,General,Tops,Knits +1078,56,Love it!,"This dress is everything everyone said it was in the reviews. so cute and beautifully made. fully lined. +i felt it ran a bit small as i had to return it for the next size up, more so in the bust area. but the fit and length was perfect in the size 6. 5""10, 125lbs. i will say that all the raving reviews made me purchase +the dress without hesitation and i'm sure glad i did!",5,1,0,General Petite,Dresses,Dresses +1094,40,Beautiful in every way,"This dress is everything i love about retailer. a never-could-have-guessed-it, feminine, textured twist on a classic. it's beautiful, it's comfortable. the cut is true to size (for me) and figure flattering.",5,1,2,General,Dresses,Dresses +1078,40,"Well made dress, fit could be tricky","The patters/colors on this dress are much more stunning in person. it is lined and feels very well made. the pockets don't add bulk to the hip area as many times they do, which is great. the fit can be tricky if you have any semblance of curves. if you can, try this one on in a store before buying. for reference: i am 5'7"", have broad shoulders, am pear shaped (i have hips and a good sized rear end), 34b bust, weigh 145 lbs., and generally wear a size 6 or 8 for tops and bottoms. the size 8 fit",5,1,1,General Petite,Dresses,Dresses +862,57,,"I really liked this little cardigan. so simple, light weight, and comfy. i have grabbed it and put it on 3 times the first week i got it.",5,1,1,General,Tops,Knits +1078,43,This dress makes me happy,I love this dress. it fits great on curvy girls. the armholes are a bit big (i had to get it altered) but its great. it had two pockets which are great. good length and comfortable fabric.,4,1,0,General Petite,Dresses,Dresses +857,25,Fancy tank,The material is so soft and the design makes it a little more fancy so you can dress this tank up or down. its definitely an instant favorite. and the color blue is a beautiful rich blue,5,1,0,General,Tops,Knits +862,35,Great buy,"Awesome light shrug. goes with so many out fits, over tees and dresses. tts. get one! orange color is a pretty neutral.",5,1,1,General,Tops,Knits +1035,44,Great crop staple,"Love the pilcro brand! size down!! super soft, well fitting, great length. great darker color for fall. awesome rise. not too high, not too low. will be grabbing these a ton this fall.",5,1,0,General Petite,Bottoms,Jeans +1081,67,Universally flattering!,"This is ruching done right! i tried this dress on and the two other women who saw me in it went to try it on as well. + +it is fitted, but comfortable and because it is well cut the ruching hides a multitude of sins to leave you looking sleek and curvy in all the right places. it is also a versatile layering piece and would look great with almost anything. so unless this particular color is your nemesis, this dress is a winner!",5,1,1,General Petite,Dresses,Dresses +1081,35,Talk about flattering,"How could this not be flattering to every figure? bunching of fabric is awesome at hiding imperfections (i know, i have become a master at hiding some of my residual baby weight for years now). this, paired with a darker color (and not black, yay!) makes for a perfect combination in a dress. i love that this is a deep purple, it is a dark color which is slimming, but in addition it has more appeal being colored. and it is so versatile! wear it along or with a cardigan/jacket on top. heels or boo",5,1,4,General Petite,Dresses,Dresses +1117,75,A lot to like but with reservation,"I tried this jacket on in store, both m & l. both seemed to pull a little at waist/pocket (notice the raised pleat on the closeup. i ordered xl on line. it fits better but still seems to fit like the other two when fastened. snaps seem to be misplaced. on the plus side, the style is cute and there is brown (taupe) mixed in with the grey which is more flattering to brownettes. there isn't much difference in sizing of all three. i am not sure whether this is a keeper. open, it is fine and casual;",4,0,2,General Petite,Jackets,Outerwear +862,53,,This looks just like the picture. it's soft and very comfortable - looks great with skinny jeans and boots. love it!,5,1,0,General,Tops,Knits +645,37,Staple cami,This is a tts cami that should be a staple in everyone's closet. great for layering.,5,1,0,Initmates,Intimate,Intimates +984,44,Love it!,Searching for blazers that don't look stuffy? this one fits the bill! mine is at alterations right now getting the sleeves shortened. other than the long sleeves the fit is very nice. this will be a versatile addition to my wardrobe. can't wait to get it back from the seamstress so i can wear it!,4,1,0,General Petite,Jackets,Jackets +862,44,Nice basic shirt,"Purchased on sale and worth the $20 or so dollars. just a good basic top. scoop neck not too deep, fabric is opaque enough to not need a cami.",4,1,0,General,Tops,Knits +1035,47,Luv this brand!,"Pilcro from retailer is a great alternative to the premium denim lines with a way better price point! similar cut & quality with awesome rises and spandex/stretch content! also, the styles are always on trend!",5,1,2,General Petite,Bottoms,Jeans +1035,56,Very comfortable,"These jeans are so comfortable and do not stretch out enough to size down, in my opinion. right when i put them on i could tell they fit perfectly. i have been buying pilcros for several years and have not been happy with the stet ankle jeans from the last 2 yrs because although they were very flattering when you first put them on, they stretched out so much it was annoying. +these script jeans are amazing, flattering and are a nice lightweight denim. i wore them a few times before washing and",5,1,1,General Petite,Bottoms,Jeans +984,43,Flattering and comfortable,"Couldn't resist this jacket! it's perfect for business casual dress code, for staying warm in air-conditioned offices and goes with many colors and styles. + +many times jackets are too tight on my shoulders or not long enough for my arms and this fits perfectly. (i'm 5' 7"" and i bought a medium)",5,1,12,General Petite,Jackets,Jackets +868,59,"Super comfortable, love the design and fabric","I am 5'9"" 155#. i bought the charcoal gray in a large and i love it. fabric is super soft. hangs beautifully. no weird spreading across the chest like the previous reviewer. i have long arms and the sleeves are long and hit me mid palm just like the model in the photo. i have worn the sleeves rolled up and down and it works. recommend this for a casual comfy top with interesting design.",5,1,4,General,Tops,Knits +862,43,Great shirt!,"Love, love, love this shirt! much like last year's bordeaux shirt in this style, it's very soft, very flattering, and very comfortable. fits tts, and the fabric is a very soft, stretchy cotton, yet not too clingy around the mid section (it has a nice, flowy fit#. it washes great, doesn't pill #again, the fabric is fantastic), and holds up really well. i bought the black with white stripes this year, but i'm tempted to get every color. it's great for layering too since the fabric is nice and thin",5,1,5,General,Tops,Knits +984,63,Great little jacket,"I have not written a review for an retailer item in a while. i have been shopping at retailer for over ten years. in the past two years the clothing i have purchased has been disappointing in style and quality. but not this little pilcro jacket. great quality, perfectly proportioned, great understated details. many thanks retailer for restoring my faith.",5,1,2,General Petite,Jackets,Jackets +1081,39,Yep!,"Pretty much awesome... i tried it on in regualr size jsut to see, and i could almost get away with it... too bad i dind't try it on before hte 25% of f dresses... (also, i don't have an occasion to wear this). + +length is midi, but since it is gathered, i could pull it up a little so it falls in the right spot on me. + +color is very nice, overall sexy dress. + +material is soft and comfortable, nothing wrong except i missed out on the sale! :-)",5,1,1,General Petite,Dresses,Dresses +1081,28,Flattering fit and color,"I bought this dress for a wedding but decided it wasn't dressy enough and ended up exchanging it even though i really wanted to keep it? i ordered a xs and it fit like a glove, the gathering makes for a forgiving and flattering look and the color is absolutely gorgeous! very classy length for such a form fitting dress, too. i probably would have cut down the neck if i ended up keeping it bc high/tight turtlenecks aren't my thing which is reason for only 4 stars.",4,1,0,General Petite,Dresses,Dresses +1081,53,The dress you need,"There is a reason everyone is giving this dress 5 stars. it is stunning, flattering, versatile and comfortable. i'm a slim, athletic size 4-6. my store only had one of these and it was a medium. i'm generally a small but on the hanger it looks like a slim tube so i thought i'd try it. fits fabulous. due to the stretch and shape of the dress i'd say a size medium could fit a 4-10. so, don't worry about sizing up or down one in this dress. suuuuuper stretchy so even though it fits close down throu",5,1,0,General Petite,Dresses,Dresses +868,29,Nice shirt,"This is a nice, soft shirt that is very comfortable to wear. the collar on this shirt makes this more than just a regular shirt. although the shirt seems more fitted on the model, i found it to run large. if you are going for the same look, you might want to size down. however, i like the shirt and am keeping it. it is a good thing too, because the navy color went fast. very nice shirt and a pretty good price too.",5,1,5,General,Tops,Knits +1117,55,,Ordered this jacket on line. it is picture perfect. does run a little big. thought i would take a small but i'm exchanging for xs.,4,1,4,General Petite,Jackets,Outerwear +862,63,,,3,0,0,General Petite,Tops,Knits +1051,69,"Love the pant, however...","This pant is beautiful and fits great except for the waist. it is too big. i carry all my extra weight in my waist too. 5' 6 1/2"", 150lbs, straight and up down figure. the waist gapped in the back almost 2 inches. otherwise this is a great pant, if you have a well developed bootie, maybe they would fit. ordered a 10 by the way. if they make it to sale, will purchase again and take to tailor. they are a well constructed lovely pant.",3,1,3,General,Bottoms,Pants +850,56,Pretty hot mess,This blouse has such a beautiful print but then it just goes down from there and can't be saved. the fabric is a sheer silk so it comes with an attached camisole that just doesn't lay right underneath. the sleeves are all gathered up and they have a puffy gather at the top that just ruins the whole blouse. i wish it was just a simple popover type blouse because it really is a lovely print. definitely not worth the money even at 1/2 off plus 25-%.,2,0,3,General,Tops,Blouses +862,53,Great top!,"I have several of these shirts and love them. i can dress them up or down, and they look great. comfortable and soft, and lose enough to be flattering but not bulky. great buy!",5,1,0,General Petite,Tops,Knits +941,42,"Size down, but how far down? tricky sizing.","My store had only one of these, in a size xs (i tend to be more of a s in most retailer items). it was roomy. i am 5'2, 34d, & figured a petite small would be a perfect fit. i ordered the ps, it arrived today, & is still pretty big! the sleeves (which are quite flared) are a little shorter, as is the overall length, than the regular xs, but overall the ps feels just as big, if not bigger, than the regular xs! trying to decide if i should go back for the regular xs or order the regular xxs.",4,1,0,General,Tops,Sweaters +1117,65,Just what i was searching for...,"I've been searching for a pretty & soft faux fur coat - finally found it hanging there in retailer! there was only one - a size small. it looked gorgeous, but thought i could use it a bit roomier. i'm a size 2/4, 5'5"" & about 118 lbs. i ordered a medium but it was huge. stayed with the small and am loving wearing this in our mild northeast winter. lots of compliments. lightweight and luxe. get it.",5,1,4,General Petite,Jackets,Outerwear +1081,35,Chic dress,Very happy with this online dress purchase! it fits tts and i love the ruching. i've already gotten compliments on it!,5,1,0,General Petite,Dresses,Dresses +1030,32,Great jeans,"I love all jeans by mother, they are well made, fit great and look so cute with any type of shoes from heels, to flat to boots. these jeans are perfect to wear out or when paired with a blazer can be worn to work. i love these and have them in almost every color.",5,1,0,General,Bottoms,Jeans +1081,28,Love it!,"Saw this online- my size out (xs/s p). online did have xs. checked store saw how great the dress looked at store, able to try on only one avail at store (m). ordered xs online. fits well with ada belt and cardigan. until straps altered will keep cardigan on.very comfortable and cute- lots of compliments worn to work",5,1,0,General Petite,Dresses,Dresses +862,36,Love these tops!,"I own several of these tops and i love them. i am 5'10, 140 lbs and i wear a small. i bought the gray and white stripe and the ivory and black stripe and they are very flattering. the front hits me at the same place as it does on the model and the back covers my butt. i own several of the solid colors in this style as well and they are just as great. this shirt is so soft and comfortable, you won't regret buying it!",5,1,3,General Petite,Tops,Knits +645,65,Fabulous tank,I purchased this tank for the interesting open neck not realizing that the straps are elastic. i love it. the material is super soft and it fits nicely. snug but not too tight. the straps are wide enough to cover bra straps and the neckline being a little wider is really flattering. i got the black one but i am going to get more colors! great buy!,5,1,4,Initmates,Intimate,Intimates +1025,39,Best jeans ever,These jeans are my favorite skinny jeans. they are expensive but so worth it. i had nordstrom reinforce holes with patches so they still look distressed but won't rip further. i wear these at least once a week.,5,1,2,General,Bottoms,Jeans +645,29,Love it!,"This tank is perfect. it fits close to the body, but does not squeeze. it is super soft, smooth, and comfy. it layers perfectly under blouses. this is by far my favorite basic tank!",5,1,2,Initmates,Intimate,Intimates +868,46,Comfortable,"Got this in the red, like previous reviewer mentioned - it does fit snug. +you might need to size up if you are busty and want a much looser fit. + +other than that, super comfortable and soft fabric",4,1,0,General,Tops,Knits +862,26,Flattering!,"I usually wear xl in tops at retailer, but i picked this one up in a l. it's stretchy and super soft, but doesn't breathe all that well.",4,1,0,General Petite,Tops,Knits +870,33,Tomorrow sweatshirt,"I can always count on retailer to sell unique pieces, so when i saw this sweatshirt online, i ordered it right away. it's adorable and quirky, however, when i received it in the mail, it reminded me of something my grandma would wear. the sleeves are puff sleeves and are really long, while the bottom of the sweatshirt hit pretty high on my waist that when i raised my arms my stomach was showing. if this was a more tailored sweatshirt, i would be keeping it, but sadly it's going back.",1,0,0,General,Tops,Knits +1081,36,Stunning deep eggplant color,"The color of this dress is sublime. so is the fit. ruching in all the right places. made me feel glamorous. it's a dress that you can easily wear to a holiday party and then still rock it a couple of days later with a sweater coat, vest, or cropped jacket. the material feels so nice against the skin too. it's a must have.",5,1,11,General Petite,Dresses,Dresses +1025,67,Adorable easy to wear,"I saw this online and then at the retailer store where i was able to try it on and was happily surprised.yes it is way oversized but if you size down it will work best. i have narrow hips and shoulders but a 34 dd bust, so fit is not always easy. because of my shape i normally wear a medium or small but had to size down to an xs petite in this. you may find, as i did, that it works dressed up or down. if i had bought a regular size, and were lots younger, it could have worked for a dress with tigh",4,1,1,General,Bottoms,Jeans +1081,37,Curves for days!,"I was a little hesitant when i ordered this dress, but needed something for my husband's company dinner. this dress is perfection! i'm 5'9"", about 160 (i got it in medium), definitely on the curvier side and this dress hugged all my curves in the right places! love the ruching, hides all the imperfections. the color is gorgeous, paired it with a black cardigan and black heeled shooties, got so many compliments! on a plus side, my husband couldn't keep his hands off me all night, kept going on an",5,1,1,General Petite,Dresses,Dresses +984,51,The perfect denim jacket/blazer,"Great fit, can be dressy or casual, goes with everything, i adore tis jacket!",5,1,1,General Petite,Jackets,Jackets +1081,62,Stunning! you won't believe it.,"My sales assistant/style consultant watched the dresses i had collected to try on, and how they fit, and she brought this dress in, with a silk cocoon wrap for me to try on. i took one look on the hanger and made an assumption it would be too snug, highlight every bump, and i could not have been more wrong! this dress is wonderful on! it is the most flattering thing i have now in my closet. you must try this on to see how flattering it is. i am still stunned with how it looked and made me feel.",5,1,3,General Petite,Dresses,Dresses +1035,60,,"Great jeans by pilcro, too short and snug around my knees for keeping though.",3,1,0,General Petite,Bottoms,Jeans +1081,31,Flattery will get you everywhere,"Wow. bailey 44 knocks it out of the park with this sensual, i-am-woman-hear-me-purr body-slimming dress. we all have our hang ups. this dress forces you to see all the beauty that everyone else sees. the rouching covers up any dimpling or rolls you think you have. the body conscious structure lets you see those curves you knew existed but deny yourself from loving. oh - you hate your arms? me too! guess what - you don't even notice them because you're so focused on how amazing you look. the cut",5,1,1,General Petite,Dresses,Dresses +941,44,Very itchy!,"A beautiful sweater and very flattering on. the stock photos do not do it justice. but, i had to give it only 2 stars because it was so itchy that i couldn't even keep it on in the dressing room for more than a minute.",2,0,0,General,Tops,Sweaters +1035,36,Post partum heaven,"I am one month post partum and have had so much trouble finding jeans that fit. +my old jeans fit in the legs and thighs but not my new tummy. +i love my old pilcro jeans but didn't want to spend the money on jeans in a size so much larger than my norm. +well after ordering other brands much cheaper i broke down...spent the money and sized up. i am normally a 27 and ordered a 30 due to waist size. they came today and fit like a glove. +i am so happy! it's worth every penny to wear jeans that fi",5,1,0,General Petite,Bottoms,Jeans +1035,51,"Cute, comfy jeans","This is a cute pair of jeans. it has a slight flare and just right amount of fringe. they are super soft and and the color is slightly lighter than in photos. tts, not too low hitting right below belly button and a just the right crop length for my 5'4"" height falling ri right above my ankle.",5,1,0,General Petite,Bottoms,Jeans +862,43,A tent,"This is a very awkward and unflattering shirt. i am very petite--90 pounds and 5'2"". the arms fit--length and width, but nothing else about this fit. the scoop was so low and wide that i would require a shirt underneath. it fell exactly like a tent and made a bell shape around my thighs. yikes! it looks cute on the model, but not on me. the material is also very thin and felt sort of like it should be a pajama top.",1,0,0,General Petite,Tops,Knits +1081,36,Great dress!,"I wasn't planning on loving this dress when i tried it on. i loved the the color which is what prompted me to buy it. this dress fit perfectly. it hugs my body without feeling tight. the ruching is perfect. i didn't want to take it off! it's also very comfortable. +i'm 5'1"" , 107lbs and the xs petite fit perfectly. the dress hits me at the same length that is pictured. i think it would be easy to hem if you wanted it to be shorter. i have a short torso and saw no issues with that as some reviewer",5,1,0,General Petite,Dresses,Dresses +114,33,A big ruggy,"The material is super soft and i could see how this could be a great fall sweater, but the furry portion made the top too bulky. i should've sized down, but even then i think it still would've been a touch boxy. if it was boxy all the way through it'd be fine, but it feels like just the top was bulky while the bottom half was fine. perhaps good for more broad shouldered people. i have very small shoulders. also reminded me too much of a sheepskin rug.",3,0,10,Initmates,Intimate,Lounge +984,36,,"Cute jacket, but size didn't work on me. 5'4, 135 lbs. normally order s or xs in tops, but m in jackets. ordered the medium, but way too long everywhere. i can get by with regular a lot in retailer, but definitely ordering the petite to see if any better. not sure it will be enough though as arms were quite long.",4,1,9,General Petite,Jackets,Jackets +1095,32,,"True to size and lovely dress, except the arm pit area is tight and pinches. had to return.",4,0,1,General Petite,Dresses,Dresses +984,39,Blazer with a casual twist,Like the style of a blazer but the fabric of denim. looking forward to pairing with dresses and black pants,5,1,9,General Petite,Jackets,Jackets +1041,40,Sophisticated feminine overalls (?),"Yeah i know that sounds ridiculous. but this is really a nice piece, the fabric is thin and soft with a little structure to avoid any pajama vibes. the color is perfect, a mid-deep indigo with just enough fading. i don't find it unwieldy or challenging to get on and off, and i like how the fit is adjustable with the waist tie. that said, it does run small. i'm usually a 6/28 and started off with a m. it was pretty form fitting, and the ct risk was at orange level. then the zipper wouldn't stay u",4,1,4,General,Bottoms,Pants +941,49,Unique fall sweater,"I was attracted to this sweater because of it's unique style. i really love it. it looks just like the picture. it is of good quality, as is the leather belt. it is the perfect fall sweater and i love that it's different. i highly recommend this sweater.",5,1,1,General,Tops,Sweaters +984,48,Very impressed,What a great jacket. love the subtle windowpane design and the color blue is a nice denim hue. i chose my standard size i wear in retailer jackets on this in house brand. i wish though it was made in the usa as i have several other jackets by cartonnier that are made in the usa. thus jacket looks so polished with jeans to a denim skirt to a bottom that is similar in fabric and texture. very happy with my purchase.,5,1,0,General Petite,Jackets,Jackets +941,59,Returning,This sweater is beautiful but runs large all over. i ordered a m and returning for a small. hopefully that works.,5,1,0,General,Tops,Sweaters +1081,34,"Super classy, with an almost perfect fit","I'm 5'0 and 114 pounds and got the small petite. i have broad shoulders and am slim hipped. i no longer have a waistline, thanks to having given birth, but this dress really hid that. it gave me a figure! the ruching is super flattering and the material has enough support (with stretch!) to hide any unsightly rolls. + +so why did i return it? i did, after all, get many compliments from females while trying it on. they loved the color on my pale olive complexion (i'm filipino with -ahem- blond hair",4,1,1,General Petite,Dresses,Dresses +340,51,The perfect gym pant,"I'm so glad that i took a chance on these; they're fabulous! i wasn't sure about sizing since my local store didn't carry them, but as a wider-hipped 14 i went with the xl. it was the perfect fit and i couldn't be more pleased. the skirt is the perfect touch since it gives my flat booty the illusion of shape and provides a little coverage (not that you'd need it- there's no show-through whatsoever.) love!",5,1,7,General Petite,Intimate,Lounge +1081,72,Stunning dress,"This dress is gorgeous in person and so comfortable. i wore this to a business meeting and got several compliments on it. i am 5 feet tall and it does run a little long on me, a petite small hits me slightly below the knee. however, the dress is so nice that i am keeping it.",5,1,1,General Petite,Dresses,Dresses +1041,35,More of an overall,"I thought this was much more of an overall than a jumpsuit. after trying it on in a store (must have been a return), i could tell that the medium was snug and usually i am between a medium or a small. the straps were a little hard to manage. it is cute and i think cuter than on the model.",4,1,2,General,Bottoms,Pants +862,35,Comfortable and flattering,"This is a great basic shirt. it has room in the midsection so you can tuck in or not. it is also extremely soft. i am 5'9, a 10 and the m fit just right.",5,1,0,General Petite,Tops,Knits +984,52,Polished look,Yes! i am 5' 120 lbs and busty. this hugs in the right places. there is no extra fabric so it doesn't appear overwhelming on me as even some petite blazers do. i had purchased the same brand blazer but in the mustard color and it did not fit well. this fits beautifully. the denim color is just like the picture. the sleeves are a tad long. so i just rolled them up - no bulk. i ordered a size 6 petite.,5,1,11,General Petite,Jackets,Jackets +984,43,Love this blazer!,"This blazer is really well made, it has a nice weight and stretch to it. i think it might run a bit on the large size, i am sometimes a small and sometimes an xs and the xs is perfect. it's a great blazer to throw on to cinch together a casual yet put together look. i don't think the picture here does it justice. it will be getting a ton of wear in my work wardrobe. i love it!",5,1,0,General Petite,Jackets,Jackets +863,47,Comfortable and stylish top,"This is the perfect grab and go t-shirt. i love the fun design as it takes a simple t-shirt and makes it fun. i originally ordered the small but it was way to big for me especially at the waist. the bottom half of this top is much looser and if you want to have a more fitted look, size down. very cute.",5,1,0,General,Tops,Knits +1005,39,So happy!,Love this skirt. it was on my wish list from the first time i saw it in the catalog. so glad i was able to get it when it hit sales. i love it. thr color is more subdued than pictured but very nice anyway. the cut is awesome and flatering pretty true to size for me (petite) winner,5,1,2,General,Bottoms,Skirts +1005,31,"Heavy, long","I love this skirt, in theory. the style is fun and original and the quality was excellent. however, being suede, the skirt was very bulky. also, at 5'8"" and liking skirts to be long enough for work, i typically don't have problems with long length. however, i thought this skirt fit too long on me such that it distracted from the style. i really wanted to love this skirt - hopefully they'll make some updates in future styles.",3,0,2,General,Bottoms,Skirts +891,27,**great for broad shouldered women**,"After reading previous reviews i definitely had to give this a try since i have broader shoulders than the average woman. my regular size (small) was not available anymore so i went with medium and i have to say it worked out well. the small would have not given me the slouchy factor that the medium gives me. this top definitely has no problem staying ""off the shoulder"" since i have broad shoulders it doesn't completely come off me. loving the boho-chic vibe of this!",5,1,0,General,Tops,Fine gauge +1005,31,,"Pros: this skirt is a stunner. beautiful, rich color and great quality. the cut is conservative enough to be work appropriate, but the little peek of above-the-knee leg where the slit is makes it interesting and flattering as well. + +cons: slightly smelly when it comes out of the bag- i'm optimistic this will mostly go away though. expensive. + +fit: i'm 5'8"", 125 lbs, 34b, normally wear a 26 or 27 in pants, and the size 2 fit great. i often wear a size 4 in skirts despite a size 2 fitting fine in",5,1,5,General,Bottoms,Skirts +1023,57,Beautiful but runs huge,"I was so glad to find such a beautiful item made in the usa. i knew the workmanship would be above average. the embroidery is gorgeous and makes these jeans so unique. i am usually a 24 in pilcro slouchy chinos, size 0 in most pants , 25 in jeans so i ordered these in xs. the waist was at least 7-8 inches too large. they were enormous in every aspect of fit. no belt could possibly make these stay up. very disappointed . i would recommend an xs if you are a size 6 to 8.",3,0,2,General,Bottoms,Jeans +891,36,Cute but needs undershirt,I could not tell from the picture but it is see through. it will be fine with a tank top i just was not expecting to need one.,4,1,0,General,Tops,Fine gauge +1005,59,Love this skirt!!,"I'd been eyeing this for a long time but couldn't afford the full price. when it came on sale, my size -- regular 8 -- was sold out. so i took a chance and went with the petite 8 (only difference is length). and am i glad i did! + +it fits beautifully, even a little roomy. but the length is perfect. the longer pieces are at/barely below the knee, and the shorter flap is about two inches above. (for reference, i'm 5'7"", 135 pounds, measurements 38-30-38.) + +the skirt is substantial, with high-qualit",5,1,4,General,Bottoms,Skirts +1005,54,Amazing skirt - size down or get a petite size,"Love this substantial pieced suede skirt by leifsdottir. the photos i posted show the color in daylight on a cloudy day. a bit more muted darker turquoise than the online pictures. imagine a mini pencil skirt made of non-stretch polyester with a suede front panel. over this is the longer, open skirt, which is attached at the sides to keep it from flying up when you walk. +. +sizing: based on the reviews i risked ordering this in a 00p. i'm 5'2"", currently 33-25-37ish with narrow hips, fuller behin",5,1,2,General,Bottoms,Skirts +1092,52,Should have believed the negative reviews,"Like most people here, i wanted this beautiful dress to fit. so, i decided to see for myself if maybe, just maybe the negative reviews were wrong. they weren't. if you have any sort of breasts at all, the top probably won't fit properly. i imagine a narrow upper torso, like a 32 or 33, possibly a 34 might find the top part of the dress closes properly, but with a 36 c, i could not get a size 12 to button up. the waist hit at a strange spot, and despite the picture showing a narrow waist and grad",2,0,2,General,Dresses,Dresses +1130,80,Very soft and swingy!,"Coat is very soft and comfortable. runs large; usually wear an xsp, could have gone with an xxsp, if it came in that size. the lining is very soft. can wear a sweater or something heavier underneath, if needed. +some small, little pulls on outside fabric, but, might be part of the fabric. outside fabric is very soft. would not have paid full price; glad it was on sale, as i had been eyeing it for some time. it is cute, and felt like twirling, when put it on!",5,1,3,General Petite,Jackets,Outerwear +1092,31,Amazing dress!,"I was hesitant to buy this dress with all the reviews regarding poor fit, particularly in the bust area, but it's so unique that i decided to give it a try anyway by ordering a petite size. i was pleasantly surprised to find that it fits beautifully in my usual size. i did not find the bust to be small at all, and the overall fit was very slimming and flattering. for reference, i am 5'2"" 110lbs 32dd, and the size 2p looks great and is very comfortable. the 0p might have worked too. the material",5,1,2,General,Dresses,Dresses +860,52,New staple,"I absolutely love this top. i am short (5'2"") but curvy on the bottom with a 36dd bust. i ordered the xl, only because of my upper body. it fits great, as i don't like anything to hug my body. but it doesn't look like a tent. has a little a-line shape to it. another reason i go for the larger size is i like to dry all my clothes. ordered the grey and will order in the black, also.",5,1,0,General,Tops,Knits +868,62,Chic funky fun find,"I love a dolman. the tassled dolman is slimming, light and comfortable.",5,1,11,General,Tops,Knits +869,36,Dorotea tee,Love this top. work appropriate and dress down worthy. i also like the fact that it is not clingy around the waist. comfortable fabric.,5,1,5,General,Tops,Knits +1092,44,,My usual size was a bit large and baggy in most areas but the bust was sooo soo small. the button popped and i had barely moved. do not recommend this one for anyone with a bust. the detailing is very pretty though for someone that can make this work.,2,0,1,General,Dresses,Dresses +868,54,Super cute but fits like a petite,"I loved this top, and i normally order petites when i'm able to, but this wasn't offered in a petite size so i took a chance and ordered it in regular. just got it in the mail and when i pulled it out i thought wow, it is a petite! but its not, just runs small. i got the xs size and it was tight under the arms, and the peplum bottom came up a bit high and felt slightly maternity-ish the way the bottom part flared out. i actually thought it was a bit too short too, even on me (5'2"", about 118 lbs",4,1,15,General,Tops,Knits +1092,41,"Beautiful design, tight fit","I loved this dress and was hoping to keep it. but, for an a-lign dress it was not roomy enough in the hips and the waist was baggy. i think this dress would look great on a very very slim build with straight hips.",3,0,0,General,Dresses,Dresses +1100,37,Loved this for a wedding!,"This dress is a beautiful vibrant color and a classic fit and flare fit. it does seem to run a bit large, i am 5'0"" and 120 lbs. and wore a 2 petite. it fit nicely and was flattering but still a little roomy. + +i added a beaded belt to dress it up for my maid of honor duties and despite all the running around, dancing, hugging, buckling the brides shoes and holding my children the lace did not fray and the shape held up beautifully.",5,1,7,General Petite,Dresses,Dresses +903,40,,"I ordered this in the pink color. the fit was fine, but i didn't care for how thin it was. there is lining, which i suppose is there to combat the thinness, but it's only in certain places. the lining should have been all over. maybe if i had gotten this in blue, it wouldn't have been so bad.",3,0,0,General Petite,Tops,Fine gauge +1092,60,Great summer dress!!,"Like other reviewers have stated, this dress does run small on the chest. i'm 5.3"", 32c, 120lbs and size 2 fits me great. however, if my chest size had been, like 34d and up, size 2 will not fit me although i'm petite frame. so, if you have a large chest, i would recommend going 1 or 2 sizes up. if you are like myself, small bust person, then you should try your regular size and one size down to see which one fits you better. i was going to try size zero, however as soon as i tried size 2, i rea",4,1,0,General,Dresses,Dresses +1092,53,Gorgeous embroidery and lace!,"I tried this on at the store and i agree with the other reviewwers on the sizing. instead of purchasing my usual size 6, i bought the size 8 as it was indeed a bit tight in the chest for my 34d chest but it was no biggie as they had my size. i love all the embroidery and lace, the length, color and detail on this one. it's also soft and made from cotton so it will be just perfect for summertime and will look adorable with tights and boots and a cardi or jean jacket in the fall:)",5,1,1,General,Dresses,Dresses +1100,31,In love,"I swooned over this dress when it first came online. i had never worn a petite size before so i wasn't sure about the fit. i am curvy (34dd-27-42) and normally wear a size 8 dress, but the 6p fit me like it was made for my body. i think this is because the dress runs large, but i really really enjoyed the fit. the quality of the lace is evident immediately and the color is more of a cornflower blue, which i adore. the lace feels like a soft cotton, but has a lot of strength to it. cannot recomme",5,1,3,General Petite,Dresses,Dresses +1092,47,So summery!,"Ok, here is the story: i am 5'5"", 118 lb, 34c. i got a 4 and a 6, both are s tad tight at the chest and shoulder area, but i have big shoulders; i am keeping the 6. there is plenty material at the waist and below, but the dress does not look frumpy, at least on me it does not. i like the picture with the belt and i will wear it that way too. i also like the sleeves, they make it easier to wear at work. the material is lovely and so is the embroidery and cut-out. it really is a sweet summer dress",4,1,1,General,Dresses,Dresses +1092,62,Perfect for a specific shape...,"Despite the mixed reviews, i went ahead and bought this in my normal size. i am small-chested (34b) and found this to fit perfectly, so i understand why those with large chests were finding this impossible to fit at the top. the fabric and detail are stunning on this. there is not a lot of give to the fabric, but if you are smaller in the bust. buy it!",5,1,1,General,Dresses,Dresses +860,23,Perfect,"I wanted a turtleneck for layering with cardigans and vests. i ordered the burgundy color in an xs (my usual, 2) and the color is lovely and deep. i absolutely love it. the ribbed design is comfortable. the neck drapes as shown, so it is not constricting at all.",5,1,1,General,Tops,Knits +863,33,Not for me... and not at this price,"I thought this top would be a nice addition to my fall wardrobe, and while the color didn't disappoint, everything else did. it's a very loose slub so it's very see through and thin, i'd have to wear a cami under it. also the tie front has a very high slit! like it went almost halfway up the shirt and definitely would have shown skin unless you layered the shirt. i do think this top would be a cute throw on top for yoga/ gym wear, but definitely not at this price. pass for me sadly...",3,0,3,General,Tops,Knits +863,20,,I tried this on in store in a small and then ordered the medium online i loved it so much! i generally run a small/medium with retailer so i thought this was pretty true to size. i'm also longer through the torso so the medium is better for me to cover my stomach when tied. it is on the thinner side but not see through. perfect for layering and for a mild california winter. can't wait for it to come!,5,1,0,General,Tops,Knits +903,32,Too thin,This hoodie was too thin. you can see right through it. i returned it.,2,0,0,General Petite,Tops,Fine gauge +1099,48,I like it. (maybe.),"This dress must be pinned on the model in the picture. +i ordered a small although i really needed a petite small, but it was sold out. it is incredibly billowy. very billowy. i love the print and the material but this dress is just so very voluminous. i may have it professionally shortened since i am only 5' and the dress hits just below my knees. i'm hoping that helps since i'd really love to keep it.",4,1,4,General Petite,Dresses,Dresses +1092,33,"Runs small, but still a good dress","This dress is beautiful in person, the details on it are amazing. the only problem i had was that it ran small. i am usually an 8 or 10 in retailer dresses, but had to size up to a 12 just to be able to breath. the top on the 10 was tight in the chest and arms. when i sized up to the 12 there was more room, but not by much. the embroidery detail on the dress is the best part, it is exactly as shown in the picture. plus it has pockets which is always a plus for me. lightweight and great for warm we",3,1,0,General,Dresses,Dresses +1025,37,Beautiful but...,"... runs large which is the opposite of what i see in the majority of others' reviews. since most reviews say it runs true to size i decided to purchased a size 28 which usually, it's the perfect size for me no matter which brand, fabric, style, etc. it always fits... well, not in this case. i should have gotten a size 27. i felt very disappointed because these pants are beautiful. i got the 40% off sale at the time and now can't exchange it since the price has changed and the product is unavail",4,1,0,General,Bottoms,Jeans +903,46,Very cozy & pretty color,I ordered the peach version in size xl. it fit true to size--matched the photos online. i hand washed it and it did shrink a bit. the fabric & knit used are so soft. the color is so pretty too.,4,1,0,General Petite,Tops,Fine gauge +1098,40,You need to be tall,"I'm 5'-4"", 130lbs with a 32f chest. this dress looked like a cross between little house on the prairie and a mu mu. i can't imagine this looking good on anyone who isn't 7' tall. also, the straight across, rather high neck line wasn't flattering to a large chest and then the arm holes are huge. the fabric was a bit shiny and felt cheap. it wasn't see through but it had the feel of a nightgown, not a hundred dollar dress.",2,0,0,General Petite,Dresses,Dresses +868,53,My go to,This is so comfortable and flattering and hides everything but yet is fun! i actually love to wear it with jeans. and it goes great with a really great piece of jewelry.,5,1,0,General,Tops,Knits +903,47,Mixed...,"I tried this sweater on in the store. i wanted to love it so badly as it is soft and feminine, and would be a great causal layering piece. however, there are pockets in the sweater that are right on seam, and they actually bubble out from the natural drape of the sweater. not to mention, unless you're built very narrow, the pockets will fall at, and accentuate hips, and not in a flattering way. the nice details are the feel of the knit, the layered style, with a cottony lined hood and ""faux"" lay",3,0,8,General Petite,Tops,Fine gauge +1092,47,Incredible small bust,I love this dress. the design is gorgeous. however the bust is extremely small. only someone in the a or b range will fit into their appropriate size. i am disappointed.,3,0,5,General,Dresses,Dresses +1092,29,Weird fit,"This dress fit so oddly. i tried on two different sizes and both did this super unflattering poochy thing at the belly. the dress wasn't tight at my hips in either size, it was just that there was weird extra fabri right around the midsection that stuck out. maybe i was too short? couldn't figure it out. + +the color and detailing are beautiful though! a little tight in the bust.",2,0,3,General,Dresses,Dresses +825,44,A real beauty!,This top is gorgeous! it's a nice weight and the cami that comes with it makes it drapes nicely. i'll have to send it back though because it's too big. i'm always a medium but in this i'll be a small. :(,4,1,3,General,Tops,Blouses +825,25,,,4,1,0,General,Tops,Blouses +860,37,"True to size, versatile","My measurements: i'm a 36b so i got the medium. it fits perfectly. i originally purchased this in the gray to wear during the day in winter months, but i loved it so much that i came back and purchased the black for evenings with skinny jeans and heels. it's so soft and pretty, can be dressed up or down, and now i'm thinking about getting the wine color too! i *love* it. i washed it in cold/gentle and let it air dry and it held up fine. i wouldn't push it though. treat it delicately. it's a smar",5,1,0,General,Tops,Knits +800,47,Light and breezy,"I bought this in my usual size small. it is really light and airy--very pretty. as the other reviewer noted, it is longer in front and shorter in the back. the back hit my waistband, as it does on the model in the picture. it hid my bra very well (always a plus). i wouldn't describe the fabric as soft and i did get a static electricity issue, but the top stayed put. overall, very pleased.",4,1,0,Initmates,Intimate,Intimates +1099,25,Runs large and sleeves are different from photo,"I really wanted to love this dress because i like the lacing at the neck.. the dress is high quality and comfortable but it runs very large. also... the sleeves on the model are gathered. the sleeves on the dress i received just hang loose and big at the wrist with no gathering whatsoever. they're so wide at the bottom you can't really roll them up without them falling down the next second. it also runs quite long (longer than on the model) and i'm 5'9"". unfortunately, i guess i'll be returning",4,1,0,General Petite,Dresses,Dresses +903,41,,"I love this sweater!!! i checked runs large, but it's really just a roomy sweater. i bought the small, which is what i usually buy, but it is big enough to wear over long sleeve shirts, etc. it's soft and cozy and i think i wore it 3 days straight when i first got it - one of those pieces that you will wear over and over. wore it with jeans and a blouse, then with palazzos and a tee and then over my workout wear the next day before deciding it was time to give it a rest! love this sweater!!",5,1,1,General Petite,Tops,Fine gauge +860,31,,Love this turtleneck! it's perfect for fall and to layer. i'm usually an xs in things from retailer and this is no different. i definitely recommend.,5,1,0,General,Tops,Knits +1098,38,Lovely summer dress,"I love this beautiful summer dress! i am tall (5' 10""), and this dress is a great length on me. sometimes with high/low dresses, the ""high"" is too short, but this dress is perfect. it does run large. i originally ordered a medium, but had to return it for a small. it is very voluminous. my only complaint would be the arm holes are huge. i am going to have to wear a camisole or bandeau top under it, or you can see my bra.",4,1,2,General Petite,Dresses,Dresses +1092,27,Darling dress!,"I bought this dress for my mom! she usually does not even try dresses on because she feels that they highlight her ""problem areas"", but she is going on a vacation soon and i thought she could should bring something different for her trip. thankfully, the embroidered waters shirtdress completely surprised her! the fabric is soft and light, the blue is vibrant and perfect for spring/summer, and the cutwork detailing is flirty without being too risky or revealing. she's really excited about this--a",5,1,6,General,Dresses,Dresses +1098,39,Giant arm holes,"I would have kept this dress if it weren't for the giant arm holes and reveal my entire bra on both sides. other than that, it looks just like it does on the model and is a nice, substantial material.",2,0,6,General Petite,Dresses,Dresses +860,60,Great relaxed top!,"Love this top. looks great on, not uncomfortable. it's the right length, the fabric is nice and it feels good on.",5,1,0,General,Tops,Knits +868,67,Effortless beauty!,"I have been eyeing this top for a couple weeks and finally found it in my store. it was a good sign when i saw our stores in-house stylist wearing it! i absolutely love the fit--it's soft and stretchy and fabric is nice quality. i'm typically a medium, sometimes large--i bought the medium and it's perfect. i could have gone down to a small as well. the large was way too big (for reference i'm 5'8"", athletic, 150lbs). this top is going to take me everywhere this summer! worth a try!",5,1,2,General,Tops,Knits +868,63,A different look,"I really was surprised at how much i liked this top. it is, as others pointed out, a poncho type overlay with a tank connected underneath. it is very comfortable and forgiving of any body boo boos. looks great with skinny white pants.",5,1,1,General,Tops,Knits +869,66,Love this top!,I wasn't sure how this top would look on me but i tried it on and i love it. plus it is very comfortable. i would highly recommend it!,5,1,6,General,Tops,Knits +903,50,Soft and cozy,"Perfect cozy sweater, nice details. exactly what i wanted to upgrade from sweatshirts.",5,1,0,General Petite,Tops,Fine gauge +824,21,Terrible,"I am very disappointed with this order. the shirt looks and feels cheap, is not flattering in any way. i am sending it back right away.",1,0,0,General Petite,Tops,Blouses +860,32,Cozy!,"I am 5'8"" and about 145 lbs - curvy through hips, small up top and i got a small and it fit great. i got it in the wine and it is a pretty color for fall into winter. the fabric is super soft and cozy!",5,1,1,General,Tops,Knits +825,38,,What a great top!! unusual design,4,1,0,General Petite,Tops,Blouses +985,24,,Loved this jacket so much i bought both colors! this jacket is simple yet adds so much to an outfit. the lightweight material makes it perfect for the florida seasons. as for the snaps mine work perfectly i usually just keep them undone for my hands. the sizing i think runs a bit large. i usually am a medium but ordered smalls and they fit perfectly even with the perfect amount of breathing room. highly recommend,5,1,1,General Petite,Jackets,Jackets +903,39,"Beautiful, but runs really big","I typically wear a size xl in retailer clothes. i'm a size 16 in tops and this sweater in xl fit really baggy with no form fitting. it's super soft and i love the color, but it was just unflattering on me.",3,1,1,General Petite,Tops,Fine gauge +863,66,Awkward,"Maybe i shouldn't have sized up to an xl but i'm not sure a smaller size would have solved the weird fit. the vee is quite low and i'm busty. it'll be really low if you're smaller on top. the fit from back to front where it ties looked horrible on me. not tight at all. it's almost balloon like around the hem and from the side view, i looked like a really wide green apple. i hate leaving a bad review because i know someone may love it but i wouldn't recommend it.",2,1,2,General,Tops,Knits +860,29,Love this!!!,Loved this so much i bought it in black and in grey. it fits perfectly and it lays awesomely!! i ended up buying the black in medium and the grey in large for a bit of a different look for each. i usually wear a medium or large so i'd say it fits super true to size - just depends on how you want it to fit!,5,1,1,General,Tops,Knits +868,44,Didn't look good on me,Thought i would try this as other reviewers loved it and it's out of my comfort zone. it looked like a poncho with a baggy tank underneath. not worth the price. the tassels looked a bit worn as well.,3,0,0,General,Tops,Knits +927,53,Allroads vest,"I love this vest-it is a work of art in its design and construction but extremely wearable, absolutely gorgeous on, and perfectly warm and functional. my favorite thing i've ever bought at retailer.",5,1,1,General,Tops,Sweaters +903,26,Pretty in pink,"Very soft, clean feel. i got this in pink and received so many compliments. perfect to layer on top of your favorite tee or tank. i wish they had it in navy as well.",5,1,0,General Petite,Tops,Fine gauge +1092,42,"Beautiful, comfy, but odd skirt","I tried this dress on in the store, and nearly bought it. other reviewers commented on the tight chest, but i must admit, this was the one part of the dress that fit like a dream on me. however, i am very small busted (34a). the waist is very flattering, as well. but, the skirt seemed to poof out at the wrong spots (namely, where the pockets are- i love pockets, but not when they create extra bulk at my widest points) and the skirt was about two or three inches longer than i would've liked. anyt",4,1,0,General,Dresses,Dresses +903,20,,,5,1,0,General Petite,Tops,Fine gauge +800,29,Cute and airy,"Cute layered cami. great colors for summer or fall. very light fabric, tends to get a bit staticy. shorter in the back than expected but a good versatile top",4,1,1,Initmates,Intimate,Intimates +860,53,Versatile top,This top is great for layering or by itself over skinny jeans or leggings! i'm 5'5 and this is the perfect length! ??????,5,1,0,General,Tops,Knits +903,22,Wanted to love,"This is a very lightweight, comfy sweater jacket. i wanted to love but didn't find it ""special"" enough for the price. i am usually between a small and medium and tried on both sizes in the gray and the navy. the small fit snug in the shoulder but i liked how the layering showed at the bottom of the front. that look was lost on the medium, though the general fit was better. in the end, the looked medium too sloppy for my taste, and the small felt too small.",3,1,12,General Petite,Tops,Fine gauge +1092,36,Casual cool,"I am tall, so this dress hits slightly above the knee on me. the peek-a-boo detail on the skirt and shoulders is flirty, but still modest. this dress is super comfortable and is going to be a summer staple for me. i also love that this dress is button-down, it is an easy piece to wear for new moms!",5,1,0,General,Dresses,Dresses +1092,36,Adorable,"I went to retailerplpogie today to try this piece on and it was adorable. i really liked the lace part that lightly shows off the legs. this does run true to size. i am 5'5 and 116 pounds and wear a 34b and i was able to button up everything and be comfortable in a size 0. there is no stretch at all with the materials that they have used, so that might be an issue for some. the material was actually a bit thicker than what i would have thought for dress like this, but i really liked it overall and",5,1,2,General,Dresses,Dresses +1099,29,Sleeves are inaccurate,"I originally bought this dress in the store. however, it ended being a size too big. so, i reordered the smaller size online (although it was backordered for a month). when it arrived, i noticed the sleeves were not cinched (like they are in the picture as well as the original dress i had purchased in-store). i thought maybe it had been a fluke so i returned the dress and reordered it again because it is a great dress. the second one just arrived and the sleeves are not cinched as well. this may",2,0,4,General,Dresses,Dresses +1092,40,Undecided,"I have still not decided if i am keeping this dress. i sized up according to the other reviews. i typically wear a 6, so i got an 8. it fit me just fine on top, but i am a 36b, so fairly small. because of the photos, i expected the dress to be a-line and flare out at the hips. it did not, that that's why i am unsure. i'd like it to flare out a little more than it does. it would be more flattering and more comfortable. i love the dress otherwise. i think i may take it to a tailor and see if there",4,1,0,General,Dresses,Dresses +903,49,"So soft, but the pieces don't fit","I ordered the pink, and it was gorgeous. the color and feel were so soft, i would have kept it if it were a blanket. but i did send it back because as a sweater, it just didn't lay right. it has a sort of inside layer that just didn't fit right with the outside sweater layer, so it ended up puffing up on the sides at the waist. that was not flattering. and the hood was too large and floppy looking. too bad.",3,0,0,General Petite,Tops,Fine gauge +1099,33,Please bring this dress back,This dress is so cute! will you be bringing it back retailer?,5,1,4,General,Dresses,Dresses +1098,36,Very flattering!,This dress is very flattering. great unique dress.,5,1,1,General Petite,Dresses,Dresses +1083,37,Very flattering,"This was was a great buy! i got in on sale and the quality is really excellent. the material is thick and stretchy. there is a spanx like liner which is really nice as well for smoothing out the bumps. the dress style and cut is very slimming. i am more a size 14 (at 5'10"") and the 12 fit well. i agree with the other reviewer regarding the twisted shoulder. it doesn't lay on me either like it does on the model, but it doesn't detract from the dress so its a keeper given the other positives.",4,1,2,General Petite,Dresses,Dresses +869,45,,Cute top but does stretch out a bit throughout the day.,4,1,0,General,Tops,Knits +1092,35,"Beautiful design, interesting execution","I saw this in that postcard ""catalog"" and it drew my attention immediately, so when i saw it at the store, i knew i would try it on. +this dress is gorgeous - the lace is sturdy and won't easily be caught on things, the chambray is substantial but light. it's put together well and the slip covers greatly. the material isn't stretchy, but it keeps it shape and i like that. i'm 5'7"" and it hit me right at the knee, so it's a good length if you wanted to wear it with a cardigan to work as a spring",3,1,10,General,Dresses,Dresses +1083,28,Good quality; odd fit,"This just did not sit well on me. while the length was fine and the fabric was a nice thick weave with a flattering amount of stretch, the twist at the shoulder just looked odd. it did not sit flat at all, so it just looked like i had gotten dressed in the dark and had not managed to sort out my sleeves. given the spot-on quality, i would definitely look into other items from this brand, but back this dress went.",3,0,1,General Petite,Dresses,Dresses +903,62,Chic layer,"This hoodie has a lovely, flattering drape and fits true-to-size (m for me), and is light but quite warm. the cottony nylon layers along the front panels and hood add style. it will be warm enough as an outer layer on a slightly brisk day or indoors in cooler weather. i was going to opt for the blue, but in the store, the light gray ~ which is a bit darker and more marled than online (at least on my monitor) ~ looked really lovely and seemed more versatile.",5,1,25,General Petite,Tops,Fine gauge +860,55,Betcha just can't buy one!,"Great turtleneck, very comfortable and not tight around the neck at all. the material is super soft and washes well. i ended up getting all 3 colors. my only regret is that there are only 3 colors! i absolutely love this top. i also like the many complements i've received while wearing them. i am full figured and the fit is very flattering.",5,1,1,General,Tops,Knits +1092,34,Beware if you're fuller in the chest,"I loved the lace detailing all over this dress and the fact it had pockets and was mostly cotton. it just looked so inviting, so i grabbed two sizes to try on (10 & 12) that 99% of the time fit me with retailer clothes. here are my thoughts: +__________ +pros: +- lace detailing is lovely all over. +- everything runs tts except at the bust (see below). +- breathable fabric, comfortable. +_________ +cons: +- i'm a 36c and could not button the top two buttons of this dress in a size 10 (i'm 5'9, hourglass, a",3,1,122,General,Dresses,Dresses +868,53,"Versatile, comfy, we'll made!","A feminine yet mature looking cami. i did not need to wear a bra because the material is thick and stretchy (i am a 34a). it looks great with a pencil skirt as well as chino shorts. feels soft and comfy. can dress it up or down. i took a small and it fit perfectly (l am 5'4"" 120lbs).",5,1,3,General,Tops,Knits +1083,40,Gorgeous dress,"I love the dress, fits as pictured , i'm a size 4 and fits just right. it is a keeper, well made.",5,1,0,General Petite,Dresses,Dresses +1092,42,Pretty dress,"It's a pretty dress, my only concern is the sleeve length. it's an awkward length and makes the dress look a little frumpy. i turned the sleeve up once and it looks so much better!. or, if you are a savvy sewer, you may want to tighten a little in the arms so the sleeve is a bit more fitted. overall quality and feel is very good. i usually fit into a 6, but for this dress i ordered both 6 and 8 and kept the 8. the chest is a bit snug and the button pops open if you don't order the correct size.",4,1,0,General,Dresses,Dresses +1098,46,A longing,"I was eyeing this dress for some time and was undecided about making the purchase. at a reduced price and 40%discount, i had to succumb! i was surprised by the fabric, a bit flimsy. however, the design makes up for the style. i'm anxious to wear at the first opportunity of spring/summer!!!",4,1,0,General,Dresses,Dresses +869,34,Loose comfy shirt,I found it hard to pair with bottoms. fit wasn't very flattering for me.,3,1,0,General,Tops,Knits +903,66,Great hoodie,Very comfortable and looks really good on me. that's very important!,5,1,0,General Petite,Tops,Fine gauge +1092,32,,So disappointed! beautiful dress in the photographs but the cut was incredibly strange. loose and baggy through the top and mid-section but tight around the buttock and thighs.,1,0,0,General,Dresses,Dresses +903,43,This product has great features,It's super soft. it fits great. happy with the purchase.,5,1,0,General Petite,Tops,Fine gauge +409,31,"Cute romper, material... meh","Cute romper, love the pattern but the material seems cheap and flimsy, and is staticky! for the price it should be better quality. also i'm fairly short and hits high on the leg. not sure how anyone taller could make it work.",4,1,6,General,Bottoms,Shorts +903,57,Snap front hoodie,I have many sweaters but i bought this during the sale and it is very soft and comfortable.,4,1,0,General Petite,Tops,Fine gauge +1092,33,Beautiful but slight problem,I'm normally between a 4-6 in retailer dresses. i had to go up to a size 10 just to get the buttons across the chest to close and lay properly without feeling like i would bust out. definitely not for those with any kind of chest.,3,0,6,General,Dresses,Dresses +877,27,,,5,1,0,General,Tops,Knits +183,35,"Beautiful, but narrow","I really like the look of these socks, and have become obsessed we over-the-knee socks for winter this year. they are very tick which is nice for keeping warm and for durability for a long lasting product. my only complaint is that they are very difficult to get over the knee. this can be a great thing, because they certainly do stay put-which is a huge problem with over-the-knee socks. however, by the end of the day i was pretty sure i was going to lose a leg from poor circulation. + +i am still",3,0,15,Initmates,Intimate,Legwear +918,34,Breathtakingly lovely,The pictures don't do this cardi justice. it's so lovely and ladylike. it's seems very well made. please can we have more from this designer??,5,1,0,General Petite,Tops,Fine gauge +877,56,Great spring cardigan,Looking forward to wearing this on chilly spring mornings. ordered in the navy. fits true to size.,5,1,0,General,Tops,Knits +877,35,Living in this!!,"This is probably one of the best retailer purchases i have ever made! this is the most comfy and warm cardigan and is a good thickness for fall and winter. i am 5'9, a size 6/8 and the medium was perfect! buy this now!!",5,1,2,General,Tops,Knits +868,32,Huge but so soft,I'll start this by saying i usually wear a m or l depending on the shirt. i'm 20 weeks pregnant and ordered a medium. it's huge! i was thinking i would be able to wear this for a bit while preggo and then would be able to wear it after baby with no problem. i'm going to order a small because the fabric is so soft and i love the design and color.,4,1,1,General,Tops,Knits +877,41,,Comfy cozy!,4,1,0,General,Tops,Knits +906,35,Very pretty and versatile,"This goes well for cool weather. great with jeans or other casual pants. i got the green, it's more of a teal color but pretty. runs large. i usually run between small and medium, i got the small and it's a tad too loose on me.",5,1,0,General Petite,Tops,Fine gauge +877,35,Quality!!!,"This is the best item i have gotten form retailer. the quality is amazing. soft, covers my butt, classic piece!!!",5,1,10,General,Tops,Knits +906,41,Cute but too big need to exchange,"I have a hard time with sizes here. i literally can wear sm-large depending on the brand, so it's hard to buy online. i was worried this would be too short as i'm 5'9' so i got a large and it's a little too bulky. i will be heading to the store to exchange and hope they have a green one left :)",4,1,0,General Petite,Tops,Fine gauge +877,46,Fantastic sweater,"I ordered the navy/gray version in size xl. it fits me true to size, matching the online photos. the colors matched too. the fabric is so soft. it's warm while being lighter in weight. very comfortable. the collar wasn't bulky either. it's made to last. one of my retailer favorites.",5,1,0,General,Tops,Knits +1050,34,"Cute design, poor quality","The embroidery on the side is cute, and they're nice and airy for hot days. however, the stitching on the legs unraveled after only two washes. also, they're extremely long; i'm 5'7 and had to take them up around 3 inches.",3,0,1,General,Bottoms,Pants +1028,24,,,5,1,0,General Petite,Bottoms,Jeans +877,31,,Great long cardigan! i wear this with a simple tank,5,1,4,General,Tops,Knits +183,51,Lovely socks,"These are just perfect, exactly as pictured if not nicer. very soft and comfy with a big sweater on for winter months.",5,1,3,Initmates,Intimate,Legwear +868,32,Size down 1-2 sizes,"I am normally a m-l (170 lbs, 5'4"", 34dd). i ordered this top in a medium knowing it ran big, and it is huge. seriously, i could wear it as a dress. i like the whole loose and comfy top thing, but this is so massive it looks sloppy. i'm going try and return it for a small. hey, i like that i can wear a small! the green color really is pretty, and it's so soft. just need a much smaller size.",3,1,0,General,Tops,Knits +1082,77,Perfect for hot days,I loved the dress way more in person than online. the fabric is very soft and it is quite beautiful. i wear a large in most retailer tops and a size 8/10 in dresses and the large fit perfect.,4,1,3,General Petite,Dresses,Dresses +1028,61,,"These jeans! i am obsessed. the perfect boyfriend fit with an easy, relaxed feel. i feel instantly cooler when i slip into these. do yourself a favor and buy them!!",5,1,0,General Petite,Bottoms,Jeans +118,52,Cute top,Just not as long as in the picture. it hit me at my hips not good!,1,0,0,Initmates,Intimate,Sleep +834,60,Spring blouse,"This is a lovely spring blouse with a touch of linen. the color and fit is exactly as on the model. there is a sweet touch of trim around the waist in a steel blue. i can pull the top over my head without unbuttoning it. it is tts in my opinion. although the buttons on the back add a nice flair, they are very fine bottons and tend to unbutton on their own. i just tightened the buttonholes with white thread and the problem was fixed so, that's why i gave it 4 stars for design.",5,1,3,General,Tops,Blouses +1082,57,Really wanted to love this dress,"As soon as i saw this dress online i loved it and ordered it! unfortunately it just didn't work for me, i tried it in a small, medium and large. for reference i'm 5'2"", 145lbs, 36d. the dress is really pretty in person, but i looked like a little girl in it. my daughter who is 4'9"", 100lbs, 34a, also tried it on and she too looked like a little girl in it. the material is beautiful along with the detail at the neckline, however the neckline is not open like in the picture, it's more pushed toget",2,0,6,General Petite,Dresses,Dresses +877,63,Love love love!!,"This is a fabulous cardigan/jacket!! i saw it on line and read the great reviews and happened to find one of each color in two different stores!! i bought them both!! i have practically lived in them the last week in rainy, cool weather!! the white one goes with everything, and the blue one in fabulous with jeans and probably other things as well. i have gotten several compliments on them immediately. they are just the right weight--not too heavy but heavy enough and a good sturdy, quality mater",5,1,1,General,Tops,Knits +868,44,"So comfy, great fabric","This is such a comfy top, and the fabric is really great. more supple / flowy than i expected. it does run larger than i expected. i typically wear a large, and it's almost more billowy than i would normally prefer. i would love to try a medium to see the difference, but since it was purchased online, i'm just going with it. this will get lots of wear this season.",5,1,5,General,Tops,Knits +877,37,So great i bought it twice!,"I absolutely adore this cardigan. it's easy, so comfortable, stylish and absolutely flattering on every shape!! what i love about it most is how long it is. i'm 5'8 and the large and xl come well below my bum. it's perfect to wear with leggings and boots when i'm having a relaxing easy day, but i can easily dress it up with denim or a dress underneath! totally versatile! i originally bought this in a large and it fit well. but then we got the xl in the store and i snagged that one too because i",5,1,20,General,Tops,Knits +183,25,Could not get it over my calves,These socks were very thin and the elastic at the top was very rigid. i could not get these socks to go any higher than half-way up my calf. i would not recommend this product. it felt very cheap and not of good quality.,1,0,0,Initmates,Intimate,Legwear +918,48,Old retailer is back!!!,"Beautiful and soft and so well made cropped cardigan by the in house retailer branding. the color is more muted in person but will work with many different skirts and pants including jeans. i have many ideas for this lovely cardigan ! the size medium for my 34 dd chest, 145 lbs and 5 '4 inches is perfect and the sleeves bellow out a bit which gives this cardigan a nice sharp look. i agree with the other reviewer--- more colors and more of type of quality and character please for seasons ahead! lo",5,1,0,General Petite,Tops,Fine gauge +1078,47,"Warm, cozy, timeless, and sexy","It's not often you can find a dress that is warm, cozy, timeless, and sexy at the same time, but this one is it. the material is thick but clings to the body in all the right places. i normally wear an xs or s, and in this i took an xs. sleeves are nice and long. your shoulders are exposed as much as you want them to be, depending on how low you fold over the collar piece. i chose to tack mine down in place, so i'm not always adjusting it. + +i wore this dress with black heeled over-the-knee boots",5,1,5,General,Dresses,Dresses +1078,44,Simple and well structured,"This initially caught my eye online and then i immediately tried it on when our store received it. the dress is simple and well structured with a tight sweater weave that almost has a"" hold u in"" feel. therefore, it fits like a glove on!!",5,1,8,General,Dresses,Dresses +1082,41,,"Love this dress. it's a nice addition to my summer wardrobe. easy to wear. i am between a large and an ex large in dresses. i did order it in a large, it was a perfect fit but did exchange it for an ex large. i wanted it to have little more swing to it.",5,1,3,General Petite,Dresses,Dresses +1078,38,Runs big,Love the dress. i usually wear a small and will be exchanging it for an x-small.,4,1,5,General,Dresses,Dresses +906,33,"Beautiful color, looks great on!","This sweater is wonderful for late summer/early fall or cooler weather over long sleeves. the sleeves taper just below the elbow, which seems slightly odd when first putting it on - as though they should be a tad longer (hence the 4 stars), but i quickly forget about this while wearing the sweater and it does look great!",4,1,0,General Petite,Tops,Fine gauge +183,43,Too narrow,"These socks were so narrow, especially on top, that they pinched my thighs and we're almost painful to wear all day. my thighs are pretty narrow, i'm only five feet tall and my legs and hips are the thinnest part of my body. i understand that they need to be reinforced on top so that they don't slip down but these are definitely made for a person who is unhealthily skinny. ""one size"" is definitely not true. they also snag easily.",2,0,0,Initmates,Intimate,Legwear +1078,47,Awesome sweater dress!,"Lovely body hugging dress. hits just below the knee. great with boots as shown, or with heels. very soft material and the peppery color is really pretty. i can see myself wearing this to work and out at night. this is a winner!",5,1,3,General,Dresses,Dresses +868,35,Very cute!,"This is such a great top! it runs huge though. i normally wear a small but bought the xs. it fits ok. i would prefer the xxs, but i bought it on sale and retailer is sold out. for reference, i am 5`6 and about 138 lbs. very flowy soft fabric, great purchase.",4,1,0,General,Tops,Knits +1078,57,Great casual dress,"I went back and bought this dress after a sales associate told me that it was super cute on but didn't look like much on the hanger. i'm 5'3"" and curvy and the s fit great. it will look great with boots or booties. it's very comfortable and nice quality material.",5,1,3,General,Dresses,Dresses +862,35,Flattering,"I like this top a lot, and have always liked knotted looks around the bust area. i do not have a large chest, and this kind of top always draws attention in all the right places. i was worried the cut would be too low for my comfort level-and it is low but the shirt does not come away from my body in normal movements so i do feel completely comfortable wearing this without a cami underneath. i don't prefer this in black because i think the color detracts from the bunches of fabric created by the",5,1,10,General,Tops,Knits +1078,33,I will live in this!,"Soft, comfy, great fit. this is the perfect cozy item for fall and winter. looks really cute with the sleeves rolled or cuffed slightly. the fabric is patchworked with linen and a terry/jersey material. i'm usually a medium and the medium fit great. slimming lines and does a great job of being swingy/flared, without that tent look.",5,1,3,General,Dresses,Dresses +867,39,Excellent standard for my wardrobe,"I purchased the black tunic. as others have mentioned, this piece goes great with skinny jeans or leggings. when i'm rushing to find something to wear, this is one of my go-to's. nice coverage. not see-through.",5,1,0,General Petite,Tops,Knits +1080,44,,"This dress is stunning in person, though the pictures do it no justice. it was overall a very clingy fit. i'm 5'3 with long legs and it was too short for me so i did not purchase, but would recommend it for those with short legs.",4,1,1,General,Dresses,Dresses +1078,42,Soft material,Great dress. looking forward to wearing it with tights. fits great.,4,1,1,General,Dresses,Dresses +867,55,Awesome!,"Good quality, cute and great color as pictured. perfect for leggings or tight ankle pants.",5,1,8,General Petite,Tops,Knits +867,44,"Good tunic, great marigold color","Drapes very nicely and runs true to size. easy to wear alone or layer a jacket/cardigan over. i purchased this on sale, and it was a good buy. i am 5'8"" and purchased the size m, as i am a pretty true size 6.",5,1,1,General Petite,Tops,Knits +862,28,Simple and chic,"I was afraid the twist at the front would be too bulky, but it adds a nice extra touch to an otherwise simple shirt. i got it in the blue and the color is beautiful. a basic piece with a little bit more; very happy",5,1,0,General,Tops,Knits +1035,47,Disappointed,"Although i bought 2 sizes down from my regular size, they were still big and, made my derriere look flat. i would have kept them as weekend kick-around jeans, but the flat behind just made them a must return.",3,0,0,General Petite,Bottoms,Jeans +1035,51,Love these jeans!,I am so glad i did not miss out on these jeans. i am new to pilcro and am finding they fit me so well!,5,1,0,General Petite,Bottoms,Jeans +867,69,Love,Got this in the gold and it's so much better than i imagined. runs longer on my 5'4 frame than on model but i love this extra long look with white fitted pants and heels. total classic easy elegance and comfortable too.,5,1,6,General Petite,Tops,Knits +862,45,Lovely,"I wasn't sure how the knotted front would look on me, but it lays perfectly. very comfortable, well-designed, flattering top in lovely rich colors. i'm normally a small-medium in retailer tops, but i got the large as it does run small and i don't like things too clingy. so best to try on in store rather than buy online. nice simple statement piece!",5,1,14,General,Tops,Knits +862,56,Love this twist-front tee,"Love the petroleum blue +unique twist design +love the sleeve length +perfect for work -- neckline not too low +great by itself or with a bib necklace and black jacket +absolute winner",5,1,0,General,Tops,Knits +1080,39,Overall loved but,"As others stated, it was a tad bizarre to have a mock neck on the spring dress, however, i would wear this in the fall with boots and a nice moto jacket. another ""but"" is i wasn't sure about the color. i am very pale and the pale color is pretty much my skin color... however, the blue flowers and black lace make up for it as far as colors, and everyone liked it on me. lastly, cut: wow, this was just really nice on, very flattering,. i usually try on regular size in store and order petite, but th",5,1,1,General,Dresses,Dresses +862,39,Nice blue,"I finally tried this on now that it went on sale, and it was surprisingly flattereing. love the blue color, and i assume the purple was equally nice. fit is true to size as in i tried on the regular xs and it was great, long but ok for me,",5,1,2,General,Tops,Knits +862,27,Great shirt,"Great shirt that runs true to size. i got the turqouise color which is very pretty. it cuts lower, but doesn't show much cleavage.",5,1,0,General,Tops,Knits +1078,43,Much better in person,"This is such a fun dress. the linen and cotton mixture is very unique and comfortable. for reference, i am 5'3"" and about 110 pounds. the regular xs hits me exactly the way it is shown in the photo. the color is a true oatmeal which is so nice for fall and even though i am fair with strawberry blonde hair, it doesn't wash me out. the sleeves are a little long but i rolled them once and it is perfect. i love this dress and it will look great with booties or boots for the fall.",5,1,5,General,Dresses,Dresses +862,38,Love it!,"I love the way this looks on me! definitely flattering on curvy/full-figured girls. i am a 36-38c and bought an xl - i don't like things that are too tight or that cling to the wrong areas. if they had xl in other sizes, i would buy it in every color. can be dressed up or down. i'm very happy with this purchase.",5,1,0,General,Tops,Knits +862,60,,Beautiful top. works wonderful on hourglass figures.,5,1,9,General,Tops,Knits +862,39,,"Great top for day to night. fine for work (i'd think large breasted girls may find it too gaping for work as mentioned, but b cup and below doesn't gape so very work appropriate.)",5,1,0,General,Tops,Knits +862,33,Beautiful top,"Upon opening this top, i thought for sure it was going to be too s mall, but it stretches nicely and is gorgeous when on. it is a little thin, and you have to be careful that it's not too tight or you can see skin through the knots, but i love this shirt. i got the xs, which is my usual size. i could probably have used the s, but didn't want to pay for shipping to exchange it as i don't have a store anywhere near me and the xs was fine.",5,1,0,General,Tops,Knits +867,56,"Simple, light","This is a simple, light-weight tunic top. the construction is fine. overall, i'm happy to see a basic executed well.",5,1,10,General Petite,Tops,Knits +1025,29,Finally olive skinny jeans!,"These jeans are exactly what i was looking for. love the rich olive color. these are definitely an olive green and not a brown color, which i was very happy about. fit is great, i am 5'7"" 150 athletic hippy build and a size 29 fits great. they are the perfect ankle length jean. very soft, and just the right amount of stretch.",5,1,1,General,Bottoms,Jeans +1110,46,Beautiful tent,"I was so excited to find this dress in the store! i immediately headed for the dressing room to try this beauty on....what a disappointment. the fabric is stunning, but the fit is extremely voluminous . i am normally a small to medium, so i grabbed a small......the only way to describe this dress is tentlike! it was huge from the waist down. i don't think i could size to an xs because i am a 34d and the top half of the dress fit perfect! i was sad to leave the store without this dress.",3,0,0,General Petite,Dresses,Dresses +862,28,Date night!,"I'm always weary of v necks but this shirt is great. the fit is true to size and while it is a v neck, it's not such a deep plunge that you need a cami underneath. great material too and perfect for dressing up a bit. i bought the blue color and love it!",5,1,0,General,Tops,Knits +1177,32,Nice material - only for smaller busts,"Overall: soft material, cute pattern - but definitely a return as just didn't fit right. + +fit: i am a six in most tops and based on the size chart - i ordered the size small. it fit comfortably around my bust - but the cup placement was basically at the center of my chest - so that my breasts were squished uncomfortably and unflattering in the middle. i've lost a bit of weight recently - so i'm more of a 36a, than 36b these days - but this wouldn't work for me or i imagine anyone with a broad",3,1,2,Initmates,Intimate,Swim +860,46,Beautiful embellishment and color,"The color and embellishment of this top are beautiful. this would look great on anyone super lean, otherwise you just look really wide as there is no frame in the torso of this top at all. the back picture shows it well. i am 5'9, 142 lbs and i ordered the small and medium and both were huge! with regrets going back.",3,0,0,General,Tops,Knits +862,85,One of a kind top,"Deletta has done it again, designed a top that is unique, flattering, and comfortable. the blue is an intense peacock blue. the only draw back about this top (and with other deletta tops) is that they leave some of the fabric with raw unfinished edges. for this top it is located at the hole the twist creates. it's hidden but i worry about it fraying after a few washes. not sure why they couldn't continue the zigzagging at that opening. perhaps it wasn't cost effective to sew five more inches of",4,1,1,General,Tops,Knits +862,22,Great flattering top,"This is my third top from this designer, and normally i wear a small, but i tried this on in the store and the medium fit much better on me. i am not partial to the black as the knot design was lost, but the sapphire is wonderful. works great with slacks or more casual clothes. i liked the sleeve length as well. i'm not too busty, but i think that other reviews comments of the knot being see through could be a problem.",5,1,0,General,Tops,Knits +1080,36,Not worth your time and money,"If you are thinking about purchasing this dress without trying on in person, i bet you aren't going to be happy with it. for a phisique that is 5' 3"" and 115lbs, this dress is not too short. however, the back key hole design is just not flattering. i felt like clothes in the back shoulder area is not fitted well and the zip up closure is not all the way zipped up even though it was so.",2,0,0,General,Dresses,Dresses +1080,21,Very nice,"This dress is beautiful. it is even prettier in person than in pictures... i was pleasantly surprised when it came in the mail! i am 5'2, 125 lbs and went with a 4p, and it fit perfectly. (i typically do not like things to be extremely clingy). this could easily be dressed up or down. personally, i wore it to a wedding, and received many compliments on its uniqueness.",5,1,0,General,Dresses,Dresses +1078,68,Dresses differ,"I tried this on in a different retailer a couple of weeks ago... ....tried on a different one last night..same size and it looked baggy, sleeves way too long, etc. let me add that i am usually a xs/s petite but some regular extra smalls will work also. this was a xs reg. even the sa could see that one looked like it fit smaller ( i showed her the photo in my phone) while this one swallowed me. bottom line, you will need to try this one on as the sizes seem to vary.",3,1,0,General,Dresses,Dresses +1080,47,Quietly sexy dress,"I love this dress. be warned that even at 5'4"" it is right on the edge of the shortest length that i can get away with wearing. i probably will not wear it to church but for a special event, dinner, or the theater it will be an eye catching statement piece without being over the top. it has a quiet appeal. both layers of fabric are thin but that helps it to conform to my figure without hugging it. it softly drapes showing an hourglass while being extremely comfortable. i think some reviewers int",5,1,1,General,Dresses,Dresses +861,49,Great t!!!,I love this t shirt and have not purchased it in all 3 colors. very soft and very flattering!!! i like the longer length as well as the pretty neckline.,5,1,6,General,Tops,Knits +1022,41,,Love the wash and fit of this jean. the perfect summer go to for me.,5,1,1,General,Bottoms,Jeans +862,34,A lovely basic top,"I'm between sizes in deletta (m to l, 5'4"", 34g). +i ended up purchasing the large in both black and sapphire. +it does fit a bit tight in the arms and torso, but it's a nice basic top for work, and does well with changing seasons.",4,1,0,General,Tops,Knits +862,47,Must buy!,"This top is spectacular. intense and color soaked. i got bleu. super stretchy and comfy. the twisty part hugs and emphasizes your curves...even size 34a like me. the v neck is not too wide and low cut. it is narrower, close fitting and attractive. the seam in the middle thorax is a tad strange but it needs to exist due to the twist design. overall this top is cute, long and let's say men and women of all ages will enjoy it. it will make you beautiful on the outside and inside. it is not my usual",5,1,0,General,Tops,Knits +862,27,Adorable classic top,"Very cute, easy to wear, and looks professional! great for work or a weekend. love this top!",5,1,0,General,Tops,Knits +1078,50,Looks like reconstructed old sweatshirts!,"I truly cannot understand the great reviews on this dress! i purchased in both a sp and a mp. i am 5'2"" 120#. the mp fit perfectly. i definitely wouldn't keep it though because it looks like someone sewed a bunch of old sweatshirts together. it's not super soft, coarse on the inside, and feels old. the back is longer than the front, it just looks like something my daughter would make in sewing class out of scraps. even with leggings and great boots, it looks worn.",1,0,0,General,Dresses,Dresses +1080,27,Pretty but not worth the price tag,"Overall, it's a beautiful dress, and i really wanted it to work. but the material feels cheap (at least not what you'd expect for the price), and as other reviewers have mentioned, it's just a tad too short. for reference, i'm 5'5, 125 lbs and the 2 fit well, but hung well above my knees. there's no way i could wear this without unintentionally flashing a few people. sadly this dress will be returned.",3,0,0,General,Dresses,Dresses +862,42,"Great color, but...","The fabric is nice and the color is a rich jewel-tone. i have a couple of very similar shirts from a similar store that are several years old. those fit a bit more loss sly around the stomach (not baggy, just body-skimming) which made them more flattering for more body types. this shirt works if you have a little padding because of the gathered folds, but it probably wouldn't be great for someone carrying a lot of extra weight around their middle. the knot also has a tendency to twist exposing t",4,1,0,General,Tops,Knits +1080,57,Pretty and different!,"Very pretty dress and a bit different than what we see in the shops! +i found the material to be very nice, despite one of the reviewers comments. +it is a sheath that is not skin tight but shows curves - great for dancing. +also i did not find the neck too tight - fits fine. +tts as normally a petite 6 which is a wonderful fit and sometimes a petite 4 or 8 depending on the cut. the 8 was too large. +all in all a feminine uncommon dress. +looking forward to wearing it to one of the 6 weddings th",5,1,1,General,Dresses,Dresses +862,30,,,5,1,0,General,Tops,Knits +1080,36,,"This dress is beautiful. this is a 0 and tts. it was not clingy or tight at all (5'4"" 115lbs). it is fully lined, and i have short legs, so it was not too short for me. if you have an event you could wear this to this summer, i highly recommend.",5,1,12,General,Dresses,Dresses +862,34,,"A little thin, but overall very cute. i like it with waist high skirts.",4,1,0,General,Tops,Knits +861,43,Thin and blah,"This shirt appears nice in the pictures. it appears to have a bit of style. wrong. the shirt is one of the thinnest fabrics i've ever purchased. i live in warmer climate and its nice to have different cotton shirts with some style. this shirt has no style, and i thought it would. i have purchased this brand before, and thought this fabric would be similar. the other shirts were way nicer, softer, and had a different level of construction. i wanted to wear this shirt out and when i put it on it w",1,0,6,General,Tops,Knits +1022,31,"Runs small, too much distressing","I have a few pairs of the stevie ankle, so i thought i try these. they have very little stretch and feel tight in the waist. the distressing near the front pockets is really apparent...like white stripes. they make the jean look overall cheap. not worth $198, in my opinion.",3,0,4,General,Bottoms,Jeans +862,53,So comfortable!,"I love this top. it is perfect fit. i am 5'3 102lbs, 32 dd. it conforms to your figure.",5,1,2,General,Tops,Knits +867,29,Elevated basic,"I bought this tank in gold, and the color is a beautiful ochre. i love the length and the side slits, which elevates the tunic from a simple basic. the material is good quality and very comfortable. i'm hoping to get a lot of wear out of this purchase.",5,1,0,General Petite,Tops,Knits +1177,30,Fun swim top,"I ordered this in an xs and it fits well. however, if you have a bigger bust this top may be a problem. i wear a b cup and it fits me well.",5,1,0,Initmates,Intimate,Swim +862,48,,"I love this fabric, it is comfortable and forgiving. as i prefer jewel tone colors the sapphire is great. i wish it would be offered in red, like the cowl neck long sleeve tee. with that said, i thought the sleeve length on this might be odd, and while i wish it were a few inches longer (3/4 sleeved). the only reason i haven't given it five stars is that i haven't laundered it enough to verify the quality.",4,1,0,General,Tops,Knits +1078,52,Cute and eclectic,"I love this dress. i believe the picture on-line doesn't show the unique pattern and design. it does have an interesting design. add a long vest, statement necklace, and boots - you will be quite fashionable.",5,1,3,General,Dresses,Dresses +862,36,Twisted and terrific for all cup sizes,"Love this top! i was worried it would plunge too deep, especially because i'm quite flat chested - but it is perfect. i think it would look gorgeous on a volumptuous woman too. that's the beauty of it. and the color is my absolute favorite right now ... :)",5,1,0,General,Tops,Knits +1110,37,Comfy and beautiful,"I bought this impulsively to wear to a wedding, and i'm so glad i did. it is so soft and comfy and gorgeous--and has pockets. it's loose but really really flattering somehow. i would typically get a size 12 in a fitted dress but the medium was perfect for me.",5,1,0,General Petite,Dresses,Dresses +862,51,,"Lovely color and fits nicely. only problem on mine, the front stitches were not properly sewn.",4,1,0,General,Tops,Knits +1080,49,,Made for a straight figure - no curves. awkward bra situation as it has to be strapless because of the keyhole.,4,1,1,General,Dresses,Dresses +1110,64,Lovely material and details,I found this in my local atl store that carries petites before seeing it on-line. the materials is lovely and silky with a full lining. the top lace detailing is a nice touch and will make the dress stand out under jackets or sweaters for cool weather. this is great with any shoe type. very versatile year round piece alone or under layers. should be good for all body types.,5,1,0,General Petite,Dresses,Dresses +862,28,,,5,1,0,General,Tops,Knits +151,49,Lovely quality,"A very pretty pair of over-the-knee socks. i purchased the dark grey color, which has a metallic silver thread running through it. a nice subtle but glitzy touch. the knitted pattern is intricate and nicely done. i'm 5' 4"" and they do come up well above the knee. if you are walking quite a bit, they don't stay above the knee, but they do seem to stay just below the knee. because the yarn is fairly thin they don't look bunchy even if they come down a bit. i have very sensitive skin, and metallics",4,1,2,Initmates,Intimate,Legwear +766,66,Surprise,I'd hoped these would be cozy and warm. the fabric is thin and slinky. it grabs and emphasizes every bump and roll. couldn't wait to get them off. just horrible. and that price is very steep. can't recommend.,3,0,0,Initmates,Intimate,Lounge +860,36,,"I really liked this top. ordered the blue and am considering getting the pink color. 5'4, 135lbs, ordered xxs and it fit great. has nice drape around hips and not too snug.",5,1,0,General,Tops,Knits +860,37,Beautiful material and cut,I love this shirt. i would recommend an undershirt.,5,1,0,General,Tops,Knits +1027,22,,"These are the most flattering pair of white jeans i have ever found!! people stop me when i wear them and ask me where i purchased them and the name of the brand! flattering, comfortable and perfect for a casual weekend or going out! highly recommend!",5,1,1,General,Bottoms,Jeans +874,39,,I love the idea of this top. it's made really well. the only issue is its a bit shorter than i thought and the neckline rubs on my neck.,4,1,2,General,Tops,Knits +1077,46,Love this dress,Give me a dress with pockets any day! i loved how i can wear this fall - spring. so cute. so comfortable. can dress it up or down. have 2 events that i'm going to wear it too!,5,1,1,General Petite,Dresses,Dresses +1077,51,Love!!,I love this dress! i originally ordered it in a small but returned it for an extra small. it fits perfectly - love the details. so classic and comfortable !,5,1,0,General Petite,Dresses,Dresses +927,39,Love,"This sweater just arrived in my mailbox and it's already my favorite piece of clothing. it is the softest thing i own... and it feels so luxe. as the reviewer below noted: yes, it has pockets. they are slit-style pockets (probably why you can't see them in the photo) and the opening is trimmed with the same cable detail featured on the front of the sweater. + +i'm also a professor... but i still get mistaken for a grad student so i don't mind appearing ""professorial."" +i'll probably wear this to th",5,1,1,General,Tops,Sweaters +1077,53,Gorgeous embroidery,"I purchased this dress in my regular size small as soon as i saw it pop up on-line and found it to be tts (34d-27-35), it hits just to my knee (i'm 5'4"") and it actually reminds me of the way maeve's devery dress looks and fits which is really, really nice. i'm finding this dress by floreat to also be quite slimming and the embroidery and colors set against the black is just absolutely gorgeous! the material is super soft, the v-neck isn't too low and i love the pockets so i'm very happy with my",5,1,22,General Petite,Dresses,Dresses +1077,62,Exactly as shown,"Tried this in store today and id say it is exactly as pictured (length is similar on me at 5'7"", colors as shown, cut is loose but not overly sacklike). my normal size s fit loosely, but not in an unflattering way. sizing down might have been too narrow in the shoulders. the embroidery seemed to be good quality, but the fabric itself was on the thinner side with no lining. i would have liked to see a liner at this price (and probably would have bought), but i think i'll wait for a promo or sale",4,1,41,General Petite,Dresses,Dresses +945,54,Salt and pepper,"First of all i need to state that i am 5,1"". i usually get the petite size small but they were out so i took a risk and ordered the regular small which i can sometimes get away with. upon opening the parcel, it seemed bigger than i expected. the knit is very chunky (not a bad thing) but thicker than i expected. the fit was way too large for me. the shoulders were bulky and because it is a cocoon shaped cardigan, there was just too much excess fabric draping around my petite frame. i think if i c",3,0,0,General,Tops,Sweaters +1077,39,Short and sweet,"I originally ordered the regular xxs (loose fit = xxs nowadays) and the length was right above the knee... it looked great and classy/classic but i felt like perhaps the chest height would be better in petite. so i ordered the xxs p as well... decision time: + +i decided on petite because the overall dress fit my body better, though it is now shorter (a couple inches above the knee0. still looks classy with a boot, but flirtier. embroidery is beautiful, as others mentioned, fabric is comfortable",5,1,2,General Petite,Dresses,Dresses +1077,61,Comfy and flattering,"Bought this to wear to desert trip this weekend when we see the stones, dylan, mccartney, who, roger walters and neil young. think its the perfect outfit as it definitely has an 80's feel, now if only i had a pair of brown or teal boots, it would be perfect. i'll keep hunting~",5,1,1,General Petite,Dresses,Dresses +1077,35,"Pretty, dainty, and huge","This dress is very pretty and feminine but was unfortunatly much too large for me. i ordered my regular xs and it was swimming on me. i also found the embroidery to be imperfect in several places (unraveling) and the placement of the embroidered designs were uneven at the bottom of the dress, which threw off the flow. the largest medallion was off center in the front of the dress and gave it a crooked effect. the material is nice and the pockets are a plus but i returned it.",3,1,0,General Petite,Dresses,Dresses +1099,53,Love this dress,"I love this dress so much - the perfect summer dress. comfortable, easy to travel with and i get compliments on it all the time!",5,1,0,General Petite,Dresses,Dresses +1077,30,Wonderful dress!,"I love this dress. i think the cut, fabric and embroidery are all flattering. this dress is comfortable and can be dressed up or down. i am 5'1 and weigh anywhere from 108-113 lbs. i at first tried on the xxs petite and liked the look but found it to be tight in the arm area. they didn't have an xs petite so i tried on the s petite to see if there was any major difference. there totally was! so i ordered the xs petite online and can't wait to get it!!",5,1,2,General Petite,Dresses,Dresses +1030,44,,"Oh wow no. +as the previous reviewer said, much lighter than the picture! +rise and inseam are as described but with the light denim they combined to make a bad look for this 40something. maybe for a younger audience who like the 90s retro vibe? +the fit is true to size, i tried the 27 and it was a nice snug fit around the bum (waist 28/29, hips 36, usually a 27 or 28 in jeans, sometimes even a 29 if they're super skinny).",3,0,1,General,Bottoms,Jeans +1099,40,Perfect little dress,"Love this dress! i'm 5'7"", 135 lbs and typically wear either a small or x-small in maeve. since this one has lots of extra fabric, i ordered it in an xs and xxs. they were basically the same everywhere except the xxs had a much shorter weave pattern at the top, so i ended up keeping the xs. it's great dress, lots of room and swings nicely.",5,1,5,General Petite,Dresses,Dresses +1035,43,Super cute!,"I'm obsessed with the perfect"" leather look "" coated jeans.. i have another high end denim brand in black.. i may like these better.. they fit perfect maybe a tad big? +high enough so potential bottoms shows when bending .. perfect stretch .. +not to leathery looking just enough. the ties at ankle are different ... +i would love these in black! but this color is awesome, and this cut very flattering . for reference i'm a 16 bottom, smaller waste bigger booty .. size 33 fit perfect ..",5,1,0,General Petite,Bottoms,Jeans +863,63,A whole closet of this shirt,"All the positive reviews are right - the shirt is great! something not entirely obvious from the online photos is that there is a slit on both sides of the shirt. makes it even more comfortable and flattering. i wasn't sure how i was going to style this for the winter before i received it but as soon as i put it on i had plenty of ideas. it looks particularly great with a chunky scarf, leggings, and boots. it looked great with a close fitting turtleneck underneath. it really can be dressed up or",5,1,0,General,Tops,Knits +1077,67,Perfect for travel,"I saw this dress in my local retailer store, and am not sure why i did not try it on then, but later at home it began to haunt me. i loved the colored embroidery against the black. my husband and i will be traveling to europe later this fall and i wanted to take a dress with me that wouldn't take up too much room, and be suitable for times when i wanted to dress-up a little. online i saw that it was available in the petite, and with the reviews warning that it ran large i opted for a medium petite",5,1,2,General Petite,Dresses,Dresses +927,46,Practical professor,"I ordered this in two sizes and have only received one so far, but i think i really like it. that said, the one i got weirdly has pockets not shown in the images, which makes it seems more professorial than i'd prefer, partly because i am a professor and don't want to dress like one if i can help it. that said, i really need a floppy, easy cardigan, and this might well be it.",4,1,2,General,Tops,Sweaters +927,82,Love this sweater,I have been looking for a cuddly yet nice looking sweater like this one for a long time. i love anther as they always deliver what i am looking for.,5,1,0,General,Tops,Sweaters +927,59,Inspired,"I am inspired to sit in front of a roaring fire, sipping tea, with the dogs at my feet, in this sweater. or roaming the moors. the cashmere is thick, luxurious, and soft. there is a cable detail that runs along the large wooden buttons and also the pockets, (decent sized pockets to stash a hanky, while roaming the moors). the fit is on the large size and boxy. if i had to nit pick, i would say that the length could be a tad longer. the sweater does not have complete derriã¨re coverage. i am 5?5?",4,1,3,General,Tops,Sweaters +1030,44,Terrible cut,These look nothing like the picture! they are super high-waisted & longer than they look in this picture. i felt as if i was wearing a pair of jeans from the 90's that just fit terribly. i thought they were going to be a pair of cropped wide legs & they are far from it. the color was also much lighter than shown in picture. super unflattering & just not for me. they're going back...,2,1,4,General,Bottoms,Jeans +874,76,Fits great!,"This cute top fits great. it's got a nice fit on arms, shoulders, and bust, then flares out a bit to give ease to the tummy area. the back has a cute button trim and solid blue inset. cute top!",5,1,2,General,Tops,Knits +874,56,,"This top is adorable, but is shorter than the 27 inches they say. i bought an xxs and mine measures 22 inches in the front and 19 inches in the back. still cute if u don't mind shorter tops..",4,1,7,General,Tops,Knits +1094,26,Wish i could have bought it in every color!,I bought this dress on sale and it is perfect! i wish that i would've invested sooner and picked it up in a number of different colors. the cut is amazing and the cutout on the back is sexy without exposing too much skin.,5,1,0,General,Dresses,Dresses +1077,44,"Magically lovely, but examine before you buy","I ordered this on line first, but i really recommend getting to a store to look at them closely! due to the fact that the first dress, the embroidered lines were not sewn level on the bottom horizontal stripe areas, and the fact that they didn't meet made me feel it wasn't worth anywhere near the price! i feel you can sort of see this in the stock photo, although it may be just the way it's hanging. also, many of the center areas of the embroidered flowers and designs have a loose, unfinished th",4,1,2,General Petite,Dresses,Dresses +1077,46,Weird fit,Bought this based off the reviews here but this was a miss for me. the colors weren't as vibrant as pictured and the waist in this dress is huge. not flattering and it went back. i buy an retailer dress every week so i just exchanged this one for another one i loved. not hard to do at all,2,0,0,General Petite,Dresses,Dresses +1077,51,Gorgeous,"The embroidery grabbed my attention, but i loved the way it felt once i tried it on. the fit is loose (i'm between a small and medium and the small was a bit loose), but still flattering. i really love everything about it, even the lighter weight fabric. i live in the south were fall and winter tend to be on the warmer side. the v-neck is just perfect. i can see wearing this to work as well as out - one of the most versatile dresses i've found lately!",5,1,6,General Petite,Dresses,Dresses +1099,51,Love!,"I just love this dress - so comfortable and flattering. maeve has had some great dresses this summer, but this one may be my favorite. this one could easily been worn in to fall with a sweater or jacket.",5,1,0,General Petite,Dresses,Dresses +1095,62,,"Beautiful dress that is well constructed. the fabric is substantial and feels expensive.i am 5'4"" and weigh 134, +36 bust 29 waist and ordered the m/l. i usually wear a 6-8 in dresses, so i worried that it would be too big but it fit perfectly. i am very happy with my purchase.",5,1,0,General Petite,Dresses,Dresses +1099,38,Beautiful,"This dress is gorgeous. it swings beautifully, it's soft, it's incredibly flattering! i would say it runs big. i ordered an xxs petite, normally i would wear xs petite, and it fits great. for reference, i'm 5'1"" and a 32dd. finally a loose fitting dress that doesn't make me look pregnant!",5,1,0,General Petite,Dresses,Dresses +1077,39,,"Adore the bright embroidery against the black background! mine was well done and no loose threads. although this is all synthetic fabric (which i hate paying for!) but i couldn't help myself once i tried it on. it's very roomy and if you're slender, size down unless you prefer the breezy swingy look like i do. this is a three season dress that will do well with layers and without. i picked regular hem instead of petite and it actually looks slimmer on me than the shorter version.",5,1,0,General Petite,Dresses,Dresses +1077,31,Better in person,"I'm glad i saw this item in stores, otherwise i would have passed it right by online. the embroidery is intricately detailed and sharp, and the fabric quality is great. i had to size down for this dress. it's comfortable, and can be dressed up or down. its a great versatile piece!",5,1,2,General Petite,Dresses,Dresses +1077,27,Great purchase!,The embroidery on this dress is beautiful in person. perfect dress for fall.,5,1,1,General Petite,Dresses,Dresses +1077,41,This is very pretty one!,The only strange thing is the size. i used to wear size s (117bl) but this time the small is way too big. i still keep it and put a belt on. it is a very very pretty dress. i used to buy sale from antheropologie. but can not wait this time. i am very impressed by the design. can not praise more!,5,1,0,General Petite,Dresses,Dresses +820,54,Really versatile!,"I just love this top, it has a flattering cut, fun summer colors! i purchased the white and paired it with the plata chevron skirt. both pieces go with everything and can be dressed up or down. perfect for traveling. only tricky part for me was reaching all the buttons in the back. highly recommend!! stock more pieces like this retailer!",5,1,1,General Petite,Tops,Blouses +878,69,So cute and great fit,"I am so pleased with this top! it is slightly fitted - i am 5'3"", 110 lbs, - and have trouble finding tops that are flattering but not too form fitting. also it is 100% cotton, which is a definite plus. as of now it is my go-to top - looks great with jeans or leggings.",5,1,5,General,Tops,Knits +1100,65,Great dress,"Love the rifle print on this dress. the fit is relaxed and very comfortable and can be adjusted with the tie in the back. the fabric is a nice weight, great for year-round wear.",4,1,1,General Petite,Dresses,Dresses +715,44,,I don't normally like how i look in rompers but this one was so cute i had to try. i was pleasantly surprised that it fit great and was comfortable too!,5,1,0,Initmates,Intimate,Lounge +965,27,Cute but poor quality,"This sweater/jacket looks just like the photo in real life, but the inside is so scratchy. i physically recoiled when trying it on as the interior of the sleeves feels like sandpaper. unlined and uncomfortable. no thank you! + +should you choose to proceed, i found the fit tts. i'm 5'8, wear an 8/10 and the medium worked for me.",2,0,2,General,Jackets,Jackets +1086,31,Magica,"I bought this dress to wear to a fall wedding and couldn't be happier! i'm very curvy (34dd-28-43) and the medium fit like a glove. the fabric has a great 70's vibe while the fit is extremely classic. i have never felt more beautiful and received many compliments. i am 5'6"" and it hit just to the top of my feet. i highly recommend.",5,1,1,General,Dresses,Dresses +1022,38,,,4,1,0,General Petite,Bottoms,Jeans +715,55,,"I love this romper! i wear it as lounge wear around the house and to bed. it shows a bit more skin than i'd be comfortable showing in public but perfect for around the house. i'm usually a medium but it hung on me weird so i sized down and it's absolutely perfect! love the color, the fabric and how it falls just right and the ultra softness is heavenly.",5,1,1,Initmates,Intimate,Lounge +1086,26,Top notch comfortable dress,"I bought this dress to wear at a wedding. i am short, so i would have really loved the petite, but they were sold out both online and in store when i bought it. i'm making do with high heels. the sheen is gorgeous and the dress is very comfortable over all. i'd also add that i'm pretty curvy and the cut fits my body perfectly.",5,1,1,General,Dresses,Dresses +820,25,,"I love this top, it's not too fitted and falls in the right part of my waist giving me good movement. i wear it to work and everyone compliments how the back is longer the top doesn't ride up your back!",5,1,1,General Petite,Tops,Blouses +820,39,Second time's the cahrm,"I tried this one twice, in the same day, the first time, i didn't like it, the stylist in the dressing room at the time dind't etiher, but then my favorite stylist finally showed up (:-) ) and i tried it on again, but at the time, had changed pants... made all the difference. you really need hte right pants for htis, but it is gorgeous. + +i bought hte black color online, i liked it better, the white has stell colored polka dots, so if you want more of a spring color, also good for you. + +style: ca",5,1,15,General Petite,Tops,Blouses +820,35,Beyond cute,"This top is one of my favorites, i can't get over how much i love the design. the dots are adorable and i received a ton of compliments. the back of the top quite a bit longer, and it looks great. my only complaint is that it runs a bit small on the top. even though the shirt is perfectly sized on me, i bent over to slip on my shoe and one of the buttons popped off after less than a minute of wearing it.",4,1,1,General Petite,Tops,Blouses +1086,46,Hot mess on me,"Maybe it's my curves or the way i'm only 5'4"" but this was a hot mess on me! it is soooo long and cut to low for my 36d chest. it is slim and the cut usually is flattering but somehow this dress was anything but! it is really shiny and the material is heavier than anticipated for warm weather. if you are super tall and skinny with no boobs, go for it! had to send back!",2,0,14,General,Dresses,Dresses +894,41,Disapppointed,"Was excited about this sweater but it really didn't wow me when i put it on. the v-neck is quite low and the sweater is a bit short. loved the ideas of the fringe but in the end, it went back.",3,0,1,General,Tops,Fine gauge +820,31,Not sure what i wore before i owned this shirt!,"I loved this shirt from the moment i saw it on the table. i am always too tall for a peplum blouse because they hit my rib cage instead of my waist, but this shirt doesn't have that problem! i have the white one, the polka dots are a really pretty corn flower blue color. i usually wear an 8 in maeve blouses, but this one i took a 6. there is definately no give though. i have a very flat chest and only wear a lacy bralette under this shirt because there is no room for anything else. i am sad thou",5,1,1,General Petite,Tops,Blouses +1086,46,Gorgeous colors!,This dress is beautiful on so many levels. the colors and print are amazing and the maxi sweater dress idea is unique. it fits true to size and is very flattering. my only issue is the amount of shine that it has from the metallic threads running through it. i would have preferred less shine which would make the dress more versatile.,4,1,0,General,Dresses,Dresses +820,25,,"I wanted to love this shirt so much! i got this as a gift for christmas in the black. the first time i wore the shirt 3 of the buttons on the back fell off. keep in mind that they are not decorative and they held the shirt together. needless to say i was not so pleased to have my shirt fly open from the back. retailer and their amazing customer service took this shirt back no problem, but i wanted to give the fair warning!",2,0,3,General Petite,Tops,Blouses +715,27,Great fit,This product fit perfectly. the color is as pictured or slightly bigger. perfect for a day or night out,5,1,0,Initmates,Intimate,Lounge +820,36,Pretty design but not the best quality,"I tried this on at the store, and though it was pretty, i was a little underwhelmed. it fit but had no give so it might not have been too comfortable for movement unless sized up. the embroidered polka dots were a lovely idea, but the quality was not great - they were already fraying and pretty irregular looking. the idea of the top was better than the execution.",3,1,0,General Petite,Tops,Blouses +820,55,,"Picked this up in the white, and it's adorable. i'm a 2 in maeve blouses, usually just to fit my bust. i picked it up in the 2 because that's all my store had, and it fits. it's definitely tight across the bust, but not constricting. the shirt has no give, but it's still comfy, and to be expected from 100% cotton. the peplum is very dramatic high-low, and poofs out in the back also a little dramatically but gosh that's what makes it so gorgeous! great blouse, so precious.",5,1,8,General Petite,Tops,Blouses +1100,47,A little too boxy vs swing,"Love the design and style of this dress when i saw it online, however, it falls a little short once in person. it was a bit boxier than i wanted and the lines didn't make it appear as a swing dress, highlighting your figure. + +i wish this could have worked, however, it felt a little too unshapely.",3,0,0,General Petite,Dresses,Dresses +1086,31,Looked perfect online - sad i had to return,"I was looking for a dress for playing cello at my friend's wedding. the colors looked perfect, the cut was great, etc. very disappointed to find out how sparkly and scratchy the dress was in person, and sad that the slit came right to my knee, which is a really weird height. sadly returning - might purchase again if it goes on sale and i can't find anything better before the wedding :(",2,0,1,General,Dresses,Dresses +1086,36,Great dress but long,"Very cool dress. very true to size--fits just right in the top. the fabric is just right--not too heavy but opaque enough to cover everything that needs covering. only issue is that it is loooong. looking at the other reviews i think there may be some variation in the length of each individual dress. i am 5' 9"" and this dress pooled around my feet (size m). i will be taking it to the tailor to have at least 3-4"" trimmed off the hem, i would recommend erring on the side of the petite sizing or fa",4,1,0,General,Dresses,Dresses +830,37,Interesting piece,"The design is unique and stands out. goes great with a black pair of jeans and can be dressed up. i found the fit to be decent - not unflattering on me. however, i suspect that it could run short / tight on others. + +overall though - a cute white top for winter.",4,1,0,General,Tops,Blouses +1086,61,So soft!,This dress is soft and hits all the right spots. the neckline makes it a little alternative which i like.,5,1,0,General,Dresses,Dresses +715,38,So comfy,"Love this and wish it came in more colors. the fabric and cut are so comfortable. i bought my usual size and was a little sad to see that it shrunk just a touch in the wash. washed and then air dried but put in dryer for 15 mins to speed up drying process. i'm 5'7"" so it's already short but now i'll probably just have to wear it as a cover up or loungewear around the house. super cute though and great price with sale on sale!",5,1,1,Initmates,Intimate,Lounge +1066,41,So soft!,"Love the fit and color, but the material is my favorite. it's so soft and comfy. feels like your walking around in your pjs!",5,1,3,General Petite,Bottoms,Pants +1086,45,Stunning holiday dress,Hello i could not see how this dress could get anything but a 5 star review . the only thing that i thought would be a negative is that it may stag easily. other than that this dress is stunning on and i feel it runs large . i wear a sz 4 and the xs fit just right i'm 5ft 6in tall looks great with a high heel since its really long to the floor which i like as far as the shine on this dress. i love it it makes it worth the price and dresses up a casual dress . and its very comfortable .,5,1,2,General,Dresses,Dresses +715,40,,,5,1,0,Initmates,Intimate,Lounge +715,28,Cute lil romper,"This is a great fit and super cute, price not bad either!!",5,1,0,Initmates,Intimate,Lounge +820,41,Beautiful top!,"Stunning on, but mine was missing a button when i received it. i found a similar button and replaced it. still worth it, even though it arrived ""damaged""",4,1,0,General Petite,Tops,Blouses +1100,41,Irresistible,"I broke my rule of not buying polyester for this dress, twice (helped by sale price with additional percent off promo). it's mainly the irresistible print, i bought it in both the lovely blue-pink floral and the patterned red. love it. works best when the weather is in upper 60s, with tights and boots, but i think it will also work with bare legs and clunky sandals when the weather is warmer. the fit is loose except for in the chest and shoulders, so don't size down. i do wish the fabric was not",5,1,0,General Petite,Dresses,Dresses +1086,24,Love,"I debated getting this dress for over a month and finally purchased it on retailer member day for 20%off. i wore it on a chiller night with a denim jacket and booties for a more casual feel. constant compliments from friends and strangers. + +only complaint about the dress is the slit. it does not go as high like on the model, stops right at the knee.the cross over is not too revealing (which is nice). overall the fit is great! im 5'6 and usually size 12 and 36dd, the large was perfect!",5,1,0,General,Dresses,Dresses +820,34,So cute,"This top is true to size for me, i'm 5'8'' 128lbs, and i ordered both a size 4 and 6. the six was too big, i could tell because the shoulder seem was in the wrong spot and i couldn't lift my arms, the shoulder seem hung too low. the 4 was perfect, i had full range of motion for my arms and was easily able to bend down and touch my toes without any pulling on the buttons of the shirt. i always order a small or size 4 in tops. the bigger size didn't add any length in front just added a boxier feel",5,1,0,General Petite,Tops,Blouses +830,66,Unique,"This sweatshirt is beautiful and a step beyond the ordinary. the white is crisp and the lace is just beautiful. the black striping is subtle and really attractive. i had a problem with the fit. it just grabbed my mid section in an unattractive way. i wear large in more fitted items and that's what i ordered this time. i'm well endowed and it fit nicely over my bust, shoulders and arms so afraid the next size up will be too big. although it didn't work for me i highly recommend this beautiful top",4,1,0,General,Tops,Blouses +820,35,Fun and flirty,"This is a great casual top for spring! i loved the covered buttons in the back, and the longer back peplum too. the peplum in the front covers the top of pants. i am 5'9"" tall and often times have difficulty finding sleeves that are long enough, so the 3/4 length sleeves are perfect. the fabric is light weight but not sheer, and the embroidered dots are well done.",5,1,1,General Petite,Tops,Blouses +1100,59,Great drapey fabric,I loved the fabric and this print but it was just cut a little wrong for me. the gathering on the side made me look a bit wide. but the fabric is beautiful and everything else was nice. i did like the fact that it ties in the back so you can slim down the sillouhette (sp?) if you want to.,4,1,1,General Petite,Dresses,Dresses +878,36,Perfect tunic,I love this tunic! the fit is ttt and the quality is nice. i will get much use out of this piece!,5,1,5,General,Tops,Knits +1086,22,,I absolutely love each this dress! it is shimmery as others have said but the design looks so beautiful that way and i don't agree that it mages it look cheap. love the neckline and the length is perfect unless you're a petite size. i would snatch this one right up if it weren't for the price point. i'm hoping it'll go to sale but it's so beautiful it might be sold out by then . the fabric seems delicate like he threads could come apart easily.,5,1,0,General,Dresses,Dresses +1075,32,Lovely beading,"I love this dress! the beading gives it something special and the petite fits my 5"" frame perfectly. lightweight enough to wear now and again later with layers for fall. very soft fabric!",5,1,3,General,Dresses,Dresses +820,31,,,1,0,0,General Petite,Tops,Blouses +820,31,Sweet and fun without being too young,"5'7"", 135lbs, 34c, 27-28 waist. typically wear between a 2 or 4 in maeve. bought an 8 in this. blouse is incredibly sweet - the white is beautiful but i opted for the black bc it seemed more internship appropriate. the front and back are completely different lengths - not a traditional high-low. the fabric has little to no give and the back has buttons running down. size up 1 or 2 sizes to avoid popping buttons! gorgeous with jeans or pair with some fun cigarette trousers (cartonnier, for exampl",4,1,3,General Petite,Tops,Blouses +1075,42,Disappointing purchase,"This dress looks very beautiful on the model shown. unfortunately, when i tried it on, it did not flow as nicely as i would have liked it to. i also didn't care much for the waist ties on the side. an elastic waist might have been better.",2,0,0,General,Dresses,Dresses +820,34,Beautiful,"Love this top, it's a 100% cotton and looks amazing with jeans. you should consider ordering a size up, i am usually an 0, 32d and 107pound. tried the 0 in store it just didn't feel right the size 2 fit just right. +love the shirt, and got tons of complement:)",5,1,1,General Petite,Tops,Blouses +1066,41,Love these,These are the most comfortable trousers in my whole wardrobe. love them.,5,1,0,General Petite,Bottoms,Pants +1022,41,Very long,Not for shorties. i'm 5'3 and will need to get them hemmed.,5,1,0,General Petite,Bottoms,Jeans +1022,59,,"Fit is perfect! very flattering. they are very long, so i will need to shorten.",5,1,1,General Petite,Bottoms,Jeans +1086,37,Perfect dress for the fall!,"I am in love with this dress. not too dressy, not too casual and hugs the body in all the right spots. i am 5'7 with curves and this flatters well. i also bought (and adore) the velvet taupe ankle strap shoes they show with them, super in-love with the whole look. dress will look great with booties too. just hope i don't snag the sweater dress, which looks easy to do, because i want to wear this all fall and winter long.",5,1,2,General,Dresses,Dresses +1100,24,Precious and comfortable,"Bought this dress for engagement photos and was a little worried about sizing, but when i got it it fit perfectly and was very comfortable. it runs true to size. my only complaint is that there was a missing button on the sleeve, but because there was an extra it was easily fixed. definitely recommend!",5,1,0,General Petite,Dresses,Dresses +820,25,"Love this shirt, but buttons are unstable","This is a beautiful shirt. the back is a few inches longer than the front which makes for a cool effect. +the only thing that i didn't like about this shirt was how fragile the buttons on the back are. i was taking this shirt off and one popped off. when i went to hang it, another one popped off! so i had to return it. such a shame.",1,0,0,General Petite,Tops,Blouses +820,61,,"The fabric is a little stiff, the back looks unusually long compared to the front, and it fits tight across the chest. and i'm not busty so that's not a factor.",1,0,0,General Petite,Tops,Blouses +715,31,,,4,1,0,Initmates,Intimate,Lounge +1086,43,,Great winter maxi. soft and comfortable fabric. good quality. stretchy but not too clingy. fitted in all the right places and very flattering. petite was unavailable so will need hemming.,5,1,2,General,Dresses,Dresses +1100,23,One of my favorite purchases!,"I love rifle paper, and when i saw this dress online, i knew that i had to have it. this dress is even prettier in person than it is in the picture. it's pretty and delicate, and can easily be dressed up or down. i found this dress to fit true to size. it definitely has that ""baby doll dress"" fit to it, but i love it! this is a dress that i'll feel beautiful in and pull out of my closet over and over again.",5,1,0,General Petite,Dresses,Dresses +1086,47,,"Love the dress - i am having the slit up the front raised. love how it looks in the picture, but the dress is actually slit up just under the knee.",4,1,0,General,Dresses,Dresses +715,33,Love this!,"This romper is sooo comfortable and cute! it is definitely pretty casual, and probably best used as a beach cover up, as it exposes a lot of skin. that being said, i have worn it out and about on very hot days and felt totally fine. as far as sizing, i usually order a small, and got this in a small and it fit perfectly.",5,1,1,Initmates,Intimate,Lounge +820,19,Tight in arms and bust,"So i really like this top. not my usual choice, but i'm trying to branch out. really like the top (i got the white one because they had it in my size). only thing is i could have sized down but arms/shoulders/bust are super tight so i went with the larger size. i got mine on sale and a button had already fallen off the back so forewarning that may be a problem in future.... + +but overall i really like this top.",4,1,0,General Petite,Tops,Blouses +1100,28,Perfection,This dress is amazing! i love the collaboration with rifle paper. it has a nice boho swing look. i sized down from my typical small and took an xs. both fit well but i wanted the shoulders to be more fitted.,5,1,2,General Petite,Dresses,Dresses +1086,63,Perfect for a fall wedding,This dress will be perfect for the mid-september wedding i'm attending. september is a transitional month fashion-wise and this knit dress will be perfect. the shimmer (which isn't apparent from the website) makes it festive enough for a wedding.,5,1,0,General,Dresses,Dresses +1086,27,Beautiful and unique,"I fell in love with dress immediately! it runs small, but is very flattering, even if you have a little you want to hide. i went up 1 size. so comfy and beautiful! love!!",5,1,2,General,Dresses,Dresses +1123,27,Great jacket,I love the colorblock color combo. the colors are neutral enough to go with so many things yet still be unique and stand out. the fit was perfect. i took my normal size medium.,5,1,1,General Petite,Jackets,Outerwear +1086,27,Love it!,I love the color and shimmer of this dress. it is very unique and one of a kind. the slit is not as high as the photo online but that can be adjusted if need be at a tailor. it's a great dress!,5,1,0,General,Dresses,Dresses +820,52,"Cute design, with adorable dots","This is much cuter in person than in the picture. in person, i am much more aware that it is also a lower length in the back and it flairs just a little so that the design really stands out. i bought in the white and blue dots and can see wearing it in the now, spring, and even summer! it is just a tad tight in my size 10, so i went up to a 12. thank you retailer - this will be timeless!!",5,1,8,General Petite,Tops,Blouses +820,27,Worst peplum top in history,"This is the most unflattering peplum top i have ever tried on. fit perfectly as a size 6 should in the arms, shoulder, chest... then the waist was huge! just hung off of me like a flour sack. it was wider than the chest measurements, which made me appear frumpy instead of tailored and classic. combine that with the high-low hemline and it looked like a project runway reject. sent back immediately, do not buy this if you have (or want to appear to have) an hourglass figure, it will do nothing for",1,0,0,General Petite,Tops,Blouses +820,28,Flattering,"This top is extremely well done. it looks classy and timeless. i tried on the white version in store, but chose to order the black as the white was too sheer.",5,1,1,General Petite,Tops,Blouses +820,30,Button problems,"Stylist in store warned be about issues with buttons falling of easily. loved the look, so bought it anyway. lost 2 buttons on the first wear. it did not feel snug on me, but i guess i could try a size up and see if the buttons hold a bit better. either way i will return or exchange.",3,0,2,General Petite,Tops,Blouses +1086,44,So flattering!,"This dress fits and flatters a curvy silhouette. size medium length is perfect for my 5'7"" frame. utterly comfortable and so many compliments!",5,1,0,General,Dresses,Dresses +1086,39,,I feel like i'm cheating when i put this on it's so comfy almost like wearing cozy pj's but with my black belt and boots and a cute scarf i can easily wine and dine looking like a million bucks and feeling like i'm lounging at the same time. i wish this came in more colors!!,5,1,0,General,Dresses,Dresses +1100,24,Perfectly easy,"This dress is my new best friend. i've been looking for work dresses that don't require much effort in putting together an outfit, and this is just it! the pattern is fun and unique (i got many compliments), the cut is comfortable, flattering and feminine. the dress really speaks for itself, and all i have to do is throw it on and run out the door. the only negative is there was a loose piece of thread at the bottom (fingers crossed this doesn't lead to problems later on) and the sleeve buttons",5,1,0,General Petite,Dresses,Dresses +502,35,,"I love love love this swimsuit! yes it's a bit pricey for a bathing suit, but i love the design and colors and the back detailing is sexy yet not all that revealing. i can't wait to wear it in hawaii next month! the only part to be careful about is not to stretch it too much when putting it on and taking it off, i can see the diamond cutouts stretching or even ripping if pulled too hard by accident. overall a great swimsuit for the summer!",5,1,4,Initmates,Intimate,Swim +948,49,Comfy cozy and cute,A very versatile and cozy top. would look great dressed up or down for a casual comfy fall day. what a fun piece for my wardrobe!,5,1,0,General,Tops,Sweaters +820,46,"Pretty, soft, comfortable and true to size","I ordered this in xl and the fit on me matches the fit on the model. it's meant to be loose & flowy so i think it's true to size. everything matches the photos--the sleeve length, hem, neckline, etc. it's not a slimming look but doesn't make me look bigger than i am either. + +the material is a very soft cotton. the pattern of the lace on the top portion is very pretty. there are sequins mixed with the embroidery on the sleeves. the thread they used for those cutout areas is soft. it's washed well",5,1,0,General Petite,Tops,Blouses +948,37,"Great idea, in theory","Sctrachy, short, boxy, stiff. +loved the idea of this sweater, but this was not what i was hoping for",2,0,1,General,Tops,Sweaters +948,64,If you want a crop top...,"I love everything about this except the length. i am short and usually order a petite and even this is really cropped on me. the quality is good, thick and substantial, color is great but very cropped and sleeves are long on me as well. just weird proportions so sadly, going back.",2,0,5,General,Tops,Sweaters +338,46,Love,"Material is heavier so maybe not for summer months, but fit & feel great. love that they fall beyond the knee where other leggings can fall just below the knees and be uncomfortable and restricting which makes no sense for ""active"" wear.",5,1,0,Initmates,Intimate,Lounge +1076,51,Beautiful and slimming!,"I was pleasantly surprised by how well this dress skims over the body. definitely needs the belt that comes with the dress to add some shape. the color is gorgeous, great print and very light fabric - perfect for summer.",5,1,3,General,Dresses,Dresses +948,49,Way too scratchy!,"The minute i put this sweater on, i couldn't wait to take it off. it was way too scratchy for me. so, for those with any type of sensitivity to wool, this is not the sweater for you. otherwise, i thought the design was quite cute.",2,0,0,General,Tops,Sweaters +30,36,Runs large,"I love this dress, but have found that this brand runs large. i'd order a size down.",4,1,0,General Petite,Dresses,Dresses +1103,34,Beautiful maxi,Beautiful maxi fits tts. i normally wear a 10/12 and took a 12. it is flattering to the waist and makes me feel girly. the colors are so beautiful and the length is good for my 5'9 frame.,5,1,0,General,Dresses,Dresses +502,20,"No ""lined cups""","I just got this suit in and i was pretty excited about it, however it does not have lined cups like it says. no boob support whatsoever, though i think the pattern distracts enough that i'm keeping it anyways. (34dd). i do think it might be too short for a taller person. i'm only 5'4"" and it just barely comes up high enough to cover me, and i don't think big boobs are the reason. also it is pretty cheeky, which it does mention. maybe a little expensive, but i did use a coupon.",4,1,3,Initmates,Intimate,Swim +1103,39,Gorgeous print,"I fell in love with the color scheme and knew this would be perfect for vacations and weddings. colors are slightly muted in reality, seems the retailer filter adds more contrast, but it's still gorgeous! lining is full length, there's a zipper going up the back, fitted at the waist, and ribbon ties at the back of the neck that are long enough to style at the throat if wanted. i wasn't sure of my size so i picked my larger range and i'm glad i did. my weight fluctuates so when it goes down, t",5,1,2,General,Dresses,Dresses +941,64,A great long swtr w/ patch pockets!,"I ordered my usual sz s during the promo. arrived yesterday & the fit is perfect w/ a little room to spare for layering. it's a snap front closure, front patch pockets, & attached hood that is small to med size-not huge or overwhelming. it's 100% acrylic which isn't my 1st choice, but soft, comfy & seems good quality. length falls abt 3"" below my knees. arm length is fine. pretty much looks as in the pic including the marled color. if you are in need of a great functional long swtr w/ good looks",5,0,6,General,Tops,Sweaters +1115,26,Not very functional,"This vest doesn't have a button, so i thought i could put my own. but when it arrived, it just didn't fit that well. the opening in the front is too big, the vest itself while nice and warm is not functional at all due to openings everywhere. i don't know, why even make a vest like this with no front button and such a wide opening, how is one supposed to keep warm at all?",3,0,0,General,Jackets,Outerwear +1103,39,Great for an hourglass figure!,This dress is so beautiful & fits my hourglass figure perfectly. it's fully lined & the print is nicer in person. very easy dress to wear to many summer occasions! i'm an 8-10 on top & 10-12 on the bottom. size 10 dress fit perfectly!,5,1,3,General,Dresses,Dresses +907,53,Strange fit,"Note the sleeves on the model. that is how your regular size will fit your arms. however, even if you have skinny arms like i do, the sleeves will be tight. i bought my regular size xs and it was clingy with an odd flair and the length seems as though i ordered a petite and i am only 5 ft 2 in. +i advise to try a few sizes on if you really are interested. the red is truly a red which is a good thing because so often it is hard to find a red that is not neon.",2,0,4,General Petite,Tops,Fine gauge +862,41,Comfy sweatshirt,I have been living in mine since i bought it! so comfy and dressier than a plain sweatshirt!,5,1,1,General,Tops,Knits +907,45,,,5,1,0,General Petite,Tops,Fine gauge +439,45,Unique modern turtleneck,"Nice lines and texture but fit is very tight and i experienced the sizing to run small. i am 5'6"" and 115# with small frame. i usually wear xs or s from retailer, so ordered the turtleneck in small. the size small was super tight. i love the design so exchanging my order for a medium.",4,1,4,Initmates,Intimate,Layering +907,41,,Love this cardigan! it is a really a sweet and sexy top. so flattering to curves and yet conceals too. the material is wonderfully soft and stretchy.,5,1,8,General Petite,Tops,Fine gauge +907,57,True red cardigan,Wore my new red cardigan for the first time today to work. fit is tts. this is a true red and not neon or orange tinted. it wraps nicely in front and has a nice flair at the hips.. i also like the detail in the knit. i like to push my sleeves up and love the fact that they don't slide down my arms all day. i'll wear this cardigan a lot.,5,1,0,General Petite,Tops,Fine gauge +862,36,,"This is a great top. soft and cozy fabric, nice and sturdy feeling. it's heavier than i though it'd be so its perfect for the cooler days of spring, and even a chilly summer night. i love that it's long enough in the front for me to feel comfortable wearing leggings. the body is nice and roomy but the arms are a little snug, however, i like that because i think it makes it look less like a slubby sweatshirt. the best part... it can be cleaned in the washer and drier! thrilled with this purchase!",5,1,1,General,Tops,Knits +862,54,Cute and comfy,This top is really cute. my daughter tried it on and tried to take it.,5,1,2,General,Tops,Knits +439,53,"Nice turtlenceck, flattering style","I usually wear a medium or large in retailer clothes. i purchased this in a large and it fit perfectly. it is a clingier top but i didn't find it too much so. the ribbing makes it very attractive and slimming, and also can be worn as a stand alone turtleneck or easily as a layered piece. it is super soft and comfy as others have mentioned, and a tad thicker than just a cotton turtleneck would be - it has substance. also, it would be great for traveling because it doesn't wrinkle at all. love that!",5,1,2,Initmates,Intimate,Layering +907,41,,"Love the quality of this material, and how the lines fall on the back. i got a a medium petite because the small was sold out, and i like how it fits. petite sits around the hip area and it's not too long which i like. the color is definitely more of an orange/tangerine color - not red. great cover up sweater!",5,1,2,General Petite,Tops,Fine gauge +907,20,Soft and practical,I purchased this sweater in black to dress up my everyday cardigan. this is very soft and can dress up a skirt or great with jeans.,5,1,0,General Petite,Tops,Fine gauge +907,49,"Soft, a little shorter than expected","I like it a lot - very soft, just enough detail to keep it interesting, but still a classic look. i got this in a small and it's a little short on me compared to the model. i'm 5'6"", long-waisted, 34b (small side), 145lbs (carry bulk of my weight in legs.so trim on top). i will keep the small but also get a medium; the small ties a little high and i also want a sweater that can cover my shirt tails when i don't tuck them in.. i got it in black, so can't comment on the orange or red.",5,1,0,General Petite,Tops,Fine gauge +907,49,Perfect for me,"I just bought this cardigan in black at the store and i love it. the tie at the waist is flattering and the fabric is soft and stretchy. the regular size fit me perfectly as far as where the waist and hem hit, although the sleeves had to be turned up (i'm 5'1"" with more length in torso than limbs). i was so happy with the fit other than sleeve length that i bought the regular small rather than coming online for the petite. because the fabric is rather thin and the shape trim i can fold the sleev",5,1,1,General Petite,Tops,Fine gauge +862,39,,,3,1,0,General,Tops,Knits +907,42,Staple stylish piece,"I have been looking for a good red cardigan for some time now. this one perfectly meets my needs, and now i want it in more colors. the sweater has a nice cut, and it is very soft and comfortable. i know this will be a go to staple piece in my closet.",5,1,0,General Petite,Tops,Fine gauge +862,30,Simple and stylish,Chic and comfortable and looks great with skinny jeans or leggings. i'm usually a small/medium and thought the medium had a better overall look - sleeves were just a little long. the detail on the sleeves is kind of like the inside of a sweatshirt and makes it look a little more polished than the average athleisure top.,5,1,1,General,Tops,Knits +907,30,A pleasant surprise,"I bought the red cardigan because i didn't have anything similar and was so pleasantly surprised by the fit and design that i'm going have to buy it in whatever other colors are available. it's very versatile - looks great tied in front, in back, at the side - and has a tiny bit of flare at the bottom so it's more feminine and flirty than your average cardigan. i have a few tops by this brand and have been really happy with the quality and design.",5,1,2,General Petite,Tops,Fine gauge +439,39,Versatile and flattering,"This is a very nice turtleneck. the variations in the ribbing are a modern (and flattering) touch. in some of the photos online it almost looked to me like there are color variations - fyi there are not. all the ribbing areas are the same shade of black. +---------- +unless you are very small framed, i would recommend sizing up; or, if you typically wear a m or a l, go with the l. as reference i have wide shoulders (wider than my hips), large biceps, and a 34b chest, and i went with the l because",5,1,21,Initmates,Intimate,Layering +907,23,Especially elegant with dress or skirt,"I never would have thought to choose this, but an retailer associate suggested the black sweater as a topper while i was trying on the camellia dropwaist dress, and it made a sale, i bought them both! the sweater, while not decked with beads or embroidery, adds an incredible definition to any outfit that is overly flowy. i would say the photo above showing the grey sweater says it all. usually a size 6 in retailer dresses, the small fit well. i appreciate the cotton fiber content, as well as the ver",5,1,2,General Petite,Tops,Fine gauge +907,48,Perfect,"Love this cardigan, ordered the red which is a nice tomato red, but not orange. sz medium fits perfect on my frame, 34dd, 145 lbs and 5 '4. love the style and finishes a pant, skirt or dress nicely. i just may order the black ! did not see this item in the store near me, but lucky to order it on sale. beautiful quality.",5,1,0,General Petite,Tops,Fine gauge +862,35,Most stylish sweatshirt i own now.,"This was such a nice surprise. it's way more sweatshirt than i thought, and maybe a touch bigger than i thought, but it's super cute and comfortable. i've worn it a bunch of times already.",5,1,1,General,Tops,Knits +862,32,Just what i wanted,This top is exactly what i was expecting. super comfortable while still looking stylish. just covers your bum so you can wear it with leggings or jeans!,5,1,1,General,Tops,Knits +841,60,Pretty,"Quite cute, it feels good on. the fit is tts and the colors are bright and just as depicted. i am a medium in most of retailer clothes and this fit nicely.",4,1,2,General,Tops,Blouses +862,32,,"I find myself gravitating towards comfortable items currently. this one caught my eye because of its length (tunic) and because, unlike many of the items right now, it actually appeared fitted. only after that did i notice the pretty detail on the sleeves.the price point is too high for a casual item such as this, but the sleeves do make up for it. +the cut is really great for my straight and slender body type. perfect! a great weight for those in-between temperatures that we'll be feeling as we",4,1,11,General,Tops,Knits +907,64,Great,What a nice sweater! i just received this in the gray and i think it is one of the most flattering sweaters i've gotten in a long time. the fit is true to size. the sleeves are very long and tight halfway to the elbows and fit well in the upper arms. the stitching on the body gives an illusion of height and is slenderizing. the weight is perfect for every season. i am very happy with everything about this sweater.,5,1,0,General Petite,Tops,Fine gauge +907,50,,"This is a beautiful sweater that i wanted to love but i couldn't for a few reasons i thought i'd share: the color is bright orange. it is not softer like peach in the picture. it also was more clingy than a curvy woman like me can wear. i thought'd be more swingy but it was more structured. very pretty and good quality,tho.",3,0,7,General Petite,Tops,Fine gauge +841,39,Okay but not at this price,"I feel that for this price, i should love this top (and i wanted to). however, the price is on the high side for a relatively basic top, and there were a few things about it that could be improved. +pros: i ordered a medium and feel that it's pretty true to size. additionally, the fabric is nice and light (but also *sheer*) and, generally speaking, has a nice pattern. overall, it's a very pretty top. +cons: there's a cute criss-cross ruffle thing happening in the back but the model has cleverly",2,0,12,General,Tops,Blouses +116,31,Not worth the money,Much lower quality than other robes i have purchased,2,0,0,Initmates,Intimate,Sleep +1075,31,Perfect easy summer outfit,"I love this dress and it is going to be my go-to summer dress. the fabric is great with just a slight amount of stretch. it is true to size. i am 5ft 8"" and it is not too short on me. the arm holes and the rest of the fitting is just perfect. the pockets are also very functional. the color is a darker moss than a brown that it looks like in the pictures. the retailer dresses i order online offlate are returned 90% of the time due to ill fitting or for not being what i expected in general, however",5,1,0,General,Dresses,Dresses +116,35,Comfortable and cozy,"I like this robe a lot. the tassel detailing on the ties is beautiful. i like the soft interior-but wish it went all the way down the arms. the cozy part of the robe is only in the center section and hood-the arms can be a bit chilly while the rest of you is warm and cozy. + +i do not think the robe is necessarily flattering, in that it does not do me favors in the way of slimming, it is more of a cozy-around-the-house robe rather than one to hide lingerie underneath.",4,1,25,Initmates,Intimate,Sleep +1020,43,Amazing alternative to a denim skirt!,"Oh my god - i love this skirt. i first order the size 4 and immediately called customer service and had them send me a 2. i found it be be both plenty stretchy (great for moving, sitting, etc) but runs on the large size. but the fit is amazing. i love the length - a perfect knee-skimmer for me (5'9""). i love the color (green) and the pockets and button fly are so fun without being too much! i've tried it on with several tops and sweaters in my closet and this skirt is going to be one that i can",5,1,0,General,Bottoms,Skirts +968,38,Every vest has different coloration,"The material is so soft and cozy. there is just enough padding to keep me warm all year round in southern california. but, i ended up leaving the store without this vest bc 1)the cut is slightly boxy. 2) every vest had different color variations. you definitely should go into the store to check it out. the ones i saw made the vest have cheap pattern of wide stripes, not an even vintage fade as shown. i'm so sad as everything else is perfect. fits true to size",3,1,0,General,Jackets,Jackets +836,53,Order a size up!,"What an adorable, classic style fringed top this is! i recently purchased this in my regular size but i should've read the reviews first and ordered a size up. when i went up from a size 6 to an 8 (34d-27-35), it fit me perfectly and looks so cute on! i think this one feels well made and i love the little details of the beads and how the fringe is placed. it looks very flapper girl;) i bought this on sale in the pink color and cannot wait until spring and summer to wear with jeans or a skirt!",5,1,3,General,Tops,Blouses +116,56,Doesn't wash well,"I wish i had read the other reviews before purchasing this product. label says that you can wash and dry normally. however, upon washing, the outer layer shrunk and the inner lining did not. the robe will now not lay flat; the fabric pulls at the edges, and results in the inner lining being revealed when the robe is tied shut. extremely disappointed. for a $100 garment, i expected much more. i wish i could return this.",1,0,0,Initmates,Intimate,Sleep +1020,62,The perfect skirt,"Almost the perfect skirt! great colors,super cute fit,very flattering,great length,very versatile. only issue was size; normally a solid 10, i ended up a full 2 sizes smaller. very stretchy and comfortable,just try it on first or order a couple of sizes. go down at least 1 size. as others have said...pilcro strikes again,its such a great brand with the most flattering shapes and fabrics.",5,1,0,General,Bottoms,Skirts +1059,39,Dreamy!,"These pants are fabulous. the flow and feel made my mind up easily to purchase these. i have a long torso and short muscular legs. the style complimented by body type. being culottes, the hem should probably fall higher up on my legs. i will probably have them hemmed. the pleat has a nice kick to it. now off to find the right pair of shoes...",5,1,1,General Petite,Bottoms,Pants +968,39,Versatile vest,"I took advantage of the sale this weekend & purchased this super cute vest yesterday which made it a more justifiable purchase. it's so soft, fits tts & i just can't wait for cooler weather so i can start wearing it!",5,1,0,General,Jackets,Jackets +1020,30,,,4,1,0,General,Bottoms,Skirts +116,63,Beautiful,I ordered this as a gift and may order myself one. it is so comfortable and pretty.,5,1,0,Initmates,Intimate,Sleep +1059,48,Classy look,"Loved these culottes! flattering fit and nice drape. the fabric, though poly, is of a nice weight and swishes nicely as you walk. the length (just below knee length) works for me too. the color is lovely for the fall - rich copper and easy to pair . i'd say these are tts but if in doubt, size down. i""m between a size 8-10 and the 8 works best for me.",5,1,0,General Petite,Bottoms,Pants +116,55,,,5,1,0,Initmates,Intimate,Sleep +116,59,,This robe is incredibly soft! it is wonderful to put on right after a shower and it is very warm! the sleeves are lined with a jersey like material and they are so easy to get on and off. it fits true to size. i am so excited to have this robe!!!,5,1,1,Initmates,Intimate,Sleep +1059,63,,I ordered these culottes because they looked comfortable yet elegant. they are indeed both!,5,1,0,General Petite,Bottoms,Pants +836,37,Disappointed,"So bummed. i was really hoping this top would work for me. i got the black in regular size 4 and the pink in petite size 4. both hit my breast too high and were too bulky in the mid section. i have a sort of short torso, wear a small 34c, and am have a defined waist. when tops are bulky, it gives me no shape and just looks terrible. i am having the hardest time finding pretty tops that suit my figure. they did not lie flat like on the model but had so much extra fabric they stuck out. +the constr",2,0,0,General,Tops,Blouses +1020,62,,"I have been looking for a tan color skirt so i ordered this as soon as i saw it. so glad i did the deep camel color can still be worn in late summer as styled in the product photos and transition to fall staple. the material is nice weight , and has a stretch. the cut has a little 60's vibe that i love. i think it should keep it's shape hopefully launders well. i think it runs slightly large, as my waist is large in comparison to my hip proportion and there is no pinch for me. i will rebuy this",5,1,3,General,Bottoms,Skirts +968,49,Dreamy vest,The vest looks so stylish on. it makes a regular t shirt look edgy with it on. i love the vest but the price is too high,3,1,0,General,Jackets,Jackets +836,50,Strange fit,"This is a beautiful piece but the cut is not flattering. i ordered my usual small and while the top fit, the fringed part was huge, kind of ""maternity."" i can only imagine there was some clothes-pinning going on for the photo. this would have been great if it had about 4 inches of fabric removed from the lower part. obviously, it cannot be altered. so sad, must return.",3,0,12,General,Tops,Blouses +1059,66,Great piece for fall,"Cute and comfy. if you don't throw a leg out like the model above, it mostly reads as a skirt because the legs are so full. but it's really comfortable, and pairs well with a surprising number of tops",4,1,0,General Petite,Bottoms,Pants +1078,42,,"I am normally a size 8 in dresses and bought this in a small. so if you are a smaller person, this would likely be a bit loose on you. the color was odd. i liked the navy blue, but the pink was a pepto bismol colored pink. i just felt like i would get sick of the color/pattern after one wear. the fit is cute and comfy.",3,1,0,General,Dresses,Dresses +968,66,Cute but too puffy if you have a larger bust,"Ordered my regular size large and the fit was a snug around my hips when snapped. i didn't plan on wearing it that way so that wasn't a deal breaker for me. but because i have a larger bust i felt the padding added pounds and lots of width to my frame. i also had the same issues with coloring as other reviewers. and lastly, the collar is really high and it just bugged me. so this one went back.",3,1,0,General,Jackets,Jackets +968,30,Chambray vest,"Love this vest! saw it and bought it instantly. i'm 5'8"" and slim and got the xs. it fits perfectly. there is a lot of ""puff"" to it, but it's really warm and soft.",5,1,0,General,Jackets,Jackets +1020,29,Stretchy and nice,This skirt is stretchy and really comfortable. i love the color. the only complain is it gives a little magnification to the low belly- on me at least. very flattering for the behind though.,4,1,2,General,Bottoms,Skirts +1075,25,Poor fit,"This style of shirtdress usually fits me perfectly, however, this did not fit me one bit. the waist was too large, the length too short, and the hips too small. i was really hoping this would fit, since it's a unique color and the material is substantial but soft. i will be returning this.",3,0,6,General,Dresses,Dresses +1059,55,A new staple!,"Tried these on out of sheer curiosity -- i've got a long torso & was pleasantly surprised how flattering they are! they manage to look flowing & sleek without shortening the legs. took a size 6 with my 27"" waist, 37"" hips. it's a bit of a generous fit, especially around the waist, but they're extremely comfortable & have room to tuck tops into. i have the cowled sweater tank in gray & it looks fantastic over these! couldn't resist getting both the rust and black. perfect for a dressy casual look",5,1,11,General Petite,Bottoms,Pants +1078,35,Not amazing,"Not a huge fan of this dress, will be returning it. +fits too big and not flattering. +fabric is thin and shows any lumps and bumps you may have. +color is not as pretty in person as in the photo - the photo looks like a nice rust color but the dress is actually a boring brownish olive.",3,0,2,General,Dresses,Dresses +1059,40,Obsessed,"I am 5'3, curvy and wear a size 12 and these pants look amazing! often i struggle with wide keg pants bc they make me look short and plump, however, the material is buttery soft and hang in an elegant way and most important they are quite flattering. even if you don't think culottes will work for your body type- i suggest you give these a try.",5,1,0,General Petite,Bottoms,Pants +1020,70,Versatile skirt,"Well made. color is great, goes from summer right into fall. looks good with sandles and will wear with boots later on. goes well with classic tee, denim shirt or plaid blouse. has a retro/ classic look.",5,1,1,General,Bottoms,Skirts +1020,63,Perfect for everything!,"Love this skirt. super comfortable, yet nicely tailored. roomy pockets always come in handy. the dark mustard looks great with the black and white tops that dominate my closet. this will be my go-to skirt for the fall for both my business-casual office environment and weekends out and about running errands, etc. i agree with the other reviewers re: sizing: because of the stretch, if you?re between sizes, you should size down. i'm usually a medium, or size 8 or 10, so i got the 8. i may have been",5,1,0,General,Bottoms,Skirts +1075,41,Fantastic dress,"I love this dress. i am an hourglass and found this dress to be super flattering and such a unique find. i usually avoid pockets in front like this, but it works on this dress. so happy i found it.",5,1,1,General,Dresses,Dresses +105,48,Perfect stylish comfort,"First off, these are great because they are not so tight like all other work out crops that my anatomy is not a mystery to people around me. i have an athletic build and these pants are awesome in that they hug the body lightly. they are so soft and comfy also. perfect for running and the gym and apres whatever. i bought a back up pair.",5,1,0,Initmates,Intimate,Lounge +1020,35,,"Great versatile skirt, very flattering",5,1,0,General,Bottoms,Skirts +836,44,Unique and timeless,"I ordered this in a petite (i'm 34b, 26 waist, 36 hips, and size 4p fits perfectly) and it fits very well everywhere. however, i think if you're bigger than 34b, size up, because this top is very fitted around the bust. the bottom hem falls right below my belly button, the neckline is not too low and not too high. i chose black because i feel that there are a lot of details and can be toned down with a darker color. i think this top must be fitted for a tailored look, or otherwise one may risk t",5,1,14,General,Tops,Blouses +1020,58,Surprise,I tried this skirt on because i liked the green color thinking that the pockets would not be flattering to my size 12 figure. i was wrong. the pockets are flattering to a round tummy. the pocket flap is stitched down on the side and button near the center so they don't stick out. a good skirt for fall.,5,1,0,General,Bottoms,Skirts +818,48,"Very cute, fits nicely","Fabric is a little thinner than i expected, but just wore a camisole. the waist is a little short. nice batik-like pattern and feel.",4,1,3,General,Tops,Blouses +836,34,,"This is the worst shirt i have ever tried on from retailer. it is basically a big shaggy box from the front, and from the side it looks like a tent. it is also short.",1,0,0,General,Tops,Blouses +968,52,Busty &amp; it works great for me,"120 lbs and i saw this while shopping with my sister who is 125 lbs. we both tried on the small and the fit was perfect. i didnot need a petite. it is so soft and i didnt notice other vests with different fabric from each other at all. the vest is just like the photo. its cozy. collar didn't bother me, i wear my top collar out or with a turtleneck. i waited until it was on sale because the price was a little high. but it is very soft and uniquely special.",5,1,0,General,Jackets,Jackets +1081,49,,"I have a few evening functions this month and the next few months and i thought this dress would be different and fun. i really wanted to like it, but i could not. there were spots missing sequence, some fell off as i tried the dress on, and i did try it on twice. each time there were some on the floor. they are sewed on so poorly, for the price of this dress. i fear it would be a dress for one season and i'd have to throw it out. not for that price. so back it goes.",2,0,18,General,Dresses,Dresses +941,36,Beautiful sweater,Love this sweater! it is so cozy! i gave it a four because it does shed a lot. i have not washed yet but hopefully that will help with the shedding. i am hoping to buy other colors.,4,1,0,General,Tops,Sweaters +941,53,Better in real life!,"I bought this sweater in the sky color. just love it, i'll go back for the rust colored one.",5,1,1,General,Tops,Sweaters +1004,30,,"Beautiful skirt with a fun, graphic pattern and embroidered texture. i tried on my usual xs as well as a s to compare. they both fit but i decided to keep the xs since the skirt has a little bit of a stretch thanks to a hidden elastic panel in the back, plus it looks best at your natural waist. i'm 5'2"" and often need to wear petite, but this skirt is already quite short so i bought the regular size. looks great bare-legged or with tights. love the pockets too!",5,1,0,General,Bottoms,Skirts +825,67,,"Love the tunic. rich color. longer than i thought. i am 5'9"", 140 and it almost comes to mid thigh. also ordered medium - it is roomier than anticipated. but looks good loose and flowing. +overall love the tunic, the shape, style and will have big fun wearing it.",4,1,1,General,Tops,Blouses +747,52,Gorgeous but bra runs small,"Just received the bra and matching panty in the mail and loved it. the true color is a little darker, i would call it a taupe. the fabric is really nice. i am a 34 c and ordered a medium just from my freepeople bra experiences, and they run small. the medium is perfect for my size. i usually order a small panty, and this one fits, it looks smaller than pictured on the model. this set is one of a kind, the pattern on fabric is really beautiful. i think it is worth the price. if you like lingerie,",5,1,1,Initmates,Intimate,Intimates +949,35,,"I ordered the white in this. i found it to be so much prettier in person than the photos. i don't think they do this piece justice. i am normally a medium and that is what i ordered. i found it fit true to size. love the three ties in the back. it's a tad baggy, but looks great. i can see that this might snag easily though.",5,1,1,General,Tops,Sweaters +941,50,Soft and warm!,"I purchased this sweater in the blue and i love the color. at first i bought the regular size extra small. i am 5/2"" and 102 pounds. i had to return the xs for the xxs petite. i like the arms to be long so i don't usually purchase sweaters in the petite sizes, but this one in the xxs petite the arms are still plenty long enough. it is still very roomy. it is very soft and comfortable, slightly itchy, i wear a very thin long sleeve shirt underneath.",4,1,0,General Petite,Tops,Sweaters +825,33,Shrank when washed,"I loved this tunic the first time i wore it. i ordered it in the red and it was very flattering on my post-pregnancy figure and extremely cute with leggings and boots - just what i wanted. it fit true to size, even with a few extra pounds around the chest area. imagine my horror when i pulled it out of the wash - having followed the directions on the tag exactly - and discovered it had shrunk and no longer fit properly. in particular the sleeves became incredibly, uncomfortably tight and much sh",2,0,3,General,Tops,Blouses +941,54,Great pullover !,Soft and sweet,5,1,0,General Petite,Tops,Sweaters +949,34,Fun and flirty,"Great sweater, perfect weight for the office in the summer. love the delicate knit front and triple tie in the back. it was bigger and baggies than i was expecting, but it still works.",4,1,2,General,Tops,Sweaters +941,54,Sublime,"Lovely sweater! it's a new staple in my wardrobe. love the fit and styling, but what drew me in at first sight were the colors. it's warm and cuddly.",5,1,0,General Petite,Tops,Sweaters +941,52,Looks better in the pic than real life,"I really liked the look of the orange so ordered an xs. i prefer a s petite but it is sold out. the xs arrives and while i still like the color, the fit is really weird. the cowl is very high up but the sleeves are still long. it looks nothing like the photo. i cannot see how the cowl sits on the model's collar bone. despite eliding the color, the design is off so have to return.",2,0,0,General Petite,Tops,Sweaters +829,77,This garment has lovely features,"I really liked the beautiful fabric, design, and length of the piece.",4,1,0,General,Tops,Blouses +941,36,,"This is one of my favorite sweaters of the season. it is warm and cozy and looks so cute with jeans. it's definitely a little shorter on me than it looks on the model, even though i'm only 5'4.",5,1,0,General Petite,Tops,Sweaters +941,33,No way,This sweater was so itchy i immediately was turned off. it looks cute in pictures but another problem was that the knitting in the shoulders looks like a kid made it. it was uneven and stretched out. it looked like it was not well made to me. it also shed so much that just from me trying it on my pants were covered in orange fuzz. i returned this one.,1,0,0,General Petite,Tops,Sweaters +829,28,Good quality but ok fit,"High quality top, but material is not very soft-- may soften in the wash. fit is okay.",4,1,0,General,Tops,Blouses +941,72,Not worth the price.,"This sweater was just okay. i am happy to pay $100 or more for a sweater but this one was somewhat itchy, and not the quality i expected for that price. i may have kept it if it were at about half the price, but it just was not worth it. retailer prices seem to be going up and up and the quality less and less. i had similar experiences with a couple of shirts that i ordered over the summer. looked great in the photos, but unfortunately in person were not quality garments.",2,0,1,General Petite,Tops,Sweaters +941,35,,,4,1,0,General Petite,Tops,Sweaters +863,34,,,4,1,0,General,Tops,Knits +869,39,Love this top,This is such a lovely top. it is a bit sheer but i wear a cami under it. i wish it came in more colors because it is just so pretty!,4,1,0,General,Tops,Knits +1070,49,Slimming flowy pants,"I bought these pants expecting to lounge around the house in them. but once i tried them on, they were so figure flattering that i wore them to an outdoor dinner party (paired with a black tank top, silver accessories, and wedges) and got compliments galore. i still wear them to lounge in (they are super comfy) but they are also my emergency ""oh we're going out tonight, honey?"" pants. the only downside is that they need ironing when you pop them out of the wash (unless you are using them to loun",4,1,1,General Petite,Bottoms,Pants +949,33,Cute classic,Cute twist with the open back on a simple classic sweater... light weight...,5,1,0,General,Tops,Sweaters +941,41,Beautiful sweater,"This sweater is absolutely lovely. i bought it in the sky color which is so pretty, the picture just doesn't do it justice! the yarn is super soft and it seems as though it will be plenty warm this winter. i also love the retro 70's look. a definite keeper.",5,1,0,General Petite,Tops,Sweaters +941,22,"Beautiful yarn, bulky fit","I wanted so badly to love this sweater. the colors in the blue motif are fabulous and the yarn is soft and warm. but it does not fit me in a flattering way. i can't recommend a size, because the s and the m were exactly the same size and fit. the neck is broad and bulky and overwhelming, the sleeves have bulky cuffs that come down to my fingers, and the sweater slides across my shoulders. i'm 5'6"". it appeared overstretched, and i feared it would only stretch out more over time and not be worth",3,0,2,General Petite,Tops,Sweaters +949,55,Love this sweater!!!!!,"Omg i love this sweater. it is minimalistic yet romantic. my mother in-law bought this for me last may when she was visiting and one for herself. i saw it today at the store in white and i snatched it up. i will wear this for years. i did not see until now that is is meant to be worn with the ties in the back. i've been wearing it with the ties in the front. what a bonus that there are 2 ways to wear this wonderful sweater. i will wear these 2 pieces for many, many years.",5,1,8,General,Tops,Sweaters +825,34,Beautiful and comfortable,"Absolutely love this top! yes it runs big and is flowy but i think it is very flattering, especially with skinny jeans. loved it so much i bought the navy and wine colors for myself and the green for my mom. for reference i'm 5'7"" 115 lbs (33-25-33) and the xs fit well (falls just above my mid thigh).",5,1,0,General,Tops,Blouses +868,41,Charming and stylish sweatshirt,This sweatshirt is extremely comfy and stylish. i am happy with the item and it runs a snag large but perfect for a sweatshirt.,5,1,1,General,Tops,Knits +869,64,,The front of this top is pretty thin and you can see through it,5,1,5,General,Tops,Knits +829,47,"Good for weekends, not for work","This top's subtle golden shimmer from the metallic thread used in the detailing is really nice. flattering, a bit special, all in all nice. but the white is see through, and the green somehow reads much more casual, at least to me. so a good top for times when your top being sheer isn't such a big deal but probably not for the office.",4,1,16,General,Tops,Blouses +829,33,,,5,1,0,General,Tops,Blouses +941,56,"Beautiful color and tweed design, strange fit",The sweater is beautiful. i loved the tweed design. but the fit was boxy and the collar sat funny. so i had to send it back.,3,0,0,General Petite,Tops,Sweaters +825,34,,,5,1,0,General,Tops,Blouses +1086,26,,,4,1,0,General Petite,Dresses,Dresses +949,36,Love this sweater!,"I'm glad i checked out the reviews before purchasing - i went a size smaller and the sweater fit perfectly! i love the taupe color - it's feminine (not overtly so) and i can still use it as a neutral. the quality is really quite good, though i would still suggest keeping metal accessories (without smooth edges) away from the fabric. it's also not too heavy so i can still wear this despite the heat and humidity in honolulu. + +i think the only thing i would consider changing would be the materia",5,1,2,General,Tops,Sweaters +549,44,Great staple!,"I ordered this a little big because the smallest size that they had was a medium. i probably could have gone with a small, but given that i am a 34d on top (and @ a size 2 on the bottom & @ 120lbs), the medium fits me just fine. it is super soft, and you can wear it with just about anything. keep in mind that your midriff may show a bit depending on how high your bottoms are. however, i paired it with a white pair of skinny jeans with a cute belt (so a teeny bit of my midriff was showing at time",5,1,0,Initmates,Intimate,Layering +1081,39,,,3,0,0,General,Dresses,Dresses +949,56,Comfortable,"Love the natural fabric blend and the natural style, also the unique color of the taupe. i am a size 4 to 6, and the small fit great. if you prefer a more fitted look, could probably size down.",4,1,1,General,Tops,Sweaters +829,26,Perfect buttondown,"I almost bought this tank online, but decided to wait. once i saw it in the store, i knew i had to have it. i bought it in the ivory color, which is perfect. the gold details are subtle, and so pretty. i don't find it too sheer, as some of the other reviews have stated. the cut is so flattering, and it is easy to wear to work when paired with a cardigan.",5,1,0,General,Tops,Blouses +825,54,Perfect!,"Love love love this tunic. it has panels that don't really show up in the picture but the panels make it lay really nice. it's great over leggings and skinny jean cords. could even wear it with opaque tights. it's great for work, play or evening. i bought the navy blue with the heart print. i love it so much i'll probably get the green and the red when they go on sale. this is a pricey top. for reference i'm 5""3 128lbs. 32ddd fits great all the way around and the length is perfect - mid-thigh an",5,1,1,General,Tops,Blouses +869,35,,,5,1,0,General,Tops,Knits +825,26,Amazing quality!,"This tunic looks great in person whether you get the red, green, or navy. runs true and hangs well--the ruffle at the bottom is super flattering and the construction of this tunic is impressive! so good i had to get both the red and navy!",5,1,0,General,Tops,Blouses +941,60,Lovely color,"This sweater is a lovely color and very soft. however, the sweater 'sheds' terribly and the color is very large distracting from the overall appearance. it's also thin and whatever shirt is worn underneath will show through.",1,0,0,General Petite,Tops,Sweaters +941,65,"Comfortable, attractive, cozy sweater.","Beautiful, comfortable and attractive sweater! my neckline doesn't stay flat as the one in the photo does, but i love the sweater anyway. great quality, attractive, and comfortable.",5,1,0,General Petite,Tops,Sweaters +949,35,Rare stylish sweater,"I liked the look of this online, but it's even nicer in person. just the right length on the hips, a medium weight, and with enough interest and exposure on the shoulders to make it feel like a stylish option for a slightly cool night without falling into the too-heavy and makes-you-feel-dumpy category of sweater. like the slightly short sleeves too.",5,1,1,General,Tops,Sweaters +825,34,Unique and fun piece!,"I feel in love with this shirt online and purchased it right away. this is one of the those pieces that makes retailer my favorite place to shop... stylish, unique and beautiful. it is a bit full in the bottom so i sized down from my normal s to xs and am very pleased.",5,1,0,General,Tops,Blouses +1081,37,,This dress is a fun idea- but the one i received had misaligned pleating so a few of the rows of sequins were tucked into the pleat- it threw the lines of the dress off. i ended up returning it but i think it can be amazing if you get one that looks like th stock photo.,4,1,18,General,Dresses,Dresses +829,32,Classic and comfortable,This has a classic tunic style silhouette with delicate gold threads. it looks even better in person than online.,5,1,0,General,Tops,Blouses +1086,31,Comfortable cool,"Easy to wear, but still has a lot of style. i see this becoming a new basic.",5,1,4,General Petite,Dresses,Dresses +949,60,Perfect sweater,"Love this sweater for so many reasons; fits true to size, unique in design, versatile, soft and so easy to wear. i've worn it tied in the back and front. it goes great with a skirt or dress pants for work, date night and elevates the look with any of my jeans. i love haying clothes i can get the most out of. highly recommend this sweater!",5,1,0,General,Tops,Sweaters +825,36,,Got this shirt in the green color. it's long and flowy and fits true to size. super comfy.,5,1,0,General,Tops,Blouses +549,41,,The material is very nice. not flimsy at all which is nice. the problem was the fit around the arms. i am a petite person with a small chest but it still didn't cover me bra. i'll be returning it.,2,0,0,Initmates,Intimate,Layering +829,53,Very chic,"Bought this in white and the golden embroidery makes this piece very elegant looking. it is a bit sheer, but with a lace bra definitely very nice. that is the only con, i wish it would be not sheer at all. but it is too beautiful to send it back for that reason.",4,1,6,General,Tops,Blouses +949,56,New favorite,This is my new favorite sweater. soft and comfortable and easy to wear to both work and play. being able to wear different things under this makes it very versatile and easy to change looks.,5,1,1,General,Tops,Sweaters +829,58,"Such a great, classic top with a big issue","I really like both colors in this top. i love the way it lays, the length, the material, etc. what i don't like is that the arm holes are very large and shows the entire side of your bra. this is definitely a summer top so why would someone want to have to wear a cami when it's warm enough to go sleeveless? too bad, i would have bought it for sure.",2,0,0,General,Tops,Blouses +949,28,Love love love!,"I got the taupe and loved it so much i ordered the white and wore both this week alone! they are so cute and a great weight in this spring/summer weather we're having in the bay area. +the taupe is a normal medium and a bit roomy, so ordered the white in a medium petite and it's pretty great. just depends upon how you like to wear it - both are lovely. + +my advice? get two - today! you won't regret it. +order your regular size - don't size up or down!",5,1,2,General,Tops,Sweaters +825,26,,"Great tunic top! is longer than i thought it would be so i probably could have sized down, definitely covered my butt! but overall a great print and cute top. loving it!",5,1,0,General,Tops,Blouses +829,27,Very cute/feminine,"I got the top in green, it is very soft and comfy. it does flare out a little if you wear it untucked but looks really cute tucked into jeans or a skirt.",5,1,0,General,Tops,Blouses +829,27,"Sweet design, but too short to wear around","I liked the quality of the top and the design. but when i got a top that fit well across the chest, it was shorter than i usually like my tops, so i will be returning it.",3,0,0,General,Tops,Blouses +829,23,Perfect versatile top,This top is super versatile--i wear it with jeans on the weekend but it's also work appropriate. it's light and perfect for warm weather!,5,1,0,General,Tops,Blouses +1081,40,The dress looks very elegant on the website,"I was so excited to buy it online, but it come in a small plastic bag, and lot of pieces are missing on the one i got, so i had to return it",1,0,0,General Petite,Dresses,Dresses +842,26,Nice top but fabric not that good,"This top is very nice. i ordered it in black, it looked very good. the embroidery and pleated details give it a very nice look. the fabric, however, feels like heavy cotton. it didn't feel very soft and comfortable, it was a bit hard for me to wear because i usually prefer soft cotton. while i think this will retain it's shape and not stretch like softer cotton, i am sending it back. it felt a bit heavy to wear.",3,0,0,General,Tops,Blouses +868,59,Cute casual sweatshirt,This is very cute but runs small. my typical xs is too small all over. arms are short and top is short and tight. i'll order a small and hope it fits.,4,1,0,General,Tops,Knits +1086,35,Soft and flattering,"I love this dress. the pockets are great and the fabric is very soft and similar to other cloth and stone garments. i also love it's made in the usa. my only wish is that the chambray version was as great. (it's not - the pockets are cut bad, it's cut smaller in the chest, and made in china)",5,1,5,General Petite,Dresses,Dresses +816,44,So cute but buttons pop off,"Love this blouse, however upon every time i wear it, a new button pops off. i have had to replace every button!",3,0,1,General,Tops,Blouses +816,59,"Casual, fun use of plaid","The drape of this shirt is flattering, and i appreciate the longer tail in back. the fabric is light, and that is perfect for our fall transition here in so. california. with a sweater, it will be great in winter, too. so far, i've worn it with jeans and booties, and have accessorized it in different ways to dress it up or down.",5,1,2,General,Tops,Blouses +816,34,Poor quality,"Great looking shirt that i bought for my wife, but poor quality. the fit is great but the buttons literally keep falling off. first time my wife wore it two buttons just fell off. when she was sewing them back on she showed me and another button just came off with the slightest tug. its really too bad because it looks great otherwise.",3,0,1,General,Tops,Blouses +816,66,Great shirt,I love an all cotton shirt! feels great and has a bit of quirky styling without being over the top,5,1,0,General,Tops,Blouses +1077,36,Insanely gorgeous,I picked this dress up to take into the dressing room to try on without looking at the price tag. im typically a small and he dress in store was an xs but because of the wrap i figured i'd try it anyway. this dress is to die for! the xs fit me just fine (though the snap at the chest wouldn't stay closed but i thought it looked ok). i looked at the tag after falling in love with the dress but left the store without it. i'm contemplating purchasing it still because i can't stop thinking about it!!,5,1,1,General Petite,Dresses,Dresses +868,23,Practical and cute,I purchased this shirt in blue and i like it. the fabric is more of a stretchy/jersey material - didn't expect that. but the shirt looks decent on and is comfortable.,4,1,0,General,Tops,Knits +868,56,Poor fit,"I ordered this top on line. i wanted to love it, but unfortunately the fit was not for me. i am 5'9 with a long torso. this top was cut very wide and looks like a maternity top.",1,0,0,General,Tops,Knits +815,50,So lovely i bought two?????,"This top fits tts as shown on model. loose, flowy but the cut/details/flounce still give some nice shape. i usually take a s or m at retailer depending on the style/make. went with the small in this. i am 5'5"",narrow shoulders, ruler shape 34dd. no gaping in the front. fits gracefully flows with details that are classic and add the wow factor to this social or work appropriate top. so complimentary, it would flatter many body types. the neckline is juuuuussst right, i fasten the top button to make",5,1,5,General,Tops,Blouses +639,47,,"Luv this top/dress/coverup..runs a lil big...i sized down for a more fitted look to pair it with cropped skinny jeans! fabric is nice, comfortable and light!",5,1,7,General Petite,Intimate,Lounge +868,38,Love,This top is beautiful and i'm in love..but.. it'd huuuuggge! i'm always a large in retailer tops. im going to return for a med or maybe even a small ( which is unheard of for me) .... quality is great!!! get it just size down,5,1,0,General,Tops,Knits +917,41,Comfortable easy piece.,"So simple to throw on with jeans, or you could dress it up. the ruffles give it a little extra flair. nice and soft, really comfy. i haven't decided which size i am going to hold onto. i ordered in a small and a medium. small fits me great, and i am usually a pretty standard medium. i think it just depends on what look you are going for. wish they had it in a lighter color, like an ivory or pink. i think the ruffle detail would look nice with a lighter shade.",4,1,0,General,Tops,Fine gauge +895,28,Beautiful but a little short,"I got this in a petite xs; it's gorgeous and incredibly soft, great quality as well. my one little caveat is that it's very short; i'm 5'1 with a short torso and it still didn't get very far on me, but if you wear it with high-waited pants/skirt it's not a big deal",5,1,0,General,Tops,Fine gauge +868,33,,"Love this top! i tried it on in the store and instantly loved. i wore it and ordered it in another color. i bought my usual size but decided i'd like to have it slightly smaller for the next one, so i ordered down. it can go either way, it's quite flawy and roomy. cool for summer and supper flattering.",5,1,0,General,Tops,Knits +868,62,Everyone needs this,"This is my new favorite white top in my closet - the loose fit, flowy quality fabric, and effortless versatility are spot on for anyone's wardrobe. i took my usual size s - i wouldn't size down in this because although it's roomy in the torso, the sleeves and shoulders fit perfectly on my thin arms. everyone should have this beauty!",5,1,0,General,Tops,Knits +917,42,Comfortable & stylish,"I bought the blue in store and loved it so much that my hubby recommended i buy the raspberry online! i usually buy a medium in tops, but went with the small so it wouldn't be so flowy. fabric is soft and not itchy. i will be wearing these a lot this fall!",5,1,0,General,Tops,Fine gauge +831,32,Very pretty in person,"The top is quite lovely and good quality. i ended up getting a size 4, which fit similarly to the model photos. i am smaller up top and wide in the hips, but the shape worked well for my shape.",5,1,1,General Petite,Tops,Blouses +1098,33,In love!!,"I think this dress is my favorite purchase this whole year! it fits like a dream! i saw it in the store while it was full price and tried on an 8 (the only size they had left!). i typically wear a 6 or 8 in dresses, but the 8 was quite large, so i passed. after it went on sale, i ordered a 6 with my fingers crossed! glad i ordered when i did, as they sold out fast! fabric is a nice substantial weight, great for fall! the fit is great, not tight at all and more of an a-line on me, which is weird",5,1,1,General Petite,Dresses,Dresses +872,52,Pretty style,This style is very pretty and flattering. i love the flow of the material and the open shoulders are nice for the design,3,1,2,General,Tops,Knits +1033,37,Perfect,"I typically wear a 26 in jeans and in these i got the 25 and they fit perfectly. i ordered the 25 because i wanted a more fitted look and that was what i got. they are well made, a nice dark wash and with the size 25 a more straight fit and not boyfriend fit. i'm only 5'3"" so they come a little past my ankle when unrolled. i've worn them two days in a row and they haven't stretched out...highly recommend.",5,1,7,General,Bottoms,Jeans +1033,32,Size down,I usually wear a 27 in pilcro and for these i have to size down to a 26. the 27 was very large in the waist. they are a great dark denim color and look cute with the bottoms rolled up a little.,5,1,1,General,Bottoms,Jeans +895,39,"Nice, colors more vibrant in person","But i stil ldecided to pass. i would need the petite as it seemd long. also, there are other items i loved more, but if you need a cozy sweater that is different, this might be the one for you. the contrasting detaisl on the sleeves/collar are very nice.",4,1,0,General,Tops,Fine gauge +868,57,Nice top but too long in back,"I'm 5'7"", 135 lbs, slender bone structure. the medium fit well in the front but hung to the back of knees in back...just way too long. it would work best on someone closer to 6' tall.",3,0,0,General,Tops,Knits +868,42,Good and versatile white button down!,Much softer fabric than i expected. wrinkles easily.,5,1,0,General,Tops,Knits +912,42,,I didn't realize it had a tie around the waist. it seems too much material hanging in the front to tie at the waist. unfortunately the sash is attached and cannot be removed. it's very cute; just not for me. i will have to return (but sure i can find something else)!,3,1,1,General Petite,Tops,Fine gauge +820,48,Casual elegance!,I am so glad i purchased this top and read the reviews thoroughly. i am usually a 10 or medium in tops because of my broad shoulders (for reference 5'9 145 lbs and athletic build). i decided to size down to an 8. the top fits perfect and looks just as pictured. it is a bit more substantial then i expected. the details and embroidery are beautiful and make this top so uniquely retailer! it is casual in an elegant way. i will be pairing this with skinny jeans and/or white skinny pants. i cannot tell,4,1,0,General,Tops,Blouses +815,52,It's huge!,This is a beautiful blouse but it's gigantic. my bra size is 34d and i was swimming in a 2. the bust measured 42 inches at it's widest point. you can see the model is camouflaging the volume by holding her arms to the side. the fabric is pulled in an unatural way so the top is probably pinned for the photo. if you want this look go down 2 sizes. that much fabric is just not flattering on me so i am returning to the store. i'm passing on the 0 because the thin fabric seems like it will seriously,4,1,10,General,Tops,Blouses +815,50,,"I love, love, love this top! it is beautiful and very unique. the first day i wore it i got so many compliments! highly recommend!",5,1,0,General,Tops,Blouses +854,42,Runs big,I normally wear a small and sometimes a medium. even the extra small feels large all over and in the length. it's gorgeous though.,4,1,0,General Petite,Tops,Knits +820,43,Heavy fabric. large top,"I love the way this top looks in the picture and the embroidery is as lovely as it appears--very detailed. it is both subtle (not cheap looking) and special. + +as an earlier reviewer noted, the top is not see-through, a plus. + +the drawbacks, though, mean that i will be returning this top. + +1. the fabric is very heavy and does not drape well. i am a small woman with a large chest and ordered a size 0. the top is still loose, even in that size, and the relative stiffness of the fabric gives",3,0,3,General,Tops,Blouses +833,46,Stiff fabric,"I was so looking forward to receiving this in the mail! when it arrived, i was very disappointed. the color is more mauve than dusty pink, and the fabric is stiff and wrinkled.....not at all what i expect velvet to be (flowy and soft). the fabric seems very cheap for the price point. i usually like floreat, but this one is headed right back to the store!",1,0,0,General,Tops,Blouses +917,52,Edgy comfort,"I tried this sweater on and loved it immediately! it's super soft and comfortable, and very slimming. i tried my normal size s and an xs, and decided on the xs as the s gave it (and me!) a bit of a wider look. love the navy color!",5,1,0,General,Tops,Fine gauge +816,35,A mixed review,"The positive: light-weight fabric, interesting drape + +the negative: i'm tall and would have preferred if it was longer. the big drawback is the ridiculous buttons--three fell off the first time i wore it...and it fits loosely! they're held on by a single loop...ugh.",3,0,0,General,Tops,Blouses +868,35,Very cute and girly!,"I'm wearing this top today at work and i feel very cute walking through the hallways. it's a little long in the back, because i'm short, but overall i enjoy wearing it. it's comfortable, casual, girly, and well made. i'm happy with it.",4,1,1,General,Tops,Knits +831,51,A perfect white top,"A 3-season top that compliments jeans, dress pants, shorts & skirts. light-weight and double layered (so should you go without a bra the girls have protection). emphasizes nice shoulders, length just covers any belly flaws. i'm a 6-8 and could have gone small or medium here.",5,1,3,General Petite,Tops,Blouses +838,74,Very sheer and shorter than shown,"Beautiful print, however as the previous reviewer mentioned it is very sheer, much sheerer than the product shot shows. i was expecting to be able to wear a nude bra under this without a cami, however my nude bra was completely visible. +the top also ended at the middle of the zipper of my jeans, so much shorter than the tunic length shown, and the bottom half of the sleeves ballooned out much more noticeably in person (the top half of the sleeves are slim, and the bottom half are looser). +over",2,0,14,General,Tops,Blouses +868,34,Very versatile,"This top when pulled out of the box didn't look like much, the contrast of the buttons, wrinkly, shapeless... but, when i shook it out, tried it on i fell in love. it's so simple and versatile. prob the best white shirt i purchased this year, i'd say it pretty flowly, but that's the style and i love it. i am 5'8'' 128lbs and purchased a small. i would purchase again, and in other colors if they had them.",5,1,2,General,Tops,Knits +854,40,Size way down,"This is a beautiful top if you size way down. i normally wear a small in tiny tops. i had to buy an xxs petite in this top. even still there is a little extra material around the sides, but i've received a ton of compliments on the top.",4,1,1,General Petite,Tops,Knits +854,23,Just okay,I personally didn't like it enough to purchase but it is a well made top. in the photos i am wearing a medium and for reference my measurements are 38-30-40.,3,1,5,General Petite,Tops,Knits +868,34,I wanted to like this,"This shirt is adorable. +but...it didn't work for me! +i'm a smaller gal with a large chest (5'4"", 34g). i tried on the small, since it seemed so flowy and large. the sleeves were tight, yet the back of the shirt flowed way too much, making the shirt look huge on me. perhaps a more fitted back, and i would have been in love. +love the blue color!",2,0,0,General,Tops,Knits +917,31,"Beautiful sweater, easy!","I bought a medium, my usual size, and had to exchange for a small. i love flowy sweaters, but this one truly fits one size big. the arms and body of the sweater fit larger. beautiful sweater with jeans or legging- can't wait to wear!",5,1,0,General,Tops,Fine gauge +833,43,Soft and pretty,"Love this top, it looks just as pictured. the lilac color is just as it looks, which i am happy about. sometimes this shade ends up darker than it appears online, but not with this top. it is soft velvet, silky lining and hits right where it does on model. i got a pxs my usual size. i am 5'3. the neck is a bit tight once buttons are buttoned up, but again this is pictured. well made and very pretty. can dress up or down.",5,1,0,General,Tops,Blouses +816,56,Party in plaid,"This blouse is the definition of how to wear plaid and not feel like a lumberjack.. living in l.a. it's 90 degrees one day, and 60 the next. the lightweight fabric is perfect for our ever changing climate. it runs true to size and is very comfy. thinking of wearing it for thanksgiving dinner.",5,1,0,General,Tops,Blouses +912,40,Too disproportionate,"I love belted sweaters, but this was way too low in front. it hung almost to my knees in front. i'm not a fan of that look.",3,0,0,General Petite,Tops,Fine gauge +854,38,Beautiful embroidery,The embroidery around the chest/collar is lovely. but the lower half of the shirt didn't fit my post-pregnancy bod. it's going back.,4,1,0,General Petite,Tops,Knits +868,26,Purchase immediately,"I do not think i could express how much i love this top! it is so flattering and soft. i love that the bottom half is slightly sheer and a different fabric than the top. it is stretchy, which for me is a wonderful thing. i purchased the day it came in store. it is quickly prone to pilling though!! with the style of shirt it's not so bad, but kind of unfortunate for a top that is almost $100.",5,1,3,General,Tops,Knits +815,42,Truly outstanding,"I reserve my 5 star reviews for products that are made well, are a good value and have great style. this is one of those rare gems! + +the top is just beautiful in person. very lightweight, almost voile-like cotton, so soft and drapey (and yes, you will need a base layer, it's meant to be very sheer) and the crochet and lace insets all over the top are stunning. + +the fit is somewhere between tts and slightly oversized, but the shoulders are pretty tts which means it avoids looking like you're",5,1,25,General,Tops,Blouses +815,41,Just meh...,"I feel like i have a lot of blouses like this so it really needed to wow me to keep it. and while it is lovely, well made and very pretty and delicate...i just didn't feel like it was anything special. if you don't have a blouse like this, then it is a great find. but it is nothing super out of the ordinary... fit i feel is tts...i am in between a m and l...i ordered the l. lots of room in the body although i didn't like where the arms hit on me. they aren't wrist length but they aren't mid-fore",5,1,6,General,Tops,Blouses +1001,48,Gorgeous but pricy,"I found this skirt in a size 8 at my local retailer store. i admired it on the website but to see and feel it in person was very appealing. i tried it on and it fit beautifully, a style that looks great on my figure. i love the mohair weave of the color block sections. the negative is this skirt is really pricy but i had my birthday discount and since the size 8 was sold out online and this skirt must have been a return the chances of it going on sale in a size 8 were very slim. i am still admirin",5,1,3,General,Bottoms,Skirts +820,56,On the fence --- some problems,"The top on the model in the photo is a true ivory, but the top in reality is more beige. well, i'm blonde with fair skin, so i'm not sure this is going to work. it also looks more dressy in the photo than it does in reality -- i think the ivory color on the model and the pleats only down the front make it look more dressy -- but in reality, with it really being beige, having pleats everywhere, and being a crinkly fabric, it looks more casual. i had wanted it to be more dressy to pair with skirts",2,0,4,General,Tops,Blouses +895,51,"Unique, cute piece!","This sweater looks exactly as represented in the picture. the detail on the cuffs, neckline and hemline make it unique and set it apart from the typical patterned sweater. i've worn it twice already and i'm very pleased.",5,1,1,General,Tops,Fine gauge +895,25,Unique and cozy,"I was drawn to this sweater for its vibrant colours and unique pattern. i tried it on and immediately fell in love with the comfort, quality, and design. it is a little short, but this minor issue is easily fixed with by wearing a neutral colored undershirt/camisole. the cuffed sleeves reveal a matching pattern and can be rolled down or up. i usually wear a xs or s in retailer's clothes, but i sized up to a m on this one. definitely worth it. this is a festive winter piece that can be dressed up o",5,1,13,General,Tops,Fine gauge +838,73,Needs a better discription,"I was so excited for this to arrive. at the end of last summer, my favorite shirt (you know the kind - dresses up or down with ease - it's your go to for work or a night out with friends) was ruined and i have been searching for the perfect replacement. i thought that this would be a good contender, but i was ever so disppaointed when i opened the bag... + +firstly, the base color is not accurately represented in the photograph - in person its more of a peachy off-whte instead of white. still pr",1,0,19,General,Tops,Blouses +816,66,Soft and flattering!,"This is a very flattering blouse, but it should be noted that holding horses tends to run large in size, so order down. the fabric is 100% cotton, gauzy and light. it is very soft on the skin. i was a bit uncertain whether to keep it at first because it required a bit of adjusting in the way it falls once on, but i decided to keep it and i'm glad i did. it is nice looking with jeans and leggings because the back of the blouse is longer, and because of the lightness of the fabric, it does not app",5,1,3,General,Tops,Blouses +1033,65,Comfortable and stylish with great fit!,Finding boyfriend jeans that actually look flattering can be tricky. these fit the bill! not too baggy with a lovely side view silhouette and a front silhouette that does not make you look larger than you actually are - i instantly knew that i had to have these. look supercute with the legs rolled up or as shown in the picture. the denim is soft and the creasing and finish do not look too contrived. i sized down a size and the fit is perfect. highly recommend!,5,1,8,General,Bottoms,Jeans +820,34,Much lovelier in person,"A sales associate suggested this top and i'm glad she did. it's easy to miss at first! +------------------- +pros: +- beautiful detailing at the bottom that isn't as evident from pics here. it really sets the top apart. +- double-layered but breathable fabric means no see-through issues and can be worn in the hot summer months ahead. +- lace detailing at the top is nice and elegant. +- roomy without being too boxy. nice flow. +- great fabric. forgiving fit. +- can be dressed up or down. +- lengt",4,1,20,General,Tops,Blouses +838,36,I like it,"Based on other reviews i was hesitant to order, but i loved the colors and design in the blouse. it was on major sale so i took a chance and could not be more pleased. it is very sheer as other reviewers have noted so i was expecting that. i wear a cami under nearly everything so no problem for me. the colors are tdf and i can wear well into fall down here in south ms. there were a few strands of thread hanging from various seams but i gently clipped with scissors. if you are attracted to the to",4,1,0,General,Tops,Blouses +868,28,Loooovvvvveee,This shirt is so comfortable and flattering. the quality is really good but i would definitely size down. it's not too heavy and can be worn with skinny jeans/jeggings..,5,1,0,General,Tops,Knits +1098,39,My life is finally complete,"Now that i have this dress in my life i think my wardrobe is done. there is nothing but love for this dress as it hits all the correct points: great fit, flattering silhouette, comfortable fabric, shape enhancing cut, and the easiest casual style ever! i got the 10p and my body is 5'3"" 140# 36dd",5,1,0,General Petite,Dresses,Dresses +868,29,Soft blouse,"This is one of the softest blouses i now own. it feels and wears like a premium blouse. i love it, and it actually makes my backside look smaller too. even though it is flowy, it is true to size. if you have small arms and a chest than you could go down a size. this is one of my new favorite purchases, and i wear it with the cabled knit bomber and boots.",5,1,14,General,Tops,Knits +964,46,Geneva anorak,"The color and design/style are cute but i found this to be too oversized. if you want to layer it, then it might be for you, but i was hoping for more of a tailored look.",3,1,0,General Petite,Jackets,Jackets +465,23,Beautiful print,"The print on this top is even more gorgeous in person. the fit was great, and the removable halter strap is always a plus. this swim top, however, doesn't have padding, and the material is slightly thin, so this could cause an issue for some. overall, however, it looked great. for reference, i am an a cup, and purchase the small.",4,1,1,Initmates,Intimate,Swim +964,35,Channel your inner joanna gaines....,"This anorak is perfection! perfect weight, color, and the style is super easy to wear. i found this to fit true to size and not oversized at all. i'm 5""3, 130lbs, 32d with an average build/frame and i took a size small. i can comfortably wear a long sleeved shirt underneath or even a thin sweater. i think xs would have been too tight in the shoulders/bust. it fits perfectly and i love the inner drawstrings that you can pull to give it a little more shape. i got this during the 30% off promo!",5,1,0,General Petite,Jackets,Jackets +820,44,Fantastic blouse!,I love this top! the top has nice details and is not too sheer. it did have a smell at first but that's gone now.,5,1,0,General,Tops,Blouses +1166,26,Love retailer bathing suits!,Perfect fit and i've gotten so many compliments. i buy all my suits from here now!,5,1,1,Initmates,Intimate,Swim +868,52,Love the fabric and the hi-low style,"This is a subtle, classy shirt. i'm 5'7, 122 lbs and an xs fit perfectly. shirts like these, that don't fit snugly on my back cover my poor posture (genetic) and make me look like i am standing up straight. nice!",5,1,0,General,Tops,Knits +854,26,Like it but armholes are too big,"I like this top. it went well with my olive pant. i tried in l and xl. l was a tad fitted around my tummy. xl armholes were too big and neckline was too low. i really wanted to keep this top but the low neckline just didn't work. i am busty, perhaps it may work better for a slender frame. i recommend this top because it is pretty, but the fit is selective, so its best to try out a couple of sizes first.",3,1,0,General Petite,Tops,Knits +831,42,Just lovely,I am a petite person with broad shoulders and got this in a size small. i absolutely love it! it is similar to how it looks online but is even better in person. you could wear this with just about anything. so glad i bought it.,5,1,1,General Petite,Tops,Blouses +475,34,So comfy!,"This is an awesome bra! it has a reinforced cup underneath (although not an underwire), which i like. i was a little worried that it'd be huge, as i'm on the smaller side of the natori 36b in other bras, but it fits well and seems like it would accommodate b or c cup ladies. the lace is pretty and it is well made. i want more colors!",5,1,0,Initmates,Intimate,Intimates +1009,22,Cute but size up,"I tried on this skirt in stores and loved it. the only thing is, i'm usually a 2 or a 26 and had to buy a 6. for reference, i'm 5' 7 and about 120 pounds. if you want to tuck a light sweater or really anything in, i'd recommend you go up a size as well!",5,1,11,General,Bottoms,Skirts +1072,30,Happy with my purchase,"I recently purchased this dress and i am very happy with the quality. it is a little bigger than i anticipated, but nothing that can't be fixed with a cute belt! the embroidery detailing is gorgeous.",4,1,0,General Petite,Dresses,Dresses +1009,35,Sizing off,"Love the design, material, and color...the sizing as listed is waaaaay off (running small). returned to store (after purchase online) 3 times to get one that fits, which was at least generally easy :o",3,0,1,General,Bottoms,Skirts +824,32,Cute piece for fall,I ended up ordering this in a petite online after trying it on in store. i found the regular length to be a bit too long and flowy and i preferred it to be more tailored. it's very cute and on trend. can't wait to wear it with some dark flare jeans!,5,1,0,General Petite,Tops,Blouses +1009,39,Love,"This is a great casual skirt, i ordered the 0p or xs petite and it fit perfectly. both colors are nice, i don't think i could choose though i do have a taupe skirt, so leaning towards the slate color. the fit is also flattering, waist is snug, but not tight. the fabric is soft, could wear in the fall or even winter with tights. i recommend... (115 lbs, 26.5 in waist)",5,1,4,General,Bottoms,Skirts +1072,56,Fits the need!,"I was looking for a dress that was short sleeved but not sleeveless. this fit my needs--not too short, nice v neck (but not deep), pretty embroidery overall i like the dress. here are a couple of downsides--i wore the dress with tights--and due to the nature of the fabric (cotton) there was no 'glide' and therefore it rode up with the tights. also, it's a bit wide int he mid section. i wanted an 'easy' and not tight/form fitting dress, but this does have almost too much fabric in the mid section",4,1,1,General Petite,Dresses,Dresses +1072,39,Nice dress,For reference i am 5'3 121 lbs and i usually wear a size 6 or 8. i got a size small and it was still at bit large. my bf said it was a nice dress to wear around the house ( like a house dress). a bit pricey for that but the way it hangs it does look like a house dress or a bit like a sack. i kept it only because i was looking for casual dresses. i wore it out and got a few compliments ( prob cuz i never wear dresses). good luck.,4,1,0,General Petite,Dresses,Dresses +1009,34,Cute skirt!,"Like most of the other reviewers, i agree this skirt runs quite small. i had to size up 2 sizes. the waist is quite small (but there are parts that are elasticized (nicely hidden)) and the skirt flares nicely and maintains a structured yet flowing drape. i bought the skirt in both colors and it looks great both with and without the tie. i think it will work nicely year round, too.",5,1,1,General,Bottoms,Skirts +1072,25,Gorgeous detail,"I fell in love with this dress as soon as i came across it online. ordered the dress in a large and it fit perfectly. i'm smaller on top and larger at the bottom (pear shaped). the dress fit well and hid all of my ""flaws"". only problem was that it wrinkled very easily and im wondering if i received a dress that was sitting around for awhile since it was covered with lint and white fuzz when i received it in the mail. other than that the design was absolutely beautiful with incredible embroidery.",4,1,0,General Petite,Dresses,Dresses +1072,40,,"Nice design but very wrinkly fabric that doesn't fall well. also, as has happened to me before, retailer sent me a dress clearly worn/used and returned by someone else with hair all over it. you would think they would at least look at returned dresses to make sure that the returned clothes were free of stains and hair before they send them out.",2,0,1,General Petite,Dresses,Dresses +1072,52,"Gorgeous fabric, fit needs tweaking","The fabric is beautiful, the embroidery quite striking, and the length is perfect. however, the dress is a bit amorphous; and as others have mentioned, the sleeves are silly. so i took the dress to my favorite seamstress, and she added a couple of darts in the back and fixed the sleeves - voila!. these weren't expensive fixes, and now the dress is perfect.",4,1,0,General Petite,Dresses,Dresses +1009,60,Perfect everyday skirt,"Love this skirt! the material is so soft and flowy, but holds a nice a-line shape. i do agree with the other reviewers that this does run a bit small. i am a 26"" waist and purchased a 4... and i could probably have considered sizing up to the 6 easily as well.",5,1,3,General,Bottoms,Skirts +877,34,Meh,"It's a rather boring tank. i thought it'd be perfect under a cardigan for work, but decided against it. the fit is boxy, and does not look good on a girl with curves.",2,0,0,General,Tops,Knits +824,62,Love this shirt,"I love the colors. originally purchased a large for my broad shoulders and it was too big and too long for 5'4"". exchanged it for a petit medium and it fits great. will have to wait for cooler days to wear it since it is a heavy cotton and the weather is still very hot intexas.",5,1,7,General Petite,Tops,Blouses +877,22,Cute casual top,"The fabric at the trim and shoulders is crepe, which isn't clear from the photo. much nicer in person than online. runs large. i wear a large in knit tops (36d and to hide a soft belly) but this large was too big. armholes showed my bra and it was rather wide and boxy. i'll exchange for a m because i think i'll get a lot of use out of it this summer. a casual tank with a little spunk. cute!",4,1,9,General,Tops,Knits +824,49,Runs large,Definitely was disappointed in the fit of this potentially very cute shirt. just too large; too much fabric for me. i'm usually an xs and there was just no shape to that size for my small bod. i wouldn't have minded the longer length if there had been a better fit up top. i think the colors are also a bit duller in person. love the concept though!,3,0,4,General Petite,Tops,Blouses +1009,35,Nice basic,"This is a good basic casual skirt, and the grayish color is a great neutral. i saw it in store just kind of hanging by itself and decided to try it on. i usually wear a 6 in skirts, but always have to size up in hd so i grabbed an 8, which fit well. i will say it's definitely a little snug though, even sizing up. the fabric is soft and flowy, and will work well for both late summer and early fall. i'd recommend it.",4,1,2,General,Bottoms,Skirts +405,36,Runs large,"These run very large. i wear a 25 or 26 in paige jeans, and the 25 in these shorts were way too big. i fear if i got the 24 they would be a little short.",3,1,2,General,Bottoms,Shorts +824,70,Beautiful colors/quality material,Really pretty top. very different colors and style = nothing like anything i have. delivered in timely manner. highly recommend.,5,1,0,General Petite,Tops,Blouses +877,37,Cute but boxy,Cute top. i always get compliments when i wear it. a little boxy in style,4,1,2,General,Tops,Knits +1078,39,Too itchy too metallic,"This pretty bohemian dress is murdered by the horrible rayon fabric with metallic thread that feels like little needles pricking my skin. i have a pretty high itch tolerance as wool doesn't bother me too much. i'm not sure how most of the reviewers are tolerating this dress, even with the slip, which doesn't cover the arms and makes me want to tear this dress off. i decided to keep and wear as an autumn/winter dress in which i will remove the slip, wear a deep scoop neck long sleeve top undernea",3,1,0,General,Dresses,Dresses +1072,36,Poor fit,"I am 5'2 107lb and an xs petite.the embroidery was the only nice thing about this dress, but everything else was really unflattering -- the huge puffy sleeves especially. another reviewer said this was more like a shift, and she was right. not worth the price on sale.",1,0,1,General Petite,Dresses,Dresses +1009,28,Great summer skirt,Love this skirt! i did have to get one size larger than usual but the length was perfect on me and i love the color (i got the slate).can be dressed up or down.,5,1,5,General,Bottoms,Skirts +1009,33,Cute but not appropriate for work!,"I wanted this skirt to work! it is soft, comfortable, and cute! unfortunately, it runs to short. i am 5'8"" and would not be able to pull it off at work. i ordered a bigger size and it still didn't work.",2,0,1,General,Bottoms,Skirts +1009,35,,Saw this in my local and retailer store and had to have it! well made and easy to dress up for down. perfect with a light weight shirt tucked in for summer and early fall. i recommend sizing up one size.,5,1,2,General,Bottoms,Skirts +1009,43,Worth every penny!,"I bought this skirt in my local store when it first came out. i have to say it is one of my best retailer purchases ever. fits beautifully. works with a tee, tank, denim shirt, and more! i get so many compliments every time i wear it. will be wearing for many summers to come! runs tts. i am 5'10"", 155 pounds and the 8 fit perfectly. it is not too short for work, but my legs do need to be tan to wear it.",5,1,0,General,Bottoms,Skirts +936,56,Pop sweater,"Great quality- this sweater runs small and not as long as pictured in the catalogue. it's perfect over a longer undergarment underneath or over a sleeveless dress. i love the color & quality. i ordered on line & decided to keep it, yet wear it differently than i originally thought.",4,1,1,General,Tops,Sweaters +860,35,Runs large,"I absolutely love the look of this shirt with the built in layering piece. the overall garment is lightweight and not too heavy even with the added layer. however; this runs really large. in general, this brand runs large for me and i would say that if you are used to this brand, you can stick with your normal sizing for this brand. however; compared to other brands it runs very large. i think it would work fantastic for me in a different size. it is not at all fitting so it would be more like a",3,0,17,General,Tops,Knits +1009,33,Statement piece,Such a cute skirt. it has a touch of whimsy with this tropical flare that makes me feel pretty. it fits well and it is true to size.,5,1,0,General,Bottoms,Skirts +936,34,Super cropped sweater,I was so excited to get this in the mail... and loved everything about it except for the fact that it was only as long as one inch above my navel! i don't know why it looks like a normal length on the model. im returning it.,1,0,1,General,Tops,Sweaters +189,36,Comfortable and beautiful!,"My review is of the ""black motif"" (no longer listed online, but i saw a bunch in the clearance sock bin at the georgetown dc store, today, 12/27/2015). + +i love beautiful and unique socks! so i thought i'd give these a chance. i like them so much that i bought 3 more pairs of the exact same sock now that they're on sale! + +two things i noticed... the way the sock is knit, when you put it on, it no longer has a matte black look in the black areas. it is sort of a stretched, slightly two-tone look.",5,1,0,Initmates,Intimate,Legwear +1028,32,,These are the best jeans ever! never wore pilcros before and only ordered them because they were on sale. so glad i did! now i'm hooked!,5,1,0,General,Bottoms,Jeans +825,42,Embroidery love,"I gave this top 5 stars for the embroidery and fit around the chest/shoulders. i wish this top was a little longer as the xsmall was just too short. (i'm 5'6"" and run long-waisted.) the small fit better in length...the way it does on the model.",5,1,7,General,Tops,Blouses +860,44,Too big,"Loved the color and looked super cute in the photo but when i got it home it was way too big in chest area, waist area & too wide at bottom. i'm pretty small but i'm not sure what the right body shape would be for this.",3,0,0,General,Tops,Knits +860,57,,,5,1,0,General,Tops,Knits +936,46,Perfect pop of blue,I am so glad that i got this sweater.it is just perfect!,5,1,0,General,Tops,Sweaters +936,49,,,5,1,0,General,Tops,Sweaters +1009,36,Love it,"Skirt fits true to size, i bought a regular size 2 even though im only 5 feet because i didnt want it too short. the size was perfect as it hit right above the knee. bold, vibrant color and great quality! also very unique, which is what i look for at ahtro. recommend, give it a shot!",5,1,0,General,Bottoms,Skirts +1009,31,Beautiful but not for petties,"This skirt material and quality is top notch. i'm not a ""mustard yellow"" fan but the color combo in this is just stunning! i'm 5'4"", 125#, 27/4 usually and picked a 4 in this which would have been correct. the top bad is very thick so it was just too much at my waist. in the modeling pick she is covering about half the band with her tied tank top. this would look beautiful on anyone approx 5'6"" or over i think! oh, and the drape is beautiful, not super full.",3,1,13,General,Bottoms,Skirts +912,34,Sparkle,This has a sparkle that you can't see in the pictures. i returned it. the design is cute but not worth the price.,3,1,0,General Petite,Tops,Fine gauge +1009,26,Perfect for summer!,"After a rough day at the office, i went into my local retailer to seek out some retail therapy. i stumbled upon this skirt and knew i had to try it on. though it's more than i normally like to spend, it was well worth the price. material is lightweight and comfortable yet substantial enough for work. fit is spot on (i have wider hips and a smaller waist, which typically makes me a size 12 and that's what i bought). the color is a gorgeous mustard yellow that can be paired with all sorts of colors,",5,1,12,General,Bottoms,Skirts +1009,31,Gorgeous and happy,"With a skirt so vibrant, it's hard not to feel happy wearing it. i tried this on in store, following a spring fashion show. while i usually need petite sizes for length/proportion purposes (i'm 5'4, slender build), the regular size 2 was a great fit and length. any shorter and it may have taken a bit of the elegance away from the skirt (and i don't necessarily mind a shorter length, but this was beautiful as it was). the price is a bit steep, but the quality of the material justifies it. the one",5,1,3,General,Bottoms,Skirts +1009,36,,"It's absolutely beautiful! it's a bit more than what i want to pay for a skirt but it's worth every penny. i'm a true size 4, 130 lbs and 5'4"" and it fits perfect. very versatile.",5,1,1,General,Bottoms,Skirts +1114,78,Oh la la.... so chic!!!!!!,"I have a gala to attend next weekend and can't wait to wear this beautiful cape. i'm a big fan of nanette lepore +clothing and this cape does not disappoint. it is absolutely beautiful....chic and elegant.",5,1,0,General,Jackets,Outerwear +993,32,So pretty!,"I love this skirt for so many reasons! +one, it isn't a circle skirt, per se, which is good. i am hip heavy and don't need extra volume at my hips. so while it's called a circle skirt, the description states that it's a-line. based on that, i was willing to risk it. also, i am 55 and tend to stay away from above the knee dress and skirt lengths (just my personal preference). although i am only 5'2"" i ordered the regular size 10 for the extra length and it's exactly at my knee; perfect for me.",5,1,0,General,Bottoms,Skirts +860,47,"If you have a chest, beware","I got this top in my typical size medium and wanted to love it...it is such a good idea and i loved it on the model! however, it failed in translation for me, and i will be returning. the bottom of the top is very loose, but the top clings to my chest (36dd), pulling awkwardly and gapping on the sides. not worth exchanging for a large, since the bottom of the top is already to loose..",3,0,1,General,Tops,Knits +867,37,"Beautiful fabric, very casual","This is a beautiful sweatshirt. that is a sentence i've never said before! mine arrived with the sleeves rolled up, which made me think they probably pulled it off a mannequin or something. it made the sleeves sort of loose at the bottom, so i am hoping that they will ""draw up"" a little once i wash it. kind of bummed about that: for almost $100, they could have at least steamed it out or something so i could see the authentic fit. the sweatshirt is a little more square-fitting than it looks in t",4,1,2,General,Tops,Knits +912,42,Cute sweater,"Don't judge the sweater by the model. it's an unattractive ensemble. the sweater is very pretty on. it's lightweight with a cute design on the back. i wear with skinny jeans or leggings. it runs a bit wide at shoulders but i'm petite so it could just be me. also, it says dry clean i think. but i put in a mesh bag and washed on delicate cycle by itself. then laid flat to dry and it was fine.",4,1,0,General Petite,Tops,Fine gauge +936,54,Attractive boutique sweater,You just need to be a little more careful but the unique popcorn stitch makes this an attractive statement sweater. i am 5'4 and 127 lbs and was a little surprised how cropped the cut on the size small was compared to how it appears on the photographed models.,4,1,12,General,Tops,Sweaters +867,35,Strike out,"I've been waiting to purchase this top for some time, thinking it would be perfect weight for fall/winter. i'm pretty disappointed. since i don't live close to an retailer, i typically order a size up to avoid returns and usually end up with items that fit just right or a little loose which is no big deal, this sweater however i was swimming in, like a child in an adult sweater! it was huge! and not to mention unflattering on my short fuller shape. i wasn't impressed with the material either, it f",2,0,0,General,Tops,Knits +867,33,Not for me,"I was so excited to try this on--but this was a big nope for me unfortunately. i ordered both an xs and s (i normally wear a s), both hung horribly on me, they were just too big. i love a boxy, oversized silhouette but this sadly didn't flatter me in the least.",3,0,1,General,Tops,Knits +1009,54,,Beautiful skirt! dress up or down! colors are lovely and enable one to wear many different tops. lightweight. perfect for casual or summertime work.,5,1,6,General,Bottoms,Skirts +867,40,Love!,"To be honest, i bought this sweater as an add-on so i could get free shipping; however, it's the only piece i actually kept from the order! this sweatshirt is warm (fleece-lined) and just the right amount of billow. but the best part is the subtle lavender color; when i ordered it, i didn't even realize i ordered lavender (again, i wasn't paying much attention to this piece!), but the color and texture are so soft...definitely a must buy! for reference, i am 5'3, 110 pounds and the xs (my usual",5,1,0,General,Tops,Knits +860,46,Did not like the shape,"The quality of the shirt is top notch. the fabric is lightweight and comfortable. +now the cons: +this top is cut like a square and fits wide which is not apparent in the photo. definitely not for me.",2,0,14,General,Tops,Knits +189,34,"Comfy and cute, high quality socks","I love these socks so much! i ordered the beige and red pair with the polar bear design and they are my new favorite socks. these are comfy, with great stretch and just the right amount of cushion. however, the best feature is the cute little frill around the cuff! i want to order more, but i don't care for the other designs as much as the pair i ordered. instead, i will be keeping an eye on this brand to see what they come out with next!",5,1,4,Initmates,Intimate,Legwear +993,22,Runs pretty true to size,I tried on an 8 and a 10 and both worked perfecto. the 10 had just a tiny bit more room to tuck in a shirt with.,5,1,0,General,Bottoms,Skirts +881,57,Cute top!,"Purchased the gray patterned top. seemed to fit tts, but it didn't fit me. i'm an athletic build with a 34d bust and it just wouldn't fit right around the shoulder/neck area. i'm pretty confident it would fit someone who is less busty than i. the double-sided fabric was soft and felt like it would wash/wear very well. nice length all around...top and sleeves.",3,0,0,General,Tops,Knits +967,53,Rich color blend,"I'm 5'3, i ordered the petite (nice to have this option), the length/volume doesn't overwhelm me as some kimonos do. this feels more like a fall-season kimono due to the fabric content. it is not a wispy fabric, there's weight and some stiffness to the drape, you can see on the model how the fabric stands away from her body. it's a different look from silky feeling kimonos that hug the body. a rich blend of blue, black, white, subtle tan, maybe some silver grey - hard to tell, the colors look li",5,1,2,General,Jackets,Jackets +1009,26,Just as expected,"Had been eyeing this for a while. print is beautiful in person, just as pictured. tts fit (size 8, 5'7"", 150#, pear shaped). comes within a couple inches of my knees so long enough to wear to work.",5,1,0,General,Bottoms,Skirts +867,33,"Promising, but frumpy","I so wanted to love this sweatshirt. it is very soft and seems like excellent quality and material. the pattern is pretty, and i envisioned spending hours cuddled up reading in it. unfortunately, the body of the sweatshirt (particularly the front torso area) was too big, and it popped out around me like a balloon. the arms fit well, so i don't think that i could have gone down a size. i was also not keen on the way the neck hung, which was either very stiff and tall around my neck when unfolded",2,0,0,General,Tops,Knits +1009,56,,,5,1,0,General,Bottoms,Skirts +1009,62,Tropicale paradise,"Fabulous colors, great fabric, super comfy and extremely versatile. i love, love, love this skirt. although i'm only 5'1"", the regular 2 was still above my knee so it might be a bit short for really tall gals. the waistband is a bit wide, but with a cropped top or tying a button down as shown, i found it very flattering. love the texture of the fabric and the slightly retro print and it doesn't seem to wrinkle (after getting out the original packaging creases). it honestly goes with everything a",5,1,3,General,Bottoms,Skirts +867,63,"Bulky, unflattering",I was surprised by the other reviews. expected to live in this all winter but found the style bulky and awkward. the hi-low cut with so much bulk just wasn't flattering. i wish the armholes had been larger so that the body of the shirt would have fallen closer to my body. the armholes are the size of a fitted shirt which pulls the shirt wide rather than allowing it to drape a bit more. it is incredibly soft but just not as comfortable as i'd hoped. it went back.,2,0,4,General,Tops,Knits +936,66,Lovely long cardi,"Love the knit. contrast stitches add interest. quality is great and it is true to size. very happy i made this purchase, especially because i caught it on sale after eyeing it for months. great with denim or a black dress.",4,1,0,General,Tops,Sweaters +867,45,,I love this cozy and comfy top. it is oversized as the name says and implies - but i normally wear an xs in most retailer tops and i chose to get a small - and i'm glad i did. it is boxy and oversized - but also short. the small is perfect for me and it really feels so cozy as is - and big enough to wear a tee or tank under it and not fee clingy.,5,1,3,General,Tops,Knits +825,54,Sophisticated top,As a texas girl growing up with cheap hand embroidered tops from mexico - this is a treat and takes that style to a new level. quality fabric and workmanship in a unique sleeveless design! perfection.,5,1,6,General,Tops,Blouses +1009,52,,,5,1,0,General,Bottoms,Skirts +1009,35,"Beautiful, versatile skirt","Aside from the beautiful colors what drew me to this skirt is the wide waistband! i love that it can hold in a bit of a tummy and accommodate a belt (or not). when i received this in the mail a few days ago i immediately started pulling articles of clothing out of my closet to go with the skirt - a striped tee, chambray top, belt, denim jacket. the quality is great and it has pockets. i have a 30"" waist and went with my usual size 8. i am 5'5"" and ordered a petite. so it hits a couple inches abo",5,1,6,General,Bottoms,Skirts +825,53,Not flattering on me,Fits like a maternity top. not for my age group or build.,1,0,0,General,Tops,Blouses +936,37,Love the popcorn sweater!,"After reading the reviews, i decided to size up to a m (instead of a small). so glad i did - the arms are a tad long, but other than that it fits perfectly. love this in yellow :).",5,1,1,General,Tops,Sweaters +1009,31,Favorite skirt!,"I love this skirt. i usually don't buy skirts of this cut because they make me look hippy. but the fabric is so lightweight and flowing, and yet it has structure. the colors are great and go with many top options. i wear it to work and casual outings. it is my favorite clothing article in my closet right now.",5,1,1,General,Bottoms,Skirts +1009,31,Love,This skirt is perfection. i am 5'8 130ibs and the 2 fit perfect. the picture does not even do it justice. it is much more softer than i thought it would be. in the picture it seems stiff looking but that is not the case at all. can't wait to wear this skirt for the summer. you can dress it up with a nice blouse and heels or keep it casual with a relaxed tee and sandals. i will defiantly get a lot of use out of this piece!,5,1,1,General,Bottoms,Skirts +867,39,Stylish casual,"It's a sweatshirt that isn't typically sweatshirt looking. first, it's spacedye. then there's the hi-lo hem. it's mock neck and it's wide neck. sleeves are low and cocoon-y. it's oversize in looks but not overwhelming. i love that i can throw this on over jeans or leggings, step into a pair of flats or trainers, whip my hair up into a bun and head out without looking too sloppy.",5,1,0,General,Tops,Knits +860,27,Cute tank,"This is a super cute tank- fits good, flowy and airy which is exactly what i had in mind for summer. fits good.",5,1,0,General,Tops,Knits +967,52,Nice accessory piece,"First of all, this doesn't come with a belt of any kind. that's a good thing, too. i am surprised that the stylist put one around this kimono. it looks odd, and, frankly, takes away from the shape of the piece. having said this, though, it is a nice accessory for basic tanks, t-shirts, and other tops and dresses that need a little umph... +the kimono is blue, mostly, but it really doesn't appear to be ""striped"". it is sort of a line of small dots. it is sheer, but the polyester fabric has some bo",4,1,15,General,Jackets,Jackets +936,34,Great fall/winter sweater,"This sweater is a great, comfy fall or winter sweater. in several of the pictures the neck is folded down, so beware that the neck has a bit of a turtleneck/mock neck look to it. it can be folded down if that's not the look you're going for. cute sweater!",5,1,1,General,Tops,Sweaters +936,54,Cute but poorly made,Weave on the sweater quite open and easily snags . the first day i wore it the seam on the sleeve began to unravel. needed to use a crochet hook to reweave after the first wearing. not confident that it will hold up well to its first wash.,2,0,21,General,Tops,Sweaters +860,37,,Super cute shirt. really flowy on the bottom - good if you want to hide your middle. great quality material.,4,1,0,General,Tops,Knits +867,37,,"Super cute, a little buggier than expected but great for layering after the gym.",4,1,0,General,Tops,Knits +936,32,Fell short,This sweater is amazing. color is vibrant. quality is high. but i have a super long torso and it fell short on me. if you are shorter this will be amazing. sad to send it back.,4,1,3,General,Tops,Sweaters +936,24,Disappointed,"I was really excited for this sweater, its not terrible but its not great. the sweater was large making me feel like a blob in it. it is warm and the fabric is pretty there was just no shape to it. i would try a different sweater.",3,0,0,General,Tops,Sweaters +842,36,Gorgeous and unique,"I love everything about this top. it is high volume and looks good with either a skinny pant or a structured voluminous pant. very sharp, but feminine and frilly look. i love the juxtaposition.",5,1,0,General,Tops,Blouses +886,33,Everyday staple,"Love this top. comfy, soft, and a great length. slightly longer in the back, and works great with leggings or jeans. i love that is has long sleeves. i wish it came in more colors.",5,1,0,General Petite,Tops,Knits +1008,54,Versatile skirt,"Just grabbed this today! great find. i paired it with a white blouse with blue polka dots....will pair with anything though, with great neutral colors. white or blue jean jackets, sweaters....the skirt has a little stretch for my hourglass figure, but would work with any type body i think. a many season skirt, perfect for traveling.",5,1,3,General,Bottoms,Skirts +1008,49,Really flattering,This is a fantastic skirt and very flattering. i plan to wear this with boots as shown on the model as well as sandals when it gets warmer. i would say that it does run true to size.,4,1,0,General,Bottoms,Skirts +824,44,Perfect find,I got this for my daughter (teen) who had been wanting this plaid look but didn't want to look like a lumberjack! this is feminine and can be dressed up or down. it has the high low look that she loves and it is comfortable and machine washable! she will get a lot of use out of this purchase! new item but black friday discount! yay! purchased in red color.,5,1,0,General Petite,Tops,Blouses +635,28,Can't wear a bra and it is see through,This is a great dress if you don't want to leave the house or you want the world to see your nipples.,1,0,0,General Petite,Intimate,Lounge +1075,28,Beautiful,I wore this dress for my small winter wedding and it was perfect! i thought it ran a little large though because i had to return it 2 times to get the right size! once i got the right size it fit perfectly. i loved the champagne color and shine.,5,1,0,General Petite,Dresses,Dresses +1008,31,,,5,1,0,General Petite,Bottoms,Skirts +825,34,"Beautiful, but not for me","The picture is not a good representation of the cut and the fabric. the cut is a-line, trapezoid-shaped. the shirt is smallest in the shoulders and chest and then it flairs out to the sides. the cut works with pants mostly, you have to tuck the shirt in if wearing with skirts. the lace back drapes beautifully and is a little longer than the front, which again lend to wearing with skinny pants and such. +the fabric has a quality of freshly starched. pleasant surprise. it lacks softness of leisure",4,1,9,General,Tops,Blouses +1094,53,Perfect maxi dress,Very flattering dress in a comfortable material. the cut is perfectly placed. this is very long. i'm 5'11 and in flats this touches the floor. easily dressed up or down with the tight accessories.,5,1,0,General,Dresses,Dresses +872,62,Itchy and odd fit,"I was so bummed when this came in...the colors and print are beautiful, but the neck is super itchy because of an elastic/ruffle combo. there is also a liner which is a nice touch, but it's significantly shorter than the top layer which drove me nuts. definitely going back.",2,0,3,General,Tops,Knits +824,39,Petite all the way,"If you are on the shorter side, do with the petite size. i ordered both (at first, petite was sold out) so glad i got to get it. i looked lost in the regular size, the back length was well below my bum. both colors are really nice, but i did end up with the orange one, more ""dressy"", red one looked more calsual (though it is a casual shiryt, i had on trousers, and hte orange looked nice with them).",5,1,0,General Petite,Tops,Blouses +824,33,Quality could be better,"I finally got my backorder today. i have a feeling that they might have rushed to make these and cut costs during production because as per all the reviews, i ordered my usual xs (122 lbs, 5'5"", 32d) and it just fits. all reviews previously before the backordered shirts were sent out, stated that the shirts ran big and people who normally wear a medium, bought an xs. i will keep my xs, but i would have purchased a small for a roomier fit. i have to wear a tank under it because it's short in the",4,1,0,General Petite,Tops,Blouses +855,43,This top is just meh,Wasn't crazy about this top. it looked great online but in person it's just a boring and lifeless top.,2,0,1,General,Tops,Knits +824,38,"Recommend, reservedly","I'm not sure how i feel about this shirt. i love the fabric, which is soft, lightweight, and richly colored. the polka dot trim is quirky and fun, and i like the idea of the twisted hem. the cut is generous in width, for sure; i ended up ordering a small because i swam in my usual medium-to-large sizes, but the length of the small barely works. the sleeves are juuuust long enough, and the shirt hits me just at the hip, not nearly as far down as the model shots show. it may be because i'm busty a",4,1,0,General Petite,Tops,Blouses +872,44,Odd neckline,"I loved the color and design until i tried it on in the store. i am 5'5"" with a slender build. i tried my usual xs but couldn't manage to put this shirt on me without risking smear my makeup or scratch my face by the elastic band at the neckline. the band is so small even fully stretched out. i have a normal sized head just in case you wonder... i gave up after wrestling with it. i can only imagine how uncomfortable to wear something with a tight elastic band choking me...funny... but not funny.",1,1,0,General,Tops,Knits +824,47,Perfect shirt!!!,I love this shirt. it is great quality and hangs perfectly! please make more colors in this one. i would buy all of them!!,5,1,0,General Petite,Tops,Blouses +859,45,,,5,1,0,General,Tops,Knits +886,41,Very flattering!,"I bought this shirt because i needed something lighter to where in autumn and needed to layer. i wasn't expecting so much out of a tshirt. the material is great. it's comfy and oh so flattering on any figure. i ordered the green one, and it was greener in person than online, but a very lovely color. it layers great, and is longer than expected. almost dress length. i'm not a tights wearer, but it would definitely go great with tights or leggings, and it worked fabulously under a wrap. great prod",5,1,0,General Petite,Tops,Knits +824,48,Flannel meets funky,"Love this top! a new take on traditional flannel. yes it is pricey for flannel, yes it is not thick like a traditional flannel shirt but it is feminine, sexy, comfortable....even my husband liked it on me. i ordered a regular small, wish i would've went for a petite x-small, however they are sold out. regardless i am keeping :-) for reference i am 5'3, 110-115 and the small is definitely roomy.",5,1,0,General Petite,Tops,Blouses +859,66,Looks just like the pic,"The fabric of this top is a tee shirt, mid weight material. it has a nice drape and the color variations along the vee are true to the photo. i purchased size large and it's a bit wide and long for my frame. you could safely size down. the fabric drapes nicely but i didn't like the sleeves or length and it fits large so am returning.",4,1,0,General,Tops,Knits +635,42,See through,I tried the yellow striped dress on in the store and it is completely sheer.,3,0,7,General Petite,Intimate,Lounge +824,29,Disappointing,"Ordered this top online and wanted to love it but the fit was very off. i love the drape in the front, but it did not hit in the right place. the fabric was soft, but not as high end looking as i was expecting. i love flannel tops and wanted a more formal look, but sadly this is going back.",3,0,0,General Petite,Tops,Blouses +824,37,"Beautiful, but not flattering","When i first saw this shirt online i was so excited! it reminded me of why i love shopping in the fall! unfortunately when it came i was so disappointed. in person the fabric and the colors are gorgeous. it's fairly lightweight for a flannel but so soft and comfy cozy. i love the navy/cream polka dot that is on the inside of the cuffs and collar as well, and the buttons are cute too! when i put it on it was so comfortable, but it made me look like i was pregnant! especially from the side it just",3,0,0,General Petite,Tops,Blouses +824,52,Draped plaid buttondown,"Great top - i have both colors. because the front is 'short' i ordered a medium. i usually wear a small. if you are not long waisted, like me, order the small.",5,1,1,General Petite,Tops,Blouses +635,51,Slouchy,"My 3 daughters and i all wear a size small and are heights range between 5'2 and 5'10 . this dress was sloppy on every one of us. i don't think a size x small would have made a difference. the length is all over the place .i""m not sure how or where you would fit a bra into the picture. on the positive side was very soft. it may work as a beach cover -up.",2,0,0,General Petite,Intimate,Lounge +1008,66,Great look/ light weight,This is an amazing looking skirt. it has such an exciting pattern on it and is very flattering. it is very light weight though....almost flimsy. but...it is not a deal breaker. i wear it and love it!,5,1,1,General Petite,Bottoms,Skirts +635,46,Striped tank dress,"Tried this twice in yellow because for the price it seems like it would be such a useful piece, but the quality is below average for an retailer dress. it's just a shapeless, thin, beach cover-up that i could've picked up anywhere. the yellow color is so cute though. if you're looking for a light, breezy, go-to-the-beach dress that you can shove in a bag with your towel, this might be good for you, but it's too thin for just about anything else.",2,0,0,General Petite,Intimate,Lounge +886,60,Greatest top ever!,"I took a chance on this in green, extra small (one size smaller than my normal size) because that was all that was left and i thought i could wear it under another sweater. no, it's too awesome to waste as a liner. it's the most amazing cut and fabric. it so flattering and so soft. + +please bring back this top!!!!",5,1,0,General Petite,Tops,Knits +824,35,So soft and cozy,"I love this for a casual winter day. the fabric is so soft. the draping gives it a unique look. so cozy and nice. it's a bit big, though. opt to size down.",5,1,0,General Petite,Tops,Blouses +635,36,Very sheer and see through,"I purchased this in the yellow xs. it is very comfortable, but extremely see-through. you'd have to wear a slip or something underneath it, but i'm not sure what would work based on the style, and even if i wore a strapless bra it was still see-through. unfortunately i had to return it.",2,0,0,General Petite,Intimate,Lounge +824,47,Beautiful!,This is a gorgeous buttondown. the colors are stunning - i love the mix of blue and brown. the fabric is super soft and drapes just right. i feel the this shirt runs true to size. i'm an xxs petite and it fit perfect. this one is a winner!,5,1,0,General Petite,Tops,Blouses +824,41,Love the twist bottom,"Got this top in the blue/orange plaid. its super cute and i love the style much better than your typical straight button down plans shirt. +i highly recommend it!",5,1,0,General Petite,Tops,Blouses +855,48,Sheer shoulders,One can't tell from the picture but the top shoulder part is sheet and transparent. it also is very long almost dress length. feels less quality than what retailer usually carries.,1,0,1,General,Tops,Knits +346,41,Beautiful color,I purchased the bright red color of this bandeau top. the color is vibrant and the overall style is very cute. unfortunately it made my chest look too big... but the quality is really nice and i'm sure it would look gorgeous on other body types.,4,1,1,Initmates,Intimate,Swim +986,40,Beautiful but won't last!,"I feel in love with this piece. the color are gorgeous and i received so many compliments. it lifted my mood just wearing it! sadly, ut the end of the first wear i had a run up the front and by the middle of the second wear the light fabric got caught on something and a hole developed. upon further inspection i found another hole at the top where the price tag must have been attached. i also noticed all over pilling after the first wear! so sad! they should recreate this in a heavy fabric.",1,0,1,General,Jackets,Jackets +1016,45,"Poor zipper, beautiful skirt","I tried on the skirt today in the store and immediately fell in love with how fluid the fabric is and how it looks and feels on, but i had something really awful happen, the zipper was hard to zip up so i just left it partially zipped but close to the top but then when i try to take it off the zipper broke and split down the middle but it was stuck on me! it was the strangest thing that i've ever had happened, and really embarrassing because i had to come out of the fitting room like that to get",4,1,7,General,Bottoms,Skirts +986,45,,"Read the reviews and thought i would just remove the label asap to prevent snags since i loved the item! +however, the item came with unrepairable holes, not just snags and they are either on the neck or front sleeve which forces me to return the item asap. didn't even try it on. so sad, but i still love retailer!!!",2,0,0,General,Jackets,Jackets +1110,42,"Beautiful fabric and flow, but it's like a tent","I am 5' 4"" and 120 lbs. i bought the xs as my frame is a bit on the smaller side, but the cut is huge. a pregnant woman could easily pull this off as a very cool maternity dress. i can see it being so cute with a pair of boots or sandals. i wanted to get the xxs, but it's sold out so sadly will have to send it back. but if it works for you, definitely buy it!",4,1,3,General Petite,Dresses,Dresses +850,41,,My favorite for work or going out. the perfect black shirt.,5,1,0,General Petite,Tops,Blouses +986,43,Quality does not merit cost,"I generally don't write bad reviews, but there is a real discrepancy between the quality of this kimono and the cost. the design and colors are great, but the fabric is ripping on all the kimonos on the rack in my store where the manufacturer's tag is at the back of the neck. the material is very thin, so there are other small holes beginning throughout the garment. i shop at retailer all the time, and this is not a $98 item of clothing.",1,0,108,General,Jackets,Jackets +1016,49,"Beautiful fabric, poor zipper craftsmanship","I tried this on in the store, and the fabric is lovely - so, so soft and drapey. the skirt is very flattering - good length. but the zipper! the zipper was already ripped away from the fabric, so i wasn't able to purchase it. such a shame.",3,1,5,General,Bottoms,Skirts +986,29,,"Beautiful fabric! unfortunately, i had to return it. after just one wear, it had pills all over the side. fabric is too delicate. sad to return!",2,0,1,General,Jackets,Jackets +986,44,"Beautiful, maybe a bit ""too delicate""","I absolutely love the look & style of this piece! perfect for summer evenings. only complaint is that it feels maybe a bit too delicate. fabric is quite lightweight, and may be easy to tear. i will be taking special care of this & hoping to keep it looking great for the season.",4,1,9,General,Jackets,Jackets +1016,44,Not what i had in mind..,"I didn't realize when i ordered, that the hem is unfinished below the seam.. i'm not a fan of this look, especially in a more expensive skirt. the fabric is nice and flowy.. but i do feel there is maybe too much of it(which may be a plus if you wanted a fuller skirt) and that the waist runs slightly small. i am normally a 10-12 and ordered the large and it fit at my natural waist, rather than hanging lower and looser like other styles in this shape. i am 5'7"" and i do like fuller skirts, but was",3,0,3,General,Bottoms,Skirts +986,34,Material is awful,"Love retailer's kimonos and when i saw this pattern i had to have it! unfortunately, when i bought it the tag was already showing holes so they gave me 15% off... went to wear it for the first time, there was already a huge snag in it! i love retailer but for 98$ this is not worth your money.",1,0,1,General,Jackets,Jackets +88,42,Cute bedtime boyshort,"I got these pretty boy shorts because i was looking for a panty that was comfy for bedtime--pretty but with a fair amount of coverage. i am really happy with them. wonderful with a tank top or chemise. i think the ruffles are a bit bulky for skinny jeans, but i love them for sleeping. they feel special.",4,1,0,Initmates,Intimate,Intimates +1110,56,Very cute,"I like this dress because it has a 60's vibe. however, if this swing style is too long, it just looks dowdy. this dress was too long, so i shortened and redeemed mine. i am 5'3 1/2"" and 120 lbs. this style looks best on me just above the kneecap. if you try it on and hate it, it's probably because it's too long. in the winter i wear this with a long sweater (knee length) with a waistband in it to give it shape and with boots. the dress is lined but it is very, very sheer and requires a slip. or,",4,1,0,General Petite,Dresses,Dresses +986,42,Super cute but.....,This is super cute and the colors are so vibrant and its thin enough to wear with tanks for the summer but it already had a hole forming in the upper back shoulder. i guess the material was a little too thin....$98 is a little too much money for something that gets holes so easily!,3,0,49,General,Jackets,Jackets +986,61,Love it but...,I snagged this the first day i wore it with my wedding ring. it is very delicate and i can't wear it when i'm with my kids because they pull on it so much! it will just me by night out wrap i guess!!!,3,1,1,General,Jackets,Jackets +986,45,"Stunning, but fabric is too thin","The colors on this kimono are amazing and i really loved it, however, i too noticed the 'delicateness' of the material. it is so delicate that parts were starting to fray - including next to the kimono's label. so sad.",1,0,6,General,Jackets,Jackets +516,32,Swim review,"This suit is really flattering and comfortable. i love the pattern and the removable strap. the only downside is the top of the suit folds down easily showing the lining at the top. this has been the case with other suits i've bought from retailer, but it's so flattering that i can live with that flaw.",4,1,6,Initmates,Intimate,Swim +867,41,Very slimming,"At first, i thought that this sweater would be too thin and show any imperfections, but it doesn't. the vertical ribbing really gives it a slimming effect and it is a perfect lightweight cover up that goes with pretty much anything.",5,1,1,General Petite,Tops,Knits +867,45,Gorgeous sweater!,This is an amazingly soft and gorgeous sweater. i typically avoid this brand because most of their pieces run smaller on my frame however this not only fit perfect but it is a beautiful color as well! i prefer transitional pieces that can be worn multiple seasons and this one is just right.,5,1,0,General Petite,Tops,Knits +928,56,Beautiful sweater,"This sweater is much prettier in person than in the picture. the colors are soft and feminine. medium fit me perfectly. this is the soft, cuddly sweater i have been looking for.",5,1,4,General,Tops,Sweaters +872,38,Great top for work,"This is a great top. i love how it's loose and hangs away from my body but is banded at the bottom so it isn't shapeless. the tie at the neck is cute and gives it some personality. + +i usually bounce between a s or xs. i tried the xs in the store but ordered the s.",5,1,0,General Petite,Tops,Knits +872,53,Love this top!,I love this top! fits great n is elegant. great for the workplace n a night out. absolutely beautiful! quality fabric. love love love!,5,1,0,General Petite,Tops,Knits +820,31,,I love this shirt! lightweight and versatile! perfect for all seasons,5,1,1,General Petite,Tops,Blouses +872,39,,"Love this shirt! looks great with a pair of black work slacks or with jeans. very flattering with the banded hem, and the material is soft.",5,1,0,General Petite,Tops,Knits +820,35,"Smaller arms, larger body","I'll start by saying the fabric and concept are beautiful. the top is sheer, but that's pretty clear in the images and not surprising for a lightweight white blouse. the problem is that the arms are more fitted and the torso (not the chest, but the mid-section) is cut fairly wide. i'm 5'10"", 140#, 34b and usually wear a 4 or a small/medium depending on how relaxed i want the fit. i purchased this in a 4. the arms were workable but slightly fitted, and the torso fit like an 8. chest was as expect",2,0,7,General Petite,Tops,Blouses +820,50,Another beautiful white top,Great fit,5,1,0,General Petite,Tops,Blouses +867,37,,Crazy soft and comfy. light weight so will be great for spring/ summer and layering. so happy i bought it.,5,1,0,General Petite,Tops,Knits +867,39,Cuter than i thought,"I saw someone try this on when it was 40% off sale, and should ahve purcahsed it then... ended up going back today for it. it is very soft, adn flattering. also, i purchased the balck, this can go with pretty much anything: jeans, skirts, dresses, you name it - very neutral and flattering fit. nto sure if petite would have worked but too late anyway.",4,1,1,General Petite,Tops,Knits +867,69,Love this sweater!,"If you're looking for a sweater that's super soft and comfortable, you've found it! you could wear this almost anywhere except for a dressy occasion, but then, of course, you wouldn't wear it with a dress anyway. i wish it came in other colors because i'd buy several. it's on the thin side but not too thin. the only thing that i should mention is that it's not a black black but more of a faded or brownish black which is really obvious with black leggings or jeans.",5,1,12,General Petite,Tops,Knits +867,58,Classic but with an edge,"From the images, it looks like a basic black cardigan. look again because it's a beautiful fabric and can be dressed up or down. i'm 5""1 and always wear an xsmall at retailer however i thought it to wear over other articles vogue clothing i'd size up. it fits perfect i did an xsmall petite and couldn't be happier",5,1,8,General Petite,Tops,Knits +1059,65,Great summer pant!,These run small in the thighs and behind just like most of the other cartonnier pants. i have four pair of cartonnier pants that are all size 10...which is a size or two up from my usual 6 or 8 in other styles. print is great! fabric is super lightweight and great for summer.,4,1,8,General,Bottoms,Pants +872,41,,,4,1,0,General Petite,Tops,Knits +820,26,,"This top fits perfect everywhere except the sleeves are a little tight. not uncomfortably so but i wish they had just a little more room so they looked like they did in the picture. other than that, i love this shirt! its super cute and comfy and i have gotten a few compliments on it!",5,1,0,General Petite,Tops,Blouses +867,47,,It is soft and hangs great. problem - i wore it one time - and the back balled up terrible. it looked like i had owned it for years - not worn it one time. wouldn't recommend. though it is sooooo soft!,1,0,10,General Petite,Tops,Knits +867,27,Soft but thin,"This sweater is beautiful, but is definitely more for looks than warmth. it's very soft, but very thin. i prefer the way it looks open rather than buttoned. i got the moss green color on sale, and i am glad i didn't pay full price for it--it's lovely, but certainly not worth $88.",4,1,0,General Petite,Tops,Knits +928,33,So comfy,"This sweater is exactly what you think it is. + +comfy! + +it doesn't have much shape (it's pretty boxy), but that's the point. it's not one of those figure flattering kind, but it's also not shabby looking. + +it's so darn comfortable and soft and the colors are so upbeat and beautiful. + +since it's a fuzzy yarn type of fabric, i think the fuzz might start to fall out eventually and i have to be careful not to snag anything on it because i don't want to pull the knitting loose. + +other t",4,1,0,General,Tops,Sweaters +867,51,Not skinny enough to wear this,Love the softness and the length. the color was perfect. but you have be be a very skinny almost boney person for you to not show imperfections to your body. the fabric is not thick enough and does not have the give to over shadow normal imperfections. will be returning the sweater.,1,0,0,General Petite,Tops,Knits +1059,32,Cute and nice fit,"I got these in gray and ultimately returned them only because i already have a similar pair of pants. they fit true to size and the quality is fantastic. i usually do poorly with pants that zip on the side because of my small frame, but i had no problem with these at all. i may go after the other colors!",5,1,3,General,Bottoms,Pants +872,50,Trendy,The tie neck is super on trend. this will go great under a jacket or cardi. it's a keeper.,5,1,0,General Petite,Tops,Knits +516,43,Great design,"I loved the design of this suit. the zigzag pattern is great at covering up any tummy issues but the print is still fun and not frumpy. i got a compliment the first day i wore it. it is a great one piece that gives great coverage and yet is still fun. the only thing i don't like about the suit is that the top of the suit slips over showing the lining. i read this in other reviews and it is true. while that is annoying, i liked the suit enough to keep it.",4,1,5,Initmates,Intimate,Swim +872,47,Pretty under blazer or without.,This blouse is so pretty! i love the neck tie which gives it interest and won't look boring on it's own. i'll wear this all-year round. i ordered an xxs which fits perfect.,5,1,0,General Petite,Tops,Knits +867,71,Quite versitile.,"I ordered an extra small. it fits with both a humble tee and a button down with the sleeves rolled up. i've tried it with jeans and also joggers and heels. really a cute and versatile sweater. i got the olive but can see where the black might be more universally useful. this one works perfectly for me, however",5,1,2,General Petite,Tops,Knits +872,50,Comfy & classy,"Love this top! love that it ia jersey knit which makes it comfortable. love the print which makes it stand out. love the design of a side bow. i did not have an issue with the banded hem, in fact i like how it makes the top more structured.",5,1,0,General Petite,Tops,Knits +1059,39,Lots of hip room,"I wasn't sure how to rate the fit on these. i tried my normal 12 and the waist fit pretty well- but there's a lot of room in the hip/pelvis area. i tried a 10 but the waist didn't fit. i can see these gathering when i sit- but i just love the print. there is no stretch in these, either. i have slim legs- if you don't, i would size up or just pass. the calf is tight.",4,1,13,General,Bottoms,Pants +1003,36,Nice skirt,"Really cute skirt, love that it has hidden pockets in the front. ended up just being a bit too wide on me. can't size down as fits everywhere else. will look great on someone, just not me! order true to size, fits great.",5,1,0,General,Bottoms,Skirts +928,41,,Great sweater but it was just a little too short on me so it is going back. it is extremely fuzzy and soft though.,4,1,3,General,Tops,Sweaters +1059,43,I love these pants!,"I have a few pair of charlie's and one thing i really like about them is their consistent fit. i own this pair in both the orange and gray, bought both in my normal 4. they will stretch so if they are a little snug at try on don't size up. definitely recommend these pants.",5,1,1,General,Bottoms,Pants +1003,27,Big and beautiful,Love everything about this skirt but the sizing. i'm a size 6/medium in almost everything but this skirt swallowed me. i wise there was a small or even extra small to try out. i'm also 5'5 and the skirt was right at my knees. definitely size down if you want it to look like the pictures.,3,1,1,General,Bottoms,Skirts +868,53,Unflattering cut,Unfortunately this top looks billowy and boxy on my. i am tall and very slim and i look pregant in this one ;). maybe it works better on somebody more curvy.,3,0,0,General,Tops,Knits +867,34,,I got the moss color in this cardigan. i'm not sure why these aren't sold out because it is pretty amazing! it is super soft and is a cute addition to a casual outfit. i would say that for this price it's definitely worth the buy!,5,1,0,General Petite,Tops,Knits +1059,34,Orange is too cute!,"Ordered in the orange and they are so cute i had to order the other two colors. my normal size 12 fit tts. i am happy with the fabric, fit and color. i have an athletic build and had no issues with the side zip, waist, hip or thighs.",5,1,0,General,Bottoms,Pants +928,53,Very soft,"I loved this sweater as soon as i opened the package. it was soft and the colors of grey peach and white were perfect for this to were into the spring time. i am 5'3 102lbs and purchased the xs. the arm length was perfect. the sweater length hit slightly above my hips. the style of the sweater is a bit boxy, but not so much that it looks like your wearing a tent.",4,1,1,General,Tops,Sweaters +820,51,,This tunic is a wonderfully updated look. it's cinched just a tad at the waist which gives it a great line. i paired it with a pair of citizens of humanity crop jeans. terrific look!!,5,1,0,General Petite,Tops,Blouses +872,41,Nice top but couldn't get over the bubble hem,I like the pattern and material on this top but the bubble hem isn't flattering on my figure. i would recommend this top if you are tiny and petite.,3,1,0,General Petite,Tops,Knits +1054,44,"Beautiful, but soooo long!","These are beautiful pants, especially when you walk, they are simply beautiful and flow nicely. however, they are soooo very long (i am 5 5 1/2) and even with a big wedge's i would have to get these altered. the waist seemed very small, i am a sz 12 (10 in some stores) and i got the large and it was way too tight in the waist and have no stretch or give at all. . probably a sz 10 at most. so unfortunetly they have to go back.",3,0,1,General,Bottoms,Pants +1059,37,Beautiful just ran small,"I'm a size 4 all day everyday. but, these pants wouldn't even meet around my hips. sadly, i'm returning them tomorrow.",4,1,1,General,Bottoms,Pants +1059,45,Great pants!,"I love charlie pants. i've bought a few in the past, and i've never been disappointed with quality, style, or fit. i love the side zip on these and the nice flat front as a result. i wish more pants were side zip- so much more flattering. i got these in a 4, my usual size, and the fit is perfect. i also got these in the regular, rather than petite, but the length works just fine for my height. i bought these in the grey stripe, but like them so much i think i'll order another pair in the orange.",5,1,1,General,Bottoms,Pants +867,57,Ribbed cardigan,This cardigan looked great on line but it is one of the worst things i ever ordered at retailer. the quality is awful and the material feels flimsy and cheap.,1,0,2,General Petite,Tops,Knits +867,47,Hanging in my closet,"Although i haven't worn it yet, it is very soft and functional. i will watch how i wash it so it stays that way.",5,1,0,General Petite,Tops,Knits +872,47,Very pretty on,This shell can be worn casual or dressy depending on what it is paired with. enjoy!,4,1,0,General Petite,Tops,Knits +872,37,Beautiful,"I love this top! i debated between an xs and a s, but i'm usually an xs in deletta so that's what i got. it fits perfectly and is beautiful.",5,1,0,General Petite,Tops,Knits +1059,35,,"Material is kind of thick. stretchy. the orange i ordered was just too bright for me. i'm 8/10 and got the 10. i think the 8 would've worked better. sending back, mostly bc the color didn't look good on me.",4,0,0,General,Bottoms,Pants +1059,51,,Size 0 ordered .they fit beautifully for the first 2 hours but slowly stretched out and lost their shape sadly.,4,1,3,General,Bottoms,Pants +1110,24,Love love love!,"Ordered this dress online and hoped for the best, because there wasn't a size chart to reference. i'm usually in between a size small and a medium, i ordered the size small and it fit well. for a more flowy look i would have gone with the medium. +everything about this dress is soft, i love it! even the ribbon is delicate, soft and made of quality material. the lining feels like heaven. + +this dress goes to the floor on me - i'm 5' 7"" - i was expecting it to be more mid ankle length, but i sti",5,1,2,General,Dresses,Dresses +137,30,Soft cute socks,"Soft pretty socks. a little big if you have smaller feet. i'm a size 7.5, and they are a tad too big but still comfortable.",5,1,0,Initmates,Intimate,Legwear +1078,33,Great transitional dress!,"After reading the reviews, stating that this dress was a tent and only fit for the tall and small chested, i kind of had a battle of wills in my head over ordering it. it is very ""me,"" but me is also 5'5, curvy, and possessing a 36g bust. i had to post a review, because i received the dress today, and i actually love it. i ordered a 16 and i love the fit. i know it's flowy, but on me, it's far from tent-like. i think it's great now as a pre-fall piece with some sandals and a jean jacket, and as",5,1,2,General Petite,Dresses,Dresses +956,42,Love it,Agree with other reviewers the jacket is better in person than on model very nice jacket model does it no justice,5,1,0,General Petite,Jackets,Jackets +1110,48,Gorgeous,This is seriously a beautiful dress. it has such gorgeous colors. it's lined so no slip needed. it is flowy and just the right length. i went with a petite and it is perfect.. can't wait to use it at the beach.,5,1,0,General,Dresses,Dresses +1082,32,I wanted to love this,"I really wanted to love this dress.... + +i absolutely love the fabric and the bottom of it. sadly, the top was just too ""balloon like"" and poofed out way too much. i tried putting a belt with it which helped a little bit. if the top had been just a little more fitted this would be awesome. i don't know if a smaller size would have helped the issue... i ordered a small and considered an xs but in the end just returned it.",3,0,0,General,Dresses,Dresses +1082,49,Great design poor execution,"The dress is absolutely beautiful in person. the blue stripes are a bit brighter and the print on top is more muted. it's unique and sure to turn heads. being 5'2"" i tried on the small petite. this size is usually perfect (lengthwise) for me. however this dress was about 2"" too long. another complaint is the style of the top half. the model in the picture seems to be hiding the puffiness of the top half. the top half puffs out and made me appear much wider than i am. not a good look on anyone.",2,0,1,General,Dresses,Dresses +839,65,,Love this shirt. i can dress it up or down. great fit,5,1,0,General Petite,Tops,Blouses +1082,48,Garish,"This may be the ugliest dress with the worst fit i have ever tried. the blue stripes are brighter than they appear in the photo, absolutely garish. the top is baggy with awful beads on the back ties, it just looks cheap. the skirt is an antebellum nightmare. +i did not even want to try it on, it's that bad. i considered adding a photo, but was too horrified. +for reference, i'm 5'10"", approximately the height/ size of the model, but it was shorter than the photo depictes. i wanted to like it,",1,0,8,General,Dresses,Dresses +1078,42,"Very beautiful, but material is scratchy and stiff","I really want to love this dress, the style and colors are so nice and easy. i like the loose flowy feel of the dress. it runs a tad large, but that is part of the style. what bothers me is that the fabric and embroidery is very stiff and itchy, to the point where it is uncomfortable on my arms and body even though it is a loose fitting dress. also, it has lining which is nice for modesty, but with the stiff/itchy factor mixed with lining, it feels a bit cumbersome. i haven't decided if i will k",3,0,14,General Petite,Dresses,Dresses +1078,45,Nice styling but shapeless,"Thought this would be a great dress for warm days, but alas it fit like a sack. love floreat and have a few of their well made dresses. shame this did nothing for my curves. ordered an 8, usually wear a 10 and it was a tad narrow in the shoulders. if you can sport a loose swingy shape, this is a great dress with nice detailing, but sadly the shape did not work for me.",1,0,1,General Petite,Dresses,Dresses +1082,32,,,4,1,0,General,Dresses,Dresses +1110,32,Floaty beach dress,"I am not a model shape but this dress looked so light and beautiful i had to try it. it wasn't available in my local store so i risked it and ordered online. i'm 5'6"" and about 175 lbs; the medium fits perfectly. i will say that the skirt fabric comes much more sharply pleated than it looks in the photos, maybe this hangs out/mellows over time. the lining to the knee is going to be great for warm summer days. can wear to work with a shrug and some flats or to a summer wedding. the pattern is bea",5,1,3,General Petite,Dresses,Dresses +1082,33,Great summer dress,This dress is very cute and screams summer. the stripped skirt adds dimension. true maxi length. effortless and fun!,5,1,0,General,Dresses,Dresses +1059,58,,"A perfectly fun pant for a gray or sunny, winter day. i like the longer length, to the ankle on me, pairing with my kate spade black sabina combat boots and a eileen fisher black cashmere, boxy, cropped sweater. another fun option is to pull out the pink accent in the pant with a pink camisole under a black sweater. the fabric weight is good for winter, they do feel a little itchy at first but it's not noticeable after wearing them a short while.",5,1,3,General,Bottoms,Pants +1053,46,"Looks like pajamas, not flattering","I love jumpsuits for their style and comfort. i loved the look of this blue silky piece, and the review that said it was like lounge wear you could wear out of the house. i agree that it is like lounge wear, but for me, there were a few challenges. + +first, the fit was small. i am usually anywhere between a 2 and a 6 depending on style, cut and brand. i tried the small in this and it was not a flowy look or feel. it was restrictive in the hip area in a way that would make me not want to wear th",2,0,0,General,Bottoms,Pants +1082,53,Swallowed me up!,"Don't be fooled by the photos online. the color is a bright baby blue, not pale blue. it's a beautifully designed dress, however, the material is so bulky and heavy. it's so unflattering. i was afraid to try it on and my fears came true: this dress just hung on me and pulled me down. i wanted so much to love it, but i returned it.",1,0,0,General,Dresses,Dresses +956,31,Signature piece!,"I love this blazer. its perfect for work, and makes a great statement.",5,1,0,General Petite,Jackets,Jackets +478,39,I liked tehse but,"My stylist didn't love them... they are well made, the waist line is comfortable and the embroidery is very pretty. the hem is loose-fitting, perhaps that is what she thought was not as flattering... the material is airy, nice for summer, i think you should give these a try,,, for me, perhaps it is my muscular legs that made her hesitate.",4,1,1,General,Bottoms,Shorts +1078,47,"Pretty dress, seems well made","When i received this dress i was surprised by the weight of the fabric. it's not as light and gauzy as the photos appear, and it is fully lined. it's more substantial in a good way. also i had thought it would be more of a straight cut but it's definitely a swing which i prefer. with the lining, it does stand out a bit from your body so it's not a clingy look at all. i like it a lot but i don't think it fits the way you would expect from the photo. it's roomy, i could probably have sized down. i",5,1,16,General Petite,Dresses,Dresses +1078,46,Another winner from floreat,"I found this dress to be a perfect flowy fit for the super-hot tail end of summer. this definitely is not a form fitting dress, but i bought my regular size medium (size 6) and think it fits perfectly. i have a pretty small chest and find that sometimes these a-line dresses look better if you don't have a lot on top making them ""tent out"". just my opinion. personally do not think it has an abundance of fabric. in fact, it is a lot less roomy than a lot of others in this cut due to the embroidery",5,1,9,General Petite,Dresses,Dresses +478,19,Eye-catching and unique,"These shorts are very well made and the embroidery work is beautiful. the dark yellow is a little bit more orangy looking than in the pictures, but is still a pretty color. don't expect any give or stretch with these shorts.",4,1,3,General,Bottoms,Shorts +1059,56,,"I bought these to go with the boiled wool jacket that is also currently on sale. i have several pairs of charlie trousers, and i really like the brand. these are in a thicker ""winter fabric"" and i understand why the other reviews found them itchy. i don't find that bothersome, but the texture is a bit different. the quality is typical for charlies. the color stripe is a metallic bronze, but could look pink in the right light. the fabric is noticeably stretchy--i think without that stretch, these",4,1,1,General,Bottoms,Pants +1078,44,Confirmed: a tent,"I should have listened to previous reviewers. but the dress looks so good on the model in the two dimensional pictures. when it arrived in the mail, i realized this is a mistake. it has no shape, material is poofy and feels cheap. it is going back.",1,0,1,General Petite,Dresses,Dresses +1053,38,,"I was so excited to get this! the fabric is beautiful - comfy soft and a great wash/print of blue. it reminded me of the ocean. however, the fit was off. the waist was too high, the length too short, and the straps to long. i was very disappointed. i considered taking it to the tailor before returning. ultimately, i decided to return.",3,0,0,General,Bottoms,Pants +1110,30,Ethereal beauty,"I chose this dress for my engagement photoshoot and i'm so glad i did! it is beyond beautiful, my favorite dress ever!",5,1,3,General Petite,Dresses,Dresses +1078,64,Love this dress!,"I usually wear a 4, but ordered a 2 & 0 because of the previous reviews. the 2 fit perfectly. the 0 was too snug across the shoulders. both sizes were the same length and width except the shoulders.the material is beautiful and seems very well made. i am thrilled with this purchase.it looks exactly like the photo.",5,1,0,General,Dresses,Dresses +956,43,,"This is so close to perfect, but there's a seam down the middle of the back and they didn't bother to match the polka dots. you can see the mismatch in the second photo. i was about to buy the jacket, and totally in love, when i turned and saw the error. i hoped it was one bad match, but nope, on every one. couldn't unsee, didn't buy. very disappointed.",1,1,1,General Petite,Jackets,Jackets +822,45,,I was so excited to get this top..but it's boxy and a little itchy from the design. i just didn't think it was worth the hefty price. i'm normally a small in retailer clothing,3,0,3,General,Tops,Blouses +835,52,Petra tank,"This tank caught my eye when it first came out couple of months ago, love the colors and the embroidery especially. the colors on top beautifu and it will complement any skin tone and the bottom is neutral so that this top will go with any bottom. this flows too goes great with skinny jeans and flats or put a strappy heels on and it's perfect for evening outings.",5,1,0,General Petite,Tops,Blouses +1078,28,Does not hang well,"I am typically a small/6 in dresses, but i should have gone with the other reviewers and sized down. it had no shape, but hung like a paper sack. the armholes fit perfectly though, if i had sized down they may have been too tight. i am 5'6"" 140 lb +i will return, too bad because it is a pretty dress!",2,0,0,General,Dresses,Dresses +1082,40,Gorgeous!,"This dress is so different from any you normally see and its gorgeous. the blue on bottom is actually a much brighter blue in person than in the pictures on the site. the dress pleats along every blue line, so when you walk, it's as if the dress changes colors with every movement. it's fully lined so nothing shows underneath and it's just really beautiful. i also like how the back opens, but not all the way down, so you can wear a strapless bra without the back showing. +but the sizing was a bi",5,1,3,General,Dresses,Dresses +478,29,,"The embroidery and side zip were well constructed. the fabric holds onto wrinkles and creases, so after a period of sitting, there are several creases pointing to one's crotch area. this isn't too noticeable, but definitely makes this a more informal garment.",4,1,1,General,Bottoms,Shorts +872,24,Flattering and easy,I completely agree with the other reviewers this top is easy to throw on with jeans or trousers and so comfy! i'm 5'3 with a 34ddd chest and i ordered in my normal medium which looks fantastic. and if i wanted to i think i could have sized down for a more form flattering look but i love the ease of this top.,5,1,0,General Petite,Tops,Knits +1078,55,Beautiful but not flattering,"Beautifully made, gorgeous colors. i wanted to love this, but it just wasn't flattering - too ""a"" shaped, not enough drape to flatter.",3,0,0,General,Dresses,Dresses +1059,57,,"I bought these and returned them almost immediately. the material looks nice, but itchy and heavy. the fit is too small and just uncomfortable to wear.",1,0,2,General,Bottoms,Pants +965,65,Love this casual coat!,"Love the simple, casual elegance of this coat. i especially love the colors, grey & beige, because it looks great with my grey jeans as well as my dressier beige pants. i will get a lot of use from this coat.",5,1,0,General Petite,Jackets,Jackets +1078,57,Very unique!,Beautiful dress! wanted something different. even bought the hat ! very flattering.,5,1,2,General,Dresses,Dresses +1078,39,,,4,1,0,General,Dresses,Dresses +1110,48,Beautiful!,"I wore this dress to a july wedding in miami beach, and if you know sofla, you know that it's hot, humid and sultry. despite the weather, the dress was light, especially at the bottom because of the slits, so i wasn't terribly hot and sweaty underneath the dress. the slip is a good length, not too short and not too long, which makes for a sexy fit. + +sizingwise, i'm 5'4"" and weigh about 120 lbs. and purchased the dress in pxxs. i said the dress was tts because it fit a little bit snug at the u",4,1,5,General Petite,Dresses,Dresses +835,39,Great top!,"Just bought this in the store a couple days ago and wore it for the first time today. love the embroidery detail and i feel that the colors are more vibrant in person. i typically wear a 2 in most retailer tops but i got a 0 in this and it is great - seems to be a generous fit. the slits on the sides do come up a bit high, but i wore a cami underneath since it is sheer and the slits were not an issue with it. looks great with jeans. it is a great transitional piece for the fall as i'm sure i will",5,1,3,General Petite,Tops,Blouses +1053,51,Cute and comfy,"Just got this and i haven't taken it off all night. i feels like lounge wear, but is so cute and works with heels or flats. throw a necklace on, a nice scarf or a jacket and dress it up for going out. it looks exactly like the picture and fits true to size. i will get a lot of use out of this piece for spring and summer. nothing is better than something that feels like pjs but looks so stylish!!",5,1,0,General,Bottoms,Pants +1110,29,Love this dress!,"This dress is absolutely beautiful! i wore it in my engagement photos and it is so flowy and so beachy. you can dress it up or down and it's very comfortable as well. unfortunately, it got ocean water on it in my photos, so i took it to the dry cleaners and they lost it :-( hopefully it will come back in stock and i can buy it again. it is easily my favorite dress i have owned in quite some time. for tall people - it may be too short to wear with anything but flats. i'm 5'6"" and wore sandals and",5,1,0,General Petite,Dresses,Dresses +1078,37,Huge!,The dress fits me like a tent and i looked pregnant. maybe this style isn't for me and i even sized down. otherwise the quality was lovely with an embroidered area on the top and the fabric style mixing was great and very trendy. it didn't work for me for the right person this is a very well made dress.,3,1,3,General,Dresses,Dresses +1078,46,,"I want to love this dress. the colors and the fabric are absolutely beautiful. it is definitely a swing-dress. much wider than i expected...and i sized down. there is also a strange pooch in the shape around the middle. i am keeping it because i am in love with the the colors and print, and it looks very flattering when paired with a black denim jacket, just not alone.",3,1,1,General,Dresses,Dresses +872,44,Flattering top,"This is a very flattering top. i'm pretty flat-chested & this top doesn't look too bad. i love the subtle peplum - it makes it a bit dressy. i'm 5'4"", 112 lbs & got the xs.",5,1,0,General Petite,Tops,Knits +478,39,Great summer shorts,"I love these. i like that they're fancier than your basic summer shorts but they still look casual and effortless. unlike the other reviews i found that they run large. i'm usually a 4, maybe a 6, and the 4 is roomy. still looks good though just rides a bit lower on my hips.",4,1,0,General,Bottoms,Shorts +1082,60,,"Really loved this dress online and was excited to try it out. when it arrived it was heavy & bulky in the package which didn't bode well. taking it out of the bag, i was surprised at how heavy & thick it was. the picture really looks like it would be a flowy, grecian dress to throw on during a hot summer day ? but in the reality you might drown in sweat. the interior linings promised absolutely no breathing fabric. + +wanted to love this as the style is very cute but was disappointed by the mate",2,0,0,General,Dresses,Dresses +1078,41,Pretty dress but bad fit,I bought this dress on super sale and it was such a great deal. sadly it's going back although i sized down i still feel like the dress is shapeless and tent like. no wonder why the store had so many still at the price i paid. the details on the dress are pretty and it's high quality. just wish the fit was better.,3,0,0,General,Dresses,Dresses +872,38,Love it,"Love this top, you can really fess up, i ordered in a small i am 5 7 and 154 pounds",5,1,3,General Petite,Tops,Knits +1078,57,Beautiful but very large.,"I usually wear size 4 for dress, but this is the first time ever i have to go down to size 0, and it fits perfectly. well made, maybe a bit stiff around armholes, nothing major. i love the length as i don't like to show my knees. great color combinations, although this supposed to be a summer dress, it looks great for fall, just need to add a jacket, a pair of boots and i'm good to go, feeling pretty!",5,1,1,General,Dresses,Dresses +1059,23,Extra,"I did purchase the pants but ultimately ended up returning because everything such as the print and the length it hits at your ankles is great but there was, at least for me, a lot of extra fabric in the crotch area (and this is not to be crude, there really isn't another word that i can use) and when you sat down, it is extremely apparent. i am 5""6' and run between a size 8 and 10 and 10 fit me, but again, i just think if there was less fabric in the saddle, it wouldn't ride up and look more fl",4,0,9,General,Bottoms,Pants +835,44,Sheer,"I absolutely love this top, the design and the cut. it is very long in the back. it is very flattering. i would have given it 5 stars except it is see through. i wish it didn't need a cami. layering tops gets old fast in the hot weather.",4,1,3,General Petite,Tops,Blouses +1118,67,Fantastic for fall,"Runs true to size, with allowance for some bulky clothing underneath for those cool fall days. definitely not meant for winter - so don't plan on this for freezing cold days. the bottom falls nicely over the hips and the color is vibrant and adds some life to any outfit.",5,1,0,General,Jackets,Outerwear +1110,39,Spirit of sea sprites,"Very much in love with this ethereal, delicate dress. the silk is very light and slightly clingy, so take caution when wearing. the belt can be adjusted as modeled or you can get creative as there is length the play with. the liner finishes above the knee on me in medium petite. those of slender torsos and small busts may want to size down, otherwise tts. for reference i am 5'3"" 36dd 140#",5,1,8,General Petite,Dresses,Dresses +1078,39,Heavy tenty swingy,"Not a summer dress even though the photos make it seem like it's for hot weather. the weight and layers and synthetic fabric is very substantial. it is a bit scratchy where there is maroon fabric, but not intolerable. i love this dress but it's beyond a-line, it's a tent. i'm keeping and will wear for fall with a long sweater to flatten the fullness that's seen in profile. for my body type (top heavy, thick shoulders/back/upper arms), i chose the smaller of my size range. definitely size down if",4,1,4,General,Dresses,Dresses +1078,26,,"For reference i am 5'5 about 140lb, typically wear a size 6. luckily they had it in-store around me so i as able to try it on. i read the reviews and first tired on a size down, but it still didn't look quite right on me. i was daring and tried on another size down, and i'm glad i did! there is no lie that it runs large! it's a beautiful dress and heavy enough to wear into the fall! i will say it does still have a little ""tenty"" shape to it, but it's just the style of the dress.",5,1,1,General,Dresses,Dresses +1110,46,A dress to make you feel pretty,"Fully lined until just above the knee, silk exterior, rayon lining. can dress it up or down. very lightweight and cool-feeling. this is a beautiful dress. i'm 5'9 and it fit great-- shorter people might need to alter it. i tried it on in the store and felt like a princess, but am hoping it goes on sale.",5,1,13,General Petite,Dresses,Dresses +1078,47,Beautiful dress,This dress drapes very well and is flattering to many different body shapes. the colors give it the flexibility to wear from summer into fall. gorgeously designed!,5,1,1,General,Dresses,Dresses +1078,43,,,5,1,0,General,Dresses,Dresses +1110,54,Sea dream dress,"Love, love, love this silk dress. i feel classic retailer is back! perfect for hot and steamy summer days. +. +just a few photos of the back, which has the belt band sewn in kind of high so that it can be wrapped through the side loops, grecian style. for some reason, in the online back photo, the model is wearing the dress backwards. +. +i'm 5'2"", currently 33-25-37 or 38 hips, narrow shoulders and torso, bra size 28dd/30d/32c. i tried on the size 2 regular which is the only one i found in the s",5,1,1,General Petite,Dresses,Dresses +1078,46,It's a tent!,"As much as i buy from retailer, this is my first review. the pictures do not accurately show how large this dress is in person. i wanted something that was a bit flowy, but this was a reminder of little house on the prairie. the most unflattering dress ever and since it's only available online, i'm not interested enough to try a smaller size.",1,0,10,General,Dresses,Dresses +1078,34,Great casual and dressy!,"This dress is fantastic. i can't help but think the other gals who gave this a low rating were perhaps more petite and didn't size down. i am 5'8 and usually a 10-12. purchased the 8 and it is great! fits wonderful and looks so nice for the price. i like clothing that doesn't touch me and this does a great job, without looking sloppy.",4,1,0,General,Dresses,Dresses +1078,62,,I bought this dress as a surprise for my daughter. she was very happy with it.,5,1,0,General,Dresses,Dresses +860,65,Classic stripes,"I do not know if this item is worth the full price but i love it. very soft, good length, and comfortable to wear. the stripes are a perfect width so as not to be overpowering. the fabric design is unique and i think the weave added to the cost of production. for many it may not be worth the cost but i am glad i purchased this top. it is not a sheer fabric. try it on if you see it in the store.",4,1,2,General,Tops,Knits +877,36,Gorgeous,"Great fit with tight pants, beautiful flower design that goes with everything. favorite tshirt",4,1,0,General Petite,Tops,Knits +877,36,Unique top,I loved the beautiful print! the sleeves were beautiful as well and added a unique quality to the shirt. i also liked the longer length of the shirt. i ordered online and kept it!,4,1,0,General Petite,Tops,Knits +943,50,Just beautiful!,"As the previous reviewer stated, this wrap is over sized but that is the style. the knit is soft and dense and the metallic accents are subtle and lovely. this is an heirloom piece that will last for many, many years.",5,1,1,General,Tops,Sweaters +866,30,,"I tried this top on thinking it would be cute for the summer. it looked more like a maternity top with the fullness in the bottom. so if you're expecting, this one would be great.",1,0,18,General Petite,Tops,Knits +866,33,,,4,1,0,General Petite,Tops,Knits +866,65,Wonderful color and movement,"This top is great under a blazer for work, can be tucked into a skirt and looks great with jeans.necklaces work great with this neckline unless they are short. the sea green is wonderful! i like the snug armholes but may be a problem for some. my hips are larger than my bust so i had to be convinced to try this on and i'm glad i was overruled. i am a small or medium in retailer tops and i got a small.",5,1,3,General Petite,Tops,Knits +877,34,Pretty flowers,I like the design and the size/style but the fabric is different than expected and not quite as comfortable as possible. but i still like it and will keep it.,4,1,0,General Petite,Tops,Knits +866,37,,Love love love this mock tank!!! goes fabulous with everything! it's flows nicely the mock neck looks fantastic! you can probably go one size down.,5,1,0,General Petite,Tops,Knits +866,38,Love!!!,Such a great classic top! very flattering! can be worn all year. i bought it in grey but think i'll need it in other colors!,5,1,0,General Petite,Tops,Knits +877,46,Great tee for summer,I ordered the size xl and it fits me as it does on the model. it's true to size. it is made of a scratchier material but is still comfortable to wear. definitely needs a tank/cami underneath. i love the vintage look. it's worn well & washed well too. i'd love to see more versions in this same style. i'll get good use out of this in the summer and then will layer cardigans over it in the fall.,5,1,2,General Petite,Tops,Knits +877,39,Nice design,"Love the rushed sleeves, and the flower pattern on the side. t shirt is, however, a little thin, hence a bit sheer. but i loved it nonetheless... i saw the loose fit and decided ot order a size down (xxs petite) ad it is so flattering. going to keep it as i don't think petite is going to make it to sale... i think it will look very cute with my denim pencil skirt, jeans or other pants for casual days!",5,1,1,General Petite,Tops,Knits +866,37,Not flattering,"I love the shape at the neck but the lack of shape really distracted me from loving this top. the fabric is nice but the big, boxy shape on the bottom doesn't do much for you. i agree with the other reviewers tha this top would be great as a maternity top because it really is cute if you have a baby bump. returning the top.",3,0,0,General Petite,Tops,Knits +877,29,Pretty and comfy,This fit nicely and i loved the asymmetrical flower design. it is somewhat sheer/see through so i put a tank underneath.,4,1,0,General Petite,Tops,Knits +877,65,I absolutely love it,This t shirt is very beautiful. i absolutely love it. it is soft and flattering and gorgeous - perfect for work or play. i washed it in gentle cycle cold water. i meant to hang to dry but somehow it got in the dryer with towels. i was heart sick when i saw it in a crumpled ball. but it did not shrink nor wrinkle. wow!,5,1,0,General Petite,Tops,Knits +866,37,Pregnancy top?,I wore this when i was in my third trimester and it worked out great.,4,1,0,General Petite,Tops,Knits +866,36,,,5,1,0,General Petite,Tops,Knits +866,41,Beautiful swing top,"I usually get a large in tops that don't come in tall due to my long torso. thanks to the reviews on this one, i got the white top in a medium. the medium fit perfectly. it looked just like it does on the model and not like a maternity top at all. the material is thick enough that the white wasn't see through. i paired it with some crop skinny pants and a statement necklace and received many compliments on it. the top is a little bland and needs some kind of jewelry to really make it. oth",5,1,0,General Petite,Tops,Knits +866,52,Very flattering,"Love this top, i would have bought two but the grey is sold out in my size. very comfortable and true to size.",5,1,0,General Petite,Tops,Knits +866,36,Very flattering!,"Great cut, super flattering! it does run a little big in my opinion though. i'm usually a medium/size 8 and i had to get a small.",5,1,32,General Petite,Tops,Knits +877,50,Shriks!,"Love this shirt, but beware that it shrinks if you place it in the dryer. the good news is my teen daughter loves it, too, and benefited from my mistake. i usually wear a s or size 6 and bought this in a medium the second time around to allow for dryer.",4,1,0,General Petite,Tops,Knits +877,24,Somehow it did not work?,"I tried yellow motif, but unfortunately, i did not purchase it. +it was quite difficult to explain why it did not work for me... +i liked its floral pattern and shape of sleeves. +texture was ok. +usually, i like a cool touch of linen. +but this t-shirt was not as comfortable as the other products made of linen. +i was not quite sure; it just was not right for me. +only word i could think was ""average."" +personally, i do not recommend it, but who knows, maybe it is right for you... +so, try wear",3,0,0,General Petite,Tops,Knits +866,57,Different top,I ordered this top in a xs which is what i usually wear in most tops. a little big but just shrunk it. very comfy and love the color.,4,1,2,General Petite,Tops,Knits +877,28,Garden top tee,This is a very comfortable top -versatile in that you can dress it up or down. i'm happy with it!,5,1,0,General Petite,Tops,Knits +866,21,Dreamy top!!!,"This top is my new favorite. i ordered it on a whim, and oh boy am i glad!! i was so excited for it to be shipped to me, and once it arrived i couldn't wait to put it. once i put it on, i couldn't wait to show it off! it is such a great bluish-grayish color and looks great with some big hoop earrings, shorts, and sandals. such an easy, classic, simple shirt that i will probably wear too much.",5,1,0,General Petite,Tops,Knits +877,59,Love this tee!,"I purchased this tee in the neutral motif. i love it, it is comfortable and it's linen (my favorite fabric) it drapes well and the birds on branches with blossoms and fruit on the side are a beautiful understated touch.",5,1,0,General Petite,Tops,Knits +877,37,Great basic with a twist,"My husband saw this in the store while shopping with me and asked me to try it on. i don't normally go for patterns like this, but i thought it was cute and springy. + +i tried on a large first, since i prefer to cover my belly and allow for my broad shoulders. (i'm tall, big boned and 175 pounds) the large actually stuck out funny at the bottom and didn't do much for my shape. + +the medium, however was great! it was long enough to hide my belly and cover enough of my waistband that i wouldn't",5,1,51,General Petite,Tops,Knits +866,50,3 colors aren't enough,"I bought all 3 colors and couldn't be happier. love the cut, fabric, and colors. the fabric is light enough to wear in the hot summer of charleston, sc but not so light that you can see thru it. i love flowing tops in the summer that don't stick to you and this cut does that and is flattering as well. i've already work with shorts and a skirt. both looked great. easy to accessorize.",5,1,3,General Petite,Tops,Knits +877,65,Gorgeous summer tee,"This shirt is beautiful.its very light weight and great summer tee. don't hesitate to buy this, you won't be disappointed.i usually don't buy t-shirts that are quite this pricey, but i knew it might not last till it went on sale.runs a bit large and since it is linen, it will likely stretch a bit.(i have not worn it yet)",5,1,3,General Petite,Tops,Knits +866,70,Nope,This top completely fell short for me. i was so excited for it to arrive yesterday and upon opening the package i knew immediately that it was not what i was expecting. in the images online there seam up the middle of the shirt isn't even noticeable but in person it is very prominent...and not in a good way. the peplum is a lot fuller then pictured as well. did not work well with my large bust (34d). returned.,2,0,3,General Petite,Tops,Knits +877,38,Nice t shirt,"I bought this on sale. the cools on the bird pattern are beautiful and i liked the detail on the sleeves. a little see through, but ok with a nude bra or tank underneath.",4,1,0,General Petite,Tops,Knits +866,29,,"This top runs large. i am a 34 d and usually a medium or small. the medium was a little loose in the bust, but incredibly loose and swingy in the waist. my figure was lost in the fabric. the small was too small for me in the bust, although the waist looked more flattering. the coral color was lovely and bright and not too sheer.",3,1,0,General Petite,Tops,Knits +877,48,Unique design,This really is a pretty top. i do wish it was a little thicker but it's not as see-through as other tees i've seen.,4,1,0,General Petite,Tops,Knits +866,52,Not satisfied,"Not great quality, runs a bit lose, disproportionate (too large in neck and arms area)",2,0,0,General Petite,Tops,Knits +877,39,Perfect tee for spring!,This tee is so cute and well constructed. it's not a fabric that's going to wrinkle and pill eventually which i love. it runs tts and i like that it's thin but not to sheer that i need a camisole - just a nude bra!,5,1,9,General Petite,Tops,Knits +877,49,Pretty but not super-soft,"This is a pretty top- i like the bird pattern and the asymmetry of the design. it is nice that it is a natural fiber - linen - however, the linen is not super-soft against the skin. that is typical for linen, though with a snugger fitting item such as this tee, it may be more noticeable over time.",4,1,2,General Petite,Tops,Knits +877,60,Lovely linen tee,"I saw this in my local store and i fell in love with the bird pattern flowing down the right side of the shirt. for me, i bought the xs and the fit was great. i usually take a true s. the sleeves have a pulled stitching running down them and the top has nice shaping and flare to it. it is a wonderful little tee! the fabric is linen and not as soft as cotton but in this case it is not an issue as the tee does not cling to you.",5,1,1,General Petite,Tops,Knits +866,42,Swingy and cute but too wide,I ordered a size small (usually i am ps) but wanted the extra length. usually i can get away with a regular small but not this time. such a cute style but made me look short & wide. unfortunately it's going back,2,0,0,General Petite,Tops,Knits +866,35,Runs large,"This was huge on me! otherwise i thought it was a nice top, slimming. i didn't bother looking for another size, though. i got a medium. i wear a small or medium.",3,1,0,General Petite,Tops,Knits +866,37,,"I was so excited bout this top. it looks adorable on the model but was not as flattering in person. the white is see through so you will need a tank underneath which looks off with the mock neckline. i bought the two other colors which are so pretty but the length of the top hit me at my hips. it def. does not have the length as described or measured in the description. i""m 5'5"" and wear an xs and the size was right but length hit at my hips which is my widest part of my body. if you have tiny h",3,0,0,General Petite,Tops,Knits +877,29,Beautiful print,"This top was a great find! it has a beautiful print on the front and goes perfect with my olive green shorts, capris, and pants! it is slightly sheer but not so much as to need a cami underneath. fits true to size. i love it!",5,1,0,General Petite,Tops,Knits +866,58,Not as pictured,"This top arrived today, and after trying it on, i wanted to leave a review to say that the shirt is 100% without a doubt pinned back on the model in the product picture. the fit is designed to be loose, so i don't think anyone could possibly get the same look as the model even if they sized down. i've included a picture of how it fits naturally, and a picture of how it fits the model as i hold the fabric back. it's still a cute shirt, just not the flattering top i was expecting. i'm debating on",2,0,6,General Petite,Tops,Knits +866,53,Wider and swingier than pictured,"This top looks so pretty on the model. however, the photo is deceiving as the bottom section is quite wide and loose. i am petite but between a c+ to d cup. the top is not really fitted, so my bust pushed the top out and made it look like a maternity piece. from the side it hung way in front of my body. i am wondering if this is clipped in the back on the model. if you are smaller chested and taller, this top might look nice on you. i am 5'1"", 105 lbs and c-d cup. i really loved the fabric and c",2,0,5,General Petite,Tops,Knits +877,31,Vey nice fabric,"I really like this top. while it looks somewhat like just a t-shirt, it is not. the fabric is light and soft, it has a great texture feel, it dioes not feel like a regular cotton shirt. the print is lovely. i am very pleased.",5,1,0,General Petite,Tops,Knits +866,37,Not as pictured!,"I was so excited to receive this shirt and so disappointed when i tried it on. it's a lot fuller than it looks in this picture or maybe it's because i ordered a large? i'm 5'8"", 180lbs, 36d bra size and can fit into a large at retailer just fine but it made me look huge! not flattering at all and it was so full that it looked like a short dress!",3,0,10,General Petite,Tops,Knits +866,33,Cute,"I like this top, and while it doesn't look on me like it does the model, i think it will be good for work purposes. would say it runs big and does have the maternity look risk (i bought this two months postpartum, so i need tops that cover the post baby belly and this works for that purpose). the grey is nice. bought on sale, but wouldn't recommend paying full price.",4,1,0,General Petite,Tops,Knits +877,44,Versatile shirt,"I like this shirt because it can be worn for dressy or casual. i like the weight although i wish it was just a tad less see-through. i can get by without wearing a tank under but i usually feel like i have to wear one. i like the link. i feel like it runs just a little large. i love the length of the sleeves and the detail/cut of the sleeve. i like the colors on the shirt too. it's a good, versatile addition to my wardrobe!",4,1,0,General Petite,Tops,Knits +881,39,Soft and cute but shrunk :(,"I bought the pink one. i like this salmon pink color! not too girly type of pink. +the material is super soft and light. i have skinny torso, so it looks really nice on me not showing thin body... +the only thing that disappointed me was it shrunk after the first wash... it shrunk one size! when i bought it (size s), it covered my flat hips, fits just like the picture, but now my hips are showing :( +i recommend getting a size up if you are too lazy to wash cold & air dry.",3,1,0,General,Tops,Knits +866,29,Love,"I was unsure about this top at first because of reviews saying ""maternity""and this shirt can have that feel if you look at it from that point. i tried it again and the arm holes fit perfectly. it has a swing cut and a peplum style which brings lots of fabric and swing. it's not that it runs big it's supposed to swing/flow from body like many styles but the peplum adds bulk because it's a little thicker fabric. so i can see how some may think maternity because of all the fabric and cut, but i lov",5,1,5,General Petite,Tops,Knits +866,37,Amazing!,"Listen up gals - buy every color before they disappear!!! this top is amazing. so flattering, incredible fabric, the colors are divine and the price is amazing! i am not one who wears peplum tops often if ever. a coworker of mine spotted this one in our store and told me as soon as i came in. i'm curvy - generally a l or xl on top and i have hips and a toosh. peplums can often either sit on my hips in an unflattering way, or look like a maternity top on me. this one is magic. hits a big longer,",5,1,6,General Petite,Tops,Knits +866,28,No shape,"Just got this in - love the color and fabric, but it has no shape on me. i thought i'd wear a large because i have a 36ddd chest, but i should have gotten a medium, at the largest. also, even if it did fit, it came with a stain resembling toothpaste right in front. i'll be returning.",3,0,1,General Petite,Tops,Knits +866,42,Beautiful 60's style top...,"I ordered this top in the pretty, sea glass green color. it is adorable on! it's constructed from a nice thick cotton and has a billowy swing look if you are into that, which i am. the cut of the neckline gives it a cool 60's vibe. my only issue is that the arm holes are cut small. also note that because of the wider neckline, i found putting a necklace on squashed it in a strange way. i'm still keeping it because it is awesome in every other aspect. most likely i will just jazz it up with fun e",5,1,26,General Petite,Tops,Knits +877,33,,"The shirt is nice, but not as nice a material as i was hoping, but i kept it anyway. but after washing it, it is even more disappointing, not very soft and now kind of an odd length. hopefully it will grow on me, but wouldn't recommend it especially for the price.",3,0,5,General Petite,Tops,Knits +866,30,,,4,1,0,General Petite,Tops,Knits +866,31,Comically bad.,"I don't normally write reviews, but this shirt was so terrible, that i felt inspired. + +first off, the seam that is in both the front and back of the shirt is much more pronounced than in the photo. secondly, there is no shape whatsoever, unlike in the photo. it bells out like a tent. it honestly looks like a shirt you would buy if you were trying to appear pregnant when not. overall, this shirt is an insult to the female form. + +retailer, what is with all of these shapeless, frocks in cheap f",1,0,4,General Petite,Tops,Knits +866,50,Wanted to love this!,"I was excited to see this top, ordered it and was disappointed. it was too tight across the chest and had too much fabric around the bottom. i tried this on 3 times hoping for i had been wrong in previous assessments- no luck.",2,0,1,General Petite,Tops,Knits +877,54,Very pretty linen tee but scratchy & transparent,"I ordered this in a petite small; a petite xs would have fit too. fits just like on the model. i'm 5'2"", currently 33-25-37ish with narrow shoulders and torso. the regular size proportions would have been off on me. lovely pattern on a milky white background. +. +i'm returning it because it feels so scratchy, much more than a linen tee i got from retailer a few years ago and that i love, especially in hot weather. with this one i would also need to wear a cami under it, as even my nude bra showed",3,1,2,General Petite,Tops,Knits +877,37,"Close, but not quite...","Usually i am a huge meadow rue fan, but not this time. the print is okay, but the shirt seemed stiff and the material was not soft. if the print was just okay but the shirt was super soft or vice versa i would have probably kept the shirt, but since it was neither it was returned?",3,0,4,General Petite,Tops,Knits +877,35,Prettier in person,"I tried the ""neutral motif"" one on when it first came out. i didn't buy but it stayed on my mind b/c the colors were so pretty. i got it at sale on sale and am so happy i did! it is sheer but i think it would work fine in a casual setting without a tank as long as you have a skin tone bra. great buy and tts.",5,1,0,General Petite,Tops,Knits +862,37,Comfy cozy top!,I have worn this beautiful and super comfy top a number of times since i purchased it. it can be casual or add a long necklace and dress it up. super versatile!!,5,1,0,General,Tops,Knits +1099,53,Soft swing dress,"I love the way this dress feels and falls. . if you like a form-fitting bodice this is not the dress for you, but the drape and cut is flattering and comfortable.",4,1,1,General Petite,Dresses,Dresses +862,34,A turtleneck poncho top,"I have been looking for a soft turtleneck that can be my to-go piece in the cold weather. this fits the bill as far as the material goes. the material used is very soft and even though it seems light in weight, it is actually very warm and not see through at all. i like the feel of this top. it would be pretty accurate to say that it feels as if i am wearing a blanket around me. it is that comfy!!! however, the one detail about this top that i am unsure about is the cut. it is very boxy to the e",4,1,3,General,Tops,Knits +1099,68,,I love this dress! it's so flattering and the length is perfect for me now that above the knee dresses are no longer flattering.,5,1,0,General Petite,Dresses,Dresses +877,53,Great throw-on piece,"5'7 145# (athletic) 34c. as info, got my usual m and this is everything the previous reviewers have said. the sleeves run long, a bit bunchy at the wrists & cuffing makes them look normal length . maybe it could be just the one i've received & i know its a tie waist, but when i move it opens as if the body is a tad small. it does fit like the photo but opens with ordinary movement. pull it tighter & double-knot it you say? it only reinforced my belief that i needed to size up. i re-ordered in a",5,1,1,General Petite,Tops,Knits +862,23,La la love!,"The textured marled stripes on this top are so soft and give this pullover the edge it needs. a few people have asked me where i bought this from and i've only worn it twice. fits like the photo- i'm 5'2"" 115lbs and bought the xs.",5,1,4,General,Tops,Knits +939,44,Beautiful sweater,I love this sweater! the wool is soft and not itchy. it can be worn tied in the front as shown or tied in the back. pretty embrodering and very flattering.,5,1,14,General Petite,Tops,Sweaters +939,35,Flattering and functional,"I really love this sweater. it is very flattering-especially in the back. and the color is very versatile so it can compliment virtually anything. the tie does not go all the way around the waste which took me a little getting used to, but it is not a problem for me. it is comfortable and keeps to the quality of other boiled wool products. just be careful washing it, i washed mine on hand cycle which is usually fine for everything-even cashmere. but this one didn't survive it. lesson learned, an",5,1,8,General Petite,Tops,Sweaters +1099,44,,Size up!!! this dress is great quality and so flattering but tight in the arms and chest. ordered in my usual xs and will regretfully need to return it.,5,1,0,General Petite,Dresses,Dresses +833,51,Nice fit,This blouse has a nice casual feel with feminine lines and the swingy design is flattering.,4,1,0,General,Tops,Blouses +1092,46,Looks better in person,"This is a great white dress for summer. + +i tried on a 4 in store and it was too big for me especially in the underarm area. when i tried on the 2, it fit perfectly. i almost felt like there should be a 3, ha ha, because it felt like it made more of a difference to downsize than i expected. that being said, i took the 2 home since it looked like it was tailored to fit my body (but not in a super tight way). + +fyi, i'm not super curvy. if you have a larger chest you may need your regular size.",5,1,1,General Petite,Dresses,Dresses +833,53,Just beautiful,This top is delicate and so feminine. it is beautiful. does run small. i had to size up. i'm usually a 6-8 m and had to buy l. it has no stretch. so i needed room for movement.,5,1,8,General,Tops,Blouses +939,32,Beautiful,This is beautiful. it can serve as a sweater or a coat and i can't wait to start wearing it.,5,1,0,General Petite,Tops,Sweaters +1104,51,Comfortable and work appropriate,"The dress is exactly as pictured. i bought it for work and it is perfect. the lining is the entire length of the dress and it hits just at the knee. i would say it is true to size, however it was a bit tight in my shoulders but i have very broad shoulders. i received compliments all day and remarked to myself it was so comfortable it was like wearing pajamas!",5,1,1,General,Dresses,Dresses +1025,58,,"Second to shopping for a swimsuit, i hate shopping for jeans. so difficult to find a pair that are both comfortable and stylish. the good news is that this pair is both. the length hits slightly below my ankle which is the perfect length for me (i'm 5'5). they are a slim fit with a slight bit of stretch. i ordered the size 27 which is my normal size and they fit perfectly. love the wash for a casual look. wish they also came in a darker wash for a dressier look. all in all, i am quite pleased. w",5,1,8,General,Bottoms,Jeans +1092,31,Pretty dress,"I bought this dress for my bridal shower. it's beautiful, tts. i usually wear 2/4 in retailer and the small was perfect. i tried on in store and the dress had a few snags and defects. they ordered me one to be delivered to my apt and it was perfect. the back is pretty too!",5,1,0,General Petite,Dresses,Dresses +877,41,,Great fit and very flattering if you have curves. perfect to throw over just about anything. i've only owned it for 9 days and have worn it four times.,5,1,10,General Petite,Tops,Knits +1006,39,It's just horrible..,"Well, the model looks great and i really like interesting unusual designs as it can be really unique for very long time. i tried and when i opened package it was funny looking tent with several beautiful buttons. fits like tent, long, huge, make me look like i am on military trials and i supposed to be some sort of target.",2,0,0,General,Bottoms,Skirts +939,33,Absolutely stunning!,"I'm so glad i splurged on this sweater coat! wow! this is the kind of product i come to retailer from! very unique, good quality, flattering, and surprisingly soft! i wore this over a sleeveless dress for a few hours and not only was i very warm, my arms weren't itchy or irritated at all... on the contrary, it was quite comfortable and soft. this is a bit pricey, but i will definitely get good use of it. i found it to run true to size. i typically wear a 6 and ordered a small. my only quibb",5,1,0,General Petite,Tops,Sweaters +1099,29,Porportions seem odd,"The design of this dress was very off for my 5'4"", 120 lb, 32d frame. it's low-cut and tight in the bust, but then very voluminous and unstructured around the hips, making me look wide there. a belt didn't help much. the fabric is nice, but the overall effect of the dress was frumpy.",2,0,0,General Petite,Dresses,Dresses +862,63,Basic go to,Love the feel and comfort,3,1,0,General Petite,Tops,Knits +1099,40,Perfect dress for a nice day,Although they didn't have any sizes left for me when i got to the store to buy it. they sent it for free and it arrived in one day it was awesome :-),4,1,0,General Petite,Dresses,Dresses +862,56,Great & easy sweater,I am very happy with my purchase. it is a great sweater! very easy to wear and cute! i am very sensitive to scratchy wool products and this one is very soft. i highly recommend it.,4,1,0,General Petite,Tops,Knits +1103,34,,I love the dress! i purchased this dress to wear on my honeymoon to paris. it made me feel like a princess walking around the gardens of versalles while wearing it!,5,1,0,General,Dresses,Dresses +1025,44,Stylish and comfortable,The fit of these jeans are so great! they look syllish and feel great at the same time. this brand does a fabulous job of creating a jean that feels like you can wear them dressed up and casual. a+,5,1,0,General,Bottoms,Jeans +862,57,Best purchase i've made in a long time,"I absolutely love this tunic and was pleasantly surprised when it arrived in the mail. i thought it looked really cute in the photo here, but it's even better in person and is extremely flattering on. so happy.",5,1,4,General,Tops,Knits +1099,62,Beautiful dress!,"This dress i received is stylish, comfortable and very nice to wear. i love the length, goes just below the knee and i am 5'2 so it is perfect for me. i can't say enough about this dress as i can't wear a lot of things because i am apple shaped but with this dress no one would ever know. thank you retailer for this beauty!",5,1,1,General Petite,Dresses,Dresses +862,59,Runs quite large,"The photo of the mila turtleneck where model has her hands to her sides, and just below her hair, there is a bit of extra fabric which falls to the bottom of the sweater in a bit of a pleat- well, it's not representative of the abundance of fabric in the xl. i usually wear an l or xl well with retailer clothing. the excess added the appearance of excessive pounds from breasts to bottom of sweater. bummer. i'll be returning it.",2,0,3,General,Tops,Knits +862,62,Gorgeous!,This top looks elegant with my stirrup pants and feels like heaven it is so soft. fitted at the neck and arms; loose and swingy at the trunk with a beautifully finished hem. the yarn is two-toned heather.,5,1,3,General,Tops,Knits +862,59,Love it!,"Really soft and roomy. very comfortable. just hope it washes well. nice alternative to the regular turtleneck. i wanted it in both colors neutral and green. unfortunately, the neutral did not work for me.",4,1,0,General,Tops,Knits +838,56,,"The colors on my monitor are not true to the product, and that was disappointing to me. that being said, and it is important because this will not go with the pants and skirts that i intended, it is a very good quality blouse,especially at the sale price. all cut edges and seams are bound. the detailing is very good. i wish it was silk instead of polyester, however. the buttons appear in the photo to be shell--in reality they are covered buttons. the print is odd and will be difficult to style.",4,1,0,General,Tops,Blouses +939,44,Wanted to love...,"This sweater caught my eye and the positive reviews and pre-holiday sale had me try it. loved the color and cut but surprisingly not the embroidery. i felt like i'd wear it a couple of times and then tire of it. my husband and daughter both said, ""meh,"" so back it went.",3,0,1,General Petite,Tops,Sweaters +939,49,Like a robe,"I love boiled wool and have gotten a few items from retailer in years past that i have loved. this one was a fail. i typically wear a small and it was slightly too big and shapeless for me. i am 34c, 127#. the moment i put it on, it felt like i was wearing a bathrobe. it flares quite a bit, and the stitching is brown and not dark grey like i was hoping. the quality is as expected. the color overall is as it looks online. but it was a return.",3,0,14,General Petite,Tops,Sweaters +1099,30,Love,I love the length of the dress and the fun swing the skirt has. the print is wonderful.,5,1,1,General Petite,Dresses,Dresses +1092,29,Not for hippy girls,"This dress is really pretty, but not made for girls with hips. i tried on my usual size 6 and it fit everywhere but was just slightly too tight in the bum for me to feel comfortable, but i feel like i would have been swimming everywhere else in the dress in an 8 (typical of shifts i guess, but a girls can dream!). if you are a straighter shape, though, i would highly recommend.",4,1,8,General Petite,Dresses,Dresses +939,25,Amazing,It was purchased as a gift but truly amazing! the quality is fantastic and the owner of the sweater is truly happy with it!,5,1,0,General Petite,Tops,Sweaters +877,37,Easy and comfortable,The tie jacket is an easy one to throw on for a casual look. it fits well to the body even better than pictured. very comfortable and medium weight so perfect for spring.,4,1,9,General Petite,Tops,Knits +833,29,"Must have, elegant, chic","This top! i was hesitant to try this on because it felt too busy, however it is a must have. it's just the right amount of lace and detail. i am typically an m in retailer tops (sometimes l depending on the designer; i'm a 32/34ddd). i initially tried a l in this thinking it had no stretch but ended up going with the medium. the arms were a tad tight but stretched slightly after an hour of wear and it fits perfectly everywhere. i think if you size up it will be too ""blousy."" highly recommend this-",5,1,3,General,Tops,Blouses +877,31,,"Saturday/sunday never disappoints! love this black cardigan. runs a tad large i noticed in the arm length for me. not a problem anywhere else though. good medium weight to the fabric. durable quality and waist flattering once tied. great for throwing on over a dress, wearing with a t-shirt",5,1,4,General Petite,Tops,Knits +862,56,A lot of room,"This sweater is extremely roomy. the cut is very wide - wider than it is long, the sleeves are dolman style, and the neck is a little loose. with a lot of manipulation i managed to convince myself that i wasn't wearing a tent, but i would suggest sizing down and also being tall and thin, if you can. i'm keeping mine despite a funky fit on my hourglass frame because i'm exploring funky town lately. join me at your own risk!",3,1,0,General,Tops,Knits +1103,37,"Lovely dress, but long in even petite","I received this dress in the mail today, and while it is lovely and the drape is flattering, it will have to go back. i would need it in a xsp as the top is far too large for me, and the dress runs long for a petite.",4,1,9,General,Dresses,Dresses +1099,35,A new favorite!,"This dress is as cute as i hoped it would be. i love the pockets and length and flattering cut. it looks great with boots and is perfect for fall. only con is that it is dry clean only. it seems like the fabric would do just fine with hand washing, and i will probably go for it. i just don't have the patience or organization for dry cleaning.",5,1,12,General Petite,Dresses,Dresses +939,63,,This is a great cold weather alternative to a coat especially in warmer climates. it is lightweight but dense. love the color.,5,1,0,General Petite,Tops,Sweaters +939,41,Beautiful sweater,This sweater is absolutely beautiful. the shape is very flattering both tied in front and in back. the wool is nice and soft and the color is a nice neutral that will pair well with anything. the stitching is a nice added detail that makes this sweater somethig special. it is a great addition to any wardrobe and i'm thrilled that it is part of mine. i can't wait to wear it!,5,1,2,General Petite,Tops,Sweaters +1099,33,Hips don't lie,"It's rare for a dress to completely not work on me, but this dress completely did not work on me. i'm tall and have an hourglass figure. i got this dress in my usual size s. this dress somehow made me look ridiculously pear shaped. the empire type bust of the dress made both my bust (32c) and my waist look pretty much non-existent. it looked so bad on me i actually laughed. it's a shame though, because i had been eyeing this dress for a long time. and it is a beautiful dress, but i would not rec",3,0,3,General Petite,Dresses,Dresses +1092,37,Perfect lwd!,This is perfect! it fits tts. i am usually an 8 and this was spot on. it isn't too short either. it really is as it appears on the model. i absolutely love it and can't wait to wear it. my hubby definitely approved!,5,1,14,General Petite,Dresses,Dresses +939,42,Adorable sweater coat,"I fell in love the first time i saw it. the xs is the perfect fit. i generally wear xs/s or 2 in dresses. its not too snug to wear over a thin to medium thickness sweater. its a good length also, not too long, which i struggle with given my height of 5'3. the s was overall too big. its not itchy, though i've only worn it with long sleeve tops. its just the right weight. not too thin and not too heavy. its feminine and fun. wonderful topper for jeans, pants, or a dress. the color is versatile. sl",5,1,1,General Petite,Tops,Sweaters +939,73,,"This piece is gorgeous in person. it is more of a broen than taupe and goes with everything... it is more of a coat than a sweater. i bought one for my mom, and picked one up for myself when it went on sale. it is moms favorite piece among her extensive retailer collection.",5,1,2,General Petite,Tops,Sweaters +396,29,Cute bathing suit bottoms,"This was my first shot at high-rise bottoms and i love them. the fit is very flattering and the print is adorable. i just bought the bottoms so i can't comment on the top, it looked a bit small for my bust so i am purchasing a solid colored top to match.",5,1,0,Initmates,Intimate,Swim +1092,48,,I ordered my normal size 6 in this dress and could barely get it on. it runs very small. i would suggest going up a size or maybe even two sizes up.,3,1,4,General Petite,Dresses,Dresses +1092,34,Beautiful flattering dress,"This dress is beautiful. even my husband complimented it several times. true to size. due to the button closure in the back, you might have to size up if you are larger in the chest.",5,1,1,General Petite,Dresses,Dresses +939,57,Great piece,"This sweater coat caught my attention online, so i went in search for it at my local store. it's a flattering fit, across the chest and shoulders. very well made. the length is mid thigh. i am 5'4"" 125lbs. i went with the small, with the thought of wearing nothing too bulky under it. it does have an attached belt, that can easily be knotted together or each on its own for another look, if you opt to leave it open. it's light weight enough for cool days or evenings, but also warm enough for colde",5,1,2,General Petite,Tops,Sweaters +877,43,Perfect wardrobe staple !,"Comfortable, thick material ( think: structured sweatshirt material) easy to throw on and look as if effort was made - when it wasn't. sizing. i'm between a large and xl usually. large was perfect. i'm tall and curvy: ( 36g curvy) and this cardigan/ belted jacket/is very flattering.",5,1,0,General Petite,Tops,Knits +1092,38,Beautiful dress but very large,"This dress is beautiful and unique - the cutouts and lace really stand out. however, the dress was huge on me and that is rare with moulinette souers. i usually get a 0 or 0p in this brand due to the bust sizing being generally smaller but the 0 regular was huge and the armholes really big. the petite may have been better but felt that it would have been too short. while the design is beautiful, there were several areas on the dress where the threads were unraveling. for reference, i am 24 waist",2,0,1,General Petite,Dresses,Dresses +1092,39,Beautiful white dress,The lace detail is very classy. a great go to white dress.,4,1,1,General Petite,Dresses,Dresses +1092,25,,"I am so in love with this dress. i think it is made of high quality fabric and very well designed. i am 5'6"", about 145lbs, 34d and the 4 fit perfectly! i bought it for my upcoming bridal shower and could not be more excited to wear it!!",5,1,3,General Petite,Dresses,Dresses +396,45,"Cute, but....","I like the retro look but these seem to run large to me. i get they are ruched on the sides. yet, the bottom has a saggy look. i got the large but i feel like i should have gotten the medium to fill out the bottom. i already took the strip out and washed so i'm keeping them. very cute with a bikini top. maybe i just need a bigger butt.",4,1,0,Initmates,Intimate,Swim +1092,32,Beautiful dress,"I've been waiting for this dress to come back in stock and when it finally did i got it in the size 2. i'm typically a 2 or 4 in dresses and the 2 fits perfect. for reference i'm 5'6, 34c, 130lb. i think it runs on a larger size because it's a shift dress. i would recommend sizing down. a great white dress to wear to my rehearsal dinner!",5,1,0,General Petite,Dresses,Dresses +877,60,Perfect!,"This is one of my favorite purchases ever-from anywhere! one of my new years resolutions was to stop wearing work out clothes all of the time. this is as comfortable as any work out jacket and looks classy. can be dressed up or down. its warm, flattering and unique.",5,1,1,General Petite,Tops,Knits +1006,22,Dissapointed:(,The material looked much nicer in the online picture. also- there are pockets which added a bulk to it that was not flattering on me.,3,0,2,General,Bottoms,Skirts +939,49,,"I thought the sweater itself was beautiful, but found the fabric to be stiff and itchy.",2,0,2,General Petite,Tops,Sweaters +862,37,"Simple, fun, edgy","This is a great staple top for your closet. its tremendously soft, a bit oversized, and drapes really lovely. in store there were also striped styles available, but i love the emerald green. the colors are absolutely perfect and will transfer well into any season! my only issue with this top (which inevitably is the reason i decided not to purchase) is the dolman sleeve. i'm al xl on top...so i'm never looking for extra width in anything i wear. the dolman sleeve really only looks right on me if",4,1,4,General,Tops,Knits +1099,36,Staple!,This dress is a staple. if you don't feel like getting too dressed up and want to be comfortable. this is it. will be great for travel as well. i like to pack light. so i look forward to traveling with this dress.,5,1,0,General Petite,Dresses,Dresses +1099,33,,,5,1,0,General Petite,Dresses,Dresses +1103,29,Beautiful summery dress,"This dress is really lovely. if fits and flows in a very flattering way although it is a bit long (i'm really tall so that's a very nice feature for me :p) it actually feels more linen-y than i expected to which was surprising, (i probably didn't read the product description close enough) but it was a pleasant surprise. can't wait to wear this to brunch/beach parties this summer! fair warning, it's also a little see-through - might want to wear nude underwear ;)",5,1,4,General,Dresses,Dresses +1022,41,Super flattering!,"I really love these jeans! this is my second pair of ags and they're so comfortable. i will say that these jeans are super long! i have long legs and it takes a 3 inch lift from my shoes to get them to hit correctly. if you're short, you can expect to get them hemmed. the high waist is great! size down in ag because they tend to stretch and being high waisted they for differently!",5,1,2,General,Bottoms,Jeans +1099,26,"Flattering, vintage feel","Love this dress! it is very flattering and makes my waist look tiny. i don't care for the hem. it isn't terrible, but i wish it was cut straight across instead of curved at the bottom. i'll probably have it altered. comfortable, great for the office.",4,1,1,General Petite,Dresses,Dresses +1092,29,Very straight,I wanted this dress to work so badly but if you have any chest or any hips this won't work for you. i tried in petites and regular and it just didn't work at all,3,0,0,General Petite,Dresses,Dresses +939,36,Beautiful sweater!,"I fell in love with this sweater as soon as i saw it in the store. runs tts. the medium fit perfect. i am 5'10, 160lbs. +very versatile...can wear with jeans or dress up with all black.",5,1,1,General Petite,Tops,Sweaters +862,28,,"This shirt runs large in my opinion. i wish i would have sized down to a xs but maybe it will shrink a little when i wash it. its a great shirt, good quality and i'm very happy i got it.",5,1,0,General,Tops,Knits +1104,39,Not for my body,"Lovely dress that i recommend, just not for those with my body type. i'm broader and rounder on top so i assumed the vertical stripes would slim me down. from the front everything is awesome--from behind it was less flattering. made my flat bum look flatter. also the stripe patterns do not match at the break. other than that the quality is fantastic, the fabric is a great transitional weight, the fit is comfortable, and the style is classic.",4,1,2,General,Dresses,Dresses +1099,29,Perfect transition dress,"I love this dress! i was actually able to fit in a l versus my usual xl due to the style of the dress. a bigger chest person (i'm a d) may not find the dress as well fitting as i do. overall great fit can easily dress it warm with a scarf, boots, hat or best. a great dress for fall-spring",5,1,4,General Petite,Dresses,Dresses +1092,64,The perfect spring dress!,"Love love love this dress! the fit is amazing and is slimming. although the lace is delicate looking, it wears well.",5,1,1,General Petite,Dresses,Dresses +1104,26,I love this!,"Got this for my daughter who lives out of town. i plan on bringing it to her during my next visit. i love it! the style is up to date and pretty. it's a perfect dress for almost any occasion! i'm hoping it will fit her, but the sizing looks right to me and the quality is great!",5,1,0,General,Dresses,Dresses +1099,33,,"This dress is very flattering and has wonderful movement, i'm so happy that it went on sale! definitely worth it!",5,1,0,General Petite,Dresses,Dresses +1099,34,Super soft but can make you look frumpy,"Dress is silk? it's soft and pretty. it's blue so you can wear brown or blue suede boots! +i caught my reflection a few times and thought i looked really bottom heavy. dress is awesome. worth it.",5,1,0,General Petite,Dresses,Dresses +1099,48,Perfect,"Loose fitting and comfortable without losing its shape. +looks great on. the tie in front adds to the dress. + +i love to wear with tan knee-high boots.",5,1,0,General Petite,Dresses,Dresses +862,64,"Cute top, but...","Just recd the neutral & navy in the size s, my usual size in tops at retailer. just a heads up - it's way oversized under the arms. in the fashion world probably falls under the category of a dolman style sleeve. also the fabric is nubby like/pilled look. similar fabric is the 'warm-up pullover' that i recently saw at the store. i have a feeling this may be a new trend. if you are ok w/ the oversized underarms & nubby fabric then order up. if hesitant, wait & visit the store... i love the look of",4,1,12,General,Tops,Knits +868,35,,,4,1,0,General,Tops,Knits +877,30,Great!,Good quality and design. perfect for casual office. definitely recommend. i don't know why it's called a cardigan because it's more like a casual blazer. note there is no button- just the tie to close. runs big. i'm 5'8'' 130# ordered the xs and it's roomy.,5,1,4,General Petite,Tops,Knits +877,32,More structured than a cardi,"I just got this after ordering online and i was pleasantly surprised. the cardigan has the structure of a lightweight jacket, so it creates a flattering silhouette. i ordered it in a medium, and even though i'm curvy on top it fits really nicely.",5,1,0,General Petite,Tops,Knits +877,29,So comfy!,"Love this jacket! the sleeves are a little big/loose but it's not quite as flattering as it could be, but it's so comfy it's worth it! great quality.",5,1,0,General Petite,Tops,Knits +939,36,,,5,1,0,General Petite,Tops,Sweaters +396,32,,,5,1,0,Initmates,Intimate,Swim +877,35,Obsessed! please make in other colors!,"I don't know what took me so long to pull the trigger on this item...probably because it wasn't in my store for very long so i didn't try it on in person. i decided to order this based upon the reviews, and i was immediately obsessed. this cardigan is magical. i first wore it to work with black trousers and a plain crewneck t-shirt underneath with a bib necklace, and everybody in my office thought i was wearing the cutest blazer. i had all the ladies come feel it to prove it in fact feels like a",5,1,0,General Petite,Tops,Knits +877,35,,"Bought this today and i'm in love!! very flattering, great fit!",5,1,2,General Petite,Tops,Knits +1092,31,,"Really cute dress and i cannot wait to wear it for my wedding rehearsal dinner. the buttons on the back are my favorite part about the dress since they add something different. it fits tts, but it is more fitted than a regular shift dress, which is nice. i am 5'9, 145 pounds, and the size 6 fit me perfectly.",5,1,3,General Petite,Dresses,Dresses +1006,35,Weird bunching in the front,"This was disappointing to me. i love how this looks on the model. unfortunately it made me look huge. it was all bunched up after i buttoned and put it on. i didn't find it was tts, i am a 10 m and got the m. it was too tight in the waist. before i'd even put it on, i noticed the waist looked very small. i don't even think the sizing issue caused the material bunching. it's like the buttons didn't match up or something.",2,0,3,General,Bottoms,Skirts +939,38,Unique upgraded blazer / cardi,"Really nice quality warm, sleek sweater. runs small-ish. i'm 5'8"", 140 lbs, 34c. i got the small and could have gotten x-small.",4,1,1,General Petite,Tops,Sweaters +936,24,Love this,"I bought this in the store and it is beautiful, the red is more of a faded red/burnt orange, not as bright as pictured, which is great. i am usually an xs or s and was a s in this item.",5,1,3,General,Tops,Sweaters +872,41,Cute shirt but the sewing is slightly off,"This shirt is cute. i like the pleated neck as it makes the top feminine, while still casual. it is made of very soft fabric and drapes nicely. the only issue is that the seam/pleat that runs down the middle is off center. i think the fabric was cut incorrectly so the seam twists to one side after i have it on for a few minutes and move around. i keep having to twist it straight which is very annoying.",3,1,6,General,Tops,Knits +1078,56,Super comfortable,"I read the online reviews that the dress ran large so ordered size 6 and 8. i'm normally an 8 or 10, and the 6 fit perfectly. dress hangs beautifully and lining is really soft. appears that it will wrinkle somewhat easily but i am keeping it anyway since it's so beautiful. the bell sleeves are really cute! i highly recommend the dress.",5,1,0,General Petite,Dresses,Dresses +936,45,Cozy sweater,"I passed this sweater a few times during a recent visit to retailer. after striking out on several items i thought would work, i grabbed this sweater in the cream color. i loved it as soon as i put it on! it is meant to be oversized, which i love. the neck is chunky and looks good open or buttoned all the way to make a loose turtleneck. looks great with skinny jeans and booties. i went with my usual xs. great purchase!",5,1,13,General,Tops,Sweaters +936,37,,"I got this sweater with high hopes to wear it with some leggings for christmas. it looked adorable (and long!) on the model. however, it doesn't even cover my butt, that's how short it is. if you're anything over 5'4"", i'd say it'll be too short for leggings.",2,0,0,General,Tops,Sweaters +936,62,Everyday comfort,"Totally love this sweater - everything about it i find to match the model pics (fit, color, length). no dry cleaning required on this one, so i plan to get other colors to wear with leggings and skinnies fall through winter. i love that this is oversized without looking frumpy - it does have some shape to it and the knit falls perfects (not a heavy/chunky sweater...think soft mid-weight that you can layer with). worth full price!",5,1,6,General,Tops,Sweaters +1078,51,Feeling pink!,Beautiful flowing feminine dress. runs large; size down. hot pink color. well made.,5,1,0,General Petite,Dresses,Dresses +936,50,Perfect sweater,This sweater is a must have for fall!! super comfy yet stylish fit make it fun to dress up or down. i plan on wearing it with leggings and high boots!,5,1,2,General,Tops,Sweaters +936,46,,"I tried this sweater on in the store, regretted not purchasing it, and ended up buying it online. the fabric is soft, seems to be good quality, and hangs nicely. i purchased the taupe color and it is a rich, pretty color.",5,1,0,General,Tops,Sweaters +936,68,,"My daughter bought this sweater in xs in white and i tried it on. it was a little too tight but long enough to wear with leggings so i ordered the red in a s. it just covers my butt in the back - not nearly as long as my daughter's. i still love the sweater and will wear it with jeans but it is way too short to wear with leggings. i don't understand how there can be such a difference in the same sweater - a size larger and at least 4 inches shorter! if not for that, i would have rated it a 5.",4,1,0,General,Tops,Sweaters +612,70,Great,Bought these a week ago at full price to take on vacation. love them i see they are now 1/2 price if they came in a different color would get a second pair,5,1,4,General,Bottoms,Shorts +936,39,Didn't work for me,"I ordered this in a m and it was just a big boxy tent. i really wanted to love it since the length is good for leggings and throwing on to cart kids around. it just was so big and had no shape at all. it's possible i should have sized down to a small, but i'm sending it back.",3,0,4,General,Tops,Sweaters +1078,23,Pretty in pink,"I love this dress. i am usually a size 4, but ordered this in size 0 and it fits perfect! great for any season, and can dress up or dress down. the pink is the perfect shade - i feel like i'm elle woods!",5,1,0,General Petite,Dresses,Dresses +998,61,Elegant skirt,Beautiful skirt! the only reason i didn't give a five star rating is due to some bunching on each side - hopefully can iron it out or i will get it tailored!,4,1,4,General,Bottoms,Skirts +1078,46,Love this dress,I just received this dress tried it on. i totally fell in love with it . the pink is just beautiful.it's a little big so i will definitely will be exchanging it for a size 14 . you would absolutely love this dress.,5,1,31,General Petite,Dresses,Dresses +1078,22,,,4,1,0,General Petite,Dresses,Dresses +936,39,Flawed pattern,"Let me start this review by saying, 75% of my clothing is from retailer and i love them. my husband bought this sweater for me recently and it's gorgeous, but when i tried it on one sleeve was longer than the other. i went to the store and tried on several sweaters even in different colors and had the same issue. sometimes is was extreme, sometimes is wasn't as noticeable. it was noticeable to me, however, as i am 6' and sleeve length is super obvious when its too short. love the sweater, as it wa",3,0,4,General,Tops,Sweaters +936,54,,"I bought this stylish and cozy sweater in ivory. i find that cable knit sweaters tend to add bulk, but this sweater creates a long, lean look. it looks great with leggings and skinny jeans, and the buttons on the cowl are a fun detail. every time i wear this, i get compliments on it.",5,1,0,General,Tops,Sweaters +1075,25,,"This dress was very cute the first time i wore it, but after my second wear, the bottom layer didn't remain adjacent to the top layer and i found it to be awkward.",3,0,0,General Petite,Dresses,Dresses +1003,54,Perfect summer skirt,"I love this skirt! fits like a dream, fabric is soft, light, and drapes perfectly. i bought the skewed pullover to wear with it and the colors are perfect. my new favorite summer outfit.",5,1,1,General,Bottoms,Skirts +1078,44,Great dress,This is a beautiful dress! the photos do not do it justice - the pink is gorgeous! it's also very comfortable but runs large. i'm usually a 6 or an 8 but purchased a 4.,5,1,0,General Petite,Dresses,Dresses +406,28,Didn't work for me,"The cutout design of this suit looks cute on the model but didn't flatter my shape. i think it would work better on someone very thin. the criss-cross fabric portion was a bit baggy and didn't sit right. even worse, the bust portion made me look flat (and i'm a full c cup).",2,0,14,Initmates,Intimate,Swim +1079,47,Not as pictured,"This dress arrived with a black rope belt and belt loops. i did not see this in the photo. i thought it was a throw-on-and-go dress, not a belted dress. this, in addition to the weird sizing, caused me to return it. i am a size 4-6 in dresses and the size small i ordered was skin tight and bunched at the hips.",3,1,3,General Petite,Dresses,Dresses +936,62,It's so me!,"Saw this on sale and tried it, not expecting anything and wound up loving it. i am 5'4 and it covers my thighs and rear well so i can wear it with leggings. it came mid thigh on me. the red is a rich burnt orange/red. i love that is is mostly cotton so i won;t get overheated.",5,1,0,General,Tops,Sweaters +1078,46,Wrinkled!,The dress arrived wrinkled so i washed it and pressed it. it looked beautiful until i sat down. the entire dress was wrinkled and it looked terrible all day. can't wear this again.,1,0,0,General Petite,Dresses,Dresses +936,32,Great fall/winter piece!,"I purchased this piece in store in a size small, ivory. i am usually a size medium but the small fit perfect! material is soft, lightweight, and very comfortable. collar can be buttoned to create more of a turtleneck look or unbuttoned to create less of the same look. i'm so glad i grabbed this because it is a great cold weather staple and i doubt they will last long!!",5,1,1,General,Tops,Sweaters +872,42,Perfect for work and play,"This shirt works for both going out and going to work, and i can wear it with everything. fits perfect, tucked and untucked, tied and untied. i love it.",5,1,0,General,Tops,Knits +936,56,I could wear it everyday,"This cozy sweater looks great with skinny jeans or leggings. as a 55-year-old woman who loves retailer i'm always on the lookout for cute clothes that don't make me look like i'm trying to dress too young. this sweater is comfy and stylish and looks really classy. i wore it to a holiday party and got many compliments, which is unusual for what is basically a simple ivory sweater. it breathes, has just the right amount of room in the sleeves, and was a great purchase. i wish i had bought other colo",5,1,1,General,Tops,Sweaters +1075,22,Love these stripes,This was my go to dress this past summer. so easy to wear and pair with cute wedges. perfect to dress up or down.,5,1,0,General Petite,Dresses,Dresses +1077,40,,"I absolutely love this dress. i bought this right before traveling to italy for vacation. it was perfect for the hot weather, flows nicely and was comfortable for a whole day walking around. i am usually a small, but this just felt to loose on my chest. i went with an xs.",5,1,0,General Petite,Dresses,Dresses +1078,62,Pretty in pink,I love this dress! easy breezy flowy comfortable & pink! fits a true medium ...would recommend to anyone. makes me a little flirty!,5,1,0,General Petite,Dresses,Dresses +936,48,Love it!,"This sweater is super cozy and comfy and my new favorite sweater! the green is a dark khaki and really pretty. it's long enough to wear with leggings, but not boxy or frumpy.",5,1,14,General,Tops,Sweaters +1078,32,Perfect postpartum dress!,"I bought this dress for a couple fall weddings to hide my postpartum belly. it was only available in a size 8 -- which is my typical size. i was nervous based on the reviews it would still be too big, but it fits perfectly. i am 5'10"", so i assume my frame can handle the drappiness well!",5,1,0,General Petite,Dresses,Dresses +1077,26,Disappointing,"After reading the previous review, i was pretty confident in ordering this dress. it arrived in the mail today, and i was so disappointed. first of all, it's huge. the medium was way too big on me, and i'm never a small at retailer! (i even considered ordering the large in this - my normal size at retailer.) second, the colors are not as vibrant as in the photo, and the fabric felt cheap. finally, it just looked like i went to hawaii and bought a drab dress there that didn't fit right.",1,0,1,General Petite,Dresses,Dresses +1078,45,"Retailer, make this dress in other colors, patterns","This dress is awesome! love everything about it, except the colors! the pink is ridiculous, it is like pepto on crack, there's no way, outside of being a bridesmaid, i would ever wear that shade of pink. nauseating. i would order the turquoise, but i don't think i want that either. plus the pink was the only color offered in the store, even though i saw the dress offered in black online at one time. why wouldn't you stock the black in-store???? i can no longer get it. + +you need to offer this d",3,0,0,General Petite,Dresses,Dresses +998,48,Way too big,I ordered my usual size m and when arrived i thought the material and cut was nice. once i tried it on it was way too big in hips. i looked rather comical how it extended on the sides. i returned the dress.,2,0,0,General,Bottoms,Skirts +1078,52,Fun and flowy,"Fun dress to wear, i received numerous compliments on the color and design of the dress. very flowy and comfortable, love it. i wish i had bought a size smaller than i normally wea because it runs large, but an overall great dress",5,1,0,General Petite,Dresses,Dresses +872,37,Cute shirt,"Unlike other reviews, i did not have a problem with the seam. this is a cute shirt that can be dressed up or down.",5,1,0,General,Tops,Knits +936,37,,,4,1,0,General,Tops,Sweaters +1078,31,Comfortably chic,"I have a casual oceanside wedding to attend and thought this easy, yet elegant dress would be a good purchase. i initially bought two sizes: 10 and 12. i'm typically a 12 in more structured dresses (i.e., more rigid fabric with zippered entry) but because this dress was flowy and slipped on over the head, i also ordered the 10. i'm 5'5"", broader shoulders, 36d, with smaller hips that are typically one size smaller than my top half. the 12 ended up being comically huge and fit like a tent. the 10",4,1,1,General Petite,Dresses,Dresses +872,41,"Dressy look, t-shirt feel","I purchased this blouse in black. love it. this blouse goes with everything from jeans to work to cocktail. it is perfect! my only wish is that it came in a colors. i would add navy, red, green, white. i'm tempted to purchase another one just so i never have to worry about the one i have wearing out. buy it - you won't be sorry.",5,1,0,General,Tops,Knits +939,42,Love boiled wool,Always attracted to wool for its warmth and breathability. this jacket has great style that can be casual or dressed up some. it's slightly more boxy then expected which i think lends to the casual look. find myself wearing it a lot.,5,1,15,General Petite,Tops,Sweaters +1078,52,Perfect dress,"This dress is a great color, fabric, and the style is very flattering! i'm wearing to a wedding but it will be great for many events this fall! dressy enough for a cocktail party but could also wear to church!",5,1,0,General Petite,Dresses,Dresses +936,89,Perfect sweater,"This sweater just grows on me every time i put it on. it is so comfortable, flattering and literally the perfect winter sweater. the length is long but so comfortable with leggings or skinny jeans. absolutely love it. i have the cream color one and i have to wear a tank under but the material and look is perfect.",5,1,0,General,Tops,Sweaters +1003,48,Seriously beautiful,"This skirt is stunning. like the other reviewer, i believe this is probably the most beautiful thing in my closet. the colors are just striking. it is also flattering - i find some skirts can kind of pouf out around the hips and add bulk, this one lays nice and flat and looks great. the material is very soft and simple and i love the frayed edges at the bottom. i am just between 5""3"" and 5'4"" and weigh 112 lbs; i took an xs and it fits perfectly, so it seems true to size. only thing, if you are",5,1,3,General,Bottoms,Skirts +1078,35,Horrible,"I cannot imagine this dress working in any size. i am a small, thin and average height woman (usually a 25/26 in pants, a size 32c bust, and 5'6"" tall). this dress was huge. i sized down to a 2 ( i am always a 4 in dresses) and this dress was still big... i do not know if i could size down to a 0 though as the shoulders seemed to fit right. it was ginormous. i got it for a wedding in two months and i will be 3 months pregnant, it still wouldn't work unless i was 9 months pregnant and carrying tr",1,0,2,General Petite,Dresses,Dresses +1078,29,Love this dress!!!,"Saw this in store today and had to have it. the pink is a really bright pink - definitely more of a hot pink than it appears in the image online. i am a solid 10, and i bought this in an 8, so it definitely runs a size large. highly recommend!",5,1,3,General Petite,Dresses,Dresses +1117,57,"Came with a nice surprise"" sleeves ""","To my surprise these vest came with sleeves,but only can zip up halfway,so that armpit will show and it looks like the jacket is ripped at the armpit area! why? that's a good question! it does run very small.i'm 5 feet tall and weighs 115 pounds,luckily the only one left is size l,so i ordered and it fits perfectly!",4,1,3,General Petite,Jackets,Outerwear +936,48,Perfect fall sweater,I love this sweater especially the color. i never would have order this sweater on line but when i saw it in person the color was more of a burnt orange. the fit was perfect. i can wear with skinny jeans or leggings.,5,1,0,General,Tops,Sweaters +1078,48,,"I love this dress and received many compliments when i wore it. the pink is beautiful. however, it does run large so i will need to exchange it. the little square at the base of the neckline was crooked on the one i received. might not bug anyone else, but it bothered me.",5,1,3,General Petite,Dresses,Dresses +936,26,Pretty but not what i was looking for.,Disappointed with the fit and color of this sweater. more of a rusty red then bright cherry red. i ordered a small and found the sweater had no shape and just hung lumpy on me. i am 5'5 120 and usually a small in retailer sweaters.,3,0,1,General,Tops,Sweaters +936,52,Beautiful & cozy,"I hesitated purchasing this because of the high price, so kept waiting and then the petite sizes ran out so i figured i missed it. then miraculously the petite in the green was available so i went for it. this sweater is yummy and cozy. drapes beautifully. i am 5'1"" , short waisted, and wear size 2 in most clothes. the petite s fits perfectly. with a pair of black leggings and high boots, this is a winner outfit for fall and winter. very comfy. the sweater has a bit of an open-weave, so keep tha",5,1,0,General,Tops,Sweaters +1003,31,Beautiful!,I saw this skirt online and immediately went to the store to hunt it down. is perfect! one of the most beautiful items of clothing i own. was worried the waistband would be unflattering since i'm short and curvy but it's very flattering. can dress up or wear to the beach. i love it!!,5,1,3,General,Bottoms,Skirts +936,58,Very flattering,"I purchased this in the ivory color and love it. very comfortable and agree with reviewer who said it looks good with 1 button or 2 buttoned up. my one complaint is that i found it to be such an open weave that i feel it necessary to wear a cami underneath, which is not the end of the world. the other issue i have: the back is definitely longer than the front, as pictured. i'm not sure why retailer feels compelled to have almost every top they sell have this styling, i don't think its necessary an",5,1,1,General,Tops,Sweaters +936,66,Gorgeous sweater,"I saw this sweater online and i fell in love with it! i was hoping to wear it for christmas. it arrived on time and it was such an amazing color. there is a touch of orange to the red color. it has a buttoned collar, and i like wearing it with one button open. it has to be one of the softest, most comfy sweaters i've ever worn. i wore it with skinny jeans and boots. it would be fine with leggings, too. the style and quality is superb, as always. i'm very pleased with this purchase!",5,1,0,General,Tops,Sweaters +872,32,Love it,This shirt feels amazing. it also drapes nicely and is very feminine and flattering. great versatile piece.,5,1,0,General,Tops,Knits +936,36,Great cozy sweater,"This sweater was exactly what i was looking for...something well made, cozy, easy to just throw on and go and still look chic. i am 5'3"" and 110 lbs and the x-small fit perfectly - still roomy but drapes well. i got the taupe which is nice but i got the red color for my sister in law and its gorgeous- more of a burnt orange than the red show here. i would definitely recommend this sweater!",5,1,0,General,Tops,Sweaters +936,66,Perfect cold weather sweater,"I bought two of these in red and taupe. this is a great sweater for those of us who can't wear wool but need to stay warm. the cowl is adjustable with buttons, so not overwhelming even on a small person such as myself (5'2""). the texture is yummy and so are the colors. softness factor is over the top, too. i wish it came in black. have not washed them yet, so can't attest to that feature, but i am very happy with the quality, so far. thanks retailer!!!",5,1,0,General,Tops,Sweaters +936,64,,"Let me start off by saying that i really do like this sweater. the texture is very nice and, if it does start to pill, the material is one where i don't think it'll show up much (the fabric is a little ""bumpy"", but still soft). + +i'm only giving it 4 stars because the sleeves could be 2 to 3 inches longer. i bought this sweater in both the red and tan colors (medium) i liked it so much. i've also never had a problem with long sleeve shirts/sweaters from retailer having overly short sleeves. however",4,1,1,General,Tops,Sweaters +406,41,Sexy with coverage,I wish this came in a petite size! i'm going to do my best to add some stitches in the ruching to keep the middle taught. i'm busty (32 ddd) and the suit had plenty of coverage and lift. i will need to make additional loops in the back latch but this piece is worth all the extra work. i was surprised this worked so well for a short curvy figure. i ordered a medium.,4,1,0,Initmates,Intimate,Swim +872,30,Middle seam off,This top is very cute. but the middle seam in off center near the bottom and cause the top to twist while wearing it. that is annoying.,4,0,3,General,Tops,Knits +998,28,Trumpet maxi skirt,"This was a sleeper hit for me! it was on sale for a great price so i thought...what the heck! interesting diagonals in how the skirt is pieced together and i totally felt like a sexy mermaid! the only downside was that it was so long! i'm 5/2"" and expect things like this to be long but wow. luckily it was easy to shorten without loosing the cute flare at the bottom. i'm 135lbs and the medium fit snug but not trampy. i could have probably worn a large too but i don't plan on tucking my shirt into",4,1,1,General,Bottoms,Skirts +872,45,Classic top,The top looks exactly as pictured and i liked the fabric. the fit is classic and i will be able to wear this top many different ways. i was hoping that it was long sleeve but it is actually 3/4 sleeve.,5,1,0,General,Tops,Knits +936,26,Comfy!,"I love this sweater! it's extremely cozy and great for wearing with leggings due to the length. i ordered the red color in a s and it fits great and it is long, like i had hoped. the red is really more of a burnt orange than the red in the photo, but i actually like that even better.",5,1,0,General,Tops,Sweaters +1078,57,Awesome prettie in pink,"Beautiful dress, just like wearing a night shirt!! great flattering fit for most figures!! wonderful color love the bell sleeves.",5,1,0,General Petite,Dresses,Dresses +1078,47,Better than i imagined,I hesitated to purchase this dress because of the color but it is a beautiful deep pink that i think would work with all skin tones. i ordered a size down as recommended by other reviewers and the dress fits perfectly. the feel is amazing - incredibly comfortable and not too short when you lean over!,5,1,0,General Petite,Dresses,Dresses +1077,57,Love this dress,"This dress does run large, but i sized down from med to small and it's a great fit. the fabric is lightweight as silk sometimes is, and is nicely flowy, but might require a slip.",5,1,0,General Petite,Dresses,Dresses +998,51,,"As the other reviewer said, the skirt had this weird bunching on both sides of the hips-it was ridiculous. i don't know how anyone could wear it-looks like you had two little triangle things poking out from each hip. i'm long and lean so usually skirts like this fit me well. very very strangely constructed-i couldn't keep it even at the deeply discounted price",1,0,1,General,Bottoms,Skirts +872,49,Gorgeous and useful,"Love this blouse. per the previous review, there was no problem with my tailoring. it is exactly as shown. i plan to handwash this and take super good care of it. you can tell from the picture it could be an excellent wardrobe staple and absolutely timeless as well as the kind of sexy and elegant you can get away with in the office. + +i do think it runs a tiny bit small. however, it is not short. it's just quite a fitted piece. i would consider sizing up. i love the look of the medium on me, 5'10",5,1,5,General,Tops,Knits +936,35,Get it!,"Love this! ordered it on sale, but i really do think it's worth full price! i went with a small even though an extra small would have been good too...i'm slender and 5'9"" about 125# with full bust. the small fits similar to the model, and because i wanted it to fit well in the sleeves (i have long arms!) and length, i went with the small. maybe should have gone smaller as it is roomy! it's very well made and although you'll need a cami, i still feel as if it will be very cozy. perfect for our mi",5,1,0,General,Tops,Sweaters +936,28,New favorite,"This is my new favorite sweater and i want it in all sizes. i have the ivory and now the taupe-totally would have bought the green had it been in stock. the red is a more rust color, but it is still gorgeous. although the knit looks and is looser, it is still very warm. i wore it today and was a little too hot for this mild day. it is longer so it can be worn nicely with leggings and still look great, but it has a good fit and shape so as not to look frumpy. love. tts, but could also size down i",5,1,3,General,Tops,Sweaters +936,33,Beautiful in light red,"The light red color is so rich! i would describe it as a burnt coral/red. i love the length - long enough to pair with leggings, but not overwhelming in my 5'3"" frame. one sleeve began to unravel the first time i wore it, but i was able to mend it easily and have had no trouble since. i think it was a flaw specific to my sweater and not s general indication if poor quality. hubby says this is his favorite sweater on me too!",4,1,0,General,Tops,Sweaters +1078,30,Bad lining,"This dress looks like it would be so much fun to wear. when i tried it on, i was swimming in it. i do have to admit that the movement of the dress (had it fit right) would have been very fun. i was also really disappointed with the lining. there is dark green piping along the neckline, which bled through the pink of the dress and make it look like you dropped something on your dress. returning it :(",3,0,0,General Petite,Dresses,Dresses +936,39,Great sweater,Love this pullover for its versatile style (can be buttoned or unbuttoned) and easy care look. it's casual without looking sloppy. the weave is a bit open work and can easily complement a cami or a thicker top without making me look like a stuffed sausage. the hi-lo hem on the model shots do not look that way irl. the hem is straighter. soft nubbly texture that may snag easily. got this in red and brown but wanted the sold out green too.,5,1,0,General,Tops,Sweaters +1079,80,The sizing is off,"The dress is lovely, but the sizing is off. the tag from retailer said it was a large, my usual size, but the manufacturer's size was an 8. too small, so i will have to return it.",4,1,5,General,Dresses,Dresses +406,33,Looks beautiful on!,"I do agree with others that the draping does sit a little funny, but its nothing that a simple tack can't fix. this suit looks incredible on, and does a good job of hiding my ""mom pooch"" while still making me feel sexy with the cutouts. also covers the chest area well.",4,1,0,Initmates,Intimate,Swim +1078,54,,This dress is adorable. dress it up or dress it down,5,1,0,General Petite,Dresses,Dresses +1078,55,So pretty!,"Like many of the other reviewers, i thought this ran a little big. i am a 5'5"", 110lb pear and xs was perfect - i also ordered the small to be sure. it is not quite as close to the body as the picture. the color is gorgeous and saturated. it hits me mid thigh in a good way. the fabric is crepe on the outside and silky on the inside and it has a beautiful, high quality drapey-ness. it is unlined but not see through. it arrived wrinkled and sad, but a warm dry iron really brought out how gorgeous",5,1,0,General Petite,Dresses,Dresses +406,33,"Such a unique, flattering swimsuit!",I am so excited about this swimsuit. i have never felt so good in a bathing suit. it's sexy without being too revealing. the fit is perfect. i absolutely love it!,5,1,0,Initmates,Intimate,Swim +1078,32,,"I usually do not buy dresses at full price but when i saw the teal version of this dress on the website i caved in and bought it. i had also tried the pink version of this dress in store. it's very cute and sweet but i don't think i can pull it off. the teal version is pretty accurate in color to the on screen image. + +this dress runs huge. i usually wear a 6 or 8 in retailer dresses and went with a size 2 for this one. it fits comfortably without being too baggy or like a tent. the materi",5,1,0,General Petite,Dresses,Dresses +936,58,Beautiful color and so soft!,This is the perfect fall/winter sweater. i bought it in red and i would get another one in the green color if it weren't sold out in my size. love it!,5,1,1,General,Tops,Sweaters +1077,35,Cute,"I'm pretty petite and have small boobs so i should have gotten the xxs instead of the xs. however, since i'm currently pregnant (33 weeks) i figure i should buy the xs. it's a roomy dress and doesn't make you look like a boat if you're pregnant. which is awesome. since i don't have milk in my boobs yet, it's a tad roomy on the sides by my chest. not super noticeable though. i hate buying maternity clothes since they're pretty ugly and i don't like the fact that i wouldn't be able to wear it agai",4,1,1,General Petite,Dresses,Dresses +864,50,Casual comfort,This was exactly as expected. i ordered my usual size medium. fit well. good quality fabric. it's one of my comfy weekend go to items.,5,1,0,General,Tops,Knits +1078,54,,"Beautiful dress but runs very large. it is made of a material that does not breath so if you tend to run hot, skip this dress. great style and looks good on almost any body type. colors are very attractive and is dressy enough for special occasions,",4,1,0,General Petite,Dresses,Dresses +920,29,Beautiful but must dry lean,"This sweater is gorgeous, i wish i could have purchased in several colors because it's now a staple in my closet. downside- it does say delicate cold water wash, but the lace on the back is so delicate and pulling happens on the sides every time i wear it, so dry cleaning is the way to go. the sweater does snag easily, so don't wear anything that could get caught in it (jewelry/handbags with chains or embellishments) because they will catch.",5,1,0,General,Tops,Fine gauge +841,28,Beautiful top. many compliments,I love love love this top and have received many compliments. if anything it runs small (i wear size 6 and a 36d bra and the s was roomy),5,1,0,General,Tops,Blouses +833,51,It's not a black and white top - it's ecru and bla,"I suppose i would have kept this top i hadn't been misled about the color. i don't like ecru or eggshell-- +the description said it was black and white.",3,0,3,General,Tops,Blouses +472,48,Beautiful,These are such beautiful cheerful shorts. the floral motif just makes me smile. they do have brocade on them which is nice and dressy. they are perfect for a night out or a day at the beach. i went tts on them. i purchased similar shorts last year in the brown color. very nice shorts to have in your wardrobe..,5,1,0,General Petite,Bottoms,Pants +833,48,Very cute but harder to wear than i expected,"This top is so cute and i immediately had to purchase it when i saw it. i am usually drawn to boxy, cropped shirts, but i find this is harder to wear than i anticipated. it may be because i got a small size, but it is boxier than i anticipated and is almost hard to wear with even jeans. i recommend you buy because the detailing is so pretty and perfect, but try on and make sure you have some good bottoms to pair it with!",4,1,1,General,Tops,Blouses +833,67,Unique style and embroidery,"This top fits loosely through the body and a little snigger in the bust. fabric is nice but does require some ironing/steaming at times. it is a little pricey but you won't find anything similar so being unique makes it worth the cost. i ordered online but it was available at my local retailer store; unfortunately the online order didn't show availability & i would have liked to see it first since i was unsure of size ( usually wear medium if top has a relaxed fit, large if not). very cute too!",4,1,2,General,Tops,Blouses +472,42,Perfect fit shorts,"I typically wear boring shorts. you know - khaki. i saw these in the store and had to try them on. true to size in the waist, not too short, and the leg fit was perfect (slim without being skin tight). the pattern is far from boring. i can't wait to wear them out.",5,1,3,General Petite,Bottoms,Pants +860,37,,"So this is a pricey tee but i ordered it on sale?still pricey. i?m really surprised how much i ended up loving it and wearing it. ordered it in the light red, size xs and it has become my go to tank for the summer?i wear it every week. the armholes are a tab long on me so i wear a black sports bra underneath and it does peak through but not in a tacky way. if you don?t mind the price i would pick this up.",5,1,2,General,Tops,Knits +920,37,Love love love this too!,This top is fabulous! the color is amazing and the back is just beautiful! i would recommend this sweater to anyone i absolutely love it! my only concern is getting it snagged on something other than that it's a score!,5,1,1,General,Tops,Fine gauge +920,27,Stunning and sexy,"I wore this out to a dinner-party that was thrown for me, and people loved the surprise back. i have a few lace back shirts, but this one is gorgeous and sexy. i am incredibly cautious about the lace, however. it is so delicate. no issues, but just be careful!",5,1,0,General,Tops,Fine gauge +833,42,Fun and whimsical top,"This is such a great top for spring and summer. i've worn it with shorts, capris, and jeans, as well as layered it under a denim jacket. it brings an element of whimsy to any outfit. it's comfortable and really well made.",5,1,0,General,Tops,Blouses +833,35,,I love the detailed cutouts on the shirt and the liner is finished with a scalloped edging. perfectly cool for the summer time but also stylish and hip.,5,1,1,General,Tops,Blouses +860,68,Abso lovely!,"This is a simple shirt, but so cool and comfortable in the hot florida summer! i'm ordering one in the blue and white as well... i know this is going to be a fave. i love supima cotton, and though i adore retailer, i do wish they'd carry more of the supima rather than the non-organic fabrics. so many of the pretty things i simply will not buy, because i prefer the feel of silk, linen and cotton. thanks for this one, retailer!",5,1,4,General,Tops,Knits +833,66,Gorgeous but falls apart,"This top is a lot more striking in person. on, it's quite stunning. it is a tad short but that's part of the aesthetic and i don't find it unflattering. however, the first time i wore it one of the black rope/thread details disintegrated and fell apart. i tried to reinforce the end and reattach it but it just came apart again. i understand the nature of the top makes it more delicate, but this was definitely disappointing. i mentioned it when i went back into the store and the sales girl sympath",4,1,2,General,Tops,Blouses +472,41,"Super cute, comfy but easy to dress up","Love shorts that i can dress down w/ a chambray top or that i dress up w/ heeled sandals and a blouse. this is perfect! +i found them to run a tad big. +i have thin legs but don't have a small waist at all. i took a 0 in them, i'm usually more like a 2 on bottom.",5,1,4,General Petite,Bottoms,Pants +860,30,Love this tank!,"I love the colors, my favorite. purchased a medium and fits perfectly. i've been wearing it all summer. material is thin but super soft. for reference i am 5'8"" 145 lbs 32dd. i'm obsessed with this tank. considering buying a second just in case anything happens to the one i have, that's how much i love this tank.",5,1,2,General,Tops,Knits +47,31,Beautiful suit!,"I purchased the teal suit and it was so beautiful! it's super comfortable and has nice coverage. i decided to return it because, as a nursing mom i've decided to wait until i've weaned the baby so i can make sure the fit is still good. but otherwise i would have kept it!",4,1,0,Initmates,Intimate,Swim +833,74,Folklorica happy!,"This is one of those ""very retailer"" tops that you can't find anywhere else. the feel is ""folkloric"", but the country is not specific. although listed as a ""tee"", the material is a knit with heft and is lined (from the bust seam down). the embroidery is combined with cut-work to give it a high-end finish (and justify the price). this is a dress-up tee for sure. i will most likely treat it as a blouse and wear it with cropped black culottes or a slim midi skirt. i wear either a 0 or 2 in mos",5,1,10,General,Tops,Blouses +323,54,Nice but not for petites.,"The shorts are very cute, very nice quality and intricate detailing! the sizing is tight in waist and very big in legs not flattering at all. i'm 5'1"", 115 lbs. they are going back.",3,1,3,General,Bottoms,Shorts +878,42,,"I ordered this in a size 1 which i thought would be a small and it was very, very wide. it is very short too. i typically wear a small and am 5'8"" and 132 lbs. it's going back unfortunately. very soft material though.",1,0,0,General,Tops,Knits +1008,30,Super cute,"The fit in the skirt is flexible because the waist is elastic and the shape is flattering, it doesn't stick out too far over the butt. the brocade texture and gold and blue colors are very fall. looking forward to wearing this with boots and tights. i'm usually either a large or medium in skirts and i went for a medium in this one.",5,1,3,General,Bottoms,Skirts +860,72,Love this tank!,"In love with this. as soon as i received it in the mail i ordered another color. super soft and easy to wear. i imagine i will live in this top the rest of the summer. felt pricey, but worth it for as much wear as i will get out of it. i am 5'10, 160 and the large is a great fit. perfect fit on the shoulders and just a hair loose throughout the rest of the tank, which is what i wanted.",5,1,1,General,Tops,Knits +833,42,,"This top is gorgeous. the colors are lovely, design and quality are impeccable, and it is versatile. this top just happened to catchc my eye and i am so happy with my purchase. it fits tts. i love it!!",5,1,5,General,Tops,Blouses +472,58,,,5,1,0,General Petite,Bottoms,Pants +952,37,Great gift,"Bought on a whim as a gift for my mom, fit perfectly and she loved the details. did not complain of itching as with prior review. it is more blue than gray appearing the photo.",5,1,0,General,Tops,Sweaters +949,45,Disappointing,"This beauty caught my eye online and i was excited to see it in store. the coloring is lovely, but it was too short for me (5'7"") and just meh...and it was only on for a second before it started itching. sadly, too, the sleeves were all stretched out from the way my local store merchandised it, which looks cute on the hanger but kind of ruins the clothes (i wish they'd stop doing this). if it works for you, great because it's a decent price for a timeless sweater with an interesting color patter",3,0,2,General,Tops,Sweaters +833,44,Work of art,"This is an extraordinary blouse and it is the poster child of retailer. the embroidery looks beautiful online but i appreciate it much more in person. the details are breathtaking, especially the scalloped borders around the arm holes, neck, and hem lines. i grew up around embroidery art and this is very high quality work, not even one stitch out of place and no hanging loose threads either. i like the black thread on cream because it's classy and it displays the details. the blouse materia",4,1,16,General,Tops,Blouses +833,41,"Strange, unflattering fit","This top did nothing for me. it billowed in the front and was not flattering. for reference, i am 5""4, 115 pounds, and small chested. i ordered the smallest size the top came in (cannot recall if it was an xs or 0). i promptly returned it.",2,0,2,General,Tops,Blouses +949,23,So unreal soft!,"I absolutely love this sweater. it's super soft and the grey/white version is lovely. it's definitely more cropped (i'm 5'7), but looks great with high waisted jeans or a pencil skirt. + +so cozy!",5,1,1,General,Tops,Sweaters +833,50,More beautiful in person,I bought this in the store and love it. seeing it online - i would never think to buy it. much more flattering in person!,4,1,1,General,Tops,Blouses +860,35,Very flattering!,"I usually take a small in retailer tops. i did have to order this in a medium though because it is slightly more form fitting. the material seems a little thin so i hope it holds up well over time. i love the green color though. i am curvy especially on the bottom and this was very flattering on me. i do think it is too expensive for what it is especially with the material being thin (even at sales price). overall though, i thought it flattering enough to keep.",5,1,0,General,Tops,Knits +472,35,Run large,"First off, they are much prettier irl than in the photos online. they fit very large on me. i am usually a 8 or 10 but have hips so ordered the10. wrong decision. i needed the 8.",5,1,1,General Petite,Bottoms,Pants +472,33,,"These shorts are extremely cute! i usually have a hard time finding shorts i like, but when i saw these the floral and brocade was too nice not to try. the length is good and they are not tight on the thighs, but not too loose either. the material makes them friendly for work as well as outings and running about town. i got my usual size 8 and found that to work perfectly!",5,1,5,General Petite,Bottoms,Pants +1079,26,"Beautiful style, poor craftmanship","The fabric was a beautiful color, but the material and seams were not well put together. the elastic in the arm was stretched before i tried on the dress so the sleeves did not fit well. i unfortunately ended up returning.",3,0,0,General,Dresses,Dresses +868,73,Great shirt that's a bit different,"Color (orange/red) and fabric nice and good quality +i ordered this since i live in astoria but am glad i did.",5,1,2,General,Tops,Knits +71,65,,"Fun to wear inside sneakers or just around the house shoeless. my daughters tried to take them, but i held on to them.",5,1,0,Initmates,Intimate,Legwear +829,41,Too sheer for me,"I really liked this top. i wish it was not so sheer. even with a nude bra, its just too much. it's a very loose fit throughout the body, but the shoulders, arms, and neckline remain true to size so it looks nicely tailored on the top. i just can't do something this sheer. i feel too exposed. i wish they had it offered in other colors.",4,1,5,General Petite,Tops,Blouses +820,62,Sold on reviews,"After reading many positive reviews i ordered. sure glad i did. i love the light, airy fabric. it hangs nicely. i am mostly a 12, sometimes a 14. i ordered both sizes and the 14 was a perfect fit. i am very pleased with this purchase. thought it might be too girly and/or young looking on me, but not so at all. i got the white and i certainly like the red detail at the button holes too.",5,1,0,General Petite,Tops,Blouses +1081,32,Pretty but don't like this fabric,"This is indeed a very flattering dress and looks great - unless you move in it. the fabric shows every little lump and bump on your body as you move and clings to tights (only a little but just enough to make it annoying). if you have any jiggle at all, i'd steer clear. would have definitely kept it if the fabric were different because the cut is amazing but alas.",3,0,3,General Petite,Dresses,Dresses +1081,34,Snug and unflattering,"Would be flattering on someone who is slim with all the right curves. i'm average size and a mother of 3. the medium was not a true medium. the fabric was amazing. the arm holes were too open/low cut for my taste. +i'm 5'7"" and 140. this landed mid calf. not my preference. + +retailer accepted the return with a hassel free refund all under 2 weeks from receiving it.",2,0,0,General Petite,Dresses,Dresses +819,31,,"Mine was slightly tight across the bust area, but i'm able to leave it open with a light tank underneath. it still looks great!",5,1,1,General,Tops,Blouses +820,32,,,5,1,0,General Petite,Tops,Blouses +820,62,The price is right!,"Tried this on a whim in store, and it might not look like much on the hanger, but this beauty fits perfectly and is quite flattering! it is loose without being billowy (still has nice tailoring for shape), the fabric is light but good quality, and the pattern is super cute. i was shocked when i saw that the price was much lower than expected - this is a true win, even at full price. for reference, i'm 5'7"" 128lbs and took my usual size s.",5,1,10,General Petite,Tops,Blouses +790,53,Perfect!,"So different loose linen, i love the raw edge and the color i can wear with anything over a dress...great top with raw edges",5,1,5,Initmates,Intimate,Lounge +1081,39,Plain and simple,"Love the color, ordered the plum. it is very nice in person, not quite as burgundy, more purple-y... i don't typically go for the plain dresses, as i feel at the price, it should be a statement, but i don +'t have a dress like this: + +wearable as casual or dressed up +solid plain color +soft fabric +long sleeves, yet sexy enough without being too much +flirty (it is on the shorter side) + +i decided to keep it as dolan makes a similar dress every year, and i pass every year... this is the year",5,1,0,General Petite,Dresses,Dresses +820,41,The perfect blouse,"This is an ideal top - especially for summer. so lightweight and soft! the detailing is adorable and makes this simple shirt feel very special, yet everyday! i ordered the black, and am back for the other colors! this one is an absolute win.",5,1,0,General Petite,Tops,Blouses +820,26,Such a lovely top!,"I came across this in the store and immediately fell in love with it. the online photos just don't do it justice! i bought the white version because the little pops of red in the details and the dobby weave are so sweet and unique. + +a size 0 fit perfectly. the fabric is a bit sheer, so be prepared to wear a cami underneath. very light, airy, and comfortable!",5,1,2,General Petite,Tops,Blouses +820,46,Size 16 is perfect,I ordered the orange plaid version in size 16. it fit me like it does the model. it's true to size. the peplum is very comfortable. the plaid isn't see-through so no extra layer of a tank is needed. the neckline isn't too low. very well-made and a great choice for summer!,5,1,1,General Petite,Tops,Blouses +1081,51,Just okay,"This might look good on you if you are very tall and slim. i am a curvy medium and this was not at all flattering, it is a straight cut and hugs in the wrong places. the color is not true: it is black stripes on gray (not cream). i thought the stripes might flatter my shape, but alas, i did not look good in this. + +the material is very nice, soft and stretchy.",2,0,4,General Petite,Dresses,Dresses +820,29,Sweet top,"This top is cute - nice fabric and design. pretty flattering for such a loose cut. my one concern though, was that when i was moving the peplum part kept riding up. i felt like i would constantly have to readjust the shirt to make sure it was lying flat. + +the shirt runs large. i'm usually a 6, and the 2 was plenty roomy.",4,1,12,General Petite,Tops,Blouses +1081,32,Silky smooth weighty fabric in rich wine color,"I tried on this dress in the portland, me, store today. so much good to say about it: the wine color is deep and rich, the fabric hand is similar to a heavy weight silk, the cut of the dress so flattering. +but, i didn't get it. i am 5'2"" and weigh 135 lbs. i can sometimes wear a medium, but my upper arms and hips can require a large, usually petite for proper length. the store didn't have a large (i didn't even realize the dress also came in petite), so i tried on a medium. nice fit through the",5,1,2,General Petite,Dresses,Dresses +825,39,Love it,It is a little roomy so if you're between sizes go with the smaller. i think it's flattering even if you have a larger chest. love the details and the fabric is a good weight and quality!,5,1,0,General,Tops,Blouses +1066,54,Pilcro perfect,"There wasn't much question as to whether or not i'd love these pants, as i have several pairs of the pilcro ""hyphen"" pant; however, this one is slightly different (front pocket's and seam down front), +and though they are slightly different, the fit and cut are the same. +these pants are a great weight--can wear year round, really--but these will be my ""go to"" pants this fall and winter. +the length is nice--can wear with shoes or rolled up with boots, too--""utility"" chinos? yes! + +the fit is nicely",5,1,0,General,Bottoms,Pants +1081,39,Pretty dress,"This dress is exactly what i was looking for for fall events. can be dressed up or down, flowy, suede-like fabric. i normally wear a small in most retailer pieces and even though i am pregnant in my first trimester i bought a small in this since it is stretchy and will fit me at different stages.",4,1,6,General Petite,Dresses,Dresses +1066,57,Love pilcro pants!,"I have a few pairs of pilcro pants and they have yet to disappoint. the fit, the style and the quality is just perfect for me. i know i can go to my size and expect a perfect fit every time.",5,1,0,General,Bottoms,Pants +1008,31,Lovely - exactly as pictured.,Love this skirt - it looks precisely as the photo depicts. the metallic stitching may be a little bothersome for some in terms of itching/scratching. i'm 5'8" 135# and the 6 fit perfectly (pear/hourglass).,5,1,0,General,Bottoms,Skirts +831,24,Easy breezy :),Gorgeous top! very beautiful and easy. can be dressed up for work or just worn with a pair of jeans. note the fabric is semi sheer so a nude bra or cami is a must with this but it's going to be fantastic for summer!,4,1,0,General,Tops,Blouses +1081,35,Flattering,"Just tried this dress on in the store and ordered a petite because i'm 5'. if you are even 5'2"" or taller i wouldn't recommend a petite fit unless you prefer the tunic length. this dress and material has a flattering drape for those of us with trouble belly regions.",4,1,0,General Petite,Dresses,Dresses +868,34,So comfy!,This top is so soft i want to wear it every day. the orange is beautiful in person. great fall color. perfect amount of swing.,5,1,0,General,Tops,Knits +831,43,Really beautiful.....,"I wear between a l and xl..i chose the xl which was the right choice..if you are a bit curvy in proportions, i could size up. the color is gorgeous...i just logged back on to order another if there were options, but alas, there are not. flattering arm cut! could be worn for work, or with jeans/ out to dinner. it's cute, you won't regret it! (as a side note, it is sheer...which you can see in the photo. needs a cami)",5,1,0,General,Tops,Blouses +1081,32,Great purchase,"The material on this dress is so soft and wonderfully drapey. super flattering; defines waist enough to not add bulk but also hide a tummy. the purple color is lovely, perfect for fall. for reference, i'm 5'1, 32dd, 118 lbs with hourglass figure.",5,1,1,General Petite,Dresses,Dresses +868,54,Darling tee,"This tee shirt is just adorable. i found it at a local retailer and decided to try it on - and just loved it! i happened to walk out of my dressing room while wearing it, to talk to my daughter who was shopping with me and three customers in the hall said"" that is so cute!"" and went to find their own. i bought the ivory color, but the other colors are really nice as well. + +the fabric is substantial, soft and thick. the little ruffle at the shoulder makes a cute statement, but is just fun and not",5,1,2,General,Tops,Knits +820,37,,,5,1,0,General Petite,Tops,Blouses +974,56,Awesome jacket,First saw the jacket online and liked it so i went to the store to check out. the color looks nicer in person. it fitted me really well and looked really nice on me. the jacket is very soft and well made. the only thing is the sleeves are a little longer but not a big deal. can't wait to wear it when the full is here!,5,1,0,General,Jackets,Jackets +829,26,Because you can't have enough cream tops,"I waited so long before trying this on because i have a bad addiction to white/cream tops that i'm trying to get over and branch out, but after seeing someone else wearing it i decided to give it a whirl. i was also trying on the black and white charlie's with the leaf print at the time and fell in love. it hits me a lot longer than the modeled photo (i'm about 5'7"" for reference) and the shoulders were a little tight for me in my usual small, so i got a medium. the sleeve length is perfection,",5,1,10,General Petite,Tops,Blouses +820,55,Lovely shirt,"I noticed this top as i was going into the fitting room, and tried it on on impulse. i was pleasantly surprised with the fit and soft quality of the fabric, and even more impressed with the price. i usually like my tops very fitted, and found this one hung loose, but not boxy. i have been wearing it quite a bit, sometimes with a camisole underneath, and sometimes not. i bought the one with the flowers, and it is not see-through, and the light fabric is good for our warm heat. i bought my usual s",5,1,0,General Petite,Tops,Blouses +820,46,,,4,1,0,General Petite,Tops,Blouses +820,48,Great top!,I bought this b/c it looked exactly my style and i was right! i've worn this once and it is so comfortable and the fit is great. i can see this being a shirt i wear again and again all summer. i bought the black and am thinking about buying the peachy-plaid color...,5,1,0,General Petite,Tops,Blouses +820,55,Very flattering,I sew and therefore i can tell when something is cut and designed well. this top hangs beautifully and the colors are very pretty. it's cotton.,5,1,0,General Petite,Tops,Blouses +820,53,,"Cute top and perfect for those hot summer days as fabric is light, but not sheer.",4,1,0,General Petite,Tops,Blouses +1081,27,Comfortable and versatile,"This dress is a new favorite! the cut is great for most figures and the fabric has a nice drape around the curves of the body so it sort of has a slimming effect - which i love! i'm petite and curvy and so the hem lands closer to top of my knees than it does on the model in the image. the color in person is slightly more purple and less brown/maroon, but it still works for a fall/winter wardrobe. if you are uneasy about the colors, i recommend looking at it in store before purchasing. i love thi",5,1,4,General Petite,Dresses,Dresses +820,54,Flattering and so cute,I was afraid it would be too poufy but it isn't at all. i'd say it runs a bit large. i usually wear a 6 or 8 and the 6 fits perfectly.,4,1,2,General Petite,Tops,Blouses +820,29,Cute and versatile in black,"I got this in black. it can be casual or dressy. very lightweight, comfortable and flattering. i ""collect"" black tops (since i rarely wear any other color) and this is now one of my favorites. i think it looks totally different in the black than it does in the other colors -- more refined, less casual. this runs quite large. i am a 0-2 but needed the 00 in this top.",5,1,0,General Petite,Tops,Blouses +974,67,"Murky colors, not a refined jacket","The colors on this jacket are a murky blue with a pale mauve tone for the lighter color. size is a bit on the large size. i did not feel that the jacket was that well-made and would hold up to much wear. i was looking for a jacket to dress up jeans, black pants etc and this did not fit that need. it would be a warm jacket if that is a need.",3,0,1,General,Jackets,Jackets +820,36,Run and buy.....,"Such a cute shirt! i picked up the white-with-flowers that is not being shown online yet. the straight white looks like it could wrinkle and definitely needs a tank underneath but the white with flowers was not see-through and seems like it will require a bit less steaming (the detail masks wrinkles :)) the flowered-design also has a small tie at the neck that i don't think was on the solid color design (can't totally remember) - cute extra detail but not overly obvious, it blends into the shirt",5,1,11,General Petite,Tops,Blouses +820,44,A staple top,I am in love with this top! it is so comfortable and lovely. it runs a touch big like most items of this brand.,5,1,6,General Petite,Tops,Blouses +988,41,So small!,"I opened the package and loved this skirt immediately. i held it up and the waist is tiny. i'm usually a size 6 but sometimes go for a size 8 at retailer (i'm 5'6"" and 126 lbs). i would have needed at least 4 extra inches in the waist band to close the zipper...i wonder if this is a british size 8 or something. this 8 is closer to a 4. really disappointed.",4,1,3,General Petite,Bottoms,Skirts +1081,39,,"Smooth to the touch and body skimming, this dress drapes over my figure flaws without drawing attention. it's a great base layer for many accessories and outfits. i love this fabric dolan uses, i already own the sleeveless and cap sleeve versions of this dress. i would love if retailer would sell me a long sleeved maxi or midi version. i'm 135# 38/27/35 and purchased size m regular in green.",5,1,0,General Petite,Dresses,Dresses +820,44,Love this top,"I bought this in the store without trying it in the black. when i put it on, i loved it. so much so that i went back and purchased the black patterned one. equally as nice.",5,1,2,General Petite,Tops,Blouses +1066,38,Great chinos,"I am not usually a khaki type of pant person but these are really cute and have interesting details such as the buttons at the ankles. they are also quite flattering and do not ""bag"" out after a day of wearing. i am 5'6"" and about 130lbs. the size 2s fit great. i purchased the ""green"" color and it goes well with a number of tops. these can be dressed up with heels and great to run around on the weekend. the material is soft which is always a plus for me. overall a great purchase.",5,1,0,General,Bottoms,Pants +819,35,"Big fan, but the snap is a little tricky.","This is a beautiful and classic blouse. great fit and flow. however, the silk is very light and the snap falls off easily; tricky to sew back on since the fabric is so delicate.",5,1,0,General,Tops,Blouses +1066,25,,"My first pair of pilcros and i am in love. i am 5'5"" 125lbs and bout size 25 in the moss green. i have a skinny/athletic build, and even though i have a small frame, i have thick legs (soccer player) and big butt and hips but a skinny waist. it is hard to find pants that go up my leg, over my butt and don't have a huge gap in the back where i have to wear a belt.... these pants checked all boxes and the best part was the fit around my waist, it is like a glove, no belt required. they have a litt",5,1,0,General,Bottoms,Pants +820,51,Cool for the summer,"Adorable fit. the lightweight madras fabric will be perfect for a hot summer day but not see-through. the slightly gathered bottom makes gives my petite frame a taller look. easy to wear, not fussy, no special bra needed.",5,1,0,General Petite,Tops,Blouses +1066,54,Perfect pants,"I paid full price for these gladly (the olive ones) and was delighted when i was able to purchase the black on sale. they are midweight, soft, flattering and stylish. they stretch a little (belt needed) but not much. pilcro are my go-to pants and these hit it out of the park. i wish they would come in a lighter weight version for warmer weather !",5,1,0,General,Bottoms,Pants +820,38,Great wardrobe addition,"I love this shirt. it is soft, romantic and flowy. i love the material it is probably one of the softest things i own. great quality and lightweight.",5,1,1,General Petite,Tops,Blouses +820,48,Casual yet office appropriate,"This can take you from office to casual afternoon. i got the plaid print in store. it is much nicer in person than in the picture. very cute neckline and detailing. i'd say true to size, slightly large. i wore my regular size and it fits fine without looking too large.",4,1,0,General Petite,Tops,Blouses +820,35,Great staple top,I bought this on sale in black. it doesn't look like much online but it is very flattering and super thin and airy which is great for warm weather. tts- i'm an 8/10 38c and the 10 fits just right.,5,1,0,General Petite,Tops,Blouses +427,35,Loooooooove it,"I am so love in this top, i wish i had it in all colors and will absolutely be watching the sale rack for these ones. i love this top. i work out at a gym that requires tops, but that means i cannot usually display my awesome sports bras with cute strappy backs. this yoga top has an open back which will show these off, which i really like. the draped back keeps you nice and cool also. and the fit is amazing. i have some extra baby belly that i can't seem to work off-it was invisible in this top.",5,1,2,Initmates,Intimate,Lounge +1086,36,Clings to the body,"I love the way this dress hangs straight down on the model, but on me it looked tacky. i'm 5'6 and 130 lbs, and this dress hit me in all the wrong places. i got a size small- sizing up would be huge in the top of the dress (and the arm holes are already dangerously large). i wish this were just a little bit a-line. instead, it's literally like someone just extended the length of a t-shirt.",2,0,8,General Petite,Dresses,Dresses +1116,31,The fur is luxurious,"I am absolutely in love with this piece! yes it runs large. i'm usually a medium to large in vests ands the small fits me prefectly! the quality is superb. i love the feel of the faux fur, i want to pet it! and the snaps and hooks seem as if they will also last forever. thank you tracy!",5,1,0,General Petite,Jackets,Outerwear +177,33,,,5,1,0,General,Bottoms,Shorts +862,48,Great color and style,"I bought this tee becasue of the color and brand (my favorite tees last summer were by bordeaux) and am so pleased. the color is great for a fall layering piece, and the fabric is so soft....amazing! it may be better for layering, the fabric is very thin.",5,1,0,General,Tops,Knits +868,49,Cute and fits well but a littel see through,"I got this top in white and really like it. its soft, comfortable fits well but it is a little see through.",5,1,0,General,Tops,Knits +177,34,Great summer staple,"These fit quite well, and it's rare that i find shorts that fit well without being too tight. great for spring or summer. fits tts.",5,1,2,General,Bottoms,Shorts +627,45,Gorgeous suit but only for the right body type,"I absolutely love this suit and was very disappointed to have to return it! it is really well made and the fabric colors/design is beautiful in person. unfortunately it just did not fit my body type. i am athletic build with a smaller chest and thicker behind, 120lbs, 5'4. the small was definitely the right size for me, but the back of the suit cut way high up on the butt so that a lot of the rear is exposed, which just did not work well for me. this will work great for someone with a smaller bu",4,1,1,Initmates,Intimate,Swim +867,39,Awesome blouse,This blouse is flattering and fits great. i also have the other color in cream with the floral design. very nice!,5,1,0,General Petite,Tops,Knits +867,59,,"This blouse is lovely. i ordered a large because so many blouses run small for me, but am returning for a medium, as it fits pretty loose. i love the tie. its unique and feminine.",5,1,10,General Petite,Tops,Knits +1082,29,Still on the fence...,"I had really high hopes for this dress, and i am still unsure if i'll keep it or not. i ordered both a small and a medium because i was unsure of this brand. the small fit (i""m usually a 4 s/m at retailer - 34b, 140 lb, 5'8"") just like it does on the model, only the photo online gives the illusion that this is a slight fit-and-flare dress. this is a shift with pleating subtleties on the bustline that bring it in slightly. also, the colors should be more like ""blue multi"" because there's a bright a",3,1,22,General,Dresses,Dresses +867,40,Many compliments and lovely top,"I'm 5'5"", 125 lbs, 34c and the xs fit perfectly. very soft, feminine top. i got many compliments the first day i wore it. wire it for business casual, but looking forward to wearing it with flare jeans for a more 70's look. highly recommend this great sale on a wonderful top.",5,1,0,General Petite,Tops,Knits +1020,46,Dress up or down,I love how you can wear this with a t-shirt or blouse.,5,1,0,General,Bottoms,Skirts +1060,31,Beauitful,These are a soft and lightweight material. the photos here don't show the tiny beautiful pattern on them. look closely through the photos and you'll see it. way better than a normal pair of black summer pants. these are very log so i plan to hem to flats to wear for a more casual look but they have the ability to go either way. the pockets flare out a big so i'm going to have those sewn shut when i do the hemming. it is a higher west so great for that look or to wear with some cropped style summ,5,1,9,General Petite,Bottoms,Pants +823,39,"Pretty in picture; but, disappointing in reality","I really wanted to love this tank top. it has vibrant colors and a unique pattern; however, i should have listened to the reviews. there was way too much fabric! it made me look pregnant! the tank top is going to be returned.",3,0,0,General,Tops,Blouses +365,39,"So cute, but blue?","Interestingly, the description said this was blue, but as it looks on the picture, it is more grey. that being said, about the zippie: love. my stylist (i brought it in for a try on session at my local store), said, ""you know how i feel about sweats, i won't like it""... joke on her, she turned around and was ok, i shouldn't have looked, love the ruffles at the bottom...it makes this ""sweater"" much more special. it is actually really cute for casual day, jeans t-shirt, kids... or over sweats. any",5,1,0,Initmates,Intimate,Lounge +435,39,Great lounge shirt,"This is my favorite shirt to wear around the house. it's so soft and the waffle texture looks nice, i'd definitely wear it for a run to the store or an evening walk around the neighborhood. the fabric is thin but isn't too delicate and it's not sheer, which makes it a great summer lounge shirt. the cut is flattering and the back doesn't show my bra, which too many of this design do. it is a bit large, you may want to size down if you want it to be a bit more body conscious.",5,1,0,General Petite,Intimate,Lounge +862,39,Very poor quality,"I usually love bordeaux so i was very disappointed with this shirt when it arrived. the fabric smelled plastic-y which is a first for me with retailer products. when i put the shirt on, i could see it had that sheen that comes from rayon spandex blend shirts, i hadn't noticed that it had spandex in it when i ordered it. this fabric looks and feels exactly like the cheap blends sold at discount stores. i can't believe retailer is selling this.",2,0,0,General Petite,Tops,Knits +868,36,Perfect if there was a bit less fabric,The material is soft and comfortable and the top of the shirt fits well. when it comes to the bottom part of the shirt there's a lot of extra fabric which makes it balloon out. it made me look much bigger than i am. i ordered a large (normally i wear lg or xl) and it's possible a medium would have fit better. unfortunately this shirt had to be returned.,3,0,0,General,Tops,Knits +867,34,,I returned this as it was way too boxy/loose. ordered a size small but probably needed to size down.,3,0,0,General,Tops,Knits +177,61,Great look & fit!,"Love these shorts. i purchased them in the peach color. the color is perfect, the fit is perfect, they look great. highly recommend!",5,1,6,General,Bottoms,Shorts +868,30,,,5,1,0,General,Tops,Knits +70,41,Best shorts...ever!,These short are the best! the denim is incredibly soft. they go perfect with both casual and nice tops. i would wear them out everyday if i could.,5,1,0,General,Bottoms,Shorts +867,59,Beautiful print,"Unfortunately this was too low cut for me,so i had to return it. i wish the neckline was higher. i could tug it up but it slipped right back down. the fabric is a perfect spring weight and the floral pattern is lovely. on me the ties, no matter how i fiddled, didn't cover the cleavage issue and i am a aa!",5,1,17,General,Tops,Knits +823,46,"Shorter than described, well-made","I ordered a size xl in the pink version with the multi-colored fabric. the fit is true to size other than the length. it isn't 27 inches. it's the petite length even though i ordered the regular sizing. i ordered a 2nd one and again, the length was around 25 in. instead of 27. so, it will be more of a swingy, shorter top than shown. but, through the arms/body, it's true-to-size. i'll be dry-cleaning this so it won't shrink since i need the length. + +the colors and embroidery are exactly as pict",4,1,18,General,Tops,Blouses +1060,38,,"I love, love this wide leg pants! they feel beautiful on and fit like a glove. i do think they run a bit small in the waist, because they were a bit too tight in my regular size. typically, cloths are a little too large in the waist on me (i have a curvy/athletic figure). as other reviewers stated, they pants are long, but they are great length for wedges. otherwise, i would recommend having the length tailored.",4,1,0,General Petite,Bottoms,Pants +867,38,Not what i expected,"The material of the shirt and the ties are two different materials. the shirt is a very soft cotton, but the ties are of a more dressier material. i expected the shirt to be of the dressier material. overall it is a cute shirt, just not what i expected.",3,1,1,General,Tops,Knits +1082,63,Beautiful!,"This dress is perfect, length right below the knee, white slip lining adds to quality, smocking fits upper body perfectly.",5,1,2,General,Dresses,Dresses +940,29,Surprisingly versatile,"Love this vest! i am not a huge vest person, and was worried about finding something to go with this, but i have been able to match it to so many cute thing. the pattern and quality are great. it runs big. if you're between sizes definitely go for the smaller size.",5,1,4,General Petite,Tops,Sweaters +861,62,Cute tee,"Cute tee shirt but it runs very large.i ordered a small and probably an xxs would have fit.unfortunately i have to return it.for reference i am 5'3"" and 110 lbs.",4,1,1,General,Tops,Knits +435,20,Super cute.,I absolutely love this shirt. it's a simple tee but the open back adds cute detail to it. i ordered a small and it fit perfectly. color is beautiful also.,5,1,2,General Petite,Intimate,Lounge +177,56,Love,"First time trying pilcro, but glad i did. these shorts are extremely soft and comfortable without being too short. love love!",5,1,0,General,Bottoms,Shorts +17,31,Love this dress!,"I absolutely love this dress! i got it right after my first baby was born to wear to an outdoor, early october wedding. it was perfect! the fit is flattering and the dress is well made. it's a classy, elegant dress and i have worn it many times since.",5,1,0,General,Dresses,Dresses +365,83,Casual beauty!,"This sweater jacket is perfect. +it is gorgeous, casual, unique and a closet must have! +i wore it for the first time to an nhl game with black jeans and a red tee and got tons of compliments. +it is a medium weight knit and so works well under a jacket in the cold winter months, will be perfect for early spring +as a stand alone jacket, and also in early fall! +a beautiful basic with a pretty accent ruffle that is sophisticated and adds just that little something special! +it runs true to size, with",5,1,11,Initmates,Intimate,Lounge +867,42,Eh...,Too floppy; light and comfortable material but the tie-neck needs a shirt with a bit more structure.,3,0,0,General Petite,Tops,Knits +907,34,So soft,This will be a cardigan i will wear across all seasons. if you want to layer a button down or another long sleeve shirt under it i would suggest sizing up one size. as soon as i put this on it felt like it molded to me. it's beautiful! and comfortable.,5,1,1,General Petite,Tops,Fine gauge +867,39,,,5,1,0,General Petite,Tops,Knits +1060,32,Too small,They were too small for me. i loved them other than that.,3,1,1,General Petite,Bottoms,Pants +867,35,Long sleeves if you're short,"I really like this shirt overall. i'm 5'2 and the petite sizes were sold out so i bought a regular. if you are short like me, beware that the sleeves am be almost comically long. while the shirt is stretchy, the cuffs are not so pushing the sleeves up isn't really an option. also, it had lots of loose, hanging threads straight out of the package. but overall, it's a keeper!",4,1,0,General Petite,Tops,Knits +1116,40,Most fabulous vest ever!,This vest is simply amazing. i wear all black and throw this on top and it becomes the perfect outfit. i love that the top portion of the vest is light weight and thr fur portion is so soft. tts,5,1,1,General Petite,Jackets,Outerwear +907,49,Runs small,"Be aware that this cardigan runs small- as you can see on the model, it's a form-fitting style. it's not the kind of cardigan you would unbutton and take on and off as a layering piece. i would wear it more like a top with a button-up front. it is nice and soft and the black and white scalloped design is attractive. i would recommend it if you are looking for a more fitted top with this design. i'm not wow-ed by it, but it's nice in a 50's kind of way.",4,1,2,General Petite,Tops,Fine gauge +435,53,Definitely size down,"Very cozy lounge tee, but runs large. i ordered a small rather than my usual medium and could of probably went down two sizes.",4,1,1,General Petite,Intimate,Lounge +862,24,Works for busty ladies,Im a busty gal at a 34ddd and this was pretty flattering. it showed off my curves and hid my unfit belly with ease. i usually am a small to medium and i ordered large in both the grey and gold stripe and i love them both. they fit flawlessly. very flattering and i like the high neck line,4,1,1,General,Tops,Knits +1116,46,Nice idea !!!,"I really wanted to love this waistcoat. i purchased this online and tried it on as soon as i received it. +it runs large, but i should have realized the horizontal stripes sitting on the hips is not a good thing. the fur adds additional bulk where it is not needed, the hip area !!!!. i purchased a small and could have purchase a xs, but i think the problem would still be there in a smaller size. it's going back, but i am disappointed as i really wanted a something a little alternative !!!!!",2,0,0,General Petite,Jackets,Outerwear +867,47,Pretty and comfortable,I just love the print on this shirt! it is so feminine and pretty! the material is very soft! i took my usual medium. a great addition to my spring wardrobe!,5,1,15,General Petite,Tops,Knits +1020,46,This product has a slim fit.,This skirt is a great fit for curvy women. i highly recommend it.,5,1,16,General,Bottoms,Skirts +867,39,Fun and unique!,Fun blouse for spring with enough details to make it unique and dressy. very comfortable fit. banded bottom which is loose enough to still be comfortable. dresses up a pair of jeans quite nicely!,5,1,0,General Petite,Tops,Knits +823,42,"Beautiful top, but a steep price tag","I really love the colors of this top, especially in the pinky pastels. it fits really well, can be tied or untied, and will pair with just about anything from skinny jeans to pilcro shorts. speaking of that, i do recommend pairing it with skinny pants or crops because it does have that classic retailer ""am i hiding a pregnancy"" feel to it. + +but...the price tag. $98 for a tank blouse is just too much for me. i will save this one in my shopping bag and hope it's still available once it goes on sa",5,1,3,General,Tops,Blouses +862,49,Disappointed in quality,"Got this on sale in black and red, and have only worn the black. quality is poor, seems to stretch out over the course of the day and loses its shape somewhat. a smaller size may keep its shape better so you may want to size down. not worth full price.",3,0,2,General,Tops,Knits +1082,33,,"Love it, so pretty! got tons of compliments. the white color makes you look tan but the red still gives it color. comfy, not body hugging though if you're looking for that.",5,1,2,General,Dresses,Dresses +867,56,Perfect work top! a bit sheer!,"Nice work top! i ordered the slightly yellow ivory print, which is beautiful, and the print placement perfect. even better, it's work appropriate. the cotton/synthetic blend has stretch without stretching out. + +size: i ordered my normal size small for retailer brands like meadow rue. i'm 5'4"", approx 140 lbs, 35-30-37, 34d, narrow shoulders, short arms, long torso. + +fit: the sleeves are slightly long, but the buttoned cuffs rest at my wrist. the fabric blend allows this top very good drape. i like",5,1,23,General Petite,Tops,Knits +1060,35,Be warned: these pants snag on everything,"These pants are gorgeous when you first see them. they fit beautifully when you first put them on. and then you wear them for one day. and they snag. on everything. and little strings start to come out of the pants. and the hem begins to unravel. and the pants which were once beautiful light summer pants appropriate for work or brunch are now frumpy, worn out pants with a million snags and strings hanging off of them .... after one day. + +i can't begin to tell you how annoyed i am that i spent",1,0,3,General Petite,Bottoms,Pants +867,42,Sleeves are a bit long,"I wanted this top in a petite xs, but it was sold out so i got the xs. i'm 5'2"" with a 34b bust, and while the bottom comes down to my waist like on the model, the sleeves are a bit long...they seem a little long on the model, too. i wore this to work and constantly had to pull my top back as the scoop neck kept drooping down as i moved around throughout the day. really like the tie neck feature though.",3,0,1,General Petite,Tops,Knits +861,69,,T.la has another winner in my book. i decided on the blue and thrilled with the tee. it's a soft blue almost light periwinkle. fabric isn't so thin so it not see through. thank goodness. i actually love it so much i'm ordering the other color as well. i absolutely would recommend this cute tee. love love t.la.,5,1,0,General Petite,Tops,Knits +909,50,Lovely but really runs small!,"I bought this in a medium regular for someone else. i usually take a petite xs and it seems to fit me! i'm surprised as the pullover version seems almost like it runs a bit big. that said, this is a beautiful cardi! it's soft, the colors of the flower are vibrant, it's flattering once you adjust for the size issue. it will go with a lot of things as you can dress it up for work, or dress it down a bit with jeans.",4,1,0,General Petite,Tops,Fine gauge +862,29,"Cute shirt, not worth price point","This shirt was cute and fit well- true to size- but i felt for the material, it was not worth the $68. the colors offered were a little drab. i thought the grey could work for me, but it didn't. the neck hole looks a little sloppy for a $68 shirt- the roll doesn't lay flat all the way around. would be better priced in the $30-$40 range.",3,0,14,General,Tops,Knits +1096,63,Lovely dress,"Thank you retailer for a collection that includes dressy mid-length dresses suitable for special occasions! the simplistic beauty, quality of workmanship, and form fitting style of this dress is perfect. the fit and flare enhances curves and hides flaws. it pairs perfectly with the necklace shown and a cropped lace front cardigan that i found elsewhere. admittedly, i am not sure that younger clients would be happy with the tea length, but i am ecstatic!",4,1,4,General,Dresses,Dresses +867,69,Beautiful shirt,This shirt is true to size. it has beautiful detail and feels very soft and comfortable. it can be worn to dress up jeans or with a skirt for a night out for dinner.,5,1,4,General Petite,Tops,Knits +867,38,"Gorgeous, interesting blouse.","I'm an xl in retailer blouses, and this blouse is the same. i'm guessing women with a thin frame might size down, but i can't say for sure. i purchased the white blouse with the floral pattern. there is a narrow band on the bottom, but it isn't tight, so i didn't find it to be a problem. i usually don't like blouses with banded bottoms, but this is loose. the band does cause the blouse to blouse out a bit, but the fabric has a really nice drape to it, so it worked fine. the fabric has a gre",5,1,47,General Petite,Tops,Knits +823,41,Summer lovin,This is the perfect summer top. super lightweight but with a little swing in it so it is not tight across the hips. the bright colors go with almost anything and the detailing at the top makes this dressier than a regular shirt. great with skirts and jeans!,5,1,2,General,Tops,Blouses +823,57,Cute top,"I got this top in the pink. the colors and pattern are beautiful - i received so many compliments. it is very comfortable - it is ""swingy"" so i paired it with skinny jeans. +i usually wear an xs or s - 0 or 2 in retailer tops - i got this in an xs and it fit perfectly.",5,1,5,General,Tops,Blouses +940,48,Fabulous!,"I love this vest. i think it is heavy for a warm spring/summer day so kind've surprised it was featured at the store early spring. i waited for it to go on sale and purchased my normal retailer size medium. i agree it may seem big or loose fitting but i am a vest girl and the fit for me is perfect. size 34 dd, 145 lbs and 5 ft 4 in height. it is a great finishing piece for causal or office attire. this vest will definitely stay in my closet for a long time. beautiful quality.",5,1,0,General Petite,Tops,Sweaters +1060,59,My new favorite black pants!,"These pants are so great;style,beautiful soft fabric and love the length (i am 5'10""). i found the rise to be low and like the fact that that they sit at the hips. i had to size up from my usual size in this brand. very flattering and comfortable.",5,1,5,General Petite,Bottoms,Pants +862,25,Not that flattering,I love everything from retailer but this top did not fit all that flattering. the neck line fits a little weird. too bad. color was nice though. i returned the top.,2,0,7,General,Tops,Knits +867,46,70's vibe,"This top is really a great, and it's very affordable. the fabric is light weight, but opaque enough that you don't need a cami. even though this has long sleeves, i can imagine wearing this well into the summer (and i live in south florida). it's comfortable, and the band at the bottom is not tight. the color is slightly ivory and the floral print is clear and bright. the neck tie is really nice and adds a '70's vibe without being overdone or overly dramatic. definite keeper.",5,1,10,General Petite,Tops,Knits +829,43,Pleasantly surprised by this black gem,"You can't tell by the photo but the top is actually a slightly shiny material...so it gives it a classy, going out look. in the picture it looks more casual, but i can see myself wearing this on a night out with a skirt, wearing it to work, or whatever. i tried it on and i thought ""wow, i look thin."" it's a little shorter than i normally wear (don't worry, it's not a crop top, but notice where the bottom hem sits on the models hips, probably mid-rise), but it looked amazing on. zippers in the ba",5,1,0,General Petite,Tops,Blouses +823,44,Great colors,The larkspur tank is colorful and the embroidered bib is beautiful. the material is soft but not diaphanous. it can hide my little pouch without looking like maternity clothing. love it!,5,1,0,General,Tops,Blouses +823,56,Cute classic with a modern twist,"I'm very surprised by the review given that said this was frumpy. it it absolutely adorable, and the classic plaid is timeless. as first reviewer said, the styling of this on the model does it no favors. it is in reality form fitting but in a very flattering, forgiving way. the waist nips in nicely underneath the top section, then flares out on the bottom section. that bottom flare can sometimes add inches/pounds but this top does it in a very modern, subtle and flattering fashion. and the mater",5,1,1,General,Tops,Blouses +940,31,Nice vest!,Definitely a good buy especially when i bought it on sale! it's warm and can be worn dressed up or down.,5,1,0,General Petite,Tops,Sweaters +867,58,Very full sleeves,I wanted this top to fit. i ordered a large and was swimming in it. i returned it to the store where they had it in all sizes. i tried on a medium and it was still too big and then a small that fit but i just did not love it. i did not have trouble with it being cut too low. i think it might look best on someone who is straight up and down and not hourglass since it blouses over the waist. this print is soooo pretty!!,3,1,5,General Petite,Tops,Knits +867,42,,I love the flowers on this top. the style is cute with the band at the waist. i ordered an extra small and it fits perfectly.,5,1,1,General Petite,Tops,Knits +1082,52,,I wanted to love this dress. it really has no style. i was expecting the smocking to be fitted but it just hung. i considered going down a size but i think the lining would have been too tight. had to return it.,2,0,3,General,Dresses,Dresses +862,44,,"Love this tank. it is so soft and comfortable. the length hits just right on the hip. it hugs the body nicely, not too tight, just loose enough on a hot summer day. i have this in black and white. i wish they would offer more colors.",5,1,0,General,Tops,Knits +1060,43,Perfect,"I am 5'7, the length is perfect, i can wear it with flat. normally the wide leg pants are so long, i have to wear high heels. the flow is perfect too.",5,1,3,General Petite,Bottoms,Pants +1116,62,In love!,"I sat on the fence almost too long on this piece and finally ordered one when it popped up as a return...so happy imwas able to snag it. it is incredible. i put it with my favorite closed jeans and chanel work boots and wow! i also have tried belting it where the fur begins and that looks equally fabulous. imput true to size as it is suppose to be roomy, to many people ruin styles by trying to get them to fit in a way they were not meant to...embrace the uniqueness of this piece and roder true t",5,1,0,General Petite,Jackets,Outerwear +1116,39,So unique and stylish,"Love this vest!. it does run large so definitely size down. i'm 5'0, 110 lbs and i ordered the xs which is roomy around the mid section but i think that's the style as the shoulders hit where they should. it is such a fun and unique piece. i cannot wait to wear it with tights or black leggings with boots.",5,1,1,General Petite,Jackets,Outerwear +1051,33,Love it,I got this at the sale price and it fits great. the bottom was wrinkled so it was not as open at the end like the picture but i am sure an iron will help.,5,1,0,General,Bottoms,Pants +1060,21,Flattering & fashionable!,"I tried on these pants and was instantly in love. they are very flattering and stylish, but also incredibly comfortable. i am 5' 6"", and the length is perfect to wear with 3"" heels. i highly recommend these!",5,1,1,General Petite,Bottoms,Pants +867,28,,"Got this in the black when i was in greenville nc. i had seen it online for a little while and didn't think much of it until i tried it on in the store. it's surprisingly comfortable and it isn't too heavy. its the perfect ""staple"" black shirt in my closet. it is also very forgiving.",5,1,0,General Petite,Tops,Knits +1060,38,Nice pant,I was excited to get these pants & at a great price! i am 5'9 & these pants were plenty long enough for me. they also have a nice light textured design that's hard to notice in pictures. the only problem was they are a side zip pant which i didn't know when ordering. i don't love the zip on the side for my shape it. so i'm still wondering if i'll keep them. other than that nice pant!,4,1,2,General Petite,Bottoms,Pants +868,70,Runs extremely large,Huge with bountiful amounts of extra fullness....not like represented picture. and it snags very easily. i have a 4 mo. old puppy that jumped up on me as i was trying it on and snagged it in several places. 'i'm going to see about returning it with the snags.,1,0,2,General,Tops,Knits +867,55,Feminine and flattering,"Love this blouse. i usually wear a small and had to exchange it for an xs, which fits perfectly. not form fitting but flattering; washes beautifully, too. i highly recommend this blouse.",5,1,3,General Petite,Tops,Knits +1020,37,,"Overall beautiful skirt, material is a little on the heavy and stiff side but still a really nice skirt",5,1,0,General Petite,Bottoms,Skirts +823,44,Even prettier in person,"I ordered this top in the pink in a medium (i usually wear a small or medium in retailer shirts). it fit tts with not being too short. the embrodiery is very pretty, better in person than online. my only complaint is it's a bit blousey, so you would need to either tuck it in or wear with skinny jeans/shorts. for reference, i am 5"" 4.5""' 135 lbs and a 32c.",4,1,5,General,Tops,Blouses +1116,34,Loved but had to return - twice!,"I loved this vest from the moment i saw it. sadly, though, it runs way too large. i first ordered it in a small and then an xs when it popped back. even the xs was too large around my shoulders and waist. the color was also a bit more beige than in the photos, which was ok, but i had to return it because of the size.",3,1,0,General Petite,Jackets,Outerwear +867,37,Beautiful top,"Love, love this top. it is soft, comfortable, and cute. it is versatile (e.g. i can dress up for work or dress down by throwing on a pair of jeans). the tie at the neck adds a cute detail (if you want it tied). great staple for the wardrobe. i purchased in the black and it is very versatile, not sure how i feel about the print...",5,1,0,General Petite,Tops,Knits +113,54,Very soft but lighter weight than it looks,"Soft, cozy, and the heathered off-white/palest gray is a great cool-toned neutral. the only surprise was that it is lightweight; not nearly as warm as it looks. the hood has a fuzzy sherpa lining, the unlined jacket has a soft fleece or flannel finish on the inside with zigzag seams, the ouside looks like a sweatshirt. it does work great as a top layer though. 50% polyester, 38% cotton, 12% rayon. +. +got this in a size 's' to fit my hips and it works out great. i'm 5'2"", currently 33-25-37ish, wi",4,1,3,Initmates,Intimate,Sleep +1082,43,Shift dress strangely sized,"Just piping in here -- ordered my usual size of small petite. the slip that came with the dress is about a size negative zero, it could hardly squeeze over my body and the dress itself is a bright pale aqua and it is a shift. and because of the smocking it hangs very strangely. i think it looks very cheap and is ill fitting. i would say if you are a person on which shift dresses look awesome you might like this, but mind the size of the slip in the petites range, and also it is aqua.",2,0,9,General,Dresses,Dresses +1098,49,Love this dress!,"This is one of my all time favorite retailer purchases. this dress is perfect in every way - mine fits me exactly like the model and i was lucky enough to purchase it in black. if you're on the fence, take the plunge and buy this dress - you won't be disappointed!",5,1,0,General,Dresses,Dresses +1082,33,Super cute .... but,"Ever since i saw this dress i fall for it totally love the pattern and the colors. i got the size l and the fabric is really good. once i tried it on tho it broke my heart the dress fit perfect everywhere but in the v neck... the design there is odd i believe is for small breast cup girls, im size c and let me tell you it look horrible, i was very disappointed so dress its going back :(",4,1,1,General,Dresses,Dresses +862,46,"A good idea, but...","I really love the idea behind this. however, the fit doesn't work for me. i'm usually a s or xs in retailer tops, and i often go with xs for sleeveless tops. this one runs small though - the xs was a bit too small on me based on length and width. the neckline was very high (higher than it looks in the model photo) and the armholes were too big. so i don't think sizing up would improve matters much due to the armhole issue. the other criticism is that the front is not lined.",2,0,2,General,Tops,Knits +1098,28,,"I was looking for a dress for my engagement pictures and once i saw this dress i knew it was the one! i ordered the white in a small (size 2) i am 5'4 130lbs. it fits perfect and the length is just right. some reviews said it's boxy and has too much flow to it but if you have the right size it won't be an issue! yes, it's a lace dress so it's going to be delicate and you'll need to handle with care. but it's worth it, absolutely stunning!",5,1,1,General,Dresses,Dresses +1087,57,Runs large and long,"I didn't have as much of a problem with the sheer fabric as the other reviewers, but this dress is incredibly long and large, especially compared to the picture. for reference, i'm usually a 4/6 in retailer dresses and the small was huge on me, particularly on the bottom half. i was very disappointed because this dress looks so cute online!",3,0,1,General Petite,Dresses,Dresses +1078,54,,Frumpy - looked like a nightgown on me; maybe better on someone younger ...,2,0,0,General Petite,Dresses,Dresses +1047,60,Fabric is beautiful,"I was so excited to see these pants on sale. they fit beautifully and drape well. the hidden lining of 'shorts' is a great feature and i will get 3 seasons of use from these. +now if i could only get them in plain black too ....",5,1,0,General Petite,Bottoms,Pants +1087,52,Very sheer,"This dress was adorable & fit great! regrettably, i had to return it since it wasn't lined.",2,0,0,General Petite,Dresses,Dresses +900,44,Felt like a weird 80s sweater,"I ordered the red in size m. for reference i am 5'8"" with a long-ish torso. i would have been comfortable wearing the sweater with mid or high-rise jeans but it's fairly short. color was gorgeous. the balloon sleeves and seams just seemed too 1980s in a bad way on me. those with small chests may have better luck. i left like a suburban mom in it.",4,0,0,General,Tops,Fine gauge +1103,56,This is a fantastic summer wear all the time dress,I love this dress. you can wear it for everyday or you can put some bling with it and dress it up. it fits very well. flattering. i highly recommend!!,5,1,6,General,Dresses,Dresses +1109,39,,"This dress is very figure flattering. however, it is not navy it's purple. overall nice print, somewhat cheap material and zipper gets stuck. i am keeping because it's versatile and i like the vintage floral pattern.",4,1,4,General Petite,Dresses,Dresses +1098,31,Pretty but....,"The lace and fit were good. but the length seemed awkward to me given how boxy and flowy-ish the dress is. it felt like a baby doll with sleeves or something. and i hated the ""outside"" middle material, hated it. it felt cheap and odd when compared to the lace. maybe i was just not in the right demographic for this piece.",2,0,6,General,Dresses,Dresses +1098,62,Pretty and flattering,"Bought this somewhat on a whim during a promo in yellow, which is a lovely light cheery yellow (didn't make my pale skin look terrible). i love the detail of the dress and the swing silhouette. the slip is also of good quality. i don't love where the slip falls in the lace panel near the bust because it looks a little funny to me in a distracting way, but i'm keeping the dress. it's cute and fun :)",4,1,0,General,Dresses,Dresses +1103,38,Didn't work for me,I really wanted to love this. i kept refreshing the page so that i could order it as soon as my size was in stock. i love the colors and struggle to find cute dresses in natural fabrics for the summer. unfortunately as another reviewer mentioned the cut of the arm holes is strange. it cut my off in the most unflattering spot.,3,1,0,General,Dresses,Dresses +868,19,Super cute top,"I really love the style of this top. it's a great lightweight, breathable top perfect for summer. it is slightly sheer so i have to wear a cami underneath. it is definitely a flowy top, but flattering. i'm 5'0 115lbs and ordered the xxs. a petite size would've been better as it is long on me (it covers my butt in the back), but it looks good with a longer short or pants.",4,1,3,General,Tops,Knits +1082,49,"Wanted to like it, but the fit is just off","I love the design and the fabric, but the fit is just off on this dress. the area around the bust is just not fitted well. the wrap portion of the dress in this area gaps and does not lie flat. that is an easy enough fix with a good seamstress, but the waist also sat too high on me (maybe i'm long waisted, who knows?), so between the super high waist and the flannel-type fabric, it just looked kind of like a bath robe on me. i wish it weren't so. i was so hoping for a cool plaid dress that i cou",2,0,3,General,Dresses,Dresses +940,46,Cute sweater,This is a cute stylish sweater different from the typical. it doesn't itch which is key at least for me. i ordered an extra small but i am normally a small since it seems to run long. i think the neckline is unique :),5,1,3,General Petite,Tops,Sweaters +940,53,Very flattering,Love this sweater. it fits exactly as shown on the model. the neckline is simple and stylish. the a line fit is very flattering. i normally wear a size xs to s. i purchased the s for more swing at the bottom.,5,1,1,General Petite,Tops,Sweaters +1098,39,Canary yellow,"First, i received mine with the back button (by the neck) busted (the part where you insert the button was loose, so could not button). +i ordered the yellow one, and was surprised how yellow it was when received. it is brighter than the picture shows, not bad though. +the cut of the dress is nice, very ""sweet"", i liked that it was flowy and the lace was beautiful to me. arms were a tad tight, only because i have muscular arms. stil lable to wear it. + +i ordered the 0petite, and it fit. i am 1",4,1,1,General,Dresses,Dresses +868,39,"Poor quality, unflattering fit","This is one of the lowest quality shirts i have ever received from retailer. i was so excited for the shirt, it looked so pretty and soft in the pictures. the flax is very scratchy, marring the softness of the rest of the fabric. the top half is totally sheer, requiring a cami. the shirt is cut in such a way that it flares out from the rib cafe in an unstructured way, unnecessarily adding visual pounds. finally, the sewing is done very poorly and the the side tag is literally three inches long--wh",2,0,1,General,Tops,Knits +1047,26,Great summer pants,"These are super cute on. they shorts-length lining inside, which is great.",4,1,1,General Petite,Bottoms,Pants +1047,33,Tall girl's dream,"I love how elevenses fit and the length is awesome when i wear flats. this is one of the few brands that sometimes carries a longer 33-34"" inseam. this style is a bit shorter- however, with the lighter fabric, i wouldn't want it touching the ground. pants are breezy and i love that they are lined to the calf. call me old fashioned, but all pants should be lined! the elastic waist is nice and flat in the front and works wonderfully since my butt is larger than my waist.",5,1,1,General Petite,Bottoms,Pants +1047,38,Flattering,"These are so great! love the fabric weight ( light ) they look great on - the pictures don't do these justice! i tried them on in the store with a black sleeveless crop top (you couldn't see any mid skin) and it looked great together, might have to go back and get the top! they do look great with just a black tank as well though!",5,1,1,General Petite,Bottoms,Pants +876,46,Disappointing fit--too small,"I ordered this in size xl and ended up returning it as soon as i received it. the color was just as pretty in person. the thick eyelet panel was well done. the problem is the whole tank was much smaller/tighter than pictured. i have several tops from this maker and was surprised how this was cut too small compared to their normal fit. i'm pear-shaped, so the hip area looked terrible. but, the whole top just wasn't up to the typical fitting standards for xl. retailer has done much better in the pas",2,0,0,General Petite,Tops,Knits +1094,40,Bad fabric,"I so loved this dress online. not so much in person. first of all it didn't fit my build. i'm 5'4"" with a 32f bust and the waist line was just a bit too high to be flattering. mainly i'm returning it because of the fabric. the petticoat netting does rustle as another buyer pointed out. my main fault is that the top fabric is synthetic and cheaply printed. basically it's the lining fabric of a better made dress or coat. if it were cotton voile or silk it would have been beautiful. why they made i",2,0,0,General Petite,Dresses,Dresses +1082,27,Super comfy,"I wear this out, but it's also a super comfortable to lounge around the house in. i measure 35"" 28"" 40"" (6 through the top, 10 in the bottom). i ordered a medium based on comments from other users concerning the top and it being constricting. i didn't find that to be true, but for a closer fit i probably should have ordered the small. overall, this is a fun dress to wear.",4,1,4,General,Dresses,Dresses +1082,32,Just what i hoped for,"I've been looking for dresses to wear to nurse in since i just had a baby & so i bought this dress knowing it just had a tack holding the front fold together & always intending to remove the tack. i love it. the fabric is super soft. i wear it with a nursing tank underneath and a wide belt to cinch my waist & it's amazing. with the tack in, it did pull very strangely across the bust as others have mentioned, so it's not good for a big bust unless you intend to remove the tack & wear something un",5,1,1,General,Dresses,Dresses +1087,32,Darling but no lining!!,"This dress is so so cute. i ordered an xs and it was a bit longer in person than pictured but that's an easy enough fix since i know a good tailor. the problem is that the dress isn't lined. it's made of thin, see-through cotton so it leaves nothing to the imagination. for the price of this dress i would have expected it to be suited for more than just a bathing suit cover-up. without a slip underneath it (if you can find a strapless one) it is unwearable in most social settings. it's such a sha",3,0,6,General Petite,Dresses,Dresses +868,71,Overall great shirt,"Overall this is a great shirt. the material is soft and a little sheer, but not sheer enough to have to wear something underneath. the only negative is that the v sits a little high so i felt like i was constantly pulling the shirt down through out the day.",4,1,0,General,Tops,Knits +900,38,"Very pretty, but...","Honestly, the sweater is really beautiful...i usually buy a small in retailer tops, and this seemed to run on the smaller side. it's pretty short, but the issue i have is that the sleeves are much shorter in person than on the models in the pictures. it looks like i'm wearing a 3/4 sleeve shirt. still deciding if i'm going to keep it, because it is really a lovely top.",3,1,0,General,Tops,Fine gauge +1047,59,Not so great,"I read the reviews and everyone loved them so ordered them online. for me, they are a no. i thought the fabric was cheap and the quality not so great compared to typical retailer items.",3,0,1,General Petite,Bottoms,Pants +1116,33,"Beautiful, loved everything except it is huge!","I loved this when i saw it arrive in the mail. as soon as i put it on though, i was drowning in it. i know its a cape and it is suppose to be large but it was so big i had to return it. i still really like it and wish it would have worked. i am 5'5, athletic/slim figure just for reference.",3,1,10,General Petite,Jackets,Outerwear +1082,48,Classic comfy chic,Obsessed with black watch scottish tartan so this really hits the mark and goes beautifully with my joe fresh black watch print wellies rain boots. the wrap top is flattering but pulls on me ( i have this in the red and blue plaid as well.,4,1,3,General,Dresses,Dresses +1078,99,Beachy and boho!,"I love the weight of the material; sometimes crinkled gauze looks cheap; this does not. the lace trim is more 2-tone than the photo suggests, but that is not negative, and the color of the dress is more salmon than peach, again, not a negative. the length is as it is on the model, just below the knee. i wore it to what turned out to be surprise party for me at the beach! i paired it with huge silver hoops and silver flipflops. i felt special, stylish and comfortable. it was a good dress for some",5,1,1,General,Dresses,Dresses +1094,45,Stunner,"Stumbled upon this dress which had been returned to a store and was encouraged to try it on by the sales staff, and am glad i did. it's a beautiful dress that i didn't need and have no idea what i will wear it for, but bought anyway. i got a size 8 and it fits perfectly though i will need to shorten it a bit. i am busty and prefer a bit more coverage so will add more tulle to the v neck. i agree with the other reviewer about the tulle underlay but it looks easy enough to remove from the lining o",5,1,3,General Petite,Dresses,Dresses +1103,47,Change armpits,"I love, love this dress except for the armpits. if they had just made the armpits a normal round shape with normal openings, the dress would have been perfection. so audrey hepburn!! but i had to say no. i really wish they would redo this dress with normal arm openings. i think it would sell like crazy.",4,1,0,General,Dresses,Dresses +1098,41,Not so much....,"After seeing this dress online and noticing how quickly it sold out, i was curious about it, but thought i was out of luck. it just so happened that i ran into the store and they had one returned in my size. i tried it and wasn't sold. however, i loved the color. it was snug across the shoulders and arms. the rest was somewhat flowy, but boxy at the same time. i ended up bringing it home to think on it. after trying it on again, i realized the snugness across the shoulder really caused the top t",3,0,1,General,Dresses,Dresses +1022,43,Love ag,Most of my jeans are ag. love the ankle length and wash on these. not too distressed either. tts. really soft denim! size 27 like my other ag's,5,1,3,General,Bottoms,Jeans +1082,42,Too snug across the chest.,"Very well made, wonderful fabric. fit perfectly everywhere but the bust.",3,1,8,General,Dresses,Dresses +940,48,The sweater i've been looking for,"I've been looking for a black sweater just like this with this comfortable material, weave",5,1,1,General Petite,Tops,Sweaters +1047,38,Perfect,I love these pants! waited for them to go on sale and totally worth the price. i wore them work and received numerous compliments. great for casual friday at work or sunday brunch with the girls. can't go wrong with antro!,5,1,0,General Petite,Bottoms,Pants +1098,40,Saw this on another diner and swooned!,"We were at dinner in provence at sunset... and in walked a young lady wearing this lavender? dusty blue? lilac? creation- just swingy enough to be perfectly comfortable, yet lacy enough to be elegant. the color struck me as ""south-of-france"". they were american by accent. i was too shy to ask the brand of her dress, but knew by the powers of the internet that this dress would one day be mine. magnolia lace dress- i found you!!!",5,1,2,General,Dresses,Dresses +1098,37,,I purchased this dress in black a few months back. i was so excited to see it back in multiple colors! the black dress went well with riding boots and tights for colder temps. the yellow dress will be great in warm temps with cute sandals. super comfortable and flattering.,5,1,0,General,Dresses,Dresses +1098,70,Gorgeous!,"Love this dress. it is simultaneously romantic, sexy and sweet. could be a casual dress but also worn with heels. it does run a little large but it is flowy and not meant to be super tight. i am 36d and the top isn't too tight - ordered the size 4 and am very happy with the fit.",5,1,4,General,Dresses,Dresses +1098,35,Very disappointed,"Regretfully, this dress is on its way back for an exchange. the dresss is beautiful and fits true to size, i ordered it in both colors, however, the black has a defect in the lace right on the front of the dress, and the white was tearing in a few spots under the arms and on the bottom. again, the dress is so pretty and i am hoping retailer will find me one without bunching, pulls , or tears for an exchange, but i can't pay 130"" for a dress that is already torn.",2,1,6,General,Dresses,Dresses +1098,42,,,5,1,0,General,Dresses,Dresses +1098,34,Gorgeous dress,"This dress is gorgeous! the color is perfect for spring/summer. the dress does run wide/loose. i read reviews before ordering and i am glad that i did. i am usually a petite size, but the reviews recommended going with the regular due to length and the design at the bottom (and wanting to be able to bend over comfortably). i am 5'2 and about 116lbs. i ordered the 2 regular and it worked well. i received many compliments!",5,1,1,General,Dresses,Dresses +1116,49,,"Fun and elegant! +this cape is my favorite purchase in a long time! the juxtaposition of the black and red body against the grey faux fur collar is stunning! it has brass detail snaps up and down both sides as well as at the generous pockets at natural length on both sides. it is very well made of good quality materials, as all tracey reese pieces have been in my experience. +it does run true to size as it is an oversized piece, which adds to its classy dramatic flare! it is comfortable to wear",5,1,5,General Petite,Jackets,Outerwear +1098,35,Love this dress,This dress is lovely! so flattering. i'm 5'6 and 140 pounds pre pregnancy and just into my second trimester. purchased a 4. will work for many more months and again after baby.,5,1,5,General,Dresses,Dresses +1094,38,Cute however...,"This dress was beautiful in person and the blue is almost electric in color. i wanted to wear this to a party for a club i belong to, however the bust on the dress is to big. i'm 5 ft tall and 115 lbs with 32b bra size. i got the 2p as i was worried about it being to tight. it fit perfect except for the bust. the way the top is cut and the black sheer fabric allows part of the bra to show in the cleavage area. not worth they one to have it altered. will return. sad because it's a fun dress to tw",3,1,0,General Petite,Dresses,Dresses +1087,50,"Pretty, but pricey for the fabric","I love the print of this dress; the deep blue really is striking. i agree with the other reviewers that it has no lining and therefore, it's hard to justify the price. i can't seem to part with it yet due to the lovely print and the off the shoulder style is romantic and flattering. still on the fence. . . it would be better as a sale piece.",4,1,4,General Petite,Dresses,Dresses +1047,35,,,5,1,0,General Petite,Bottoms,Pants +1098,31,I wanted to love this so much!!,"I wanted to love this dress so much but it just looked frumpy no matter what i did. i'm normally a 14, and i bought a size 12 and it still looks very baggy and not flattering. i'm sad because in photos it's my favorite dress of all time!",3,0,0,General,Dresses,Dresses +1078,36,,"The style of this dress is quite lovely, i immediately gravitated towards it when i saw in the store, however once i tried it on it looked like a sack of potatoes...unfortunately the loose silhouette did not do anything for my figure, i should mention that i am 5'9"" and have an athletic figure but with hips. +the design is very on trend and the dress does have some lovely details like the lace around the hip area and flowy fabric. but unfortunately it was not enough for me to purchase. also the",3,1,15,General Petite,Dresses,Dresses +1087,55,"A light, airy, fun & casual ""pocket"" dress!","This is a casual, flattering off the shoulder float dress with pockets! perfect for sunday brunch or a casual night out. and, as other reviews stated the fabric is lightweight but you cannot see anything through it, except perhaps a glance of the outline of your legs but that is it. definitely not a reason to not buy this adorable dress!",5,1,0,General Petite,Dresses,Dresses +1098,38,Beautiful,This dress is beautiful just like the picture. it fits true to size and is quite comfortable considering it is on the delicate side. definitely recommend this one!,5,1,0,General,Dresses,Dresses +940,37,"Classic, soft and cozy, staple",I love this sweater tunic! the neckline adds interest and is so flattering. i think it is more flattering in person than in the photos of the model. my husband even noticed the neckline and said he loves this top on me :) it is soft and not itchy at all. i bought my regular size small and will wear it with jeans or leggings and boots. i love that this neckline comes up a bit but is not huge so i can definitely pair a scarf with it for a change if i wanted to. this will definitely be a staple in,5,1,5,General Petite,Tops,Sweaters +1047,56,Great native palm pants,These pants are beautiful and so comfortable. the liner is a nice surprise. they can be casual or dressed up with a jacket. i'm so pleased to have gotten them on sale!,5,1,0,General Petite,Bottoms,Pants +1103,43,,"This dress was super cute online. i ordered it in small and medium, both fit, one tighter--obviously, but could have gotten away with either. the dress is cut a little funny under the armpits and fell a little weird in front so i didn't think it was flattering on me. it would be flattering on very slim body, smaller on top. i sent it back. i'm a 34 c, athletic build.",3,0,3,General,Dresses,Dresses +876,36,Even cuter in person,"I got this tank because it was on sale, thinking it could be cute, but i didn't have high hopes. once i put it on, i loved it. i have a long torso and it's the perfect length. i have worn it with a jacket over it also to extend its life into cooler weather.",5,1,0,General Petite,Tops,Knits +1098,19,,This dress is so pretty!! the second i saw it i knew i had to have it. make sure to get a smaller size because it can be a little big towards the waist as a result of the dress' design.,4,1,0,General,Dresses,Dresses +900,30,So many compliments,I wore this with a velvet moss-colored skirt (also sold at retailer) that hits above knee and received so many compliments. the neckline and sleeves are gorgeous. i like my sweaters comfy so i ordered a medium and love it. not quite cropped but it does hit a bit higher on the waist. sleeves hit above wrist as well.,5,1,0,General,Tops,Fine gauge +1098,33,Adorable!!! however...,This dress was sooo cute online and in the store - i hands down would have bought it but i had an extra few minutes so i decided to try it on- terrible! the dress looked awakward on me- the strings lacing strings had town on a few spots and it just was not flattering for a curvy girl. now i know why there were so many in the store! which is a rarity for my location.,3,0,1,General,Dresses,Dresses +1116,34,Massive and unflattering,Agree with other reviewer that this is massive even for a cape. unflattering overall. i normally wear a size 2 of 4 and bought this in an xs and two of me can easily fit into this with room to spare. unlined and it itches!,1,0,3,General Petite,Jackets,Outerwear +1047,36,Fraying after 2 wears!,"I loved these pants.they are so comfortable. however, after just wearing them twice, the threads of the leaves are fraying, and leaving lint on whatever i sit on. the leaves at the seat of the pants are now slowly disappearing. this after wearing twice to work! i imagine after a few more wears that the leaves at the seat of the pants will be close to gone, or at least much less ""white"" with threads then the rest of the places. this is super unfortunate and will be returning. too bad, they were l",3,0,3,General Petite,Bottoms,Pants +1087,54,Adorable dress but.....,I agree with the other two reviews. it is so disappointing that this adorable dress isn't lined. the fabric is paper thin! this is an a-line style dress with pockets that need to be ironed down to prevent it making you look hippy. i sized down to a petite xs. i normally buy the petite smalls but they were out of it. i would say that this dress runs a little on the large size.,3,1,0,General Petite,Dresses,Dresses +1098,35,Love this dress!,"I am 5ft 8in and about 140lbs-athletic busty build. i normally wear a size 4-6. i ordered this dress in white in a size 6 and couldn't be more pleased! i actually hopped online today to try to order another in the lilac but they are unfortunately sold out. this dress is exactly as pictured-the upper back is fitted, keeping it from going out too much and looking like a straight up tent. i adore it and hope that they will re-stock it!",5,1,0,General,Dresses,Dresses +940,48,Easy go to sweater!,"This sweater is perfect with leggings, crop pants, jeans and wide leg pants. a line, 3/4 sleeves, does not cling to waist area... very flattering. so soft , comfortable and thick cotton knit... no cami required. length is bum covering.",5,1,1,General Petite,Tops,Sweaters +1082,52,"Lovely, but fit/cut is a little odd","I am a 6p (5'2"") and got this in a regular small as it did not seem to come petite. my tailor is taking 5 inches off the bottom as the lower portions (it is an uneven hem) are ankle length. + +black watch tartan is one of my favorites - so had to get this dress! + +i would say it fits tts. it is on my shoulders and the sleeves are bracelet length; i have a little extra material around the waist. the dress zippers up the size and there is an elastic section at the small of the back. i find th",4,1,1,General,Dresses,Dresses +1094,70,,"This dress is so pretty, a true cinderella dress, that's why i can't find a reasonable explanation for such an amazing dress to be made out of plastic. i don't understand much about fabrics, but the dress feels like a waterproof camping tent. i bought a size 14, which is what i wear in moulinette souers (i usually go one size up since i find the rib cage small in this brand), the fit was perfect and the cut was very flattering. i will anxiously hope for a remake of this dress with a better fabri",2,0,0,General Petite,Dresses,Dresses +1098,34,The dream dress!,I just discovered this dress a few days ago and it's simply dreamy!! i'd been searching for the perfect summer dress to wear to a wedding in june but had been highly disappointed in the selection of pastel colors from other shops. this dress is the perfect summer shade and will be perfect for the texas heat in june! i absolutely love how it flows and is elegant yet modest. the lace cut-outs are gorgeous!,5,1,3,General,Dresses,Dresses +940,53,Great go-to sweater,"My favorite features of this sweater are the flattering neckline and the bracelet length sleeves. it's a heavy-weight cotton with a beautiful line. my only complaint is that it seems to pick up lint and things very easily and needed a lint roller even straight out of the delivery box. still, a small issue for an easy to wear sweater that looks great with jeans and boots as well as leggings. a new favorite!",4,1,0,General Petite,Tops,Sweaters +1109,27,Love,"This dress is adorable. the colors are vibrant and very eye catching. i found it runs tts -- for reference i'm 5'4"" 140lbs and i ordered a 6. the dress is fitted on top with some very nice/forgiving pleats around the stomach.",5,1,4,General Petite,Dresses,Dresses +862,44,Underarm too loose,"The material feels substantial and decent. however the diameter of the opening for arm is too big, it exposes good chunk of my bra. have to return it. there're also loose fiber of the fabrics, not sure if it is because it's new.",3,0,4,General,Tops,Knits +1098,25,So beautiful!,"This dress is just absolutely adorable! you can dress it up and wear it to a wedding, or you can dress it down and slip on a pair of sandals and use it as a casual summer dress! this dress does run a tad bit large - i'm usually a size 4 but the size 4 was slightly too big for me. best purchase yet!",5,1,2,General,Dresses,Dresses +1098,32,So disappointed :(,"I wanted to own this so badly! it ran really short, even with the adjustable slip and was incredibly tight in the shoulders. i could barely get the dress off!",3,0,0,General,Dresses,Dresses +1098,27,Beautiful!!,The holding horses brand never ceases to amaze me. this dress is gorgeous in person! i have received so many compliments while wearing this dress. the lace is intracately crafted and the lilac color is perfect. i actually have this magnolia dress in black as well and i might even get the new reddish color too. needless to say i'm obsessed with this dress?,5,1,0,General,Dresses,Dresses +1047,50,"Love, love, love!","Love these! i wore them today for the first time and got tons of compliments. they are comfy and sooooo cute for summer. also, fyi, they make my butt look great.",5,1,2,General Petite,Bottoms,Pants +1059,29,Weird fit,"I love jumpsuits and was excited about this one because i liked the print/colors and that it's long-sleeved. i ordered my usual medium size (i'm a solid medium). it was a tad tight in the rear/thigh area (not flattering when you have a thin material which shows every bump unlike jeans) but the length (i'm 5'5"") and top fit well. i returned it and ordered the large but the waist was huge (and that's coming from a person with a bit of a tummy bulge) and there isn't anything to cinch the waist in.",3,0,20,General,Bottoms,Pants +864,29,Oversized and color off,"As other reviewers have noted, the fit of this tee is very boxy. it looks okay tucked-in to high waisted jeans, but otherwise is unflattering. also, the color is described as black, but mine looks like a navy blue in person. i kept the shirt because i live overseas and returning it would have been difficult, but if able to, i would have returned it.",3,0,0,General,Tops,Knits +1092,26,Beautiful detail; loose fit,"Loved the fabric and details. the cut was a tad looser/bigger than i expected. +perfect dress for fall.",3,1,0,General,Dresses,Dresses +1092,55,Can't wait to wear it!,"I purchased this dress in my normal small size - via online. i exchanged it it for a medium in the store as the shoulders were just a little too tight for me. i plan on wear it with tights/leggings as it's a little to short on my 5'9"" frame. well made and the bodice has so much detail but not over the top.",5,1,0,General,Dresses,Dresses +1092,35,Beautiful dress but sleeves were too tight,"I loved this dress. it fit perfectly everywhere except for the sleeves. the dress has an overall relaxed fit, but the sleeves were way too tight. i had to send back because of sleeves.",2,1,0,General,Dresses,Dresses +1092,28,Size down!,"I love this dress for fall. it is slightly sheer, so i would recommend wearing tights or a slip underneath, but it is lightweight enough for fall that i can transition the dress into the season as it gets colder. one note -- i am 5'1"", and was required to size down to an xs in this dress due to length. the xs is perfect for work, as it hits me slightly above my knees.",5,1,1,General,Dresses,Dresses +1092,43,Really lovely touches!,Kind of excited about this little number. i found it online and was immediately drawn to the boho-chic look. it arrived and i was impressed with the weight of the dress and the detailing that is missed in the photo.,5,1,1,General,Dresses,Dresses +1092,38,Comfortable with great details,"This is a great, easy-to-wear dress with lovely beaded detailing all over the front bodice and ladder lace trim running the length of the sleeves. easily dressed up or down. i usually wear petites but ordered the regular size based on previous reviews, and the slightly longer length was perfect for me (it hit just above the knees). there were a few beads that were coming a little loose, so i did have to secure those but it wasn't a big deal for me as i'm pretty comfortable with light mending, et",5,1,1,General,Dresses,Dresses +1092,31,Fabulous fall dress,"This dress is beautiful - the pattern is pretty and the beading detail is stunning. i immediately received many compliments the first day i wore it. i do think it is a little short so i bought a size up (i also like loose fitting clothing) and i wore it with bare legs and boots and felt ok, will likely add leggings or tights as the weather gets cooler.",5,1,1,General,Dresses,Dresses +1094,54,Perfect fall dress!,"This dress is more beautiful in person than it is online. during the fall/winter i love to wear dresses with tights and pair them with boots. this dress is so cute, the material is pretty thin, but lined and flowey, i am 5'9 34 b bra 27 inch waist and a size 2 was great. the dress itself is pretty shapeless but string around the waist is adjustable to make it fit you the right way (giving it some shape) the v neckline is definitely more attractive in person than in the pictures, and the stitchin",5,1,9,General Petite,Dresses,Dresses +1092,39,Tons of compliments,"Wore this to work and nearly everyone complimented me on it. very comfortable. lots of detailing. perfect for fall. pockets! i'm usually somewhere between a s and m but this piece was generously cut and a s was perfect. i debated ordering the petite, but actually the regular cut was the perfect length even though i'm only 5'4"".",5,1,0,General,Dresses,Dresses +1092,42,Transitioning seasons dress,"This dress was one of those incidental finds i saw in-store while making an online return. for whatever reason i didn't notice this one online but loved it in person. the fit is easy going and flattering, i took a small as the shoulder fit would've been a little tight in the xs. great dress for transitioning seasons :)",5,1,2,General,Dresses,Dresses +1092,62,Beautiful!,"I grabbed this immediately when i saw it in the store - the details are beautiful - beading, embroidery, and small opening details on the arms. from a practicality standpoint, it has pockets, it's machine washable, and it can easily be worn as is, with black leggings or tall boots in fall, and then throw an additional chunky ivory cardigan on for winter. for sizing, i am usually a size s and found it to fit loosely, but in comfortable slightlyyyy swingy way. if i had sized down the shoulder seam",5,1,54,General,Dresses,Dresses +1046,41,Nice design but high maintenance fabric,"I like the style and the design of this culottes, but the texture of the fabric will caught on any rough surface. i had a few loose loops for just one wear... so it will be nice to wear for work or shopping , but not good to go to the park or play with kids...",3,0,1,General,Bottoms,Pants +1092,57,Sweet little dress,"I was not so sure i would like this dress as i was afraid it may be too boxy looking. per other reviews i took a chance...i love it! +so sweet with my grey boots and just dressy enough...but still casual and fun. +detail work is very nicely done.",5,1,1,General,Dresses,Dresses +1092,29,Stunning dress,This dress is beautiful and extremely well made. there is s little more weight to the fabric than i had assumed but it's nice for fall/transition/cooler temps. i'm so sad that i will most likely return this dress because it's just not working on my postpartum body but there is a part of me that wants to keep it because of how stunning it is.,5,1,1,General,Dresses,Dresses +1054,42,Had high hopes,"I ordered this in a small and medium hoping one would work, but the previous reviews were exactly correct, the bodice is way too small in proportion to the rest of the jumpsuit. the bottom has lots of fabric, which wouldn't be bad except you have to go up a size to make the bodice fit, then the bottom becomes overwhelming. i am 5'5"" and 115 so i have a slim build and couldn't get the bodice to zip in a small. the medium would have needed altering, which wouldn't have fixed the extra fabric on th",2,0,0,General,Bottoms,Pants +823,27,,,5,1,0,General,Tops,Blouses +1046,61,Not machine washable,These are beautiful and very comfy. they do run very large. i ordered the green in medium and deciding wether to exchange for a small. the washing instructions in the pants are to dry clean for best results. the description needs to be updated to reflect this.,4,1,4,General,Bottoms,Pants +823,35,Love this top!,"I agree with the other reviewer who said she cannot believe it's not flying off the shelf. this looks gorgeous on and the fit is perfect. i ordered my usual size m. i am 5'3"" 34dd and it looks amazing. it is breezy and flowing but without the baggy look. it is so cute with jeans or leggings. the fabric is the perfect weight- light but still thick enough that it's comfortable and my light bra is not seen underneath. love this top!!!",5,1,0,General,Tops,Blouses +1092,48,,Great dress. fits perfectly. will be perfect in the winter and with leggings.,5,1,2,General,Dresses,Dresses +1046,37,Lovely design. quality horrendous.,"I adore the feel and cut of these culottes, but the quality has diminished my faith in retailer. picks, piles, and serious wear and tear after just one day. i feel as if i wasted my money.",2,0,0,General,Bottoms,Pants +1054,50,Bad fit,"I had high hopes for this jumpsuit for a holiday party but it is a very odd fit. i'm normally a 10-12, preferably a petite. i ordered this in a large and i couldn't begin to zip it up. it also ran extremely short in the crotch area. very pretty print but it's going back!",3,0,0,General,Bottoms,Pants +1092,39,Great dress for fall,"The dress is as great 'in person' as it shows in the pictures. if you usually buy petite keep in mind that you may like the regular size if you prefer the llonger look. if you prefer a shorter length go for the petite size if this is what you usually get. i am 5.3, 117 lbs and tried both, xs regular and xs petite. i ultimately went with the regular size as i preferred the longer length. +everything about this dress is perfect, the color, the material, the cut. highly recommended as a transition",5,1,1,General,Dresses,Dresses +1092,33,Compliments galore!,Love this so much. it's beautiful and i get tons of compliments. it's a touch short as a dress but looks amazing with leggings!,5,1,1,General,Dresses,Dresses +134,25,,Love these! they are thick and comfortable. they feel like sweat pants but are cute enough to wear out if you are running quick errands. definitely recommend!,5,1,0,General Petite,Intimate,Lounge +1038,51,I love these jeans!,These are so comfy. i will wear them for 3 seasons. so worth it - especially on sale.,5,1,0,General Petite,Bottoms,Jeans +1038,36,Stylish and comfy!,"Great fit and dark color; thick yet very soft denim. only surprise for me was that the lacing is in the front (i was expecting it to be on the sides), but i love them anyway!",4,1,0,General Petite,Bottoms,Jeans +1092,32,Perfect fall number,"This dress is amazing beautiful and perfect for fall. the colors and beading are so much better in person. the pockets are an added bonus! i'm typically a xs but sized up to a s only because i felt the sleeves were tight and across the bust was tighter than i'd like when moving my arms. the xs would have worked but the s is perfect comfort. i highly recommend this beauty. for reference, i'm 5'2, 120 lbs.",5,1,3,General,Dresses,Dresses +1054,28,Beautiful jumpsuit,"Absolutely love this jumpsuit. i am 5'2''/103lbs and the xs fits perfectly (i am typically an xs/00). when i read previous reviews i was quite excited to read that most people found it to be ""short waisted""-- the waist band actually hits my natural waist (just how it is pictured on the model), which never happens! great quality, thick fabric and the pleats in the front are beautiful. can't wait to wear it!",5,1,0,General,Bottoms,Pants +1046,34,,"These pants are lovely and comfortable, but they are entirely too delicate. i wore them once and nearly any time something touched them, they snagged. i was worried about it when i saw the fabric, and thought i'd give it a try, but i didn't think it would be this bad. for the price, i expect better quality. also, they run a little large- unless i pull the waist down low, it gaps in the back and these look better worn a little bit higher, closer to the natural waist. i'm usually a 4/6, 28/29 in b",3,0,7,General,Bottoms,Pants +1074,41,Fall dress,I think this is the perfect fall dress. i did not have the cleavage issue because i am going to wear the little button buttoned at the top. i like the sleeves can be pushed up or down depending upon your weather. i thought it be very slenderizing. i am thin on top but curvy on the bottom. i'm going to wear it with closed toe wedges but if my legs were thinner i think tall boots would be pretty.,4,1,0,General,Dresses,Dresses +1092,41,Tunic not dress,"This is absolutely beautiful. but i am only 5'6""and the dress hits my thigh about the same place as it does on the model. one lean over to pick up my purse off the floor and i will flash everyone. so i am going to wear it with dark denim leggings and tall boots. likewise i did not detect even a speck of black. to me it is navy and purple. i was wishing it had black because those are my favorite leggings but quite honestly i think you're going to have to do navy or denim.",5,1,0,General,Dresses,Dresses +1092,35,Great everyday dress,"This dress is exactly what i was looking for. i have a very business casual job but wearing jeans and blouses can get boring so i'm constantly on the lookout for easy, go-to dresses that i can throw on year round with flats, booties, sandals, etc. this dress is exactly what i had in mind and i look forward to wearing it in the fall/spring with booties and in the winter with tights.",4,1,1,General,Dresses,Dresses +864,46,Comfortable,"Bought this at sale price. pretty in person and soft / comfortable. runs really big. size down. +i got it in my usual size l, but will have to exchange for an m.",5,1,2,General,Tops,Knits +864,31,Cool shirt,"This shirt is boxy. but, as the pictures clearly shows, that is the design of it. if you know how to style outfits, it's a great buy. i really like it. i'm tall and slender, so it's a bit easier for me to pull this off. the design and color are just really neat. really cool shirt for the fall.",5,1,1,General,Tops,Knits +134,36,Worth the money,"I did buy these when they were 40% off the sale price. well worth it. they are comfortable, thick but not too warm. they are my 'nice' home pants to wear outside. =) i love them. i got a large and they fit on the baggy side but not bad. i'm usually a large or xl.",5,1,0,General Petite,Intimate,Lounge +1046,41,Yessssss!!!!!,"A culotte and basketball short hybrid. these culottes are heaven....very comfortable. the are great on windy summer days or walking around the city (between the buildings are like wind tunnels). the waist does run alittle large...i have a 29-30in waist and the medium petite fit my lower waist, but is large on my natural waist...a small petite would be better, so size down one size on the waist. plus the waist band is stretchy, so there is a lot of forgiveness in sizing down. plus the petite's le",5,1,0,General,Bottoms,Pants +1046,69,,"These culottes run very large--more than 2 inches of gaping waist band in my usual size. i would have kept them if they had fit, although sitting in them on a hot day might cause major wrinkling",3,1,5,General,Bottoms,Pants +1092,22,Cute but just not right,I love the style of this dress but felt that it didn't look great on. really sad it didn't work out :( felt like it was too short and the drop waist was awkward and looked childish. beautiful fabric and design if it fits you well though!,4,0,1,General,Dresses,Dresses +1092,59,,Love this dress!! will go from fall to winter. so comfy. got it in medium.. and fits great.,5,1,2,General,Dresses,Dresses +1094,45,"For curvy or tall, not for the waist challenged","The fabric, so diaphanous! so flowy! the pattern, so pretty with such interesting colors. it could literally go with anything! purple, yellow, orange, green, they're all in there. but here's the but.... + +i have no waist! and when you put this type of empire silhouette on me, i look like i'm wearing a sack, or i have some pregnancy news--when i don't. i tried belting it : waist tie is too high; i tried putting on a vest, too annie hall and called too much attention to the sleeves, while adding",3,0,5,General,Dresses,Dresses +1092,42,Beautiful and versatile,"Very flattering! i am petite, but have large breasts. so, i expected this dress to look boxy on me. but the flowy fabric falls perfectly on the body and shows just the right amount of shape. the pattern is beautiful and perfect for the cooler seasons. the dress is also very versatile. it can be dressed up with heels and a jacket, or down with flats and a denim vest or jacket. i know i'm going to wear this dress over and over this fall and winter.",5,1,1,General,Dresses,Dresses +1092,33,,,5,1,0,General,Dresses,Dresses +1092,60,So much detail!,"There is so much going on on this dress - it's fantastic. hard to tell from pics - but there is a peek-a-boo lattice detail going down the front and back of the sleeves. the beading is plentiful but not too much for work. dress is significantly longer on me than the model - i'm 5'6"", but still a tad above the knee. with tall boots or booties and tights, this will go straight from work to out for the evening. i'm real long waisted - originally ordered m, but exchanged for l. much better fit overa",5,1,2,General,Dresses,Dresses +1046,29,Beautiful if you're tall enough,"These pants are really beautiful. the material feels nice and i love the pull on style, however, they are much too long for me. i'm 5'3 and they literally hang to my ankles which is not at all flattering like the photos. i think if you are tall enough, these are a wonderful piece.",3,1,0,General,Bottoms,Pants +1074,50,Beautiful!,"Beautiful and good quality dress. the pictures nor the description really show or mention the keyhole cut at the front neckline. you really have to look very closely at the model photos to see it. unlike the model, i have curves and this dress showed way too much cleavage for me.",3,1,0,General,Dresses,Dresses +1092,45,A must have dress,This dress is so much better in person than pictures. details on the sleeves and buttons on the front shows quality and makes it an original looking dress. i've wore it yesterday for the first time and received 4 compliments. buy before it sells out!,5,1,1,General,Dresses,Dresses +1003,36,A step above basic,"Great knee length, lovely twirl and drape. though a staple piece, the material and the blend of the navy and black bring this skirt up a notch. pull on styling. i purchased a small and returned it for an extra small as it was too large in the waist. i like my skirts to sit at the natural waist and with the style of this skirt, i think that would look most flattering and slimming. my waist is abt 26/27 for reference (34c bust and hips abt 35/36) and typically a 2/4 at retailer. the skirt is quite s",5,1,3,General,Bottoms,Skirts +1046,26,"The ""dip your toes in the culotte trend"" pant","I skipped over these when they first cme in store, but it was reccomended to me to try them on. so i did, and i loved them, they look like a skirt which is amazing but you won't be worrying on those breezy days ;) they run very big!!!! i'm usually a 26/27 or 2/4 in pants and i got the xs and feel like i could have even sized down but that's the smallest size carried in store. i got them in the green because i felt that the color went more with the casual feel of the pant. if you are interested i",5,1,14,General,Bottoms,Pants +134,55,Comfy,"Nice feminine pattern with a thick fabric. it's great having pockets! the white is ivory. i'm a size 4, and the small fits nicely. it would be nice, if the pant length was a little longer. i have a 31"" inseam, and they end up being a couple of inches above my ankle, but that's just my preference. overall, very happy with this purchase.",5,1,0,General Petite,Intimate,Lounge +1038,58,,Super cute style but runs slightly larger then other ag jeans i have.,5,1,2,General,Bottoms,Jeans +1046,35,"Very flattering and comfy, love em!","This feels and looks like a ballet skirt on, so light and flowy, super comfortable, just love it! extremely flattering cut, tiny gathered folds at waistband add pretty detail and create a slimming effect on my tummy, what's not to love?! great pockets too! i have a 34 inseam and the length is perfect. ordering in both colors now as i can see these becoming my go to bottoms all summer long....",5,1,1,General,Bottoms,Pants +1092,27,Cute dress for fall,"Runs true to size for brand/retailer clothes (xs for 5'5"", ~120lbs), but a little tight in the shoulders/biceps if you have fairly developed muscles or just wide shoulders. watch out for the skirt riding up when you reach for something or bend over.",5,1,1,General,Dresses,Dresses +1092,31,Great dress,"I bought this dress for an october wedding in savannah, ga. i love it! can be dressed up or down. i'm 5'3"" and 112 lbs and bought an xs. like other reviewers said, it's a little tight through the arms. i probably could have done an xxs but wouldn't be as comfortable. i'd recommend this dress to anyone looking for a versatile dress for fall and winter.",5,1,0,General,Dresses,Dresses +864,53,Boxy and big but pretty material,Another tent-like tee. this shirt is thin but not in a bad way and the color and design are really nice. but...it is really boxy and i'm just tired of that look. the longer sleeves are a plus for fall.,2,0,7,General,Tops,Knits +1054,36,This makes you feel divine,"I noticed this outfit earlier this year and remarked to my husband how heavenly it was. i couldn't bring myself to buy it since i shy away from strapless outfits (this lady is a small chested diva). to my delight- my wonderful husband remembered my gushing, and surprised me with this outfit for christmas! imagine a 33-year-old dancing around the house holding up this outfit - because that is what happened. this outfit it truly a work of art. it has a lined bodice with soft boning that fits perfe",5,1,0,General,Bottoms,Pants +1046,38,"Comfy, easy pant","I am here online to buy this pant in both colors. i tried it on today in store in regular lengh,, but am opting for petite size. i am 5'2. i could have purchased the regular length, which hit me above the ankle, but i think p will be more flattering and better for summer. + +the pants are a woven material, and kindof shiny!? the pants also may be a bit see-thru in sunshine due to the structure of weave. that said, i am buying them anyways because they are that comfortable and professional. i may",5,1,14,General,Bottoms,Pants +1003,54,Nice skirt,Nice skirt. texture pattern gives it character. does run a bit large.,5,1,0,General,Bottoms,Skirts +1094,51,,"Love!!!! i was super hesitant to try this dress on, it didn't look great online or on the hanger. but it looked great on! it has a very boho/70s/vintage feel. i am curvy, and it looked fabulous.",5,1,7,General,Dresses,Dresses +1092,37,Fall staple,Super cute dress for fall. detail is much more intricate than what you are able to see online. not too long and will look perfect with tights and boots.,4,1,1,General,Dresses,Dresses +1046,41,My go to bpttoms this summer!,"I fell in love with these bottoms at first site. i was a little worried they would not work for me because i'm a curvy size 12/14, but to my surprise they look great! i tried on the large as that is what i usually wear at retailer, but i was able to size down to a medium - which was great cause it minmized some of the fullness for me. they are light and breezy and will be the perfect alternative from shorts - which i hate. they are so worth trying!!",5,1,2,General,Bottoms,Pants +1074,37,Great fall dress,"This dress is beautiful, and the a line shape is very flattering. i'm 5'10"" and it hits just above my knees. i'm small on top, so the keyhole slit isn't an issue for me, but it does gap more than it does on the model. this dress has lots of versatility. like another reviewer said, you can dress it up with heels, or dress it down with boots.",5,1,0,General,Dresses,Dresses +1094,39,Fall flower,"I almost did not buy this dress because of the poly/rayon construction but i saw some sweet styling on instagram that got me hooked. the dress is silky soft and a bit oversized as i purchased the smallest of my size range. looks very swingy and free spirited when worn loose. cinch the string tie or add a wide belt for a defined waist and beautiful full skirt. i have many outfits in mind for this perfect fall dress, i'm excited to start wearing it! my weight has been fluctuating, so right now i'm",5,1,4,General,Dresses,Dresses +1092,39,Autumn defined,"This beautiful dress is the perfect style for fall. when i first picked this up, i was surprised by how heavy it felt. there is so much embroidery i thought the dress was lined with another layer. however, the fabric is not stiff. there are numerous exquisite details including a button up bodice, additional embroidery on the skirt and ladder lace on the sleeves. + + +i sized up to l because of my heavy back/shoulders/upper arms. sizing up does make the bodice of the dress look a tad wider but n",5,1,40,General,Dresses,Dresses +1092,41,A no brainer!,"This dress is truly a no brainer purchase! it is a stunning dress with gorgeous embroidery, beading and the color is just perfect for fall! i am only 5'2 and i went with the regular size since i don't like to go too short. that said, you can totally rock this dress with leggings and boots if it is too short. i weigh 103 lbs and i am normally an xxs but i'm glad i went with the xs since it would have been too tight at the top and should even be slightly loose fitting on the bottom. love everyth",5,1,6,General,Dresses,Dresses +1094,64,Huge!,"Just be prepared: this is huge! i looked hilarious in my normal 00p. this was in store, luckily, the the excellent personal stylist warned me. i also don't think the colors are as good in person - bit dull. if it fits you, it could be nice.",3,1,0,General,Dresses,Dresses +823,32,,"This is a great tunic for those of us who like to wear leggings as pants once in a while, it covers all the important parts without being too baggy. i found the fabric to be light and comfortable, but heavy enough that a light colored bra can't be seen underneath with it great if you don't feel like wearing multiple layers.",5,1,0,General,Tops,Blouses +1046,38,Not for women with curves!,"I am floored by all of the positive comments about these culottes! i can see that they would work for someone who is rail thin and has no hips... but for those of us with curves (i'm a size 12, hourglass), these are very unflattering. they made me look like i was carrying an extra 20-30 pounds, just around the hips! so bummed because they look so cute on the model.",1,0,2,General,Bottoms,Pants +1092,42,Cute but too short,"This dress hit my waist in a weird spot and was too short. i would not have felt comfortable bending over. it was a tad too full which wasn't flattering either. +i really wanted to love it bc they design is adorable. +i need to return it!!",2,0,0,General,Dresses,Dresses +1046,35,Reminds me of my mamaw,"I got these in the mail today and to me, they look exactly like the pants my mamaw used to wear in the 80s. they were super comfy but not cute at all on me. they do run large like other reviews say. i am usually an 8/10 or med and these in the small were the right choice. going back because they just look horrible on me though",2,0,0,General,Bottoms,Pants +823,47,Quirky,Nice top; the material is soft and drapey. i like to wear it layered under a shorter shirt or jacket.,5,1,0,General,Tops,Blouses +863,54,Thin fabric,Super cute but the fabric was so thin & flimsy i was afraid it would fall apart once it was washed so returned it.,2,0,0,General,Tops,Knits +205,40,,,5,1,0,Initmates,Intimate,Layering +863,41,Fun,"This does run big but because it is cotton, it easily shrinks in the dryer. i love it! i do wish the color was more saturated/deeper.",4,1,0,General,Tops,Knits +863,34,Cute. loose. comfortable. great for summer.,"This definitely runs a little large, but i love this tee. i actually went back and bought it in a second color. it's perfect to throw on with shorts this summer.",4,1,0,General,Tops,Knits +205,36,Confortable,I am usually a regular xs with retailer tops. i took a chance and went with the xxs in blue and am not regretting it. super comfortable top. fits perfect and will be great for work.,5,1,0,Initmates,Intimate,Layering +863,50,Great on-trend t-shirt!,"I loved it but can understand the mixed reviews. i am 5'7"" and a size 2-4 usually. 32d. you need to be on the tall side for it to work. definitely will not work if you are petite. i can also see if you have a fuller chest how it would tent and look like a maternity top. i have that happen with off the shoulder styles. that said, if it works, it is great. i didn't size down went with s) because the xs didn't hang well. it was too short at the shoulders and neckline. again, probably need to be in",5,1,0,General,Tops,Knits +1078,31,"The perfect ""blue"" period dress","I am in love with this dress. the colors are amazing but also is the fabric. it is soft and supple. i am a curvy girl and this dress does all justice to my bust, waist, and hips. this is truly an amazing dress. you can dress it up or dress it down and the best part it is professional enough for a causal office look.",5,1,3,General Petite,Dresses,Dresses +895,44,Perfect spring sweater,"I adore this little sweater- the pictures don't do it justice. i'm tall, with broad shoulders and small chest- the cut and design of this sweater is so flattering. colors work with denim or any neutral, and the weight is perfect for spring or early summer.",5,1,3,General,Tops,Fine gauge +895,39,Very cute but kind of an odd fit,"I like the look of this sweater and i am keeping it. however, i found the fit under the arms a little uncomfortable. there is a large seem that goes under the armpit and is a little bulky and irritating. also would not recommend if you are busty. because of how the stripes run, it looks stretched out over my chest.",3,1,1,General,Tops,Fine gauge +510,36,Perfect!,"This is the prettiest little nighty. it is romantic, soft and so very pretty. i really adore everything about this piece , but the pink detail on the trim, along with the floral embroidery is are just the right extra touches that retailer shoppers have come to love.",5,1,1,General Petite,Intimate,Lounge +863,33,Comfy staple,Love this top! bought the navy to be a cool matching momma for my kiddos baseball and loved it! bought the light pink and red too! fun off the shoulder tee... love how long it is in the back... one thing i will say is that one of the colors fits slightly different like the hem isn't symmetrical or something so i find myself readjusting but i'm sure i'm the only one who notices it... and it doesn't keep me from wearing it and loving it!!!,4,1,0,General,Tops,Knits +895,49,Versatile piece,Love this sweater! it can be used for both work and casual wear with ease. very soft and seems durable. i highly recommend it!,5,1,0,General,Tops,Fine gauge +863,48,"Cute, fun top","Soft very forgiving and flattering top, wish it was not so pricey",5,1,0,General,Tops,Knits +510,40,,"I love elosie sleepwear, everything is well made and beautiful designs. i am 5'5"" and wear a size 4, the small fits great. i love the embroidery it is a nice touch, and the pink is a pretty contrast.",5,1,2,General Petite,Intimate,Lounge +863,46,Runs huge!,"I am normally a medium and i would take an xs in this top - i actually tried a m, s and xs and the xs fit but was still big. yes, this is supposed to be a loose draped piece, but for me, i didn't want it to make me look like i was huge through the waist line. the red is really pretty, the white is see thru.",4,1,1,General,Tops,Knits +863,66,Comfy tee,"Cute style, flowy fabric. it runs big i purchased a medium and could've definitely gotten a small.",4,1,1,General,Tops,Knits +205,70,,"This is one of those pieces of clothing that is destined to become a wardrobe staple. +the fabric is soft and generous. . the chiffon trim gives it swing and style. +i just ordered another one because i know it is going to be a long time favorite..",5,1,1,Initmates,Intimate,Layering +863,57,,"This is a nice light top for the summer. i love how your shoulders peak out from tee, which gives it a touch of of sexiness. it does run large so i went down a size. i haven't washed it yet so don't know if it will shrink. i do recommend it though.",4,1,0,General,Tops,Knits +863,27,Weird neck fit,There is no possible bra to wear with this top. after one washing the neck felt funky. the pink color is very light. it's long enough for leggings. my shirt is a high hemline on one side than the other. i'll wear it but wish the neck wasn't so funky.,3,0,0,General,Tops,Knits +863,41,Runs large,This is cute with the shoulder detail. i ordered a medium- will be returning for a small. i'm kind of in between small & medium.,4,1,1,General,Tops,Knits +863,44,,I love the off the shoulder tee so much that i ordered two of them in different colors. i can wear them with jeans or i can wear them with gym attire while out running errands and still feel like i look nice!,5,1,0,General,Tops,Knits +895,33,Strange fit,"I put a lot of hopes on this pullover. i needed something for the spring, and it seemed perfect. plus, the sale price is very attractive compared to the regular retailer prices. but... i am not exactly disappointed, but i'd say surprised. + +i would still consider this sweater good for spring. it's thin enough to be tucked into a skirt or pants if you like. the pullover is very stretchy - frankly, i would prefer it to be less stretchy, but that might be a plus for someone more busty. the quality",3,0,0,General,Tops,Fine gauge +1078,47,Love it!,"Love this dress! adorable, comfortable and figure flattering! cant go wrong with this purchase!",5,1,0,General Petite,Dresses,Dresses +510,53,Zoe slip,"When i saw this slip/nighty on-line i loved it! most of the night-gowns i own are from retailer and i am very pleased with them. i ordered my normal size small and it fit well. for reference i am 5' 1"" and 120lbs, 35c. the only slight issue is that the fabric is quite sheer, not a big deal since one is wearing this item to sleep in, but it would have been better in my opinion if it wasn't so see-through. also this may not matter to anyone but the stitching along the top is a bright neon pin",4,1,10,General Petite,Intimate,Lounge +863,41,Cute t-shirt,I agree with other reviewers that this top runs large - i'm glad i ordered a size down. it's a cute twist on a basic tee shirt.,4,1,0,General,Tops,Knits +863,51,Great summer tee,"I tried this on in the store because i have had my eye on it for a while and i want to be sure i get the correct size. as other reviewers have said, it does run large. i normally wear a s and the xs was big on me. i could go with the xxs, but of course it appears to be sold out now. the lighter colors look like they would be slightly sheer, but the navy blue and red are not. i thought the material was good quality. not sure if it would shrink. top is rather long on the back, but the picture does",5,1,3,General,Tops,Knits +863,42,Multi-use!,"I'm 5' 3"", 115 pounds, and bought the xs in white. i actually wear this as a bathing suit cover-up instead of a top. i love that it's little longer in the back so it covers part of the back of my thighs. it's light weight, cool and comfortable. it is thin but has washed well with no pilling or holes so far. i've worn this several times and have had lots of compliments.",5,1,1,General,Tops,Knits +1078,46,Adorable,So cute and a must have. took my normal p6 and fits perfect! love it,4,1,5,General Petite,Dresses,Dresses +863,38,Way too big,"I was quite excited to find this tee in the store. the design looked interesting and it seemed nice on the mannequin. the bright red color really stood out in person. i am 5'2"", 34b, tried on my usual size s and it was humongous! although the sales lady found a size xs (they don't have size xxs available in the store) for me to try on, it was still huge like a tent. it probably would fit better for a tall body figure. i would recommend those who are interested in this tee to try it in the store,",3,0,36,General,Tops,Knits +1078,54,Love this dress,"I have been watching this dress online since it arrived, finally decided to order it online. it is as great in person as it looks on the website. the fabric, cut and finishing of the dress are high quality and my usual size 10 fits great. it falls about 3"" above the knee on my 5'5"" frame which is a little short for the office, but i could do it on a friday with a cardigan. the fit is comfortable and flattering for a gal with broad shoulders and small curves. when i tried it on friends raved. thi",5,1,3,General Petite,Dresses,Dresses +863,27,Great casual outfit!,"Runs a little big, but super comfortable and looks great with jeans slightly tucked in.",5,1,0,General,Tops,Knits +863,27,Super cute!!,"I tried this top on in-store in red and lavender. i love it! yes, it is big, but it is still really cute. if you are between sizes, go down a size. i am 5'5"" 34b and went with an xs in the red. it appears to fit in the front but looks larger in the back, which i think the other reviewer was getting at.",4,1,11,General,Tops,Knits +895,47,Cutest sweater ever!,"This picture does not due this sweater justice, at all! i purchased this today for summer. it's beyond cute and the colors are awesome! it's a very light sweater with a fitted (but not too tight) light feel. the sleeves are a little longer than quarter length, at least on me. it looks amazing with white pants, very fresh!!",5,1,4,General,Tops,Fine gauge +863,44,Big flowy tee,I wanted to love this shirt but it quickly lost shape and a hole was created in the middle of the shirt after just a few washes. not worth the price. poorly made. you need to wear a shirt underneath bc it is so thin. the shirt looks better int he picture. i like it but it wears terribly.,3,0,0,General,Tops,Knits +863,62,My new favorite top!,I bought this in an extra small at a store in the lilac color and loved it so much i ordered a white one online 2 days later. they were out of extra sm so i ordered a small which is still ok as it looks cute being on the big flowy side with my jeans. i normally wear a medium in tops. i've received many compliments on these... they are very figure flattering and it's nice they are a little sexy for a loose top because of the open shoulders. i hope they come out with more colors for summer because,5,1,2,General,Tops,Knits +895,39,Cute enough,"The colors on this sweater are cute, the fabric is good quality and not too thick for spring. the fit is tts.",3,1,0,General,Tops,Fine gauge +863,37,"Want to love it, but it is only okay","This is really cute online, but is not fantastic on or in person. this is a top that i may be returning. i love the open shoulder, but the material is very thin, and the top runs large. it also hangs really low in the back which i am not a huge fan of.",3,0,0,General,Tops,Knits +861,32,My go-to tshirt!,"I love this brand and their different styles of tshirts. extremely soft, washes well and wears well! the shirt runs a bit large and i usually wear a medium, but in this brand i am a extra small or small.",5,1,0,General,Tops,Knits +866,53,Great quality,I bought this top in black n moss. they are of a great quality n love that u don't need a cami under. i do like them very much except that they're a lil too billowy in front for me. when i gathered excess material on the sides it looked much better. the black didn't look as large...black is slimming. i love the neck and the material. haven't decided yet if i'm keeping or returning.,3,1,0,General,Tops,Knits +861,55,Best tee ever!,"I love this tee, i own it and wear it nearly every other day in black and purple solids and ordered 2 of the prints. wish that the purple/gray floral print would restock since it sold out before i could purchase it. only possible negative is that i am careful not to tumble dry it due to other reviews of its vulnerability to tears or holes. so i hang it up to dry after machine washing. i read that it runs a bit large so i ordered and am thrilled with my medium.",5,1,0,General,Tops,Knits +861,62,Tla t shirt,This is better than the original tla t shirts from last summer. better quality/not sheer. great fit! i bought both the white and the purple. love tla tees!,5,1,7,General,Tops,Knits +861,42,White is see-through,"This is an oversized tee with a somewhat flattering fit. material is very thin. i ordered white, which was completely see-through. not at all what i was expecting. might work better in a darker color, but i returned it since it was nothing special.",3,0,1,General,Tops,Knits +895,35,Not for me...,"On me, this top is totally frumpy and boxy. i am 5'9, 34dd and the bottom hung on me like a bedskirt. not fitted at all. i ordered a large--not being sure of fit. i have a flat stomach and it just hung....yuck. honestly, for the price and fit, i wouldn't consider a medium. i think it would a tad better but not worth the price.",2,0,4,General,Tops,Fine gauge +1050,36,Light and comfy,"These pants are very comfortable. the material is light, so they will be perfect for a warm spring day or a cool summer's night.",4,1,0,General,Bottoms,Pants +861,46,,Purchased the xs blue. love the fit and light material. perfect casual tee for warm weather. no shrinkage after washing in cold water and minimal wrinkles when hung immediately.,4,1,2,General,Tops,Knits +861,35,T-shirt love,T la is such a great brand for t shirts! this one is so soft and comfy and the yellow color is a great neutral yellow.,5,1,0,General,Tops,Knits +861,36,Well-made basic,I bought this tee in most of the colors available. that's how much i liked it. it's not tissue thin; it's a good medium weight. it does't hug the body too closely. i am 5'4 and 140 lbs with a little post partum belly and this is a really flattering tee in m.,5,1,1,General,Tops,Knits +866,51,,Love the shirt! the green is such a vibrant color and it fits great!,4,1,0,General,Tops,Knits +1152,35,For hourglass figures?,"My v-shape figure (broad shoulder, narrow hips, waist not well defined) looked completely square in this. not flattering at all. perhaps better for other figures.",2,1,4,General,Dresses,Dresses +861,63,Easy,"Easy, breezy comfortable light weight tee",5,1,0,General,Tops,Knits +407,34,Nice suit. bottom is higher on back,"Reference: 100#, 5'1, 32a... ordered size xs. the suit is pretty. under the neckline, where the two orange panels meet the white center panel, that corner puckers a bit. this will not happen if you have a larger chest than my 32a or have a longer/broader torso so that the fabric can stretch out, thus pulling that merging area flat. the sides (cut out) lays flat when you stand up straight and gapes when your turn/bend to the side. i think this is expected. the bottom section, on the back, c",4,1,0,Initmates,Intimate,Swim +861,41,,"Incredibly soft, great to dress up or dress down. i must have summer tee.",5,1,0,General,Tops,Knits +861,23,Love this tee!,"I picked up this tee in store, where they had a pattern that isn't pictured here (purple floral on a grey background). this is a loose fitting tee, and usually the loose fitting tees i try on at retailer are really unflattering- however, this one fits great and is flattering. the fabric is wrinkle resistant and comfortable. this top will definitely be a staple of my spring and summer wardrobe! considering ordering in other colors. + +for reference, i'm 5'5 145lbs, 38-30-40 measurements, 34ddd",5,1,24,General,Tops,Knits +861,34,So soft!,"A perfect basic tee! +loved how soft it is. not worth full price, but definitely one to add to your cart once on sale.",5,1,0,General,Tops,Knits +861,60,,"I've never bought a tee at full price, in so many colors. i love this tee.it's quite possibly the most perfect fit ever. the material is thick and hangs well without being stiff or bulky. i'm 5'2 -117lbs usually a small petite or 4p but purchased the regular small so i can wear this with skinny or regular jeans. i purchased the purple, navy and black and may go back for the yellow. the white is still a little too sheer fir me otherwise i would have purchased it. wish they had a light grey versio",5,1,1,General,Tops,Knits +397,30,"Great overall, too darn long","I'm not petite, but i am short at 5'3 and while these fit in all the right places, the leggings are about 5-6 inches too long. i'm still deciding whether to return or hem - but the hemming would have to be professionally done with this material. bummer.",4,1,0,Initmates,Intimate,Lounge +895,48,Nothing special,"The sweater was nice but not as long as on the model. it was itchy also. this sweater was not what i had expected. their was nothing exceptional about it to spend that kind of hard earned cash, sorry retailer. i sent it back .",2,0,4,General,Tops,Fine gauge +861,42,Summer's must have tee!,"I love these t.la tees, and i buy them often. i find them to be very versatile and super soft. i have several colors and they hold up well if you wash and hang dry. i am a small in most retailer tops and these are no exception. they wear well under jean jackets or even a long-sleeve button-down shirt.",5,1,1,General,Tops,Knits +397,32,Great leggings!,"I'm extremely pleased with the quaiity of these leggings. the material is comfortable and supportive without feeling too restrictive. the pattern ans styling are slimming. most importantly, they don't slide down during your workout! i'm 5'8'' and a size 12-14 and the large fit perfectly.",5,1,1,Initmates,Intimate,Lounge +861,58,Great basic tee,I got this in the color listed as pink. it's not a usual pink. the fit is good--not too tight and not too loose. the length is good for a tee.,5,1,3,General,Tops,Knits +861,54,,"I'm a petite so as usual i have to order from retailer. i saw this on line and tried it on in a regular size in the store. even though of course it didnt fit, the style of the tee was nice so i ordered it. i couldnt have been more disappointed when i received it. the quality was truly awful. i'm not even sure why it is being sold. the neckline was warped and wouldn't lie flat again the neck or chest; the bottom hem was crooked. it was really bad. also having purchased tees in similar material befo",1,0,0,General,Tops,Knits +861,66,Tee,"I ordered the white tee in xs and am returning it. it runs tts & had a good fit but i didn't like the material at all. maybe because it was white, but it was see through & like a tissue tee that i would expect to get little holes in it near the waist. the sleeves are gathered in the center of the sleeve & i didn't like the way that looked.",3,1,4,General,Tops,Knits +407,37,Surprisingly flattering,"I just received this swimsuit today and love it! i was a little hesitant to order with the cutouts, but i feel it is very flattering. +i was choosing between an xs and s. i ended up going with xs and am glad i did, i think going up would of caused gaping on the sides. + +great suit, only comment is in the description i believe it said the straps are adjustable, but they are not. also, there is light padding which i appreciate.",5,1,18,Initmates,Intimate,Swim +1033,50,Another great pair of pilcro's,"Denim is a little heavier than my other pilcro stet jeans, but i love the wash and the broken-in wear on the upper legs and pocket. i mostly appreciate how little they stretch out during the day, just enough to be comfortable but without losing their shape. they seem a bit more fitted in the hips than the waist. but, i prefer jeans that aren't tight in the waist, so these are perfect for me. i purchased the same size as all my other jeans and they fit just fine. i am 5'6"" and the hem fell right",5,1,2,General Petite,Bottoms,Jeans +916,53,Lovely :),"I love the colors, the material, the design details (especially the white pattern at the end of the sleeves). the sweater is super soft and cosy. i got it in s because i wanted it to be nicely fitted. i am on tops between s and m. i am of tall , narrow build and athletic, which means i have well developed but still slim muscles in my chest, arms and shoulders. to accomadate that i often need m even though the rest of me is an s ;). anyhow, i was a bit surprised. in s the sweater fits very snug i",4,1,4,General,Tops,Fine gauge +861,39,Great casual tshirt!,"I love this t-shirt! it is so soft, fits true to size and great with jeans or shorts. i purchased in yellow and plan to purchase other colors!",5,1,0,General,Tops,Knits +407,19,"Very cute print/style, but weird cut on top","I really wanted this swimsuit to work and it looks really nice in person and good quality as well, but sadly the top is cut really strangely. in the photo shown of the model, it looks like a v-neck that kinda gives your boobs a little push to the middle for some slight cleavage. however, that's not how it fit for me. the cups have removable padding on this suit, and when left in, my boobs didn't even fit in the thing and it just looked really awkward in general. and with the padding taken out, m",3,0,5,Initmates,Intimate,Swim +900,39,Draped for downtime,"This is comfy and casual and fun to wear. moss ombrã© is darker and less ombrã© than pictured, so i wish i had gotten the other color way instead. i can see myself wearing this for running errands, grabbing take-out and other important things like hanging out on my couch. definitely size down or this will look too wide & boxy.",5,1,0,General,Tops,Fine gauge +1050,51,Love,"Okay, so in terms of quality, i'm not sure these are really worth the price given i paid $18 for similar pants at a cheap 'teeny-bop' store, but i do love them. the legs are much wider than they look on the model but the shirring at the waist and the inverted tucks below the shirring make them hugely figure flattering. i found that they did run a little large but couldn't size down so i hope they don't stretch out. (bought xs, 5'7, 115lbs) the shirred waistband is a little loose but i like how t",4,1,4,General,Bottoms,Pants +861,51,Much bigger than last year's version,"I ordered these tees in the navy and pink thinking that it would be a slam dunk given i already bought 3 of the same tees last year. not so. this year's version is much bigger - almost 2 inches wider and about 2 inches longer. there was even a 2 inch difference between the pink and navy version so i have to assume that sizing may vary among different colors. too bad for me - but i did read a review that thought the tees were better this year. i guess we are all different. at 5'7"", 115lbs i prefe",3,1,0,General,Tops,Knits +1008,46,Comfortable basic with dots,"I picked this up in the store during the retailer weekend sale. i used to have a similar long black stretchy skirt that i wore until it fell apart. things i really like about this skirt are that it's basic black, but has some interest in the small swiss dots in the top layer, and it's stretchy. the yoga-pant-waistband seems like it will be very comfy and also allows you to adjust the skirt length a little bit, depending on whether/how much you fold it down. it is lined, which is a big plus. i was",4,1,10,General Petite,Bottoms,Skirts +895,42,Quirky,"I was worried this sweater would be too tight, but it has a very flattering fit. i am a librarian and this sweater makes me feel like a quirky librarian. i love it!",5,1,0,General,Tops,Fine gauge +1030,48,Adorable trendy jean,I found these jeans on the sale rack at my local retailer. they were the very last pair and in my size. i couldn't believe my luck. i tried them on and was very impressed with the fit and feel of the jeans. thyre soft yet substantial. they retain thier shape. . love the worn in look to them. .. .. so adorable. nice slouchy skinny jean.. i stayed true to size,5,1,0,General,Bottoms,Jeans +1030,60,Love,"I love these jeans! they actually look better than the picture and you cannot beat the sale price. they are a boyfriend fit, but you can order your normal size. usually with boyfriends, i have to order one to two sizes down. with skinnies and more fitted jeans, i am a 29 and that's what i got. there is no sagging or stretching out after wearing them for a while. the wash is absolutely beautiful...very worn. hopefully the holes in the knees won't get even bigger. i have worn and washed them now q",5,1,1,General,Bottoms,Jeans +651,33,,"This is a very nice bra, upset though because this is the second time i have ordered something from retailer and the place that the product was made was incorrect on the website. bra was made in peru and website said usa. makes it very hard to be socially responsible on this website. not sure i will continue to shop retailer in the future because of this.",3,1,0,Initmates,Intimate,Intimates +1086,43,,"I bought this dress in a regular xs. i am 5'3"" and 108 pounds. i have a long torso so the regular would fit better than the petite. although the overall fit of the dress was good, the straps could have had about an inch taken out and the pockets gaped open! in the photo, the mode's arms are laying over where the pockets would be, which fall on the seam and when i tried this on, the dress fit beautifully but the pockets gape open on the sides and it looks like little wings from the front. the dre",3,1,16,General Petite,Dresses,Dresses +1074,31,"Beautiful in picture, stunning when you wear it!",I get nervous ordering clothes online but that was my only option for this dress. i love everything about this dress and i love the pockets.,5,1,7,General,Dresses,Dresses +895,34,Loooooove this sweater,"I ordered both colors, but ended up keeping the green in petite xs b/c the red in xs was just slightly too big. both colors are gorgeous, and i agree they have a retro 70's vibe. just a tad itchy, but not enough that it would make an undershirt absolutely necessary. i'll probably just wear it alone. i think the regular size would work for most petites b/c it's not ridiculously long. i would suggest sizing down in regular if you're petite though: for instance, the regular xs fit noticeably larger",5,1,3,General,Tops,Fine gauge +1008,40,Great classic skirt,"This skirt is great, a classic. the little dots on the skirt give it some character while remaining a simple black and flattering skirt. the material lays nicely and flat. it does not make me look like i have a stomach. the skirt fits tts. i am a little afraid that the waistband will stretch out over time so i might exchange it for one size smaller. overall, i love the skirt!",5,1,1,General Petite,Bottoms,Skirts +1086,29,Great concept but terrible execution,"As the previous reviewer mentioned, the pockets ruin this dress. pockets, usually such a good idea! but here they're misplaced (right on the hips) and made of the same thick ponte fabric as the dress, so they stand out far from the body and completely ruin the line of the dress... not flattering to have huge gaping hip pockets. this makes an otherwise good dress a total loss.",1,0,5,General Petite,Dresses,Dresses +991,32,Cheap,"I loved the fit, color and style, but the fabric seemed very thin and cheap. i was worried that it would tear easily. this is getting returned.",3,0,1,General,Bottoms,Skirts +312,31,,"Absolute best pair of yoga pants. they are the softest material- so comfy! i'm 5'3, 125lbs with a curvy figure and the m fit perfectly :)",5,1,2,Initmates,Intimate,Lounge +1008,54,Black midi,"Since i only wear midi skirts, love the length of this one. the regular medium looks as pictured on me. well made and the dot texture is sweet. bui will be returning as the skirt is literally very heavy and the gathered waist is unflattering on me.",4,1,5,General Petite,Bottoms,Skirts +1074,71,,"The fabric and color of this dress is beautiful. two problems with the dress that the picture does not show. 1. it's long. i'm 5'5"". this model must be over 6 feet tall as the length hit 5 inches above my ankle and that is not a flattering length. the other issue is that there is toile underneath making the skirt extra puffy. i'm 42 and the puffiness reminded me of prom. color and fabric great. but had to send back.",3,0,6,General,Dresses,Dresses +895,52,Soft and kinda retro,This reminds me of the 1970's. the fabric is soft and it looks just like the picture. i'm ordering it in line in a petite. my store doesn't carry petites. it's typical moth quality and fit. perfect.,5,1,1,General,Tops,Fine gauge +834,22,,"Very long shirt, i have to tuck it in. i love the lipstick design and its great quality material. its really soft and cotton breathable.",5,1,0,General Petite,Tops,Blouses +964,33,So great,"This is quite possibly the greatest jacket of all time. i ordered it with the ""layered luna dress"" in grey, and i am now giddy with excitement to wear the combo! very chic. i am confident this will be a staple in the years to come. for reference, i ordered my normal size xs (5'5, 115 lbs, muscular) and did not find it to be too tight in the arms (and i have fairly broad shoulders). i did not try it on with long sleeves, but i still think there would be adequate room.",5,1,1,General Petite,Jackets,Jackets +873,54,"Cute front pattern, flares too much in the back","I wanted to really love this because it's a bit more styled than a plain tank, but the front and back both poof out and i felt like i was wearing a maternity top. just didn't do my body any justice....loved the top and that part fit great, but the bottom part was too poofy and sadly not a good look at all on me.",4,1,3,General,Tops,Knits +828,44,A super soft shirt,"I was so excited to see this shirt in petite sizing. for reference, i am 5' 2"" / 105 lbs / 32a chest, with a thin but athletic build. i love the feel of this shirt. it is made from a tencil blend that gives it a nice weight and drape. because i don't have much of a chest, i do think it is a bit low-cut on me. i will probably wear a cami underneath next time. +it is a pretty, versatile dress up or down kind of piece, which is why i chose it. i gave it a four star rating only because it is ama s",4,1,3,General,Tops,Blouses +964,57,Absolutely love this jacket!,"This is an amazing jacket! it fits perfectly through the shoulders, with enough give to make it comfortable. i love the color and the feel of it, as well. it will be perfect for the spring and summer evenings.",5,1,0,General Petite,Jackets,Jackets +964,62,Amazing!,"Absolutely love this jacket - soft, nice amount of stretch, and the fit is beautiful. i'm 5'7"" with a long torso and was happy with the length on this too (motos are sometimes tricky for me). totally cute and versatile - worth full price!",5,1,0,General Petite,Jackets,Jackets +964,31,Don't try this on if you aren't prepared to buy it,"I love this jacket. it has great structure and lays nicely, while still have knit arms and a lining. don't try this on if you aren't prepared to buy it because it's amazing. color is more of an olive than a khaki to me as it appears in this picture. i am 5'5"", 135lbs, 34c, and the small fit perfectly. definitely consider this as an investment piece across many seasons.",5,1,1,General Petite,Jackets,Jackets +964,33,Cute but small,"I ordered this jacket thinking it would look good with so many of my current outfits. i'm usually between a small and medium in jackets, so taking the advise of the other reviewers, i went with a medium... while it fit in the arms just fine, the torso was tight! i couldnt even zip it up! i guess i should have gone with a large. after mulling it over, i decided to just return instead of exchanging. i felt the jacket had a much harder ""edge"" to it than my style is. i was very impressed with the qu",4,1,1,General Petite,Jackets,Jackets +964,24,"Good jacket, just not my look","I got this jacket thinking it was going to look different on me. while i ended up returning it, it fit me nicely and was good quality. it just wasn't the look i was going for.",4,1,2,General Petite,Jackets,Jackets +964,37,Great jacket,"Ordered this jacket in the holly color thinking it would be brown per the photo but when it arrived it was more olive green. it is a beautiful, well-made jacket but i already have two olive green jackets?don?t need a third. if they bring this jacket out in brown i will definitely order. i order the xs and it fit perfectly.",5,1,0,General Petite,Jackets,Jackets +834,46,Size 16 looks great,"I bought the navy/ivory patterned one in size 16. i loved the details of the faces so much that i ordered a second one in the same pattern on sale. now, i see they're still available on clearance so i have a 3rd (the ivory with pastel stripes). the length is perfect. it's comfortable, washes well, and has personality. i love these. i should have bought the other whimsical prints. i've had good use out of them this summer and will in the colder months too.",5,1,0,General Petite,Tops,Blouses +873,46,"White is a dull shade, not bright white","I ordered the xl in white. for fit, it's true to size. it matches the model's photos. it's a comfortable top. the shape is good with the pleating. but, the color is definitely off. it's as if the white fabric was pre-washed with navy. it's not the fresh, crisp white shown, at least for the one i received. + +the quality of the material is basic. the black version might be the better one overall. i'm going to exchange the white one i have to give that a try. overall, i don't think it's worth ful",2,0,11,General,Tops,Knits +964,41,Better than expected,Got this on a whim and boy i'm very pleased! it's flattering and the material is perfect for spring weather. size up as mentioned by other reviewers.,5,1,0,General Petite,Jackets,Jackets +1059,36,Fun!!!,"So i ordered both sizes in this, small and xs. i'm 128 lbs. and 5""4 and the xs fit me. at first i wasn't sure about this piece but after getting it on it starts to grow on you. the top part of the jumper fits really cute and the bottoms are very wide and can be long. i did get this at a great price so i'm going to keep it, don't know how many times i will end up wearing but thought it would be really cute to wear out on date night with my husband.",5,1,0,General Petite,Bottoms,Pants +952,58,"Vintage , cozy, unique adorable sweater",I agree with the others...this is the type sweater that hooked me on retailer ten years ago. i love my new sweater. i do recommend wearing a long sleeve tee underneath. the sleeves are itchy.,5,1,3,General,Tops,Sweaters +873,27,Cute top! run large,"This is a great swingy tank for summer and the smocking adds a nice design element to an otherwise plain white top. i typically wear a l, sometimes xl in tops from retailer, but the l in this is pretty loose - i am hoping it will shrink down quite a bit in the wash. otherwise i really love the top, and now that it's on sale, the price is definitely right! i wish the black one was still available!",4,1,0,General,Tops,Knits +873,38,Great top - wish it came in more colors,"This tank is well made and the top part is doubled (partially) so you can get away without wearing a bra (if you wish). i'm 5'1 and tried on the standard xs in store because xxs was not available. it was a little bit longer on me than on the model pictured. the pin-tucked area fit well, not too tight or loose and the bottom part was flowy which i don't mind. i expect this top to shrink in the wash a tad which would make it perfect for me. i opted for the white vs. the black because i love the pi",5,1,6,General,Tops,Knits +952,57,Seemed more like a jacket to me,"Nice sweater. i love the detail in the front. i didn't like that it was lined... it seemed too much like a jacket instead of a sweater to me. nice details on the sleeve but the sleeves are a bit long. i have found many retailer cardigans to be a bit on the small side so i sized up with this sweater. + +no need to do that. this sweater is true to size. + +i am usually a large and i felt the xl was too big. it fit like a jacket instead of a sweater. the sleeves are too long for my liking (i like 3/4 sle",4,1,0,General,Tops,Sweaters +247,28,"Very pretty, comfortable","This bra is obviously very pretty and feminine, but i was surprised that it's also really comfortable! it provides a pretty good amount of support, especially for an unlined bra, and feels pretty sturdy despite there not being much there. my 34b fit true to size.",5,1,2,Initmates,Intimate,Intimates +952,29,So cute i want to wear it everyday!,"I love this sweater! aside from it being absolutely adorable, the quality is great and the sizing is accurate. i have received so many compliments on it so far and honestly, i want to wear it everyday! the sweater is super soft and comfy... and of course, i totally recommend it! thanks retailer!!",5,1,2,General,Tops,Sweaters +964,70,This jacker has swag,"I love the design and color of this jacket. when i saw it pictured, i thought it was a vest. the sleeves and collar are made of a contrasting type of fabric; the sleeves are a knit but fit in very well with the design of the jacket. +i ordered a small because i had ordered a small in a vest made by the same manufacturer. +this jacket runs smaller, the sleeves were very tight , and overall it was just too small. had to return it.",5,1,2,General Petite,Jackets,Jackets +964,36,Another favorite jacket by marrakech/retailer,"This brand makes the best jackets. i got a vest from them last year and an olive moto jacket. both fit amazing. this one is no different. it fits great!! love that it's a great casual jacket with structure and drape. i can't say enough good things about this jacket. every time i wear it, i feel so pulled together. fun light gray color that you don't see too often in jackets. this is a jacket i see in my wardrobe for years to come. must have.",5,1,1,General Petite,Jackets,Jackets +964,33,Fit is weird,"I might be the only odd person out there who think this jacket is not perfect at all. a lot of other reviewers said that the jacket runs small. for me, it's not true at all, i had to go to xxp petite to find the fit acceptable, but it was simply too short (rather than 20"" as it states on the website, it's more like 18""), which is a thing i almost never experienced because i am a petite person! i don't even want to go regular size because it would've been too big. i saw some photos that others po",2,0,2,General Petite,Jackets,Jackets +952,48,,"I received this today and totally bummed it's not cold enough where i live to where this yet. this style of sweater is what initially hooked me into retailer. it looks like one you'd have up in your closet for years. good quality, feels nice, and i love the detail on the sleeve. kind of wish they'd put a little detail on the back, maybe a peek a boo detail of a small flower or another ladybug but overall i'm very pleased.",4,1,3,General,Tops,Sweaters +952,44,I agree with the whimsy,"Comments. the detail is lovely - especially the dragonflies on the sleeve. and the quality is there with the lining. trouble is this is thick fabric cut in a box shape. imo, you have to be very skinny to pull this off and not look like a tank. i looked at the model (after purchasing) and notice that she has it open and swept back a bit bc if it is not, it is terribly unflattering.",1,0,2,General,Tops,Sweaters +873,60,Delightful,"I bought this top in the black with the dobby 4"" shorts in grey and wore them as a set 2 of the 3 days last weekend. +mind you, i am tall, but the neckline is lovely, the smocking creates a nice close drape, and the length and the fullness in the bottom, perfectly offset the short-short concept. got lots of compliments with the 2. +i generally wear a 12 and ordered a medium which was fit nicely with enough room for a wash and dry going forward",5,1,7,General,Tops,Knits +828,29,Love!,"I absolutely love this blouse. it is so soft, easy to wear and can be worn with so many things. i'm 5'3, 135 pounds and got a small (regular). i could've gone for the petite but decided to do regular. love it!",5,1,2,General,Tops,Blouses +964,26,The everygirl basic,"First off this jacket is more of a greenish hue in person (which i personally love over the tan). i was not sure how the sleeves would be after a few wears since they are not canvas, but they are holding up and not stretching out. there is fleece inside the sleeves for extra warmth since it is not the best layering jacket. overall, if you're considering this jacket, take the plunge like i did. order your usual size for perfect fit or size up if you're hoping to layer.",5,1,1,General Petite,Jackets,Jackets +964,28,Very cute until washed!,"I loved this jacket it is very cute until i washed it! i followed the care instructions and it still does not wash well. the arms shrank about half an inch making them a little short, i have been rolling them up",5,1,2,General Petite,Jackets,Jackets +873,54,Fun,"Hi, i bought this top for my daughter. she absolutely loves it. the fabric is very substantial. it flows really nice. if i was younger i would buy one for myself. lol",5,1,3,General,Tops,Knits +1059,60,Runs large,Like the color and romper style. this runs extremely large. i am normally a petite small and it was too large. with the wide- leg style and overall length you may need to alter this piece.,3,0,0,General Petite,Bottoms,Pants +952,40,Wicked awesome,"Took a chance without trying it on and ordered online...i love everything about this sweater!!! fit is on the spot, details are pretty and wonderful! try it, you won't be disappointed.",5,1,1,General,Tops,Sweaters +964,35,Flattering jacket: size up,"This is my third marrakech jacket in as many months. i love it! i was hesitant to order it because of the beige color. luckily it is more of a green beige. it is a very flattering jacket and yes, you do want to size up. this jacket is so comfortable i usually leave it on when i get home because i don't want to take it off. i am 5'5"", 34 b and the medium fits great!",5,1,1,General Petite,Jackets,Jackets +873,32,Really cute peplum top!,I ordered this in black in a medium. i've ordered several deletta tops before and the mediums fit great but in this top i think i could have done a small. i don't want to hassle with returning it tho and it should work fine.,4,1,3,General,Tops,Knits +952,44,Grandma sleeves,Super cute sweater and i was totally excited and then i looked at the sleeves (which are not shown in the pictures). what you can not see are the dragonfly (sequins and sparkly beads suitable for women 4 and 84). ugh. too bad - going right back.,3,0,0,General,Tops,Sweaters +828,39,Must have item for summer,"Hi there, +if you are looking for a shirt you can wear all summer long; this is it! soft, a little darker than shown in the picture (which i like better), and super comfortable. it also keeps me cool in these hot june temperatures. a great blouse to throw on with shorts or white jeans, and it can easily be dressed up for casual fridays at work. it is definitely oversized, but no more so than all clothes these days. i stuck with a size small and usually wear a size 4/6 in tops. so, if you are ti",5,1,3,General,Tops,Blouses +1059,57,,This looks just as pictured. it's comfortable but dressy. i love it!,5,1,0,General Petite,Bottoms,Pants +964,52,Functional and fab...in one piece,"I am really impressed with the workmanship of this jacket as well as the ""fit."" it really does fit me well and has a ""cool"" look. the quality is really worth the price. thank you retailer!!",5,1,0,General Petite,Jackets,Jackets +964,45,Really versatile little jacket,"I saw this in store, but they didn't have my size and i balked at the price. however, i kept thinking about it and once i received it from online i now think it's well worth it. the quality is very nice and it fits tts. i like that the arm materials is stretchy. i've worn this with jeans, but will also wear it with a skirt to the office. it's got enough weight to function as a light spring jacket. the color matches the photo and is a nice neutral to go with many things.",5,1,1,General Petite,Jackets,Jackets +873,31,"Pretty top, not for me","Fabric quality is good, pattern is pretty in person. very comfortable! i'm not sure if it's because i have an ample chest, but unfortunately it looked like a maternity shirt on me. it looks good from the front, but from other angles it looked bulky. i tried in both white and black, and i think the white looks better?the smocked top is more visible.",4,1,0,General,Tops,Knits +952,36,Nice details,"This is a bit more jacket-ish than i expected. the material is kind of scratchy, and it was heavier than expected. it has a lining in it, like a jacket lining. i wasn't a fan of the clasps on the front. i guess they are meant to be invisible, but they are literally little metal clasps. it is more cropped in the length than i expected, and i don't have a particularly long torso. i like the embroidery. the pattern is lovely. the fit is about spot on. i am about a 12/14 with a 38c bust and the l fi",3,1,0,General,Tops,Sweaters +952,56,Shapeless,"This cardigan is made of nice materials and is lined, but it is boxy and totally un-fitted. i swim, which means i have large shoulders, and this thing makes me look like a boxing champion, well a fat boxing champion as it has not waste-line. the sleeves are too long, and as usual, retailer saves on money by using little cheap hooks instead of buttons as a closing system, so if you choose to close this cardigan, it just looks awful.",2,0,1,General,Tops,Sweaters +952,62,Timeless and unique,"As stated by others, this is the type of unique retailer product that i love and that makes me return to the store again and again. i would have given it 5 stars if the sleeves were lined and the body length was longer. the sleeves are indeed long, although this adds to the coziness. but i would have loved the body a bit longer like other cardigans have been. i'm looking forward to wearing it as soon as we get a bit more cool here. congratulations, retailer, for a winner!",4,1,3,General,Tops,Sweaters +873,33,Cute peplum tank without being frumpy,"I bought this tank on a whim without trying it on in the store, in black. the detail on the front is cute and the peplum is really cute without being frumpy at all. i am usually a small, ocassionally a medium in retailer shirts and i bought this in small. it fits but i feel like i could have gone up to a medium, it's just a little tight across the chest, but i do have more broad shoulders than most so maybe it's just because of that. the fabric is nice and stretchy, so i might be able to get away",5,1,14,General,Tops,Knits +1083,72,Simple tunic with lots of transition possibilities,"I love the simplicity and modernity of this tunic; however, the pockets ruin it, if that's possible. they make the dress bulky around the hips. i usually wear an 8 or medium and i ordered this dress in a medium. i think this brand runs a little small. the bulky pocket issue may be solved with a larger size. the weight of the fabric is a little heavy which prevents year-round wear. i love the subtle texture. one odd thing, the tag is attached to the stand-up collar. i had my hair up when i tried",3,1,11,General Petite,Dresses,Dresses +1078,20,Dress for the younger girls,I tried this dress in my usual size 4. the slip underneath was a big snug but the dress was fine. i sort of looked like a little girl in this dress. it is very pretty but more for the younger girls~not for the over 50 group.,4,1,3,General,Dresses,Dresses +1078,51,Absolutely beautiful,"This dress is really lovely in person. the fit was perfect and the length not too short. for reference, i'm very busty at 38f and the dress actually fit! (i'm an xl usually, and the fit was tts) the only thing i'm not crazy about is the slip, it's more of a flesh toned color. i'll probably swap it out for a white one please make more like these, retailer!",5,1,8,General,Dresses,Dresses +1078,53,Way too much material,"First let me say i love the fabric and the pattern of the blue dress. but the fit is extremely loose. they could take out an entire 12 inches of material and it would still be a swing dress. the photo of the back of the model, where the blue dress goes in to her waist is not at all accurate. if it was, i would love this dress. the photo of the model wearing the other color is how the dress actually hangs - straight down from the underarms and then bigger as it goes toward the hemline. i am 5'7""",2,0,9,General,Dresses,Dresses +774,44,A little short but...,"I'm 5'4"" and weight 130 and i usually wear a small in dresses from retailer. although this fits everywhere, it's a tad shorter than i expected based on the fact i figured the model was at least 5/7"" and this looks to be mid-thigh.. it's mid-thigh on me so i'll be wearing tights and boots- can't wear without tights...imho. otherwise, so comfortable and cute...",4,1,1,Initmates,Intimate,Lounge +1078,48,Love,This is such a beautiful dress. fell in love with it at first sight. it is very pretty. can be dressed up or down .. comes with an attached slip that is a tad longer than the dress and it shows on the bottom.. darling dress that will get lots of use this summer.,5,1,0,General,Dresses,Dresses +774,44,Comfy casual dress,"I bought this to wear to work, but i pictured it as being fancier than it is. the fabric is heavy, stiff sweatshirt material. i bought a small but probably would have been better off with an xs. despite this, it's long enough to be a dress on me, and it is comfortable and cute. it will be nice in the winter and could probably be dressed up some.",4,1,1,Initmates,Intimate,Lounge +1078,53,Super,As in super comfortable and a joy to wear. i saw it online and then went to the store to try it on. the moment i put it on i knew it was for me. i missed out on getting it in the other color. i hope you get more in other colors!,5,1,1,General,Dresses,Dresses +260,49,Cute vest x2,"Fell in love at first site, cozy and wonderful design that creates a slim line even with full figure.",5,1,5,Initmates,Intimate,Lounge +496,37,,Love the quality and fit! it runs small so i got one size bigger.,5,1,0,General,Bottoms,Shorts +243,26,Favorite pjs,"I absolutely love these sleepwear pants. they are lightweight, soft, good fit and quality and the design is really pretty!! a steal at this price.",5,1,0,Initmates,Intimate,Sleep +774,35,Maybe for some...,"I wanted to love this dress--a throw-on-and-go outfit that was casual enough with sneakers for errands but stylish enough with dressy sandals for a brunch date--but didn't for a couple of reasons. + +first, it is way too short for me, especially on the sides because of the war the ruffled bottom lay, to wear as a dress. it was more tunic length- but i wouldn't want to wear pants underneath because it would take away from the overall aesthetic. also, the ruffled sleeves give me unwanted volume th",3,0,2,Initmates,Intimate,Lounge +774,30,My new favorite dress,"Cute and super comfortable...so it's the best of both worlds. it fits true to size, but i bought a size up to add a little extra length. love the soft blue color and ruffles.",5,1,2,Initmates,Intimate,Lounge +774,26,Ruffle dress,"This dress is great! it's the perfect transition piece from summer to fall. it is very comfortable. the material and fit are similar to an oversized sweatshirt. overall, i love it.",5,1,1,Initmates,Intimate,Lounge +830,43,"Adorable, crisp top","I love this blouse. it's a tad more billowy than i would have thought but looks fine. to wear to work i need to wear a camisole underneath as it's a bit sheer. and the button at the back of the neck broke immediately, but is still functional. the decorative part fell off. they give you a replacement button so if i decide it matters i'll sew that one on. + +i absolutely love the blue stitching on this and how crisp it is. i didn't realize it was dry clean only but that doesn't bother me.",5,1,1,General,Tops,Blouses +828,53,Nice design but too sheer,Loved the idea of this but content felt too thin and sheer.,3,0,0,General,Tops,Blouses +1078,33,Better than expected,"After seeing an influx of this dress in my instagram feed i decided to go ahead and purchase it last weekend. i'm usually leery with the length of swing dresses, for instance the endora swing dress (paper crown) is a touch too short for my taste in petite sizing. either way, i decided to go ahead and purchase this dress in petite considering no previous reviews mentioned the length of the dress to be an issue. + +typically, i take a size 0 or xs in retailer clothing. i ordered a size 0 petite and",5,1,5,General,Dresses,Dresses +1096,22,Wish i could keep it!,"So this dress is absolutely gorgeous! my problem is i am 5'10"" and it is very short wasted. between the shoulders and waist and even the arm holes it just plain doesn't work. i think if you are taller this dress just won't work. i have purchased other items from this name brand and have had the same problem.",4,1,1,General,Dresses,Dresses +243,47,"Beautiful, lightweight lounge pants","These pants are just as beautiful in person as on the website. the fabric is luxuriously soft. two things to note: they are very lightweight jersey material, and they run a bit small. if you're in between sizes, you might want to size up. it's possible they'll stretch while wearing. i also wish they had pockets, but they just have a one small back pocket that's not sewn down and seems made for perhaps a tissue but nothing else. all of these ""flaws"" are made up for by the fact that these are abso",4,1,0,Initmates,Intimate,Sleep +943,62,Gorgeous,"The price was worth the splurge, free shipping and a special discount helped. the minute i laid my eyes on this sweater i was hooked. light, airy weight and that handmade texture make the overall design something special. this is the kind of sweater that has enduring style. the big kangaroo pockets scared me a little, which i have determined to be not a distraction after trying it on.",5,1,3,General,Tops,Sweaters +1078,53,Such a pretty vintage style dress,"I just bought this pretty dress at my local retailer after finally deciding to go in the store to try it on. once i saw it on display in the window in the lilac, i already knew i was going to try that one on and take it home though i really love both colors and prints. the dress fit me tts (sz 6, 34d-27-35) and looks absolutely adorable on! it's super soft, light weight but not so much that you don't feel it's worth the price and the design reminds me of the retailer i love. it has a wonderful vinta",5,1,8,General,Dresses,Dresses +1174,47,Chic and unique,"This is a gorgeous bathing suit. the colours are more brilliant than the ones in the picture, and much more beautiful. comfortable, chic, and unique",5,1,0,Initmates,Intimate,Swim +774,46,,"It looks a little more dressy in the picture but it's cotton, soft and very comfortable.",4,1,0,Initmates,Intimate,Lounge +1078,31,Pretty but not for tall ladies,Loved the style and color/design but this dress was simply too short in the front. the slip was also slightly tight over hips. i wish this was longer!,3,1,1,General,Dresses,Dresses +1078,62,Beautiful spring dress!,"Tried this is my normal 4, and it fits exactly as shown. i can see how this could give issues to someone with any curves because the lining is definitely more fitted than the loose overlay, especially in the bust and hips. i found the quality to be very nice, length was slightly above the knee on my 5'7"" frame so it feels work-appropriate. my only wish is that the colors/pattern could transition better to multiple seasons. it definitely feels very springy and not much else.",5,1,0,General,Dresses,Dresses +243,41,Perfect pj's!,"I cannot say enough about these pajama pants. they're beautiful and crazy comfortable. it's a nice change from black or grey. i also love that there are no pockets because i hate how they jut out on me. i wanted a petite l because i am short, but the regular large is fine. i just wear them higher up on my hips. i normally wait for sales on sleepwear, but i couldn't resist on these. they're well worth the investment!",5,1,0,Initmates,Intimate,Sleep +260,56,,,5,1,0,Initmates,Intimate,Lounge +260,51,,"I bought this in the store because it was irresistible. generally i only buy sale merchandise but this item is unlikely to ever hit the sale racks. the colors are delicious - they go with everything in the grey-rose-blue pallet. the fabric is superb, heavy and glossy, good for cold weather. the size is generous in the upper body (not so much in the hips). i usually take a small or medium. there were only smalls left in the store so i couldn't try an xs. the reversible inside fabric is a complete",5,1,4,Initmates,Intimate,Lounge +1078,35,Flowly,This dress is really nice and lightweight. the slip is snug so the outer part floats nicely. but..it adds a bit too much volume if you have a lot of curves. it disguises in a way but also is a bit less flattering. i really wanted to like it because it's so breezy but a tad matronly on me.,2,1,1,General,Dresses,Dresses +1078,20,,"Definitely shorter than expected, but a super light, airy, and comfy dress for summer nights. a must for summer dinner parties!!!",5,1,0,General,Dresses,Dresses +260,39,Buy this before it sells out!,"I've gotten so many compliments on this super adorable vest! it's soft & comfortable and the fit is very flattering. i have to give it 4 stars instead of 5 because for $130 i'd expect there to be no loose threads all over the place, but it's easy to forget about those when you realize how dang cute it is!",4,1,0,Initmates,Intimate,Lounge +1174,36,Comfortable and unique!,"I bought this after eyeing it for months, when it went on sale! the colors are bright and so pretty! the blue very warm, flattering in intensity. this pattern is very unique and the suit is well made. there is some stretch, making it not a chore to pull on. the bust padding is minimal (like a tshirt bra) best for a & small b cups. no underwire no shaping in cups. the halter has enough room to be comfortable and secure. i felt this fit more like a 0 on the bottom (hips) and a 2 for top portion,",5,1,1,Initmates,Intimate,Swim +279,48,Don't bend over,Totally see through.,1,0,1,General Petite,Intimate,Lounge +1096,39,"Beautiful green, great fit, scratchy","I love this dress (from the moment i saw it online), and now that it is on sale, i ordered it (green). i do wish the flesh color was a little more pink, love the color in person, but not as flattering on my pale skin (i ordered a different similar dress in teal and purple, that oclor was better). + +so, fit: like a glove: i am dd, in waist, lbs short = 0p. length was sexy, and overall great flattering fit. similarly to other dress, i wanted the length of this one, however. nice slightly above th",4,1,1,General,Dresses,Dresses +279,39,Nice and neutral enough,"I purchased these on sale. one thing to say, i had to return the first pai r (xs) as there was a missing section of stiching on the sema, creating a whole you can't really fix neatly. so i ordered a new pari. i usually like petite, but regular size was fine, they jsut end up being to the ankle (longer), not bunchy. i also ordered xxs peite to compare, but that was smaller on waist, almost not comfortable), and the laced-up part looked a little weird/overstretched. i have not used htem to work ou",4,1,4,General Petite,Intimate,Lounge +1078,63,"Soft, feminine dress, yes!","Lovely, flowing dress w a boho vibe. pretty design and fabric. agree w comments re stiff slip fabric but will keep it anyway. should be a great summer dress",4,1,0,General,Dresses,Dresses +260,29,Beautiful!,"This vest was a must-have the minute i saw it! i usually stick to the sale section, but this was a worthy exception. i love the reversible option! i bought the matching leggings as well, and have worn them with the smaller floral motif...so many compliments! i teach barre, so i figured i would wear this to and from the studio, but i find myself reaching for it to go over all my regular clothes too! the only draw back is the zipper. i'm sure its because it is reversible, however, the zipper hasn'",5,1,2,Initmates,Intimate,Lounge +243,28,"Luxuriously soft , beautiful lounge pants","So nice to switch it up from all my black and gray sweats. these are luxuriously soft, and so so comfortable. they are light weight and beautiful. i am 5'5 , 125 and i am very happy with the size xs i purchased . was deciding between xs and s and i am happy i went with the xs. worth every penny. you won't regret. also , finally - perfect length .",5,1,1,Initmates,Intimate,Sleep +920,29,Great spring sweater,This sweater is classy and comfortable. it has an underlay which makes it truly unique.,4,1,0,General,Tops,Fine gauge +260,40,Form and function,Beautiful warm vest. originally bought small but had to exchange for extra small. i love that it reversible and has a hood.,5,1,0,Initmates,Intimate,Lounge +1083,48,Fashion meets function,"Seeking the perfect ""go-to"" dress? this one will work for day or night, and it's an ideal match for transition seasons. the best part? the cut. swing dresses and shifts can ""tent"" my slightly ""top-heavy"" frame. this dress brags a side-zipper and slight tapering through waist to create an a-line. the small petite fits tts for me at 5'4 size 2 to 4. the fabric is a high-quality, textured fabric - wrinkle free, and a great pick for travel. best investment i've made this spring.",5,1,0,General,Dresses,Dresses +260,41,Super cute,Saw this in store and knew i gotta have it! beautiful colors and slimming effect.,5,1,0,Initmates,Intimate,Lounge +279,62,,,5,1,0,General Petite,Intimate,Lounge +1096,26,Fragile esp. around zipper,"I loved this dress especially because each flower appliquã© was so beautiful. however, each attached to one another by single threads. given that i wear lots of rings, i could already tell that i might snag these beautiful flowers. additionally, the appliquã©s are sewn so close to the back zipper that some of the flowers were already getting damaged from the dress being tried on. overall, if you are very careful, this is an amazing dress, but i did return it because of its delicate nature.",3,0,2,General,Dresses,Dresses +279,55,Nice print and flattering,"These pants are great. i am 5'6"" and 133lbs. i normally wear medium for athletic bottoms. medium fits well except knee pit area. maybe because they are not very stretching fabric. however, they are still flattering. the material was thick enough and their print hides underwear lines.",5,1,2,General Petite,Intimate,Lounge +1078,47,Wanted a pink dress,"Pale pink is a hard color to find these days. very happy with this purchase, +this dress is sweet, and a perfect transition piece from summer to fall in socal. +i have a number of maeve dresses and they are all oversized, so the 2 fit as expected. i'm normally a 4 in every other brand. +it can easily be worn with flats or wedges, or i imagine booties as the weather cools.",4,1,0,General Petite,Dresses,Dresses +1078,53,Beautiful dress,I saw this dress in the lilac at the store and loved it immediately! the picture on the website does not do it justice.,5,1,65,General Petite,Dresses,Dresses +1078,39,Love love love,"Beautiful and very versatile dress. extremely forgiving for post baby bodies, while stylish and classy.",5,1,0,General Petite,Dresses,Dresses +279,35,Super cute and comfy,These super cute leggings are comfortable and functional with a fun design!,5,1,5,General Petite,Intimate,Lounge +828,38,,"The button detail on the sides is a unique design detail. i had fun playing with different looks that came with unbuttoning and buttoning the sides. but i decided against purchasing this top, it appeared shapeless on me. i have a curvier/athletic figure, and a straight up and down cut is not flattering on my figure.",3,1,0,General,Tops,Blouses +774,24,,"Cute, but didnt realize it was sweatshirt material. due to that, returning.",3,1,0,Initmates,Intimate,Lounge +1096,35,Wanted to love this,I'm 4'10 and 105lbs..32c and hippy...i ordered the 00p and 0p.. bc i'm curvy the bigger size was better but the fit was just okay..couldn't justify the price. it's a beautiful dress in the green color. the zipper is difficult to get down and worries me that it would break.. but if it fit i would've overlooked it.. the major reason for returning is the slit was so high my butt cheeks were exposed if you lifted it... i would've had to have it sewn shut.,3,0,3,General,Dresses,Dresses +1078,43,,"After seeing this dress online i wanted to try it on and was not disappointed when i did. even though the coral color dress of the same style was pretty it wasn't the right color for me. i absolutely love the blue and white dress! i usually wear a size 8 but found the 6 was more flattering. i'm 5'2"" and the length was perfect - above the knee but not too high. love it!",5,1,4,General Petite,Dresses,Dresses +774,39,??this,"Adorable & comfortable. i'm 5'3"" and 115 lbs and ordered an xs. it hits at my knees & is loose fitting, but not tent like.",5,1,9,Initmates,Intimate,Lounge +774,19,Online way different from in person,This dress is very thick cotton material. like a sweatshirt. i was hoping to wear this to a wedding but it is a tunic at best. the bell part of the sleeves also stick out awkwardly because of the fabric.,1,0,2,Initmates,Intimate,Lounge +828,61,,I couldn't resist this basic white button down with the cute side buttons that added some interest. i bought my usual size large and it fit perfectly. the soft substantial fabric from cloth and stone never disappoints. i love the longer cut since i'm 5-10 and love a long shirt to hide the belly pudge. the blue is darker than the online picture shows and i'll probably be going back for that but at almost $100 i'm hoping it'll go on sale.,5,1,3,General,Tops,Blouses +1078,47,"Light and airy, i feel like a fairy","I love this dress. it is the kind of dress that i dream about. the feel is young and carefree. typically i love swing dresses on the tall thin models pictured but when i try them on i simply look frumpy. this dress is an exception. i have the lilac version and the fabric color and pattern enhance the boho pixie fairy aesthetic. for reference i am 5'4"" 122 lbs...average build a little busty 34dd. only the 6 was in stock so that is the size i ordered even though i wanted to try the 4. the 6 has en",5,1,2,General Petite,Dresses,Dresses +774,45,"Comfortable cute, very casual dress","This is made of soft, sweatshirt material. it is one of those dresses that you can put on with sandals or birkinstocks and go out to breakfast or throw it on to go to the beach or wear after yoga. this is not a ""dressy"" dress. that said, i love it. i used to have a sweatshirt dress from another brand that i wore out and have been searching for the replacement. this color is a pale celadon, a tad bit more vibrant than the photo, which makes it more flattering than you may think. i wear a 4-6 and",4,1,0,Initmates,Intimate,Lounge +828,39,Versatile shirt,"Bought this in the white. i found it to run narrow in the shoulders and tight in the biceps. i typically vacillate between a m and l, and because of the two aforementioned factors i went with the large, which means overall the shirt is very billowy on me in the chest area and hangs very long. +---------- +the fabric is soft, and the weight of this shirt is season-less; always a plus. it is not sheer by any means, but if you have a tattoo (like i do) you will be able to see it. +--------- +quality is",3,1,30,General,Tops,Blouses +1078,57,Love it,"This dress is adorable! it fits loose and is not at all fitted, with the exception of the under cami lining. the picture showing front and back is being pulled to fit. :/ it fits like the model wearing the purple. my local store was out of my normal size so i sized up which really made no difference at all. the biggest difference would be the under cami. the dress is flowy and airy. one of the best casual dresses retailer has had in a long time. obviously, the blue is sold out till may. this can b",5,1,8,General Petite,Dresses,Dresses +828,60,Nice staple with a twist,"This is a really nice white button-up top. per usual, the cloth ant stone material is awesome! ... and a machine washable blouse! the side buttons are a really cute feature as well. i found this top fit true to size, and i took my usual xs.",5,1,3,General,Tops,Blouses +1078,27,Not for tall hourglass body types,"I was bummed about this dress! i saw it online and loved both colors. i tried it on in the store, and it did not work for me. i am 5'8"" tall with an hourglass figure, and it was too shot and too loose. it looked like a babydoll nightgown. i wanted to love it, but i think this one only works on smaller frames. onto the next...",4,0,0,General Petite,Dresses,Dresses +774,56,Modern,"Comfortable, decent quality and very casual",5,1,1,Initmates,Intimate,Lounge +774,47,Cute throw on dress,"I am not going to keep this dress, just because i am a little too old and need a little more structure for my figure. but it is a very cute, comfy throw-on dress. you could wear tennis, bootles, etc. +especially great for a pretty slender person,..then the loose flowy style is still attractive",4,1,0,Initmates,Intimate,Lounge +828,46,Doesn't breath,"The stone color was nice, but the material is heavy and doesn't breath. if you are partial to more natural fabrics i would go with a different item. upside would be that i imagine this shirt will last.",2,0,0,General,Tops,Blouses +1078,34,Lilac and coral,"I am quite happy with this dress! i was wondering what the colors would look like in person, and i'm happy to report that the skirt is a nice mellow orange-coral. beautiful detail in the patterns used here, and i always like a dress that has great color-play close up and far away. for reference, i am a size 16, full figured, with a 40 c bust, and the size 16 was just right for me. sometimes with maeve dresses you can size down, but there is no stretch to the dress, or the slip, so that is someth",5,1,53,General Petite,Dresses,Dresses +1078,65,,"Sometimes i feel like i have to try on the dresses that sell out super fast, just out of curiosity. and sometimes, they're surprise hits, like this one. i tried on the purple/black/blue option, and i had to have it. it is boxy through the torso, but the length keeps it from being too cutesy--it's pretty short. i'm just 5'5"", and i'm not sure this is work appropriate without tights. i may have to try, though, as otherwise it's a great workable dress for summer--not too tight or revealing in the b",5,1,3,General Petite,Dresses,Dresses +1078,50,Favorite dress,"I absolutely love this dress!! i bought it in the blue , the brown and the pink colors.. it is incredibly flattering. the one interesting thing that i found is that the pink dress seemed to run smaller than the other colors. so happy with the style and i have gotten so many compliments when i where them :)",5,1,0,General Petite,Dresses,Dresses +828,39,Not for me,I am short and curvy and this shirt swallowed me. sleeves were especially long.,2,0,0,General,Tops,Blouses +828,28,Great shirts,"I bought one of each color. love them all! they fit well and are very soft. washing and drying them are not a big issue either. i didn't notice any shrinking. i wear xs and s depending on the fabric and cut. for this, i bought a small. (i'm 34a, ~125 lbs, 5'8"".) it's loose and flowy without being overly baggy. the tail of the shirt reaches just below my butt. if you're going to wear this with a pencil skirt or low rise jeans, the buttons on the side might get in the way a little. but that doesn'",5,1,0,General,Tops,Blouses +1078,42,Absolutely gorgeous,"It is a beautiful dress, light and delicate. i got my usual xsmall ( 5'4"" 34c, 134 lbs). it comes with a slip and the slip is a bit fitted. it worked for me, but i can see this being an issue. it can easily be resolved with any other ivory or nude slip. it is worth it. very cute dress.",5,1,2,General Petite,Dresses,Dresses +1096,57,"Beautiful dress, flawed design","I bought this dress for a fall wedding and upon receiving it was very impressed with the quality of lace and the color. however upon trying it on the seam up the back was slit so high that my undies were visible. i would like to assume that the dress that i received was defective... it didn't really make sense given that the length of the dress was appropriate, i did not have time for a return so i had the seam completed. after that alteration (on my own dime) i was very happy with the dress and",3,1,5,General,Dresses,Dresses +260,47,So pretty!,"I saw this online and thought it was so pretty--so i ordered a large even though i'm usually a medium in retailer shirts. i thought i might need the extra room to layer. i was in the store returning something and they had a medium and a large so i tried both and the large was way too big in my shoulders and chest even with a sweater! the medium was a little tight in my hips-but still +fit. overall the medium was more flattering on me. so i recommend ordering your regular size. it is such a pretty v",5,1,2,Initmates,Intimate,Lounge +260,26,The perfect vest,I've wanted a vest for the past few years and could never find the perfect one until now. the material is perfect and the colors are amazing. it's definitely a vest that you can wear all year. i would 100% recommend this.,5,1,0,Initmates,Intimate,Lounge +279,37,Great pants - but damaged,"Love these pants -- the colors, style, fit. however, this is the second pair of retailer active pants i've ordered that i've discovered had a hole in them. these are not cheap pants, so the poor quality is inexcusable.",4,1,3,General Petite,Intimate,Lounge +828,57,Photo does not do this justice,"1. i agree with the other reviewer. the photos do not do this shirt justice. it's very cute and fits well. the photos on the models are terrible. + +2. i'm 5'5"" tall, 145 lbs, and 38 (36d) - 32-40 and the size medium fit me perfectly. i'm often in between a m and l for cloth and stone, but the medium fit well, which means it runs a little big. + +3. i wanted a plain white shirt with a little interest, and the side buttons add that. it also means this is not a tuck in shirt, but more of a tunic.",4,1,3,General,Tops,Blouses +1078,35,Pretty dress,"Pretty, easy-to-wear dress. loose fitting. i am typically a size 4, size 4 fit, but i might have been able to go to a size 2 if i wanted it to be more fitted at the chest/arms.",4,1,0,General Petite,Dresses,Dresses +943,37,Amazing sweater,"Beautifully made, well constructed and kangaroo pouch gives it character. turtleneck is very low, sweater is very appealing. great buy, especially when on sale.",5,1,1,General,Tops,Sweaters +1096,36,Nice dress but could be better,"I purchased this dress in the red color. overall quality is excellent. the zipper was a little hard to work because the lace kept getting caught in it. the neckline was also too high. i'm 5'1"" and 107lbs. the dress fit perfectly. there is was too much nude fabric showing through the dress. i feel that this dress isn't versatile. to me this is somethings that would be great for weddings or bridal/baby showers. due to the lack of versatility and the fact that i wasn't in love with it, i returned",4,1,0,General,Dresses,Dresses +774,62,Cute and comfy but too young for me,"I grabbed this on a lark because it look like a fun little ""throw on"" dress. it's a very lightweight sweatshirt material and fun and a fun flouncy design. run a bit large and regular sizing was still above my knees. if i were 30 years younger, i may have bought it just for lounging, but the over sized ruffly sleeves made me feel just a bit too silly and the color is pretty washed out. not for me, but cute for teens and early 20's.",4,1,3,Initmates,Intimate,Lounge +867,28,Boxy,This shirt is unflattering and boxy. it does not look cute at all on me. i am returning.,2,0,0,General,Tops,Knits +774,78,"Casual,, chic and comfortable",This dress is sweatshirt material and a lovely soft grey aqua color. i purchased a medium and it is an inch above my knee...ii am so tired of seeing woman my age and much younger in jeans...i am wearing this to a cooking class and it is perfect because it is so comfortable.....it is a great replacement for jeans!!!!!!!,4,1,2,Initmates,Intimate,Lounge +1096,52,Fabulous dress!,"The fit on this dress is super flattering! i am not normally able to wear a sheath but i felt great in this one. i am definitely a pear shape, bigger on the bottom than the top. one of the things i really love about this dress is that the size that fits me through the hips fits me on top. this is not often the case. i am not sure how this would work on someone with a large bust or an apple body type but i felt great in it. i also love the colors. i bought the green and blue. i have worn it once",5,1,2,General,Dresses,Dresses +1096,21,,I really was excited to get this dress. the design is great. very nice quality. it does seem to run small on me in the booty/belly area. that or it is just tighter than my liking. overall it is a nice dress. i plan to get a mint cardigan to top it off and a thin cognac leather belt.,4,1,1,General,Dresses,Dresses +1083,31,Cute but collar,"Dress cut was great, but the collar was so oblong that it looked space-age.",3,0,2,General,Dresses,Dresses +1078,53,Pretty,"To be honest, i bought this dress as a ride-along so i would meet a free shipping minimum in order to purchase the dress i really wanted. i wound up keeping this dress and returning the one i originally wanted. it's pretty, flowy, feminine. i even like the uneven-ish hemline, which normally doesn't appeal to me. it runs a bit large--you might want to size down. i got it in the black and tan...even though it's got short sleeves and is sort of summery, it will make a good transition piece to fall",4,1,0,General Petite,Dresses,Dresses +774,30,Cute and comfortable,"This is such a good dress to just throw on and go! the inside is lined with fleece so it's basically a giant sweatshirt. it does run large. i normally wear a medium and i bought the small but could have bought the xs if the difference in length between the two hadn't been about a foot. (i am tall). the color is actually a light mint, not the grayish blue it appears in the picture. overall a great purchase though.",5,1,9,Initmates,Intimate,Lounge +1078,29,"Beautiful and soft, comfortable","I was so excited to receive this dress! it even has embroidered loops on the hem of the slip underneath which was such a cute detail. it's very pretty on. that being said, i ordered a size 4 which fit me perfectly (150 lbs) but ladies, i do not mean this in any way but in my personal opinion, my arms are out of shape. not toned and flabby. the sleeves on this dress will not do you any justice. it will make your arms look worse because of the shape of the sleeve. so keep that in consideration if",5,1,2,General Petite,Dresses,Dresses +1078,23,Perfectly feminine,"This dress makes you feel like a little kid. it certainly helps that it is an excellent twirling dress, for sure. i wish it had a little more definition to the waist--it just barely works for larger chested women, definitely on the line from being a little too baby doll shapeless. the colors are so beautiful and the fabric so light that it's hard to pass this one up. it's just too beautiful. i recommend it, but it's probably not for everyone.",5,1,3,General Petite,Dresses,Dresses +260,37,So many compliments,"...on this great vest. i wear it all the time. it's soft, pretty, warm and durable. love!",5,1,2,Initmates,Intimate,Lounge +872,53,"Boxy, shapeless but weighty.",This material is a nice quality but the shirt is boxy and shapeless. it was not flattering at all on my shape. i don't think it would look nice on anyone with an hourglass shape or fuller chest.,2,0,0,General Petite,Tops,Knits +1096,60,Beautiful,"This is a gorgeous lace dress, well made, true to size. a little tight in the neck but not unbearable. lovely for any occasion. i got this to wear to a fancy wedding, it will be my go to dress for fancy occasions.",5,1,1,General,Dresses,Dresses +1083,34,Too short to be functional,"Like others, i was drawn to the collar, fabric and overall look to it.... +________ +pros: +- thicker fabric so it hides lumps and bumps well. +- collar is so classy, but i am drawn to anything with a collar. +- pockets are a nice touch. +_______ +cons: +- thicker fabric and polyester = got hot rather quickly in it. +- runs a tad small if you have hips. there was only a medium at the store to try on and it fit everywhere but the hips; it just didn't flare out much for me being hourglass. a large",3,1,1,General,Dresses,Dresses +1096,38,Looks better on,"I wasn't sure about the dress on the rack. lace can either look amazing or make you look like a doily. it was on sale so i figured why not? let's try it on. it is gorgeous on. true to size. i am usually a 0 and the 0 fits me perfectly. the quality and tailoring is amazing. it is a heavier dress with the lace and lining so it may not work on a super hot day. overall, i love the fit and quality of the dress. i love it even more on sale!",5,1,1,General,Dresses,Dresses +1078,20,The best dress ever.,"This dress is absolute perfection. the quality of the dress is great, the fit is comfortable and it's such a fun summer dress. the slip underneath fits perfectly the outer layer is delicate yet durable.",5,1,1,General Petite,Dresses,Dresses +1078,60,Beautiful but binding slip,I tried this dress on at my local store and was very disappointed in the slip portion of this dress. there is no give with the slip so even though the dress portion is quite flowy the slip prevents anyone with a large chest or hips to wear this dress.,2,0,11,General Petite,Dresses,Dresses +1078,24,Beautiful feminine dress!!,"I saw this dress in the store in the coral color and tried it on. i am 5'4"", 34b, and slender to athletic build. i wear the size 2 in this dress. as far as sizes go for retailer, i would say it is tts. the slip fits like it should and the dress is flowing. it is not see through as were some of the other silk dresses this summer. it feels so comfortable and makes me feel pretty. it is a flowing dress and meant to fit that way. i waited for it to go on sale and the day it did i purchased it!!!",5,1,1,General Petite,Dresses,Dresses +774,52,Not enough style,I thought i might like the look of this oversized odette dress but after i tried it on i felt it was not a flattering style on me. the color was pretty and fabric was nice - just not a fit for me.,3,0,1,Initmates,Intimate,Lounge +1078,40,Feminine,"This dress is really sweet and flows well. i love the fabric, and the colors are soft. this dress is perfect for hot summ days and is so comfortable. you could dress it up with fun sandals or simple wear flip flops. i love how the seam around the bodice drops lower in the back, it's very flattering. i bought a small.",5,1,1,General Petite,Dresses,Dresses +774,34,"A shirt, not a dress","Unfortunately this top is shirt-length, and i'm only 5'4"". needs to be about 6"" longer. made of sweatshirt material, which i wouldn't mind if it were longer. also runs very wide- ordered an xs and could have gone smaller.",1,0,1,Initmates,Intimate,Lounge +828,28,Blah,"I had different expectations for this shirt in blue and when i received the item it didn't met those expectations. the material is very good quality but there is nothing extraordinary about the shirt, it is jus very plain. this item is being returned.",3,0,0,General,Tops,Blouses +260,35,Amazing vest!!!,"I love everything about this vest! comfortable and cute, great transition piece into spring.",5,1,1,Initmates,Intimate,Lounge +1078,39,Highlights good,"This cute dress highlights some trouble spots and emphasizes good parts too, so i'm happy but not ecstatic. for myself, the sleeves are tight and so is the fit across the back and shoulders. sizing up makes the voluminous skirt overwhelming. the skirt is already a lot to handle in my regular size. the good part is the pattern, swingy silhouette and it covers my tummy. i have thick arms, wide bust, round back and meaty shoulders. 140# 5'3"" 36d and purchased size 10.",4,1,1,General Petite,Dresses,Dresses +1078,49,Really great fit,"I fell in love with the dress when i saw it but i was worried about a few things before ordering it. one comment mentioned that the slip underneath was tight in the hips, yet as a size 30 in pants the slip was still fine. the other concern was the length. i was worried that the dress would be very short compared to my height, however, it was a good length in the front and the back was came down longer than the front which helped the overall length. overall, i ordered a size 6 and it fit well in",5,1,1,General Petite,Dresses,Dresses +828,33,,"I loved the look and feel of this shirt the moment i saw it. it would be so versatile with jeans, skirts, and black slacks. i was contemplating wearing it with a tulle skirt for nye but it wasn't meant to be. usually my issue with these tops is in the bust and strangely that wasn't the case this time. this is great news!! also they made the sides adjustable so wide hips are not a problem either. however i have muscular arms and well cloth and stone are not thinking about that. they make the uppe",3,0,26,General,Tops,Blouses +279,46,Floreale leggings,"Really stretchy and therefore not a whole lot of compression. love the floral pattern and the color, but they're also surprisingly thin. they'll be good for yoga in the summer months, but i find them to be too thin to wear outside of the gym and i like a legging i can feel comfortable in running errands to and from the gym too. fit true to size.",4,1,2,General Petite,Intimate,Lounge +260,46,Aquaflora vest,"So much prettier in person. love it! i'm a size 2 in retailer and a small in this vest, even over a sweater still left quite a bit of room.",5,1,0,Initmates,Intimate,Lounge +260,43,Great lil vest,"Bought this because i don't have a puffer vest and living in san diego, i wanted a layering piece. it's much cuter on, but it does like much of retailer's clothes run a bit small. got tons of compliments on it when i wore it while shopping round town. very pricey but since the hood detaches and it's reversible, i guess it's worth it! (treat yo'self!)",5,1,1,Initmates,Intimate,Lounge +828,29,Soft button down,"I bought this a few weeks back. when i saw it (the blue one) in the store i touched it and it was extremely soft and even plush like. i tried it on and found it odd that this cloth and stone garment, like other viewers stated fit my bust and hips, typically they don't. i love the side buttons. i wear mine opened half way. my only complaint is i've washed it like the instructions state and my blouse is no longer as soft as it was before, and it needs to be ironed as it wrinkles easily. i still li",3,1,7,General,Tops,Blouses +1078,64,Lovely spring dress,Comfortable and true to size. it fits more fitted on the top and very swingy/flowy on the bottom. i got a petite and the length was perfect. if you like to wear very high heels you may want to go with a regular as its a tad short.,5,1,1,General Petite,Dresses,Dresses +1078,52,Fun spring colors but tricky on certain body types,"In the store i was immediately drawn to the blue/white combination, but on the opposite side of the rack hung the spring colored one, which i ultimately tried on. it was obvious that the dress was a bit oversized, so i chose the smaller of my two dress sizes (10) to try on. this was the right choice, but it was still really big. i am not sure that i could have gone down another size (mostly i wear a 12 in dresses that are fitted), due to my bust (36c) and broad back/shoulders. from the front, th",4,1,87,General Petite,Dresses,Dresses +828,33,Perfect white button down,"First, this picture does not do this shirt justice. in fact, the hanger does not do this shirt justice. you must try this shirt on! it drapes so well. not as soft as some cloth & stone tops, but it is still very soft. the slightly stiffer feel makes it easier to dress up. there's no pockets, which is nice in a button down. it drapes in a very flattering way. i've never been happier with a cloth&stone garment. i normally wear a small in this brand, and that is true for this top as well. however,",5,1,29,General,Tops,Blouses +1078,37,,,5,1,0,General Petite,Dresses,Dresses +1078,44,Forget-me-not!,"This dress is extremely feminine. the liner is the unsung hero here: it's cleverly designed to be fitted because on a windy day and the dress flies up, it's a saving grace; it has snap buttons and can be detached, the fabric is opaque so the dress is not see-through. the fabric of the dress is sheer, soft and smooth, and i thought it was silk until i read the tag which listed as viscose. the details of this dress is breathtaking, from the flower design (check out the bottom horizontal lines of t",5,1,2,General Petite,Dresses,Dresses +260,47,Wonderful!!,"Purchased this today at my local retailer-been eyeing it a while-thinking i would wait until on sale-until the salesgirl whom i know said it was their second shipment and all have sold out. knew i needed to splurge. i tried on the small and x small and wound up going for the small. i did however try on 3 smalls and two of them were way to roomy, but the third one fit like a charm-it was quite a bit slimmer in body than the two smalls, strange but true. i do have room in it-i am a 32 c to 36 b and",5,1,1,Initmates,Intimate,Lounge +1078,31,"Beautiful, but does not fit as pictured","Saw this dress in the blue motif and thought it would be perfect for a summer outdoor wedding. i'm 5'4"" 125 lbs and ordered a size 2. it fit true to size in the shoulders, bust and length, but did not fit as pictured on the site; it looks in the pictures like there is some shape to the waistline without being too fitted, which i like. on me there was absolutely no shape. it just billowed and looked really maternity. 15 bucks for alterations to take in the sides and now it's my favorite darn thin",4,1,0,General,Dresses,Dresses +1078,56,I wanted to love this dress too!,"Such a cute dress it was just way too big in the back of the dress, too much fabric, it just hung with +no form around waist. it appeared more fitted on the model than the one i received. dress was quite +a bit longer in the back so i felt like the front was riding up just in the minutes of trying it on. +sadly i have to return it. it did come with an underneath slip which was necessary as the fabric was very +thin. +recommend with caution to sizing.",3,1,1,General,Dresses,Dresses +1096,41,,I wasn't sure about this dress because some of retailer's cloths can make a women appear older before her time. i have to say that is not the case with this dress. i ordered it with the green and mint patterns in my normal size 2. this dress could not have been more beautiful on. i'm 5'6 115lbs and it fit perfect. the colors really compliment my dark hair and fair skin. i won't even need sunless tanner. i highly recommend this dress and placed the designer on my list to try out again.,5,1,2,General,Dresses,Dresses +1096,40,Gorgeous feminine dress,"This dress is to die for. it's exactly as pictured, beautiful quality and extremely flattering. all the lace and lining make it a slightly heavier dress - i can imagine it getting really warm after a while in the summer sun. but it would absolutely be worth the bit of sweat to wear this gorgeous dress.",5,1,3,General,Dresses,Dresses +1078,22,,,5,1,0,General,Dresses,Dresses +774,47,Horrible!,"This dress is horrible. i can't believe they can get away with calling it a ""dress"". it should have been called a tunic or shirt. it looks like it is a soft flowing dress made out of nice material from the pictures, no way. it is made from sweatshirt material it is lifeless and is kind of stiff. it came to the top of my thighs. i can't find one nice thing to say about this dress and i do not recommend it. the picture does it so much more justice that it is worth.",1,0,20,Initmates,Intimate,Lounge +260,28,,"Love the colors, love the design, and sure to keep you toasty. im usually a size 0 or 2 so i ordered an extra small- it felt a bit roomie",3,1,1,Initmates,Intimate,Lounge +818,62,Runs large,"I so wanted to love this tank, and was so excited to get it in the mail! i got a size small (my usual) and it ran so large i wasn't even sure an xs would've fit properly. the material looked lighter and blouse-y on the model, but in person is much thicker and sort of ""hangs"". underarms run large and are gaping from the body. i am sad to return this top because i love the color and idea of it, but it just can't work on me!",2,0,3,General,Tops,Blouses +841,36,"Gorgeous, billowy top!","I love this top. lovely, light, airy material, though i don't think i'll wear a cami under it. i'm usually a small petite so i ordered this in an extra small. i love the way it fits.",5,1,0,General,Tops,Blouses +829,26,So disappointed!,"I couldn't wait to get this top in the mail since they didn't have it at my local retailer, but i was so disappointed in both the quality and fit. the white is completely see-thru, i can't believe how sheer the material is - especially for the price. even as the shirt is lying down, i can see through both layers of it... the fit runs small, and short.",1,0,22,General Petite,Tops,Blouses +829,37,Beautiful details but cut small,"I ordered this in an xs, which is my normal size in retailer tops. the stitching and detail on the straps is beautiful, but they were also somewhat tight across my bust and across my back. it puckered in a strange way that wasn't flattering. back it goes, unfortunately.",3,0,1,General Petite,Tops,Blouses +841,60,I love this top,"This is even nicer in person than it is online. i absolutely love it. i am 5' 5"" and 128 lbs. and ordered my usual size small. i probably could have worn an extra small, but don't feel like the small is too big. this could be my favorite purchase of the season.",5,1,0,General,Tops,Blouses +836,59,?????? love this blouse,"For me this is the perfect blouse. alone or with a cardigan it's a winner. not too low cut, armholes are perfect. i would buy other colors if they were available.",5,1,2,General,Tops,Blouses +829,25,"Felt cheap, not like retailer","This top seemed so unique online, but in person it was really nothing like the pics. super full, shorter cut. the quality wasn't what i thought it would be. i will gladly pay for nice,quality fabric and unique prints anyday... but this wasn't any of those things..",2,0,0,General Petite,Tops,Blouses +836,40,Great top - versatile and well made,"I bought this top in a size 6 - i'm 5'5"" with a longer torso. i thought at first that this would be too boxy and cropped but it fits very well and it still covers my stomach when i raise my arms up. the material is on the thicker side so it's a little more structured which i think gives it a nice look and drape. i feel like i could wear this shirt out on a casual day or to work with a blazer over it to dress it up more. i highly recommend it especially since the material is linen and cotton whic",5,1,3,General,Tops,Blouses +836,75,"Cute casual top, but note length","I am 5'6"" and wear a medium. i ordered an 8 and a 10 and am keeping the 10, which is a little large but, importantly, is a full 2 inches longer than the 8. this is important to me because several of my casual pants begin a couple of inches below the waist and, as noted by another reviewer, and as is evident on the model, the top hits just below the waist. also, it is cotton/linen and may shrink (since it is ivory, i assume it will see a few washings). i don't want to worry about the ""gap"", but i",4,1,3,General,Tops,Blouses +829,40,"Beautiful top, but ill filtting","This top is gorgeous and beautifully made. however, the fit leaves a lot to be desired. the other parts of the straps pucker out and do not lay flat on your skin. i tried to make this work but just couldn't, so it's going back.",2,0,17,General Petite,Tops,Blouses +1116,60,Must have statement piece,The quality of this jacket is outstanding. color combination is very chic and sophisticated. jacket is warm but not bulky.,5,1,3,General,Jackets,Outerwear +829,40,,,5,1,0,General Petite,Tops,Blouses +836,56,"Spring, summer, fall","This casual top is adorable! a great top for jeans, linen pants or shorts! it would be cute with skirts too. +i love the heavy feel of the fabric. too many fabrics today are thin and/or clingy. this is soft, but is substantial. it works well on my body-type. tall, thin, without much figure. it's not cheap, but something i'll likely keep for a few years.",5,1,1,General,Tops,Blouses +1116,56,This sweater is adorable.,"Great fit. colors look just like the pic. not too heavy but, warm and cozy.",5,1,1,General,Jackets,Outerwear +829,39,Pink,"I actually rather like this top, i ordered a size smaller than usual, based on how flowy it looks in the picture, and was quite pleased. the pink color is rich, and i love the cut work... it has a bit of a sparkle in it, and is very pretty and flattering on the back. it does swing out a lot, but i ended up half tucking it. the pink color is very nice. it is gauze material, so of course, it is thin. i usually buy 0 but this 00 was great. also, there was no petite in the pink, so can't comment on",5,1,0,General Petite,Tops,Blouses +829,46,,,5,1,0,General Petite,Tops,Blouses +836,48,Beautiful spring top,"I found this top in the roc center store and knew i had to have it! when my usual size 2 was unavailable, i sized down to a 0 because it looked plenty big and it fits fine. i bought the ivory color and love it! i plan on wearing it with pants as well as skirts. it's a lovely shade of ivory, quite flattering. boxy tops are often not for me, but this one is perfect!",5,1,2,General,Tops,Blouses +836,26,Love this shirt,I love this shirt. i bought it in both black and white and i get compliments every time i wear it. i totally recommend this top! it's a great material and easy to wear with a lot of different bottoms.,5,1,0,General,Tops,Blouses +836,47,Perfect basic!,"Get this one during the 20% sale. if you dry clean it, you will have it forever!",5,1,0,General,Tops,Blouses +836,40,Love this top!,The quality of this blouse is great. a bit on the thick side which i like. the fronts a bit shorter than the back. looks great with joggers or jeans. great neckline and design. i bought this in black and wore it with camo pants and sandals. love it!,5,1,0,General,Tops,Blouses +836,49,Nice top,"This top is very well made. nice heavy material for those in between days. the back is slightly longer than the front and it is well finished inside. i ordered a 00 which fits great in the body area, but a little tight on my arms. still a keeper!",5,1,1,General,Tops,Blouses +1116,43,Stellar funky 70's look,"The picture does no justice to this stellar piece. its extremely comfortable and looks extremely chic!!! its very 1970's , studio 54 look and ive received tons of compliments!!!! at the price point, its worth it!!!!!",5,1,2,General,Jackets,Outerwear +943,57,Sweater,Beautiful sweater that looks great with jeans.,4,1,1,General,Tops,Sweaters +829,83,Beautiful beautiful top!,"I found this top to be quite flattering.........the slight give in the outer straps is necessary to allow for arm movement without issue. +i did not find it to diminish the aesthetic value. +i purchased it in white and loved it so much that i ordered the black also....not much of a pink person or i would have gotten that one too! +classic with a bit of a casual edge. +a must get!",5,1,1,General Petite,Tops,Blouses +836,44,,Super simple top that's comfy. i like a looser fit and its boxy- both things i like. seems like it will be a staple piece.,5,1,0,General,Tops,Blouses +836,33,,This top is very nice heavier weight linen. i normally wear a small or size 6 in retailer but this seemed a bit on the larger size than normal. it's still great quality and i'll probably keep it. a great item to wear for a long time!,4,1,0,General,Tops,Blouses +829,30,Lovely idea that does not work,"I was drawn to this top because of the interesting and detailed straps, which are embroidered with a lovely triangle pattern. however the embroidery takes away any stretchy-ness or give in the cotton and makes the top a beautiful but ill-fitting harness for anyone with any breasts or full-figured lusciousness. the worst part is that the top hem along the top is embroidered and rigid just like the straps, so it feels like you are wearing an uncomfortable strapless top. i wanted to keep this but h",2,0,18,General Petite,Tops,Blouses +836,26,Versatile piece! glad i did not order the petite.,"I'm consistently a 0p in this brand, but i ordered a regular zero, and i'm glad i did not get the petite because it would have been too cropped for me. it's a bit boxy, and the material is thicker than i thought, but it is a versatile piece that look forward to wearing!",4,1,0,General,Tops,Blouses +836,48,Flattering cut,"Love this top! it hits at the top of the waist & is very flattering. the fabric is thicker than i thought it would be and had a deep texture. when i first took it out of the package, i thought it would be a ""send-back"" because it looked kind of square & shapeless. but once on, it took on a whole other look.",5,1,0,General,Tops,Blouses +836,53,"Love, love, love it!","Saw this top on-line and thought i would give it a try. i am glad i did. there is not a thing wrong with this top. cute design, nice weight fabric,(no cami needed underneath) and it fits very well. for reference i am 5' 1"", 120lbs. and 35c. and of course it goes with literally every piece of clothing you would wear on the bottom half of your body! +this is a keeper.",5,1,1,General,Tops,Blouses +829,23,Beautiful & tricky,"I'd recommend getting this top- but only after understanding its limitations. it's beautiful and i bought it even after reading the other critical and accurate reviews because i so loved how it paired with the skirt. unless you size down the rigid form of the embellished straps will lie funny, and the rest of the top fits bizarrely as it is both short (it could almost expose the bottom of your stomach) and has lots of fabric so it almost flows out all around you (accentuating your stomach and ma",3,1,0,General Petite,Tops,Blouses +829,32,Beautiful!,"Love this top! with swing/loose tops, i always size down. i'm 5'1"", 115, 34b, and took a 0. it fit very well, i tried a 2 on as well and i could see what the other reviewers were saying about the top part not laying flat. so size down if you can! i got white so i use a nude bandeau bra with it, works well!",5,1,0,General Petite,Tops,Blouses +836,56,Love,"This is a really unique and well made top. i saw it online and thought it would be boxy. but when i tried it on in my local retailer it fits perfectly and i love the shape. i bought the size small. i will say this is not a long shirt, skims just over the belt line so i will be careful when laundering. i will be getting a lot of wear out of this.",5,1,9,General,Tops,Blouses +943,43,Boxy,"I loved the design online but the sweater is bulky and boxy. i had chosen the cream with blue and now looking back at the other pictures of the beige/cream it represents it better. it made me look very wide. loved it online but it wasn't for me, returned it.",2,0,1,General,Tops,Sweaters +836,19,Perfect,Goes with absolutely everything. it's very comfortable and versatile. can be dressed up or dressed down. great thing to have in the closet when you don't know what to wear!,5,1,0,General,Tops,Blouses +836,46,Loved it but it ran. . .,"Absolutely loved this top but after i washed it the underside color ran at the stitching. it is all white on the outside but at the bottom hem it has a really cool 1"" lining in a mustard color. i did a cold water wash and flat to dry. i noticed around the stitching at the bottom the mustard color has bled through just at the area of the mustard color stitching. + +i am so disappointed b/c i loved this top.",1,0,2,General,Tops,Blouses +836,65,Beautiful quality and fit! summertime!,"I held my breath as i slid this on for the first time right out of the package; the size 8 was perfect for me (usual medium, size 8, short-waisted, 34f)! this blouse is truly a find: luxurious linen in a unique, appealing design, excellent fit (the pleat at the back gives nice room to make the fit just right, the v-neck is not too deep (thankfully bra friendly!), the slightly lower back length is stylish but not extreme, and finally, admirable craftsmanship. i highly recommend! this will feel di",5,1,7,General,Tops,Blouses +936,35,Cozy chunky sweater,"The color and weave of this sweater is really beautiful and it looks very expensive. it is heavy- this is not a lightweight cardigan so save it for the coldest of days! i wore with a white tee like in the picture and jeans, and i did have to roll the sleeves up like the model. i'm not sure that i have a jacket that would fit over this sweater because it is somewhat bulky, but i am still very happy with the purchase. you could wear this at home to lounge in, or out and about for casual outings.",4,1,4,General,Tops,Sweaters +1050,62,,"I really feel in love with the details of these joggers and they did not fail me when they arrived. i haven't worn them yet but tried them on and they seem like nice little relaxed wear with a tee shirt. i can see them being worn with a cami in warm weather or a relaxed tee shirt in a variety of colors. all in all , very versatile , and i recommend them.",4,1,6,General,Bottoms,Pants +952,47,Gorgeous and unusual,"This sweater is the kind of find i hope for when i browse the retailer website or walk into the store. i tried two sizes -- i sometimes wear an s and sometimes an xs these days -- and after trying them both i felt that with this sweater it was better to err on the side of snugness. the hooks and eyes pull a bit, but i won't be fastening this all the way to the top. the smaller size works better to hug my waist before the peplum flares out. the color is a dreamy pinky nude (more pink than nude), an",5,1,3,General,Tops,Sweaters +949,49,Warm and cozy poncho,Love this poncho - plan to take it to europe this fall. warm and cozy yet not constricting. great neutral color!,5,1,0,General,Tops,Sweaters +1008,36,"Cute skirt for work, then drinks","This skirt is great for the office, but also stylish enough to wear out to drinks/dinner afterwards. i think it fits a little big - i'm usually s and i ended up with an xs. + +i think the tan is a little cuter than the gray in person, so i would recommend this one.",5,1,0,General,Bottoms,Skirts +1008,43,Maintains shape,"Love this skirt because of the colors, the unique style, and for a knit skirt i'm very impressed that it maintains shape throughout the day. great skirt to own. received several compliments. had to size up from a 2 to a 4. 28"" waist and 36"" hips. the size 2fit snugly and not very appropriate for work, but great for a night out. the size 4 is still form fitting, flattering and work appropriate. very comfortable going up a size without compromising the form fit.",5,1,0,General,Bottoms,Skirts +952,46,Early spring?,"This sweater is beautifully detailed, however, it seems too spring like to be for sale before christmas. very pretty. the cut may not be for everyone. it is like a peplum on the bottom and looks best open, as shown, on my busty top (36d) it seems cut slightly large but i am keeping my usual size medium. i'll keep for early spring! colors are as shown, detail better in person.",5,1,4,General,Tops,Sweaters +927,50,Great fall coat,I was looking for a coat to wear over dresses. this one is the perfect length and works over all lengths of dresses (and looks awesome with jeans too). my only concern is how it will hold up in the rain - it hasn't happened yet!,4,1,0,General,Tops,Sweaters +952,43,Lovely sweater!,This is a beautiful sweater.,5,1,0,General,Tops,Sweaters +952,54,A mixed bag,"I loved the shape of this sweater. the way it draped from the waist was flattering and different. the sleeves were a strange length, however, between long and 3/4 length which made it look like they the sweater was just too short for me. the color looked peachy or pink in the photo, but in reality, it was almost skin tone, which was not flattering with my olive coloring. paler women might find it attractive. the real downside for me was the fabric which was thin with the flowers mainly printed o",3,0,0,General,Tops,Sweaters +952,48,Beautiful unique sweater,I love birds,4,1,0,General,Tops,Sweaters +952,49,The birds and the beads!,"This cardigan is not my usual color choice, but the details were so beautiful i had to buy it when i saw it at the store. the birds and flowers are detailed with sparkly little beads that are prettier in reality than you can see in these photos. it's also a versatile piece that can be worn in many ways and dressed up or down. i'm only 5'1"" but i didn't need the petite (which is good since it is sold out in petite). the sleeves are cropped so they don't hang too low for me. the sweater is hand wa",5,1,0,General,Tops,Sweaters +952,58,,This is a great looking sweater. very nice quality and is a great design. can wear with many colors. love the look of this sweater and how it lays with the extra attachment on the bottom of it to make it kinda have a floating and airy look. nice!!!!.,5,1,0,General,Tops,Sweaters +1019,43,,This skirt is nicer in person. the fit is a little strange. the waist is tts but rest of the skirt runs a size large. i am a curvy size 8 and purchased the 6 based on another review. the waist is a tad snug but overall the skirt fits. it's too beautiful to return.,5,1,0,General,Bottoms,Skirts +1098,49,Big wow factor,"I was uncertain about purchasing this dress. wow so glad that i did. i'm 5'5"" and 138lbs. i can wear a small or medium so i ordered both. the small was plenty big enough. wore it to a family event and received numerous compliments. so different from anything else and classy with the longer length. thanks for a great dress! i hope that it cleans well!",5,1,2,General,Dresses,Dresses +903,48,"Comfy, soft","I ordered this in the ""chocolate"" color which is really a pinkish/taupe-brown. but i love the color; it's neutral yet not too pale, just the right hue to go with almost any color and the style works with any outfit, from jean shorts to a dress. i love how soft the knit is. although i worry it might be prone to snag, especially the open-weave sections. i also love that the sleeves are full length, fitted enough to be pushed up on my forearms yet i can pull them down past my wrists when i am chill",5,1,7,General,Tops,Fine gauge +927,49,Love the overall look of this piece!,"I love the overall look and comfort of this piece. my only negative is that since it is not lined, the folds in the material on the inside are somewhat noticeable, especially in the shoulder areas. i guess since it is a light color it is more obvious to me, but it is not something that would make me return it. it is comfortable and looks great on.",4,1,0,General,Tops,Sweaters +952,56,Design is stamped on,"From the photos, i thought the design was embroidered. in reality, it is stamped on. there is a tiny bit of embroidery and a few sequins, but overall, the design is just printed on the fabric. i didn't feel it looked good, in fact it looked kind of cheap to me, so i returned it. the overall style of the jacket was great and it would have looked equally good for work or casual. i was disappointed it didn't work out.",1,0,0,General,Tops,Sweaters +1098,69,Love this dress,This dress is so cute and comfortable. i'm normally a 0 or 2 and the xs is plenty roomy even though this is a clingy knit. the nice cotton under slip hides all the bumps and bulges. only worry is whether or not the loose weave will pick and how it will clean but so far i am thrilled.,5,1,2,General,Dresses,Dresses +1008,28,Beautiful from the front - problematic back,"This is an absolutely beautiful skirt from the front. gives a perfect hourgass shape with the strategic color blocking. however, if you have ""shapely"" hips and back-side, this will definitely emphasize that. had to take it back. a little bit much for work and other formal/professional events. however, if you're less endowed in that area, it might work well. gives a great shape!",3,1,0,General Petite,Bottoms,Skirts +1021,66,One of a kind skirt,"Unique and well-made skirt, sure to turn heads. embroidery is lovely. def a statement piece for any wardrobe.",5,1,0,General,Bottoms,Skirts +949,59,Returning,This runs large. i usually wear a m so i ordered the m/l. reordering in next size down and hope that helps. i gave it 5 stars because the knit is beautiful and quality looked great.,5,1,0,General,Tops,Sweaters +903,28,,,5,1,0,General,Tops,Fine gauge +952,66,Adorable sweater,Love this sweater. it can look dressy or just right with jeans! now if it will just cool down i can wear it!,5,1,2,General,Tops,Sweaters +949,53,Love!!!,"I am petite, 5'2"" - purchased the xsmall and it is a little big, but had to have this!! i would say runs a bit large. i think it will be a great addition to any wardrobe.",5,1,0,General,Tops,Sweaters +1151,39,Classic and flattering,"While i wouldn't normally look at this piece, the price was unbeatable. i was even more impressed when it arrived and i tried it on! the design is reminiscent of an old time patchwork quilt fairy tale- more beautiful in person than in the pic. the covered buttons at the neck and wrists are just lovely and feminine, and the dress falls and flows around me in a fun and flirty way. i paired it with charcoal heather tights and dark gray booties- super cute! you won't regret it.",5,1,1,General,Dresses,Dresses +1051,45,,"The cut is small. i am 5'9"", 150 lbs and usually wear 6-8/medium pants. medium in these is too fitted on my hips and rear.the polyester will be hot in summer. returning for another brand.",2,0,1,General Petite,Bottoms,Pants +1025,42,Great go to!,"True to the verdugo style. love the fit, stretch but holds shape...super comfy!",4,1,4,General Petite,Bottoms,Jeans +1151,35,So happy with purchse!,I wasn't sure if this dress would hang correctly on me and make me look shapeless but i'm so happy with it! the fabric is so comfortable and the tie in the back really helps draw it in so my waist is defined. the length is great and it's super comfortable but looks polished!,5,1,0,General,Dresses,Dresses +1151,38,,"This dress is beautiful and surprisingly flattering. i never would've picked this up for myself, but i'm so glad i did. it's also super comfortable.",5,1,4,General,Dresses,Dresses +1051,39,"Fun and different,","These pants have substance in the material, it seems thick. i found htem to be very comfortable and love the tir waist detail. my only ""complaint' is they don't come in petites, so on my short legs, teh hem came jsut above my ankle. i think htey would look nicer with a tighter shirt than pictured on the model. did not purchase,but keeping in mind for future...",4,1,0,General Petite,Bottoms,Pants +1025,34,Just great,I love paige jeans and these are no exception. the wash is so so great - a faded black/charcoal grey. it's like having two pairs of jeans in one! i am normally a 26 in most jeans and that's what i took in these. highly recommend!,5,1,1,General Petite,Bottoms,Jeans +1151,33,Not for those with large chests,"I really wanted to love this dress. the pattern is so much prettier in person. i typically wear a medium, sometimes a large in tops. the medium in this dress was too tight in my chest; the large fit my chest but was ridiculously large in other areas. the front of the dress goes up pretty high (for someone with a large chest) and flows down. there is a tie in the back but it doesn't do much to help with the shape in the front.",4,1,1,General,Dresses,Dresses +1077,35,Too short,"I'm a fan of yumi kim dresses and consistently wear size small. so, i ordered this in a small, and the top was a little loose, but it was way too short. there's no way i would feel comfortable wearing this in public. i'm 5'7"", and the hem was higher than mid-thigh on me. the waist is also billowy and has no defined shape.",2,0,1,General Petite,Dresses,Dresses +1151,31,Beautiful but missing buttons,"This dress is beautiful! i normally do not order online because i am so picky with how clothes fit. i am 5'4 and 138 lbs. i recently had a baby, so i am self conscious about my tummy area still. this dress fits great and looks great on! it's sort of ""a"" shaped, but very flattering and still gives you a good overall shape. the colors are a redish orange, navy and creamish white. i'm having to exchange it at the moment because it came in missing both buttons on each sleeve. the buttons are necessa",4,1,0,General,Dresses,Dresses +1151,23,Beautiful and classic!,"As soon as i saw this dress, i knew i wanted it. it looked perfect for travel and just comfy as can be. now, i usually wear a large, so i ordered one and patiently waited for it's arrival. however, when i tried it on, it was too big and the button on the sleeve popped off! i would recommend giving the buttons a little extra support if you can. i purchased a medium and it fits perfectly. this dress is one that will work year round for a variety of events and occasions.",4,1,6,General,Dresses,Dresses +1077,29,Cute but short!,"This dress was so lovely in person, but when i put it on...ooh la la! it is short! i am 5' 3"" and i would not walk outside in this dress without something underneath. it just needed one more tier and i would have kept it for sure. too bad!",3,1,1,General Petite,Dresses,Dresses +1095,48,Beautiful dress,Beautiful dress but i had to returned because the size large was a little big,4,1,1,General Petite,Dresses,Dresses +1151,54,,"I am 5'8"" 140 lbs and the m fits perfectly. it is flowy and feminine but the tie in the back keeps it from looking boxy. pattern is really nice. great dress!",5,1,0,General,Dresses,Dresses +1151,19,,"This dress is amazing! it's perfect for a casual family or friend get together, or a fall dress with boots. the back ties to make it more flattering than just a shift dress. quality of the dress is great, and the material is very versatile.",5,1,10,General,Dresses,Dresses +1044,37,Not fit for travel,I purchased these pants on 12/2/15 as a more fashionable alternative to yoga pants while traveling southeast asia starting february. after about 10-15 wears (with little washing in between as i was backpacker style traveling) the pants wore through in between my legs. the fabric first started to develop little fuzz balls everywhere and then literally disintegrated in places. i tried to sew them to continue wearing them while traveling but alas the fabric had become so thin that the thread could,1,0,0,General,Bottoms,Pants +1151,43,Flattering!,"Beautiful dress! love the colors and fit. can be dressed up or down. the only negative is that the buttons fall off. this is my third dress and it too lost a button the first time i wore it. i don't live near an retailer store so i will be keeping it anyways, as this is already my third dress :( my advice would be to reinforce the three buttons as soon as you buy it. there is one at the top, front of the dress and one on each sleeve.",4,1,10,General,Dresses,Dresses +1022,40,,These jeans look better in person - the pattern is more subtle than the picture online. these run true to size for ag denim.,5,1,0,General,Bottoms,Jeans +1051,54,Nice material,"Hi, these are really nice. the material is thick. they will probably be warm in the heat. they are made of 100% polyester. if they were made out of linen they would be perfect.",5,1,0,General Petite,Bottoms,Pants +1151,32,"Classic, pretty dress","This dress is very pretty. i love it! people are not kidding about the buttons! i was prepared to reinforce them after it arrived. unfortunately, both buttons at the wrists were missing and they were not in the bag. it was on sale so i'm guessing they were lost before shipping. i love the dress enough to keep it. it will not be that big of a deal to replace them. besides the buttons, the dress is a very nice quality. it is lined and has a nice weight to it. i'm obsessed with rifle paper co. so i",5,1,0,General,Dresses,Dresses +1025,39,Should've sized up,"I love the fit, feel and quality but i didn't realize these are the new improved fabric denim weave that has almost no stretch. i usually wear a 28 and i wish i had purchased the 29 or 30 to accommodate my weight fluctuations. the great thing about this style is that i will not stretch out at the stress points unattractively.",4,1,0,General Petite,Bottoms,Jeans +1151,52,Darling pattern,"The fabric pattern is darling. i wore it in amsterdam and was told it looks like a traditional folk pattern. the dress is lightweight and is loose at the waist. sometimes i add a belt to cinch it in. + +like another reviewer said, the buttons do pop off easily. i lost one at the cuff on the first day i wore the dress.",5,1,0,General,Dresses,Dresses +554,48,Perhaps the most comfy pants ever,"I'm 5'2 & the length is fine except i'd probably hem if i used for yoga/pilates. but i prefer cropped for those activities, so these are just knock a round lounge pants for me. they are thin, but not in a cheap way. i don't understand why they're called french terry became that's not what i see/feel; but they are sumptuous & soft. i like that the fold over waist part is stitched & keeps its shape. for size reference, , i got the black xxs- i'm 115 lbs, athletic apple & they fit/look great & clin",5,1,0,Initmates,Intimate,Sleep +936,43,Really pretty,Really pretty. not very itchy and a great sweater to dress up or down.,4,1,0,General Petite,Tops,Sweaters +936,30,,"I purchased this in the coral color and i am very happy with it. i find it to run true to size, has a nice stretch to it, but fits close to the body. the coral is gorgeous and looks very nice with my olive skin. the only odd thing i have found is the sweater seems to have random darker fibers. i looked at all of them in this color in store and they all had some dark fibers... strange. but, i have worn a few times already and i am very happy.",4,1,0,General Petite,Tops,Sweaters +348,28,Cute but not practical,Top is completely see through. i cant imagine if it were to get wet what it would look like. it is a cute design but not practical at all.,1,0,6,Initmates,Intimate,Swim +866,57,"Cute online, but....","I agree with the other two reviews that this shirt runs large, or something? ! i ordered an xs, my usual size, xs-s. the body of the shirt is very loose, the upper arms are a bit snug, and i don't have large arms. the shoulder seams are in a very strange place, but when you look at the model, it doesn't look so bad. with the shirt i received, and another reviewer, the seam was puffy, making for a strange look. in theory, the shirt should have worked, but didn't. i loved the pattern, not the fit.",2,0,0,General Petite,Tops,Knits +936,44,Super comfy,"Warm, asthetically pleasing and super comfy. i love the combination of style and comfort together. this sweater is a must have.",4,1,0,General Petite,Tops,Sweaters +861,37,Too short,I had high hopes for this cute top but it runs very short. it is not as long as it appears on the model so it looked odd when i put it on. unfortunately it had to go back. bummer cuz it was very cute in the pix!,2,0,5,General Petite,Tops,Knits +936,62,Not for me,"I loved the look of this sweater on-line, but it just didn't work for me. the fit wasn't good enough. the style okay. the color fine. the feel, scratchy. overall, it did not work for my body.",2,0,0,General Petite,Tops,Sweaters +866,33,Too big with very odd arms,"I really wanted to love this shirt. the snowflake and stripe design is really cute, and the fabric is of nice quality. it's a very loose fit, which i would've been willing to work with, but... as mentioned in previous reviews, the shoulder seam rests in an odd place on your upper arm, and there are little bumps in the fabric on the arms that appear similar to what happens if you leave a shirt on a wire hanger too long. it looks like you have nubby little wings coming out of your arms. not attrac",2,0,0,General Petite,Tops,Knits +907,31,Trimmed myself with bows,"I bought this on a whim because the colors were so me and fell in love with the bows and button back. i wore this over a lace peplum and opened up the bottom buttons of the button back for a fun layered look. true to size, as i was in my normal size small (5'5"", 135lbs, 34c). definitely check this out in person.",5,1,0,General Petite,Tops,Fine gauge +907,39,Very cute,"I am a sucker for bows, so decided to try this one and ordered it. i went with the petite, without trying on the regular size (in hindsight, i should have ordered both), but tit fit very nicely in petite, so keeping it. length is as on the model, right at hip, the colros of hte bow are well represented on the picture, light pink, light mustard yellow and navy, so i stil lthink it is neutral ebough to mix with other colors: warm or cold palette. love hte button detial in the back, i ordered xs an",5,1,1,General Petite,Tops,Fine gauge +936,37,Solid basic sweater,"I had just bleached my hair really blonde and was in the mood for something pink, so when i saw the rose color of this sweater in the store it fit the bill. nice and easy to wear, a wee bit scratchy but not too bad.",4,1,0,General Petite,Tops,Sweaters +936,39,Itchy scratchy,"I am 5'8"" and 130 lbs and bought a size s. it fits, but is not as roomy as it appears in the model and the sleeves are not as long. the collar fits strangely on me. the deal breaker was that the sweater is not soft, but is itchy and kind of coarse. i am returning this one.",3,0,0,General Petite,Tops,Sweaters +881,41,,,5,1,0,General,Tops,Knits +936,33,A bit short,"This sweater is super cute with the mock neck. i love all 3 colors. i typically wear either an xs or s in retailer sweaters, and purchased a s in this one. now that i've put it on again at home, i'm wondering if i should have sized up to a m mainly due to the sleeves and hem of the sweater being short. i'm 5'6"" (and 126 lbs), so not overly tall and don't typically have this issue. i feel like the model (who is likely taller than me) has to have on at least a size l and have the sweater pinned back",4,1,0,General Petite,Tops,Sweaters +936,33,Cozy,I tried this one on in the store and my typical xs fit perfect. it's not too boxy in the waist like every other sweater this season. also the mock neck is not to wide and is flattering. it sheds which i do not like but not as bad as some. the material is thin but warm i would layer it.,5,1,0,General Petite,Tops,Sweaters +861,23,Adorable top!,"I fell in love with the color and peplum design of this top online, and decided to order it. the fabric is soft, but strong, and the color is just as pictured. perfect for a casual shopping day or lunch date out with friends.",5,1,2,General Petite,Tops,Knits +861,20,One of my favorite/go-to tops!,"I absolutely adore this shirt, it is such a comfortable material and goes great with a pair of jeans! i love how it fits tightly in the sleeves and flows out at the bottom just the right amount. i highly recommend adding this to your wardrobe.",5,1,1,General Petite,Tops,Knits +936,42,Simple and nice,"I pretty much love any sweater by moth. this one is no exception. soft, lofty, and a pretty shade (i bought in pink), this will be a cold weather staple.",5,1,0,General Petite,Tops,Sweaters +1028,53,Can't beat coh!,"I love the fleetwood style...very trendy...fit like a dream - very long for you leggy gals. me, i need to hem (these would also look cute as cutoffs for us shorties)...true to size - slim fit!",5,1,0,General Petite,Bottoms,Jeans +881,32,Cotton comfort,"Super comfy cotton top, will be great for hot summer days when my shoulders have had enough sun!",5,1,0,General,Tops,Knits +1025,33,High rise,"Agree with above review. these are described totally wrong. they are not 8.5 rise. they are very high rise, so much that i didnt even try them on...the color isnt good either, it looks like a cheap levi's color or just not a quality denim. if you like high rise, you might like them. i can't comment on fit..",1,0,2,General Petite,Bottoms,Jeans +866,50,Like it .. but not for me,"Think price convinced me to put this in my bag ... the oops of on line shopping i guess. the strip and 'stitch' like snowflake is just not me. a little too ""cutesy' for me. if strip alone might have kept .. but this is just too much, not my style .. back it goes.",3,1,0,General Petite,Tops,Knits +936,57,Winter white sweater,"Bought this sweater on sale off the website. it fits perfectly - nice length. as some others said, a little scratchy at the neck but certainly tolerable - just need to wear a cami or tee underneath. the collar is a nice shape. fabric is a little stiffer than it ""looks"" in the photos.",4,1,0,General Petite,Tops,Sweaters +936,31,Ichy.,I made the mistake of ordering without checking the reviews. cute design but not as comfy as it looks. returned immediately.,1,0,1,General Petite,Tops,Sweaters +936,49,Love this mock neck,Great mock neck fits well and looks great with pants and skirts!! also love the dark grey color!!,5,1,1,General Petite,Tops,Sweaters +866,53,,This top runs huge. not only in the torso/chest area but the sleeves on this were enormous and the shoulder area was very puffy. i am normally between a m-l but would have to get a small or extra small to make it work.,2,0,4,General Petite,Tops,Knits +861,57,,Love this top! the length is perfect and it is very stylish! hope it will come in other colors because i would buy more!!,5,1,8,General Petite,Tops,Knits +907,31,Bow-daceous.,"5'7"", 135, 34c, 27-28 waist. love. a thin pullover (early fall weight) great for layering or on its on. darling with a skirt or jeans. buttons down the back for looks. bought the small. tts. fits like in the picture - hits at the hip. colors in photo are accurate. would be darling oversized too. it has just the right amount of fun without entering the stratosphere of crazy-cat-lady level. no bows on the back. i'd hand wash this one. if you still love bows, but don't want to be mistaken for being",5,1,1,General Petite,Tops,Fine gauge +1100,32,,This dress is so flattering and just beautiful in person. love it!,5,1,1,General Petite,Dresses,Dresses +861,26,Super comfy,I'm an employee and bought this top today. i'm so happy i ended up buying it on a whim! it's adorable and super comfy! it's perfect for those jeans and a tee day! i can't wait to wear it to work. the color is gorgeous and the peplum adds a feminine detail without being too puffy...in love!,5,1,11,General Petite,Tops,Knits +866,62,,"I liked this as soon as i saw it. the cross stitch embroidery on the front adds a lot to the usual striped top. the fir is good, not too right or lose. i took a size medium, which was good for my 5' 140 lb frame. the 100% cotton was a plus for me, also. the thing i like the post about retailer is the uniqueness of the clothing. i don't feel like i see myself all over town.",5,1,0,General Petite,Tops,Knits +881,37,Meh,It was ok. very swingy and lots of fabric at the bottom. the pocket seemed to not sit in the right spot like it was too far over and i wanted to keep adjusting the position of the shirt. i might buy it on sale but i sent it back bc it's definitely not worth $60.,3,0,1,General,Tops,Knits +868,26,,Bought in white. it has a ribbed detail that makes ir only for casual wear. the white is pretty sheer. will return.,3,0,0,General Petite,Tops,Knits +936,31,Washes well!,I washed this on the delicate cycle and air dried - very happy to report that it washed very well and still looks new!,5,1,3,General Petite,Tops,Sweaters +1030,53,,,5,1,0,General,Bottoms,Jeans +866,41,Comfortable shirt!!,"Although this shirt runs a little large, the snowflske and stripes makes it a classic. very comfortable shirt.",4,1,0,General Petite,Tops,Knits +866,37,,"I love the look and quality of this shirt, but far too large!! i got a large because i prefer roomy shirts, but this will go back. i may get a small. for reference i'm 150, 5'4"".",4,1,0,General Petite,Tops,Knits +936,39,Soft and cozy,"It's soft and not itchy at all (itchy sweater is my all time nightmare). the design makes you feel like a snow princess. i am 5'3, 120lbs, 34dd bra and take this in size small.",5,1,0,General Petite,Tops,Sweaters +936,60,Runs small!,"This is a cool, fun sweater but beware of sizing! i started out with a small - which looked like i was wearing a child's sweater. i ended up with a large which fits fine but is by no means generous. to get the look of the model i'd need to be in at least an xl.",4,1,0,General Petite,Tops,Sweaters +861,26,"Love the design & color, not the fabric & sizing.","I love the color (mustard) and design of this shirt! however, the description says it's made of cotton and i was disappointed to find when it arrived that it's actually made of 100% modal ? which is a big difference to me. i also think it runs small ? i ordered a medium (5'5"", 125#, 34c), but would have had to order a large if i wanted the look pictured on the model. finally, the modal fabric is quite thin and i don't imagine it'll last too long without tearing. i'll probably keep it because i l",3,1,3,General Petite,Tops,Knits +936,48,Gorgeous style but very very itchy,"I love the style and the look of this sweater. i wanted to love it and keep it but could not because the itchiness was too much. the style looks so comfortable and easy going, but it was not, it was clingy around the waist and backside. for reference, i am 5ft 4in and 128b and i ordered the small - the sleeves were too long on me, not ""cool"" long like some other sweaters this season.",3,0,0,General Petite,Tops,Sweaters +936,41,Just not for me,"This sweater has potential, but it wasn't right for me. the collar isn't flattering on me...too thick, and my shoulders are already broad. my waist is high, so i need a longer look. the color is true to size, but it's s little see through...dark bra shows through.",3,0,2,General Petite,Tops,Sweaters +936,62,Scratchy and unflattering,"I should have paid more attention to the reviews of this sweater before ordering. although the material looks soft and cozy in the photo, it's very scratchy and uncomfortable. i was also hoping the opening of the collar would be a little wider, which would have been more flattering on me. i never wear turtlenecks of any kind so i took a chance on this. i'm sure others will look fabulous in this sweater and may be happy with it if they don't mind the texture. i'm sending it back.",3,0,1,General Petite,Tops,Sweaters +936,47,"Super cute, but itchy!","I purchased this on sale, xxs petite and i'm glad i did. it's an adorable sweater, but i knew the moment i put it on - itch city! bummer. i wore it with a tank underneath and that helped. it's a very warm sweater and the style is really cute. looks really soft and cozy, but i would say itchy and cozy!",3,1,0,General Petite,Tops,Sweaters +359,24,This is the perfect throw on shirt.,I can not speak highly enough about this shirt. i originally bought the navy one and then went back to purchase the other two colors. the material is soft and thin without being flimsy. the fit is very flattering.,5,1,1,Initmates,Intimate,Layering +1094,59,Love the fun design and fabrics.,This dress is a lot of fun and would be great for a party or a wedding but unfortunately it didn't fit me right. i ordered a small since i usually wear a size 2 but the waist was just a little bit loose while the dress was too tight across the bust. this caused the dress to pull up in the front and make it look too high in the waist. i guess i'm just too busty for this dress. too bad because i really wanted it to work. it is a lovely dress.,4,1,2,General,Dresses,Dresses +984,35,,"Versatile piece to finish out your look. love how it goes with so much of my wardrobe. simple, comfortable, and classic.",5,1,0,General,Jackets,Jackets +846,44,Crisp and clean,Love the cutouts and embroidered detail of this top. it swings away from the body due to the crisp cotton drape. perfect for summer!,5,1,4,General Petite,Tops,Blouses +283,40,,"Soft, comfy and cute! great for casual wear! should've bought in more colors",5,1,0,Initmates,Intimate,Lounge +1094,44,,"This dress is especially beautiful in person. the tulle doesn't snag and lays nice and flat, not point. this dress is easy to dress up or dress down, fits comfortably and has some stretch to it. the bodice does run a little high, higher than what is shown in the model picture, but lovely nonetheless.",5,1,1,General,Dresses,Dresses +846,55,Amazing addition to my summer wardrobe,I found this top at the beginning of the summer and waited until it was on sale to snag it but honestly wish i had gotten it sooner and paid full price. it's perfect with navy shorts or white jeans and can dress up or dress down. it's a little bit short on the bottom but definitely still flattering. i would recommend it to anybody looking for something to throw on for an easy outfit. definitely worth the sale price!,5,1,0,General Petite,Tops,Blouses +1081,49,Very versatile and timeless,"I loved this dress. i am 5 ft tall and usually wear xs. this dress i would definitely need an xxs in. i like things not too tight, but this was too roomy so the style was lost. it was a little long, but i think that is because it kind of hung on me. the material is light but substantial. it has a lot of stretch to it, which is very nice. it has a silky feel - could be worn dressy or every day. a very good dress all around. waiting for the xxs to come in - i would definitely recommend it.",5,1,3,General Petite,Dresses,Dresses +1094,37,Absolutely perfect,This dress is the perfect combination of beauty and comfort. the quality is excellent with a forgiving fit. it could be paired with black heels for a formal look or flats for a an easy date night. i just cannot say enough positive things about it!,5,1,0,General,Dresses,Dresses +993,35,Beautiful but not for girls with curves,"I ordered this skirt and i was so excited when i first saw it. the photo doesn't really do the colors justice. the contrast of the bright colors makes this skirt one of a kind. i returned this item however because when i tried it on, the pattern was just at the wrong place and emphasized the thighs for any of us pear-shaped ladies. the side profile of my thighs in this skirt was just horrible.",3,1,0,General,Bottoms,Skirts +1094,39,Well fitted and surprisingly comfortable,"I love the color combination, and the bodice is very falttering. it has a tiny bit of stretch. the tulle is also feminine, i love that i could wear this with a moto jacket... sizing: no need for petite, it was short enough in regualr size. i think petite would have been too short (unless you are younger:-))",5,1,31,General,Dresses,Dresses +283,45,Love this top-deep v though,"I love this top--the fabric, the color, they way it hangs. i'm glad i tried it on in the store though because the v on the small went waaay too low, so i sized down to an xs and it was perfect. it basically fit the same as the small but with a higher v so my bra wouldn't show.",5,1,6,Initmates,Intimate,Lounge +1094,21,For the slim figure,"Such quality went in to this dress - it is beautiful. the torso is lined and the tulle is not super poofy at the waist. it is, however, not made for the busty gal. i am a 32 dd, the fabric comes in at the arm pits making for narrow coverage around the chest. also this dress is short waisted, it is almost an empire on me. i wish it worked, as it is lovely. perhaps it will work on the someone super thin? so sad about it!",3,1,36,General,Dresses,Dresses +1094,31,"Cute dress, not for me","For reference: 5'3, 130#, athletic/muscular body type (broad shoulders, slim hips) +i wanted to love this dress soooo much, i wanted it for holidays, and special occasions, but my broad shoulders and 34d chest worked against me. the criss-crossed bodice accentuated my larger top, and there wasn't enough poof in the skirt to balance me out. i'm sure this will work beautifully on other body types, and i wish it worked on mine too! a sparkly necklace or dangling earrings and a high bun are all you",4,1,2,General,Dresses,Dresses +1094,27,Lovely and versatile dress!,"This dress is very pretty, versatile and high quality! i'm planning to wear it to a wedding. with the holiday season coming up, i will definitely get to use it as well. the fabric is very comfortable especially the top part; it's very soft. i usually wear an xs petite, this dress seems to be a liiiiiittle too long for me and the waist is a tiny bit too loose from how i like it but it's manageable. (i have this dress in ivory top)",5,1,0,General,Dresses,Dresses +1082,45,Beautiful,"Beautiful and different material, like it a lot. very happy with the purchase.",5,1,0,General,Dresses,Dresses +1094,36,"Day/evening, every season, no snag tulling!","I don't even know where to begin--this is a dress for all seasons, but especially the holiday season! i bought it specifically for the guise of a holiday part, i can't tell you what a (black) velvet blazer and (black) patent leather heels did for it! the amazing part is that i wore it to work with a cardigan and booties with no problem. my coworkers were amazed but its transition. i have a slim velvet belt with a antique-ish looking clasp that i wore all day with it, too, and that was the cherry",5,1,64,General,Dresses,Dresses +1025,46,Great jeans,"I love these jeans, they have a great high waist thats tapered and supersexy, long legs and some stretch but not to much. the distressing is perfect and the wash nice and dark. i'll be wearing these alot.",5,1,0,General Petite,Bottoms,Jeans +822,45,Old world meets modern day,This top has so many details. i love the material. it adds a little formal to the casual jean. i am waiting to wear this come fall weather with slim jeans and some boots. it gives me that old victorian vibe without being still and formal.,5,1,0,General,Tops,Blouses +1082,40,So disappointed #2,"The review above titled ""so disappointed"" couldn't have said it any better. the dresses from last year are perfect. i probably wear them at least once a week. i was so excited to see this vibrant blue color and fully expected the same quality as last year. i'm generally an xs or s in dresses (however i have xxs from last year's version), and the xs in this one is lifeless. it's heavy, hot, doesn't have the same nice shape as last year. i may cut out the integrated lining just to lighten the dres",2,0,5,General,Dresses,Dresses +1094,33,Great fit!,"I love this flirty, well fitted dress! quality material!",5,1,0,General,Dresses,Dresses +725,53,Completely see through,"I thought this tank would be so cute and comfy for my daily walks, but it's completely see through. i sized down one size based on a review from another website and it fits ok, but it's hard to say if it runs tts because i have nothing to compare it to. if the fabric was a little thicker, this would be the perfect tank. unless your planning on layering this, i wouldn't recommend.",3,0,0,Initmates,Intimate,Lounge +1094,38,Love it!,"Love it! i usually wear a small but i just went to our local store and they only had a medium. i tried it on just in case and it fit perfectly. it is sitting pretty in my closet now. :) so if you are a size small, try ordering a medium and i hope it works for you as well.",5,1,2,General,Dresses,Dresses +1094,60,Simple dress,"This is a cute dress, but just not a keeper for me. the top portion of the dress is fairly snug. i am normally a small in retailer sizes, but i would have sized up the keep the dress from pulling so much across the bust. otherwise, it was cute and simple, and the tulle was quite soft. + +i think that i would have gone with a medium, but i am wearing a small in the photo. for reference, i am 5'5"", ~135 lbs, 34c, and 27"" waist.",3,1,22,General,Dresses,Dresses +1081,48,,"Great little black dress for cooler evenings with boots, or dress down with a pair of flats for daytime. perfect fall dress!",5,1,3,General Petite,Dresses,Dresses +283,38,,"Is a great top for layering over leggings, running errands or after the gym. the material was thin. i returned it because the color didn't look great on me and for the price, i just didn't love it.",3,1,2,Initmates,Intimate,Lounge +1088,28,Disappointed,Was so excited to get this dress because i thought it was cute and i love flowy and big dresses - however this looks huge. the material is not soft so it doesn't fall well. it just stays proofed out so from the back you look like a giant!!,1,0,0,General,Dresses,Dresses +1094,34,Agree with another reviewer - not for busty gals,"This dress is absolutely beautiful! i love the colors and design however there are two issues with the dress for my body style: 1. it's not made for busty girls. i'm a 34d/dd and the small would have fit well (i'm 5' 6"", 147 lbs.) but my chest did not fit. so i tried the medium but then the overall fit was worse, which led to another issue: 2. the waist and pleating made me look a little heavy because i still have a small amount of baby weight/spare tire around my waist, which was highlighted wi",4,1,5,General,Dresses,Dresses +1082,62,So disappointed!,"I was a huge fan of these lovely swing dresses from last year and bought all 3 colors. when i saw this new one, i was thrilled and ordered it immediately. what a disappointment! why did isabella sinclair mess with a good thing? the fabric is a very loose weave sort of ""homespun"" look, which wouldn't be a deal breaker, but i could see it would be very vulnerable to snags. last year's styles had a removable light knit full slip that allowed the airy fabrics to move. this version is fully lined. yo",2,0,14,General,Dresses,Dresses +283,37,Very flattering shirt,"I was apprehensive because of the long tail at the back of this shirt, but it is very pretty with capris.",5,1,0,Initmates,Intimate,Lounge +1081,71,,"It's a nice casual dress that you can also dress up, but unfortunately it is going back. i got a small since dolan dresses always run large, but i usually get a petite. i should've known this wouldn't work. i wanted to love it because the top looks great, but the length is too long making the waist fall lower than i would like giving my middle a thick appearance.i'm thin, but i'm not skinny, 5'3"" with an athletic build and a short torso with a decent size bust...if that helps. usually i can wear",4,1,0,General Petite,Dresses,Dresses +1094,31,,This dress is perfection! very flattering and pretty.,5,1,1,General,Dresses,Dresses +1082,39,Such a cute idea for a shirtdress but it runs big,I really wanted this to work. the style and colors are great and it is comfortable too. i didn't like how big the skirt portion was or how stiff the fabric was. it looked like a plaid tent on me but not in a terrible way. it could work on the right body.,3,1,0,General,Dresses,Dresses +1088,30,Huge,"This dress is huge. i am normally a l-xl regular in retailer brands. i love a loose, flowy dress. after trying one on in the store (just a random returned petite xl) i ordered the petite medium. and it was still huge and not flattering. so sad. i wanted to love this- loved the material and colors, but way off.",1,0,4,General,Dresses,Dresses +1094,18,Love,"I bought this dress for my engagement photo shoot and rehearsal dinner and it's beautiful! it's delicate and feminine, without being too girly or frilly. very simplistic. and probably the comfiest piece of clothing i own! my only con is that i'm a little tall and it doesn't hit me completely on the waist, but it's still very flattering.",5,1,0,General,Dresses,Dresses +877,37,Not like the pic,The yellow is not as bright as the pic and the tee shirt base color is more off white/oatmeal making the shirt look much more drab in person than in the pics. fit was ok but nothing special about this and will be returning.,1,0,2,General,Tops,Knits +1094,44,Gorgeous,This dress is gorgeous! it is a little sheer even though it has many layers.,4,1,1,General,Dresses,Dresses +1094,46,Darla tulle dress,"Very pretty. runs true to size. waist is higher than in the photo, as other reviewers have stated. correct fit is important because the arm openings are a little big, i thought, and when i sized up to try to get the waist a little lower, the arms were too large.",4,1,2,General,Dresses,Dresses +1094,36,"Super comfortable, nice quality, overpriced","This dress fit perfectly, i think it fit just like it shows on the model i also think the color represents itself nicely in person as well. i do however think that the dress is over priced. for as often as you would wear this dress (given that isn't a basic black and would definitely be remembered by people were you to wear it more than once) i think the price is way too high. +a must have on sale or clearance, but probably not a keeper for me full price in this color combination, we will see t",3,1,0,General,Dresses,Dresses +877,37,Small ?,Seems a little small in the width and shoulders. length is fine,4,1,2,General,Tops,Knits +993,48,Beautiful skirt!,"This skirt has a beautiful style, cut and pattern. i am so surprised it is on sale - what a great price. it has a medium sweater knit that is not clingy and has a slight flair. looks great with boots!",5,1,0,General,Bottoms,Skirts +1081,24,Beautiful dress,"Got this 4 days ago and have worn it 3 of those days. it is a perfect, beautiful autumn dress. the fabric is textured and slightly color-varied in a way that gives the black a more charcoal depth. the fabric is a thin sweater knit -- because of the texture it looks thicker than it is and i had hoped it would be thicker but i actually think if it were thicker it would not have the movement it does, nor would it be as figure-flattering. despite its thinness, it is still warm. would buy this in oth",5,1,0,General Petite,Dresses,Dresses +1024,56,,Super cute and more fitted than the baggy overalls of yesteryear. i love them.,5,1,0,General,Bottoms,Jeans +1080,38,,"I didn't buy it for the longest time based on the other reviews but i finally did and i love it. great color, great quality, great fit. oh and great price too! i say - go for it.",5,1,3,General Petite,Dresses,Dresses +984,34,Casual and comfortable,Love this blazer. you can wear it with anything. fits well and lightweight. perfect for south florida.,5,1,0,General,Jackets,Jackets +1082,40,Great for summer to fall,The issues the other reviewers mentioned didn't bother me as i don't have the prior years version to compare. i love the color and feel of the fabric. a little heavier and great for early fall layering. the armholes weren't big for me but i got a small and would normally be a medium. the cut works great for a very curvy petite frame. it doesn't add bulk but does flatter a larger chest. i can see why this doesn't work for taller ladies as the pockets and hip do flare with the heavier fabric but,4,1,0,General,Dresses,Dresses +867,52,Did not work for me,I loved the color of this shirt but it does run big. i even sized down and it was still large on me and the ruffles flare out a bit which was not flattering one me. it looks pretty on the hangar.,3,0,0,General,Tops,Knits +83,27,Love this!,"I know it's a bit of a moot point since the chemise has sold out - but on the off chance any come back in stock, or if you see one at your local store - i urge you to try it on! the fabric is incredible. so luxurious. it fits me amazingly. i have a hard time with the whole tight chemise/slip/nightie category of clothing, as i'm fairly skinny, but still curvy, and while i love my curves, i do have a muffin top that can get real awkward when you're trying to look sexy. this, however, is a godsend.",5,1,0,Initmates,Intimate,Intimates +867,34,Incredibly unflattering,I ordered this in blue and the color is absolutely gorgeous! i really loved it until i put it on. wow it was bad. i ordered a small--normally a sm/med due to bust but this was so wide and had so much material. it wasn't long but rather incredibly boxy. one of the most unflattering things i've ever tried at retailer.,1,0,1,General,Tops,Knits +867,54,Beautiful shirt on model but no,"I really fell in love with this shirt. i am about 5 4 and 110 pounds. i ordered xxs which that was a good size from the chest but this shirt is literally so wide, i was ready to fly. although the model wears this shirt really nicely, i think this shirt is made for a certain type of body. not quite sure what that is.... also this shirt is shorter than what i expected. it looks a lot longer on the model. i had to return this shirt.",2,0,0,General,Tops,Knits +1020,38,,"This skirt was cute on, but not particularly flattering. i thought the denim was a little too stiff. typically, a-lines are flattering on my figure, but this was a miss.",3,1,0,General,Bottoms,Skirts +1020,50,Cute and practical skirt,I am pleased with this skirt. the jean material is of good quality and it hangs right on my waist and hips. i ordered a 2 which left a little room in the waist to tuck in a blouse. i am 5/5 and 119. it works well for work and leisure.,5,1,0,General,Bottoms,Skirts +1044,47,Very pretty but different from what's pictured,"I bought these in my usual size 28 and they were much too loose so i returned them. i definitely need a 27 (39 inch hips, 33 low waist, 31 waist). i have lost a few pounds but i am usually a size 4-6 in pants. even loose i can see the pants are flattering and long enough for my leggy 5' 9"" frame. they are still cropped but i would say look much the same as on the model. if you are shorter, i think the petite option would be necessary to achieve a cropped look. the material is not bright white wi",5,1,1,General,Bottoms,Pants +867,83,Very european look!,"Love this top, dramatic in a casual way. +i ordered the teal and love love love it....with skinny jeans or leggings the style is perfect ! +i am over 50, so the teal is gorgeous and i think very age appropriate. +i ordered the blue also, a very pretty shade of blue.........but felt in this style, the bright/light colors would be more appropriate for someone younger. +it's a stunning top...........and fits very true to size..........the drama of the ruffle is what sets it apart.. +hoping they do",5,1,0,General,Tops,Knits +1020,38,I wish it were more flattering,"Really was excited to get what i thought would be a very versatile piece. unfortunately because i have ample hips, the skirt just made me look very wide overall. in addition, i am short at 5'2 so the length was also not flattering plus it is high waisted - it was just a lot of denim on me that made me look too wide and even shorter.",3,0,4,General,Bottoms,Skirts +1020,60,Back to denim,Great denim color and fit. gives a nice feel to the waist.,5,1,1,General,Bottoms,Skirts +867,50,"""go to"" tee for sz 10+ women",Women who want some flutter without too much fullness,5,1,1,General,Tops,Knits +867,32,Pretty in peplum,"I love this tee but it isn't for everyone. i am usually a solid medium & i tried on both xs/s. i went w the small bc i liked the volume. for reference, i'm 5'6"" and wear a medium/size 8-10. + +not thinking this is for small petite women as the peplum hem is poplin, not tee knit material so it holds its shape. on my frame it was so cute. got the holly color.",5,1,2,General,Tops,Knits +785,66,Not what i expected,"I gulped when i put this in my bag during retailer days because the price was still too much but thought this has to be wonderful to charge so much, right? boy was i wrong. this is a sweater knit with a very deep v-neck that's incredibly boxy and unattractive. the knit shed all over my pants in the few minutes i had it on. i ordered in xl, having never tried this designer and that was a mistake because i generally wear large or medium. it was swimming on me. the stripes aren't as cute in real life",2,1,0,Initmates,Intimate,Sleep +867,26,Easy & casual,"I purchased this top at my local store this past weekend, and i have to say i already know it will become an easy, go-to top. it does run large, so consider that when choosing what size to order. i generally wear a medium, but purchased a small in this top.",5,1,0,General,Tops,Knits +867,36,"Really, really horrible, try again, retailer!","I had such high hopes for this top! the colors! the peplum! the ruffles! the price point! the fit was terrible, unflattering, and laughable! please try again with this one, retailer. you could have a real winner with a little tweaking!",1,0,0,General,Tops,Knits +1044,52,Love!,"These pants are simply darling! i purchased them with my birthday discount (thank you, retailer!) and even without a discount i think they are worth every penny. flattering, and the most important feature of any pant, makes my butt look good. don't hesitate, buy these today before they are out of stock. + +the fit is true to size and the material is of excellent quality.",5,1,2,General,Bottoms,Pants +878,40,,C'mon. the accent is wrong! a simple google search would prevent this.,2,0,10,General,Tops,Knits +867,30,Not my cup of tee,It fits super baggy everywhere and looked sloppy on me.,1,0,0,General,Tops,Knits +1020,56,,"I think i wanted a skirt like this in the 1980s. with its aged denim and retro style, it looks like i've had it all that time. i couldn't zip my usual 4 but the 6 is comfortable if a bit snug, sitting right at my natural waist. it's flattering and shows off my waist with tops tucked in, something i never do with my other skirts, which all sit lower. i like how it flares a little oddly due to the horizontal seam. it's interesting and different. i will wear it in summer with sandals and it will lo",5,1,0,General,Bottoms,Skirts +1020,57,The perfect denim midi skirt,"I followed everyone's advice in the reviews and ordered up one size. i have a 32 inch waist, but size 10's (and 30's in pilcro hyphens) usually fit me. i ordered the 12 in this skirt, and it fits perfect. it's form fitting at waist and hips and then flares out, but i'm curvy. if you are straighter, it will be looser around the hips. i love the length. it hits me mid calf, so a bit lower than it does on the model. i'm 5'5"" tall. the fabric is soft, but has no stretch. it's 100% cotton. there is a",5,1,4,General,Bottoms,Skirts +1020,35,,"After promising myself never to buy another a-line skirt that makes me look shorter, i caved in because this one is so cute. the material is soft but holds its shape. you do have to have a long narrow waist line to pull this one off and size up one as i'm usually a 2, but took a 4 in this beauty. vintage perfection. pair with turtleneck or form fitting sweater or tee and clogs or heeled tall boots. it's a must!",4,1,18,General,Bottoms,Skirts +867,23,Love this top,"While this top does fit very loose, it is very cute and can be relaxed or you can dress it up. it is shorter in the front and longer in the back which makes the shirt take on a flattering look. i bought the green color and it is a very rich color, it will be perfect for fall! you may consider ordering a size down if your regular size tends to fit loose.",5,1,2,General,Tops,Knits +1020,48,Small waist but nice,This brand generally runs small but really this skirt is exceptionally small in the waist. i usually take an 8/10 in retailer bottoms and i had to go up to a 12! i love the details and uniqueness of the skirt. i like the shape and very much my style in a skirt. fabric is soft . i waited for sale plus promo and it was then worth the purchase. it reminds me of an old school retailer style .,4,1,2,General,Bottoms,Skirts +1020,37,So small,I loved this but couldn't believe how small it was.,3,1,0,General,Bottoms,Skirts +1020,42,Lovely but so small!,"The skirt is beautiful, but the sizing is kind of off. i usually wear a 6, at 5'6"" and 130 lbs. i ordered an 8, though, since sometimes athropologie clothes run small. even the 8 was too tight, so i'll have to exchange it.",4,1,18,General,Bottoms,Skirts +867,46,Hello shower curtain,"I noticed this top on one of the sales associates, and it looked great. she's probably 230lbs and about 5'5. tried it on and it looked horrible, i even tried sizing down twice. i'm 5'8"" and the ruffles started right under my chest. i gave 2 stars bc of the material, it is light, and summery.",2,0,0,General,Tops,Knits +1013,27,Beautiful but poor quality,"I ordered the skirt online and when it arrived i loved the fit and the aesthetic of the skirt. i usually wear a 0/2 bottoms and sized up based on comments- it fits great could maybe even have taken a 6 to have a looser fit. + +i was however very disappointed when receiving the skirt to see that the material was already highly snagged- how is that possible if coming directly from the warehouse? i'm hesitating to return because i consider it already damaged based on the current condition and if it's",3,0,0,General,Bottoms,Skirts +828,37,So soft. so cute.,"I adore this top. it is super soft, drapes nicely, and looks great with a ton of different bottoms. i am 5'4"", 104 lbs., and ordered this in both xs (my usual size), and s. i ended up keeping the s (most cloth & stone xs tops swim on me, so i was a little surprised), but glad i tried both. my only concern is how it will hold up after washing it. it is a gauze-like material, and i just hope i can get a long life out if this top.",5,1,0,General,Tops,Blouses +862,25,Beautiful!,I ordered a regular size small. would have got petite small if available. still very happy!,4,1,1,General Petite,Tops,Knits +862,33,Great piece,I didn't think much of this online but it was very nice in person. i was nervous it would look bulky but it was very flattering and slimming. fits tts.,4,1,1,General Petite,Tops,Knits +1013,41,Classy,"I had my eye on this skirt online but it sold it out in my size 2 so i ordered a 0 and crossed my fingers. before it arrived, i happened across a size 2 at my retailer store that someone had returned. it fit perfectly. i am 5'6"" and my waist is 25/26. it is high waisted but i thought that added to the fit and made it stand out from the usual black skirt. it fit my waist and hips./butt fine. it is quality material and has a structured fit and great length. it is unique and classic. i can see this b",5,1,0,General,Bottoms,Skirts +1072,46,Beautiful and different,"This dress is really pretty, but the fit is off. it is not fitted at the waist which made the back look poofy. also, the arm length is not flattering; it needs to be either longer or shorter. additionally, if one was to wear it a lot, the felting might start to fray.",4,0,12,General Petite,Dresses,Dresses +828,40,Super soft but runs small,"I love the fabric of this shirt -- it's super soft. however the fit is off -- i'm normally a medium and the buttons across the chest were gaping open when buttoned (never a problem for me, i'm a 34b and not very busty). it is also a bit on the short side, especially when the general trend is toward longer shirts/tunics. i would recommend sizing up (in fact i'm going to try this in a large, fingers crossed...)",4,1,2,General,Tops,Blouses +844,35,Beautiful blouse,"I saw this blouse and had to have it. i ordered my usual size large and was shocked at how big it was. it looked like a maternity top on me, so i sized down to medium. it fit much better and i was able to fully appreciate how gorgeous the colors were and how feminine and pretty the mock neck was. i definitely recommend it, but suggest to size down for a better fit.",5,1,7,General Petite,Tops,Blouses +1001,56,Whimsy with flair,"Reviewers may be right that this skirt runs large but it fit well on my waist. it does not come in petite so petite buyers should be aware that it will be more of a midi than a knee-length skirt. it is adorable. i love it especially for its whimsical design of birds, and the colors are deep and lovely with the red popping out more than it does in the picture.the fabric is heavy but there is a slight give to it, which helps with the waist. it's a keeper.",4,1,3,General,Bottoms,Skirts +828,42,Adorable,"This top is well made and fits me like a glove. i am only 5'1"" but have a very muscular build. the xs fits perfectly--slimming around the torso but roomy enough in the shoulders and arms. the fabric is a nice upgrade from typical flannel.",5,1,4,General,Tops,Blouses +862,32,Very flattering!,This top looks even better in person! the fit is very flattering and the fabric is comfortable. i highly recommend it!,5,1,0,General Petite,Tops,Knits +1084,42,A new favorite!!,"I was hesitant to buy this dress due to there not being any reviews, but decided to take a chance and order it. it is fabulous!!! great fit, off the shoulder design stays in place, and the dress hits the smallest part of my waist perfectly. the lace detail on the hem and the tassels on the ties are details that sets this dress apart. i wish that it was made in another color, perhaps a solid. you all hit this one out of the park, retailer!!!",5,1,0,General Petite,Dresses,Dresses +862,62,Pretty and versatile,"I adore this top - so cute, flattering, and easy to dress up or down. yes, it is a little better suited for larger chests, but i personally don't mind a discreet pin for this beauty. i'm a 34a and slim build, and the only issue is when i bend forward - it falls beautifully otherwise. great with everything from a black pencil skirt to jeans and a black leather jacket...cute with denim jacket and white pants too. easy wardrobe piece.",4,1,1,General Petite,Tops,Knits +854,47,Beautiful detail,I love this blouse with a pair of jeans. the neckline is fairly deep but very flattering and feminine. the detail is beautiful.,5,1,0,General,Tops,Knits +1033,37,Wanted to love,"I purchased these in a 26 petite and a 26 regular. the 26r was too long and bunched up terribly pass the knee. they were also loose in the waist and overall body. the 26p fit great in the waist and body, however; past the knee it was too tight and again it bunched but not as bad as the 26 reg. the overall quality of the jean seems fairly good. the fit just did not work for me so these go back and the hunt continues for white jeans. would love it if they made the hyphen jeans in white.",3,0,6,General,Bottoms,Jeans +1001,39,Lovely classic,"I love this skirt, wanted to order it from the moment it was new and took em a while to decide to do so (when i saw it was almost sold out in my size, which it is now). another thing is it doesn't come in petite - boohoo. +anyway, ordered the 0 (smallest size) for my 26.5 in waist - didn't have any trouble with the waist being too tight, like some other reviewers. it fit really well and comfortably. sits at the natural waist, so the hem isn't too crazy low on me. fine for heels (would be so cute",5,1,0,General,Bottoms,Skirts +862,25,Love it!,It fits great! i love the material and how it fits and drapes.,5,1,0,General Petite,Tops,Knits +862,57,,This shirt runs gigantic and it's not even cute. i.'m done buying retailer online.,1,0,0,General Petite,Tops,Knits +862,48,"Comfy, soft, nice fit","I got the small petite and this fits beautifully, as on the model (i am 5'2""). i do think that it flatters a flat belly more than it would flatter a fatter one! it would certainly hide any belly, but the drape works best if you're streamlined, i imagine. if you've got a tapering torso, go for it! depending on your bust, you may want to pin the overlapped fabric just to be sure of hiding the bottom of your bra. not that i've found it a problem.",5,1,12,General Petite,Tops,Knits +862,46,Perfect for pear-shape,I ordered this in size xl and it is a perfect top. the draping is very flattering to my shape. the material is soft and the flowers/colors are appropriate for work. it's the perfect length too. i love everything about the cut of this top. the pattern will vary on each since the flowers are staggered. i love the knot effect along the waist. great purchase. hope this style will continue to be used for other tops in other patterns/colors for spring/summer timeframe. these are a little too dark/heav,5,1,0,General Petite,Tops,Knits +828,54,Much more than a flannel shirt,"I love the feel of this shirt. from a distance it looks like flannel but close up it appears more like muslin. i find the fabric very soft and the colors are fab--more vivid than the photo. the buttons do not go all the way up the shirt. for me the top button is right at the top of my cleavage so i can wear it alone or with a cami or other scoop neck. if you want a more refined flannel look/feel, this is it. i find it tts. if you're in between sizes, i would order down.",5,1,5,General,Tops,Blouses +337,34,,,4,1,0,Initmates,Intimate,Lounge +1033,52,Prob good if you're curvy,"Ordered these in 31p last year, prob could have worn a 30p, ordered 30p and 31p this year. the past couple of years the pilcro stet jeans in white fit me because they were cut straighter and not as curvy. this year neither size fit. +this year the cut changed and it has a curvier fit. it's the waist that doesn't work for me. if you're curvier this is probably a good fit change.",3,1,4,General,Bottoms,Jeans +1078,42,Pretty dress but not for pear shapes,This dress is beautiful but the bottom half was too tight for my shape.,3,1,1,General,Dresses,Dresses +1013,42,Potential but missed the mark on sizing,"Wonderful pencil skirt with subtle design to pair with a variety of tops or sweaters. fabric is nice and has a true 'fitted' design. however, the sizing is all off. it runs small and too long. i'm 5'3 and wait 25/26 in denim and a 2-4p in most skirts. the 4 is too tight and past the knee in length. more like upper calf. the 6 would be way too long. disappointed.",3,0,0,General,Bottoms,Skirts +1084,28,Gorgeous dress,"This dress is very pretty in person, and perfect for warm and hot weather. the material is comfy and breathable, and the length is perfect. for reference, i usually wear a medium in retailer dresses, and ordered this in a medium as well. at that size, it does not bunch up around the waist as much as it would if i had ordered a large, but then the fit would have been baggier elsewhere on my body. i am fine with it being a closer fit across my waist, so i would say it fits true to size for me, but w",5,1,0,General Petite,Dresses,Dresses +828,70,"Cozy, soft shirt","I love this shirt for its subdued colors and casual style. it is lighter in weight than a flannel shirt but retains a feeling of softness. it is from cloth and stone, a brand i like. usually i buy that brand in a small because their shirts run large for me. i liked this shirt so much i ordered it twice and waited for a backorder. i sent the small size back and was lucky enough to get a medium before the next out of stock situation.",5,1,2,General,Tops,Blouses +102,34,,,5,1,0,Initmates,Intimate,Intimates +854,40,Unflattering,I own many blouses by tiny. the arms on this blouse billow out which was not flattering or thinning on me. the shirt was just blah.,2,0,0,General,Tops,Knits +1110,61,Lovely dress!,"I love this dress, even more when i ordered it. its really flowy and flattering. i was worried it would make me look a bit frumpy with the seam right under the bust, but its so flattering. it also has little ties on the sleeeves in the back, a detail i'm in love with.",4,1,1,General,Dresses,Dresses +1033,36,Great stretch,"I ordered these jeans in size 30, and it was a perfect fit. i love the extra stretch in these jeans. will definitely be wearing them all summer long.",4,1,1,General,Bottoms,Jeans +1033,31,Not white...,"I really wanted to love these because i love my other steps, but they did not feel or fit the same way at all. i was also disappointed to see that they are cream and not white. these jeans feel stiffer than other stets i own and the waist was huge on me. sadly, these will be going back.",2,0,0,General,Bottoms,Jeans +844,50,Feminine top,"What originally attracted me to this top was the rich floral print with the stunning and vibrant colors. however, the colors in this blouse are more vintage autumn than actually pictured on this model. although, the colors are darker, you can still wear many things with this blouse. the top is floaty but doesn't look like a tent! i feel ultra feminine and comfortable in it. definitely a top that you need for that ""something special"" but it is not too dressy or not too casual...just perfect! don'",4,1,2,General Petite,Tops,Blouses +831,38,,,5,1,0,General,Tops,Blouses +854,41,Flattering details,I love the fit and feel of this shirt. the fit is narrow but true to size. the stitching details are beautiful and make this shirt really versatile.,5,1,0,General,Tops,Knits +862,60,Cute!,"This blouse is adorable! very flattering wrap design, especially on my small chested body. also, the black and white is very appealing. can't wait for warmer weather so i can wear it!",5,1,0,General Petite,Tops,Knits +1110,42,A gorgeous dress,"This dress is so beautiful in person. it is not overly flowy, well made and extremely feminine. i really have not a bad word to say about it. and on sale, it's a steal. i plan to wear mine with tall boots as shown and with my cowboy boots.",5,1,0,General,Dresses,Dresses +1001,59,So tweet!!,"I love this skirt! i know others have thought it frumpy, maybe it's because i'm so long waisted but this skirt is perfect for me! not too long not too short but just right! the fabric print is beautiful a mix of muted and bright colors. the fabric quality is nice but nothing overly outstanding. still i'm glad i ordered it before it was gone!",5,1,0,General,Bottoms,Skirts +1072,40,,"Ugh, the fit of this dress is terrible :/ what a beautiful dress though -- the material and the colors -- had so much potential. but, the fit is awful -- i ordered by regular size and the top was more or less ok, if not a tad big, but hip down was crazy tight that i couldn't even zip it without a ton of effort. i don't think sizing up will help because then the top will be even bigger. disappointing.",1,0,1,General Petite,Dresses,Dresses +828,40,Not soft like other cloth and stone tops,I own 4-5 other cloth and stone tops and always love the softness of the material. this one missed the mark. not soft and very thick. not what i was expecting.,2,0,3,General,Tops,Blouses +831,29,Love this,"For some reason they are not replenishing this shirt even though it sells out like wildfire. +i got a small even though i was pretty sure i needed an extra small. this shirt is pretty wide, not prohibitively wide but not a fitted shirt by any means. i'd love to get this in my size if they ever opt to sell more in the ivory.",5,1,0,General,Tops,Blouses +844,28,Meh,"I love the design of this blouse and the pattern, but the colors are a bit darker than in the photo. the quality is pretty poor. i feel like its a snag away from being ruined and thrown away and for this price it is just not worth the purchase. sending it back :( +it comes with a tank top; just to let others know.",3,0,6,General Petite,Tops,Blouses +854,38,Lightweight and unique,"This shirt is absolutely beautiful! the front is very thin and delicate, but wearing a nude bra underneath, you can't see a thing. i did need to add a snap between the top two buttons to avoid the chest ""gap"" but the back of the shirt offers enough stretch that it doesn't appear to ""pull"" at all. it's hard to find a button down that fits nicely when your short waisted and large chested. this one is it!!!!",5,1,0,General,Tops,Knits +862,43,Drape with a shape,"At last, in a world of loose, billowy silhouettes, a draped top that falls a little closer to the body! the fabric is of good weight and has the right amount of stretch. + +i also love the retro/vintage pattern of the fabric itself. the fit is feminine and comfortable. + +you will have to wear a camisole with this top, but i do not consider that a negative. it is the way of the deep v neck.",5,1,4,General Petite,Tops,Knits +862,52,"Comfortable, flattering, seasonless top","I am glad to add this very versitile top to my wardrobe. it can be worn with a sweater in the cooler months (like i wore it today), a business jacket, or alone in the summer. i wore it with a fit-and-flare skirt today, but it goes with pants, jeans, shorts, etc. +fyi: i am a 36 c(34d), short waist, broad shoulders/back, size m in knit tops, 10/12 in fitted or ones with buttons. i purchased my normal size m in this top. +i have no real waist, so the shape of the top really does help to make one for",5,1,8,General Petite,Tops,Knits +844,39,Shapeless,"I loved the design of this blouse and ordered it the first day it was available. unfortunately, i was disappointed on arrival. besides being more muted color-wise, the sizing is way off. i ordered the xxsp and it was huge on me. on the model, it looks like it skims the body, when in reality, it falls like a tent. i tried tucking it into a skirt, but there was just too much fabric. + +though the neck worked for me, i can see how it might be too small for some people as it is very narrow. also, it",2,0,3,General Petite,Tops,Blouses +862,60,,"Great fit, the fabric is supple and of good quality; has a fasionable look to it but is also very very comfortable. can't beat that!",5,1,0,General Petite,Tops,Knits +1001,22,,,5,1,0,General,Bottoms,Skirts +854,26,Nice design but not that great,"Online, i like the design, the leaves stand out. in-person, the leaves don't stand out as much, you can barely see them they are so light. the top is slightly see-through. the price is high. i think this top would work better on a more slender frame. i like the top but the price is too high for the quality and thin fabric. it may look better on a slender frame, i think. it was just too light and thin for me.",3,0,8,General,Tops,Knits +1001,52,Unique casual,"I have featured photos below. i'm 5 feet and 120 lbs and 34 d. i purchased a small petite. the fabric is cotton, i thought it would be rayon. it is lined with cotton fabric. the skirt has major poof. it falls like a midi on a petite. the waist runs high, which can not be a good thing for a busty gal. why do i love it? the pattern is one of a kind. the colors are so fall. i wore a vest to accomplish a tapered look. i can't resist this skirt. if your tall, this is a dream. if your petite, you can",5,1,0,General,Bottoms,Skirts +1022,58,Inconsistent,"I'm not sure what it is with ag. i own at least a dozen pairs of their jeans, in blue, black and white denim. i wish i could say they're all great, but unfortunately there's a big variation in how they wash, depending on the fabric content. i just purchased these because i love the lighter wash for spring, but after washing them once i can see they won't be a favorite pair. even with cold water and hanging them to dry, the fabric bunches weirdly and the shape of the leg changes. at this price po",2,0,5,General,Bottoms,Jeans +951,43,Lovely colors and concept but fit is off,"I thought this was such a beautiful cardigan from the online photos. i ordered it in the small size but the fit is strange. the arms and wrist cuffs are so large it cannot be pushed up to stay out of the way for things i would like to do when wearing it (i'm a teacher and my classroom is that kind of environment). i was also confused by the front ""collar"" ribbing and how it was supposed to lay - open, folded over, partly folded over - it just didn't seem to have a particular style to this area.",3,0,3,General,Tops,Sweaters +1077,56,Perfect summer dress,"Absolutely love this dress. it is perfect for the summer. yes it wrinkles but that does not take away from how cute the dress is. the style is so unique, love the pleats. i am 146lbs, 5'6"" 36dd and the size 8 fits perfectly. not tight through the arms holes or the bust area. the dress hangs perfectly, you can dress it up or where it to run errands.",5,1,1,General,Dresses,Dresses +951,45,So much prettier online,"I stalked this when it went out of stock for a few weeks and was so excited when it came back in stock. but when it arrived, it just didn't look as good. it's very oversized. and it's itchy and kind of synthetic-looking. i felt like it added bulk when i tried it on. the collar also didn't fold gently like it does in the pictures. returned it!",3,0,1,General,Tops,Sweaters +1097,32,,"Very cute dress for special occasions or even work. dress is comfortable, excellent quality but does run slightly large.",5,1,5,General,Dresses,Dresses +1077,42,Vieques shift,Nice and colorful dress but runs very oversized. material mutes the colors not as vibrant in person.,1,0,13,General,Dresses,Dresses +760,60,Bridal lingerie.,I ordered flora nikrooz for my daughter for her wedding. it is beautiful. the delivery was quick!!! very happy.,5,1,0,Initmates,Intimate,Intimates +1065,46,On the fence,"These weren't what i expected, but i kind of really like them. they have a very high rise, and so they end up being high waisted. the fabric is stretchy so they are extremely comfortable. however, the fabric is very stretchy, and i'm not sure i can wear them to work. but they're a little fancy for the weekend. the color is more of a washed out coal than pure black. all things i can work with, but they are a little different than i imagined. they are quite long -- i'm 5'8 and will likely have to",3,1,16,General,Bottoms,Pants +1079,40,Cute dress but sleeves are too long,"This is a pretty dress. i bought a size 0 and the body of the dress fit, however, the sleeves were too long. had to return, as the loose and longer sleeves made the dress look too big on me.",3,0,5,General,Dresses,Dresses +760,52,Very pretty,"True to size, very pretty. as pictured expect that it is more peachy and not this light. i like it and will keep it but just be aware that it is not a pale pink as in the picture.",5,1,0,Initmates,Intimate,Intimates +1077,32,Love this dress!,Beautiful design and fit.,5,1,19,General,Dresses,Dresses +940,56,So glad it came back!,I bought this when it first came back a number of years ago and loved it because it is great for travel! it actually can be kind of a blanket when you are on airplanes that tend to be cold and it is so hard now to get a blanket. it is also great coat for me as i live in southern california and it is not too heavy but does help the evening chill. i went on a trip with this a few months after i originally bought it and i accidentally lef at the hotel i was staying at. i am so glad it is back so th,5,1,6,General,Tops,Sweaters +940,38,Exquisite and unique,Thrilled this statement piece is back. i get so many compliments on this and it's practical as well for our cold minnesota winters. highly recommend!,5,1,3,General,Tops,Sweaters +829,31,If you have a boyish figure this top is for you,"I wanted to love this top but couldn't. i am curvy (36/27/39; 32dd) and this accentuated my hips (which is not needed) and made my chest/whole shape seem boxy. i could only recommend this top to someone who is smaller chested with a straight build- the bottom would help give some shape; pleating on front would help chest seem larger. i did love the color and construction, lace details, 3/4 sleeves.",3,1,0,General,Tops,Blouses +940,30,Different material,"I was so excited to buy this coat, since i missed out on buying the last one. i snagged it quickly before heading out on a trip because this is the perfect plane jacket (i've borrowed my friends). i immediately noticed that the fabric was lighter and softer than the original, and after a few days noticed a lot of pilling on the coat, and a snag on the seam of the shoulder where the arm connects to the body. it's disappointing considering the price you pay. i would return if it still had tags on.",2,0,0,General,Tops,Sweaters +1022,35,Perfect high rise jeans,"These are the perfect vintage-looking high rise jeans, without the risk inherent in buying vintage. for reference, i am 5'2"", 108 lbs and usually a 26 in ag. these fit me perfect in a size 26 and were a great length for booties and flats. they fit me at versus above the ankle.",5,1,1,General,Bottoms,Jeans +1052,45,Great seasonal staple,"I love these laid back, causal pants. they have a draw string, very comfortable and can be an alternative to sweat pants, lounge wear, etc. i am petite, 5'2"", 100 lbs or a little less, and i got the xsma?l size. i am pretty proportioned, but my upper body is a little thinner. meaning, i don't have a straight, rail body. my petite frame, has curve to my hips, tush, so it isn't easy to find pants, jeans, etc that are automatically flattering. these trousers are cut well, of good quality and nice n",5,1,0,General Petite,Bottoms,Pants +829,43,Small through shoulders,"I am 5 8"", 130 and i usually wear a 4 in tops like this from retailer but the fit of this one was not good for me. though the styling and details of the top are lovely, it was small through the shoulders and very large everywhere else. looked too much like maternity. i love the shape of this kind of top but to be flattering it actually needs to be fitted through the bust and upper body and then flare in the right places and this was pretty boxy all around. too bad - so cute!",3,0,0,General,Tops,Blouses +940,63,Coat,Omg. i also bought this years ago. i have worn it every year and get compliments on it every day! i'm so excited to buy it again! i might actually buy 2. just love it!!!,5,1,4,General,Tops,Sweaters +940,57,Perfect sweater coat,"This sweater coat is perfect. i've been looking for one i loved for years. in my opinion, it runs true to size. i ordered my usual xsp. it is fitted in the arms and loose on the body. i love it.",5,1,0,General,Tops,Sweaters +829,64,Holding horses beauty,This top is a lovely combination of rugged and refined and will be versatile wear for a party pared with nice pants and flats to casual with jeans and boots. it appears well made though i had to size up for my broad shoulders but other hh tops fit the same way.,4,1,1,General,Tops,Blouses +1086,26,Size down!,"I ordered this dress to wear for a rehearsal dinner. i almost consistently wear a medium in most clothing but for this picked the large because of my height. i was for sure it would be too short in any other size. when i put it on i was drowning in it! i would definitely order the small if i had the time before the rehearsal. has the potential to be super cute and flattering, yet the timing and sizing didn't work out. definitely give this one a try!",4,1,0,General Petite,Dresses,Dresses +940,61,Pilly,"This coat is cool, the cut is classic and well fit. i've been wearing it as a jacket every day since purchasing 3 days ago. it already has begun to slightly pill. i have not worn this under other jackets, so it's pilling quickly from very basic wear.",4,1,0,General,Tops,Sweaters +940,36,Worked well for me so far!,"I never owned an 'older' version, so nothing to compare to. i found it comfortable, stylish and warm on a cool fall day. the minor piling made it look more rustic, has not shed on any of my other clothes so far...",5,1,0,General,Tops,Sweaters +829,32,Lovely blouse with great detail,Looks wonderful with a pair of dark skinny jeans and cowgirl boots.,4,1,0,General,Tops,Blouses +1052,54,Pants,"These are very nice pants. good quality and as expected. however, they do run small. i generally wear a small or size 4, sometimes a 2 depending on the maker. on average a 4. these i measured were 0 to 2 sizing. sending back and going a size up.",5,1,8,General Petite,Bottoms,Pants +1052,41,Sizing way off,"I love relaxed-fit wide leg pants with some pockets and draw string, so naturally i was super excited to see these. i got them in gray and they felt and looked perfect right out of the bag, material was soft and flowy but not too thin. unfortunately the sizing is completely off unless i got a defective pair, i got my usual size l and they felt like s or smaller, i barely could get them on and i could not zip up. i'd need at least two sizes larger for them to fit at all. very disappointed, will l",2,0,12,General Petite,Bottoms,Pants +940,65,Just the cutest,"Here's the thing: i ride horses. you would think this would mean i would love this, but the first time it came around, i hesitated simply because i spent too much of my childhood in horse-bedecked things looked overwhelmingly nerdy. but this time, having actually purchased the belted navy birds version, i had to give it a try, and it's kind of a must. there is just something about the way it falls that is super flattering. it's just warm enough to serve as a jacket right now (in new england) but",5,1,0,General,Tops,Sweaters +829,60,Lace chambray top,"This is every bit as lovely as shown! the shade of blue is delightful with the pintucks, lace embellishment's and covered buttons. for me, tts. i bought the size 4 (34-b) my normal size. i can see where it could be a problem for bustier women because the pin tucks tightened the upper chest area and it is fitted in the shoulder area. going up a size may help some but if your smaller like me it is tts. i think it's a wonderful rendition of a denim top. this would work in any season of the year.",5,1,8,General,Tops,Blouses +829,29,Not bad,"I ordered this shirt, aware of what the other reviewers said about it being tight in the chest. it's true- it's a bit restrictive if you need full-range of motion for your shoulder blades, but if you're not planning on doing any heavy-lifting or sporting events in this top, it's just fine (disclaimer- i am small-chested). i will stick by my tts, though, because it was the right fit, despite being restrictive. i was worried the top was going to be a 'hard' jean, but it wasn't. it was nice and sof",4,1,0,General,Tops,Blouses +940,62,Statement piece,"I bought this coat 5 years ago and every fall/winter, i can't wait to wear it again. can't even begin to describe how many people comment on how beautiful and unique it is! it has worn well over the years considering how much it has been worn, but i just might be tempted to buy it again (which is something i have never done with a statement piece). the only design feature i would change is that it has no closure. i actually had a beautiful large antique button that i sewed on with a snap and it",5,1,11,General,Tops,Sweaters +940,54,Linty & pills,"This jacket is so cute and fits perfect and i love the motif. however, it deposited black linty particle all over my pants and top and the fabric was already pilling just from being on the hanger in the store. this piece will look bad/worn/old in a very short period of time. it's a big shame, because it's so perfect in every other way. i choose not to buy it. it's very expensive for the quality.",1,0,2,General,Tops,Sweaters +940,51,My love is back!,"This gem is beyond lovely! i saw this 5 years ago and regretted not buying it 5 years ago and then i was looking on here as i do on a weekly basis and bam it was there, i gasped hahahaha but really this is an amazing statement piece. i am usually a l but got the m as it is a bit big and its your preference on how you want to wear it. i will be wearing this to death for autumn winter and forever its just one of those. soft and not itchy and i have sensitive skin.",5,1,5,General,Tops,Sweaters +829,48,Runs small,"This top is so pretty but runs small. i have a 34 dd chest and small back and shoulders . the size 10 was too full cut on the bottom and the 8 was better on the bottom but fit the same on top, felt like the seams under the arms with either size would rip. truly an odd fit and cut. this brand tends to run small and narrow. better for a smaller chest .",4,0,7,General,Tops,Blouses +940,53,,,5,1,0,General,Tops,Sweaters +940,22,Really fun & cozy,"When i tell people i invested in a ""horse sweater"" i don't get a lot of encouraging comments, but when they see it they understand. so cute, different, and cozy for cold days (winter is long where i live). really works as both a sweater and as a coat.",5,1,0,General,Tops,Sweaters +1052,58,,The fabric is lovely and the straight leg cut makes these pants a great option for summer. they do run small.,4,1,0,General Petite,Bottoms,Pants +940,68,"I love this sweater coat, but","Trying to hold back and not purchase this beautiful sweatercoat but 20% off on retailerday and reviews saying it ran large, i ended up getting it. my store stock only went up to l (i normally wear xl in retailer tops) but read that they ran large. i did try it on and it seemed to fit and is gorgeous, but once home i saw really it was too tight in the upper arms and i don't want to order the xl which might be baggy, so i'm exchanging it for 2 walking on snow sweater/jackets which are very flattering!",4,1,0,General,Tops,Sweaters +940,78,Welcome back,Has it been 5 years already. i too bought this 5 years ago. it peels and doesn't close but the horses make up for that. very very warm.,4,1,5,General,Tops,Sweaters +940,44,Soft and snuggly,"This sweater sold out fast at my local retailer store. you know that stuffed animal that you owned when you were a kid, and you would never let it go because it was so soft and snuggly? yeah, it is like that for me. it's a bit pilly but that's what sweaters do. size petite s fit me perfectly (i am 5ft2in, 34b, 26 waist, 36 hips), hem falls 4 inches above my knees, sleeves fall right at my wrist, and it gives room for wearing a sweater or turtleneck under it. hood lays flat, horse print is so cute.",5,1,0,General,Tops,Sweaters +829,38,"Great blouse, runs small","I saw this in the store and wanted to try it but couldn't justify buying *another* denim shirt at this price. then it went on sale! as others said, this does run a bit small though the chest/shoulders, so i sized up one size. it's still slightly fitted, but my broad shoulders are used to that. i was afraid that the pleats would give a maternity look (although my chest size is not that large 36b)-- it doesn't do that on me. it's loose but not overly so--kinda like the current swing top trend! the",5,1,0,General,Tops,Blouses +829,26,Nice top but strange fit,"This top is very nice. good quality, good design. it just doesn't fit me well. i have a large chest and this is a tad fitted at the top, especially around my shoulders, while the lower half fits due to the pleats. the fit seems inconsistent at the top and bottom. i am full-figured, perhaps it would fit a leaner person better.",3,0,15,General,Tops,Blouses +940,68,Love this sweater coat!,"Great sweater coat. fits a bit large. purchased a small...which is unusual for me. i normally wear a medium or sometimes a large. retailer clothes are mosly cut small. it looks great on...warm, comfy and attractive. i am very pleased with this purchase. highly recommend.",5,1,0,General,Tops,Sweaters +1094,25,Instant favorite!,"This dress fits perfect! the material is so soft and hangs so flattering. long enough to cover the booty, but short enough to show off my legs. and the color is beautiful (i got the wine color).",5,1,0,General Petite,Dresses,Dresses +1052,38,So small!,"I love these pants. they are beautifully made and appear to be very comfortable. now if i could just get them buttoned! i am a size 8/medium. i bought the large after reading other reviews. i'm not joking when i say i can't button them. i am in such love with them (and still hoping to lose some baby weight), that i am going to keep them in hopes to wear them!",5,1,1,General Petite,Bottoms,Pants +940,35,Not the original!,For those who are wondering this sweater coat is 50% lambswool and 50% acrylic. the original version of this coat was 100% lambswool. 50% acrylic yet the price remained the same???i would have payed more money to have this sweater coat made in 100% lambswool like the original version. this is another example of declining quality and a high price tag for synthetic materials.,1,0,13,General,Tops,Sweaters +1118,51,Great retro sweater coat,"I love this sweater coat! the buttons make it more structured and practical when the weather is cool. +the colors are even nicer in person; the neutral yellow is sure to compliment a lot. +you would be disappointed with this purchase.",5,1,3,General,Jackets,Outerwear +1035,39,,Love these jeans! runs true to size and has a bit of stretch. can uncuff them and have a longer straight jean. very versatile.,5,1,1,General,Bottoms,Jeans +872,35,Cute comfy casual,"I saw this online and immediately purchased the top in gray. it's so easy and casual but the shoulder detailing give it something different and unique for a regular gray shirt. the fit is loose and comfortable but not overly big, just right. i can't wait to pair it with my new white jeans for summer!",5,1,0,General,Tops,Knits +861,65,Very soft fabric but size down,I seldom take anything but a size m in retailer tops. this m top fits ok but it is a bit sloppy overall. one reviewer says it is 'body skimming' but not on me. i am a true m yet a m seems to fit in the shoulders but overall just too big. i love the fabric and print however i will exchange for a size s if it is available. it does hide the tummy area but ends up looking like a pajama top on me.,4,1,1,General,Tops,Knits +61,39,,"At 5'4"" and 140 lbs, this tank is a nice thin under layer. a little low cut for trying to cover cleavage.",4,1,0,Initmates,Intimate,Layering +824,40,A great pick for summer,"I'm normally a small in retailer tops, but i could tell that this would run big. i'm glad i sized down to an extra small. this top is flowy and airy without being baggy. the colors are summery and beautiful. my only complaint is that it's a bit sheer, and i can see the outline of my bra in front. i will have to wear a cami underneath.",4,1,1,General,Tops,Blouses +861,49,Beautiful t-shirt!,"Wonderfully soft fabric and gorgeous pattern. the background color is a more standard gray than shows in the on-line photo (which looks more pinkish gray on my screen), but it's just lovely -- looks perfect with jeans or a skirt. i will be wearing this a lot this fall, and will keep a lookout for additional patterns!",5,1,0,General,Tops,Knits +824,62,"Fun, happy top!","Love this top! the colors are so fun and happy, and the fabric/fit are soft and breezy. it is definitely on the boxy side, but not in an unflattering way (in my opinion). super cute in my usual size small.",5,1,3,General,Tops,Blouses +909,32,"Disappointed: runs small, arrived looking worn","I read the existing reviews, before purchasing, and a few mentioned that this sweater ran large. this has been my experience with most tops i have purchased from retailer. i figured by ordering a medium, i would receive a slightly loose to moderately loose fitting sweater. this was not the case! the sweater is short, does not look anything like it does when you view the model from behind (and i assume the model is taller than i...as models are usually tall). for reference, i am 5'6'', medium build",2,0,1,General,Tops,Fine gauge +824,63,Color and buttons,The buttons on the side give this top style. great color and fabric make it perfect paired with denim.,4,1,2,General,Tops,Blouses +1118,51,Beautiful color,"I'm 5'4, 112 pounds. xs petite was a good fit with room for a heavier top. fabric is somewhat picky, so long sleeve is necessary. overall, coat is beautiful and worth the money. nice, unique fall piece.",4,1,1,General,Jackets,Outerwear +1035,59,,"These jeans were not for me. they are very straight...hence the name 'parallel'. i'm have more of a straight athletic build so for me it was too much straight and didn't flatter my shape at all. + +however, very nice jean once again from pilcro.",5,1,0,General Petite,Bottoms,Jeans +971,37,Love,"Nice thick fabric, lays well. sleeves three quarter but looks great on.",5,1,0,General Petite,Jackets,Jackets +861,54,,"Great tee! the color online is lighter and nicer in my opinion than in reality. it's much darker in real life, but otherwise it's a super soft tee with gently fluttered sleeves and side slits. i bought it in a s and it's roomy without being oversized. great for fall....",5,1,4,General,Tops,Knits +1035,36,,,5,1,0,General Petite,Bottoms,Jeans +872,46,Adorable and good quality,"I ordered this top in the grey along with the white lace up back pocket tee. while the other tee was totally see through and very poor quality, this one delivers in every way. in fact, i am sending the other one back to get this top in the ivory as well. the lace is very substantial and the fabric is not see through at all, like so many tops are these days. i ordered my usual medium and it comes down over my bum, just like i wanted to wear with leggings. i see this as a staple and this is my fir",5,1,0,General,Tops,Knits +872,26,,"The shirt looks so much more flattering on the body than on the hanger. it has a luxuriously soft feel without compromising fabric quality. i purchased both the white and navy color. indeed, a closet staple.",5,1,0,General,Tops,Knits +824,42,Perfect but...,"I love this top! it is a perfect summer staple but for me it was too short. i sized up to fix this problem because i prefer the boho, flowy look. it is flowy on it's own but i felt it lacked length so went up a size. waiting for my retailer mail with anticipation!",5,1,3,General,Tops,Blouses +1055,34,Ribbon cinched trousers,These are some of the few pants that are semi loose with a wide waist band that make me look thinner! i love them. they are soft! they match everything. they make an outfit effortlessly chic. i took a size m and it fit tts.,5,1,0,General,Bottoms,Pants +872,47,Cute top,I love this top. the design is flattering and the fabric drapes nicely. the length is perfect and can dress it up and down.,4,1,0,General,Tops,Knits +61,36,Great quality tank,"I love these tanks. the straps are wide enough to hide my bra straps. they're soft. and long enough to give me added length to shirts that run short. because this tank runs small and i had to size up to get the fit that i like, the straps are a little long, but after i alter them with a little sewing, they're perfect. i've had to do this with retailer tanks in the past, and it's worth it to me for the quality that i'm getting. the regular price is too high, so i only buy them on sale. i try",5,1,0,Initmates,Intimate,Layering +61,42,,,5,1,0,Initmates,Intimate,Layering +1035,50,Fantastic!,"Adore these jeans! great length, cute cuffed details. could do cartwheels in these :)",5,1,5,General Petite,Bottoms,Jeans +824,37,Awkward sleeves,"I loved the way this top looked in stock photos. the colors are bright and cheery and it's a great transition piece. but the way the sleeves are cut almost makes them feel like water wings (if that makes sense)? they are stiff and wide and awkward. i've worn this a few times, hoping maybe the sleeves would relax down. they haven't. maybe it will look okay under a blazer for the office or something.",3,0,0,General,Tops,Blouses +861,56,,"I love the paisley print, very soft and comfy, flutter sleeve look is cute,perfect weekend wear.",5,1,0,General,Tops,Knits +872,53,Poorly made,"I wanted to love this. it is so cute and the xxsp, my usual size, fit perfectly. however there was a fatal flaw in the construction. the hem was not sewn properly - very asymmetrical and lopsided. instead of a scoop like shown on the model, it was much longer on one side than the other. i thought maybe it was just how it hung on me, but i took it off and laid it on my bed and i could clearly see that it was sewn wrong. this is going back. i ordered another one (now it's on backorder), hopefully",3,0,5,General,Tops,Knits +872,45,,"This is a closet staple! loose fitting, but lovely. well made!",5,1,3,General Petite,Tops,Knits +57,31,,"Yes, this is a thinner bra, it's almost sheer when you hold it up to the light, but it fit perfectly (36d) and is seamless under even the thinnest tops. i love that its not padded, i feel like it just slightly enhances my natural shape without adding anything more, and i really wish i had bought multiples before they sold out! i can't speak to how it will hold up since i just got it yesterday and i'm wearing it for the first time today, but i'm keeping my fingers crossed that it will last as wel",5,1,0,Initmates,Intimate,Intimates +61,37,,,2,0,0,Initmates,Intimate,Layering +861,58,I love this t shirt,"This shirt has beautiful colors in it. it goes with burgundy, grey, black, brown, blues, and denim. it's a generous cut, and quite lightweight for fall layering.",5,1,6,General,Tops,Knits +872,40,Cute design but unflattering fit,This had a cute design but an unflattering fit for me. it was boxy and made my boobs look droopy.,2,0,0,General Petite,Tops,Knits +863,34,Maybe if it was $30,"This tee is cute, keep in mind the white is totally sheer. but it's huge. i ordered an xxs and it's very loose and drapey, which is likely the style but when did sizing get to unrealistic? also, a totally sheer, basically a sort of fancier cotton tee for $60? no way.",3,0,2,General Petite,Tops,Knits +824,43,Adorable!,"I thought i'd be the first to review for non -size- small ladies... i'm usually between a large and xl in retailer. the large was great.. with room , as this top is pictured. you'll love the details on this colorful, fun top ( ex: buttons on the side). great with skinnies. i bought it on sale, but it really is a special top and worth the price.",5,1,4,General,Tops,Blouses +1189,42,Great summer pants,"These are so much better than i anticipated! they are lightweight for summer, the perfect length (i'm 5'7"" and they are just right with a 2"" wedge), and very flattering. i will be living in these all summer long! i agree with the other reviewer who felt the catalog picture misrepresented them. they do not have a technicolor sheen at all. rather, they are a beautiful, classic chambray.",5,1,3,General,Bottoms,Jeans +824,43,Love this top!,"Nice quality, details, and i like the looser cut (works well on this blouse).",5,1,8,General,Tops,Blouses +861,66,The best tee,"T.la makes the best tees. soft feel, sophisticated color layering, and a body skimming shape -- all retained after multiple washings. versatile, too. other tees fade, stretch out, shrink. not t.la. a gem.",5,1,1,General,Tops,Knits +872,34,Perfect basic,"This is a great little top. a wonderful basic, but the crochet/lace detail adds the perfect amount of uniqueness. it's a soft jersey material that doesn't cling. falls very nicely over the body, flow-y without being too flow-y. i ordered my usual small, and it fits tts. for reference i'm 5'1, 125 lbs, and 34d bust. i did not order the petite since i have a longer torso, very happy i orderer a regular small. will be a great spring and summer top.",5,1,17,General Petite,Tops,Knits +824,47,Mad for plaid,"I hesitated initially buying this because of the unique fit in the neckline and shoulders and because i have broad shoulders. but if you adjust the neck, sleeves and play with the overall fit of the shirt, it works. the boxy airy design has to be paired with something that flows with it (i.e. linen pants) or trusty denim. otherwise you may have a battle on your hands finding a complementary pairing!",4,1,0,General,Tops,Blouses +823,34,Not so flattering.,"I thought this was adorable on the model, but not so much on me. i actually didn't mind it when i tried it on with a long cardigan, but i didn't want to keep it for 1 look. the material felt inexpensive. the shape was very unflattering for an average sized women like myself. i'm 5'8"" and about 160 lbs.",2,0,0,General,Tops,Blouses +863,57,Cute t,"1. i'm 5'5"" tall, 145 lbs, and 38 (36d)-32-40 and the size l fit me perfectly. i probably could have gotten into the m, but i don't like my t's to pull under the armpits or across the bust, and this top looks like it needs room to flow. + +2. the white is very sheer, but a nude bra won't show through. the navy is not see through. + +3. i love the asymmetric hem in the back. + +4. i'm a little concerned that the raw edge on the hem won't hold up in the wash, but i plan on hand washing these anyway, bec",5,1,19,General Petite,Tops,Knits +872,42,Great sale purchase,"I bought this shirt yesterday for 30% off the sale price. i usually wear a m. the store only had s and i didn't want to pay for shipping, so i bought the smaller size. it was loose through the body, tight in the arms. you could size down if you need to. but if you have large arms, i would get your normal size or get one larger. the arm fabric does not have much give. the shirt dips low in the front and back, so it has ample coverage for your mid section. it also would accommodate just about any",5,1,0,General Petite,Tops,Knits +863,36,Great top,"Fun top, 5'4, 135 lbs and i ordered xs. it was too wide and boxy so exchanged for xxs and it fits great. i like the fun slant to the side. not tight on stomach which is great! :) great top.",5,1,2,General Petite,Tops,Knits +863,32,Great unique everyday tee made in the usa!,"Based on the first person's review, i ordered a l at first... then i got it and it kinda fit like a maternity shirt and looked a bit too baggy/sloppy, not as flattering as the picture. i tried using the measurement guide below, based on the bust measurement, and i'm at the low end of the m size, so i ended up ordering the m and s just in case. the s size fit like the picture. i'm glad this isn't slim in the waist and fitted nicely in the shoulders. the blue color is beautiful. if you are more of",5,1,4,General Petite,Tops,Knits +872,38,Lovely top,"Lovely top, flattering and dressy, would definitely get another color if they have it.",5,1,4,General Petite,Tops,Knits +872,32,Perfect basic tee!,"Got this in the white and it fits perfectly. just the right length and enough detail on the shoulders. i'm 5'6"" and 120 (usually an xxs or xs for tops) and the xs fits just right, not too loose not too tight. i like the style since it emphasizes my shoulders and balances nicely with cropped jeans (i'm pear shaped). material is slightly clingy but it adds to the drape nicely (wouldn't work well if it was fitted, but it's not).",5,1,4,General Petite,Tops,Knits +1013,38,Really wanted to love this,"I was so excited to get this in the mail, and so disappointed when i put it on. it had a nice feel to it and fit well when i zipped it up, but i don't really know how to adequately describe what it looked like when i glanced in the mirror - lumpiness along the seams? i don't know if it was a manufacturing flaw or not, but it gave me lumpy-looking hips and then kind of clung around my mid-thigh area. returned it the next day.",2,0,5,General,Bottoms,Skirts +865,30,Great basic,"I wasn't sure about this shirt at first glance, it's difficult to see in the picture but the top of the shirt and the peplum are two completely different fabrics, with the top having a much looser weave. however, it looks great on. the blue color is very saturated and pretty. the fit in the shoulders and arms is stretchy and comfortable. and it hangs in a really flattering and comfy way on my hourglass frame. i'm pretty busty, 36dd i think....i usually have to wear l in retailer tops unless they'r",5,1,2,General Petite,Tops,Knits +824,51,Very pink,On my screen this looked like burnt oranges were mixed with pink but this was all pink & very washed put pinks - looked awful on me as brunette. maybe will work for someone who likes pastels. overall style was also disappointing- just hung. this went back.,2,0,1,General,Tops,Blouses +1189,33,Comfortable,"I think these look great. i found them on the sale rack and at $50 w/ 40% off, it's a pretty great deal. i plan on wearing with low heels. hope they work out. i will show to boyfriend, get his feedback too.",4,1,0,General,Bottoms,Jeans +971,36,Not cute,"This blazer looks great on the model and i have a long torso so i thought it would be perfect. when i got it it looked like a big box and didn't fit anywhere. the shoulder pads were giant and the bottom of the coat was huge. i got a small based on other reviews, but it was way too big. sadly, i had to return it.",1,0,0,General Petite,Jackets,Jackets +872,32,Great!,"I know i'm going to get a lot of wear out of this t-shirt this summer. i have it in white, and it's not too see through, which is what i always worry about when i wear white shirts. it's basic but then it has lace on the shoulders that adds something extra. i love its drape--it's not too form fitting. on me (i'm 5'2), it tends to be a bit long, but i like it. the shirt being cotton means that it's super soft. as far as washing goes, best practice is to machine wash and hang to dry--i'm afraid of",5,1,6,General Petite,Tops,Knits +824,49,Tricky - would work on some people,"Such a cute plaid print, i couldn't resist ordering this but all of the petite sizes were sold out. i went with the xs based on other reviews and it was just too huge. i ended up returning it. i think the xs petite may have worked but it's sold out so i'll never know. it is boxy so you may need to be careful if that fit works for your body or not. the colors are magnificent.",4,0,0,General,Tops,Blouses +824,34,,"Looks great on the picture but when it arrived it was a great disappointment, both the colors and style. the material seems great quality but it's stiff and scratchy, the style is very boxy, and as another reviewer said, just hung. i'm a brunette and the colors looked terrible on me. back it goes.",2,0,0,General,Tops,Blouses +898,36,I love the 80's!,"Once or twice a year, retailer dons out a true 80s masterpiece! the sweater is sturdy, bright and bold. quality and craftsmanship are amazing and the fit is tts! i cannot wait for the cooler weather to wear this beauty with some skinny jeans!!",5,1,1,General,Tops,Fine gauge +872,29,Great simple shirt,Tried this on in the store and fell in love. it's such a simple shirt but the details are special. runs tts. will get a lot of use out of this.,5,1,0,General Petite,Tops,Knits +824,64,Could not resist this plaid!,"Spotted this in the local store last week & just had to try it on! it is a soft cotton gauze texture which is slightly stiff but in a good way. my usual size small was too big. the oversized look was fine from front & back view, but in the side view the bottom stuck way out. the xs was much better so i took it home. its very comfy & looks great with dark blue denim. 5'3"", 118#.",5,1,15,General,Tops,Blouses +1035,54,,"I tried on these jeans in the store because they were so soft, but had to order my size. when they arrived, the wash on the jeans was worn enough that they looked a little dirty. i prefer to have a dressier jean in a dark wash so i am returning them. my normal pilcro pant size is 27 and these were a little large in the waist. not sure if they would shrink with washing.",4,1,1,General Petite,Bottoms,Jeans +824,44,Go to pattern,"I?m mad for plaid but usually for smaller pattern and winter colors. somehow, this top was love at first sight. it looks simple but it?s not. it?s unique in its own way (look at the back, the slightly puffy sleeves, the side slit), and the colors are such a great mix that go with everything. the stylist opened up a couple of side buttons and tied the material to a knot, so cute. i purchased the xs and the fit is the same as shown online (i?m 5?2?, 34b, 26 waist, 36 hips). i know the price seems",5,1,6,General,Tops,Blouses +1189,38,"Cute pants, nice fabric, runs small",Can't pants. the material is lightweight and perfect for summer. however i felt they were cut narrow in the hips. i am a solid size 30/8 and i couldn't get the 30 over my hips.,3,1,5,General,Bottoms,Jeans +872,65,Great tee with beautiful drape and crochet detail,"This pretty tee looks wonderful on! the cut and drape really flatter a woman's shape and will be versatile for pairing with casual or work outfits. i love the soft feeling, although it is not cotton as posted online.; the tag inside the shirt says: 95% rayon, 5% spandex. it doesn't really matter, but it's not what i expected. the rayon/spandex is very soft to the touch, has a beautiful texture to it and certainly feels comfortable. i really love the lower back hem at the hips, so flattering! i d",5,1,6,General Petite,Tops,Knits +1118,42,,,5,1,0,General,Jackets,Outerwear +872,37,Love the details,Great shirt that is basic with a little something extra. meadow rue does it again...i swear i buy everything they put out...,5,1,2,General Petite,Tops,Knits +1100,35,Beautiful!,"I love this dress! it is comfortable and pretty, well made and classic. it edges toward the larger size however it is supposed to be big. i got a small and at first it looked too big but the shoulders are perfect. i feel like sissy spacek in this gown and you will also!",4,1,1,General Petite,Dresses,Dresses +971,33,Love this jacket,"I purchased this jacket on pure impulse. to be quite honest it reminds me of a coat my dad used to wear, and i was halfway on the way to retailer when i decided to try it on. my goodness it's perfect. it's slightly oversized, delightfully 70's and makes everything look good skirts, pants, dresses etc. buy it, especially off the 70's have a special place in your heart.",5,1,0,General Petite,Jackets,Jackets +861,63,My favorite tee,"This tee is my favorite this year! it just looks great on! not fitted, but not loose either. i love it so much i have it in white, black, pink, light green, gray, slate blue and holly. the holly was my least favorite color (i thought it would look a little 'greener') it is so dark, you almost have to see it in the sunlight to be sure it is green. i ordered it online from the store and i kept it just because... + +i love the fact that it can be machine warned and dried without shrinking. i don't dr",5,1,0,General,Tops,Knits +38,24,More compliments than i could have imagined,"I knew when i bought this bralette that there was something special about it...the intricacy of the design is really pretty as is the style...but seriously - every single time i wear this bralette out (paired with a cute top or dress) i get tons of compliments from all of my friends. i never thought a bralette would spark so much conversation! aside from that it is super durable...i've had it for a year now, have washed it several times, and it is not stretched out at all or frayed aka it is gre",5,1,0,Initmates,Intimate,Intimates +1035,34,Super cute,Perfect crop jeans with just a tiny flare. i'm a size 8 and the 29s fit perfectly.,5,1,2,General Petite,Bottoms,Jeans +830,46,I don't think this is an off the shoulder top,"Bought this and tried it on in the store. when i first tried it on, i thought it was off the shoulder but the elastic is so tight, it hurt within a minute of having it on. i got my usual size xs and it fits fine if i wear this as a regular top and not off the shoulder. it has a thin elastic, not the thicker band. maybe some could pull this off for off the shoulder but in my opinion, it's not comfortable that way. i bought the other white off the shoulder top from retailer last month and it's fine",4,1,5,General,Tops,Blouses +38,64,,,5,1,0,Initmates,Intimate,Intimates +861,56,Love this shirt,"The fabric is thin, though. you better wash it in a bag or the washing machine will tear it up!",5,1,0,General,Tops,Knits +1123,33,,"I'm very pleased with this jacket! i've never owned a ""vegan"" leather anything, so i didn't know if it would show up cheap looking or smelly.. but to my surprise, it didn't have a ""smell"" or that shiny cheap look. i'm so glad i headed the other reviewers advise and i sized up, my typical size would have been to tight and short! i'm excited to wear this with dresses and jeans this fall! i bought the ""honey"" color and it's more like a cross between beige and blush(a slight dusty pink hue)! i love",5,1,1,General,Jackets,Outerwear +830,36,Fun trend splurge,"This top is my fun splurge for the summer. it's a little flowy but not over the top. and the quality is great. + +i'm 5""7, 120lb with really broad swimmer shoulders. i preferred the xs because it was a little bit less flowy on the sides than the s. but the length on the xs is dramatically shorter than s, so i went with the s.",4,1,0,General,Tops,Blouses +1123,41,"Nice, unfortunately didn't work for me","I was so excited to receive this jacket - have been looking for a ""leather"" jacket for a while and thought this would be the perfect one. unfortunately, i have broad shoulders and it seemed a little tight. i got my normal size s based on retailer shirts. maybe if i got the m? although, the s fit well in the waist, so... also, my small chest (32b) didn't fill out the darting in the chest area. one last wish, was that it was a little longer. +as with all hei hei, the inner lining was very cute. ove",4,1,20,General,Jackets,Outerwear +1094,39,Heavy material,I looked forward to this dress. it's a lovely design. it's a heavy material that doesn't have the most flattering fit. the green lace has snags along the hemlines which is a disappointment. i'm returning the dress.,3,0,0,General,Dresses,Dresses +830,39,Lovely in lace,"Absolutely stunning design with the eyelet lace top! it's a very romantic, comfortable top that has a flattering fit. i'm so glad that it has lining so i don't need to be concerned about exposing myself to anyone. it has a light fabric so it's very comfortable in the summer heat and humidity in florida.",5,1,1,General,Tops,Blouses +1123,29,Perfect fall jacket!,"I've been looking for a leather/faux leather jacket for ages, and this one is perfect! it's just a tiny bit edgy, but more feminine than most leather jackets, which is exactly what i was looking for. i typically wear xs, but after reading the reviews for this jacket that said it runs small, i ordered both a small and xs to try on. the small was way too big, and the xs fit perfectly - it can be worn over a light layer or over a chunky sweater very comfortably, without the arms getting tight. i th",5,1,0,General,Jackets,Outerwear +1123,39,Like enough,"This is a nice everyday jacket to wear with dresses, jeans, skirts, anything. i ordered the only color that had petite left, the plum. i liked it, but the fit was a little boxy, even as xs petite. length was nice, however. color was also a nice neutral, though it says plum, it is a darker brown. for reference, 30dd chest, 26.5 in waist, 115 lbs - review on xsp.",4,1,1,General,Jackets,Outerwear +1035,48,,"I love how these jeans look on. tts, adorable. i exchanged my first pair due to stitching coming out in the back right pocket. pair #2 -the stitching came out in the exact same place. this seems to be a problem with the quality/sewing. the fact that the stitching is gold and decorative as well as functional means it will keep unraveling until the jeans are ruined. 2nd pair has to go back. too bad.",2,0,0,General Petite,Bottoms,Jeans +1123,37,,"So happy with this jacket! i have looked for what feels like forever for a vegan leather jacket that is (1) long enough in the sleeves and (2) wide enough in the shoulders without being bulky through the body. i found it ran true to size. my usual large for well, xl was a little big. the material is beautiful and soft and the colors are great. i ordered the honey and cognac and love them both.",5,1,0,General,Jackets,Outerwear +1094,35,Gorgeous dress,"This is a stunning dress. fits true to size, very high quality, has a very flattering shape, and the lace embroidery is gorgeous.",5,1,0,General,Dresses,Dresses +1035,52,Super cute but no flare,"These are adorable and very very comfortable. i'm loving the flattering mid rise. +as stated before there is no flare as depicted in the photo but still super cute! +nice with flats, easy to dress up with some sexy heels.",5,1,0,General Petite,Bottoms,Jeans +1123,21,Feels amazing!,"Almost perfect! this jacket doesn't have that weird vegan smell. it's soft, smooth, and very high quality. this jacket is also a nice surprise for us busty ladies. i'm a 32ddd and the m fit nicely, no squishing (as the other reviewers have said, the chest has room!). + +i got the gray, and i loved it it's soft tint. i returned it because the lower band of the jacket sits right at my widest part of my torso, my post-baby belly. the jacket is sort of short like a peplum, and i want to hide the st",4,1,3,General,Jackets,Outerwear +1094,33,Beautifully made dress,"I am 5'4, 34b, 106lbs and the 0 fit me perfectly. it comes just above my knee so i could also have worn the petite and would have been fine if it was shorter too. i rarely wear green but this shade is so pretty.",5,1,0,General,Dresses,Dresses +1094,40,Great dress!,"I love this dress! i am 5'3"" 117 lbs and ordered the size 0. the fit is excellent and is very flattering. the color is more kelly green than what is shown in the picture, and is lovely. i wore it to my 40th celebration and adored wearing the dress!",5,1,0,General,Dresses,Dresses +265,65,,I'm very disappointed in the quality. it seems more like a pajama than a tunic. definitely not worth 100.00 dollars. i plan to return it.,2,0,14,Initmates,Intimate,Sleep +1123,31,Awesome jacket!,"A friend of mine has several of these jackets and i always asked ""where did you find that from?"" the answer? retailer vegan leather jackets! i bought 2 when they were on sale and i love both (grey and dark brown/purple). they are super comfy and surprisingly warm. can dress up or dress down for any occasion. i can't wait to buy more!",5,1,0,General,Jackets,Outerwear +871,47,,The material that was used to make this top is very thin and poor quality. it feels like the type of material that will disintegrate after one wash. i normally wear an xl and this top is huge and not flattering. returning asap.,1,0,14,General,Tops,Knits +1123,34,,,4,1,0,General,Jackets,Outerwear +861,60,,Great soft tee. got the blue and really love the color.,4,1,0,General,Tops,Knits +1123,39,Best jacket!!,"I've been looking for a leather or faux leather jacket for years and years and this is the first one that i've ever loved so much! the style is edgy and modern, yet still feminine and flattering. love the cut of the jacket, so flattering! looks amazing with dresses, skirts or denim. i got the dark red color, and it's much more brown and neutral than it appears online. i would love to get the tan color as well, but it's currently sold out in my size. the faux leather looks believable and expensiv",5,1,3,General,Jackets,Outerwear +830,59,Too big!,"I ordered a small, which is my usual retailer size, but this was like a tent on me. it's fine if you like things super super blousey but that wasn't what i was looking for. also it is very long, a very weird amount of long. also there is only eyelet on the front. the whole back of the shirt is just plain fabric. i like the idea of this shirt but all in all it was very disappointing.",2,0,3,General,Tops,Blouses +1094,70,Beautiful dress!,Just received this dress in the mail. it's stunning!! the lace is just beautiful. i ordered two sizes and had to size down a bit - the fit is generous. can't wait to wear this to my rehearsal dinner next week.,5,1,6,General,Dresses,Dresses +830,40,Runs huge,This top runs 2 full sizes large. had to send back and didn?t want to bother with getting a new one.,3,0,2,General,Tops,Blouses +1123,83,Light weight for fall,I really like the soft and very wearability of this vegan leather jacket. my only wish was for the jacket color to have a bit more rose tone to it as the color description implies. overall a definite keeper!,4,1,0,General,Jackets,Outerwear +1035,40,Had high hopes,"Slightly disappointing. i wanted the picture -- the full-on flare. it has very little flare. that said, they're still comfortable jeans, so i'll keep them.",4,1,0,General Petite,Bottoms,Jeans +830,56,Cute summer top!,"I bought this at the store today and it's the perfect summer top! i'm not going to pull it off my shoulders, so it's a little shorter than shown here. but it goes great with capris and skinny jeans and i plan to take it with me to italy. it will go with so many things! very well made, thickish material.",5,1,3,General,Tops,Blouses +1035,61,Cute jeans,I really liked these jeans. i had to return though. they run small. i normally wear a 27 and could have gone for a 28 in these. maybe it was because i went for the petite. they can run a bit smaller.,4,1,2,General Petite,Bottoms,Jeans +1123,48,Love this,I got the jacket in the gray. it's a pretty pretty shade of gray. it's soft and feels really good on. it's short. like hits at the waist. i have long arms and the small for perfect which i was very pleased.,5,1,0,General,Jackets,Outerwear +1123,29,Gorgeous!,"I'd been looking for a replacement for my faux leather jacket and this has surpassed my expectations. well-made, lovely color, very soft, flattering cut. it runs small so i sized up from my usual petite xs to a petite s. it's warm and the lining is very pretty. hopefully it'll hold up to daily wear. i'd definitely recommend it as a great jacket to take you from fall - spring. i got the plum color.",5,1,0,General,Jackets,Outerwear +830,45,Very well made top,I tried this on today and loved it. it is so well made and stays down off the shoulders without any struggle. it is lined in the front and the back is billowy and gorgeous. a timeless and well made piece.,5,1,3,General,Tops,Blouses +1123,38,Cute and will go with everything!,"I have a hard time with jackets fitting because i have chubby arms compared to the rest of me. i like the way this fits and it doesn't pull when i try to cross my arms in front. i feel like it's good quality and hopefully won't flake the way 'vegan' (i.e. fake) leather can. and i think i can throw it over a top with jeans or a dress and it will be cute and versatile. i also like the length that hits right at my hip. i'm 5'2"" and don't like when jackets like this are are too long.",5,1,0,General,Jackets,Outerwear +1123,22,Fit's perfectly!,Love this jacket!got my usual size medium and is perfect! beautiful quality,5,1,0,General,Jackets,Outerwear +1094,64,Another exquisite moulinette soeurs,"I have many moulinette soeurs creations. all are true to my size, breathtakingly beautiful, unique, made well. i ordered this dress, and i am very excited about receiving it soon. the front neckline is round, and it becomes a v in the back.",5,1,5,General Petite,Dresses,Dresses +1094,48,Graduation dress,"Bought this for my daughter who is graduating this year. looks much better in person then it does in the photo. she is 5'7"" and 135lb. we bought the size four. great length on her. green adds a nice pop of color. she loves it.",5,1,0,General Petite,Dresses,Dresses +861,33,,These shirts are perfect for a casual day. basically t.la shirts are my daily go to. i usually wear a small but i buy these in medium because i like the looser fit. a little pricey so after buying 1 at full price i waited until they were on sale to buy more.,5,1,0,General,Tops,Knits +871,45,,"Love this top! not too low cut, drapes nicely and the material is thin enough but not so thin you have to wear a tank top. it does seem to run on the larger side.",5,1,2,General,Tops,Knits +1094,28,,"I have an hourglass shape and this dress is a good fit. i think this dress looks better in person than it does in pictures. however, i'm concerned about washing it with that stark fabric and color change.",4,1,1,General Petite,Dresses,Dresses +1094,56,,If you look closely at the pictures this dress is shown 2 different ways. one with a lace covered v-neck and one with a rounded neck. which is it retailer? don't know about the size but i had to answer the question. i won't order the dress until i know exactly which style i'm ordering.,3,1,33,General Petite,Dresses,Dresses +1094,66,Beautiful dress!,I agree the pictures are confusing. the front top of the dress is not cut out as some pictures seem to indicate. this is such a great dress! it has a great lining underneath and is really flattering and nicer/dressier looking in person than i imagined it would be. i think it fits true to size. i either wear a 4 or a 6 in most retailer dresses and the 4 in this dress fits me well. i'm planning to wear this dress to my bridesmaids luncheon! i definitely recommend!,5,1,2,General Petite,Dresses,Dresses +871,50,,,2,0,0,General,Tops,Knits +1094,34,Not as depicted,"The catalog shot and model shot are completely different. it's like not even the same dress. the neckline, color, the quality of lace",1,0,13,General Petite,Dresses,Dresses +1035,45,Always love my pilcro jeans,"I am consistently a size 27 in pilcro jeans and these are no exception. these are more ankle length than cropped on me as i am 5'3"" but i still love them. i found them to be true to size. because they don't have much stretch, they are a little snug in the thigh at first but the denim gives a bit throughout the day. the shorter length with the little flare is so versatile - they look great with a dressy top and heels and just as good with a cozy sweater and flat chelsea boots. love pilcro!!!",5,1,0,General,Bottoms,Jeans +1035,28,Great pair of jeans!,These jeans have become my new favorite pair! i bought two pairs during the clearance sale and wear them often. i love the metallic accents near the front pockets and the dark wash can be dressed up or down.,4,1,0,General,Bottoms,Jeans +828,36,,I really liked the style and fit of this shirt but i'm giving it a 2 because i shirt should last longer than 6 months. i've taken it to the cleaners 2 times and the fabric behind the tag beneath the collar has fallen apart and there are holes.,2,0,0,General,Tops,Blouses +1123,39,,"Love this so much because it's so soft, pliable and fits wonderfully with all of my fall wardrobe. i ordered the plum color, which looks brown to me. was advised to size up and glad i did. i bought large petite and my stats are 5'3"" 135# 38/28/35.",5,1,0,General,Jackets,Outerwear +1094,39,Sweet,"I have no where to wear this pretty spring time inspired dress. fits just as pictured, except that i'm short. i ordered the 10p so my 36dd chest and wide rib cage fit comfortably. i'm saving this dress for easter or a fancy bridal shower.",5,1,0,General Petite,Dresses,Dresses +1123,33,,Love this jacket! it is incredibly soft and expensive looking. i love the details with the zippers on the sleeves and very cute lining inside the jacket which is not pictured. i ordered my usual size xxsp and it fit great. this brand does run small so if you are between sizes or prefer a looser fit you should order a size up.,5,1,7,General,Jackets,Outerwear +1035,47,Funky fun flares,"I saw these in the sale section on line and just loved their look. they fit great and have a cute little flare at the bottom. i like the reinforced inside seams which means they will last longer. i've been wearing them with my shorter boots and booties this winter. i have slim legs and they aren't too tight and not too loose. my inseam is a 33 so they may be a tad short on me, but i love them.",5,1,0,General,Bottoms,Jeans +38,50,Perfect fit,I love this bralette. i have it in other colors as well and it is always the one i go to when i want comfort.,5,1,0,Initmates,Intimate,Intimates +1123,47,Adorable jacket!,"I need to remember that this brand runs small. i ordered the xxsp and i usually have a little room with jacket, but this fits snug. i have one from last year and it's the same. fits snug. if you want extra room, order a size up. the quality is nice, i love the camel brown color. it's a keeper for me, just won't be able to wear a sweater under it.",4,1,13,General,Jackets,Outerwear +1094,35,Absolutely love this dress!,"I admittedly watched this dress until it went on sale, then was lucky enough to find it! i couldn't find my normal size (8p), so thought i would take a chance with the 10p and it fit perfectly! i haven't tried on the 8p, but i'm guessing it would have been a bit snug. the dress is comfortable and feminine, and i absolutely love it. i know i will wear it all summer!",5,1,0,General Petite,Dresses,Dresses +1123,36,"Nice cut, runs a little small","I love this jacket. i have not worn it yet, as the weather is still very warm, but i am looking forward to wearing this a lot this fall. the cropped cut is very flattering and the vegan leather very soft, i followed the other reviews and ordered one size up and it;s perfect. i am normally a size 4 and went with he medium. the plum color is quite neutral in person. i also love the printed lining. i did notice quite a few long threads around the lining sewing, i hope this is just an overlooked pos",5,1,0,General,Jackets,Outerwear +265,32,Great as a nightgown,"So i can see why this might not be an amazing shirt, it runs a little large imo and its long. i'm 5'5"" and its almost to my knees, but......as a nightgown, it's amazing! super comfy and its now my new favorite pajama dress. lol. i might wear it as a shirt too, but most likely just jammies!",4,1,0,Initmates,Intimate,Sleep +1094,43,Beautiful,"There is some confusion in the first few reviews over the image, but the dress has a medium green lace and does not have a cut out at the front of the neck. it runs more true to size than some dresses at antrho -- my size is a small 6 petite (meaning that i often end up in a 4) and the six is perfect. + +the dress hangs gorgeously and fits fabulously. the zipper is a bit hard to get through the seams and lace, but worth it. + +it has a formal feel, but i think it can be made casual with shoes a",5,1,1,General Petite,Dresses,Dresses +622,33,Perfect cami,"I originally ordered the white in this cami, but after receiving was absolutely obsessed with it! i ordered the 2 other colors. the fabric is so soft and the buttons are perfect as i just had a baby and will need easy access for nursing. love this cami!",5,1,0,Initmates,Intimate,Lounge +907,27,Cute but color different than pictured,"I purchased this sweater in the grey color and loved it so much i decided to buy it in purple as well. however, when i received it, the color was much much darker than pictured and even looked black sometimes. decided to return :/",4,1,0,General Petite,Tops,Fine gauge +622,28,,"Very comfortable top, exactly what i was looking for on the hotter summer days. the white is a bit sheer, but a nude strapless worked just fine for me. i also bought the pink and it is a very pale, soft pink. the material is super soft like typical cloth & stone products.",4,1,0,Initmates,Intimate,Lounge +870,47,Beautiful beading-too boxy,"Detailed beading was beautiful. it's too boxy, way to much fabric in the waist/bust and tight on the hips. it doesn't fall boxy/boyfriend like. the grey fabric is not soft and is lighter in color than the picture. was hoping this would be my go to sweater for warmth on casual days-bummed.",2,0,1,General,Tops,Knits +870,51,Disappointed,"Thought this would be my goto fall ""dressy sweathsirt."" it ran smaller than expected and it just didn't have the drapey sweatshirt shape that i prefer. the detailing on the arms and waistband is to die for though.....",3,0,3,General,Tops,Knits +414,61,,"Very pretty, romantic",3,0,3,Initmates,Intimate,Sleep +825,26,"Horrible quality, no structure",I recently purchased this blouse on their 40% off sale in white. i was hoping for a crisp white structured blouse. i did read all the reviews and thought i would give it a try anyway. it is awful. there is no structure or shape but the quality is the reason i am returning. it feels like a napkin or thinner. not even worth the extra sale price. i will be returning.,1,0,0,General Petite,Tops,Blouses +832,48,Dainty & pretty plaid,"Very cute plaid button down that is tts; i am busty and the l fit just right with enough room without the buttons doing the splits like most shirts. the dainty details & material of this button down makes this stand out from other button downs that look like flannels--which this is not. it is woven of a fine material enough to be able to wear a camisole underneath, it is not a flannel shirt. colors are vibrant and the purple in the back really is quite attractive. happy i got this on sale & sale",4,1,0,General,Tops,Blouses +907,33,Great little sweater!,"This was a last minute addition to my online order to hit the free shipping! anyway... this ended up being my favorite item from my order! i love the way it wraps and also lays open. i didn't realize that the fabric was a mix of two different knits, but i think it adds nice interest. i ordered the red,which is a nice, deep red...not an obnoxious fire engine red. it's very complimentary to my skin tone and dark hair. i run between a small and medium, but chose the medium since it looked like it c",5,1,0,General,Tops,Fine gauge +870,37,,"Although i'm returning, this is a cute top. the embroidery design on the front isn't really my style. it's a bit aztec-y for me.",4,1,1,General,Tops,Knits +984,50,And it has pockets!,"This jacket is very well made. the denim is quality and very soft. the other fabric isn't as heavy as the denim, but not so much that it feels like a mismatch when wearing it. i was surprised to find slash pockets by the side seams. on the interior, the slash pockets are sewn down and deep so that you can use them as pockets too. handy for your phone. fits true to size maybe a tiny bit on the generous side like a jean jacket should be. love it.",5,1,0,General Petite,Jackets,Jackets +872,35,,Cute shirt but not worth the price. i did purchase it at 20% off but would have waited for a better sale. the yellow is a nice fall color,3,1,0,General Petite,Tops,Knits +622,38,Cute summer top,Love this top! it's very simple modern design can go with many different bottoms and the soft pink color gives it a slight distinction from a plain white tank. love it!,5,1,0,Initmates,Intimate,Lounge +984,62,Just enough fashion blended with lots of function,"I really like the pilcrow denim military jacket. fabric is comfortably soft, but the jacket is still structured. love the tie detail in the back and the contrasting sleeves. i wear either a small or medium. i tried both sizes with this jacket and decided on the medium to allow for an extended season wear.",5,1,1,General Petite,Jackets,Jackets +984,32,Great denim jacket for a non-denim jacket girl,I have never loved denim jackets because they always have seemed kind of basic or boring. this one is edgy and the design is amazing. it can be worn with anything and will go through many seasons. i found the fit to be on point. my normal medium fit perfectly.,5,1,1,General Petite,Jackets,Jackets +984,27,New favorite,This jacket is perfect!! the denim mixed with the military style is such a good combo. it fits great and is very comfortable. the little ties in the back are a cute addition.,5,1,1,General Petite,Jackets,Jackets +622,26,,,4,1,0,Initmates,Intimate,Lounge +622,30,So cute!,"I ordered this in yellow after the size small in store didn't fit. it's such a cute summer top, perfect with cropped jeans! i'm a 32b and usually a size small but had to size down. i could still see the top of my strapless bra in the front so i wear a lacy bandeau with it and it's super cute. because of this though, i wouldn't pay full price so i'm happy it was on sale!",5,1,0,Initmates,Intimate,Lounge +622,31,Good summer top,"Fits nicely, casual and lightweight for the summer and i like the look of the cross straps in the back. no complaints!",4,1,5,Initmates,Intimate,Lounge +825,57,I lovethis blouse,"I hesitated to buy this after reading the earlier review, but went ahead anyhow, and am glad i did! i ordered the white in a small petite, and it is as cute as can be. it is crisp and true white, not off- white. there is a large pleat on one side of the front to give the blouse some interest, and there are openings on each side which allow the blouse to swing a bit but do not open up to reveal skin. it is not long, but by no means is it cropped. it is really sweet with slim jeans or slim printed",5,1,4,General Petite,Tops,Blouses +872,31,Details and versatility,This top is easy to dress up with a blazer or wear casually with jeans and trainers. so many nice details and a great fit!,5,1,0,General Petite,Tops,Knits +622,28,Pretty summer top,"This is a really soft, nice, summery top. i love the criss-cross detail on the back, as well as the button down. it fits looser around the stomach, but not in a trash-baggy way. + +it mostly fits true to size; the only issue is that the top button doesn't leave a whole lot of room if you have boobs at all. i wear a 34b -- pretty normal, not large -- and usually wear a small. i've found that the top button buttons fine, and looks good when i'm not moving, but it pulls a little when i move around",4,1,3,Initmates,Intimate,Lounge +984,31,Everyone needs one!,Absolutely love this jacket!! i convinced my girlfriend to get one too; we could not be more pleased. slightly oversized throughout the body - this is true no matter the size you buy - with great contrasting sleeves and back. the side ribbons can be adjusted to bring in or let out the waist. perfect spring/summer weight. can be worn with a sweater/sweatshirt underneath. it's a feminine takeover of a boyfriend jacket - looks gorgeous over a casual dress or great with jeans/chinos. perfect for mus,5,1,4,General Petite,Jackets,Jackets +1001,66,So cute but not on me,"This is a beautiful skirt. great, soft, draping fabric. fringed along the edges. i ordered size large, which was an okay fit, perhaps a bit wide but the drawstring helps at the waist. because i carry my weight in the tummy, this made me look wider than i am. as an elder, i just couldn't handle the length which hit me right at the top of the widest part of knee. i have great legs but my knees aren't their best feature. so sadly, returned but i do recommend.",5,1,0,General,Bottoms,Skirts +984,65,,"I have not owned a denim jacket of this kind in...15 years? i have a wonderful pilcro chambray jacket with a military cut from last year, but this kind of boxy, straight up denim jacket cut has not been a part of my life for a while. however, i was in a store last weekend and with the additional 25% off, i thought it might be wise to give this a try. i'm so glad i did. i've now tried it over two fairly girly dresses, with tights and booties (it's not exactly spring in boston yet), and i love it.",5,1,2,General Petite,Jackets,Jackets +907,22,Versatile,"This is a great sweater. it can be worn ""wrapped"" as on the model, or open like a cardigan. it is a lighter weight knit, perfect for how warm this winter has been. i love the deep purple color. normally between a small and medium and went with the medium in this sweater.",5,1,2,General,Tops,Fine gauge +622,28,Wanted to love...but,Bought this cami/tank on sale which i'm glad but it has a flap underneath like a bralette but not fitted..it kinda just drapes under the cami...the problem is it's not thick enough to offer the coverage you would want under a white tank ...but it was also too short so it caused a visible line underneath that showed through.that was higher than the bottom of my chest ..so it gave the appearance that i wore the wrong bra/undergarment...it simply looks awkward ...not sure if it would've been better,2,0,10,Initmates,Intimate,Lounge +907,48,Red,"Got this in purple and love it! ordered red and silver and only received red so far, but had to return because it was oddly shaped and didn't fit well like the purple. not sure what happens. maybe miss sized?",1,0,0,General,Tops,Fine gauge +1022,50,Different type of jean look,"These are really nice jeans (i am a jean fanatic). some ""patches"" are faded others are dark with still others with stitching across them. very distinctive and nice. they are truly a boyfriend fit...so, if you them big, they are. ag makes very nice jeans both in fit and quality. i buy other brands, but not often...",5,1,1,General,Bottoms,Jeans +984,37,Pilcro is king at denim jackets!,"I've owned a number of pilcro denim jackets it in my day. not because they've ever needed to be replaced, but because i'm obsessed with the fit, the color and the style. when i saw this one i knew it would be no exception! this jacket is even cooler looking in person. the fade on the denim is totally perfect. not too dark, not too light...and not so distressed that it looks sloppy. the denim is soft just like all other pilcro, and the fit is a dream. what i love the most is the interest in the c",5,1,5,General Petite,Jackets,Jackets +949,28,"Super cute, unique coat","I saw this in store and had to try it on! it is really cute. i love the different textures and the red drawstrings. it fits well, although i am somewhat between the small and medium sizes. i went with the medium in case i want to wear a bulky sweater with it. really cute and i have never seen a coat like it!",5,1,0,General Petite,Tops,Sweaters +622,28,,,4,1,0,Initmates,Intimate,Lounge +872,69,Cute shirt but a little tight,"This is a very cute shirt with great details. however, it runs a little bit small. not as full cut as it seems.",3,1,1,General Petite,Tops,Knits +907,37,Love the color,"I love this sweater! i'm very sensitive to fabrics and this really doesn't bother me too much. it's soft, but just a tiny bit scratchy. but the color is a rich purple and the flexibility of being able to wear it draped or not is a nice touch. it comes right at waist length....little on the short side if you want to hide your muffin top, but otherwise a winner all around.",5,1,0,General,Tops,Fine gauge +907,39,Two ways of wearing this cardigan,"The fabric is soft and the wine color is rich and a good alternative for black. i love it so much and bought the grey one as well. you can wear it open or button up like on the model. great layering pieces. i am 5'3, 120lbs, 34dd bra and take this in size small.",5,1,1,General,Tops,Fine gauge +1031,25,Legs for days..,Amazing jeans!! without pockets on the front there are no weird lines like there are on other white jeans with pockets. the high waist is extremely flattering! perfect for spring and summer!,5,1,6,General,Bottoms,Jeans +870,45,,"I wanted to love it, but it's pretty pricey for a sweatshirt & the key hole in the back with the bright pink ribbon just looks odd. the stitching & beaded detail around the bottom hem & the cuffs is gorgeous, but the sleeves were way too long on me and just looked silly. unfortunately this will be going back.",3,1,1,General,Tops,Knits +1031,64,Love the fit but not the length,"I am usually a 28/29 in skinnys. mih usually runs small so i ordered the size 30 knowing the length wld be too long. well the fit is great. i am a little curvy w/ slender legs. the size 30 sits just below my navel, snug throughout hips & thighs, then gradually begins to flare below the knee to the bottom. super long, will have to cut off abt 4-5"" to suit me. i don't wear sky-high shoes. i wear low to flat sandals in summer & medium heel booties in cooler weather. maybe i'll cut them & try them a",4,1,1,General,Bottoms,Jeans +870,59,"High-end, throw and go sweatshirt","Yes, this is a sweatshirt, but one that you can wear in a a variety of settings. it's a little boxy, but i can fit a bright colored t-shirt underneath during the cooler season. be warned, the band around the bottom runs snug, which wasn't a problem for me because i have narrow hips.",4,1,1,General,Tops,Knits +984,61,Great versatile jacket,"I saw this jacket in a store and wanted it right then and there. i bought a shirt and scarf instead but it was on my mind. when i saw it on sale i grabbed it. the fit is a little boxy but the length was perfect! not too short. the small amount of spandex is so comfortable. it is versatile because the green arms can go with colored jeans well. i am 5'4"". i can wear a med or large. i bought the large. it fits perfectly to layer short or long sleeves. not a typical denim jacket. looks great over a",5,1,2,General Petite,Jackets,Jackets +622,37,Great versatile tank,"Fits well, super soft and very flattering. great for layering and for dressing up or down. highly recommend!",5,1,0,Initmates,Intimate,Lounge +907,47,,"I had been eyeing this sweater since it came in for the fall mostly because of the beautiful purple color. it finally went on sale and i scooped it up. like most reviewers, i luv that you can wear it two ways. i prefer to wear it closed as i do not have the slimmest waist and this sweater hides this well but it looks just as good open and drapes well on the sides. this sweater looks a lot better in person than online like most of the retailer sweaters. i have hand washed this a couple times alread",5,1,0,General,Tops,Fine gauge +622,21,,"This shirt is tough for me because i loved the front, which fit nicely, but i'm petite and the back had a giant extra piece of fabric that bumped out because of the cross straps, i wish it wasn't so wide so i could have bought it!",3,1,0,Initmates,Intimate,Lounge +993,57,Cute & versatile,"This skirt is about an inch longer on me than on the model in photo (i'm 5 ft, ordered petite) but the length actually works. i have a bit of a tummy, so ordered size 4 - fits great. really love the colors - so many tops will go with this skirt, so it will be easy to vary the look.",5,1,2,General,Bottoms,Skirts +860,44,Almost great,"I'm desperate for cute patterned shells to either layer or wear alone. i wanted this cute print to work - and it can, but it's just not great. the material is almost spandex-y, which is a bit weird. the only place it ran a bit small on me is the length of the straps, making the neck and the arms higher than i like. if i go up a size, it might be too much fabric and pleated swing around the waist. so close!",4,1,2,General Petite,Tops,Knits +1126,82,Houndstooth,"This an absolutely beautiful quality stylish coat but through no fault of the coat, i had to return it because i looked like a bear in it. i'm too short and too round around the middle for this type check and this type material. i wouldn't want to discourage anyone from trying it.",5,0,0,General Petite,Jackets,Outerwear +862,64,Easy tank and perfect price!,"This tank is an easy piece to add into your summer wardrobe and its amazingly affordable. i don't think the material is too think like the previous reviewer. i chose the petite size and it sits well at the chest and is a great length. not too long, but still able to front tuck. i bought two colors and am interested in all the rest!",5,1,3,General,Tops,Knits +860,44,Love!,"I'm happy to say i got this on the sale rack but had been eyeing this long before. it is a flattering fit on me in size large. i just love the colors in the print! also, the style is not a basic shell but a very feminine cut. the skinny straps are also a very nice touch. i plan on wearing this with my long white linen skirt, denim capris or with shorts. i think i will also opt for a solid cardi or scarf. this is just so pretty!",5,1,0,General Petite,Tops,Knits +993,60,Colors are stunning!,"This is the perfect pencil skirt! the pattern is flawless! +the top shown with it here online is outrageously expensive! i paired it with a lace turquoise top that retailer has in stores and you can also wear it with a wine colored top. i would not wear it with black because you just lose the stunning colors. +if you love fall colors this skirt is perfect!!",5,1,2,General,Bottoms,Skirts +1126,67,Awesome retailer coat!,Wore with leggings & ballet flats ??compliments!,5,1,0,General Petite,Jackets,Outerwear +1126,54,Gorgeous & warm,"I bought this coat shortly after christmas and am in love. it is meant to fit oversize but runs true to your natural sizing. i am a m/l in most retailer clothing and that is what i bought. it is great for layering for a dressed up look with a skirt or dress for work and also dressed down with jeans a t-shirt. and, although the arms are 3/4 length it is super warm! so happy i purchased!",5,1,3,General Petite,Jackets,Outerwear +862,25,Pretty!,"Fits a bit on the bigger side, but also being the style of the top. i would order down a bit. i'm usually a 4 on top( 34c) and the xs was perfect. the wine color is classy. it's a timeless piece...",5,1,3,General,Tops,Knits +1104,56,Very flattering dress,"This is a beautiful dress that glides over your body and swishes around when you walk. i received many compliments when i wore this, with black korkease platform sandals and peruvian opal jewelry. the fit is true to size, i took my usual size l. it is longer on me than the model, and my only complaint is the slip-it is very sheer and you can see your legs through the slip and the dress together, so i had to find a different slip. i think retailer should also make their slips a bit longer, i don't",5,1,5,General,Dresses,Dresses +862,34,Softer than i imagined,Bought this on a whim and am so glad! this is made of the softest fabric and the loose flowing nature of the tank make it perfect over a bathing suit.,5,1,0,General,Tops,Knits +862,36,Fun,These tanks are perfect for working out! they have big armholes so could work with a bralette but probably not a normal bra. the material is soft but they do shrink in th wash,4,1,0,General,Tops,Knits +829,46,Crazy big,"Beautiful but big. i exchanged my 0 for a 00, and, oddly enough, there was no difference! had a similar experience with another 00 blouse. am i crazy, or is the 00 size just a sham?",3,1,1,General Petite,Tops,Blouses +993,62,More maeve pencil perfection!,"Maeve consistently nails pencil skirts - i always know exactly what fabric and fit to expect, and it is flawless! the fabric is soft, lined, and has stretch. it feels as close to wearing sweats as you can in a skirt! the colors are beautiful on this - i'd say in person the colors are a bit deeper and richer than they show in the model photo. length is about the same on me as it is on the model at 5'7"" and got my usual s with no issue. this beauty will go with lots of different colored tops too,",5,1,9,General,Bottoms,Skirts +862,39,Soft and easy,I love the way this loosley falls and is so light you barely feel it on you. it is very sheer to you need to wear another tank underneath.,5,1,0,General,Tops,Knits +1104,63,,"The fabric , feel and design of this dress is sooo cute, but so large that sadly, it will need to go back. beautiful and softly flowing design but so full that not flattering.",3,0,0,General,Dresses,Dresses +860,51,Great for summer,I ordered the blue top. it's great for the hot summer we're having in the southeast this year.,4,1,0,General,Tops,Knits +860,39,"Fun cut, cute colors","I tried this on (blue) in size 0 or xs (not sure how sizing was), regular size (sometimes i need petite). i don't think i need petite in this one though, i love the peek of lighter solid fabric on the hem, the whole tank is very soft. probably need a strapless bra to wear it, but could be paired with jeans for casual look or nice pants. pencil skirt for dressier look. i am 115 lbs and 30 dd for reference.",5,1,3,General,Tops,Knits +1104,42,"Cut a bit strange, but still love it","First the good: what a beautiful, figure flattering dress. the fabric is stiff feeling, but the dress is well lined, so you can't see through it, and it hides lumps and bumps well. feels very quality. the lining also means it isn't scratchy. the stripes are very figure flattering for apple shapes like me (i'm 5'5"", 165 and thick through the waist...this dress gives me the illusion of actually having a waist. l fit perfectly), and i love the saucy little cut out over the knee: not so high that yo",4,1,5,General,Dresses,Dresses +1104,46,Dreamy!,"Such a beautiful pattern on a lovely fabric. soft to the touch and flows beautifully. i love the lacing and even the butterfly sleeves - which i'm usually not a fan or. i have a feeling i'm going to wear this to death once the weather warms up! my only complaint is the slip, which is a scratchy material that is also completely see through. it's also very short, at least for my comfort. i have a plain black slip i'll be using instead, which is fine with me as i bought the dress for the outer shel",5,1,4,General,Dresses,Dresses +829,37,Very flattering!,"This shirt is very attractive! i tried on my usual size 2 and it fits like a glove. i wish they had more colors than ivory, but i couldn't pass up the unique fit and design of this shirt.",5,1,2,General,Tops,Blouses +862,55,Think material; poorly made,"I tried this on at my local store. i love the look and the color of the blue tank and wanted very much to like it. alas, it was not to be. the material is super thin (almost see-through) and it is of poor quality. i did not buy it.",1,0,13,General,Tops,Knits +1146,49,Love the look!,"I love the style and look oft this blouse but the fit is a bit off for me. i'm usually either a l or xl. i don't think it came in an xl so i decided to give the l a shot. i would say it runs roomy except through the arms. i found the arms to run strangely tight...and it's not an area i usually have a problem with. the body skimmed nicely over my trouble spots (middle). i found the neckline very flattering and it laid nicely over by dd bust. the v is deep but you don't feel overexposed. + +the b",5,1,4,General Petite,Trend,Trend +1104,54,,"Lovely dress ,comfortable fabric and great cut . +the combination of the alignment of stripes works beautifully and is very figure flattering. +versatile to keep casual or dress up with a great pair of shoes.",5,1,6,General,Dresses,Dresses +1126,31,Love this jacket,This is such a cute and different jacket. of course i asked if they had it in black but i am glad they didn't because this is such a great color that is so versatile. i use it as a topper when it is not that cold out with a short sleeve under it or a long sleeve fitted shirt. you can wear with jeans or black pants if you want. great material for the price as well. i am usually between a small but more of a medium in my jackets. i ordered this in xs/s and it has plenty of room to even wear a swea,5,1,0,General Petite,Jackets,Outerwear +862,51,Basic and dressy,"I purchased the black in the store and wore the next day. so soft and lays nicely, pretty sleeve detail. quality and fit as expected. the arm holes are a tad larger than i prefer, but i typically wear a camisole under tops so it doesn't bother me. for reference, i'm 5'8, 36c and purchased the medium.",5,1,10,General,Tops,Knits +1104,53,,"This dress is flattering, comfortable and beautiful. it hides my imperfections too. currently my favorite dress!",5,1,5,General,Dresses,Dresses +862,37,Perfect tank,The softest tank i own. even though it's a soft burnout fabric it's still not too sheer. great quality,5,1,0,General,Tops,Knits +860,67,Too large at bottom,"This is such a cute top with so much potential, soft fabric, vibrant colors and flattering fit on top. however like so many of retailer swing tops lately it has tons of fabric at the bottom making it billow in a very unflattering way. i ordered it in an xxsp so i can't even go down in size so this top, regrettably, has to go back. +i love swing tops but retailer, could we please have tops that do not double for maternity tops??",3,0,7,General,Tops,Knits +862,36,Cute and lightweight,"When i received this tank, i ordered the blue, i almost returned it because it seemed really thin, almost see through. however, once i tried it on it had a good fit, not see through, just lightweight and breezy. i especially like the twisted details on the straps. i would suggest a bralette with a cross back for comfort, especially because it is on the thin side.",3,1,0,General,Tops,Knits +862,36,Pass on for small framed people,This top looks good on model and has great reviews online. however it did not work on my bodytype. when i tried it the slit in the front sat too low. i don't like showing cleavage because i dress conservatively. other than that i would have loved wearing it. arm cut is not too big such it shows sides of bra bands. overall fit is loose and drapery.,3,1,0,General,Tops,Knits +862,59,Only lasted one wash,"Don't even waste your money, even on sale. + +bought three in different colors because i loved the loose fit and airyness for hot southern summers. unfortunately, one of them ripped in the first wash. i let it air dry and thats when i found multiple runs and a hole that i could put my finger through. one of the other colors was fine, yet still pilled pretty bad. the third one still has the tag. keeping the one that survived the wash because i like the color - but will only be using it as a knock",2,0,1,General,Tops,Knits +862,35,Good for workout,"This tank is really thin and airy without being too flowy. it was perfect for my soul cycle workout, and i am thinking about getting it in different colors for working out. i don't know that i'd normally wear this top on its own because it's very casual, but it's perfect as part of a workout or vacation outfit. i sized down one size to make sure that it wasn't too flowy, and it fit perfectly. i am 5'2"" and 130lbs., and a size xs fit perfectly.",4,1,0,General,Tops,Knits +860,37,Beautiful & feminine,Beautiful top... the print is really unique and already received compliments on it when running my daughter in for school. it's a little fuller on the bottom and flows out so i think i may pin it but it's beautiful. definitely worth getting!,5,1,0,General,Tops,Knits +1126,52,Wanted to love this,"I had my eye on this coat for so long. when i saw it was on sale and an extra 30% off i decided to go for it. i ignored the reviews that said it ran big and took a chance and sadly it did not pay off. this jacket is very heavy so if you are going to get it on sale, it will probably go into the closet for next winter. it was very boxy on me and tied at the waist, made my upper half look huge. it was just not flattering at all. the heaviness of it also made the big open neck a little annoying and",4,0,0,General Petite,Jackets,Outerwear +1104,35,Waist,"Crew stripe sheath fitted very well until i turned around. the waist section, where the stripes wrap around the waist had extra fabric and didn't lay well. i am 5'4"", 120 lbs, 32c, 26"" waist, and 32"" hip usually wear a 0 or extra small in the maeve clothing that isn't a fitted style. i bought the s, which fit well except for the waist issue described above. this is a fitted dress. i hope this is just an issue with the dress i received. it is a great style idea.",2,0,0,General,Dresses,Dresses +1126,28,"Chic, over-sized, fashion statement coat","When i first tried it on, i was worried it would add 10-15 lbs to my hourglass frame, but if worn correctly, it actually has a flattering, slimming effect. i recommend wearing it open (like in the photo) with the same type of outfit underneath...looks very chic! or, to give yourself a defined waist, use the provided ribbon belt tied to the side or use your own large, statement belt. also looks great with vintage sunglasses! the fabric quality can't be beat. it's nice and heavy to the touch. i ca",4,1,0,General Petite,Jackets,Outerwear +862,73,I live in these tanks!,"I'm a power-walker. i bought this tank in 3 colors and rotate through them. they're great for working out with a nice sports bra underneath. i also wear them with leggings. so cute! love the colors, the fit. yes, they're thin. i don't think they'll last for years and years, but with the sale price they are such a great deal.",5,1,0,General,Tops,Knits +862,47,Poor quality,The material is thin and of poor quality. it snagged the first time i wore it. the arm holes are very low as other reviewers stated.,1,0,1,General,Tops,Knits +1126,48,Buttery soft,This oversized coat is fabulous! i've received so many compliments on it.,5,1,4,General Petite,Jackets,Outerwear +862,52,Great summer tank,"Great, comfortable tank. cool added detail in the straps. runs big so size down. i wear both a medium and large at retailer and got this in a small.",5,1,0,General,Tops,Knits +862,35,"Cute, but poorly made","I bought this top in two colors--i think it's a really cute, easy top to wear, but the fabric is extremely thin and poor quality. i tucked the front into a pair of shorts and i can already see a small snag forming, which i'm sure will be a hole in no time. two stars only because i really do like the look of the top generally, i just wish it was something that was going to last beyond a couple of wears.",2,0,4,General,Tops,Knits +862,47,,"I love this top. so much so that i bought it in black and red. i do think it runs a bit big. i normally wear a medium or small. i bought this in extra small and it fits beautifully. can be dressed up or dressed down. love that it is a double layered knit too. the fabric is soft and drappy. this is a staple top. looks great with a pencil skirt tucked in. got lots of compliments when i wore the red one. havent worn the black one yet. for reference im 5'9"" , weigh 125lbs and wear a 34b.",5,1,9,General,Tops,Knits +1074,63,Essential spring dress,I bought this dress for my bridal shower and it is perfect. the pattern is beautiful and very similar to the image shown online. the fabric is much lighter than i anticipated which is nice for spring/summer weather. i had to get the top altered slightly to better fit on top but it was a very easy alteration. i am normally a size 8 in dresses and found this to fit very true to size.,5,1,0,General,Dresses,Dresses +862,54,Run really large.,"Hi, i bought this top in a couple of colors. i wear a 12/14 or xl. i bought these in a xl. they are huge. but i liked them well enough and returned them for larges and they fit beautifully.",4,1,0,General,Tops,Knits +860,51,,"I absolutely love the print. it's what caught my eye first when scrolling down the page. the fabric is very soft, single layer. the model definitely makes this shirt look slimmer or tighter to the body than the shirt actually is. the slimmer fit was the next thing i was looking forward to, but like other reviews, it is very flowy and the fabric falls away from the bottom below the bust (which i'm not mad about when wearing this in the summer--the occasional breeze will feel nicer with a loose to",4,1,0,General,Tops,Knits +860,37,Not for big-busted ladies,"I love the look of this top. i'm usually a size 12 or 14 and i tried on a size l and it seemed really big, and looked a little like a maternity top. i thought maybe it was too big and ordered a size m. unfortunately, it still looked maternity-ish. i think the bottom of this is flared so much that if you have a big bust at all, it will look like a maternity top on you.",3,0,1,General,Tops,Knits +862,51,,"Is gigantic-it could be so cute, but the neckline and armholes are ridiculously low. i am 5 feet 10 and 140 pounds, and a small was huge on me.",1,0,0,General,Tops,Knits +862,27,Versatile basic with a little extra,"Purchased in the red and love it! love that it goes with anything from work pants to jean shorts. the ruffle details add just a little extra, which makes it perfect. i just paired with gray chinos a couple days ago and it made a lovely outfit. fits tts. i wear an xs and purchased that.",5,1,6,General,Tops,Knits +860,57,Lovely print...,"I was on the fence about this toposition because, as others have stated, it is quite billowy at the bottom. just before returning i decided to try it on with a navy linen v-neck cardi and it completely changed my mind!! wow! now i am not saying that this isn't beautiful on its own, because.it truly is!! i am just saying that now this has become a truly versatile piece in my wardrobe. i did not order a petite even though i am 5'3"", and for that in am glad! i ordered regular size xs (108 lbs/36b)",5,1,0,General,Tops,Knits +862,50,Perfect versatile summer tank,"So comfy and well made, perfect to dress up or down, bought one and coming back for several more. cut a bit low in arms, lace bralette is perfect under.'' bought a small, length and fit similar to model",5,1,6,General,Tops,Knits +133,55,Cute,"Nice fit, stretchy fabric, but they do not stretch out of shape or so much that they are too big after wearing for a few hours. very true to size and great length. i am going to buy another pair because i know once i wear these out i will want a back-up!",5,1,2,General,Bottoms,Shorts +862,32,My new favorite loungewear.,"I bought three -- in part, because they were on sale. i do not think that i will ever wear these without a sports bra though. they are too low in the front and on the sides for a regular bra and too thin to go bra-less. that said, they may look cute with some of the lacy-show-me bras that seem to be trendy right now. + +i am typically a small, and bought x-small. the drape is not that different in the two sizes, but the length of the straps was much less revealing in the smaller size. + +all-i",4,1,0,General,Tops,Knits +829,64,Really cute!,"When i spotted this online i just knew it was a 'must have'. holding horses brand usually runs big on me, but this is a more fitted top. i ordered the size 4 & 6 so i cld compare. well, the 4 is a little snug in the bust area & the bodice seam falls high across the mid-bust area. except for that the fit is good. being cotton i realize it will probably shrink some when washed so i don't think the 4 works for me. the size 6 is much looser overall & the fit is much better in the bust area. the armh",5,1,3,General,Tops,Blouses +862,35,Use for working out,Bought (on sale) the first to use for working out/yoga and they're perfectly suited for the job! so i bought 2 more (also on sale). has held up well in the wash so far and i've washed each about 3-4 times. runs a little large but it is a loose flowy top. normally wear a medium but got smalls in these.,5,1,0,General,Tops,Knits +862,53,Beautiful,I am very happy with the top.well made and beautiful color.,5,1,0,General,Tops,Knits +133,38,Soft & great length,The length on these are great. they stretch but so far they don't stretch out. the material is a dark and soft. i am 5'6' and 135lbs. the size 26 fit great.,5,1,0,General,Bottoms,Shorts +1104,25,Beautiful flowy dress,"This dress is beautiful and delicate, so flattering! runs a little big- slightly looser fit- got the size small, usually a 6-8, and it is perfect. the slip included is very sheer however, so i am using a different black slip for mine.",5,1,0,General,Dresses,Dresses +1104,66,,Usually an retailer dress in a large fits me perfectly however not this one. i am larger busted and this dress was way too tight on top. possibly better on smaller chests. the dress is cute and the rest of the fit was good. not for me could barely pull it down over the boobs. going back :(,2,1,4,General,Dresses,Dresses +862,44,"Easy, versatile top","I wasn't sure about these when i first took them out, but they are so cute! the fabric is super soft and skims the body/is not clingy. i got the black & the red. the red is more of a magenta, but i'm okay with that. i think these will be great in the fall and early winter too, under cardigans & light jackets. another bonus, they do not show a ton of cleavage, like a lot of tops out there. the arm holes are also very close to perfect. i hate how big the armholes are on tops that basically require",4,1,0,General,Tops,Knits +862,37,Love this top!,"I haven't taken this off since i got it. and since then, i've ordered two more colors. it's definitely sheer, but the blue isn't see-through, though i expect the lighter colors are. it is a distressed look, but super-soft, comfy, and perfect to wear over work out clothes or dressed up with jeans. really a nice summer top for hot days. i'm 5'4, 135 the and the xxs is perfect--drapey, but not baggy. very flattering straps too.",5,1,1,General,Tops,Knits +1060,34,Gorgeous flowing pants,"The quality is there. these pants are just as pictured. very wide leg, romantic pants. the pockets lay nicely inside so as not to be bunchy like some pants do. these fit perfect and look great.",5,1,0,General Petite,Bottoms,Pants +133,51,,,5,1,0,General,Bottoms,Shorts +829,48,Prettier in pic!,"I just returned this top. i agree with the previous reviewer. the neckline is way too deep, i ordered small and i looked ridiculous in it. also the ruffles didn't look so great on me either.",2,0,1,General,Tops,Blouses +1086,26,Adorable!,"Just picked this up at a store....had a terrible time deciding between the plaid and the chambray but went with the chambray. super soft fabric and not too short for a 55 year old. i'm 5'5"", 135 lbs, and 34 d and the medium is perfect. sometimes i wear a small but have broad shoulders so need the m in this. i'll wear without a belt...it falls nicely and is very flattering!",5,1,3,General,Dresses,Dresses +912,27,Poor fit,The fit of this sweater did not flatter my body-type. the top half did not fit well; the armpit area was loose fitting and the neckline was awkward.,1,0,0,General,Tops,Fine gauge +912,57,Great lines,Love this sweater! great quality & styling. slimming and the side slits add a feminine appeal. pair with your legging and boots and enjoy the compliments.,5,1,0,General,Tops,Fine gauge +1086,50,Cute dress,This is a super cute dress and i get lots of compliments when i wear it.,4,1,0,General,Dresses,Dresses +927,59,Great sweater for cool weather,"The sweater is light and very soft. the silver banding on the neck, sleeves and hem make it easy to dress up.",5,1,0,General Petite,Tops,Sweaters +868,39,Didn't work for me,"Cute. i love the button back detail. but it's completely see-through. i could have worked with that by putting a cami underneath, but the arm holes were too tight. didn't look bad, just felt uncomfortable. you can't really tell in the pic, but there's elastic on the arm holes. it'll work if you have super skinny arms, but apparently i don't.",3,1,2,General,Tops,Knits +820,42,Simply beautiful,"I bought both versions of these tops. the print one has brown, pale pink, and cream colors. these tops look exactly like the picture. they are tts and come with a cami attached. i normally wear a medium and the size 8 is perfect and the arm holes are properly sized, not huge.",4,1,8,General,Tops,Blouses +1086,48,Great dress,"I'm 5'3"" with high waist and some booty. this dress has a fantastic, flattering fit. i paired it with the elita belt as opposed to the thicker belt on the long waisted model. (love the belt too, btw). the fabric is soft and will pair well with tshirt or cami underneath. i plan to wear with brown booties as well as sandals. looking for a suede jacket now...",5,1,1,General,Dresses,Dresses +1027,19,Best jeans!,"I disagree with the reviewer that says these are more straight-legged. for me they fit tight throughout. sits perfectly on the waist with just enough stretch, but they still look very structured. i'm 5'0, 110 lbs and the 26 fit me perfectly. the length was perfect for my height. often pants are too loose in the ankle for me, but these are snug and perfect to wear with booties.",5,1,0,General,Bottoms,Jeans +1086,40,,"I loved this dress, i usually wear a petite but went with regular based on the reviews. i workout and it was snug on my arms.. fabric felt great, loved the fringe.. just a but snug in the arms for me.",3,1,0,General,Dresses,Dresses +1086,38,Very flattering!,"Soft, comfortable material and flattering with or without a belt. i'm 5'10"", 130...typically wear a 4. the small fits me perfectly and even the sleeve length is long enough when unrolled. high hem hits me a few inches above the knee, low hem a few inches below.",5,1,12,General,Dresses,Dresses +1072,47,"Beautiful dress, but no liner","This dress is beautiful! runs a little bit large. i usually wear a small or medium. i took the petite small in this dress. i am 5'3"" and ordered in petite sizing and i am so glad that i did. the only complaint that i have is that there is no liner and although the dress has some dark colors, it is very sheer, very see through.",4,1,24,General Petite,Dresses,Dresses +820,42,,"This shirt is really cute but a little stiff. it does come with a slip, but the slip was tight, but the shirt fit, maybe even a little big. i used another cami under which was better. i think think the sizing is off in terms of slip vs. the actual shirt. i got it in the store with the 30% off, so it was a good deal. it does stretch out as you wear it, so it will get bigger and it did make me look a little bigger, but still cute on and for a summer shirt, it's thin, so it does work well in that r",3,1,2,General,Tops,Blouses +916,53,Super soft and luxurious,This cardigan caught my eye and i had no idea how soft and wonderful it would feel so it's a win-win! it hangs a little boxy so i'll need to figure out how to style it so it's more flattering. the pockets are a pretty gold color (you can see it from the inside) and adds a nice touch of color. it's a keeper!,5,1,0,General,Tops,Fine gauge +927,20,Love this sweater!,"I initially saw this sweater in the store and it really stood out. the rose pink color is absolutely beautiful and i love the glimmer band. it adds a beautiful detail to the sweater. the fabric is very soft. the only downside i see, is that lint did get all over the tank top i was wearing underneath. though i think that will change over time as i wear it more. it wasn't a huge inconvenience, which is why i still give this 5 stars. i am always a small at retailer, which is what i ordered, so",5,1,1,General Petite,Tops,Sweaters +1086,47,Still on the fence,I love denim and this tunic/dress/shirt is soft and fits really well except its almost too long to be a tunic/shirt but too short to be a dress - at least for me but i have a long torso - still not sure if i should keep it.,4,1,0,General,Dresses,Dresses +820,62,,"Very feminine! comes with a coordinating cami. i liked it so much that i'm going to order the other color, too!",5,1,1,General,Tops,Blouses +831,39,,"Beautiful! caught my eye online. i had to order then reorder in a smaller size, but it is wonderful. colors are beautiful.",5,1,5,General Petite,Tops,Blouses +868,77,Very see thru,I ordered the shirt bc it looked soo cute despite the fact many said this shirt was see thru. it's true.. had to return it,1,0,2,General,Tops,Knits +1072,46,"Darling dress, worth the buy now on sale!","I love this dress now that it is on sale; sized down to sm petite, added a simple full slip. endless compliments and inquiries on where to buy it!",3,1,0,General Petite,Dresses,Dresses +1030,38,Love them!,"Love my jeans, fit great and very flattering. they are a tad snug in my usual size but i think with time they will stretch a bit. receive compliments every time i wear them. if they go on sale i will buy another. :)",5,1,2,General,Bottoms,Jeans +1086,56,Super cute chambray dress,"Really cute casual dress. wore it to a ""girls night"" out!! they all loved it. can't wait to wear it again with knee high boots!",5,1,0,General,Dresses,Dresses +1072,39,I would buy but on sale,"I tried on the xs petite, and liked it but didn't love. the arm holes seemed big, you could see my pink bra peeked through on te sides. also, the material is soft but thin (see through, somewhat). the xs petite, just seemed big overall, i would try the xxs petite if it goes on sale and is available. i am 115 lbs, 30dd for reference.",3,1,0,General Petite,Dresses,Dresses +1027,39,"Long on petite, winh it came in petite...","I tried on areturn at my store, size 26 (i am often a 25 in jeans) - because these are tighter fit, teh 26 was fine. length was long though, but fit comfortably and looked nice. the cutout was at my knee, which bothered me a tad (model, seems a bit above the knee). i decided not to purchase them as i found another pair i liekd better, but if you are taller and are looking for a distressed skinny, these are great. (i am 115 lbs and have thighs ad butt form working out)",4,1,0,General,Bottoms,Jeans +1086,47,Just do it!,"If you're on the fence about this dress - go for it! i am a huge retailer shopper but haven't ever been compelled to write a review until now. this dress fits beautifully. the materials is so soft and comfortable and the design of the dress is very flattering, with or without a belt. i am 5'2, 118 pounds and i purchased the pxs. it's perfect! i wore this with booties and received a ton of compliments. the fringe and hemline make this dress really stand out.",5,1,1,General,Dresses,Dresses +927,60,Nice sweater,"I like this sweater, but it was like others i owned so i returned it. it is good quality and fits well.",4,1,0,General Petite,Tops,Sweaters +1086,33,Loved this dress... watch the side slits,Loved this dress! material is soft... the overall fit is great! the challenge with this dress is the side slits... they do go pretty high... too high for church but may wear them with leggings as it gets cooler... super cute with or without belt 5'9 135 lbs and i ordered a small.,4,1,0,General,Dresses,Dresses +1086,47,Classic and trendy at the same time!,"I have a short torso and short arms, so i purchased this in a petite medium. i probably could've worn the ps, but i do like the little extra room. it is a classic shirt dress with just enough of today's trendy ""frayed edge"" to make it contemporary. the fabric is super soft and lays nicely. i can imagine wearing this through the seasons with a variety of shoes/legwear & accessories! looking forward to it.",5,1,0,General,Dresses,Dresses +863,41,,"The shirt is cute, but there is no way that the length posted on the website is correct--it's a crop top. this was returned.",2,0,0,General,Tops,Knits +927,39,As soft as a plush bunny,"I probably would not have purchased this sweater had i only seen it online because i typically think wool is scratchy, but this sweater caught my eye in the store and it is as soft as a sweater can get. i love the pink with the gold trim. it is so soft and warm. i have washed and worn it a few times already and have not had any problems with stretching, either.",5,1,1,General Petite,Tops,Sweaters +818,50,,,5,1,0,General,Tops,Blouses +820,35,Pretty but not for me,"I was initially drawn to the intricate floral design of the neutral motif. it looks huge and boxy, so i sized down to a 0- which ended up being too tight in the chest and arm holes (for reference, i'm 5'7"", 130lbs, 34a). i returned it for a size 2, which fit much better. in the end, i decided not to keep it because of the lack of shape, and it's a little unflattering for smaller busts. it does come with a matching cami and seems well-made, but it just wasn't for me.",3,0,0,General,Tops,Blouses +916,38,Perfect fall prep,"Love this preppy sweater for fall. only detail i wasn't crazy about was the deep slits in the sides, it gapes a little oddly then around the pocket but not enough of a distraction for me to send it back.",5,1,0,General,Tops,Fine gauge +835,29,,This is nicer than the first reviewer states. the fabric feels very soft and the tunic does not look cheap.the top of the tunic was a little more fitted so it was a little tight for me since i have wide shoulders. i will have to get a larger size.,4,1,3,General,Tops,Blouses +835,55,,"I must politely disagree with the previous review. i hesitated to order this item based on the reviewer below and i am happy to say this item is everything i hoped it would be! it looks exactly like the picture (fit, color, quality). being a silk top i believe this item was priced appropriately and the quality of the item does not disappoint. the pom poms are colorful and bright but not the least bit juvenile. this top is light and flowy yet flattering for hot, humid summer days! i will look for",5,1,7,General,Tops,Blouses +835,64,Expensive circus-wear,"This top is a joke unless you are really into expensive clown wear. i thought this looked whimsical, fun and a well-designed piece when i saw it on line--especially at this high price. i started to laugh before i even pulled the entire top of out the bag when i got it in the mail today. it is not expensive looking at all, and the pom poms look like a sad craft project rather than a special detail. it is a bit juvenile too. even if you wore it and were going for ""ironic"", it would be difficult to",1,0,13,General,Tops,Blouses +1086,52,,Great fabric. soft and easy to wear and goes from day to night easily.,5,1,0,General,Dresses,Dresses +1086,30,Perfect fall dress,Long enough to wear without leggings but also great with them. i also purchase the belt pictured and it looks as good in person as it does in the photo!,5,1,0,General,Dresses,Dresses +1079,63,Super flattering,"This dress is amazing. nice material, comfortable and really flattering. slightly tight in the arms but otherwise perfect. highly recommended!!!",5,1,1,General,Dresses,Dresses +1072,33,See through!,"I read all the reviews about the fabric being see through, but liked the dress enough to give it a shot. it is soooo see through. this trally could only be worn on a beach. very disappointed.",1,0,2,General Petite,Dresses,Dresses +818,48,,"The blouse is lovely - but after washing it exactly as specified, it shrank more than a full size. this is an expensive hand-me-down for my daughter...",2,0,5,General,Tops,Blouses +1086,44,Hem difficult to judge...,"At 5'4"" i typically order petite clothing...i was unsure of this dress/tunic-shirt from the photos online, the reviews and the hi/low hem. i ordered xs and pxs (about 118#). both fit as far as shoulders and through the body but the pxs was way too short on me to wear as a dress without any leggings. the length of the regular xs works great and i feel is appropriate for someone my age! it is buttery soft and so comfortable. i ordered the suede wrap belt to go with it. also, the sleeves are too ti",4,1,7,General,Dresses,Dresses +831,43,Beautiful,"This top is unique and beautiful but the fit does not work for me. i am tall with broad shoulders. the shoulder and upper arm areas are too tight, but the rest of the top is loose and flowy, so if i go up a size it will be too wide. the length and arms are also much shorter on me than pictured. i don't see this in the description but it comes with a cream colored cami layer, and the sleeves have a roll/button tab function. the brand is meadow rue. this will be really pretty on someone more petit",4,1,8,General Petite,Tops,Blouses +927,46,Nice design but poorly executed,"I was really eager to receive this sweater, i was expecting the same as in the picture. i received it today and i am already returning it. first of all the sweater didn't look new, it is mostly shapeless, it has little balls and piling on the wool (what happens after wearing a sweater for a few months) and the metallic color makes it look cheap. in the knitting itself there are missing points and there are actual holes in some places. it is a beautiful design but other than that not even the col",1,0,1,General Petite,Tops,Sweaters +927,31,Really soft,"This sweater is super soft and the metallic banding is a really nice detail. the fabric could turn out to be a bit fragile though. if you have a chest, it may feel a bit boxier than you expect but i don't mind it for a comfy, cozy, soft sweater.",5,1,0,General Petite,Tops,Sweaters +868,45,Flattering knitwear,I bought this top in my usual xs size in black and it fit just right. it's very flattering and i love the strip of buttons down the back and the tucks at the shoulders. two things that i did not (could not!) notice by looking online is that this top is actually knitwear! it's still very lightweight and it has a fabric strip that runs along the back strip of buttons. the second thing is that it's a bit transparent. i would definitely prefer to wear a camisole underneath if i'm wearing this top to,4,1,11,General,Tops,Knits +820,58,Cute top,I can't believe that i'm the first person to write a review. this top is so cute. i tried it on in a store and loved it. the sales person in the store said that it had been flying out of the store as soon as they got it in. the color and print are pretty. the fabric is sheer and cool and comes with a cami.,5,1,16,General,Tops,Blouses +1075,37,,Little boxy in the mid section; very very elegant and beautiful design!,5,1,0,General Petite,Dresses,Dresses +868,75,Almost the perfect shirt!,"I fell in love instantly...but...upon looking in the mirror, it is 100 percent see through. at least the black is... i love it enough that i am going to try to put a cami underneath. however, that mayn't work. the shirt is lovely in and of itself, but at 48, i don't need a see through shirt. it is also defiantly about a size larger that expected. so size down. almost so good!",3,0,7,General,Tops,Knits +1086,60,"Omg, perfect dress!","Love this dress! very soft and easy to wear. i'm 5'4"" and it hits the top of my knees which is perfect for me. can't wait to wear it with white leggings and boots this winter. i've seen several similar styles and tried on a few at other boutiques but they were thick material and bulky denim. this is the perfect, light and soft to the touch. highly recommend!",5,1,0,General,Dresses,Dresses +1086,48,"Cute dress, runs huge",The style was really cute but the fit was huge. i ordered an xs. i don't think going to the xxs would have helped. i ended up returning it.,2,0,0,General,Dresses,Dresses +1176,46,Beautiful suit that was not well tested,I wore this suit for the first time yesterday and the black inner lining is leaking and causing stains on the white sections. seriously bummed as this is a super lovely suit.,1,0,4,Initmates,Intimate,Swim +818,37,,"This blouse in the purple motif is lovely. unfortunately for me, it runs small.",4,1,4,General,Tops,Blouses +927,52,"The metallic edges are paint, not metallic thread","I got the pink version. it is a pretty color, but the metallic border is painted, not a metallic yarn. the weave is wide and it looks like it would snag easy. it looks cheap to me--not what i expect from retailer. am returning.",3,0,3,General Petite,Tops,Sweaters +1086,43,Cute but cut too high on sides,"I thought this shirt dress was adorable but i am 5'8"" with long legs and the sides of the dress were cut just a little too high. nice soft material and i would have kept it if the sides had been an inch longer.",4,0,1,General,Dresses,Dresses +1080,30,Beautiful and timeless,"This dress is gorgeous! pictures online do not do it justice! my only issue is that it is slightly sheer, even with the layers under the skirt. will probably require nude boy shorts. i would say it runs tts if not a little bit large. i ordered my normal size 6 and the band and bust are snug but not uncomfortable, but the back mesh portion is loose. it hits me about where it hits the model in length. i was able to find one that somebody returned in-store so that was helpful. for reference i am 5'",5,1,0,General,Dresses,Dresses +1030,47,,,3,1,0,General,Bottoms,Jeans +1086,42,Perfect!,"Everything about this dress is just right! the hand of the fabric is soft and drapes beautifully, the cut is slender but forgiving, the length is short enough to be chic but not skimpy, and the fringe and hemline keep it from looking like every other denim shirtdress out there. i am 5'7"" 125 lb and got an xs. i love the versatility too--as a dress, jacket, under layer, with/without a belt. yay!",5,1,0,General,Dresses,Dresses +927,53,Huge,I was surprised retailer decided to ship this sweater. the sweater looks like it's falling apart and it is huge. i would not recommend this even at a clearance price.,1,0,1,General Petite,Tops,Sweaters +1086,42,,Love love the fit and material. a must fall wardrobe.,5,1,0,General,Dresses,Dresses +1080,73,My husband just loves this dress on me,"Everything about this dress is exceptional. the fit, material, workmanship, and style are wonderful. the dress even has 2 petticoats to make the skirt stand out. the dress is modern in style, yet classic.",5,1,1,General,Dresses,Dresses +927,38,Pretty and soft,I'm very happy with this sweater--it's very soft to the touch and comfortable to wear. i have the pink version and find the shimmer on the waist and arms to be a nice touch. the only concern i have for this is that it feels like it stretches out a bit easily. by the end of the day the arms feel a bit baggy.,4,1,2,General Petite,Tops,Sweaters +1072,51,,Colors and patterns of this dress are beautiful and that's where it ends. cheap flimsy polyester and no lining. far too expensive for what it is. on me it bulked out in my chest area and did not look so great. i would say it runs a tad big but in my case ( i have wide shoulders) not big enough to downsize. too bad because i really love the colors and idea of this dress.,2,0,10,General Petite,Dresses,Dresses +1086,39,Soft but realllly hi-lo,"Love the fabric that c s uses--so very soft and pliable. fit is tts with room for draping over figure flaws and great for layering while open. but the high-low hem is far more extreme than the new ""action shots"" show. i'm kind of over this trend but at the same time love this shirt dress. i'm 5'3"" 140# 36d and tried on m but will order mp online because of length.",5,1,40,General,Dresses,Dresses +1086,52,,"Very cute dress! 5'4, 120 lbs - xs regular was too long, xs petite was perfect length!",4,1,0,General,Dresses,Dresses +916,64,,"Cute sweater, but don't plan on wearing this until at least fall! i love the look of this and the quality of the knit is there, but this sweater runs large and it's heavy.. i normally wear an xl in most retailer tops/sweaters but i could probably wear a m in this sweater. i for sure need the petite size because this xl regular came to my knees and fit me like a coat. i ordered this online but am going to try and exchange it for a smaller size at the store, otherwise, i'll have to return it.",4,1,1,General,Tops,Fine gauge +916,33,Comfy with great design,As someone that has many cardigans this one is one of my favs in my collection. i can dress it up or down. it is really soft and great quality. i only wish i had checked if it came in petite since the length is a little long.,5,1,0,General,Tops,Fine gauge +1086,44,Vintage awesome,"I am not a fray fan but this dress has a modern vintage look, and it looks tailored. check out the ruffle sleeves, surprising detail. size regular small falls right above my knees, perfect at the chest (i'm 5'2"", 34b, 26 waist, 36 hips), but the sleeves are 2 inches pass my wrist. the ruffle sleeves are too pretty to be rolled up, so i got the petite s, sleeves at perfect length, torso fits better but length is an inch shorter (thank you, cloth and stone for finally making petite sizes).",5,1,0,General,Dresses,Dresses +820,44,Pretty and feminine,"I saw the neutral motif in the ""there's only one left"" hanger in the store and tried it on. it's very pretty, cute and sweet. i wish the bottom flares out a bit more like a baby-doll look, but that's just my preference. i tried on size 2 and it's a bit tight in the chest area (i'm 5'2"", 34b, 26 waist, 36 hips), so i think size 4 would fit very well. despite the pretty flower design, in my personal opinion, i think the price does not justify a pretty basic tank top and fabric.",5,1,13,General,Tops,Blouses +1080,31,Better on taller women,"Height: 5'2"" +weight: 118-120 lbs +bust: 34b or 32c +waist: 27""-28"" +hips: 37""-38"" + +i like this dress a lot, but it would have required tailoring the skirt. i'm petite, but for whatever reason most regular sized clothing fit me well, and petites clothes are usually too short in the arms or legs for me. the midi length is better suited to taller women. in the photo it looks like it hits just below the model's knee, but on me it hit below the fullest part of my calf. + +i ordered the 0 and the 2",4,1,7,General,Dresses,Dresses +1027,28,"Straight-leg, not skinny","The fit is definitely more ""straight-leg,"" and not skinny, as the photos seem to imply. at 4'11"" and 95 lbs, the size 25 fit my waist and butt wonderfully, and the length was great, but the jean lost shape at the knee. i would recommend these jeans if you are not seeking a skinny fit!",3,1,0,General,Bottoms,Jeans +1072,28,Better in person!,This dress looked nice online so i ordered it. once it arrived i tried it on and it looked even better. the fit was flattering as well. very versatile piece in an interesting print. glad i caught this piece on sale!,5,1,0,General Petite,Dresses,Dresses +1086,39,,,5,1,0,General,Dresses,Dresses +927,51,,Looked really cute on line. arrived with a large hole in the front! quality and look was very cheap!!! would not recommend this sweater at all. step it up please retailer!,1,0,1,General Petite,Tops,Sweaters +1086,36,,,5,1,0,General,Dresses,Dresses +1030,30,,This picture does not represent these jeans .. the color is way off. they are more yellow toned and look much more worn than in the picture. they also run very small.,2,0,0,General,Bottoms,Jeans +1086,30,Comfy and cute,"This dress is very flattering on. it fits close to the body but the layers are thick so it doesn't show too much. the material is stretchy and very cozy. i'm 5'4"", 130lbs and a 34c and the medium fit perfectly.",5,1,3,General,Dresses,Dresses +881,53,Adorable shirt,"This top is so cute on. would look great on anyone as the style, quality, and color is incredible. highly recommend, even at this price. you won't regret it.",5,1,0,General,Tops,Knits +959,36,Strange cut,"I usually like coats and wraps with high-waisted belts, but this way too high, and the fit was really unflattering. i can see it being chic on a tall, slender person, but it's definitely not right for my short, curvy body. returning it today.",2,0,0,General Petite,Jackets,Jackets +834,25,,"This shirt is absolutely beautiful. however, it runs very small. proportion-wise it's okay in the shoulders, bust, and back but it's too short! definitely order up!",3,1,3,General Petite,Tops,Blouses +815,34,,Love this top! pretty details and true to size fit!,5,1,0,General Petite,Tops,Blouses +940,31,Staple cardigan,"I've been searching for the perfect gray cardigan and i knew i had to have this one! unfortunately, the first cardigan i received had two obvious pulled threads so i returned it. i took a chance and ordered the cardigan again and i'm so glad i did. it is so comfy and goes with everything! my only concern is how it will hold up as it is already showing some fuzziness after two wears. if this makes it to the sale price, i would highly recommend.",4,1,0,General,Tops,Sweaters +815,31,Disappointed,I had such high hopes for this top. it is beautiful but it is very uncomfortable! the lace/beadwork is extremely itchy. the button at the neck seems cheap and i was worried it would fall off. the beadwork and lace puckered on my shoulders making the fit off for me.,3,0,8,General Petite,Tops,Blouses +834,70,,,5,1,0,General Petite,Tops,Blouses +815,66,Lovely!,"This is truly a beautiful top. the beading and lace are subtle, but add such a special, feminine touch. i love the breezy, swingy shape. very flattering. this is one item i will be sure to treasure for years to come. love!!",5,1,0,General Petite,Tops,Blouses +815,52,Beautiful,I love this top. the picture does not show all the beautiful detail. i was so happy when it came in the mail and i unwrapped it. stunning!!,5,1,0,General Petite,Tops,Blouses +834,34,Love it!,This is a great top. runs tts. looks great with cropped skinny jeans and booties or wedges in the spring.,5,1,10,General Petite,Tops,Blouses +834,41,,"This is such a pretty top. i love the mix of patterns. the colors are beautiful! it really looks great on. the peplum is very minimal in this top. the entire top itself is somewhat oversized, but in a pretty way. i bought this in a large and probably could have gone with a medium, but didn't want the length to be any shorter, so i'm sticking with the large. for reference, i'm 6ft and 175lbs. i usually wear a size 10/12 or medium/large. also, i didn't notice a puckering between the two m",5,1,3,General Petite,Tops,Blouses +834,46,Great top,I received many compliments on this top. it's very cute and versatile. a pair of jeans or a skirt or capris all can work well with this.,4,1,0,General Petite,Tops,Blouses +999,34,Cute skirt,"Very adorable skirt. looks just like in the picture. can be dressed up or down. unfortunately, the shirt shown with it is a little too short but a longer shirt that can be tucked in will be very cute.",4,1,3,General,Bottoms,Skirts +1086,28,Wanted to love this - not for my body type,"I wanted to love this dress. i pre-ordered it and waiting 2 weeks for it arrive. when it arrived the dress was much more pleated than i thought. i'm not sure if i misunderstood the images, but i did not know the dress was going to being pleated all over, i just thought that the fabric had a texture. the print is adorable but the shape of the dress was not flattering on me. i am pretty straight down with somewhat wide hips, but the fabric of the dress made me look larger than i am. i think this w",3,1,7,General,Dresses,Dresses +815,31,Great top,"I love this top, the detail and embroidery make it great for during the day or at night. the small fits me perfect and i don't wear it with a camisole like some have mentioned, but might if i wore it to work",5,1,0,General Petite,Tops,Blouses +959,44,"Odd fit, great fabric",The fit is quite strange on me as the tie is very high on the waist. this makes the jacket look odd and quite voluminous. i was very impressed with the fabric though but will have to return. i wish retailer would post what size is the model wearing. maybe she is wearing a larger size than usual which falls lower.,3,1,2,General Petite,Jackets,Jackets +815,36,Love the top!,"Love the top! it fits perfectly. i was a bit worried it would look like a pregnancy top on me as i'm a 34dd, but it doesn't. i've received many compliments on the top, its incredibly well made and has beautiful detailing. it is sheer so you'll need something under. the material is quite light as well which is nice.",5,1,0,General Petite,Tops,Blouses +834,58,New favorite top!,My new favorite top to throw on,5,1,0,General Petite,Tops,Blouses +1039,28,,"So first off, yes, these are almost mind-numbingly expensive. however, i think the design and quality are absolutely there. the label ""low-rise"" always makes me wary (as someone who is curvy, low rise often = muffin top danger and bad early 2000s flashbacks), but the low rise design of these is actually great. they are mainly low rise in the front, angling down slightly toward the button, and in the back they are, not super high, but more of a mid rise, so you won't have to be really careful ben",5,1,1,General,Bottoms,Jeans +834,26,,,5,1,0,General Petite,Tops,Blouses +815,43,Swing away,"A swing top by tiny done right. this is a well made top that fits in all the right places, no gapping arm pit! the fabric has a design in it and i think this is a blouse that can be worn all year. the blouse does run large and depending on the chest size, you may have to go down two sizes. i went for the large at first just because swing tops are so short but realized i would need a medium and the length was still perfect. it did not flare out to where you looked like an expectant mother.",5,1,14,General Petite,Tops,Blouses +1080,41,Spring flowers!,"This is a wonderful, cheerful spring dress. the material is slightly thicker than expected. (i suppose i thought it would be a little thinner or more summery, but it really works for both seasons.). the fit is exactly spot on as i would expect for tracy reese. i'm 5'2"", 110, 32-24.4-32, and ordered the 0p. colors and fit are just like the product photo. highly recommended.",5,1,3,General,Dresses,Dresses +999,29,,This is a great summer skirt that is good for work or casual wear. the fabric is soft and the colors go with most anything. one downside is it wrinkles easily.,5,1,2,General,Bottoms,Skirts +834,29,Love this top,"Fits true to size and has a great shape. i get compliments each time i wear it, glad i purchased it.",5,1,5,General Petite,Tops,Blouses +834,42,,,5,1,0,General Petite,Tops,Blouses +834,27,A new favorite,"Trying hard to stay away from tops that are basic tees and branch out with patterns and different cuts. never thought i'd find both in one top. love this! i put it on and knew i had to take it home. it's fitted but not, busy but just enough so, and it's made in the usa! can't go wrong.",5,1,1,General Petite,Tops,Blouses +959,45,I love this!,"This jacket is a great fit and feels like a nice, comfortable addition to a professional/work wardrobe. it is very lightweight and fits somewhat loosely. i am 5""7 and 125 lbs and the small fits nicely. the only con is that there is not a way to secure down the top payer of the wrap )no snap, button, etc.).",4,1,0,General Petite,Jackets,Jackets +834,51,Love!,"I'm so happy i decided to take a chance and order this top. it is gorgeous! so flattering on, the perfect length, beautiful colors. i could go on and on. peplums can be tough but this one hits perfectly on me. runs true to retailer sizing so stick with what you normally order. i'm 5'6"" and 125lb and the s was for me.",5,1,14,General Petite,Tops,Blouses +940,42,Love this cozy sweater,Cozy and nice quality. great fit and runs true to size. could wear this every day,5,1,0,General,Tops,Sweaters +1086,32,"Umm, pineapples, yes please!","Purchased this dress for a garden wedding and received so many compliments. the print is very lovely and the fit was true to size. i was mildly thrown off by the waffle texture of the material as it caused the dress to be a tad clingier than the picture led me to believe, but it was not a deal breaker. loved that it was lined and, though feeling substantial, was not heavy and thus comfortable in 90 degree weather. looking forward to wearing this again.",5,1,1,General,Dresses,Dresses +834,27,Flattering!,"Big bust, smallish waist... this top is so cute and flattering! absolutely love it",5,1,0,General Petite,Tops,Blouses +815,65,How beautiful is that!,"This is a treasure and ""must buy"", friends! tiny designs the most amazing blouses and shirts, and i feel stoked to have gotten this one. the level of detailed embroidery on the front and tiny silver and gold sequins on silver net lace at the shoulders is artistic and well-designed. i've always found the tiny brand to be predictably one size small, but, when i get past my ego and order one size up to a large, i am sooooo satisfied. this sartorial work of art is completely lovely! i have a busty f",5,1,8,General Petite,Tops,Blouses +834,35,Very flattering piece,"I love the deep v - very flattering. bummed that it's made with polyester, but it's light and easy.",4,1,2,General Petite,Tops,Blouses +834,65,Beautiful,This top is just a beautiful as in the picture. it runs true to size and has a beautiful flattering shape on. it looks great with jeans and sandals for a casual look but can easily be dresss up too. i'm 5'3 so sometimes i need petite sizing but i liked the length of the regular fit with this top. first time i wore it i received tons of compliments.,5,1,6,General Petite,Tops,Blouses +868,55,"Super cute--casual top, waffle texture","This shirt is perfect! bought charcoal and ivory. compliments galore, super cute with jeans, workout pants. love it!",5,1,0,General Petite,Tops,Knits +1059,27,"Super comfortable, stylish jumpsuit","This is my first ever jumpsuit purchase, and i love it! the retailer by me luckily had an xs in stock for me to try, and it fit perfectly (i'm 5'7"", 120lbs, slim). looking at the pictures i was a little concerned the jumpsuit would be short, but the length actually hits me closer to my ankles (still a couple inches above). the jumpsuit feels nice and light and comfortable and not difficult to get in and out of. the embroidery detail on the shoulders is a nice touch and the print is fun. would defi",5,1,0,General Petite,Bottoms,Pants +895,53,,"How cute was this little sweater and comfortable even in the south .... until i washed it! i followed the instructions on the label being careful not to wring it out. first of all, the smell was unbelievable! i washed it three days ago and it is still wet and damp and on top of that, it shrunk. even though i handwashed it, line dried it and pampered it to no end!",1,0,4,General,Tops,Fine gauge +854,59,Poor quality,Sooo disappointed with how flimsy this fabric is. i think this is the thinnest of all clothing items i have ever come across anywhere in my life. this is really a shame because the colors are stunning and it is a nice shirt style. another con is if you have any bit of back fat it shows every lump and bump . i do not recommend unless you have a lean back and the cost was $5.00!!!,1,0,3,General,Tops,Knits +868,38,Disappointing,Purchased this in two colors online. purchased in an xs - i am usually a s or xs. the fit was really large in the xs and the seam on the front of the top was in the wrong place and was really unflattering. returning both.,2,0,1,General Petite,Tops,Knits +965,57,Great casual blazer,I'm not a blazer girl but this one is perfect in the sense that it's not overly structured and stiff. it is really soft and comfortable but still holds it's shape. i am planning to wear it with a tee shirt and denim or even some leather leggings (pilcro).i can see this being dressed up for work or church. a great piece for your wardrobe. i could have taken a small but decided on the medium in case i wore something a little thicker underneath.,5,1,4,General,Jackets,Jackets +868,36,,Perfect fall top! extra long sleeves perfect for keeping the chill off.,5,1,0,General Petite,Tops,Knits +1059,39,Adorable!,"I really love this jumpsuit! i purchased it for my honeymoon and my husband loved it! i am 5'1 and 95 pound and i purchased the petite xxs - it fits very well! it is a comfy, thin and lightweight material, not too fitted, but definitely hugs my butt and thighs, more than my stomach and chest. i absolutely love this jumpsuit - colors are more brilliant in person! the only reason i put 4 stars for the quality, is because the first piece i ordered had a defective snap. i re-ordered the jumpsuit aga",5,1,2,General Petite,Bottoms,Pants +895,40,Very flattering but feels oversized,"I was monitoring this sweater dress online for quite some time hoping it goes on sale, but as soon as i saw the lighter color sell out i decided to grab the blue version before it runs out as well. it's a simple yet comfortably beautiful dress at the same time. it looks about the same as it does on the model color/fit only in the neck is a little wider with bordered collar, which makes it more interesting. i'm 6ft tall 160lb, ordered a large and i felt the dress was a bit oversized, but with tha",5,1,0,General,Tops,Fine gauge +1066,26,Love these pants!,"These pants are super flattering. they can be worn to work or on the weekend dressed up or down. they are slimming and fit very nicely. my only complaint is that they start to look worn, the black fades, as you wash them over time. please don't stop carrying them!!",5,1,1,General,Bottoms,Pants +895,59,Shrunk,Love it but it shrank and that makes me so mad.,4,1,3,General,Tops,Fine gauge +965,41,,I love that his blazer is soft and not so structured. so great for a business casual environment. the gray goes with everything and is already a staple in my wardrobe.,5,1,1,General,Jackets,Jackets +895,31,Great tunic,I love this tunic. i am 22 weeks pregnant and the large fit great. i wish it were a little longer but will be great with leggings and perfect for the fall/winter seasons.,5,1,0,General,Tops,Fine gauge +868,61,,"Really cute top, the material is soft and feels like great quality. love the loose cut and slight detail to the simple shirt.",5,1,0,General Petite,Tops,Knits +895,44,,,5,1,0,General,Tops,Fine gauge +868,32,Light and cute,"The perfect flowy fall top! the material is thin so it may pick a little, but i love it.",4,1,4,General Petite,Tops,Knits +868,63,Super cute and comfy,"I love this shirt so much!!! i ordered the gray a day after i received the sage color. this shirt is soft, true to size, comfortable and extremely flattering. it is one of my new favorite go-to shirts. retailer - great job at finding a stylish, casual top that can take me through all the seasons.",5,1,0,General Petite,Tops,Knits +868,41,Huge,"I want to like this top because the idea is cute but i ordered the small and it might have well been xxxl. with sizing like this, one size fits all could just about do it.",2,0,0,General Petite,Tops,Knits +1059,69,Beautiful fabric and design,"Never thought i would buy a jumpsuit, but this one is gorgeous. i put true to size. i ordered a m and a l. i kept the l because i like the looser fit. weigh 150# and am 5' 6 1/2"" tall. i carry any extra weight at my waist and the l just looked better. i almost always wear a m in retailer clothes. love the feel of it and the way it looks on me. really looking forward to wearing it. on sale it is a great buy.",5,1,2,General Petite,Bottoms,Pants +866,47,Fun glam holiday top,An easy top that adds instant glamour. the burnout velvet is super fun for the holidays and yet the design is comfortable and easy. i have found this top can work day and night with the right accessories.,4,1,1,General,Tops,Knits +895,35,,"I purchased this in navy and love it. my only complaint is that is is a little big in the shoulders. i am about 5'4"", 129 lbs and the small is still a bit too big. aside from that, it is a great design and length and i've worn it both with jeans and leggings / boots.",5,1,0,General,Tops,Fine gauge +1110,56,Nicely styled with great fabric & pattern,"Love the pattern & fabric. it does run a little large. i usually take a medium or large but with this dress, i may have even taken a small. it is somewhat drapey, which i like, but that needs to be considered when sizing for it. i'm hoping it shrinks a tad so the dress has a bit more shape. i'd exchange it, but i love the pattern & quirky sleeves so much i want to keep it! got this gem on sale & can't wait to wear it in the spring & summer months next year (or maybe on a warm vacation)...",4,1,0,General Petite,Dresses,Dresses +1059,28,Cute but cheap looking up close,"I bought this outfit online on sale - so i only paid $70, but i think if i saw it in person first, i probably wouldn't have purchased it. while the design is cute, the fabric is beyond cheap. it's not just polyester - it's like a plastic polyester. i think if you dress it up with high heels, necklace, armful of bangles, you can probably distract from the fabric. + +5'5"", 120lb, purchased xs and it's a little big still.",2,0,0,General Petite,Bottoms,Pants +854,48,Floral fave,Cute embroidered mixed textiled shirt. super comfy maybe runs a little small across chest but has a nice stretch so it accommodates well. a great transition piece.,5,1,0,General,Tops,Knits +861,47,Love this shirt,"I do love this shirt as i am a yogi and love to wear things like this. it was a little boxy and big, but don't care because the style of it is so cute.",4,1,0,General Petite,Tops,Knits +854,59,A true tiny,"I was worried the green might be on the shiny side, but it's not. it's a really nice color for fall and the stitching is gorgeous. like in other tiny tops, this top runs small, so order up a size. in most of retailer tops, i'm a small or medium, but in this, i take a large --- a perfect fit. i'm a 36c. is a little on the pricey side, but got on sale, so all smiles here.",5,1,5,General Petite,Tops,Knits +868,46,Great shirt,"This is a great shirt, fits perfect and super comfortable but you feel stylish and pretty",5,1,0,General Petite,Tops,Knits +1059,66,Sweet jumpsuit,I purchased this jumpsuit in the store and i am so pleased with it. i am usually a 10 or 12 top and the large was good. the med was too tight on my bust. love the print very feminine without looking like pjs. cream background is beautiful. fabric is light and cool and i love the pockets. i was hesitant about the short length but i like it. this is a special piece. it's hard to find jumpsuits like this.,5,1,3,General Petite,Bottoms,Pants +868,35,Comfy top with cute design!,Such a great top! the sage color is beautiful. love the simplicity of the top. slender sleeves and just enough flow to the top. this will be a great top to pair with a cute scarf!,4,1,1,General Petite,Tops,Knits +1004,64,A perfect skirt,"Similar to the previous reviewer, i'm also between sizes and for pencil skirts it's usually the larger size that end up fitting. whether this skirt runs large or maybe because it has a slight stretch, my smaller size (10) fits perfectly and seems comfortable enough to wear on a long flight or road trip. the fabric is wonderful, the skirt length is great for work, and the styling is really nice with added detail of buttoned loops at the waist. if i had one negative comment it would be an itty bit",5,1,7,General,Bottoms,Skirts +861,42,Love it =)),Love the cute print and texture of fabric. perfect casual t-shirt.,4,1,0,General Petite,Tops,Knits +854,52,,,5,1,0,General Petite,Tops,Knits +863,52,,,5,1,0,General,Tops,Knits +861,43,Adorable print for yogis,"I am an avid yoga fan so when i saw this tee i had to have it. i am usually a m/size 10 but as this tee is fairly sheer, i did better exchanging for a large. the fabric is so soft and it is very comfortable. a must have for yogis!",5,1,1,General,Tops,Knits +866,62,,"This is a beautiful, richly-colored top. fits well. very pleased. only negative is the button is covered in same material & can be easily nicked with your fingernail.",4,1,2,General,Tops,Knits +1059,46,,"Thought this looked so cute, especially for averting frame. it arrived and was too large, the fabric felt super cheap, and the lace detail on the shoulders was very prominent.... and not in a good way. returned.",3,0,0,General Petite,Bottoms,Pants +1110,46,Beautiful dress. small in the bust,"This is a find! i am always on the hunt for a unusual lbd so when i found this on a ""found and collected rack"" i went for it. for starters, i am 5 foot almost 6 inches, and it the length ends just about the same place on this model. i usually wear a size 2 but when i tried on the size available in the store (oo), i felt i only needed a bit higher sizing bc i am small in the chest. i am barely a size 34 a and probably a 30d at best, and i barely can squeeze my chest into this dress at this size!",4,1,0,General Petite,Dresses,Dresses +965,22,Casual blazer perfect for a college student,"I am currently studying at a university where i am constantly reviewed on how i dress. if i'm underdressed i get comments and if i'm overdressed i get even more comments. the other day i wore a plain navy blue blazer and people asked me all day what the occasion was. for me, this blazer is a nice solution to the standard uniform blazer. the stripes and light grey color make this blazer more casual for me, but i still feel put together for class. the fit is also excellent and doesn't feel boxy at",5,1,2,General,Jackets,Jackets +854,51,Lovely but shrinks a lot,"This blouse is gorgeous, but as other reviewers have noted it runs small and it's very thin. the back is see-through, not the front, though if you tend to wear things a little large and order up a size, the back is fine. my real issue is that it shrank so much when i washed it (on cold, delicate cycle, hang dry) that it's pretty much unwearable now. sad.",3,0,0,General Petite,Tops,Knits +866,63,This is a beautiful top!,"I got this top in black and didn't realize until i got it that it has velvet accents. it is beautiful, sophisticated and can be a great party, work, or play top!",5,1,4,General,Tops,Knits +866,50,Simply elegant,I bought this to use over the holidays. it is extremely comfortable and i've received multiple complements. you can dress it up or wear it casual.,5,1,1,General,Tops,Knits +866,42,"Cute, cut short and wide","This is a cute top that has a nicer texture and sheen to the velvet in person than the pictures do justice to...it's just simply richer and prettier in person. + +there's a nice drape to the fabric, but it's cut pretty short and wide, which isn't flattering imo, unless you are very petite and have a small bust. i say this as someone who is small enough that i usually welcome a shorter cut top because most normal length tanks and tops are tunic length on me. + +i would have given it a higher star rat",3,1,3,General,Tops,Knits +854,36,Order in dress size,"Really great shirt, i made the mistake of ordering normal size (xs) and it was way too small. this is more like ordering in dress shirt size- so think 4, 6, 8, etc, definitely going to have to send back and order up to s or m. will be a keeper once i get the right fit!",5,1,16,General Petite,Tops,Knits +866,44,Great for the short waisted,"I loved this top. loved it. the quality and color ( i got the red) are wonderful. the top fit perfectly through the chest and the a-line design was super flattering through the waist. however, i am long waisted and the top was simply too short on me. even when worn with mid-rise trousers, my belly showed when i leaned to the side or reached my arms above my shoulders. i so hoped it would be perfect with skinny jeans or leggings - as shown on the model - but on a long-waisted frame it is simply t",4,1,1,General,Tops,Knits +965,40,Lovely and comfy!,"Many thanks to all previous reviewers that convinced me to try this blazer. i bought it in navy and it is absolutely perfect. i love its simple lines, softness, and quality of the material. it transitions easily from work to casual. i paired it with mirabella lace top and skinny jeans for a look that is both practical and beautiful.",5,1,0,General,Jackets,Jackets +895,45,Love this!,"Although this is not my husband''s favorite (he prefers things a little more tailored). i absolutely adore this! i got this in the ivory/cream color not realizing they had it in two more colors. i just ordered the blue. i loved the way the size small fit (not as wide), but the medium for my height (5'7"") fit better and was longer. if i want to wear it as a dress, i could. i highly recommend this!! well made and looks great!!!",5,1,0,General,Tops,Fine gauge +868,31,Comfy flowy top for fall and winter,Nice quality material. the green is pretty color. just a good cozy top. i normally wear a large in retailer clothes and the large in this world was very roomy (which was fine with me). if you are short and have smaller shoulders and bust definitely go for a size smaller than you would normally wear.,4,1,3,General,Tops,Knits +895,44,Love this!,I absolutely love this dress. the quality is perfection. the design is adorable and it is comfortable! i paired it with leggings and short boots and worked 10 hours in it. and i worked a large event so i wansup moving things and active almost the entire time. it was the perfect combination of dressing up for work yet being fully functional! oh and the neck line ads that extra touch of style that makes it a great piece. love this! it is also true to size. i have a medium.,5,1,0,General,Tops,Fine gauge +1110,43,,"I got this in a medium, its really big, i added a belt and ir looks alot better, the medium seems like a large, im a size 6 or 8, should have gotten a small, now they are out will use the medium with a belt",5,1,0,General Petite,Dresses,Dresses +861,29,Super cute print,This print is so cool! the shirt is just a little loose so order your usual size and it will fit perfectly.,5,1,0,General,Tops,Knits +1059,41,Very unique and flattering,"I tried this on as a fluke. i work at retailer and like to see the fit of everything so i can talk about it with customers. +it is so chic! it makes your butt look amazing! i tried it on with nude booties, but i could also see it with a great heeled sandal, or flats. don't overlook this beauty!!",5,1,4,General Petite,Bottoms,Pants +895,28,City by storm,"This piece was so gorgeous that i bought it despite how impractical it is to wear it in honolulu. it's honestly the perfect little number to wear if you want to go for a late autumn/early winter stroll in the city. it's incredibly comfortable and versatile. i've worn it on cool mornings in honolulu as a dress with booties, and a few months ago, i wore it to minneapolis and added leggings and a warm pea coat. depending on how you choose to accessorize the look, it can be casual or professional. i",5,1,0,General,Tops,Fine gauge +895,39,Mod perfect,"This versatile tunic is a mini dress on me (5'3"" 36dd) when i wear size l and warm sweater when i wear size m. i love the boxy yet flattering cut, the cute neckline and the warm smooth knit fabric. wish i had gotten my hands on the cream colorway!",5,1,0,General,Tops,Fine gauge +854,32,So flimsy,"I buy almost ever top tiny puts out and so i grabbed this one in the last tops sale since i'm a sucker for embroidered flowers. everything about it is gorgeous except it is so flimsy i can't even believe it. like when i held it up in the dressing room, i could see through the entire shirt, front to back, before even putting it on. once on, i could see everything through it. i actually thought i was going to tear the thing to pieces trying it on, it's so frail. i own so many tiny shirts and while",2,0,17,General Petite,Tops,Knits +895,38,Great sweater!,I purchased this sweater online and it's amazing. styling with jeans is nice but to me dark navy pants works the best.,5,1,0,General,Tops,Fine gauge +1066,24,Great pants! runs small and green color is wrong,"I ordered these pants in black and green. the fit of the pants is perfection. they feel amazing and are so flattering. they do run a full size small. i'm consistently a size 6 in all pants (typically wear paige, joes, and frame and always a 6) but i had to get these in an 8. the 8's feel great though so i think they're just a full size small. + +secondly, the green color is not at all what's pictured. the green is hunter, not olive, and much less versatile. i'll be returning the green pants.",4,1,0,General,Bottoms,Pants +318,46,Top portion too low,This was such a cute suit but strange how they designed it. top runs super low and it almost did not cover my breast area. runs small. i had to return because fit was way to small for a large suit.,4,0,0,Initmates,Intimate,Swim +854,29,Cute top,Love this top (and every top tiny puts out). runs very small. i normally wear an xs but i got a m in this top. so pretty and great detail,4,1,0,General Petite,Tops,Knits +868,66,Is this top for 2 people?,While i love the green color and the soft waffle knit of this top it was so wide i could have fit two of me standing side by side into it! i mean it was truly laughable! don't know what the manufacturer was thinking but this one needs to go back to the drawing board.,3,0,0,General,Tops,Knits +861,44,Strike a pose,"The design is so cute (people in different yoga poses, small and subtle prints) and a must for a yogini. i love the colors, it's colorful but not too bright and it's beautiful against the white background. i ordered xs (i'm 34b, 26 waist, 36 hips) and it fit perfectly (it has a fitted look but not tight because it has some stretch from the soft cotton material). i like the fact that there's no stretchy spandex feel, just pure soft cotton feel. it's great for gals who are conscious about the arms",5,1,4,General,Tops,Knits +868,39,Love it,Love this top! it's light weight and very comfortable! it's great for wearing around the house or going out for a casual dinner. would love to get it in more colors!,5,1,0,General,Tops,Knits +854,39,,,4,1,0,General Petite,Tops,Knits +318,44,Super cute suit for slim girls,"I love this suit. it is a really cute color way & stripe and the fabric is nice, but... i ordered an xl. i have 20-30 extra pounds on me leftover from my last child. i am currently wearing a 10 or a 12. this suit would be great for a thinner girl, but i could not wear this suit to the family pool. the bottom is cut kind of skimpy and the breast area does not have much support. this xl would be a better fit on an 8-10. it will need to go back.",4,1,0,Initmates,Intimate,Swim +861,35,Cute tee,I think this t-shirt is so cute. simple but cute. i originally ordered this in medium. i washed and wore it once but realized it was really too big. my normal size is small so i reordered it. it is slightly shear for my taste so i do wear a cami underneath. i plan to wear this to my 2 year old's gymnastics class. it is little yoga people but close enough! i normally hang dry all my clothes from retailer as they can be quite delicate but the first one i washed did wash well.,5,1,0,General,Tops,Knits +830,52,Cute in theory,"Cute in theory, i love the bright colors, the tied black collar sash and the 70's vibe, however, the fabric is cheap, and the worst part in my view is that the seams that run along the front center of the shirt do not align the pattern. maybe this was intentional, but with the shirt i received, it looked horrible. i sent it back. i notice in the picture that the black ties are strategically placed over the center front seam, so it is a bit deceiving. i wouldn't buy this top at any price based on",2,0,5,General,Tops,Blouses +830,36,Fun & different,"I love the colors in this top. the black tie makes this top different from anything else in my closet. the cut accentuates my shoulders, which i like. i usually wear a petite small, so i ordered this in an extra small and it fits nicely. the fabric could be a bit softer, but i still really like this top. it's unique and very feminine.",4,1,1,General,Tops,Blouses +1094,21,Beautiful dress up or down dress,"I purchased this dress for a summer celebration. i am petite, but ordered the dress in a misses size (one size smaller) because i wanted it to hit right at the knee, rather than the shorter above-the-knee length pictured. i loved all about the dress - the fact that the colors are more vibrant than in the picture and that is has a beige slip.. i dressed it up with gold chandelier earrings and nude sandals and got compliments form almost everyone. i am planning to dress it down with espadrilles.",5,1,0,General Petite,Dresses,Dresses +868,59,,I am not a bright clothing person but adore this top. if this is the right red for you i highly recommend.! it is a beautiful bright red no orange tones so really works with my skin tones. it is a very comfy shirt and although it is a stretchy fabric it did not show any lumps or bumps in the upper back. has a beautiful flow to it and looks not only great with jeans but really cute with a patterned sweater pencil skirt i bought at retailer a couple years ago and always with a good old black pencil,5,1,5,General,Tops,Knits +872,29,Fun jacket!,My daughter tried this on in the store yesterday and loved it. it fits perfectly; true to size - the quality of the fabric and style is lovely. a fun jacket to layer with.,5,1,2,General Petite,Tops,Knits +868,28,Nice but sleeves and body have volume,"Color is pretty true to pic, a bright blue red. sleeves have more volume than pic. so does the body. in my opinion. maybe if i looked like the model. i wear a 27 in jeans and it doesn't look so cute on me. also i'm a brunette. angles? pinning? i have to wonder. probably just pics at good angles. it looks really cute on the model though.",3,1,0,General,Tops,Knits +1094,53,Fun dress!,"This a great dress! bright colors, soft material and comfortable! the body of the dress is voluminous, so i found it to be a definite swing dress. i can see why it sold out the first time it was offered!",4,1,6,General Petite,Dresses,Dresses +1030,47,Mother cords,"This is my second pair of these because they fit and fell so good. pricey, but worth it.",4,1,0,General,Bottoms,Jeans +1030,24,Great cord pant,"I really love this pant. ordered online and they fit well. they're cute, edgy with the fray at the bottom. corduroy material. awesome!",5,1,0,General,Bottoms,Jeans +1094,39,Boho and beautiful,"Love this dress. it is airy, lightweight, and comfortable - the kind of dress i'm sure i will wear all summer long. from the pics online i thought the sleeves would have embroidered detail, however it was just the print of the fabric. i like it just the same. it comes with a slip underneath so it swings nicely. i ordered it in both a s and xs. there is plenty of fabric and it is not at all cling-y so the xs was fine. excited to wear it!",5,1,1,General Petite,Dresses,Dresses +1094,26,Amazing pattern just not the right shape for me.,I saw tons of people raving about this piece so i had to check it out for myself. i love the vibrant colors and the design and while the fabric is delicate it feels amazing and light. i sadly had to leave it as the store as i am a girl with a larger chest and big hips. i looked huge and it was not flattering to my shape. if this dress came in a maxi with a high waist like i would be all over it. it is beautiful.,2,1,0,General Petite,Dresses,Dresses +1022,42,Crimson prima,"The prima is soft and silky. they fit true to size, maybe a little tight in the waist. while the color is more of a wine it looks nice with a lot of my fall blouses and sweaters. you will be pleased with this purchase.",4,1,0,General,Bottoms,Jeans +858,38,Amazingly soft and comfy but...,"This is so so soft and has a nice stretch to it. the fit is great, love the side zippers. i wore it today for the first time and before i even arrived at the office i noticed a crazy amount of pilling where my purse rubbed. nothing i cant get rid of (till next time i carry a bag!) but if this keeps up there soon won't be much of a shirt left. very disappointing for the price. was lucky enough to snag this on sale but it was still pricey for the quality.",3,1,2,General Petite,Tops,Knits +1094,52,Lovely!,"Love the dress! feel it fits true to size or slightly larger...knocked off a star as my dress arrived without the slip liner. i luckily have a slip that works from another dress...the beading is a lovely surprise! subtle and just enough sparkle in the sun, but not too much.",4,1,6,General Petite,Dresses,Dresses +1094,33,Swinging dress!,"I thought the dress in store for true to size and was a bit more 'swinging' style. i am 5'7, athletic and the small fit perfect.",4,1,0,General Petite,Dresses,Dresses +1094,39,,,5,1,0,General Petite,Dresses,Dresses +1094,55,"Adorable, but ...","The dress i received is adorable, however, the color is much more subdued than shown in the catalog.",4,1,0,General Petite,Dresses,Dresses +1094,53,,"This is a review of customer service in general,from several issues with online shopping! i don't understand why you ask for my opinion and say it counts when clearly it does not.i have had a lot of issues. receiving parcels from one of your carriers,laser ship and i have reported the issues to them and retailer,but it appears only the good parts are read.this poor service cost me money in postage and lost discounts but again i'm ignored,and i had to order my last returned parcel again pay more fo",5,1,1,General Petite,Dresses,Dresses +1094,45,"Pattern is beautiful, just to-die","This is a shift dress, which is a great dress for many people, in a kind of man-repeller way. by saying that, i mean, a really pretty dress that can show off amazing shoes, good legs, a beautiful face and hair. this is not a body con dress. however, when you do such a high neckline and boxy sleeves, you do no one any favors. everyone has a nice neck and decolletage and collarbone. everyone. the neckline needs to open up a bit....i'm not saying v-neck, just a bit lower than this, because it makes",3,0,0,General Petite,Dresses,Dresses +1094,38,See through potato sack,The title says it all. looks very pretty online though.,1,0,3,General Petite,Dresses,Dresses +841,50,Itchy itchy itchy!,"Let me start off by saying how pretty this top is, and heavy,.and itchy! you would have to stand like the model does in the first shot to wear the top (with your arms not touching any part of the top! the sequins will itch if you put your arms down (underneath the armhole). another reason i didn't like the top was because the should straps are unadjustable. i would have to get mine tailored for my 5'2"" frame. i usually wear a medium or 6/8 in tops and ordered this in a medium, it was roomy.",2,0,0,General,Tops,Blouses +1094,67,Lovely little details,This is a perfect dress for work or fun. flattering and flow with lovely little subtle details.,5,1,0,General Petite,Dresses,Dresses +1094,54,,I absolutely love this dress! the pictures don't do it justice. the colors and details are stunning! i have only worn it once this far but received a ton of complements.,5,1,2,General Petite,Dresses,Dresses +850,50,Beautiful top,"Plan to wear this with pants. may not fit some body types due to the tie and cocoon sleeve styling, but i recommend trying on before deciding. truly stunning athough the weight of the silk is very light. would have been better at this price point if it was heavier weight, but still not a bad value.",5,1,0,General,Tops,Blouses +1094,35,Love!,"Retailer, take me away! this dress transports me to an island. i ordered a small and exchanged for an xs, i could have probably even done an xxs (thank you vanity sizing). i'm not tiny. i'm 5'4'' and 130lbs with lots of baby left overs. +i love the details of the dress and so many people stopped me to compliment it. and, while a few people thought i was pregnant while wearing this dress (because women obviously only wear flowy dresses when they're pregnant), i welcomed the seat offers with wide o",4,1,1,General Petite,Dresses,Dresses +1094,24,So disappointed,"Like other reviewers, i saw this dress on the cover of the catalog and knew i had to have it! well, i am very disappointed. the colors aren't as rich as the outdoor photo, although they're brighter than shown in the studio photos. this is just not a flattering dress. i've put it on three times and taken it back off. the neck is too high, the sleeves are too narrow (and i have really skinny arms), and there's no ""swing"" to it. i am 5'4"" and weigh 120 pounds and bought a size small, which is what",1,0,1,General Petite,Dresses,Dresses +1094,56,Prototype vs actual dress,"If the dress fits, there is nothing not to love about it. the color, of mine, is exactly like the catalogue and first photo online (deeper and richer than the studio photos). it is not too sheer, as another reviewer reported. it has a slip, and the fabric is beautiful. + +the issue i've had has been sizing and style. i wear a size 2. i ordered an xs. the dress i received was not the style of the catalogue dress or the first dress in the online photos. i was looking for the very floaty, full dres",4,1,9,General Petite,Dresses,Dresses +829,35,Go to top,"When i'm looking for something comfortable to wear that looks effortless and cool, this is the top i pick! i ended up buying it in navy too. it's really soft, ur washes well, and it's great quality! a must have.",5,1,0,General Petite,Tops,Blouses +1104,36,,"This is wearable avant-garde fashion! yes, the swing is oversized...it's supposed to be. that's the design! fits perfect at arms and across the chest. i'm 5'3, 127 and orders a 2p. it's perfection! just understand what you're buying. high fashion. high quality.",5,1,1,General,Dresses,Dresses +1094,37,Knock out!,"I am a huge fan of absolutely everything tanvi kedia designs. her clothing is intricate, boho, colorful and fits like a dream. when i saw this online i had to have it. it just arrived today and its everything i imagined it to be! the fit is more like the studio pics and less like the first catalog pic. the dress definitely has some room, but it isn't quite as swingy as the catalog photo. i have a lot of curves, so it may be swingy on a more slender figure. i ordered an xl mostly because of the s",5,1,89,General Petite,Dresses,Dresses +868,33,Pretty top,"Cute top, not great on me. beautiful, bright color.",3,0,2,General,Tops,Knits +1094,24,This is not the original,"I bought this dress because i saw it in stores when it first came to retailer. it was stunning. the colors were vivid and the beading was intricate. i regretted not purchasing it immediately. + + +fast forward to today... the dress i received was not the one that was originally in stores. the fabric was different, there was hardly any beading, and the colors were washed out and dull. + +i read previous reviews saying that the dress was more like the studio pictures than the original promo. but t",1,0,0,General Petite,Dresses,Dresses +1094,36,,,5,1,0,General Petite,Dresses,Dresses +1094,63,Gorgeous detailing,Had to have this dress as soon as i saw it in store. i am heavy chested (40dd). bought it in an xl. it is so colorful and vibrant. dress would look good on any skin tone. love that it is a shift dress. perfect with sandals or wedges.,4,1,0,General Petite,Dresses,Dresses +868,26,Very short!,"This top is very beautiful and the color is a dream, but wow is it short! i'm 5'8"" and it barely hit the top of the waistband on my jeans. the fabric is oddly heavy and not light and airy like i expected. it seemed like an odd choice for a blouse. + +because of the seaming and gathered fabric at the top of this shirt, i wouldn't recommend this to women who are busty/curvy on top. it made my chest look huge! this styling may work for petite ladies, but tall & curvy ladies beware.",2,0,0,General,Tops,Knits +799,64,Great racerback!,I decided to order both the black & sand colors in the m/l. very soft & fit is perfect. has adjustable straps. wore under my racerback tank today for my usual walk. the bra & straps were not exposed. it did not rub or irritate at all. it will work well under other tops i have & some dresses that are racerback style. i have other racerback bras but they just haven't worked out - either too uncomfortable or the straps show anyways. this one is perfect! it's soft & lightweight. it has some moderate,5,1,8,Initmates,Intimate,Intimates +1104,56,Way way too big,"I loved this dress online and was luckily able to locate it in a store about an hour away from me. i drove to the store to purchase it; however, when i tried it on, i was so disappointed! the print is adorable and it is made of great quality, but the swing style is definitely more than mini! i could have fit 3 of myself in this dress. it is definitely not as depicted in the photographs. also, the background of the dress is way more pink than appears in the photos, and the floral print isn't as r",1,0,9,General,Dresses,Dresses +1022,39,Super flattering and comfortable,"I love these pants! they are slimming, can be easily dressed up or down, and they are super soft and comfortable.",5,1,0,General,Bottoms,Jeans +1094,32,Muumuu,"I was surprised at the high quality of fabric; however, the dress looked like a muumuu on. maybe with a belt it would be cuter...",3,0,0,General Petite,Dresses,Dresses +1094,81,,"I really wanted to love this dress. it is absolutely beautiful - the color, design and details. however, whether it is the high neckline or the sleeves, it did nothing for me and made me look kinda frumpy. though i am slender, i have a chest. maybe that was the problem.",2,0,3,General Petite,Dresses,Dresses +898,35,Plain jane,"I guess i am in a comfort clothing mood these days since i have been looking at a lot of them lately! this one is a nice thicker material and i like that the sleeves go all the way down, but i am not a fan of the design. i felt the color scheme was very plain. the neckline comes up higher on me than i would have expected and makes me feel like i am choking. it is not a flattering cut on me and does not accentuate anything i would want it to, nor does it hide imperfections. it truly is comfort we",3,0,4,General,Tops,Fine gauge +829,67,Lovely,"This shirt fits true to size, and is lovely. i love the 'v' in the back, and i believe this would look wonderful on all body types. i ordered my usual size and was very pleased.",4,1,1,General Petite,Tops,Blouses +829,30,,This top is absolutely gorgeous in person. i am usually a size 12 in everything..pants and tops but this one i ended up getting a size 10. definitely size down otherwise the top will slide back on you and the arm holes will be crazy big. but it's a great top for summer. very cool and light. and the v-neck back and front is just so pretty. great buy!,5,1,6,General Petite,Tops,Blouses +898,46,Too small!,"Had to return this for a couple of reasons: 1) was too small! it's made like one of those tiny mittens that stretches to fit any size hand. i didn't bother to order a size up because i wasn't sure whether to go from a small to a medium or to a large. 2) the main color isn't grey, like the picture. it's a black and white checkered pattern. so, it doesn't look at all grey irl. + +i'm still recommending because, if you get the right size, and like the colors, it will be a nice, light and comfy swea",2,1,1,General,Tops,Fine gauge +872,39,You have to get this blouse!,"Everything about this blouse is perfect - the color, the drape, the detail. so flattering and easy to wear. i just love it!",5,1,0,General Petite,Tops,Knits +829,52,,"This is a gorgeous, well-fitting top! i was hesitant to even try it on because i was sure it would require a strapless bra, which i avoid. nope. worked perfect with my nude bra. i am 32d so need a real bra, but wore an unlined, underwire bra with no show through. great with denim shorts or more polished with dressy pants or dark jeans.",5,1,2,General,Tops,Blouses +72,25,My favorite socks!!!,"I never write reviews, but these socks are so worth it! they are incredibly soft, stretchy, and hug your feet just tight enough where you don't even realize you're wearing socks, but they aren't too tight. + +i wash them straight away after wearing so i can wear them again. you won't regret it. true to color!",5,1,0,,, +974,24,Cute and comfortable,"This has become a go-to work staple in my closet. soft, with a relaxed fit, makes this a very easy piece to work the day away in while still pulling off a dressy casual appropriate for my office. highly recommend",5,1,0,General Petite,Jackets,Jackets +1022,32,Love!,"Ag jeans have become my favorite and these didn't disappoint. ridiculously comfortable! i think they run a tad big, but maybe not enough to size down. just enough to where i'll need to wash them more often, maybe.",5,1,0,General,Bottoms,Jeans +1022,37,,"Love, love these jeans. being short they come right to my ankle. super soft and don?t require any hemming. i ordered my typical jean size of 26 and they fit like a glove. would love to have these in black and grey.",5,1,0,General,Bottoms,Jeans +829,25,,Very cute top. flowy and feminine. love that it has the little clips on the shoulders to attach to your bra strap to keep the sleeves from falling down.,4,1,1,General,Tops,Blouses +974,34,Chic mama,Ooo la la! sooo chic! sooo retailer!!,5,1,0,General Petite,Jackets,Jackets +885,30,Not as pictured,"This top hit at my hips not as it appears on the model in the photo, and i am short at 5' 2"". cute top, but shorter than i had expected and definitely not a tunic style.",3,0,0,General,Tops,Knits +825,40,,"Love this blouse, it fits tts, and it accentuates all the right curves. the color is a lovely shade of pale peach, and while it's true that some of the buttons aren't cut, it's an easy fix, you just have to take a small pair of sharp scissors, and carefully cut the uncut threads--it didn't even take me 5 minutes to do, then you can button or unbutton in whatever way feels comfortable for you. it just makes you look and feel effortlessly sophisticated. busty girls, don't be shy--i have a 34 h bus",5,1,6,General Petite,Tops,Blouses +974,35,Cute and comfortable!,This jacket is a neutral color with a subtle print that adds great character. the stitching around the edges is cute. the shape is very flattering and not too boxy as some open jackets can be. a perfect layering piece!,5,1,0,General Petite,Jackets,Jackets +885,40,Shorter than it appears,"I love the colors in this top, but i returned it for a few reasons. the material is extremely fragile; with small kids i knew this would be snagged all over after my first day of wearing it. my other issue was that it came to just below my belt on me. i was under the impression from the photo that it was more of a tunic style top. i'm 5'6 and it just didn't look that way on me.",3,0,0,General,Tops,Knits +872,56,Really pretty blouse,"This blouse does run large especially in the length of the sleeves (but the rest of the shirt fit well) pretty pretty blouse. hides bulges, runs a little long. super soft material. a must have for fall!!!",5,1,0,General Petite,Tops,Knits +872,40,,"This blouse is so much cuter in person! and it's more golden than yellow so it's not as bright which makes it easier for blondes to wear. i tried it on thinking i'd never be able to pull the color off but loved it enough to try, and wow so perfect! i had to get it and it was on sale. love this and happy to add it to my antro collection!",5,1,0,General Petite,Tops,Knits +898,51,Ski with me in '73?,"Love this--the chunky ribs, the retro striping, the conservative neckline. all of it. comfy, casual 70's-on-the-slopes vibe. leaving the house in it today wich maroon cords and chunky boots. so cute!",4,1,1,General,Tops,Fine gauge +872,48,,Beautiful and chic. so glad i tried it on!,5,1,0,General Petite,Tops,Knits +162,46,Vegan suede leggings,"""vegan suede"" makes these sound fancier than they are. i love them and they're super cozy and a nice change from plain leggings, but they're just a microfiber legging which makes the price about 20 too high even for retailer. still... i'm sure i'll wear them plenty. i usually wear a 2-4 and the xs fit me, which makes me think they'd be too large for a size 0/xs.",4,1,2,Initmates,Intimate,Legwear +872,44,Size down,"I was unsure about the color when i got it in the mail but it is very flattering. it is roomy for sure. with a pair of slim shorts or pants it looks great though. creasing may be an issue. 5ft 6, 135 lbs 36 d...the xs looks good with room to spare. +nice weight fabric for fall.",4,1,0,General Petite,Tops,Knits +872,44,,"Beautiful color for fall. sleeves are a bit long and loose, but otherwise a great blouse for work. i recommend sizing down",4,1,6,General Petite,Tops,Knits +872,33,Buy this asap,"Love everything about this. the color is gorgeous - great fall addition to any wardrobe. the tassels are cool - usually don't like things like that. + +i wear a small or medium in retailer, usually small, and i purchased the small.",5,1,4,General Petite,Tops,Knits +872,54,"Soft, fun, gorgeous","Haven't seen a top as fun and unique as this without being ""too much"" in a long time. i typically like a little longer with skinny jeans/leggings but this does the job of hitting at a good spot just at my crotch and the bottom of my behind. it's the right amount of swing at the bottom to wear out (not sure i could tuck it in and make it look right as in the photo), the ""bell"" at the sleeve bottoms adds just the right amount of detail as does the neck detail and ties. the color is beautiful and i",5,1,7,General Petite,Tops,Knits +162,32,"So cozy, so fashionable",I am wearing these as i type this. they are unbelievably cozy. would wear them as loungewear if it weren't for the fact that they also look so so cute and i want to wear them out. so soft and a really good fit. higher than my other leggings so i don't have to pull them up ever. but also just really fashionable looking. love!!! one of my favorite retailer purchases ever.,5,1,1,Initmates,Intimate,Legwear +854,60,Beautiful but didn't work for me,"I loved this top when i tried it on. i'm usually a small or medium and ordered the medium based on these reviews. the only problem with this for me was that you can see through it in the back. it showed every lump and bump around my bra. reluctantly, i am going to return it. if you don't have any lumps and bumps i think this is a great top. i wish it had worked for me. i debated about trying it on with a camisole to see if that would help, but don't really want to have to wear a camisole in the",4,1,0,General Petite,Tops,Knits +854,35,,"Not sure if it truly runs small as i didn't have an xs to compare with, but i picked up the s at the store and that fit really nicely. had a loose flow about without it looking big on me. i'm 5'0, 32 d 110lbs and have a petite but athletic build. and i normally wear xs. the sleeves were a snug fit, not in an uncomfortable way because the material is stretchy but i would wonder if an xs would have been too tight around the arms, and the chest not creating that flows look. very feminine, sweet and",4,1,11,General Petite,Tops,Knits +1086,37,"Beautiful, light","I'm 5'8"" small 115 pounds. ordered the xs. this dress is gorgeous! my husband loved it! i tried several sticky bras... nothing worked. i'm 32dd +i gave up. if your ok with no support, you'll love this dress. sexy back, perfect length, so light!",4,1,6,General,Dresses,Dresses +854,59,Adorable,"Very flattering and looks much better on than on the mannequin in store. i an in between small/medium and went with medium which was looser in back and did not show any lumps or bumps. great with jeans, pencil skirts and capris .",5,1,2,General Petite,Tops,Knits +854,50,So boxy!,"For my body type, this top looked ridiculous! i am small-busted and thinnish on top. this seemingly very pretty top look like a big rectangle on me. very unflattering. hard to tell if it was true-to-size because it hung so wide. i think for a gal with more substantial upper body (i.e., boobs) this would work better.",3,0,0,General Petite,Tops,Knits +1047,38,Fantastic design but poorly made,"I absolutely fell in love with these comfy palazzo pants and imagined that i'd be wearing them all summer long. they fit beautifully, were true to size, and seemed to go with every top i owned. unfortunately, on the second wear, the inseam completely unraveled, leaving a foot-long gaping hole in the leg. i also noticed some stray threads along the other seams, so i'm not thrilled with the quality. it seems like they were poorly manufactured. i'm not sure if i just purchased a faulty pair or if t",2,0,3,General Petite,Bottoms,Pants +854,31,Like wearing just a cozy tee but way better,"White, lace, peplum...all my jams so this top was a no brainer order. what i didn't realize was how cozy the cotton would be. it was like just wearing a cozy tee, but looked so much better. i am 5'5"", 135lbs, 34c, and the small fit perfectly.",5,1,1,General Petite,Tops,Knits +829,30,Size up for bigger bust,"I normally wear a 4 or 6 at retailer and bought this in a 6. the size 6 is even a tad small in the bust area but not small enough to size to an 8. i am 32d for reference. for ladies larger than a c cup, i would recommend sizing to your larger size. definitely try on at the store if you can.",4,1,1,General,Tops,Blouses +863,46,"Perfect fit, casual, comfy",The slubbed palette tee fits perfectly. it's very comfortable and looks cute with jeans. i'll be ordering more in other colors. i really like that its made in the us too.,5,1,1,General,Tops,Knits +1099,45,,This dress is thin and completely see through. it is definitely not worth the price tag. would be really cute in a thicker material.,1,0,6,General,Dresses,Dresses +854,29,"Pretty, but not great","I feel like this top is almost perfect, but there's something missing. the details are nice, the fit is fine, but something wasn't right. maybe it was the weird arm length? + +fits tts, if a tad on the large side.",4,1,1,General Petite,Tops,Knits +1086,33,,"This dress looked amazing in the picture. i am 5'10 and since the model was 5'9 with the dress dragging on the ground, i assumed it would be long on me as well. even with flats, this dress is an awkward length. the description says it is 62 in length but i measured it and the dress i got was 52. i will say that it's a beautiful fabric and the quality of the dress is great. it just doesn't look like the dress in the picture at all in terms of the way it hangs and the length.",3,1,6,General,Dresses,Dresses +863,56,,"Great tee! color is vibrant, material is soft, fits great.",5,1,1,General,Tops,Knits +854,37,Nice white top,"Beautiful white top. peplum never looged good on me until i found this one. i am 5.4, 34 dd and this peplum looked good on me. most white tops are see through int he front and this one isn't. but back is a little see through. for casual that much see though is good. not sure for office. but this is still a keeper for me :)",4,1,0,General,Tops,Knits +854,32,Too thin,"I would have to wear a camisole underneath this, which is odd considering it's still two layered in the front. i wanted an easy white shirt to wear, not something i'd have to layer.",3,0,0,General,Tops,Knits +829,36,In love!! best buy of the year,"So i almost returned this top without trying it on because i've been binging on tops with thin blue lines but so glad i didn't!! i'm busty like ddd36 and i weigh 170, but i got the 8 and it fits like a glove! perfection!! plus i got it on sale!! so fab!",5,1,0,General,Tops,Blouses +826,50,Runs very large,"My review of the pros : 1) quality made, not see through in any way, can wear with small bra straps 2) lace gives the top a 'different look"", really liked it. my review of the cons, which made me return the top 1) runs huge!!! i am 5'2"", 36 small c, broad shoulders and my usual size medium looked like an xl. it was large in the bust area and almost 'puckered' at the armpits? i would probably order 2 sizes down to an xs, which i never wear in any size top. 2) for petite gals (i am 5'2""), this a a",3,1,2,General,Tops,Blouses +863,58,Great shirt...but colors fit differently,"I love this shirt. i actually bought two in black (my ""uniform""), then decided to order one in white as well. however, the white shirt fit differently than the two black ones! it was significantly shorter; over 2' shorter! while the black tee is the perfect length, the shorter white version wasn't flattering on me and kind of flared out around my waist...not the best look. that being said, i know the black shirt will be in heavy rotation for a while, and the people at retailer were very und",5,1,1,General,Tops,Knits +854,27,Classic,"I love this blouse! it is such a classic silhouette. the fit is not so loose on me as the model, but i have a much more curvy figure at a size 14/large. i am completely coverd up in this top, and the waistline is incredibly flattering to a full figure. the lace makes this top easily able to go from dressy to casual. i can see myself wearing this top again and again. great purchase.",5,1,2,General,Tops,Knits +1047,54,Easy breezy pants,"These pants are a must for any girl's summer warm weather wardrobe! i tried them on in the store and loved them. but... i am just over 5' and they were too long in the xs, even with 2.5 inch heels. so i ordered them in an xs petite and they are perfect with my 2.5-3 inch heels. +i love that they are wide-legged! they look cool and are flattering! i am a teacher and plan on wearing them to work during the warmer months with a nice solid tee and a statement necklace. and of course, heels. i highl",5,1,3,General Petite,Bottoms,Pants +829,32,,Wanted to love this one so badly but didn't work for me. just looks really wide on me -- looks amazing on the model though!,3,0,1,General,Tops,Blouses +854,51,Lovely and versatile,"Imo this top does run small. arms were tight in the size xs and just a bit snug in the s. top is definitely versatile. i don't usually wear peplum tops due a larger chest (34d-dd) and they usually look like maternity tops on me, however this one did not. the problem with this top is the fabric in the back of the top is shearer than i'd like. you can see every bulge and bump of your bra. i felt you'd need to cover your back with either long hair, jacket, vest or cardigan. not a deal breaker becau",4,1,5,General,Tops,Knits +843,32,"Beautiful top, just not perfect","I got my usual xs (i'm a 32b) and the top fit fine from the chest up. my head just fits through the hole on top without having to unbutton. but then from the chest down, the shirt billows out too far. it hits me at the hip like the model (i'm 5'6"" and wear 2/26) but because of the extra fabric it really needs to be longer to balance out the trapeze look. since the top portion fits nicely i almost want to keep it then have a seamstress take it in a little at the waist so it's more a-line than tra",3,1,1,General,Tops,Blouses +829,53,"Awwww, so cute!","I could not resist this top. it is super cute, the material is nice and thick (you can get away with wearing no bra). shows off your bronzed or creamy skin to perfection. i can't wait to wear this :). i think the cut is very flattering for all figures. top might be a bit tight for very big busted ladies though.",5,1,2,General,Tops,Blouses +843,43,Beautiful fabric,"Love the pleating on this top. looks great with my +white jeans. it's lightweight and has a slight sheerness.",5,1,3,General,Tops,Blouses +1047,32,"Very elegant, pseudo-dress, fun to","Stumbled upon these in a size medium at the store and was initially very disappointed that they were too big. the sales associate found an x-small and suggested that i try them on. i was so pleased that they fit (but am definitely not an x-small at this point in my bottom ... i mean, life). + +wore these for a 4th of july party and felt elegant and comfortable all at once. they were just dressy enough with a white trapeze tank, long gold necklace, and gold sandals (i can only imagine them with",4,1,1,General Petite,Bottoms,Pants +854,32,Sweet!,"Love this top, the contrasting lace/eyelet is pretty and interesting. it flairs in a flattering way.",5,1,0,General,Tops,Knits +854,65,Nice find--check out the extra photo!,"It must be hard to photograph white clothing. this lovely top is almost invisible in the featured photo, but it is accurately photographed in the extra photo with the model in a jacket. this will feel and look great with cardigans or cropped, stylish jackets. i'm so glad i ordered this lovely, white, lacey top, and i do recommend it to you. i only dinged it one star because it would be even better in cotton and silk, which are frequent tiny brand materials. i went with the size large, as this be",4,1,2,General,Tops,Knits +826,44,Lovely and versitle!,"I tend to go back and forth between small and xs and i""m glad i got the xs... its great and still flow and not huge. to wear alone you need a strapless but i am happy it has adjustable straps. the lace on the back is fabulous snd the colors in this are so lovely! it has olive green and deep orange, two of my fall favs! i wore with my level 99 deep orange linen pants and an olive green little jacket over it. would also be lovely with jeans and booties... a creamy cardigan or a little blazer. i th",5,1,1,General,Tops,Blouses +1094,51,Beautiful dress,"This is a lovely dress, a bit brighter in person. i took off one star because only the bodice is lined. at this price point the dress should be fully lined",4,1,25,General Petite,Dresses,Dresses +1075,55,Awful,"I don't know who this would fit. looks so cute on the model and i thought this was going to be the perfect between season dress . . . but just looked like a sack! i think the ""knit"" must have stretched into an unnatural shape - especially the arms!",1,0,0,General Petite,Dresses,Dresses +1094,44,,This dress is so pretty and the neckline is darling!,5,1,3,General Petite,Dresses,Dresses +1094,29,Timeless dress,"This dress is beautiful and timeless. i wore it to a wedding and received so many compliments. i love how i can also wear it to so many other engagements. i plan to wear it for mother's day brunch, a friend's wedding shower, and know that the clasic cut will be a staple in my closet for years to come. the quality is what you expect for the price and is well worth your investment.",5,1,1,General Petite,Dresses,Dresses +1079,41,,,5,1,0,General,Dresses,Dresses +895,37,Odd fit,"The color of the sweater is beautiful, but the fit was awful. it was too ""swingy"" and made me look like i gained 10lbs instantly, (i'm 5'1"", 108lbs). i will be unfortunately returning this item.",2,0,2,General,Tops,Fine gauge +1094,61,Lovely dress,This dress is beautiful. it has lovely colors that should compliment many skin types. i bought the dress for my daughter as a graduation gift. i have not given it to her yet so i don't know if it fits or how it fits.,4,1,0,General Petite,Dresses,Dresses +865,32,Keeper!,Love the muted orange color and the design. it's lightweight and will be perfect for fall days!,5,1,1,General Petite,Tops,Knits +839,68,Beautiful blouse,"This blouse is so beautiful and feminine. it fits loosely and is see thru, so you do need to wear a cami underneath it. it is very comfortable to wear. i got many compliments when i wore this blouse. all the delicate lace on it just makes you feel very pretty in it. however, be extra careful when you do wear it. i'm still not quite sure how it happened, but the lace in the front got a small hole right in the front on my first time wearing it. it's so pretty i just hope i can get it fixed so it w",5,1,1,General,Tops,Blouses +895,32,Dreamy,"Love, love, love! +this is true retailer! from the style to the mix of sweater types and the ""surprise"" pleats in back! +i wore it for the first time yesterday and received compliments all day! +so glad i bought two colors!",5,1,0,General,Tops,Fine gauge +1094,54,Pretty but not for me,Very pretty dress. the color is much brighter in person - a little too bubblegum pink for me. i love the way the bodice fit but there was just too much material in the skirt which made me look hippier than i am. would have preferred the skirt to have more of an a-line cut,3,1,1,General Petite,Dresses,Dresses +1075,63,,"Perfect! wanted a dress for a mexican vacation. this fits the bill exactly. fabric has enough weight to hang well and cover any ""flaws"". love!",5,1,1,General Petite,Dresses,Dresses +1094,26,,,5,1,0,General Petite,Dresses,Dresses +895,48,Subtle detail makes this great,I love this sweater. i bought it in black and love the way the back falls gently and flatters my figure. i'm curvy on bottom w/ a butt and tummy so i like to cover them but i don't want to look like i'm wearing a moo-moo. this top looks chic. it's the right shape to flow gently. it's just the right detail to be different in an understated way. i wear it w/ leggings and jeggings because it falls low enough to cover my butt. neckline is good-- i'm a 34b and it's flattering. not sure if it will fla,5,1,1,General,Tops,Fine gauge +860,62,Disappointed!,"The tank looks nothing like the one pictured, mainly because it's tissue-paper thin. also, i ordered it in two sizes - xs and s as it can be hard to tell which one will fit. i started with the xs and quickly discovered that it ran large. the armholes hit halfway to my waist. obviously i didn't even bother opening the size s. both will be returned.",1,0,4,General,Tops,Knits +1094,60,"Great for "" menopause bodies""","Yep, i used to have a nice body, but now have the dreaded menopause stomach... and some excess baggage. this dress was very flattering. wore it today, easter sunday and had literally a dozen people seek me out to tell me how great the dress was or how nice i looked. it is a bright pink, think pepto bismol! heavy brocade type fabric plus a great cut = hiding my stomach and rear!! plus the lower neckline emphasized my nicer areas! very pleased to find a dress for us older women to look fresh and f",5,1,6,General,Dresses,Dresses +867,42,Beautiful but...,"I bought this top online in the stripes/ivory lace. fits great and is beautiful quality. (i usually wear small/size 4 in tops and the small was perfect). however, i found that the ivory lace detail on the bottom sides gave me a saddlebag effect. not good. sadly it's going back.",3,1,0,General Petite,Tops,Knits +865,36,Comfy top but not more swing than expected,"This top is a nice color and soft material, but is much more of a swing top style than i was looking for. i will return it, but it could be ideal for someone who wants a very loose fitting casual look.",3,1,1,General Petite,Tops,Knits +1075,60,No no not for me,"I knew i would love this dress, it looked so me ! +my order arrived and sadly to say it looks awful +i was expecting 3/4 sleeves, these were to the bottom of my wrist. i could have been fine with that but, the entire dress was so big on me. it looked like a sack. i usually wear a sz 4, or s/m this was a small. will return. +if you can find one that fits i would recommend it.",3,1,1,General Petite,Dresses,Dresses +895,47,"Flirty, floaty little number","I bought this sweater in the lovely lilac and black. the sweater is a typical cotton weave in the front with more of a t-shirt material on the back. the drape is lovely after a quick iron. swingy with a flirty neckline. my middle us still recovering from baby #2 and this does a nice job of covering the bump. interestingly, i think they went overboard on the fabric and pleats and i could easily have down sized from a large (wear size 12) to a medium.",4,1,0,General,Tops,Fine gauge +871,91,,"From the website picture (in particular, the gray one) this may appear to be ""over-sized."" i can assure you, it is not. i have to return the small i ordered on the over-size assumption, and hope the medium (my usual size) fits because it's a really nice top. the sleeves and the pattern of the weave give it good pizzazz.",5,1,15,General,Tops,Knits +895,50,,"I loved this at first....but the quality is awful! it pilled like crazy and started to get little holes near the neck after 4-5 wears. second sweater from retailer this year with severe pilling issues. i love retailer, but will never again buy another sweater here.",3,0,0,General,Tops,Fine gauge +1075,46,Great dress!,This is a super comfortable and flattering dress and i get compliments every time i wear it! highly recommend!,5,1,4,General Petite,Dresses,Dresses +1075,49,"Cute, but the model must be teeny","This dress is super cute - and fits tts for retailer. i ordered my usual size small and it fit me great everywhere, however the arms are much shorter and hit me either wrong, or the model in the picture is just very,very small. i'm 5'10, 136#, 36aa, slim built and the dress fits, but the arms bunch up -- if i ordered a medium the entire dress would be too baggy (and it is a loose fitting shift). bummer, bc it is super cute! also, the material is loose crochet - my dress arrived with a pull. sad fa",3,1,2,General Petite,Dresses,Dresses +860,52,Not what i expected,I ordered two sizes. when the package came i was skeptical as it was very light and thin. both shirts were in the bag. the style is just okay. the shirt is extremely light weight. i was not impressed with the fabric. i am returning both. definitely did not think it was worth the price.,2,0,5,General,Tops,Knits +1094,59,Amazing!,"This dress is amazing! it fits true to size, very flattering and the fabric is beautiful! +i am 5'4"" and it felt a little long for me so i am having it hemmed up one inch, but others may like the hemline just as it is. i like my dresses just right above my knee and it was hitting in the middle of my knee. +just love everything about it and would definitely recommend it highly!",5,1,0,General,Dresses,Dresses +865,28,"Nice top, but not for petites with larger busts","Overall, a really nice top that is soft and comfortable. the arm length hits nicely on the forearm and the decorative detail at top is well-constructed. didn't keep this since the top made me look quite big in my bust, to the point of not being flattering. top is also a bit boxy, so i'd stay away if you are petite, with a larger bust unless you are okay with that emphasis.",3,1,0,General Petite,Tops,Knits +895,40,Cute and cozy,This sweater is great i bought the black version on sale. my complaint is the pulling factor though. you don't expect retailer sweaters to pill after a couple wears. overall i love the fit and look though so i continue to overlook it and use my sweater comb as needed!,3,1,0,General,Tops,Fine gauge +895,39,,I bought the lavender one and i'm so glad i did. the sweater looks prettier in person and it's super soft! the back detailing makes this one not your average v-neck sweater. i highly recommend this to anyone!,5,1,6,General,Tops,Fine gauge +1094,53,Love this dress but not for me!,"This dress is just as it appears. it is very well made, lined and falls in heavier but fluid waves. the bodice fit snug and the zipper worked almost perfectly (!). the color is very pink, like pepto bismal but not in a bad way, if that's possible. my husband loved the dress on me but my 22 year old daughter thought it was too pink, too girly... i think i decided it was just too young for me- i'm 53. . alas, i am returning it but i still think fondly of this piece. i am 5'4"", 110 lbs and i bought",4,1,6,General,Dresses,Dresses +1094,33,Bubble gum pink,"This dress is very flattering and tts. i bought this dress for my brother's wedding at the end of june. i love that it is machine washable, which was the reason i chose this dress instead of another. as another reviewer already mentioned, it is brighter than photographed.",5,1,1,General,Dresses,Dresses +895,46,Super cute!,"So comfy. i'm 5'8"" a-cup & it fits well. i bought a small. an acquaintance of mine has it & she's petite w boobs & it looks great on her too. she has black & i have lavender. great purchase!",5,1,0,General,Tops,Fine gauge +1075,41,Stumpy arms,When i saw the dress i loved everything about it except the arms made me a little nervous. i ordered it when it went on sale and it turns it the arms are worse then i thought they would be. they are like my grandmother crochet it and accidentally attached my child's dress arms on my dress.,2,0,0,General Petite,Dresses,Dresses +1075,63,Love it!,Such a great dress! it is super flattering. i love that its not too short on me(i am 5'11).,5,1,2,General Petite,Dresses,Dresses +1094,36,Perfect spring dress!,"I'm very pleased with my purchase of this dress. it is perfect for dancing or a spring/summer wedding or doing out. it is very flattering on my rather straight/slender/petite frame. i ordered a size 4 and it was tts. if it only had pockets, it would be absolutely perfect!",5,1,9,General,Dresses,Dresses +1094,38,Timeless cut,"This dress is lovely. timeless style, heavy fabric, only con? a deep front v. i couldn't wear this to church. i'm a 36d.",4,1,1,General,Dresses,Dresses +895,58,,"Could not resist the fit and detail on this piece - couldn't wait for it to go on sale. the material is so soft and comfortable. it's ""just"" a black sweater - but the neckline and back details make it unique! thought i would need a large but the medium fit fine. 5'7"" 147 lbs",5,1,22,General,Tops,Fine gauge +895,64,So pretty!,"I found this pretty sweater to run true to size. i am between a size large and extra large and the large fit well. it is perfect in the shoulders and body skimming without being too flared at the hem. the lavender is a dreamy light sky blue, true to what my monitor shows. i rarely wear anything but black and gray, but i could not resist this color. the sweater is a medium weight and i anticipate wearing this at the beach with white jeans and now with pale gray narrow wool pants. i really like th",5,1,0,General,Tops,Fine gauge +1075,27,Beautiful crafted!,Love the crochet and and it is a great feel with a liner underneath that comes with the dress. a little boxy but another beautiful retailer dress overall :),5,1,0,General Petite,Dresses,Dresses +895,42,Beautiful color but baggy fit,"I wanted to love this sweater. the lavender color and design with the pleated back was beautiful. however when i put it on, it added at least 20 pounds to my frame. unfortunately it's going back since the cut just doesn't work on my frame.",2,0,1,General,Tops,Fine gauge +820,40,Beautiful cream linen/cotton crochet back top,"This top is gorgeous and it fits much better in real life than pictured on the model. the back is made of soft cotton crochet and it curves beautifully on your lower back emphasizing your lower assets and if you have great shoulders and arms you're going to love this top because your shoulders will stand out. it's made of a light weight linen-cotton fabric. it's very soft and doesn't wrinkle as easily as most linen does, it feels soft on the skin, light-weight, and has a nice bounce to it. it's",5,1,7,General,Tops,Blouses +836,33,Flowy perfection!,"I have to admit, seeing these tops online, i wouldn't give them a second glance, but at my local store they were displayed in a gorgeous summery fashion and were so light and airy and flowy (my summer checklist!) i bought both the blue and rust color in an xl. i am a 16/xl/36h and this is one of the few button up shirts that actually fit! i think i might go in and add a snap between the bust line anyway since the buttons are spaced too generously, but there is no pulling. this top does run long,",5,1,7,General Petite,Tops,Blouses +862,49,A little see through,"I do like this top. i bought the cream color and it is flattering, but it is a little shear. i need to wear a cami underneath it. it also seems to be a little on the large side.",3,1,0,General Petite,Tops,Knits +836,58,Meh,"This tunic is way over priced for the style and quality. it fit comfortably (runs a size larger) but it's not really flattering, it jut kind of hangs there looking ok. it is a little too deep of a v cut for a work top as well. this top does not support the price at all. it felt like something i could find at department store for way less. i will be returning it.",3,0,12,General Petite,Tops,Blouses +864,25,"Weird collar and length, but wearable.","This would be one of my favorite shirts if the neckline were straight across instead of cut, or if it at least had a button. it runs large so the low neck plus bagginess makes it feel too loose for my taste, even though i ordered the xs. the back of the sweater is also really long. it's a comfortable fabric and nice quality though.",4,1,1,General,Tops,Knits +862,36,Only for certain body types,"I like this shirt, want to love it. i am keeping this shirt hoping to have better arms by summer when i can where this top with black shorts. this shirt does cling, it's a draping sort of fabric; i love how it drapes in the front. only because i am not happy with my arms do i where a cardi with it. also, the underarm area is rather open so i'll wear a bandeau when i wear this without a cardi.",3,0,1,General Petite,Tops,Knits +862,33,Thin and see through,"The wine color is beautiful, and the idea of a knot front with different back is a good one. however, both fabrics are thin, and the back is quite see through. the knit shows every single bodily imperfection. so, if you are the quintessential tall and thin, and you don't mind showing your bra, go for it! otherwise, i suggest skipping this one.",3,0,23,General Petite,Tops,Knits +879,34,"Very nice, but not for me","The fabric and color are very nice, as is the cut, however this is entirely unsuited to someone as short as i (5'3""). i also have a proportionally short torso, so the split hits in the completely wrong place. someone taller is likely to love this.",4,1,5,General,Tops,Knits +1104,25,Beautiful!,"This is a beautiful dress. figure-hugging but covered up in places that need it. color is flattering and soft. wore with bainbridge layered necklace. bought for an afternoon function and wore with pumps. so versatile, will work for church or cocktail party. +great purchase!",5,1,3,General,Dresses,Dresses +912,53,Love this!,I really love this top. they show it's as a bathing suit cover up in the pics but i will wear mine as a top over a cami. it's beautiful and looks expensive. (it is). had to exchange my usual size for one smaller.,5,1,13,General Petite,Tops,Fine gauge +836,57,Runs huge!,"This is a great top but it is really big. i have a similar top from the same brand and the size small fits as expected. this top is easily 2 inches wider everywhere. i would love to exchange it for an extra small, but am afraid that even that size would be too large. the blue pattern is beautiful and the fabric is light and airy, which is perfect for warm days, but the size issue is out of control!",2,0,0,General Petite,Tops,Blouses +836,34,Love!,"I bought one of these in store and then ordered two more online! i love this top. it's loose and hangs just right. i have gotten so many compliments on it. very comfy and cute. pockets too, which is always a plus.",5,1,0,General Petite,Tops,Blouses +996,40,Just okay,"The skirt is just okay. the design is great but the material is extremely thin and see through. there is a slip which goes to mid-thigh- very strange and felt weird as well. the pleats are okay but not great. overall, it is not worth paying full price for or anywhere near that. and again, be wary of it being see through.",2,0,2,General Petite,Bottoms,Skirts +996,61,Lovely but long,"I got a petite, i'm 5'5"" and this comes to my ankles. pleats are attractive but not sure if they will hold up after cleaning, otherwise i would give higher marks for quality. overall unusual and a keeper.",4,1,2,General Petite,Bottoms,Skirts +836,33,Good in theory but too large,"I typically wear a size 16/xl in anything from retailer and i ordered this top in an xl. it's more of a t-shirt with buttons than a blouse and it was overall too huge. it's nice to have extended size options but even if i went down to a size l, this would have looked like a maternity top on me.",2,0,0,General Petite,Tops,Blouses +862,50,,"In a word .. clingy ... and not in good way. long so you need it to flow not cling. liked the back, but front was just too clingy. back it goes.",2,0,3,General Petite,Tops,Knits +836,23,"Cute top, a bit too low cut for me",I am wearing a medium in the photos and for reference my measurements are 38-30-40.,4,1,12,General Petite,Tops,Blouses +1104,21,,Great dress! i ordered the extra small petite and it fits perfectly!,5,1,1,General,Dresses,Dresses +879,59,,"I just love this. well made, nice fabric and looks just great over pants or jeans. im very pleased with this quirky piece and got it on sale too!",5,1,1,General,Tops,Knits +879,37,So soft,"The fabric is so soft, but it was too roomy in the top and miid-section so it didn't flatter my body.",3,1,0,General,Tops,Knits +1104,38,Love love love!!!,This dress is absolutely like a layered cloud! the material is amazingly soft and comfy.,5,1,1,General,Dresses,Dresses +1104,32,Soft and sexy,"I really love this dress, it hangs well and clings in all the right places. i ordered this online and the store that sent it had left the security tag in. i sent it back. the tag was taken out and the dress returned very quickly, and without cost to me.",5,1,0,General,Dresses,Dresses +1104,38,Pretty but too short,"I was really excited to receive this dress. it's a fun concept and different from anything else i have. however, the dress was way too short on me. i'm 5 ft 6 in., and the size medium was way too short. given the thin nature of the material, i did not feel comfortable keeping the dress, even for wearing it outside the office. i will have to return this dress.",3,0,4,General,Dresses,Dresses +1104,41,Great dress for all occasions,This dress is exactly what i needed. it's so easily dressed up or down. heels and jewelry for cocktail this time.,5,1,0,General,Dresses,Dresses +836,56,"Great shirt, order size smaller","Fabulous with leggings. i am 5'1"", 105 lbs and always wear pxs. the pxs was too large and fit like a ps, so order a size down. i really like it, and going to exchange for a smaller size.",5,1,5,General Petite,Tops,Blouses +1104,70,Disappointing,"I ordered this in cream during the 25% sale. i had seen one at the store and thought it was very pretty, but it was not my size, so i didn't try it on. when it arrived, it was a wrinkled mess. it was so wrinkled that i don't think i would be able to iron it satisfactorily. i was also disappointed in the fabric of the dress layer. it almost looked flocked and i wonder if something is wrong with this dress in particular. it was also way too short for me. i'll be taking it back very soon. i do plan",1,0,3,General,Dresses,Dresses +820,34,,"I just got this in the mail and wore it for the first time today. it is a beautiful top, the crochet portion of it is very well made and overall the top hangs nicely. the linen though is a little bit rough and scratchy. the lining underneath seems a little delicate and is not stretchy so i felt at moments while sitting that i could have just ripped it with one wrong move. the linen also wrinkles pretty easy in the mid-belly section so there is an ugly line going across, a problem with a lot of l",5,1,1,General,Tops,Blouses +864,60,Cute and comfortable,"This tunic is very cute and incredibly comfortable. it is a bit loose, but you can see that on the model that it hangs off the body. i lose my waist a little bit in this, but think it's a good substitute for a thin sweatshirt and the button detail at the neck is nice if you want to show a little cleavage.",4,1,3,General,Tops,Knits +1104,44,Love it,"I love this dress. i'm 5'8"", 160 lbs and have no hips, no butt and no waist. i have no curves and thin muscular legs. it's like wearing a cardigan and dress all in one. i paired it with ivory tights and dark brown boots and received tons of compliments.",5,1,6,General,Dresses,Dresses +1104,38,"Flimsy, cheap","I was so bummed by this dress! i had high hopes when i ordered it, but was surprised by the poor quality and cheap materials when it arrived. the body of the dress is unlined fleece material -- it reminded me of material that they make cheap halloween costumes out of. i found the fit baggy and unflattering. + +the ""shawl"" portion is only attached at the very top of the shoulders, + +very disappointed. i already returned this.",2,0,3,General,Dresses,Dresses +836,60,Runs very large,"Plan to order at least one size smaller than you think, it's way baggy",3,1,0,General Petite,Tops,Blouses +836,64,I wanted to like this,"I really did. here's why i just couldn't: the lace strips make it look cheap. the fabric is soft, , but the pattern is undistinguished. +the fit is very disappointing--medium looked square and boxy, the large was massive and in both sizes the v-neck was too low to wear without a camisole underneath....which defeated the purpose.",1,0,2,General Petite,Tops,Blouses +862,49,,"This is a beautiful tunic. the colors are vibrant and the stitching is high quality. please note that the insets on the sides are not actual stitching but a print. it is still very pretty. please size down a size. i am usually a large, wearing a 12 or 14 if something runs tight across the bust, i ordered a large and it is a bit big under the arms but too big through the waist area. i am not small in this area either.i would recommend buying this tunic.",4,1,1,General,Tops,Knits +862,38,Pefect!,"I can't wear this without getting dozens of compliments. plus, it's comfortable! it's very soft. it is perfect with skinny jeans and boots, with pants, or with skirts. i have paired it with pretty much everything in my wardrobe. everyone wants to know where i got it! it's very well made and the embroidery is well done. it doesn't look like it is going to come undone anytime soon.",5,1,1,General,Tops,Knits +1095,36,So disappointed in retailer's descriptions lately...,"And this one proved to be no different. the short end of it; this dress is pretty much super thick, heavy linen with a rope like collar (the supposed embroidery you see), and there is no lining, but completely unnecessary pockets. i'm typically a 2 or 4 depending on the designer (5'7 & a super fit 135 lbs) and knew enough to order an xs in this, however it still fit like a potato sack. even upon taking it out of the plastic bag, i knew it was going back. between the unrealistic pictures and lack",2,0,6,General Petite,Dresses,Dresses +1095,48,Nice dress- had to alter bottom for shape,"This dress is adorable. it simply did not fi off the rack. +i invested 15 dollars in alterations to get rid of the very bottom side pockets- why where they even there? and to shape the bottom. basically the dress is straight all the way down the sides.by up and alter.... +the top pattern and cut at the top made the alteration investment worth it to me- the quality of the fabric is excellent. +and the pattern is adorable- can be worn as little black dress, cocktail party or date night. the top de",3,1,9,General Petite,Dresses,Dresses +399,32,,Gorgeous details great use of materials -- yet the diagonal seam above the knee at the quadriceps cuts off the muscle and looks odd if you are the least bit muscular.,3,0,0,Initmates,Intimate,Lounge +1066,49,My new go-to's,"I am a pilcro hyphen girl, and now i have these pants to love as well, super comfy and cute, the print is nice and subtle. i'm usually a 29p but the 29 regular is fine.",5,1,0,General Petite,Bottoms,Pants +862,71,Beautifully made,"I usually have a hard time with the sizing as retailer carries so many designers but this dolan top fits absolutely true to size. i am an xs and it fits perfectly, drapes exactly as shown and overall, looks exactly as pictured. the color is an off-white with gold beading and tiny white sequins on a mesh overlay which is lined so there is no show-through which i was concerned about. it is not boxy due to the fabric which is very soft and drapes nicely over your curves. there is just enough b",5,1,1,General,Tops,Knits +1083,56,Lovely fabric and colors,I bought this dress for summer celebrations. the fabric is beautiful and the colors are soft and enhance the flow of the dress. the fit is true to size and i especially like that it is not too low cut in the front. i will pair it with a light sweater or denim jacket. definitely a dress than can be dressed up or down. very feminine and has a romantic feel.,5,1,8,General,Dresses,Dresses +1066,42,Love these pants,"Not long ago, i bought a pair of hei hei pants that i love, so when i saw these, i immediately tried them on. i love them too. they are pretty and comfortable, and i am so happy to get away from tight jeans! they are also very flattering. size wise, i find that i have to size down with hei hei, perhaps because they have a looser cut.",5,1,1,General Petite,Bottoms,Pants +826,42,Just as pictured!!,Not much to say. fits tts. a beautiful top. colors are striking!!,5,1,1,General,Tops,Blouses +1148,32,"Nice, but too low","These jeans are great quality, but they just hit too low for me to be comfortable.",4,1,0,General Petite,Bottoms,Jeans +826,29,Flimsy,"I expected better from this top, it is thin, will snack easy, and you have to wear a cami underneath. for the price, not worth it. definitely returned!",3,0,0,General,Tops,Blouses +1066,46,Fun print,Love love the print on these but the fit is off. i tried on the solid color in this same style and i took my regular size 30. these i needed a 12. the waist seems really small but the bottom leg parts stretch out and are kind of baggy after 1 wear. i can't go down a size because the waist was too small on the 10. since i love the print so much it may be tolerable. rare for hei hei to fit wonky.,4,1,6,General Petite,Bottoms,Pants +862,46,Gorgeous tunic--interesting mix of colors,I ordered this tunic in xl and it fits me true to size. it's such a fun piece to wear. i like all of the embroidery which was done in beautiful colors and stitched well. the different fabric and the cut make this a very flattering top. i tie in the green and pink in my jewelry and sweaters when i wear this. it's so comfortable too. i'll get good use out of this top for winter. i like the uniqueness of it.,5,1,1,General,Tops,Knits +826,40,This shirt is a versatile piece.,"Wasn't sure whether i would like the top from the online picture, but it is so much more flattering in person. can be worn as a casual piece with denim skinnys or dressed up with a pencil skirt.",4,1,2,General,Tops,Blouses +1081,45,Fun summer frock,"Bought this dress for my daughter (teenager) and it is perfect. it is a cute dress, perfect for summer parties, special occasions. it seems to run a little small and wrinkle easily, but over all, she and i both are happy with the dress.",4,1,3,General,Dresses,Dresses +986,48,,This is a beautiful piece that can be paired with multiple ways.. the color is rich and classy,5,1,0,General,Jackets,Jackets +1081,28,,"This dress turned out to be a huge disappointment!!! i was in loveee with the picture! in real life, not so much. the material felt thin and cheap! and the yellow was super yellow! nothing like the picture. i was so bummed! returned it earlier today...",1,0,6,General,Dresses,Dresses +1081,36,Slightly more modern take on preppy,"I think this dress is cute! it caught my eye in the store and i got a bunch of compliments when i tried it on. i like the sunny yellow. i plan on wearing it to an outdoor wedding on the amalfi coast of italy in the spring. i am petite - 5'-2"", 105lbs and purchased a size 2. i think it may run a little tight in the chest, so perhaps consider sizing up if you have average or larger breasts. i love the pockets! the fabric seems to wrinkle easily, so hopefully i won't be too rumpled after having it",4,1,4,General,Dresses,Dresses +1148,60,Another perfect pair!,"I love these jeans! i am always reluctant to change brands, but these are the best! i was pleased from the minute i took them out of the package. the fit is perfect: very skinny, but not too tight! they retain their shape over several wearings, too. the color is a great dark navy. looking forward to a long relationship with these! it's love!",5,1,0,General Petite,Bottoms,Jeans +1148,48,Great jeans,"Love the color, fit and feel of these jeans. the thin material is stretchy and comfortable. i didn't have to pull them up every so often during a 3 hour party. they didn't bag out after the first wearing and are true to size. i got a 27p (5'2"", 115#). the leg length is perfect and ends at the ankle. the rise wasn't too low for me. highly recommend!",5,1,1,General Petite,Bottoms,Jeans +826,45,Amazing silk blouse,"I didn't think i would like this blouse when i saw it on the website but once i tried it on i was sold. yes, it is see-through but with a cami underneath this blouse can be worn both casually and to work. the best feature? even though it's silk and the tag says ""dry clean only"", you can absolutely hand wash this blouse in cold water and air dry. i did and it came out perfect with no wrinkles! i took my usual small (i'm 32c and 122 lbs) and love how versatile this blouse will be.",5,1,6,General,Tops,Blouses +928,55,"Nice sweater, but didn't look right on me","The geometrical pattern of this sweater is slightly asymmetrical, with nice geometry to it. the colors are more muted and subtle as compared to the picture. i was very excited to see it through its transparent bag. unfortunately my delight faded after i pulled the sweater out. first, it weighs a ton. a thread for each color runs around he whole sweater, hence much more thread went into it than in a typical sweater. second, it runs large. i am usually an xl or 16-18, but this sweater has lost of",3,1,3,General,Tops,Sweaters +1066,39,Cute casual pants,"I got lots of compliments! +fabric is thin but not too thin, perfect for summer and fall. you can roll up higher or even down to full length or ankle (depends on your leg length). +fit is relaxed but not too loose. these pants are stretchy and very comfortable. i have bigger thighs & calves with small waist and flat butts, i am definitely not a fan of skinny pants/yoga pants, so i often have problem finding the perfect pants that don't show off the silhouette of my bottoms. these pants solved a",5,1,1,General Petite,Bottoms,Pants +1081,28,Colors are more intense than they appear,I purchased this dress for my graduation. the colors are much more intense and bright then they appear online. i'm kind of concerned that i look like a carnival tent. i like the style but the fabric feels cheap for the cost of the dress. the fabric is 100% synthetic.the fit is great. the dress is true to size,2,0,42,General,Dresses,Dresses +1081,49,Runs very small,"Beautiful dress, wonderful fabric, very well made, just runs really small! so sad, i wanted this dress for a special event!",3,1,0,General,Dresses,Dresses +862,45,Light and lovely.,"I recently purchased this tunic on sale. the cut of this top is flattering on my curvy figure as it has a cinched in waist. the embroidery is lovely and very bright with several shades of colors. i wore this with black leggings,boots and a green cardigan and received many compliments.",5,1,1,General Petite,Tops,Knits +1104,38,Great easy dress,"Material is slightly thin- good transitional dress for spring or fall. the waist is not quite as fitted as i would like, but the neck and sleeves are perfect. the length is good, but i am short 5'1"" and 105 lbs- xs fit pretty well. a really good purchase- more of a workhorse work dress, and not a wow dress on me, but nice to pair with blazers, jewelry. don't regret the purchase. very comfortable. got compliments when i wore.",5,1,0,General,Dresses,Dresses +1083,39,"Seems longer than 50""","This is festival dress epitomized. flowery, flowy, romantic styling. so many layers in a muted color pattern, but also retains heat since it's all polyester. good thing the skirt is swishy to air your legs out. my distress is regarding the length. petite was sold out so i bought the regular with the intention of wearing platform wedges. it's still too long! if i hem, i will lose a lot of the pretty blue pattern.",5,1,2,General,Dresses,Dresses +941,42,Not soft,"I had hoped this bulky knit would be cuddly and soft, with suri (a type of alpaca) in the title. i don't know if the blend (45% polyamide, 25% royal baby alpaca, 20% fine merino) threw it, but had i felt this in store, i would never have even picked it up. unimpressed.",1,0,3,General,Tops,Sweaters +862,41,Gorgeous top,I had been eyeing this top for awhile and decided to get it when it went on sale. it is a very nice top. i'm going to pair it with jeans and boots for our florida fall but could see it working with a nice pair of pants. it is roomy so if you're looking for something more fitted than i would pass on this top.,5,1,1,General Petite,Tops,Knits +862,41,"Stunning! hides my pooch, too!","I love this shirt! it's gorgeous! got it last night, wore it today, and received compliments all day long. + +i don't normally look good in tunic length tops, but somehow there's magic in this one. the seaming on the front totally hides my post-baby pooch. too bad the baby just turned 3 and my pooch isn't going anywhere ...! + +adore.",5,1,1,General Petite,Tops,Knits +1104,41,Love love love,"I love this dress. +it is so cute! +i have another dress from the same brand (hutch) in almost the exact same shape/style so i was excited to see this one is so similar to the other dress i love. +i am 5ft 8in and 145lbs, and medium fits perfectly. +it's snug at the top (but not tight) and the skirt is full but not too full. +the fabric is slightly thinner than i expected, but still like it a lot. if i could change one thing, it would be one inch longer....hits a tiny bit more above the knee than i t",5,1,7,General,Dresses,Dresses +1066,50,My new go-to,"Just bought these. they are my fourth pair. they are comfy, flattering and versatile. i pretty much live in these cargos on the weekends.",5,1,1,General Petite,Bottoms,Pants +826,48,Not for me,"The mustard colour was much stronger than it seems in the picture and it wasn't pretty on me. plus the sleeves were very wide so that makes this not good for petite frames in my opinion. it does run big - i ordered m (and i usually take m or even l in retailer clothes), but i could have tried a s to make it less boxy. too bad though, because it's a pretty shirt and different.",3,0,0,General,Tops,Blouses +1066,47,The pants i loved until the day went on,"I always coveted a pair of flower camos that my sister used to wear. they were perfect, fitted, but not too, casual but not too. i saw these and thought to myself that i finally found them, that i didn't have to covet my sister's pants any more. these check all the boxes--comfy, stylish, high quality, but by the end of the day, they bag out. when i wore them, i had to keep pulling them up--a belt would certainly help. so, i love the pants, but am a bit disappointed with how they lose their shape",4,1,0,General Petite,Bottoms,Pants +945,75,Better in person than photo,"I love hand knit sweaters. they look expensive. this sweater is pricey and i shied away from the original price. at the reduced price, it is worth it. my sweater is bright blue and pure white so not sure what other reviewer got. however, it is itchy. i admit that i have somewhat sensitive skin so if i cannot wear a silk layer under it, or find a way to make it less itchy on me, i will have to reluctantly return it. i normally wear large but the medium fit fine.",4,1,5,General,Tops,Sweaters +872,59,,Very flattering. i am 36c and short torso and the small fit like a glove . the medium was a bit loose and gapped some on the side of my breasts. need to wear strapless bra. really cute style and goes with several of the patterned capri pants i bought at retailer this spring !!,5,1,0,General,Tops,Knits +820,76,"Beautiful, flowy,",I fell in love with this shirt in the store and it has become one of my favorite items in my closet! the bright pink contrasts perfectly with the white peplum bottom and the fit is wonderfully flattering!,5,1,0,General,Tops,Blouses +820,56,,,5,1,0,General,Tops,Blouses +872,34,Adorable,"I'm very glad i snatched this up when i did. it is super soft and the perfect length. i love the slight peplum as it makes for a very flattering fit. i can tell this shirt will be a staple year round as it works great with shorts or jeans. for me, i think the large was a tiny bit big in the waist, but it might shrink in the wash. the armholes were nice too, and didn't gap.",4,1,0,General,Tops,Knits +872,31,Perfect summer top,"I love this top! it's the perfect lightweight top for summer and the details are so feminine and pretty. the fit is extremely flattering. the arm holes are not too large (i.e. do not have to worry about exposing bra). i think you can dress it up with heels, wear it casually with shorts, & also pairs perfectly with kimonos. i'm 5'4, 130 # and i took my usual retailer size in this, size small.",5,1,2,General,Tops,Knits +868,44,Loved this,"Pic doesn't do it justice, very flattering. i got it in navy. definitely worth the sale price!",4,1,0,General,Tops,Knits +820,25,Perfect in every way,Love the blouse and the best part is the back side ! this brand never ceases to fall short for fit and style. try it on to see,5,1,3,General,Tops,Blouses +872,39,Cool,"Tried the xs in store (and 115 lbs, 30dd, 5'1.5""): fit like a glove, the chest part was fitted on me, the white is almost not see through, but nowadays, that seems acceptable (see though). the material is typical of meadow rue, cotton like, and airy. it is a basic white with styling. the top part also has some dimension, i overall thought this would look nice with my white shorts or with some nice jeans and blazer.",5,1,4,General,Tops,Knits +820,39,Recommend if you hav hte right coloring for it,"Love this top, the cut is nice and is similar to the previous one that was denim, love hte colors, but they looked awful on my skin tone unfortunately. + +sizing is true to size, i tried on the regular size, not petite, and it was fine (my usual 0 or 2, went with 0 as tjhis top is a looser fit, 2 would be boxy). the lace part is a nice added detial, the plaid is soft flannel. color is a salmon colr, with navy, but the dominant color washed me out (i am fair). love it otherwise!",5,1,3,General,Tops,Blouses +862,31,Boxy,"I love the color block concept but this top was way too boxy. the shirt was pretty much square. and the top was super itchy, too. looks so cute online but no-go in person.",1,0,1,General Petite,Tops,Knits +868,54,Nice top,I received this in the mail today and i liked it from the minute i tried it on and looked in the mirror. it is a unique piece to compliment black pants or jeans. i hope to be able to wear it with leggings if it covers my bum so i will have to try it on with leggings to see. the fabric is nice and it fits well and compliments my figure. it is longer as it appears on the model. i do recommend you give it a try especially at the sale price!,5,1,0,General,Tops,Knits +872,37,Lovely top,"This is a beautiful, simple, yet feminine top. a little tight in the bust on me - so i had to size up (and i am not busty). for reference, i am 117 5'3 34b. i'm probably in between a small and x-small on this - but went with the small.",5,1,0,General,Tops,Knits +868,47,Didn't work on me at all,"I had high hopes with the other positive reviews, but it didn't work on me. nice stretchy fabric and nice length but it was bunchy in the front and didn't lay well, and didn't do my bust any favors. maybe better on those less pear shaped. hopeless on me.",2,0,1,General,Tops,Knits +868,27,"Cute, but runs large","I ordered my normal size and found that this top runs large. i wanted to tie the front ties tighter to accentuate my waist, but even so it was still quite loose. the fabric is very stretchy and thin, and the top was longer on me than pictured in the model. for reference, i am 5'-7"" 155lbs, usually wear a medium/8 in a top. this medium was too large.",3,1,0,General,Tops,Knits +872,33,Great top!,"I love this shirt, i had my eye on it for awhile but wasn't sure what size i'd be, so i went to the store to try. they only had a small which i figured i would be but it was a little large and not as fitted as i would like it across the chest. i got an xs and it was perfect; i am 5'1 about 120 lbs and a small c cup and it fits great. i love it!!",5,1,0,General Petite,Tops,Knits +868,59,Cute top,"I like the top; like the tie in the front. the material is stretchy. would imagine this will work for any size of chest. i wear either a small or medium, so thought i'd be safe order the medium, which turned out to fix more like a large. i'm taking it back for the small.....as it's a keeper.",5,1,12,General,Tops,Knits +868,36,Beautiful tunic,"I am currently loving anything that crosses or ties around the stomach area to hide what's left from my most recent pregnancy. this tunic fits the bill. the material has the perfect amount of stretch and the length was just right. i am very petite and bought my usual size xs. i would have liked to try this tunic in a petite size, but then it may have been too short. i plan on wearing this to work with leggings and for running errands once the weather warms up.",5,1,8,General,Tops,Knits +829,64,So cute on!,"I wasn't immediately attracted to this shirt, but decided to try it on. i loved it on! +it is comfortable and very flattering. i'm a small person, and the length wasn't overbearing on me. it was full, but the stitching around the chest gives it shape and is flattering to a smaller chested person. i'm not sure how it works on a fuller person, but my guess is it may surprise you!",5,1,0,General Petite,Tops,Blouses +872,51,Soft and romantic,"Love, love, this top! it's flattering (shows off your shoulders) soft and has delicate embroidery. i typically order a xxsp in antro tops as i'm very petite but decided to order both xxsp and xxs, just to see the difference. the xxs worked better as the xxsp was too short in length and kind of looked like i was trying to fit into a child size top. the xxs is a perfect length. it's my new favorite and i can see keeping this in my wardrobe for a long, long, time.",5,1,2,General Petite,Tops,Knits +872,64,Excellent if you do not have a chest,"I received this today and will have to send it back. it is super cute and the quality is great. however, you need to wear a bra or a halter bra due to the style which is not a proble, but my 32d chest looked huge in this top so it is going back.",4,0,2,General Petite,Tops,Knits +764,48,Are you kidding?,"Finally decided to join the yoga-wear craze and thought these tights and a few other pair from retailer would help me transition to this style. my size l tights were just that -- tight! so tight, i really didn't want to pull them up past the knee!! i am not kidding. i wear size 14 pants and my legs are toned and shapely, so there was no reason to expect a l wouldn't fit. so sad.",3,0,0,Initmates,Intimate,Lounge +862,47,"Nicer than a tee, lighter than a sweater","The lightweight knit and flattering colors made this top so perfect for me that i bought it for full price. it's big, so i'd size down. you'll still get a forgiving shape, flattering colors and just a really nice option for work or off hours.",5,1,5,General Petite,Tops,Knits +872,23,,,5,1,0,General Petite,Tops,Knits +872,51,Nippley,"Lovely cut, pretty creamy color, great top for strong shoulders, however. the upper section of this top is way more sheer than it appears in the photos. there is no bra that would really work with it--unless you want to embrace the undergarment visibility and go with one that has really pretty straps. just be sure the bra fits especially well, because any back fat will absolutely show. if you go without a bra, though: headlights. so there's that.",4,0,2,General,Tops,Knits +872,36,Lovely top,"I absolutely love this top and it looks absolutely fabulous (the first time you wear it). the details are impeccable and you'll get compliments all day long. i paired it with a jean jacket and my favorite ""destroyed"" skinnies for an outing in tx wine country. there are a couple of key things to note. when you pull this top on... mind your make-ups. you can and will get make-up on the collar... and so, apply this shirt on carefully... or your make-up (vice-versa). now, after the fist wear, which",4,1,1,General,Tops,Knits +862,69,Love the diagonal design,"This top is fun, in a soft fabric - i got the navy ad bright - great for summer. but top does run large, i usually get a medium, but sized down to a small.",5,1,2,General Petite,Tops,Knits +872,30,Beautiful but falls apart,"This top is absolutely gorgeous, but i followed the care tag to a t and it completely fell apart in the wash. will be returning.",2,0,6,General,Tops,Knits +868,59,Looks great on me!,"I read the other reviews before i ordered this top and was a little concerned about the fabric, but it's fine. the neutral color is a little bland, but i can wear it with bright pants. since i expected it to run large i ordered a small. the tie in the front makes it fit like a dream, plus it looks amazing from the back.",5,1,0,General,Tops,Knits +868,29,"Perfect, elegant & complimentary","Love this shirt. i am actually pregnant and this shirt ties right over my baby bump to make for a very flattering pregnancy shirt. i will definitely be wearing it post pregnancy as well since the tie is an actual tie and you can tie it however tight you want for a more fitted or loose look. i am 5'4 125 lbs (not pregnant) and got a size small. and it fits perfectly. covers problems areas of butt and upper thighs, yet accentuates the waist. and thinner area of legs. very soft fabric, a bit stretc",5,1,0,General,Tops,Knits +862,50,Really odd fit!,"This looked so odd on me! i decided to give it to someone with a different body type and she found it really odd too. the sleeve are a bit too long to be short and they are tight at the bottom. the top is really large, as to be unflattering. perhaps it's just that it doesn't work on someone who is petite, but this one is a return.",2,1,1,General,Tops,Knits +868,37,Flattering tunic for any occasion,"Love this top. it's very comfortable, and flatters my midsection. versatile piece.",5,1,0,General,Tops,Knits +862,38,Odd fit,I liked the idea of the diagonal color block but the fit of this tee was odd on me. too tight around arms and way big and boxy around the mid-section. going back.,3,0,1,General,Tops,Knits +820,49,Love the details,"This top is really pretty. i love the details on the back tail of the shirt. the colors in this shirt are really pretty more like a peachy pink to me. i will however line dry this shirt because of the different fabric on the tail of the shirt. i would not iron that portion of the shirt either. overall, i am completely in love with this shirt. it will be a staple in my closet.",5,1,4,General,Tops,Blouses +862,33,Good quality graphic tee!,"I love this tee! i got the navy color and the quality is good. it's a light and soft linen that is opaque. (i can't vouch for the other color though). it's a very loose fit,but it's not boxy and the sleeves are still well fitted and comfortable instead of gaping or huge. i'm very short and the xsp comes to my hip. i'm almost tempted to get the other other in regular just so i can tuck it with skirts and pants too... the only issue i could see is that because the neck is a bit wide, it might show",5,1,10,General,Tops,Knits +820,28,Functionality with flair,This top is the perfect combo of function and flair! the style of the top makes it easy to wear and the back detail is just lovely. i love that it can be worn as either a buttoned-up top or a light over-shirt with a t-shirt or camisole underneath. i would pair this with blue or gray skinny jeans.,5,1,0,General,Tops,Blouses +872,51,Beautiful summer top,I am very pleased with this purchase. a nude colored racer back bra works perfectly under it and does not show through. i have worn this with jean shorts and linen pants and it looks great with both. it is slightly on the dressy side so i also plan to wear it to work paired with a skirt or dress pants and a cardigan. i am a 34a and size small fits nicely.,5,1,1,General,Tops,Knits +872,23,Perfect summer top,"I saw this shirt and it was love at first sight. i have never had so many strangers randomly compliment me until i wore this beautiful top. fits great, looks even better.",5,1,0,General,Tops,Knits +868,60,Lovely top for different body type than mine,"Lovely, comfortable top. not flattering on my full figure but would be flattering on most--especially younger women who want to emphasize their curves~~",4,1,1,General,Tops,Knits +868,34,An ode to us hourglass girls!,"This was such a great top! see thoughts below! + +___________ +pros: +- fits tts. for reference, i'm 5'9, 36c, hourglass. i'm normally a m or l (10 or 12) depending on the fit and found the medium to fit well and not be too tight at all. i could have probably sized down for a snugger fit, but i like the looseness. fit very well across the chest and arms. +- the sleeves are surprisingly flattering. i've dealt with other tops where the sleeves flutter too much and adds too much weight and attentio",5,1,19,General,Tops,Knits +872,34,,"I love this top. i've washed it a couple of times now and i can say it holds pretty well unlike what another reviewer said. it's very good quality, for me it is true to size, i'm 5'2, 127lbs, 36b and the small was perfect. i wear it with a strapless bra. overall, a great purchase that i can pair with almost anything.",5,1,0,General,Tops,Knits +945,27,Misleading photo,"I would have loved this sweater if it were true to the picture but the stripes are gray, not white. either i got a strange one or (as happens to me sometimes with retailer) the pictures are very misleading. disappointed because i wanted to love this.",2,0,2,General,Tops,Sweaters +868,37,Maybe in another fabric??,"This one will be going back. the color is really blah and the fabric wasn't a texture i was expecting--it is kind of thick and ribbed and i suspect it would stretch out over the course of the day. overall, the cut and style is cute, but i just felt like i was wearing a hospital gown with the combination of the fabric and the style. this may have been cute in a more vibrant color and lighter weight fabric.",2,0,0,General,Tops,Knits +872,27,Great but sheer,"The cut, design, and fit were great on this top. however, a few people have written reviews that the top is not see-through. that was not my experience. the top was very sheer and even a nude bra was clearly outlined in it. sadly that was a deal breaker for me and i had to return it. also, on a side note i don't appreciate receiving a garment in the mail from an online order that already had make-up stains on the collar. so just watch out for that.",4,1,0,General,Tops,Knits +828,40,Loved how soft this shirt is!,"Such a great shirt! loved the fit and how it feels! i paired it with grey jeans! +loved it so much i ordered it in another color for myself and ordered one for a friend!!!",5,1,1,General Petite,Tops,Blouses +1095,31,Not as pictured,"Ugh. i wanted to love this dress so much. i ordered it for a fall wedding and was so excited about it. unfortunately the cut is so very different from how it is pictured on the model. the color and print are the same, the detailing around the next are even more beautiful than pictured. the length, however is so much longer then pictured. and it's not just an issue of the model being tall. the slip is the perfect length (and it's actually the perfect slip), but the overlay comes down way past my",3,0,2,General,Dresses,Dresses +828,39,Great fall top,This shirt is extremely soft and fits well. great length and perfect casual shirt for fall.,5,1,3,General Petite,Tops,Blouses +828,38,,,5,1,0,General Petite,Tops,Blouses +219,42,,"I so wanted to love this suit. it was gorgeous - the color, the quality, the style, but i am returning and can not recommend it. the sides need to be connected just a little bit higher and i think it would work, but there is no way you could move around in this without things popping out in front. i mean it would be gorgeous to just lay there in the sun, but i didn't feel like i could even walk safely, and i am not well-endowed. very bummed but it's going back.",1,0,0,Initmates,Intimate,Swim +828,40,Worth the price,This top is cute for fall. it is a gauzy material and so it's not too warm . it's longer in the back for coverage . fits true to size .,4,1,2,General Petite,Tops,Blouses +1059,53,,"Very elegant feel and look. love the side zip, sliming feature. great all around pant to dress up with heals or boots for work.",5,1,0,General Petite,Bottoms,Pants +1059,55,Amazing work pants!,"I bought these pants in the green and in black. they are the most comfortable work pants ever! almost as if you are wearing leggings and not pants. the material is really thick hiding any imperfections.the satin detail allows for them to be a little more dressy. i am 5'6"" and 155 and i ordered a 10. they are a little large in the waist but a perfect fit everywhere else. the also hit right below my ankle bone. i highly recommend these pants for anybody who is on the go for there job a lot because",5,1,0,General Petite,Bottoms,Pants +1077,60,Simple fun dress,"This dress is just right for weddings and all- +it fits nicely-the skirt makes it fun and it feels so comfortable-it +is just a perfect solution for fun evening dress- +i always carry a camera to weddings and this will be so great to +wear while i am taking photos. +it looks current but easy to move around in-",5,1,0,General,Dresses,Dresses +828,49,Fabulously soft fabric,"Just a wonderful shirt -- fabric is so soft, it feels like pajamas, and the blue is just perfect. there's a different blue plaid as a lining, and i almost wish it was reversible. they're both great patterns! wonderful for fall...",5,1,2,General Petite,Tops,Blouses +828,62,Poor quality,"Cloth and stone has been getting a little shotty lately in terms of quality. they used to be a pretty consistently high-quality brand, but lately i've been left a little bummed. i got this in ""yellow"" which is really a muddy orangey color. i think i would have gotten over the less desirable color if the fabric were better, but it is actually two very thin layers of fabric that are stacked and snag easily (sort of like a soft cheesecloth). the shirt is definitely comfortable and cute, but the qua",3,0,26,General Petite,Tops,Blouses +828,37,,I am loving this shirt. i thought it would look ridiculously long on me but it does not. for me this is a great substitute for the cloth & stone fringed plaid buttondown dress. it's definitely not a dress but is long enough to pull off the layered look of wearing a t-shirt and this on top. it will be a great piece for the fall given how incredibly soft and light weight it is. highly recommend.,5,1,22,General Petite,Tops,Blouses +1095,47,Great dress,"I am so glad i did not wait to order this dress. the fit is great and is made with great material. i am 5' 7"", 110 lbs and ordered a 0. often i have to have a dress altered but it is not the case with this dress. the length falls right at my knee. it is not shown in the photos of the dress but it has a buttoned back slit that has two buttons with a bright orange trim along the slit. a very cure feature. the bright blue back drop is hard to see on the photos as well but is nice.",5,1,0,General,Dresses,Dresses +828,40,Just what i needed this fall!,"I purchased this shirt in two colors. it was a bit longer than i was expecting. i'm curvy 5' 2"" 180 lbs 36dd and the large fit perfectly.",5,1,2,General Petite,Tops,Blouses +828,41,"Casual, fashion forward, trendy","Great colors, style and fit",5,1,0,General Petite,Tops,Blouses +828,45,Love this shirt,"I was hesitant about this one since i've tried cloth & stone shirts in-store and found them to be tight in the shoulders and arms. i have athletic shoulders and arms, so i didn't have high hopes for this one. i tried it on in-store and it's surprisingly true to size. i always wear m in tops and this fits perfectly. it is long, but i like that there's enough length that i can tuck it in. for reference i'm 5'3"", 130 lbs, a cup, 17"" across the shoulders.",5,1,0,General Petite,Tops,Blouses +1059,28,Comfortable and professional,"These pants are made of a beautiful fabric that really brings out the rich color. like others have said they fit almost like high-waisted leggings, which i for one love. it makes them really comfortable while the nice, heavy fabric and lovely tailoring make it appropriate for an office. i do find that the pockets are pretty useless, as having anything in them ruins the lines of the trousers. the zipper is a bit pokey as well.",4,1,0,General Petite,Bottoms,Pants +828,39,Love it!,"I had been looking for a new plaid shirt for fall. this one is perfect! the yellow is muted, but i really like it that way. other reviewers have commented on poor quality, but it doesn't seem that bad to me. definitely recommend!",5,1,1,General Petite,Tops,Blouses +827,55,Nice top!,"This top is so cute! it does run big. i am usually a small/med in most tops and i fit a xsmall. i am short waist with a 38c bust. it looks great with white jeans, boyfriend jeans or just shorts. dress it up or down! love it!",4,1,1,General Petite,Tops,Blouses +865,25,Effortless and perfect,"This shirt is so cute! i was unsure about how flowy the sleeves would be- as i'm not one for frills- but the sleeves sit nicely. also, i am between a size small and medium, i got the small and it definitely is flowy. runs big, so if you like a tighter fit you may want to order a size down. i got the red and it's a perfect autumn / winter color. the cut outs are not too showy- so it's not revealing for us gals who are a little more belly-conscious. it's the perfect shirt to just throw on and go a",5,1,0,General,Tops,Knits +828,46,Not for large chests,"This model looks like a bauble head. she is absolutely too thin and sends the wrong message out to retailer shoppers. this last catalog's models are anorexic and unhealthy looking. + +i ordered this shirt hoping it would fit, but it's too small for 34dd. i am tall athletic and have breasts. +i think of my shape as average - and the top didn't fit. it's cut narrow and small.",3,1,5,General Petite,Tops,Blouses +828,37,So soft!,"Wonderful shirt, soft and flattering... usually wear a medium, but got the large to layer over tanks and leggings. could have easily worn a medium, but large is not frumpy at all",5,1,2,General Petite,Tops,Blouses +828,25,Comfy lounging top,"I was looking for a flannel-y buttondown that i could wear with leggings or skinny jeans, and this definitely fits the bill. i like the cute details like the contrast collar and cuffs, and also the slight back pleat and the curved hemline. i'm not crazy about the colorways that are offered, but the pink is cute enough, and as other reviewers mentioned, i find the quality a little lacking. i'd be very happy with this shirt on sale, but not sure about it at full price. i got a size s (5'4"", 120 lb",4,1,0,General Petite,Tops,Blouses +828,36,,,5,1,0,General Petite,Tops,Blouses +828,30,Eh...,"I didn't really understand the other reviews until i received mine in the mail. i love cloth & stone and this is just not up to their normal quality. i bought the blue and yellow colors of this blouse. it's very soft, but the blue already had strings coming from under the arms and i hadn't even tried them on yet. material is super soft, but thin. cut is weird under the arms and tight. sleeves are also tight! i am usually an xs or s in cloth & stone so i ordered smalls. i just fit the arms, but t",2,1,0,General Petite,Tops,Blouses +865,23,Flattering flutter tee,"Purchased this tee online and could not be happier with what arrived in my mailbox. this tee is perfect to throw on to run errands or out to lunch. the fabric is so soft, fit is true to size, i don't like tight fitting shirts, if you do i suggest ordering down a size. overall great detail, fit and just as pictured!",4,1,0,General,Tops,Knits +828,46,,,5,1,0,General Petite,Tops,Blouses +826,51,Not as pictured,"Really wanted to like this top. the model has it on backwards - the ""v"" is actually the back and closes with an eye hook (that is where the tag is ? there's also a seam running down the back). the front is actually a high round neck. the material has a metallic thread and felt rather scratchy cheap. i'm usually a s or xs. in this top the s had too much material at the bottom and flared out strangely. the xs was too short in the front and moving your arms caused it to ride up.",3,0,0,General,Tops,Blouses +865,27,Cute shirt,"I love the look of this shirt. it is super soft and has a great draping quality. i personally love that the mid-stomach seem is see through, but if you didn't like that, you could easily wear a tank under it. overall good buy!",4,1,0,General,Tops,Knits +828,36,Uniquely soft plaid shirt,Beautiful blend of colors and the texture of the shirt is so soft...perfect fall weather garment!,5,1,1,General Petite,Tops,Blouses +865,33,Love it!,I didn't realize how much i would love this. wore it to work the other day and got more compliments than i have in a very long time on an outfit! it's comfortable and easy and flattering. bought this totally on a whim and so glad i did!,5,0,0,General,Tops,Knits +996,47,Great skirt,"Fits true to size. good quality, style and length.",4,1,1,General,Bottoms,Skirts +828,39,,,5,1,0,General Petite,Tops,Blouses +1059,61,,Fabric much heavier than looks in picture. also nothing mentioned in the description. great color and fit but i live in florida.,2,0,0,General Petite,Bottoms,Pants +1095,35,Highly recommend,I love this dress! the design and colors used are beautifully done. it looks stunning on. can be worn for work or dressed up.,5,1,1,General,Dresses,Dresses +828,41,Beautiful shirt to bring in fall.,Thicker than you think...the colors are gorgeous and remind you of the changing of the seasons. can not wait to wear when the weather gets cooler. retailer did not disappoint. plan to purchase in other color soon.,5,1,3,General Petite,Tops,Blouses +865,38,Cute...,"I am 5'6"" and typically wear a medium. i purchased this shirt in a small. it is big on me. not very flattering but just a cute shirt to wear on a saturday afternoon.",4,1,0,General,Tops,Knits +1059,31,"Love, but with one problem","These pants fit great, true to size, heavy enough to withstand winter, and the knees don't stretch out as some pants are prone to experiencing. the one problem is that the zipper is exposed on the inside of the pants so it tends to rub against my upper leg and can be quite uncomfortable. it's nothing wearing a pair of spanx couldn't take care of so i've kept them despite this design flaw.",4,1,1,General Petite,Bottoms,Pants +1025,39,,"I needed a white denim pant and this one fits fine. it isn't as slimming as i had hoped for because it isn't a stretchier denim. but, my husband says he likes how they look and they do fit. pants are not easy for me. i have a generous booty and thighs and a small waist. quality is good.",4,1,2,General,Bottoms,Jeans +865,23,Cute top,"I wasn't excited enough about this to purchase it, but i did like it. i am wearing a medium in the photos and for reference my measurements are 38-30-40.",4,1,24,General,Tops,Knits +828,47,Comfy,This shirt is like the best worn in flannel with a little feminine flair! super soft and great length.,5,0,1,General,Tops,Blouses +828,33,,"This shirt was a cute print, but it was too boxy and hit too short on the thigh. i considered having it taken in the waist but ultimately decided it wasn't worth paying the extra $ on top of the $88",2,0,0,General,Tops,Blouses +828,45,A welcome sight for my fall wardrobe,"This shirt is made of fabric so soft you can practically feel it with your eyes. i saw it right when i walked into the store and knew that i had to have it. it is unlike any fabric i've ever had: a soft two-ply, almost gauzy cotton. one cute detail is that the ""inside"" layer is a smaller windowpane plaid than the outside layer. so cute! and so soft! one thickness above cheesecloth, i would say. and like cheesecloth, it has a natural ""give"" within the weave, but it is not stretchy. the shoulders",5,1,1,General,Tops,Blouses +865,26,One of my favorite tops...,"The material is super soft and the color is spot on. i have red hair, so purchasing a top in any red tone can be iffy...great transitional top for spring, summer and fall seasons! i accidentally dried mine, (thankfully only on the lowest heat setting) and it shrunk, but just the length a bit. one of my fave retailer purchases.",5,1,0,General,Tops,Knits +828,47,Love it! i wish they had it in more colors,"I noticed that someone wrote a review about how after washing her shirt, she hated it. well, i have washed mine 2 or 3 times already and have never ironed it. i do use fabric softener, and i take it out and hang it to dry after it has tossed in the dryer for about 5 minutes. it is not meant to be a crisp dress shirt, but a soft casual shirt, and as i said before, i have not ironed it once. it looks like it did when i bought it, even straight out of the dryer. (i own the yellow and pink!)",5,1,0,General,Tops,Blouses +828,39,Cute fall staple,"The color is a very dark mustard yellow, thin/light-weight material, and it has a pretty feminine drape. 0verall a nice twist on a classic plaid shirt. cute cuffs (complementary design). the top was baggier than the bottom though- i deducted a star for the tight fight on the hips. all photos show it unbuttoned or tucked in. i'm usually between a s/m, i recommend the size up for hip fit.",4,1,2,General,Tops,Blouses +822,45,Light and airy,Perfect summer/fall top. can also layer it. i wear it over a tank tunic and love it.,4,1,0,General,Tops,Blouses +865,24,Comfortable and feminine,"Pretty color, flattering fit. the flesh-baring lace inset in the middle required me to wear a tank.",4,1,0,General,Tops,Knits +865,23,Sheer,Tried this on in store. was ill-fitting and sheer.,2,0,1,General,Tops,Knits +828,53,,,5,1,0,General,Tops,Blouses +1095,35,Beautiful details and quality dress,"I expected this dress to be pretty, but was happily surprised at the level of beautiful detail. it's hard to tell in the pictures, but the dress has a black background with tan embroidery all over, and white embroidered eyelets. the full lining is bright blue and it peeks through the eyelets, with the slit on the back and the inside of the neckline lined in bright orange. the slit on the back has two buttons closing it - a really cute detail. it fit me comfortably (i am 5'7"" and 130 - got the si",5,1,24,General,Dresses,Dresses +1095,62,Total muumuu,"I agree with the previous reviewer that the fabric and details are beautiful, but with the shirring from the neckline and absolutely no fitting anywhere, my shape got totally lost and i looked huge. the difference in length of the dress and slip really bothered me, as well. possibly great for pregnancy, because you look like your about 8 1/2 months anyway.",2,0,1,General,Dresses,Dresses +1077,29,Dress up or down,"I don't usually write reviews, but i loved this dress in the store and would have passed it right over online. the skirt is a charcoal color and the top is an antique white. it gives the appearance of a separate crop top. i would usually wear a small (5'2"" and 125 lbs.). i'm wearing a small in the photo, but ended up going back for an xs. the dress could go more casual with flats or boots and a scarf, or dressier with heels and jewelry. i think i'll get a lot of use out of it.",5,1,1,General,Dresses,Dresses +825,49,Runs small in the bust,"This top is very cute, but i found it runs small in the bust, which is unusual for maeve. i will have to return it. you may want to size up, if you have a generous bust.",3,0,5,General Petite,Tops,Blouses +865,51,Lovely!,"This is such a cute and flattering top. it isn't a style i would normally gravitate to, but i liked the color so i thought i'd try it on. i ended up trying on the medium because they were out of my usual large and it fits great. it drapes really nicely and looks super cute with jeans and booties. the little stripe of ladder lace around the middle is a bit see thru but not revealing. it's a nice top for transitioning from summer to fall.",5,1,5,General,Tops,Knits +1025,31,Worn often and loved every time,Starts out crisp but not too tight. doesn't over-stretch through the course of the day. very comfortable but looks polished. front pockets sewn together like all verdugo jeans: good particularly because it eliminates the awkward brighter white where actual pockets would show through fabric on other white jeans. washes exceptionally well and holds its shape as well as softness; which is good because being white they pick up stains easily. be careful with underwear lines- thong probably best.,5,1,2,General,Bottoms,Jeans +828,49,Skinny arms...,"I couldn't believe there weren't more reviews complaining about the arm size... then i found them! yes, this is a cute shirt, if you have toothpicks for arms! so true! the shirt is adorable... a bit guazy (so not going to be super warm for fall/winter... but i live in cali so that's not an issue). but, my arms aren't even big, and this shirt is so snug around my arms! unfortunately it's going back :(",3,0,0,General,Tops,Blouses +828,57,,,4,1,0,General,Tops,Blouses +1077,40,Tulle perfection!,"I was looking for a holiday dress to wear to the nutcracker and what is more appropriate than a tulle skirt?! the tulle lays fairly flat so it's flattering rather than being poufy. the top is a thick material, but not quite sweater material. since the top is warmer, it should be fine for winter even with short sleeves (and a cute cardigan or furry coat#. i'm going to sparkle it up a bit with a necklace or belt, but it also looks fine without extra accessories. fits true to size, i'm typically a",5,1,1,General,Dresses,Dresses +828,29,Wonderful fall button-down,"Glad i went in to buy this: in store i was surprised by the texture which was much more cotton (almost gauze-like) than most cloth & stone shirts made with tencel. the blue looks like demin online but in person is a rather ugly dark blue, the pink was almost red, but the yellow was beautiful! +it is double-lined which is one of the best things about it. +i'm usually between a s and m and could have gone either way but choose m because it was a little longer and ""flowy-er"".",4,1,0,General,Tops,Blouses +828,42,Love this brand,"Anytime i see this brand at retailer in a button down, i have to buy it. fit is always so flattering, comfy and the prints are always great!",5,1,1,General,Tops,Blouses +828,25,,,5,1,0,General,Tops,Blouses +828,42,Ackerley blouse in yellow,"Love this blouse in yellow! fit is true to size, and it looks a feels great.",5,1,0,General,Tops,Blouses +1077,34,Not for long torsos,This dress is so cute. i couldn't make it work because my long torso.,5,1,0,General,Dresses,Dresses +828,45,Vibrant! small!,"Tried this on at the store after falling in love with the color scheme and cut. tons of compliments from the dressing room ladies-this is a hot item in colorado apparently! was surprised that my regular size-small-was too tight in the shoulders, armpits, and upper arms, and i'm not big! (5'7,"" 140 lbs., 32d) ended up with with a medium. 100% cotton so i won't be machine drying this cuz it looks prone to shrinkage. too casual to wear to work but it'll be fun to run errands, etc. in this for at le",4,1,3,General,Tops,Blouses +865,34,"Soft, nice details","Soft fabric. great color for fall and sophisticated detail at waist, sleeves. a keeper!",4,1,0,General,Tops,Knits +828,36,Perfect fall shirt,"Material is very soft and the cut is flattering. i got the yellow and pink. yellow is more of a brown color, but i still like it.",5,1,0,General,Tops,Blouses +865,41,Might be my new favorite shirt this fall!,I love the color and the cut! it fits well and i have a large bust. hangs very pretty.,4,1,0,General,Tops,Knits +1025,65,,"I love love love these white jeans. the crop style is great as i am 5'1"", so the fit is perfect for an ankle jean. +these fit the bill in every way. they are so comfy!",5,1,0,General,Bottoms,Jeans +1095,49,,"This is a dress worth paying full price for, based on the good construction and lacework. i got it for an office event, and although it is low-backed, the high neckline makes up for that! no jewelry necessary with the high collar. i am 5'10 and 135lbs, built like a column, so i got the 6. definitely not for full-figured women, unless you want it long. very cool orange lining and buttons on the back vent.",5,1,3,General,Dresses,Dresses +828,44,"Um, perfect if you have toothpicks for arms","So this shirt is adorable. soft, fun, lays nicely... +but you should have your arms amputated and replaced with a barbie's before you put it on. +i don't even have large arms, the medium fit me perfectly, but then like i hulked out the arms and there are now little tears at the seams. this was all very confusing and vexing as this shirt is otherwise perfection. + +i mean, i'm not a large? but i guess if i want this shirt, i will need to take it back and get a large, otherwise, it will be sleev",3,0,4,General,Tops,Blouses +828,42,Fun fall plaid,Very comfortable and cute. true to size. a look for three seasons.,5,1,0,General,Tops,Blouses +1059,58,The perfect pants!,"I have one in every color, that is how much i love them! i love that they zip on the side and are high waited. i am 5'4 and got a 4 and they hit me just right.",5,1,0,General Petite,Bottoms,Pants +827,38,,I really wanted to like this top but unfortunately it was short and the sleeves were just too puffy. it did not look flattering and will be going back.,2,0,6,General Petite,Tops,Blouses +1077,67,Not for me,"I saw this dress on the mannequin and wanted to try it on because it was so lovely. it was beautifully constructed... the lace is pretty, and the skirt is almost a grayish green, not quite black. however, due to my body type, it didn't quite work. the top cut in too high on me and made me look a bit short waisted. it was beautiful, just not quite the look i wanted. for the record, i'm 5'8"", 125 pounds, and wore a size 2 in this.",4,1,0,General,Dresses,Dresses +1056,33,Good 'ol pilcros,They're the same quality and fit as my hyphens from last year. easy purchase!,5,1,0,General,Bottoms,Pants +545,73,Every woman's cami,"Looking for the perfect camisole that smooths the flab, keeps you warm or cool as appropriate, doesn't ride up, and looks good? this is it! it takes a bit of extra effort to get this cami over your head and pulled down, but once you do, you say ""ahhh!"" it feels good and is a blessing--a seamless bit of control of middle-age, middle-body flab. for sizing: i wear a size 4 in most clothes, and in this cami, i can wear a small/medium or a medium/large. the former pulls in more, but the later gives m",5,1,3,Initmates,Intimate,Layering +1022,37,Classic ag greatness,"These are awesome! classic style and quality you'd expect from ag. the mid-rise is nice for moms like me that are not interested in low-rise jeans. tts. i'm 5'8"", 135# with a curvy bottom and wear a 29, which is my normal size in ag.",5,1,0,General,Bottoms,Jeans +1056,27,"Great pants, color in online pics a little off","I have purchased several pairs of these pants and love them. i got two pairs last fall, one in purple and one in red. i purchased a pair in sand this spring, and just purchased pairs in the violet and taupe last week. i purchased the violet to replace the purple pair i bought last year (stained them then first time i wore them). these pants are great, but the violet color doesn't quite match the color in the picture (which looks very similar to the pair i bought last year). in person, the violet",5,1,6,General,Bottoms,Pants +1022,24,,"Love these! so comfortable, feels like wearing pajama leggings! they're stretchy but don't lose their shape, and the fabric is super soft!",5,1,0,General,Bottoms,Jeans +1056,28,Favorite pants ever.,My experience with these have been great and the colors are even more beautiful in person! they're easy to dress up for work and going out and easy to dress down for hanging out on the weekends. i am typically a size 31-32 and 30's fit me like a glove. i also typically wear petite but don't like the just-above-the-ankle cut of these so i purchased them in regular and wear them as pants. i can un-cuff them with heals/wedges or keep the double cuff and they hit me perfectly as full-length pants wi,5,1,0,General,Bottoms,Pants +1022,49,,,5,1,0,General,Bottoms,Jeans +1056,55,,These chinos are the best. the fit is always true to size. the quality is great and the new fall colors are beautiful. my favorite are the plum. these are my go-to pants,5,1,0,General,Bottoms,Pants +1084,62,Really great!,This is a beautiful dress! not too interested in yellow but needed it for a wedding this summer. i usually wear a large but returned it for a medium - the large armhole was a little too big. super comfortable and easy.,5,1,5,General Petite,Dresses,Dresses +1056,43,Disappointed.,"I have loved the pilcrow hyphen chinos, and have purchased many pairs. however, the last 3 pairs i've ordered are all a different cut now. they are no longer the chino i loved, although they have the exact same name. they are now ""boy cut"", and are much more narrow through the hips and thighs. nowhere on the description does it say ""boy cut"". it's not until the package arrives in the mail that i'm saddened to find this changed product with the same number. it really should say this int he descri",2,0,5,General,Bottoms,Pants +875,62,Very unique print,"Look closely and you will be surprised at this awesome print! the shirt is very soft and comfy. be warned that it runs huge. i usually wear a medium or large in this brand. after many tries, i ended up with a small and it is roomy. this looks so cute under a jacket too.",5,1,0,General,Tops,Knits +1056,44,Love these pants until i washed them,"I bought these in the mustard color and the salmon color. i didn't have a problem with general fading, but used natural, mild stain remover (biokleen) and the pants were ruined. one faded where i sprayed and the other has a permanent water mark. cold wash and line dried. such a bummer that these pants aren't every day wearable and washable!",2,0,0,General,Bottoms,Pants +1056,60,Plum chino's,"I purchased the violet chino's in my local store. the color to me is more plum than violet but a nice shade still. the fit was perfect and they are oh so comfortable. i bought size 27 (weight fluxes 116-118). i can see having several pairs of these in other colors because of the comfort level and they work for fall, spring and summer. in the warmer states even winter. the fabric has a soft feel to it.",5,1,2,General,Bottoms,Pants +1053,37,Love the fit and comfort,Bought these pants for a long trip through south east asia. tried them on at home and instantly fell in love with the relaxed yet styled look. will be incredibly versatile on my trip which i need as i am bringing only ~15 pounds of luggage including the bag. they seem breathable and are light weight. super flattering as they are slightly slimming and don't bunch up at the waste. i got the greenish color.,5,1,0,General,Bottoms,Pants +1056,54,Most stylish chinos around,"I bought these in pink and added taupe to my wardrobe because one pair is not enough. i found a tiny variation in size between my two pairs, but for the most part they are true to size. i love the just below the navel rise. they pair well with strappy or fringe sandals. i haven't worn them with boots yet, however i think they'll be great since they hug in close to the calf and ankle without being tight. buy them in the size you buy jeans or one waist size smaller if you're sometimes this or some",5,1,1,General,Bottoms,Pants +1003,52,Cute skirt for next summer,Fits well. true to size. love the kelly green color and found a blouse to match. the see-through part gives it some oomph and a little extra sexiness without being inappropriate for work. only downside is the beige color--kind of a funky bandaid-colored beige. but the blue and the green balance it out.,5,1,0,General,Bottoms,Skirts +1056,31,Never spray and wash!!!,"I love love love these pants!!! they actually fit me and look great!!!! buyer beware that the dye used is very delicate. i had a very slight stain on them that most likely only i noticed, but i decided to use a spray and wash stain remover. the resulting removal of the stain came with a very large loss of color anywhere the stain remover touched. unfortunately this has made these pants unwearable. buy, wear and wash these with care!!!",3,1,2,General,Bottoms,Pants +1056,63,A great basic but beware of stretching!,"Loved these pants when i bought them but was not expecting them to ""grow"" a size within an hour of putting them on. i think it's an issue with pilcro. great styling, nice fabric, but buy one size down!",4,1,0,General,Bottoms,Pants +1056,29,The size 24 are gone!,"I have a few pair of these from prior years and would like another in a dark color. every time i check, the size 24 regular are sold out! please make more size 24!",4,1,2,General,Bottoms,Pants +1053,49,,,5,1,0,General,Bottoms,Pants +1056,42,Great pants,"These pants fit well, are cute, and are comfortable. they are a nice alternative to jeans.",5,1,0,General,Bottoms,Pants +1022,43,"Fun, flattering","The high/low hem is interesting, and the fit looks great. i did find that i needed one size larger than normal. maybe that's bc these are high rise? there is also absolutely no stretch in the fabric.",4,1,2,General,Bottoms,Jeans +1056,46,The dye runs!,I ordered 5 pair of these pants and the dye ran everywhere when i washed them according to instructions and then it came out with weird lines and splotches in the pants. i sent them back and retailer was very nice about replacing them. i have yet to wash my 2nd pair but we will see.,5,1,0,General,Bottoms,Pants +1056,41,What a pair!,Very comfy and easily could dress down or up!,4,1,1,General,Bottoms,Pants +1084,51,Poor fit,"This dress ran large--maybe because the pleats made this dress too roomy. the dress hung on my right shoulder but the dress did not hold up at all on the left side of my body, maybe because i have a short torso/petite frame. i loved the yellow color for summer--it would have made for a nice dress to wear for a wedding. unfortunately, i had to return it.",1,0,0,General Petite,Dresses,Dresses +1022,40,Supremely disappointed,"When i tried these on in the store i was thrilled - they were comfy as yoga pants and the fit was divine. i thought i had found the perfect jeans and i splurged on them for my birthday. after wearing just two times they are baggy and the knees are totally bagged out, saggy and faded. +so disappointing - i want my $180 back!",1,0,0,General,Bottoms,Jeans +850,31,Flattering fit,"I loved this top! the cinched in waist is so flattering. or i'll leave it un-cinched for a super relaxed fit. it's comfortable and light weight so i'll be wearing this into late spring/ early summer. i've worn it with the green pilcro slim pants, i've worn it unbuttoned over a basic black knee length jersey dress, i've worn it over a bathing suit in west palm beach. i can't wait to find more fun ways to wear it!",5,1,12,General,Tops,Blouses +1072,70,Ethereal beauty,As other reviewers have stated it is hard to see in the photos that the dress has iridescent blue/pink/lavender sequins. i was surprised as well but in a good way. i think it has a unique look and is so pretty and romantic. its a vision of shimmer when you are walking. if you have somewhat of a bust i would size up because the triangles run a little small. other than that its a beautiful dress.,5,1,1,General,Dresses,Dresses +927,57,Not a great a great sweater vest,"I was disappointed in this vest, it was stiff and scratchy and seems too big, doesn't drape well fromm the armpit and bust line area. not very figure flattering, looks like i put a blue shopping bag on and belted it to try to add flair!",3,0,0,General,Tops,Sweaters +895,48,Lovely color,"I would not have purchased this had i not seen it at my local (2 hrs away!) store. as the previous review mentioned, the red is gorgeous! very saturated color, just lovely. it does run large. i am 5'10"", 135lbs. i typically wear medium but chose small and could possibly have done xs but i wanted the extra length.",5,1,2,General,Tops,Fine gauge +895,35,Not for the full-busted,"This top looks great on the model -- a petite frame, small-busted body. i am 5'2"" and have a large bust and curvy hips. this top hit in all the wrong places. the front looks very cropped and frumpy, if you have a large bust. the width of the top of very boxy. the top is very soft and comfortable and the color is pretty.",2,0,0,General,Tops,Fine gauge +1135,35,Beautiful off the shoulder blouse,"I was hesitant to purchase this because of the price, but the design really spoke to me. i've been waiting for an off the shoulder piece that i love, and this was it. great, light fabric and beautiful design. i love it. worth every penny. can be worn on or off the shoulder like pictured.",5,1,2,General,Trend,Trend +895,43,Great transitional sweater!,"Very soft, comfy, lightweight sweater. perfect for layering as the weather gets cooler. looks great with jeans or jean shorts.",4,1,0,General,Tops,Fine gauge +895,72,Lovely transitional sweater,The color is deep coral and perfect for fall to top jeans or leggings. i love the big slouchy look so the drapey quality is a plus.,5,1,1,General,Tops,Fine gauge +895,57,Nancydee,"Love this sweater! lightweight, comfy and does run large. i usually wear a size 12 or l/xl in sweaters cause i don't like them to fit tight. i read reviews and ordered a medium and it's perfect! can't go wrong! i ordered the red, but am now thinking of ordering the grey one!",5,1,0,General,Tops,Fine gauge +1075,46,M/l too big for a plus size girl,"Contrary to some of the reviews posted the dress is not excessively sheer. you can't see black underwear thru the fabric, but you can see the body's silhouette in front of a light source. it's not lingerie sheer, but more like a medium weight gauze (without the wrinkles). if you're older or modest the sheerness may bother, otherwise (due to the print) it shouldn't be much of a factor. + +now on to the size... i'm a plus size girl (size 18) and based on reviews saying the dress was huge, i ordere",3,0,0,General Petite,Dresses,Dresses +1075,42,Dress for you and your whole family,"I really wished i had heeded the other reviews of this ""dress"". it is so ridiculously oversized i cannot imagine who this possibly would look good on. i ordered the sm/med and when i took it out of the package i thought i had accidentally been sent a bed sheet and said ""are you kidding me?!"" by the time you cinch the neckline so the fabric is somewhat close to your body the neckline is almost to your waist and you look 50 lbs heavier. horrible design retailer. i don't know which dress the",1,0,2,General Petite,Dresses,Dresses +1075,38,See through beach cover up,I was so looking forward to an awesome maxi dress. this was not it. completely see through. i guess you could wear it as a bathing suit cover up. but be prepared to knot the length or you will trip. its an odd design. absolutely not worth the price. i purchased the sm/md and i could have for two of me in the dress. returned this piece without looking back,1,0,15,General Petite,Dresses,Dresses +850,45,Cute lightweight tunic,"I wear stuff like this a lot so naturally i got this one. i love it and i think it's flattering however it wrinkles easily and also when i hand washed in cold water it shrunk a little which super irritating, but i'm going to wear it anyway. i think it can be worn with many things so it'll stay in rotation a while.",4,1,5,General,Tops,Blouses +1075,39,Huge and a bit grayish,You can adjust this dress a bit with the straps but it's huge! the colors were also a bit grayish which i didn't expect.,2,0,0,General Petite,Dresses,Dresses +850,37,Comfortable style,"Such a great purchase! the fit is so flattering to my 5'3"" frame. i usually wear an extra small/small, but i opted for an extra small after reading a review; i'm glad i did. i also did not get the petite, but i imagine it would have a similar fit without the length this has. it flows, yet hits my curves in all the right places. i will say, i'm a c cup and if you have larger breasts, the extra small may not accommodate them as it is just right on me. the black is so slimming especially when pared",5,1,0,General,Tops,Blouses +261,63,Classic tee,"I really love the fit of this classic scoop neck tee. i am 5'8"", 140 lbs, and 34 a/b. i am typically a size xs/s or 2/4 in all retailer tops. however, this brand (velvet) runs small. i had to order a size medium. the fit is slim to your body and is a little sexy with the low scoop neck! the fabric is very soft and a little thin. i am a little concerned how it is going to wash, it seems a little delicate. but i will wash it on the delicate cycle and line dry it. i ordered the black (classic",5,1,3,Initmates,Intimate,Layering +850,40,Classic and easy,"I purchased this shirt in black. luckily, it was on sell. it can be dressed up or dressed down. it's so easy to just throw this on with skinny pants or jeans. i got it on sale too. i just hope that i can keep it for years since it will always be in style.",5,1,0,General,Tops,Blouses +895,37,Cute but wearable?,"This is a relatively cute top when you try it on. however, i don't think it will hold it's shape after even just 1 wear. it also doesn't seem like you could wash it without ruining it (like a shirt form a 'throw-away' cheap clothing store). i checked the fabric tag and it is a very high % viscose - meaning, it won't last long at all. i'm returning and feel frustrated with how cheap the fabric is.",3,0,5,General,Tops,Fine gauge +850,30,Went back for more,"I originally bought this tunic in black, and loved it so much i bought the rose as well. normally tunics make me look like a box, but the tie on this one makes it super flattering.",5,1,0,General,Tops,Blouses +1072,32,Color not as shown,"The dress is very pretty, but the sequins are dark blue! i imagined they would be silver/gold, given the photo, but the dress is essentially light pink and blue.",2,1,3,General,Dresses,Dresses +850,39,,It's not a bad concept but i wished for more. i wish this tunic was a: different material as it was wrinkley and drop-waist design instead of at the waist. too bad. i wanted to love it but it will go back.,2,0,6,General,Tops,Blouses +850,34,,I was hesitant to get this piece but for the price i couldn't resist and i'm so glad i got it !! it is beautiful in person and can be worn so many different ways. it really makes you look slim too ! i got the size small and i am 5'4 and 130 lbs and it's a perfect fit !!,5,1,0,General,Tops,Blouses +1075,34,Cute and comfy!,"I wore this dress to a couple different summer parties already, and i love it! it looks better belted on my curvy frame. i really like that the straps are adjustable and the versatility of this dress! +perfect lightweight material in this summer heat. +i'm not sure why reviews say its sheer- its not sheer at all! the fabric isn't hugging your body at all and you just need nude colored undergarments.",5,1,6,General Petite,Dresses,Dresses +895,46,,"Love this sweater. i have it in both colors. it's lightweight - a nice late summer/early fall option. the sleeves are really long which i love. because it's a loose knit, it will snag somewhat easily, so be a little careful",4,1,2,General,Tops,Fine gauge +850,22,I love this top--fits like a dream!,"I bought this top in black, and it fits my body type really well. it is probably one of my favorite purchases from retailer recently. the black top is really slimming and is a great cut. i usually have trouble finding tops that are long enough for me, but this top is definitely a great length.",5,1,1,General Petite,Tops,Blouses +1075,40,Light and airy,"I really love the feel of the fabric on this dress. when you first take it from the package it resembles a tent, but once you figure out how to scrunch the front and back around the straps, it resembles the photo. the fabric is very soft and the indigo colors are amazing. this dress is perfect over a swimsuit or for casual gatherings. you can even dress it up with a belt. it is somewhat sheer, but does look cute with a cropped jacked over it.",4,1,3,General Petite,Dresses,Dresses +895,37,Wow ! size down 2 sizes !,"Soft and cozy, the orange is vibrant, the green is more subtle and has gray tones. usually wear a small, bought the xxs ! too full and too sloppy in the xs ad small.",5,1,5,General,Tops,Fine gauge +1072,26,Not as pictured,"I bought this dress for a holiday party, and the sequins on the dress were so much more blue that what it looks like in the photo. i still liked it, but when i went to try it on, it was just not working. i thought this was more of a loosely fitted look, but the upper bodice and waist seam are very tightly fitted. i would recommend sizing up, but be aware that the top straps (shoulder to breast) are too loose to begin with, so they may sag. + +overall, i wouldn't recommend this dress for the curren",2,0,0,General,Dresses,Dresses +850,50,Missing drawstring!,"This top is exactly what i was hoping for except it is missing the drawstring. so disappointing, mailing it back.",2,1,0,General Petite,Tops,Blouses +826,26,Nice top strange fit,"I have a curvy figure, and this top is not for me. it fits loose at the top and is tight at the bottom. it is also short. i think this top works best on slender figures.",3,0,3,General,Tops,Blouses +835,39,Fun top!,"Top fiits true to size- i'm 5''6"", 132# and avg bra size. i orderd a 4 and it is great.i love the colors and the fabric is realy nice- what i would expect for this price point. the slit at the neck is not too low to be revealing. this would work well with jeans and just as well with dress pants for work.",5,1,1,General,Tops,Blouses +895,51,"Beautiful sweater, but...","I love this sweater, so why a lower rating? while i love the material and the color, it lost all of its shape before i even left the house! i am a size 6 / small and it looked clownish on me before i ever got to my dinner party. i plan to wash it this evening and i really hope that this brings it back to its original shape and keeps it.",3,0,0,General,Tops,Fine gauge +1072,20,Color is not as it appears in the photo,I was very surprised to see such dark blue sequence on this dress. it did not appear as it did on the photo. i was pretty disappointed by the color. the photo of the dress is much more impressive.,2,0,3,General,Dresses,Dresses +933,64,,"Great style and fit. will look great with jeans, skirt or leggings!",5,1,1,General Petite,Tops,Sweaters +741,34,,I am a true to size 4 and when this bathing suit arrived it looks like it's a kids 4. i will exchange for an 8 and hope for the best. the quality looks great and the styling is beautiful but i could barely get into the suit.,3,0,5,Initmates,Intimate,Swim +933,55,Love the color,I got this in the teal and the color is beautiful and i get so many compliments! definitely size down. i am athletic and usually a m and i ordered a small.,5,1,0,General Petite,Tops,Sweaters +933,43,I love this sweater!,Thus sweater is perfect. the fit is exactly as i expected it from other reviews. it is super soft and not at all itchy. i have worn it over a tank top with jeans and boots as well as to work over a dress. the fact that i can wash it is an added bonus. i haven't dried it yet as i am worried it could shrink. i bought this with a discount but it is totally worth full price.,5,1,1,General Petite,Tops,Sweaters +824,42,Darker in person,"The embroidery on this top is pretty but i think blue is more of a navy/grey in person and the embroidery seemed darker brown. i'm 5'6 and tried an xs and small, the small definitely fit better in length. the body of thr blouse is loose, almost boxy. cute top, just not what i'm looking for.",4,1,7,General Petite,Tops,Blouses +944,52,Beautiful sweater but strangely cut,"This sweater is beautiful and well made, but i found the cut strange and unflattering. i ordered it in my usual size small, and it was too big in the shoulders and arms, with a lot of fabric bunching up under my arms. but it just fit me in the chest, and would be too tight if i sized down. this might work for you if you are not busty and order a size down from your usual.",3,1,0,General,Tops,Sweaters +933,41,,I really like the warmth and loose cut of this sweater. it is great for layering and looks nice dressed up or down. my only gripe is i would love for it to have a second fastening. if it had another snap a little further down the body you keep keep it more securely closed. other than that it was a really great purchase.,4,1,8,General Petite,Tops,Sweaters +933,23,Cozy soft,This sweater is buttery soft and warm. it is long and you will want every color. i bought the sky blue and it looks fabulous with so many outfits. i had to get the gray color also. the sleeves are a soft fitted rib material and the body is long and roomy. love love!,5,1,1,General Petite,Tops,Sweaters +933,31,Wanted: in too many colors,"Love this cozy sweater for layering. i purchased the green, have the cream saved in my cart, and also love the coral and blue too. 5'5"", 135lbs, 34c, ordered size small which was perfect",5,1,6,General Petite,Tops,Sweaters +944,38,Soft like a puppy,"Eyelash sweaters are all so soft and cuddly but this is the only one i've found what doesn't make me look like a bear. the shoulder cut-outs really help create a flattering silhouette. i'm 36-30-40 the medium fits well, slightly loose so the sleeve below the cut out hangs slightly. highly recommend.",5,1,0,General,Tops,Sweaters +933,32,So soft!,"Love love love! it's the perfect cozy, comfy piece for a bitterly cold day. and the color is such a nice shade for the dreary winter.",5,1,0,General Petite,Tops,Sweaters +933,67,Love this sweater,"This gorgeous sky blue sweater was already in the dressing room to try on; i was not shopping for anything like this whatsoever. well, i tried it on and decided it was a must-buy. i usually need a petite in sweaters and coats, but this one, because i prefer a longer length, fits just fine, and the sleeves are not too long. the color is beautiful. it seems to be warm enough for sf evenings. it think the price is quite reasonable for a sweater/coat like this. a great purchase!",5,1,4,General Petite,Tops,Sweaters +933,39,Much softer than anticipated,"There was. a blue one in my store sale room and i decided to try it on, as i had read great review. bummer is i really do need hte petite in this. cut is flattering, adn material softer that i thought. next year...",4,1,0,General Petite,Tops,Sweaters +944,35,Comfy!,So incredibly comfortable. the sweater wasn't flattering on me (i'm super busty) so i sent it back but it was a tough call because of how incredibly soft.,4,1,0,General,Tops,Sweaters +741,30,Runs very small,"I usually wear a size 2-4, and ordered a 4 here. it was way too small. it seems like a nice suit, so i'm ordering a size 6 and 8 to try. but definitely heed the warnings and order at least one size up.",4,1,0,Initmates,Intimate,Swim +933,41,Very pretty sweater,"I love this sweater! the sky color is very flattering in person. i love that it looks good open or closed. i bought one for my mom and me. i think it will be very versatile. i think it runs mostly true to size, possibly runs just slightly big.",5,1,0,General Petite,Tops,Sweaters +583,21,Perfect summer maxi!,"Maxi dresses are always my summer staple and moss has been my favorite wardrobe color lately, so this dress was a must buy! i'm petite and this came about two inches above my feet. i would be cautious if you're more chesty, i wear a c cup and typically am a 0/2 at retailer, but the extra small's bust line didn't hit under my bust properly and was too high up. i'm hoping sizing up will fix the problem if the small comes back in stock online. besides sizing issues on my part this dress was nice and",4,1,2,Initmates,Intimate,Lounge +741,46,Beautiful timeless basic,Gorgeous suit! one of the most well made suits i've ever owned. sexy yet provides great coverage. do note the sizing is per australian standards. i had to order a size up.,5,1,1,Initmates,Intimate,Swim +933,40,Love it!,"This is an amazing sweater. thick but not overly thick, the material is beautiful and the colors rich, i love the collar and the way it closes as well as the pockets and the back being different from the front. i hope it washes well. i bought the moss. it fits nicely and is very slimming. i highly recommend.",5,1,0,General Petite,Tops,Sweaters +933,23,,Cute sweater. snap was broken when i received it. and i looked for it at local stores and they are all out of stock. ugh!,1,0,2,General Petite,Tops,Sweaters +933,43,Could work for another body type,This was too big in the arms & i didn't like how there was only one button toward the top so that it made your body look hippy. little too itchy too. best thing about it was the look of the slouchy collar.,3,1,3,General Petite,Tops,Sweaters +583,49,Love love love,Possibly my favorite retailer purchase ever! like wearing a cloud & fit perfectly! if you're busty - not sure about it -- but otherwise wow! told my husband: hope you like it because you'll be seeing it all the time & he not only agreed but wanted to know if they made pajamas for men.,5,1,3,Initmates,Intimate,Lounge +933,48,Cute sweater coat,This sweater coat is really cute and soft (i hate itchy sweaters). the blue is lovely and the cut is flattering. i'm going to check it out in other colors as well!,5,1,4,General Petite,Tops,Sweaters +583,26,Perfect for summer nights!,"I love this dress! it's cotton, but thicker/ higher quality. i'm going to wear it for nights out and to dinner this summer, and it's thicker material, so i won't even have to wear a bra with it ! it's a little lower cut, so be careful. i'm 5'3 and the extra small hits me right above my ankle",5,1,1,Initmates,Intimate,Lounge +933,29,Great purchase,"I originally bought this in a petite xs. i am 5' 4"" tall on a good day. sometimes longer sweaters can overwhelm me. but the petite was almost a bit snug and short in the arms. i exchanged it for a regular xs and while i now have to cuff the sleeves, the overall look is much better. i bought the gray but really liked the blue and moss too. will be very nice for the frigid days we have in ohio. looks great with leggings tucked into boots i think. a winner!",5,1,2,General Petite,Tops,Sweaters +933,56,Big comfy sweater,So soft and comfy. looks equally good buttoned as open. can be worn as a tunic top over leggings or jeans. the charcoal color is chic and i liked the different patterns on back and front.,5,1,0,General Petite,Tops,Sweaters +583,50,Oh so sexy!,"Love it! can't wait for warmer weather to wear this sassy number! +i'm not sure what kind of bra to wear if any but it it fits so nicely around my bust line that it looks tasteful.",5,1,17,Initmates,Intimate,Lounge +933,31,Not for apple shapes,"I wanted to give this a glowing review but i ended up returning this cardigen. the folds on top added too much to my frame. i do not suggest this for heavier apple shapes. for all others, it is incredibly soft and warm. the tan color was weird but they others are simply gorgeous.",3,0,0,General Petite,Tops,Sweaters +1052,52,Love this piece!,I love this onesie! i get a lot of complements when i wear it. the only issue is that it's slightly too short in the mid section. it tends to give a tiny bit of a wedgie. but it's not nearly significant enough to give it a bad review or return it. overall it's comfortable. i did have to size up because of that issue but it still looks great.,4,1,0,General,Bottoms,Pants +583,58,Perfect and pockets!!!!!!!!!!!!!,"I was leery when i ordered this as i read the reviews and i'm busty. it is perfect for me- just wear a little bandeau underneath! i'm 5"" 1 1/2"" ,135 lbs and 34d bra size. also the length is perfect. i'll be wearing this little number winter and summer here in fl. will look just as cute with boots and long sweater! and did i mention, it has pockets!!!!!!!",5,1,3,Initmates,Intimate,Lounge +1052,31,Amazing!,"I've never bought a jumpsuit and loved this online so i took the chance and ordered it. i'm 5'7 and 130lbs, i bought the small and it fits great. i love the plastic around the neckline to keep the top in place. the draping fabric on the chest is great for my small chest, gives the look of a fuller chest. absolutely love this. great buy and a great price!",5,1,4,General,Bottoms,Pants +933,33,Comfy and lux feel,"Just as described by others. soft, great fabric and so comfy.",4,1,0,General Petite,Tops,Sweaters +933,26,Lounge chic,I loved the contrast of the front panels and sleeves/back of this sweater. it has a coat look with the ease of a sweater. the arms seem very long and i wish i went with an xs as where i live not much laying is needed. but overall this is a lovely sweater!,5,1,0,General Petite,Tops,Sweaters +933,35,Too itchy for me,"I was searching for an ivory cardigan and i ordered this in my usual size small and an extra small. after trying them both on, the xs looked better, i like a more fitted look. a tad tight i the arms when layered but otherwise would have been a good fit, but the acrylic in this garment was too itchy for me around the neck. i thought this might be the case but took a chance anyway. also the pockets add a bit of bulk in the hip area, definitely not something i want.",4,1,4,General Petite,Tops,Sweaters +828,39,Cute tunic to throw on and go,"This tunic is simple and well made. it was not as long as on the model as on me but i am 5'-9"".",3,1,0,General,Tops,Blouses +933,52,Cute sweater,"Overall i like this sweater, but it does have a couple flaws. the sweater looks better snapped. unfortunately it only has one snap on the front--there should be another one inside. after a couple wears, my snap started to come loose, probably because it pulls so much. the sweater is a bit oversized and i probably ordered the wrong size. i'm 5'7"" and 140 lbs. i ordered a medium, should have ordered a small. all that being said, i still love the look and color (moss green) of the sweater and would",4,1,0,General Petite,Tops,Sweaters +933,83,Comfortable,"I saw this in the store and fell in love with it, i didn't buy it at first but i couldn't stop thinking about how comfortable it was so i went back and purchased it, its soft and very comfortable, im glad i went back for it.",5,1,4,General Petite,Tops,Sweaters +933,64,Two versions?,"I love the color and style of this sweater and was very eager to wear it, which i've now done on two occasions. but now i'm concerned about the quality and also wondering if there is a long version of this sweater and a shorter version i am 5'6"" and thin, but the sweater doesn't hit me mid thigh - only goes to upper thigh and i measured 25"" in length on my sweater rather than 30"" which seems to indicate a shorter length than on the model i wish it were longer. more a problem is that the fuzzy pa",3,0,1,General Petite,Tops,Sweaters +933,39,Like it alright,"I like this sweater but i'm not in love. the rib knit on the sleeves are too form fitting (not restrictive) on my chubby arms so it doesn't look flattering when i wear long sleeves. i do appreciate the mixed patterns and the soft moss colorway, it's very pretty together. i purchased the medium petite and the length looks good. maybe i need the large because of my body type. i'll give it another chance when my paquerette gets here",4,1,0,General Petite,Tops,Sweaters +933,47,Nice and cozy,"I love sweaters like this. it's perfect over a tank top for a casual every day look. it's soft, comfy, and i love the length. one more thing i like is that while it looks great just open, there is a snap to fasten it if you want to.",5,1,4,General Petite,Tops,Sweaters +824,44,,"I love the overall design of the top. the embroidery is very nice as well. i would agree with the past reviews that it runs large. i am between a small and medium, so i ordered the small.",5,1,2,General Petite,Tops,Blouses +933,41,There's wool in this! whimper!,"This cardigan is utterly gorgeous. way prettier on than i feared. my only issue is it felt a little itchy in the arms, and so i finally looked closely at the tag. the tag says the *back* section (which looks exactly like the weave on the arms) has a measly 5% wool snuck into the fabric content. why, retailer? why wool? i am so sensitive to it! my eyes have been demon red and itchy all day, classic symptoms that led to my getting rid of anything in my wardrobe with wool in it. + +now i have a problem",5,1,1,General Petite,Tops,Sweaters +933,65,Gorgeous and decent price for the quality,"The other reviewers have already adequately praised this very attractive sweater, but i'd like to add that the sizing is large. i fit perfectly into a regular small, although regular medium is my usual size. i am 5/1"", 130#, 34f, size 8 top. the medium swamped me. the shoulders and sleeves were comical, and the body too big. i imagine many of you are scoping out this lovely, comfy piece; you'll want to hit the right size the first time. my store didn't get the coral, so i can't speak for that, b",5,1,14,General Petite,Tops,Sweaters +933,66,Petite size is perfect!,"I am 5'4"" and the regular sweater i tried in the store was too long. i ordered the petite online and it is perfect! it's warm and comfortable and can be worn different ways which makes it great for stretching my wardrobe. love it!",5,1,2,General Petite,Tops,Sweaters +1089,46,Comfortable and colorful dress,"I bought this dress for an early fall wedding, i usually wear a size 14 and bought a large. it was loose and swingy, very comfortable, almost too big. i would size down if you are in between. this dress was so easy to wear, i would definitely bring it on vacation. you can pair any type of shoes- flats, sandals, heels, wedges would all look good.",4,1,1,General,Dresses,Dresses +944,57,Better than expected!,"I was surprised at how soft this is. it also has snaps under each arm for definition, and on front for closure. didn't know that, and love it. got yesterday in mail, wore out last night. highly recommend.",5,1,2,General,Tops,Sweaters +1080,33,Short,I really loved this dress. it ran small but it was also shorter than i imagined which was only worsened because i'm curvier on top. would be great for slender figures.,3,0,5,General,Dresses,Dresses +1078,56,Dark pink and short length,I wanted to wear this for my journey to cuncun and i wanted the blight pink as photo however it was a dark pink which didn't fit to me unfortunately... but the design was pretty!,3,1,4,General Petite,Dresses,Dresses +872,39,Great staple,Soft and cozy every day tee that can be dressed up or worn casually. only compliant is i wish it came in more colors!,5,1,2,General Petite,Tops,Knits +872,53,"Pretty, soft, sheer","Got this in wine, very pretty and soft. but so sheer, even with the dark color one would have to wear a cami. returning for this reason. having to wear a cami wrecks the otw ultra-comfort.",2,0,0,General Petite,Tops,Knits +1078,40,,"I love this romper! it has a retro look to it, is super soft, and has a whimsical retailer print. the pink color is the perfect shade too. the fit is great and i had no problems getting it on or off.",5,1,0,General Petite,Dresses,Dresses +1135,46,Sizing,Medium is equivalent to eu size 40. the pants have the eu tag and i would have ordered differently if i had known this. great quality pant; just order according to your european equivalent.,4,1,2,General,Trend,Trend +1056,58,,"These pants are much cuter on than in the picture. i love the fit, snug legs and normal waist. will order again in another color.",5,1,1,General,Bottoms,Pants +1078,20,Retro diner girl chic,"When i first tried on this romper, i grabbed a 6 (my normal size) but because of my bust size, i could not even get the top half to cover me at all. i decided to give this romper another go a month later, and tried on the 8...it made all the difference! i love it, it fits amazing, and it is just too cool.",5,1,0,General Petite,Dresses,Dresses +1089,54,Flattering and comfortable,"I ordered this in a size small for a pre-wedding brunch in dc in october. i am 5' 4"" and usually wear a m in dresses and a s in retailer tops. this dress is full and flowy, but the top is less generous if you are full-busted.. i am a 34 dd and the top of the dress is almost too small. i love it so much and it is so flattering and fun, so i decided to keep it. i can see wearing this on many more occasions.",5,1,0,General,Dresses,Dresses +1078,39,Cute and flattering,"Just not the right color for my skin tone (though lovely pink). i didn't see the green in person, but probably nice too. + +the cut is well fitted at the waist, elastic band. i will say, however, that it was almost hard to pull the shoulders over (doesn't unbutton past waist). fabric is soft and flowey, length on the regular was mid-though for me, i am a tad oder, so it was nice... if i were younger, i would get petite. + +for reference: 115 lbs, 30 dd, 26.5 inch waist",4,1,15,General Petite,Dresses,Dresses +1078,77,Cute but difficult,I thought the design was adorable. i ordered up bc of reviews and i am glad i did. i am a size 6 so i ordered a size 8. the upsize is needed so u can get into the top part of the romper. otherwise it would be mission impossible. it's a pain to get on and off as all rompers are but it's soo cute it's worth it. had compliments on it the first day i wore it.,4,1,0,General Petite,Dresses,Dresses +1080,24,Odd fit,"The dress looks beautiful online, and fits the model great. when i got mine, the arm holes were incredibly too tight. everything else about the fit was perfect--length, bust/waist-- but i could barely drop my arms down when i tried it on. unfortunately it will be going back.",4,1,0,General,Dresses,Dresses +1078,24,Classy and cool,"This is a great piece to add to your wardrobe! the flowy and light feel of the fabric is great. i got the pink, which surprised me because i wear so much black. the length fits longer than most rompers, which is great. it makes it a classic fit. i definitely recommend this and suggest trying a size up- the waist has elastic, but it's snug.",5,1,1,General Petite,Dresses,Dresses +1082,59,Much shorter than in photo - shoulders tight,Fabric is not as rich as shown in photo. dress much shorter than shown in photo. shoulder area is tight and really doesn't blend with the material below. this isn't going to work on very many people - pear shape...just not what i've come to expect from retailer.,2,0,4,General Petite,Dresses,Dresses +1082,47,Shapeless,"In the words of my husband, ""looks like you're wearing a bag."" i'm althetic and short. maybe this works best on tall and very slim?",2,0,0,General Petite,Dresses,Dresses +1080,40,,"Quite possibly, one of the most flattering, beautiful, and effortlessly romantic dresses i have ever tried on. and, to top it off, it has a sweet surprise: the silk slip on the inside of the dress has the same print as the outside shell, and it is so lovely, that if you feel like wearing something short and sweet, you can wear the slip as its own dress. + +runs true to size, to maybe just a little bit big--if you have a smaller bustline and narrow hips, you might be able to size down. + +it's cr",5,1,5,General,Dresses,Dresses +899,45,,"Looks great from the front, but from the side it looks like a maternity top.",3,0,2,General,Tops,Fine gauge +1078,38,Makes you instantly feel like betty grable!,"I've been hesitant to try on rompers, in part because they seem complicated and i also too worry that i would look a bit like mutton disguised as lamb in one of them! however, i saw this romper and fell in love with the pattern and had to try it on! +the pattern and color are wonderful, and i instantly felt glamorous, like betty grable in a cute cheesecake photograph! i had to buy it, and have since received tons of compliments on it (and i have yet to feel that i am too one foot in the grave t",5,1,0,General Petite,Dresses,Dresses +1080,66,True to description - lovely details,"This is a lovely embroidered (hard to see in the pictures) shift that i purchased to wear to a fancy fundraiser. it has vintage '60s lines that are fun. very forgiving fit. i am 5'5"" 125 lbs with a 32dd bust and purchased a 4 petite (for a great price!!!). i might alter it so it has a bit of a waist curve, but that is minor.",4,1,0,General,Dresses,Dresses +899,38,Cute shirt!,I thought this shirt was really interesting online and it doesn't disappoint in person. i love the uniqueness of the shirt but wish the quality of the white fabric was a little higher. overall though this was a great find and i know i'll wear it again and again.,4,1,0,General,Tops,Fine gauge +1078,41,"Cute, but a struggle.","This romper is cute. i won't deny that. however, the rayon fabric made me really feel like i was wearing pajamas. i was afraid it would wrinkle horribly. however, the real problem with this romper is how hard it is to get on and off your shoulders. i'm short, but have a little wider shoulders, so, perhaps that was the issue. it seems like another reviewer had the same problem. there are only two snaps from the waist up and nothing to open it further from the waist down, so, i had to do some cont",3,0,5,General Petite,Dresses,Dresses +944,40,Way to big and boxy,This sweater looks great in the picture but when it came in the mail turned out to be enormous. i tried it with a belt on like in the picture but that just made the whole sweater bunch up everywhere. the quality is nice. maybe sizing down would help. but the medium/large is going back. i am normally a medium.,2,0,0,General,Tops,Sweaters +1056,19,Great fit,They look good in the front as well the back i would go a size down in them though as they stretch out throughout the day! i love hei hei and would recommend this pant,4,1,1,General,Bottoms,Pants +1056,42,"Potential, but sizing is inconsistent","Ordered these in two colors( moss and bronze), same size (26). the moss fit perfectly and the bronze, i can't even button. so very frustrating, particularly when shipping fees are involved. i'm keeping the pair that fit but was hoping to have a couple pairs. perhaps i'll try on another pair in the store. its a nice lean slimming pant that will work from fall through spring. the material is a bit thick for summer. soft and a tad stretchy to allow ease of movement. looking forward to wearing with",3,0,1,General,Bottoms,Pants +1078,64,Difficult to get in-and-out of....,"I ordered this in lime, which is one of my fave colors. the garment was loose and roomy, and had the designer used elastic anywhere on the waist, i would have been in love! the shoulders were only tight due to the lack of flexibility in the bottom - no elastic at the waist and no placket below the waist to increase the ease of mobility taking the garment on and off - so if i had to use the ladies' room, i had to plan ahead. + +i took it on a trip and didn't have time to try on prior to leaving.",3,0,0,General Petite,Dresses,Dresses +1056,26,Fall pants,These pants are perfect for crisp fall weather and comfortable! i wear them with flats to dress down or heels to dress up! recommended for all shapes!,5,1,2,General,Bottoms,Pants +1089,58,Buy it now!!,"I got this dress on sale (under 20 dollars) but i would pay more! it runs very large - i got a medium which is roomy, irl i wear a large (vanity sizing i suppose!). the colors are so pretty, it is lined so you don't need a slip or cami. highly recommend!",5,1,0,General,Dresses,Dresses +1089,54,This dress is gorgeous!,"Buy it. buy it right now! this dress is gorgeous, and would be on anyone. i don't care what size you are, it's so pretty, that you feel pretty in it! i loved wearing it, and since i am in florida, i can wear it all year long. so it's worth it. happy, very happy, with this purchase!",5,1,0,General,Dresses,Dresses +1078,32,,"I like the color and design. it looked super cute when i tried it on, but when i brought it home, i washed it in the washing mashine and hung it to dry and it shrank before i even got to wear it. be careful with washing it!",4,1,0,General Petite,Dresses,Dresses +1089,31,Runs big!!,"I am pretty standard size 8, 36c, 5&#39;6&quot;, 150 lbs. i ordered the small and the bust fit well but the whole thing was like a tent and way too flowy for my taste. it was also long so everything was very covered. i didn&#39;t feel it flattered my build. i returned!",3,0,0,General,Dresses,Dresses +1080,31,Worth every penny,"After multiple purchase and returns (from other sites!) i decided to splurge on a dress for my college graduation (located beach side). this dress was better than i could have hoped. the fit is very flattering, loose & tight in all the right places. the adjustable straps underneath the overlay ensure the silk lays perfectly. the colors are gorgeous and the fabric is light as a feather. the slight train & back buttons adds elegance to an otherwise ""casual"" floral pattern. i would highly recommend",5,1,7,General,Dresses,Dresses +1135,44,Runs big,"I loved the idea of these pants as i've been looking for an updated pair of tuxedo pants. i wear 26 in most of my jeans. i'm not super skinny & consider my legs medium (not too skinny & not too athletic). i tried these on in xs (36 european as marked on them) & they were big around the waist & hip area. there was so much gap in the back which made them look frumpy! i did however liked the length. the fabric is nice & heavy which i also loved. sadly, these didn't work for me though. really wish t",4,1,0,General,Trend,Trend +1056,43,Color bleeds and discolors the pant.,"This is a problem i have had with the pilcro hyphen cargos with the color dye. +the dyes in these pants are the same thing. i wore the purple color and washed in cold, gentle, cycle and they were stained/ + +i will return these -it's too bad because they were pretty comfortable and flattering pants.",2,0,0,General,Bottoms,Pants +944,36,,"Although the design and quality were great, this did not work for me. it was boxy, square and overwhelmed my petite frame. if you are taller, or have a longer torso, this may be a great basic staple for your wardrobe.",3,0,0,General,Tops,Sweaters +1078,57,Runs big,"I love rompers and this one is really cute. i usually wear size 12 but should have got a 10, it runs big. it seems too long, and i'm 5'9"". the prints cute but a little blah. i paid $158 which is too much, since i haven't worn it yet, i should have waited for it to go on sale.",4,1,0,General,Dresses,Dresses +1078,45,"Cute, comfy romper!","Love this romper! once on, feels comfy like pjs but looks put together. i find bending forward at the waist helps to get it off and on. tiny complaint is that the top snap shows, even when closed. that is minor. the rest is all good.",5,1,0,General,Dresses,Dresses +1056,33,Perrfect pants!,I absolutely love these pants. they are so incredibly comfortable and fit is amazing! they look awesome with sandals and boots and will transition perfectly into fall. i definitely recommend sizing down like the other reviewers have suggested. i originally purchased my normal size 27 but they were loose after wearing a little around the house. i decided to exchange them for a 26 and they were a little snug at first but stretched out and fit perfect!,5,1,1,General,Bottoms,Pants +1056,63,Great comfy pant,"Needed a pair of grey pants to go with some of my jewel colored tops. +hei hei is my favorite brand of pants and these did not disappoint. they fit like a glove and are true to size. i don't think the picture does them justice. if you like comfort you certainly will not go wrong with these pants. you can wear them year round except in the heat of the summer. i would not hesitate to purchase them.",5,1,0,General,Bottoms,Pants +1078,30,Impossible to put on,"The bottom part of this romper is easy to put on, but the top is very poorly designed. it needs a zipper at the side or less of a yoke along the back. you have to wrangle your limbs in somehow and i was afraid it might tear. once i got it on, it fit perfectly though. getting out of it was a disaster. i had to ask a saleswoman for help and was so afraid it might rip. overall, i was crushed that it didn't work out because the print is super cute and it is very flattering.",2,0,1,General,Dresses,Dresses +1056,28,Perfect pant,"I picked these up the other day looking for a good jeans alternative. i love them. they are the perfect fit of slim but not skinny. i went with my normal size (26) and so far after one wear, they are still in good shape. a little bit of stretch, but not too much. the moss color is so crisp and goes with a lot. they will be perfect for transitioning into fall.",5,1,1,General,Bottoms,Pants +1078,26,,"So, this is just the most lovely romper. beautifully made, flowey. very comfortable, until you have to take it off. +this is the review i posted on facebook. +so, no man i know has ever ever ever experienced the abject terror, or maybe has not shared with me, that moment when you cannot get out of, because it has turned into a straight jacket, that otherwise cute romper. and again, maybe a man invented it!",3,1,6,General,Dresses,Dresses +1078,28,Whimsical romper,"A fun, casual romper. i loved the pink color (not usually my thing), which looks great with darker skin. like another reviewer said, the waist is quite small so i would recommend sizing up one or two sizes (i took a size 6 in this, but am usually a 2/4) - this will make the top part a bit blousy, but i think that adds to the appeal/ look.",5,1,5,General,Dresses,Dresses +1056,40,Not colorfast!,"I'm so bummed! i absolutely loved the pair of these i bought in the bronze color great fit, great color, so comfortable! however, i just washed them and could tell right away when i laid them flat to dry that they had lost color in areas where they had wrinkled in the wash machine. so, now they have strange lighter lines running along them. not acceptable. + +i will say that the two lighter colors may not have this issue. for reference, see my stats. i bought a 26.",2,0,0,General,Bottoms,Pants +1078,34,So dang cute,"Love this quirky romper. i'm normally a m/l or 10/12 and took a large in this. as the other reviews stated, it's a bit of a contortion act to get into and out of this but when in it fits well, is flattering and oh so cute.",5,1,0,General,Dresses,Dresses +872,65,Soft as silk,"Really, this top feels like a wonderfully expensive soft silk knit. it is just so very soft. the drape is really nice and there is stretch to it, making it very comfortable. it does have a tendency to fall towards the body, even though it's loose. so, i'd buy your regular size. + +it's a thin material, but i don't think it's sheer at all. i bought the dark red/wine color and it's so classy! i love it. this will fit taller women easily because the arms and total length are on the long side (i sup",5,1,0,General Petite,Tops,Knits +1056,41,Love these!,"I really love this pair of fitted cargos. i'm 5""1, 103 pounds and bought a 25p since that what i take in most jeans at retailer. it is quite fitted like it shows on the model so some may prefer to size down for a comfortable fit. i bought the grey color and is a lovely neutral color. love these and may have to go for another color!",5,1,3,General,Bottoms,Pants +1089,56,Great style!,This dress is timeless. so cute on and fits easily. i like that it has long sleeves yet it is a light fabric. comfortable and stylish. that is for me! i am taking it this weekend to nyc for a trip. i think i will fit right in!,5,1,1,General,Dresses,Dresses +1078,28,Love!,"This romper is fabulous! i bought it in lime, and the color is great and perfect for summer. i do agree with the other reviewers that it's hard to get in and out of the sleeves (hence giving it only 4 starts for quality#, but the struggle is worth it. the fabric is lightweight and silky, so it feels cool and soft; it feels like wearing pjs. it's also very flattering with the bow just at the waist; it hides a not-so-flat tummy. i'm 5'4"", between 135 and 140, and curvy #very busty specifically), a",5,1,3,General,Dresses,Dresses +825,26,Gorgeous print poor fit,"I saw this top in the box and was excited to try it on. the print is absolutely stunning and gorgeous, i could not wait. when i tried it on, it is such a loose top and a tad short. it was flowy all over. i expected it to be loose from the picture but not like this. it would work best on a very slender figure with white pants or leggings. i don't recommend it for a curvy figure, just not flattering. makes everything look big. what a waste because the print is so nice.",3,1,0,General Petite,Tops,Blouses +1056,28,,,5,1,0,General,Bottoms,Pants +1115,75,"Classic, upscale coat","This is a beautiful coat. no one has mentioned how beautifully the pattern matches, even across the arms coordinating with the front. i love the lower button as it allows for arm movement and contributes to the casual slouch. the only complaint i have is there is a slight dark spot above both pockets. this appears to be a sewer's mark for placement. i think i have figured out how to disguise it without marring the fabric; but second item from retailer with marks (quality control?). i am keeping th",5,1,1,General,Jackets,Outerwear +860,61,Totally cute top,I tried this top on before it went on sale but thought the price was too high. as soon as it went on sale i scooped it up and i'm glad i did. i'm usually always a small in retailer tops and this was no exception. i'm tall and thin with a large bust but this top does not pull or bind in the chest because it's cut on the bias. it is a little low but i've been wearing it for parties. it might be too low for work depending on the setting. i don't usually wear green but this is a very muted and pretty,5,1,0,General,Tops,Knits +1084,58,,"I loved the dress, but just not dressy enough after rethinking what i needed. very easy order and return. thanks!",1,1,5,General Petite,Dresses,Dresses +860,44,,"This shirt drapes beautifully. forgiving fabric in a beautiful taupe. it is a bit low cut, i wear a camisole underneath. true to size.",5,1,0,General,Tops,Knits +1008,35,,,5,1,0,General,Bottoms,Skirts +860,27,Beautiful blouse!,The green color is beautiful. i love the cut and material - it feels luxurious. definitely needs ironing before wear but is a must have,5,1,0,General Petite,Tops,Knits +1115,41,,"I love this coat but it does not work for my body type. it is a beautiful coat and of very good quality. it has a wonderful lining which is so nice to see as many of the ""coats"" retailer is carrying right now are not lined. the coat is soft and feels so good. it seems to run true to size. i would have purchased this if the button placement were higher up. the button closure is right at my hips ( i am 5'6"" for reference) and i am pretty curvy. when open, the coat looked great but when i trie",4,1,22,General,Jackets,Outerwear +961,31,Vest obsessed,"I'm in love, i'm in love, and i don't care who knows it. i bought this vest on a whim and i'm so glad i did. it's so soft and cozy. the medium brown color makes it highly versatile as well. i've tried the faux fur vests and they are too bulky for my taste, but this was not bulky at all. warm and hangs well. i am 5'5"", 135lbs, curvy/athletic frame and the small was just right. try this vest on...i promise you will be in love!",5,1,9,General,Jackets,Jackets +895,31,Loved so much i bought 2,"Not usually one for a turtleneck, even a mock turtleneck, but this so soft and did not fit super tight around the neck so i bought it. then i bought the other one because i loved it so much. my only gripe is that i wish it was a smidge longer. i am 5'5"", 135lbs, curvy/athletic build, 34c and the small fit perfect.",5,1,11,General Petite,Tops,Fine gauge +1115,26,Elegant and warm coat,Love this coat! beautiful pattern and thick enough to keep you warm with a lining inside. i am short so i got the petite and it fits perfectly in the arms and overall length. i read other comments about the button being too low but i didn't find this to be true. i liked the lower button as it allows you to show some of what you have underneath.,5,1,2,General,Jackets,Outerwear +1115,59,Beautiful coat- shedding could be a deal breaker,"I really love this coat! i usually wear a size 8 but ordered up a size because i just wanted that look. it is a very warm coat, wasn't expecting that! it is very soft and i love it! one problem, it sheds like crazy, bummer. i wore it over a black turtle neck sweater and when i took my coat off it looked like i had a white cat living in my house. my sweater was covered. i'm hoping it will shed less as i wear it longer. having said that,, i still love the look and warmth. i will just need to plan",4,1,1,General,Jackets,Outerwear +860,56,Stunning color,"This top is lightweight and flows nice. i usually take a medium or large. i ordered a medium and it is slightly large. so if you are between sizes, i would go down. i will keep the medium because it isn't the type of blouse that should hug your body. the green is stunning.",5,1,3,General Petite,Tops,Knits +794,38,"Lovely, but not one size fits all.","I love this sweatshirt. it's super chic and sexy (and for those of us that need actual support, it looks great with a strappy sports bra). that said, selling this as ""one size fits all"" is misleading, at best. i'm 5'2, ~160 (a lot of it muscle, but i enjoy chorizo), a 34ddd, and this fit me perfectly, but i can't imagine it would work for anyone much larger than a size 12. just be real -- this is a smedium. + +one star removed for the ""one size fits all"" fallacy.",4,1,0,Initmates,Intimate,Lounge +588,63,Birthday gift,"I purchased for my daughter who is mid 30's and she loved the romper. +i'm going to list her size since that is appropriate for who is wearing the item.",4,1,0,General,Bottoms,Shorts +588,32,Nope.,"The picture makes the shorts look structured. i assumed they were made of a heavier cotton material. i was disappointed when they turned out to be a light weight polyester. + +also, this runs way too big. i am busty and did not fill out the top of the xs. + +i wouldn't even buy this at the sale price.",1,0,0,General,Bottoms,Shorts +860,23,"Very pretty, very easy","This top is a very comfortable, very easy top to wear. it is perfect for laying with work clothes or styling a bit more casually for just wearing out and about. i ordered it in the light blue color and it is beautiful- very soft and feminine. the ruffle lays really well down the front, which i was concerned about because of how busty i am. i ordered a small and it fits just right. i think the knit back really helps with that. very nice!",4,1,0,General Petite,Tops,Knits +895,63,Tried to like it,I purchased the stripped blouse and it was very large around the armhole. it bulged open as if it needed a dart. i even washed it to see if it would shrink to fit and it was better but not good enough. i hate my bra showing through the armhole. it's going back. cute blouse except for that. i love sleeveless blouses with turtlenecks.,3,0,1,General Petite,Tops,Fine gauge +860,70,Not a wow,"I bought the bronze color which was nice but the cut just hung like a dust rag, no fit , no drape +very unfinished looking. though i bought it on sale on sale, it is not worth keeping. over all it was not a worthwhile blouse to keep.",1,0,0,General Petite,Tops,Knits +1084,21,Lovely but way too small,"This dress is lovely (albeit darker than it appears on the website), but i had to return. it runs way small?i usually comfortably where an l or xl in maeve (this brand), and could not even get this l on. would really only recommend for xs or s ladies (maybe m) who have the possibility of going larger. if you do purchase, absolutely size up 1-2 sizes.",3,0,16,General Petite,Dresses,Dresses +860,64,Nice fit,"I'm not usually a fan of ruffles, but this blouse has a very smooth and flowing, front. it's flattering and feminine without looking frilly. easy to dress up or down.",4,1,0,General Petite,Tops,Knits +1115,34,More gorgeous than functional,"This coat is absolutely beautiful - an instant stunner. the style is very classy and timeless. it is definitely more of a lightweight coat than true cold weather wear. yes, it does run large, but that is the cozy look of it. it is not meant to be form-fitting. my one gripe is that - especially at the price point - if it's not going to be especially warm, it should at least be otherwise functional. the coat i received has pockets cut on the outside, but they are sewn shut. a coat without pockets?",3,0,5,General,Jackets,Outerwear +1008,83,Beautiful skirt !!!!!!!,"Saw this skirt online and ordered immediately! +it is even more beautiful in person. +stunning hemline and a gorgeous shade of teal! +i ordered my usual size and it fits to perfection.....very very true to size.",5,1,2,General,Bottoms,Skirts +941,63,,"While i do love this sweater, it did not fit me as is pictured. the wrap does not lay as smooth and i had to adjust frequently when transitioning from a sitting to standing position. nice weight.",5,1,5,General,Tops,Sweaters +1115,30,Well designed,"This coat is super yummy! i'm always in need of something stylish and warm at the same time. definitely was happy with the weight and lining on this garment. + +*highlight: i always get compliments on it when i'm out.",5,1,3,General,Jackets,Outerwear +868,40,Very boxy,"This top had potential, but the cut is very boxy and not fitted at all like the front picture shows. the picture from the back is much more representative of what it looks like. i'm 5'7"", 135lbs and normally wear either an xs or s and the xs in this was still huge and boxy, but very short with tight sleeves (i have small arms so hardly ever have an issue with tight sleeves). the small fit better as far as length and and sleeves, but still very boxy. the pattern and cutouts are very cute, but thi",3,0,9,General Petite,Tops,Knits +588,35,Least flattering romper ever,"Don't be fooled by the image; unless you have a c/d chest, this romper has masses of draped fabric right around your middle--exactly where you want it least! very unflattering and rather expensive for the poor quality. back it goes!",1,0,0,General,Bottoms,Shorts +860,34,This surprised me,"I don't ever do ruffles - i'm a 36ddd - but these laid so nicely and the vertical ruffle is very flattering for a less than flat tummy. the knit back is so soft and makes this easy to wear. it will be easy to dress up with a necklace, blazer and dressy pants but it will go just as nicely on it's on with jeans for a casual look. if there had been the mint color in my size, i would have gotten it too!",5,1,0,General Petite,Tops,Knits +1115,56,,"Love this coat. it fits very well - i'm 5'6"" and typically wear an 8. it is a bit broad in the shoulders like the other reviewers mention, but that's part of its tailored look. this gorgeous coat breaks up any boring winter outfit. so happy with this purchase.",5,1,3,General,Jackets,Outerwear +1084,39,Beautiful dress but..,The dress is beautiful but runs small so unfortunately i have to return it.,4,1,10,General Petite,Dresses,Dresses +860,39,Lovely!,"This blouse is a great combination of silky and professional in the front and more casual, t-shirt like in the back. the ruffle lies nicely, and it's very feminine. i got the light blue color, and can't wait for the weather to be warm enough to wear this to work!",5,1,0,General,Tops,Knits +864,47,,The shirt cuts too high up and is very awkward looking on. sent it back. wouldn't buy even on sale.,1,0,0,General,Tops,Knits +1115,29,Gorgeous coat,"I have had my eye on this coat for a while and then my size (0) was sold out. when it popped back i ordered it. i am 5'4"" and i had wondered if i needed the petite (petite 0 was sold out) because of all the reviews i had read. however, the sleeve length is perfect. in a petite, the sleeves would be too short. i don't have long arms so i am surprised some reviewers have complained about the sleeves being too long. the button placement is not at the waist but that is the style! the lapels are long",5,1,2,General,Jackets,Outerwear +1115,31,Classic yet surprising,"I wanted this coat from the first moment i saw it in the catalogue. i tend to gravitate toward dark colors, but this looked timeless and beautiful, like something my grandmother would have cherished (and i would have coveted). i was not disappointed. the coat is carefully lined, and the mohair is divinely soft. the silhouette is not fitted, but comes off surprisingly chic. do note that this is not a coat for heavy duty weather; i've even been a bit chilly wearing it at nights in la. also, heed t",5,1,2,General,Jackets,Outerwear +895,50,Not for me ... maybe for another,"The high neck and ""square-ness"" did not work for me .. but might for someone else.",3,0,0,General Petite,Tops,Fine gauge +961,21,,,5,1,0,General,Jackets,Jackets +860,47,Beautiful blouse,"I purchased the green in xs and it fits perfect. it's very flattering. also, i purchased the blue in xxsp (only size available), but it was too short.",5,1,0,General,Tops,Knits +860,42,Great find!,I usually pass on ruffles but this top is great! luckily i walked by this in the store and had to try it on. the material is very soft and can easily be converted from work to a night out. the v-neck is flattering and the ruffles lay nicely- i purchased this in the taupe but the green is beautiful too and will purchase it as well.,5,1,11,General,Tops,Knits +1074,27,In love,"Shirtdresses are a warm weather favorite for me, and this one will surely make its way into my regular rotation. the outer cotton eyelet is intricate and beautiful. the color, cornflower blue, is endlessly flattering for many complexions. the cut is classic with the twist of the handkerchief hemline, and the length is work appropriate. per a previous reviewer, i sized up to ensure a fit across the bust and am glad i did. overall, the fit is not totally perfect on me, but it's still great and gar",5,1,0,General,Dresses,Dresses +860,35,Beautiful color and flattering design,"Beautiful color and flattering design! +cons: tends to get wrinkled and you have to be careful about ironing. i ended up buying the shirt twice because i burned a hole in it while trying to use a poor quality hotel iron. i didn't even have a chance to wear it, but i loved the shirt so much that i bought it again since it was a good sale price.",4,1,0,General,Tops,Knits +860,51,Wonderful spring top,I was taking my time with this purchase i needed a top for a pair of ombrã© silk pants that i had tailored to fit. but everytime i put these pants on i couldn't find any top to come close to match..especially since the pants are for a more sophisticated look. well this top fits that perfectly and i'm excited to pair them for a nice dinner out. plus i was equally excited when i could pair the top with my jeans and sandals.,4,1,0,General,Tops,Knits +895,26,Just what i was hoping for,"I got this top on a fantastic deal - it is comfortable, fits well (slightly large to size, but i prefer that), and really on-trend. such a great staple i bought in the other colorway as well.",5,1,0,General Petite,Tops,Fine gauge +1115,71,,"I thought this would be so clean looking, in a theory/vince. menswear way, but unfortunately the cut of the coat is super unflattering. i waiver between a 2 and a 4 at retailer and erred on the side of caution and went with the 4. the shoulders are way off the mark, sleeves are too long, and the button hits about 3 inches too low. it's just...baggy...in a way that the size itself is not the issue. alas, this is going back, and my search for the perfect coat continues!",3,0,44,General,Jackets,Outerwear +1115,35,Nice jacket but too large!,This jacket is made well and looks great but sadly i ordered the size 00p and it was still too large! if it had of been smaller i'd love it but it wasn't so i had to return it....,4,1,1,General,Jackets,Outerwear +588,25,,"I was disappointed when i got this romper in the mail. the picture looks much cuter than in person. although it's true to size, it looks pretty baggy on. also, i thought the grey (top) and blue (bottom) were too similarly colored; more contrast would have been nice. i'm returning this item.",2,0,0,General,Bottoms,Shorts +1084,33,Stunning color,"This is a gorgeous dress. the color is absolutely stunning and looks true to the photos online. the dress is a little too short and tight for a work dress, but too thick for a summer dress. it would be perfect for a date night, but since i have enough date dresses, and not that many dates...i opted not to purchase. it is gorgeous but i would suggest sizing up because i could barely zip in my standard size and the seams would definitely give after sitting.",4,1,0,General Petite,Dresses,Dresses +860,30,Meh...,"This shirt was on sale, and it was a good price. that is where the goods ended... the shirt was not flattering. i sent it back asap!",2,0,0,General,Tops,Knits +961,59,Fabulous vest!,"This vest kept catching my eye online. i was ordering moth cashmere cowlneck sweater, (which is fabulous,) when i noticed pictures posted of women wearing both the vest & sweater. the more i looked at these pictures, the more i fell in love with the vest. needless to say, i purchased the vest in my usual size xs which fits tts. it's incredibly soft & a great piece to add to your wardrobe!",5,1,0,General,Jackets,Jackets +1115,41,Unique and beautiful,"This coat is spectacular. it was love at first sight but it was only after trying it on in a store that i decided i really wanted it, even at the full price. the design is unique and gorgeous, you don't see coats like this on the street, not a cookie-cutter. it's very soft, yet warm, and has a gorgeous ochre colored lining making it very easy to put on and a standout when a bit of the lining is revealed. +it seems the fit is what most reviewers complain about and i can see that. i tried size 2 (",5,1,5,General,Jackets,Outerwear +860,39,Pretty blouse,Very cute but a little short. currently pregnant so i'm hoping it will hang better in a few months,4,1,0,General,Tops,Knits +1084,62,Too heavy,"The design is beautiful but it was thick and too warm for a summer event i was planning on wearing it to. +also, the seam below the chest was uncomfortable. +needed to return",2,0,0,General Petite,Dresses,Dresses +895,23,"Soft, cozy and perfect for the holidays","I love this piece because of its flattering stripes.i am 5' 9'', 150 lbs and ordered a medium. the large was just too big, the small too short and tight, but the medium fit well. however, the sleeves are a little large which was a disappointment, and because of this there's an awkward excess of fabric on the front next to the armpits. i also experienced that the shirt is not long enough to tuck in, how the model has done.",3,1,1,General,Tops,Fine gauge +1115,65,Fab coat!,This is a beautiful coat and the fit and weight are perfect. my only hesitation in giving it 5 stars is that the lapel's don't lay perfectly flat. i read some complaints about the placement of the button but it doesn't bother me. otherwise it's a gem and i'm going to keep it.,4,1,0,General,Jackets,Outerwear +961,40,Best thing since sliced bread,"Google ""mr burns see my vest"". because that's me wearing this vest, dancing around the house singing because this vest is wonderful. my three year old nephew declared it ""cozy"" and anytime i wear it he cuddles up to the vest. bonus! it's flattering, comfortable, warm, machine washable, and goes with nearly everything. i would like a onesie made of this material.",5,1,0,General,Jackets,Jackets +860,52,Fun andfestive,Fancy and fun. i love the green and the texture. shiny outside and soft inside. flattering fit and a little whimsical and dressy or casual.,4,1,0,General,Tops,Knits +1115,35,Stylish and strange,"As others have mentioned, the proportions of this coat are a bit strange, but i do like the oversized feel, and the low button. it is really soft and i like the beige lining, too. there's room for a sweater under it, so layered it is probably warm enough for temperatures in the high thirties and warmer. what makes me a little crazy about it--i almost returned it because of this--is that the stripes don't match up on the seams. they are slightly off and i think the coat cost enough that a mistake",4,1,0,General,Jackets,Outerwear +1115,62,Stunning coat,"I received this coat today and i'm ecstatic about my purchase. i am a true petite, and the petite large in this coat fit perfectly. i was a little worried about the sizing based on the other reviews. yes, the button is low, but that is the style. i strongly suggest ordering a petite if you are short. otherwise, the fit may be completely off.",5,1,17,General,Jackets,Outerwear +860,49,Lovely in sky blue,"I love this top which gives you the look of a blouse but the ease of a t-shirt! the sky blue color is spectacular. the details of this top are beautiful and very flattering! i am tall at 5'8"" and it was plenty long enough. i ordered my typical size s and it was perfect. it is cut to follow the lines of the body. i can't wait until the spring so i can wear it! it would be great if it was available in more colors.",5,1,0,General,Tops,Knits +860,34,Like a mullet,"I love the front of this shirt but i really should have paid more attention to the details of it. i would have realized the front and back are different materials, which i am not a fan of. i would have preferred the entire thing was made of the dressier front material instead of the jersey back. it's like a mullet, business in the front and party in the back. it's got great drape and is a beautiful blue though, so into rotation it goes.",3,1,0,General,Tops,Knits +864,44,Ugly shirt,Really unattractive shirt. nothing good i can say about it. horrible fit. i can't imagine this would look good on anyone.,1,0,0,General,Tops,Knits +794,54,Love this!,Super soft fabric! the opening in the back makes it very chic.,5,1,1,Initmates,Intimate,Lounge +860,43,Not what it appears,"I did not have the same experience as the reviewers. this shirt is not what i thought. the front is low cut and i would have to wear something under it. i could not wear this to work, and i would not wear it in public. the fabric isn't bad, but feels flimsy.the fit is tight. i wear a small, or xs in most shirts, and this was ordered in a small and it was tight. i did like the green though, and the color in person is nicer than what is pictured.",3,0,5,General,Tops,Knits +961,57,Love!,"This is even cuter in person than it is in the picture. it was hanging on a rack by the dressing room, so i tried it on on a whim and loved it! so, so soft too! runs true to size. i am 5'2 and 125 and got a small.",5,1,0,General,Jackets,Jackets +860,48,Gorgeous top!,"I fell in love with this top the minute i saw it, best of all, i was not disappointed when i tried it on. the fabric is soft and looks classy, the color is a rich and deep emerald green and the quality is really nice. you can dress it up or down depending on the occasion, this top will look gorgeous with a nice pair of jeans or a dressy skirt. true to size :)",5,1,0,General,Tops,Knits +860,35,So cute!,I just love this blouse! it fits well and is really feminine and pretty. i paired it with a skirt and received lots of compliments!,5,1,0,General,Tops,Knits +1115,62,Delicious coat!,"This windowpane coat is so striking -- and it looks even better on than in the photos. i love it!! it has great styling, including the button placement & the beautiful fall brown lining. it is quite warm over a thin sweater, the fabric is amazingly soft. i get a lot of compliments on it! two friends have already purchased it. i normally might take a 12, but a 10 was just fine. this is a great coat!!",5,1,8,General,Jackets,Outerwear +873,43,Comfortable and relaxed look,"The quality and design of this top is great and it goes well with my skinny jeans and wide-leg linen trousers. only thing is that it does need to air dry or i imagine it will shrink up which would not be good for taller frames. i'm slim, 5'8"" and got an xs and it fits just right. the carbon color appears to have hints of blue/purple on screen, but it's actually a plain dark gray.",4,1,2,General,Tops,Knits +1115,33,Great purchase,Great purchase! i bought the coat to wear to work.,4,1,1,General,Jackets,Outerwear +899,73,Pretty design,"This cardigan is just the right length, i.e. not too long as so many are these days. but the sleeves are ridiculously long. will have to shorten them for sure. fabric is definitely not heavy. pretty color. i do like it overall..",4,1,0,General,Tops,Fine gauge +1035,25,Waist gets baggy with wear,"I really liked these jeans initially, but by the end of the day the waist is really baggy. the fabric stretches with wear and takes a wash to get back to its original shape.",3,0,1,General,Bottoms,Jeans +1035,36,Comfortable and flattering,I love these jeans! i really like the way they fit and haven't had problems with them stretching out like other reviewers have.,5,1,0,General,Bottoms,Jeans +1080,55,Cute,"Cute, comfortable, easy to wear, even on my hourglass figure. can't decide the best shoes to wear with this - so it doesn't look frumpy.",4,1,0,General,Dresses,Dresses +1035,62,,Best jeans! fit is amazing! buy them; you won't regret it!,5,1,0,General,Bottoms,Jeans +862,52,Feels like comfy pajamas,"The smocking is beautiful. the fabric is soft and flowy, it is not too sheer for work. the blouse fits tts. i have this in 3 colors and take the xs and have even bought the xxs. for reference, i am a 32 b.5'8"" and 110lbs. it is a nice layering length and is not boxy. the armholes fit nicely. i wish they still had the blue.",5,1,0,General Petite,Tops,Knits +1022,47,The perfect pair of jeans,"The perfect pair. i am 5'6"". 130lb, and ordered size 28, and it fits just right. it is a little stretchy, so molds to your shape. the legs are slender, but not too fitted. no stitching along the seems makes these jeans classy enough to work with a dressy shirt.",5,1,3,General,Bottoms,Jeans +1022,46,Great fit,"Love these jeans, fit and style... the wash is a makes them almost more navy blue than blue jean color... but they are soft and fit perfectly. another reviewer described them as mid rise, but they don't fit me that way at all",5,1,0,General,Bottoms,Jeans +1022,39,Wish they were a tad shorter,"I ordered the petites hoping the length would fits ankle length but htey do go all the way down. on a muscular bottom/thighs, these a snug, on the model they look loose, but i still do like them. to wear with longer tops... i ordered 25p for 115lbs.",4,1,1,General,Bottoms,Jeans +899,41,Gorgeous knitted cardi,"This cardigan did not disappoint. i purchased the orange, which is a beautiful deep red orange that is perfect for fall. the fit is true to size and the length of the cardigan is nice, hitting at mid hip. the ruffles hang well and are not too bulky or overwhelming on my petite frame. it looks great from the side as well. i love the knitted details, the scallops, and the subtle gathers. the only flaw is that the sleeves are way too long to be practical. they come to my fingertips, so get in the w",4,1,2,General,Tops,Fine gauge +1022,39,Great color,"These were fabulous and a great color in person - true to a normal ag fit. i am 5'1"" and the regular size was too long so i am exchanging them for the petite version in the same size. really hoping they fit the same as the regular version!",5,1,1,General,Bottoms,Jeans +1035,33,Super comfortable,"These may be my new go-to pair of jeans. they have just enough stretch and softness that i can be comfortable in these all day. however, i noticed after the 2nd time i wore them, there were pills in the inner thigh area.",4,1,0,General,Bottoms,Jeans +1022,40,Great jeans but...,"I bought my first pair of ag stevie jeans at retailer six years ago and have been in love with them ever since. still love the style and fit but have never been able to find another pair made of the same jean material. my first pair are just a wear away from having holes and was hoping this new pair would be the perfect replacement but although great, just not the same.",4,1,1,General,Bottoms,Jeans +1035,58,Best jeans ever!,I was so lucky to find these jeans in store yesterday and they are the most comfortable jeans i've ever had. the fit is amazing and wish they weren't sold out online or i would buy more!,5,1,0,General,Bottoms,Jeans +1022,39,,"I just received these jeans and the fit it good. but they smell like moth balls and i have washed them twice already. i hope it will go away, otherwise i wasted $100.",3,0,0,General,Bottoms,Jeans +1022,37,,,5,1,0,General,Bottoms,Jeans +1111,31,Very romantic and pretty,"I bought this dress for my upcoming rehearsal dinner in early fall. i love the romantic lace and ivory color for the occasion. i ordered my typical size 10. it hits me right where it does on the model and it fits well on top, but the dress ""bells"" more than the images let on. i didn't want to size down in fear that the neck would be too tight, so i took it to an alterations specialist to get a lot of the lace fabric trimmed off. she took it in a little at the waste and the underarm, and hacked q",4,1,2,General,Dresses,Dresses +1022,32,Fits like a glove,"These pants fit wonderfully. perfect for casual day i had planned at a music festival when it was still a little chilly out. they fit just like my skinny ag jeans, but have a more relaxed feel in that they uber skinny. held up well all day.",4,1,0,General,Bottoms,Jeans +1035,33,"Look and fit great, but low quality","I love pilcro jeans and usually wear the stet fit. this is the first pair that i've owned that had so much stretch. they stretch and do lose their shape slightly, but bounce back after a wash. my main complaint may be stretch-related: after the first wear, the inner thigh area was covered in pills. granted, my inner thighs touch when i walk, but this has never happened with any other pair of pilcro that i've owned. i still have a pair of black stet that i bought 4yrs ago and they've never shown",4,0,5,General,Bottoms,Jeans +1022,29,Not great fit for those with long legs,"I finally ordered a pair of these jeans after seeing so many rave reviews, and when they went on sale. i'm leaving this review for women who share my body type. + +i'm slim with longer legs, and don't really have curves. i typically don't purchase jeans with an inseam shorter than 30''. for reference, i really love the fit of paige and m.i.h. jeans. + +these jeans have an inseam of 31'', which i thought would be fine. but for me, the cut wasn't flattering at all. i typically look for jeans that",2,0,1,General,Bottoms,Jeans +1111,31,Love this dress,"I am 6'2"" and athletically built, and i usually have issues with dresses being long enough for me, but this beauty has the perfect fit and perfect length. it is very flattering. the weight of the dress allows it to move with you. it is form-fitting, but loose at the same time, so your body doesn't look lost in the material. you can dress it up with heels, or wear it with boots or sandals to be a bit more casual.",5,1,0,General,Dresses,Dresses +862,43,Make it in more colors!,"This is one of the best tops i've ordered. it fits well, it can be worn dressy or casual. what is pictured is what you get. if you are considering this top, it can be worn all year round! the price is not outrageous, and the quality seems it could last for more than one season.",5,1,0,General Petite,Tops,Knits +899,57,Interesting cut,Interesting and different cut. sleeves are very long as pictured and that goes for xs----and i have long arms---hit the end of fingertips. the orange is burnt orange and on the brighter side. didn't really work for me---didn't want to be bothered with the sleeve thang.,4,1,2,General,Tops,Fine gauge +1080,34,Foiled once again by my petite-ness,"I ordered this in a small petite. with tracy reese i never really know what to expect in terms of sizing. i'm 5 ft tall about 118 pounds. i'm in between a 4 petite and a 6 petite depending on the brand, broad shouldered, slim hipped and very short waisted. i found this dress to fit a little large. it was quite shapeless on me though i did like the wide scoop neck. + +i'm sending this back sadly. quality is nice, though a bit thin for winter time.",3,1,2,General,Dresses,Dresses +1111,39,,Take a look at this dress in person or on instagram. the model photos on this website make it look washed out and bridal. irl the lace is a gorgeous ivory tone that looks great casual and dressed up. i'll be wearing this with leather and denim! i chose the smallest of my size range and it fits very comfortably. if you are busty you may want to size up. i am 135# 36c 38/27/35 and i bought size 8.,5,1,0,General,Dresses,Dresses +899,42,Bulky and itchy,"This is really cute but does run large, if your in between sizes size down. the fabric at the front is super bulky but with a smaller size could be ok? it is so itchy, imo uncomfotably so! i would have returned for a smaller size had it not been so uncomfortable, ugh why! i loved the sleeves, very cute bell. and the back hung nicely. they need to make this in a cotton, vocoder and no wool! loved bit couldnt bear it.",3,0,2,General,Tops,Fine gauge +1062,30,Interesting cut,"These have a very interesting cut. it seems like they were made for someone extremely tall. i'm about 5'5"" and the size 4 fit in the waist, but fell way below where they do on the model on the picture. it's hard to imagine who they would look good on, they're also very poofy right below the waist.",2,0,0,General,Bottoms,Pants +1022,32,I returned it,"It is a good item, just not what i was looking for. if you want a medium waist and straight at the bottom, it is great, i am more of a high waist, skinny bottom.",4,1,1,General,Bottoms,Jeans +1035,30,Perfect for petites -- please keep making these!,"I just tried these jeans on out of the box and they fit like a dream! i'm 5'0' 100lbs and the 25petite (my usual size) fit me exactly right as full-length skinny jeans. they taper perfectly. no hemming required. they are super comfy and nice and thick. they feel durable and high quality. + +two suggestions for improvement: 1) i wish is that they were a uniform dark blue wash (but the fadng and whiskering is barely noticeable). 2) i also wish they'd place the butt pockets a little higher, especia",5,1,1,General,Bottoms,Jeans +1080,19,,Great spring colors that you really can wear just about any time of year with the right foot wear! the fabric is a fluid jersey that drapes well. the neck line is a substantial scoop which is very flattering. i am very happy with this online purchase!,5,1,2,General,Dresses,Dresses +990,52,Not as advertised,"There is no back zip on this skirt and therefore it does not lay flat as it would if there were a zip. instead it has an elastic waist. it is very nice quality but i never would have purchased this skirt if i knew it had an elastic waist. i am 5'6"" and a size 6. it runs a bit large - i think this is due to the elastic waste.",3,0,5,General,Bottoms,Skirts +1111,64,Never say never....,"I did not even pause over this dress on line - a white lace dress now? well, my local retailer at lenox atlanta - which has a petites department - had this dress in the window with a jean jacket. being a lace geek, i went in to find it. i am a big fan of the feminine and dressy, dressed down. great window display idea! + +this picture does not ""do anything"" for the dress except wash out the true color. the lining is ivory - that vintage sepia photo look ivory. the lace is lovely ivory too, and the",5,1,14,General,Dresses,Dresses +1035,46,Great winter jeans,"Love these pilcro jeans, my usual size fit nice like skinny jeans. i know if i had gone down a size they would look too tight in the legs, they are not supposed to be leggings. they did not stretch out too much all day - slightly in the waist, not enough to size down. the dark color is perfect for winter! they are very comfortable!! love pilcro jeans!",5,1,0,General,Bottoms,Jeans +1028,26,I think i like these,"They fit over my fatty belly and make my legs look good. comfy. nice and not cheezy with a bunch of 'look'. more than i would normally pay, but i like them.",5,1,4,General,Bottoms,Jeans +864,35,How could you say no to this shirt?,"It's amazing! + +i did size down on this one, but i didn't have to. that depends on the kind of fit you are looking for. sizing down did make the shirt more form fitting in my chest area, but also did make the garment somewhat less comfortable in the armpit area for being tighter (but not too tight). my normal size would have alleviated this problem, but also would have left the shirt with not a whole lot of shape. i opted to have a little shape and deal with the fabric slightly digging into my",5,1,7,General,Tops,Knits +965,20,Eye spy a great vest,"I purchased this in my usual small (size 4-6) and it fits just the way it shows in the photo. it is very flowy which is th point. i wore it over a black romper and it looked great. i can also wear with jeans and a simple black tank. keep the vest open or use the hook and eye and close it up. seeing the black through the sheer white is simply dreamy! +glad i purchased it during the sale on sale promotion. it is a classic piece for sure.",4,1,4,General,Jackets,Jackets +1110,37,Pretty but photo misleading,"This is a very pretty, delicate, comfortable dress. i think it fits tts - maybe even a little large. i got the ps which is my usual size and it fit perfectly. +the only complaint i have is that the photo is misleading. on the dress i received there was nothing to hook the buttons into (no loops as in the photo) so the whole front of the dress has to be unbuttoned. i wish i was able to button 1 or 2 as in the photo.",4,1,17,General,Dresses,Dresses +1110,60,Fun and flowing,"This cute dress has a built in slip, so no need for a slip . i think it has a flattering fit and the colors are pretty! +i feel like i could wear this dress to a shower, out to dinner, or just for a fun look to shop on a nice day!",5,1,0,General,Dresses,Dresses +1110,36,Omg! so gorgeous!!,"Just buy this dress! the slip, the hem, the print. everything about it!!",5,1,9,General,Dresses,Dresses +1110,39,Easy breezy,"Love everything about the dress! my only issue is when i washed it (cold water and hand wash cycle) is shrank about a half a size. i only washed the inner slip portion and let it air dry as well. so its fits a little snug, but fortunately the outer part is very flowy so it doesn't look too tight!!",4,1,0,General,Dresses,Dresses +1110,36,,,5,1,0,General,Dresses,Dresses +1110,25,Gorgeous and sexy,"Best dress ever maeve does it again! tts and can be worn all 3 seasons here in sacramento +love it and can be worn with a denim jacket or cardigan!",5,1,30,General,Dresses,Dresses +1110,27,Love it,"Such a cute dress, i ordered the black version. i'm large busted (dd) and the slip thankfully fit (sometimes it doesn't). i'm 5' 4"" and went ahead with the regular, not petite, version and i have to say i think the petite would have been too short. the dress comes to the top of my knees as photographed on the model. highly recommend.",5,1,2,General,Dresses,Dresses +1110,59,Adorable dress!,"Saw this in the catalog and had to have it. i paid full price! while the buttons aren't functional, it is not too revealing. i work in a casual office and it will be perfectly appropriate especially paired with a jean jacket! the length is right above knee. i am 5'6"" 122# and went with the xs",5,1,2,General,Dresses,Dresses +1110,55,Simple and cute,"Can dress it up or down and still look good in it! i wear leggings under it to keep my legs warm since the material is thin and i live near the ocean. this is my new standard summer dress! i bought an xxs since i am petite weighing 95lbs and stand 5'1""",5,1,2,General,Dresses,Dresses +863,44,Hits the mark,This tshirt hits at a great length not too long. so it doesn't make me feel top heavy! but it flows enough to hide any imperfections ! i ordered a medium.,5,1,1,General Petite,Tops,Knits +1110,30,Cute and comfortable,I just received this dress after ordering it online and i'm already in love. the fit is perfect - i tend to have issues with bust areas of dresses being too small and this fits just right. the material is light and perfect for southwest florida.,5,1,3,General,Dresses,Dresses +1110,38,"Pretty, but shapeless","This dress is pretty, but there were a few things i disliked. + +the overdress is fairly shapeless; however, the slip is fitted and well above the knee. since the overdress is sheer, the shortness of the slip is visible the fabric of the overdress felt rough on my skin. i did like the contrast of textures between the overdress, the slip, and the lace. finally, as other reviewers have shared, the buttons are not functional, and the v-neck of the overdress is deep. + +i recommend trying the dress",3,0,0,General,Dresses,Dresses +965,48,Flowy and fun!,"I recently purchased this vest and unlike other reviews, i found it to be tts. with that being said, i am typically a medium in retailer tops or 8/10. i have broad shoulders (5'9, 145lbs). i purchased the medium and it fit perfect through the shoulders. it is meant to be flowy and gives some volume in a good way. if that's the look you are going for this is the top for you. had i gone down a size, i would not have been able to hook the top. i am going to be wearing this with blue jeans and white s",4,1,0,General,Jackets,Jackets +1110,33,One of my favorites!!!!,Absolutely love everything about this dress!!! i'm 5'9 138lbs purchased a small. hits just slightly above the knee... has a fun flow to it! absolutely love the chest detail! cute buttons! and the embroidered detail is amazing!,5,1,0,General,Dresses,Dresses +1110,53,,"So cute! i get tons of compliments whenever i wear it. very comfortable. i ordered a petite l and it's a little big. i usually buy the petite m, but due to the under slip i wasn't sure.",5,1,0,General,Dresses,Dresses +1110,37,Hand wash slip,"This dress is wonderful! word to the wise, it says that you can machine wash the dress on cold, which i did. the dress came out fine, but the slip is now basically a shirt. there are no washing instructions on the slip, but i assumed it would be the same. it is not. it still looks ok under the top part, but i will have to wear a half slip under the bottom.",5,1,0,General,Dresses,Dresses +1110,45,,This is a great dress! very different and light but cute details,5,1,0,General,Dresses,Dresses +1110,60,Cute but runs large,"This dress is quite adorable - the pattern, slip and bottom lace trim are very nice. i found that this ran large, particularly in the bust. i am a 34c and felt that the xs was still a bit too big. i decided to pass due to the fit and the price, but i will re-visit if it makes it to the sale room. also note that the front buttons are purely decorative, and can't be buttoned to tighten the top up.",4,1,1,General,Dresses,Dresses +1110,41,Lovely dress!,"Love this dress! bodice and lace at bottom gives is a cute layered look. there are buttons on the front (see pic), but it does not button up. i'm a bit on the ""hippy"" side....physically hippy, that is...and this dress did a great job of downplaying my hips. ;) i'm 5'4"" and this dress hit just above my knees (a bit longer than on the model in the photo). would look cute with a jean or military jacket! i am wearing a small. 5'4"", 130lbs, 32b chest.",5,1,3,General,Dresses,Dresses +863,42,Gorgeous!,The cut is perfect and the rose color is so pretty! it fits like the typical left of center sizing. i wish it came in more colors!,5,1,2,General Petite,Tops,Knits +863,47,Perfect tee,I love this shirt so i bought both colors. i wish they had more colors! fits great and very comfy.,5,1,0,General Petite,Tops,Knits +817,49,Flight pattern tunic,I adore this top! it's comfortable and cute. the sleeve length is great for wearing bracelets. it's well-made. just perfect.,5,1,1,General Petite,Tops,Blouses +863,65,Don't recommend,"This t is a beautiful color, and i wish it had worked. it is quite flimsy, however - very thin cotton fabric, without the nice drape that would have made this look good on. i also think it should have been cut a little longer; it flares out right at the hips,so instead of covering them, it highlights them. i'm disappointed, and am returning it.",3,0,1,General Petite,Tops,Knits +1110,35,"Fun, feminine, versatile","This dress is my new favorite! the style is trendy and feminine while forgiving in the tummy area without looking maternity or too baggy. it is so versatile because it can be dressed up or down and it's a great transitional dress b/c once it cools down, it will look great with a denim jacket, cardi, booties, etc. i normally wear a m, sometimes a l (i'm 5'7"", 36dd) but the m fits great. the slip is a little snug across the chest but i definitely couldn't size up b/c then the dress would be too bi",5,1,0,General,Dresses,Dresses +1028,42,Perfect high rise,"Citizens of humanity jeans are excellent!!! i prefer high rise & this brand is my favorite. i like the clean lines & plain design. the material is comfortable- substantial with just enough stretch in the material which makes them super comfortable. i'm not constantly pulling these jeans up, they hold their shape really well & wash well too. they run tts.",5,1,4,General,Bottoms,Jeans +589,35,Just what i wanted,"Could not wait to try this on when it arrived, jumpers are tricky in the way they can ride up and become unflattering. not the case here, i usually wear a size 8 but i decided to order a size down for a size 6. i am 5'5 and 150 lb. being the fact that i am in the midst of losing weight i thought i would rather it be more snug and this really was just right. the pockets make it casual and cute, while the print and bare shoulder make it fresh and chic. you will love!",5,1,8,General Petite,Bottoms,Pants +1110,59,Lovely but not quite as pictured . . .,"This is a charming dress, with lots of quality touches, and something which is easy to wear and appropriate for many occasions. however, the dress i received wasn't quite like the dress pictured in the catalog and main website photos. the bottom buttons of the over-dress do not have matching holes, so you can't button it. this makes the v lower, and the bodice looser. it is like the photo with the brunette model on the website, rather than the primary photos with the blonde lady. personally, i w",4,1,2,General,Dresses,Dresses +1110,34,New go-to dress,"There aren't enough great words to describe this dress. tried on the black one in store yesterday and knew immediately i was going to purchase. everything is perfection - not tight slip underneath that even has the strap snap closures to hold it in place at the shoulders, not too low cut, hits right above knee so not too short, light weight, flattering, etc!! and machine washable! can dress up or down. could even wear to work with a jacket or cardi. can wear all seasons - can't wait to pair wi",5,1,9,General,Dresses,Dresses +863,52,Love this top!,"Great pop of color (i purchased the rosy color) and great piece you can add layers to. it drapes beautifully, may run a tad larger, but not enough to size down. light weight, so wear alone for warmer fall days or as we get into spring, and with a scarf and jacket for cooler days.",5,1,0,General Petite,Tops,Knits +1110,26,"Beautiful dress, odd fit","I really wanted to love this dress! the quality is great, and the overall look is so lovely. however, i tried two different sizes (petite s and petite xs) and it still looked too baggy/big. the upper part is wider than it appears. also, the photos shows the bottom two buttons buttoned up. however, the dress doesn't actually have any loop holes or button holes, so it just hangs open. very sad to have to return both dresses.",3,0,3,General,Dresses,Dresses +1110,50,"Love, love, love!","I purchased the mauve dress from an retailer store last weekend during their 20% off sale. i absolutely can not say enough great things about this dress. it fits beautifully... the pattern on the material is so pretty and feminine. once i got home from the store and tried the dress on again, i immediately purchased the black one also. i had to have it in black too! such a great dress to wear to parties, date night, friends outings.. we are going to california in september and will be wearing these",5,1,1,General,Dresses,Dresses +817,41,Little pricey,It lays very nicely on your body. very flattering!!!!,4,1,1,General Petite,Tops,Blouses +1110,43,Great transitional piece,"This is a great dress from moving to summer into fall. it's great right now with the warm temps, but a throw on a jacket and some booties and you have a fall outfit. it's very comfortable also. there is a slip underneath which is what you see with the buttons open in the front. i wish the slip was a little longer and the dress is see through. maybe, you can adjust it at the straps some. at any rate, it's a nice dress and i'm keeping it.",5,1,0,General,Dresses,Dresses +1110,39,Beautiful!,"Just as the others have reviewed, i agree! this dress is flowy and so feminine. i got it today and i am wearing it now! so light! i usually wear a large or a 12 in dresses. i am pear shaped. 36b bust and large hips. it is flattering and feels great on. the slip underneath fits perfect on me. grab this before it becomes iso!",5,1,3,General,Dresses,Dresses +1110,37,Sigh...so dreamy!,"I caught a sneak peak of this beautiful dress on a local retailer instagram page...and i was so excited when it arrived at my store. i love this dress! i went with the black because i loved how bold it was. it's ultra feminine and flowy. the slip underneath has the prettiest embroidered print and the overlay is light and airy. the bottom is hemmed with a little lace peekaboo and it is wonderful. i tried this on in both a l and an xl. the xl fit well but the dress was a little long on top, so i wen",5,1,22,General,Dresses,Dresses +1110,39,Time machine dress,"The print, layers and fit of this dress remind me of the 1990's but in a good way! the outer dress is voluminous and flowy, so i understand why some reviewers feel the dress runs large. the embroidered slip is tts and quite the cherry on top. i really appreciate that styling detail. 140# 36dd 5'3"" and i chose medium regular length, not petite since i'm older and wanted the length.",5,1,1,General,Dresses,Dresses +1110,46,Violetta dress,"Thin for this late in the season, but the colors are so pretty. i'm going to layer it over a long sleeve t, top with a cardi and pair with leggings. runs large. love the the unconnected slip. 5 stars.",5,1,0,General,Dresses,Dresses +1110,67,So pretty,"Got this dress in the mail today, and it's definitely a keeper. the material is high quality, and i can see wearing this dress on all but the coldest days of winter. it'll be great to wear today in 90 degree weather, and with a cardigan and booties, it will easily transition into cool weather. the colors, patterns, and lace are all just beautiful. for reference, i always order xs for loose fitting dresses, and a size 4 for close fitting styles. the xs in this dress is perfect.",5,1,3,General,Dresses,Dresses +1110,41,How can i add length so i can keep?!!,"Love this dress! it's a little roomy on me & i maybe should have gone with the medium. i'm 5'11"" and about 165 so usually wear a large. my problem is with the length. i knew it was a gamble, but the other color images on the 5'10"" model gave me the hope that the dress would come close to being near my knees ... nope. it's a good 6"" above them, and i couldn't wear this to work. so being the crafty sort, i'm pondering adding a few more lace layers to the hem.",4,1,3,General,Dresses,Dresses +1110,44,Great maeve dress!,"I started buying maeve dresses about five years ago and love every last one that i own! this one is no exception. i bought it in black last week (size s) for my birthday treat, and it was so wonderfully light during the week of 99 f heat in the district. it's feminine and delicate in appearance, yet the material is of good quality and super comfortable. it's awesome, just a perfect summer and probably fall dress.",5,1,2,General,Dresses,Dresses +1110,29,Love/hate relationship with this dress,"I love the look of this dress. the fitting could use some work--the top layer could be slightly more fitted--but overall it looks adorable. as other reviewers have mentioned the top does not have any button loops. + +my biggest issue with the dress is the quality of the material. one time through the wash on the gentle cycle and the slip underneath has shrunk at least a full size. for the price of this dress, i don't expect disposable clothing. if i had known it would shrink, i would've hand wa",3,1,5,General,Dresses,Dresses +965,48,Gorgeous eyelet,"I must be the lone dissenter, but i am in love with this piece! a dark cami underneath really make the eyelet pop. i probably would not have liked it if it did not have the clasp, as it does run wide. however, with skinny jeans or slim pants, this works b/c it's loose in the right ways. it may not be for everyone, but it's one of my faves right now.",5,1,1,General,Jackets,Jackets +1110,57,,"The essence of femininity. simply beautiful. if you begin with the pattern of the dress, you become drawn to it. then, as you look closer and see the slip with its creamy detailed embroidery, and immediately you see how the dress opens at the bodice with tiny, set buttons, you soon realize, that's not all... the bottom of this fine piece of art continues with soft, delicate, chiffon trim with a bonus layer of the most beautiful lace to finish it off. i bought it on sight and just love it. i was",5,1,27,General,Dresses,Dresses +960,34,The perfect summer blazer,"This is a must have for summer. i'm always hot but sometimes a sweater just doesn't look right. the short sleeves are just what i've been looking for. every jacket i own runs smaller on me around the bust and arms, so i think for everyone else, your normal jacket size should be perfect.",5,1,9,General Petite,Jackets,Jackets +1037,29,Love these (vegan)leathers!,I bought these pants to wear while riding on the back of my husbands motorcycle. i wanted something that was more chic than typical motorcycle women's clothing and these were perfect. they block the wind but are stretchy on the back side so they are super comfortable to wear all day. i also wear these to work on fridays! i bought a size 28 and they fit great. i usually wear a 6 in us sizing.,5,1,0,General,Bottoms,Jeans +1087,38,Versatile dress,"Great dress, can be styled up or down for more casual look. it ran a bit large for me, especially up top; the armholes were droopy unfortunately. i ordered the s but returned, the xs will hopefully be better. for reference, i'm usually a s, 5'5"" 127lb.",4,1,1,General,Dresses,Dresses +1081,52,Versatile dress,I ordered this dress in two colors and i'm happy that i did! very cute and great fit! flattering too!,5,1,0,General Petite,Dresses,Dresses +829,44,,"Love this top for work. loose, flattering and enough detail to be noticed. fits tts and goes with everything.",5,1,0,General,Tops,Blouses +1081,49,Just perfect,"Bought this in the white in the store - came home and ordered the blue - wish they had my size in the orange. +maybe this is enough said? this is so comfortable, so well made, so easy to wear - might be the perfect dress ever.",5,1,2,General Petite,Dresses,Dresses +1087,47,,"I typically wear a 4 in dresses, and sized up to a 6 because of the other reviews. i'm bigger on bottom than on top, and the 6 fit me fine (snug, but fine) on the bottom but the top was a bit big. there was too much material in the arm hole area. it's very pretty and good quality, but not a good fit for pear-shapes.",4,1,0,General,Dresses,Dresses +1037,60,Not worth it for the price,"They are beautiful in person, until you put the on. the fit was a bit weird; tighter in the waist, roomy in the crotch. the fabrics work 100% against one another. the vegan leather, especially the detail pieces at the outer side seams, is too stiff. the back is thin and has far too much elasticity. at $150 i passed. these will only enter my closet on sale.",3,0,0,General,Bottoms,Jeans +1037,62,Realllllly wanted to love,"I am a huge fan of pilcro pants, and was so excited to see them make a pair of vegan leather pants. the idea is great - leather in the front, fully stretchy fabric in the back to give a fitted but comfortable look. however, i couldn't get past the way the seams and leather felt on my knees - really stiff and uncomfortable when you start walking around (can't bend the leg all the way; weird creasing and bunching behind the knee). the fit was perfect everywhere else. sadly, these had to go back :(",3,0,1,General,Bottoms,Jeans +829,61,Cute top,I liked this top but found it to be a little dowdy. fit was slightly boxy and not a good look for me. may look better on a different body type.,3,1,0,General,Tops,Blouses +1081,20,,"Absolutely love this dress!! this was my first purchase from this site and as per the usual, i was worried about the sizing but the fit couldn't be better. definitely won't be the last. material is heavenly and has a double layering that was a nice surprise. very warm and soft. high quality stuff. i could have gotten my usual size in petite, but i didn't want it to be too short. i'm glad i did. this is the perfect dress for work.",5,1,0,General Petite,Dresses,Dresses +1087,26,,"This dress is everything i hoped it would be. it is soft and comfortable, and flattering even though it's not tight fitting. true to size as well.",5,1,0,General,Dresses,Dresses +1037,46,Love these pants but they broke my heart,"They are beautiful! they fit amazingly! they ripped on a seam the third time i wore them. i kept wearing them, because again, the fit! the style! alas, about the fifth time i wore them, the other leg ripped at the knee seam. they are just totally falling apart. it's so very sad. i would wear them alllll the time if they could bear it. i'm actually thinking of buying another pair because i love them soooo, but it would likely be wasted cash as i believe there is a real manufacturing issue here. w",3,0,1,General,Bottoms,Jeans +1037,38,Vegan pilcro,I initially walked right by these pants when i saw them on the rack. then i saw them on the fitting room attendant. they looked amazing . i ended up purchasing them and i love them . the great thing about them is the the leather is only in the front which makes it great for moving around and sitting down (the back is kinda legging like). i had to size down in these.,5,1,0,General,Bottoms,Jeans +1037,34,Not flattering for my body type,"I really wanted to like these, but they just didn't look right on my 5'3 sorta bulky frame. i have big thighs and always feel out of place wearing leggings, so maybe i'm just not the right target for these, but they looked so cute and i wanted to give them a try. the waist was too high for my liking, and the leg openings were too big and gave me a stumpified look.",2,0,1,General,Bottoms,Jeans +829,53,"Again, my bad for not looking at description...","I did not like this top at all-but had i looked at the fabric prior to purchasing i would not have. it is polyester-i thought it was cotton so there's the first reason i didn't like it. secondly, there is a piece of fabric behind the laces, presumably for modesty that refuses to lay flat. it wrinkles up behind the lacing, making it appear as if one is wearing an undershirt or cami that is not appropriate for the top. it is too long for me, the top hitting at top of thigh. +this top is just reall",2,0,1,General,Tops,Blouses +1087,22,"Great dress, but not my style","I am sadly returning this dress, but i would recommend it! it is soft and i loved the design of the dress. very comfortable. the only reason i am returning it is due to my figure. it is a fitted dress and was a little more revealing that i would have liked.",4,1,0,General,Dresses,Dresses +1081,48,Super flattering fit n'flare,"I think this is a really flattering dress. i like the length of the sleeves (they're not long like in retailer's very first navy photo but all the other pics are accurate in my opinion.) in my photo, i'm wearing an xs regular so i'd say it's shorter than 35"" because i'm only 5'3"" and it's above my knee. it may run slightly small because i'm a 34aa, with a 26"" waist, 34"" hips and usually wear xspetite in retailer but this xs fits me fine (although to get it to be fitted at the waist, xxs might be bet",5,1,37,General Petite,Dresses,Dresses +1037,49,Love!,I absolutely love the look and fit of these pants. what is even better is that they don't stretch out while wearing them. i will get a lot of use out of them!,5,1,0,General,Bottoms,Jeans +1103,62,Looks like lemonade and ice cream!,"Such a pretty dress and the colors are just so summery. it's very flattering on but i will have to return it unfortunately. i ordered the 6p because the 8p was sold out and although the top fits quite well, its just too snug on the hips. if the 8p was available i would definitely exchange it for that.",4,1,3,General Petite,Dresses,Dresses +829,32,,,4,1,0,General,Tops,Blouses +1037,41,Unique black pants,"I tried it on and it fit like a glove. it was a little strange having a different fabric on the back, but it worked and i am keeping it.",4,1,0,General,Bottoms,Jeans +1037,34,Great pants with a catch,"These are such a great alternative to actual leather pants, they have the perfect amount of stretch and breath-ability (i've always found leather pants to be too hot) . got the holly color, unfortunately the p size was sold out but as another reviewer noted, these are easy to roll up. i noticed some of the complaints about quality and these not holding up, but given the use of two different materials, pu and a stretchy material, i think it's only natural that these would tear along the seams aft",5,1,2,General,Bottoms,Jeans +1087,25,Simple and versatile,Love the versatility of the dress. very easy to dress either up or down. i've been able to wear it out for a casual day with a denim jacket and booties (just like the stock photo!) or even wear it to work with a black jacket and flats. the color is beautiful and the material is very soft and comfortable. absolutely love the cut and design of the dress on top. only thing i would mention is that the dress is a bit form fitting than expected. it definitely hugs your curves.,5,1,0,General,Dresses,Dresses +1037,22,Must have but....,"Absolutely love these pants! i have had these pilcos for about two months now and it has been a staple in my fall wardrobe. i have worn them at least once a week. the only downfall is the button has already fallen off and the seam in the knee has recently torn apart. given the leather, i'm not sure if they can be fixed. these are fabulous, but the quality is just not there. very disappointing.",3,1,1,General,Bottoms,Jeans +1103,62,Rehearsal dinner dress,"I bought this dress for a dinner after my daughter's wedding rehearsal. it is perfect. it is dressy enough for the occasion. it also has a casual look to it. i think it is very versatile. i fell in love with the colors, material and the quality. i am more excited about this dress then the dress i am wearing to the wedding. buy it you'll love it.",5,1,0,General Petite,Dresses,Dresses +1103,43,,,5,1,0,General Petite,Dresses,Dresses +1087,38,,,5,1,0,General,Dresses,Dresses +1081,52,Too short but otherwise great!,"I really liked this dress when i tried the navy on in the store. i am 5'4"", 140 lb. and the medium fit me really well. unfortunately, i am not comfortable showing a lot of leg so the dress was just too short for me. if it had come to the tops of my knees i would have gone for it but it was well above my knees. the fit and color were great though, i loved the neckline and the material was very soft and comfortable. i tried the large but, while it was a little longer, the larger size made it lose",4,1,6,General Petite,Dresses,Dresses +1081,53,Great casual dress,"I'm so happy i decided to order this dress! i am 5'3"" 120 lbs and normally buy xs petite, but the comments said the dress is a little short so i went with a xs regular in navy. i am glad i did -- it hits me about 2-3 inches above the knee. the material is very soft and seems well constructed. a bit thicker than your average summer dress but i like that! very flattering overall, and for the price it's a great steal!",5,1,3,General Petite,Dresses,Dresses +1037,41,,,3,0,0,General,Bottoms,Jeans +1037,55,Favorite pant---until they ripped,"As a tall girl, i was thrilled to see that these pants come in longs! they are amazing for dressing up (or sassing up) and outfit. i anxiously anticipated their arrival and wore them the very first night i bought them. however, as someone previously mentioned the quality is poor. after wearing them to they symphony, the knee tore while i was sitting in my seat! i really don't see a way to avoid this from happening since i had not moved. i'm sooo upset because i absolutely loved these pants!",2,0,5,General,Bottoms,Jeans +1081,32,Cute basic --- found it to be tts!,"As you can tell from the pictures, it's nothing fancy; i think this dress will get a lot of wear for everyday living. simple and comfy. reviewers said it ran pretty small so i sized up but wished i hadn't. it is not very ""fit",4,1,0,General Petite,Dresses,Dresses +1081,51,Perfect grab & go!,"I bought this dress in ivory and then bought the navy on sale, i loved it so much. i'm 5'4"", 117, and the petite medium was perfect. love the kicky flare, and the lining makes it so comfortable. an effortless, fun dress - perfect for hot summer lunch.",5,1,1,General Petite,Dresses,Dresses +1037,43,Fun and versatile,They are very comfortable and have kept their shape after a couple of wearings. the pants can be used for informal or on the dressier side. the spandex in them is contributes to the comfort.,5,1,0,General,Bottoms,Jeans +1081,25,Perfect travel/summer dress,"I bought the navy color in xs petite. i'm 5'1, 115 w/ athletic build. i thought the fit was perfectly fine. with a belt, the dress is about 3 inches above my knee. the dress is made very soft/breathable fabric and has a ""slip"" underneath. bonus: the dress is made in the usa! i'll be buying the white and red once they're marked down a bit more. very satisfied with this dress.",5,1,4,General Petite,Dresses,Dresses +1081,61,The regular size fit my petite frame well,"I purchased the navy size small and was delighted with the fit. the waist line is perfectly proportioned for a petite. i think this means that the waist line will be high on a woman who needs regular sizing. i like the lining, it adds a substantial look to the dress.",5,1,4,General Petite,Dresses,Dresses +1037,35,Fell apart after 3 wearings,"I loved these pants the minute i put them on, and was so happy i'd ordered them. but i wore them only 3 times - and only at dinners with friends, not even for full days - and the seams on both legs ripped open! i think the faux leather just isn't equipped to handle the stretch of fitted leggings. i was super-bummed about this, because these pants are so insanely cute. but if they can't hold up to a few casual wears, then there's just no way... thankfully retailer was true to their brilliant custom",1,0,1,General,Bottoms,Jeans +1103,39,Tts or runs big,"Very beautiful sheath dress that will be perfect for summer weddings and spring events because of the delicious sorbet pallette. it's a substantial weight fabric that will nip you in and give the illusion of curves where none exist (in a good way.). pattern is actually knit into the fabric not printed. size 8p is the smaller of my size range so for others who are slender on top may want to size down. if you have prominent hips, stay tts or size up. if you are very busty, it's tts or size up",5,1,3,General Petite,Dresses,Dresses +1037,42,Must have,I love these pants. i have them in the black and green. they are comfortable and look great on my curvy figure. i am 5'2 120lbs and got the size 27,5,1,0,General,Bottoms,Jeans +1171,30,Fun bottom,Fits true to size with good coverage. stayed put when i was in the pool.,5,1,1,Initmates,Intimate,Swim +829,65,"Light, airy & pretty","I said this ran large because i bought a 16 and i normally need a size 18 (i'm busty) if the item doesn't stretch. but, a size 16 fit me. it's more straight and less blousy, but it does fit. so, if you like your tops a little less full of fabric and more tailored but loose, imho you can size down. + +the fabric is rayon/polyester that's light and cool. it is semi-sheer but a white bra or nude bra would be fine. the top has a double layer in front. one solid and the over-lay of the embroidery. th",5,1,0,General,Tops,Blouses +1081,52,Simple yet sexy and feminine,"I bought this today in navy and loved it the second i put it on. it feels great on, is well made and flattering! you can wear it anywhere and look pulled together. much cuter in real life too. it does run a little small. id go up a size if you're getting the white so it won't cling too much.",5,1,3,General Petite,Dresses,Dresses +1037,48,"Love, love, love!!!!!",Received these in the green holly color (beautiful color) for christmas,5,1,0,General,Bottoms,Jeans +1081,24,,"I bought the navy version of this dress in the store and thought it looked pretty nice. i am 5'10"" and 145 pounds, and the small fit me great. i think that the dress looks exactly like it does in the pictures, at least for the particular color that i bought; the length comes about mid-thigh, as shown, and i would definitely have worn it to work. after looking in the mirror for a few more days though, i decided to return the dress, because i didn't feel like the shape of it was especially sensati",4,0,7,General Petite,Dresses,Dresses +1037,52,These pants are to die for!,"I have thicker thighs and don't usually find that i can wear this kind of thing. these, on the other hand, are hot, hot, hot and are even somehow slimming for my thighs. i just adore them. i'm waiting for the green color to go on sale so i can buy them too!",5,1,0,General,Bottoms,Jeans +1171,26,Love retailer bathing suits!,Perfect fit and i've gotten so many compliments. i buy all my suits from here now!,5,1,0,Initmates,Intimate,Swim +1081,52,Runs really small,I'm 5 feet 120 and hourglass figure. i literally burst out laughing when i opened the package. i ordered my usual small petite. the dress is so short and small you would have to be 4 feet 90 pounds. returning.,2,0,57,General Petite,Dresses,Dresses +863,64,Comfy and cute,I have this top in 3 colors and am waiting for the black to arrive. very soft on the body. we live in fl so lightweight is appreciated. stylish fit that is not ordinary. great colors. will pack well and can be dressed up with a scarf. sleeves run long.,5,1,0,General,Tops,Knits +1110,51,Pretty but cheaply made,"So i have had to return this once so far because the stitching ripped out when i sat down. the little slip thing that goes underneath if cheaply made. i really wish this were just lined dress. i wear it with a blank tank top and leggings underneath. not worth the money, but i needed something to wear that was transitional.",2,0,3,General,Dresses,Dresses +498,48,,,2,0,0,General Petite,Intimate,Lounge +863,37,,Love this top! i bought it in 2 colors; it's a great twist on a basic tee. love love love!,5,1,0,General,Tops,Knits +1110,36,Fun and flowy,"I am 5'0"", 109lbs, 32d, and the 0 petite fit tts. the fabric is comfortable and the dress well made. my only complaint would be that the picture of the model and the dress i have in my possession do not have the same coloured slip. my dress arrived with a nude slip. i was a little confused at first but when i tried on the dress i realized it was not a bad thing. the lace actually stands out. all in all, a greal buy. discounts make it worth it too.",5,1,8,General,Dresses,Dresses +1036,45,Pricey but bam!,"These jeans look amazing on! hug every curve in just the right way....the long length with flare...add a platform heel and i look like i have legs for days!! and my booty will definitely turn some heads! total splurge but for a great pair of jeans, totally worth it. ordered my usual size 27 and they fit like a dream. hope they don't stretch out after wearing a few hours. the amount of stretch feels nice, so i think they'll continue to hug your body. if you want 1 pair of flares in your wardrobe.",5,1,1,General Petite,Bottoms,Jeans +881,32,Flattering and stylish,I love the crisscross detail that makes this a stylish and also flattering piece. lovely soft material that drapes well and hides imperfections. wish it came in more colors!,5,1,0,General,Tops,Knits +1110,39,Such a disappointment!,"I fell in love with this dress but when i received it in the mail, i was really surprised to see that unlike the picture online, the slip underneath is a nude color. it fit well and i decided to keep it. i wore it for the first time today and felt great in it. i was driving with my son in the back seat, i turned to hand him something and the entire right side of the dress (where the crocheting is) ripped open!! i cannot believe how poor the quality is at this price!",1,0,2,General,Dresses,Dresses +863,47,Cute and comfy tee,"I have a few of these tees in the short sleeve version and found myself wearing them pretty often so i jumped on the long sleeve option when it went on sale. i bought the black and red (which is more of an orangey red). i love them as well! this top drapes nicely and has a little more style than just a plain tee. the material is thin and while that is nice for breeziness sake, i don't anticipate this will last that long, but thats cool...its not a real investment piece but rather a cute casual t",4,1,0,General,Tops,Knits +498,44,Love the petite!,"This is the perfect tank. it's super soft, great colors and with a shape that allows you to wear a regular bra. best of all, it was offered in petitie sizes. for me that means i finally have a tank that doesn't gap at the arms or scoop too low or flood me with excess length. thank you retailer for remembering us petitie girls with this wonderful tank!",5,1,0,General Petite,Intimate,Lounge +498,36,Soft,These tanks are very soft. i have two black and one coral. i had to return the white as it was see through. they do shrink in the wash even without drying all the way and on low heat so maybe size up if you're in between sizes. i recommend these tanks for sure,5,1,0,General Petite,Intimate,Lounge +863,66,Nice tee - flattering!,"Love the cut of this t-shirt. just loose enough but not big and boxy like so many other tees but not fitted either. nice weight, the hemline is interesting...overall happy with it. just hope it doesn't shrink!",5,1,0,General,Tops,Knits +975,39,Trend of he seson,"I was surprised to find this jacket on sale and i don't mind :) it's a trend of the season and i absolutely don't mind to look like a mattress or wear robe. the garment runs large so i wear usually 6 and have to get xs. i am 5'6"" 146 lbs usually wear s/m in jackets. it hits me 2 inches below my knee. i love it.",5,1,2,General,Jackets,Jackets +835,39,Wasn't sure at first,"But when i saw this top in person, urged by my stylist when they got it in, i decided to try it on. they had xs in store, my former normal size (xs or xsp). that was too big though. not being sure how the petite would look, and not sure if smaller would work, i decided to order all three: xxs, xsp and xxsp! + +verdict on size: xxsp was pulling at the arm holes, kind of small there. xxs regular was almost right, but arm holes were a little high, not as comfortable. +xsp ended up being the right c",5,1,0,General,Tops,Blouses +1110,38,"Beautiful, but...","I loved this dress and ordered it online. i found the colors to be a bit more muted than i expected, and unfortunately the fabric quality seemed low considering the price point. ultimately i decided to return it as i couldn't justify spending $178 on a dress that didn't seem as well made as i would expect from retailer.",3,0,4,General Petite,Dresses,Dresses +863,46,Sloppy looking but pretty colors,"I ordered this style in the blue, red, yellow and white for the sale price. they all fit true to size, matching the model's photos. but, the quality is poor. the hems are frayed, they wrinkle easily, they're just a mess. the model's photos show a messy look so you know what you're getting. the positives are the colors. the blue is especially gorgeous. the yellow is like a spicy mustard shade. they are all comfortable. just sloppy looking. the sale price matches the quality. they do stretch out t",2,0,1,General,Tops,Knits +1095,63,,"Beautiful spring dress. perfect for luncheons or any occasion. so very pretty, lovely fabric and good fit. you will definitely feel pretty in this dress. y daughter is 5'3"" and the length was perfect.",4,1,0,General,Dresses,Dresses +863,45,,,5,1,0,General,Tops,Knits +498,34,,,4,1,0,General Petite,Intimate,Lounge +863,41,Sloppy top,"I wanted to like this top, especially because of its comfortable material and color, but the asymmetrical shape didn't hang well on me. it also runs big - i got a small, and although the bodice fit okay, the sleeves were long, and the bottom of the top looked mishaped and dumpy. this top will be going back.",2,0,0,General,Tops,Knits +863,45,"Versatile, everyday tee---dress up or dress down.","Though i am a true size medium, i do not like fitted tees, so generally i buy a large. based upon other reviews, i decided to give the medium a try, hoping that it would be loose enough. though i am on the cusp of petite (5' 3 1/2""), i decided to go with the regular medium since i prefer longer, tunic length tops. the medium does run big, imo, and fits me like a large would. it is loose, flowy and long enough to cover my entire backside. the sleeves are long and i do have to roll them up, perhap",4,1,0,General,Tops,Knits +1110,53,This is polyester...,"First problem-i would not have ordered this at all had the description been correct. the fabric description is cotton which the dress is most certainly not. secondly, it has a really funky, cheap, unfinished, raw-hemmed slip which is simply not fitting for the dress. the keyhole in the front is super long-again, does not seem to fit the dress. i am not happy with this piece at all but it did fit tts. length is just above knee. i am 5'5"" 142 lbs 34d and the six was a good fit. sending this home t",1,0,0,General Petite,Dresses,Dresses +863,35,Completely disappointed!,"I never write reviews, but i just purchased this top at full price last week in the store. it's not a have to have top just to look at it, but once i put it on i had to have it. it's extremely comfortable and i am able to wear it while running around with my boys and still feel as though i'm put together. + +i've worn this top now 2 times and after the 2nd wear i have 3 holes in the area where the waist line of my jeans sits. the first time i wore this top it was for only and hour or so. what a",4,0,5,General,Tops,Knits +498,43,"Great colors, wide straps, sheer","I ordered the tangerine color of this tank. it's a great color, slightly heathered. + +what i like most about this tank are the riders straps and the depth of the scoop neck. it allows for a normal bra and could be dressed up or down. + +i wore the tank out and about, and it was comfy and pretty. later, though, my husband came home and asked if i knew it was see through. eek! sure enough, it is pretty sheer in certain lights. next time, i will wear a cami underneath. though i wish it were a bit",4,1,8,General Petite,Intimate,Lounge +1074,45,Classy & adorable,"This dress is gorgeous. the quality is high, runs true to size, and is very flattering! my only issue is the tule. i already have hips, so the tule makes the dress over-flare. i am going to have the tailor remove the tule and it will be perfect. for those who are not an hourglass shape naturally, this will help provide the extra shaping. + +overall, i love this dress and will be keeping it.",4,1,6,General,Dresses,Dresses +863,48,Super soft!,"These shirts are fantastic; lightweight sleeves for summer wear. i go back and forth between xs and small, (i have broad shoulders) and ordered one of each. i like both. the shirt has give so the xs is fine but the variation in size gives the two shirts very different looks. + +the color is fantastic and true to the photos! not always the case with online purchasing so i loved that.",5,1,0,General,Tops,Knits +1110,49,Size down on this one.,"I ordered a regular size 6 because the petite size 6 was sold out. it was too large for me; maybe the 4 would have worked. in part because the size was off, it looked frumpy on me with the poofs and flowers. however, i did like that it is cotton and has its own beige-colored slip that snaps on at the shoulders. i have no doubt this could look very nice on someone if the size was just right.. i like the black crochet-type details.",4,1,0,General Petite,Dresses,Dresses +937,43,,"Really cute sweater, well made, but so intensely itchy i couldn't keep it on for more than 30 seconds !",1,0,1,General,Tops,Sweaters +1110,34,Poor quality for price,"I was really excited about this dress- the style looked like it would be a spring/summer staple in my retailer-heavy wardrobe. i was really surprised when i received it in the mail. the dress is quite thin cotton fabric and feels cheaply made. for the price, i could purchase a much higher quality dress elsewhere that would hold up better. i've been an retailer fan for more than an decade, but this trend of higher prices for lower quality is disappointing and insirpring me to leave a review for the f",2,0,10,General Petite,Dresses,Dresses +863,39,,"Great, comfy shirt! long enough that i can wear it with leggings!",5,1,0,General,Tops,Knits +975,55,Disappointed,"Should have listened 2 a previous review! while this is a very well made garment, it really does remind me of a bathrobe, and will be returning :( too bad because the fabric and stripes are really great. also...this runs very large. the extra small was more like a medium.",2,0,1,General,Jackets,Jackets +863,29,Beautiful color,This shirt is such a beautiful color! the lavender is a really lovely addition to spring wardrobe and goes with more than imagined. it has a bit of an oversized fit although it falls really nicely on slimmer silhouettes. it's also incredibly comfy and stylish with an updated look even to the most casual of attire.,5,1,0,General,Tops,Knits +881,49,Cant' wait to wear this!,I received this top yesterday and love it! sexy yet not too revealing and great for date night! i like the way it fits across the chest and isn't too short in the waist. very soft fabric.,5,1,1,General,Tops,Knits +863,36,"A great, classic t-shirt with flare","I was looking for a classic, white t-shirt that wasn't too big (i.e. a tunic) or too fitted. this was perfect! i love the irregular hemline and the fit. it's not too tight, but not too big either where it looks messy. just a perfect little tee for any wardrobe. runs true to size. i'm a 34d, size 10 and ordered the medium - it fit great!",4,1,3,General,Tops,Knits +863,57,Wanted to like it,I wanted to like this one.. really but it was just plain sloppy looking. i returned it.,1,0,0,General,Tops,Knits +863,61,So soft and comfy,Got this in the pretty springy blue already wore it with white jeans and loved it!! love the loose longer swingy style and i can't wait to wear again! i may have to get another color!,5,1,1,General,Tops,Knits +498,55,Perfect tank!,"I own this tank in three different colors, and have been wearing them since the weather warmed up! they are soft, good quality, and wash up well. i've taken them on vacation as they take up no room in my suitcase, and also have used them as little camisole shirts. they don't fit too tight on, just right. i think you could also use them with pajama bottoms to sleep in.",5,1,4,General Petite,Intimate,Lounge +863,42,"Cute, nice weight tee","I was looking for a tee that i could wear on the weekends without looking sloppy and also have a little coverage for when i'm feeling a little bloated. (come on, that's what happens sometimes on weekends, ha!) this tee is great because it's got some coverage and it's also not sloppy looking or oversized while still being flowy and flattering. + +the shoulders and arms are fairly tts and there's a slight a-line shape to this tee, so its flattering without being a tent or frumpy looking. i did si",4,1,68,General,Tops,Knits +937,29,Itchy!,"This jacket is beautiful. the color is so nice and the cut of the jacket is perfect. however, one i put it on, i couldn't wait to get it off. it's so itchy!! i tried putting on a long sleeve shirt under it but was still uncomfortable. especially around my neck. i wouldn't recommend this jacket based on the material alone. also, the jacket runs large. i'm 5'1"" 130 lbs 34d and i ordered the small. i would definitely size down.",3,0,7,General,Tops,Sweaters +1110,50,"Cute design, poor material","I loved the fact that this dress is cotton. it is a thin cotton, and you can see in the photos that she is wearing a black slip with a thicker strap. mine came with a nude slip. i'm thinking they all come with a nude slip. i'm not sure why they showed the dress with the black thick strap slip unless it was to show the dress as a thicker cotton than what it actually is. the dress is adorable though which makes it hard for me to decide whether to keep it and hope mine won't tear easily or to retur",2,1,4,General Petite,Dresses,Dresses +863,63,,"Adorable summer top. the geometrical shape makes this top interesting. it looks much better on then in the picture displayed. it's soft , flowing and covers all flaws. the gold color is beautiful and vibrant. i know i will purchase this in other colors. the long back really sets it off. if you are looking for comfort, don't hesitate, this top is perfect.",5,1,3,General,Tops,Knits +863,29,Comfortable long-sleeved tee,"Very pretty top. runs a bit large (i generally take an xs and the xs in this top fits me a little longer and larger than on the model). comfortable and easy to wear. nice cut with angled front and bit longer back. did develop a small hole very quickly as some thinner and tissue tees do but hoping that's unusual as i did buy two different colors of this tee shirt and will be totally disappointed if this happens to both, especially at this price.",4,1,4,General,Tops,Knits +975,60,,"When i tried it on it looked like a stiff bathrobe. straight, too boxy.",3,0,16,General,Jackets,Jackets +863,38,Easy top,This top is semi fitted and then stretches as you wear it. i love the design and color choices.,5,1,0,General,Tops,Knits +996,40,Beautiful skirt,Loved this skirt. it reminded me of the styles that i saw visiting paris this past summer.,5,1,0,General,Bottoms,Skirts +863,40,Stylish tee,"This tee is so comfortable and stylish. you can easily dress it up. i love how the back covers your assets, and the sleeves are long enough for tall girls. a great buy on sale! i bought a small and bought 3 colors!",5,1,0,General,Tops,Knits +1036,41,Wow!,"Bought these jeans after reading others reviews and was not disapointed. these are the most flatering jeans! they give you legs for days, while providing amazing shape. oh and did i mention their soft as butter. huge win for me as jeans are one of the most difficult items for me to my as my waist is 1-2 sized smaller than my hips and thes stretch marvilously to fit your body. they are on the pricier side and well worth it.",5,1,0,General Petite,Bottoms,Jeans +863,27,Love it!,Great with leggings and skinny jeans! it's comfortable too!,5,1,0,General,Tops,Knits +965,39,Cute,"This vest is cute. the colors are as pictured, and the lace detail on the back is adorable. it is summery and versatile. however, it was really big on me. i usually wear and xs, but it just swallowed me. now i have to consider whether to exchange for an xs petite.",4,1,1,General,Jackets,Jackets +835,26,Like it but it is too loose,"I like this top. in the photo, the white in the print stands out. in-person, the white areas of the print (not embroidery) is dull, more like beige. the flowers and embroidery itself looks good, the print looks good. it is a swing top, looks better on a slender frame. such loose fitting tops just don't look good on my curvy frame. i sized down, could have tried 2 sizes down but the shoulder area was more fitted. i recommend the top for a more slender frame or if you like very loose fitting tops.",3,1,6,General,Tops,Blouses +937,52,Itchy itchy,"Beautiful color, design and fit. but i couldn't wait to get it off. i don't have sensitive skin and don't recall ever putting a jacket on that felt like steel wool.",2,0,0,General,Tops,Sweaters +1110,46,,"This dress is more lovely in person than in the picture. the lace details show beautifully against its nude slip. i'm 5'1"" 130# and regular size 2 fits perfectly and hits at my knees. it's a very flattering dressy-casual dress. it's a bit pricey for a cotton dress but worth it at the 20% retailer promo.",4,1,23,General Petite,Dresses,Dresses +560,45,Wonderful work to dinner dress,"Fantastic quality. i agree the material is heavier and may be too hot for summer in sc but will be perfect for ac cooled offices. the fit is tts. i am smaller on top than the bottom and size 2 fit well everywhere thanks to the somewhat stretchy material, 32-24-36. i never write reviews but this dress really is fantastic and at a great price point given the high quality of the fabric and design. i couldn't tell from the pics but the back bottom is not a single center slit but a double slit. i rea",5,1,3,General,Trend,Trend +820,53,I love it!,"I saw this in the store and purchased it right on the spot (didn't even see the reviews until now). i can wear either a small or x-small in retailer but for this top, the x-small was a better fit as it draped nicely and was still very loose on me (i'm 5'4, 125 lbs, 34b). i was worried that the opening was too wide but it was perfect. i like the elbow length sleeves and the fact that the blouse is lined which mean it's not sheer and don't have to wear a camisole. i usually stick with the classics i",5,1,2,General Petite,Tops,Blouses +839,35,Western shirt with a feminine flare,"This shirt is actually not as fitted as it looks on the model. the shirt actually flares out a bit and giving more room to large chested women, like myself. the arms and chest area are a tat small, but the non-fitted style accommodated that nicely. great color, great design with the butterflies and easy to wash. looks great with skinny bell bottoms or even jean shorts in the summer and some cowboy boots. very sexy.",4,1,1,General Petite,Tops,Blouses +820,54,Pretty blouse,"Most peasant tops have a lot of detail at the chest, such as gathering, yoke inlay, ties etc. i like this peasant blouse because it has a simple top part, so it does not add volume to the chest. good for busty figures. pretty top, though colors a bit more autumnal than pictured.",4,1,0,General Petite,Tops,Blouses +1081,45,Runs large,"This was really big on me. i am usually a 10 and even the 8 wouldn't stay up around the chest. i would need to have straps sewn on to make this work. on the plus side, the material is absolutely gorgeous. rich, saturated color. too bad about the fit. maybe really busty girls will have better luck, but this is going back. too expensive to justify keeping it if i need to spend money having it remade/tailored.",4,1,0,General Petite,Dresses,Dresses +820,33,Horrible,"This looks nothing like it does on the website. it runs small and the colors are so muddy. it doesn't drape nicely and i a musually an xs and this was short, stiff and plain ugly. sent it back immediately.",1,0,4,General Petite,Tops,Blouses +820,34,Could be cute on the right person,I wanted to love this shirt. it's not my usual style buy it looked so great online. unfortunately the actual shirt is much more brown in color and design than i thought looking online. i'm fair coloring & it just wasn't flattering. i'm thin but have a larger chest and this style just wasn't right for me. could definitely be cute on someone else but not a good match for me.,2,1,3,General Petite,Tops,Blouses +829,37,Beautiful transition piece,"Love this top and i think it is a great transition piece - i live in texas, so our temps stay high until october. this top in the purple motif color is perfect, since the colors aren't look too summery, but the fabric is lightweight. this top is a little bit boxy, but drapes nicely so it won't make you look wide. as with most holding horses tops, this runs a little big so size down unless you need the length.",5,1,1,General Petite,Tops,Blouses +872,53,Great casual top,"Love this top for casual days. fits perfectly, fabric feels quality and color is bright but not too bright. good length, just touches top of my thighs.",5,1,0,General Petite,Tops,Knits +820,42,Inconsistent all the way around,I saw this blouse in the store a few weeks ago and thought it was really pretty- great colors and fun beading around the wrists & hem. went online to order the petite size and when it arrived i literally couldn't believe it was the same shirt! it was so washed out compared to the one in the store and the petite size is very short (and i'm only 5 feet tall so that's saying something!). the neckline is very wide and open- not even sure what kind of bra wouldn't show?? sadly i wasted the shipping c,3,0,0,General Petite,Tops,Blouses +829,66,Love it,"I absolutely love this top, it washed up nicely and is perfect for body style. short waist nice soft colors. i ordered another top that is this style. perfect first time i wore it i received so many compliments.",5,1,8,General Petite,Tops,Blouses +872,31,Amazing canary yellow but a little transparent,"I love this shirt's color which is a lovely yellow. the fit is nice and flowing. i usually wear xs but intentionally bought s, so that it would be a little lose and i may wear with leggings. my one issue is how transparent it is. i opt to wear a spaghetti strap underneath it, however some women might be ok wearing it alone.",5,1,0,General Petite,Tops,Knits +820,58,Beautiful blouse,"I fell in love with this blouse the minute i saw it in the store. the colors are a little deeper than how they appear in the catalog, but the greens and browns are beautiful and will be great for fall! it fit very true to size, i usually wear 8-10, and the m fit perfect. the gold beading on the sleeves and neck are a nice extra! love this top!!",5,1,3,General Petite,Tops,Blouses +1066,60,"If they still have your size, buy these","I got these on sale mid-summer at retailer and they quickly became my go-to summer slacks for the office. i work in washington dc and jerusalem -- two really hot cities -- and these are comfortable yet professional. with a sleeveless blouse, jacket and heeled sandals they are professional, with flat sandals and a t-shirt perfect for a weekend. they travel quite well and don't instantly wrinkle the way most linen slacks do. think ahead to next summer and grab them.",4,1,0,General,Bottoms,Pants +1066,58,Cooommfey!!,"These pants fit me perfectly..i am 5'7"" and 134 (most days).. and wore a 4..they are so comfortable, i could sleep in them. they do stretch a little after wearing (linen), which can be a good thing to some...they are a heavier linen so good for mild winters..almost look denim..if they came in more colors i would get more!they also remind me of my old hippie days, which was fun",5,1,0,General,Bottoms,Pants +820,44,Not at all as it looks online,Material is awful. not soft at all. colors are much darker than shows online. it is actually very short not at all as it looks on the model. it went back.,2,0,2,General Petite,Tops,Blouses +872,43,Love this shirt!,"I bought this shirt at the store and after going home and trying it on, i promptly went online and ordered two more! i've gotten multiple compliments anytime i wear any of them. great for looking put together with no fuss. +people that have commented there's were destroyed in the wash didn't read the care label which says dry clean.",5,1,0,General Petite,Tops,Knits +872,38,Love this basic with a twist,I loved this top... the color is true to screen. the cut is cute. it's a lovely basic top that has just the right twist to it. i loved the fabric. it is see-through but if you wear a nude colored bra under it nothing shows.,4,1,0,General Petite,Tops,Knits +820,66,Too bad,"I just can't get past how different the blouse i got is from the photo. mine has dark colors, really dark colors. this top fits a bit large and the neck is quite wide. i thought it flowed well and fit nicely in my regular size large. i liked the length and the fact that it's shorter than shown. it still covered my bum. the back has a cute peplum ruffle and there are little bronze colored beads along the bottom edge in both the front and back. i would have kept it had been the blouse shown in t",2,0,4,General Petite,Tops,Blouses +839,60,Stunning classic,"This is such a beautiful shirt! for me, tts. i bought the size 4 (34b) it is a very detailed and tailored shirt so i can understand if your busty why you may have to size up. the attention to detail along with the embroidered butterflies sets this shirt a step above average. the color is an odd shade of olive but i like it and the butterflies have areas that you can see through but not in an im-modest way. i do not feel the need to wear anything under it.",5,1,2,General Petite,Tops,Blouses +990,62,Painful but beautiful,"This picture does not do this skirt justice. it is gorgeous. however, the waist was so small that the sequins dug into my waist making me think of a medieval torture device. unfortunately, it was the largest size so i can't size up. i'm 4'11"" so the length was perfect - it came to right above my knees. i love the skirt so much that i'm considering liposuction.",3,1,1,General,Bottoms,Skirts +829,50,Such a cute top!,"I ordered this in the darker color. i was excited to try it on when it arrived the fabric was really nice, good quality and the design is so cute. sadly it did not work for me. there is a lot of volume especially in the back which does not work for my curvy shape. i can see this top working well on a straighter figure but the volume and length really just did not flatter my hips and thighs. i will be sending this back.",4,1,0,General Petite,Tops,Blouses +837,63,"Great fabric, but...","I like what they were going for here, and the fabric. but it falls short in that i can't wear it to work---the back ""keyhole"" is massive so i can't wear my normal bras, and the very wide neck also shows bra straps, so unless i want to go with a strapless bra, it's not useful for me. i want to feel loose and soft and summer comfy and my strapless bras are anything but that. i'd go without, but that is a no-no where i work. i may try getting a size smaller. i wear a med. and i got a small and mayb",3,1,1,General,Tops,Blouses +872,33,Linen tee,Fits really nicely and i'm picky about sleeves but these are just right. a little see through but i don't have to wear anything under it because the seams and piecing cover well. love the fit not too blousy in the waist and the assymetrical hem is nice.,5,1,2,General Petite,Tops,Knits +872,36,,"Would not have picked this out online, but it caught my eye in the store. the blue color is gorgeous, it's a flattering style that drapes well and will pair with just about any short, jean, capri or summer weight pant and a number of chic accessories. you will not be disappointed!",5,1,2,General Petite,Tops,Knits +820,53,So disappointed!,"This top is much stiffer, more baby-doll and boxier than pictured. lining is stiff too, and colors more muddy than shown. i wear boho tops all the time and this looked terrible on me (i have broad-ish shoulders and a chest). i thought it would be a fun, drapey top for transition to fall but unfortunately it's going back.",3,0,14,General Petite,Tops,Blouses +820,56,Another floreat top misses the mark,"I've been shopping at retailer since 2007, and floreat used to be my favorite designer, but for the past year or more, floreat mostly misses the mark. this blouse looks nothing like it does on the model. +1. it is long on her, not so in real life. this is probably the worst part about this blouse. if it were not for this, i might try on a size m and give it another chance. +2. it runs very large. i usually take a l or xl. i think i would need a m in this, as mentioned above. +3. in the picture, t",1,0,24,General Petite,Tops,Blouses +872,47,A versatile keeper,"A great casual top for warm weather - the linen ensures its structure stands out, and the structure gives it more interest than a plan tee. does a fine job of hiding minor midsection lumpiness. can be dressed up a bit if worn with linen or cotton trousers. i bought the yellow and was pleased to find it wasn't too transparent. i bought the small and found it tts for an american small (bigger than a uk or european small). a versatile keeper.",5,1,0,General Petite,Tops,Knits +839,45,Love it,I have to agree with previous reviewers in that it is a bit short on the top but i kind of like that as i am petite and most tops come way too long on me; however go up a size if you have any breasts at all. likely they will not fit in you standard size. however i just love this shirt. soooo adorable. the color is a bit more olive than brown to me though than what is in the pic :),5,1,1,General Petite,Tops,Blouses +872,35,Love,This shirt is so comfortable and looks very nice with jeans or work pants. it's a great shirt!,5,1,0,General Petite,Tops,Knits +829,44,Too boxy,I had high hopes for this top. i love the plaid and design but found it too boxy and short. the front was cut too low as well.,4,0,1,General Petite,Tops,Blouses +872,39,It's always sunny,"It's always sunny when i wear this sunshine yellow tee. love the color and they way it was pieced together. has a flattering feminine fit whole still feeling relaxed and casual. it's slightly sheer but not obscene. all linen and a little scratchy so if you're sensitive, be aware. i purchased medium and i'm 39/28/35 140# 5'3""",5,1,0,General Petite,Tops,Knits +820,39,So unflattering....nothing like picture,"I agree with the other reviewers, this top is completely disappointing in every way, i could not believe it was the same top i pulled from the bag. where to begin,....... +it runs really big +it's short and boxy, not at all like it appears on the model, this must be pinned a lot in this picture. +colors are completely dull in person, i really think this picture was lightened a great deal. +fabric feels cheap and stiff +lining is stuff and poorly sewn. +i haven't one positive thing to say about t",1,0,4,General Petite,Tops,Blouses +829,64,So cute!,"The style, plaid colors & cotton fabric really appealed to me in the pics. looks like it will be very cool & airy for these brutal hot days. ordered both the blue & purple in the size 6 for length. did not disappoint at all! looks pretty much on me as in the pic. a little surprise is that both tops have a thin metallic pinstripe spaced abt 3-4"" thruout the plaid. it's a silver metallic on the blue, & raspberry on the purple plaid. not obvious from far away but noticeable up close. a cute feature",5,1,15,General Petite,Tops,Blouses +872,39,Another basic tee,Cute and simple. nice fabric. it's a looser fit so if you're in between sizes i'd recommend the smaller size,4,1,0,General Petite,Tops,Knits +820,52,Fall boho,"As other reviewers have said ~ the colors are more muted but good fall colors! quality top with lining and bead detail on hem and sleeves. flowy, loose fit ~ very cute with skinny jeans and booties. i would size down if you are small chested. great boho top.",5,1,1,General Petite,Tops,Blouses +872,45,Versatile,"Great color and fabric! a bit on the sheer side but not completely see-through. perfect for spring, summer and even into fall. wore it on a weekend trip to the beach with capris and then to work with a cropped blazer. planning on ordering it in additional colors if it's still available. a good staple for your wardrobe!",5,1,0,General Petite,Tops,Knits +820,36,Beautiful peasant top,"I ordered this top in xsp and xs. i don't think i let the xsp top breathe long enough, because i thought it was too short and sent it back. (there is no retailer near me...) i kept the xs, and at first thought the same thing about it not fitting right, but by the end of the day it stretched just enough, and felt just right. really pretty top. i received a lot of compliments on it.",5,1,3,General Petite,Tops,Blouses +877,62,Love this tunic!,Really cute over my white cropped pilcro jeans. or as a beach cover up over a bathing suit. i want this in more colors!,5,1,11,General,Tops,Knits +1005,53,Wish it wasn't suede,This skirt is stunning but i really wish it was cotton canvas - maybe by summer retailer could make one?,5,1,6,General,Bottoms,Skirts +877,49,Seems to run a bit small,"I love the length of this and that i can wear it with skinny jeans or leggings, but it does seem to run a little small and it is not as long as on the model. i do think it is a cute addition to my wardrobe though.",3,1,0,General,Tops,Knits +376,38,Super soft,"Great, really soft hoodie. i got an xxs petite and it's still a little big, but it works. i'm 5'1"", 95lbs.",5,1,0,Initmates,Intimate,Lounge +1104,40,Awesome dress!,"This dress is fantastic. super flattering and unique. i get a compliment every time i wear it. i encourage retailer to source more dresses from this brand/designer. lovely. i am picky and nevery give a perfect rating, this dress got all 5 stars.",5,1,0,General,Dresses,Dresses +862,57,Fit is slimming,I love this tee. very soft and easy care. gentle cycle hand to dry.,5,1,1,General,Tops,Knits +936,49,,"I usually wear a medium in jackets, took a chance with the small in this coat. it fits well, the arms are a bit snug but not too snug. beautiful design though. biggest disappointment was quality. i thought the jacket would be thick and warm. it's pretty thin, will test out warmth soon. overall decent purchase, would buy again.",4,1,0,General,Tops,Sweaters +936,40,"Very beautiful, just as pictured","This wool jacket actually feels more as a cardigan, its a little too thin for a jacket but looks about the same as pictured. its very pretty. i ordered a l and it was true to size. sleeves are cropped. the wool material is surprisingly soft and comfortable. very nice and colorful addition to my closet. recommend! :)",5,1,0,General,Tops,Sweaters +1096,35,,,5,1,0,General,Dresses,Dresses +862,47,Soft tee with nice details,"I bought one of these tees for myself and one as a gift -- both in green, which is really a beautiful dark teal color (as pictured). the fabric is so soft that the gift recipient said she wanted ""an entire jumpsuit made of this fabric."" :) the shirt is long enough, loose enough and substantial enough to wear untucked, as pictured, but lightweight enough to tuck in to a pencil skirt. i am usually an xs or an s in tops, and i ordered the s in this one. the larger size gives the slightly loose fit",5,1,9,General,Tops,Knits +147,58,Pleasant dreamy pjs,"I saw these in the connecticut retailer but didn't want to pay full price. the very next week, they went on sale! i ordered xs (i'm 5'4, small frame, 120lbs). while the length is perfect, the waist is a bit tight for pjs. though, not tight enough to return as i love everything else about these. they're like wearing a painting of fine art! light weight flannel. hope they hold up well iin cold water wash!",5,1,0,Initmates,Intimate,Sleep +1123,53,Awesome jacket!,I just purchased this amazing jacket in the moss color in my regular size small (34d-27-35) at the store because my husband had commented about how cool it looked and i absolutely love it. this is the softest jacket ever and you wouldn't even know it's not real leather. the moss is more of a cross between a dark grey and green and it's so neat how it goes with so many outfits. the moss green does not make it difficult at all to match up with so many other colors like you would think due to it's,5,1,2,General,Jackets,Outerwear +862,32,Wonderful top to dress up or down,"I'm super into this top! i bought the evergreen color in store as it fit true to size and was very flattering. i went to buy an item that was available online only and decided to also buy this top in black. my favorite aspect about this shirt is that it can be dressed up or down. the material is slightly stretchy though it does not cling. i can wear a chunky necklace and dressy skinny pants and look ready for a nice dinner. on the other hand, this top can be thrown on with a pair of comfy jeans",5,1,6,General,Tops,Knits +1096,49,Gorgeous!!!,"This dress is amazing quality with stunning details. its flowy and absolutely beautiful. +i plan on wearing it whilst im in the depths of the mongolian mountains while singing operatic arias. +i ordered a size two regular, even though i am petite for the sole purpose of dress length. +---->in the picture, the dress comes down to an awkward length on the model, the sleeves are 3/4 and it doesnt look as good as it could if the length settled down to where their ankles are, or if the sleeves reache",5,1,5,General,Dresses,Dresses +1076,54,I loved it!,"I was looking for something to wear for an event at an art gallery. i actually really loved this dress! i think it hides body flaws. i tired on the xs, but the small was a little more flowing. it was comfortable and very fun to wear.. i am short, so the length was great for me i wore a different full length black slip under it which was more comfortable for me. go try it on too see if it fits for your body style. it was great for me",5,1,1,General,Dresses,Dresses +1123,49,Nice jacket,Very soft for vegan leather. very stylish. i thought it ran slightly small for size indicated on jacket. daughter is 8-10 but medium was tight.,4,1,0,General,Jackets,Outerwear +376,51,Beautiful for 1 day,"This hoodie is beautiful, soft and flattering. but the soft fabric pilled badly after one wearing and it's probably going to look ratty after a few washings. i might accept pilling in a $30 sweatshirt but not at this price. i don't really want to take it back but i will. (i've complained to retailer employees in the past about other clothes pilling and poor quality, and they've always said i could bring it back)",3,0,9,Initmates,Intimate,Lounge +1076,39,"Cute, need tall boots","I tried on the dress that was returned at my store in xxs p, i would not have based on reviews but my stylist asked me to try it on. it does look nice, you just have to cinch it all the way. perhaps most people do need to size down. for my 115 lbs, 30dd, 26.5in waist, i wouldn't go up to xs p... to give an idea. +material is nice and sturdy. give ti a try!",4,1,0,General,Dresses,Dresses +1096,41,Channeling laura ingalls wilder,This is a beautiful dress. all that's missing is a bonnet!,3,0,0,General,Dresses,Dresses +86,48,Size up,"It's beautiful, but more sheer on bottom than it appears in photo. size up.",4,1,0,Initmates,Intimate,Intimates +877,27,,"Cute shirt, great for a lazy day off. i got an xs, but i thought this was a bit lose especially around the waist. the shirt is good quality, the material is heavier, great for spring/fall. it goes well with leggings and a jacket.",4,1,2,General,Tops,Knits +1123,70,Awesome jacket,"I wasn't sure the shorter length in the back was working until i tried it on. this jacket totally worked for me. the brown color can be easily matched with other colors. i got the jacket in medium size. i usually in between size. the medium size allow more space on the chest area, however the sleeve becomes a bit too long for me.",5,1,0,General,Jackets,Outerwear +881,61,Perfect top,This top is so cute it's my go to top. dress up or down looks really cute with skinny skirt. i have the ivory and just ordered the dark grey. one great thing this top has pockets. i would buy this in many colors if i could. yes it's full but a cute full. but i love full tops. i think this is true to size it's not tight and i don't think it would be as cute tight. i actually like mine on me better than the one on the model.lol washes like a dream and you can dry it in the dryer.,5,1,0,General,Tops,Knits +1096,58,Sister wife,"This dress is really good quality and the beading is adorable. but, the sleeves combined with the maxi skirt made me look like i was a sister wife and not in a $250 dress. i still gave it four stars though, because i am having it hemmed to above the knee because i like the top part so much. i ordered the 00p, am 5'1 110 lbs and the waist fit perfect, the skirt was about three inches above my ankles. perhaps someone with a more boho style might find the length of the skirt cute but i just found i",4,1,24,General,Dresses,Dresses +862,35,I love this shirt,"I got the red- it is a great color. this is one of those thin soft t shirts. it drapes really nicely and dresses up or dresses down. the only downside for me is that it takes a little extra effort in the washing department, but really not much- just have to line dry.",5,1,1,General,Tops,Knits +376,35,,"I saw this in my local retailer, and was blown away by how soft it was! the minute i tried it on, i didn't want to take it off. for being a boxy cut, it was surprisingly flattering. i have a large chest and normally wear an xl in retailer clothes, but i could easily zip the size large all the way up. this is the perfect hoodie to wear running errands on the weekend, or with a pretty blouse on under it at work. i know i'll get a ton of use out of it, so i recommend it!",5,1,6,Initmates,Intimate,Lounge +264,29,My favorite invisible socks,"I purchased this sock in another print before and wear them all the time. i was happy to see a new pair on the website and purchased them again! these liner socks actually stay on my feet... others brands i've tried before slip off my heel, but these stay hidden and stay put. plus a fun design!",5,1,0,Initmates,Intimate,Legwear +1076,32,Not as pictured,"This dress is not flattering. the slip is very small and short and the dress is big and billowy. like the other reviewer said, its more like a tablecloth that you stick your head through. it was really hard to figure out how to cinch in the waist but it didn't help regardless. the length is not accurate either. i would say it's a pretty short dress (mid thigh) but that probably depends on the person. it also makes you look very horizontal. i was really excited about this dress but it's getting r",1,0,9,General,Dresses,Dresses +1076,62,A huge miss that could've been a hit,"What a shame this dress is. i wear xl and am 5'2"", but the dress in the store in the size xs(!!!!!) looked just the right size. yup! xs was just the right size. i can't imagine anyone who wears m or s finding this dress fit flattering. it would look like a sack. it is an inch or two too short in the front for me, so i'll be returning it.",2,0,0,General,Dresses,Dresses +831,38,Happy birthday to me!,"Another winner for me! this top drapes wonderfully, the lace is beautiful and looks fabulous on! i would highly recommend it!",5,1,2,General,Tops,Blouses +1076,34,Love this boho dress,"I love this unique piece. it is slightly over sized which is intended - cinches allow you to tighten the waist area/providing more definition. will look great with booties in the fall.. great boho dress.. the included slip runs small and short. however, if it's a piece you love, you could easily wear a different slip if you wanted something a little longer.",4,1,1,General,Dresses,Dresses +147,48,,So cheerful and colorful! love these cozy pj pants!,5,1,2,Initmates,Intimate,Sleep +1096,46,Swiss milkmaid,"This dress is very good quality, with beautiful beading on the bodice. it's a heavier material than i was expecting, but that was a pleasant surprise. unfortunately, when i put it on and looked in the mirror, i laughed out loud because i looked like a fancy swiss milkmaid. the shoulders are puffier than shown on the model and, combined with the overall design and length, i couldn't think of anywhere to wear it. this is an easy return for me. the dress runs very true to size and the bodice is fit",3,1,6,General,Dresses,Dresses +909,60,"Quality, classy sweater!",Excited to get this sweater! i'm a 38c and usually wear a size 14 blouse so i ordered an xl as i don't like clingy sweaters. this was perfect; fitted but not tight. i'll be able to wear this with jeans and cute boots for lunches or nice slacks and heels for a dinner date. wish i could've gotten it for the 25% off + free s/h but glad i didn't wait - this size was sold out first.,5,1,2,General Petite,Tops,Fine gauge +1096,63,Dress review,"I fist saw this dress in the window in alexandria, va olde towne and i immediately said that i have to have it. upon receiving it in the mail, i was surprised by the quality of the dress. this dress is made very well. after trying it on it did look like i was going to be dancing with the hippies in woodstock. but i love the dress and plan on wearing it soon. good quality",5,1,0,General,Dresses,Dresses +1076,60,Adorable,"After reading the other reviews, i had to write my own. i think this dress is adorable. it is a tunic and advertised as such. i think the drawcord and the way it is styled is really different and gives the dress some pop. i am 5'4"" so the length is good for me. i didn't have trouble with the arms as some did. the slip was a problem , too small, especially considering the dress is a tunic and fits as a tunic. the dress fits me as it does the model. with a pair of cute boots, this dress rocks.",4,1,1,General,Dresses,Dresses +1076,67,How do i use my arms???,"I loved the look of this dress online so i went to retailer to try it on. in the dressing room area we were all laughing because (i tried on a small) when i got it tied to the point where it looked like the model online i couldn't raise my arms. the distance between the cuff and the waist is inches! even if you manage to lift your arms the whole dress will go with it and expose you as much as if you weren't wearing a dress at all but a shirt. too bad. poor design for sure, and such a shame when th",2,0,1,General,Dresses,Dresses +1135,37,Love this skirt,"My skirt arrived this week and its beautiful! i'm so happy i splurged on it. i'm usually a size 6 and the medium fits perfect, although it is quite long (i'm 5'2"" though;). i will probably get it hemmed, but went ahead and wore it anyway and actually found i like it a bit long and its very comfortable. the fabric is very high quality and the color is stunning.",5,1,3,General,Trend,Trend +865,39,Unflattering fit,Large and the material is too bulky. i returned it.,1,0,0,General,Tops,Knits +1076,22,,"This dress looks like it could be cute on but when you put it on its just blah. i saw someone else trying it on in the fitting room and she felt the same. not cute, not flattering, the model photo is deceiving. would not recommend, although it looks airy and comfy.",1,0,0,General,Dresses,Dresses +936,68,,"Just received this beautiful jacket of quality wool and superior design. i love it and wore it christmas eve with tailored black pants. the fit is perfect in the shoulders, sleeve length and generous in the hips, waist. i used the tie to gather it in a bit at the waist, but plan to have an inch or so taken in on either side at the hip to avoid my looking too wide. a matter of preference, but i have most things tailored--a must at my age! i felt young and attractive rather than old and non-descri",5,1,1,General,Tops,Sweaters +1059,40,Love this jumpsuit!,"I'm in love with this jumpsuit! i'm 39 y/old, 5.5"", 140lbs and ordered the 6 petite (my legs are a little challenged in the length department). it fits perfectly, and i get complimented every time i wear it. simple, yet elegant and stylish.",5,1,0,General,Bottoms,Pants +147,36,Sleeping in comfort & beauty,"George venson of vousta has designed a pair of pajama bottoms that are beautifully designed & comfy to lounge & sleep in. they are a light weight flannel that fit true to size & wash extremely well. the design on these pj's are like no other; a white background with red birds. polar bears, deer, all with tree branches running through the length of the pant. they're just delightful. you must try them!",5,1,11,Initmates,Intimate,Sleep +909,44,"Very nice, but it's not for tall girls?","I'm a petite girl, 5' and 100lbs. ordered regular size xs since others mentioned this being ""short"" or ""cropped"". this sweater is adorable, not itchy in my opinion, and the lenght is just right, not short, not long, however it may be a bit short for tall girls...still think it's worth a try.",5,1,3,General Petite,Tops,Fine gauge +1096,59,"Gorgeous, imaginative dress","I really love this dress! the fit is flattering and comfortable. the fabric has a pale art nouveau background, with indian and middle eastern prints over it. the beadwork does ""really pop,"" and the whole is greater than the sum of its parts. for lovers of etro's bohemian style who don't want to spent thousands of dollars on a dress . . .",5,1,8,General,Dresses,Dresses +1076,37,I really don't have enough bad things to say...,"I'll start by saying, over the years, i get more and more frustrated by the lowered quality of retailer's products. this dress represents all of my frustration. cheap, cheap cheap material. low thread count. elastic!!! around the end of the sleeves that rubs the cheap fabric against your arm. i mean, this dress is a total disaster - and looks nothing like the photograph shown.",1,0,3,General,Dresses,Dresses +1096,43,Probably not for everyone,"When i first put this dress on, i immediately thought...oh no, i can't pull this off. at least, not without a cow to milk. but this dress is so comfortable. the material feels divine and the quality really is excellent for the price. the pattern of the panel on the bodice creates a slimming effect so it is also very flattering if you can get the waist to hit right. (i had to try on a few different bras to make this happen.) fits true to size. i got a size 2 - my usual size and i have gained a fe",5,1,6,General,Dresses,Dresses +877,33,Love it!!,"I was a little hesitant to order it. i am glad i did, it is a great top.",5,1,0,General,Tops,Knits +1096,40,,"I was so excited to receive this dress. i got a petite 4 as i am 5'2"". it was very hard to zip up the side zipper but not impossible. it didn't look good on me. the waist line was a bit too high...maybe a regular would have looked better. also i thought it was a cotton dress but it isn't. also i looked like i was going to a nordic folk festival to do a traditional dance. i had been so excited to receive this but sadly it just didn't work for me and i had to send it back.",2,0,0,General,Dresses,Dresses +927,46,Really lovely sweater coat,"I love the patterns and the colors! easy to dress up or down. i ordered a small and just ordered a can to compare them. the cut is great as the sides still meet even though there's no closure. it's a good weight for this weather and winter! i live in sweater coats where i am and this is a great addition. +it's a little itchy, that's the only flaw.",5,1,1,General,Tops,Sweaters +936,38,Stunning!!,"Absolutely perfect and worth every penny! i am 5'8"" and normally between a 4 and 6 in jackets. while the small fit, i ended up purchasing a medium so i had more room in the arms. insanely comfortable and truly stunning on. expect compliments when you are wearing it!",5,1,0,General,Tops,Sweaters +936,50,Lovely jacket,"The collar on this jacket is amazing; there is so much you can do with it to create different styles and looks. it gives it a glamorous edge with a classic uniqueness. the print contains vibrant colors - perfect for holiday parties as well as for work and other occasions. when you snap it, the material gets bunchy and awkward-fitting so it's best to wear it as a wrap. it is a little pricey in my opinion and i am guessing it is due to the perfect and flawless design that stands apart from some of",4,1,15,General,Tops,Sweaters +936,47,Another timeless piece!,"I agree with almost everything the previous reviewer said with one notable exception: probably because she and i have very different figures, i am able to wear the sweater fully snapped with the belt cinching my waist creating a peplum effect. i wore this jacket to a party as a top over a black band aid skirt (code for tight-fitting and tastefully short) with black semi-opaque tights and black booties. the look was classy, but edgy having paired a delicate floral pattern and unusually feminine n",5,1,6,General,Tops,Sweaters +1096,56,"Late 1960s, eastern european-looking, beautiful!","I loved this on the cover of the august catalog. when i saw the pictures online, i was a bit hesitant because the background of the dress looked white, and i wondered whether it would be too washed out for me. not so. i love it! it fits beautifully; the waistline is very flattering. it looks like a dress a model would wear in the 1960s -- not a hippie, but a model in a high fashion magazine. it looks great with boots. the fabric is soft to the touch, so luxurious. i am of polish and lithuanian d",5,1,22,General,Dresses,Dresses +1096,53,Exotic,"I love the fabric and details of this dress!! i was thrilled to see it in person. i plan on wearing it when the weather gets colder because of the styling of the dress. i am choosing to keep the hem where it is, and thus prefer it as a ""colder months"" dress. the poppy flowers really ""pop"" in this dress- love!!",5,1,7,General,Dresses,Dresses +936,38,Didn't work for my curvy hips,This jacket is really pretty and unique. unfortunately the material around the waist area does not lay flat like it does in the picture. i'm 5 ft 6 in and a size 6. i ordered the medium. it fit well but the material around the waist area jutted out making me look really wide. disappointed to have to return this.,4,1,9,General,Tops,Sweaters +936,49,A signature piece,"Absolutely beautiful jacket...the craftsmanship is amazing, and the colors remind me of a impressionist water color. the jacket runs true to size (i'm 5'7"" and 115 pounds with a 30e bust and the extra small fit perfectly). unlike the other reviewers, i didn't have issue with the bottom not lying flat or the collar bunching up. i wore it with a green leather pencil skirt and suede stilettos, but you can also wear it with skinny jeans as well.i got this very deeply discounted, and although it is i",5,1,1,General,Tops,Sweaters +1123,41,Gorgeous jacket,"I was lucky enough to see this in store when it went on sale and although i rarely wear leather/vegan jackets i tried it on. i am torn on sizing i'm normally a m or 8/10 in retailer but the m fit slightly tight in the waist and the l was slightly loose. i ended up with the l in the moss color, since i can layer and don't really want the jacket too cropped. i also saw the brown and tried that on but for me the moss color was much richer.",4,1,3,General,Jackets,Outerwear +877,39,Laid back and stylish,This piece is comfortable and easy to pair with leggings or denim. soft and not too heavy.,4,1,0,General,Tops,Knits +1135,49,Gorgeous; consider sizing up,"This is just as it looks. a minimalist, elegant, dark navy skirt that provides a classic feminine shape and looks like it could last for years. it is straight, so you might want to consider sizing up unless you're quite slender. i'm 5'10"" and 160 and am sending back a m for a l. excited to get my new skirt and to wear it.",5,1,6,General,Trend,Trend +1092,31,Disappointing,"I wanted to love this because it's all my favorites: simple, chic design; pure silk; gorgeous color. in reality, the dress was 100% see-through, very thin, and poor quality silk. i posted pictures of me wearing this dress with a nude slip on underneath that i brought along for shopping elsewhere for business dresses. despite the thin quality of the silk, i was still considering spending this dress (despite it's unreasonably high $$$ for the quality), but after trying it on i was really disappoin",3,0,4,General,Dresses,Dresses +1096,30,Such a beautiful dress!,,5,1,0,General,Dresses,Dresses +1076,58,Totally off the mark,"I didn't have a problem anticipating the fit of this dress. i felt with the drawstrings on each side i could make it work. i usually take a large and even ordered a medium as i had read all the reviews of it running big. when i got the dress, i was beyond disappointed. it is a heavy, itchy polyester-like fabric, not a thin rayon looking texture like the picture shows. it is also a deep black, not the plum color in 4/5 photos. but most importantly, i am 5'8"" and the dress is very short on me. it'",1,0,1,General,Dresses,Dresses +877,65,,It does snag easily which stinks because it's darling and i love it to pieces.... i just hope it doesn't end up in pieces!,4,1,5,General,Tops,Knits +1096,39,Read beardedlady's review,"The previous review by beardedlady said it best: ""yes, i do still feel like a little girl playing dress up in it but i don't care. this is a fun, creative dress to be worn on the days when you feel like having a julie andrews moment."" + + +in my own opinion, i don't think i can wear this without a topper covering the poufy shoulders so i'm happy that i own the dara moto jacket in plum to toughen up the look. i am 38-27-35/36c/135# and the bodice feels a little loose all over with the size 10 re",5,1,1,General,Dresses,Dresses +147,46,,,5,1,0,Initmates,Intimate,Sleep +1123,49,Incredible quality and style,"I had my eye on this jacket (in moss) for awhile. i was afraid the vegan leather wouldn't feel natural or soft but i was wrong. it's wonderfully soft - so much so that every time i wear it and tell someone it's vegan leather, they feel compelled to touch it and can't get over the quality. the detailing is great and the back adds a special, interesting touch. it's become my go-to jacket and works just as well with jeans as it does with a nice dress. and who doesn't love getting a compliment every",5,1,0,General,Jackets,Outerwear +1123,52,Beautiful jacket - feels like leather,"This jacket feels like quality and has beautiful detailing. one thing to note though, the proportions are a little odd - it is cut very high in the back (at the waist) and the sleeves seem over-long.",5,1,0,General,Jackets,Outerwear +936,57,Lovely,"Soft, elegant, beautiful and makes me feel special! what more could one ask for? fit is true to size and has various styling options. best retailer purchase in some time.",5,1,0,General,Tops,Sweaters +877,57,Versatile comfort,"Great wardrobe staple! at 119, i ordered the s and the fit was great. you can wear this so many ways and it's soft!",5,1,2,General,Tops,Knits +935,23,Hooded ludlow vest,This vest is the best!! even though it has no sleeves it truly keeps you warm. it feels like you're wearing a soft blanket around you. it is my favorite!,5,1,0,General,Tops,Sweaters +1096,22,Love,"One word: obsessed. feel like a carrie bradshaw bohemian queen. sturdy and luxurious, pretty fancy, definitely queen-worthy. i&amp;#39;m walzing around my house in this dress listening to john mayer and feeling fab",5,1,0,General,Dresses,Dresses +1096,34,So beautiful!,This dress is stunning. it may be my new favorite thing! i'm not sure where you are to wear this as it is really fancy but i will wear it to work and church anyways--even if it is a bit on the dressed up side. the fit it true to size. i am 5'8 and the length is similar to that on the model in the photo. zipper troubles! i can zip it off of my body--but when one when it comes to the thicker part where the zipper is i cannot zip it--decided could zip halfway and still shimmy in.,4,1,0,General,Dresses,Dresses +877,34,"I love the look, might snag","I love the long tunic with high slits, it's such a great design. i bought this on sale on a whim. i did see that there was already a small snag on the one i purchased right after i took it out of the bag, must have missed that when i looked at it in the store. i still love it, just a little worried based on other reviews that i won't be able to keep from snagging in the future. at the sale price i would say still worth it though!",4,1,1,General,Tops,Knits +1104,25,So soft!,"I was somewhat hesitant to purchase this dress, based on the previous reviews. for me, it fit perfect. the blouse was fine, not too much fabric. the skirt is soft and stretchy. the fit was tts. for reference, i am 120lbs, 34c and i purchased the 4p. it fits great!",4,1,0,General Petite,Dresses,Dresses +975,32,Fabric split apart after one day of wear,"I wore this blazer for one day, didn't do anything strenuous, and the fabric started to disintegrate along the back, next to the center seam. it's completely unfixable, since it's not the seam that split but the fabric itself. what a waste of money. + +as to the fit, it is a boxy cut through the waist. it looks better unbuttoned than buttoned. the jacket also shows a lot of the shirt you have under it, so it's good over something cute. + +or, it would be, if it didn't fall apart.",1,0,6,General,Jackets,Jackets +131,23,Comfy chic,"I saw this romper online and knew i needed it as i love flannels and i love rompers. it's super comfy. i bought with the intention of wearing it out, not just around the house. i think in the fall it will be cute with high socks and boots but as i just got it, i've been opting for tights. lots of compliments so far. i got a small because i didn't want it to be too short, it fits well.",5,1,0,General,Bottoms,Shorts +131,31,Wanted to love,"I wanted to love this romper, but it just wasted right for me. i am 5'5"", 135lbs, 34c, curvy/muscular frame and ordered size small. i may have liked it better with more room in the medium, decided to return. i still recommend trying this product, but it wasn't for me and my hips!",3,1,4,General,Bottoms,Shorts +880,45,Joliette,"I purchased this top in both colors while on sale. it fits true to size. the material is heavier than i expected, but that just means it should hold up for a long time. recommend",4,1,2,General,Tops,Knits +870,39,Casual but with sparkle,"This si=hirt actually has a shimmer to the fabric. it is more of sweatshirt material but i like the thickness, not too thick not too thin. the color is nice in person, and has a shimmer to it. i like the detail in the neck too with the sequins. reason i didn't get it is it felt a little big on me (smallest is xs) and also the color wasn't optimal (i am rather pale). otherwise, i do like the shirt.",4,1,1,General Petite,Tops,Knits +895,39,Red for me,"I meant to order both red and blue and added to red in my basket by accident, oops, meant to be? the color is very nice, not too bright holiday red, but nice rich red. the cut is very flattering too. i didn't expect to love it as much on. i ordered the xxs p, length was not too high/cropped, perfect. the asymmetrical hem gives some visual interest to the sweater, so does the fun neckline with keyhole on the side... fun take on a sweater... for me, the fabric was comfortable. i am 115 lbs, 30dd,",5,1,2,General,Tops,Fine gauge +895,35,Great fit,"I saw this online and was pleased they had it in blue at the store. the blue is more of a gray, but it's a great color. i tried on the small and my daughter said ""you look pretty, mommy."" i was sold! i love the cascade on the side.",5,1,0,General,Tops,Fine gauge +592,58,Lovely but...,I have been staring at these shorts since they first appeared and finally decided to treat myself to them for my birthday. when they came in the mail i was so excited and they in person are even more beautiful and well made then in the picture. but be warned these shorts are rather short so if you don't mind showing a bit of leg these will be right up your alley.,4,1,0,General,Bottoms,Shorts +592,44,Favorite shorts,"I absolutely love these shorts. i do, however feel they run on the large side. i am 5'1"" and normally wear a 24, 25, 0 or 00 and bought these in an xs. i would have gotten an xxs if they were available, but that was not an option. they are a little baggy, but they are so great i could not pass them up. these are too good to pass on.",5,1,0,General,Bottoms,Shorts +895,58,Unique and comfortable design,"Very happy with the fit of this sweater, which is flattering and unique. the ruffle elevates the piece. very soft and a good length for me (i got a medium) in both the sleeves and the body. the hole at the neck gaps a little, which may bug me as time goes on, but otherwise i am so pleased with this sweater that i am willing to put up with it. i ordered this in the red, which is more of an orangey red, which does not suit my skin tone. i will exchange for the blue/gray version.",4,1,0,General,Tops,Fine gauge +895,41,Perfect ruffle pullover,"This sweater is perfect for cool days. the fit is true to size, though a bit longer than in the photos, especially the sleeves (i'm petite). i actually liked the length so did not order petite. the sweater is a relatively soft cotton blend. it is comfortable and the ruffle adds just the right amount of finesse. the ruffle is stitched on all the way, so it doesn't open in front, which is a plus. the blue grey is marled and more grey than blue. the red is beautiful and as pictured.",5,1,0,General,Tops,Fine gauge +880,41,"Well made, good fit","This is a very well made top, i like the cut and it fits true to size. very nice quality and the colors schemes are unique. i'm happy with this purchase.",5,1,0,General,Tops,Knits +843,33,Design flaw,"Loved the look of this shirt online. i tried it on and was sad to see that the frontal view is all wrong. the cool shoulder design is almost too exaggerated (almost looks as if i'm ready for take off!). unfortunately, none of the featured photos on the product page display the frontal view of the model. i really wish the shoulder design was slightly smaller in shape and size - i would have loved it! looks great from the side but sadly i can't walk around like that ;)",1,0,0,General,Tops,Blouses +863,39,"Great product, not so great fabric","I love this brand, i literally live in their tops.. this one is a bit of a disappointment. it is made out of fabric that feels cheap, reminding me of a tissue tee instead of the normal thicker quality of all their other products. it's very thin, and see through. unless wearing a camisole/slip underneath, you have to have the perfect bra and pants situation going on underneath- no muffin tops or back fat!!i got the black, and am keeping it only because i love the design, need a black top desperat",2,0,10,General Petite,Tops,Knits +895,42,Great sweater!,"This looks just as good in person as it does online. true to size. definitely warm, but not too heavy. comfortable as well.",5,1,3,General,Tops,Fine gauge +131,37,"Great design, but poor quality","This romper fits well and is flattering. i love the relaxed style. the quality is quite poor, though. one leg ripped the second time i wore it and the fabric, while soft and comfortable, is fraying and pilling like crazy. after only two brief wears, the romper looks cheap and old. i expect much better quality at this pricepoint. really disappointed.",3,0,0,General,Bottoms,Shorts +592,37,,"These are gorgeous and not too short or too long which is oddly hard to find! they're mostly tts, but if you're between sizes i'd go up a size because the small was slightly snug on me and i'm a 4/6. i'm hopeful that they'll stretch a little with wear because i think the medium would be too loose.",5,1,0,General,Bottoms,Shorts +592,34,Love and hate,"I was excited when i saw these shorts in my local retailer store. i wear a 25 sometimes 26 and i grabbed an xs. however, when i tried these shorts on i was sad to see that they run big and looked baggy on me. they fit, but are really loose. i am probably going to have to return these because they don't come in an xxs. they are great shorts and a perfect length, but make sure you size down.",4,1,2,General,Bottoms,Shorts +870,31,,"I bought this sweater on sale and love it. it's very sweet, comfortable, and unique. it fits true to size.",5,1,2,General Petite,Tops,Knits +880,56,Excellent top,This is an adorable top. i purchased both the green and the blue. the colors and look are so much nicer than the photos of it. this is a stock up item.,5,1,2,General,Tops,Knits +131,45,Outdoor guilt,"I truly feel guilty wearing these outdoors. it is incredibly comfortable, so much so that i asked the sales girl if these were pjs or actually worn out. i'm usually between a s and m. both fit fine, but i went with the m to have a bit more room and allow the top to be a bit more ""flannel"" flowy. the top has enough length that i can actually let it droop over the waist bet a bit. the length is definitely upper thigh on me (5'8"" @ 145), but rest assured, nothing is hanging out. it's actually the p",5,1,1,General,Bottoms,Shorts +975,49,Unflattering cut,"I was excited to see this offered by retailer because i have been looking for a light blue summer jacket or blazer that isn't a denim jacket and this seemed to fit the bill. i've ordered several cartonnier blazers in 00p, as early as 2013 and as late as spring 2015, and have been very happy with them. on the plus side i would say that the color is depicted accurately and it does seem like a high quality jacket. but while the shoulders and sleeves were a pretty standard fit for 00p, it was much too",3,0,21,General,Jackets,Jackets +895,38,Prettier in person,"I first saw this online and was worried the design might look awkward in real life...not on a model, but tired it on in store and it looks great! it has a tighter fit and seems to flair out in just the right place. just the right thickness, not too thin or thick. i am 5'6"", 124lb, 34b and got the xs. i did not try on the s for comparison as i thought the xs fit great. i'm always either an xs or s with retailer tops. blue is definitely more steel. interesting piece! will not disappointed!",5,1,0,General,Tops,Fine gauge +895,47,Adorable - better in person!,"This is cute! i was hesitant to buy, but glad i did. it has a unique cut. the fit is tighter to the body, but it's very flattering. i purchased a xxs petite in the blue color. the blue seems more on the gray side to me, but it is mottled and really pretty. the neckline comes all the way up - as shown. the detail on the neckline and the ruffle shown at a bias is really cool. i love it. pair it with a skirt or jeans. adorable!",5,1,2,General,Tops,Fine gauge +131,48,A must have for every wardrobe!,"This is the softest flannel ever! while i don't think i'd wear it outside, it is super comfy just lounging around. it runs very large, but since it's a flannel romper, not a problem. absolutely recommend for all shapes and sizes!",5,1,1,General,Bottoms,Shorts +1033,21,You had me at hello,"I am very particular about jeans. it's not just the look; it;s the feel and the quality of the fabric that won me over. the mid-rise wide-leg crop is perfection. i'm 5'7"" and a size 8. these are extremely flattering and versatile to go casual or incorporate into a more professional feel. great way to show off some of the fabulous fall footwear options as well. i highly recommend.",5,1,0,General,Bottoms,Jeans +860,30,Comfy but sexy,"Very comfortable, fit over my muscle-y and flabby arms! very pretty.",5,1,0,General,Tops,Knits +1056,20,Roll-ups that are versitile,"These are great pants! i sized up from my typical size 28 because i found the rise to be a little low for me. i tend to like my pants a little higher on my waist. the sa said these ran a little smaller for most. when i got home, i put them up to my size 28's and they were the same. (what woman likes to go up a size?) i purchased the black;great for work and play. i would like the holly too but i am waiting.",5,1,3,General,Bottoms,Pants +1110,57,Beautiful,Love this dress! ?? i tried it on at the store and loved how it felt on. i put it on hold to think about it and returned later that day to purchase. i am glad i did. the 1st day i wore it i received numerous compliments!,5,1,1,General,Dresses,Dresses +1116,53,Absolutely keeping this one,"This is the one. the faux fur i have been looking for. it is plush and heavy so that it should keep me warm and toasty during the dreaded new england winter. i love the richly saturated jewel tones over a base of black . there are only two snaps to close the front but there is enough fabric to overlap to keep the cold away. maybe winter won't be so bad after all.... +one caveat is that the item description is not truly accurate. +i initially ordered a petite since the length stated was almost 37 i",5,1,15,General,Jackets,Outerwear +860,40,Gorgeous top,This top is gorgeous dress it up for work or wear with jeans for a more casual look. the top fits true to size and the lace is not overdone . i would recommend this and can't wait to wear it.,5,1,0,General,Tops,Knits +1110,53,A classic made for modern times,"This dress embodies the retailer brand. the design is unique, and form fitting for just about any body type. beautiful saturated colors and a great cut make it an all around classic. i wish for more of these designs. i originally ordered my usual size 4, but went down to a 2. this dress runs large. looks great with heels or boots as pictured. i am 5'6"" 134 lb. this dress has a timeless quality that you will wear for years to come. at my age, i try to buy things that i will wear for many sea",5,1,1,General,Dresses,Dresses +858,29,Perfect for spring,"Adorable, true to size and just as pictured. there is no hook and eye clasp as stated but still cute. light weight and will be perfect over dresses and summer tanks. wish there were additional colors. i love the white though.",5,1,0,General Petite,Tops,Knits +1033,41,"Love everything about these, except for the butt.","As other reviewers have pointed out, the bum is not flattering. the pockets are wide and the fit sort of flattens you out. bummer. literally. too bad, i wanted these to work more than then coh's parker cropped. the coh's win. my wallet loses.",3,0,1,General,Bottoms,Jeans +1110,51,,,5,1,0,General,Dresses,Dresses +950,31,Beautiful but fit awkwardly,"Beautiful detail and soft sweater. i ordered a medium and the toro so fit well but was short. arms were long and baggy in comparison. given the fit, i didn't think the small would work. really wanted this to work but unfortunately it is going back.",3,0,1,General,Tops,Sweaters +1110,49,Beautiful cut and so comfortable!,"Can easily be worn with boots or sandals - multi season dress. comfortable, flattering cut. slightly roomy, but pretty true to size.",5,1,1,General,Dresses,Dresses +916,42,Light and versatile,"Easy to wear and layer. thin and light casual fabric, not itchy. great basic addition to my closet!",4,1,0,General Petite,Tops,Fine gauge +619,36,,"The fabric is beautiful. didn't wrinkle so much after 8 hours in a suitcase. as opposed to the other reviewer mine arrived neatly, stripes match nicely. i am kind of thick waisted and the size 6 was still perfect for me - i am currently 130 lbs, 34-28-35. love the colors and the fabric, a nice cotton twill, lined, pockets, pretty bow belt. i am not a fan of the size zipper style but it is not a deal breaker. glad i have them !!",5,1,6,General,Bottoms,Shorts +1056,33,Perfect!,"These pants fit the bill! they're soft and very comfortable. easy to wear day and night. these are a little higher on the waist, which i love. purchased two pair! i purchased the regular and they come to my ankles.",5,1,1,General,Bottoms,Pants +1033,45,Great alternative to your skinny jeans,"Love these crops. fitted through hips with full legs. at 5'7 and 125, the 27 fit perfect. these look great with block heels and wedges. denim is lightweight, perfect for fall.",5,1,0,General,Bottoms,Jeans +916,33,Mini version????,"I think i received a mislabeled vest?? when i opened the package, i thought it was some sort of joke! i was expecting what the stock photos show, a longer length flowy sweater vest.... mine was literally child sized. i'm not a big person at all.. i'm 5'6"", 135 lbs, and wear a 6/8. i ordered this in a m/l, thinking i would like it loose. i tried it on thinking, maybe it will look longer once on.. no.. not even. i looked ridiculous. the front hit above the waist of my jeans and the back hit middl",3,0,0,General Petite,Tops,Fine gauge +860,74,Classy,Bought this blouse in white. fits great. can be worn with many things. dressed up or down.,5,1,1,General,Tops,Knits +964,46,Denim joy,My daughter had one and wore it with everything.i ended up getting one myself.it is a perfect weight.,5,1,0,General,Jackets,Jackets +1056,66,Favorite new pants!,"Bought these over the weekend and i am in love! they are very soft, extremely flattering, and the rich green color is fantastic. i may go back for the black. i went with my usual size 28 for reference, and the fit is great. these will be a fall staple, for sure!",5,1,2,General,Bottoms,Pants +1056,53,Most. comfortable. pants. ever.,"These are amazing. so comfortable, true to size (i usually wear a 29 in pilcro and ag and bought these in a 29). i have curvy thighs and a smaller waist but didn't get a gap situation with these. the only issue i have is the length. i'm 5'6"" and wish they were a tiny bit shorter. they hit right at the top of my foot so i keep debating if i should cuff them or not, since the length looks more flattering cuffed but then the actual cuff looks a little weird. i bought them in black for work, and now",5,1,1,General,Bottoms,Pants +860,55,,"This top is pretty and i did not find it sheer at all but i am returning it due to the lace sleeves are tight. but, i do have large arms! other than the sleeves i would keep it!",3,1,16,General,Tops,Knits +626,39,Meh... not doing it for me,Maybe if i sized down to a small i'd like them better.. they look ok from the front. but it seems like the leg was cut way too wide. there is exceess material in the back and leg hole. they are not all flattering to my rear end. overall kind of shapeless and the fabric is prone too wrinkling. too expensive (with the added shipping fee for an online exclusive) for the lack of structure and simplicity.,3,0,5,General Petite,Bottoms,Pants +1110,56,,Can't love this dress enough. i have to force myself not to wear too often. i get stopped every single time i wear it to get complimented. i'm usually a size 6 or 8 in dresses. went with the 8 after trying both on. i found the arms fit better with the 8. i'm pretty athletic and 5'5' around 140 lbs.,5,1,0,General,Dresses,Dresses +858,62,,"I love this sweater, it's so soft, and it seems to mold to my body more every time i wear it. it runs true to size, but i have noticed that as i wear it more and more, it seems to stretch a little. overall, i am very happy with it and would definitely recommend it!",5,1,0,General Petite,Tops,Knits +1033,46,Take the crop jean plunge,"I have a love affair with pilcro and these jeans make my heart throb. i've been stalking these jeans online and tried them on in the store yesterday. i'm 5'9"", curvy, and was concerned that they would make my legs look like tree trunks swathed in denim with miniature cartoon feet protruding from below the hem. not so. they fit like a glove, rested perfectly at my lower calf, hugged around the hips and waist, and flared without looking like church bells. seriously, if you're a cropped pants fan,",5,1,28,General,Bottoms,Jeans +964,39,Fun pretty piece,"But tight around the chest, i ordered xs petite after trying on xxs petite and both are a tad tight on the chest area, kept xs petites as bigger would be too much fabric everywhere else. green color is classic, and the back is longer than the front. overall flattering if with the right outfit. i'm 30 dd and 115 lbs for reference.",5,1,0,General,Jackets,Jackets +1033,53,,,5,1,0,General,Bottoms,Jeans +1110,31,"Cute dress, quality is only ok",I love the look of this dress but wish the bottom was lined like the top is. it's a little sheer without the lining.,4,1,0,General,Dresses,Dresses +950,41,Perfect for fall,"This sweater is just as pictured. the fit is true to size, though it is a looser style rather than fitted sweater. it is short, though not cropped, and the sleeves are 1-2"" too long, but it is still flattering. it hits at the top of my hip and it looks great with high-waisted flares. the scallop detail is perfect, just enough interest, but not overbearing. the material is soft and heavier than expected. it is a good weight for fall. i wish it was made of natural fibers instead of synthetics, but",5,1,0,General,Tops,Sweaters +1033,55,Fun jeans!,Love these new jeans. they fit perfect and are extremely flattering. they look great with a crop style top and flats!,5,1,0,General,Bottoms,Jeans +1116,37,Beautiful colors but poor quality and bulky,"I was excited to receive this coat for my annual travel to switzerland but hesitated to order it online without seeing it first due to the price. it arrived last night with the buttons falling off and a large hole in the front pocket. the lining inside is has a very cheap plasticky feel and i can also see small rips possibly forming in the lining. in addition, the collar on the coat is extremely bulky and the shoulders are padded underneath the fur which makes ones shoulders appear like a lineba",2,0,4,General,Jackets,Outerwear +916,32,"Long, simple vest","I liked this bc it is long, ivory and thin. i think it will be a versatile piece to wear with tees & casual dresses. it has a little hook & button closure up on one shoulder if you wish to wear it more as a wrap. looks cute that way too.",5,1,1,General Petite,Tops,Fine gauge +860,46,Cute tee with a bit extra!,I bought this top in the black color and it's great! the lace sleeves are so soft- not itchy at all and it is very flattering.,5,1,5,General,Tops,Knits +1056,32,Soft and flattering,"These pants are so flattering, comfortable, and silky smooth. a versatile fall staple for sure. i bought my usual 28 and they fit perfectly.",5,1,3,General,Bottoms,Pants +860,52,,Nice twist on a basic t-shirt. pictures don't tell the full tale. better in person. bought the cream one. loving it.,4,1,0,General,Tops,Knits +858,53,,"Oh my this is the best cardigan ever. quality is superb and so soft. i am between a 12 and 14 so i ordered the xl, this cardigan fits true to size. will order more if more colors become available.",5,1,0,General Petite,Tops,Knits +1094,31,Very cute,"I really like this dress! i wasn't sure what to expect when i ordered it, but was pleasantly surprised when it arrived. it fits well and it's very cute and different.",5,1,1,General Petite,Dresses,Dresses +148,48,Adorable whimsical soft wonderful,Purchased as a gift for someone who needs to up her pj ante -- soft cute fun,5,1,0,Initmates,Intimate,Sleep +860,56,Not for large busts,"This top is very sweet and looks lovely on the model. it was not flattering for my larger bust, with the inverted pleat opening at my bustline and spreading out over my waist. the quality is nice, the fit in the shoulders is snug. the length is a bit short for me, but it may lay better on a different body type.",3,0,0,General,Tops,Knits +1110,50,Unique,"I love everything about this dress. the coloring, fabric and flow of it. it's so much better in person than on-line. it's true to size and very comfortable. a great price as well.",5,1,1,General,Dresses,Dresses +1033,36,Cute!,"These pants were pretty different then my typical style, but i love them! they come down a bit longer then i think they are supposed to because i have shorter legs, but i still think they are cute- especially with a heel or clog. good quality, well made.",5,1,1,General,Bottoms,Jeans +1116,40,Fabulous!!!!!,My title says it all. this coat is sure to turn heads everywhere you go. the colors in the coat are beautiful jewel tones and differnt then you will see anywhere. it is so soft and warm and makes me feel fabulous. i feel it fits tts i am short and the regular lent was fine on me. get this before it's gone.,5,1,0,General,Jackets,Outerwear +964,36,Light and sweet,"Online this jacket is supposedly an online exclusive, but i saw it in green at my local store. i had to try it on and i loved it. it does swing but is not to much fabric. the drape is really nice it is shorter in the front and longer in the back. it sort of shows that on the model but is much more noticeable in person. this jacket is not lined and i would say more of a shirt. this is perfect for spring or cooler summer nights or over a tank or short sleeve in the winter. i also love lyocell it j",5,1,10,General Petite,Jackets,Jackets +1110,46,Simply beautiful,"This is a beautiful dress and i would recommend. +but it was short on me (tall), not the midi i was hoping for. and a little too low cut (too much cleavage), i'm a d cup. +since i paid full price, i have to be completely pleased with my purchase, for this reason i will return. +maybe if i had bought it on sale price, then i would keep.",4,1,0,General,Dresses,Dresses +619,53,Runs about 2 sizes too small,I can't believe how small these are. i almost wondered if the size was marked incorrectly. these are so pretty and such a shame because i love them. the rise in the crotch is also very short. very full in the legs and one is longer than the other:( the stripes don't line up in places which is also disappointing for this price!,3,0,14,General,Bottoms,Shorts +1033,46,Disappointed,"Ordered a petite and it was not as dark of a denim like the picture. the pockets on the backside are wide and are not flattering if you have any curve to your rear. makes you look wider than you are! pocket on front are also large, which accentuate thighs. these were returned immediately as it did not work for me.",3,0,3,General,Bottoms,Jeans +860,49,"Has some good things going for it but didn't ""wow""","I tried the green one on in the store, as my store only had the green. the lace was sort of fuzzy-looking and i couldn't tell if the items were shop-worn or if the lace was supposed to look like that. since they all looked that way, i decided it was the look of the original fabric and i tried it on. i do like the combination of the lace sleeves and v-neck. a bit dressy but casual also. although i sometimes appreciate a little forgiveness in the tummy area, in this case the design was too loose a",4,1,0,General,Tops,Knits +860,43,Exceeded expectations,"I ordered this shirt online in green, size small. i am 5'4"" and 120 lbs. +i was a little worried the small might be too long &/or tentlike (i probably would have ordered a petite small had it been available), but it fits great!!! +i love the earthy color combined with feminine lace... unique, comfy, gorgeous!",5,1,0,General,Tops,Knits +1033,55,I. love. these. jeans.,"I just love everything about these jeans, and everyone that sees them on me seems to as well! i'm short (5'2"") and was concerned about the length on me because they didn't have the petite in my size- but these seem to be just fine. i wear them with a bit of a heel, so that helps. they fit snugly (but not too tight) in all the right places, i have a bit of a backside so that's a plus for me! because of the higher waist, they also don't ride down. except for the shorter length, they remind me a l",5,1,2,General,Bottoms,Jeans +1110,66,Lots of compliments,"Bought this dress as good transition piece into our hot fall. don't usually go for the uneven hemline. but got so many compliments, i'm expanding my comfort zone.",4,1,0,General,Dresses,Dresses +1056,40,Get this pants stat!,"These pants are so perfect, i bought 3 pairs. perfect for casual friday's, a night out or the weekend.",5,1,2,General,Bottoms,Pants +1110,40,Beautiful and unique,"This dress is gorgeous in color and print; i think it can be styled as eclectic or elegant as you'd like. definitely runs big in the shoulder/bodice area, so i sized down.",5,1,2,General,Dresses,Dresses +860,58,Beautiful black top,"This top is beautiful on. i did not find it to be sheer in either the black or the ivory, of which i tried both on. i purchased the black as it was more stunning. i am a medium and it fit absolutely perfect. it has a nice pleat in the front, in case you have a teeny bit of tummy. i found it to be very flattering and will wear it as a date top. it will look awesome with skinny jeans or ponte ankle leggings. the body fabric is a lighter cotton. i am 5'4"" and it hits at hip length. it does not have",5,1,19,General,Tops,Knits +1033,46,Super cute,These jeans are adorable! i wear a 10p and the 30 petite fit perfectly. great quality and will look cute with a boxy crop top and flats.,5,1,16,General,Bottoms,Jeans +1080,67,Pretty pretty,"I wanted a dress that made me feel pretty while traveling, when we went out in the evening. nothing really fancy but nice. i saw this right when it came out and the colors and cut were exactly what i was looking for. i am 5' 3"", and normally a size 6 in retailer dresses, but i have a dd34 chest and a little broader ribcage, even though my shoulders and hips are small , which can be tricky. the fit and flare style helps a lot but only if the torso is not too tight. i went back and forth over the si",5,1,8,General Petite,Dresses,Dresses +860,37,Light and breezy,"This top is very light and soft for summer. even the lace is soft. it's not sheer and doesn't require layering. true to size. i'm 5'4"", 34dd, 150 lbs- m fits well. my arms are not tiny and yet the lace weren't tight for me. but the quality of the material is average and it feels like it will last barely one summer. it's good if you are paying the sale price.",3,1,0,General,Tops,Knits +1110,22,,"This dress is seriously gorgeous, and even more so in person. the cut at the bottom is so flattering for curvy , pear shaped, and hourglass shaped women. i sized down so that the dress gave me more of a waist than you can see on the model and it was so much more flattering. love the fabric, fit and style of this dress.",5,1,2,General,Dresses,Dresses +1033,45,Just great,"You do not want to know how many cropped, wide-leg jeans i've tried on. all the rest make me look ridiculous for various reasons....it's not easy to get this style right, apparently. these are great: comfy, make my legs look cute, not chopped off, they are not mysteriously tight in the upper thigh (why do some do that?) they act like trousers with a jean's casual edge. the ""let out"" hem is super cute and they are soft and comfortable. perfect with tucked in or shorter blouse styles. + +i bought",5,1,0,General,Bottoms,Jeans +1056,25,Really great!,"These pants are so great. i was debating between them and some sateen denim style pants from another store, but these definitely take the cake. the fit is awesome--although i am a 26 in the green and a 27 in the black, so that's kind of weird.",5,1,6,General,Bottoms,Pants +1110,51,Versatile dress,"Fun transitional dress for fall that can be worn with ballet flats, boots or booties. true to size. for reference i am 5'9, 138 with an athletic build.",5,1,3,General,Dresses,Dresses +1110,38,Cute dress but runs large!,"I wanted to love this dress but the sizing was too large for me, overwhelming my frame. i am very petite; for reference, 5'2, 24 waist, 30, and usually get an xxsp or 00p but even the 00p was too large in both the waist and especially in the shoulder area. at minimum for fit, i would have had to have the dress taken up but required too much alteration. the skirt is not lined which i found disappointing, given the price. the colors and handkerchief like hem is really cute though but i returned.",3,0,3,General,Dresses,Dresses +1033,41,Wanted to love these jeans,"I really did want to love these jeans but i had to return them. +im a size 10 and a little heavier in the thighs and got a 30. the rise is just to high for me and the thigh was very tight. + +the denim felt fabulous they just fit me a bit funky.",4,1,1,General,Bottoms,Jeans +1080,50,Odd skirt,"I had mixed feelings about this dress. the material is lovely but the skirt is really odd. it has two slips, one that fits close and a second that's a bit too puffy. so the skirt didn't sit well and i thought it made my hips look bigger. the odd length made it unflattering. it might be nicer without the puffy slip but i didn't want to risk it.",3,0,0,General Petite,Dresses,Dresses +1033,60,New favorite jeans,"Love these! loose and comfy everywhere. delighted to have found a 32, and delighted that they are roomy, even at the waist. i exchanged another pair of pilcro's and was afraid of a shipping/pricing conflict, but as usual, retailer customer service was excellent. earlier sale price was honored, easy returns in the orignal shipping bag.. +retailer design, fashion and company attitude excels!",5,1,1,General,Bottoms,Jeans +619,31,Runs 1-2 sizes too small,"I am 5'7"", approx. 135 lbs, 27-28 in jeans, size 4 in dresses. purchased these in a size 8. i would suggest sizing up between one to two sizes. as a result, the upper thigh portion of the shorts do appear a little baggier - plus pleats - can be overwhelming in terms of material - but not so baggy that it would make it ""circus tent""-like. do not expect these to be fitted.definitely a fun pair of shorts. seems like it will go well with sandals, espadrilles, wedges. paired with either a front-tucke",4,1,1,General,Bottoms,Shorts +626,33,Good short,I tried these on in the store and was unsure about sizing. once they went on sale i bought the xs and have already worn them twice.good transitional grey colored short into fall. need to be ironed or steamed after wearing for a while but comfy and smooth out easily.,4,1,0,General Petite,Bottoms,Pants +1033,44,Awesome jeans,"As with my other pilcro pants, i love the fit of these jeans. very soft fabric but don't stretch out too much after first wearing. the fabric is distressed but not so much that i worry about holes forming.",5,1,2,General,Bottoms,Jeans +626,24,,I loved these and wore them once (i bought the red ones) and the stained my furniture and my shirt so i washed them a few times in hopes of getting out all the extra dye- ruined yet another chair!!! so annoyed. i loved them but they are not worth it.,2,0,4,General Petite,Bottoms,Pants +1110,60,"Fun, great design if it was a solid or small print",The only negative about this dress was the placement of the stripe across your stomach,4,1,0,General,Dresses,Dresses +148,49,Tea time sleep pant,I absolutely love these sleep pants. they are very comfortable and the cute tea cups print makes them fun. i have washed them and put them in the dryer and they didn't fade or shrink. grab a pair while you still can you won't regret it.,5,1,1,Initmates,Intimate,Sleep +619,31,,"The fabric quality and style are amazing. the fabric is very high quality and so soft and the style is nice for an adult. i generally don't wear shorts because of length, style and other problems but i can wear these without feeling like a high schooler. i usually wear a 24/00 in pants, i ordered the 0 and was worried that it would be too loose and look sloppy on me but it fits amazingly. one of my favorite purchases ever!!!",5,1,1,General,Bottoms,Shorts +1110,43,Nice flow,"This dress is cut perfectly to have a lot of movement. love the colors. i went with my usual size 2 and it fit generously. i am 5.4 and the size 2 hit about the same as the model. + +my only complaint: it came really wrinkled and will definitely not make a travel dress.",5,1,1,General,Dresses,Dresses +619,35,Size up!,"I followed the advice of the other reviewer and went 2 sizes up, i'm so glad that i did. i'm usually an 8 and i ordered a 12 and they are just right. the pleats made them very flowy in the hip, so it gives a little wider look on me than i really want, but i really love these shorts, so it's not a deal breaker. overall, i am happy with them, but definitely size up!",4,1,2,General,Bottoms,Shorts +1110,33,100% gorgeous,"Wore it this weekend and the compliments were overflowing! it's exceptionally flattering for busty women (i'm a 32dd). i had to size down from an 8 to a 6, but even the 8 looked good, just a bit loose in the bodice. v neck is just right, not too low, not too high. print is gorgeous in person - colors are much richer than the online photo. the flowy skirt is very slimming and forgiving for hourglass and pear shaped body types. but if you have slim hips, you might feel like you're swimming in fabr",5,1,16,General,Dresses,Dresses +1056,40,Greatest pants ever-too bad retailer planned poorly,"I love these pants! best fitting pants i've ever owned. flattering. stretchy/don't stretch out. i am so sad that retailer didn't plan well and stock enough. i bought the black, want the gray and all sizes but 25 and 31 are sold out. i might just buy another black pair so i can have another. i really wish retailer would re-stock these!!!! although these are 5star pants, i rated them a 3 for retailers poor / low stock quantity.",3,1,1,General,Bottoms,Pants +860,41,,This top runs a little bit larger and if you have bat wings you might want to stay true to size. i haven't washed or dry cleaned yet although most retailer shirts i have come to find new to be dry cleaned. otherwise fit is great so is the overall aesthetic.,4,1,0,General,Tops,Knits +148,54,Live this,So nice. lightweight flannel with precious contrasting gingham cuffs. will look stylish on all heights. very impressed with the styling and construction. fits slightly larger than tts but figured that was to account for potential shrinkage.,5,1,20,Initmates,Intimate,Sleep +1110,47,Stunning,"This dress is quite the stunner! i love the mix of patterns and the asymmetrical hem. four stars in quality, though, as it could have a bit of pure cotton in the fabric composition, as opposed to rayon + viscose only. still, a versatile dress, for day or night. i love the length of the petite size (please note i'm 5' 4"") the shortest part of the hem hits right at the knees. a keeper.",5,1,1,General,Dresses,Dresses +619,33,Comically bad,"These looked really interesting online and with the multicolor stripes i thought it would pair nicely with many tops. + +the fabric is nice and sturdy. the colors are more vibrant than online. + +the design however is terrible. when i put them on i double checked to make sure they weren't on backwards- the back is flat as a board but the front has these poofy pockets. the poor fit with the bright stripes gives a ""1920s circus diaper"" look which is not good. + +they're also really tight compar",2,0,0,General,Bottoms,Shorts +1033,55,Jean of my dreams!,"These jeans are perfect--exactly what i was looking for. i was afraid the rise might be too high but it was just right, well below the belly button. i abhor anything resembling a ""mom jean"" rise. they will look really chic with boots as well as sandals or flats. i have lots of pants in my wardrobe but i have a feeling this will be a favorite pair.",5,1,2,General,Bottoms,Jeans +1110,45,Perfect dress for almost any occasion,"This dress is beautifully tailored and so flattering. i feel very comfortable wearing it to work because of the sleeves and neckline, but think it would also be good to wear out. i'm so happy i bought it.",5,1,0,General,Dresses,Dresses +619,31,Super cute and super small,"I adore eva franco but these are just not thoughtfully designed regarding fit. i wear a size 12 and took the risk of ordering the 12 as a popback, but they do fit 1-2 sizes small. i could get them zipped but it's not a good look. i feel like the waist would fit if the rise weren't so short. for reference, i have a 33"" waist and 42"" hips.",3,0,0,General,Bottoms,Shorts +844,31,Boho chic at it's finest!,I love this top. i typically wear small in most retailer tops and decided to size down in this to an xs and i'm glad i did. well made and cute floral design that can be worn year round.,5,1,2,General,Tops,Blouses +1110,41,Super unique great fall dress,"This dress is simply unique beautiful! i said it runs large, but that only because the bodice is a little looser than anticipated. i decided to stick with my normal size 0 though so i could have a little extra room. for those wishing for a tight fit, size down. i love the colors in this dress; i typically shy away from bright colors and pinks but paired with the muted yellow/brown",5,1,3,General,Dresses,Dresses +1094,34,Extremely soft and comfortable,"I saw this in the sales rack and decided to try it on, and i'm so glad i did. it looks very ordinary on the hanger, but, in fact, it's a very surprising find, as others have mentioned. +_____________ +pros: +- a-line so you could go down a size for a slimmer fit. +- the zipper in the back has an attached pleather-like tag to help in zipping the dress up. i found this extremely considerate and smart; most dresses don't have this. +- lots of stretch and very, very comfortable. i can see myself wearing",4,1,1,General Petite,Dresses,Dresses +950,38,Heavy and boxy,"I love this sweater's rich color and good quality, but the fabric is very thick and heavy, the neck opening is too wide, and the length is too short to be flattering not on my tall (not model skinny) frame.",3,0,1,General,Tops,Sweaters +1056,47,Very nice and versatile pants,"I'm typically a 27. this 27 seems snug but there isn't a 28 in petite so i'm keeping these 27 petites. i ordered 27 regular also and they are too long. i'm 5'4"" 128lbs. they are very comfortable. hope they stretch just a tad.",4,1,0,General,Bottoms,Pants +1056,59,Great travel pant!,I travel a lot and like to wear something other than jeans when i go out in europe. these pants are comfortable and yet i can dress them up. great fit and really nice fabric. i bought these in two colors.,5,1,1,General,Bottoms,Pants +1110,36,A stunner,"Gorgeous colors, high quality. my only word of caution is that the top part is very tight. if you have a large chest (c+) this is going to be snug, or not fit at all. i'm wearing it now in pregnancy, but i think it will also look great post-partum. can be dressed up or down.",5,1,0,General,Dresses,Dresses +1116,53,Awesome,"Tracy reese always pleases. this coat is absolutely awesome. it is gorgeous! the faux fur is soft and cozy. this coat is warm. i love the snap closure. this is the sort of attire that makes you feel lovely and is cheerful for those dull winter days. so happy to have in my wardrobe. a collector's item, for sure.",5,1,0,General,Jackets,Outerwear +1033,41,,"I love these jeans. at first, i was unsure of what shoes to wear with the length of the crop. i don't wear block high heels ( as pictured) everyday chasing after my boys. but once i figured out which shoes looked cute i was in heaven. the fit is very flattering and it will be a great jean for everyday fun!",5,1,0,General,Bottoms,Jeans +1110,54,The look!,"This dress has a charming ""carefree"" look that invites fall.",5,1,0,General,Dresses,Dresses +1110,45,Beautiful,This dress is absolutely beautiful. i wear with with a flat shoes gold. i got a lot of complaints. i was witing the fall season finale antro bringing what i want.,5,1,7,General,Dresses,Dresses +1080,44,Vintage princess,"I am a big tracy reese fan, she knows how to cut a dress to flatter the best and hides the worst of a woman's body. i'm 5'2"", 34b, 26 waist, 36 hips and size regular 4 fits very well, it makes my waist look tiny which is awesome and the length is right at my knees. the v neck is a bit low cut so i would need a camisole if worn to work. i like the 2 layer skirt slip, but the ruffle part at the hem needs to be steamed straight or the dress would look too bumpy. colors are rich and unique!",4,1,0,General Petite,Dresses,Dresses +1110,65,,"What a fun dress to wear. it feels great, and looks great. i feel good when i wear it. if i was a kid i would wear it everyday, ha ha.",5,1,17,General,Dresses,Dresses +860,58,,"I'm in between a medium and a large and i ended up with a large because of the sleeves, which are fitted. the sleeve looks loose on the model, but i have some muscle on my bones. the v-neck is a little low and i will probably war a cami underneath, something i would have done in a medium as well. overall i like the top, i got the green. it has a nice style and will stand alone in warmer months without a jacket or sweater over it.",4,1,1,General,Tops,Knits +1094,43,,Pleasantly surprised with how cute and flattering this dress is. i'm about a size 12 and the size l fit perfectly. the bit of a line to the skirt is very flattering. and the knit is not too clingy.,4,1,1,General Petite,Dresses,Dresses +1033,36,My new every day jeans,I just wore these for the first time and they are so comfortable. the mid rise waist is not too tight as many jeans are on me and the fitted hips keeps the wide leg crop cut from being frumpy. i wore them with sandals and i think they will wear well with booties and boots as the weather gets cooler too. they are a substantial weight jean not just for summer. these jeans will be seeing a lot of wear.,5,1,1,General,Bottoms,Jeans +1033,48,More faded than they look here,"I stopped into a store near me specifically to try these on given how adorable they look here. while i liked them, i didn't love them. i love some stretch, so that part was good. however, the denim was much thinner and lighter colored than they look to me online here. + + +i really want to love them, though their light color has me less enthusiastic. another reviewer also mentioned a butt-flattening effect, which i noticed also. i might have sprung for them anyway, they do have a cute shape, bu",3,0,0,General,Bottoms,Jeans +964,24,Unexpectedly in love,"I at first only intended to try this jacket on and get a feel for the fit and style, as i've been looking for spring/fall in-between weather outerwear. but i unexpectedly (and maybe unfortunately for my bank account) fell in love instantly. the fabric is very soft, and the cut is cute, stylish, and flattering. the quality seems good, and the fit is perfect. i ordered an xs regular in the moss color.",5,1,0,General Petite,Jackets,Jackets +1033,55,,,5,1,0,General,Bottoms,Jeans +1072,33,Cute but thin,I was very excited to get this but very disappointed once it arrived. the fabric on the back is thin and clingy. i think you'd have to wear a slip underneath. cute design on the front but sadly it's going back.,3,0,0,General,Dresses,Dresses +996,59,,Beautiful skirt but runs small. not for eveyone- this is for those with flat stomachs. i had to size up from a 6 to an 8 for my stomach to not stick out in this skirt and then it looked to wide on the bottom and lost the slick pencil look. if you are fit and firm this is a gorgeous skirt. it is lined and fabric somewhat heavy.,4,1,10,General,Bottoms,Skirts +1020,52,"Great color, great skirt","Overall, quite good red skirt, though a little clingy material. good that it has lining. the waist is elastic. xs fits great on me (5'4"", 120lbs).",5,1,0,General,Bottoms,Skirts +1039,44,Don't bother,"These are terribly unflattering the wash looks dirty and the rise is not 10.5 like the description says, which is the only reason i gambled on these it is 13"".",1,0,0,General,Bottoms,Jeans +1094,29,Great quality and flattering,"I'm a new mom, and am thrilled at the structure and quality of this dress. it gives me a great shape, very flattering. i can wear it to work with a jacket or dress it up with jewelry for a fancier event.",5,1,0,General Petite,Dresses,Dresses +1111,26,"Beautiful in the pic, fits kind of funny in person","I was really hoping that this dress would fit perfectly because it looks beautiful on the model! however, when i put the dress on, there is a seam where the top portion meets the bottom portion and it made the skirt stick out a ton. i ordered the 0p and i am 5'4"" 110lbs. maybe ordering this dress in a larger size would prevent the skirt from looking so full at the top.",3,0,0,General,Dresses,Dresses +1020,62,,"Tried this skirt on in the store and loved it...so pretty,feminine and versatile,except for the color.. although its a gorgeous color and i do love red,how often do people wear red skirts? i would have snatched it up if it were offered in other colors. unlike the other reviewer,i think the ruching is great as it gives you the option to wear the skirt higher or lower on your waist and adds the axtra interest factor. as this would be a totally frivolous buy,i'm going to resist and try to wait for",4,1,2,General,Bottoms,Skirts +1033,41,,"I love the cut of these pants! kind of a flare, kind of a boot cut and super flattering. they are long so really need heels to keep a nice leg. they have tons of stretch so i could wear two different size. i choose the smaller for a little less length in the leg. i consider them more pants then denim.",5,1,14,General,Bottoms,Jeans +1094,22,Great cut,"This dress is a beautiful cut, and thankfully, it comes in petite so it fit my frame. i ordered it in my usual size in both 2r and 2p and will be returning the r. checks are cute and can be dressed up for work or for social event depending on goal. fabric is a little scratchy but texture and cut are great.",4,1,0,General Petite,Dresses,Dresses +1072,25,,"I'm not normally one to spend $89.99 on a dress from retailer, but when this dress arrived in the mail it was a no-brainer that i would keep it. it hangs beautifully on your body and the fabric is extremely comfortable the tie at the waist is really flattering and the neckline adds a little bit of fun. i imagine it can go from season to season pretty easily: springtime with a cardigan and flats --> summer with wedges --> fall with tights and boots. i love pieces that can serve different purposes a",5,1,1,General,Dresses,Dresses +1056,42,"I ""heart"" this!",I purchased this jumpsuit for christmas parties this year and have received so many compliments. it's a great fit and very comfortable. i especially love the pockets! very flattering.,5,1,4,General,Bottoms,Pants +1020,26,The skirt,"I honestly can't say enough wonderful things about this beautiful skirt. it is so soft and comfortable, very flowy and flattering, i have a smaller waist but wider hips, and this accentuates all of my best features! i highly recommend this skirt for any occasion! i wore it to my bridal shower and got soo many compliment and i really couldn't stop touching the material. what a wonderful addition to my closet!",5,1,0,General,Bottoms,Skirts +1094,39,Flattering and rich colors,"The burgundy and black dress is stunning on. beautiful cut and colors. i think +i do need the petite however. the material is not as stretchy as other dresses, but the dress does keep its shape.",4,1,5,General Petite,Dresses,Dresses +1094,38,Vintage - classic style,"I bought this dress online because it looked interesting and on sale for $30 why not. i think it looks unassuming on the hanger but on it is fantastic. i am 5' 3"", 150 pounds, 34d and the 8 fit me perfectly. it accentuates the curves without revealing anything. will be perfect for fall/winter but am going to wear it to a wedding in june where the bride is a vintage loving person so i think with the right shoes and jewelry it will be perfect.",4,1,0,General Petite,Dresses,Dresses +1020,36,Luxurious!,Fits great and just as pictured. the material is very smooth and slinky.,5,1,0,General,Bottoms,Skirts +1094,52,,Perfect slimming fit. wore it to work and then on to a holiday party. received multiple compliments throughout the day and evening!,5,1,4,General Petite,Dresses,Dresses +1094,35,"Completely agree, not worth it","The design is very flattering and holiday appropriate. but like many maeve dresses it is absurdly overpriced for the cheap materials used. although figure flattering, the zipper is so cheap that --it runs along the left side -- it bubbles out ruining the sleek look of the bodycon dress. and the rough cheap poly is not worth what they're asking for it. maybe find this on the sale rack but not at retail",2,0,9,General Petite,Dresses,Dresses +1094,36,,"I loved the fabric design. the fabric itself is a bit strange to the touch. i'm hoping it will soften with time. and the smell from the fabric is a bit strange. however, i love the fit and cut and pattern. i will gently hand wash it and hope for the best.",4,1,0,General Petite,Dresses,Dresses +1020,40,Love it!,It's a beautiful skirt. the color is vivid and the skirt is flattering.,5,1,2,General,Bottoms,Skirts +1094,32,,"Got the wine color and love it! the design definitely is slimming! 5'1, 120lb, got size 4.",5,1,0,General Petite,Dresses,Dresses +941,55,Beautiful periwinkle softness,This sweater is gorgeous! the color is a true periwinkle which really attracted me to it. the bell sleeves are a nice change. i have very long arms and they fit perfectly. i could wear this sweater out.,5,1,2,General,Tops,Sweaters +1020,38,"Beautiful cut, fabric not so great","I love the skirt! the color is beautiful, but i didn't love the fabric. it's too delicate and not great for a mom with two busy boys.",4,1,0,General,Bottoms,Skirts +1033,38,Lean and long,Love the high rise and stretch of this jean- i feel long and lean which is tough for a short curvy girl! i feel these run a little small for pilcro- i went up a size.,5,1,2,General,Bottoms,Jeans +830,41,,This top is so pretty. the fabric is absolutely gorgeous and the lace on the collar and back add an elegant old world vibe to this beautiful blouse. it is very light and flowy and i can imagine it will be nice and cool for those hot summer days to come. i am rather large chested so it does look a little tent like from the side but that is not the case fron the front and honestly i really don't care because it is so comfortable and pretty. i know i will wear this top quite a bit this summer.,5,1,2,General,Tops,Blouses +1094,64,Wine color extremely drab; styling unflattering,"I wanted this dress in wine for a holiday party. but it just has no life whatsoever. unlike prior reviewer, i found nothing to dislike about the fabric. the fabric is fine and the fit is fine. i'm sometimes an 8 and sometimes a 6; took this in an 8 and definitely would not size down. it's relatively close- and well-fitting, but the sleeves and neckline further ruined it for me. the sleeves are shapeless, long and baggy. the neckline is just blah. it needs to be neater, trimmer, more cut. the ruc",3,0,25,General Petite,Dresses,Dresses +1008,40,,"This is interesting material- very heavy and smooth. it is fits great, i was able to size down. the color is a brown/copper and should match most things. overall, it is a great skirt for colder weather since it is thick material.",4,1,0,General Petite,Bottoms,Skirts +1094,45,Great fit!,"I needed a modest dress with sleeves for a few events, and when this went on sale, i thought it might fit the bill. it does, and at under $30, it was a no-brainer flattering fit, attractive, tts, and the gathers over the middle hide my mommy tummy. i like that i can wear a normal bra with it, too. i can see what other reviewers are saying about the weird feel of the fabric, but it doesn't bother me. this dress will work well for evening and winter events and i'm glad it's in my closet.",4,1,0,General Petite,Dresses,Dresses +1094,62,Curves ahead,I love this dress. the fabric is creative...checked lace. the silhouette is figure flattering. work appropriate and can wear it for dinner with a change of shoes and jewelry.,5,1,0,General Petite,Dresses,Dresses +1072,52,Love!,"Love, love, love this dress! the color is a beautiful blue grey, and the peach embroidery has just a tiny bit of sparkle. can be dressed up or down.",5,1,0,General,Dresses,Dresses +1085,43,Expect it to be the same length as on model,"It was a little shorter than i expected i am 5'8 and 125 pounds. i ordered the extra small and it was a perfect fit aside from length. at 42 yrs old, i can't wear mid thigh dresses to work. hit hit me at the same length it hit the model in the picture.... even though she is 5'10. if you are 5'6 and below this is a beautiful dress",4,1,2,General Petite,Dresses,Dresses +1013,31,"Lovely fabric, unsure of fit","The fabric of this skirt is absolutely beautiful. however the fit, albeit unique, is not extremely flattering in my opinion. it may be because i am somewhat of a pear/hourglass shape rather than a more straight shape, but the fit is a little off imo. i am 5'8"" and 135# and ordered both the 6 & 8 and felt the 8 fit a little better.",3,1,0,General,Bottoms,Skirts +1033,57,Black pilcor pants,"These are called jeans but they aren't exactly jean material. they are black with a nice stretch to the fabric. a bit tighter on the thighs than the flare jeans but the stretch to the fabric makes it work. i like these very much, a very slimming effect. mid rise- which looks very chic.highly recommend!",5,1,1,General,Bottoms,Jeans +1094,49,,Love the perfectly placed ruching. the red lace over black and elegant. fits like a glove. gives me great curves,4,1,0,General Petite,Dresses,Dresses +941,46,Beautiful sweater,This beautiful blue sweater was exactly what i wanted!,5,1,0,General,Tops,Sweaters +1072,51,Loved how the front looked.,"I liked the way the dress looked in the front, but the material in the back was knit and very clingy. i did not think it was flattering on me.",4,1,0,General,Dresses,Dresses +1008,26,"Simple , lovely color. interesting neoprene fabric","I usually wear size 4 but the 2 was perfect, 4 would have definitely been loose. really nice zipper in the back, this skirt is thick and has a stiff/bouncy construction to it due to the neoprene which i was worried would make me look large but it is still soft enough that it doesn't do that. i usually have to get petite for retailer and this was no exception, the nonpetite goes beyond my knees awkwardly... + +strangely enough, my only criticism for this is that the outer shell seems to get largish w",5,1,0,General Petite,Bottoms,Skirts +1033,46,Love these!,As always these pilcro pants did not disappoint. i can always order a size 26 and know they will fit like a custom pant. i actually like the fit on me better than shown on the model. there is no crotch hang like in the photo. i need to wear heels with these because of the length but heels and flares are very slimming.,5,1,1,General,Bottoms,Jeans +1094,45,Elorn will be worn,Great dress for a party or a more conservative event. love the style and fit. a little hard to get on and off...,4,1,1,General,Dresses,Dresses +1020,44,Simply sweet skirt,"I was so surprised to find this in the sale. it is beautiful. light and airy while lined. the color is bright and fun. it is so comfortable. i ordered an xs based on reviews (this is my typical size in this type of style) and it fit great. i ordered the regular length even though i am only 5'4"". i am about 120#. will be an easy ""go to"" skirt to throw on for a casual look or can be dressed up. did i mention comfortable?",5,1,0,General,Bottoms,Skirts +1094,48,"Good dress, makes your figure look great","This dress worked well on me (not too curvy). it's fitted and enhances curves in a nice way. the patterns looked nice, too.",4,1,2,General,Dresses,Dresses +1020,48,Good skirt,"This is a good skirt, although i think the fabric keeps it from being great. it fits well, has a good shape, and drapes nicely. the synthetic material is ok, and i'll keep it, but it may limit the use. i'll wear it to work, but probably not to nicer events.",4,1,0,General Petite,Bottoms,Skirts +941,45,Thick and cozy,"I love this sweater, especially the sleeves. i'm 5'2 and athletic so i don't' feel that it is the most flattering for my figure but i love it so much that i kept it!",4,1,0,General,Tops,Sweaters +1094,36,Nothing special,"I tried this dress on in the store. it looked frumpy. the ruching was not flattering. the fabric felt cheap. i think for the price there are plenty of other options for dresses than can give you a ""wow"" look. i'm 5'1"" 107lbs and the 0p fit fine.",3,0,0,General,Dresses,Dresses +941,48,Itchy,"Cute, but very itchy! have to wear a long sleeve tee underneath!",2,0,0,General,Tops,Sweaters +1020,75,,"The color is nice and the material is what you might find used by a high school drama club with a low budget - a very cheap polyester. on top of that - it is unhemmed and unfinished in any way - so you can bet, that about the second or third wearing there are going to be runs all through the thing. i've attached a picture of the ""hem"" below. on top of that - the ruching is awkward (as mentioned by another reviewers). all in all - kind of terrible.",1,0,0,General Petite,Bottoms,Skirts +1039,44,Mom jeans worthy of a snl skit,"Woah, these jeans looked ridiculous on me. i felt as though it was 1987 and i was raiding my mom's closet. the combination of the light wash, the crop leg and high waist with the odd stitching around the midsection make this a no. it really accentuates any pouch you may have. i was looking for a high waisted denim but these are very unflattering. i am 5'3"" / 140 curvy. no, no, no!",2,0,6,General,Bottoms,Jeans +1072,29,,"This is a beautiful dress! blend of materials give it a great feel, the cut and style are very flattering. colors allow it to be carried over multiple seasons either on its own or layered for colder weather! very happy with this investment!",5,1,0,General,Dresses,Dresses +1094,24,,,1,0,0,General,Dresses,Dresses +941,42,For people with really long arms!,"I am 5'3"" and the arms of this sweater run at least 2 inches past my finger tips. if the arms were not quite so rediculously long then i would definitely keep it but unless you are tall, it just doesn't work. also, i felt the length of the waste was a little shorter than what is pictured online. sigh.",2,0,0,General,Tops,Sweaters +941,28,Nothing to rave about,"This sweater is ok. i love, love, love bell sleeves so i thought for sure this would be perfect. i thought it would be a great sweater to transition from winter to spring, but once it arrived, i knew i had to return. the sleeves are not only bell but very long and the sweater fits chunky on your midsection. i like my sweaters more flowy. if you like fitted-style sweaters that are a bit roomy you would like this once. also, it's a bit itchy for me-but i'm rather sensitive and if i'd loved this on",3,0,2,General,Tops,Sweaters +1020,33,"Flexible, forgiving, lightweight","Great summer skirt, can be dressed up or down. the band top is weird, but you don't have to style it as pictured. i may get the top hemmed down the road. + +i have a 32 waist and got a size large.",3,1,3,General Petite,Bottoms,Skirts +1033,37,Loved the style/didn't work for me,"I love the style, but it didn't work for me. i ordered the r size. they were way too too long. i generally wear size 26, and the r length works with most retailer pants. with this particular pant, i could barely pull up the zipper. i'm not sure what happened bc i haven't gained any additional weight. i am 5'2, and 110 lbs. unfortunately, i had to return the pants. i think the design is for supermodels. maybe a petite size would have worked? the p was out of stock. good luck!",3,0,0,General,Bottoms,Jeans +1020,33,Simply beautiful,Love this skirt. super soft and flowy. the red color is beautiful. i love the detailed raunching for the waist band. the length is perfect at my knee is i wear it empire waist style or below my knees if i wear on my hips.,5,1,0,General Petite,Bottoms,Skirts +1094,48,Pretty and simple,While being stylish. the dress is well made and comfortable.,5,1,0,General,Dresses,Dresses +1020,65,Gorgeous skirt!,"This skirt is so ladylike and light as air! the cherry red color is beautiful - just as pictured. i can imagine so many opportunities to wear this skirt. with a sweater and tights now, and maybe a striped tee and sandals in the spring. +i'm sure i'll have this gorgeous classic in my wardrobe for a very long time to come!",5,1,3,General Petite,Bottoms,Skirts +1072,35,"Beautiful, but needs alterations.","I tried the size small on at my regular store, and thought the subtle, sophisticated color and the embroidered pattern were beautiful, though the dress was clearly too long for me in the shoulders, neckline and armholes, and the lower hem. + +i ordered the small petite online, hoping that it would fit perfectly, but the top of the dress fit the same as the regular size had in the store. the only difference was that the bottom hem was a little shorter and a better length for me. + +i bought the dress",4,1,1,General,Dresses,Dresses +1056,47,"Flattering, great material",Beautiful emerald green color in a lovely silk. i suggest one size down if you're small chested as the arm holes will fit more snugly.,5,1,1,General,Bottoms,Pants +1072,26,Love this dress!,"Love this dress! i've been looking for a nice nursing friendly dress for a while and this one is perfect! its so soft and hangs nicely. its very versatile and can be worn for multiple seasons. i ordered a size small which fits nicely, but could have done an xs or small petite. (for reference, i am 5'2"", 118 lbs).",5,1,0,General,Dresses,Dresses +996,38,Color is too muted and material is odd,It does run a little small. my regular 2 fit but snug. the colors were drab and the material felt like straw. the lining is really silky and nice. just didn't work for me .,3,0,5,General,Bottoms,Skirts +1020,31,Awkward ruching at waist,"This skirt looked absolutely beautiful in store and took my breath away. i immediately headed to the fitting room to try it on, but was disappointed by the awkward ruching. if this skirt has removed that upper portion and kept a normal waistband (thereby also shortening it to knee length), it would have been lovely. it should be noted that this is midi-length, which is awkward on me. i was unable to find a cute way to wear this which is disappointing since it could have been lovely.",2,0,10,General Petite,Bottoms,Skirts +1072,48,Super cute!,"I am typically a 14-16 and the dress is true to size. (xl) i live that the embroidery runs the full length of the dress. i also like the shimmery side seam detail. the front cut near the shoulders is very flattering on. one minor issue is a gap in the bosom area due to button placement. however, i plan to add a snap t i fix. i often have this issue as i am large in that area. the length is flattering as well and provides great coverage in the rear. lightweight and flows nicely. the color is wond",4,1,1,General,Dresses,Dresses +1072,23,Comfortable & lovely,"This dress is incredibly soft, comfortable, and essentially lined (i mean, look at all that intricate embroidery... your skin has no idea it is there). the colors are lovely (the embroidery is sort of a soft peachy cream lined with gold) and the dress is even prettier in person. the neckline is low, but not too revealing, and, though i normally avoid shirts without sleeves, the cut is flattering around my arms. the cut of the hem is also flattering. in some ways, the belt seems like an extra pie",5,1,1,General,Dresses,Dresses +1094,47,Sale!,Fantastic price right now and very flattering!! cute and sexy dress that hugs but its forgiving!,5,1,0,General,Dresses,Dresses +1078,41,Love it,Very versatile dress. runs a bit large i am 5 foot 2 (105 lbs) and ordered the xs petite and it fit perfectly!,5,1,0,General,Dresses,Dresses +1078,42,Runs very large,"I fell in love with this dress online, but it just doesn't look as nice in person. first of all, it's huge. i usually take a 4-6 in dresses. i ordered a size 4 in this, and it was like a sack on me. i would have needed at least two sizes smaller. however, after seeing it in person, i didn't love it enough to order a smaller size to get a better fit.",3,0,0,General,Dresses,Dresses +1078,37,"A unique, fun piece","I really like this dress. i tried it on in the store and i had to take it home with me. the print is fun and bright and interesting, without being over the top. the grommets give it a little bit of edgy balance to the sweet, flowy shape. + +a note on the the fit: i am a 12/14 and the 12 fit well. it is a bit loose in some places, like the waist, but it certainly doesn't look like a maternity dress. i think the looseness is a good part of the overall look. i am high-waisted, and the waistline hit",5,1,2,General,Dresses,Dresses +1038,47,Comfy,These are very comfy and look great on! i would like to get a second pair in the lighter color.,5,1,0,General Petite,Bottoms,Jeans +819,40,,Super cute plaid top. i love the colors they are vibrant and go well with my fair complexion. it is a short top and would pair well with high waisted jeans or skirts.,5,1,0,General,Tops,Blouses +1078,41,Slightly annoyed,"As with other maeve dresses, the fit is great. i love the empire waist with stud details. the slip is nice and stretchy and i really like the flowy chiffon look over a fitted slip. i'm not too keen on the way the sleeves tie and find that the ties get in the way of everything. when i first saw this online, i was super excited to find it in the stores because i loved the big orange snake that is on the back of the dress shown online. however, only the smallest size had the great snake on the back",3,1,6,General,Dresses,Dresses +1126,33,Cute jacket but not good quality,"This jacket is really cute! however, the mesh is really fragile. i've had the jacket for a month and noticed a huge tear down the back shoulder. it doesn't fit me tight so i'm not sure how it happened. every time i wear it i'm super paranoid about snagging it on something. like i mentioned before, the jacket is cute. it's lightweight and the design is unique. but if you want to get more than an occasional wearing out of this then don't bother. i'm hoping i can return it otherwise that's a lot of",4,0,0,General Petite,Jackets,Outerwear +862,50,Beautiful!,Love love love this blouse the cut outs at the top just add to it's elegance,5,1,0,General,Tops,Knits +1078,39,"Like enough, but passed","I ordered the 00 p after trying on the regular 0, and that was better. it runs wide, the lining is true to size, but the overlay is loose. the colors are pretty, the design is nice, but i didn't love it as much as other ones. + +likes: the studs add an edgier look to a almost dainty look (flow y sheer fabric). the cut is flattering if you get the right size (recommend one size down). + +no big dislikes...why i would still recommend. + +115 lbs, 30dd chest, 26.5 in waist... 00p",4,1,0,General,Dresses,Dresses +819,39,"Very cute, short","This is very cute in person. i love the colors, a tiny bit brighter in person. it is very feminine, with the ruffles, but with an edge. not too foo-foo. i tried no the regular size and it was a little short even on me, i would have to wear with higher rise pants, or show some belly... no petite on this one. the size 0 fit me at 115 lbs and 30dd chest. the material is light and airy, so great for warmer days. love it but in my wish list, didn't get it yet,...though the day it showed up at my loca",5,1,5,General,Tops,Blouses +1078,31,Misleading product photos,"This was the dress i was most excited about in the new arrivals, but sadly it didn't live up to expectations. unlike the first two product photos, the dress is baggy and empire waisted, and the black trim is the thin one shown in the last two product photos. the dress is slip on with no zipper or tie, and on me there were about 4+ inches to spare at the waist. all in all it felt sloppy, such a shame as i would have loved the original design online. + +anyhow, i wanted to share photos of the real",3,0,2,General,Dresses,Dresses +1038,48,Love these!,"I just love these! i ordered these in both the lighter and darker denim in my usual size 28. they fit just right, just like my other pilcro jeans. i'm only 5' and the petite version was not available so i will have to get them altered but that's typical. i love the wash in each of them and the distressing is good, not over-the-top. i'm so glad i got these! and the sale price was a bonus!",5,1,0,General Petite,Bottoms,Jeans +1078,55,Awesome dress,"I received many compliments on this dress. for a maeve dress it did run large. i normally take a 4 or 6 in maeve but with this dress i bought the size 2 and it fits perfect. i am 5' 2"" and 120 lbs. i have a little belly and this dress hides it well. beautiful colors and nice shape. it also hits at my knee so it is perfect for work.",5,1,1,General,Dresses,Dresses +1078,41,Love it!,"I saw this dress and fell in love right away! this is right up my alley, super comfy, perfect fit and love the stud detail. can't wait to wear!",5,1,1,General,Dresses,Dresses +819,34,Nice light weight top for summer!,"I found this top really flattering on. i originally ordered a 6 and found it a little too big. the 4 fit perfectly, it falls around your belly button area so a little of your stomach will show. it has a flattering scoop neckline and the ruffles give it that extra flare. very light weight for the summer, colors are brighter/better in person.",5,1,0,General,Tops,Blouses +1126,71,Incredible find!,"I originally bought this jacket in a medium, but the sleeves were a bit long and overall fit a little big. i decided to exchange for a small and i am so glad i did!! this jacket feels great and the sleeves hit at just the right spot in the small size. i normally wear a 6.",5,1,1,General Petite,Jackets,Outerwear +1078,35,Pretty and flowy,Very cute and would transition well season to season with different boots/booties. didn't lay well on chest for me. returned it.,3,1,0,General,Dresses,Dresses +819,69,,This was a very odd fitting top. i should have read the description more closely. the colors are beautiful but the cut hit me in all the wrong places.,1,0,1,General,Tops,Blouses +1116,53,Run and buy this coat today!,"I ordered this coat as it was on sale but it was so nice it would have been worth full price. i am 5 feet 1"" and 110 pounds - i ordered a 4 petite as i like jackets a little larger for a sweater underneath but i could have used the 2 petite as well. this coat is heavy - so also very warm. it is a little shorter than on the model. the colors are more vivid the blue is a denim wash blue not navy blue - it fits fabulously and the quality is great. i wore it to dinner with a navy turtleneck and must",5,1,1,General,Jackets,Outerwear +1078,39,Love this dress!,I purchased this dress for a special occasion and am delighted it's exactly what i was hoping for. everything from the way it fits to the way it feels is perfect. i highly recommend it!,5,1,1,General,Dresses,Dresses +862,60,,This top is lovely to look at and to wear... one to reach for frequently,5,1,2,General,Tops,Knits +1116,60,5 star perfection,"Run to purchase this jacket. i am in love. it surpassed my wildest expectations when it arrived. beautiful coloration, comfortable fit, fantastic fabric and gorgeous collar. i am so glad that i ordered it. please use this exact same design and offer this same jacket in other colors and patterns. i can't say enough good things about this item.",5,1,5,General,Jackets,Outerwear +873,48,Luxurious!,"I just received the acacia swing tank and when i pulled it out, i felt like it was christmas day all over. it hangs nicely and felt luxurious on my skin. even my husband was dazzled. the detailing of the flowers is delicate and feminine. the cutaway gives you a sexy, casual chic appearance that you can dress up or down. i can't wait to unveil this new piece at work.",5,1,1,General,Tops,Knits +888,46,,,3,0,0,General,Tops,Knits +827,26,Too billowy,This was really billowy but not in a good way. i had to return it. looks great in the photo but not so much in person.,3,0,0,General Petite,Tops,Blouses +862,46,Love it!,Soft and romantic. i love it! just like pictured and i wear a cami under. dress up or down,5,1,0,General,Tops,Knits +862,37,Wanted to love but couldn't,Bought this shirt on-line. wanted to love it but just couldn't. i ordered the xs and it was huge and way too unstructured for my style....just didn't have enough shape. had to send it back.,2,0,1,General,Tops,Knits +1078,23,Great,It is one of my favorites from retailer. i received so many compliments while wearing it! i usually wear a 6 but i sized down to a 4 and still had plenty of room.,5,1,1,General,Dresses,Dresses +1035,41,Love love love,"Fell in love with these instantly in the dressing room. it was more than i wanted to spend but i don't regret it. quality is great, denim is just the right thickness, i love the wash... will be wearing these a lot. just like my other pilcros! i'm 5'8"" 125 lbs. size 28 fits perfect and the length is just right.",5,1,0,General Petite,Bottoms,Jeans +819,33,Drive-in plaid tank,"I'm so disappointed with the fit of this top. it is extremely short, even for my 5'2 frame. sizing up will not fix the length. too bad, because the shirt is cute.",3,0,3,General,Tops,Blouses +1116,40,Very attractive coat,"This was a holiday splurge and combined with a sale discount, it was a good price. i love this coat. i agree with some of the shapelessness in the back. but it's not a deal breaker for me. the overall cuteness won me over.",4,1,0,General,Jackets,Outerwear +1126,28,,"I love the look of this jacket. it's incredibly soft and fits tts. i love how it's a little different and fun. however, it's already pilling after 3 wears. probably have gotten a total of 15 hours of wear out of it. i am so disappointed. for this price point, i would have expected better quality.",3,0,0,General Petite,Jackets,Outerwear +1116,47,Beautiful but too wide for my petite frame,"This is a beautiful, well made jacket. also, it's very cozy and warm. unfortunately for me, it was too short and wide. i ordered the petite, but it was still too wide which also made it look too short. not flattering for my small frame.",4,1,0,General,Jackets,Outerwear +1116,47,,"Great quality coat! very pretty colors and love the sleeves! i would have given 5 stars, but like other reviewers stated, this coat does she'd. best not to wear black. it is a slight ""swing"" style coat, so it's not fitted at the waist and hips, but very stylish. i found it best to size down. i'm 5'4 118lb, but i'm large chested (32dd) i usually wear a size 6 coat or blazer so it fits my chest, but the six was too big. the size 4 fit great across my chest and still room for a sweater!",4,1,0,General,Jackets,Outerwear +819,30,Confusing sizing,"I love this shirt. tried in on in stores. i'm typically a medium across the board. i'm 5'6, 137lbs, 34d. i went for the size 6 figuring the 4 would be too small. the 6 fit... but it's short like everyone else said. not crop top short but definitely raise your arms and stomach is exposed short. i didn't buy it for the $50 price tag because of the shortness. but now that it's 30% i might spring for it, regardless of the weird cut. it's super cute otherwise!",3,1,2,General,Tops,Blouses +1078,50,,"I disagree with the other reviews...the colors on this dress are great. bright against the black and the studs are super cute. and the ties at the cuff are a cute touch. fun dress. i think it's as fitted or not as you want. drives me crazy when people get hung up on their ""size"" to judge clothes. go up or down if it doesn't fit the way you want. i like it to flow a little so i sized accordingly.",5,1,11,General,Dresses,Dresses +1038,48,Huge!!,These are way oversized! i have several pairs of pilcro jeans and these run way too large. wasted money on shipping. won't do that again:(,1,0,0,General Petite,Bottoms,Jeans +1116,48,Very nice!,"I received this jacket in an 8. fits great with room . i am a 34dd chest for reference as i was not sure if i needed a 10, but the 8 is perfect. see my pictures as i feel the website photos are more bright as the actual jacket is more muted. buttons are very nice but the pocket flaps hit right at the boob area so it my bother some . very high quality, lined and will look great over some retailer dresses in the same color way i purchased last year. depending on the season this jacket would do fine",5,1,7,General,Jackets,Outerwear +862,48,,"Disappointing, back is yellowish and looks strange. the front view is cute but doesn't match the fabric on the back at all. can't imagine why you would do that?",2,0,5,General,Tops,Knits +1038,51,Best. jeans. ever.,"I love these jeans. perfect amount of stretch, perfect color, perfect weekend. +i bought two sizes smaller than normal. a little snug when they come out of the dryer, but within an hour they are the perfect fit.",5,1,0,General Petite,Bottoms,Jeans +1088,48,Stunner,"The color of this dress is amazing! even though it's not lined, the fabric looks and feels like silk charmeuse and is so light and comfy on your skin. more of a maxi than a midi on me; i'm considering shortening it. elegant and breezy at the same time - love it!",4,1,1,General,Dresses,Dresses +862,43,Runs large and is not flattering,"When i saw this blouse online i thought it was so cute! i love the floral detail. unfortunately it looks much cuter online than it does in person. it has no shape so it is not flattering to the figure. it might look better tucked in or partially tucked in as shown in the picture, but it did not look good completely tucked out. i was also not a fan of the fabric. in the picture the fabric looks dressier than it is. the front is more polyester and is a little dressier, but not what i envisioned. t",2,0,15,General,Tops,Knits +1078,53,,"Beautiful, feminine, flowy dress. love the brass button detail at neckline and around waist-gives the otherwise delicate dress a pop of ""edge"". had to detach the slip to get it on, but glad it is included with the dress. i purchased the small and fits like a glove (5'8"", 135lbs, 34d). can't wait to wear it!!",5,1,1,General,Dresses,Dresses +1116,43,For the woman who is vibrant and dynamic,"I bought this for my girlfriend with the hope that my presumptive intuition about her style preferences and the fit itself would prove successful. fortunately she loves it and looks amazing in it! + +the colors are vibrant and the unique texture really lends itself toward a clothing item that is special- even for retailer. + +recommend it highly!",5,1,1,General,Jackets,Outerwear +1078,51,,"The snake and the studs, they make the dress. sadly, the snake is hard to find, as mentioned in another review. this dress also runs large, i'm usually a 12 and went down to 10. the images are misleading too. two pics show a small, fitted look, and the other two show a full, swing look. i'm trying to make this work but it may have to go.",3,1,4,General,Dresses,Dresses +1038,37,Super comfy and stylish jeans,"I originally purchased these in a size 27 and they were big. i returned them and got a size 26, and they did stretch out after wearing them once - to the point where i could probably have gone done to a size 25. the cut, color, fabric and distressing are great. i am 5'3"" and the pants are a tad too long for me to wear them with ankle booties without looking odd. overall, i love these jeans and wear them a lot!",5,1,0,General Petite,Bottoms,Jeans +818,80,Completely sheer!,"Please be awate that although this blouse is beautiful and the color is gorgeous--it is completely sheer!!! it just doesn't match up with the price point,",3,0,0,General,Tops,Blouses +873,34,,The material is beautiful and high quality however the cut is so awful! it lays very weird near the neck and shoulder area. it kind of forms this square but if you are larger in the bust area it causes the top to slant making it lay awkward.,1,0,3,General,Tops,Knits +1078,57,Fun and flattering,"I loved this dress on the hanger and loved it more when i tried it on. i am usually an 8, but purchased the 6 in this dress. i preferred the empire waist to be more fitted which the 6 provided. you can decide which look you prefer. both looked good. i just wanted a less baggy look. as one reviewer mentioned, the print is cut different on all of the dresses. i think the colors pictured online are accurate. regarding the snake on the fabric, i have several snakes on my dress, but not on the back a",5,1,1,General,Dresses,Dresses +1078,51,"Very pretty, but truly gigantic!","This is a very pretty, particularly youthful dress. but, do be forewarned, it is gigantic. size down even if you never do, and get a petite if you are even a little short. i didn't size down enough and it was both wide and long -- it looked ridiculous. i am petite, and the hem went way below my knees (and the dress was considerably longer than the slip).",4,1,0,General,Dresses,Dresses +1035,42,Nice but a little skinny,I probably have 10 pairs of pilcro jeans and pants and most of the jeans are the skinny fit. i wanted something that wasn't a skinny fit so i thought i would try these straight fit jeans thinking they would be skinny but they also wouldn't be loose. just got them today and when i tried them on they were tighter then the skinny jeans i just took off. i guess i agree with the other reviewers that they fit like a glove. so if that's what you're looking for these will be great.,4,1,0,General Petite,Bottoms,Jeans +1078,35,,"Love this dress! light and breezy, but i'm wearing it with tights and a jacket for a winter look.",5,1,1,General,Dresses,Dresses +1078,45,Great dress,I'm anxious to wear this dress with boots. i love the colors and print. perfect for work and evenings out.,5,1,2,General,Dresses,Dresses +1078,36,Gorgeous print,"I bought this online because i love the print on the dress and i was not disappointed. it is gorgeous! the waist on the dress is much looser than in the picture, but i am fine with that. i am 5'9"" and the dress length is accurate as shown in the picture.",5,1,2,General,Dresses,Dresses +862,37,Beautiful top,"This is a great staple piece for your closet. i do agree that it runs large. i am usually a small and ordered this in an xsmall and that was perfect for the billowy-ness of the top. i have a long torso and arms, so going with an xsmall made the arms slightly short on me. i do not see this as an issue as i just pull them up to 3/4 length on my arm (the sleeves are elastic so this is possible). i receive compliments every time i wear this top. it is beautiful and comfortable. i definitely recommen",4,1,0,General,Tops,Knits +873,42,Love this!,"Beautiful blouse, very flattering! if you run larger in the bust you might want to select one size larger than you usually wear.",5,1,0,General,Tops,Knits +862,47,,"Not bad- basic, simple, versatile. i wore untucked with skinny black pants. comfy too. cotton knit like materials.",4,1,1,General,Tops,Knits +1080,30,I wanted to love this,I had my eye on this dress for months. i came into some extra cash and bought it at full price online and picked it up in the store. the purple pattern is nowhere near as soft as pictures. it was very bright which disappointed me. it's also made for more busty women. at a 34d i could in no way fill this dress out. the result made it look so frumpy and unflattering. i felt like an old lady in a bag.,1,0,0,General Petite,Dresses,Dresses +1080,53,Worth the wait,"I ordered this when i first saw it on line but it was backordered. it just arrived today and i am so very happy with it. so feminine, kind of vintage yet modern. the epitome of the retailer aesthetic. i typically wear a 0p ( 32 a -26-35: 5 ft 2 in) in tracy reese and the 0p is perfect. i gave a 4 for quality only because it is polyester, (however that also keeps the price down). it seems that every summer plenty by tracy reese comes out with a dress that becomes my go -to favorite and this year is",5,1,3,General Petite,Dresses,Dresses +574,26,,,4,1,0,Initmates,Intimate,Layering +1110,31,Dreamy dress!,"Perfect summer dress: feminine, cool, with just the right flow. hides the bad, and has a nice shape.",5,1,2,General,Dresses,Dresses +929,56,Very simple but adorable form,"I ordered xs petite. the base of the neck was itchy... if you wear a turtle neck sweater inside, it should be fine. the other parts were very soft.",4,1,7,General,Tops,Sweaters +1110,57,Looks like a painting,"I wanted this immediately after seeing it in the catalog. i couldn't wait for it to get to my store so i ordered it and it did not disappoint! it is extremely flattering on my hourglass figure. the pattern and colors are amazing. the unlined lower half does not bother me. i will be wearing this with a denim jacket, light sweater, wedges, then booties in the fall! i fell like this dress will be able to be worn for years to come.",5,1,3,General,Dresses,Dresses +1080,35,Great dress!,"Bought this for a summer wedding, it fit great and i got a lot of compliments!",5,1,0,General Petite,Dresses,Dresses +860,53,Nice basic,"I like the shirtsleeves for south florida and the material. the design is great too. hits high up on my waist which i like. i ordered the black, but had to send it back as the medium was too big. i usually take a medium, but the small fits perfect. like white a lot and ordered the gold too.",4,1,0,General,Tops,Knits +909,48,Disappointed in quality,I love the style of this top. hand washed before wearing and it looks like a rag before i even got to wear it. very disappointed since i thought it would be a very practical tank.,3,0,6,General,Tops,Fine gauge +254,69,This will not fit bustier women,"I so wanted to love the striped peplum top, however i have a petite frame with a large chest and there was absolutely no support in the top. not flattering in the least for a d-dd cup. will be returning. i imagine this would be perfect for someone with a frame like mary kate or ashley olsen :)",2,0,2,Initmates,Intimate,Swim +833,50,Fun summer top,Love it!! it does run big so i had to return for smaller size. fabric is nice very true to picture,5,1,3,General Petite,Tops,Blouses +1080,33,Perfect summer wedding dress,"I saw this online and ended up driving over an hour to pick it up from a neighboring retailer store that had 1 more left in my size! it fits true to size for me with the waist band fitting my 27"" inches perfectly with no real give- so keep that in mind. the top does seem a little blousey, which i typically avoid (34d already) but this was still super flattering. overall it is a gorgeous dress that looks good on- one of those dresses that makes you feel good wearing it!",5,1,20,General Petite,Dresses,Dresses +1080,50,,I ordered this online and was completely underwhelmed in person. the pattern didn't pop at all and the fit was just ok. it kind of bunched weird in the breast area. i usually love plenty but this is a return.,3,0,0,General Petite,Dresses,Dresses +1110,52,"Not polyester, allelujah!","This was my first dress purchase this year, quite late. i've been disappointed with a lot of polyester/rayon/viscose dresses so far. if it's 100% silk or cotton, it's quite expensive. this dress meets all my tick marks: no synthetic, beautiful pattern, well-made, flattering to the figure. i have a silk slip so the absence of lining was not an issue for me. fits true to my petite sizing. it's a very easy to wear dress, no tugging with straps or a belt. it's slimming and skims the figure properly.",5,1,11,General,Dresses,Dresses +1022,40,New favorite jeans!,"These jeans fit like a glove while being flatteringly stretchy. i am 5ft 7in, 125 lbs and i have a size 26. these are my second pair of ag stevie ankle jeans and i can't wait to get more. they are a beautiful deep/dark blue. love them!!",5,1,0,General,Bottoms,Jeans +254,43,"Love, love, love","Not being into bright neon colors, i love this top! the fit is true to size and helps to hide my tummy. it's super cute and very flattering.",5,1,1,Initmates,Intimate,Swim +1080,34,Not a good fit,"I ordered this dress online. the colors are pretty (if you like pastels) and the fit is true to size, however, it fits very much like a maternity dress. for those of you rocking a baby bump, this is a good choice. for others who are not, it's just not flattering. my figure got lost in the dress and the high waist did not look good on me. i returned it.",2,0,3,General Petite,Dresses,Dresses +1080,24,Wanted to love it...,"I waited six weeks for this dress to arrive and was so disappointed. loved the skirt part of it. but the top, which i guess i didn't see in photo was pleated as well, made my bust look huge and it puffed out on sides. would have been a wonderful summer dress, flowing and cool.",2,0,2,General Petite,Dresses,Dresses +1110,45,Beautiful dress but needs a slip,"I bought this dress in a store, and it suits the body better than on the picture. the pattern is exquisite and beautiful, i receive compliments every time i wear it. it is made of silk, which is a preferred alternative to polyester. but as other reviewers mentioned, it needs a slip, and for an expensive dress it should come with one, or should be fully lined. it is only lined on top. the peep hole is deep, but on my body, it doesn't gap much (i'm 5'7'' 142 lbs). a keeper for me for its beauty!",4,1,0,General,Dresses,Dresses +254,39,Not for the long waisted,Great quality top. i do wish it fit me...i'm really long waisted and this top was too short. had to return,3,0,5,Initmates,Intimate,Swim +254,45,"Lovely, flattering, comfortable",It's very pretty. i purchased mine in the floral. romantic floral. the peplum is true to photos. it isn't short as many are. the print is gorgeous and the fabric is soft and comfortable and the styling is perfect,5,1,1,Initmates,Intimate,Swim +1080,39,Too many pleats,There were just too many pleats to this thing. it was not flattering. it looks fantastic on this model but not on me. oh well.,2,0,2,General Petite,Dresses,Dresses +1022,32,Ag wins again,"Ag is my go-to brand for comfortable, high quality jeans. these fit the bill!",5,1,0,General,Bottoms,Jeans +1080,33,Maximizes bust if that's what you want,"I love everything about this dress, but the bust area. the bottom is so light and flowey with the pleating. makes you want to twirl. the color is light but not as light as the photo. it does not wash me out. the problem is the bust. it has pleats that billow out near the armpit area, making you look top heavy. the bottom is slimming, the top make you look buxom. the v neck is also higher than i would like, which again adds to the fullness of the chest area. i am still debating keeping this or re",4,1,0,General Petite,Dresses,Dresses +1080,42,Feminine dress,I love this dress! the colors are so pretty and the fit is very flattering.,5,1,0,General Petite,Dresses,Dresses +929,47,"On the right person, maybe?","This wasn't for me. i have a short neck and am 5.3"". the length was fine on the one i tried on, but other proportions were off. it was too big around, in the middle, yet tighter at the bottom. on me, this made it resemble a large bag. the neckline stood up on mine. even when i pushed it down to resemble the picture here with the model, it still felt like a whiplash collar (coming up over my chin). i gave it four stars for quality since the material is so soft.",2,0,8,General,Tops,Sweaters +1080,39,Cute,"I finally ordered this after looking at it many times, had to order the 00p as they were out of all other petite sizes, and to my surprise, it totally fits me! why i put larger. both colors are equally nice, but due to my pale skin (and only petite available) i ordered the ""yellow"" one (brighter colors). cut is flattering, love the pleat detail in the skirt, the 00p fit my 30dd chest, and 26.5 inch waist. the length is perfect, above the knee in front and lower in the back. good choice...",5,1,1,General Petite,Dresses,Dresses +833,39,Beautiful tank to wear for years,"I was urged to try this on by my usual stylist as she thought it would look nice with shorts i purchased or jeans or pencil skirt i own (she knows a lot of what i own). it is truly pretty love the embroidered cut outs makes the tank look stylish. the cut is also flattering, though i think i'll have to wear a strapless bra. color is also warm enough to work on pale skin like me or a golden tan. i purchased the 0 regulr, tried on petite but i found it was short and flared too much. i am 115 lbs 30",5,1,11,General Petite,Tops,Blouses +1110,28,Beautifully made; lovely pattern and colors,"This dress is absolutely gorgeous. the fabric is light and comfortable. the colors are even more vibrant in person. it has a keyhole opening in front, which might not be for everyone, but which i really liked. the only things i would caution buyers about, is that it is not lined, and for shorter buyers (i'm 5' 3"") it runs a bit long, so if you can pick up the petite, that might mean a better fit.",5,1,1,General,Dresses,Dresses +1110,47,Beautiful dress,"The print on the fabric of this dress is stunning. it is lighter weight than i anticipated, and the photo didn't show the keyhole opening in the front (which i like but may not be for everyone). i am pear shaped and on the tall side, so the shape works nicely on me, not too snug in the middle or rear. not sure about someone not as tall or more busty. i typically wear a larger size on the bottom than the top, so i ordered in the larger size which fit well.",5,1,17,General,Dresses,Dresses +1080,28,,,5,1,0,General Petite,Dresses,Dresses +1080,36,Pretty dress - for the right skin tone,"This dress is easy to wear, lined and feels like it could be a wonderful summer staple. i love that it's so colorful. but for some reason, the pops of color on the white background did not look great on my very pale skin. i'm sure on someone else this will be beautiful. i also thought it ran just slightly large in the bust (although, to be fair, i am small-chested).",4,1,3,General Petite,Dresses,Dresses +860,51,Love it!,"I love this top!! fits perfectly, and not too long. i'm 5'4"", 112 lbs and a 32dd and the small fits like a gem.not too fitted, but not boxy. i like that it covers my waist, but isn't too long, either. i may order another one i love it so much!",5,1,0,General,Tops,Knits +1080,40,,,5,1,0,General Petite,Dresses,Dresses +254,28,Not cute,Just not cute. i don't know how else to describe this top. i am a 34dd and ordered a large. it fit and was comfortable but the peplum had way too much fabric it actually made me look much bigger than i am. i would possibly have tried a medium but it wasn't in store so i returned.,2,1,2,Initmates,Intimate,Swim +574,26,Good not great,"This is a cute top. not perfectly made, a little boxy, but also not a crop top on me (5'5). it looks cute with high waisted jeans.",4,1,0,Initmates,Intimate,Layering +1110,44,Beautiful dress; so excited to wear it!!!,"I saw this dress in the catalog and had to have it. when i went to the store it was sold out so i had them order and ship it to me in two sizes - my regular and one size larger. when i got them, i tried on my regular size first and it was just perfect! beautiful pattern and material. light and airy. sexy with the low-cut ""keyhole."" i am sooo happy with my purchase.",1,1,0,General,Dresses,Dresses +860,29,Cute turtleneck,"I love the design of this top - short and swingy, with a cute mock turtleneck and interesting textured pattern. definitely runs large - if you're between sizes, definitely go for the smaller one. it also has pretty large armholes, so you can kind of see your bra from the side.",5,1,3,General,Tops,Knits +254,34,"Wanted to love it, but it's too short",I was in love with this suit from the pictures. unfortunately the top is a little too short so the peplum skirt hits right at my widest part and doesn't meet the bikini bottoms.,2,0,1,Initmates,Intimate,Swim +909,27,Fabric felt cheap,"The product looked more or less as expected, but the fabric felt very cheap. not the quality i would expect from retailer. the shirt is also very short, which did not bother me but is something others should be aware of.",2,0,9,General,Tops,Fine gauge +860,54,"Love the top, but the armholes!","I bought this top in black. it is high quality material and i love the mock neck and zipper in back. however, not only are the armholes are too large, the shirt is cut too short. if i size down for smaller armholes, it becomes a crop top, not a flattering look for 50-something me. i really wanted this to work, but alas, it went back.",2,0,1,General,Tops,Knits +1080,24,Floral dress,"One of my favorite dresses in retailer! +floral prints caught my eye at the first sight, so i had been desperate to have it! +it looks pale on picture, but in reality, it is brighter than you imagine it would be. +along with soft, floral, pretty color, i like the design of skirt. +compared to the front, length is longer on the back. +it fringes nicely, so it looks elegant when i walk. +and the last thing i'd like to point out... +because of the textile, it is quite easy to fold into appr",5,1,0,General Petite,Dresses,Dresses +1110,63,The print is a work of art - i love this dress,"The delicate print and coloring are stunning. i also like the length and fit and am really enjoying this dress. +the key hole opening was a little low and showed my bra so i had to sew up the bottom inch, i also agree with an earlier comment that a full lining would be nice. + +this is the first dress i have bought from retailer because i generally find dresses are too short and do not provide enough coverage at the top. i hope that future collections will include midi dresses and hemlines",5,1,2,General,Dresses,Dresses +1022,45,"Love, love these jeans",I love ag stevie jeans but these are my favorite. super soft with just the right amount of stretch. they keep their fit and don't stretch out. the very dark wash makes them extremely flattering. i'm petite and a bit curvy and these are extremely comfortable.,5,1,1,General,Bottoms,Jeans +1080,36,As pictured,"The dress is just perfect. it's fits true to size and the colors are as pictured. also, a bonus, it travels well - despite having so many pleats it folds nicely and can be worn right out of the bag. very happy i got it while on sale.",5,1,1,General Petite,Dresses,Dresses +1080,27,Feminine and adorable,"I bought this dress for an upcoming bridal shower i am attending. it fits great, is flattering, and i can also wear it to work since it is long enough. + +overall it was a great purchase!",4,1,0,General Petite,Dresses,Dresses +1110,43,Lovely easy dress,"I am 5'10"" 150lbs and size 8 fits me perfectly. +the print is lovely and the fabric has a nice flow to it. +at this price point the dress should have a lining.",4,1,6,General,Dresses,Dresses +860,49,Nice...but not true white,"Love this, but it is not a true white. it's slightly ivory, winter white. please be accurate with color descriptions! it's extremely frustrating when online retailers don't describe colors accurately. it can be hard to see subtle color differences in photos (especially with the color white) due to lighting of the shot. we rely on descriptions when ordering online. it's not difficult to do, really it's not. + +that said, i didn't have any armhole trouble as others did. they were sized just right,",4,1,0,General,Tops,Knits +929,45,I really wanted to love this but...,"It was just too big in the regular size and too short in petite. the proportion was off. i bought a similar sweater last year in a blue color that i wore constantly and was hoping this would be like it. i think if you are very tall you might pull this off. i'm 5,4"" and even the extra small regular hung below my booty.",3,0,12,General,Tops,Sweaters +1074,33,Had high hopes!,"I had sized down because i'm usually a petite, but didn't have the option for petite here, and it was still too big. a petite or an additional size down could have helped the fit, but in the end the style wasn't what i was going for. the dress has a little more texture going on than what is revealed in the photo here on the site -- i thought it was a luxurious brocade fabric, but the shininess actually comes from silky threads on a mesh-ish overlay. it's a lovely, quality dress, and the color is",4,0,8,General,Dresses,Dresses +929,53,Too boxy,"I am a sweater girl, so i was really looking forward to this cozy-looking piece. like other reviewers, i found the fit to be very strange and not as pictured. i am 5'1"" and 107 lbs and typically wear xxsp or xsp. i ordered this in the xxsp because of the loose fit. it did not fit like the model at all. the sleeves were shorter and stuck out oddly. the length was not as long as pictured, but it would have been fine for me had the sweater not also been as wide as it was long. others suggested sizi",3,0,4,General,Tops,Sweaters +833,47,"Beautiful, huge armholes","The design is stunning, the color is universally super-flattering. it's a lovely top. so much so that i tried it on even though it was pricey. but the armholes are huge. you can see it on the model, who is definitely not wearing a bra. on me, there was a lot of side bra exposure. if they'd had smaller sizes at the berkeley store, i would've given them a shot, but my true size was a really poor fit.",4,1,3,General,Tops,Blouses +833,51,Bright but boxy,"There is simply no way to wear a bra with this top. that being said, the cotton is substantive and crisp, the embroidery striking, the coral color bright and summery. it hits me exactly where my hips begin to broaden, which i honestly kind of hate, but the top is so lovely no one's going to be assessing your hips. if you have narrow hips and perky breasts, though, what a perfect summer top (although, i suppose if those are your features every top is perfect!)",5,1,4,General,Tops,Blouses +929,30,,"The color and quality of this sweater are fantastic. the reason i only gave it two stars is that the height of the neck didn't seem right to me. it looked awkward and too high to be left standing upright, but when folded over i wished it were higher so it formed more of a turtleneck/cowl. i will be returning the sweater because of that.",2,0,1,General,Tops,Sweaters +1110,55,Gorgeous and flattering,"I know you've heard it before, but this dress is so much more beautiful in person! i'm petite, usually size 4 but busty, so i tried the 4 and the 6 in the store. the 4 fit perfectly except it was a bit snug at the bust so the the slit pulled open, revealing a bit more cleavage than i wanted. the 6 fit perfectly through the bust, and although it was a bit loose through the body, the cut was still very flattering. i also tried the 6p, which fit but i preferred the longer length of the regular 6.",5,1,0,General,Dresses,Dresses +1022,54,Love these jeans!,"This is the 4th pair of ag stevie jeans i have bought from retailer. the petite sizing fit me great (i'm 5'1 and 112 lbs) the quality is fabulous and worth the price. i have 2 denim, 1 white, and just purchased these dark wave. i went to the ag store and they do not carry petities. this jean is made exclusively for retailer. love them!",5,1,0,General,Bottoms,Jeans +1110,34,Doesn't flare at bottom,"Just wanted to let readers know that the dress doesn't flare out at the bottom like it shows on the model. for me, that's a good thing. it definitely sways and swishes, but doesn't flare out. you definitely have to wear a slip with it, not because it's see-through at all (it's not), but because of the static. + +also, this is the perfect dress for belt-lovers.",5,1,3,General,Dresses,Dresses +1080,44,Beautiful,"This dress is wonderful and the petite sizing is really for petites! (i have recently returned two dresses and a skirt that were way too large in the petite offering...so i was not really expecting this dress to fit so well!) i ordered in the 2p. i am 5'4"" about 120#. it fits beautifully...even though it's a tad bit loose in the arm openings and i think i could have sized down to the 0p (it is no longer available though). but this dress drapes so lovely and the material is so thin that there is",5,1,3,General Petite,Dresses,Dresses +860,67,Just as shown,"Very versatile tank.....i will wear it with slacks, skirts, culottes, jeans. it is soft; and the pattern is more noticeable than in the picture. i ordered the white; and i may order the black too. i am 5'4'', 130 lbs. ordered in small. the armholes are perfect - no gap at all.",5,1,12,General,Tops,Knits +1110,70,Lovely unique dress,I really like this dress. it does not bother me that it is not lined. i feel very feminine wearing it. i plan to get a shrug to wear with it.,5,1,0,General,Dresses,Dresses +1080,37,,This dress is to die for. the picture doesn't do it justice. so pretty and dainty. perfect dress for a wedding.,5,1,0,General Petite,Dresses,Dresses +1080,53,Better in person,"This dress is gorgeous. it is better in person than online. i love the detail of the pleats and the waist. it is light weight and perfectly lines and a beautiful dress for twirling with a martini in hand. in fact, my sister tried to steal it from during a recent trip to europe. it is that adorable and flattering - highly recommend!",5,1,0,General Petite,Dresses,Dresses +833,45,"Gorgeous top, with the right bra (or lack thereof)","This top is so pretty, even better in person. it's made really well and i love that it's washable. i did have some initial reservations with the fit. i'm petite and small chested so i typically like to wear a bra to get a bit of extra 'help'. but with the way this top is cut, swingy and slightly bell shaped, i found that wearing a bra, even one with light foam cups (not even pushup), was making the shape of the top look really weird. once i took off the bra, the top actually looked great. i got",5,1,0,General,Tops,Blouses +860,27,Beautiful top but large arm holes,"I loved everything about this shirt except the harm holes are oddly large. i tried on a medium and the arm holes were very large so i thought a small would fit better but it didn't, the fabric is beautiful and the diamond pattern looks amazing up close but i decided to return the top because the arm holes just stuck out so awkwardly.",3,0,1,General,Tops,Knits +1135,44,Simple & elegant,"You just can't go wrong with a perfect white top. i'm usually xs or s and got this top in xs & the fit is perfect. the bottom is a very subtle bubble hem that you can't really see in the picture. the top is boxy but not too overwhelming since the proportions are just right. thesis a great transitional top that will go with skinny jeans, pencil skirts or even a pair of utility pants. it can easily be dressed up or down.",5,1,1,General,Trend,Trend +1110,51,A monet painting,"The fabric and cut of the dress is beautiful. i am writing a review so i can share my experience regarding size. i ordered the dress in size 2, my normal size for this designer. it fit ok but was a little large in the bust area. for reference, i am a 34 a. i i returned it and ordered a size 0, which fits perfectly.",5,1,4,General,Dresses,Dresses +833,26,My newest go to,"I love, love, love this top! the color is beautiful, a pinkish-orange, about exactly how it looks online. it is soft and light weight for summers. it does run a little big, i debated between a 0 and a 2 and ended up with a 2, i'm almost 5'7"" and 130lbs for reference. it wings out on the sides at first, once i steamed it at home and relaxed the fabric a bit it draped nicely, so don't let that turn you off from it when trying it on! part of the design is cut out through out as a warning,",5,1,18,General,Tops,Blouses +1028,41,New favorite jeans!!,"These jeans are very comfortable, with the higher waist. they have a slight stretch and keep their shape. i also like that the inside is a darker color, which looks good when rolled up.",5,1,3,General,Bottoms,Jeans +860,30,Wear this tank anywhere,"I love this tank top. i was looking for a mockneck tank for a while, and this totally fit the bill. i wear it to work and out, and feel great in it.",5,1,1,General,Tops,Knits +860,63,Huuuuuuge armholes!!!!,"Beautiful top marred only by the armholes. i tried a small and a medium but alas, my bra showed under the arms. i my be overly endowed for this top, but the way it cuts, you would have to be braless to wear it. not for me, but wish it worked. it is really pretty.",3,1,5,General,Tops,Knits +254,27,,"I am 5' 4"", a size 8-10 (size 29/30), and my figure is apple-ish. i can't pull off peplum tops because they are too tight for my shape and they flare out at an unflattering spot. all of those ""rules"" go out the window with this tankini. + +first, swimsuits are supposed to be tight, so that problem is eliminated right away. +second, the flare-out is perfect for women that want to hide their tummies. i don't like how swimsuits are generally tight in the tummy - that's the area that i'd like to hide t",5,1,28,Initmates,Intimate,Swim +1022,26,So comfy,"My favorite pair of ags. i normally wear sz26 but i have awkward proportions when it comes to finding jeans that are actually ""ankle"" length on me. i orders these in a petite and went a size up to be safe. it doesn't seem like they've stretch out any and they fit exactly how i want. i love the dark wash bc they can be both dressed up and down.",5,1,0,General,Bottoms,Jeans +833,56,Beautiful but wide,"I see other reviewers are like me. we are wondering why antho has so many waistless, big, flowy tops! please! more tops with a defined waist! please! +i love this top. it's a gorgeous color and a lot of work to it, very retro antho, not just a t-shirt like so many are these days. to my delight, it runs large. i usually wear a 14 or 16, but the store had a 12 in the sale room, and not only did it fit, but i plan to have my seamstress taper the waistline and cut off the ""wings"" that flare off on t",4,1,1,General,Tops,Blouses +1074,56,The perfect red dress,"I have been searching my entire marriage -- 11 years -- for the perfect christmas and valentine's day dress. it had to be red, it had to be the right red, and it had to be my style. there were several i saw over the years that were either too burgundy or too matronly. when i saw this dress, i knew my 11-year search was over! this is the most beautiful and elegant, red, special-occasion dress i have ever seen! i cannot wait to wear it for christmas! i think retailer should have reordered thi",5,1,4,General,Dresses,Dresses +1022,36,Great fit!,"Ag jeans are the only brand that fit my body type. for reference, i'm 5'4"", short-waisted with larger athletic thighs, smaller waist, bigger behind (or pear-shaped) and shorter legs. this is first time i didn't have to cut off several inches in length, though i may need to hem a few inches as these jeans hit right below ankle (not above like model photo). i usually wear a 29 in ag, but went up one size based on other reviewers comments. ag jeans are worth the price: great quality and made in the",5,1,4,General,Bottoms,Jeans +254,32,This product fits well,"I love this top! it's so hard for me to find conservative, comfortable and yet not mom-isn swimsuits. this top is amazing. it's comfortable and soft and great quality. i'm excited to use this suit this season!",5,1,1,Initmates,Intimate,Swim +574,60,Looks nothing like the photo,"Very poorly made- wide and short, very unflattering. the material is advertised as cotton, but it felt very synthetic.",1,0,3,Initmates,Intimate,Layering +860,40,Loved the style but was too short on me,"I loved the pattern, color and mock turtleneck style of this top, but it was just too short on me. i purchased the xs in the ivory color (i am 5'5"", 32d, 110 lbs for reference). i had planned to layer this under jackets for work, but every time i raised my arms, you could see my stomach. i would not have felt comfortable wearing it to work because of this. the fit was slightly boxy also, and it was not flattering when i tucked it into a skirt because the boxy shape caused the shirt to bunch up s",3,1,0,General,Tops,Knits +1080,34,Beautiful flowy dress,"I purchased this dress in ""yellow"" in a size 8 and 10 since i'm between sizes, and the 8 fits like a dream. i love this dress. it's a nice length, hitting just below my knees, and i can pull off strappy sandals as well as wedge heels and it all looks great. i also like that the top is situated so that i can wear a regular bra with it. i was concerned that the pleats would look tacky in person, but they give the dress a nice amount of movement and swing. highly recommend!",5,1,4,General Petite,Dresses,Dresses +1110,24,,So much prettier in person! beautiful colors matched together! so light and relaxing! love at first sight!,5,1,5,General,Dresses,Dresses +1022,33,,"As always, these ag stevies are perfect. i was worried they would run small, but they are true to size on me. i'm about 5'2"" and ordered the petite length and the length looks like the model on me. just above the ankles.",5,1,0,General,Bottoms,Jeans +909,48,Pretty and lightweight.,Very pretty and a nice fit. lighter weight than i expected at this price but as long as it holds up i'll be happy.,5,1,4,General,Tops,Fine gauge +1080,30,Might work for narrow hips,"This dress is very pretty colorwise, but the fit did not work for me. i could see this working on girls with narrow hips, but it didn't flatter my narrow waist/wide hip frame.",3,0,0,General Petite,Dresses,Dresses +929,62,Stylish,"Agree with other reviewers that the sweater might swallow you up unless you are tall. it's soft (not itchy), well made, comfy and stylish. i want it to get cold out so i can wear it!",5,1,2,General,Tops,Sweaters +1080,58,,Beautiful and high quality. unfortunately it made me look top-heavy. i am a 36dd .,5,1,1,General Petite,Dresses,Dresses +860,61,Who was the petite fit model for this?,"I wanted to love this so much that i ordered in both a mp and sp. both have gone back. i'm petite and curvy - particularly on top. i wear petites 90% of the time. this didn't fit like a petite - it was cut like full size in every way - particularly the arm holes and length. when the mp didn't fit (i always start trying on in the larger size), i thought - well surely the small will be better. i considered keeping because i would wear it with jackets over it, then decided that was crazy. disappoin",2,0,5,General,Tops,Knits +860,54,This product runs too small.,"Thought i would love this product, but i had to return it. the fabric and design were very nice but the length was very short and the neck too tight. i ordered a xxsp which is usually the size i get. if i had known i would have ordered a regular xxs. not sure if this would have solved the problem. might be worth going to the store to try.",3,1,1,General,Tops,Knits +1110,40,,Great dress. bit see through on the skirt. need to wear slip with it.,4,1,0,General,Dresses,Dresses +929,38,Great fall piece,"I bought the holly color which appears almost granite/slate color in natural light. overall, great transitional sweater piece for fall. i'm considering exchanging it for an xs since the s seems a bit large. comfy/cozy yet breathable.",4,1,0,General,Tops,Sweaters +1110,39,Gorgeous print,"Great job from the fabricators in creating such a gorgeous print on light-as-air silk! i'm so happy with the dress and can stare at it for hours, that's how pretty it is. the fit is perfect on me and disguised my figure flaws since it's an a-line skirt that doesn't cling. yes, the skirt is sheer and unlined and for the price a slip should have been included. fortunately i own a silky half slip that complements nicely. i'm a top heavy 36dd, large rib cage, 140# with a square waist and no hips and",5,1,3,General,Dresses,Dresses +1080,39,Very femme,"I love tracy reese designs because they are so feminine and figure flattering. this dress almost hits the target, it's just a bit off on the bodice, especially at the back and sides. the pleating balloons out too much. i'm sure a little tailoring will fix this, it's up to the buyer if that's worth the money to do it. for myself, i'm just wearing a thin cropped cardi to hide the billow. since petite was sold out, i took a regular size 8 which is the smaller of my size range. the length makes this",4,1,0,General Petite,Dresses,Dresses +860,30,Love the top,"I love this top so much that i ordered it in second color. it is shorter but still works with skirts and pants. the material is a fun texture. i didn't have any problems with the arm holes, but this may be due to being less full in the bust area.",5,1,0,General,Tops,Knits +929,46,A new wardrobe staple!,"Love this sweater! i purchased both the green and gray versions and will wear them constantly this winter. although some reviews were critical of the feel of the yarn, i do not find this to be a problem... so happy with these products! for reference to size, i bought the m and am 5'11... the sweater hits me exactly where it does on the model.",5,1,1,General,Tops,Sweaters +860,59,,"Love the fit, i purchased a medium,and like the room it gives, not snug against my body. the waistline cut is my favorite. purchased three colors, black, white and mustard. all are very flattering for my age (60) and i wear with my skinny jeans!",5,1,0,General,Tops,Knits +929,44,Chunky/cute,"This is a chunky, boxy sweater. it runs big. the pictures don't really show how over sized the cowl neck is. i love it and think it looks great with skinny jeans or leggings. but the over-sized shape might not work with every body type.",4,1,5,General,Tops,Sweaters +1080,43,Yay!!,"This is such a flattering, easy to wear dress! i am a size 6 with a 32g bust, and this dress fits me perfectly. so if you're busty, this should work for you too. soft, flowy, feminine. looking forward to warm weather!",5,1,12,General Petite,Dresses,Dresses +1080,61,,"Absolutely adore the simplicity and style of this dress. dress is quite flowy, the fabric under the pleats is very soft making is quite comfortable.",5,1,0,General Petite,Dresses,Dresses +254,31,Size l is true to size and flattering,"Swimsuit shopping can be the worst. it's difficult to find bathing suits that fit well and are flattering. this swim top is a winner. the straps are comfortable, and the scoop in the front was not too low for a 36d cup. the best part is the higher back! a lot of swimwear dips in the back, but this does not (read: eliminates the dreaded back fat). my only concern was that it isn't super supportive for larger busts, but i'm keeping it because i love the straps and how it flatters overall. this wou",5,1,2,Initmates,Intimate,Swim +1080,50,Beautiful,"This dress has a marilyn feel to it, felt like a dream",5,1,0,General Petite,Dresses,Dresses +1080,34,Ah-mazing dress!!,"Just bought this for easter and it fits beautifully! not only is the cut very flattering, but the colors and fabric are perfect for spring!",5,1,2,General Petite,Dresses,Dresses +1080,49,Gorgeous on anyone as long as you aren't pale,"The cut of this dress is designed for any figure! the back hem sweeps as you walk, and the pleats prevent the material clinging to places you want to downplay, such as bulges. even flat chested women can look curvy and lovely in this dress. only downside, if any, is the lavender coloring which doesn't do much for impact if you are pale skinned and fair. i'm blonde, and while i got lots of compliments on the becoming flow of the dress, even i can see it doesn't say wow because i kind of fade away",5,1,0,General Petite,Dresses,Dresses +1022,59,Perfection!,"I am a huge fan of ag stevie ankles and own at least a dozen pair. i am 5'4"", so this style is perfect for me. this particular wash is a fantastic and flattering fit. it hits right above my ankle and fits beautifully through the hips and legs. i am going to buy a 2nd pair as i know i will be wearing these all the time!",5,1,1,General,Bottoms,Jeans +1080,64,Can't wait for warmer weather,"This is the second of the new dress batch i have purchased and it is lovely. this catalog shot does not do it justice. + +the colors are brighter, but not neon, lots of indigo and coral. there is a tad of yellow? the bodice makes my aa size look much ""more."" the bodice fits me perfectly as the top pleating is flat. the v neck is just right - not too low, and the back is even prettier. + +the dress just fell gracefully out of the package without a wrinkle and without a mussed pleat! that was a sh",5,1,65,General,Dresses,Dresses +254,35,,,4,1,0,Initmates,Intimate,Swim +895,32,Great shirt for work,This top is really comfortable but dressy enough for a business/casual office. the fit is nice and loose without making you look larger than you are. i get a lot of compliments every time i wear this.,5,1,0,General Petite,Tops,Fine gauge +1080,37,Perfect summer dress,"I love this dress! it is perfect for a wedding, brunch with friends, or even work. it is beautifully made and is comfortable. i have it in the yellow colorway, but i am tempted to go back and purchase it in the purple colorway as well.",5,1,0,General,Dresses,Dresses +1080,39,Elegant!,"This dress is much prettier in person! colors are more vibrant and don't need to iron!!! the neckline was too low for me, so wore a light purple cami underneath which matched the purplish shade of the dress! perfect!!!",5,1,0,General,Dresses,Dresses +1022,26,Fit like a dream!,"These are a perfect staple piece: you can dress them up or down, and they're insanely comfortable! even if you hold a lot of your weight in your butt and thighs like i do, i feel like these pants do such a nice job of being form-fitting and flattering without squeezing the life out of you. i have always loved any and all retailer pants in this style, because they just fit so well and last a really long time. i will continue to buy these for many, many years!",5,1,1,General,Bottoms,Jeans +929,45,Cozy!,"Love the color of this- a rich, dark green- it is super cozy and perfect to throw a long sleeved shirt under- it is roomy, not fitted. i ordered a small, then thought i should have ordered an xs,- so then i ordered an xs as well. i go between xs and small, but because this is not fitted, the xs is perfect. material is nice- soft and super cozy.",5,1,2,General,Tops,Sweaters +1110,28,Beautiful.,"The colors (including the deep blue in the background) are as vibrant and harmonious in person as you would hope, it looks like an oil pastel drawing! the print itself is very well done, i'm so picky about the quality and resolution but even up close every part is beautiful. + +the cut is great, it doesn't show too much of the armpit, the straps and sides cover a normal bra, and the neckline just shows the collarbones. + +the feel is very light and floaty; some sites mislabel the material but t",5,1,7,General,Dresses,Dresses +1110,61,May be for you but not me,This is a lovely dress that i would consider to purchase if the dress is lined and the key hole is not deep. tts,3,1,14,General,Dresses,Dresses +860,55,,The arm holes are a little large but not to a point i can not deal with them! it hits just at the right place on my body and is very flattering. i love the print and it is going to be a staple with jackets and alone!!,5,1,0,General,Tops,Knits +1080,34,"Great dress, too big in the chest",I'm a slightly pear shaped girl. a c chest with size 14 hips. the dress fit great around my waist and would have been perfect except the space in the chest area was too big. it looked odd on me with all the extra fluff in the chest. fabric is nice and flowy. the dress is lined.,4,1,0,General,Dresses,Dresses +879,45,Perfect lightweight sweater for spring!,"I wasn't sure what to expect when i ordered this but when it arrived i was pleasantly surprised that it's by postmark and has an interesting cut. i ordered the xl in the hope that it would be oversized and slouchy. it is that and more! the lightweight, sweater like material is truly perfect for the transition to spring. i look forward to wearing it tomorrow!",5,1,9,General,Tops,Knits +1009,22,Sweet and romantic little piece,"My local retailer had one of these skirts in store, presumably a return. i was so excited when i found out that it was in my size! i'm 5'7 and usually a 2 or 4 at retailer and bought the 2 for reference. the skirt is made of a heavy fabric and the pockets are lined with paisley fabric! the seams look really sturdy and the skirt moves well. it's very cute and super easy to wear. i styled it with brown boots, an retailer belt and a white button down. great for spring/summer xx",5,1,3,General Petite,Bottoms,Skirts +1068,38,Great pants,"These are great, casual, comfy pants for summer. i'm 5'1"", 95lbs, usually a 25 or 26 in pants. the reg 25 was a better fit than the 26p.",5,1,1,General Petite,Bottoms,Pants +879,44,"Go-to, throw over anything sweater","This is more a sweater than a sweatshirt but it also feels more casual, like a sweatshirt. i put it on and immediately felt comfortable. it's stylish but not frumpy and it will work for me running around town doing errands or going out for a casual lunch or dinner. it's a perfect weight sweater to throw on in the cool cali evenings.",4,1,19,General,Tops,Knits +1025,35,Lovely jeans,"Lovely jeans, love the details in the cuff bottoms. the front of the jeans, the relaxed ""boyfriend"" part was just too relaxed for me - too much material there that it was unflattering. otherwise cute.",3,1,0,General,Bottoms,Jeans +284,36,,,1,0,0,Initmates,Intimate,Intimates +862,37,Neck tight,This is a very pretty color. loved the flow and the length of this top. however the neck hole seemed too small for the top. all the embroidering is at the neck and makes that part very stiff. going back,3,1,2,General Petite,Tops,Knits +1009,35,Perfect everyday skirt,"I wasn't sure what size to get in this and how it would fit since there weren't any reviews but i ordered it in a size 10 and it fits really well. i usually get dresses in a size 8 but those flow a bit more and this on my waist (am curvy on bottom) i needed to get the 10, it sits well on my waist and i don't have to hike it up. the material is chino like so it does get a bit wrinkled but it has a nice weight and the pleats give it a pretty flow not too boxy making my hips look bigger. it has bel",4,1,6,General Petite,Bottoms,Skirts +1086,33,Great color and length,Love this tunic. very comfortable and a perfect length to the knee. i wore it to a birthday party with brown booties. the green moss color is perfect for the fall in new england. can't wait to wear it again.,5,1,0,General Petite,Dresses,Dresses +838,57,,Better than the picture - i like the layered look and the texture of the fabric. great top.,5,1,4,General,Tops,Blouses +838,32,This product has a cute design and nice fabric.,This layered top fits true to size. the style is trendy and cute. the type of fabric is nice. i love the design of the back. i would definitely recommend it. it's worth the money.,5,1,8,General,Tops,Blouses +1100,31,Too much fabric,"For reference: 5'3, 130#, athletic/muscular body type (broad shoulders, slim hips) +i ordered the small and i was absolutely swimming in it. perhaps the petite would have been better, but there was just too much fabric everywhere. the sleeves were ridiculous on me, and even cinching the waist with a belt just wouldn't have slimmed the silhouette for me. i have muscular shoulders, and 34d chest, so the top fit as it should, just everything became way too much elsewhere. the fabric was soft and sw",3,1,0,General Petite,Dresses,Dresses +877,38,Nothing special...,"This really was nothing special. for $68 there are much cuter tops at retailer. it wasn't particularly flattering as it was very boxy, so it added volume. it was soft and felt like decent quality which was nice. i agree with another reviewer that the ruffles feel too big. overall, this was just a miss for me.",2,1,3,General,Tops,Knits +157,30,"Soft, comfy and well made!",I love these tights!! they're thick and durable and the pattern is super cute.,5,1,0,Initmates,Intimate,Legwear +1068,59,Hard to top,"Great summer pants.....nice material, easy to take care of. i'm 5'6"" and usually wear a size 29, which i purchased the neutral. they might be a little bit loose, but they fit great, and best of all, they truly are slimming. i love them so much that i just ordered the green.......hard to top the sale price",4,1,4,General Petite,Bottoms,Pants +862,41,Beautiful embroidery detail,"I bought this top in the gray color and my usual size large. the fit is perfect. i don't have the tight neck issue that another reviewer had. there is an odd knitted neck that you can't see on the model since her hair covers it. i love the softness, fit, and embroidery of the top, but was debating on returning because of that weird, stiff neck knitting. my husband said that he really liked it, so i gave it a shot. i'm wearing it right now and it's super comfortable. i don't notice the nec",4,1,1,General Petite,Tops,Knits +879,27,Love the style,"This was way too big on me, so i gave it to a friend. not only does it fit her really well and look great, but it has become her new favorite sweater! love the casual everyday style, and am tempted to order one in a smaller size for myself.",5,1,1,General,Tops,Knits +157,66,Love plaid,"Love these tights. fabric feels great, soft and comfy. took large so they fit perfectly at true waist for 5'6 height. some retailer tights i have bought in large, but they are too short for 5'6"" person. +the color of this paid is a subtle green. looks great with black skirt and green sweater.",5,1,0,Initmates,Intimate,Legwear +838,52,Very boxy,Unfortunately this one is going back. the fit is very flattering and the underlying layer is very revealing in the back.,2,0,2,General,Tops,Blouses +1028,41,Love the wide legs,I'm not nearly as tall as the model so these hit right just right for flats. i love the fit of the wide leg and found the color matching the photo and the light color cords very soft. i did try the blue color on at a different store and found them a bit short. i'm really pleased with these and the sale on sale certainly helped.,4,1,0,General,Bottoms,Jeans +1028,53,Absolutely perfect!!!,"I got both colors as i'm not sure when a style that is so perfect for me will come around again. these are beautifully designed and very slimming. they are described as crops but i am 5'5"" tall and the length is perfect, approximately 1/2 above the heel of my shoe. no alterations required!!! usually retailer pants are extremely long for me but these citizens of humanity cords are the perfect length. the colors are just as pictured-i was surprised by another review that described the navy as",4,1,0,General,Bottoms,Jeans +157,48,"As pictured, but not slimming as i hoped","These are cute, comfy and just as pictured; a soft greenish-gray but i didn't find them to be super flattering on me, or at least not slimming in my view. i'm 5'3"" about 105 lbs., and got them in s/m which fit just right, but they do go all the way up to my true waist. they are ""tube legs"", meaning they're not contoured tights. so there's excess fabric at the toe (it'd be all bunched in flats) and there's a tiny bit of looseness at the ankle. there's also no distinguishable front or back (and no",4,1,1,Initmates,Intimate,Legwear +1068,42,Exactly what i was looking for!,These pants are so comfy and perfectly casual without being sloppy. they're the perfect summer pants.,5,1,0,General Petite,Bottoms,Pants +1028,91,Pajama jeans,"I love the coh fleetwood jeans, and since i was looking for a pair of not-so-skinny skinny jeans, i thought these would be great. but unlike the fleetwoods, which are a substantial weight denim, these are very soft -- too soft -- and bag out in the first 5 minutes. the style is okay but the fabric makes them unflattering. maybe if you're looking for jeans you can lounge in, these will be for you because they do have the comfort equivalent of sweats.",2,0,3,General,Bottoms,Jeans +877,29,Unique little sweatshirt top,"It is a little boxy, but it?s not unflattering in my opinion. the sweatshirt material is soft, the ruffles keep their shape and position, and aren?t too overwhelming on my small frame. i like the small slits on the sides, they allow the sweater to drape nicely. it also hit at a flattering spot, a little below the hip. 5?1??, 100 lbs, and got the xxs petite. this fit true to size for me.",4,1,4,General,Tops,Knits +1068,46,My go to,"These pants have quickly become my go to spring pant. comfortable and a long enough crop for my 5'8 legs, almost closer to the ankle which i prefer. i wore them 3 times with out washing and they did stretch out a bit but there is a set of buttons in the hip if i really needed them tighter there. i bought the darker color, its a mossy green/grey. it looks sharp with the tla black v-neck t shirt.",5,1,3,General Petite,Bottoms,Pants +838,41,Really wanted to like it,Looks great on the photo and from previous reviews i decided to give it a try. the material seems cheap and stiff. would not fit my frame well.,2,0,1,General,Tops,Blouses +838,34,Photos on model misleading,"The concept of this top is cool and the outer fabric is nice. the inner layer is sheer but as long as you're wearing a nude-colored bra, no big deal. however i did find the inner layer to be scratchy. they must've photoshopped the fit of the top on the model or altered the top, because it looks like it hangs straight on her. i ordered an xs and when you pull it out of the package, it clearly flares out & is a-line. so as a previous reviewer stated, it looks huge from the front. if it had fit the",2,0,1,General,Tops,Blouses +1100,36,Polyester! urrrrgh,"Dear retailer & designers: +just want a nice dress that isn't made from polyester! don't mind paying bigger bucks for quality fabrics, but please- enough of the polyester! +love, +your customers",2,0,8,General Petite,Dresses,Dresses +877,41,Cute but a bit too long,"I bought the xs regular and it was a little too long and wide. i was unable to find a petite version in the store or online. the ruffles were also bigger than how they appear on the model. i am 5'1"" tall and weigh 110 lbs. i believe the petite would have been a much better fit. i regret not discovering this top sooner when more size options were available.",2,1,0,General,Tops,Knits +877,53,"Cute on the model, but not in person","I totally agree with the first review. i thought this was soooo cute on the model, but it's loose fitting and has no shape to it.",3,1,4,General,Tops,Knits +877,42,Size down,"This top is really cute online, but that's about it. it runs large, but even if i sized down the ruffles were a bit much and the top was a little boxy surprisingly.",3,0,6,General,Tops,Knits +1060,53,Finally--pants for real women!,"These are the best trousers i have bought in a long time! i'm 5'8 and 145 pounds and the 8 fit with a bit of extra room in the waist--not enough to size down. i love that they are not ""skinny""--so over the skinny fit. i plan to wear these with black heels, white tee, and the vegan black leather jacket i purchased at the same time--oh, and a statement necklace--always a statement necklace. these are a must for every fall wardrobe! more pants like these, please!",5,1,3,General Petite,Bottoms,Pants +1036,66,Way too tight,I wear a 32 and sometimes a 31 but i could barely squeeze these on in a 32. the fabric is thick with lots of stretch but these are super skinny all the way to the ankle like a legging and not a jean. made for much thinner frames than mine.,3,1,1,General,Bottoms,Jeans +879,61,I was disappointed.,The sweater material was fragile. there were already two picks in the fabric when it arrived. i felt like it would not wear or wash well. i was also disappointed in the shaping or how it hung on my body. i am returning the sweater.,2,0,0,General,Tops,Knits +836,50,Beautiful and elegant tank,"I totally disagree with previous reviewer on sizing. i am usually a medium (sometimes small) in various retailer tops and i purchased this top in a small. i could barely get it over my head. i then ordered the medium and large. i tried the large on first and it fits perfectly. (like the model shot). so i would say this definitely runs small. i never wear a large. for reference, i am 36c, broad shoulder. the gold beading on the top is very pretty and the gold embroidery thread really pops. t",5,1,6,General,Tops,Blouses +1036,50,My new favorite jean!!!,"I have been a paige/pilcro lover for years! these mcguire jeans went on sale and i loved the neutral color so i ordered my usual size 28. they fit perfectly!! as a previous reviewer started, they are tight . . .they are skinny jeans and are meant to be tight. they hug in the right place, are not too high waisted and are a sturdy denim. for reference i am 5'2"", 120 # , short waisted and usually wear a 28 in paige/pilcro. these mcguire's, sized 28 were a great fit, good length, no hemming required",5,1,1,General,Bottoms,Jeans +1068,34,Comfortable & versatile,"These pants are so great. very comfortable, true to size, and i can see myself wearing these all spring and summer. i'm 5'1, 120 lbs, and my usual 26 petite fit great. these would also make excellent travel pants. i purchased the green color, and will be purchasing the tan color once i get done writing this review.",5,1,4,General Petite,Bottoms,Pants +879,37,Just didn't work for me,"I don't know what the problem with this sweater was on me but it just didn't work. it was too wide across the breastline, i think, creating a boxy shape that just didn't look flattering. outside of that, the sweater was lightweight and seemed well made. i was sad to send it back, especially at the sale price.",3,1,1,General,Tops,Knits +879,51,Lightweight sweater,"This lightweight sweater arrived within a few days of ordering and was packaged well. its fit is true to size and will be perfect for slightly cool days and evenings. the navy blue color is accurately represented in the picture. my only issue with this item is that one of the small lace panels at the hem on the hip is not sewn in all the way. i will keep it since it was on sale, but i need to decide whether to have it fixed or to just remove both of them as they are very small and don't add much",4,1,3,General,Tops,Knits +1060,35,Highest quality trousers i've found this fall!,"I've returned multiple pairs of trousers this fall because they were low quality/ wrinkle-prone wool and unlined. the material on these, however, is high quality and weighty, wearable in fall, but also great for our much colder winters. the herringbone is gorgeous - dark grey and black with subtle flecks of red, dark pink, and gold. they are also beautifully lined so will keep their shape and not itch! true to size for cartonnier: got a 2 and tried a 2 in the monica flannel trousers. gorgeous!",5,1,0,General Petite,Bottoms,Pants +1068,39,Perfect summer pants,"These are the perfect light weight relaxing summer pants! +the fabric is soft and light, and has some stretch, so i think they can be worn more fitted way, too. +i don't want to show off my bottom half of my body shape, so these are perfect ones to be a bit loose to covers the silhouette but still looks feminine & not too loose. +i''m 5'3, 115 lb and usually wear 25-26 jeans, 25 petite gave me the perfect relaxed look without losing the feminine look. i think 24 could fit as well, but would sn",5,1,0,General Petite,Bottoms,Pants +862,43,More beautiful in person,"This top is much more beautiful in person than in the photo. the embroidery is exquisite and there is the tiniest bit of sparkle amidst the design. soft, flowing and flattering. definitely a keeper.",5,1,1,General Petite,Tops,Knits +838,34,,I loved this top even more in person! it is made well and beatiful! the sheer under layer adds a sexyness to the design. the back of the shirt is open. i really like this detail!,5,1,1,General,Tops,Blouses +862,24,,Prettier in person! so pretty! i'm 5' 6'' 120 lbs and the xxs fit well. i normally wear a 0-2.,5,1,1,General Petite,Tops,Knits +1068,29,Great find,I am so glad i got these pants. the quality is great and the fit is perfect. they are very flattering and comfortable. i have worn them with flip flops on a casual day and have also worn them with black heels for a date night. worth the purchase!,5,1,0,General Petite,Bottoms,Pants +879,40,Snags easily,I was very disappointed in the quality of this top. the first time i wore it it snagged right in the front. i had to pull the thread under so it wasn't exposed. i put it in the wash in the gentle cycle and it was destroyed with several more snags when i removed it from the machine. this top is extremely delicate and doesn't withstand normal everyday casual wear although it's s casual lightweight sweater. now it's just a wear around the house ratty throw around shirt.,1,0,0,General,Tops,Knits +1068,38,,,5,1,0,General Petite,Bottoms,Pants +838,30,"Unique, gorgeous and timeless!",Saw this top online and knew i had to have it! it's unique and gorgeous with the split back and two-layer design. the top layer is thicker and almost like a brocade/tapestry design with rich purple and yellow tones. the under layer is sheer and lightweight. i was able to wear this early in my pregnancy and it totally disguised any bump i had from co-workers. this is def one of my top 10 fav tops now!,5,1,0,General,Tops,Blouses +877,46,Choral ruffle top,"In the photo and from far away this top looks more elegant than it truly is. wearing it feels like something better suited for sleeping in. it's a sweatshirt with the sleeves torn off and raw edges, which looks rather cheap and sloppy.",3,0,0,General,Tops,Knits +771,35,,Adorable romper. the only thing is the sleeves are a little shorter than portrayed in the picture. they come to about mid-forearm on me (and i'm a petite person). still cute but def not if you're looking for a full sleeve.,4,1,0,General Petite,Bottoms,Pants +879,44,Disappointed,I wanted to love this top. it was huge and i didn't like the material. it felt like it should have been much less expensive than it was.,3,0,3,General,Tops,Knits +1025,55,I am so happy i got these amazing jeans!!!,"I just received these jeans today after buying them online last week. i wasn't sure how they would fit, but i am so very happy i got them. and on sale too!! i am 5'2"" and about 128 pounds. athletic and curvy but petite too. i bought the size 4 and they are a perfect fit in the length too. they are button up, boyfriend style but not too baggy. the detail on the cuff is perfect and they have a unique, unusual but expensive look. what a steal !! i would have paid full price for jeans that fit this",5,1,0,General,Bottoms,Jeans +862,26,Gorgeous embroidery,"This top has gorgeous embroidery, very very nice, looks good in both wine and grey. it runs large. i kept it around not sure whether i should keep it. i usually wear xl, i ordered l and it still was loose at the bottom but fitted at the top. i have a big bust, and the embroidery ended at the top of my bust making the entire look unflattering, because the bust juts out in a strange way below the embroidery. the arms also tend to look wider due to the style. i don't like the fit at all.",3,1,0,General,Tops,Knits +1028,34,,"I have now purchased these pants (online) three times in the ivory. i first ordered them in a 28 as it was the only size available, and i thought that size would fit me in this brand. wrong! i was swimming in them. great pants, but too large in the waist. i kept checking online and they popped back in a 27, which i thought would fit. wrong again! they arrived a couple of days ago, and still they are too large in the waist, but since 27 was the only size available, i thought that i would keep the",4,1,0,General,Bottoms,Jeans +1068,37,"Perfect, casual pant","Love these! they are my new favorite weekend pant. they are comfortable, versatile, and cute. the fit and cut are great too. a must have for your wardrobe.",5,1,1,General Petite,Bottoms,Pants +877,43,Great design,This is so much better than wearing a grey sweatshirt. i love it and it makes me feel pretty.,4,1,1,General,Tops,Knits +1083,35,,,5,1,0,General,Dresses,Dresses +1078,36,,,5,1,0,General Petite,Dresses,Dresses +1083,45,Worth every penny,Purchased to speak at an event. not only is it very eye catching and i garnered many compliments it fit like it was made for me and was comfortable to wear. i questioned ordering a 4 and possibly could have worn a 6 but with the elasticity to the material there was no problem with movement or sitting and i felt hugged in in all the right places!,5,1,0,General,Dresses,Dresses +1083,41,Amazing dress!,"Remarkable dress, so much so that people stop me to remark about it!",5,1,0,General,Dresses,Dresses +1083,42,Classic and timeless,I wore this to a wedding yesterday and received several compliments. the dress is well made and very comfortable. i know i will wear it again.,5,1,6,General,Dresses,Dresses +1083,27,Boom,Wore it to a cousins wedding. loved it! probably one of the best dresses that i have ever worn. lots of compliments. felt great dancing the night away.,5,1,0,General,Dresses,Dresses +1083,30,Beautiful dress,"I was so excited to get the dress, it's extremely beautiful and comfortable. the size i picked was unfortunately too big for me though, i just had a baby so it's hard to figure out what size i am now..details were exquisite.",5,1,0,General,Dresses,Dresses +1083,44,Such a great fit!,"I don&#39;t write many reviews but i loved this dress and had to share! i&#39;m normally about a true 6 and have been finding a lot of retailer dresses running rather large. i tried this on in the store in a 2 and because of the stretch in it, it fit my hourglass shape really well. i have a melodies that pencil dress in a 6p that fits great so this style i think runs a bit larger. i wore it to a date night and it helped make the evening special.",5,1,0,General,Dresses,Dresses +1083,56,Gorgeous black dress,"This dress is a beautiful, classic dress that is figure flattering and as stunning in person as it is in the photo. i love it!!!",5,1,0,General,Dresses,Dresses +1083,29,Perfect black dress,"Love this dress. sexy but still appropriate. very elegant. i'm 5'6, 125 pounds, and the size 2 fit me great. it is a little long so i am considering ordering the size 2 petite. definitely worth the money.",5,1,7,General,Dresses,Dresses +1083,26,Unique compliment getter,"Great dress, received tons of compliments. downside to the dress is it stretched a bit and was feeling a bit loose by the end of the evening.",5,1,0,General,Dresses,Dresses +1083,44,Fabulous!,"This gorgeous dress arrived today and i can't wait to wear it. based on other reviews i ordered a 6 petite even though i'm 5'6"" because i wanted the skirt to hit just above my knee. it's perfect. i usually wear a 4 or 6 and the 6p fits well, not snug but not big either. maybe a 6r would be larger, i don't know. if you are worried about the skirt being too long then definitely try a petite size. + +the dress is risquã© because it's faux ""see through"" but still very classy and elegant. it's sexy w",5,1,8,General,Dresses,Dresses +1083,40,,This dress fits like a dream and looks gorgeous on. i'm sure it will be a go to for many occasions.,5,1,1,General,Dresses,Dresses +1083,44,Not a $300 dress,"I had high hopes after reading all of the reviews, but as you can see, the dress didn't live up to them. i ordered a size 8, and maybe a 6 would've fit better, but i'm not going to find out. the sheer area on the model really stands out; it does not in real life. there were loose threads throughout, and there really shouldn't be at this price point. i was going to wear this to a wedding, but as a member of the wedding party, i don't think it would picture well at all. i'm sorry that it's headed",3,0,15,General,Dresses,Dresses +1078,42,Cute dress,"Very cute summer dress. it runs a bit large and it doesn't give you shape. but, it's good for me to hide my belly fat. the dress is so comfortable to wear. i didn't know that it has pockets, so that was a pleasant surprise (i always love pockets). overall, it's a perfect summer dress.",4,1,2,General Petite,Dresses,Dresses +1083,60,Carissima sheath,"This dress is amazing. i bought it for an afternoon wedding i'm attending, it's perfect! it fits like a glove and the lace is so delicate. the nude sheath really allows the lace and all the details to stand out. love it in the black!",5,1,3,General,Dresses,Dresses +1083,30,Beautiful dress!,"This dress is absolutely gorgeous! love, love, love! i am 5'2 and the petite sizing was perfect.",5,1,9,General,Dresses,Dresses +1083,37,Another beautiful byron lars dress!,This is my 4th byron lars dress and i just love this designer. his dresses all fit the same as far as i can tell. i had bought this dress as my sister in law recommended it so much and she was right it is stunning!,5,1,1,General,Dresses,Dresses +1083,37,Beautiful idea...,"I ordered my normal size in this dress. i am 6 foot tall, but the regular sizes were too large and too long (mid-calf). i returned the dress for a size smaller in petite for a more flattering hemline. the dress is lovely, especially on the models in the pictures, but didn't quite work out for me. also, it feels like there are hundreds of closure hooks that make putting on/taking off the dress seem to take an unusually long time!",3,1,0,General,Dresses,Dresses +1083,34,Stunning,This black dress is stunning...i've already worn it to a fashion show and a wedding and i received so many compliments!,5,1,0,General,Dresses,Dresses +1083,28,Great lbd!,"This is a very flattering dress that is perfect for those little black dress occasions. two other people in my family own this dress and love it, it's now my turn to add it to my collection. the dress is quite long for my 5""6"" frame, so i have reordered it in a petite size for a little better fit and length. the lace is very detailed and the nude slip underneath keeps the lace from being too revealing. very elegant, a little chanel like. and by the way, the belt is included, as another reviewer",5,1,0,General,Dresses,Dresses +1083,25,"Beautiful dress, disappointing fit","I had really high hopes for this dress based on the reviews. i'm on the curvier side, but was surprised to find that my usual size 12 was very loose and long - the hem hit just below my knee. instead of feeling sexy, the weird fit just made me feel matronly. i'm going to exchange for a 10 petite, which will hopefully be a little more figure-hugging and not as long. despite my fit issues, the design is stunning, intricate, and unusual. i'm hoping that the new size will do it more justice.",4,1,3,General,Dresses,Dresses +1083,47,Beautiful but...,"I generally wear a size 6, and am 5 ft 3 in in height. the size 6 fell below the knees and did not look right. the fit of the 6 petite is beautiful and flattering. the dress is indeed lovely, and i really want to love this dress as much as others do... however, i am conflicted. i am modest in my style, and even though nothing is revealed, the strategic placement of lace panels makes it a bit suggestive, and takes it out of my comfort zone.",4,1,2,General,Dresses,Dresses +1002,58,Versital and comfortable,"This skirt is a great addition to my wardrobe. the print is sophisticated and style flattering on any body. it can be dressed up or down and could be worn most of the year. maybe not on those hot summer days, but mild ones, for sure with a pop of color tank or t.",5,1,0,General,Bottoms,Skirts +1083,38,Perfectly delightful!,"This dress is absolutely perfectly delightful! fits like a glove and is stunning on. i couldn't be happier with this purchase! i wore it to a wedding in october and felt beautiful and sexy all at the same time. i usually struggle with dresses because i am under 5 feet, i purchased a 0p and it fits very well. no tailoring needed. only problem was that once i was on the dance floor the hooks in the front of the dress began to come undone, yikes! i had to leave the dance floor a couple of times and",4,1,4,General,Dresses,Dresses +1083,45,Fits like a glove,"I bought this dress for the kentucky derby. i was worried about wearing navy to an event known for bright colors, but the gorgeous lace and rosettes are light and beautiful. i paired it with a lavender hat, and i was ready for a mint julep! i usually wear a 2 or a 4, so i ordered both. the 2 fit best. i will be wearing this dress to a wedding in the fall and for many events for years to come. stunning!",5,1,4,General,Dresses,Dresses +1078,29,Adorable!,"I was looking for the perfect july 4th weekend dress, with enough room to be comfy (and eat!) while also being chic and feeling cute. + +i got countless compliments on this dress.. the design is adorable, and the fit is really flattering. i'm 5'4"" and i weigh about 128 - i normally would have worn a small, but i had to spring for the petite xs. the design is a bit big and billowy, and anything else would have swallowed me up. + +overall, great purchase. i am in love! :)",5,1,0,General Petite,Dresses,Dresses +632,35,Great beach shorts,"I've been looking for white beach shorts and these are perfect! as another reviewer said, they are in fact see-through -- because they are meant to be a cover up, not ""real"" shorts. the hem detail is very cute and they're super comfortable! my size small fit tts, and the 3"" hem is nice for tall women.",5,1,0,Initmates,Intimate,Lounge +1083,26,Just incredible,"Got this dress in the mail today, and i am blown away. the fit is amazing! normally i would get an 8 in dresses, sometimes a 6, i got a 6 in this one and it's perfect. hugs in all the right places. everyone needs this dress! i feel like with the style and fit of this dress, it should be a little more snug so i recommend sizing down. cannot wait to wear this one!",5,1,2,General,Dresses,Dresses +1078,36,Adorable,I love this dress! it's very cute and comfortable. i belted it to give me more of a waistline because otherwise the tented shape overwhelms my short stature. i love the strap design at the neckline. the off the shoulder sleeves are comfortable. i have an xsp which is true to size for me.,5,1,3,General Petite,Dresses,Dresses +1022,39,Love these jeans!,"I am fortunate to work in an environment where i can wear jeans just about every day. so, i am always looking for a good pair to add to my collection. i bought this style on a relatively quick shopping trip with not a lot of thought. well, 2 weeks later i was back buying a second pair. + +the color is great, a little darker with that warn in look but no whiskering with a fit that is tts. i like the higher waist to cover my mommy-tummy and my butt looks pretty fabulous. but, the best thing about th",5,1,0,General,Bottoms,Jeans +1083,34,Wonderful,"Incredibly flattering and going to be useful for multiple occasions - i needed a 'default' black dress and this is it. + +only downside - it's pictured with a beautiful grosgrain ribbon at the waist, but does not actually come with the ribbon. i'll be trying to find something similar at a ribbon/embroidery shop, as the dress would really benefit from a slightly cinched waist.",5,1,2,General,Dresses,Dresses +1083,32,Showstopper!,"This dress has been on retailer's site for a while now (years?) and i finally grabbed one during a recent member sale. i can't believe i waited so long! it's so gorgeous on - classy but still distinctly sexy. i'm 5'10"" 160# and the size 8 fits great - definitely fitted through the hips and thighs and roomy enough on top i considered taking it in. beautiful dress overall!",5,1,0,General,Dresses,Dresses +907,53,,"I am so happy with this! i was pleasantly surprised upon receiving it as i expected it to be of lesser quality than what i found it to be. it is a medium weight weave, grey sweater with a beautiful design and texture; one of those pieces that you will tire of long before it wears out! it is a great layering piece but not over bulky or structured tops as it is very smooth fitting without a whole lot of give. that is to say it is not loosely woven so it is better over a snug fitting item. the colo",5,1,2,General,Tops,Fine gauge +1083,41,,This dress is really lovely. it looks so fragile online but in person is rather structured and substantial. it runs very large i just returned mine for 2 sizes down. i also like the zipper up the back so that the eye hooks on the front are not necessary to use to put on. the interior lining is affixed so there is no slipping like a typical under slip. if you are on the fence at least try it. i am glad i did.,5,1,0,General,Dresses,Dresses +1002,91,,,5,1,0,General,Bottoms,Skirts +1083,45,Ladylike but sexy,"I wasn't looking for a little black dress but i couldn't resist this one. it's as stunning in person as it is in the pictures online. the front has a corset-like closure which i didn't realize until it arrived. it's very classy though, not cheap looking. the lace detail is really beautiful. i was a bit concerned about how the sheer looking areas would look because i was hoping to wear the dress for a dressy work function. it's definitely a sexy dress but the fact that there's so much coverage ma",5,1,2,General,Dresses,Dresses +1083,32,I love love this dress,"This is truly the best black dress...you can wear to sooo many things. a long time keeper for the closet. i felt it ran a little bit big...i am normally an 8-10...i bought both sizes (8 and 10)...kept the 8...but felt i could even get away with a 6...but didn't want to pay shipping again for another size. i am 5'7"" and 155lbs. it is truly a flattering dress for any figure.",5,1,1,General,Dresses,Dresses +1083,34,Looking for another reason to wear it!,"I love this dress. i found it to run one size big. i am 5'8'' 128lbs and went down a size to a 2. i purchased both a 4 and 2, then tried them on a few times, and the smaller size didn't pull at all because it fit me right, the larger one, hung lower and didn't look right. i received compliments all night when i wore this and paired it with black heels and a small back clutch. very comfortable too.",5,1,5,General,Dresses,Dresses +1083,32,Amazing dress!!,"I don't know that there needs to be more reviews, but here goes. + +the dress is gorgeous! i have never received so many compliments on a dress of mine, and i have some really lovely ones. strangers and friends alike were complimenting me. i had been eyeing this online, but never pulled the trigger thinking i'd never need a dress like this anytime soon. then i came across this in person at my local store, and i instantly fell in love. don't hesitate! and, if you're lucky that retailer is having o",5,1,1,General,Dresses,Dresses +1083,36,Love,Love this dress. the fit is amazing. i wore it to church for my brother's wedding and got so many compliments. it looks great in photos too!,5,1,2,General,Dresses,Dresses +1083,34,,"I would not have spent this much on a dress without a gift card, but it absolutely lives up to the hype.",5,1,2,General,Dresses,Dresses +1083,47,Form-fitting yet forgiving,"I've eyed this dress forever and finally decided to buy it. i literally read every single review to make sure i ordered the right size. i'm 5'4-3/4"", 36c-32-37 with a drop-waist that measures 34. based on the reviews, i ordered a regular size 6. i tried it on with a bra and also without, and the dress fits so well and beautifully both ways. but for complete comfort, i'll probably go without the bra (the lining and design don't show anything you don't want seen!). sitting in it feels great too. i",5,1,0,General,Dresses,Dresses +1083,25,This dress makes me look 20 years younger,"I disagree with reviewers who said the dress looked cheap, cavernous or stiff. quite the opposite. i wore this to my 32nd anniversary dinner, and two women stopped me to say i was stunning. i am an average medium hourglass. the dress arrived in 2 weeks and was true to size. i wore a nude lace strapless bra underneath. the hem reaches the bottom of my kneecaps. the lace sleeves were not tight on my fleshy arms. the neckline lays flat. the dress zips in back, and the silver hooks in front are most",5,1,2,General,Dresses,Dresses +1083,76,Here&#39;s a tip!,"Fabulous dress! +clip off the tags because they show through the lace on the back (you can see this on the back photo of one recent reviewer).",5,1,0,General,Dresses,Dresses +1083,63,My go-to dress for everything,"I love this dress and am strongly considering buying the white, too, but i wish it came in another color other than white or black, because i would get that. goes great for nice dinners, dates, weddings, almost anything. it's not ball-gown fancy, but just fitted and nice enough to wear for work or a nice evening out. only problem i have are with the clips in the front. i have a hard time using the loo because it is very fitted, you have to un clip them and then re-clip, but it's worth the effort",5,1,0,General,Dresses,Dresses +1083,64,,This is a unique beautiful dress and it fits like a glove.,5,1,1,General,Dresses,Dresses +1083,50,Meh - pretty but matronly,I so wanted to love this but was underwhelmed - ii am tall but yet it hit below my knee in that awkward spot that is just a tad too long to be hip stylish and too short to be evening cocktail - just felt / looked frumpy ... i do think it looks great on other reviewers though so may just be that if wasn't a good fit for my body type - i wore my normal size 6 and it just didn't flatter - made me feel 10 years older,3,0,0,General,Dresses,Dresses +1083,38,,"I love this dress. i purchased a size down from my normal dress size after reading the reviews. i'm 5'9"" 148lbs 34dd and the size 6 fit perfect. the attached slip is a tad darker than my very fair skin color but it still works. can't wait to dress it up with some nice heels.",5,1,1,General,Dresses,Dresses +907,64,Very nice!,"This sweater is light gray, as shown in the photo, not dark gray as the description states. i went up from my usual size so would say it runs small. it is lightweight enough that i think i will get adequate use out of it this winter in fl.",5,1,3,General,Tops,Fine gauge +1083,50,,"I purchased this dress for my 50th birthday bash!!! it was stunning!!! the fit was perfect. i did buy it a size up, but could have worn my regular size. it is incredibly flattering and elegant. very well made. one of my go to black dresses for the summer!!!",5,1,4,General,Dresses,Dresses +871,55,Pleasant surprise!,The picture doesn't do this blouse any justice. the fabric is really nice and the back is really what makes this blouse. the bows down the back of the blouse make it pop!,5,1,0,General,Tops,Knits +1083,31,Can i wear this everyday?? amaze!,"This dress is gorjuss!! i thought i would be in between a 10-12, but after trying on the 8 in the store--i'm a perfect 10. i was a little nervous about the price, but then i said, ""treat yoself!"" and made the leap and didn't look back. i felt so confident wearing this to a wedding and received so many compliments. i wanted a dress that made me feel sexy, without showing so much skin--this achieved it all! make the purchase--you won't regret it :-) + +i'm 5'8, 195lbs and the 10 was spot on!",5,1,5,General,Dresses,Dresses +1022,31,Buyer beware- stretches out significantly!,"I am obsessed with denim and have two other pairs of ag jeans from retailer that i am very happy with. my recent preference has been for high-rise skinny jeans and decided to give these a try because of the versatile medium wash. when i tried these on in my normal size, they were so cute that i bought them full-priced. i could tell that the material was pretty stretchy (which is what makes them soft and comfortable), but was not expecting them to stretch out and sag after a few hours. by th",2,0,2,General,Bottoms,Jeans +1083,39,"Wanted to love this dress, but the cut is strange","I am a proportionate 5'4"" 39 year old and thought this dress would look great. it's a-line and looks a lot like the kind of dresses that usually fit me nicely. i bought it in an 8p, which is my normal size. the hips were a little too big, but not bad. the top part, however, was enormous. the cut in the shoulders/neckline was way too wide, the lace sleeves were way too big, there was too much room in the bust (my c cup was inadequate), etc. this dress would look nice on someone who is thicker/vol",3,0,7,General,Dresses,Dresses +936,42,Huge,"This is a gorgeous sweater but huge. and when i say huge, i mean gigantic. i'm usually a size large and i don't even think the small would be small enough. the cowl neck and fabric overall is great (although stretches out, which is why it becomes so overwhelming) but the sweater just hung on me like a short blanket. the armholes are very big - deceiving on the model. returning.",4,0,1,General Petite,Tops,Sweaters +1083,32,Amazing,I was feeling defeated in my search for a dress for some upcoming holiday parties while shopping today. i saw this dress in the dressing room as another customer was trying it on. she was a shorter petite woman and this dress looked amazing on her. it instantly caught my eye and it looked great on her! i went and was lucky enough to find a size 10. lately i've been closer to a 12 sadly and was worried this was going to be another bust. i'm 5/11 and much curvier than the woman i saw in the dressi,5,1,5,General,Dresses,Dresses +632,60,Cute cover-up or summer top & shorts!,"Lightweight, soft cotton top and shorts. i think it's meant to be a beach cover-up but i'm wearing it as a thin, light-weight summer outfit on these hot hot days. the top has a loose elastic around the bottom which i didn't realize when i ordered it, but i like it and it matches the look in the photos. and the shorts are very low-cut - don't expect them up around your waist. again, i like that. some might want to wear a cami underneath because it's a thin cotton but i'm fine as-is. i bought it i",5,1,8,Initmates,Intimate,Lounge +1083,40,Beautiful but..,"I think this dress is beautiful. i ordered it for my brother's wedding, but the nude slip underneath made the dress look a bit too revealing. i may keep it for a holiday party though because it really is gorgeous and super flattering. it dies run large. typically i'm a 10 and the 8 fit perfectly.",4,1,1,General,Dresses,Dresses +1083,26,Epitome of elegent,"I tried this dress on in store, and i realized it is true to size in every way. i am 5'1 and needed a petite for it to land just above my knee. this dress was elegant- i wore it to a wedding and some thought it was a ""rent the runway"" dress! ha! i'm way to classy for that. for all you ladies who want to look sophisticated in those cooler evening events, this is your dress! i felt so elegant and danced the night away and had no issues! the clasps go all the way down the dress, so i do suggest (li",5,1,3,General,Dresses,Dresses +1022,53,Great jean,"Best jeans ever. i have 2 pairs now. after getting my first pair last year, i knew i would be needing another. most comfortable, form fitting and flattering jean ever.",5,1,0,General,Bottoms,Jeans +1022,39,Super comfortable and look great!,"I love these jeans! well worth the price. waist hits just right. the stretch is great. i can wear them with riding boots, booties, and flats. i love them!",5,1,0,General,Bottoms,Jeans +1083,55,,"I have purchased over 7 byron lars dresses. i'm addicted to his style and perfect fit for the curvy woman. whether you are a 2 or 12 you will feel beautiful and if you care to present yourself on the occasion as a most lovely lady that oozes of mystery wear this dress. throw your next day dirty hair up with any classic retailer pins, barrettes or headband along with a strong lip color with earrings only. or go nude lips, smoky eyes and heels. this dress carries itself. don't over accessorize with",5,1,7,General,Dresses,Dresses +1083,57,Absolutely stunning!,"I wore this to an engagement party and got compliments all night. it is absolutely gorgeous and very slimming! i got a petite 4, and it fit perfectly. for reference. i am 5'2 and 125 lbs. you ill not regret buying this dress!",5,1,6,General,Dresses,Dresses +1083,31,Parisienne chic,"Bought this dress for a friend's wedding. i have since worn it to two others and the opera numerous times. it's my favorite little black dress as it's sexy and modest at the same time. i receive numerous compliments every time i wear it! it's easy to get into, the zipper is sturdy and the fabric is breathable, stretchy but not clingy.",5,1,4,General,Dresses,Dresses +867,34,,,5,1,0,General,Tops,Knits +865,45,,"I really liked the casual style of this top, but i was disappointed when i put it on. it's cut weird- the shoulder cut-outs are smaller than pictured and just don't seem to hang right. they don't hit where they're supposed to and the sleeves were also not as pictured, more like 3/4 which i didn't like. the color is really nice and i liked the fabric but the fit was just off. i tried xs and s. both fit weird.",2,0,4,General,Tops,Knits +1066,29,Too flare,Too small... too flare... nice thick fabric. not my favorite pant.,2,0,1,General,Bottoms,Pants +867,40,,"This is a really cute sweater. it's thick enough to keep you warm, but it just didn't look right on me. it made me look frumpy.",4,1,2,General,Tops,Knits +87,39,,"The fit is gorgeous, but i didn't realize it was completely transparent. when it says ""mesh"" it means ""mesh""! i was thinking the ""mesh"" part was on the bottom. because of how it is cut, high on the shoulders, you can't wear a cami underneath to provide coverage. very cute, but not practical.",3,0,1,Initmates,Intimate,Intimates +867,61,So comfy!,"Bought this in my usual size small and it fits well. i wear it around the house constantly to stay warm this winter. it is so very warm and comfortable. very easy to wear. could be worn out, but i prefer it with lounge pants due to the comfort and warmth it provides. it is a nice neutral and can be worn with many other retailer casual clothes. highly recommend!",5,1,0,General,Tops,Knits +456,44,,,4,1,0,General,Bottoms,Shorts +865,30,"Flowy, lightweight, and easy","I typically wear a medium, but went with a large because i am pregnant and tall. i think i could have used the medium in width, but like the length of the large. it is a wider fit and is significantly shorter in the front than the back, but i think works with the look of the top. i think you could dress it up or down and the fabric is cozy. i would highlight that it has a wider fit, but i think that is the design of the top. overall, i am pleased and i think meets my search for an off the should",4,1,0,General,Tops,Knits +1037,48,Run small,"I really like these but my usual size 29 did not fit. i always wear that size in pilcro but these were at least a size two small and i have to return them. regretfully, they are out of size 30 so i lose out. wish there had been previous reviews to let me know, so i'm doing so now for anyone thinking of ordering.",4,1,20,General Petite,Bottoms,Jeans +1037,50,Underwhelming,"I was really disappointed with these pants. they were a thinner fabric than expected with little to no stretch. they were very tight around my legs and huge at the waist. sadly, they will be going back.",2,0,0,General Petite,Bottoms,Jeans +456,62,Wide legs but good quality,"The color and the fabric in these shorts is quite nice as is the length. i didn't order the pilcro bermudas because another reviewer said the legs were quite wide. unfortunately, these shorts also have wide legs. i'm going to have them tailored so they hug the legs as in the picture rather than billowing out. i do not have skinny thighs(don't i wish!) and i was surprised that the fit was not as pictured. if you're ok with wide legs or can get them at a price at which you're ok spending extra for",4,1,3,General,Bottoms,Shorts +1009,38,Not quite cinderella,I thought this skirt would fit just over the knee with a nice flowy build. instead it fit rather baggy and was longer than i expected. i felt dowdy in it.,2,0,0,General Petite,Bottoms,Skirts +865,40,,I really like this top. is casual and easy to wear with short right now and will be super cute with jeans when it gets cooler.,4,1,0,General,Tops,Knits +1066,45,,"I'm 5'4"", usually a small in retailer sizes, 6-8 pants, i purchased the 8 petite",3,0,0,General,Bottoms,Pants +456,64,Re-ordering two sizes down,I wore out a pair of level 99 shorts a couple of years ago. ordered these in the same size and they are huge. so i am sending them in for exchange and hope i'm guessing right. linen and tencel are my two favorite summer fabrics. love the length which can be adjusted by rolling. good pockets. gorgeous somewhat dusty plum color. belt loops if needed though i rather hope they're not.,5,1,1,General,Bottoms,Shorts +1037,63,Beautiful!,"Just got these in black and they look great! they are a great combination of classy and casual with the added bonus of being super soft! they are, however, very fitting/slender, but give a little with wear. as others have mentioned, they do run a little small, so sizing up one was the right decision. at 5'5"", they fall at just right place on my ankle. great pant overall - always love pilcro!",5,1,1,General,Bottoms,Jeans +1066,64,A formal yoga pant,"The other reviews seemed promising and so i ordered these in a 10 petite. i am 5'4"" and the length was still long and would either need to be worn with a heel or altered. the length was not what made me send them back though. the quality is very very nice and the fabric thick, stretchy and well made. however, the body hugging fit and flare make these look exactly like a yoga pant but made from nice material. if i were a bit more confident to wear these outside of the gym then they would be great",2,0,0,General,Bottoms,Pants +886,53,Not a sweatshirt,"If you're expecting a sweatshirt when you order this, you might be disappointed. it's actually more like a banded t-shirt, which i don't mind. i'm 5'2"" and the length comes just below the button on my jeans. perfect length for us shorter gals. sleeves are quite long on me, but i like to wear them pushed up anyways (and they actually stay up). i wouldn't pay full price for this, but it's a nice top at the sale price. cute with destroyed jeans or black leggings.",4,1,0,General,Tops,Knits +865,36,,Not sure why it has gotten good ratings and or why sold out online periodically. awkward fit and flares quit a bit at waist. also has extra material at waist line so does not look flattering.,3,0,1,General,Tops,Knits +865,27,Perfect for fall,"This sweater is a hit. the color is fantastic and the shoulder cutouts add a feminine and unique touch. looks amazing paired with booties, a statement necklace and jeans. definitely affordable too! highly recommend",5,1,1,General,Tops,Knits +1037,37,Amazing as usual,I've always been a pilcro fan and they always seem to fit just right. this pair of velvety pants was no different. lightweight velvet and a great cut. yay!,5,1,0,General,Bottoms,Jeans +1037,59,"My newest ""best"" leggings, stellar!","I wish i had purchased these earlier in the winter season because i could wear them every single day. they are phenomenal, plus i got them during a great sale. the reviews i read said they run small, so i went a full size up and they fit perfectly. (i usually wear a 4, bought a 6.) one of the best winter wardrobe purchases i've ever made. totally versatile and because they're black, they can be dressed up, or down.",5,1,0,General,Bottoms,Jeans +867,45,Lost in translation,I loke the idea of this jacket but it was executed poorly. it makes me look like a football player! i am 5'8 135/athletic build and i was swimming in the m. i tried a small on in store and it still looked like i was wearing shoulder pads. it hangs and gaps awkwardly. the sleeves are freakishly long and the overall length was too short.,2,0,0,General,Tops,Knits +1037,42,Runs small,"These are beautiful pants! the wine color is rich and they are very soft. they just run really small. i normally wear a 25 regular but often i have to roll the length up a bit. so, this time i ordered a 25p thinking it would be the same just shorter -- but i could hardly even pull them over my slinder size 6 foot. i am going to exchange them for a 26 regular. i so hope that they fit -- they are so lovely!! +i totally recommend -- just order a size, or maybe two, up. though, to be fair, maybe peti",5,1,12,General,Bottoms,Jeans +1067,41,Beautiful,"I love this jumpsuit. i've worn it twice and received many compliments both times. absolutely gorgeous. i couldn't be happier. 5'5"", 135, 34c-6.",5,1,2,General Petite,Bottoms,Pants +477,24,,"This is cuter in person, more of a brown than a cream like in the picture. it runs a little smaller than i was expecting, but that's actually good for me as things usually are a little loose up top. i'm 5'6"", 120 lbs, 32c, and an xs fit well for a sexier look, but if you're wanting it a little looser, i would go up one size.",5,1,2,Initmates,Intimate,Sleep +838,39,Nice details,"This is a great shirt with cute details including the ruffled back. i am petite and needed to shorten the sleeves, but otherwise the fit was true to size and not too baggy or too tight. the material feels avergage in quality, but looks polished with navy blue pants. i received several compliments during my first wear. overall, a very cute shirt!",5,1,1,General,Tops,Blouses +886,29,Crop top or not?,"Color, fabric blend, and pattern are even more beautiful in person! unfortunately, i wont be keeping this due to length. i am only 5'3"" and this top dropped only to about 2 inches below my navel. if you have a short torso, or like the short look, i would recommend this!",4,1,1,General,Tops,Knits +1067,32,,,5,1,0,General Petite,Bottoms,Pants +1066,35,,I recommend this product if you are tall. the pants fit great but they are too long. im 5'7' and they drag on the ground.,4,1,0,General,Bottoms,Pants +1037,52,Great look,These pants fit great. the velvet material is a sleek look . these pants can be casual by day and are easily dressed up in the evening.,5,1,0,General,Bottoms,Jeans +1066,38,My new favorite pant,"These pants are amazing! i love that they zip in the back and the material is just right. i am 5'7"" and they are the perfect length. i bought the black and now buying the gray. i hope they come out with more colors!!!",5,1,0,General,Bottoms,Pants +1008,72,Love!!!,I was very hesitant to purchase this with such a high price tag but i just received it in the mail and it is absolutely beautiful. feels and looks high quality and i can't wait to pair it with the top the model is wearing in the photos. definitely worth it!,5,1,9,General,Bottoms,Skirts +1037,64,Nice velvet leggings,"I have other pilcro cord leggings & the black ponte knit leggings in my usual size 28 in this brand. they fit well & have a nice stretch - very comfy. i ordered these velvet leggings in the 28, the blue & the wine, & they just don't fit the same as the others. these are a little short in the crotch area & the legs feel restrictive & not much give. i have skinny legs! length is perfect though at the ankle. these same exact pants were just in at the store in black & fit a little better, but i don'",5,1,17,General,Bottoms,Jeans +886,25,A little short,"I ordered this online expecting more of a heavier sweater. its really more like a t-shirt which is actually fine. its super comfortable and it's really cute. my only complaint is that it is pretty short. i'm 5'7"" and i would love it if it were just an inch or two longer in the torso. other than that it's a great shirt.",4,1,0,General,Tops,Knits +704,35,Perfectly sexy and sweet,"My bridesmaids gifted this to me at my bridal shower, and of all the lingerie i received that day, this was the most memorable. it is equally romantic and sexy as it is subtly sheer. the delicate eyelash lace detail adds so much flair. i have this in size small and it fits tts. love this piece! i plan to wear this for my boudoir shoot.",5,1,1,Initmates,Intimate,Intimates +456,42,"Great color, great fit, bring on the sun.","I love the pilcro pants and so when i saw these level 99 shorts i just had to order. they arrived and are as good as i hoped. the fit is great, the length is great (i don't like shorty shorts) and i love the color. the photo is very true to life in regard to color. i will definitely get a lot of use from these this coming summer.",5,1,2,General,Bottoms,Shorts +864,54,Cute !!,Cute blouse & great price !!,4,1,0,General Petite,Tops,Knits +1037,37,So soft!,"Incredibly soft and comfortable, not as fitted as i would like (this often happens to me with skinny pants, though). i want to wear these guys everyday!",5,1,0,General,Bottoms,Jeans +945,32,,,4,1,0,General,Tops,Sweaters +960,37,Classic,Really great best. nice substantial material and great fit. will be able to wear with many things.,5,1,0,General,Jackets,Jackets +864,34,Runs big but cute buy on sale,Loved this shirt but it runs pretty big. i'm normally a sm/med due to bust size (34ddd) and ordered a small based on other reviews. could have gotten an x-small. debating going to exchange. i ordered it in three colors bc it was on sale. better quality than some at retailer.,3,1,1,General Petite,Tops,Knits +1030,45,,"Runs large. very stretchy. nice wash. mine had more holes and fraying in the legs than i expected. i returned them because i got the wrong size and smaller sizes are sold out. otherwise a cute jean and with the sale, certainly worth it.",3,1,0,General,Bottoms,Jeans +1030,37,Runs at least 2 sizes small,"These run at least 2 sizes smaller than other styles of the same brand, mother. such a bummer because the quality is totally on point. i'm going to exchange them for a huge size i guess. whatever, i don't mind having a size that's so much larger than all my other jeans. i just mind the complete hassle of the exchange process. i wish mother would get their sizing issues under control. it's not retailer's fault. so annoyed.",2,0,4,General,Bottoms,Jeans +1037,64,"Great color, comfortable.","These corduroys are comfortable and fit true to size. (i am just over 5 feet tall, 106 lbs, with long legs for my height, and the 25 fits really well.) they wash and dry well, with minimal (if any) shrinkage, as long as you use low temperatures. i gave them 4 stars, instead of 5, because i feel the material could be more substantial than it is. the green is actually a very attractive mossy brown.",4,1,1,General,Bottoms,Jeans +864,32,Simple and easy,This shirt is amazing. i bought it in white and found i was wearing it with everything...so i went back to get the gold (which is yellow). the dit runs big so order a size down. love the riffle around the sleeve and the little dot trim. very cute!,5,1,0,General Petite,Tops,Knits +1081,35,Nice casual dress,"Cute, casual dress -- i especially love the thick fabric, as i think it will hold up well. the fit is slightly boxy, but it's short enough for it not to matter as much, and the waist tie helps give the dress a little shape. i was surprised that the the petite xs was off for me proportionally (usually i wear petite sizing at retailer) but the regular xs fit much better.",4,1,0,General,Dresses,Dresses +864,56,"Feminine, flattering, and comfortable","I love this top, it gives a little bit of a sleeveless look yet is more flattering on the arms for those who don't normally wear sleeveless tops. i think it runs very large - i'm normally a size s/m and the extra small was right. it's loose around the waist yet has a feminine fit.the tiny balls around the neck, button at the back, flutter sleeves, and linen fabric are all cute details that make this top unique. i also like how the fluttering goes down the sides and not just around the sleeve.",5,1,9,General Petite,Tops,Knits +1081,28,Shapeless,"I got this dress in the mail, and while i loved the concept of it, it really is too boxy. the tie is very superficial and does not really nip you in at the waist, it is more so for show. it is fully lined which was interesting, and to me, made the dress seem boxier. the quality is good, but i am an hourglass and this was completely unflattering. i would have had to size up to make it look like the model shot, but it would have still been a shapeless dress, just bigger. it does fit true to size,",3,0,1,General,Dresses,Dresses +864,26,Pj's for the win,I love this pajama combo! it is super cute and comfortable!,5,1,0,General Petite,Tops,Knits +864,39,Sale win,"Pretty top, i like the flutter sleeve design. the linen is thin- too sheer to not wear a cami underneath the white. nice for the sale price. can easily be dressed up or down.",3,1,0,General Petite,Tops,Knits +1037,42,Great fit and nice color,"I got them in green and the color is very nice. +the waist is a little higher than the ag cords, but that only makes them comfortable and holds the tummy in a little +good length and the pant holds up nice thru out the day, no sagging yet in the knee and behind area",4,1,1,General,Bottoms,Jeans +864,35,,This top is beautiful and the color yellow is gorgeous. i highly recommend!,4,1,0,General Petite,Tops,Knits +1037,22,Feel like leggings,"These pants are so soft and stretchy they feel like leggings. i love the ankle length as they are perfect to wear with both flats and booties. i am 5'5"" with fairly long legs and these hit right at my ankle. they are so comfortable i have ordered in the green, red and gray. my ""go to"" pants this winter.",5,1,1,General,Bottoms,Jeans +960,67,Had to have this!,"I first saw this online, and as a long-time wearer of vests, this really caught my eye. once it came into the store i was able to try it on, in grey small, and it was perfection. it just wasn't in the budget so i decided to wait for it to go on sale and watch the website every day. we have 5 stores in my area and when it got down to only 2 having limited availability for a small i sprang into action. the largest store had put it on the ""almost gone"" rack and they had only 2 smalls. i tried them",5,1,2,General,Jackets,Jackets +960,26,A classic piece,"I got this vest for my birthday and it is my favorite. it has a very clean design, well structured and you can really tell the product is high quality from the look and touch. i would expect this to stay in my closet for years to come.",5,1,2,General,Jackets,Jackets +209,25,Fun ;),"This little pantie is fun and playful. its a deep maroon color with small shimmering lace details. the back is sheer but the front is more filled in and opaque. the ribbons on the sides can actually be untied which is a big plus for me. i'm a small lass, but i have a big bum so i got a medium and it fits perfectly.",5,1,0,Initmates,Intimate,Intimates +864,34,,"Feminine flow, however slightly large. such soft material. love the little details.",4,1,0,General Petite,Tops,Knits +864,39,,,5,1,0,General Petite,Tops,Knits +1081,38,Easy summer dress,I found this dress to be shapeless on (even when the belt was tied). i love the tshirt material and the fact it has short sleeves. it's just too boxy.,4,0,2,General Petite,Dresses,Dresses +960,34,A staple piece in your closest!,"-like others, i agree that this is a staple that will pair with many, many outfits. it is really well-constructed, classic, comfortable, and a wonderful length for us taller gals. as you can see from my stats, i'm rather tall at 5'9"", so it's hard to find",5,1,1,General,Jackets,Jackets +1037,34,Great cords,"I ordered my normal size 32. they were a little tight however i'm glad because they normally stretch out quite a bit so i'm assuming they should fit perfect after one wearing. the length is fine for my 5'9 height and they are very soft.. i'm so happy with the light red color, it's almost a rust which i love.",5,1,0,General,Bottoms,Jeans +1037,32,Quality cords,"I ordered two pairs of the red cords, one my typical size, one a size smaller in case i found that the pants stretched out. they run true to size and have a nice fit with a high(er) rise waist. the color is beautiful. i did not find that the pants stretched out but they do seem to bunch somewhat which may come from the thickness of the material.",4,1,2,General,Bottoms,Jeans +867,34,Lovely blouse the the v is far too deep,"The fabric and cut of this blouse are beautiful, but the v was so deep i could never wear it without a cami and i think that would ruin the look. i have a large chest, but the similarly cut blouse (without the textured fabric - from the same designer) fit me fine. this one is just cut differently. i even tried sizing up and down - to no avail. the photo on the model seems misleading because i don't see how the neck would lay flat or stay that high on anyone - even with a smaller chest. i was so",2,0,0,General,Tops,Knits +960,56,Not for petites : (,Unfortunately had to return this. i loved it but just doesn't work for my petite size.,4,1,0,General,Jackets,Jackets +864,62,Feminine and pretty!,"Love this top. have two of them. they are comfy, light-weight and extremely flattering. love!",5,1,0,General,Tops,Knits +1110,43,Looks better than the picture!,I love this dress! i was trying on some dresses in the store and the sales girl put this one in just for fun. i would have never picked this dress out. i didn't look awesome on the hanger. but i tried it on anyway and i ended up getting two other dresses at that time. but i couldn't stop thinking about how much i loved the way i looked and felt in this dress. so i did what any girl would do and bought it online. it took me a while to find it online because the picture on line doesn't do the dres,5,1,0,General Petite,Dresses,Dresses +904,46,Very sheer sides,"I really like the idea behind this top, but at least for me, the execution wasn't quite there. i was hoping it would be something i could wear to work, but the sheerness of the sides makes it in appropriate for my workplace (when it gaps/you move, you can see a lot). if you don't move, the front panel is pretty opaque, which is good. i think it would look odd with a cami underneath and i don't feel comfortable with the sheerness, so i returned it. i also thought the finish on the sleeves looked",3,0,3,General,Tops,Fine gauge +1110,47,,"Cute and comfortable. paired with tights and boots for work, will also look cute with flats or sandals in the spring. the fabric is a nice weigh, not too flimsy. might be a bit short on a taller gal.",4,1,1,General Petite,Dresses,Dresses +1110,28,Flirty and fun,This dress is very versatile and i plan to use in all year round with some tights and boots in the fall/winter and strappy sandals in spring/summer. i originally purchased this dress in a m but had to size down for a more snug and flattering fit. the navy is much darker than the picture.,5,1,2,General Petite,Dresses,Dresses +1038,57,Stylist,"These pilcro jeans are so very cute. i usually wait for a sale to purchase the pilco jeans, but i didn't want to chance them not being available in my size. the pilco jeans seems to sell out fast. the cotton material is very soft but not sloppy. you will love the embroidery down the side of the leg. they do run a bit big. i purchased them in one size smaller for a slimmer fit. i would suggest one size up if you like them more baggy.",5,1,1,General Petite,Bottoms,Jeans +1078,35,,,5,1,0,General,Dresses,Dresses +907,48,Perfect cropped sweater,"Found this cute little black sweater on the sale rack in a small and it fit perfect. it is flattering and will look great over a tank top or strappy dress. the little details of chiffon around the collar and the tiny cutout holes around the back, the softness, and the little detail on the back bottom make this a perfect go to sweater for me. i only say it runs small because it is a cropped style so expect it to be short, but i would agree that the arms are more to the snug side than the loose fi",5,1,0,General,Tops,Fine gauge +1020,32,,It is a very pretty skirt but arrived extremely wrinkled and the waist is very fitted. overall i probably would not have purchased it if i had actually seen it in the store.,3,1,1,General Petite,Bottoms,Skirts +907,28,"Love the style, however was a disappointment",I usually wear a size medium in angel of the north but this was very small. i would need to have ordered a size large or xl to have it fit. pretty but returning.,2,0,0,General,Tops,Fine gauge +996,48,Ethereal and feminine.,"Such a lovely skirt. i plan on wearing it to a formal event, but could definitely see dressing it down with a jean jacket. it is so feminine and beautiful. well made and fits fine.",5,1,0,General,Bottoms,Skirts +907,26,Cute but ...,"This is really cute sweater, soft, cozy. around the chest bit small went up size but the shape looked the same. i'm keep it because of softness, warmth and versatile. i got it in black. would recommend it, or at least try it for yourself.",4,1,0,General,Tops,Fine gauge +1110,36,"Super cute on, colors completely faded",Love this dress! wore it last night for a musical event... came home and put it on the hand wash setting in the washer with cold water...just as the label states. pulled the dress out and guess what? the design is completely faded!!! it looks 5 years old :( so sad. i'm going to call retailer and ask for a refund (i live two hours away),2,0,1,General,Dresses,Dresses +1110,39,Fun and flirty,"So pretty, love hte design on this one. +i tried on hte regualr size, adn will not need a petite, it hit me jsut above my knee. younger gals may oprefer shorter, however. + +the aottern is also nice. the cut is flowy and flattering, nothing bad to say about htis dress...",5,1,4,General,Dresses,Dresses +868,39,"Soft, rich blue","I ordered the xxs because it seems like a flowy top, and glad i did, it fits perfectly. love the blue color, very rich. material is super soft, cut is very flattering, and i love the back. i tried it on with my strapless since that is what i was wearing, but not sure if straps show on a regular bra. (30dd for info)",5,1,0,General,Tops,Knits +315,40,,"While the print is cute, the fit is a disaster if you are a c cup or fuller. the bottom band does not lay flat as pictured on the model (it rides up under your boobs) and the whole cup area tips forward - it's not really molded like a bra, more flat foam insert. immediately went back. hopefully, if retailer continues to do swimwear, they'll take a look at adjusting the designs to make sure they're also workable for fuller cup sizes (underwire please!)",1,0,7,Initmates,Intimate,Swim +315,43,Nice fit -- but colors vary!,"I tried this in the fish print and the pallas stripe. i did not like the fit of the fish print, but the stripe is perfect--so try more than one color if you are interested in this style. also try more than one size of course. i almost always order up in a swimsuit, and this time was no different. the medium fit great, although i am a xs-s according to the size guide. i am a 34b for reference, but i think my rib cage is somewhat wide. i do not like to feel constricted, but i still want the top to",5,1,0,Initmates,Intimate,Swim +1003,29,Meh,There is nothing special about this skirt. it's plain and incredibly dowdy looking. long and wide. i am usually between a small and medium. after reading the other review that said the waist ran small i went with a medium. it fit fine in the waist/hips.,3,0,0,General,Bottoms,Skirts +1104,44,Mixed bag,"Great cut and fit. tts. size 6 fit my 5'5"", 135 pound frame (34b/c bust) wonderfully. my sister and best friend loved it on. but i'm returning. the color is more of a very bright orange than red. i would want to wear this in the middle of summer but the all-polyester fabric is hot. i have too many dresses in my closet. cute as it is, i'd just never pick this one. love to see this design in lighter fabric and different color options. 1-2"" longer would also be a slightly better length.",3,0,0,General Petite,Dresses,Dresses +1110,25,Perfect dress for work,Very flattering and flowy dress. would pair this dress with cowboy boots or navy wedges.,4,1,0,General,Dresses,Dresses +22,30,Please bring this shirt back!!!,"This is my favorite shirt ever. i've had it for years and it still looks great. please, please bring it back!!",5,1,0,General,Tops,Knits +125,35,Romantic top,This top is well made and the pleats give it a whimsical feel. i'm still debating on keeping it as it's slight boxy.,4,1,0,Initmates,Intimate,Layering +868,56,Comfortable and flattering,"This unique blouse is very comfortable and looks beautiful on the body. it flowy and flattering and looks great with my tan. dress up or down, it's a staple in my summer wardrobe.",5,1,0,General,Tops,Knits +907,67,Perfect little sweater,"This sweater is just the cutest- sweet and feminine with interesting details especially in the back. it's very figure flattering worn closed (there are 3 adorable little buttons) or it can be worn open over a dress or a cami. +it runs very small, i usually wear a small or extra small but i bought this one in a medium, mindful of the reviews. i'm so glad i did since in addition to running small the sweater did shrink a little when i washed it even though i hand washed it in cold water. it wasn't a",5,1,1,General,Tops,Fine gauge +1078,83,Lovely!!!!!!,"I adore this dress. +the fabrics are elegant and unique and combine for a stunning look! +tried with a belt and looks wonderful with or without......so many options. +perfect dress for warm autumn days! +ordered my usual size and fits very true to size. +a must have!",5,1,1,General,Dresses,Dresses +907,53,,"This is a soft, light sweater that will take you through fall. i got the raspberry, which seems more like a cinnamon color to me. the design is really cute with the fabric inset in the back. i got three of these in different colors so obviously i really like them for layering and can recommend them! it seems tts. i am 5'5"" and 140 lbs. medium is perfect.",5,1,1,General,Tops,Fine gauge +907,40,,"This sweater was not as featured in the picture. the front is completely cropped while the back is regular length. the front barely reached the middle of my stomach. also, the color was not as vibrant as shown in the picture. this sweater will be going back.",1,0,1,General,Tops,Fine gauge +907,35,Feminine sweater,"Super cute in raspberry and very flattering! i paired it with the reversible tank in dark gray, skinny jeans and fringe boots.",5,1,0,General,Tops,Fine gauge +1110,42,Love at first sight,"Not only was it love at first sight when i saw it online, but i fell even more in love at first touch! everything about this dress is perfection. i got the black motif & the colors are just lovely. the weight & feel of the dress are nice, & the length is great. i added a skinny black belt for more waist definition, but it's cute with or without it. i am more than pleased with this purchase.",5,1,1,General,Dresses,Dresses +437,39,Great romper,"This romper is so flattering. i normally don't like how short rompers are, but this fits and flares at the perfect spots on me. not to mention that it's super comfortable. i wore it last weekend and got a ton of complements. very happy i bought it! i normally wear a medium, but the small fit me perfectly?i'd recommend sizing down.",5,1,0,General Petite,Bottoms,Pants +1110,66,"Beautiful, but too big.","I really wanted to love this dress, but even though i got a small, it was still too big. i also don't think the horizontal pattern was a good look for me, other than that, it is beautiful and the fabric felt nice.",5,1,1,General,Dresses,Dresses +907,60,Very pretty but didn't work,"This is the prettiest little sweater with such nice details. but it will not work well on a person like me with a full bust (38d) even in a larger size than i normally wear. it is also very, very short in the body. i would recommend it for a petite person with a small bust though.",3,1,1,General,Tops,Fine gauge +437,36,Modern meets vintage cool romper,"Love love this piece! for the moment i saw it i noted anther catalog, i knew i had to try it on... im 5' 9"" and 130 and the xs fits me perfectly. i love the way it is tailored. it is also lined with a nice fabric. overall a very well made summer go to piece!",5,1,7,General Petite,Bottoms,Pants +1110,41,Perfect!,"This is just adorable on. i go between a small and medium and the small was perfect for me.. i wore this with tights and boots, but can also see this working in warmer weather with sandals or peep-toe booties.",5,1,0,General,Dresses,Dresses +907,53,Sweet little cardie,"I bought this lovely cardigan in the orange color. it is so beautiful and feminine. i wore it buttoned over a slim tank and got several compliments right off the bat. it is a sweet and unique take on the classic cardigan in a way only found at retailer. i usually wear a small and it fits true to size. i did have to return the one i purchased because it had a hole in the sleeve, but thankfully was able to order another. on sale, it's a no brainer!",4,1,0,General,Tops,Fine gauge +1110,46,Very cute and comfy,I really like the dress it is cute and comfortable. the only problem i'm having is finding leggings that match the way i want. dress will be cute with leggings and boots or sandals in the spring. it is very casual.,4,1,2,General,Dresses,Dresses +907,62,"Nice sweater, on sale too!",Can't say about fit just yet since it is a gift; color is soft green and versatile. finishing touches around edges and in back make it a stand out sweater that dresses up jeans but also nice over a dress or with skirt,5,1,0,General,Tops,Fine gauge +315,38,,,4,1,0,Initmates,Intimate,Swim +1020,22,Bright and colorful!,"Such a fun and beautiful skirt, absolutely love the cut and the way it flows when walking ! it is very very bright in my opinion and not so much my style so i will be wearing it sparingly! got a ton of compliments the first time wearing it",5,1,0,General Petite,Bottoms,Skirts +907,60,Didn't work for me,Seemed pretty shapeless which surprised me because of the design. perhaps it was just too big. returned it.,1,0,0,General,Tops,Fine gauge +1110,34,Cute dress,"Cute dress. can be worn with boots, flats, or heels. i am 5'1, 112 lbs, 34 b chest and i got this dress in size petite small. i am pear shape, with a bigger bottom, and love how dress enhances my shape! my style is more classic, but i really like this dress.",5,1,3,General,Dresses,Dresses +1110,32,Cute and functional=win win,"I was at first a bit leery of this dress because of the shape. baggy is in, but it's not always flattering. i am usually a big small-medium and the medium was too fluffy. i realize it's supposed to be loose, but not that loose. i'm 5'8"" and 146 lbs and the small was the best option. perfect amount of looseness but still gave a hint of shape. it has pockets and is so comfortable. i'm a school teacher so i try to find clothes that i can wear in both worlds. this is definitely a keeper! i will for",5,1,4,General,Dresses,Dresses +1020,58,"Beautiful skirt, but runs small","The colors and design of this skirt are beautiful. the fabric hangs nicely. the color i more burnt orange than red. i ordered my usual size (6), but it is too small.",4,1,8,General Petite,Bottoms,Skirts +907,23,,"This sweater has every special element i could want .... form fitting, feminine, and attention to detail. i ordered it in turquoise, which is a lovely muted turquoise that works well when dressed up or down with a cream cami. because i am petite, the fitted waist detail in back hits me just in the right spot. thank you, retailer, for another timeless addition to my collection of yours.",5,1,0,General,Tops,Fine gauge +1110,35,This dress! <3,"I've been wanting to try on this dress since it popped up online, we visited san francisco this weekend & i finally got my chance. it fit great & was flattering! i am currently pregnant & it worked with my growing belly but will also look good when i do not have a belly. i would definitely recommend! <3",5,1,1,General,Dresses,Dresses +907,31,,"I wanted to love this sweater and it has some nice distinctive features that make it more interesting than your average cardigan. unfortunately, however, i found that flared in an unflattering manner over my stomach. the chest fit well - though it was very low cut - but then if i buttoned the sweater it made me look like at least three sizes larger. + +the quality seemed okay, but a bit thin and i was afraid that this would not hold up for long.",2,0,0,General,Tops,Fine gauge +1003,33,Please and thank you,"So this skirt is everything. the only downside is that it's not in a petite sizing so i'm going to have to get this altered (i'm 5'3). the sizing is appropriate (usually wear an 8 or 10 in pants and got a size medium for the skirt), the material is thick enough for spring or summer weather, the color is just right (not too light), the pockets are adorable and i feel like i'm channeling some 70's realness, sits higher on your waist, and is super comfortable. i know i'm going to get a lot of use o",4,1,5,General,Bottoms,Skirts +1038,57,Stunning and worth the full price.,"Absolutely beautiful and well made. this pair of jeans is perfect, no flaws whatsoever. i usually wear size 27 but bought the 26 as it fits better. 27 is very slightly loose but i think it supposed to be like that for a boyfriend jeans. i prefer it nice and fitted, so 26 works better. i'm lucky to find them still available in the store while it's not online. i didn't hesitate to buy at full price, which i rarely did. i'm so in love with my new purchase. very happy!",5,1,0,General,Bottoms,Jeans +1110,57,Cute dress for work and play,Great style - can be dressed up or down.,5,1,0,General,Dresses,Dresses +907,29,Not your mother's cardigan,Gorgeous! purchased in red; color is glowing if you have warm complexion/cool undertones.,5,1,0,General,Tops,Fine gauge +1110,45,Hidden beauty,"This dress looks so plain on this model you'd never guess it looks so adorable on. i saw it as i walked into my local retailer and tried it on quickly over skinny jeans i was wearing with grey suede boots and it looked amazing! it's a perfect teacher dress. wear it over tights or jeans during colder weather, chunky sandals during warmer weather. it has side pockets i absolutely love. you must try it on to believe it. the fabric is soft and of great quality.",5,1,17,General,Dresses,Dresses +1078,20,Not for me,This dress is absolutely hideous on my physique. ordered a size 6 and it hung on me like a cheaply made tent. i have an athletic built am a 34d. it is going back asap.,1,0,0,General,Dresses,Dresses +1110,30,New favorite dress,"I had only planned to check out this dress at the store but ended up buying it then and there! not a deal breaker but there were extra threads hanging from some parts of the dress. it made me a bit concern that the stitching would unravel during wear. so far, so good! i wish they had paid more attention to little details like that.",5,1,1,General,Dresses,Dresses +1038,53,"Very cute, nice details, good fit","I think these jeans are much better in person than on the picture. on the model they look a bit boxy and too loose for my taste. i am tall, slim/athletic and they fit like made for me in my usual size. they have some ""give"" and tend to get looser while you wear them, but because they are midrise they won't slide down. they are a slightly relaxed swlim fit on me. the demin is solid, the color a nice medium dark sky blue. the emobroidery and the beads are beautiful and look like they will hold up",5,1,11,General,Bottoms,Jeans +1038,47,Buy them!,"These jeans are fantastic! i've worn them once and got many compliments. definitely keepers. i am 5'8"" and weigh about 135. normally i wear a 29 but i sized down based on reviews to a 28. they fit perfectly at the start of the day, but as all jeans with a bit of stretch do, they get bigger as the day goes on, but because they're a boyfriend cut it all works. really happy with this purchase. my only regret is that i didn't get two pair.",5,1,0,General,Bottoms,Jeans +1110,73,Too thick for spring summer,"I bought this dress for spring/early summer thinking it was light and airy but the fabric is too heavy. because the color is dark (even with the flecks of peach), combined with the heavy fabric, it's too much for spring. this dress is perfect for early fall weather. the dress fits fabulous and very flattering. i love the side pockets. it hits all the right places. i'm hourglass shaped, full figured. i normally wear size 14/16 and i bought this dress in lg. again, it fits great, but too heavy for",4,1,1,General,Dresses,Dresses +1078,39,Style dilemma,"I love the way this dress looks on me. it skims my figure to hide my flaws, the bright embroidery is eye catching, the layers flow when i walk, it's a great midi length and it doesn't make me look wider in profile. i'm not having the see-through issue since the patterns are busy and my lingerie matches. i purchased 10 petite and my measurements are 39-28-35. + + +my dilemma is three fold: the material is polyester & rayon, causing some uncomfortable heat to generate when sitting. then there's",4,1,4,General,Dresses,Dresses +1110,39,Someone please trade me your medium,I've been craving this dress in the brown pattern for a while and should have jumped the gun before the sale. so now i was left with size sp and i look like a fool--like i'm trying to wear a top from junior high and pass it off as a dress. my shoulders,5,1,0,General,Dresses,Dresses +1078,66,An original!,"I saw this dress on the cashier at retailer and had to order it. it is, as one of the reviewers said, like having two dresses in one. the bottom dress is a full dress, and the top lays over it, not quite skimming but not quite loose either. i love the dress as i am a pear shaped, size 14, and this helps to camouflage some bumps nicely. this dress reminds of the dresses some peasant women wear in rural countries.",5,1,0,General,Dresses,Dresses +1110,33,Great find and buy,"I was doubtful when i first tried this on. the holding horses brand tends to not quite fit me very well, more so in dresses than tops. also, it looks cute but not great on the hanger. this a must-try-on dress. it's just flowy enough to not look sloppy or maternity, but also feel easy to wear. the print and cut are flattering. it has pockets!!!! also, the length is nice, close to knee length. the fabric is good quality. doesn't wrinkle easily. i'm surprised how quickly i fell in love with this dr",5,1,5,General,Dresses,Dresses +1078,40,Not quite happening,"The outer layer runs large up top; also, the orange stitching (the flowers) on the outer layer are extremely bright orange rather then a fall brownish orange that would match the layer underneath. i'm returning it because for the price i don't love it.",3,1,3,General,Dresses,Dresses +1110,37,Super cute and worth the splurge!,"I saw this dress at my local retailer and passed it the first time. one week later, i stopped by and skimmed through the store and went back to the dress...and decided to try it on. boy oh boy! i grabbed a small and a medium (i usually wear a medium) and the small fit perfectly! the fabric is thick and feels so soft and nice. i love the pockets! worth the splurge and like the other reviewer said- it's not maternity like at all. i plan to wear it with brown boots or brown heels.",5,1,10,General,Dresses,Dresses +1078,65,,,5,1,0,General,Dresses,Dresses +1078,64,Sad sack,"Well...this is ""on me"" as i saw this hanging in the store, but way off on my size which is xxs petite. + +i looked too quickly and got a nice sa to order it for me. + +both pieces are transparent - no opaque lining at all is inside. both pieces are made of fragile clingy materials. there is no ""flow,"" just cling. the size is much too big so the resulting look is of two bad pieces hanging oddly without any real shape. + +this may be the first time i really just not recommend a piece - at all. bes",1,0,9,General,Dresses,Dresses +1110,32,Excellent dress!,"I saw this dress in the store window and had to try it on and it is perfect! it's lined, got pockets, can wash at home, and is a work appropriate length. it's cold in the northeast right now, so i'm wearing it with tights boots and a cardi. i really like that it isn't fitted, but is form flattering. overall win!",5,1,1,General,Dresses,Dresses +907,34,Goes with everything,Better than a regular boring cardigan. goes with short sleeves and dresses!!,5,1,1,General,Tops,Fine gauge +1110,65,Outstanding!,"I noticed this dress in the highlighted area and then read the reviews. i probably wouldn't have thought much about it just scrolling through the dress pages, and now i'm so glad i bought it. i have worn this dress several times and never fail to get compliments on it. i know i will wear it again come next fall. i am petite, but ordered the regular and find that length to be perfect. i'm a teacher and this dress helps me maintain a classy yet modern look. i purchased the small (usually wear size",5,1,0,General,Dresses,Dresses +125,34,Beautiful top ruined by styling,"This top is beautiful - even more so in person. however, like a previous reviewer, the fit is very boxy. there is so much excess fabric that poofs out on the sides that you can't see in the photos due to the model's cardigan and arms. if this top had been a bit longer and more fitted, without all the excess fabric at the bottom, it would have been perfect. again, the color, the lace, the fabric and the pleating is all gorgeous. would love it if the designer took this into consideration and came",2,0,0,Initmates,Intimate,Layering +437,48,Chesty women need to size up,"I saw this in the store a few weeks back and desperately wanted it. when it wet on sale, i grabbed it! i normally wear an xs or petite s, but with this one, the petite m was the winner! i am chesty and the top would not have zipped up had i gone any smaller. it is a bit wide on the bottom, and i agree with the reviewer who said it should be a bit more tailored on the bottom. still, with some awesome heels, this is a great summer piece! the lining is great quality. love it!",4,1,0,General Petite,Bottoms,Pants +854,61,Love this tee!,"I love everything about this tee. it has wonderful detailing that makes it different from other tees. the fabric is soft, and the tee is very comfortable. i disagree with some of the other reviews about the colors. i actually love both colors. the red is a nice slightly brownish red. i wore that color with a pair of plaid (white, teal, & taupe) shorts, and i got compliments on my outfit. the color will go with more than one might think. i haven't worn the green one yet. i hope this tee comes bac",5,1,0,General,Tops,Knits +854,69,"Nice design, runs large","I am a large in knit tees. this is the first tee where the large was just too big. it kind of hung on me. the band across the back also hung down so all over it looked like it was just too big a size for me. the army green turned out to be not a flattering shade of green for me so i returned it. i liked the whole design a lot, especially the front macrame part, but for me it did not work at all. also, too expensive for a tee.",3,0,0,General,Tops,Knits +1081,35,Lovely dress,"This dress is quite lovely, but there are a few things to know: + +the blue color is much more of a dark teal, with more of a dull green tinge than i expected. still pretty, but definitely not a pure blue. i loved the look of the blue online, but i think the pink might have worked a little better with my coloring. +the dress is a bit low in front. not inappropriately low, but if you are hoping to be able to ""adjust"" by pulling the shoulders back a bit or something, be aware that the bodice drapi",4,1,0,General Petite,Dresses,Dresses +1081,35,My my my,"Is this dress ever flattering! i have seen many variations of this kind of dress-some where they will kris-cross over the breast area, some where they will have a single twist-but i never have seen one like this with a double twist and oh, what a difference it makes. i particularly love this in blue-which was a very bright royal color in-store. i am not very chesty, so the accenting in that area is very flattering on me and made me fall in love.",5,1,7,General Petite,Dresses,Dresses +939,57,Great piece!,Love this sweater - very soft and can be dressy or casual.,5,1,0,General,Tops,Sweaters +854,44,,"This top was fun. casual with flair. it is a little strange that it is see through down to the stomach almost, but i would just wear a bra of the same color and don't think anyone would notice. i didn't buy because even the sale price is too much for a casual tee, in my opinion.",5,1,0,General,Tops,Knits +1081,33,,"I love this dress. as a taller, long-torsoed woman, the sleeves are long enough and the length is perfect. the overall fit is also quite flattering, but i can imagine it might not be if you're shorter. + +the material is really lovely and luxurious-looking for jersey. it seems like it should wear well. + +a great work-to-evening option, as well!",5,1,10,General Petite,Dresses,Dresses +1025,45,Perfect black jeans,A sales associate handed these to me while i was trying other things on. i had never tried the hoxton before. i have found my perfect black jean! they are so comfortable and they don't stretch out like others i have tried. i am 5'4 and i roll them a few times but i like that look. i am usually a 25 and that is what i took in these.,5,1,0,General,Bottoms,Jeans +743,31,,"This nightgown looked so comfy and cute! i ordered a large and it was so uncomfortably tight.i'm 5'3"" and 150lbs. it was such a shame. size large should not just be really a medium!",2,0,3,Initmates,Intimate,Intimates +1025,45,My new favorite jean!,"Paige denim has done it again with this version of the hoxton high rise. no matter how many times i tell myself that i will find a less expensive pair of jeans, i never can find jeans that fit as well and last as long as my paige jeans. this is a sleek pair of skinny jeans with the added benefit of being high waisted. as a mom who hates always having to worry about spilling over the top of my jeans (no matter how thin or fit you are, i'm sorry ladies, this problem is real!), the hoxton high rise",5,1,1,General,Bottoms,Jeans +863,33,Great color and drape,"This cardigan's color is great. it goes with a lot of items surprisingly. the fit is a little large/loose, but that's nice for being able to wear various shirts underneath. i've received lots of compliments on it.",4,1,0,General,Tops,Knits +1081,48,Comfort and style,"Very comfortable, feels like you're wearing pjs while being dressed up. fits true to size. very elegant dress, rich navy blue color. versatile, can wear with heels, boots, or flats.",4,1,0,General Petite,Dresses,Dresses +1081,54,,"The blue dress is lovely, fit true to size and a good all around, comfy dress.",5,1,0,General Petite,Dresses,Dresses +860,30,Cute!,Super cute and simple shirt (as other reviewer said lol). but she was right! i have another shirt from this brand and it's one of my favorites. it runs true to size. it's a nice casual wear with jeans kind of shirt and great for fall. it may be a little short for someone with a long torso and/or tall as i'm only 5'2 and i wouldn't want it to be any shorter.,5,1,0,General,Tops,Knits +992,57,"Unique, pretty asymmetric skirt","I saw this skirt in retailer several months ago and while it caught my eye, it was pricey. so i waited until it went on sale and pounced. unfortunately i ordered a size 6 which is enroute. i happened to stop by our local store today and decided to try on the 6 and ended up getting a size 4. so i'll have to return the size 6 when it arrives. i think it runs tts. i've lost alot of weight recently. +the colors are vibrant and it has a nice weight with some stretch in the fabric. it's a",5,1,1,General,Bottoms,Skirts +1081,39,Unforgetable dress,"I saw this dress couple weeks ago and i really liked its color. the dress was ok untill i wore it. well. it's one of those dresses which are not great on hanger but great on you. well, the color is awesome, matches with other bright colors, mustard yellow, wine or black. the material is very thin so if you put size down it will fit but make sure that you see yourself in the mirror and see your back; i saw many ladies which put the dress which fits them but it does not fit the way it supposed to",5,1,0,General Petite,Dresses,Dresses +1081,34,,Beautiful color and super comfy. it runs large but the gathers still allow for it to have shape on the top.,5,1,4,General Petite,Dresses,Dresses +863,61,A staple in my wardrobe now,"I paid full price for this cardigan and have not regretted purchase for one minute, having worn it almost every day this summer. it is the perfect weight for cool summer evenings, seaside strolls, chilly restaurants, or for a sunblock layer when you have to be outside.",5,1,0,General,Tops,Knits +1081,39,Long sleeves and too long for shorter gals,"I tried on the regular size at my store and it was too long for me, te sleeves were enourmous, and the dress fell mid-calf. but, i love the feel of hte mateiral, and if it were to fit properly, is very falttering. i will order the petite size later on to try, i liked it enough for that. the ""blue"" is a nice teal color. double layer, and extremely comfortable. the finish is laser cut, no stichting.",4,1,5,General Petite,Dresses,Dresses +863,30,,"Just bought this cardigan today. i'm already a fan of left of center and was happy with this piece. it's soft, has more interest to it than your average cardi. the sleeves are a bit long, but it's not a dealbreaker. i imagine it will be a great transitional piece from summer to fall and then for spring time.",5,1,1,General,Tops,Knits +1099,54,,"Beautiful color, bought a small (i am 5'10 and 145 pounds, the length is the only thing that is usually a problem on size small for me) however the chest area was extremely tight and ill fitting i thought, i am only a 34b. i'm returning it. i did think it was pricey for what you get as well. the color was by far the best thing about this dress, it could have been better quality and fit.",4,0,0,General,Dresses,Dresses +863,56,Bright & light,"This is a nice year round weight sweater. +i am thrilled with small details, true to retailer pieces.",5,1,0,General,Tops,Knits +1081,44,Love it!,"I oot this dress in the blue. it fits great--hits at the knee, not too short or awkwardly long. i just wish they had it in short sleeve so i could wear one for the summer. beautiful and easy to wear for work or fun.",5,1,0,General Petite,Dresses,Dresses +1099,37,My new favorite,I love everything about this dress. beautiful vibrant color and fabric. i got the sp which is a perfect length for me to wear with the jasper & jeera nijar sandles. it is very flowy and full but i love that about it. happy i was able to snag a petite size but i think the regular would have been ok. i could have gotten away with an xs but the small fits great!,5,1,1,General,Dresses,Dresses +860,25,Runs small!!,"I was sad that this was only online because i wanted to try on the xs and small to compare. i usually wear an xs in most antrho clothes, and i decided to get an xs because i was afraid the peplum part would be large. however, when i got it in the mail, the xs is too small! i tried to get it in a size up, but i couldn't find it. it's a cute shirt, but it runs small. even the length of the shirt is shorter than i would have liked. if they had the correct size, i would have gotten it, but this shir",4,1,1,General,Tops,Knits +119,48,,Seafolly is my favorite swim/beach brand. the quality is always great! this is a colorful sheer kaftan that will get much use this summer.,4,1,0,Initmates,Intimate,Swim +119,30,Great product for a great price!!,"Love, love, love this piece! very flowy, but made of good material. glad i purchased this item!",5,1,0,Initmates,Intimate,Swim +1081,46,"Love the fabric and colors, but...","I bought the rose and the sapphire during the xtr 40% off clearance. i'm just under 5'4"", curvy & usually wear med petite in retailer dresses. i ordered a mr because, being sale items, only regular sizing was available. a sp would have been much better! the dress hit about 3"" below my knee and the crisscross top made my bust look matronly. a snugger fit would have been sexier. the rose was darker than pictured & pretty, but eh on me. however, the sapphire was gorgeous. i'm sad about returning it.",3,0,1,General Petite,Dresses,Dresses +860,25,Perfect lightweight tee!,"I love, love this top! it's the perfect peplum tee! i would get more if this was offered in more color combos! the stripes add a cute effect to the tee and it's a perfect soft cotton. can't say enough about this one!",5,1,0,General,Tops,Knits +1099,36,,"I have to agree with the first reviewer! i really loved the color of this dress and could almost have overlooked the lack of a lining, but when i felt the fabric expecting a nice lush silk, instead getting what felt like a polyster instead i couldn't justify it for the price. i really liked the fact that a maxi came in petite sizes as well, but just couldn't get over the poor quality for that price so back it goes! + +i hope the team members or buyers at retailer are reading these reviews",1,0,2,General,Dresses,Dresses +863,45,Great sweater,Love the weight. something i can wear winter and spring.,4,1,0,General,Tops,Knits +1081,35,,"Beautiful cobalt blue dress. +i wore it for christmas and had many compliments.",5,1,3,General Petite,Dresses,Dresses +854,37,Perfect summer staple,"I love this top! i love the detail in the front and the v back. it's simple and sexy, easy to dress up or wear casually. i ordered an xs and found it to fit perfect, i'm 5'5"" and 112lbs. i ordered the olive green color which i love. i don't typically wear red so that wasn't an option for me, i do wish it came in more colors!",5,1,1,General,Tops,Knits +863,66,Great find,"Love this sweater. ordered white, size large. great light layer! the weave in the yarn is really pretty; the variations in texture have an almost burnout look. the silver buttons are unusual, really stand out and complement the overall look of the sweater. it has an uneven hem that drapes beautifully at the back and sides. great value on sale! one of those basics that everyone needs in their wardrobe.",5,1,1,General,Tops,Knits +1081,42,Soft,Love bailey 44. this dress does not disappoint. the blue is beautiful and the fit is very flattering. the material is really soft and the dress is very comfortable.,5,1,0,General Petite,Dresses,Dresses +960,64,Is this top orange or red,"Wish this site had ""ask a question about the product"" feature like amazon does. just wondering if anyone has seen this product in person to verify color? it looks orange but descriptor says red. would appreciate feedback. thank you for your help.",5,1,0,General,Jackets,Jackets +1081,49,An elegant comfortable dress,"Better than the picture, right chest neck line not too low. comfortable material and the cut is just right. bought two in different color.",5,1,3,General Petite,Dresses,Dresses +1081,23,Love it,"I bought this dress in blue. it's a light jersey material, but it is lined. i find it very flattering. i have found more occasions to wear it than i expected.",5,1,0,General Petite,Dresses,Dresses +1081,43,Great dress,"Got this dress on sale. it fits great. i am 5'8"", small bust, small waist but bigger hips. and this dress makes all those areas look great.",4,1,0,General Petite,Dresses,Dresses +863,57,,,4,1,0,General,Tops,Knits +1026,49,,"Lots of stretch in fabric so pants fit well. length is perfect for me. i'm almost 5ft 6 in and they hit at bottom of ankles with slightly extra fabric so flats, heels, or boots work great with these pants. i bought size 29 and i'm 135 lbs. +colors in pants are beautiful. many different colored tops go well with them",5,1,1,General,Bottoms,Jeans +1081,39,Gorgeous dress,I love wearing this dress and have had many compliments. it's a great color and a fabulous fit,5,1,0,General Petite,Dresses,Dresses +863,39,Great lightweight piece!,I bought in white. great for a lightweight cover up. well made and cozy!,5,1,1,General,Tops,Knits +1099,40,Not lined and low quality silk... disappointed!,"The cut of this dress is gorgeous and it could be great if it were made of quality silk and was lined. although the color is beautiful, the cheap fabric has no variation, is too saturated, and lacks any sheen of quality silk. +shocked at the price. i still have beautiful silk dresses from retailer pre 2010 . being back the quality!",2,0,8,General,Dresses,Dresses +1099,44,Beautiful but not lined.,"I love this dress! it feels great on. it's very light. the color is absolutely gorgeous! the only thing i was disappointed in was that there was no lining, for the cost of this dress, it should at least be lined.",4,1,0,General,Dresses,Dresses +863,37,Left of center always does it right!,"If you've been an retailer lover for awhile, you have at least one of the left of center thermals. every single year they come out with them and they are best sellers - so when i saw this is couldn't believe it!!! it's just like the left of center thermal shirt, but a cardigan! soft, warm but thin enough that it would be a perfect layer for the summer. be warned that this fabric does grow with wear. definitely size down a bit. the body is full and the sleeves are fitted. lots of stretch and very v",5,1,16,General,Tops,Knits +863,65,Bright and fun,This sweater is a nice weight and may run a little on the large size. the orange is a nice tone--more on the blue side-- which suits my coloring more than a more yellow-orange. it is bright! i think it will look great over black top and slacks or light color top and jeans. nice weight for fall. a bit on the stretchy side so i hope it won't stretch too much out of shape.,4,1,0,General,Tops,Knits +119,20,,"Super cute! very light and flowy. i ordered the black. packs well wasn't wrinkly when i took it out of the suitcase. +i ordered the black. so happy with my purchase.",5,1,0,Initmates,Intimate,Swim +860,26,Not if you're busty,"I am a 32dd, 5'4'' and 125lbs and this top was way too baggy. it looked awful. this is shapeless and oversized. i would size down or just pass.",2,0,0,General,Tops,Knits +1081,41,Great for many occasions,I recently purchased this dress and am so happy with it. the gathered area over the bust is visually interesting and isn't too revealing. the jersey material hangs beautifully. i also appreciate it being lined.,5,1,0,General Petite,Dresses,Dresses +1081,43,My new favorite dress,"I own a couple of bailey 44 dresses and am a huge fan of their comfort and ability to flatter my figure. when i saw this one on a special promo, i knew i had to try it on. once i did, i knew it had to come home with me. i wore it to a work event last night and look forward to wearing it on a date night soon. i am a s or m and took a s in this dress. i went with cobalt and paired it with gold jewelry as in the photo.",5,1,1,General Petite,Dresses,Dresses +1026,37,Love,"I am a big pilcro fan. i have a really tough time finding pants that fit, are comfortable, and flattering all at once, and these didn't disappoint. the colors are beautiful and saturated, and just like they appear in the photos. i got my usual pilcro size, and the colors give me endless styling ideas. i also got them in the black and ivory print.",5,1,2,General,Bottoms,Jeans +759,66,Underwhelming,"Fabric felt and looked cheap. hem was completely frayed, all the way around, perhaps purposely, but ratty looking, all the same.",1,0,0,Initmates,Intimate,Lounge +1081,34,,"Looks great, the material feels great but when i put this dress on for the first time today it fell apart at the seams in the rib cage area. total disappointment! i had purchased this on sale for my graduation and was getting ready to walk out the door when i saw two holes on each side!",1,0,0,General Petite,Dresses,Dresses +815,26,Pretty back,"Like the previous reviewer, the biggest problem with this shirt is how short it is. i'm 5'4 and ordered a 12, which is usually what i wear at retailer. even only being 5'4, this shirt is much shorter than i anticipated. it fits everywhere else, though. i'm obsessed with the back so i'm going to keep it and wear it. i'd say it's worth it at the sale price.",3,1,0,General,Tops,Blouses +1081,58,,"After reading reviews, i ordered a medium instead of a large even though i am typically a size 12. it was definitely the right decision. a very flattering dress in a beautiful color. if you order in the right size, it is not at all dowdy. it is forgiving in the belly area, which is great for me. it can be worn with tights or without tights, so really quite versatile. i am sure that i will wear it a lot. also, it is very comfortable.",5,1,9,General Petite,Dresses,Dresses +1025,47,Perfect fit,I have trouble finding pants that are long enough and also narrow enough on my hips. these fit like a glove and never stretch out.,5,1,0,General,Bottoms,Jeans +1081,34,Spanx,Super soft. pretty blue green color. packs super well for traveling.,5,1,0,General Petite,Dresses,Dresses +1081,24,,"I love this dress, it is so comfortable and elegant at the same time. i try to not buy dry clean only pieces, but i had to make an exception here!! perfect for early spring days.",5,1,0,General Petite,Dresses,Dresses +992,45,,"I was really pleased with this skirt. the lightness of the fabric is nice and the colors matched the photos. i was initially concerned that it might be stiff and uncomfortable, but it feels like it has a bit of stretch and offers some good movement. sometimes retailer skirts seem to run small to me, but this fit perfectly in my regularl size.",5,1,9,General,Bottoms,Skirts +1099,30,Beautiful dress - runs long!,"This is a beautiful dress! the color is really great and i love the cut - flattering around the neckline and loose and flowy. + +the one downside is that it is pretty long. i am 5'6"" and usually somewhere between and xs and s for dresses, so went with the xs. the size is great but it's just a tad long for wearing with flats. i actually think if i was bustier the length would be fine, but since i'm pretty flat there's nothing to fill the dress! i wish i had been able to snag a petite, but they w",4,1,0,General,Dresses,Dresses +1081,34,Great dress but runs large,"This gathered jersey dress is beautiful and flows in just the right places, however it runs large! i normally wear a small in many retailer dresses, however i ordered an xs petite in this dress based on other reviews. i'm glad i did because it fits perfectly. the dress is very flattering in the bust...and the rest of the dress hangs and flows nicely. this can be dressed up (with statement jewelry) or down depending on the occasion. i'm happy with my purchase, so much so that i bought one in",5,1,0,General Petite,Dresses,Dresses +1081,52,Elegant for work or night out,I do not see this as frumpy if you wear it with heels. i think the bodice is very flattering.,4,1,1,General Petite,Dresses,Dresses +1027,35,Slightly disappointed,"I have been searching high and low for some good quality jeans. sadly i don't think these are it. i love the design and style of these jeans. great length, great cut, great color unfortunately in the 3 weeks that i have had them they are balling and looking like i've had them for 3 years. i'm so disappointed. and will have to continue on my search. apparently they don't make jeans like they used too?",3,0,0,General,Bottoms,Jeans +863,56,Soft and playful,"I got the sweater in red, (i'd call it more orange). it's a bit of a baggy fit, not tight which i love. i feel like this will be a perfect cover up for cool summer evenings. i got a medium. i go between small and medium and i love the fit. i could have gotten a small, but i liked it looser, the buttons are special too.",5,1,16,General,Tops,Knits +854,36,,,5,1,0,General,Tops,Knits +815,62,,"The blouse is absolutely beautiful. i am 5' and the length is perfect. even though it fit a little snug across the chest, it's a keeper. i'll wear it open on the top with a nice cami underneath.",5,1,0,General,Tops,Blouses +854,40,Pretty details,I have this shirt in the gray and in the orange and i just love the details on front.,4,1,0,General,Tops,Knits +960,48,Gorgeous color and material,"This is a wonderful layering piece for the office. the material is so soft, like a thick velvet, but not quite. it is cute with a sleeveless body skimming top underneath, b/c it fits loosely. not for 90 degree days, as it is a bit of a heavier summer material. the orange-peach-coral color is really unique!",4,1,1,General,Jackets,Jackets +1083,53,Beautiful,"This is my third dress by this designer. i love his work. this will be the most versatile and classic of the three. +i love how wearing his dresses makes me feel... my best and comfortable. unique and well made.",5,1,1,General,Dresses,Dresses +1086,69,"Cute, but not for me","This is a pretty red dress. the back is beautiful. i ordered it online and was excited when it arrived. however, as soon as i took it out of the package, i saw that it had a snag on the front bodice. i also did not realize the dress material was not as heavy as i was hoping for it to be. given those two details, i decided to return it. maybe if it had arrived in perfect condition, i would have kept it. *sigh*",4,0,0,General,Dresses,Dresses +1092,56,Pretty dress,I love this dress but sadly for me it didn't look good on my body type. i'm a 36 dd and not thin so it made me look like a beached whale. i saw it on two different sales clerks in the stoe and they both looked adorable.,5,1,0,General Petite,Dresses,Dresses +1092,21,Bold and beautiful,"Not only is this dress incredibly comfortable, but it can be accessorized for any occasion. i jazzed it up for a wedding, but a cardigan and flats also makes it easy saturday perfect. only way this dress could be improved.... pockets.",5,1,0,General Petite,Dresses,Dresses +1094,28,Fits weird,"I'm 5'3"" 115 lbs and ordered an xs petite. i have other dresses from maeve in xs petite and xxs petite that fit really well, but this one was weirdly big at the top",2,0,1,General Petite,Dresses,Dresses +1083,56,Beautiful!,"Wonderful dress! thank you for making a fun and sassy dress that actually fits me! normally this sort of dress wouldn't fit, with it failing me in the bust, but it fit quite well. in most cases, i would end-up in a 12 petite to accommodate my bust, but with it then too large in the shoulders, or, the dress would have run so small, i wouldn't have been able to button it in most places. i was pleasantly surprised not only with the fit, but the quality, as well. + +as described by other reviewers, it",5,1,0,General,Dresses,Dresses +1083,41,Beautiful dress,"Love this dress! i'm 5'4"", 110 lbs. i ordered 2p. the dress is stretchy at all the right places and accentuates your curves. it's very well-made. i usually like loose fitting clothes, but i feel this dress needs to be snug but not tight. i tried 4p and it was just a bit loose. this dress is well-worth the price.",5,1,0,General,Dresses,Dresses +1092,33,Two dresses in one,"I had been hearing a bit of hype around this dress. it had seemed that most were either loving or hating it, which can be true for a lot of ""swing"" dresses as some give off that ""baby bump"" vibe. i saw a friend try one on in petite and we both agreed it ran a little short, even for us at just over 5 feet tall. + +when i finally made it into a store i noticed that they had quite a few in regular sizing in stock. i grabbed a xs regular to try on and i loved it. with heels, it falls perfectly and",4,1,3,General Petite,Dresses,Dresses +1083,37,Beautiful dress,I received so many compliments on this dress. i purchased my usual size 12 and it fit fine. i agree with some other reviewers that i could have probably gone a size down for a more snug fit.,5,1,0,General,Dresses,Dresses +1086,33,Quality issues,"I wanted to love this dress. i've been looking for a cute, flattering red dress for ages and snapped this up on sale online, thinking it was finally the one. when i tried it on i found the shape flattering, even to my recently pregnant figure. other than that, i was highly disappointed for two reasons. one, quality issues, as mentioned by a previous reviewer - the slip is sewn in totally unevenly, resulting in it sticking up above the neckline on one side, with several threads poking up above th",3,0,0,General,Dresses,Dresses +1083,35,Beautiful dress!!,"Beautiful dress and so delicately well made! +5'1"" 95lb - xxs petite or the smallest size possible worked for me +it accentuates one's curvy body and covers up any excess skin in the belly area. i could eat on freely at a formal occasion. words just cannot describe how beautiful this dress is.",5,1,1,General,Dresses,Dresses +1083,30,Gorgeous dress but received it damaged,"I ordered this dress in my usual size and unfortunately when it arrived, it was damaged and also a little too big. the fabric had lots of pulls in it like it had been tried on many times. + +i called customer service and requested a replacement in a smaller size. it fit great and looked beautiful but there was a rip in the sleeve. + +this is a gorgeous dress and very flattering and well fitting (if you size down), but i had to return both and wear something else to a holiday party. + +i'd only recomme",3,0,0,General,Dresses,Dresses +1083,41,,"The lower part of dress bunches where buttons are, so the dress doesn't look flushed from top to bottom. i ended up returning it.",3,0,0,General,Dresses,Dresses +1094,39,Interesting neckline,"I like this dress a lot, the fabric is nice, the necklines are unusual and flattering but there is definitely some added volume at the hips with the pockets. really comfortable dress.",4,1,0,General Petite,Dresses,Dresses +1083,62,Beautiful but overpriced,"I had been admiring this dress for over a year and finally treated myself to it for the holidays. first, it is gorgeous and very thoughtfully designed to make you look amazing. where things fall off the rails for me is the fabric choice for the sleeves...they are sooo delicate and evidently snag far too easily. the dress that i received in the mail had two large snags (one in each sleeve) that were already running a bit. to me that was a huge red flag that i shouldn't be spending so much money o",4,1,0,General,Dresses,Dresses +1092,48,"Great quality, amazing dress",Swing dresses can be so iffy but this one is fantastic! i sized down to an xs due to the chest area (i'm usually a s/6 up top 36b) and it fits perfectly. the dress is so comfortable and stylish without feeling like you're wearing a tent. this is the most i've ever spent on a casual dress and it is worth ever penny. could not be more happy with my purchase.,5,1,0,General Petite,Dresses,Dresses +1092,64,,"Amazing dress! i'm a pear shape, and this dress is a very complimentary cut for me. it's also not too short. the color print on the dress are amazing. i'm very happy!",5,1,1,General Petite,Dresses,Dresses +1092,42,Buy this dress. now.,"I tried it on while out of town. i was concerned about getting it home but i kept thinking about it. i purchased it online once i got home. the colors are beautiful. it's a swing dress with quite a bit of ""swing"". this is perfect for me because i'm sensitive about my mid section. i wore mine with 3.5in brown sandals. my husband said i had ""legs for days"". i'll take that as a great compliment. i usually wear a medium but could have worn the small in this dress. i preferred the medium because it w",5,1,0,General Petite,Dresses,Dresses +1083,35,Spring for this dress now!,"Simply put, this dress will make you feel like joan from mad men (in all the best ways). amazingly form-fitting and impeccably constructed, like you imagine clothes used to be. it's true there are hook & eye closures between each button from about the waist up; yes they are a bit tedious, but they're essential to the flawless, gapless fit of this button-up style. i'm 5'4"" 120-125# and got the 2p based on reading every single review posted. it's a *tinge* tight but i'm very happy with it and the",5,1,0,General,Dresses,Dresses +1083,39,Pretty but short,"I tried on the 00p in the store as a return, adn though it would fit (super stretchy)hte dress ended up mid thigh for me... gorgeous design and make though, the buttoning is incredible, buttons and clasps to keep the dress closed. love love, wish htey still had my size (0p or 2p ) to try if hte length would be better (or regular size)",4,1,0,General,Dresses,Dresses +1092,39,Too much fabric for me,"I love the colors, and saw the xxs p in a store, so tried it on, but sadly, that was still a lot of fabric on me. i think if you have very small thin arms, that may work, but with muscles, it just made me look bigger than i am... the design (pattern) is really nice though. 115 lbs, 30 dd flat",4,1,0,General Petite,Dresses,Dresses +1094,69,Disappointed,"I though this dress would be similar to the turtleneck swing dress by maeve. it's not. first of all, it runs very large. i purchased a small (i am usually a xs or small in maeve, i purchased a small in the turtleneck swing dress). the shoulders were very wide, you had to manually cross the fabric around your neck but it didn't lay as flat as what i wanted around my chest, and it was quite large around my rib cage and stomach making it rather shapeless. i really wanted this dress to work (i love",2,0,8,General Petite,Dresses,Dresses +1086,34,The best dress ever!,I am currently wearing this dress. i wear it whenever i can get away with it. i have it in red and it works incredible on my coloring. the front is modest enough for work while the back is sweet and unexpected.,5,1,0,General,Dresses,Dresses +1092,47,Lovely and comfortable,I love this dress. i get so many compliments from strangers every time i where it. must buy.,5,1,0,General Petite,Dresses,Dresses +172,70,Soft and beautiful,"Looks better in person than the pictures online. very soft and comfortable. if you are between sizes, size down. it is roomy with a lot of material that drapes in the front. just know that this sweater is short in the back and does not cover your backside.",5,1,2,Initmates,Intimate,Sleep +1092,37,Just perfect,I very rarely buy at full price but had to have this on and it is worth it. i sized down and fits great. tons of compliments!,5,1,0,General Petite,Dresses,Dresses +172,37,Cozy,Bought as a gift. really soft and cozy. i am sure she will love it!,5,1,0,Initmates,Intimate,Sleep +172,20,So comfortable,I absolutely love this product! it is so versatile and i can wear it up or dress it down. absolutely perfect paired with leggings to sit in classes all day :),5,1,0,Initmates,Intimate,Sleep +1107,47,Cute but not for me,"It's a nice drop-waist, embroidered, lightweight dress for summer. my problem was that the armholes were too large for me and i found that to be unflattering. it's a swing style so it's forgiving in the hips and belly.",4,1,2,General,Dresses,Dresses +1092,25,The perfect swing dress,"I've been looking for the right swing dress for a long time and this one is perfect. one of my favorite features is the design at the hem of the dress (it looks even better in person!). the material is a thicker, almost canvas-y type of fabric, which i love because it makes the dress feel higher quality to me. i love how comfortable the dress is and it's so easy to throw it on and look amazing. i tried on two sizes at two different stores and received compliments from staff and customers both ti",5,1,1,General Petite,Dresses,Dresses +1107,43,"This is not 39"" from shoulder","I don't know if i was sent a petite by mistake, but this is not 39 inches long. i realize it says swing dress, but i thought if the length was accurate and the fabric heavy enough, the weight would make it flattering on me. as it was in reality--short and light-weight fabric--it poofed out in an unattractive way. too bad, as the print is lovely.",3,1,5,General,Dresses,Dresses +1092,65,Great dress!,This is a fantastic dress! i wore it for a recent wedding and received many compliments. the fit is phenomenal; the dress is extremely comfortable and flattering. i am full-figured and it fit beautifully and was very true to size. this dress would look good on an 18 year old or a 70 year old!,5,1,0,General Petite,Dresses,Dresses +1083,54,Gorgeous dress!,"This is one of the most special dresses i have ever owned -- and i am kind of a dress person. this one has beautiful detailing -- sheer sleeves, but the bodice and bottom half are lined. fits beautifully -- i am a little busty, so i was worried about all the buttons in the front not buttoning or popping open, but in addition to the buttons there are hidden hooks to ensure it stays closed, which is unusual and a reflection of the quality of the dress. i am 5'6"" and the length was just right, abou",5,1,0,General,Dresses,Dresses +1083,37,"Beautiful, elegant and new spin on lbd","I have been on the search for a perfect lbd for years and have wasted money on dresses that i had to settle for but when i saw this dress i knew it was love at first sight!!! the things i love about this dress: the built in shaper/slip holds your junk in place, the lace detailing is perfect in all the right places, and the button and hook & eye makes you feel secure. great dress that you will love!!",4,1,0,General,Dresses,Dresses +1083,50,I love this dress!,"I do love this dress. i wore it for my 20th anniversary party and received numerous compliments. it's great for embracing your curves. it has a wonderful ""vintage-made-modern"" flair that classic retailer pieces always have. you do have to be careful when wearing it...jewelry or belts may snag the intricate lacework. i am definitely the type of shopper who waits for a sale. this is one of the few pieces i felt i could splurge on. it is just that unique. i hope that retailer continues to carry these t",5,1,0,General,Dresses,Dresses +1094,52,Dress it up or down,"The top of this dress is very flattering. there is a lot of fabric on the bottom half of dress. if you want something which hugs curves ,this is not it. however, one of the things i like about this dress is, it can be dressed up or down. i wore to a wedding and got several compliments. very comfortable",5,1,3,General,Dresses,Dresses +1092,43,"Beautiful dress, but not exactly as expected.",This is a beautiful dress except i expected it to be more flowy. the fabric is much more stuff than i thought it would be.,3,0,0,General Petite,Dresses,Dresses +1092,49,Disappointing,"I had been looking at this dress on-line hoping for a pop-back and when i went into my local store today there were two on the rack and one was my size. i found the colors and print a bit blah (i felt like it could use a little detail for the price...bead detail or embroidery) in real life and i didn't love the fabric, in my opinion it is a bit too stiff and doesn't drape particularly well. things got worse in the dressing room...it was a disaster on me. i'm busty and while the top fit, because",2,0,2,General Petite,Dresses,Dresses +986,33,Cute kimono,Super cute! no complaints! fun print! light weight soft material!,5,1,0,General,Jackets,Jackets +1086,35,Great style and comfort,"The moment i saw this, i knew i had to try it on. it's a definite power dress - made me feel like marvel's agent carter! i could take over the world in this dress. planning to wear it to work, more casually, and as my holiday party dress. it's easy to dress up or down and is incredibly comfortable.",5,1,2,General,Dresses,Dresses +1083,55,Not good for florida,Read all the reviews i didn't really understand that it really had real shape wear in the skirt. i live in florida and found the dress to be too confining and hot. i would never get any wear out of it. much better for someone up north. had to return it.,3,1,0,General,Dresses,Dresses +1053,52,Super cute summer romper!,"Saw this on line and bought right away! perfect romper for summer- color is great and fabric is soft- like all cloth and stone chambray. it fits pretty true to size, maybe a little small when putting on, but i think it will stretch out a little. i didn't want it baggy. fits great through hips and booty looks good! i will wear with flip flops, sandals, or wedge. i also got 15% off which made deal even better!",5,1,8,General,Bottoms,Pants +1086,25,,"I love the fit of this dress! the fabric is thick and the shape of it is so adorable. i usually don't like bright colors, but i got it in red and it's just so charming. can't wait to wear it out!",5,1,0,General,Dresses,Dresses +1094,52,Love!,Just received and tried it on right away. really flattering fit and comfortable! unusual neckline that you can wear plain or accessorize. i'm so happy i decided to take a chance on this one!,5,1,0,General,Dresses,Dresses +1092,41,Dainty and darling,This dress ladies is simply amazing and perfect!!!,5,1,0,General Petite,Dresses,Dresses +1083,36,Gor-geous,"This dress is absolutely fantastic. beautiful, high-quality, and fits like a glove. even better than i could have imagined.",5,1,0,General,Dresses,Dresses +1086,36,Flattering classic with a bit of flair,"Because of how much i have been buying recently, i didn't *want* to like this dress. i just tried it on because it's such a classic dress. i'll probably wear it all year-round, dress it up or down, and it'll probably last for ages. so i tried it and it's cute. and flattering. and practical. and the scallop neckline in the back is just enough of a tease to be fun without being too obvious. (it does get a bit cold though so adding a scarf is recommended, though maybe not the davy crockett one the",4,1,2,General,Dresses,Dresses +1094,47,Fit is nothing like the photo,"I was so excited to purchase this dress; i love all shades of grey for winter clothing, i love knits, and i have loved other maeve dresses. however, i simply cannot fathom how poorly this is designed--it fits absolutely nothing like it appears to on the model, to the point that i wonder if i might have received a defective dress. + +for reference, i am 5'5"", slender and small-boned but also curvy (hourglass). my bust is 36 c, hips about 37-38. i normally wear a small in maeve dresses. maybe it's j",1,0,16,General,Dresses,Dresses +1092,42,Too much fabric...horrible design,"Love the print and was looking forward to this dress. the length and bust are just right in normal sizing, however the 'swing' effect is all off. there's so much fabric. its like wearing a moo moo. not at all flattering. disappointed in this one.",1,0,2,General Petite,Dresses,Dresses +1092,38,High quality dress,"Tried it on at the local store today, it is very pretty! i believe i runs large. i am usually a small, but they only had an xs and it fit perfectly. it is made of thick linen and has a lining.",5,1,3,General Petite,Dresses,Dresses +1008,33,Different in person,"The first surprise is that in person, the material is actually kind of woolen? at least, i would definitely call it a winter knit. the colors are also a little different -- so much so that i didn't recognize it in the store. i'm not sure if the one i tried on was stretched out, but it definitely ran large on me. the waistband is elastic, so i would worry about is stretching over time. i would have been curious to see what the petite option looked like on me, as the regular version was longer tha",3,0,1,General,Bottoms,Skirts +1092,35,,"I wanted to love this dress! the material is beautiful! but sadly i agree with other reviewer. the model definitely has this pinned back! i am on the small side (5'5"", 120 lbs, straight figure, very tiny ""girls"") and this dress looked awful. totally swallowed what little shape i have and the swing did make me look prego in front and back. the fabric is stiff so i think that adds to the sticking out oddly. as far as sizing the arm jokes fit great. xs ordered and length was good but wish the ""swin",2,0,1,General Petite,Dresses,Dresses +1083,61,Gorgeous lace dress!,"I absolutely love this dress. it is very body conscious, but has some ""give"" to it. the sleeves and lines are beautiful. very well constructed... sexy without being overtly so. i find it very elegant",5,1,0,General,Dresses,Dresses +934,56,Gorgeous and comfy,This sweater runs oversized; very soft and comfortable and colors are spot on for fall. love the sleeve length.,5,1,0,General,Tops,Sweaters +172,36,Great travel piece,"The pictures don't do this justice. it's so beautiful on. drapes incredibly. the cream color is a warm, creamy bright off white. looks really nice. incredibly comfortable. i could see this being an excellent item to wear on planes. super cozy and chic. a must have.",5,1,2,Initmates,Intimate,Sleep +1092,47,Didn't work for me!,"So sad! this beautiful dress which i have been waiting to receive didn't work for me. i'm a 5'7"" hourglass girl and it just made me look big! but i love the pattern and the way it looks on the photo online! so sad but will return it!0",3,0,1,General Petite,Dresses,Dresses +1092,48,,I absolutely love this dress. i am 5'0 and 167 pounds and the extra large was way too big. the large was perfect. the fabric is substantial but the fit is loose and swingy so it is good for the atlanta heat and humidity. i want to wear this every day.,5,1,0,General Petite,Dresses,Dresses +1092,21,Beautiful dress!,"I **love** this dress. it's definitely an investment, but well worth the price! i get so many compliments on it every time i wear it, and it can definitely be dressed up or down for casual or formal events.",5,1,0,General Petite,Dresses,Dresses +1086,66,Amazing!,"I tried this dress in store and was in love immediately! i had to special order a petite size, but fits wonderfully. for me, ran a little large. i'm 5'2"" and 105 and ended up with a petite xxs and it fits great!",5,1,0,General,Dresses,Dresses +1008,43,Beautiful,"Beautiful skirt, love the colors. so glad i bought this. runs a little big",5,1,1,General,Bottoms,Skirts +1092,38,Preggers,"I really wanted to love this dress. i love the colors and the design of the dress. unfortunately, i have to agree with one of the other reviewers that this dress makes you look pregnant. it's so voluminous that it's not flattering at all. also agree that the lining is scratchy.",2,0,1,General Petite,Dresses,Dresses +1092,37,Oh my goodness!,"When i saw this dress online - it was a must have. i preordered immediately and had my fingers crossed that i'd get it! thankfully it did! this dress has blown me away. it exceeds all expectations!!! i ordered an xl which is a normal size for me and i'm glad i did! the body is very swingy but the top is true to size. the print is magical. whimsical, bold, bohemian and transitional into every single season. i am 5'8 and the dress hits just above my knees. i feel gorgeous in it. the ""woven cotton",5,1,6,General Petite,Dresses,Dresses +1092,41,Comfortable and fun!,When i saw this i had to have it! i was pleasantly surprised that i was actually able to go down a size (normally a l for the bust) but was able to get into the medium with some room across the chest. it drapes nicely and the inner liner is not tight but flows along with the dress. so many compliments each time i wear it!,5,1,0,General Petite,Dresses,Dresses +172,22,Comfy but not cohesive,"This product is incredibly comfy and perfect for getting cozy however the sleeves were sort of loose and did not look cohesive with the grey. props on the draping though, that was lovely.",3,0,0,Initmates,Intimate,Sleep +1092,75,Gorgeous!,"Oh how i love this dress! i was worried because i am very busty and sometimes that translated to looking pregnant in swing dresses, but this.... incredible! i am wearing it with either blue strappy sandals or red heels and it is quite the perfect summer dress! the material is thick, and feels elegant, the colors are vibrant. today is my first day wearing it, and i have already received 4 compliments! no kidding! wonderful! maeve clothing... i love you!",5,1,0,General Petite,Dresses,Dresses +1092,43,Lovely in person-check stores for availability,Was enchanted by this dress from the moment i saw it online. i was able to find it at my local retailer,5,1,2,General Petite,Dresses,Dresses +1107,41,Cute! not for me,It looks so cute and i love the detail on this dress but it was not flattering on me. light summer dress and that was exactly what i needed but i had to exchange it with something else.,3,1,0,General,Dresses,Dresses +1092,49,Not quite what i expected,"While i wanted to love this dress, i did not like the scratchy lining. i also did not like that the scratchy lining was considerably smaller than the overall swing of the dress; so it clung to my curves uncomfortably. i wish this had been done in silk, would have been a much nicer material. i returned it.",3,0,2,General Petite,Dresses,Dresses +1092,36,,"This dress is beautiful. it is tts, but since it is so flowy, is not form fitting. i am petite (5'4"" 115lbs) and this is a lot of dress for a shorter/smaller person. if it were less flowy, i would keep it. the design, material and overall product is, however, amazing! this dress would be a beautiful addition to any closet.",5,1,3,General Petite,Dresses,Dresses +1092,40,Soooo pretty,"This is an amazing dress! it did stretch out a little, so although i got the large, i probably could've gotten the medium. beautiful feel, fully lined, on the really hot days, this is what i grab and i stay cool all day. i get so many compliments on this dress! the colors are gorgeous!",5,1,0,General Petite,Dresses,Dresses +1092,53,,I love this dress. the colors are eye catching. if flows nicely.,5,1,0,General Petite,Dresses,Dresses +1092,35,Love everything,"I loved the look of this dress online, and it's everything i hoped and more in person. +i'm 5'10"", 155# and pear-shaped. +while the bottom of this dress is voluminous, it definitely did not have a pregnant fit on my body shape. +the length was absolutely perfect, it wasn't scratchy in the least. i got compliments on the dress all day long. wore with a pair of cowboy boots while wine tasting in napa.",5,1,0,General Petite,Dresses,Dresses +1092,43,Obsessed,"I'm obsessed with this dress. it's so pretty and love that it has a lining. i'm 5'1"" and got a small, i had dry cleaner take it in from the sides so i didn't look swallowed up in dress and now it's perfect. still has the swing but not as bulky. can't wait to wear it out!",5,1,3,General Petite,Dresses,Dresses +1083,36,"Classic, sexy dress","This dress is beautiful and i received so many compliments. it's form fitting but comfortable. it is just the right mix of classy and sexy. you can easily dress it up for a formal occasion or keep it simple. i am 5'6"", 150lb with an athletic build and a size 8 fit perfectly. i will be wearing this dress for years to come.",5,1,0,General,Dresses,Dresses +1092,41,Striking print comfy swing,"I've been looking for a comfortable summer dress with a fun print that i can wear to a variety of occasions, while being able to wear a normal bra. this is it! + +it's a cotton/ linen blend, so the fabric has a slightly heavier body to it, which holds the swing shape beautifully, but may have contributed to what some reviewers said makes them look pregnant, and the ""scratchiness"" (from the linen, which doesn't bother me). i'm 5'7"", and find the length to be perfect to show off some legs while b",4,1,2,General Petite,Dresses,Dresses +1086,60,Just ok,Material cheap. too small. good idea for design. love princess cut but bad material. good idea though. sending back,2,0,0,General,Dresses,Dresses +172,42,Cozy in the front,"The front material is soft and cozy, but i was surprised to find that the back and the arms were a waffle knit, like long john material, very thin and tight in the arms. cannot wear a shirt underneath it, only tank top. other than that, it's a great deal",4,1,0,Initmates,Intimate,Sleep +1092,36,Worth the wait,"It looks like the stores are finally receiving their supply of this really pretty dress. i've been watching its availability online and was getting frustrated. my local store had ample supply. it's a beautiful dress! as per an earlier review, it does run a little large. i love that it's made of cotton so it will be perfect in the summer and beyond. it's a full skirt but looks really pretty on. my local store showed it belted which looked good too.",4,1,3,General Petite,Dresses,Dresses +172,46,Cozy wrap sweatshirt,"First of all it arrived rolled in a tight ball the size of a large starbucks coffee. i don't know why they do that.... you're not going to be immediately impressed by something that is packaged like it's cheap! second, i'm usually a 0-4 in retailer and mine is no where near as loose-fitting as the photo. also, he sleeves and back are a very thin waffle knit... like a flimsy t-shirt. and see-thru. the sleeves form-fit to my arms so i couldn't layer under it, but i couldn't wear it alone with the fa",2,0,4,Initmates,Intimate,Sleep +1008,33,"Elegant, modern, and fun!","I ordered this beautiful sweater skirt in petite because i'm too short (5'3"") for the asymmetrical hemline. i love the geometric pattern on this skirt and the gold flecked waistband. and the light sweater material make this a perfect skirt for my california fall/winter.",5,1,2,General,Bottoms,Skirts +1086,39,Perfect winter shift,"Heavy in weight but not uncomfortable to wear because it's fully lined and has an easy fit that skims without looking like a potato sack! fits a little large but mainly tts. if you're between sizes, then i would size down, unless you're very blessed from the waist down. i am a m/l on top and s/m on bottom and bought the medium. it's a relaxed dress (like a shift suppose to be) that i can wear a turtleneck under without feeling stuffed.",5,1,3,General,Dresses,Dresses +1086,48,Perfect in every way,"When i saw another shopper holding up this dress for assessment in my local retailer store, i knew i had to have it! i bought it in the red color and it is gorgeous. the fit was perfect...very flattering style. it can be dressed up or down depending on shoes and jewelry, or boots and a scarf! the detail of the scalloped v in the back is a beautiful addition. perfect for the holidays or even dinner out with friends! beautiful dress!",5,1,0,General,Dresses,Dresses +1086,44,Lovely look but disappointing quality,"I was so excited to get this dress; i ordered the red, and it's a beautiful, vibrant, festive color. i am small-busted, 5'3"" and 120 lbs, and i got the regular xs, which fit very well, fitted but not too tight. i normally order petite, but i wanted the dress to hit a little lower on me than on the model; it ended up just above my knee, and i was happy with that. the shape is very flattering and i really like the scallop detail on the back v. the fabric looks substantial but isn't super heavy? an",3,0,3,General,Dresses,Dresses +986,34,Airy and light,Perfect for summer nights. makes any outfit that much special!,5,1,1,General,Jackets,Jackets +1086,26,Amazing dress!!,"This dress is magical. i wore it to a christmas party and felt like the belle of the ball. my dress swirled around me as i spun on the dance floor. later, i spilled a tequila-ginger all over the front. i was devastated, but it almost instantly dried and there are no stains!!! you can't even tell i spilled! it is hand-washable, which is great as well! i am 4'11 and 100lbs. the xxsp fit like a glove. + +highly recommend! any other dress would have been ruined but this one was literally magical.",5,1,0,General,Dresses,Dresses +1083,44,Stunning!,This dress is even better in person! the attention to detail and craftsmanship are amazing. i received compliments all night from total strangers.,5,1,0,General,Dresses,Dresses +990,39,Great comfy basic,This skirt is perfect! it just pulls on and lays nice and smooth. the fabric is soft and just the right thickness and stretch. i wore it with black tights and knee high boots for new year's eve and had many compliments! it runs a tad big. i am about 130lb and the small fits great although a tad larger than i would have expected. i assume it might srink in the wash a little anyway. my new favorite!,5,1,1,General,Bottoms,Skirts +1092,32,Love!,"Very comfortable and cute. i had fallen in love with this in the catalog and when i saw it in the store, i was disappointed. however, after trying it on, i had to have it. very flattering and comfortable.",4,1,0,General Petite,Dresses,Dresses +1092,35,I don't want to take it off ever!,I just bought this dress today and i'm in love! i can't wait for the wedding i am wearing it to so i can wear it to other fun things too! looks even more amazing in heels.,5,1,2,General Petite,Dresses,Dresses +1086,35,Disappointed,"Ordered this dress and still haven't recieved it, but went to my local store today and tried it on in the size i ordered. it was too big. and now i can't get it in my size. so that stinks! quality was good and the dress was comfortable with stretch. i know in going to have to return it once it comes!",5,1,0,General,Dresses,Dresses +172,24,A dream,"This sweater is a dream come true for me. when i first spotted it during the 40% off sale, i didn't place my order in time to receive one. but then it came back a few weeks later, and i snatched one up! needless to say, the disappointment and wait was well worth it. + +the material is incredibly soft, the fit is just about right (i'm a size xs at retailer, without fail, and this was probably the snuggest fit out of all the tops i have). + +a few other reviews says that it runs big because of all the e",5,1,0,Initmates,Intimate,Sleep +1066,59,,"I so wanted to like these pants. i wear a lot of ""genie"" pants because they're comfortable. the problem with these is that they're too narrow towards the ankle, but the worst is the fabric. its ""old lady"" fabric. i was hoping for a pair of blousy joggers in a light denim, and this fabric was disgraceful. i knew the minute i saw them that they were going back. i'll keep looking and hoping.",3,0,10,General Petite,Bottoms,Pants +1093,32,Love it,"Love everything about this dress! it's true to size , flows nicely, great quality. it's just amazing.",5,1,2,General,Dresses,Dresses +943,75,,,3,0,0,General,Tops,Sweaters +1093,58,Gorgeous dress,"This dress is beautiful - the pictures do not do it justice. i love the fabric and overall feel of the dress - light and airy. i have very broad shoulders and i did not feel like it look good on me so i am sending it back. too bad for me! i think the dress is perfect for weddings, parties and even everyday wear.",5,1,4,General,Dresses,Dresses +825,65,Loved the blouse,"But it runs super small. i wear a medium for everything but couldn't come close to buttoning this. the buttons were about 4 inches apart (horizontally) + +probably should have ordered an extra large in order to fit. the quality and styling seemed great but ordering online requires ""truth in sizing""",2,1,0,General,Tops,Blouses +1094,56,Beautiful silk shirtdress,"The fabric of this dress is absolutely gorgeous from the design to the colors. i usually wear a size large in most retailer clothing, but i ordered this is l and xl because these dresses tend to disappear fast in the larger sizes. i ended up keeping the xl cause the buttons pulled across the chest on the l. this dress has a slim cut, and i would say if you have a small bust and are slender, this runs true to size. if you have a larger chest, size up because this is the type of dress you want to fl",5,1,16,General Petite,Dresses,Dresses +1093,40,Many compliments,"I wore this dress to a baby shower. it fit nicely and i received many compliments. i liked the weight, it flowed while walking and it was quite sweet.",5,1,2,General,Dresses,Dresses +1093,51,Beautiful dress,Love this dress. purchased in white. runs true to size. made well.,5,1,0,General,Dresses,Dresses +1086,29,Better online,"I have been lusting after this dress and though tit would be great for thanksgiving. the fit for me, however, is totally wrong. for reference, i'm 32dd, 5'8"", 140 lbs, and am a s or 4. the small fit well in the body area but felt a little small in my upper arms. the arm length was more of a 3/4 sleeve on me which looked terrible because the sleeves are baggy. the quality felt like it was lacking, too. the material felt like it would pill easily. order with caution.",3,1,0,General,Dresses,Dresses +1035,51,Not like the old pilcro,"I am a curvy girl and bought these jeans in a size 31. i don't have stick legs, and the jeans have worn right through were my thighs rub together. with the old pilcro material, this did not happen! this is a super soft jean, and although the fit was good, they just didn't last.",2,0,10,General Petite,Bottoms,Jeans +877,40,Worth every penny!,"Walked in intending to purchase another jacket and ended up leaving with this one. the color is advertised as grey, but it's actually more like a light mocha. the slightly darker fabric on the side and around the waist accentuated my curves and i believe it would help give the illusion of an hourglass figure to those who are more straight and slender. i generally wear a size 12 and m or l size tops depending on the designer. i purchased the l in this case because that's all that was available at",5,1,6,General,Tops,Knits +1035,32,,Where o where did the old pilcro ankle stet go??? these are a cheap impersonator. the denim used to be thick which really did wonders for the fit and overall appearance of how the denim lays over your lower half. the last 3 pairs of pilcro stets i've ordered have gone right back because they are nowhere close to the greatness they were originally. the pockets on these jeans sit so so low- completely unflattering. the ankles are significantly smaller circumferentially. the old stet ankle jeans ha,1,0,28,General Petite,Bottoms,Jeans +1093,42,,"This dress is really pretty. i went with the navy, the detail on the bottom is very detailed. it does run very large. i went down two sizes. there is a lot of material and my size made me look like a tent. once i sized down, it was much more flattering and nice. couple details: +the slip is strechable and may have to be fitted if you size down, but you can't see it since it's lose on the outer layer. also, you need a different bra since the cut is cloer to the neck revealing the bra straps. i am",4,1,0,General,Dresses,Dresses +943,27,,"While it hasn't been cold enough to wear this out, i really like this sweater. i love the pattern with the uneven hem and stripes or bands. it's also super soft and cozy feeling. it does run a little big, and while that is part of the aesthetic, i do wish it was a drop smaller. i ordered my normal top size, medium, and it's a little big/looser, which i don't mind except for the long sleeves. if you like things with a tighter fit i might order a size down. + +though it's cashmere, it still seems",4,1,1,General,Tops,Sweaters +1035,64,They are tapered! why?!,"Waist is tight and thighs and legs are not. -not flattering- ankle opening is too small, and they have a funny smell.",1,0,2,General Petite,Bottoms,Jeans +1050,66,,"This is such a pretty romper! i love the fabric. unfortunately, it's pretty roomy and the cut didn't flatter my figure.. the straps are adjustable which is great. but, even so, the xs was still a tad too big on the sides. for reference, i'm 126 lbs, 5' 6"", and a 34b chest. the cut of the butt & thighs is also quite generous. stylistically, this adds to the design and looks cool...if you have a few curves to fill it out. i have slim hips and not much of a butt so it looked a little ""dumpy"" on me.",4,1,1,General Petite,Bottoms,Pants +830,66,Strange fit,"For a couple weeks, i debated making this purchase. in fear that my size would no longer be available, i ordered this lovely top. when it arrived, i was immediately disappointed with its colors...unlike the vibrant colors in the photo, the top's colors were dull...more a brown than orange and gray rather than lavender. had the fit been better, i would have kept this item despite of its color. it's cut weird! though it runs slightly large, i felt the top was ill fitted through the upper bust and",2,0,6,General Petite,Tops,Blouses +830,27,Gorgeous and feminine,"I love this top but make sure to size down! i am usually a small in blouses and the size s was like a tent! returned for an xs. overall, the fabric is a great quality and the colors are stunning. the orange isn't too harsh. a keeper for sure!",5,1,4,General Petite,Tops,Blouses +143,38,,,5,1,0,Initmates,Intimate,Layering +872,35,Cute top,This top is really pretty & i think i will be happy when i pull it out in the spring to wear it. the only complaint is that the front is very sheer. you have to wear an under shirt of some kind.,4,1,0,General,Tops,Knits +877,49,Comfortable and stylish layering piece,"I like the warm neutral color of this piece and the figure-skimming shape with waist definition. it is a soft and warm layering piece. sadly, the sleeves were too long for me and have long zippers at the cuffs so rolling them up didn't work. i wish i had caught this piece while they still had my size in petite!",5,1,1,General,Tops,Knits +823,66,Sleeves destroy this beautiful blouse,"This is exactly the same cut as the breton peasant blouse, which i also ordered. it's extremely tight thru the bust and the sleeves are very wide at the top which adds width to the look of this blouse. it added 20 pounds! the print is beautiful. the ruffles are trimmed with a golden colored thread which is a beautiful detail. i ordered size large and am well endowed. steer clear if you have a bust.",1,0,0,General,Tops,Blouses +872,64,Great buy,Love this top. ..especially the back. the back makes the whole top.,5,1,0,General,Tops,Knits +1093,63,,"This dress is gorgeous! the store only had a size 12, so i am waiting for my size 8 to arrive. very pretty navy color. +super cute. love all the embroidery detail. my niece is getting married in june and i can't wait to wear it!. +i normally wear a 6 or 8. judging by the fit, i think the 8 will be perfect.",5,1,22,General,Dresses,Dresses +877,28,Love it!,"This is a really unique jacket. the suede-like darker fabric is so soft and brings great character to the jacket. i love the neutral color and the fit is true to size. the only minor complaint i have is that the band at the bottom of the jacket flares out a little, making it wider and a little odd looking. but i have learned to ignore this because all of the other features are so awesome! would recommend.",5,1,1,General,Tops,Knits +1093,53,Gorgeous but not flattering,"Very pretty dress and nicely made (the embroidery is quite lovely and double lining, as mentioned by the other reviewers, is awesome), but not a good shape for me and my hourglass figure. like a lot of swing dresses, it has no structure, and it's not a good look on someone a little busty, as i am. in all honesty, i thought the sack-like shape of the dress made me look 20 lbs heavier than i am. i am a medium, size 6-8, and took the 8 based on the other reviews. i probably could have sized down to",3,1,0,General,Dresses,Dresses +1093,62,"Beautiful, but...","This dress is gorgeous in person and very flattering, but i was surprised at the weight and i found the armholes, especially with the picot edge detail, too tight and a bit irritating. i do have a 32 dd bust, so i'm not sure if that was the problem, but i've never had that problem in any of the retailer dresses i've purchased in the last few years. (and there were a lot of them.) i tried on my regular petite small and that was the correct size.",4,1,2,General,Dresses,Dresses +1050,36,I'm tall and it's perfect,I'm always scared of rompers because of my height and long legs. but this one was perfect. it didn't ride up or hit in a weird spot on the hips. it's very flattering.,5,1,1,General Petite,Bottoms,Pants +830,51,Beautiful top,"This top is absolutely gorgeous! it fits true to size to slightly large. i'd say size down if you are between sizes. it has a nice weight to it - not too heavy, but for a winter season top - it is not too thin. colors are as pictured. i can pair this with black pants or with skinny jeans. it is a top that i will wear for years to come.",5,1,8,General Petite,Tops,Blouses +1093,34,Did not look good on me,"This is a beautiful dress. the quality is excellent. the 3 layers and the embroidery are beautiful... however it just didn't look right on me. it looked like a maternity dress. i am very petite, short with a big bust and it just did nothing for me. i think this style would look best on a tall woman with a smaller bust. unfortunately i will be returning this dress.",2,0,0,General,Dresses,Dresses +1050,30,Very cute but runs large,"Loved this jumper, i usually wear between a small and a medium in retailer (with jumpers it's mainly because of my hips and where the midline sits on my stomach), so thought this one would probably be a medium. but it was definitely baggy/lose. otherwise i would've totally kept it!",3,1,1,General Petite,Bottoms,Pants +1050,77,My favorite new item for spring/summer!,"I love this jumpsuit! i ordered it unsure, but i am so glad i did! it is super comfy and fit perfectly. i loved the length...can dress up or down. it is super flattering as well as i am curvy on the bottom and was told i looked ""trim"". my mom, friends, and complete strangers complimented me when i wore this...and that's when you know you scored.",5,1,5,General Petite,Bottoms,Pants +1093,46,Gorgeous dress - but a little heavy for a hot day,"Ordered this online in a petite 4. (i'm 5'3""/130#). fits very nicely but for the amount of fabric this dress has (3 layers total), i think a 2p will be a better choice and not look as full, maybe a little more fitted, which will be more attractive at the top on me. + +however, the detailing on the dress is really beautiful and high quality. the dress has quite a bit of weight to it with the top swingy layer, a tulle like layer for shape and then the sheath like slip. the colors are all very dark",5,1,4,General,Dresses,Dresses +12,28,Beautiful staple item,"Love this striped top! it's perfect to throw on with black skinnies and a denim jacket or long grey cardigan. it also pairs well with camel. it is super soft. runs big imo, even though other reviewers said small. like most bordeaux, i took an xs, whereas i wear a small in most other retailer brands. similar to the photo, although much looser on me.",5,1,0,General,Tops,Knits +877,37,Great jacket,"This jacket has been a fun addition to my wardrobe. it has a very cute fit, and i like that it pulls in a bit at the sides to give it a form fitted look. best of all it stretches well despite the form fit; you can cross your arms or raise them up and you don't feel like your movement is restricted. i really like the soft suede-like material on the inside of the arms and the sides of the jacket. it fits true to size. can be worn casual or dressed up a bit. highly recommend!",5,1,7,General,Tops,Knits +1093,42,"Very pretty, just not for me","I've been eyeing this dress for a while now. i decided to purchase it in the rose color, which has absolutely beautiful embroidery. here's why i will most likely return this dress: i'm 5'7"" and it is very short on me (almost like a long shirt), it is extremely roomy, so it doesn't flatter me in any way. if it belt it, it gets even shorter, and the embroidery gets a bit lost in the folds. i'm sad to return it, but i will wait for the next wow piece rather than have this sit in my closet.",4,1,0,General,Dresses,Dresses +1093,39,I'm serious,"I'm seriously in awe of this fun dress! the beading, fuzzy flowers and embroidery on the peachy dress make me very happy. it's nice to wear by itself with a simple necklace but i love it more with my cropped jackets--my dark denim for a casual air or the tailored tuxedo black for date night! like others have said, this dress has many layers and is surprisingly heavy. definitely not for hot humid weather or i'd melt and cry. + + +thank you so much to the reviewer who advised sizing up for the ar",5,1,1,General,Dresses,Dresses +1094,39,Why isn't this sold out?,"Stunning, beautiful, elegant, comfortable and all silk! the print is very mesmerizing, as are all the hemant & nandita pieces i own. i'm shocked that there aren't more reviews. i found this fit perfectly on my body, skimming over my flaws and keeping my temperature moderate. i am 5'3"" 140# 39-28-35 and purchased size mp. please retailer, offer the other versions of this dress as shown on the uk retailer site.",5,1,1,General,Dresses,Dresses +356,27,Super comfortable,I love this with skinny jeans! it is comfortable and soft. it fits well.,5,1,0,General Petite,Intimate,Lounge +1093,34,Gorgeous,Can be dressed up or down. details are pretty without being gaudy. i got an 00p which fits well - i can wear it with a belt to give it some shape too. love it!,5,1,0,General,Dresses,Dresses +1050,35,Runs large...good for ego!,This is such a cute jumper! i bought it to wear to a beach wedding. i took a chance trying on a medium (i'm a true large) and was pleasantly surprised by how well it fit! very excited to add this to my spring/summer repertoire!,5,1,5,General Petite,Bottoms,Pants +1093,36,Beautiful dress,"I am 5'4, so i feel i'm on the cusp of petite/regular sizing. i ordered 2p, (about 125-130lbs), and the dress fit perfectly. it's so pretty (i got blue), i ordered this for my upcoming trip for our anniversary...i feel like i can wear with sandals or heels, with leggings or no leggings. beautifully made. kind of pricey, but worth it.",5,1,2,General,Dresses,Dresses +1050,26,Comfy and stylish,"I received tons of compliments on this adorable jumper and felt like i was wearing comfy pajamas. i wore it to a baby shower and it was a hit. i'm 5'4"" and it was a bit long and needed to be hemmed, otherwise it's perfect!",5,1,2,General Petite,Bottoms,Pants +1103,43,Adorable versatile maxi - great for tall girls,"I really love this dress. it runs very true to size and is nice and long, but could be easily hemmed. i am 5'10' and have room for heels. the waist runs just slightly high and causes a slight flare out of the fabric at the hips but it is not a deal breaker. the cotton is super light weight and perfect for summer. some jersey fabric maxi 's can be super hot. i was surprised by the cost for the actual quality of the dress.",4,1,4,General Petite,Dresses,Dresses +866,45,Gorgeous and elegant!,"I originally ordered this top in the black and it's been on back order for a month. i decided to go ahead and try the wine and i am so glad that i did! the fit is flattering with a longer peplum to accommodate my long torso, the fabric is a nice mid weight with a very subtle brocade pattern. the back of the neck has a classic zipper detail. the bell sleeves are not too long and the color is gorgeous for fall/winter. i highly recommend this top for all body types.",5,1,0,General,Tops,Knits +1092,45,,"I had high hopes for this dress, but unfortunately was disappointed and returned the dress. it flares out with too much material under the gathered waist. it's so odd.",2,0,1,General Petite,Dresses,Dresses +866,51,Lovely,Falls beautifully and the color is vibrant. can be dressed up or worn casually. texture adds even more uniqueness. a little heavy but this is outweighed by its other lovely features.,4,1,0,General,Tops,Knits +664,34,Very cute & comfy!,"This is a great pullover. very cute for lounging at home or running errands. it does run large, i ordered an xs & it's pretty big. for reference, i'm 5'7'', 125 lbs & 34 b. it is also a little pricey for lounge wear but i am keeping it because it is so cute.",4,1,4,Initmates,Intimate,Sleep +1092,53,Sweet printed dress,I just bought this dress on the half off sale price which is practically a steal and i must say i absolutely adore it! it runs pretty tts but all they had available was one size up from my usual 6 so i bought the 8 and it fits just fine (34d-27-35). the color is beautiful and the look of the dress is very vintage 30's/40's and so cute. i didn't find the sleeves to stick out at all on me so maybe i just got lucky and the print is just adorable on this. i highly recommend!,5,1,0,General Petite,Dresses,Dresses +866,43,Beautiful and soft,This top fits great. maybe a tad on the large side but not enough to go down a size. i love the fit. the bell sleeves and peplum are so flattering. definitely worth the price too!,5,1,1,General,Tops,Knits +403,36,Love my new workout clothes!!,"I am loving these new leggings and i dont even surf. i just wear them to the gym and at home and to run errands with a cute tunic top etc... they make me feel sunny and happy :) fabric is light and flexible but stays in place (went running in them) size is accurate, i am usually a 2 on retailer pants/skirts, 27 on jeans, and the small was perfect.",5,1,1,Initmates,Intimate,Swim +1103,52,Craftsmanship,"I so wanted to love this dress. i bought it in a size 4 and in both petite and regular, as i'm kind of in between and have a long torso and short legs. anyway, i'm 5'5"" tall and 130 lbs. the regular fit my torso well, and length not was too bad. with heals it might have worked without hemming. here is where it all fell apart. while understand that only really expensive designer clothing can afford to seam a pattern perfectly, i felt that the dot seam in the front of the dress was in a bad place.",3,0,23,General Petite,Dresses,Dresses +831,31,Beautiful detail but delicate,"The detail on the fabric of this blouse is beautiful and unique, especially the peachy/pink and orange detailing which is hard to see in the picture. the fabric and seam are quite delicate though so it just needs to be worn and handled with care. fits true to size. 5'5"", 135lbs, 34c and the small is perfect.",4,1,6,General Petite,Tops,Blouses +868,52,Warm and comfortable,"I love wearing my boatneck pullover. the unique part of this item is the back with buttons. the shirts appears to be inside out, however, its not. its soft, comfortable, stylish and warm. i really like how it's longer in the back.",5,1,0,General Petite,Tops,Knits +791,53,Love the big front pocket,"These pants are very comfortable i love putting my phone and wallet in the front big pocket so cool the linen is soft fits great +the tie dye is very unique love it!",5,1,4,Initmates,Intimate,Lounge +1092,35,Love this dress,"Fit and flare, pullover style that can easily be dressed up or down. wish other colors were available online!",5,1,1,General Petite,Dresses,Dresses +866,41,Nice quality peplum top for fall,"I bought this top in my usual size large based on other reviews and it fit perfectly. i have long arms and the sleeves are the perfect length. the fabric is a slightly stretchy jacquard and very nice quality. the top is definitely more fitted with a significant amount of fabric at the peplum portion. i wish that this was a bit less, which is why i only gave it 4 stars. otherwise, it's a great top for fall that can be dressed up with a pencil skit or more casually with jeans. definitely",4,1,2,General,Tops,Knits +866,38,Beautiful peplum!,"I absolutely adore peplum tops, although some of them are made for individuals with short torsos. this one is beautifully designed with a long torso and flowing wrists. there is a nice balance between the fitted torso and then the flowing peplum and sleeves. the best thing of all is the fabric, which is a stretchy mid-weight jacquard. it is easy to get on, with a zipper in the back. i am sure i will get a lot of use out of this as the weather turns cooler and i plan on pairing it with pencil ski",5,1,9,General,Tops,Knits +403,43,"Fun, and oh so soft!","The color and pattern are so cute and fun. they are also very soft and comfortable. most important, these pants still keep everything covered when i bend into a forward fold.",4,1,1,Initmates,Intimate,Swim +1086,53,Love this!!!,"Tried it on at the store. (must of been a return) at first i wasn't thrilled with this dress.. have a little bit of a pouch and would never think i could wear a tight dress like this. the cut was perfect for that imperfect belly. went to a 5 hour dinner that night and was so comfortable. not itchy and i felt very pretty in it. husband loved it and was happy for me to show my curves again. would not of ordered this online, so glad it was in store. much more vibrant in person . try it you will lik",5,1,4,General,Dresses,Dresses +1086,47,"Amazing, highly recommend","I am not a fan of sweater dresses and did not pay attention to this one when looking at it on-line. however, it immediately caught my attention in a store, i decided to put it on and the dress looked amazing. soft, warm, skin hugging material, long skinny sleeves and more importantly, i looked amazing in this dress.i think colors are more vibrant, design is more lively in person than in picture. i am 5'10'' 145lb, so i loved that intricate dress pattern, broken lines in front made me not look li",5,1,2,General,Dresses,Dresses +1103,43,Maxi polka dots,"Great strapless maxi. purchased for a late august wedding being held at a yacht club, will fit the nautical theme perfectly. i'm typically a size 8 and ordered the medium size -- fit is a little snug on top for my 34dd chest but waist and hips are spot on. length is long, totally skims the floor for my 5'6"" height. i plan on wearing it with red patent leather wedges so it'll help keep the hem off the floor and make me look longer. quality is outstanding, strong zipper, quality fabric, excell",4,1,0,General Petite,Dresses,Dresses +1092,27,Does not look good in person- strawberry shortcake,"This dress looks amazing on-line. in person the arm ruffles are much larger and stick out, and the dress at the bottom makes you look like strawberry shortcake. too much all over ruffling at the chest and is not flattering. pattern is dizzying in person. + +very thin multi layer dress. should be better material and quality for this price. save your money and shipping.",1,0,1,General Petite,Dresses,Dresses +1086,39,Pretty pleasing,Very pleased with this vibrant and colorful sweater dress. the color combinations are very beautiful and it seems as if the threads used have an inherent shimmer. the fit is body skimming without highlighting trouble spots. i am a m/l on top and a s/m on bottom and the size medium fits perfectly. the cut adds the illusion of proportion to my disproportionate body. there are some problems but workable: slip is sewn-in which i wish was detachable; the scoop neck is too low for my 36ddd bust; weave,5,1,0,General,Dresses,Dresses +628,60,Cute cover-up or summer top & shorts!,"Lightweight, soft cotton top and shorts. i think it's meant to be a beach cover-up but i'm wearing it as a thin, light-weight summer outfit on these hot hot days. the top has a loose elastic around the bottom which i didn't realize when i ordered it, but i like it and it matches the look in the photos. and the shorts are very low-cut - don't expect them up around your waist. again, i like that. some might want to wear a cami underneath because it's a thin cotton but i'm fine as-is. i bought it i",5,1,2,Initmates,Intimate,Lounge +664,60,The entire set is so cute!!!,"I got the shirt, the cami, and the shorts and they are all great. super comfortable fabric, really well made, and really cute. love them all!",5,1,0,Initmates,Intimate,Sleep +866,57,Classic!,"Very flattering, sliming and feminine. i particularly like the flutter sleeves. the fabric is a nice weight for fall.",4,1,2,General,Tops,Knits +831,49,Better in person,I probably would have never purchased this blouse is i had only seen it online. but i was at our local store looking for something else and spotted it hanging all the way on the other end of the store. a salesperson encouraged me to try it on and it is beautiful! it can easily be dressed up or down. you can tie the bow in multiple ways or leave it hanging. it is sheer but the pattern obscures the transparency so no camisole is needed. it embraces the 70's vibe in a modern way. i absolutely love,4,1,0,General Petite,Tops,Blouses +90,41,,Love the fit and feel of these. and super stylish too. i want in more colors if i can get it.,5,1,0,Initmates,Intimate,Legwear +876,56,Great peasant top,"I love this peasant top! i didn't expect it to be made from such nice fabric. usually, i have to wear a camisole under a lot of retailer tops, but not this one! i bought a petite xs and if fits perfectly. thank you to retailer for selling petite clothes.",5,1,0,General Petite,Tops,Knits +873,47,Soft delicate casual top,"I just purchased this at my local retailer..the online pix does not do it justice! so pretty & delicate..casual, comfortable fitting..hits right at the hips...",5,1,2,General,Tops,Knits +1030,56,Run two sizes too small,These run so small!! i was dissapointed with having to return my pair. i'm hoping they are replenished back in stock so i can get the proper size.,5,1,0,General,Bottoms,Jeans +90,41,,"I ordered both the black & the dark grey, the dark grey arrived first! they are very comfortable & flattering! there is a nice thigh slimming effect. i purchased the size small, regular length & they hit me at my ankle (5,5"", 130lbs), i can't wait for the second pair to arrive!",5,1,1,Initmates,Intimate,Legwear +90,27,,These leggings are great in quality and are thick enough to wear as pants; the rise is perfect. the only issue is that they stretch during wear and end up being a size larger.,3,1,0,Initmates,Intimate,Legwear +90,62,The perfect leggings,"I've been looking for the right leggings that are of good quality, thick enough to feel appropriately covered, and a good price point - these are those leggings! need more!",5,1,0,Initmates,Intimate,Legwear +90,39,Better than leggings!,"I'd describe these as a hybrid pant/legging. they are very comfortable flattering, and versatile. i got the large because medium was sold out, but they fit nice, not super tight.",5,1,0,Initmates,Intimate,Legwear +208,31,Must see in person,"A whim of a purchase on a tops sale. i spotted the black, but went for the mauve. it's great in person, fits loosely and hangs nicely for layering. i will buy the black too when in goes on sale. 5'5"", 135lbs, 34c, curvy/muscular frame, and the small was perfect (and every a little roomy) on me.",5,1,6,Initmates,Intimate,Layering +872,31,Great but need something under it,"Love the shape of this top. i bought in white and a friend bought in the neutral pink. we both required a tank/cami to layer under it. i am 5'5"", 135lbs, 34c, curvy/muscular frame and ordered a size small.",4,1,8,General,Tops,Knits +90,37,,"Great fabric. nice legging, substantial fabric, more structured than a typical legging.",5,1,0,Initmates,Intimate,Legwear +829,39,See-through,"I am torn about this top. on the one hand, it is beautiful in all aspects: +flattering cut +beautiful detail at neck, victorian neckline +ivory color, flattering on most skin tones, including my very pale skin +speck of gold in fabric, it is lines with gold thread + +bummers: it is see-through, as in you can see through the neck part. the picture online shows a more covered look, i think the model ash a shirt underneath. on me, you really see the skin through. so i will have to try with a nude b",4,1,2,General Petite,Tops,Blouses +872,55,Great fall top,"Originally ordered a large but it was huge. the medium fit perfectly. i'm 165lbs, 5'7"". lovely material and interesting side details. the sides do come up quite high but a camo or tank underneath does the trick. lots of compliments!!",5,1,0,General,Tops,Knits +90,30,Great leggings!,"Wonderful fit - love that these have a bit of texture to them and the structure is perfect. easy to wear with ankle boots or flats, and thick enough that you don't have to worry about see-through incidents. the only issue that i have is that the elastic in the waistband isn't secured, so it tends to twist around - just a minor annoyance and wouldnt stop me from ordering these in another color!",4,1,1,Initmates,Intimate,Legwear +829,50,Soft beautiful top,This blouse is gorgeous on i purchased at my local store i noticed it was $29.99 + 30% = $21.00 omg it's so nice on it's soft and comfortable and the gold threading make it sunning it does run a little small in the chest area,5,1,0,General Petite,Tops,Blouses +873,21,Super pretty - not sure how to wear,"The front cream panel is completely transparent.i didn't purchase because my bra showed and it would ruin the look with a cami underneath. + +i wish the fabric were translucent - not so see through.",2,1,3,General,Tops,Knits +873,41,Beautiful but too short!,"I'm 5'7"" with a dd bust and this top in a medium doesn't even hit at my hip. i'm not sure why so many of these tops are being made so short! i just purchased another peasant lace top that has the same problem #it ends up being very boxy looking!#. adding a few inches in length would have made this top perfection! debating about ordering a large just to add length but otherwise the tops fits everywhere else ;# it's so pretty though! the lace detail and the nude panel are so delicate and the mater",4,1,2,General,Tops,Knits +1030,42,,"These jeans are so adorable and so soft--i really wish they fit! unfortunately, even the next size up was too snug for me.",4,1,0,General,Bottoms,Jeans +873,39,,,5,1,0,General,Tops,Knits +829,39,Really pretty!,I tried this on in the store and decided to order a larger size online. the fabric by the buttons is very thin so any pulling will cause tears the one i tried on in store was shredded by someone else trying it. i'm a 34 dd and bought a 14. before trying it on i noticed the fabric is already pulling a little right out of the package. trying to decide if it is worth keeping or will be destroyed from wearing. it really is very cute on.,3,1,0,General Petite,Tops,Blouses +873,34,Very cute!,"This shirt is a very cute dressed up casual kind of top. the lace detail in the front and the back make a plain, long sleeve black top look elegant. the material on the shirt is pretty light, so it is for fall or spring.",5,1,5,General,Tops,Knits +873,35,Beautiful blouse,"Love this top. the material is so comfy yet it looks dressy. great for a night out with black pants or a skirt. i'm 5ft8inches, 38-27-38 and a small fit perfectly which seems true to retailer sizing. flattering yet hides a little post holiday belly. i wore a nude rackerback bra with the top, and that works perfectly with the design.",5,1,0,General,Tops,Knits +90,52,Good basic,"Great pair of black pants, a step up from basic leggings. nice weight and a little ribbed detail on the sides. would recommend.",5,1,1,Initmates,Intimate,Legwear +1110,29,Nearly perfect!,"This is the little black dress i've been looking for for years -- great slim fit (runs small -- i usually get sized out but the 00 was a snug fit), eye-catching design. like the other reviewer, i think solid black panels rather than floral brocade would have been classier, but overall a chic dress.",5,1,1,General,Dresses,Dresses +90,48,Stylish,"Perfect fit, nice detailing best feature is that they do not bag out +after wearing for a short time. good lines in back so they are more +dressy than a regular legging.",5,1,0,Initmates,Intimate,Legwear +873,49,Beauty meets comfort,"I love this top, the details at the neck and shoulders are lovely, both front and back. it's also very comfortable and soft, allowing you look nicely dressed while feeling like you are wearing a soft tee-shirt. the sleeves are a good length with some elastic at the cuffs so you can push them up. sadly, it's sold out in in my size online and in the stores, otherwise i would certainly snap it up at the sale price.",5,1,0,General,Tops,Knits +876,43,Rediculously small,"This top is beautiful online and in person. i am in no way a large full figured gal, but i did order an xl. reading the past review and wanting an airy fit i ordered a larger size. this shirt is horribly tiny in person! the xl regular fit looked like an xs. have no idea if this particular shirt sent to me was miss sized or what. will take back. other than fit, the shirt is very beautiful in every way.",1,0,6,General Petite,Tops,Knits +829,50,Rather cheap looking,Cute in the on line photo but in person it looks cheap and has gold running through it. if you look really close in the photo you can see it.,2,0,11,General Petite,Tops,Blouses +829,70,I loved this blouse - except for the sizing,"I loved this blouse, but had to return. i am 5'2"", 127 lbs. 36d. i found that the blouse was tight in the bust and very wide in the shoulders. the sleeves are puffy, which is fine, but the wideness is from edge of the bib to where the sleeve is attached and therefore the top did not lay flat. if you have wide shoulders and a small bust - this blouse will be perfect for you. i liked the material, it was thin but perfect for a summer nights.",3,1,1,General Petite,Tops,Blouses +90,36,Love them,"They are a perfect thickness. fits comfortably like leggings but look like a nice pair of office/ outside pant. got them in the grey, am thrilled w the texture. i typically wear a large in pants and they are tts. not see through either. would definitely recommend them.",5,1,1,Initmates,Intimate,Legwear +872,42,"Super nice, can use as is or layer it","All the colors are beautiful, the white is a true white. i got the gray one. it runs large, so i would recommend sizing down, unless you plan on layering using thicker fabrics underneath.",5,1,0,General,Tops,Knits +90,43,Too much like jodphurs!,Good quality fabric and structure but the mix media details and lines make them seem more like jodphurs than leggings. it's hard to see where i would wear them ... sorry but they have to go back.,2,0,0,Initmates,Intimate,Legwear +90,51,Best leggings ever,"After reading the reviews, these leggings seemed to be the best leggings ever. i'm usually not a leggings gal, but decided these might be the ones to take me through winter with long cozy sweaters. i read the profile of those who purchased and were happy with the fit before making my purchase. i'm 5'2"", 134lbs and bought a medium. while they fit nicely through the waist and thighs, from the knees down they're baggy and really don't fit like a legging. in the photo you can see some slack around t",4,1,0,Initmates,Intimate,Legwear +873,40,The beauty is in the details,"I love design of this top! it will look beautiful on many body types. the black material is thin, and for my personal level of comfort i will definitely wear a cami under. the details are gorgeous and the neutral colors easy to combine with casual or dressy bottoms. the top ran true to size for me.",5,1,1,General,Tops,Knits +829,23,"Beautiful design, way too large","I love almost all tops from retailer, however this one was just enormous. it is beautifully designed, but it was so huge when i tried it on that i couldn't believe it was sized 0. i even checked the tag to see if maybe they placed a size 0 tag on an xl shirt. for reference, i am 5'2"" and 110lbs. i would have loved this shirt if it hadn't been so big.",2,0,1,General Petite,Tops,Blouses +90,58,Stretched out upon receipt,"I opened these when i got them yesterday and immediately tried them on. the knees were totally stretched out and due to the panel at the knee, it looked like i had growths popping out between my legs at my knees. someone had received these before me and sent them back after they tried them on or wore them then returned them. they were obviously too small for whoever did that. these never should have been resent to another customer. they are obviously very misshapen. they are going back. on a bet",1,0,0,Initmates,Intimate,Legwear +829,37,Stunning,This shirt is so stunning. the photo does this shirt no justice. what you can't see from the image are the tiny gold threads that are woven throughout the shirt. they run vertically.and are very subtle and seen only up close. so pretty. also the detail in the chest area is perfect. i love this shirt.,5,1,12,General Petite,Tops,Blouses +873,56,"Beautiful, casual or dressy","For an athro top, this is a good price point, especially for such a beautiful piece. it's really just a basic tee, but the lace insets bring it up several notches. and it's much prettier than the picture shows. i think it fits very true to size -- i'm normally a size small and got that size with this (34d, 124 lbs., 5'4"", 36-26-35.). although the lace is very sheer, i really couldn't see my nude bra through it, so don't feel i'll need a cami, because that would ruin the delicate design of this.",5,1,2,General,Tops,Knits +876,51,Great peasant-style top!,"I think this is the first peasant top i've found that doesn't fit like a tent! i did size down to a small, although i'm normally between small and medium. i even found that the shape of this top is quite flattering. maybe the darker embroidery helps. i'm very happy with this purchase.",5,1,0,General Petite,Tops,Knits +829,46,Buttondown,"On the hanger i thought this had a chance, but oh geez... puffy sleeves, itchy, metallic thread, lace... what a mess. and thin. and uncomfortable. no, no, no.",2,0,1,General Petite,Tops,Blouses +829,37,Beautiful!,Beautiful shirt! i recently purchased this on sale and it has been marked down even further so definitely buy it! it is very pretty with the gold interwoven in the material. the peplum is also not overwhelming. it looks great with a pair of jeans and heels. my husband immediately commented on this shirt and he does not notice anything?,4,1,0,General Petite,Tops,Blouses +90,34,Feel like leggings - look like pants!,Soooooo cute. fit like a dream. look like regular pants. could dress up or dress down. i bought the grey and the slight herringbone pattern was so adorable. going to buy in the black as well. normally wear size 4-6 got the small and fits perfect.,5,1,2,Initmates,Intimate,Legwear +1075,43,"Special, special, special!",Love this piece! lots of versatility and the pattern is lovely. wear it alone or with leggings and boots.,5,1,1,General,Dresses,Dresses +820,72,Much prettier in person,"I bought this top for my mom for christmas. i wasn't sure if she would like it, but it is really nice in person and she loved it. it fit true to size and can be dressed down, as it is on the model, or dressed up. i am so glad i decided to get this top. highly recommend.",5,1,0,General Petite,Tops,Blouses +862,39,"Soft, long, and beautiful",I love this shirt. wore it today and got many compliments. i bought the mauve (looks lilac to me). it's very comfy and long. its got a lovely swing feel which is great for covering my baby belly.,5,1,2,General Petite,Tops,Knits +906,41,,,5,1,0,General Petite,Tops,Fine gauge +906,42,Beautiful!,This is perfection in the color sky. get you one now. you will not regret it. it is super soft and flattering!,5,1,0,General Petite,Tops,Fine gauge +996,39,,"Beautiful material and taupe color. the slits are pretty high on both sides, so just be aware of that.",4,1,1,General Petite,Bottoms,Skirts +862,35,Quality was not that great.,"As much as i had wanted this to work for me, it didn't. fabric is not as soft as i had expected and quality is just bad. i purchased this online (on sale at $29.95) and i had envisioned this to be comfy stretchy and swingy with a flow. i sent this back to the store as it didn't seem fit even at the low price.",3,0,1,General Petite,Tops,Knits +1080,66,Pretty but poofy,"Yes! i love the color, the fabric and the fit up top. the skirt, however, is very poofy. i am going to let it hang for awhile (it was an online order) and see if some of that relaxes. otherwise, i will need to return it.",4,1,4,General,Dresses,Dresses +1025,34,Most comfortable jeans,Probably the most comfortable jeans i have ever owned. they are more comfortable even than yoga leggings. they look and fit like real jeans while feeling like loungewear. i have nothing negative to say about them.,5,1,2,General,Bottoms,Jeans +1075,62,Flattering design,"This dress is as cute as represented in the picture. the adjustable ties on the sides allow your dress to be form fitting or a looser, more casual look. the colors of the dress and the beading are beautiful. the dress looks great paired with a pair of black ankle boots!",5,1,1,General,Dresses,Dresses +862,47,Too wide and short,"I ordered this in white and it's quite sheer. as others have noted, it is really full and it hits at mid-hip which doesn't work on my figure. if it had been a few inches longer and more of a tunic, or less voluminous, it could have worked but nope.",2,0,1,General,Tops,Knits +862,35,,"Awesome fabric, wonderfully flattering cut. love the blue and green colors.",5,1,0,General,Tops,Knits +1025,48,Outstanding!,"I live in blue jeans - and i'm extremely particular about style, fit, and fabric. an eternal fan of ag, i tried these on the recommendation of a sales association. in the past week - i've dressed them up, dressed them down, and wished i could wear them to work! the wash is an especially versatile shade of indigo. incredibly flattering fit. if you're going to splurge on one essential this season...these paige jeans are definitely a candidate.",5,1,1,General,Bottoms,Jeans +1020,53,"Attractive skirt, runs small","Unlike the other reviewer, i found this skirt to run small...very small. i am pear-shaped and always wear a 12 or size 31. the size 12 in this could barely go over my hips and was very snug around the waist. another inch in the zipper would be nice! there is no spandex in this skirt - just cotton - so there isn't any give to the fabric either. i ordered the size 14, which fit like a glove, but i would really like to see if the 16 would be better. embarrassing but i am just worried that with 100%",4,1,4,General,Bottoms,Skirts +1078,24,Lovely flow and fabric,This is a beautiful dress. i love the bohemian style and flow. works well with dressing up or dressing down. very quality.,5,1,0,General,Dresses,Dresses +1028,40,Love these jeans,I have two pair of these jeans. one at the original length for heels and one hemmed for flats. i'm ordering another pair because i wear them constantly.,5,1,0,General Petite,Bottoms,Jeans +862,40,So comfortable!,So easy to put on for a casual day! washes great!,5,1,6,General,Tops,Knits +575,25,Better than i'd hoped,"I saw this online yesterday and i was in the store today to try it on. i assumed it would look average or below average on me and i could just walk away no problem. by no means am i in the financial bracket to be spending this much money on a jumpsuit, yet here i am at home wearing it as i write this review. it is surprisingly flattering. i am 5 feet tall and have a petite frame so wide leg pants never work on me, but this somehow did without making me look bulky. given my height, it comes to ab",5,1,3,General,Trend,Trend +1078,49,Wanted to love it,"The colors in this dress are beautiful (the green/blue version) but the fabric is a very see through mesh and feels flimsy. i purchased it online and wasn't expecting it to be so sheer -- the particular empire cut combined with the fabric makes it feel more like a nightgown, i really wanted to love it but it's going back.",2,0,0,General,Dresses,Dresses +862,38,Cute tunic with interesting neckline,"Super soft and colors are great. i got the navy and plan to wear with white jeans and platforms, similar to the photo. would also look great with black skinny pants. worth it for the sale price.",4,1,1,General,Tops,Knits +1078,24,,,5,1,0,General,Dresses,Dresses +1115,30,Favorite coat ever,"I received this coat as a 30th birthday present from my mother and i have to say, this is the best present she has ever bought me. the inside of the jacket is the softest sheerling i've felt and is pure bliss to wear around town. the coat is actually a lot warmer then i expected, which i'm not going to complain about. the print is lovely and i appreciate the faux leather edge on the cuffs, giving it a more finished look. the fit is fantastic. i'm a bit curvy and the cinched waist with the belt g",5,1,3,General,Jackets,Outerwear +1025,45,Perfect skinny jean,"I'm in love. the cut, fit, and fabric of this jean have made it my favorite, everyday pair. they're mostly rayon, followed by equal parts polyester and cotton with a touch of spandex thrown in: the right combination for fit, softness, and durability. these hold their shape well, so i don't have to wash them every other time i wear them. the ankle length hits me at the top of my ankle bone. perfect. i'm 5'6"", 125 pounds. ordered size 27.",5,1,1,General,Bottoms,Jeans +1075,51,,"Beautiful and stylish. looks amazing with my new black suede over the knee boots! i am 4-6 on top and curvy 6-8 on bottom so aline skirt is great (interior slip is tight straight skirt rather than a-line, which dropped one star).",4,1,2,General,Dresses,Dresses +1075,34,,"This is an absolutely beautiful dress, but arrived with several holes in it!",1,0,0,General,Dresses,Dresses +1028,66,Perfect jeans!,"I've been shopping with retailer over 10 years and this is my first review. i almost didn't order after reading negative reviews from petite ladies. i'm 5' 2"" and these jeans are perfection! they look amazing with a 2-3 inch heel. i don't think they are meant to wear with flats since petite people look ridiculous in flats with boot cut or wide leg anyway. love these!",5,1,1,General Petite,Bottoms,Jeans +862,41,Lots of material,"I ordered this in a medium and although the details/design of the shirt were cute, the ""swing"" did not work for me this time around. i typically like looser fitting tops, but with this shirt i felt like there was just too much material and made me feel like i was wearing a tent.",3,1,3,General,Tops,Knits +1078,42,Great color,"I ordered this dress online in 8 p in the orange color. the length was perfect but the dress seemed big. it was a lot of dress. so i went into the store and tried on a regular 6, but the dress was a little long. they didn't have petite in stock so they had it shipped to me and it fit perfectly! i am 5'3 and 150 pounds. i don't think this dress would work if you have a big bust, i'm a 36b so it fits nicely around the chest area. the length of the dress was also perfect!",5,1,0,General,Dresses,Dresses +862,39,Classy and comfortable.,Classy tunic can be worn with jeans or leggings. neckline is small but stretches so it goes on easily. color is perfect for spring. my only word of caution.....the design can add a bit of bulk around the middle so probably not your best bet if you are tummy conscious.,5,1,1,General,Tops,Knits +862,33,,"My favorite shirt!!! i wear it when i don't want to be in the sun too long, it has breathable material in the armpit. i loved so much ordered in other colors. i wish they would make in more colors!",5,1,0,General,Tops,Knits +862,43,Great purchase!,"Really pretty color, light, breathable fabric and i love the high neck on this tunic! i wear this tunic with black leggings, a black tank and black sandals. i'm not the smallest girl so i love that this tunic is a bit longer and has a bit of a belt. wonderful pick up!",5,1,0,General,Tops,Knits +906,43,Great cowl + tunic,"This looks awesome with leggings / jeggings and booties or slip ons. great buy. its a wee big, but there are slits up the sides pretty high.",5,1,0,General Petite,Tops,Fine gauge +1115,41,So cozy and lovely!,"I absolutely love this jacket! it's one of the best things i've bought this season. the interior is so unbelievably soft. i just want to wrap myself in it with nothing but a tank top on underneath so i can really feel the texture against my skin. the fit is beautiful, as is the pattern. it's even better in person than in the photo. it is pricey, but for the longevity and pleasure that i can imagine myself getting out of it, it's well worth it.",5,1,6,General,Jackets,Outerwear +1075,53,Pretty dress,"I tried hard to make this work because it is beautiful, but ended up returning it. first, it is very delicate material - i was terrified trying it on. second, i just couldn't make the drawstring work for me to achieve the fit i wanted. third, it was too low for me and would need a cami over the slip. while i didn't think the colors were as deep as the picture, it was still pretty. i could have possibly gone down a size to fix some of my concerns, but then i know it would have been too short for",4,0,2,General,Dresses,Dresses +1075,60,Boxy,"I wanted to love this dress because the fabric is fun, but i could not find a way to make the drawstring waist look like anything but a potato sack.the model has her hands hiding the lack of a waistline",1,0,1,General,Dresses,Dresses +1020,36,Perfect!,"Adorable skirt! thought it would be snug so ordered up, but had to send back and re-order in normal size. fits perfect. found it to be slimming on the backside, yay! :) this will be a wardrobe staple for many years to come!",5,1,3,General,Bottoms,Skirts +862,37,"Basic, beautiful, effortless","In the fall, i purchased every single color of the left of center swing top. long sleeve, great colors and very easy to wear. when i saw these, i swooned. these are very similar knit to the left of center, but the swing is bigger and the linen insets on the side make this easy top even more beautiful! these run true to size...basically you are only fitting your arms and chest. this top will definitely has a little give with wear, which will just add to the shape and effortlessness. the linen ins",5,1,21,General,Tops,Knits +862,42,"Cute, flattering and comfortable","I was looking for a new spring/summer tee that still gave coverage for chillier mornings and nights and this is it. it has a nice swing to it that isn't too wide (think a flattering a-line cut that has some movement towards the bottom hem.) it is fitted and flattering where it needs to be (the shoulders and ribcage run fitted and tts which means you don't get lost in the top. it's not boxy or oversized, but if you want a fitted and more flattering look, you can definitely size down easily, parti",4,1,2,General,Tops,Knits +862,22,"Classic, everyday tee","I love this shirt - beautiful casual wear, great with jeans!",5,1,2,General,Tops,Knits +1025,26,My staple jean,Highly recommend these jeans! they are ultra-soft and fit your body like a dream. the wash is flattering on them as well. i was looking for a pair of jeans to be my go to and ultimately landed on these. they do runa little big but they do not stretch out much so i went with my usual size.,5,1,1,General,Bottoms,Jeans +1078,62,House dress,"This is much prettier online than on me. too much dress, even though i sized down.",2,0,0,General,Dresses,Dresses +906,29,Versatile,"I have received several compliments when wearing this sweater. perfect to dress up or dress down. purchased it in black and red. does run on large. i am 5'3"" roughly 110 lbs ordered an xs.",5,1,0,General Petite,Tops,Fine gauge +1020,39,Great summer skirt,"This is a really cute skirt, and it seems well-made (good stitch-work and enough weight to the fabric that i'm not worried about underwear show-through but not too heavy for a summer skirt). i sized up from an 8 to a 10 because it was difficult to get the skirt over my bum. also, the zipper doesn't lay flat when i have it in the back of the skirt so i just shifted it to the side--still looks great imo. i think if you have hips or a booty you might want to size up on this skirt. color is true to",4,1,2,General,Bottoms,Skirts +996,38,,"I have to send the skirt back. i agree with other reviewers who say the slits are extremely high, the ""underskirt"" bunches and the fabric snags easily. additionally, the yarn was already fraying at the top of the slits, and the label was stitched on the outside of the waist band. disappointed in the quality of this skirt, given the pretty steep price.",3,0,0,General Petite,Bottoms,Skirts +996,43,Pull on sexy comfort,"Side slit goes up far when seated so beware, wear on a non bloated day ;) +but very comfy and unforced sexified +wore it with a fluffy sweater, lots of looks",5,1,3,General Petite,Bottoms,Skirts +862,54,Comfortable,"Hi , i bought these in moss for both of my daughters. they love them. the material is substantial and washes beautifully. the fit is straight up and down and is not forgiving on figure flaws. i would recommend this to a thin figured girl.",5,1,1,General,Tops,Knits +1078,66,Confused,"I love this dress and bought it in the store in the orange, without trying it on as i usually wear a 12 in this brand. the over-dress is beautiful, however the under-slip is very tight and is apparently made for some one who has no bust at all. i am so sad and am considering returning it or re-sewing the slip in some way so that it fits. not sure what to do. don't want to spoil the color combo by wearing something different underneath, but it is so sheer you need something.",3,1,0,General,Dresses,Dresses +906,66,"Love it, but...","I read the reviews before i bought this sweater online. one person did mention that the side slits were cut very high, but i had no idea! when i tried the xs on at home i was quite surprised by just how high up those side slits were. with just a pair of jeans, you could see flesh! at first i thought it maybe wouldn't work, but i decided to keep it because everything else about the sweater is lovely. i'll be layering this with a tank underneath. it's a bit quirky and funky and that appeals to me!",4,1,0,General Petite,Tops,Fine gauge +862,40,Fina tie tunic,"I was extremely disappointed with the quality of this product. as soon as i put this tunic, the right tie loop detached from the garment. i could return it but the point of shopping online was to avoid the hassle of going to the store. the price of the item does not justify the low quality of the final product.",1,0,4,General,Tops,Knits +862,29,Beautiful top,"This is such a pretty top. i do not feel it runs big, as another review mentioned. to fit the sleeves comfortably (i do not have large arms at all) i did choose to take a small over my usual xs so the body is a bit llonger than shown on the model (a bit more of a tunic fit on me). it is really a pretty top either way, the xs fitting like it does in the picture on the model and the s fitting a bit longer. worried just a bit that it might develop holes as some tissue tees do.",5,1,3,General,Tops,Knits +1075,34,Stunning print,I'm in love with this print! the fabric feels wonderful- this is such a perfect transition dress! the adjustable waist tie makes the dress fit great!,5,1,7,General,Dresses,Dresses +1025,66,Most comfortably jeans ever,These are literally the most comfortable and the softest jeans i have ever owned. i just got them a few weeks ago and i'm already obsessed with them. they have the perfect amount of stretch that makes them flattering and comfortable but they don't stretch out like all my other jeans do. i ordered my usual size 28 and they fit great! can't recommend these enough!,5,1,2,General,Bottoms,Jeans +862,75,Very strange,"I had this shirt in mauve and loved it so i ordered it in navy. i love the lightweight material. i love the way it fits. however - all the seams are sewn, quite obviously, inside out. only after i received the navy shirt, where it is extremely obvious, did i check the mauve one. those seams are also inside out but done in a much tidier fashion so that it wasn't really noticable. i was unhappy with the sloppiness of the seams on the navy shirt but, because i love the style and the fit, i kept it.",3,0,0,General,Tops,Knits +996,49,Not what you think,"This skirt looks cute online but, it has several issues. 1.) the slit is very high, this photo is deceptive, look closely...the slit is actually to her finger tips. you cant wear any kind of spanx or control top tights. 2.) slits on both sides so when you walk they fly away. 3.) the micro mini ""slip"" bunches. 4.) the fine knit is very snag-able. 5.) the skirt is very long. it is going back.",2,0,7,General Petite,Bottoms,Skirts +1025,48,,,5,1,0,General,Bottoms,Jeans +1075,39,Gorgeous & versatile,"I love everything about this tunic dress. it's versatile and can be styled a few ways: loose like a shift, blouson when cinched, or eliminate the liner and wear as a layer over whatever you want. all the little details make it stand out and give it a glamorous bohemian vibe. there are tiny beads, sequins and subtle micro pleating. the fabric is airy and quite delicate (be careful.) the drawstrings at the waist are adjustable for both sides. slip is tts and the outer dress has a subtle oversize d",5,1,10,General,Dresses,Dresses +906,39,,,4,1,0,General Petite,Tops,Fine gauge +1078,39,Autumn morning glory,"If you already own at least one of the four versions of the morning glory dress, then you will know what size of the canna swing dress to buy. sleeves are slightly full with button closures. slip is tts and the outer dress is huge! easy to cinch if you want a fit & flare style. just know what you like--complainers about how baggy this dress is are forewarned. those who really want to size down are slim/slender/petite types. if you don't want to wear the tent-like swing style, size down one or tw",5,1,21,General Petite,Dresses,Dresses +996,29,Perfectly comfortable & subtlety sexy,"Just received yesterday & i love this skirt! it's crazy soft, very flow-y and the higher slits on each side let it be more sexy than hippie-looking which i appreciate. great to pair with a funky pair of tights underneath. sits nicely on your body - hugs your curves. + +only annoyance is it's a bit awkward to walk in as the material moves around your legs & gets caught a bit. you definitely have to be conscious of it as you walk. + +i bought a m in gray which fit perfectly (i'm 5'9"" & usually a 6). t",5,1,0,General Petite,Bottoms,Skirts +1075,57,"Tunic has a beautiful print, sparkle detail","This tunic is true to size, i ordered the xxs as i am 5'5"", 110 lbs. it fit perfectly and hit me about 4 inches above the knee. similar to model photo (i have long torso). it has a very sparingly done cluster of sparkle sequence. the draw string waist has a tie on each side to adjust length. i actually returned it only because it seemed a little to young a look for me. i was sorry to do so.",5,1,1,General,Dresses,Dresses +1078,48,,"I tried the other dresses by this brand and they were short and didn't fit well. but this dress fit better,i bought the orange size 8 and it fit good with a swing to the bottom. for reference i am 5''9 , 34dd and thin and this fit well with some room. this time they got the slip right and its not tight and the length hits right above the knee which give an overall better look plus the long sleeve balances out the dress. i'm going to wear mine with tall brown boots.",4,1,3,General Petite,Dresses,Dresses +1025,80,Best. denim. ever.,"I tell everyone i know to try these jeans, that they are so worth the price tag. i've been an ag super fan for years, but i fell in love with paige the moment i tried these on. (i still love ag for their colored and patterned ankle denim and cords.) i have worn these over 50 times without ever having to wash them. (i never understood the idea that you're not supposed to wash denim, but now i realize that it's feasible.) they don't stretch out and still hug me like a second skin - without feeling",5,1,3,General,Bottoms,Jeans +820,59,Beautiful blouse,"In truth, it looks better in the photo. i am sure it was a great value for the money i spent. however, i am keeping it because it will match perfectly with a pair of satin pants i want to wear to holiday parties.",4,1,2,General Petite,Tops,Blouses +996,65,Awsome skirt,"This is a very sexy skirt. very slimming...a great basic long skirt to have in your wardrobe. dress it up or down. +the slits are high, so you are exposed like a short shirt.",5,1,4,General Petite,Bottoms,Skirts +1025,33,Love paige denim,"These paige skinny jeans are lightweight, snug, super soft and extremely flexible allowing for tons of movement. great for dressing up or down and a great addition to any ladies closet.",5,1,0,General,Bottoms,Jeans +862,37,Beautiful and flattering,This color is gorgeous. this could be dressed up or down. great buy!,5,1,0,General Petite,Tops,Knits +820,26,Looks better online runs small,"This top does look better online and one reviewer said. it also looks good in-person but runs small. i usually wear xl, in some cases l. i tried l, it was small so i sent it back for xl. the xl fit perfectly at the top but was tight at the bottom. the bottom pulled at the seams, so i am sending it back. the embroidery itself is very pretty, it is a nice dressy top that can be worn with multiple colored pants or leggings. it just didn't fit me at the bottom. i think it would work better for a lea",4,1,7,General Petite,Tops,Blouses +1078,65,Not as pictured,I just received this dress wadded up in a bag. it is nothing like the colors shown on line. in the picture it appears blue and white. in actuality it is teal and a funky color of beigey pink. the top is see though but it does see have a slip under the skirt. will be sending it back and again remind myself why i shouldn't try to buy a dress on line.,1,0,4,General Petite,Dresses,Dresses +1024,55,Cute jeans,"These are very cute but very, very stiff. have washed 3x and still not relaxing. not a bad thing but they are a little uncomfortable the first hour of wear. my waist is smaller and generally, have gap in waist to get fit right in hips. super cute with sandals, mules, duck boots.",5,1,1,General,Bottoms,Jeans +375,39,,I think it's a little on the long side and the sleeves are a little tight but otherwise i really like this jacket. it's lightweight for summer and yet more stylish than the other long sleeve things i grab in case i get cold.,4,1,0,Initmates,Intimate,Lounge +111,35,Excellent fit and quality,"As a dancer and yoga enthusiast i have tried my fair share of leggings. these are probably the best i've ever found. pure + good makes top quality, well fitting leggings that do not slide down, shift around, or become see-through regardless of the physicality of your movement. they breathe wonderfully and have survived one washing with no ill-effects. they are high enough in the rise that i never have to worry about revealing anything i don't want, nor do i constantly have to adjust them to keep",5,1,0,Initmates,Intimate,Lounge +375,32,,"My new favorite cozy and stylish ""go-to"" piece for everything from park with the kiddos to mat class to impromptu financial meetings.",5,1,11,Initmates,Intimate,Lounge +864,37,,,5,1,0,General,Tops,Knits +375,48,,This jacket is stylish and unique. love the lines and the fit is very flattering.coral is a bit more orange/dk. peach than what i think of as typical coral. fun color for spring. i sized up from my typical s to m.,5,1,4,Initmates,Intimate,Lounge +872,38,,Love this tank! it's super soft and has a lovely drape. i got 3 colors on sale and am so glad i did!,5,1,0,General,Tops,Knits +864,44,Great summer top,"Lightweight and comfy fabric, very flattering on, except runs a bit big through the body. i normally wear a 12/14 and a l at most stores, but retailer seems to run large on me, so i needed to exchange this for a smaller size as the fabric width on the body was just too much.",4,1,8,General,Tops,Knits +375,49,Puts me right in the mood for spring!,"The peach color is beautiful on this jacket, and the quality and comfort is perfect. i wear a medium and the sizing was spot-on. i may get in another color if a sale comes around again.",5,1,12,Initmates,Intimate,Lounge +375,29,Wardrobe staple for me!,"Super soft and stylish. it's a major step up from my overly casual fleece jackets. love it. i think the sizing is dead on so i would disagree with a review that it runs small. i'm 5'10 and 142lbs. typically wear a size s, but sometimes have to size up to a m. i got a s. fits great. not too tight. sleeves are plenty long enough. i typically wear this with skinny jeans to work (aka grad school), and i like that it functions as a jacket on chilly mornings, but its not too bulky so i can keep it on",5,1,3,Initmates,Intimate,Lounge +949,39,Soft and fun,"I ordered the xxs, i think retailer has gone on the bigger size again and i went from small to xs to xxs... so true to size in that sense. i love the color (nude), and it is pretty soft and comfortable. the cut is flattering, the cowl neck is pretty, the sleeves are shorter, and the hem is wider (aka swing). this would look totally adorable with my flare or wide leg jeans. i think ti would look nice too with skinnies, if you have leaner legs. + +(for reference, 30dd, 26.5 in waist, 115 lbs)",5,1,1,General Petite,Tops,Sweaters +872,68,,,5,1,0,General,Tops,Knits +858,52,Sooo comfortable and slouchy/drapey - in good ways,"This is what i'd been looking for without even knowing it! it's long without being too long, and most importantly - its soft, not scratchy the way so many winter clothes can be. i wasn't sure if i should order the small or the medium so i went with the medium, and it fits great. the weave is just slightly wide, but not to the point where you have to wear a cami or tee underneath, but the fit is loose enough that you can, if you want to for added warmth. i really like it.",5,1,0,General Petite,Tops,Knits +558,27,Great basic!,The shirt fits true to size. the length of the top is great: not too short (won't show your midrift when you raise your arms) not too long (this is a shirt not a dress). this is a great top for a casual day in jeans or a flirty day with skirt to dress it up.,5,1,0,Initmates,Intimate,Layering +1095,33,,This dress is one of a kind! i saw it on sale and immediately snatched it for a very reasonable price. i could not be happier. i've already had the chance to wear it at an event and felt like miss mary from downton abby. very classy and elegant.,5,1,0,General Petite,Dresses,Dresses +830,32,Classic & elegant,This top is gorgeous in person! i'm in love with it! it's perfect for the holiday season. it runs a little big and long so i suggest going down a size for a more tailored fit.,5,1,0,General,Tops,Blouses +375,55,Not true to size,I saw this jacket in the store and thought it was really cute..and finally a nice length!! ordered the xl because l and was afraid of shrinkage and it is no larger than the l. runs at least a size small with not alot of give. i will unfortunately have to bring it back.,3,0,5,Initmates,Intimate,Lounge +872,40,,"Love, love, love! wish i had gotten this in every color. the absolute most perfect tank with just the right amount of flow. i am 5'3 with 34d chest and the medium is great.",5,1,0,General,Tops,Knits +864,20,Huge and very unflattering,"This top runs extremely large and has a very unflattering cut for those without a straight figure. i have 36ddd boobs and a muscular, curvy frame. this top adds about 20lbs.",2,0,0,General,Tops,Knits +375,51,Runs two sizes too small,"Wow. had to check label to see if a m was shipped by accident. + +nice details. + +too bad!",4,1,19,Initmates,Intimate,Lounge +375,57,Cute jacket.,Great jacket for a cool morning. not too heavy and i found it to run true to size. nice little details.,5,1,0,Initmates,Intimate,Lounge +872,36,Runs big,"Cute tank, runs big. i purchased the mango and it's a bit sheer.",4,1,0,General,Tops,Knits +872,56,"Soft, comfy and looks great","This tank is wonderful for those with full hips because it hangs just right to cover any flaws. the colors are bright and the material is soft. there is a band at the end that elevates the tank so you can wear it out if you would like. not too low in the front and overall the tank runs true to size. i suppose if you wanted a tighter fit you could size down 1 size, but i like the way it hangs in my regular size. i'm very busty and hippy and this top makes both look slim. highly recommend.",5,1,0,General,Tops,Knits +830,43,Versatile blouse,"I just got it in the mail and i love it! very versatile piece. wear with skinny jeans and heels or tucked into a skirt. i usually wear a size small but went with what the other review said about a small being tailored and got the medium so i could tuck the front into jeans. i am 5'5"" ,125lbs , a 32dd and wear a size 4 or 27 in jeans.",5,1,1,General,Tops,Blouses +872,39,Perfect flowing lounge top,"This top is so soft and luxuriously comfy! i love wearing it around the house, haven't really ""dressed"" it up yet with jeans or jewelry. it runs slightly big, but if you like the oversized look, this is definitely perfect.",4,1,0,General,Tops,Knits +872,52,Super soft tank,"I bought this tank to wear with the pilcro linen wide leg pants in navy. what a great outfit! this tank is very flowy, but not overly large, and hangs beautifully over pants. it's casual, yet can be worn under a nice sweater or jacket and look great. i bought the white and had no issues with transparency when i wore a nude colored bra. i bought it in s and could've gone with an xs but didn't want it to be tight. i'm going back to my local retailer store today to buy it in at least one other color.",5,1,0,General,Tops,Knits +1068,57,,"Low waisted, weird liner.",3,0,0,General,Bottoms,Pants +1126,31,,,5,1,0,General,Jackets,Outerwear +375,47,Sizing inconsistency in coral but love,"Had the same inconsistent sizing issue in coral as miss janeausten. i ordered 2 corals, one in s & one in xs & the s was very much smaller than the xs as i could barely get my arms into the s (while my arms were loose in the xs). keeping the ""larger than s"" xs coral - the color is just lovely. also ordered the ivory in both ps & pm & keeping the pm as i like the longer arm length to cover my hands (for sun protection when i want/need). because you can cinch the waist tightly, a looser jacket sti",5,1,0,Initmates,Intimate,Lounge +872,32,Love this,"I am 5'4"", 170lbs, 34dd and a medium fits beautifully in this top. the mint green is very pretty, and a nude bra under it works without showing and without it being see-thru. it is super soft and pretty, and doesn't cling. i love it!",5,1,1,General,Tops,Knits +1068,47,Love these!,"I just received them (blue) and wore them today. i got so many compliments! they are comfy and very flattering. i would not call the fabric cheap at all. it is super soft and washes and wears nicely. i ordered the medium and they fit perfectly, even though i am on the large side of medium. i'm ordering the other color right now!",5,1,0,General,Bottoms,Pants +558,41,,,5,1,0,Initmates,Intimate,Layering +375,34,Purchased coral and cream,"I purchased both the coral and cream. the coral is more rustic than vibrant and to me, more orange than a true coral. but for summer, is probably super cute. i found this ran large. for reference, i am 5'8'' 128lbs and purchased a small, my usual size in retailer. i kept the small in the cream but if i were to keep the coral, i would have sized down to xs. you can adjust a little, but the arms were loose and coral didn't look as good if not fitted. super cute with jeans and a tee, with yoga pants,",5,1,8,Initmates,Intimate,Lounge +375,28,Nice lightweight jacket,"I'm: 34a, 125 lbs, 5'8"" +purchased: small + +jacket fits well and is not too heavy. didn't feel tight in the arms. great to wear on a cool spring day! i bought the white and grey jacket.",5,1,0,Initmates,Intimate,Lounge +872,34,Love this shirt!,This is a great shirt but it was big for its size. i'm also short so maybe the petite size would have fit me better,5,1,0,General,Tops,Knits +872,34,Versatile tank,"This tank top is great under cardigans or worn over shorts. the pocket and the seam along the bottom give it enough detail to be worn as a stand alone, but not too much to overshadow a stylish sweater layered over it. i bought the white one in the store in a medium and it fit great. then i purchased two more online (mango and pink) in the same size and they run a bit smaller than the one in the store. i thought the mango was a soft yellow from the photo online but it's pretty bright, as is the p",4,1,0,General,Tops,Knits +872,29,"Nice, has flaws.",Had to take a needle and pull threads to the back so not visible and i see this as an ongoing problem.,3,1,8,General,Tops,Knits +375,42,Versatile jacket,"This caught my eye in the store last week, and i decided to try it on. it's the perfect lightweight jacket. the photos here show it as activewear, but i think the details on it allow it to be much more versatile. it's very flattering and i found it to run true to size.",5,1,0,Initmates,Intimate,Lounge +375,51,Awesome!,I ordered the orange color too. these are perfect for throwing on over workout clothes and then running errands.,5,1,2,Initmates,Intimate,Lounge +1126,43,Still on the fence,"I'm all over this trend, but this vest is quite thick/poufy, and on me i feel like it triangles out and all you see is furball. i love it - but i think you need some height for this to look its best. on me, a sweater vest would perhaps be better. i am chesty. but i cant decide. its really cute! if you're taller than 5'4"" don't hesitate.",3,1,1,General,Jackets,Outerwear +872,37,Flowy yet flattering,"Great top, lately i've been sizing down from my usual xs to xxs with pure & good tops, but in this one the xs was best. i bought this in 3 colors and they're my go to tanks for summer. the mint is a bit sheer, but not bad. i did not get try the yellow or white one.",5,1,0,General,Tops,Knits +949,39,Not quite...,"Close but no cigar... the design and color were cute. the sweater itself was too warm for me, and itchy. the top fit snugly in the chest and shoulders but it came out a little strangely at the bottom, it almost had strange fold in the front. look closely at some of the photos and you'll see what i mean. sadly it went back.",3,0,0,General Petite,Tops,Sweaters +1068,44,Disappointed,"Bummed out.. this is super cheaply made and very expensive... the design is different , the color is beautiful, but the material is a different story.. it should be priced at the most 30 bucks.. not 128.. i'm returning them. also, they run very big..!",1,0,15,General,Bottoms,Pants +872,44,Simple perfection,"This is the perfect simple tank for summer. not clingy, and hangs really nicely, but not so billowy that you can't layer a nice wrap or cardigan over it. fabric feels like a great quality. i got it in white, and it's a bit sheer, but i typically layer my tanks anyway. tempted to get this in every color!",5,1,1,General,Tops,Knits +864,38,"Quality blouse, runs very large","I'm an xl in all retailer tops, and sometimes the xl are still too small to fit loosely; i don't like to wear tight clothes. having said that, i had to purchase this top in a size small because it was just cut so large. the sleeves hang a bit odd if you don't get the correct size. i love the feel of the blouse, the fabric is a nice quality. i recommend giving it a try but have patience during the process of figuring out the size that will look best on you in this blouse.",4,1,2,General,Tops,Knits +872,34,Nice loose casual tank,"Love this tank. it's nice and loose and looks great with all kinds of bottoms. it's very forgiving if you have a midsection. it's soft, and great colors. really nice for spring casual looks.",5,1,12,General,Tops,Knits +872,33,Great tank,"Bought this in the turquoise color and it is awesome. for those worried about it being see-through, i'm wearing a black bra and you can't see it. it's the perfect weight. super bummed that the green is sold out but may check in stores.",5,1,0,General,Tops,Knits +872,35,Love the colors!,The colors are beautiful,5,1,0,General,Tops,Knits +558,35,Great casual henley,"I bought this on sale and at the sale price it is a steal. great style, feel, and fit. maybe wouldn't feel as good about it at full price, but wish i had one is every color!",5,1,0,Initmates,Intimate,Layering +872,60,Nice light flowing tank,"I ordered both the green and the pink and needed the extra extra small petite in the shirt to make it work for me + nice light material cute fit + unfortunately didn't like the pink color was too bright for me ( and although i ordered an extra extra small petite they sent me an extra small petite which is just slightly too big )and saw the mango in the store which i also didn't like the color",5,1,2,General,Tops,Knits +375,29,Ended up with all 3,"I first got the coral one and was so in love with it that i ended up getting the other colors. it's just so cute, flattering, so cute with a long necklace and i just love how the back dips down and covers your butt. i've been heavily contemplating getting a second coral one i'm so worried if something happens to it lol i'm weird like that. it's always the good stuff that can't be replaced",5,1,2,Initmates,Intimate,Lounge +872,78,,This product is perfect for early fall wear. when the weather is a little cooler a shell worn under it will be fabulous,5,1,0,General,Tops,Knits +558,25,So soft!,"This is one of the softest shirts ever! i agree with another reviewer about the shirt not worth the original price but once this shirt hit the sale item, totally worth it.",4,1,1,Initmates,Intimate,Layering +1068,50,Interesting...,"I love the color and the design of this pant....looks very bohemian. it runs large and it has sort of a ""short"" inside of it that is made of a silky polyester...so, it's not as ""loose"" on the inside as you would think. this ""short"" is not a bad thing...but, it's something that is good to know. i love them and will definitely be wearing them very soon...",4,1,0,General,Bottoms,Pants +375,35,Love the coral color,"I'm 5'5 130 lbs and tried this on a small at my store and then ordered it in a small petite. i like the petite better even though there isn't much of a difference, the petite is about 28 inches long. it still covers the bum but i was hoping to wear it with shorts and i think it's too long for that. i love the beautiful coral color, received a compliment on the color the first time i wore it. the quality is superb. the only downside is i don't like the way it looks when zipped, it doesn't give mu",5,1,6,Initmates,Intimate,Lounge +864,36,Nice shirt but huge,"Very nice top, like the linen fabric. i ordered my regular size m and its huge. makes me look larger than i am, and i will be returning it. i would like a size s i think, just not a flattering oversize fit for me",3,1,0,General Petite,Tops,Knits +830,38,What a stunning top!,"I am so glad that i ordered this top. it is kind of shimmering and looks so pretty in person! it is nicely lined and i love the sweetheart shape at the front. i am 5'2"", 34b, broad shoulder, ordered size s and m, and they both fit quite nicely. the size s is more like a trailered fit on me, while the size m gives more room for my arms and shoulder, also extra length that i can tuck it in my low-raise demin. i ended up keeping size m since i like my tops to fit a bit more flowy. i can see myself",5,1,2,General,Tops,Blouses +872,84,Perfect everyday tank,I live in a hot and humid climate so this tank is perfect for everyday use. you can dress it up or down and the lightweight material keeps you cool. i bought it in 2 colors and may go back for more. i wish i would have found them sooner.,5,1,0,General,Tops,Knits +375,61,Cute jacket,I just received this jacket in the cream color. it is so cute! you can change it from 3/4 to full length sleeves. i ordered both an xs and s and kept the s after i saw that i could cinch the waist to fit better. in the picture it looks a bit boxier than it really is possibly because not cinched. the material is good quality and the jacket is complete with attention to detail from the buttons to the jean contrast pull on the zipper. i love this jacket! it is a good cross over from athletic to cas,5,1,0,Initmates,Intimate,Lounge +1087,39,Statuesque for once,"I'm glad i listened to my instincts once again regarding maeve maxidress. the stretchiness of this knit jersey fabric allows me to comfortably size down from my usual medium/large since the fabric relaxes so much as you wear it. i adore the color, pattern, slim profile and cut in arm holes. wearing this makes my short self feel statuesque and sofisticated.",5,1,0,General Petite,Dresses,Dresses +1009,32,,,5,1,0,General,Bottoms,Skirts +375,52,Love it!,So pretty & comfortable! love it!,5,1,0,Initmates,Intimate,Lounge +872,32,Cute and comfy,The tank top fits well. i usually boarded between a large and an xl and i got a large in this shirt which was perfect. it is kind of thin material so i wear a white tank under it. it's not too big in the armpits which is nice so my bra doesn't show. material is really soft and comfortable. it fits loose but not baggy.,4,1,0,General,Tops,Knits +872,54,,"I have several of these tanks from last year and bought new colors this year. i have found the fit to be easy and relaxed, but not baggy. they are very flattering. i wear them thru the fall and winter as layering pieces under sweaters and flannel shirts as well. i was them in cold water, delicate cycle, hang to dry and they are good to go. they have held up well - even the ones that are 2+ years old are still going strong with no holes or tears.",5,1,0,General,Tops,Knits +864,65,So fun!,"This fits tts. it is body-hugging as shown on the model. the knit is thin, soft with tons of stretch. i bought the ""navy"" which is the color shown in the photo. as you can see, it's not really navy. it's a strange blue that's more like a faded dark mallard blue. but, it's still blue. + +the sleeves are long on me. so you taller girls won't have issues. the ruffles move and are so fun. the fabric, however, is not finished off. it's raw cut material, which is why i gave it 4 stars.",4,1,0,General Petite,Tops,Knits +872,64,Love the look- couldn't resist,The uniqueness of this top caught my eye online. i normally wld not want a long sleeve top in the summer. a bit warm to wear outside now but i like the casual but unique style of it. it's a top i can wear now but only indoors with a/c. the regular small fits fine. a little oversized & sleeves a little long - as in the pic. the color/style/detaling is exactly as in the pic - no surprises. soft & comfy. a little opaque but a nude bra will work fine. i don't see the need for a tank/cami under it. i,5,1,3,General,Tops,Knits +864,41,Feel good top,"I bough this top in blue and i really like the color , style and fabric. i also bough the necklace as styled in the photo and they look well together. it's a departure from more tailored clothing for me. +i keep on trying linen tops and up to now, this seems the best cut for linen. as the fabric stretches, it will still fall nicely.",5,1,7,General Petite,Tops,Knits +864,28,Large,"It runs large. loose or oversized tops don't bother me so i thought it would be fine, but this just made me look wider then i am. is thin and too sheer for me as well. it was just so unflattering. i had to return it.",1,0,0,General Petite,Tops,Knits +864,50,,"This shirt is nice and flowy. it can be dressed up or down. very lightweight for summer, but the color will work for early fall too.",4,1,1,General Petite,Tops,Knits +872,34,So soft and comfy!,"I ordered the moss green color. i love it! the color is really cool, the length is longer, and the fabric is soft. great summer option!",5,1,2,General,Tops,Knits +375,69,Love it!,"Ordered online in white, just received it, love i! i wear m in most clothing, size 6 dress, jacket fits perfectly. would love one in the peach color shown in the pic but from the reviews stating it is much deeper in colour decided against it.",5,1,0,Initmates,Intimate,Lounge +830,44,Sizing is good,"I thought i would need a medium in this top, but it was sold out so i crossed my fingers on a small. it fits very well, much like it fits on the model.. loose and length is good ( and i am not as slender as that model!). i am 5'6"", 140 lbs). the sweetheart neckline dips a little more than i would like in the front....but i will figure that out. the top is really unique and i love the shimmery dots.",5,1,0,General,Tops,Blouses +864,34,Love it!,Love everything about this top. the ruffles give the top a great edgy style. will look great with some skinny jeans and boots.,5,1,0,General Petite,Tops,Knits +1022,54,Best for tallettes,"Fit review: i ordered the size 27 as i read alexa chung jeans run small, and my usual size in ag stevie is a 26 in cords, 27 in some jeans. +. +i'm 5'2"", currently 25"" waist, 33"" high hip, 37.25"" at the widest, 29"" inseam. i have more of a pear shape than an hourglass, flatter stomach, bigger upper thighs and bottom. i'm long-waisted and do have some high-rise trousers that look great, which is why i risked paying shipping on these. +. +the 27 was loose at my natural waist, the jeans measuring 29.5""",4,1,6,General,Bottoms,Jeans +872,37,Summer staple,"Love! this tank?everyone should own it in every color?it is soft, has a great shape, and is super cute. it goes great with so many of the pants/shorts from retailer as well. summer staple for sure.",5,1,0,General,Tops,Knits +375,48,Casual and slimming,"Great weekend toss around piece or with gym clothes. the cut is flattering, yet not tight. i purchased in 2 colos b/c i liked it so much and was looking for a piece like this for a very long time! cute with yoga legging, jeans, sweats etc.",5,1,0,Initmates,Intimate,Lounge +872,33,Nice casual tank,I bought this in two colors : the green which i love and the washed out look adds some interest to make this other than a plain tank. i also bought this in white and it is completely see through. i will never understand why designers don't pay attention to how fabric would look as soon as you put a bra on. if you want to wear a tank under your tank then get the lighter colors otherwise i would stick with the green.. honestly debating on whether to buy the bright blue color but i fear it's just n,4,1,12,General,Tops,Knits +1045,35,,"Beautiful color, gorgeous chic design and great material",5,1,0,General,Bottoms,Pants +1096,22,Gorgeous & comfy,"I'm barely 5'4"" and rarely find a maxi that isn't far too long or the other extreme. i prefer mine to just barely reach the ground as opposed to rising 5 inches from the floor for example. this one is perfect with flat sandals. i tried on the 4 and chuckled b/c it was 6"" too long. tried on the 2 and not only was it the perfect length, the bodice fit like a glove. i would say i'm average bust size, always fluctuating but not generally flat-chested. i prefer more conservative sleeveless dresses an",5,1,4,General Petite,Dresses,Dresses +1094,54,,Love this dress !!,5,1,0,General Petite,Dresses,Dresses +829,33,Tent,"This item is huge. i'm normally a medium, sized down to a small, still massive. couldn't go too much smaller because the buttons would pull at the chest. but the sleeves are very wide, as is the waist. way too much fabric. i had high hopes for this one but it just doesn't work. for reference i love billowy and flowy tops, but this was a tent.",2,0,0,General,Tops,Blouses +1096,48,Colorful maxi,This is the first maxi i purchased this summer. i went with a petite as the regular length would need to be altered and i didn't want to lose some of the pattern on the bottom. it is a beautiful flowy dress. no need for a slip. it has beads on the bodice. i kept the dress but it is tight at the chest area and sizing up wouldn't have made that much of a difference..kinda uncomfortable in the chest area. has yet to be worn so may return..,4,1,0,General Petite,Dresses,Dresses +1096,32,Too much,"This dress could have been great but for me there was too much design on the top part/ front. i wish the neckline was different or just less beadwork/ design near my face. +all in all its a maxi dress and was returned because approx. $250 was too much to spend on this.",3,1,0,General Petite,Dresses,Dresses +1096,45,Maxi dress,"I really loved the dress in the picture. it is really +nice quality. unfortunately it was really long. i am +5'4 and it was about 8 inches too long. hemming it +would have ruined the details of the dress. they were +backordered on petites in my size ,so, i just returned it.",5,1,2,General Petite,Dresses,Dresses +829,36,It's growing on me...,"Lovely material and the white is like a milky white which i love. it hangs beautifully, irons well and fits great. i am 5'-6, an a cup, 150 lbs and ordered the small. i've already received a lot of compliments on it.",5,1,1,General,Tops,Blouses +829,37,Very bulky at the bottom,I love the color of this top but the style is not flattering. i normally wear a l or xl in retailer clothes and i ordered a l in this and it was massive! i went into the store to try on a medium and it fit much better but is still very bulky around the middle where the ruffles are and it is very wide. bummer,2,0,2,General,Tops,Blouses +829,66,Way too big,"I loved the design and look to this shirt, but it ran way big for me. i loved the forgiving fit, but it just wasn't flattering at all. i even went down one size and it still was huge. sad to send this one back.",1,0,0,General,Tops,Blouses +829,39,Adorable!,"Just received this in the mail, and i love it! the fit is wide and flowy, but i wouldn't say it runs large... i don't think i could have sized down in the shoulders. perfect easy, breezy fall top. cannot wait to wear it!",5,1,1,General,Tops,Blouses +829,62,Cute!,"I had a hunch that this would run big based on the style and brand, so ordered an xs instead of my normal s and it was perfect! the fit on me is exactly like the model shot - swingy but still cute and falls nicely. i am 5'7"", 128#, 34a for reference. i got the orange color and would say it is a little more on the reddish/burnt orange side than what is pictured. it's very cute - i'm happy to keep it at the promo price.",4,1,28,General,Tops,Blouses +829,42,Modern baby doll style,"Purchased the cream color in my local store. it looks great with jeans or leggings. i've worn it with a bright cami underneath with a couple of buttons open and it looked really cute too. it is very comfortable, runs big, but it's meant to not be fitted. the addition of pockets, (that don't stick out), makes me love it even more! i will be wearing this from fall to spring. great design, retailer!!!",5,1,0,General,Tops,Blouses +872,35,Precious!,This shirt is just precious! i cannot wait to pair it with a pair of white skinny jeans and wedges in the spring. i'm so in love with it. the detail is just beautiful.,5,1,3,General,Tops,Knits +1096,46,Wonderful but a bit long,"Beautiful detail in the bodice... but i'm either too short or it's a bit too long for me. ;) have not yet decided if i ""can"" keep it. material is elegant, details are beautiful.",4,1,0,General Petite,Dresses,Dresses +1094,39,Unique piece!,"I ordered this online with fingers crossed, in my usual size m. it fits well, albeit a tad snug (although very flattering on my curvy frame). it is an unusual color for me, but i ended up loving it in person where you can really appreciate all the detailed woven patterns in the fabric. there is a slip underneath which ends several inches above the hem.",5,1,0,General,Dresses,Dresses +829,35,Tight sleeves,Seems there was a design defect in this item--sleeves are way too tight and hardly go on without ripping the shirt. i have pretty thin arms so it's hard to imagine this not happening on anyone. too bad because it's otherwise a very nice top.,1,0,0,General,Tops,Blouses +1096,55,Beautiful maxi,"I am an retailer employee. i immediately fell in love with this dress. i tried it on and it was way to long, as always with regular store sizes...i am short 5'0"". i wanted to order but it was backordered for about a month, i ordered it anyway. my husband and i took a mini vacation to chicago over easter weekend and in the miracle mile store they had the dress in my petite size. i was in heaven as they had an awesome petite area in the store there. i purchased a 2 petite which is the size i",5,1,3,General Petite,Dresses,Dresses +829,38,,"I love this top! i actually didn't read the reviews prior and ordered a small. the retailer tag on mine says small, but the tag in the shirt is xs. it does run large, so the mix-up was fine by me. the style of the shirt is meant to be loose and light. i love it.",5,1,4,General,Tops,Blouses +829,52,Adorable but runs large...,"I think this blouse looks better in real life than it does on line and i'm glad i decided to try it on. i bought an extra small in the red which i think is the best color. the white looks like a nightgown. too bad there were not more darker fall prints because i would have bought more than one. i think this style would look best on someone that is tall and thin. a petite person might get away with turning it into a dress. i would buy a longer version of this . as it is it is a fun, feminine casu",5,1,0,General,Tops,Blouses +1096,36,Beautiful dress,"This dress is super feminine and pretty, wore to my nephew's birthday party. fit is spot on - i'm a 34c, 5'7"", and 135 and size 4 fit true to size. my only complaint is that the dress not come with extra beads. i only wore once and already lost a bead form the bodice. for this price range, extra beads should be included.",4,1,0,General Petite,Dresses,Dresses +1094,37,Fits like a glove,I love this dress! it flatters so nicely. i'm 5'3 and pretty thin. it hugs all my curves snugly.,5,1,0,General,Dresses,Dresses +829,25,Runs large,"This top looks adorable in the product photos, so i had high hopes. i think i might be too short to pull it off, but like another reviewer said, i found it to be like a tent on me, billowing out in all directions. it was just overall too big on me--i even considered whether i could wear it as a dress, but the sleeves were also too billowy on me. i am 5'4"", 120 lbs and tried the xs.",3,0,0,General,Tops,Blouses +829,53,Soft and swinging,The color and fabric are really soft and lovely. it runs big so you can get away with a size smaller of even 2 sizes smaller. it would look great paired with leggings and boots and a long sweater coat or with skinny jeans and sandals. this is going to be my new favorite.,4,1,0,General,Tops,Blouses +1096,35,,"Don't listen to other reviews- this runs large not small. i have a 34d and i usually wear a 4 in most retailer dresses. therefor after reading the reviews, i ordered a 6. i was swimming in it. just ordered a 2p and 2 to see which will fit. the design is stunning and it's very well made. i'm hoping for the perfect fit once the dresses arrive.",4,1,0,General Petite,Dresses,Dresses +1096,42,Ugh... no,"This dress is great if you're very skinny and have no chest. otherwise, it makes you look dowdy. the colors are also quite washed out and do nothing for my complexion. + +this one is going back.",2,0,0,General Petite,Dresses,Dresses +873,34,,Love this top. purchased for family photos and i think it's great. personally i don't think the model shot is doing it justice - it's much prettier in person. runs true to size for retailer. i am a 34d and i purchased a small.,5,1,17,General,Tops,Knits +1094,57,Fools you!,"Ordered this dress in an xs, that is the size i usually wear. this runs small, but not only that it is the way it is cut, very small through the hips, thighs and legs. hard to walk in it. the material felt kind of cheap to me. i thought it looked really good on the model, but got it home and didn't like it at all! it went back!",2,0,6,General,Dresses,Dresses +829,32,Perfect fall tunic!,"This tunic is perfection! this tunic will be perfect with jeans or leggings and can be dressed up or be worn casual. it does run big. i am normally a medium/large in shirts and took a medium with room to spare. i probably could have worn a small too, but smalls tend to be tight on my shoulders. this is a must buy!",5,1,4,General,Tops,Blouses +829,33,"Adorable, comfortable tunic","I am petite, 5'2, and i ordered the xxsp, i think it is so adorable on and looks great with skinny/slim pants or leggings. i do not think it runs that large, it is suppose to be loose and flowy and it looks on me exactly how it looks on the model. i got the gray print and it is quite pretty.",5,1,1,General,Tops,Blouses +868,64,Not worth the money,"I love the idea of this top and ordered it in white. it is a great design and proportion is nice with jeans. the front is off white t shirt material with a pocket and the back is a light grey heathered panel. i am returning it as it is very thin and the quality is cheap looking. if the grade of material had been a bit thicker and better made, then it would have been a winner!",1,0,9,General,Tops,Knits +873,37,Flattering fit,"Great top for all seasons. hides imperfections, flatters hourglass shapes. and great thickness/weight to fabric. i'm wearing it to a concert with skinny moto jeans and booties! side zip is excellent feature and great quality.",5,1,0,General,Tops,Knits +1096,36,Only for no chested women,This is a beautiful dress but unfortunately it is only for women who are not well endowed - it is extremely well fitted in the chest. the high waste also poufs out due to a lot of extra material and the double lining. a beautiful dress but a very very poor construction. also there are bright blue and yellow beads in the chest area that are a bizarre combo to the corals and browns of the fabric. i am normally a 4/6 at retailer and the 8 was extremely small.,2,0,3,General Petite,Dresses,Dresses +829,46,"Soft, feminine and fun pockets!","I love this tunic. purchased the dark orange in medium (i am 5'9 and 140 lbs). tried the small and almost kept it but i felt seams around my arm pits a tad, so went with the medium and glad i did - this top should be comfortable. feels very fall and perfect for casual get-togethers and running around town. only comment is that it is rayon... and for me anyway rayon doesn't wash too well - so we shall see how this one fairs.",5,1,0,General,Tops,Blouses +829,58,"Excellent, but flowy","I bought this in a large, i'm normally an xl. it is a very large on the bottom. i really like that style so the extra fabric was good. i tried on the white and orange. the white is sheer and i didn't like the fabric as much. the orange way really cute though!",5,1,3,General,Tops,Blouses +829,69,Easy to wear,"Yes, this runs big but i sized down from med to small and it works. i like the gray/white pattern. received compliments upon first wearing and know i'll wear it often. i knocked off a star because of the rayon fabric which wrinkles so easily. this top always looks rumpled in the back from sitting. still i'm glad to have it in my fall wardrobe.",4,1,1,General,Tops,Blouses +1096,50,Beautiful dress,"This dress is really lovely and the quality seems excellent. the bodice of the dress fits tight and that is why i knocked off one star. i am a 34 a 5'6"" and 123 lbs., ordered the 2, my usual size. the top part is very snug and it hugs tightly around my neck which i don't like. i may try going up a size but it fits so perfectly everywhere else. the length is perfect it just touches the ground, no need to hem it even with flats. the color may be a bit more of a peachy color in person but overall t",4,1,42,General Petite,Dresses,Dresses +829,65,Perfect maternity top!,"Could not wait for this to come and so disappointed. first of all, it's not a happy orange, it a darker rust. second, it is huge. fits in the shoulders and is super comfy and cute but would be a dynamite maternity top. you could go to term in this blouse! back it goes. so sad.",2,0,0,General,Tops,Blouses +830,66,Cute shirt,"Was surprised by the cute factor and great fit. the fabric is soft, it flows perfectly and isn't too long. it covers my rear. no gapping at the chest and i'm large busted. i got a large. the shirt is black and the florals in the pattern are a soft muted white. those little balls are small and more noticeable from the back. looks great under a jean jacket!",5,1,2,General,Tops,Blouses +829,37,So pretty,"I bought two of these in xs. i am 5'11 and 150lbs. i started with the size small but that was to big, so down to a size xs and that was perfect. the color ivory/white is really nice, is not see through (i wear nude bras) and it goes with everything. i also didn't see any loose strings falling out of it like another reviewer said...quality material. the burnt orange is really nice too, perfect for fall. love the pockets. just make sure you size down one or two. i am usually a size medium to a lar",5,1,0,General,Tops,Blouses +877,69,,This top has dry clean only. didn't like the fabric. plus mine was a return. i also returned it because the left arm has a hole. now it's for sale again. if your looking to buy a large. don't.,3,0,0,General Petite,Tops,Knits +1096,48,Fabulous maxi dress,"I love this dress! i'm 5'5"", and it's just long enough to be dramatic and graze my feet without dragging on the ground with flat sandals. the print is lovely and the beading is subtle. as some have mentioned, the neck is high. it's definitely noticeable, but i didn't find it uncomfortable.",5,1,2,General Petite,Dresses,Dresses +873,31,Really cute!,Very different. i love the unique design and it is appropriate for various settings .,5,1,0,General,Tops,Knits +829,30,Beautiful but thin,"Material is so thin this shirt ripped in three places after wearing only once. + +got a size larger than i needed as i have a larger chest and even though it's a bit lose the thread has ripped material on my chest and in the armpits.",2,0,0,General,Tops,Blouses +986,43,,"This is a beautiful kimono but just isn't made well. the one i received already had a couple small holes and a pull in the thread that was very noticeable. after reading the additional reviewer who wore it an hour and it was already pilling, it is going back for good. such a shame!",1,0,14,General,Jackets,Jackets +1094,71,Dress is fabulous but......,"I loved this dress and the color. i wanted to wear it to my niece's wedding. i usually wear a medium but couldn't get it on. the large was perfect in the top but too tight in the hips for a wedding even with spanks. the xl was perfect is the hips in that it didn't cut, but the top was huge. i really don't understand the sizing of this dress at all.",1,0,2,General Petite,Dresses,Dresses +986,57,Not a kimono.,"This is not a kimono. it's a cocoon. there's a huge difference. + +it's also not made very well.",1,0,6,General,Jackets,Jackets +873,59,Love the shape!,This is an awesome shirt! gorgeous quality and design. can be dressed up or down! it runs slightly large i ordered a small. i would still order a small but if you are trying to decide between a small and an extra small i would get the extra small.,5,1,1,General,Tops,Knits +829,37,Perfect tunic,"My store got this great tunic in white and i loved it so much. perfect tunic length, swingy, detailed...but as soon as i saw the orange option i knew i had to wait for it. i just got it and im in love! the orange print is so lovely. the perfect fall color and the print is timeless. the fabric is light and easy. the fit is definitely bigger, but i usually wear a l or xl in retailer tops and i preferred the xl. i have a lot of curves so i love a top that has some room, but i needed the xl for room i",5,1,2,General,Tops,Blouses +829,39,Fits weird,"I wanted to love this as i love holding horses but it fits weird, slender in arms but baggy in the torso. i will be returning",2,0,0,General,Tops,Blouses +831,34,Wish it were made out of cotton,"It's sheer, the design /print is casual, but on silk like material. had it been made out of cotton would have definitely kept it! who is going to wear this in the blazing heat of summer???",1,0,7,General Petite,Tops,Blouses +873,38,Beautiful peplum top,"Great fit, wonderfully made, and priced just right.",5,1,0,General,Tops,Knits +829,74,Great for summer,"I tried this tunic at a store and loved it. i had to buy a much bigger size because the sleeves are so narrow. +the 12 fit ok but the sleeves are so tight it hurt. i have normal arms and i am so glad i was at a store to try a bigger size.",4,1,18,General,Tops,Blouses +1094,31,Pretty in pictures - awkward in person,"Although this is a very lovely dress in the pictures, and it has a lovely quality in person, the shape and orientation of the dress is very awkward. the attached slip makes it tricky to put on, and the sizing between the top and the hips seems inconsistent (tight in the hips, large in the top). not quite for my body type - maybe better for someone with slim hips and a bigger bust.",3,0,10,General Petite,Dresses,Dresses +829,56,Comfy & cute,I think i'll get a lot of wear out of this. you will be able to size down & it will still hide a host of sins. it's very comfortable and stylish.,4,1,0,General,Tops,Blouses +829,43,Luscious luster,"I bought the silvery blue tunic. it is very light grey with a hint of blue. it is so shapely - coverage without being boxy or maternity-like. it covers your bum perfectly and looks great with a dark pair of skinny jeans. the color can really take you through autumn, winter and even spring depending on where you live. i love the sleeve length, too.",5,1,0,General,Tops,Blouses +1094,43,Sexy dress,I just received this dress and i'm glad i read previous reviews and ordered a size up. i normally wear an xs or s and ordered a medium it fits perfectly. the color is beautiful and the dress is unique. can't wait to find a special event to wear it.,5,1,1,General Petite,Dresses,Dresses +829,63,,"Was going to order this top in orange but could not decide what size. i am either a large or xl. i found that the top was in stock in a local retailer in white and went to try it for size. first, the top is huge. i tried the large on and it fit me across the bust and shoulders nicely. the rest of the top was like a large tent. the white is an off white and really is not attractive looking. in fact, in the store, it was displayed with a jacket over it. online, the orange looks completely different,",2,0,24,General,Tops,Blouses +872,45,Beautiful top!,This top is exactly as pictured and the fit is perfect. the knit is a nice quality and the embroidery is striking. i can't wait to wear it. it will look great with skinny jeans.,5,1,1,General,Tops,Knits +1096,20,Most beautiful-and unique-dress i own!,"Gorgeous dress, soft + silky material, and flattering on most body types. best purchase i've made at retailer in a long time, i get compliments every time i wear it!",5,1,2,General Petite,Dresses,Dresses +873,34,Just didn't work for me,"-i normally don't go for these tops because with my hourglass frame and wider hips, it only makes me look wider. however, like others, i was drawn to the fabric and feel.the bottom half really is lovely and looks expensive, and the top half is stretchy an",4,1,3,General,Tops,Knits +829,36,New favorite,"Love, love, love this top!!! love the ruffled tiers at the bottom. love the longer length. the top does indeed run large. normally i'm between a medium and small but bought the xs. love the pockets. the orange color seems like a nicer fabric, and is versatile with both jeans and leggings.",5,1,0,General,Tops,Blouses +829,23,Lovely tunic,"I was headed out of my local retailer store when i spotted this beauty! i had been looking for a dress/tunic like this for some time. i got the lovely soft grey/white combo and it is lovely on. normally an xl in tops from retailer the large in this holding horses tunic fit perfect! also a note for women with bigger arms and shoulders this should work well for you as this is usually a problem for me and not the case with this piece! easily dresses up or down, both jeans and leggings work well",5,1,2,General,Tops,Blouses +1096,36,Love this dress!,"What a beautiful dress! a size 2 fit me perfectly- 5'5 120lbs. i have a small ribcage so it works on me but it might be too tight for someone with a larger one. the fabric is of amazing quality and i was so glad to see there is a liner under the skirt. the top has some delicate beading which looks great but i am concerned it will fall off at some point. i have found that retailer clothing tends to have loose buttons and beading. i have not washed it yet so i am hoping it holds up. otherwise, i am",5,1,2,General Petite,Dresses,Dresses +1081,39,Wow,"I feel so lucky to have caught this as a popback--this dress is killer! it's casual style and simple design can be found at other retailers, but the quality and details and fit can only be made by retailer and dolan. it's body skimming but lined so it doesn't cling to flaws, the knit itself is substantial and it's a mockneck, not a turtleneck. i would say this dress runs small because i usually buy medium and this fit in a large. because of weight and lining, this is a spring and early fall dress",5,1,0,General Petite,Dresses,Dresses +1096,35,Beautiful dress!!,I fell in love with this dress when i saw it in the catalog and was so bummed to see it on backorder online until may! i went to my local store and they had it in stock so i immediately tried it on. i'm not usually a big fan of maxi dresses but this dress is so pretty and the quality is amazing! the fabric is light and airy but not too delicate and the subtle beading on the top adds an extra special touch. the waist is a little high (it's similar to the picture online) but i'm also 5'10 so it mi,5,1,13,General Petite,Dresses,Dresses +829,37,Pregnant ladies,"This definitely works for you - think fabric, great quality, and i'm 25 weeks and i think i'll be able to use this to the end. got my normal-ish size. would never have kept this if i wasn't pregnant, cause you can definitely accommodate a pregnancy (or maybe go down two sizes if not). this is not my first baby either! love for my pregnancy.",4,1,0,General,Tops,Blouses +1096,34,Beautiful beading details,I ordered this dress online and did not realize it had beaded details on the bodice... gorgeous dress - perfect for festival season.,4,1,3,General Petite,Dresses,Dresses +829,32,,,3,0,0,General,Tops,Blouses +829,65,Love this tunic!!!,"This looks sooooo much better on, than on the hanger/in the picture. i bought the grey, and it is the most comfortable tunic i've ever worn. it is light, airy, and so easy to wear. i wish it came in more prints/colors, cause i'd buy another one, in a skinny minute! if you don't try this on, you're missing out on a surprisingly awesome wardrobe piece. you can wear it year-round with jeans, pants, a vest, wrap, scarves, leggings, boots, sandals or anything else, and it looks chic and whimsical. go",5,1,1,General,Tops,Blouses +873,52,Prettier than the photo,"Great top to dress (further) up or down. it does, however, run large and the straps seem (too) long. if you are a petite you will not be able to wear a regular without alterations.",4,1,3,General,Tops,Knits +1096,25,Beautiful maxi!,"Love this maxi! gorgeous print, flowy and romantic. in my opinion runs a bit tight in the chest- i sized up from my usual 6 to an 8 and it was perfect. i am 5'7"" and it was floor length without tripping me up. looks great on darker skin. i am on the fair side (winter skin!) and the beige color down the middle looked flesh-toned and washed me out a bit, but with a tan this dress will be perfect!",5,1,3,General Petite,Dresses,Dresses +829,64,Huge and then some!,"I bought the orange in xxs petite, and the cream in the xsp as it did not come in xxs. + +i like a swing style, but this is a tent. the material in the cream is fairly sheer, and i found hanging threads that came from suspect seams. the overall effects was being lost in all the fabric. they rather skew old school maternity in summation. mine are going back.",3,0,44,General,Tops,Blouses +829,65,Boho perfect,"If you love the boho style then this too is for you. it is very pretty and pairs well with skinny jeans, leggings, sandals, boots, and booties. i bought it in the orange color which is more of a burnt orange which is perfect for fall. it does run big which is the style so you could size down and still have room to hide flaws. for reference i'm 5'3 and bought the pm but needed the ps. i have recievied tons of compliments and i'm thinking of getting the silver one too!",5,1,0,General,Tops,Blouses +1096,38,Hmmmm - disappointed,"I wanted to love this dress - everything about it was so beautiful - except the fit , the length, the neckline ... i tried on a 4, 6 and petite 4. i'm 5'5"" 130 32dd - the top of the dress runs small/tight - so i needed to try it on without a bra. +the length on the regular is to the floor/with the petite to my ankles. the print was beautiful and like in the photo, it flowed nicely but there was just too much fabric - maybe it was just the design for me - it did nothing for my figure at all",4,0,1,General Petite,Dresses,Dresses +829,59,New favorite,I love this tunic. it is so comfortable and looks great with leggings and boots. perfect fall look.,5,1,0,General Petite,Tops,Blouses +829,53,Cute top,"I was looking for a layering piece to go over leggings or skinny jean to cover my backside. i really like this swingy top. i agree that it does run large but i was looking for something flowy so i love it. the cream is a litttle more sheer than i expected so i'm wearing a cami underneath. maybe being taller 5' 8"" helps it not seem so much like a tent. well made and just what i thought it would be from the website model photo. (i used a 20% coupon so help easy the pain of the price of this top -",5,1,1,General Petite,Tops,Blouses +831,48,Piece didn't make sense,This piece didn't make sense to me. maybe it's bc i'm a yankee fan but it reminded me of a high end baseball jersey that was sheer. i didn't think it was office appropriate but too dressy for casual wear. it went back.,2,0,0,General Petite,Tops,Blouses +829,61,"I joined the "" holding horses"" fan club","I visited my local retailer store to purchase a dress and left with two of these tunics.( i love browsing the retailer store, its a feast for my senses)the pavin buttyondown tunics are much more appealing in person.all three feel different due to their color and pattern. to me the burned orange feels like country and fall, the pastel grey one feels spring like and more elegant and the white one feels like summer. they all look very cute on.i did size down and still got the oversize flowing look.this",5,1,4,General Petite,Tops,Blouses +829,45,Too small,"This shirt is so small. i am not sure who came up with the sizing but you have to go up several sizes to get a comfortable fit. don't waste your time on this shirt. such a shame, it could have been very cute.",1,0,1,General Petite,Tops,Blouses +1086,26,Fun summer dress,"I purchased this dress in white and i love the color! i think it's a great casual look and it's really fun to wear. my experience has been that this runs true to size, i'm 5'4, 120 lbs and i ordered a size xs.",4,1,4,General,Dresses,Dresses +956,35,,"I love this poncho! it is flattering (who would have thought i would use that word in the same sentence as a poncho?) and offers enough room for warm clothes underneath. + +it is stiffer and thicker than i had originally anticipated, and the material is somewhat itchy so i would recommend long sleeves and clothes with more covering underneath.",5,1,3,General Petite,Jackets,Jackets +1086,34,Great dress,"Nice, thick material. cream has lining underneath which i appreciated so that it's not sheer in the light. flattering design",5,1,2,General,Dresses,Dresses +1086,48,Amazing find!!!,I saw this dress and i thought it would be perfect for that night that you don't feel like wearing just jeans yet you don't want to be overdressed. the dress is 100% cotton and is extremely comfortable. i paired with an open toe wide heeled bootie and a long necklace. the dress has a slight a line bottom but fits close to the body in chest and arms. extremely flattering for all body types and the color is a pretty blue. a dress for all seasons!!!!,5,1,35,General,Dresses,Dresses +561,20,,"Doesn't fit as tight/as slimming as you think it would by looking at the picture, definitely order one size down if you want it to fit tight!",3,1,0,General Petite,Trend,Trend +1022,43,"Cute, but not universally flattering.","I love ag jeans. i own several pair, and i think they wash well, and wear well. that being said, i'd never purchased a pair of the ""stevie"" cut before. they have the same quality one would expect from ag, and i like that the ankles aren't true skinny jeans, but have a little width. it's more on-trend for this season. for me, the issue was more with the color. i order pink. when they arrived, they were beautiful in the little plastic bag. my heart skipped a beat. hooray! cute new jeans! except, w",3,1,1,General,Bottoms,Jeans +975,39,Pretty. sweet. vest.,"Yes, it runs a little large - i usually get a s or m in tops, but for this i bought a s. i am 5'2"", 130 lbs, and i did not get the petite- i feel like the regular hits me at the same area as the model in picture. i went into retailer looking for a dress, and walked out with this vest too - had to have. versatile, stylish, pockets, good quality!",5,1,3,General Petite,Jackets,Jackets +1022,34,,,5,1,0,General,Bottoms,Jeans +1022,27,Perfect fit,"Love these pants - they are a perfect color, are of a good weight (i sometimes worry that light-colored pants are going to be see through), and fit wonderfully. they are true to size and are narrow down the leg - perfect for flats, boots, booties, or sandals for summer!",5,1,0,General,Bottoms,Jeans +1022,27,Love these pants,"I bought these about a month ago in the sky blue - gorgeous color! i was a little disappointed because they fit bigger than i normally wear my pants, but i decided to keep them anyway. they are the most comfortable pants i've ever worn - butter soft. i have dressed them up with a nice top and suede booties, and also worn casual with a baggy sweater and toms. i highly recommend these pants!",5,1,0,General,Bottoms,Jeans +731,30,,,5,1,0,Initmates,Intimate,Lounge +1086,47,"Great idea, poor execution","Pretty color, but i was hoping for a thicker, higher quality material for the price. the material is lightweight and isn't tailored well. looks kind of sloppy.",2,0,5,General,Dresses,Dresses +1086,32,,"Found this randomly in the store (online return) and didn't expect to like it but tried it on and fell in love with it. extremely comfortable dress, but also has a unique/special design that makes you feel great wearing it. will be perfect to wear out when don't want to look too dressed up or like trying too hard.",5,1,2,General,Dresses,Dresses +995,34,Mixed feelings,"I fell in love with this skirt when i saw it on display so i had the store order me an xspetite. it seemed like the perfect lightweight summer skirt that would go with everything. it arrived today and i was a bit underwhelmed with the way it actually fit on me. it is kind of a thick linen/cottony material and just didn't lay down well, bunching out on the sides in a way i didn't find to be very flattering. so 5 stars for print and whimsy and charm, but 3 stars for actual fit on. alas it is going",3,1,8,General,Bottoms,Skirts +956,37,Love!!!,I fell in love with this poncho at first sight. the colors are neutral so it can be worn with a lot. i'm a typical m and it does run large so i went with a s and it's perfect. long enough to cover leggings and great for the in between seasons. i've worn it at least five times since purchase and get compliments every time.,5,1,1,General Petite,Jackets,Jackets +1022,51,Perfect fit!!,I love ag jeans and these are fabulous! i can't say enough about how well ag jeans fit and hold up over time. i have several pair. i purchased the royal blue color in the store. they held their shape all day and were super comfy. i decided to purchased two more pairs with the online sale because i know i will be wearing these for a long time.,5,1,0,General,Bottoms,Jeans +1022,38,Great fabric,"I love how the white and beige were not see through and actually very forgiving to people with cellulite. love love the fit. highly recommend. i'm always a 30 but in these i even fit into the 29. i would say if you're in between, size down. i love the fit so much that i got the beige and white. highly recommend. hit at my ankle for me at 5'6",5,1,10,General,Bottoms,Jeans +1086,41,Beautiful dress!,"I'm super happy with this dress! it's extremely well made, very light and comfortable and the shoulder cutouts are tastefully done. this dress is cotton but doesn't look cheap or too casual; it's one of those rare finds that will look great dressed up or down. this will absolutely work across seasons, with leggings and boots/booties or bare legs and sandals when spring comes around. i do feel like it runs a little large, but again it's 100% cotton so i know there will be some shrinking when wash",5,1,14,General,Dresses,Dresses +1089,37,Just ok,Looks better online than in person. material makes it look a little puffy,3,0,0,General,Dresses,Dresses +956,83,Great gift!!,Got this poncho for christmas and loved it the moment i got it out of the box!! great quality and looks great cant go wrong with this purchase.,5,1,0,General Petite,Jackets,Jackets +975,26,Gigantic,"I ordered this vest in xxs, since i am usually an xs and was looking for a bit of a tighter fit on such a loose vest. even then, the vest looked like a large. not only was it incredibly loose - much looser than in looks in the picture - but the arm holes were huge too. it just looked too big, not artfully drapey.",2,0,8,General Petite,Jackets,Jackets +1086,46,Oversized tshirt,"I really wanted to like this... it's soft and cozy and a nice shade of blue, but that's where the positives end. i ordered the xs and it was huge. wide, shapeless, and way too long (i'm 105lbs and 5'1). even if it came in petite, i'm not sure it's worth the price, because i can imagine the thin material losing its shape and getting stretched out.",2,0,16,General,Dresses,Dresses +1022,25,Favorite style of jeans,"I absolutely love ag stevie ankle jeans and own them in three different colors. i'm on the shorter side, so in terms of length i'm able to wear them as regular jeans. the fabric is comfy and stretchy and the range of colors is great for wardrobe diversity and mixing and matching! this particular style is my absolute favorite. although ag jeans are on the pricier side, after i bought my first pair i was a convert. as opposed to other brands, i find that they are a worthwhile investment. as other",5,1,1,General,Bottoms,Jeans +995,33,Versatile summer skirt,"I am 5'3 and weigh around 150 and the medium fit me perfectly, hit me just below the knee cap. it's cotton/linen but not as prone to wrinkles as i thought it would be. it's double lined, made from a quality fabric. thicker but still very much breathable. will see how this holds up in kansas city's 95 degree summers but so far mid-80's it's been just fine. i'd definitely recommend this skirt. the only thing that this skirt is missing is pockets!",5,1,9,General,Bottoms,Skirts +933,40,Fun fall vest,"This vest is a great fall item. the asymmetrical design and unusual buttons really give it interest even though it is black. you could wear it open or closed, both look cute. appears to be high quality.",5,1,1,General,Tops,Sweaters +1086,40,Great on-trent dress!,"I bought this dress because i love the cut-out shoulder look and had been wanting to find something with this trend that i'd feel comfortable wearing. the dress fits well and the shoulder cut-out gives it a trendy look. i love the classic navy color. i was originally hesitant to buy it because of the slub material - which i've always thought to be a cheaper, thin cotton. the slub is more substantial than other slub tops i've seen elsewhere, so i was happy about that. still, it is made with slub",4,1,6,General,Dresses,Dresses +1086,46,Loved the t shirt and want this to work,"I have the t shirt from last year and i love it so could not wait to try the dress. why didn't you make it in petite? it can work with some tailoring but petite sizing esp since this runs on the big side, would have been ideal. love the navy, will try the white. how about some more colors and petite?? please??? more t shirt dresses in general too please!!",4,1,2,General,Dresses,Dresses +1086,55,Love this dress!,"I have been looking for a cold shoulder dress for a while, but haven't been able to find anything i really liked. i ordered this and picked it up at the local store. it is very comfortable and seemed a little big at first, so i washed and dried it and it seemed to shrink just a little to fit well. i love the open shoulders. i wore it with gray tights and gray boots for valentine's day and it was perfect for the cold winter weather. i think it is a bit overpriced, but i still love it! it's a nice",4,1,5,General,Dresses,Dresses +1089,34,Perfect fit for gals with hips and hourglass shape,"I noticed half of the reviews on here were from women with a slim/straight and/or petite figure. fit-and-flare dresses simply will not work for you; it's the entire purpose behind the ""flare"" shape at the hip. it will be too large for women without wider hips. +------------------------- +that said, i found this perfect for me in every way. after having a baby, it's hard to find a dress that fits my more curvy shape where most of my weight fell on the hips and bust. i wish this dress was a tad long",5,1,5,General,Dresses,Dresses +731,46,Cute & comfy,"Very sweet color , will go with everything . soft material . generously sized but cut is meant to be comfy .",4,1,1,Initmates,Intimate,Lounge +1022,56,Great fit,"Cute colored jeans. ordered the sky color & when it arrived, the color was a medium moss green color. the color was beautiful but was expecting a light blue so sadly i returned them.",5,1,0,General,Bottoms,Jeans +1022,27,:my favorite brand and style!,I love these jeans! you can dress them up or down.,5,1,0,General,Bottoms,Jeans +1022,33,Love these,"Bought them in store and have worn them twice. very flattering! they have maintained their shape through the day. i'm 5/4"" and usually wear a 31"" inseam, and these are perfect ankle length. i'm tempted to buy another color!",5,1,2,General,Bottoms,Jeans +995,33,Runs too small,I bought this skirt in my usual xxs petite and the waist was way too small. i could not even pull the skirt all the way up. returned,2,0,1,General,Bottoms,Skirts +1022,44,Great jeans,Love another pair of ag stevie's!,5,1,0,General,Bottoms,Jeans +1086,54,"A good ""go-to"" dress","I purchased this dress in white and am quite happy with the fit and design. not too fancy but definitely not casual either. easy to dress up or down and can be worn for various occasions. the fit is great, but i do wish it was not so lose around the belly (it truly is fine though). has more of the hanging feel than the fitted feel. very comfortable for an evening out.",5,1,3,General,Dresses,Dresses +933,26,Very nice vest but itchy,"This vest is very nice and fashionable, very stylish. i like it a lot. however, it is too itchy. the opening in the front didn't allow me to close as many buttons as i like but i would totally wear this stylish vest even though it is not as functional when it is cold. however, the itchiness is too much. i don't wear wool unless it is ultra soft or mixed with cashmere, so i could not imaging wearing this vest, it is too itchy. why ruin such a good thing?",3,1,0,General,Tops,Sweaters +1022,54,Thin and no longer the same ag quality,"These ag stevie ankle jeans only have 50% cotton.tthe rest is 41% lyocell (a rayon), 7% polyester, and 2% polyurethane. result: thin and clingy jeans that show every lump, and stretch out. +. +these are no longer the same lovely ags in twill when they were at 80% cotton, 18% modal, 2% pu. it seems ag has also stopped making denim and corduroy with 98% cotton, at least in the stevies. +. +i'm sure these will be a great choice for someone looking for very soft and thin pants that feel like pjs, b",2,0,22,General,Bottoms,Jeans +1081,43,Cute with boots and tights for winter,"This is definitely one that looks better on than on the hanger. i am 5'10"" so it is a little too short for me to wear with bare legs (it tends to ride up) but it looks great with boots and tights. i love the raw edges of the striped a-line part. i have also worn it belted and that is also a very cute look.",4,1,0,General Petite,Dresses,Dresses +895,46,Beautiful sweater but odd fit,"The colors are amazing, the fabric is beautiful; my only complaint is the cut. i am 5'8"" 130 lb and always a medium. i put the sweater on and the armhole area was short so it kept riding up- it almost fit like a petite with the higher cut in waist tailoring. i liked the sweater color and fabric so much i exchanged for a large.",4,1,5,General,Tops,Fine gauge +1025,27,Great jeans!,"These pants are perfect! they are amazingly comfortable and soft - i could wear them all the time. i'm 5'2"" and have been looking for shorter jeans to wear with ankle booties, which has been pretty tough. i ordered 29 petite and the description said the inseam would be 24"". i don't know if that's true since they fall right at my ankle and usually that's around a 26"" inseam, but definitely a great length and i don't need to hem. the leg opening isn't too big, so i can roll it up/cuff them to get",5,1,0,General Petite,Bottoms,Jeans +1094,31,"Neat fabric, but too much poof!","I loved the blue brocade since it's a little unusual, paired with a top that brings an otherwise formal fabric into something you could wear out to dinner, plus a little pop of extra color from the ribbon! my biggest fear ordering online was that the top would look cheap - fortunately it doesn't. the top of the dress was fitted (i wore my usual size). what i didn't expect, though, is the skirt is really poofs out a lot below the ribbon, which runs just below the bust. the photo online shows a li",3,0,0,General Petite,Dresses,Dresses +1025,23,Stylish comfort,"The best thing about these pants is the material. if you are expecting a bleached denim-material, these are not for you. these are far better. they are extremely soft and have some give to them but not so much that they stretch out while wearing them (as guaranteed on the tag). although, because they are a less rigid material, the pants do show stretching as can be seen at the knee area in the photo. if you normally get short-sized pants, the regular fit will fit like regular non-ankle pants but",4,1,3,General Petite,Bottoms,Jeans +1025,36,Perfect for the vertically challenged!,"I purchased these jeans because they were on sale and i figured they'd be a good alt to my other white denim jeans. these have by far exceeded my expectations! my fav jeans, period. i'm 5'2 1/2"" but have a long torso and though west size 25, am athletic and curvy, so petite jeans don't really work for me. these are just the best cut and fit!",5,1,0,General Petite,Bottoms,Jeans +1081,54,Cute and easy,"I was excited to find this on sale because i just love baily 44, their designs are always simple, beautiful, and comfortable, and this one, just like the other 2 baily 44 dresses i own is perfect. i am 5'9, 125 pounds, and 34b bra size and got my usual size, xs. unlike my other baily 44 dresses, this one has a more relaxed fit up top and then has a form fitting layer that shows off your curves on the bottom. i personally don't think it's too short, but then again plan to wear tights with this pi",4,1,1,General Petite,Dresses,Dresses +967,33,Gorgeous - great piece for work,"Love love love. i tried it on a whim when returning a shipped item. it's gorgeous and incredibly flattering. runs large (it's drapey and would likely look good in your normal size since you can synch the waist, but probably best to size down as it seemed large in the bust size - which isn't an issue i usually run into). + +it's quickly become a great staple for work. definitely pair it with bodycon pants/ leggings/ skinny jeans - and it looks unique and very professional.",5,1,0,General,Jackets,Jackets +1074,59,Makes me happy,"Just received this, been eyeing it and with free shipping and 15% off (due to online survey i took) i bought it. it's flattering, the color and design is very pretty. i just really like it!",4,1,3,General,Dresses,Dresses +1094,52,,This is the most beautiful dress. i am so happy that i got it. it is very comfortable and the colors are brilliant. it's completely appropriate for a holiday party which is what i got it for and i'll be wearing it to a wedding in may also.,5,1,0,General Petite,Dresses,Dresses +1081,28,In love,"I wasn't all that impressed with this dress on the hanger, but i am so glad i tried it on. it is super comfortable, very flattering, and can be worn multiple ways. spot on!",5,1,0,General Petite,Dresses,Dresses +1074,23,Beautiful color,"This dress is such a crazy beautiful color, the picture doesn't do it justice. i ordered this right when i saw it, and i almost love it. the color is very bright and the fabric seems nice, but i just didn't find it flattering at all. the slip wasn't the nicest, but completely not a deal breaker. i didn't think it was overly flattering on the model either, so i was hoping by some miracle that i would like it anyway, but something about the way it's cut is just a little off for me. it was very tru",3,0,18,General,Dresses,Dresses +1022,33,My new favorite jeans,"These jeans look great with everything and fit great. i can dress them up with wedges or throw them on with flip flops and they are so comfortable, too. i've had many compliments already.",5,1,2,General,Bottoms,Jeans +847,33,Boxy,"I try to find something to like about everything i buy, even if it turns out to be a disappointment. for me the neckline of this shirt is absolutely beautiful and super flattering. it was one of the only things that made me want to keep the shirt, but unfortunately it was not enough. this shirt is super boxy and runs large. i would recommend sizing down for those who want to try this. if you have a larger chest it might be worth ordering your regular size so that the buttons won't pull at the ch",2,0,0,General Petite,Tops,Blouses +1074,71,Love this!,"This dress looks great on...feminine and swishy! color is bright and the underslip is nicely attached, which i appreciate...no fighting with straps, etc. i ordered a six for my 5'4"", 130 lb, 34dd self and it fits like a dream. the extra 5 lbs i support with lots of food is on my tummy, just to give you an idea of my shape.",5,1,9,General,Dresses,Dresses +1081,54,Perfect winter outfit!,"I love, love, love this dress! it fits perfectly! it is comfortable and can be dressed up or down. i get compliments on it every time i wear it!",5,1,0,General Petite,Dresses,Dresses +1070,39,Wardrobe staple,"Not what i was expecting, but pleasantly surprised. was envisioning a more structured/tailored trouser, but these are closer to leggings, albeit very substantial ones with ""real pant"" touches like a zip/button front and (faux) pockets. they're form fitting, soft yet supportive, stretchy, incredibly comfortable, and tts. i'm a pretty legit 10 in pants (30/31), and the 10's near perfect, with the rise coming right to my belly button. think i'll grab another pair now while they're available.",5,1,0,General,Bottoms,Pants +1081,29,Perfect for maternity... and beyond,"I'm bought this dress at 16 weeks pregnant and am loving it! the top drapes, but is still form-fitting enough to show off a little bump. i've received so many compliments. the skirt is short, but i love it, makes legs look great with tights! i sized up a little to allow for room to grow.",5,1,0,General Petite,Dresses,Dresses +1074,69,So pretty,"I ordered this dress to wear to a summer wedding in san francisco. i liked that it had sleeves, a plus. when i was trying it on, i found that it was a little snug, then realized it was the slip, which is not too tight at all once the dress is on. it helps to smooth those little bumps. it is drop waist style, which skims the torso, then flares out prettily. all in all very complimentary, beautiful color, well made. very pleased; it will be comfortable and perfect at the wedding.",5,1,2,General,Dresses,Dresses +834,28,Very nice,"I'm 5'5 and curvy body shape, bought size 6 because i want it to be a bit loose, turns out i could go with size 4 too, beautiful detail, and amazing fabric. this come with a crop tank top to go inside the lace blouse.",5,1,0,General Petite,Tops,Blouses +1030,45,Great fit,"I decided to splurge. i would not normally spend $200 for a pair of jeans, but when they went on sale, i decided to go for it. i am so glad that i did. mother has a customer for life. these jeans are the best by far. i normally wear a size 4 (27) in most jeans, but wear a 28 in j brand and some others. so i was a little nervous by previous reviewers not just on this website. i decided to go with the 28 since in mother brand this is actually a 4/6. they fit great!",5,1,1,General,Bottoms,Jeans +1081,52,Great dress,"Love this layered turtleneck dress. super cute and super comfy. love the contrastin pattern and fabric of the top half and the skirt. also the skirt is very hip hugging as shown in the photo, with the result being flattering. i wore it to work with sweater tights and boots (winter in seattle) and felt completely put together.",5,1,0,General Petite,Dresses,Dresses +895,42,"Great potential, but ...","I love the pattern and style of this top. it is a flattering cut, however, it was way too short. i am 5'6"" and small usually fits me without issue. sadly enough i had to return it.",3,0,0,General Petite,Tops,Fine gauge +572,43,Cheaply made,"I had loved this on-line when i saw the pretty floral pattern. however, in person, it is such a disappointment. the quality of the fabric and the fit are just very poor.",1,0,4,General,Trend,Trend +834,23,Beautiful top,In the photos i have a different tank underneath than the one that comes with the shirt. i am wearing a medium and for reference my measurements are 38-30-40.,4,1,14,General Petite,Tops,Blouses +834,34,One of the best tops i've ever owned,"This is an amazing top. fits perfectly, beautiful detail, and amazing fabric. i actually came back to the site just so i could order it in all available colors, but unfortunately it's only in navy. don't hesitate to buy this!",5,1,18,General Petite,Tops,Blouses +967,27,Staple item,"Like everyone else, i ignored this vest in the store. my mom actually gave it to me to try on and practically forced me to buy it. it wasn't until i got home that i discovered its versatility. i got it in the beginning of june so haven't been able to wear it much, but fall is quickly approaching and i already have at least ten outfits to wear with it. it's classy and can dress up any outfit.",5,1,0,General,Jackets,Jackets +1074,52,Gorgeous,"Beautiful color and flattering fit on me. i bought the size 4 and it fits my 5'5"" 125 lb frame perfectly. i love that it has sleeves!! no worries about upper arms. it is light and silky even though it is not made of silk. it is elegant and casual at the same time thus versatile. i will wear it to three different weddings this summer and can make it work for the office too. love it. worth every penny..",5,1,4,General,Dresses,Dresses +1094,40,Gorgeous colors,"Unlike some of the other reviewers, i found this dress to be true to size. post pregnancy i am a 6 on top and an 8 on the bottom. ordered a 6 and it is perfect. (140 lbs and 34c) perhaps that's because i'm long waisted and the waistline hits right below my rib cage? + +the colors, materials and quality are wonderful. i can see wearing this in the winter and summer. in fact, it will look lovely against sun kissed skin. + +one thing, the top portion appeared to be a knit in the pictures online, howeve",5,1,0,General Petite,Dresses,Dresses +1025,44,Soft & great fit,"These are great. they fit tts - i'm a 26 in most denim brands & that's the size i got. the material has some give but doesn't stretch out. the color is not super white so you can actually wear them in the colder weather season as well. at 5'4"", they were a little longer on me than shown on the model. i find them very comfortable.",5,1,0,General Petite,Bottoms,Jeans +1081,21,Great dress,I love this dress. it is so comfortable and easy to wear. i was able to wear it to work and look nice but stylish. it was nice that it isn't too heavy but the turtleneck kept me warm enough.,5,1,0,General,Dresses,Dresses +1070,59,Slenderizing fine fit,"I'm a curvy size 8, and these pants fit +beautifully. +they're a fairly narrow (cropped) leg, with a slight flare. i'm happy and ordering another pair.",5,1,1,General,Bottoms,Pants +1030,65,I like them but...,"Nice soft jeans, cute style, and i wish i could keep them...they just are too small on me. :/ not sure if i've gained weight (which i don't think i have because i had on a size 28 pair of pants today) but i ordered a size 29 in these jeans and they zipped but just too snug around the waist. i would honestly need a 30 or 31. looks like they are selling out quickly so i doubt i'll be able to get the size i need. +if you have a small waist i think they would be fine but they don't fit my body type",3,1,3,General,Bottoms,Jeans +1074,57,"Pretty, flown dress","This is a very light, flowy dress. the lining is very fitted, but the dress is actually not fitted. it has a nice flow, but hits right at the thigh area before flowing out. plan to wear it to work.the color is very bright and pretty.",3,1,2,General,Dresses,Dresses +895,46,Cropped fit,"This top is lovely, but fits like a crop top -- and i'm very short-waisted. i wore it with high-waisted jeans and was tugging at it all day. i think it will probably work better with a skirt. the colors are beautiful; it has a nice retro vibe. recommended if you don't mind the crop factor.",3,1,4,General Petite,Tops,Fine gauge +1081,39,Better than expected,"I ordered this on the black friday sale. one reviewer mentions that the fabric is thin, and i ordered it anyway because the design was unique. besides, i have another bailey 44 dress and felt that i knew what to expect on quality. when it arrived, i was pleasantly surprised. while not thick, the fabric is a better quality than my other dress. plus, the style is unique and flattering. i am 5'4"", and it hits 2-3 inches above my knee. i will definitely wear it to work with knee boots!",5,1,2,General,Dresses,Dresses +572,40,Flower sack,"This dress was so pretty on the hanger but a saggy sack on. even the sz 0 was too loose and shapeless. there is no waist as pictured. the hi-low hem, loose fit and wavy waist seam (see in the third close-up picture) make it look like the dress shrunk oddly in the wash. it's really too bad, it's such a pretty combination of patterns.",2,0,10,General,Trend,Trend +1022,35,Runs small!,"These cuff jeans are very good looking! 4 stars bc of price. they run small too. i wear 29 in pilcro for ref and these were best for me in a 31. the rise is very short so if you are tall, beware. i'm 5'9"" and the 29 i tried was super uncomfy in the crotch area. i haven't worn them all day yet so they might stretch a bit.",4,1,9,General,Bottoms,Jeans +868,35,,"I should have listened to the reviews that said this top was too boxy, but i didn't believe them and bought it anyway. i was wrong! this top is so boxy and wide, just awful.",1,0,3,General Petite,Tops,Knits +861,28,,,3,1,0,General,Tops,Knits +1072,26,This is a great casual dress!,"I love this dress. it is very cute and comfortable and great for football games / everyday wear. it is a little long, which is great for me since i'm taller.",5,1,0,General,Dresses,Dresses +1072,50,Cutest. dress. ever.,"I've been looking for an off the shoulder trend item and this one fits the bill perfectly. the denim is a nice color and weight, love, love the pockets! the neckline is not too frilly, the sleeves are fluttery but not over the top ruffled. i wore this dress to lunch with cute flat sandals and i must say it looked adorable! sad i didn't find this earlier in the summer, but will wear when i can. my only concern is that it will shrink in length, i'm hoping not. this one will def be taken to the dry",5,1,1,General,Dresses,Dresses +1104,49,,,5,1,0,General Petite,Dresses,Dresses +868,65,Cute top but poor quality,"Super cute basic top but after washing it once according to tag instructions, it is pilling like a well-worn sweater would.",4,1,0,General Petite,Tops,Knits +825,40,Loose and unflattering,"I'm normally a small in retailer tops. i ordered a small, and the top fit well in the shoulders and in the upper (more fitted) part. it all went horribly wrong from there. the top billowed out at the bottom and fit like a circus tent, instantly adding a good 50 pounds to my frame. this was such a disappointment, as the pattern is beautiful and the fabric is high quality.",1,0,2,General,Tops,Blouses +1104,36,,,5,1,0,General Petite,Dresses,Dresses +1022,37,Unique style,"These are nice cords, albeit they look slightly more faded in person. i like the style, high waist, and the cropped flare (which actually fit me perfectly as regular length since i am 5'1""). they do run small. i am normally a 25-26 and the 27 fit perfectly.",4,1,1,General,Bottoms,Jeans +1104,59,,"Very disappointed that i ordered this dress and a large was too big. returned and asked for an exchange to a size medium, it was apparently not available in the medium, i was charged a 5.95 fee for return shopping. so i immediately went to website, medium available and i had to pay another 12.95 for shipping. seems a bit unreasonable, but really liked the dress.",2,1,10,General Petite,Dresses,Dresses +903,43,I love this!,I was pleasantly surprised with this cardigan! i get so many compliments- i can easily see me carrying this into my fall wardrobe!,5,1,1,General Petite,Tops,Fine gauge +1104,44,Love this dress!,"It is a little pricey for what it is, but i love it so much that i am keeping it. i am normally size 4-6 and the s fits great. the rope straps are just adorable!",5,1,19,General Petite,Dresses,Dresses +868,55,Lovely summer blouse,"This is a really well made, great looking blouse. the details are charming. i like that it is a good weight, not too sheer. the 3/4 sleeves are perfect. i ordered a medium and it is a good fit overall. so glad i put it in my shopping cart to try. it's a keeper!",5,1,5,General Petite,Tops,Knits +868,52,Cute and striped,I really like the style and cute stripes and i love the versatility of the design of this shirt. fits true to size and hides my stomach just in the right places,5,1,0,General Petite,Tops,Knits +868,24,Romantic ruffled tee,This ruffle tee is adorable on. the fabric is light but not thin and the styling is very flattering to any figure. i look forward to wearing it as a transition piece as it stays warm long into fall in the south.,5,1,1,General Petite,Tops,Knits +1072,39,Cute but wide,"I tried on the xs and the shoulder are fit, but the body seemed so wide on me, it took me over... i don't know if xxs would have worked, but it is not available (and petite either). fabric is soft enough for denim, color is nice, overall, really pretty dress, just unfortunately big. + +and i have wide shoulders. + +30dd chest, 26.5 in wasit, big legs, 115 lbs.",4,1,3,General,Dresses,Dresses +868,46,Love this tee!,"I think when this is new, it runs big, and then shrinks to the right size. that's what it did for me anyway. it did shrink after one wash, but not significantly. i bought it in m and feel it stayed within that range. super cute with shorts - airy, light. love the white. ordering another color!",5,1,8,General Petite,Tops,Knits +868,46,Well-made but widening,"I ordered one of each color in size xl. the fit is true to size. it matches the model's photos. there's a lot of material so it's flowy. but, it shrunk with air-drying. the colors are very pretty in person. the white is bright. i decided to keep mine even though they're truthfully, unflattering to wear. the way the sleeves are slightly gathered and cut, make my shoulders & arms look huge. i don't have the shape to pull this off. but, for wearing at home in the summer, they're worth having. the m",3,0,34,General,Tops,Knits +868,29,Short and wide,"I tried on this shirt in the small and the xxs - both were ridiculously wide. they were also both cut really short - the peplum basically started right below my boobs, though the small was maybe a little bit longer than the eex. the stripes are really cute, the cut is just very strange. + +for reference, the black and white is the small, the taupe is the xxs.",3,0,3,General,Tops,Knits +868,29,,"Bought this shirt because i loved the cut and the stripes. had little to no shape to it. some may think it runs big but it appears that is the look this top is going for. i feel like being short, i just looked kind of dumpy on me. fabric is nice but borders on see through. it was just ok....nothing exciting.",3,0,4,General,Tops,Knits +1072,35,,"Love the way this looked online/on model. would not recommend for a shorter or curvy person such as myself. it just ended up looking like a very chic potato sack on me, and was not flattering.",4,1,0,General,Dresses,Dresses +825,56,Not for the busty,"Pros: pretty, nicely made. + +cons: the fabric is stiffer than i was expecting, and the blouse cuts in under the arms. (i don't mean that it is tight or digs in, but it cuts in; you can't tell in the angle of the photo.) the blouse is short as well, and, as i am curvy, it really stuck out all around at the waist. worth trying on if you have a straighter figure.",3,0,5,General,Tops,Blouses +1072,33,Wanted to love!,"The quality and fabric are fabulous but it's just too voluminous for my figure (5'8"", 155 lbs), would look great on someone more slender.",2,0,0,General,Dresses,Dresses +868,41,I love it!,I am very self conscience of my tummy and this covers it up without being too baggy! there is plenty of room. i originally bought a small then went to an extra small then went back to a small. i wear a small in most things. great nicer looking tee!,4,1,2,General,Tops,Knits +868,29,Flowy spring top,"This is a vary cute blouse. i ordered both colors in my typical medium, intending to give one to my sister. i couldn't decide what color to keep but went with the black simply because it fit my style better. looks great with dark jeans. the tan stripe is very cute, a little more summery and looked better on the sis than me.",4,1,3,General,Tops,Knits +868,48,Loved it so much i bought both colors!,"Cute swing tee! fit for me is perfect. i am 5'5"" and 140 lbs and i bought my usual small. length is nice. fits me just at my hips. i can wear to work and on the weekends. a little concerned the fabric may pill so i'm taking extra care. receive compliments every time i wear either color. love.",5,1,1,General,Tops,Knits +1022,53,This product needs a bit of tweaking,"These jeans fit perfectly. however, the distress at the knee was a bit too distressed for my taste. i would recommend these jeans for a younger demographic.",3,1,0,General,Bottoms,Jeans +868,36,,This shirt runs large. i ordered it before it was sold in stores so i didn't return it. the style is really cute. the shirt does pill.,3,1,0,General,Tops,Knits +868,43,Love it!,"This top is so comfortable and better quality than i expected. ruffles fall nicely over your sholulder and there is a fabric underarm, i don't have to wear a tank top underneath like i normally would with tops with wide opening around arms. color is beautiful too, i really love it. true to size.",5,1,0,General,Tops,Knits +868,31,Classic and cute,I am always searching for effortless items. this is a cute and classic shirt that meets all those requirements. i actually really like the sleeves. it take a basic tee and elevates the style. i bought the teal but am also thinking about ordering the white too. can't go wrong with a classic white tee.,4,1,13,General,Tops,Knits +1072,33,Just so big :-/,"Material is nice. design would be so great if it didn't fit so large! i am 5'4"" 118lbs, athletic build. the dress could be belted i think (a very slim girl at retailer did this), but it is not worth $158 in my opinion. if on sale i might keep it due to the hastle of returning it, however, it is not ""flowy."" it fits okay in the shoulders, almost too loose, and the rest looks like a potato sack. so disappointed!!",3,0,0,General,Dresses,Dresses +1022,48,,"Nice jeans, just fyi they look more slimly fitted in the photo than they actually are when you get them. that's why i returned them. otherwise, fine.",3,1,0,General,Bottoms,Jeans +868,46,Cute and comfortable,"I bought the green and white and waiting to see how these wash based on previous reviews. they are definitely not figure flattering and make you a bit boxy. you could belt it, but i won't i'll just wear for errands and lounging, better than my sports tees! i bought mediums because if it shrinks a tad, the small might be too short in the arms and i wanted a bit more arm coverage.",4,1,3,General,Tops,Knits +868,71,Adorable,"I thought this top would make me look extremely boxy, but i couldn't resist the stripes and the cut of the top. i did size down, and so glad i did! adorable .... fun and flattering! and that's coming from a curvy girl, with a ddd bust. soo soft!!!!",5,1,16,General,Tops,Knits +861,49,Basic black t,"I got this in black and it's a great basic t-shirt- the v-neck is just right in depth, and the material is very soft and lightweight. the fit is good. the back is long, which can be good or not-so-good depending on how you want to wear it. i really like the la t shirts because the material has a nice soft drape and they seem to fit exceptionally well.",5,1,0,General,Tops,Knits +701,32,Well-made but lacks structure,I love the style of this swimsuit on the model. when i purchased is i didn't realize that there was no support (wire/ padding/ lining) in the chest. the rest of the swimsuit was great but i did not like the look in the chest - it provided no support. i ended up returning it.,3,1,5,Initmates,Intimate,Swim +1065,24,Perfection! minus one thing,"This jumpsuit is fabulous in person! it is elegant and easy and very figure flattering. i have a very curvy shape but a 34 ddd bust so i would say i am a top heavy hourglass. this jumpsuit does me right. the only thing i would say is i don't think it would be very comfortable on a person with a long torso. i am 5'3"" and bought this in 6 regular and the length is perfect with heels. but the whole top half fits me perfectly but shows alot of boob if i'm not careful. but i don't think it would be s",4,1,0,General,Bottoms,Pants +868,42,Perfect striped top,I love the loose vibe of this top. the bold stripes are super cute. i can dress this up or wear with jeans and sneakers. get this top ladies!,5,1,4,General,Tops,Knits +868,60,Perfect lady tee!,"This top takes every other tee and blows it out of the water! it appears subtle on the hanger, but it looks so lady like on! the flutter sleeve are darling. the top does have a lot of volume, but the drape is so lovely, it adds some shape. it is perfect to wear everyday and dress up! i bought to wear with the bryden skirt. for reference, i purchased ordered the xs (though i am wearing a s in the photo) and i am 34c, 26"" waist. the shoulder fit okay with easter size, but there was a little less v",5,1,3,General,Tops,Knits +868,50,Love it...,"I just bought this top in size medium and i love it. super comfortable and flowy. if you want to dry it in the machine, just put cold air and it won't shrink. don't use hot air...",5,1,10,General,Tops,Knits +1072,63,Love. this. dress.,"You know how you hope that a dress that you order online is as good as you think it will be? well, this one is better then i had hoped! it fits beautifully. it is crafted beautifully. there is nothing i don't like about it. i was pleasantly surprised at how light the fabric is. i thought it might be a heavier denim, but it is perfect. not so light that you can see through it, but cool and breezy even in the florida heat. do yourself a favor and grab this one before it's gone!",5,1,3,General,Dresses,Dresses +1072,61,Great little denim dress,Love this dress! it is very comfortable and stylish. looks great with flats or wedges. material is soft and comfy! definitely worth the price.,5,1,0,General,Dresses,Dresses +1072,39,,Adorable denim dress! fabric is lighter than i imagined but is very flattering. perfect length. this is not a form fitting dress at all so if you're going for that pass on the dress or possibly order a size down.,5,1,0,General,Dresses,Dresses +868,34,Lovely!,"This. +an unexpected purchase...i found this on my way to the dressing room. +the fit is stunning. i sized way down (i.e. normally wear 10/12, curvy, and bought a small). +it accentuates my curves, and is incredibly flattering. i bought the navy, and will be adding another color soon! +the material is viscose blend - soft and flowy. it's a nice addition to my work wardrobe.",5,1,1,General,Tops,Knits +1072,44,So darling but so huge...,"I am very frustrated. i ordered the pxs and pxxs back in may...at the time they were both on back order until early august. last week i received an email that the pxxs was no longer available. i emailed customer service and got the reply that the shipment of pxxs was damaged and so that's why they were no longer available. i did receive the pxs and while the length is good for me at 5'4"" it is enormous through the entire body (shoulders down to the hemline!) i know the pxxs is the size i needed",4,1,4,General,Dresses,Dresses +1025,40,Best jeans ever,I love these! they are so soft! the high waist is awesome and fits like a glove. they don't stretch out. i wear with a heel and get tons of compliments. they make my hips look smaller than they are.,5,1,0,General Petite,Bottoms,Jeans +903,44,Sending this one back,"The photos online make it look like a comfortable, relaxed, lightweight early fall/spring cardigan. when it arrived it looked very wrinkly and there is no ""shimmer"" as far as i can tell. i tried using my steamer to get some of the wrinkles out, but it didn't work. it looks too rumpled and i don't want to wear something that looks like i just rolled out of bed.",1,0,5,General Petite,Tops,Fine gauge +1072,54,,"This is one of my absolute favorite dresses of the season! fun, flirty and fashionable! i wore it with a chunky necklace, floppy hat and sandals one time and with wedges and dangly earrings the other time. it is a must own dress!",5,1,15,General,Dresses,Dresses +1025,32,Worth every penny!,"I was a little nervous to buy these because they are such a statement piece. but i love them! they are so comfortable which is rare for jeans. they create the optical illusion that i am a super model, so i will wear them as often as possible. very flattering and comfy=win win!",5,1,0,General Petite,Bottoms,Jeans +1025,26,The most flattering pants in your closet,"Paige jeans are obviously known for their luxurious feel and amazing fit. these jeans are the best new addition to your collection. the perfect high rise and not as extreme flair, these might beat out your skinny jeans for your nights out. they do come extremely long, so they will most likely need to be hemmed. i get huge compliements when i wear them and told how they compliement my legs in the best way. if you're debating on whether to jump onto the flair trend, i'd go with these!",5,1,0,General Petite,Bottoms,Jeans +1022,47,,"Great fit i'm petite and bought size 29. my hips and waist differ by 10"", so i'm very curvy. i love the fit and look just by rolling them up. my 1st pair of ag jeans and i will definitely buy more.",5,1,1,General,Bottoms,Jeans +903,62,Scratchy knit!,I so wanted to keep this sweater but the invisible metallic threads that give the sweater its crinkled appearance are super scratchy and irritating. it definitely requires a long sleeved top to prevent the irritation as shown in the online photo. it is lightweight and i planned to wear it over sleeveless summer tops/dresses. i have averaged size arms and there was plenty of upper arm room. in fact extra room is designed into the sleeves. one plus for those with upper arm fit concerns. the lower,3,0,30,General Petite,Tops,Fine gauge +1025,67,My search for high-rise jeans is over!,"I have been searching for months to find a pair of top-quality, slim fit, high-waisted jeans, either straight leg or flare. my search has ended with these flare jeans from paige, thanks to retailer. the fabric is incredibly soft, yet has that little ""snap"" of stretchiness we have all come to expect in expensive jeans. i also like the dark wash and the fact that there aren't those odd color striations across the hips. i bought size 27, which fits me perfectly. (virtually all my other jeans a",5,1,1,General Petite,Bottoms,Jeans +825,33,Delicate yet boxy,"Lovely blouse-- very well made. i had a baby last year and recently weaned so my bust line is changing-- right now somewhere between a 36d and c. the medium was a little roomy for, i could've easily sized down but i like the airy look so i think i will keep it this size. quality fabric, very comfortable yet dressy. i'd definitely recommend this blouse.",5,1,1,General,Tops,Blouses +868,33,Just ok,"I ordered this in tan and white, but ended up returning it. the material is a bit thin (but soft). the shape of the top was decent, i didn't think it was too boxy but i didn't like how the seams looked on the sides. ultimately i didn't think it was worth the price.",3,0,1,General,Tops,Knits +1025,57,Classy,"These jeans are buttery soft and very flattering. unlike many jeans these do not ride down my waist as i wear them. i am a bit concerned about them long term as they list rayon as the primary fabric, which means they have to be washed very carefully. still, i highly recommend.",4,1,1,General Petite,Bottoms,Jeans +868,36,,,3,1,0,General,Tops,Knits +868,29,,Nice stretchy shirt. nothing special so i wouldn't pay more than sale price.,4,1,1,General,Tops,Knits +861,65,Fine t shirt,I ordered this online. it's fine. i am usually a small in tops and it fits true to the size. good material. no complaints. looks good layered.,4,1,0,General,Tops,Knits +1025,43,,Super soft and flattering fit. i'm 5 feet 4 inches and petite was the perfect length.,5,1,2,General Petite,Bottoms,Jeans +868,35,,"I love the look and the simplicity of this top! it's very casual, but also super cute. my only issue with it was the fabric started to ball up after a few wears. but i still love it!",4,1,0,General,Tops,Knits +868,55,"Love the sleeves, but it runs quite large","I ordered this on-line. i love the sleeves and the pleat in the back, but the top runs large. i ordered a small, but it is too big. other reviews say that the top shrinks when you wash it. however, i'm not sure if the store would let me return a washed item if it doesn't shrink enough for my taste. i think i will probably be returning this top.",4,1,1,General,Tops,Knits +868,41,,,4,1,0,General,Tops,Knits +868,60,Fantastic top,Purchased this top in the store on sale. love the material. very soft and comfortable. love the black and white combination. i am petite so the top is a great length on me. i can see that if you are tall it might be to short.,5,1,0,General,Tops,Knits +825,57,Lovely print...,"I received this tank today and i fell in love with it immediately! i am petite (5'3""/36b/108 lbs) and purchased this in the only size left, which was a small. yes....it is very billowy (but i do a half tuck into my pants and that solves the problem perfectly and looks great!!) i have very well toned arms and the way this is cut just accentuatea this! yay!! the fabric is soft and the overall look is super feminine!!! so very happy with my purchase! plan on wearing with jeans shorts/cropped jeans/",5,1,1,General,Tops,Blouses +939,52,Very classy look!,"Fits like a dream. i have a thick middle and tend to have problems with anything that flairs out, so i was so happy that it hung beautifully on me. even though i wasn't really looking for a sweater to take on a trip to europe in a few weeks, i bought it on the spot. i bought it in neutral which is the only color the store had and after seeing the darker color am happy with it. i love the belt since most sweaters don't have anything to close them and the belt lays perfectly as well.",5,1,2,General,Tops,Sweaters +868,34,Nice shirt but runs wide,"I chose to ignore the other reviews saying this shirt was too wide thinking that my wider shoulders would fill it out, but that's not the case. the shirt is adorable and soft and cute on, but just too wide around the armpit/chest area and with the horizontal stripes it just didn't look attractive. i would love to try the next size down to see if it works, but the black and white xxs is sold out so back it went. i am only 5'4"" with a shorter torso so the length was fine for me.",4,1,0,General,Tops,Knits +1025,36,Perfection,"I am always on the hunt for jeans and regularly buy paige - these jeans are different than the regular paige styles, in all the best ways. they are made with super soft denim that is comfortable and very flattering; the waist is high, so my tush doesn't hang out when i sit - i love them. i am 5'8"" and 140lbs and these are long. i can only wear them with heels, but i was looking for a dress up jean and these are it!",5,1,0,General Petite,Bottoms,Jeans +868,40,,,5,1,0,General,Tops,Knits +868,60,Meh,"This is just okay for me. the top is soft and surprisingly flattering, especially from the side, but the front rides up and the neckline never lays flat. it washes well and the tan/white combo is cute, but a little transparent.",3,0,0,General,Tops,Knits +868,36,Lovely top with one flaw,"The quality of this top is wonderful. thick enough to prevent see-through, but thin enough to create a beautiful drape. the fringe details are lovely. the top is slightly roomy (ranks between ""true to size"" and ""runs large,"" i.e., leaves room in the back when i clasp my hands together and stretch them out in front of me), but not really enough to size up. i'm 5'-4"", 120 lbs., athletic build, and the small fits well. my only issue with the aesthetic is that the pattern of the lace on the upper pa",4,1,0,General,Tops,Knits +868,40,Cute casual top,"This is definitely a cute top! i am 5'1"" 34a, and bought the extra small. it fits well, very flowy. a little shorter than i like, but it still looks cute. it's thin, but soft and comfortable. i wore it just like the model, with my long jeans and some wedge sandals and it looks great for a spring day!",4,1,2,General,Tops,Knits +1072,54,Bare shouldered babe!,"Love this dress! really nice quality, timeless design, not to mention the flared sleeves are so flattering! this dress makes me feel so cute and tiny. i normally struggle to function in off the shoulder tops but deal with it because i love the way that they look, but this one really is the perfect fit and has just the right amount of give without being too loose. the body size and length does run large, so size down on this one. now i understand why the petites were all sold out? whatever, modes",5,1,0,General,Dresses,Dresses +868,55,Fun and feminine,"I got this shirt because of the flutter sleeves, and i'm not disappointed. it is a classic t, with that little bit of an edge due to the sleeves. it is not fitted, which is what i was looking for. it also covers my bum, which i don't always like hanging out there. in all, it's perfect for my needs. i got the turquoise one and i may get the white one too!",5,1,4,General,Tops,Knits +1104,42,Great warm weather dress,"Dress is so comfortable. great for town or resort. 5'7"" size 6 34a and i got a size small.",5,1,15,General,Dresses,Dresses +868,48,"Pretty, if you have an alterations whiz","Gorgeous sleeves, flattering neckline...and a voluminous torso. i loved the fit of the top portion so much, i decided to buy it, knowing it would require alteration. the seamstress removed a *significant* amount of bulk and added vintage buttons to clasp the inverted pleat. i find many of these ""easy breezy"" tops create a shapeless look. extra volume in both the front and back creates a needlessly rotund profile. despite excellent posture, i looked both hunched and pregnant in the unaltered silh",3,0,0,General,Tops,Knits +939,57,Loved the back detail,"Easy to wear with black or grey. i will wear as a work jacket, not necessarily just an outwear piece",5,1,0,General,Tops,Sweaters +862,74,Lovely,"I am a fan of flutter sleeves, always have been. however, at 42 years old i sometimes feel as if i can't carry them off. not the case with this shirt. bordeaux has found a way to balance just sleeve with femininity and maturity. i'm a size 12 in jeans and tops. i ordered s large and it fit beautifully. very flattering.",4,1,3,General Petite,Tops,Knits +941,47,Great price (on sale) but sheds too much!,"Loved the sweater and the sale price was great, but i could not take the shedding! even after just trying it on the first time, my jeans and top had shedding all over them. this was 2 minutes, i could not imagine what i would look like if i wore it all day. had to return.",2,0,0,General,Tops,Sweaters +1081,36,Yes please,Exactly as pictured. great and lightweight for summer but long enough with the cowl neck to layer for colder seasons. so comfy and easy.,5,1,0,General Petite,Dresses,Dresses +941,35,,Love love love this sweater! lots of compliments as well :)),5,1,1,General,Tops,Sweaters +941,48,Gorgeous but sheds horribly,This sweater is the perfect sweater except for one thing.....it sheds everywhere. i can simply pick up the sweater and shake it in one hand and 40 large pieces of lint go everywhere on the ground and on you. if you like dark jeans- don't purchase. before i walked out of the store- the salesperson had to use a delineator on me- it was hysterical. sheds so much,1,0,3,General,Tops,Sweaters +1081,34,Will get lots of wear!,"I tried this on in the store in a medium by accident, thinking that it was a large. i loved it even though the front was way too short on me and the elastic waist was way too tight. the store didn't have the next size up and after reading the other reviews i decided to order my standard xl online. its a keeper! i am plus sized and have an ample mid section and this was still flattering on me. i plan to wear it with a black duster sweater, leggings, and boots all winter long and then when the wea",5,1,2,General Petite,Dresses,Dresses +862,34,Order up,"This shirt seemed to run really small, especially in the chest. i'm debating exchanging for a new size bc this was really cute but i'm not sure if i need to go up 1 or 2 sizes it was so tight",3,1,1,General Petite,Tops,Knits +941,23,Not for me,"I ordered this to arrive at my store and was so excited to try it on. it was soft and cuddly, but a little baggy under the arms, and it shed everywhere. underwhelmed.",3,0,2,General,Tops,Sweaters +941,60,Great sweater,I just got this sweater and it really is a great fall weight. i disagree with other reviewers that it is oversized and that the sleeves are long. i found the sleeves to be just right and it to fit normally. i almost wish i got a medium just so it would be a little baggier and the sleeves would be a little longer. i got the green and am really happy with the color.,5,1,0,General,Tops,Sweaters +941,28,Pretty blush sweater for fall,Pretty blush color that is still neutral enough to wear with just about any outfit. runs true to size imo. can't wait to wear it this fall/winter.,5,1,1,General,Tops,Sweaters +1081,29,"Beautiful, versatile dress!","I recently came across this dress in store and decided to try it on. i immediately fell in love. my husband was patiently waiting outside the dressing area to see it and give his opinion but i knew i was going to get it regardless of his thoughts. :) this dress could be worn with heel, flats, sandals, booties, etc. the one drawback i have is the high cut of the wrapover in front. as other reviewers have said, i plan on wearing this places where i won't be sitting for long periods of time because",4,1,0,General Petite,Dresses,Dresses +941,27,Fix the shedding!!!,"I see that many of you, like myself, fell in love with the look and feel of this sweater, and reluctantly bought it even though it sheds like crazy! i just wanted to let you all in on a little trick to stop the shedding (it will sound strange, but it worked like a charm!) fold up the sweater, seal it in a ziploc bag, and pop it in the freezer for 24 hours. bam! it will shed no more! now i can completely love this sweater. :)",5,1,0,General,Tops,Sweaters +941,46,Beautiful and soft but fragile,"I bought this sweater in the green and loved it so much i ended up ordering the pink also. it looks great with jeans or with a pencil skirt. the silhouette is flattering and the sleeves, though big, don't get in the way while i'm working. i'm a little worried about the looseness of the knit and the amount of lint it shed at first, so i don't know how long it will look and feel new. also, one of the buttons on the pink one was hanging by a thread when i first pulled it out of the package. at this",4,1,0,General,Tops,Sweaters +1081,36,Cozy and versatile,"I really love how comfortable and versatile this dress is. the midi length is perfect for booties or flats, and the cowl neck is loose and fluid, so it lays well. the only complaint i had, and it's minor, is the tulip skirt doesn't stay closed well when i walk or sit, which reveals more inner thigh than i am comfortable showing. i have to be very mindful of the skirt all day (i teach high school).",4,1,0,General Petite,Dresses,Dresses +1081,33,Cute dress,"I found this at my local store on sale and immediately snatched it up. i did not think of the wrap flying open until i got home and tried it on again. luckily, i was able to sew it up enough without compromising the drape and movement of the dress and without causing anyou pulling or puckering which isn't always easy when working with jersey. + +that said, i really like the dress otherwise. it's super soft and i think i'll get a lot of wear out of it when i want something cute and comfy to put on.",5,1,0,General Petite,Dresses,Dresses +1081,56,,I bought this dress for a cruise i'm going on in january. it's so light and comfortable. i'm 5'10 and the length is perfect. it will look really cute with a jean jacket and some booties. great price for this dress! you can't pass this up!!,5,1,0,General Petite,Dresses,Dresses +1066,38,Makes me look dumpy,"I do not love these pants. while the fabric is nice, they make me look rather dumpy. i highly recommend the essential taper pant instead, which has beautiful tapering legs and made me look more slender. these pants make me look like i've put on 20 pounds and they also make me look rather squat. perhaps they would look good on someone tall, but at 5' 6"" these are a miss for me!",3,0,15,General Petite,Bottoms,Pants +1081,21,Fantastic!,"I love this incredibly soft fabric , it's well designed and very flattering . i am 6' tall with a large bustline , dresses can be difficult as the waistline usually hits in the wrong spot . but not this dress ! it's hits the spot and the high-lo hemline flatters my legs ! bought this to wear to hawaii ,paired with a panama hat and a pair of flatform sandels .",5,1,0,General Petite,Dresses,Dresses +941,48,Sweater time,I have not worn yet but excited to try it out soon with jeans and boots. comfy but has a nice sweater look...not too casual. sleeves are very long but don't think i want to downsize.,4,1,0,General,Tops,Sweaters +862,66,Not for me,"Beautiful top but the angles emphasized my widest fluffy bits in an unattractive way. i ordered size large. the material, fabric and lace are pretty and well done. my arms looked huge too. and the piece under the arm hit below my bra and it was clearly visible by a couple inches. i carry my weight in my mid section and am short waisted. think this would look best on taller, thinner bods.",3,0,1,General Petite,Tops,Knits +1066,21,Beautiful pant,Great structure,5,1,0,General Petite,Bottoms,Pants +1131,22,Doesn't look the same as picture,"I was so excited for this coat when i saw it in the catalog, but disappointed when it got to stores. the faux fur pictured both here and in the catalog looked much more of a burnt red brown color than the straight up maroon that it actually is in store. i'd say it even looks a bit purple. the nice thing is that it is detachable and you can replace it with something else if you really don't like the color. i have decided to buy it anyways because the fit of the coat is lovely and simply stunning.",3,1,1,General,Jackets,Outerwear +941,53,Love this sweater but...,".... it sheds on my cloths something fierce! not much i can do as i don't want to return it because i love it so. i love the longer panel in the back and the side slits. nice weight and feel, i just wish it didn't shed so much!",4,1,2,General,Tops,Sweaters +141,26,Great basic leggings!,"Soft, versatile comfort. what more could you want in a legging?",5,1,0,Initmates,Intimate,Legwear +941,33,"Great, cozy, all-weather sweater","I bought this for an upcoming late-september seaside trip because it looked like it would be warm enough for cooler nights, but not too warm because of the open weave. i just received it yesterday, and i adore it. i got the pink color and was really torn between the green and the pink. i was hoping the pink would look more beige from far away (per one of the other reviews) and i was happy that it does. up close you can really see the pink, but from an arm's length away or more, it looks beige wi",5,1,7,General,Tops,Sweaters +965,55,Cute vest but cheap material.,"This vest looked so cute online. what you can't see however, is the vertical seaming under the arms does not have any fringe (about 3"" wide). that material in the seaming area looked like cheap polyester and it pulled slightly near the side pockets so it didn't lay nicely. also the top of the vest where it comes together also does not lay well and it falls awkwardly open - again showing the cheapy material that it's lined with. fits true to size. i usually wear a s/m in retailer and purchased the",3,0,7,General,Jackets,Jackets +941,52,Nice addition to my fall wardrobe,Well fitted kinda slouchy sweater. matches photo and product description. looking forward to cooler temps!,5,1,1,General,Tops,Sweaters +941,48,Disappointed by shedding,"I tried this on in-store because i needed a cozy cardigan, but i did not buy it because i felt the quality was poor. it shed all over everything i tried on with it, and i left the store with little balls of sweater flufff all over my pants. disappointed.",3,0,0,General,Tops,Sweaters +1081,49,,Purchased this item on sale-received it and it had two huge holes on the side.not possible to repair. very disappointed in lack of quality control. :(,1,0,0,General Petite,Dresses,Dresses +941,39,Love at first site,I am in love with this sweater. i am 5'4 and wear a size 8 and bought a large. perfect length and fit. will wear with jeans or leggings. the quality was amazing and i can't wait to wear it!,5,1,2,General,Tops,Sweaters +1131,40,Great addition to your coat closet,I can't wait for it to get colder so i can wear this out. love the ochre color paired with the maroon faux fur lapel. i especially love the detail at the pocket edges. very well made. the faux fur is luxuriously soft and removable. this will go great with denim and long skirts. the wool is a bit stiff in my opinion but that's okay. this will make a great addition to your autumn and winter closet. most of my outerwear are blacks or dark blues or dark greys so it's nice to be able to wear a bit of,5,1,2,General,Jackets,Outerwear +862,35,Fell short of expectations,"I had high hopes for this top but sadly it was not meant to be. it was tts (i'm 5""3 and usually wear a small). but the material was horribly scratchy. both the body of the top as well as the sleeves. and the design isn't all that flattering. it made me look really wide at the bottom and i definitely am not in real life!",2,0,0,General Petite,Tops,Knits +862,37,"Style, style, style!",This shirt makes me feel stylish without trying! i can put this on and feel like a fashion blogger without trying! it is comfortable and fits true to size. it is flattering at the bottom without too much width/peplum.,5,1,0,General Petite,Tops,Knits +941,49,Good staple,"Love the color, weight and styling on this sweater. it is soft and comfortable and i will wear it a lot. the only downfall is that it sheds, so it can not be worn with leggings or you will end up with fuzz everywhere.",4,1,1,General,Tops,Sweaters +941,26,"Soft, comfy and cute!","This is just the perfect sweater in my opinion. i got it in the rose, which is a gorgeous subtle color that will go with just about anything. i love the knit pattern and the buttons, and the sleeves are nice and long, which is crucial for me at my height (5'11""). overall i just see myself throwing this on over everything, so i'm sure i will treasure this for years to come!",5,1,10,General,Tops,Sweaters +1119,69,,Just lovely! gift for my daughter who has two other vegan leather jackets from retailer!,5,1,1,General,Jackets,Outerwear +867,43,Great layering top,I love the fabric of this shirt and particularly the blousy back. it is slightly boxy on me and i wish it was just a little longer. looks really cute under cardigans.,4,1,0,General,Tops,Knits +867,65,Comfy,"Absolutely love this top. it can be worn with jeans or a nice pair of pants. material is so soft.. love the length , little longer in the back. definitely would buy in another color",5,1,0,General,Tops,Knits +949,35,The bold and the beautiful,"I love this sweater! it's vivid, soft and high quality. it's a little shorter than i'd normally go for, but it will look great with a mid to high rise jean. it runs true to size and meant to be roomy. the red is very vibrant.",5,1,1,General,Tops,Sweaters +867,45,Tee,"This top looked really cute. when i received +it the fit was not flattering. it is snug on top and very loose +on the bottom with an excess amount of material. it made me +look very disproportionate. i returned it.",4,0,0,General,Tops,Knits +667,29,Runs big,"This is an adorable top. sweet back detail, thin material but soft. the top is two sizes too big, i'm normally a large and a small fits. i know it is supposed to be baggy but the large was inches too big under each arm. size down and petite ladies will be sized out. love this though.",5,1,1,General Petite,Intimate,Lounge +863,52,,This top is just lovely. the bow on the back is so unusual. i am so glad i bought it!!! i washed it on gentle and it turned out great!!!,5,1,6,General Petite,Tops,Knits +863,32,Love the bow!,"Just a cute, casual tee that i grabbed on sale, but i love the bow in the back! something unique for an otherwise plain tee!",4,1,2,General Petite,Tops,Knits +867,31,,"Soft cotton front, slightly more coarse back. shoulders run slimmer than bottom which flares out. bought on sale as a cute pajama top which will definitely work well. could also imagine with skinny jeans. normally wear a s, ordered an xs.",3,1,0,General,Tops,Knits +998,39,So nice for fall,"I decided to order this skirt to look at it and regret it now as i want to keep it. one bummer is the smallest size (xs) runs big, the skirt falls on my lower waist aka hips on me, not on my waist. bu i love the look, it has pockets where the pattern reverts the fabric is soft and thick, making the skirt structured. the length was nice on me, though ti is a mini and there is no petite size, the hem still was above my knee, and therefore was acceptably flattering. the colors are also nice for fal",4,1,2,General,Bottoms,Skirts +998,39,Super cute!,"This skirt is super cute and versatile. dressed up but still pretty casual with a sweater, tights, and boots. i'd say true to size or maybe runs a little on the large side; definitely doesn't run small. love it!",5,1,0,General,Bottoms,Skirts +867,48,Run very large,I ordered an xl because most retailer button ups i need a 12 and sometime 14 due to my shoulders and chest but this was huge.,3,0,0,General,Tops,Knits +949,99,,"Great quality, i didn't expect the neck to be so wide but it still looks nice.",4,1,4,General,Tops,Sweaters +995,60,Wish it was like the picture!,"I anticipated receiving this skirt as i love a longer pencil skirt and this looks beautiful. i opened it, tried it on, sent it back...it is well made but has too many negatives. first, it is very thick. i ordered size 6 (5'2"", 140 lbs.). the size was good, but it is so thick that it adds lots of extra fluff around the waist and abdomen. it is also very stretchy and fits in an unflattering way. finally, and most importantly, it has a back and front vent and both are vented all the way up to the c",2,0,5,General Petite,Bottoms,Skirts +667,39,Soft!,"I like this so much that i ordered it in both colors. it is soft can be worn both ways, and i like the crisscross detail. very comfortable, not formfitting. i usually order a medium or a large and in this one sized down to a small.",5,1,0,General Petite,Intimate,Lounge +949,38,Sweater love!,This has instantaneously become my favorite sweater in my closet. the fit is great- a little oversized which makes it very cozy. i purchased my usual size xs. the shade of red is perfection. i wished it was a tad bit softer but would buy again and again!,5,1,10,General,Tops,Sweaters +863,61,So cute,"The only problem with this top is that it only comes in two colors. this is a lightweight easy to wear top that surprises you with the cute design details. it will be easy to wear in the heat of my hometown. i don't think it is too thin and i won't need to add a camisole. i am 5'2"" and weigh 120 and i got a small. perfect.",5,1,2,General Petite,Tops,Knits +867,54,A tee to live in,I love this tee s much i bought 3 different colors! the back is beautiful. it is so comfy and soft but its added spice makes it perfect for those times you want a little more style.,5,1,0,General,Tops,Knits +867,37,Basic t-shirt with something extra,"This t-shirt is perfect for summer. light, breezy & easy. i'm 5'4.5"", 34dd, 150 lbs- m fits well. the front and the arms fit like a t-shirt, which means it looks busty for me. but that's how t-shirts always are for me. the back has something extra and that's the reason i'm keeping it.",4,1,0,General,Tops,Knits +1119,22,Perfect vegan jacket,"Love this jacket! really wish it came in real leather as well but can't beat this price point. great cut, fit. and love that the zipper is black. looks like it is worn in leather, most peoppe can't tell that it's vegan!",5,1,2,General,Jackets,Outerwear +867,37,Really wanted to like it,"The sides scooped up a bit too much on me. i was hoping to be able to tuck this into a skirt and wear to work, but there were definitely some gaps that showed the side of my midriff. back it goes. :(",2,0,2,General,Tops,Knits +667,24,Amazing casul top,I absolutely adore this top!!! i got it in the blue and went back a few days later and got the gray as well. it's super soft and casual but still really cute. it's a little long (i'm 5'4) but i tuck in the front or tie a knot on the side and it looks good. i wish they had more colors so i could have a few more of these!,5,1,0,General Petite,Intimate,Lounge +858,29,Average top,"This is an average top. i thought it would be a good work shirt (my office is very causal), but it was just too loungey looking. fit is true to size. the fabric is thin- a little see through. not worth $108 in my opinion. i returned it.",3,0,3,General,Tops,Knits +863,40,Disappointing,"Maybe it's because i'm 40, but this top was underwhelming. i felt like it was a cheap tee with a big, obnoxious bow on the back. it does look cute on the model, so maybe it's a ""younger"" top. i would have felt silly wearing it.",2,0,3,General Petite,Tops,Knits +667,42,"Loose, flowy top",Very flattering cut. very loose & flowy. runs a little big for a small but fits well for someone who sometimes fits medium depending on the cut. i need to wear a bralette with this top.,5,1,0,General Petite,Intimate,Lounge +867,38,Nice color,Love the coral color of this shirt. only wish it was a little longer in the front. falls right to my jeans waistline.,4,1,0,General,Tops,Knits +867,54,Comfortable top,I have these tops in white and blue. very comfotable to wear. the back part swings with movements and is flattering. good price so i got one for my daughter!,5,1,0,General,Tops,Knits +949,55,,"Lovely, warm sweater. excellent quality, fits as shown on model",5,1,4,General,Tops,Sweaters +867,39,Cute tee!,"I saw this in the kelly green color one size larger than my normal. it didn't look much but i was so drawn to the very pretty green color so i tried it on anyway. boy, am i really glad i did! this is more than just your basic everyday tee. the back has a very cute gingham pleating detail that hangs well when paired with a skinny jean or leggings. material was pretty substantial for a tee and definitely not see-through. i am a true m on most retailer tops and this one is pretty true to size. the on",5,1,0,General,Tops,Knits +1119,56,Just what i was looking for,"I love this jacket. it is a perfect moto style jacket without being overly aggressive looking because it doesn't have the silver hardware. instead all the hardware is black which gives it a cleaner minimalist look. it is not super heavy. it also has a cute blue and white striped lining, which if you turn up the sleeves adds a surprise. i bought it in a size small so that it was comfortable and i would be able to put a light sweater under it if i wanted to. i generally take an xs or sometimes a s",5,1,18,General,Jackets,Outerwear +863,34,,"This top is simple but super cute and comfortable. the bow in the back adds a feminine touch and it fits well (no gaping arm holes and not too tight or too loose). the white color is slightly see-through but not enough to wear a cami with my neutral racer-back bra. the xs fit me perfectly. for reference, i'm 5'6"", small busted and 125 lbs.",5,1,4,General Petite,Tops,Knits +863,58,,"Very cute top. i ordered the white & it is thin so you might want to wear a cami with it. will look very cute with jeans, shorts or skirts. love the back! wish it came in more colors - would definitely order it in black.",5,1,9,General Petite,Tops,Knits +863,59,More colors please!,This top is perfect! i love the fit and the length and the weight of the fabric! it is thin without being sheer. i just wish there were other fun colors...,5,1,1,General Petite,Tops,Knits +867,55,Perfect dressy t,"This is the perfect little shirt when you want more than an ordinary t-shirt. the pattern on the back panel adds a nice little extra touch. the blue tone is very rich looking, and could be dressed up or down.",4,1,0,General,Tops,Knits +1119,39,,"I usually pick the large size when it comes to fitted jackets but in this case i decided to go with size medium. i have a broad back and round shoulders and large upper arms. when i put the size large on, the body of the jacket looked too boxy on me. the medium is much more flattering but i cannot put a thick layer on underneath. when the weather gets cooler, i am pairing this with my herbalist dress and my other sleeveless garments. i am 135# 36d 38/28/35.",5,1,0,General,Jackets,Outerwear +667,45,Cute two way top!,"This top is adorable. i love it! i couldn't figure out which way to wear it so i just wear it both ways.the tag is on the side, which allows you to wear it either way. it does run big! i normally wear a medium and i could have used a small, but kept the medium because i like very loose clothing.",4,1,0,General Petite,Intimate,Lounge +667,24,This is a great casual shirt,This is a great casual shirt that works great for a day at the beach and is also comfortable enough to wear to sleep. wore this shirt to school one day with an undershirt underneath and wore it again hiking several days later with just a sports bra underneath.,5,1,0,General Petite,Intimate,Lounge +862,41,Weird color,Not flattering and not the color it appears online. this is really a pink shirt.,2,0,1,General,Tops,Knits +835,35,Maybe swing is for me!,"I love swing dresses but they never seem to work out for me. however, lately i have been trying on swing tops like this one and they are super scores! i love this top! in my store, they had a rack of test materials where they don't have the full line but they have a look at some online features or clothes that are very new releases. this was on the rack. i knew it wasn't my size but i tried it on anyway and i am absolutely in love. i am waiting for a sale (as always) but i am going to get this i",5,1,17,General,Tops,Blouses +983,48,Unique jacket,"This is a very cute and unique cropped jacket. the attention to detail is excellent. i am normally a small but had to size down to an xs as the style is a bit boxy and to make it more fitted/tailored, an xs looked better. i am 5'5"" 118 lbs, 34c, slim athletic build. it is a chic alternative to a cardigan on a cooler day.",4,1,0,General,Jackets,Jackets +835,59,Beautiful,"Very feminine, fun and if you like this style i highly recommend. i am a 6/8 and both fit the same so i went with the 6- 36c bust 29 waist-short torso. fabric nice and light and i need no cami! very attractive blouse and very retailer.",5,1,7,General,Tops,Blouses +835,48,"Pretty and feminine, but definitely size up!","I am not usually one for super girly tops, but i could not resist this top. the material is beautiful and this top can definitely be dressed up or dressed down, i think it is extremely versatile. it is a little bit see-through but if you just wear a nude bra it's perfect! i usually wear a 00 or 0 but i got a 2 in this top because it is a little tight in the sleeves/across the shoulders. but if you size up you should be perfect! super cute and i definitely recommend you get before it sells out!",5,1,4,General,Tops,Blouses +862,64,Love it!,"I love this shirt! it's such a beautiful striking color, yet still simple enough to not take the spotlight. the peekaboo shoulders are totally cute. i bought another one of these when it went on sale. so now i have two just in case;) haha",5,1,0,General,Tops,Knits +824,25,Adorable take from the typical flannel!,Love this top b/c it's very feminine! got this at 20% off and it's very flattering!,5,1,2,General Petite,Tops,Blouses +824,31,Cute and quirky,"This is a cute and quirky feminine top with the ruffle detailing and polka dot flannel inside the sleeve cuffs. i wish it was little longer and maybe not flannel, then it would be perfect, but overall i liked it. i am 5'5"", 135lbs, 34c, curvy/muscular frame (plus a relatively short torso) and the small fit throughout the shoulders and chest.",4,1,11,General Petite,Tops,Blouses +1110,36,Lovely!,"The design and quality are fantastic! +i had to order a little larger because of my bust and shoulders - it's still flattering though. can be dressed up or casual. i wish it came in more colors!",5,1,14,General Petite,Dresses,Dresses +862,39,"Lovely, romantic blouse","I was a bit apprehensive about buying the top, after reading the reviews. surprisingly, i love the shirt! it's very feminine; soft; light for the hot months; and, figure flattering.",5,1,0,General,Tops,Knits +862,30,,"Just got this top and i love it! it's color is more saturated in person, which i like. more of a pinky-purple. very sweet and feminine. i still have a bit of a ""mommy tummy"" and the style hides that pretty well. it's very soft and comfortable as well. overall, happy with this top :)",5,1,0,General,Tops,Knits +824,39,"Nice colors, warm, but a bit boxy","So i recommend wearing with something more fitted, or with a flare (jeans), or tucked in like the picture. i love the detail of hte polka dot on the sleeves and collar (inside), so if you leave the collar open or roll the sleeves up a bit, you see hte contrast. +it is a bit short, and i am petite, i ended up with regular size anyway otherwise, it may have been too short. + +colors are nice, and i love the material, it is very soft and hoepfulyl warm (my orffice is freezing). should ahve grabbed it",5,1,1,General Petite,Tops,Blouses +1078,39,Love this,"I am not sure why the first reviewed hated this dress so much. i personally like that it looks a tad retro. length is shorter, but not mini or too short. i ordered the xxs p and it looked ok on me (and i am older). the colors are fun and appropriate for fall, or winter, the sparkle (golden thread) can bring this dress into the holiday season (and beyond). i love the turtleneck part, only thing is it is really high, and the embroidery gets a little lost in it (top of the design) feel is thick, no",5,1,2,General Petite,Dresses,Dresses +903,39,Cute and fun,"Love the pattern, i thought i would be hosed and need a petite, but the regular xs fits nicely. it is on the thiner side, so great for summer (office is cooold) +love subtle squares, glad they still had my size at sale! :-)",5,1,1,General Petite,Tops,Fine gauge +1110,63,,Great very flattering bohemian dress! and it's silk!,5,1,0,General,Dresses,Dresses +835,24,"All around a beautiful top, except for sizing","It's a cute top, but the only complaint i have is that it is difficult for me take off. it goes on easily, but i get always have a bit of a struggle trying to take it off. my shoulders tend to get stuck so i can't pull my arms out easily. i just wish the top had an extra button or two on the back or was made with material that allowed for some stretch without fear of destroying the lacework. i didn't want to size up another size because i have a petite body shape that would've been overwhelmed b",4,1,4,General,Tops,Blouses +862,21,Beautiful!,I really love this top. it looks so sweet and beautiful and is perfect for dressing up a pair of jeans. if you are on the short size it may be a little long so keep that in mind. i love it!,4,1,0,General,Tops,Knits +862,46,Terrible pattern placement of flowers on chest,"I ordered this top based on the photos. this looked unique and beautiful, plus i've loved past designs by this brand. i thought this would be nice for summer. there isn't a straight-on view of the front of the top for a reason. the model is turned to the side and there is one black flower that stands out below her chest, away from the border of the rest of the flowers. the flower looks kind of like a bee. i believe she is either wearing a size larger or pulling down the top to mask the problem.",1,0,37,General,Tops,Knits +824,46,Unfortunately didn't work in xl,"I ordered the xl and the colors are just as pictured. the material is so soft. the problems: too short and too small. i'm a little over 5 ft. 5 inches and this top ran so short on me. i wish there were three more inches of material and then it would have been great. it was cut a little tight along the shoulder line too. i was so disappointed that this couldn't work on me. i like a romantic style, especially for comfortable basics. but, this was a pass for me. i had to return it. the ruffles on t",4,1,3,General Petite,Tops,Blouses +835,46,Elegantly beautiful,"I have the pineapple dress from last year. when i saw this top with the lemons, i was in love. i don't usually pay this much for a top, but i had a special event coming up. i searched and searched, but nothing compared to the lemon top, so, with my birthday discount, i bit the bullet and ordered it. my first thought was that it didn't seem very substantial for the price. i decided to keep it though, because it is such a unique piece. i wore a beige cami underneath along with a beige skirt and it",5,1,3,General,Tops,Blouses +903,47,Bummer,"Beautiful sweater, very delicate fabric, unique design, but it runs very small. i usually wear a m, but ordered a large based on the previous review hoping that would do the trick. the sizing, along with being long waisted isn't a good combination. unfortunately, i'm returning the sweater.",4,1,4,General Petite,Tops,Fine gauge +835,41,Kelby swing tank,"This is a beautiful shirt, however the cut and drape were off. i'm only 104 pounds, but this top made me look pregnant. the fabric jutted out at the front. it's a shame, because it really is lovely. i sent it back.",3,0,10,General,Tops,Blouses +903,63,A delicate dainty delight,"This is a very stylish cardigan but it runs small. i usually take a small but i took a medium in this. for reference i am 130 lbs, chest 36c. i fell so in love with it once i put it on but you have to watch for snags as it is extremely delicate. got the 20% off today and couldn't be happier with this purchase.",5,1,11,General Petite,Tops,Fine gauge +1110,29,Weird sleeves,"I so wanted to love this dress, but the bell sleeves were enormous! if you're standing completely still with your arms down they look cool, but if you move your arms at all it looks like you have wings. the rest of the dress was beautiful, though, and a flattering swingy shape even on an hourglass/pear shaped figure. i would recommend sizing down, as the dress runs large.",3,0,2,General,Dresses,Dresses +950,46,Great sweater,"I saw someone else wearing this sweater and had to find it! i'm 5'5""and 118 lbs and ordered the small. the back of the sweater hits a few inches above my back pockets. i've been wearing it with a tank underneath and it's been the perfect sweater for fall weather. i was worried the poncho effect might make it hard to wear this sweater with a jacket but it's actually less bulky than other ""real"" sweaters i have.",5,1,0,General,Tops,Sweaters +1078,41,,"This dress is beautiful. however, it should be noted that there is a gold threading detail throughout the dress, which is not pictured. the dress appears to be a solid cream print in the pics but in person it has gold and cream. i sized up bc i didn't want it to be too fitted, i'm between a 6 snd 8 so i went w medium. it fits will but slightly big. i'd say tts though.",4,1,6,General Petite,Dresses,Dresses +939,44,Love the cut!,Beautiful sweater - cool enough to wear on a florida evening and it will be perfect for vacation. the sleeves hit right above the wrist bone (exactly as shown on the model) and i really like that. sheer fabric but still a sweater - you will need a cami or tank underneath. can't wait to wear it!,5,1,4,General,Tops,Sweaters +950,30,,"I just received this sweater in the mail and when i first opened the packaging i questioned as to whether or not they sent to correct color. be aware that this ""brown"" is actually gray. i checked the site to see if it was even offered in gray, which it is not. additionally, the sweater is quite a bit shorter than the picture on the model implies. i still love it, the comfy coziness of it will be great for fall in new england. looking forward to wearing it.",4,1,10,General,Tops,Sweaters +1078,71,Retro,"I have always bought interesting, pretty, wearable dresses for my daughters at retailer. now the dresses are just retro funky. sad to see.",1,0,0,General Petite,Dresses,Dresses +835,31,A very special blouse,"The pictures do not do this blouse justice. the pleat in the front is so flattering that i did a double take (this detail doesn't come through the images, which is a shame as it is the most beautiful element of this blouse). the collar that stands up just enough is something unexpected, and the sleeve length is fun yet sophisticated. i am madly in love with this blouse and highly recommend it to anyone. + +it is extremely see-through...so unless you want to show off your nips, you should expect",5,1,26,General,Tops,Blouses +858,45,,"I kept this top, only because i needed a plain black tank, but there is nothing special about it. i found it a bit large and thin cheap material.",3,0,5,General,Tops,Knits +862,41,"Soft, feminine and flattering","This is really a lovely top, but the color online is not quite what the color actually is in person. this was a find in my store today and it is a little more lilac than the picture shows. the cut is extremely flattering and the fabric is very soft as is the case with most one september items. the one recommendation that i have for this is that because the main fabric is a soft knit, the proper undergarments are really needed. i tried it with a lace bra and you could see a lot the details of the",5,1,41,General,Tops,Knits +835,68,Strange cut,I really wanted to love this top the material and pattern are lovely but the fit is strange. it looks like a maternity top on me and as another reviewer said it is right across the back but loose at arms and midsection. for the price i returned it.,3,0,0,General,Tops,Blouses +862,48,,"Beautiful pink top. comfortable, love the color and print , style and sleeves. good quality. didn't have the issues with the placement of the bees over my breasts that other reviewers did. the bees were at the sides of my breasts. covered my butt for the most part in jeans. flattering cut. i got an xs (5'2"", 34b, 115#).",5,1,2,General,Tops,Knits +862,46,Looks great on me,"I read the previous reviews, but decided to try it out since retailer was having 40% off sale items. +it looks very flattering on me, and great fit for my body type. +i would recommend.",5,1,0,General,Tops,Knits +835,27,Love it!,"Beautiful material, great design. get a bigger size.",5,1,3,General,Tops,Blouses +983,30,Hopeful,"Runs huge! returning the m for a s; normally a m top and s bottom in sizing. very soft, wonderful colour.",4,1,0,General,Jackets,Jackets +835,61,Out of proportion,"This was my favorite shirt before i ordered it .... i absolutely couldn't wait to wear it. but i was so disappointed. at 5'2"" and 120 i have a athletic frame ... the small was tight in the shoulders but had so much extra fabric that i felt lost. i wasn't wearing the shirt .... it was wearing me.",3,0,1,General,Tops,Blouses +1110,50,Dress,"Love the color of this dress, however found it a little boxy, and the arms are too tight. i ordered up a size ( m) which is probably why it is boxy and i can hardly get it over my arm, i am very athletic. probably should have sent it back.",4,1,1,General,Dresses,Dresses +824,46,,"I love this top! was not immediately in love with it when i saw it on line but when i saw it in store the other day and got to try it on i fell in love!! the colors at a little deeper in person, which i loved! it is a traditional soft flannel top! it is fitted and flattering! a must have for fall/winter!!",5,1,2,General Petite,Tops,Blouses +950,33,The brown/gray version is cropped,"The photos don't look it, but the one i received was a cropped length. the bottom of the sweater's longest parts didn't even reach the top of my mid-rise pants. and i'm 5'3"" so it wasn't that the model is a lot shorter than me unless their models are 4' tall. + +disappointed since i wasted my retailer discount on this!",1,0,2,General,Tops,Sweaters +824,26,Loved it so much i bought a second!,"This shirt runs true to size. i'm an xl and it fit perfectly! that is my first reason for loving it. it is super soft and so comfortable i don't want to take it off! the trim inside the cuffs and button line is navy with large white polka dots, which i love. the ruffle of the shoulders i'm not super wild on but it does give it a touch of different. the color of the photo is very accurate. i love the muted pink in the plaid.",5,1,3,General Petite,Tops,Blouses +835,39,Love it!!!,I love this more than my pineapple top. i am 128lbs and wear between a size 2-4 in tops got this in size 4 (same as the pineapple) and fits perfectly and comfotably. the color is white and has a lovely lace pattern. i would say it runs a litle on the small side. material is a bit more stiff than my pineapple top but i love the way it feels. in my opinion this is a staple top you can dress it up for a wedding or just going out its super lovely. they were so popular at the retailer near me tw,5,1,5,General,Tops,Blouses +983,65,Trendy alternative to jean jacket.,"Purchased as a gift, but needed to return due to recipient weight challenged in past 6 months. heavier material of neutral tone ( with detailing of epaulets) pairs well with dresses, skirts, jeans, jeggings and whatever style of boots. veratile garment and will re-purchase for self in future.",5,1,0,General,Jackets,Jackets +1110,35,Gorgeous surprise!,"I spend a lot of time on the retailer website. it never occurred to me to try this dress. a salesperson suggested it in the store and i tried it on. it is really cute on. i bought a thrift store denim jacket to throw over it. the only con is the sleeves. i am 5'3' and my arms are not very long. the bell sleeves are a little crazy on me, but they will be hidden under the jacket.",4,1,1,General,Dresses,Dresses +862,40,Different from picture,"What a pity! this blouse has a beautiful design, however it doesn't fit well on the body. it's not really a size problem, it's just not a well fitted blouse. the color is very deceptive, it looks white on the picture, but it's actually pink. i'm probably going to return it.",2,0,0,General,Tops,Knits +1078,49,Sassy,"Saw this in the greenville, sc store, and it caught my eye. i ordered a petite a week later, and i adore it. nice embroidery. a little sparkle. the sleeves are voluminous, but it makes me feel sassy.",4,1,0,General,Dresses,Dresses +939,53,Summer simple,"Picked this up on sale - was on the fence about the bright reddish/orange coloration, but it really says summer and goes so easily with multiple summer pieces. it is generously cut and made very well. i've worn it on cooler/rainy days and it really brightens everything up. best part is that it launders well too.",4,1,1,General,Tops,Sweaters +840,72,Flowy and fun.,"This top hangs very nicely on me. i got the blue and have received compliments every single time i have worn it. it may help that i'm tallish with long legs. i usually wear it with black leggings and ankle boots. love, love, love it!",5,1,5,General,Tops,Blouses +862,58,I love this top! it's me!!,"Soft and unique. love the sleeves. my usual size medium fits perfectly. per the other reviewer, i guess my bust is large enough for the flowers to be on the side and not directly on breasts! my only wish is that it has some embroidery on it....love!!",5,1,1,General,Tops,Knits +862,57,Retro and pretty,This top has a bit of a retro flare but so adorable on. looks really cute with a pair of faded boot cut jeans.,5,1,0,General,Tops,Knits +1078,51,Amazing detail!,"Love this dress. from the great fabric (soft yet substantial) that's similar to sweater material, to the amazing detail of the flower design (it's really so unique and i mean that in a good way!), to the color (a tan with gold flecking), and lastly to the really flattering fit, not to mention those retro bell sleeves! all around a fun dress! it was true to size and not too short, hitting my 5'4"" height about 2"" above my knees.",5,1,0,General,Dresses,Dresses +862,32,Not quite what i expected but i'm keeping,"This top is a mix of materials - a silk and more of a t shirt material. i purchased for dressier wear but the material makes it more casual. i like the sale price so i'm keeping! size down, runs a tad loose.",4,1,0,General,Tops,Knits +862,38,Sleeve color doesn't match rest of blouse,"I'm an xl in retailer tops, and the xl fit as expected in this blouse. however, the elastic cinched in such a way under my bust that it did not look flattering. the cut in the sleeves hang open too much for me and makes it more of a costume. i also had issues that the chiffon type sleeves did not match the color of the knit fabric used in the rest of the blouse. the blouse is a good quality, but there were too many other issues for me to keep it.",3,0,0,General,Tops,Knits +983,45,No shape,This jacket has cute details. i like the front pockets and color. it has no shape and is about 1 size bigger than marked. i felt like a sack of potatoes in it.,2,0,0,General,Jackets,Jackets +835,26,High hopes,"I really wanted to love this. sadly, the first thing i noticed was how tight it was in the arms and across the back (size up maybe even two sizes). secondly, it's see through! a top like this looses it's finesse to me once i can see my pant line and bra. it's very difficult to do the three buttons in the back yourself and finally, good luck taking it off without getting make up all over the neckline. someone dubbed it the ""poor man's pineapple top."" i couldn't agree more, sigh. i really did want",3,0,7,General,Tops,Blouses +835,43,Lovely lace,I thought this blouse ran a bit large-swinging wide at the hips. it does bunch in the bust area if you are larger. a correct undergarment fixed this problem. i am a 36ddd and thought the size 4 was perfect.,5,1,0,General,Tops,Blouses +983,26,Nice cropped jacket,"This jacket was a little shorter than i had expected, but i still really enjoy the cut and fit of it.",5,1,0,General,Jackets,Jackets +950,41,Beautiful!,"Despite being batwing and sort of poncho-like, this sweater is quite flattering on. hangs just right. unique cut and soft fabric.",5,1,3,General,Tops,Sweaters +835,47,Pretty but tight fit,I tried this on in the store. i'm usually a 6 in tops but it was tight across the chest. i sized up to an 8 and it was still tight. i would have considered the 10 but with the 8 there was too much fabric on the bottom. overall design and material were good but the sizing was off.,3,1,6,General,Tops,Blouses +840,53,,"I got m in black with white. it's ok. material is soft and nice. classy. plan to return it since color is not flattering, makes me look old.",4,1,0,General,Tops,Blouses +1078,50,,"I bought this dress during the retailer weekend and i'm so happy i did! this is a very well-made, well-designed dress that is quite figure flattering. the marriage of artsy and colorful on a neutral background makes sense and the combination of colors and the style of the dress work well together. the wearer will definitely have several options for footwear pairings. this dress is as fun and playful as it is classy. i can't wait for an occasion to wear this dress!",5,1,0,General,Dresses,Dresses +983,34,Great little jacket,Ordered this in my normal size large in taupe. the jacket fit tts. the length was cropped but just long enough (hit just below my belly button) to feel comfortable and not too short for my 5'9 height. the quality feels good.,5,1,0,General,Jackets,Jackets +1110,59,Argh!!!,O.k. i soo wanted to love this dress. if you are slim and small chested it is true to size and lovely. i am slim and tall 5'9 but am large chested. a 36d i usually wear an 8/10 so bought a 10. it was too tight around my chest and back. so i went up a size to a 12. it was better but not exactly comfortable. i could get away with it but for the price had to send it back. the idea of going up another size yet again was a thought but i worried it wouldn't solve my issue.,3,1,4,General,Dresses,Dresses +840,28,,Got this in the blue/floral and absolutely love it!!,5,1,0,General,Tops,Blouses +862,28,Nope,"Ugh, i was so disappointed with this shirt. i was so excited when i saw it online and thought it would be a perfect summer shirt with the light colors and the flower print. unfortunately it falls flat and i understand now why they don't have a straight on photo of the shirt, its very plain and lays very unflatteringly. it's definitely missing something in the front. i typically wear a small to an extra small and i ordered this in an extra small and would have needed an xxs if i hadn't returned i",1,0,12,General,Tops,Knits +939,64,Beautiful,"I've wondered abt this swtr but hesitated to order being it has dolman sleeves. decided to wait for it to come in at the local store. yesterday i spotted it in the store & tried on the orange, labeled 'red' online. i was really looking for the 'cream' but the store did not have it. well, the orange is really much prettier in person. fit is perfect in my usual size s. overall body fit & length is generous, sleeves are wrist length & i'm only 5'3"". most likely the sleeves will be shorter on taller",5,0,23,General,Tops,Sweaters +835,44,Totally sublime,"Lol on the previous comment about it being a poor man?s pineapple blouse. i think the pineapple blouse prints are too large on a petite person like me (i?m 5?2?), thus i prefer this blouse. i concur with the previous reviewer about getting makeup on the blouse due to the narrow collar. if you wear makeup like i do, you must find a trick to taking it on and off. for me, i put it on prior to putting on makeup (i even put tissue paper around the collar while putting on makeup, and don?t even think",5,1,6,General,Tops,Blouses +1078,41,A pretty one,It doesn't work with me only because i have very skinny arm. i can not handle the arm part of the dress. it is still very pretty though. i would keep it if i fit the arm :(,3,1,0,General,Dresses,Dresses +824,36,,,5,1,0,General Petite,Tops,Blouses +858,54,Nice little t,"This t fits perfect and looks great with just about anything. my only concern is the fabric is super light. not enough to be see through, but just enough to make me question the quality. i like it and i have worn it a couple of times now with no issues though. the drape is nice and not super revealing; discreet enough for work. i ordered the white and if it holds up i will certainly order another color because it is very versatile.",4,1,0,General,Tops,Knits +950,38,,,4,1,0,General,Tops,Sweaters +840,40,Surprisingly lovely,"I was on the fence about this top, because i don't typically do longer tunic styles. however, it really is quite lovely. i paired it with long jeans, wedge sandals, and a delicate necklace - so pretty! it fits very nicely and i was surprised at how much i liked the length.",5,1,0,General,Tops,Blouses +862,42,Print ?,The print doesn't necessarily works for everybody.,1,0,0,General,Tops,Knits +835,55,"Beautiful, but",This top is beautiful and i really wanted to be able to keep it - i've tried it on 3 times. it is not for big-chested girls (34ddd) - it hangs like i'm 20 months pregnant because the top area lands on top of my chest. sadly this will be going back. it is beautiful and flowing and a perfect weight.,4,0,4,General,Tops,Blouses +824,40,,Love the feminine take on flannel and how it fits like a tailored shirt. i am a bit long waisted and the side slit reveals a little too much when i lift my arms. if the shirt was just a little longer it would be perfect.,4,1,0,General Petite,Tops,Blouses +835,50,Gorgeous but very small across back!,"I've been coveting the first edition of this top (pineapples) and was thrilled to find this same style with lemons. i called my local store and put a few sizes on hold so i could ensure the perfect fit. good job i did! the top is beautiful but it's super tight across the back - fine if you want to stand still & look pretty. if, however, you want to go about your usual activities, like eat for example, i'd suggest you size up. for reference i'm usually a 2-4 in retailer tops (34b, 5' 5"" and 130lbs)",4,1,81,General,Tops,Blouses +835,54,All the boxes checked,"I purchased this is off white and it is a stunner! feminine? check! stylish? check! hem hits at a flattering part of the body? check! great with jeans or tailored pants? check! i cannot say anything bad about this blouse-well, maybe the button back is a little convenient but it sure looks pretty! i am 5' 21/2"" and 110 pounds and usually wear a 0 or 2 but i purchased in a size 4 and it fits perfectly! can't wait to wear this with my olive green skinny jeans!",5,1,0,General,Tops,Blouses +868,35,Comfortable casual tank,"I ordered this in blue, and loved the color. i'm not typically into the flowing top style, but i tried a few items on my last order, this being one. it's unseamed at the bottom, which was my primary reason for returning it - i couldn't see that in the photo online - but if that is your style, this item is good quality, soft, comfortable material, and a great spring or fall blue.",3,1,1,General,Tops,Knits +1078,27,Great fit. wrong color.,"The fit and style of this dress are beautiful. it's a bouncy fabric that is light and comfortable. i really wanted to love it, but the color just didn't work for me. the pictures make it look like it's a nice cream color, but it's very tan and i can't pull it off with my coloring.",4,1,10,General,Dresses,Dresses +693,40,,Love!! so comfy! i wish they came in more colors. i'd order every one!!,5,1,1,General Petite,Intimate,Lounge +850,59,Beautiful design,"I've been searching for a pretty and unique ""party top"" and thought this was it. it is beautiful and unique but much too cropped for me and i'm only 5'3"". sadly i had to return. maybe would be more appropriate on someone younger",3,1,2,General Petite,Tops,Blouses +1022,39,Pleasantly surprised,"I ordered these jsut coz they were on sale... i now wish my size was offered in more colors. (only mossy-sage was left, though nice neutral color, really0. + +the fit is great, stretchy but stil lslightly structured. i ordered the 25p and that was perfect, length fine too (i am 5'1.5"", 115 lbs). + +looked really nice with a pair of red heel i was trying on too!",5,1,1,General,Bottoms,Jeans +1022,50,Such comfort!,"I wear jeans so much, therefore i love to a variety in color. these jeans are so comfortable. they are like wearing sweat pants, but they truly keep their shape so well. i bought the red, which is a year around red, kind of a bright apple red. i will definitely be buying another pair of these ag jeans.",5,1,4,General,Bottoms,Jeans +861,46,Cute top,"I really like this top. for reference, i am usually an xs or s in retailer tops since many of them run large, however, in this top i ordered a size m and it fit nicely. in any brand other than retailer, my usual size is m as i am 36d bust, 132 lbs., 5""5.",5,1,0,General,Tops,Knits +850,57,,,5,1,0,General Petite,Tops,Blouses +868,31,,This top is a little big but i sized down and liked it a lot. can be casual or can dress it up with a statement necklace. perfect fall shirt,4,1,1,General,Tops,Knits +1078,33,,I love this dress! i have an hour glass figure and the dress is very flattering on me. i didn't encounter a problem with the colors or pattern as others have stated.,5,1,0,General,Dresses,Dresses +850,37,Short but wide,"This is a crop top but super boxy and wide. i expected it to be more fitted in the waist. since it sits out away a from the body a lot, it was not flattering. i also felt the stitching to be a bit matronly for me. too bad as i am having such a hard time finding tops and i'm willing to pay full price for something that works.",2,0,0,General Petite,Tops,Blouses +868,69,Pretty color,"I like to wear swing tops because they are comfortable, not confining. this is definitely true for this top- i have an xs and it is quite spacious and boxy shaped. this is a simple cotton shirt but the ruffle adds a nice detail, and without being too much ruffle either. great to throw on with jeans!",4,1,0,General,Tops,Knits +1022,42,Ok if looking for a loose fit,"Bought these for the color however these just did not work for me. the 26 was too small and the 27 was baggy. i'm 5'3 and typically wear a 26. beautiful color and good denim. if you are looking for a looser fit, more of a straight leg fit...this is a good jean with a fun pop of color.",3,0,0,General,Bottoms,Jeans +964,36,Love it!,"Love this jacket!!! it is soooo soft and goes with everything. you will want to wear it every day. loved it so much i bought my mother one, too.",5,1,0,General Petite,Jackets,Jackets +1078,28,Wife loves it,Got this for my wife for christmas and she is very happy with it. the size is perfect for her and she regularly orders things as a medium from this store.,4,1,2,General,Dresses,Dresses +861,38,Cute pattern but feels cheap,Really liked the fan pattern and the cut was cute and flattering. but the material is thin and all the edges are not finished and look frayed making the shirt look and feel cheap. would have kept if thicker material and the edges were finished. not worth full price,3,0,10,General,Tops,Knits +1022,26,Give your blue jeans a day off,"I bought these in 'vintage sage' and i grab for them as often as my favorite skinny jeans. if you are just dipping your toe in colored pants i would reccomend the same color, it is undertsated and easily paired with so many other colors. the legs run a little big but the waist is tru to size, so for comfort i went with my usual size.",5,1,1,General,Bottoms,Jeans +1078,51,Fabric pattern can be askew,"This fabric is the same as the turtleneck swing dress by maeve. it's lightweight and stretchy. the problem with this particular dress is the pattern in the fabric will be a little different on each dress depending on how the pattern was cut when it was made. i had to try on 5 different dresses to find one that was cut so the pattern looked and fell in the right spots when wearing the dress. hence 4 stars. the bodice is lined but the skirt itself is not. it is not see through. i'm 5'4"" and 120#.",4,1,20,General,Dresses,Dresses +901,62,Lightweight cashmere,"I have only worn this 3 times with no signs of pilling, yet. it is good for cool spring days/evenings. for me, it'll be the cooler 3-seasons sweater. i wear a size large and it fits properly. i have worn lightweight long sleeve knit tees under this with ease in the sleeves. i think a slim sleeved shirt/blouse would work equally well. while i like the idea of the pockets, i think they'll stretch out easily beyond a tissue or quick hand warming. i removed 1 star due to the high price and i receive",4,1,0,General,Tops,Fine gauge +1078,37,,"I also agree with the other reviewers that it's important to try on a couple due to pattern differences. this dress has a beige base- the photo is a little misleading. i ended up returning it because the colors didn't do much for me, i think they look great on the model but that's because the beige doesn't blend into her at all. i also think it's a little overpriced for what the dress is- a great summer day dress.",4,1,6,General,Dresses,Dresses +1022,40,Perfect,"Love these jeans. fit great. i've had other colored denim from ag that stretched out too much, were too thin, but these are a nice thicker fabric. i ordered the red and the moss, and the red fit a little better than the moss in the same size. not sure if the dye process affects the fabric but the red pair seemed a bit more substantial. the moss is great too though, so i may keep both.",5,1,0,General,Bottoms,Jeans +868,35,Best shirt ever- should have bought more colors,I wish i could buy this is more colors! so easy to dress up or dress down,5,1,1,General,Tops,Knits +682,61,"Not skirted, but has nylon over shorts","I ordered my usual size small. i din't notice any fit problems after taking a quick look in the mirror the first day i wore them to my muscle training class. (this garment is more skin revealing than i really like, but i need to stay cool in the summer heat.) during the work-out i noticed that the leg edges of the shorts showed fat bulges; this was ugly, embarrassing, and unnecessary since i do not have overly fatty legs. later i noticed that the low-waist line of the shorts showed bulging fat a",4,1,3,Initmates,Intimate,Lounge +850,34,,"Although the material of this top is beautiful and the quality is nice as well, it really did not lay right on me. i'm a 34d, and i got my usual size in a small. the arm holes were a bit too big, the waist was too wide and it overall looked like a bib on me.",2,0,0,General Petite,Tops,Blouses +693,51,Awkward fit,I was so excited to try these on at my local retailer. i'm so glad i did before i ordered them online because i found the fit to be totally off. the pants bulged around my hips and looked very awkward. they were also not as soft as i expected them to be.,2,0,0,General Petite,Intimate,Lounge +693,36,,"I love these pants. like, obsessively love, like didn't want to take them off to wash them, love. annnnd i wish i hadn't because they came out of a delicate cycle cold water wash with a huge part of the leg seam ripped apart like a spider web. maybe i just got a bad pair, but i wasn't prepared to have to patch them after one wash for the price.",3,0,1,General Petite,Intimate,Lounge +1078,44,,The colors on this aren't as vibrant as i hoped. love the cutouts on the arms though. great 4 season dress!,4,1,0,General,Dresses,Dresses +1092,53,,Love this dress!!! must try on to see how cute is really is.,5,1,1,General Petite,Dresses,Dresses +825,31,Gorgeous top,"Finally a top that fits true to size, is comfortable, and is the quality i expect when shopping at retailer. i cannot recommend this top more! if it came in other color motifs i would buy them too. perfect fall transition top.",5,1,0,General,Tops,Blouses +825,62,Gorgeous,"Gosh, this is a beauty! maeve can be a little iffy on sizing, but i find this to fit tts. beautiful details, fit is comfortable yet elegant, nice length...i have zero complaints on this. it is sheer enough to need something underneath, but the fabric is lightweight enough that the extra layer doesn't seem bothersome. nice quality piece (not overly delicate despite the lacy details and sheerish fabric).",5,1,5,General,Tops,Blouses +830,25,In love!,"Love this blouse--looks like a fp blouse yet a bit cheaper and well made! looks feminine and edgy on. may size out for taller gals b/c it is a bit on the shorter length. i am 5'5"" and the length is just right on me untucked. the lace on the sleeves are gorgeous and neckline is not too high!",5,1,10,General,Tops,Blouses +830,39,Nice enough,"I liked the top, it is cute, but i didn't keep it as i have similar tops like it and i had better options. however: + +color: it is true that htere are differentials in the coloring of fabrics in this top, but that is not necessairly a bad thing, it kind of gives t personality. + +lace part (this is where i have a similr one, tank all alce like that): darker ivory, drkest part of hte shirt. cut to neck is flatetering, and different from the low lunging things we see a lot of. + +body: true to size, i",4,1,0,General,Tops,Blouses +1078,26,,"It is a pretty dress but not what i had hoped for (i ordered it online.) i like slits on sleeves but the dress doesn't fit me well, so i plan to return it. +p.s. it has pockets! :-)",4,1,0,General,Dresses,Dresses +825,32,Pretty top,"I usually wear either an xs or a small and i went with the small because i wanted it flowy and long because i am 5'9. it is a great fit, but it is a little sheer. i will probably have to wear a cami underneath.",5,1,0,General,Tops,Blouses +825,33,This is the best shirt!,I got this shirt 2 weeks ago and have already worn it 4 times! i love it and every time i wear it i get compliments on it. it is so flattering with jeans or nice fitted black pants. if you are wavering about getting this shirt.... get it. i promise you will love it.,5,1,0,General,Tops,Blouses +825,42,So pretty!,Not sure where to start with this top...it's that good! i am usually a large in most maeve tops and that's sizing up for extra flow. i ended up grabbing this piece of perfection in an xl only because it ran a little shorter than i anticipated and was kind of tight through my shoulders. i wanted more flow (as always) so i went up in size. for that reason i feel it runs pretty true to size. this is the perfect transition piece from summer to fall and is definitely a must have! it has sold out with,5,1,0,General,Tops,Blouses +830,41,Too short again!,"Frustrated that retailer tops have been so short lately! i'm 5'7"" and it hits at the top of my pants. makes me look a bit boxy. so disappointing because i wanted it for family photos. otherwise the design is gorgeous. having a hard time returning it but for the price point, it probably has to go back :(",5,1,3,General,Tops,Blouses +825,41,Poor design,"If you have anything larger than an a cup, this shirt will likely not fit right. it is very pretty but the seem on the front runs directly in the middle of the chest. it literally runs right through the center of the breasts. what were they thinking? if it had been three inches higher or lower, it would have been perfect. for reference, i'm approximately 105lb and have a dd cup.",2,0,5,General,Tops,Blouses +457,39,,,5,1,0,Initmates,Intimate,Legwear +1078,31,,Looks great! it is more off white/tan then white though,5,1,0,General,Dresses,Dresses +825,27,Maeve never disappoints!,"This is sure to become my favorite shirt! this shirt is feminine and the fit is perfect. the white lace is strategically placed, so you do not have to wear a cami on those hot summer days, but you can for the work day. i cannot wait to wear this!!",5,1,0,General,Tops,Blouses +830,41,Lovely,"This top is so pretty! i love the lace details and the embroidery which really makes this top something special. it's true that it is on the shorter side but that seems to be an intentional aspect of the style. i didn't find it to be too short sitting well below my waist line (i'm 5'10""). i usually wear a medium in retailer clothes and this top is no exception it fit perfectly! i know this will be one piece i wear quite often!",5,1,3,General,Tops,Blouses +1078,56,No shape,"I loved the idea of this dress, but i find that it isn't very flattering. i think the arm holes are actually very interesting, but i'm 5'5 and 135lbs, and the dress made me look fat and gave me no shape at all. maybe it would look better on a different body type. + +the material is soft, but a bit stuffy and i could tell it would give me crazy static in my hair.",3,0,0,General,Dresses,Dresses +1092,45,So feminine and dainty,I just loved this online and love it in person. so feminine and delicate. just perfect for summer get togethers.,5,1,1,General Petite,Dresses,Dresses +1078,82,Unique and comfortable,"I wore this dress yesterday for the first time and got several compliments. its unique and super-pretty in person. it hides flaws well and the material is nice. i must have bigger arms than the model because you can barely tell from the picture what the arm slits look like. i don't mind the way they look, but..the way the piece of fabric there grazed on my arms all day kept making me feel like my bra strap had fallen down. speaking of bra straps, the neckline is wide and i felt like i kept havin",5,1,0,General,Dresses,Dresses +1028,39,Wash diff in person; fit diff than black hawk vers,"The fit on these is starkly different than the ""black hawk"" version also being sold online. i could barely get my leg in those! i typically wear a 27-29 - a 28-29 in this brand of jeans - and the 29 fit great. i have very large calves, so most ""kick out"" cop flares don't really provide the full effect for my body type, but these worked really well and i could definitely see the flare at the bottom. i am 5'8"" and these hit right above my ankle, just as pictured online. +---------- +what made me",4,1,9,General,Bottoms,Jeans +1028,40,Love!,"These pants are great, as is the case with most c of h jeans. they are a perfect length if you are 5'5" or shorter (i.e. you don't need to cuff them several times). i love the relaxed but chic look. they run large so definitely size down at least one size. so happy they were on sale!",4,1,0,General,Bottoms,Jeans +825,29,,,5,1,0,General,Tops,Blouses +1078,65,Great and fun dress,"I bought this to celebrate my birthday! i get a new ""suit"" every year. it was a milestone birthday and this dress did not disappoint.",5,1,0,General,Dresses,Dresses +1028,59,Dirty look does fade over time,"I wanted to comment about the wash. yes, these jeans look really ?dirty? when you +pull them out of the package. but after a few months of washing, the dirty color has really +mellowed. also, i am a usual 26 in jeans, purchased these in 25 and could have fit into +the 24. i may purchase another pair, these jeans are really unique, comfortable, great +for the summer with sandals or converse.",4,1,2,General,Bottoms,Jeans +1078,52,Lovely,"I got this dress and think it's just great. it's a bit formal, but a bit whimsical at the same time. i really disagree with others said about the opening along the arms. i think they are barely noticeable but are nice surprise. this is a perfect california winter dress. i could see how a woman in colder parts of the country might not appreciate the slits on the arms but i think it's nice to show a little skin in a conservative way. i plan to wear it to a classical music concert soon. and i got i",4,1,0,General,Dresses,Dresses +1092,37,Love at first site,"Fits perfect. i'm 5'3 and the size 2 regular fit perfect. not too long it too short, just perfect.",5,1,0,General Petite,Dresses,Dresses +1028,66,Good dirty,"I laughed to myself as i pulled these jeans on in the dressing room, expecting them to look ridiculous. instead, i was amazed at how well they fit, how cool they looked, and how comfortable they were (two sizes smaller than my usual). yes, this 66 yo woman rocked these jeans! i love the intricate whiskering, raw leg opening, and worn, dirty wash. usually i do not like the dirty look, but this is good dirty. try them on: you may just fall for them.",5,1,8,General,Bottoms,Jeans +825,44,,,5,1,0,General,Tops,Blouses +1078,53,Beautiful colors,I loved this dress and i really loved it more after i bought it on sale. i am 5'3 100lbs and the only thing that bothers me is that the arm of it are somewhat tight when i reach out to get something. other wise the dress is great and get a lot of compliments on it. i paired it with black nylons and black plain leather booties and it looked great!,4,1,0,General,Dresses,Dresses +1025,38,Way too long...for me,"I have been looking for flares that are not tight through the thigh and these are definitely them...but for me they were so long that to hem them would ruin the style of the pants. i'm 5'5 and have long legs but i would need a high heel to maintain the intended style, and that's not what i was looking for. otherwise, beautiful.",3,1,1,General Petite,Bottoms,Jeans +1025,48,Loved these jeans!,Love these jeans! the material is soft and very flattering on the hips.,5,1,1,General Petite,Bottoms,Jeans +1078,36,Great tunic,Love the pattern of this tunic. it's comfy and unique.,4,1,0,General,Dresses,Dresses +1099,27,Great work dress,Bought this dress to wear to work. love it! great buy,5,1,0,General,Dresses,Dresses +867,52,Cute top!,"This is exactly as pictured, and fits as it does on the model in the last picture. my only hang-up is that it's a little pricey for a t-shirt, the fabric is standard t-shirt material, not stiff but also not super soft which i was hoping for. my hubby had no idea what the pattern was til i pointed it out :)",4,1,1,General,Tops,Knits +1036,38,Lovely jean,"Nice dark indigo with minimal fading. medium denim thickness, with stretch. i bought size 25 and it is snug, but doesn't squeeze. my hip is 34.5"" and 28"" waist. love these. i will be getting them hemmed up to ankle length. i am 5' 5"" and find the little kick out at the ankle (from getting them shortened) to be very cute and classy. if you keep them full length to your shoe, they will have a slightly baggier bootcut look. these remind me of my point sur hightower straight leg jeans, with maybe an",5,1,3,General,Bottoms,Jeans +1078,28,Super casual and comfortable,"I love this dress! it is a very casual and loose fit, which makes it super comfortable. i highly recommend it since it is versatile for fall and spring and can be styled quite a few ways.",5,1,1,General,Dresses,Dresses +867,48,So cute and soft,"I purchased this tee in the blue and it is so very cute. its such a soft thin tee and a delight to wear on these hot summer days. i went with xs on this one and i still have plenty of room.. i have paired it with jean shorts, capris and it goes really well with the pilcro hypen chino shorts.",5,1,0,General,Tops,Knits +867,56,Cute print,"I bought this tee for the cute print. otherwise, this tee is nothing special. i usually wear an xs, but bought an xxs, based on how loose the tee looks on the model. it's pretty thin and more like a slub cotton. i think i will hand wash it, just in case.",4,1,2,General,Tops,Knits +1078,41,,"I wasn't sure about this dress when i ordered it online, but thought i would give it a try. i am 5'2"" (ordered an xs) and thought i may be too short to pull something like this off, and that it might look like a moo-moo or maternity dress on me. but, i absolutely love it! my husband does too...very sexy and low-key. i wore it for the first time today and received 5 compliments within an hour! this is going to be one of my favorites!",5,1,1,General,Dresses,Dresses +815,43,So feminine!,"I love this top! it's very delicate and pretty. flattering cut. the fabric is sheer, so wear with a cami or a pretty bra.",5,1,2,General Petite,Tops,Blouses +867,29,Very cute tee,"I ordered an xsp online, which is my usual size, and it fit perfectly. it's that unique and cute kinda piece you expect from retailer. if you're going to wear a t-shirt, might as well still have a little detail and style.",5,1,2,General,Tops,Knits +960,24,Perfect transition vest for fall,Beautiful color and soft texture. this piece is flattering and can be worn in many seasons.,5,1,0,General,Jackets,Jackets +927,39,Cute,"I agree with others that the shape is not perfect, it does billow a bit by the hips. but the xxs petite (someone returned) was good on me. length was perfect, sleeve were not too tights. (30dd, 26.5 in waist, 35 in hips, 115 lbs) +colors are subdued, making the jacket more neutral. keeping in mind for later...",4,1,0,General Petite,Tops,Sweaters +850,39,Beautiful and soft,"This top definitely drew my attention when i walked into the store. i loved the back and the fabric is super soft/silky. i tried it one and the usual 0 - fit nicely, i don't have petite to compare, or 00, but i decided to stick with 0. it will look so nice with white shorts (or navy# or jeans or even my denim pencil skirt... why i decided to buy it #i really must avoid the store!) + +115 lbs for reference...",5,1,22,General Petite,Tops,Blouses +867,46,Blue beach scene in xl is cute,"I ordered the xl in the blue version and the fit is true to size. it matches the model's photos. the material is very thin. definitely need a tank/cami underneath. the pattern is adorable. the colors are much brighter in person. it's such a fun tee for summer. i just wish they hadn't sewn the sleeves in the various places. it's a little awkward. it shrank while washing & air-drying so it needed to be reshaped. if you get it and it's running a bit big, washing it will help with the fit. i like pa",4,1,1,General,Tops,Knits +850,61,Unique back,"I was attracted to the colors when i first saw it...then i saw the back of it! the largest sz in the store was an 8.i had to order it, and got a sz 10. i then returned it for a 12 in order for it to drape properly in front. shorter than i usually wear, but worn with a higher waist bottom it fits nicely. and that back! not only is is striking, i am able to wear my regular bra under it, and the straps don't hang out.",5,1,0,General Petite,Tops,Blouses +1078,35,Confortable,"I wanted something for the hot summers here, and this fits the ticket. very lightweight and airy. it's somewhat of a strange design, short in the front, hitting an inch or two above the knee, but the back is unusually long. the lining is awkward, and kind of tight and difficult to get into. the material is very thin, and although i haven't noticed any strings or unraveling like other reviewers, it's not the highest quality. overall the dress is nice and lightweight, but not the greatest quality",3,1,0,General,Dresses,Dresses +927,46,Awkward and large fit,"I was so excited to order this beautiful coat. it does seem well made and is very soft. unfortunately, the fit is completely off and is overall large. i ordered a small, as this coat appears slightly more snug on top, a-line on the bottom, with three buttons. i am 5'6"" and weigh approximately 145. i was expecting this coat to be body-skimming. instead it was overall large and the bottom of the coat awkwardly flared. the pleat on the back is unflattering. sadly going back.",3,0,0,General Petite,Tops,Sweaters +975,29,Bad fit and bad construction,"The fit is so bad and the construction is very poor. i'm 5'1'', 100 lbs, ordered xxs petite. + +first of all, when i button this, there is extreme gaping going on. the vest runs narrow, yet tall?it shifts up my torso if i move at all, making the gaping even worse. + +the ""skirt"" at the bottom is made of a very cheap, thin, slightly sheeny material that you would find at a flea market. it arrived unbelievably wrinkled and crumpled, and it was just so thin. it did not meet as closely in the middl",1,0,9,General,Jackets,Jackets +1078,49,Tent-like but cozy,"I tried this on in the store and it fit like a tent on me. it doesn't help that i'm 5'1"" and the store didn't have the petite sizes. maybe on a teller person it would work better. or maybe if i had been able to try the petite size it would have more wearable. it is a comfy style and the natural fiber is a plus. i have another holding horses dress that i love which also runs large. i did not mark this as ""runs large"" because the sleeves are more true to size while the bodice is very billowy. i wo",3,0,4,General Petite,Dresses,Dresses +867,72,Great look,Got for a mother day gift. think she will like it because she always at the beach and is very happy go lucky new mother.,5,1,5,General,Tops,Knits +850,70,Beautiful fabric and design,"I was immediately drawn to this top in the catalog. when my local retailer had it in stock and in my size, i tried it on. it fit so well - the front wasn't too low and the back was fantastic with its multiple straps. i wore it the same week to a dinner with friends. i like the multiple prints and the navy blue edging. i bought the turquoise necklace too because it topped off the look so well. the fabric is silky but washable. the top is very well made and fun to wear.",5,1,0,General Petite,Tops,Blouses +1117,36,Looked better in the picture,"Initially, i bought this because i liked the color and style of this trench coat. i thought it could look very chic and polished. the problem was it was too large and too wrinkly. i'm 5'2 (115 lbs) and ordered an xs because petite sizes were unavailable. but i realize that a petite xs would've been a better fit. also the sleeves were too long even with an xs. i've already returned the product.",3,0,1,General Petite,Jackets,Outerwear +867,43,,"I need t-shirts, these seem cute. a small runs loose, but it's comfortable and it does fit. i am turned off by the little side slits on all of this brand's printed tees. if i want to do a partial tuck to give myself a waist, because these shirts are cut generously, the little slits just throw the whole look off. i tried a few in the store, but left them all there.",3,0,15,General,Tops,Knits +960,66,Not as good as i hoped,This was a fail for me. although i ordered size large it barely fit my midsection when tied and was too small in the waist. the fabric is nice though. best on thinner frames than mine.,3,1,6,General,Jackets,Jackets +927,35,Disappointed,"I had high hopes for this coat, but it was a miss for me. while the wool is soft and not itchy, the colors are a lot duller in person and the embroidery looks messy. also, the fit runs large with an unflattering poof in the back where the pleat is located. i thought about keeping it since i liked how soft the wool was, but alas, i just could not get over the poor tailoring. for reference i am usually a pxxs ( 5ft2in 105 lbs) and it was big.",3,0,0,General Petite,Tops,Sweaters +1078,31,"Pretty, but not as pretty as i thought","I thought the colors would be brighter and i didn't realize the lace would be see through. i returned it because it was also shorter that i expected. but overall it was a nice dress, just not for me.",4,0,0,General Petite,Dresses,Dresses +850,46,,"Love this! so colorful and cute! will look great with shorts this summer, and will keep me cool in the city in the summer heat. thanks retailer!",5,1,0,General Petite,Tops,Blouses +960,69,,Love the fabric. comfortable to wear with jeans or a dress. good for those cool fall mornings.,5,1,4,General,Jackets,Jackets +850,43,Beautiful collage of colors,I was drawn to this blouse because it was silk and looked so well made. the color palette is an added bonus. i knew for my height to size up because it looked short. i tried on the 12 & felt it was still to short. i would have to wear a 14 or 16 to get the length i would like. i think overall this would be a great buy for a person with a smaller bust or shorter. i am 5'8 1/2 & a 36d.,5,1,14,General Petite,Tops,Blouses +850,44,Even more lovely in person!,"I've been stalking this top online and finally went into the store today to see it. i'm so glad i did! the colors are very vibrant and the material is soft and very lightweight. the cut covers a regular bra pretty well (a big plus!) and makes my arms look good! i can't wait to wear this, it will be a perfect dressy top for the higher heat days!",5,1,1,General Petite,Tops,Blouses +867,33,Whimsical and fun,"Omg so i never pay full price for a t-shirt because it's just a t-shirt but there are exceptions for every rule. i can't believe i am saying this but this shirt was worth it! it is true to size (a relaxed fit) so if you are in between sizes, you could comfortably size down. the colors are just so darling. love this. not disappointed.",5,1,3,General,Tops,Knits +1078,32,So cute!,"Other reviews are right, it is a little short in front. but it's such an adorable dress that i don't care! i love the material. super soft.",5,1,0,General Petite,Dresses,Dresses +850,45,Lovely and unusual,"This is a beautiful blouse. great colors and detailing - i absolutely love the design in the back. will look great with white skinny jeans. it does run a bit on the short side but i have a long torso and it still works. i waffled between the 6 and 8 (am usually an 8 and a full b cup). in sleeveless tops i really like the arm holes to be snug enough to cover that unattractive part between the underarm and breast, so i was considering the 6 but ultimately decided the 8 did so with a bit more comf",5,1,1,General Petite,Tops,Blouses +867,30,Cute little top,"I love this top, the beachy print is very cute. my only complaint is that it does run large, it is definitely not a fitted t-shirt; and bought the medium and it's a little baggy on me. i'm hoping that a wash and dry will shrink it up a bit. if not, that's okay, still very cute.",4,1,0,General,Tops,Knits +960,46,Vest love!,"I like this layer for fall for many reasons. first of all, the color is a beautiful fall color. the design of the vest is flattering when wore with skinny jeans or leggings. the weight of the vest is perfect for the cooler weather. it is not too heavy, it's fairly lightweight. i am a size 6 and the small fit perfectly.",5,1,0,General,Jackets,Jackets +1078,28,Love this dress,"Flowy, comfy plaid dress perfect for the fall or winter. front is much shorter than the back - at 5'8"" the front is nearly too short on me, but works with a pair of tights. dress has a cami slip underneath, which is needed as the blue detailing across the chest and down the center is sheer, adding to how special the dress is. can be made more or less casual based on accessories and footwear!",5,1,8,General Petite,Dresses,Dresses +1078,52,Adorable dress but poor quality :(,"I just think this dress is so cute! i love it with booties! +here are the fit details: i'm 5'4 1/2"" and the front of the dress hits just above my knees. (i was concerned that it would be too short for my lifestyle based on the photo). the sleeves roll up and have a tab to button, however the button is very low. therefore, the sleeve rolls up not mid arm, but actually about three inches above my wrist! (it's still super cute, just nowhere near my elbow. just letting you know). +final detail that",3,0,1,General Petite,Dresses,Dresses +960,38,Beautiful fall vest,"The material is velvety smooth, and not quite so pink as pictured on the website. more of a dusty brown rose. well made, nice fit. flattering on my petite frame. a wonderful third piece to complete or elevate an outfit.",5,1,7,General,Jackets,Jackets +960,51,Love!,"I absolutely love this vest. it fits extremely well and falls nicely. i find the collar/lapel billows or flaps out and away from the interior of the vest and i wish they were sewn or secured down. when you tie the string around your waist, the lapel doesn't lay flat, but if you style it like the online model and tie the string off to tighten around your waist, you get a very flattering look. the color and fabric is great quality and really nice in person. i'm overall really happy with this vest.",5,1,1,General,Jackets,Jackets +1038,53,Very nice,"These embroidered jeans are very nice. they also exist in a lighter wash which i prefer because it shows off the embroidery better. the embroidery is dark navy which is almost not visible in these darker jeans. i guess if you like something very subtle these jeans are for you. i personally would have like a more contrasting color either white or red for the embroidery. these jeans are loose and expand with wear, it is perfectly ok to size down.",5,1,0,General Petite,Bottoms,Jeans +1078,36,Surpassed my expectations,"I really wasn't sure if this dress would work for me, so i was very excited when i fell in love with it! i haven't experienced any quality or tearing issues with it as one reviewer noted, thank goodness! i love the color scheme and versatility of this dress. i have worn it with tights, a belt and short-heeled ankle booties to make it a little more dressy. but i most love it with some funky jewelry and leggings, wearing it more tunic style. the slip underneath is a great feature as well! it does",5,1,1,General Petite,Dresses,Dresses +867,29,Really cute for summer,I had to call so many stores to track this shirt down and in the end it wasn't worth it. i got an xs and it was quite baggy. i never buy petite shirts because i feel like they are too short but in this case i think the shirt would have been perfect in whatever the smallest petite size is. for someone who's bigger i'd definitely check this shirt out.,3,1,0,General,Tops,Knits +927,28,:( terrible fit,"Looked good in pictures. i even ordered an xxs petite and it was huge! although the sweater has interesting textures and is very beautiful, it is very awkward and poor fit. will be sending back.",1,0,0,General Petite,Tops,Sweaters +867,65,So soft!,"The fabric on this tee is a very very soft thin cotton knit. it's perfect for those hot, muggy summers esp. in the southern area of the us. + +the sizing runs larger. i am normally an xl and because of the other reviews saying it ran big, i got this in a l. and, it fits me fine, and there's room to spare. so, if you are a size 16 or 18, this will fit in a l nicely. + +it's thin but i don't think it's immodest or too sheer. a white or beige bra would not show through this easily at all. the leng",5,1,0,General,Tops,Knits +1078,25,Love this dress!,"This dress is so pretty on! i almost didn't try it on because on the hanger it didn't look like it would have any shape. well, it is super drapey and flowy, and it looks great on, almost swing style. it is doubled up on fabric, and with the longer sleeves i was scared it would make me too hot, but the fabric is light and breathable, it will be a perfect transitional dress for fall and early spring. fyi, the eyelet strip on the front and back are see through, didn't realize that the first time i",5,1,0,General Petite,Dresses,Dresses +1078,39,Beautiful fabric,"The colors and fabric on this dress are really pretty. the lace is a soft blue instead of white. i have other dresses like this from this brand and really wanted to keep it, but it runs larger than the others i have. also, it doesn't have pockets. if it fits you properly, i think you will love it!",4,1,1,General Petite,Dresses,Dresses +867,38,Adorable summer tee,"I bought the white with the colorful stripes. i am not disappointed. the sleeves are rolled and tacked. it seems to run a little big in the torso. all in all, a great summer tee.",4,1,5,General,Tops,Knits +1078,45,Maternity dress?,This was just not flattering for me--looked too much like a maternity dress. i can't really do a belted waist so perhaps that would make this dress more versatile for someone else. i was sorry to have to return because it goes well with sandals and boots!,3,0,0,General Petite,Dresses,Dresses +850,48,Great material,"Love it. got a lot of compliments with it. +buy it, it's worth it especially with the sale price right now.",5,1,0,General Petite,Tops,Blouses +960,35,,"Love this vest. to be fair i've never met a vest i didn't like, though! this color is so versatile! i have tried it with many retailer dresses and it looks awesome with each one. this vest has made my bailey 44 gathered stripes dress church appropriate :) i am happy with my purchase at sale price.",5,1,1,General,Jackets,Jackets +818,54,,"The top is cute, but when i received it, it did not feel like cotton. the tag says 100% viscose. i hope retailer can be more accurate with fabric content in the future! on the plus side, the return was no problem.",2,0,1,General,Tops,Blouses +868,39,"Unique top, too much material on bottom","I thought this was a pretty and unique top. the material looks and feels like a basic t-shirt made into a striking fitted top. this isn't apparent in the online pictures: the side seams are slitted open nearly up to the waist, so it is a bit revealing. my only problem with this shirt was that the bottom part flared out too much away from my body, and there is a lot of material there, so i wasn't sure if i could get it tailored to look good on me.",4,1,0,General,Tops,Knits +1022,32,So soft and comfortable!,"These relaxed fit jeans are super soft. they do run a size large, i am a size 26 in the stilt style and the 25 in these fit well with a little ""room"".",5,1,0,General,Bottoms,Jeans +518,55,,"As cute in person as the picture shows. good quality, worth the money!",5,1,1,Initmates,Intimate,Lounge +1079,55,Beautiful and unique,"After a long wait for this dress to come in. i finally received it! the wait was worth it! + +the colors and pattern are just like they are online. the length comes right to to the top of my knees...i am 5'7"". a couple of things to note: the sleeves are narrow,. if you have skinny arms, no problem. the fit across the bust is snug enough that if you have a large bust, there will probably be a gap at the buttons. there are gathers at the shoulder giving the sleeve a slight puffed shoulder. if you",5,1,7,General,Dresses,Dresses +1022,30,Love them,My favorite jeans i have ever purchased! they fit just right. i wear them everywhere.,5,1,0,General,Bottoms,Jeans +907,33,Fun find,"I hadn't seen this sweater/jacket online or in store before shopping today. i purchased the ivory. it fits without being bulky whether or not it is zipped. great fit- true to size.the asymmetric zipper is a stylish detail. the pockets are well placed also. it is a perfect spring weight jacket or, i suspect, a comfy fall to winter sweater.",5,1,2,General,Tops,Fine gauge +1079,46,Buttons broke before i even got it on!,"I'm so disappointed. the dress looked lovely in the box, but when i started to unbutton it to try it on, two buttons split in half! it's going right back.",1,0,0,General,Dresses,Dresses +1022,42,Summer jeans!!!!,Love these jeans for summer! i followed the advice of previous reviewers and sized down to a 26. after wearing these for a few hours they stretched a little and fit great!! they look sweet with the palo alto blouse and the embroidered edessa top. highly recommend!,5,1,0,General,Bottoms,Jeans +868,27,The peplum hit me very high on my torso,"The peplum for this time hit me in the middle of my rib cage, not at my natural waist, so it looked very odd when it flared out with the peplum so high up. i am busty so it's possible this would not be the case for everyone but i generally can wear peplum tops with no problem. i was disappointed to return it, the fabric was very nice and the concept behind the shirt was a good one.",2,0,14,General,Tops,Knits +1079,62,"Gorgeous dress, but....","I ordered this dress in a size 8, my normal size at retailer. it is a lovely dress and so feminine, but it is incorrectly sized. i couldn't begin to button it. i reordered it in size 12 if that tells you anything. buyer beware. unless you are itsy bitsy, you need to size up. i will say that as pretty as the photos are, the dress is even more lovely in person.",2,1,1,General,Dresses,Dresses +986,36,Perfect summer wardrobe addition,"I've been eyeing this for months and finally bit the bullet and am so happy i did before it sold out! i love it. i was afraid i couldn't pull it off because i'm 5'3 and very petite, but i don't think it matters. it feels so light and airy and i can't wait to wear it at the pool and the beach as well as over some white tank tops and jean shorts. great piece.",5,1,1,General,Jackets,Jackets +1079,37,Cute but not right for me,I really wanted to love this dress but it was not right for me. made my curvy body look shapeless. also had a button crack before i even put it on. returned it.,2,0,1,General,Dresses,Dresses +1079,39,As unique as expected,"This dress is indeed so lovely in person. i am so glad i ordered 2 sizes (0p and 2p) based on the straighter-looking cut. i am 115 lbs, 5'1.5"", adn 30dd bra size. verdict, the 2p fit better. why, the cehst area is a little snug and hte buttons kept trying to open (and did# i would have ahd to leave it pen and wear a tank under this dress... not an option with such a unique piece. + +other things: color: wow, very nice in person, i was afraid that the colr would wash me out, but no, i have very p",5,1,8,General,Dresses,Dresses +1022,39,"Like, but not love - long on petite","I tried these on to compare with a different style and didn't like this one a much (also ag brand). these fit better at the waist, but seemed long on me and made me look frump ear. i think they are really comfortable, adn on the longer legs would be great. buy f you are taller than 5 foot 1.5 inches:-). (reference, i am 115 lbs and tried on the 25)",4,1,3,General,Bottoms,Jeans +829,34,Little house on the prairie top,Really wanted to love this top but the proportion was not right for my body type. also the print with the silhouette was a bit too country bumpkin for me.,2,1,0,General Petite,Tops,Blouses +1054,28,Cute and comfortable,The blue on this jumpsuit is actually a little darker than pictured. it's very cute on but i would order a size down for a more fitted look. my usual 0 petite had some extra fabric that layed awkwardly on my body.,4,1,0,General,Bottoms,Pants +865,29,Obsessed.,"I would wear this everyday if i could. the red color is so rich and the cut and structure of the top is perfect and flattering. i've worn to work, out, or dressed down with jeans and flip flops.",5,1,0,General,Tops,Knits +986,38,Easy flowy addition,"The only thing i didn't like about this is i wish it was a little bit shorter, but otherwise great! throw it on with pants and add a bit of color and spring/summer'ness to your outfit!",4,1,3,General,Jackets,Jackets +1022,45,Love these,"I've never spent this much on a pair of jeans, but per another customer review that they were ""worth every penny"" i took the plunge. so glad i did. and also glad i sized down one size. be careful when you put them on - i keep putting my toe through the hole at the knee!",5,1,0,General,Bottoms,Jeans +829,39,,"Maeve is hands down my favorite clothing brand so i am a little biased but this is just the cutest top! i saw so many pics of this top in the gallery that i had to have it. i waited for it to go on sale and ordered it in my usual size 6 which normally is perfect in maeve tops. this is just a little snug in the shoulders but not enough to send back for an exchange. if your on the fence, go for it!",5,1,0,General Petite,Tops,Blouses +829,29,Mock neck rocks,"I love this top...i waited for it to go on sale, and it was well worth it. it has a peplum bottom and it is slightly longer in the back. i found it to be true to size but if you are going to but reaching up, the arms do run a little tight. overall, the mock neck, button closure on the back, and the feminine flare of this top create a beautiful classic look",5,1,0,General Petite,Tops,Blouses +1052,33,,I was so excited to get these. i paid for two day shipping and ordered medium and large . sadly they did not fit. i usually wear medium but ordered both just in case. i'm very disappointed that they run so small and are not true to size. they are super cute from someone skinny.,2,1,8,General Petite,Bottoms,Pants +1022,38,Ag,Awesome jeans. cute and comfortable! size down as they run a little big.,5,1,0,General,Bottoms,Jeans +1054,29,Perfect jumpsuit,"I wore this jumpsuit to a newport wedding and got so many compliments! i'm 5'2"" 105 lbs and the 0 petite was perfect with heels.",5,1,1,General,Bottoms,Pants +1079,55,Just a little disappointed.,"This dress is beautiful. it was on back order and i waited about three weeks to receive it. i usually wear a size 8 in retailer but because it was a button down dress, i ordered a size 10. the bottom is a great fit but the top is difficult to button. it is a heavier weight so i feel it is better for the spring than the summer season.",4,1,1,General,Dresses,Dresses +865,25,Elegant!,"I love this shirt! it is classic and elegant. it is versatile and can go with lots of different things. be mindful, it is see-through so you must wear a tank underneath. i got it in white and it can be dressed up or down. i like how the sleeves are slightly longer than your average shirt. definitely recommend.",5,1,2,General,Tops,Knits +1054,33,,,4,0,0,General,Bottoms,Pants +868,45,Peplum hits very high,"I'm 5'5"" and i think fairly proportioned (120 lbs, 34b) and the peplum hit well above my waist. since having kids i'm a little obsessive about avoiding any shirt that could double as maternity... and this struck me as one. it's a cute too, but once it's on i don't feel it's very flattering.",3,0,0,General,Tops,Knits +1052,38,,"As soon as i pulled these pants from their packaging, i feel in love with them. the fabric was so soft - i could not wait to get them on...yeah, that was not going to happen! i could not pull them on - not even a little bit! these pants run incredibly small. i ordered them twice: once in my regular size, and again in a larger size. unfortunately, i am sized out of these beauties.",2,0,1,General Petite,Bottoms,Pants +829,34,Something a little different,"This top is a departure from my usual style, but i had to give it a try because it looked so comfy yet structured. i wish the material was less sheer as i have to wear a cami underneath when i wear it to work. i'm 5'3 / 135lb and the 6 fits just fine.",4,1,0,General Petite,Tops,Blouses +1079,49,Worth the trouble!,"This is a gorgeous dress, but i did title my review ""worth the trouble"" because of the buttons which a few other people mentioned. i ordered this from the website and when i tried it on at home, a button snapped right in half. my mother put on all new buttons that were stronger but look exactly the same. of course, i shouldn't have to do that to be able to wear the dress, but i love eyelet and was willing. the new buttons cost about $2.00 so not a big deal in the end. + i agree with another revi",5,1,1,General,Dresses,Dresses +1052,36,Wish they worked,The design and quality were great. i really wanted them to fit but they ran large. i'm 5'4 and 120 lbs and orderd the small. unfortunately the fit seemed off as well and i won't be trying a size down. the waist and hips were huge but the thigh area was fitted enough that a smaller size would have been awkward. sadly these went back.,2,0,5,General Petite,Bottoms,Pants +695,32,This product has a beautiful print,This was a gift for a bachelorette. very pretty and sexy without being too over the top. love the print!,4,1,1,Initmates,Intimate,Intimates +1079,55,Lovely.,"Absolutely adore this dress. details, fabric and deep pockets. here is the caveat at least for me. i am a typical size 6 and ordered the dress in a size 8 for a little looser, casual fit. the 8 is so small i can barely place over my shoulders and cannot button. i have reordered a size 12 and 14. perhaps the dress i received is not tagged properly. so disappointed as the item is on backorder.",5,1,4,General,Dresses,Dresses +865,62,,This top is the very same top meadow rue had a couple of years ago. i have that top and it is identical so my guess is meadow rue and deletta are owned by the same company.,5,1,1,General,Tops,Knits +1079,66,That special dress,"I was looking for a dress that would make me feel as special as i would feel when i attend my daughter's baby shower. this design, featuring a variety of spring influenced flower motifs embossed upon an eyelet fabric, was exactly what my mind's eye envisioned! the use of the solid colored shirtdress button line and cuffs softly pulled all the elements of this unique work beautifully together. i found the fit to be almost costumed made for my figure. the number of compliments i received on the da",5,1,1,General,Dresses,Dresses +1052,47,Nice casual pant...if the fit and color worked,"I ordered these in the taupe which is more like a rust color. they are really cute on, but they run a little big and long, so i had to return them. they would be great casual pants for the weekend though if the color and fit were better.",4,1,1,General Petite,Bottoms,Pants +829,53,Great weekender!,"This is about the cutest thing since...well i don't know but it's pretty cute. yes, i agree with the other reviewer who said it looked better in hand than on the web! has cute, soft ruffle just above hip and the stripes are soft pastels. the buttons at the nape of the neck are sweet. there's the word-sweet-that's the perfect descriptive for this quirky, laid back, feminine piece. tts-nothing weird or uncomfortable about the fit but it does seem a bit shorter than the picture shows. i am 140 lbs",5,1,0,General,Tops,Blouses +907,39,,,5,1,0,General,Tops,Fine gauge +907,37,Nice but too expensive for what it is,"This jacket is extremely soft and comfortable, with a heavier textured fabric. i think it is expensive for what it is--$138--probably best to wait for a sale",3,1,9,General,Tops,Fine gauge +1054,33,Insanely adorable and comfortable!,"I saw this en route to the dressing room at an retailer store and picked it up to try on. despite the store only carrying this in petites, i tried it on anyway and didn't want to take it off! it's very wearable and comfortable. the sides have boning which keeps the fabric from riding up or down. i have a little postpartum tummy and the shape and pattern conceals that nicely. + +i'm 5'6, 160 lbs, and 36c. i typically wear a 10 and bought this in a 10p. the length, waist and bust fit perfectly.",5,1,0,General,Bottoms,Pants +1022,44,Ag fan!,I'm super happy with the way these jeans fit. i typically buy ag jeans for fit and quality. this pair is extremely comfy with the right amount of stretch yet still somewhat relaxed. they do run a big large so i sized down and they still fit great... lots of compliments!,5,1,0,General,Bottoms,Jeans +829,34,Very cute fall top,"This top is a keeper. subtle plaid, flowy fit. so cute with skinny jeans and booties. i would definitely recommend!",5,1,0,General,Tops,Blouses +1054,26,Petite fits perfectly,"I had been looking at the dresses and jumpsuits from this designer for a while and decided to order this jumpsuit. i'm usually an extra small in jumpsuits, and wasn't sure to get the 0petite or 2petite. i'm 5'3 and about 115 lbs and the 2 petite is perfect in the legs and waist, but a little wide across the chest (i'm a 32c). the material is soft and feels very nice and like good quality. it's perfect for dressing up a little in the summer and i'm going to think of ways to transition it to the f",5,1,0,General,Bottoms,Pants +1054,26,,"I ordered this online, and was pleasantly surprised when i received it. i'm about 5'5 and 140 lbs and the small fit perfectly. it is very flattering, and i can't wait to wear it!",5,1,2,General,Bottoms,Pants +1079,42,Pretty,"My main complaint, is that the button holes are too tight for such delicate buttons. one button shattered when i tried to get it undone, and what's even more crazy, is that mine did not come with any extras. so i guess i'll have to go to the fabric store to find a match. (i'll be sure to get a bunch just in case) a couple of minor notes; it smells like chemicals, and i won't be able to wear a bra, because the chest is a tad tight. however, the dress is cute enough, that i'll deem it worthy to we",4,1,6,General,Dresses,Dresses +907,41,,"This is a truly beautiful jacket that goes with so much - dressed up or even over something casual. and either way it is comfortable without looking frumpy, soft and conforms to your shape without being sloppy. i would say it does have more of a 'sweater' feel to it but with the zipper can easily pass as a jacket. it's lightweight but enough to keep you warm on a spring or fall day. i would say it fits pretty true to size. i got the ivory during the big weekend sale (extra 40% off) but even at $",5,1,1,General,Tops,Fine gauge +1079,31,"Very cute, but runs small and buttons break","I saw this dress online, and i thought it was perfectly cute! however, once i tried it on at home, it just didn't work. one of the buttons broke in half as i tried unbuttoning, and once i got it on, the dress was so small that the cuffs cut off circulation to my forearm. (i'm 5'7'' and ~126 lbs and purchased in size 2). i didn't even try buttoning all the way. i took it back, and i don't even think i want a larger size. the buttons are just too fragile.",2,0,3,General,Dresses,Dresses +907,41,Super versatile jacket,This is a 3-season item that can function as a cardigan or a jacket and will look equally good with jeans or with work slacks. the seaming gives it a bit of structure. the asymmetrical zipper gives it a little twist. the texture gives it interest. i bought it in navy and i'm considering the ivory.,5,1,3,General,Tops,Fine gauge +1079,43,,"The cotton, the print, and the online presentation of this dress are beautiful, i ordered right away! but there are some discrepancies. the shoulders have a ""puff"" to them that i don't notice on the model, and that doesn't flatter athletic shoulders. the buttons are (cheap) difficult to button. the waist sits much lower on the model than it must on anyone else, it's nearly empire on me. and, there is a lot more volume in the skirt of the dress than is shown in any photo. because the dress is tig",3,1,11,General,Dresses,Dresses +1079,47,"Adorable, but runs tight","This is a lovely dress. it is on the heavy side and lined, so i would not recommend for hot summer wear. but the material and style are adorable. the skirt is definitely a-line, not sheath, but i prefer that. it runs a tad too tight in the chest, so if you're between sizes in the bust, i'd order up. that said, a 6 would be too big for me. i'm 5'4, 120 lbs and 34c and usually wear a 4.",4,1,3,General,Dresses,Dresses +868,44,,"While i agree with the previous review that the peplum hits a bit high, i like this top. it has other features that i really like. the dip in the back of the peplum is great and i love the longer sleeves. i have it in both the black and the mauve and they are becoming quick staples in my wardrobe. i have a fuller figure and feel good in this top.",4,1,2,General,Tops,Knits +1079,57,,Although beautiful colors this eyelet dress is quite heavy and the buttons have no give- one of them literally cracked when i tried to unbutton it. unbuttoning it was difficult due to the tight weave. it just misses the mark and will be going back.,1,0,27,General,Dresses,Dresses +865,24,Unique+flattering+easy,This top is great for those days when you have nothing to wear. just throw this on and get ready for the compliments!,5,1,1,General,Tops,Knits +695,27,,"Looks exactly as it does in the pictures. very comfortable, loose flowing, and has a slip underneath it. i'm personally a little hesitant to buy clothes online because it's always a guessing game when it comes to figuring out what size. with that, i have wide hips/big thighs so i tend to vary between medium and large, but thankfully the medium fits like a glove!",5,1,3,Initmates,Intimate,Intimates +829,37,Cute top!,"This top looks better on than on the hanger. i've been looking for a feminine plaid top and this is the one! it's a flirty and innocent look in one. i would say size up. it runs a little tight around the upper arm, shoulders area when stretching arms out. i normally wear a size 2-4 depending on the top and the 6 felt better.",4,1,0,General,Tops,Blouses +1079,46,Runs small,"I am 5'4 and 120 lbs and ordered a size 0. the dress fit perfectly in the shoulders and arms and below the waist, but i could barely fit my 32a size chest in the dress! the other reviewers are not kidding about the chest area being very narrow. i have had to order a size 2 instead. we'll see if that works.",4,1,1,General,Dresses,Dresses +868,38,Lovely top; peplum hit weird on me,"I wanted to love this blouse, but the peplum came too high up on my waist. i have a short torso and i'm busty, so the placement of the peplum just didn't work for me. it is a very pretty color and fit fine in my normal size, but the peplum just didn't work on my short torso. i think this would be a very pretty blouse for people with a different body type than mine.",5,1,0,General,Tops,Knits +518,25,Cute and comfy,Mom loves these and she looks great going to the gym! the cut-outs are so cute!,4,1,0,Initmates,Intimate,Lounge +1079,70,"Pretty but heavy, buttonholes too small","Really like this dress but..... +the dress is lined in a heavy fabric and weighs a lot for a summer dress +worst of all there is no chance at all of getting the buttons through the button holes. +impossible! +has to go back",2,0,1,General,Dresses,Dresses +829,35,Cute!,"Super cute, casual top. i'm usually a medium and this fit perfectly (5'9"" 145 lbs). it's not quite as long as it is on the model, but cute nonetheless.",5,1,0,General,Tops,Blouses +1079,50,"Beautiful, but poor fit","I loved this dress the moment i saw it, pre-ordered it, but when it arrived the fit was off. +i am almost always a size 4p in retailer clothing, this fit wonderfully everywhere, except the shoulders and chest were very small. i am 5'2"" and 120 lb with a small bosom. (a cup) the shoulders were too tight and the chest gaped and sadly i had to return this dress. +i may try to find it in the store to try on multiple sizes for the right fit.",4,1,5,General,Dresses,Dresses +829,63,Beautiful!,"I saw this top online and loved it. i wasn't sure about sizing and because i don't live near a store i decided to order two sizes. i'm 5'8"" and typically wear an 8 or medium in tops. the 8 in this top though was much too tight in the shoulders. i sized up to a 10 and it fit beautifully!",5,1,0,General,Tops,Blouses +1022,56,Super cute,"I am a brand loyal ag fan. best washes, best pocket placement and these are no exception. they do run a little big. i usually wear a 26 or 27 in the stilts depending on the fabric content. i tried these in the 26 and 25. both fit, but i went with the 25 because these will stretch at least 1/2 size. the distressing is the right amount, however i gave 4 stars because one area is directly over the knee which i don't care for. solved it by having a seamstress reinforce the back of it with a similar",5,1,2,General Petite,Bottoms,Jeans +1079,40,Tiny buttons break,"This is a cute dress, but the buttons are tiny and the top one cracked in half before i could even put the dress on. i can't risk the buttons breaking off while i am wearing it. especially since the dress seems designed for an a cup, anything larger will be more than those little fragile buttons can handle.",3,0,1,General,Dresses,Dresses +1138,33,Wanted to love it,"I wanted to love this dress. the wool is lightweight yet warm and drapes beautifully. the plaid print is rich, however it is much darker in color than shown in the photos. the dress runs very large. i ordered it in my typical size and it was too big. dolman sleeve dresses usually look great on me, but the cut of this dress, while beautiful, was nothing remarkable. for as expensive as it is it would have had to be an amazing dress for me to keep it. sadly it didn't quite make the cut. it's a sham",4,1,5,General,Trend,Trend +1052,44,,,5,1,0,General Petite,Bottoms,Pants +1079,70,,"I love this dress and had so hoped to wear it to a wedding in june. the fabric is a perfect weight, very nice cotton, i only wish i could have kept it. i am 5'3"", 133 lbs and usually wear a size 6 which is what i ordered. it was fine in the skirt but the top was at least a size if not two sizes too small for 32 chest. i did not want to wear it open with a tee and so had to send it back. the wedding date does not allow for the new available date for the dress.",3,1,2,General,Dresses,Dresses +1099,25,,"I wanted to love this dress. sadly, the styling was wrong. the stripes on the bottom half did not line up with the top and the pleats didn't help. it just threw everything off and made me look distorted.",4,0,0,General,Dresses,Dresses +865,37,Great details. no liner.,Beautiful! color is true to pictures. no stretch. no liner. looks good with white or nude tank.,4,1,11,General,Tops,Knits +1022,36,,Super soft and comfy. so far not stretching out but still recommend buying down a size.,4,1,0,General,Bottoms,Jeans +823,53,Not worth the price,"I ordered this blouse as a gift for my mom. it is too pricey to live up to my expectations. it is quite sheer and the hem of the sleeves are unfinished which you can't see in the pictures. this makes a very expensive blouse look cheap. it is made of viscose and dry clean only. the material used is not on par with the price in my opinion. if it had been real silk or another natural fiber, ok. but for me this and the unfinished hem along with the price is a deal breaker for me.",3,0,6,General,Tops,Blouses +1079,44,Unique and lovely,This dress is unique and lovely! it is a one of a kind dress. i found it to be true to size. the only downside is the quality of the buttons.,5,1,0,General,Dresses,Dresses +1079,46,Bloomed eyelet shirtdress,"I'm keeping this dress but it's going straight to the dry cleaner because right out of the bag it has a very strong chemical smell... like it had been stored in a gas station. then, i'm replacing all the buttons. the fabric is a thick eyelet, folded over with these teeny, thin shell buttons that are a complete design fail. two were broken right out of the package. also, i'm a size 0 in most retailer dresses and this dress has plenty of room in the waist, almost too much space, but the top... i hav",4,1,8,General,Dresses,Dresses +1079,38,Brunch anyone?,"This is a very comfortable dress. i absolutely love the design, the feel (structured and has weight), and the 3/4 sleeves. perfect dress for brunch and work. the fit is not giving in the chest area. i needed to go up a size due to the inflexibility of the material; even tried it without a bra.... nope, wasn't a happening. i ordered a size up and love it! + +the only con are the buttons. they are very thin and not a good choice for the heavy fabric. broke one in the fitting room!",4,1,0,General,Dresses,Dresses +1098,34,,,5,1,0,General,Dresses,Dresses +1022,29,Your new favorite pair of jeans,The nolan's are my favorite pair of jeans from any brand. they are skinny leg but not too tight and the material is oh so soft. i buy 1-2 sizes down as they stretch out a lot.,5,1,0,General,Bottoms,Jeans +865,33,"Beautiful top, fits a little large","Love this timeless piece, but it was a bit looser fitting than i expected. i consistently wear xs, so i had an idea of how i thought it would fit. i still kept it though, because you can dress it up or down and it will never go out of style!",4,1,0,General,Tops,Knits +1079,56,Adorable,I loved this dress and i am usually a 2 or 4 in dresses. this was cut too small on the bust. i'm a 32c and it pulled at the chest. i didn't re-order it because i felt it would look more like a house dress and be too baggy in the hips.,4,1,0,General,Dresses,Dresses +829,58,Very flattering,This top is perfect to dress up and dress down. pair it with high wasted pants and you are set!,5,1,0,General,Tops,Blouses +907,53,Classy sweater,"I got this sweater in white and i love it. the photo online doesn't do it justice, it's not frumpy at all and looks looks great zipped up because of the slanted zipper. my boyfriend calls it my claire underwood sweater.",5,1,4,General,Tops,Fine gauge +1079,46,A jewel in the crown,"This dress has a flattering and fitted cut which perfectly compliments the unique eyelet fabric. it is at once elegant yet casual, perfect for the office or better yet, afternoon tea in a far flung british colony of yesteryear. which brings me to the buttons - putting on this dress makes one wish one had a ladies maid, but the effort is well worth it for this stunner of a dress. as others have said, it runs small and tight in the chest and is not for the well endowed. i am a petite 5'2"" and fit",4,1,1,General,Dresses,Dresses +872,52,"Very comfortable, cute without being cutesy","This is a wonderful top! the fabric is soft and comfortable, with a beautiful drape. the pattern is very pretty, the curved hems are very flattering, and the top is versatile. it can be worn with shorts, as shown, or a skirt with a belt or pants. i have pilcro wide leg pants in orange, yellow and green, and this top looked amazing with all of them. a great little find!",5,1,3,General,Tops,Knits +872,35,Pretty tank with fun details,"Love this tank, i am petite and this was the perfect length for me, i wore it with white jeans and a blazer. love the print!",5,1,0,General,Tops,Knits +872,44,Love this!,"Super cute and comfortable! soft fabric drapes nicely. i wear this with an orange skirt, white shirts or jeans. i get lots of compliments on this top and get more use out of it than expected! i'm so glad i tried it on! a nice surprise.",4,1,2,General,Tops,Knits +872,28,,,4,1,0,General,Tops,Knits +1111,47,,"Beautiful dress! beautiful color and design. as the other reviewer says, it has an expose good quality gold color zipper on the back that doesn't show in the picture, however, it adds to its style and beauty! i love the dress and so happy that found it in my size finally!",5,1,0,General Petite,Dresses,Dresses +333,54,Beautiful fit and design.,"These shorts are great, both the design and fit are beautiful. i would say that these run true to size, i bought my usual size, 26, and they fit perfectly. they fit a little high waisted, which i love. the material is so soft and are so comfortable. i would recommend these shorts if you're thinking about it!",5,1,0,General,Bottoms,Shorts +1059,47,Very cute,"It's simply a super cute and versatile jumpsuit. you can wear it as is or over a shirt or t-neck. drapes well, hangs well. looks good from the front and the back. i am 5-5, 120 lb, size 4 fits perfectly. only drawback, has to be dry cleaned...",4,1,0,General,Bottoms,Pants +872,47,,"So pretty and flattering. it's my new favorite blouse. it's also really comfortable. i do not tuck this one in. i love the knit material makes it extra comfy and breathable. the colors are very pretty and wearable. the quality and cratsmanship are impressive. it has a straight bottom hem and slight boxy cut which i like. i am 5'3"" and weight 126 lbs. i ordered the small , but i was going go a slightly bigger comfy fit. i couldn't be happier with this purchase.",5,1,0,General Petite,Tops,Knits +872,52,,Love this top. got xs fits perfectly. wish it came in more designs,5,1,2,General Petite,Tops,Knits +333,36,,"Beautiful shorts. i'm 5'3"" 130 lbs and athletic/muscular build. the 4 fit perfect which is my true size. great print that will go with plenty of different colors. i feel like you can dress it up or go more casual.",5,1,3,General,Bottoms,Shorts +872,39,Another great top,"Tried this on to see if the size works in regular size, and i love the fir, it si very feminine and flattering. i will have to go back for it. both apttenrs are really nice, and it also comes in balck in my store. + +neckline is super flattering.",5,1,3,General Petite,Tops,Knits +872,46,Comfortable fit & cute style,I ordered this top in xl in the navy print. it fits true to size. it's made of two very soft materials. the printed part looks like sailboats to me. it doesn't wrinkle or have a static problem. the solid knit portion is a good quality too. i love the styling details of the ruffled neck and the middle pleat. it's flattering. i like how the details make this a dressy version of a t-shirt while being very comfortable too.,5,1,17,General Petite,Tops,Knits +333,39,,,3,1,0,General,Bottoms,Shorts +872,47,,,5,1,0,General Petite,Tops,Knits +1045,33,Best fitting jumpsuit ever!,"This jumpsuit has the best fit i could ever imagine for a jumpsuit. jumpsuits are always tricky for me, but this one fits like a dream. i would say it runs true to size, with the exception of being a little bit big in the chest. you could go braless with this jumpsuit as there are nice little cups for the girls, but i put on a strapless bra just to fill out the top part. that's not typically a problem for me being a 32d. i don't think i could size down though or it would be too tight in the wais",5,1,0,General,Bottoms,Pants +1059,30,The only jumpsuit i own,"I am not really a fan of jumpsuits/rompers/etc. but i love this jumpsuit. very good quality and design. fits well, but i thought the 4 was pretty large for a 4. i mean, i probably should have gotten a 2 (which was sold out), but i don't usually have to get a 4 tailored. i did in this case, but it was still worth it.",5,1,0,General,Bottoms,Pants +1054,60,Love,"These pants are fabulous ! i want more colors ! +and i got them on sale !!",5,1,0,General,Bottoms,Pants +872,48,Very nice tip,I will find myself reaching for this top time and time again,5,1,1,General,Tops,Knits +333,34,Pretty cute shorts,I tried these on in a 6 which is my usual size in bottoms that are not designer jeans and they fit ok. they were a little short waisted but i have a long torso. sizing up to an 8 helped but then they were fairly wide in the legs. they are meant to flare out a bit i believe but it was too much for me. i like them but i don't love.,4,1,2,General,Bottoms,Shorts +872,32,Adorable tank!,Great cut and high quality fabric. the top gives you a nice hourglass shape and i love the way it hangs half-way down your butt.,5,1,1,General,Tops,Knits +872,50,Comfortable and stylish,"I purchased the blue one - it's a very brilliant royal blue. nice color. the patterned portion is quite heavy, which provides a nice drape. hangs really well without being clingy or too loose. great top for jeans.",4,1,1,General,Tops,Knits +872,44,Fun top,"I got the purple version in a xs. i purchased it on sale so it was a great deal. i usually don't wear large prints but i loved the print and the ruffle detail. very feminine. it also hides the tummy roll, so that is always a plus! i've worn it a few times and threads are already unraveling, but easy fix.",4,1,0,General,Tops,Knits +872,49,Cute top,"This is a cute top and i did not even need my usual petite size thanks to the 3/4 length sleeves. i liked the semi-abstract sailboat pattern and the style is comfortable to wear. however, the tie at the neckline didn't appeal to me so ultimately i did not buy it.",4,1,0,General,Tops,Knits +879,56,A structured t shirt finally! tts for most!,"This must be the only structured t shirt at retailer at the time of this review. i love it. the neckline is perfection. the ruched sleeves are long enough to cover my upper arms. i found it a bit see through, and added a white cami. + +sizing: i ordered an xs. normally i wear a small in retailer brands, and a med in most other brands. size small t's have been too large lately. i'm 5'5"" tall, 135 lbs, 35-29-36, 34d, long torso, narrow across the shoulders, and short arms. + +fit: loose fitting t's l",5,1,19,General Petite,Tops,Knits +872,34,Super cute!,"An adorable tank...wearing it right now! +fits this curvy girl well, though may consider wearing a tank underneath, as the keyhole does show a bit of cleavage. +if in between sizes, consider sizing down. +perfect print for summer.",5,1,0,General,Tops,Knits +1059,39,Amazing,"I am a jumpsuit convert. i tried it on ""just in case,"" but was amazed at how easy and effortlessly adorable it is. i purchased the black, petite 4, and love that it is super versatile in terms of seasonality and styling options. i have an hourglass figure and the draping and fit of the piece work very well.",5,1,19,General,Bottoms,Pants +333,44,"Love, love, love!","This was my first time to try this brand and they fit so well and are super comfortable. i love the pockets also. i am 5'1, 108 and i got a 2p and they fit just right.",4,1,1,General,Bottoms,Shorts +879,50,Not flattering!,I put on this t-shirt and my husband said it makes you look old. he was right. i'm not sure if it's the cut or the pattern but i found it completely unflattering on my petite frame and it looked cheap too. perhaps on someone else it would look different. the pattern is overwhelming and the sleeps are a bit too look and ruched for my liking. it may look better on someone taller.,2,0,2,General Petite,Tops,Knits +872,37,Light and comfy,"I bought this top in lavender. this top is light and smooth on your body and true to size. i'm 5'4"", 34dd, 150 lbs- m fits well. it hides the imperfections in the tummy area and i find myself going for this top a lot. it's a very easy to put on and take to it off.",5,1,2,General,Tops,Knits +818,40,,"One of the worst shirts i've tried in a long time. i don't know how they managed to give it a little shape on the model. in person it is sleeveless, huge, short and wide.",1,0,31,General,Tops,Blouses +872,31,Runs large,"Love the print and comfort of this tank, however, it does run about 2 sizes larger than normal. it is also not a fitted tank, it has some flow which is not exactly what i was looking for.",3,1,6,General,Tops,Knits +1022,42,Love these jeans!,"I really can't say enough about them. they have the perfect amount of stretch, are so comfortable and they keep their shape really well. i would say that you could wear them 3 times before washing. also, the color is perfect. they are tts and even allow for a little extra holiday weight without becoming a torture device.",5,1,1,General,Bottoms,Jeans +879,66,Love it!,"Since there isn't one where i live, i ran into retailer while waiting for my daughter to pick me up. saw this and bought it off the rack w/out trying on. had to get a m as they were out of s, and yes, it's a tad large on me, but still glad i got it. i think it will be a nice transition piece into fall in hot texas. love how the linen drapes and it makes me feel a bit more dressed up than a cotton tee. the ruching on the sleeves is an extra nice touch.",5,1,0,General Petite,Tops,Knits +872,31,Perfect summer basic,"I tried this on in the store on a whim. it is so flattering, soft, and pretty. i generally wear a size 12 and bought a l although the m might have fit, also: it's got plenty of room. the chiffon yoke is not particularly sheer and a nude bra strap is basically invisible, the jersey is adequately opaque so no camisole needed. my dimensions are about 40"" bust x 33"" waist.",5,1,0,General,Tops,Knits +1117,33,I'm in love,"I've been stalking this beauty since it came out and when i saw it went on sale with an extra percent off code i knew i had to purchase. well worth the price i paid, a bit steep at full price. + +i went with a size medium- i usually take a small/2-4 in retailer tops and these days i'm around a 32c. i'm also tall with long arms. the design is very forgiving with the cropped sleeve and non-closing front so you have some wiggle room. it fits me like it was custom made. + +the material is a lightwei",5,1,1,General,Jackets,Outerwear +872,40,Geometric top,"I purchased the blue version in store. it's a nice royal blue, not navy. (although the it could be worn with navy.) i thought the fit was flattering. the middle piece (pleat?) is less obvious on the blue than the purple. the tie at the neck can be untied and it is still not too low cut.",4,1,2,General,Tops,Knits +1054,61,Cute and comfortable!,"Note: the inseam runs a little longer than stated above. if you are truly a 29"" inseam, you may want to get the petite size. i purchased the petite small, my inseam is 27"", and the trousers hit the ground in stocking feet. however, the length can be changed depending on where you wear/place them on your hip. +i've worn these trousers at home and around town with ease. they are a wonderful cold weather, go-to wardrobe staple. i wear a nylon trouser ""slip"" with them to prolong the need for cleaning",5,1,12,General,Bottoms,Pants +936,77,Perfect for fall,"I saw this in my local store last night and was instantly drawn to the color. it is more greenish than yellow. i say this alot but this was so much prettier in person. i would not look twice at it online- the picture does it no justice. i am not a pancho person, but this looks very luxurious and expensive and it feels so soft and warm. i tried the xs/s and it fit perfect - i am typically a medium in other brands at antrho. it is boxy, but that is the point of a sweater of this type. it will be p",5,1,1,General,Tops,Sweaters +1059,41,,"I tried on this jumpsuit in black and it was absolutely beautiful. i liked that it looked sort of like a tuxedo, i wore it one time and received so many compliments. when i washed it, however, it shrunk almost 1 size! the pant legs were high water. i even tried washing and restretching it because i loved the jumpsuit but it wouldn't budge, i think because rayon is not stretchable material. to my disappointment, i returned it. i really wished it would have worked out.",1,0,2,General,Bottoms,Pants +872,36,Great basic with some flair,"Great causal tank! the back is a bitter longer than the front - i'm 5'6"" and the back-model shot was right on for where it his me at the hip/butt. the material is a poly/spandex/rayon mix that feels predominately like polyester and rayon and has a little bit of give. + + i go between a medium and small in most retailer tanks and like to achieve a look that is somewhere in between form-fitting and flowy (quick stats - 130 lbs, 34c) and the small was perfect without being too tight across the chest.",5,1,13,General,Tops,Knits +872,66,Darling!,"I can't wait for our warmer weather to arrive here in minnesota so i can wear this lovely tank top. the style is so flattering, it doesn't bag out to make you look pregnant. the back yoke is solid navy blue chiffon which is a nice touch. soft fabric, drapes beautifully. the armholes are not oversized. the fabric is opaque so no camisole required. + +i am 5'5"" and 120 lbs. and 36a. i purchased size small.",5,1,2,General,Tops,Knits +872,44,Pattern not attractive in person,"I ordered this online and was surprised to see yellow in the pattern when it arrived. i can't see that in the online photo. i didn't like the pattern at all when i saw it for real. the shirt is very loose, fits much like the model photo (i ordered a small, 5'6 140lbs). just looks kind of frumpy and the pleat down the front makes the front hang heavily.",3,0,11,General,Tops,Knits +868,57,Well made; but huge,"The fabric is a nice weight knit and the top generally well made. unfortunately, the fit was enormous. i've an athletic build w/ big boobs & normally wear l in retailer tops.",2,0,1,General,Tops,Knits +964,32,,Love it. goes well with a lot. super soft,5,1,1,General Petite,Jackets,Jackets +829,59,,Beautiful colors. lovely style. feminine and has a nice flow. fiattering fit in back also. nice holiday blouse. really very pretty.,5,1,2,General,Tops,Blouses +868,59,Loose fit beautiful color and style,This is a beautiful color and nice heavier fabric. love the style. armholes not too big. the body is loose fitting at torso but chest area is fitted at 36 c size small . i love this top with skinny jeans or pencil skirt as shown on model. top looks just like it does on model as far as fit.,5,1,9,General,Tops,Knits +872,34,,Fabric is so comfy! color is gorgeous! fit is flattering for large chests.,5,1,0,General,Tops,Knits +872,44,Good staple,"This top is an amazing go to piece, and yes i have all the colors i could grab my hands onto. i will say, that under the arms small little balls of fabric begin to appear with wear. therefore, it will need a quick once over with your sweater shaver from time to time. good staple for a great price.",5,1,0,General,Tops,Knits +860,26,Not great for smaller chests,"The fabric is lovely, color was great, but unfortunately it ran a bit large. this might be a case of girls with boobs vs. girls without. i have a small chest so for me, this just didn't stay in place. i was worried about the arms squeezing me so i got a small rather than my usual xs. bad choice. the diamond in the middle pooches out rather than hugging your body (which was what i was hoping for). when i raise my arms the whole shirt ends up riding up. pretty awkward. there's also a lot of fabric",3,1,0,General,Tops,Knits +854,27,Beautiful but boxy,"I thought this top was absolutely beautiful online, and it doesn't disappoint in person. the fabric is divine, and i just love the paisley design. after putting it on though, it did look just a tad boxy, but not enough to return it. i would definitely recommend the top, and maybe a cute belt to accompany!",4,1,0,General,Tops,Knits +860,40,,"I really like this top. i am usually a medium in retailer clothing and so i ordered this in medium. it did not fit right across my chest, the empire part cut right across my breast and not underneath like it is supposed to. i returned the top for a large and it fits just right in that area. other than that this top is light and airy, flowy and pretty. i love it!",4,1,0,General,Tops,Knits +854,41,Beautiful top,"Lovely silky top (100% poly). i typically look better in more cool tones. this top is neutral enough that i could pull it off. it really has three very pretty, complimentary patterned fabrics. the front v is very deep and the arm holes are quite roomy so either size down or plan on wearing a cami to conceal cleavage and bra.",5,1,5,General,Tops,Knits +872,39,Nice colors,"I had a hard time deciding to order red or turquoise, as both colors are really nice in person. the black, of course, is a classic. another reviewer found the top to be small, but i found it to be a little big on me in my usual size. not too bad, but a little bigger than expected. + +teh neck part is effortless as there is stiching to help the colw effect stay in place. the fabric is thin though, so may show things (thinking bra ripples, and perhaps some other ripples in front tummmy). keeping it",5,1,4,General,Tops,Knits +872,45,"Nice top, but runs small","I like the fabric and aesthetic of this top, and really wanted to like it, however i wish it were longer. i am a size small or med in all retailer clothes, but even the medium felt short and clingy. however that might be because i'm curvy with a long torso, so i'd definitely recommend trying this on rather than buying online!",3,0,6,General,Tops,Knits +872,56,Beautiful cowlneck,"True to size +neckline is not too low so it's great for work +got the red and it's a lush deep color +quite happy with this purchae",5,1,1,General,Tops,Knits +196,32,So comfy,"This is a very comfy dress/tunic. i like to wear it with leggings. washed well, nice color, looks nice with boots. nice find!",5,1,0,Initmates,Intimate,Sleep +964,32,,,1,0,0,General Petite,Jackets,Jackets +854,39,Too low-cut,"The pattern and colors are very pretty, and the material is soft and silky. i returned it, though, because it is very low-cut in the front. it comes down to between my breasts, which is not going to work for me.",2,0,4,General,Tops,Knits +196,67,Picture doesn't do it justice,"This is a beautiful tunic dress and the detail makes it so soft and feminine. i would never have bought it online because it looks so plain but in the store today just couldn't believe how pretty. i'm mature so i plan to wear with black leggings and a nice scarf but could easily be worn alone or with jeans. i think it will transition into spring for two season wear. i'm small but large busted (size 6, 32 h bra)and the small was perfect. can't wait to wear it!",5,1,0,Initmates,Intimate,Sleep +872,53,Beautifully basic...,"I am pleased with this modal cowl neck top; it is a very basic but is a nice addition to my wardrobe. the cowl is just right-not overly 'chunky' or awkward; it drapes nicely and lies flat against my chest. this blouse 'softens' the face-just what i was looking for-i needed a soft-looking black tee to go with a skirt i have and wanted a bit 'more' than a basic tee but nothing overly frilly or ruffled. this blouse filled the bill quite nicely. it is a very soft modal fabric and fits tts. i am 5'5""",5,1,0,General,Tops,Knits +866,44,Boxy,"Like the idea but the tee was was very boxy. i tried the size small and it fit at the shoulders but the body was very big. i would say they pinned it for the product photo:) +i'm 34a...usually a size small. it was soft and fun but a no for me at this price.",4,1,2,General Petite,Tops,Knits +854,46,Pretty top,"Wasn't sure what to expect - but got this on sale, and glad i did. +it is much prettier in person. soft and silky. +great fit also - and versatile (mix and match)",5,1,0,General,Tops,Knits +1052,46,Going back,"I am sure these pants are right for someone, just not me. i am wider in the hips, and they just were really unflatering. the fabric is very lightweight, which i wasn't expecting, and so while the pleats are interesting, with my hips they ended up hitting in just the wrong place. the waist was also much lower than i expected -- not low rise, but i'm used to thinking high waist with wide legs. in short, these pants are probably great on some body types, just not mine. also very long. i'm 5-8 and a",3,0,6,General Petite,Bottoms,Pants +860,39,,,5,1,0,General,Tops,Knits +860,46,,,5,1,0,General,Tops,Knits +872,47,Just average,"Online this top looks fabulous, but in person, not so great. great color, nice quality for a lightweight top, but when i tried it on, the neck does not lay nicely. too much sloppy wrinkled material just hanging awkwardly around the neck ( and i love cowl neck). i found, for me, it dipped very low showing cleavage and i have a large chest, so didn't work. for reference, i'm 5'4 118 and usually wear a small in retailer tops because it seems the majority of their clothes run large. i purchased a smal",3,0,2,General,Tops,Knits +964,52,,"I saw this jacket in stores, but did not buy it. i went home, but could not get this trendy jacket out of my head. i returned to the store the very next day and purchased this item. i am very pleased with the quality and think that the fit could go well on most body types. i got the denim color, which may not be the best color for all, but i love it because denim is timeless and very versatile. i would suggest this to anyone and could not be happier with this! go out and buy it now, you won't re",5,1,0,General Petite,Jackets,Jackets +196,53,,"I bought this during the 25% off dress sale, but alas it is a chemise and not a dress. nevertheless i love it. in a smaller size (i exchanged an xs for an xxs) it is much more flattering and has more shape. the different fabrics make it interesting and fun.",5,1,3,Initmates,Intimate,Sleep +1089,31,A bit big,"This is a lovely dress, the shape is really flattering and it's light and easy to wear. the only problem i have is it runs a little big - i'm normally a 6-8 and i'm sizing down to a 4. otherwise it's pretty perfect, the length is good for taller women (i'm 5'11"") and the bodice is sturdy enough that smaller cup sizes won't need a bra. definitely recommend this!",4,1,12,General,Dresses,Dresses +829,56,Love this top,This is a great top so beautiful with bright colors and sheen. my only complaint was i am dd and it was tight so i had to size up! otherwise my brests would spill up and out!.,5,1,0,General Petite,Tops,Blouses +1052,48,Had to alter waist,"I am 5'3"" 28/38 and i ordered the regular s. if i left it the way it came, it would have been low-waisted and too long, so i am having the waist taken in a couple of inches so it is now high waisted and the length is fine with heels. i did not opt to exchange for a smaller size as the derriere fit fine. it anyway does not define your shape much in the rear. agree that fabric is lighter than expected, but the color and drape are nice. it has stitched-in shorts that fall above the knee. i think wi",4,1,6,General Petite,Bottoms,Pants +872,37,Classy,I really love this shirt - fits just like the picture shows and runs tts. the color is a beautiful red - a bitter richer/darker in person than it looks online.,4,1,1,General,Tops,Knits +860,52,Love this shirt,Great fir and very flattering. keep in mind that it's a little low cut. some bras may not be low enough or may show.,4,1,0,General,Tops,Knits +860,45,Comfy and great for large breasts.,"This is a nice and comfortable shirt. i'm 5'7 and i have triple d size bra and i got my shirt in size m. it fits perfectly and my breasts are not showing too big and the shirt is not too tight. it's more of a casual style, possibly because of the fabric that was made of. nothing fancy but a very nice every-day shirt to go with skinny jeans or a skirt. it covers belly really well and it does look nice and slim around the waist. i'm pretty pleased with my purchase.",4,1,0,General Petite,Tops,Knits +78,43,Beautiful...runs very small,This bra is beautiful. the lace is so lovely and soft and looks fabulous on. my only criticism is it runs very small. i am a 32 a and order the size 1 and it is snug... just order a size up (or two) and it should be perfect.,4,1,0,Initmates,Intimate,Intimates +1089,30,In love!,This dress is perfect and so sweet! i do agree with other reviewers in that it runs about 1/2 to one size large. i run anywhere from 6-8 in retailer dresses and i ordered the 6. if you are usually in between sizes definitely order the smaller size. the smaller size also allows me to go braless even though i have a larger (34dd) chest because of the well-constructed bodice. length is nice for us tall girls as well!!,5,1,1,General,Dresses,Dresses +860,63,Great top for old 70's chicks,"I usually wear a small or medium depending on the cut, but this one only worked in a large. with or without a bra, it was not too low and covers all the middle area flaws beautifully. bust size average and i have muscular (not sticks) arms and a fairly wide back. nice and drapey, pretty green color. great sale price.",4,1,2,General Petite,Tops,Knits +860,23,,"I ordered this top in red. gorgeous color and detail, however just wasn't flattering on my more curvy shape. felt like it looked like a maternity top.",3,0,0,General Petite,Tops,Knits +860,61,My favorite cut and style for me,"I loved the fabric, cut and style of these shirts, the diamond gather in the front is a problem though. i just went under and snipped the elastic that is sewn on that design to relax it a bit. this shirt washes and wears wonderfully. +please make again +maybe fix the diamond area so it is not sewn with as much continuous elastic, a space in the sewing on both sides would alleviate that pucker. +sill i love this top",3,1,0,General Petite,Tops,Knits +342,28,,,5,1,0,Initmates,Intimate,Swim +829,52,Pretty but fussy,"Drawn to the colors, i tried on the top in my regular size m. fyi: 36c, broad shoulders/back, short waist, size 10/12 or l in fitted tops +this top is a cropped, even for my short-waisted body. i would have to wear a cami under. this is not just because of the cropped length (top rides up w/ any movement), but the burn-out velvet is quite sheer. the top is full, so it easily exposes with any movement. the back of slides up, too. the quality is an issue, with exposed threads and irregular seams.",3,1,0,General Petite,Tops,Blouses +872,48,,"I love this fabric, it is comfortable and forgiving. as i prefer jewel tone colors and the red is beautiful. i thought the sleeve length on this might be odd, but it's fabulous. the only reason i haven't given it five stars is that i haven't laundered it enough to verify the quality",4,1,0,General,Tops,Knits +854,38,Pretty and flowy,"This shirt is very pretty in person, although more orange than it appears in picture. i got it for 25% off the sale price, which was definitely worth it, but i wouldn't have paid more than that. the back has a soft tshirt jersey material with a gray and white print. the neckline is a little weird, gathers kind of strangely, but other than that, a really pretty top.",4,1,0,General,Tops,Knits +829,48,Valo burnout top,"Gorgeous but just too short in length for anyone with a long torso. i sized up to get more length, but then the neck opening was way too big and hung open to expose - well, everything up top. wearing a cami would be an option but would take away from the dressiness of the top. i had to leave without this item, but was disappointed because i love the colors and cut otherwise!",3,1,0,General Petite,Tops,Blouses +860,52,Another deletta beauty,"I have literally dozens of deletta tops. just four things to know: very unique/attractive, run large/stretch out (size down), poor quality fabric, and usually low cut.",4,1,1,General Petite,Tops,Knits +196,51,Love it!,Very pleased with my purchase! the subtle details within the dress add to its simple elegance. very soft and comfortable; definitely recommend!,5,1,0,Initmates,Intimate,Sleep +872,30,Perfect black blouse,This is exactly what i was looking for! a simple black blouse to pair with a bold pair of pants or skirt. falls nicely and the material is quite stretchy making it super comfortable.,5,1,0,General,Tops,Knits +860,26,Gorgeous top,This top came in the mail today and did not disappoint. it feels very light and luxurious and the color is just divine. i got the deep red color and it is beautiful. it can be dressed up or dressed down. i ordered my usual small and it fit tts.,5,1,0,General Petite,Tops,Knits +79,54,Perfectly flattering,"I managed to find this huit eden lagoon fixed straps foam bandeau swimsuit in a size 32c and it fits perfectly. my current measurements are 33-25-37 or 38 hips, and i normally wear a 30d or 32c bra. +. +i have a longish torso, yet this doesn't ride up. fits like on the model. there is a thin strip of silicone around the back to keep it from sliding down. the v-shape is held by a hard wire, but it doesn't cut in anywhere. the soft black straps are sewn in and not adjustable but do hold their shap",5,1,0,Initmates,Intimate,Swim +196,52,Cute dress!,"This dress is very comfortable. i bought both the small & xsmall and ended up keeping the xsmall i am 5'4"" 125 lbs. 34c",5,1,4,Initmates,Intimate,Sleep +829,67,Style with a kick,This is a stylish blouse with classic features as well as quirky features such as pleats and gathers. very flattering fit!,5,1,1,General Petite,Tops,Blouses +829,24,Cute pattern but design wasn't flattering,"I was really excited to get this top in the mail; unlike other reviewers, i didn't find that the top fit small, but i thought that the tight fit across the shoulders and chest didn't look good with the billow-y torso of the top. i think this top would be flattering on really thin girls, but i'm very tall and broad shouldered, so it didn't look as good on me.",2,0,1,General Petite,Tops,Blouses +868,20,Just dreamy,Purchased in a small. usually a 4-6-8. i layered over a sleeveless dress and i felt amazing. great for those tighter dresses. the fabric is sheer but not super see through. the tassle in the back is so creative. it closes enough in the back to not look weird. i have so many plans for this piece. black is the perfect color too. the collar colors are perfect too.,5,1,1,General Petite,Tops,Knits +829,44,,I eyed this for so long hoping it would go on sale. i finally bought it during the 20% off retailer members day. sized up from my usual size 4 to avoid the buttons on the bust looking like they were about to burst free. the rest still fits way. i absolutely cannot wait for the next rainy day to wear this!,5,1,1,General Petite,Tops,Blouses +829,33,"Cute patterns, but gaps at buttons","I had the same problem i usually have with button-front shirts when i tried this on: gapping at the buttons over the bust. i tried on the striped motif in my usual size. it was also a little snug in the underarms, but fit very nicely everywhere else. i just can't justify sizing up to fit my bust when it means i'll have to have the shirt tailored to fit everywhere else. + +the stripe pattern and navy pattern (the one with the birds) are true to the online pictures. the black one was disappointing i",4,1,29,General Petite,Tops,Blouses +815,25,Awesome print but horrible fit!,"I own two poodles and love anything poodle print. i was estatic to see this and i snagged it on sale. but it is horrible. the fit is like wearing a pillowcase. it was about 5 inches too wide on each side while the arms fit. it looked like it was attempting to have a dolman shape but it was way too short, wide, and wrong. i was in love with the print however i had to return it.",1,0,0,General Petite,Tops,Blouses +829,35,,"I'm petite and i ordered the smallest size possible online (5'1"" 95lb). i ordered the rain/umbrella pattern which is cute and very ""retailer"" in my opinion. for those who are experiencing ""gapping at the buttons over bust area"" - wear a tank inside and problem is solved! hoping they would come out with cuter prints in the future.",5,1,0,General Petite,Tops,Blouses +829,62,Why we love maeve,"Another great whimsical print by maeve! as of late, this brand has really fallen all over the board for me, but this top had the right fabric, fit, and pattern to hold onto the parrot print. it looks great loose or tucked in. the parrot print has plenty of accent colors to make this match with many things. cute!",4,1,1,General Petite,Tops,Blouses +868,25,So beautiful!,"This is top makes me feel happy and pretty! with a saturday/sunday black tank or any cami, you will love yourself in it! tts and matches most any skirt! good price too! can wear with skirts or pants.",5,1,1,General Petite,Tops,Knits +829,23,No more rainy day blues,"I had my eye on the umbrella print shirt for a while. i was able to scoop it at a small discount. i typically get a 2 in maeve tops but per the reviews i got a 4, i definitely could have done with a 2 but i'll probably stay with what i have. adorable print, comfortable, well made.",5,1,2,General Petite,Tops,Blouses +829,29,Perfect,"Perfect shirt for a low-key day at the office. bought in the umbrella/rain (white) print. maeve blouses tend to run a little big on me but that's what i love about them. material is nice, recommend hand wash!",5,1,0,General Petite,Tops,Blouses +824,33,Love it!,Such a cute take on a henley/button down shirt! i first bought the green and blue version in my typical size medium and while it was bigger than i expected it to be i kept it because i liked the oversized/tunic look i got with some skinny jeans and boots. i decided to order this color in a small to get a different look. i'm just as pleased with the fit of the smaller size! i think this size will work better for tucking in and more tailored looks. yea! these shirts are so soft and made of substan,5,1,1,General Petite,Tops,Blouses +829,37,As depicted but not for me,"This shirt looks just like it does in the picture, and my favorite detail was the buttons. i was a little disappointed in the stitching of the front tucks, as it looked sloppy at the ends, but you might find that rustic/charming. this is a great top for spring/summer. i ordered an 8p, and it fit well everywhere except the chest, so i'm returning it. my bust is about 37""(32ddd), and it was slightly too tight. if i go up a size it will probably make me look bigger than i am, nevermind the horizont",4,1,1,General Petite,Tops,Blouses +473,36,Lovely,These shorts are divine. the fabric is sturdy and there is a weave of sparkle that i did not perceive from the picture.,4,1,0,General Petite,Bottoms,Pants +829,54,,"This brand has odd fitting of late. i normally wear a m in retailer tops but i had to size up to 12 on this shirt as it was tight across my chest. i am a b cup and had a sports bra on when i tried it. brought it home and tried on with a regular, non pushup bra and it pulls slightly. i might return it because my guess is that it will shrink when washed. otherwise, its a cute tunic style top.",3,0,24,General Petite,Tops,Blouses +829,39,So much fun!,"I am rarely disappointed by maeve and this was no exception. i am a 32b and broad shouldered and my normal size 6 fit like a dream. the white print is opaque so no bra see-through. such a cute, fun print! the fabric has a really soft hand too.",5,1,4,General Petite,Tops,Blouses +829,64,Beautiful colors & fabric,"This top is so pretty and the fabric is really soft...but, it does fit a little bit small in the bust. i am not extremely large busted but the buttons gap open just a little and it's tight across my back. otherwise, i love this top and the colors are really, really nice.",4,1,3,General Petite,Tops,Blouses +829,52,True to size - like it so much i bought 2,I had no issues with size or length. i'm 5'9 34c bust and i bought the striped shirt in a 4 and the umbrella print in a 2. the 2 was ever so slightly tight at the second button but i was wearing a heavy cotton cami. i could have worn a 2 in the striped top as well. i am broad shouldered and the shoulder seam in the size 4 dropped a little so there was plenty of room. these shirts are adorable. i usually don't like button downs but this style is very flattering. the material is light and drapes w,5,1,2,General Petite,Tops,Blouses +829,39,Very cute shirt,I purchased this shirt in the black and it looks great. it fits well and the design with the different color dots adds character. this shirt can be worn with anything and for just about any occasion. thanks retailer for another winner!!,5,1,3,General Petite,Tops,Blouses +941,82,Great sweater!,"This sweater is beautifully made from quality yarn. if you are between sizes, you might want to order a size down. i usually fit between a size m and l, depending on the brand. in this sweater i took the medium, but i am debating returning for a small as i would prefer a petite length and the sweater is slightly wide across the upper back. i'm hoping it may be restocked as i would buy this sweater again.",4,1,3,General Petite,Tops,Sweaters +829,33,Umbrellas to brighten up your rainy day,"Cute top & well constructed. was surprised at the various gatherings i hadn't noticed before ordering, really like the billowy aspect on the bottom. received lots of compliments.",4,1,0,General,Tops,Blouses +829,43,Darling top!,I love this top and bought my usual xs. i don't have any issues with the buttons gaping but am 34b so i'm not a busty girl. i got the adorable umbrella print and living in a rain forest in southeast alaska it could not be cuter.,5,1,1,General,Tops,Blouses +829,63,Love the print,"I also found this blouse fits well and runs true to size. a size 2 was perfect, not too tight and not too full. the umbrellas and raindrops are so cute and bright. i will wear with jeans or dressier slim pants. what fun!",5,1,0,General,Tops,Blouses +829,66,"Beautiful, but too big.","Based on reviews, i got the medium pink size: 8 petite because some said it was tight in the bust area and pulled at the buttons creating a gap. i'm 5'6"" and 32d. i figured the 8 petite would be big enough in the bust area and the petite would be shorter. it was too big and even though it was petite, still too long. wanted to like it, but at full price, decided to return.",5,1,1,General,Tops,Blouses +829,49,Fun patterns and prints for a rainy day ;-),"I bought the umbrella print in the petite length. i'm pleased with the whimsical print and crisp colors. the fit is just right for me, although the style runs a bit wide at the waist. it's a casual loose fit, more fitted on top at the bust, shoulders and sleeves, and flaring out below the waist. i would wear it untucked over jeans or a narrow skirt. the only thing i'm not crazy about is the rayon fabric, though it is a substantial weight and machine washable.",4,1,1,General,Tops,Blouses +824,35,Pretty,This top was a great purchase even though it's a bit expensive. love the colors and the fit.,5,1,0,General Petite,Tops,Blouses +869,40,,This is more of an undershirt than a shirt. the material is very very thin and it shows everything. it was beyond unflattering on me. don't buy this unless you have a knockout thin body.,1,0,1,General,Tops,Knits +1077,33,Beautiful design but fabric falls flat,"I found the fit of this dress to be true to size with a flattering bust and waistline; however, the fabric feels cheap and doesn't drape as nicely as i'd hope for the price. this would be a lovely dress in a better quality fabric. for sizing reference, i'm 5'5'', 122 lbs, 30dd, and took my usual size xs - though i'm busty for my size, the top provides nice coverage.",3,0,0,General,Dresses,Dresses +829,34,Not great,"The shape is awkward, too loose, not flattering. my body just disappears under all the fabric and the bird print wasn't as cute as online. returning this one.",2,0,1,General,Tops,Blouses +829,37,Great shirt,I have many maeve shirts and this one does not disappoint. i purchased the blue and love it. i do agree with other reviews though that the chest is a little tight while the rest of the fit is small.,5,1,2,General,Tops,Blouses +1077,51,So flattering!,"I love the way this dress fits and flares in all the right places making it one of the most flattering dresses i've tried in a while. for me, maeve dresses tend to run a bit big, so i sized down to a small (i'm typically an 8-10). the colors are a little deeper/richer in person, which made me very happy. i love the flounce in the skirt - it adds more swing to the dress. the only draw back was the v-neck came down a bit low. easy fix with a cami for work.",5,1,0,General,Dresses,Dresses +829,43,Love the stripes!,"I love this cut of shirt. the stripes are fun. i did have to go up a size due to my bust (34dd), which made the lower part a little bit more flow-y. regardless, i still love this top. so much that i have bought 3 of the prints available.",5,1,2,General,Tops,Blouses +829,56,Striped version adorable,"Contrary to what previous reviewers have said, i think this top fits really well, and is very flattering. i also don't find it too long at all. i normally wear a size small, and got this in a size 4. no gapping at the chest, and i'm a 34d. (5'4"", 124 lbs, 36-27-35). and the colors in the striped version are really pretty. i plan to wear it now and right through spring. i did have a quality issue, however. the first one i received had bunched up stitching where the pleats begin right below the po",5,1,5,General,Tops,Blouses +829,46,Cute and springy,This is a really cute shirt for spring. i love the colored striping and you can dress it up or down. have not worn it yet -- waiting for it to get a little warmer.,5,1,1,General,Tops,Blouses +829,36,Buy in multiple colors!,"I'm a huge maeve enthusiast. tried this on in three different colors, and although these types of maeve tops have had sizing differences from season to season, this top is more true-to-size than others have been more recently. the petite size for me was too short to tuck in, but the regular worked perfectly. the top is roomy, flowy, and the white version is sheer, but a white tank under it would be perfect. the green umbrellas are adorable! a great way to spruce up your wardrobe for spring!",5,1,2,General,Tops,Blouses +829,31,So many compliments!,I love this shirt! it is so feminine and comfortable! will be on repeat!,5,1,1,General,Tops,Blouses +829,43,Didn't work!,"I saw this very shirt online & thought it was so pretty. in person, the shirt seems flimsy. the buttons look as though they'd fall off. i also didn't like the cut of the shirt. it seemed to be tighter on top & looser on the bottom. had to return. i couldn't justify the cost with the quality.",1,0,2,General Petite,Tops,Blouses +1077,40,Tiered dress,"This dress has a very flattering cut for hourglass ladies. i am an 8/10 and got the medium. the sleeves are a little blousy, otherwise it is just about perfect. it will look great with boots or booties for fall. i will wear a thin tank with it to work because the neckline is a little deep.",5,1,0,General,Dresses,Dresses +824,61,Simply beautiful,"This top is beautiful! it is comfortable - soft and relaxed without being ""baggy."" colors are just as seen on the website...if not prettier. it is a versatile and flattering top; tucked in or not; sleeves rolled up or not; i love it!",5,1,0,General Petite,Tops,Blouses +869,66,New favorite summer blouse,"The details on this blouse - lace inset in front and sheer back - look just as great in person as they do in the photos. the fabric is wonderful too; the knit has enough heft that it doesn't show every body imperfection or detail in your bra. it held up well through its first wash and ironing as well. as others have noted, the style is versatile - easy to wear with a cardigan or blazer at work or to pair with skinny jeans or shorts on the weekend. i was also positively impressed by the color sin",5,1,5,General,Tops,Knits +829,66,Tight across chest,Love the colors! love the stripes! great shape! great style! but...i am normally a 12 on top...and this pulled across my back...so i have it in for an exchange for a 14. sometimes i have to do that...i have a broad back. we will see how it fits! but what an adorable shirt!,4,1,1,General Petite,Tops,Blouses +829,44,Amazing. must have top!,I adore this top. the fit is amazing. the colors are vibrant and will transition beautifully into spring. i think it looks great with skinny jeans. i am built small up top size m and the 6 fit perfectly. the buttons did not gape at all.,5,1,3,General Petite,Tops,Blouses +824,32,Pretty but lots of fabric,"I grabbed this during a 20% off sale so i will state first that i don't think this top is worth full price, and even at 20% off i wasn't wowed enough to pay that much for it. the colors are more saturated in person and very pretty. however, the cut- both the length and the width- just made it too overwhelming on my size 14/16 frame. i ordered the xl and it was wayyyy too big through the chest but sizing down to a large meant that it didn't flow over my hips as well because it's so long. i think",4,1,0,General Petite,Tops,Blouses +872,32,Great tee,I got this in the dark coral color. it is lovely. i'm taking it to hawaii!,5,1,0,General,Tops,Knits +829,38,Love this top,"Love this top, flattering on my post baby body. its feminine and soft",5,1,1,General Petite,Tops,Blouses +872,52,"Casual, comfortable, but not sloppy tee","Sizing: i'm have broad shoulders/back, 36c (34d), short waist, and i usually wear a m in a knit top. that's what i bought, so i'd say that this tee is tts. it is a little longer in the back than front, but not as a high/low top would be. rather, it's sort of tunic-like in style. i have worn it over leggings with and without a sweater, and the added length covers me. i admit that i'm a tad on the short side at 5'2"", and that i have no hips (straight up and down) and no waist. my shape is an upsid",5,1,7,General,Tops,Knits +824,58,,,5,1,0,General Petite,Tops,Blouses +1077,48,Monaco tiered dress,"So flattering! the length is perfect and hits just above the knee in front (slightly longer on sides). i was looking for a versatile dress that could be worn to church, work, luncheons, or casual evening events. this one fits the bill. i love that it pays homage to the boho/peasant trend without being shapeless or making me look too wide. i am 5'6"" (long torso) 132 lbs, 32d and the small fit perfectly. i got the black motif print.",5,1,0,General,Dresses,Dresses +964,24,,"The blazer is boxy and less dressy that it seemed online. i could only really wear this in casual situations, and i was hoping to be able to wear it to work as well. it does have an interesting hemline. the shoulders are a bit too narrow for me (but i do have shoulders on the broader side). i don't hate it, but i don't love it either, but it is interesting enough that i'm going to keep it. i ordered a small.",3,0,0,General,Jackets,Jackets +829,66,Wonderful!,"This is a great blouse. the fabric is a fine rayon which is soft and has a lovely drape to it. i have found rayon to be a good fabric all year and quite cool in the summer. i am 5'7"" long waisted and 127 lbs with a slender build so i usually wear a size 6--this fits perfectly as well as being quite flattering. it can be worn loose or belted with a contrasting or black belt over skinny jeans. it would also be swell with a pencil skirt. it will cover any fashion flaws! i usually like to shop the s",5,1,1,General Petite,Tops,Blouses +829,57,"Easy, breezy comfort that looks great!",Love this blouse. it fits well with a slight flare at the bottom. doesn't wrinkle much and washes in cold water perfectly. have had compliments on the style and design. a definite buy!,5,1,3,General Petite,Tops,Blouses +473,36,Beautiful and stylish,"These are the perfect way to battle the california heat in style- more beautiful than on the picture. you can't see, but there are gold threads running through the fabric. pair with a sandal and a flow top, and i'm good to go!",5,1,0,General Petite,Bottoms,Pants +829,38,,"These are the cutest prints, but the cute simply doesn't work for me. this is longer than the conversationalist shirt, which is an improvement as far as i'm concerned. nevertheless, both my appropriate size, which i still felt was too short, and the size up, which hit at a flattering spot, were twice as wide as as my midsection. so while the arms and shoulders seem true to size, the shirt runs very wide.",3,0,38,General Petite,Tops,Blouses +829,40,Great top!,"Love this top! kept looking online, but really wanted to try on. so once i made it to a store, i was so happy they had my size! i'm 5'1"", but prefer regular sizes in retailer for the length. i got the xs and it is a lovely fit, tts. love the colors in the pink top!",5,1,2,General Petite,Tops,Blouses +824,37,,,5,1,0,General Petite,Tops,Blouses +829,35,Surprisingly comfy for a button down,"I am a 10 m and got the 10. it fits perfectly and there is room in the bust (i'm 36/38 c). the shirt feels very nice and silky up to the skin. i'm just not sure about the print- i got the umbrellas. it's cute, but maybe a little too cartoonish? it does look good with a green or blue puffy vest for colder days...still trying to decide if i should keep or return, but only b/c of the print. i'd love this in some solid colors!",5,1,1,General Petite,Tops,Blouses +831,42,Beautiful detail!,"I ordered this top on sale and so glad that i did. i am usually a small in tops, but had read that it runs small. i went with a medium and wish that i picked the small. it is definitely a swing top. it's best feature is the detailing; it's gorgeous. i paired it with jeans and a white denim jacket.",5,1,0,General Petite,Tops,Blouses +1031,53,Super comfy a tad long,"Love these pants! the are super comfy and very flattering, but they are very long. i did manage to have them altered,but you may risk losing the flare, which is unfortunate considering the price.",5,1,4,General,Bottoms,Jeans +804,72,Beautiful fall color,"I am somewhere between a size 6 or 8, so i ordered this dress in a size small. mistake. too small. the color of this dress is so lovely. it's between red and orange. will probably order it in medium.",4,1,0,Initmates,Intimate,Lounge +1077,26,Lovely!,"I really love this dress because it can be dressed up with wedges or heels for a wedding or cocktail party, but could also be dressed down with a cute pair of gladiators. i love the pockets too! i'm very happy with my purchase and would recommend to anyone who needs a go-to summer dress for many occasions.",5,1,0,General,Dresses,Dresses +602,56,Fits well and good for relaxing,"I was looking for a romper for a long time which i don't need to care whether to wear bras after taking shower and relax. because of its design with a line on the top, no worries for a relaxed romper. the texture was not as silky as i wished but you will like this if you want a light on weight.",5,1,11,General,Bottoms,Shorts +820,28,Gorgeous,"I can't believe these aren't sold out yet. i had no problem getting this over my head. this top has such beautiful colors and embroidery. quality is good. flattering on. at this price, it is probably the best deal i've gotten on anything from retailer. i would recommend this top, absolutely!",5,1,0,General,Tops,Blouses +1077,52,Gorgeous but challenging for buxom beauties,"Love, love, love but alas had to return. gorgeous fabric and elegant design, i purchased for an evening summer wedding. however, the cut of this dress is more suited to a small bust line and a short waist. i felt like it hit at my rib cage and not my natural waist and my top half was spilling out of the neckline. it was slightly loose so i don't think sizing up would have helped. maybe i needed to size down? i'm 5'6"", 145 lbs and had the 10. loved but it didn't fit me properly. also noticed the",4,1,0,General,Dresses,Dresses +303,51,A great wake up call,This sweatshirt is the perfect solution to chilly mornings or evenings. sundry's lightweight fleece is never too warm or cool. the fit is true to size. the short sleeves look even cuter rolled up once or twice. i know i will be getting a lot of use from this top once early summer comes along!,5,1,1,Initmates,Intimate,Lounge +1077,25,Cute and comfortable!,"I really liked the style of this dress. the top was nice and stretchy and the bottom is so soft and silky. i love lace and thought that was a nice detail for the top. the colors are a little brighter in person, the red in the pictures here is more of a hot pink in person. i'm planning on buying some hot pink flats to wear with it at a wedding this summer! + +one reviewer said she didn't like the placement where the dress fell, i have a short torso and long legs, so i like to try to emphasize a",5,1,0,General,Dresses,Dresses +1077,43,Wedding season...,"...and another addition to my wedding guest wardrobe! the skirt print is gorgeous and i can't wait to shop for the perfect shoe and accessories. i'm very hippy with a thinner waist and this hides that. i love the pockets and the fact that i can wear a regular, comfortable bra. all-around a great purchase!",4,1,0,General,Dresses,Dresses +1077,39,Lovely dress,I was going to order a size 2 online but decided to check my local store first (hate paying for shipping - especially when so many retailers offer free shipping regardless of the purchase amount). all that was left was a 0 and 10. i decided to go ahead and try the 0 just for size comparison. i'm usually a size 2 but this dress fit perfect in the 0. a 2 probably would have been ok but may have been a bit looser in the top. i love the lace fabric on the top and the contrast it provides to the skir,5,1,1,General,Dresses,Dresses +1008,37,Beautiful!,"This is a very beautiful and well-made skirt. it looks a little like ribbon material. it is very think and lush, and the pockets add a little extra special to it. the waist band is very sturdy and it wears very flattering. even putting my hands in the pockets feels very thick and silky. i am 5'1"" with a 27in waist and the size 2 fit really well, just above the knee.",5,1,0,General,Bottoms,Skirts +1042,32,,,3,0,0,General,Bottoms,Pants +804,39,Pretty sloft and silky,"I tried on the xs in store in crimson (i would need petite) - the color and fit were very flattering on me (pale skin). the dress feels very silky, i love the back, how it ties, and how high the neckline was on me in the front. the little flutter at the bottom of the dress is also a nice touch. my only concern was whether this looked like a negligee... i think i would buy it if i had somewhere to go, just not sure the fabric is appropriate for work... + +reference: 115 lbs, 30dd, 26.5 in waist.",5,1,1,Initmates,Intimate,Lounge +602,36,Not what i expected,"This romper was not what i expected when i originally purchased. it is much more casual looking in person, and as soon as i got it out of the bag, one of the buttons fell off. it did look good on and fit well, but i will be returning because it is too casual for the occasion i bought it for.",3,0,0,General,Bottoms,Shorts +831,53,Nice top - runs small,"I am normally a size medium or small at retailer (depending on the bust) and could not even get the medium in this top past my neck. it runs very small. unfortunately the size large was not in stock for me to try. truthfully, i might have needed the xl in this - it runs that small. for reference, i am 5'6"", 145 lbs, 34dd. also, the beading on the top i tried was coming loose and some was already missing. seems to be a common fault based on what other reviewers have said.",4,1,0,General Petite,Tops,Blouses +602,39,,,5,1,0,General,Bottoms,Shorts +1094,38,Beautiful dress,"The quality and aesthetic of this dress is wonderful. the fit and look are classic. i am 5'10'' and the dress falls mid thigh. this is a beautiful dress for a special event, simple but with sparkle at the neckline and an unusual print. i am very happy with this purchase.",5,1,3,General,Dresses,Dresses +602,30,,,5,1,0,General,Bottoms,Shorts +831,83,Stunning!,"Ordered this top the second i saw it! +i wear a small or med. depending on the cut and fabric............noticed it is cotton and went with a medium. +so happy i went with the larger size.......runs very small, especially in the chest, and there is no give in the fabric. +stunning top but would go up one, possibly two sizes.",5,1,7,General Petite,Tops,Blouses +1077,35,Adorable!,"I love this dress! its feminine, sassy and very comfortable. it fit my body type well--i'd say i have more of an athletic build (broad shoulders, 36c, straight in waist/hips) plus i have a lovely left over tummy from two babies.... the top has stretch and is a higher waist which is slimming on my body. the bottom material is a thick and high quality with a design that is beautiful in person. it sits out from my waist and hips and easily covers the left over tummy and is super easy to move in. po",4,1,1,General,Dresses,Dresses +1031,32,Beautiful jeans but way too small,They were way way too small! i bought a 32 and they would probably fit someone that usually wears a 28. i was so sad to send them back because i loved them.,4,1,0,General,Bottoms,Jeans +1031,44,Super super long,I love these jeans and want to keep them but they are so long! im 5'7 and they wrap all the way under my feet so i cant even have them altered because it would cut the flare out. its kind of crazy how long they are.,4,1,4,General,Bottoms,Jeans +602,49,Amoret romper,"Adorable, comfortable piece. runs slightly big.",4,1,0,General,Bottoms,Shorts +1008,39,Quality matetial,For reference i am 5'3 and 120-123lbs. i wear a size 6-8. the quality of material on this skirt is very good and quite heavy. the waistband has a little stretch and the skirt is lined. there are pockets. longer on me than the model which is fine because i'm wearing it to work. this skirt has no black ( it's dark navy and brown) in it and will not look good with black tights which how i wear skirts to work. can be worn with no tights it's a made of substantial curtain like material. i'm keeping i,4,1,0,General,Bottoms,Skirts +1077,30,Lovely dress,Wore this dress for my bridal shower and got a ton of compliments! it fits great and is very well made!,5,1,1,General,Dresses,Dresses +1008,31,So soft!,Very soft and luxe materials and really well made. pockets a nice detail and otherwise a great cut and length. petticoat underneath a cool detail too.,5,1,0,General,Bottoms,Skirts +1077,29,Great dress!,Fits nicely - i'm a standard size 4 most places. also perfect for those in-between occasions. can be dressed up or down and worn with flats or heels :),4,1,0,General,Dresses,Dresses +820,55,Comfortable and beautiful to boot,"I don't understand the low rating. the head opening in my size (2) is perfect and i don't have a small head. +the style is both flattering on many shapes and very comfortable. the embroidery is gorgeous and the blue hue can be paired with many colors. it be worn with jeans on the weekend and also dresses up beautifully for the office if worn with a jacket and a pair of slacks. i wore it with an olive jacket and jeans last week and received compliments! +the caveat is that it wrinkles.. a lot.",4,1,0,General,Tops,Blouses +831,61,Very pretty and very lightweight fabric,Fabric was a little more shear than i thought it would be - while not a big deal - it was missing a few of the silver beads along the front line of the top. returned,3,1,3,General Petite,Tops,Blouses +1077,34,,,4,1,0,General,Dresses,Dresses +1077,29,Love it!,"When i saw this dress i knew i had to have it! i loved the colors and design. i am a wedding planner and dresses with pockets are my ""uniform"" +i was a little concerned after reading some of the other reviews, but i ordered anyway and am glad i did! it fits perfect and looks just like the photo.",5,1,0,General,Dresses,Dresses +602,51,Cute but not sewn well,"I too, was dubious about the dry clean only label but purchased it anyway because it was really cute and comfortable. the shorts part is lined which is nice. not see through. the waist is a smocking with elastic. it's also very thin thread. the first one i tried on had a couple of stitches ripped in this waistband and because of that the fabric sort of bubbled out. i bought a different one knowing it was delicate. this isn't a romper your going to want to shimmy over your hips because of",3,1,3,General,Bottoms,Shorts +1042,34,Love on first try!,"Great for hot weather, dress up and dress down! don't need to decide what to match with and bottom or top!",5,1,4,General,Bottoms,Pants +1042,30,Beautiful piece,"This runs huge, not large, huge; and hung in quite a baggy way. bought a medium ( 5'10, 150 lbs) and i could have gotten an x-tra small. maybe if there were free shipping i would have reordered, but now its just too much of a hassle",3,1,0,General,Bottoms,Pants +1008,35,This skirt is so comfortable,"This skirt is exactly as i had hoped it would be. the zipper works great, the material feels nice, and the liner is attached to the skirt so there is no bunching effect. after the first time i wore the skirt i went out and bought more tops to go with it. i highly recommend this skirt.",5,1,0,General,Bottoms,Skirts +602,50,Great for tall frames!,"The style and material are nice, but what i love is that it does not give me a wedgie! and i think it would still fold nicely on shorter frames.",4,1,0,General,Bottoms,Shorts +1008,31,"Cute, comfortable, and practical","I'm a little heavier than i'd like due to postpartum fluff and have to gradually lose because of breastfeeding, so i look for bottoms with enough give in the waist that will still fit once i reach my goal weight. for reference i'm about 33"" waist x 44"" hips with a goal of 31"" waist x 40"" hips, so roughly a size 12/14 getting back to an 8/10. i bought a medium and it stretches enough to fit. this skirt is a solid staple and the colors are just lovely. the flat elastic in the waistband doesn't rol",5,1,0,General,Bottoms,Skirts +1008,45,,"Saw this skirt in the sale room and figured i'd give it a try. i'm always looking for comfortable skirts that aren't too tight around the waist. once i zipped it up, i knew it would be a keeper! the waist band is super comfortable and it has a hook/eye closure as well. the material is a little heavier weight, but that's fine it can work for winter as well. it's soft, yet structured. the pockets are always a plus. if you want to step away from the normal shapes and colors, this is out of the box",4,1,0,General,Bottoms,Skirts +831,57,In love with nala!,"I paired this gorgeous top with a black v-neck cardigan, mother lookers and black booties and felt and looked so totally feminine and amazing...i honestly lost count of the compliments that i received!! beading is sewn on tightly, and the stitching on the embroidery has no loose ends. i am 5'3""/108 and took the regular size small. highly recommend!!",5,1,0,General Petite,Tops,Blouses +602,55,Fun!,"Super comfy, easy to put on, and super cute! you can dress it up and dress it down! i'm usually a size s and the small fits fine, but i think the xs would have fit better.",5,1,0,General,Bottoms,Shorts +1008,43,Sweet stripes skirt,"Love this skirt! very fun and feminine. it is a great fit and i love the layering contrast of stripes. length goes right to below my knees, which is perfect for me! i am petite and curvy.",5,1,0,General,Bottoms,Skirts +1077,52,"Odd fabric combination, odd fit","In the photo of the dress, you might have a hard time telling that the top half of the dress is the ""lace"" part, and is a stretchy knit fabric, while the bottom half is polyester and not stretchy at all. +fyi: 36c (34d), short waist, broad shoulders/back, usually a 10/12 in a fitted top/dress +the navy lace of the top, as i said, is knit. therefore it was too stretchy, and the straps actually were already too long. it was so loose, that i needed the smaller size in the top half of the dress (10).",3,1,10,General Petite,Dresses,Dresses +1077,31,,,5,1,0,General Petite,Dresses,Dresses +1077,52,Very high waisted,"I am 5'2"" and got this in a 6p. i would say it fits tts (the top also has some give), but the waist is just a few inches away from being empire. i think the dress on the model is pulled down to de-emphasize this. even so, it is a very cute dress - plan to wear it with a navy velvet jacket for easter.",4,1,3,General Petite,Dresses,Dresses +1042,38,Perfect jumper,Great material. quality and versatility is there. it is easy to get in and out of which is hard to find and the fit is adjustable at the waist.,5,1,0,General,Bottoms,Pants +831,26,Too loose at bottom,"This top is not for a curvy figure. the embroidered part is gorgeous, very stunning, but the loose bottom part is awful. i am curvy and usually wear l or xl. this top was fitted at the top but very loose at the bottom, made me feel like i had a big tummy, and was a tad short. i am sending this back. this would look better on a more slender frame.",3,0,5,General Petite,Tops,Blouses +602,28,Finally a romper for all body types,I can't say enough good things about this romper. i am curvey on the bottom and have never been able to get on board with the romper trend because all the ones i had tried were too short or were clearly made for models and teenagers. this romper is a great length and style for all ages and body types. the material is so soft and is the kind of material that won't easily wrinkle. it can easily be dressed up for a night out with wedges and jewelry or dressed down for day with flats (and maybe eve,5,1,5,General,Bottoms,Shorts +776,56,Really comfy socks,"Yes,you need these, so comfortable - and wash up perfectly - workout, walking or great to sleep in",5,0,0,Initmates,Intimate,Legwear +1077,56,Cute pattern but weird fit,I was so sure i was going to love this dress when i saw it on the rack. i was so disappointed by how poofy on the bottom. it was not flattering at all! i'd love to see this pattern back with a better fit.,2,0,1,General Petite,Dresses,Dresses +872,38,Feminine light weight summer shirt,"Great summer shirt. loose fitting, but especially wide. the button gather in back is a nice detail",4,1,0,General,Tops,Knits +1059,40,This might be my new favorite!,"I would of paid double the amount for this romper. i am a medium and the medium fits perfect. i am a little long in the torso, so some rompers aren't comfortable but this one is! this is going to be a summer staple for sure.",5,1,1,General,Bottoms,Pants +872,37,,,4,1,0,General,Tops,Knits +872,43,Too wide,"I don't know why this piece is so wide around the body. the fabric is very good. just the design is way boxy. i get xsp, still boxy.",3,0,2,General,Tops,Knits +872,62,Great top,Cute top for jeans or capri pants. love the sleeve length.,4,1,1,General,Tops,Knits +863,28,Love!!,Perfect for end of summer going into fall. very soft and pairs great with skinnies and sandals or booties. still trying to find a sweater to layer it with. runs true to size. i am an xs/0 and got the xs. i was a little worried because i am so petite i usually swim in tops like this. it fits perfectly and comfortably.,5,1,0,General,Tops,Knits +1092,63,Perfect slim fit,"I'm 32b-26-36, straight and slim, and the 0 fits like a glove. it's a nice change from all these loose, billowy (sometimes sack or tent like) dresses. if you are busty or have a broad rib cage, you'll need to size up for sure. the slip is fitted and im wondering if it will stay put. love all the colors in this dress - navy was better for me, the white washed me out and was just underwhelming. the band of lace hits high on my waist at a spot that is flattering and slimming which doesn't happen of",4,1,3,General,Dresses,Dresses +1059,41,,"Finally a jumper that works for me! i am 5'6 but i have a long torso so most jumpers ride up in an uncomfortable way. this one is perfect. the material is light and perfect for warm weather. the top is very adjustable for all different chest sizes. i personally think the pant length looks better if you are under 5'8"" because it comes down closer to the ankle but then again if you have long thin legs you might not mind the bottom hitting at your calf. i can't say enough good things about this jum",5,1,11,General,Bottoms,Pants +1092,33,Soft and sweet,"This is a very cute dress, with a comfortable fit. my only gripe is that i could not get the top of the v-neck slip to stop shifting to the side.",4,1,9,General,Dresses,Dresses +1059,39,Love the back and button shoulder straps,"I tried on xs regular and xxs petite, i would need xs petite (115 lbs, 30dd chest, 5'1.5""). + +love the cut, very cute and flattering, the tie back is styling... but this piece is very trendy, and so i decided to pass as i am not sure how often i could wear it to work. will wait to see if it goes on sale. patter is very fun, nice for the beach or casual brunch with the girls. i do still like it.",4,1,6,General,Bottoms,Pants +863,46,Great find on sale!,I can't believe this top hasn't sold out. it is a great casual top that will go well with anything. i agree with previous reviewer that talked about sizing up to cover straps. i did size up to a large but it didn't get huge around the midsection. i got the red and it will go great with pilcro khakis or denim.,5,1,0,General,Tops,Knits +872,33,Nice try...,"This top was so pretty online! unfortunately it did not work for me- the front was a bit more shapeless in person, though the back was gorgeous, with a button gather at center. the color appeared yellow online, but was a bit more green in person. also, the armholes were very low, so it would need a camisole or no bra.",3,0,0,General,Tops,Knits +1080,46,Fantastic everyday dress,I love this dress! it is an easy throw on and go dress. the fabric is very soft and the cut is faltering. fit is true to size.,5,1,1,General,Dresses,Dresses +1080,32,"""tweed"" dress","I bought this dress for my sister's bridal shower, and it was a hit! i was a little bit surprised when it arrived because i did think it was going to be actual tweed - it is not. it is simply a tweed pattern! i think it makes a little bit more casual, but it was a fun dress for an afternoon bridal brunch! one thing i wish it had - pockets!!",4,1,1,General,Dresses,Dresses +1110,49,Love!,"Not sure why this says ""online exclusive"" as i bought it in green in the store. i also saw it in a mustard color at another location. but in any case, +this is an adorable and flattering dress. fabric is kind of a chino. weighty but not too heavy. great color and design. runs a bit small. my normal size was snug and i thought that in the summer heat i would not want it that clingy so went up a size. i love it and would buy it in more colors!",5,1,2,General Petite,Dresses,Dresses +1080,38,Great dress!,"This is a great dress! it's cut nicely, is flattering, and it's not too short. if i put it on, i look put together in a matter of seconds. the dress fits true to size. one thing, i would agree with the other review that this is not really ""tweed."" instead it is made out of a patterned stretchy material that is a little thinner than tweed. the colors are really beautiful, and while the blues and reds are more intense in real life, it looks terrific.",5,1,2,General,Dresses,Dresses +863,39,,,5,1,0,General,Tops,Knits +1092,53,Sweet and pretty,"I found this to be a very feminine and flattering dress. it is prettier in person. i have the ivory and black print. i agree that it takes a bit of effort to get the slip positioned properly. i might wear a different slip, however i was able to get the slip to stay in place. the print and fabric are a nice quality. i typically wear an xxsp or a 0p. i bought this in the 0 regular because i like my dresses a little bit longer. i think it runs just a little bit small.",5,1,4,General,Dresses,Dresses +828,39,Super soft and relaxed,"Got this in the ""dark blue"" wash; there is significantly less color variation than pictured online; it's a medium wash, and incredibly soft. i typically wear m or l in this brand due to very broad shoulders and muscular biceps: if you have a similar frame and you typically wear one of two sizes, go with your larger size. +this feels incredibly silky. it's lightweight, so it can be worn (almost) year-round and will layer well over say, a tissue-style turtleneck in the winter. it's longer in the b",5,1,16,General,Tops,Blouses +668,54,,"Perfect for when you're a guest at someone's home , having guests or just lounging ! prettiest set you'll ever own... you'll feel as if your on vacation even if you're not. i wouldn't travel without this set !! highly recommend. love.",5,1,8,Initmates,Intimate,Sleep +1092,42,,Horrible fit not true to size again aline outside of the dress and a very tight camisole underneath,1,0,15,General,Dresses,Dresses +863,69,,This was my first time ordering or even knowing about retailers. what a pleasant surprise. i will shop often!,5,1,0,General,Tops,Knits +872,20,Casual or dressy,"This is a really great top. it is really soft and made very well. it could be a casual top with jeans, or, dress up with some chunky jewelry and cute heels. i wasn't sure which size to get because i mostly get mediums amd i sometimes get a large. i ended up going with a large and it seemed to be just a little too big, but it doesn't have that look at all. it looks so much better in person than on the computer. overall a very cute top!",5,1,0,General,Tops,Knits +1027,44,Great pants,"These are such under-rated pants! i love the fit, style, fabric & everything about them. they are the perfect weight & can be worn with boots, sandals, flats, etc. they run tts - i got my usual 26. get yourself a pair while they last. you won't regret it.",5,1,2,General,Bottoms,Jeans +1092,54,Very tight on top!,"The design and workmanship of this dress are outstanding. the fit may be tricky for some. i am small busted and the bust and even the neckline are very tight and fitted. still flattering, though. i typically wear a 0 or 2 in dresses and purchased this in a 2. i could have worn a 4. 5'8 127lbs. the length is perfect as i purchased this in navy for a wedding. the navy cami slip underneath is top quality with adjustable straps and snaps to hold them in place at your shoulder. overall a sweet and dr",4,1,2,General Petite,Dresses,Dresses +1059,39,Perfect summer statement piece,"I've had a hard time finding the right jumpsuit and haven't ha a lot of luck with retailer clothing lately, but this is perhaps my favorite retailer purchase of all time. i'm petite and busty (5'2"", 34c/d) and was pleasantly supposed at how well this fits. the pattern is a bit faded (like the best kind of vintage find) so it works for someone short like me. and because the back has a tie closure, it can adjust as needed -- i'll be wearing it with a sports bra that crosses in back with 4 straps, whic",5,1,1,General Petite,Bottoms,Pants +1059,41,Perfect!,"I don't have anything but raves here. this is a perfectly proportioned jumpsuit of high quality fabric in a neutral color (which is like a denim looking blue color with a beige starburst pattern, much, much nicer in person than in the product photo and has a really neat slightly nubby texture that adds interest). it's easy to get in and out of. the back of the waistband is elastic and stretches, so the only thing you have to do is tie the back, which is really easy. the top (as someone menti",5,1,4,General Petite,Bottoms,Pants +872,25,One of my favorites!,"This is one of the most flattering tops i've ever owned. i'm a little confused by the other reviews, because the model in the photo doesn't have it tacked in the back. you can see on the photo of the back, there's a button to pull it in which makes it so incredibly flattering. it's soft and beautiful, but very delicate. i'd wash it separately and carefully, and rarely :) i actually had to return my first one because of a hole in the material. overall, one of my new favorite tops.",5,1,1,General,Tops,Knits +872,25,Very cute,This is a very cute top. my only reservation is that where the elastic is on the side sticks out a little more than i would like. it's not that big of a deal though.,4,1,0,General,Tops,Knits +1092,48,,"I love this dress. it is beautiful , feminine, and fits perfectly. i am a 4 in a dress size. i have long wait 5,7. . very happy in this simple yet unique dress.",5,1,0,General Petite,Dresses,Dresses +1080,33,Didn't meet my expectations,"The dress didn't meet my expectations, specifically the color, the texture, and the cut of the dress. although the dress was very well made, it just wasn't right for me.",2,1,1,General,Dresses,Dresses +1059,36,"Easy, breezy, beautiful","This is my favorite jumpsuit purchase of the season. flattering, casual look. well made light material. easy to dress up or down. can't wait to wear it again!",5,1,0,General Petite,Bottoms,Pants +1080,28,Adorable dress but different than pictured,Agree with other reviewers that the dress doesn't look like the picture so retailerpligie should really change it out. however i'm keeping the dress since it does look cute on. definitely more yellow in it than you can see.,4,1,0,General,Dresses,Dresses +1059,37,Very light and comfy but runs large!,"I usually don't do jumpsuits because i'm 6 ft tall and the torso is usually too short. i saw this one in a store though and decided to try it on. it's very light and soft cotton and fit great lengthwise! overall, the fit is way too large though. i'm usually a size 12 or 14 and i was swimming in the xl - as in the waistband was at least 4 inches too big. the back of the waistband has elastic so if you aren't sure what size to get, size down. i got a size l and it's still a bit too big - the back",4,1,0,General Petite,Bottoms,Pants +1092,39,Laura ingalls eat your heart out,"Retailer is totally killing my wallet because i can't resist these modern-city-meets-prairie-boho dresses. i bow down to the textile designers who created this print, it's stunning. as for reality vs. model shoot, it's pretty much what you see--the colors are spot on, the outer dress is sheer, the bodice is slightly fitted, with a fuller skirt that doesn't poof too much. all poly construction with no stretch whatsoever. i had a bit of a struggle getting the outer dress over my shoulders but once a",5,1,10,General Petite,Dresses,Dresses +1110,39,Soft,"I like the soft green color, the chino fabric and the casual vibe this dress exudes. perfect for spring and early summer. runs tts but may be snug for bustier gals. wish this had pockets.",5,1,0,General Petite,Dresses,Dresses +1110,38,,,5,1,0,General Petite,Dresses,Dresses +1059,52,Perfect jumpsuit for all sizes,"I have an upside-down triangle shape. i am a 4/6 on the bottom and a 10/12 on top. i have a short waist. i have very slim hips and virtually no waist. so, a typical jumpsuit or romper really doesn't fit me. this one is the exception! likely because it ties in the back, but the s fit me perfectly. the bottom half is easy, but not oversized. the top half of the jumpsuit is adjustable, so there is no issue with size. i am 36c on top, but i think that i could pull off the top, without a bra. you can",5,1,1,General Petite,Bottoms,Pants +1033,40,,,5,1,0,General,Bottoms,Jeans +633,25,,Sleeves were a bit too long and the size was too big but it's really cute and if they had a smaller size i would definitely have exchanged!,4,1,1,General,Bottoms,Shorts +1059,53,,"Wanted a jumpsuit that didn't look stupid on a 50+ year old -- this is it! ordered a large and it is a little loose around the waist, but still fits and is comfortable. extremely well made and very cute. the only complaint is that it is difficult to tie the back.",5,1,1,General,Bottoms,Pants +1059,55,Way too big,I usually buy xs or s in retailer clothing and the pieces usually fit perfectly. this time i purchased my first petite item because i was worried the length of the pant leg would fall at an unusual spot if i didn't. i'm 5'4 and i ordered a petite small. i was swimming in it. the elastic in the back was so loose you could see directly down my pants. i wanted to love this but unfortunately the size did not work for me.,2,0,0,General,Bottoms,Pants +1092,36,,"I fell in love with this dress the second i saw it in store. i haven't experienced any of the issues others have. i love the short, flowy, feminine look and i think it can be dressed up or down. it would be great for a summer wedding or cocktail event, or dressed down as a day dress with a jean jacket. i've received compliments every time i've worn it.",4,1,0,General Petite,Dresses,Dresses +872,64,A unique style ter,"I love wearing this. it is a little slice of summer, which i am desperately hanging on to. the color pops, it's so very comfortable, & the back is a work of art! can be dressed up with a pencil summer skirt, or down with capri style pants.",5,1,0,General,Tops,Knits +1080,22,"Spandex, not tweed dress","I was so excited to receive this dress only to come find out that it was not tweed, not the same colors as the picture, spandex material, the fit runs smaller than most of their dresses and the sleeves are capped. i love retailer and prefer their clothes above all other brands but i was extremely disappointed in this dress.",1,0,0,General,Dresses,Dresses +985,32,So comfy and stylish!,I bought this for myself and my mom and we both love it! i got it in a small and almost wish i had gotten it in an xsmall. it's super comfy and appropriate for work.,5,1,0,General,Jackets,Jackets +734,39,Beautiful but sheer,These pajama pants are beautiful but very sheer and very delicate. not ideal for a mom with kids,3,0,0,General Petite,Intimate,Lounge +933,68,Wonderful sweater!!,"The sweater is a great fit and the styling is very original and wonderful. it will be great with leggings, jeans, or even a straight skirt. i would definitely recommend this sweater.",5,1,1,General Petite,Tops,Sweaters +1046,46,Disappointed,These leggings are loose fitting and the quality is just not there.. i am returning the item.,2,0,0,General Petite,Bottoms,Pants +1055,74,Love it,Thee are beautiful pants. so soft to the touch. true to color. ca.t wait to wear them in the fall.,5,1,0,General,Bottoms,Pants +1094,39,Nice enough,"For a special occasion, but i didn't keep mine: + +i ordered petite and it was short on me, too short for my comfort +color is nice, rsty burgundy, i expected it a little more 'red"" +fastening is a little more complicated, though you don't have to make it complicated, it has hooks at each end of the hole in the back,. + +but: it is a nice cut, flattering to the silhouette, i might order a regualr size if i needed it. the body is structured, mateiral is not stiff, but also not soft. the arms is",4,1,0,General Petite,Dresses,Dresses +1055,57,Great cut,"I love the cut of these pants! i'm very curvy and the high waist and wide leg is perfect for me. these hang off the hips beautifully. i'm 5'2"" and the petite is perfect with heels. i didn't have to hem them. the one drawback is that they get very static clingy which is frustrating. i wear them with a cream tie blouse and wedges. they're really comfortable.",4,1,0,General,Bottoms,Pants +1095,35,Beautiful but won't work for me,"This dress is beautiful. the fabric is light weight but textured and interesting, and the purple is gorgeous. the soft pink was a bit more orange than i expected, but not a deal breaker. the problem i had with the dress was fit around the arms. i sized up and was glad that i did because it runs small up top, but because the straps come in a bit around the arm holes, it creates armpit fat, which is not a problem i usually have. i could wear the dress with a sweater, but you wouldn't be able to se",3,0,0,General,Dresses,Dresses +1095,31,"Beautiful dress, just not for me","For reference: 5'3, 130#, athletic/muscular body type (broad shoulders, slim hips) +i bought my usual size 4 and it fit perfectly. like other reviewers said, this is a very fine corduroy fabric. the thicker fabric really helps smooth any bumps and bulges, and the a-line skirt was flattering. overall i liked this dress, but the color didn't do much for me. because it just wasn't ""wow"" on me, i found little things to nitpick. the bodice is very flattering, but the way it cuts in shows bra-straps (",4,1,3,General,Dresses,Dresses +985,34,Great cozy sweater,"I initially bought the red and blue sweater in a medium. i usually wear a large and the medium fits perfectly and is still a bit baggy. i'm tall (5'9"") and so i love the length of the sleeves when they are unrolled. it's a very versatile piece. with sleeves rolled down you can fold the collar so the red is out of sight and just have a navy blue sweater. either look is nice. i loved it so much i bought the black and brown version. also, the fabric doesn't feel thick but it is very insulating and",5,1,0,General,Jackets,Jackets +985,59,This is a must have!!!,I absolutely love this shawl/jacket! i usually use it as outerwear and it is the perfect piece for those in between weather days in new england when it's too cold for winter wear and not warm enough to go without a jacket. the black/brown works great with whatever you're wearing. so versatile and i love that it has pockets!,5,1,0,General,Jackets,Jackets +501,41,,"This robe is so pretty, i kind of feel like a movie star when i wear it! the embroidered flowers and trim are a very nice touch. the fabric is very light and soft, i'm sure it will feel nice and cool on those hot summer nights ahead. the fit is true to size and is actually a bit longer than what is shown on the model. i am extremely happy i decided to make this purchase.",5,1,3,Initmates,Intimate,Sleep +1022,44,"Love these, so comfortable!","I usually wear stevie's in ag, but when i saw the prima was on sale i decided to give it a try and i""m so glad i did! they came today and i tried them on, i will say the rise feels a little higher than mid-rise, but it's so soft and stretchy i didn't really care. they're definitely skinny but with so much stretch they feel like a comfortable legging that doesn't fit quite so tightly. the color/wash is great too. for this price, these are awesome. i ordered a 29, same as my stevies and it fit per",5,1,2,General,Bottoms,Jeans +1094,25,Gorgeous,"I ordered this dress for a special event and i am so incredibly happy with it! i am 5'1"", 97 lbs, 32b and ordered a 0 petite. fits like a glove. the dress has a slight give to it, but main dress fabric is a thick material so order your usual size. fits close through the waist and flares out below. the length hit above the knee so not too short, although i wouldn't want it any shorter. my main worry was whether my bra would show in the back, but i had no issue. overall, the dress is stunning with",5,1,6,General Petite,Dresses,Dresses +501,60,Buy this robe!,"Buy this robe before its gone! my friend and i each bought this robe... it feels amazing and makes a girl feel pretty!. i bought the xs/s (34c, 26"" waist), but i tried on the m/l and could have made that work too. love!",5,1,0,Initmates,Intimate,Sleep +1095,38,Cute dress but courderoy is too heavy feeling,"The pattern is cute and vibrant, and the shillouette is simple, but the courderoy felt too heavy and stiff and it was too small around the chest for me (36dd).",4,1,2,General,Dresses,Dresses +933,52,Extra sleeves?,"Cute enough, but i couldn't figure out what to do with the tie that didn't make it look like an extra set of sleeves, oddly placed.",2,0,0,General Petite,Tops,Sweaters +1055,64,Loved them but...,"I love these pants! for reference i am 5'1 1/2"" and 104lbs. so definitely petite. i ordered the extra small petite- way too long and huge around the hips.- i checked to see if maybe they sent the wrong size. hemming would not have been a problem and i even considered having them altered - but it would have been too difficult with the pockets and the pleats. unfortunately they do not come in xxs p so sadly they are going back. order a size down.",4,1,2,General,Bottoms,Pants +501,29,,I've been looking for a nice affordable robe for awhile and this is the one! it's so soft and the design makes you feel fancy when you wear it. perfect for lounging doing my nails or wearing a face mask.,5,1,0,Initmates,Intimate,Sleep +1094,25,"Great quality, but not for my age","This dress is well made and of good quality it just looked a little too old on me. the skirt was heavy and the fabric was cozy, perfect for a fall outfit.",3,0,0,General Petite,Dresses,Dresses +985,67,Love this,"Love this sweater/jacket. fit is good and the colors are just right, not to bright and not boring. the shawl color takes a wee bit of adjusting but is worth the extra minute or so. also has a hood built into shawl that when not in use can not be seen, very cool. have worn it a couple of times and always get compliments.",5,1,0,General,Jackets,Jackets +1095,55,Stunning late summer sun dress,"This dress is a keeper. fits true to size, comfortable and love the pockets. it can be a casual day dress or add some jewelry for a night time dinner out. i was concerned with the fabric being a velvet material but is very light and comfortable",5,1,0,General,Dresses,Dresses +711,61,Very light and lovely,"This pullover blouse is a real winner. it is soft and figure flattering, but not too clingy. the neck looks good open or closed with the small button. all in all, it's just a very good design. +note that the notched thumb holes are completely optional. the holes disappear, without being visible, into the sleeve when they are not being used. also, the sleeve pulls down when the thumb holes are used, so there is no extra length in the sleeves (as may be suggested in the photo).",5,1,1,Initmates,Intimate,Lounge +933,43,,,5,1,0,General Petite,Tops,Sweaters +501,46,Lune embroidered robe,Really striking. even prettier in person. color is beautiful. told my husband this is a half-way-to-christmas present!,5,1,0,Initmates,Intimate,Sleep +1022,53,Winner!,"I love ag jeans. these jeans fit snug but not confining. they have some stretch to the material so that you can move with ease. i love the way they fit my body with one exception. unfortunately they did not have the petite available so the length is about 3 to 4 inches too long on my 5'3 frame. the dark blue makes it acceptable for casual friday (yay). i am 5'3 102lbs and even though i will have to hem them, the overall fit was great!",5,1,0,General,Bottoms,Jeans +629,53,"Felt short, and i'm short","I tried this in a size medium. i have purchased several rompers this summer and that's usually the size that fits (i'm 5'4"" and hover around 130lbs). i'm short waisted. i don't have a long torso but this just fit. if you look at the model in the pic, she's bent to one side giving the look of blousing at the top, but if you stand upright, it's very straight and smooth. i could get it to blouse over the waist but then i had to pull the bottom up so high the shorts became way to short. i like the m",3,1,3,General,Bottoms,Shorts +1095,49,Lovely pink and purple for august,"It's impossible to tell, but this dress is made from very fine wale corduroy. the neckline is very flattering for a smaller chested woman, with a sharp cut (that makes a strapless bra required for peace of mind). the dress does have snaps to hold your bra straps in, but i went ahead with a strapless. the back has a neat square cut. the skirt is slightly longer, on both sides, which gives the dress movement, even though the material is heavier than typically used for this season or cut. i wore it",4,1,3,General,Dresses,Dresses +1095,54,,"I wanted to love this. the color in the picture is pretty true-to-life. the top fit well, if a bit smaller than usual, but the skirt piece was way too flared for my petite (5') frame. it was too voluminous compared to the top of the dress. the material is very soft, but thin, and is lined, which was a pleasant surprise. sadly, a return for me.",4,1,2,General,Dresses,Dresses +1095,42,Goofy skirt on this dress.,"This dress has pretty colors. the top fit well but the bottom looked like an upside down umbrella. it has enough material to make 2 skirts and the big pockets on the sides make the skirt stick out sideways. the photo of model is from side, not the front. very unflattering on me.",1,0,0,General,Dresses,Dresses +985,63,,"Love it! easy to wear, true to size. there is a slight texture which makes it very cozy",5,1,0,General,Jackets,Jackets +1095,39,Color not as pictured,I returned the dress because the color was not as pictured in the online photo. i did not like the color.,2,0,0,General,Dresses,Dresses +872,47,,"I purchased this top in the navy. the picture makes the top look like an interesting blue with some purple in it, but in person the top is just... navy. the lace and fabric are soft. it fits true to size; i almost always wear a small and the small fit fine. it wasn't quite my style, but it's a pretty top that will be great for spring and summer.",4,1,8,General,Tops,Knits +872,39,Love the color and style,"I bought this in the sable green. you can wear this blouse tucked in, or out if you're wearing something lie leggings. it is comfortable and the color is very flattering.",5,1,2,General,Tops,Knits +872,38,,Beautiful lace detail and very soft material. runs a little big.,4,1,0,General,Tops,Knits +935,28,Wanted to love it,"Unfortunately, this sweater let me down! i love retailer, especially their sweaters, but this one fell flat. it was tight on the arms, and didn't hang well on my body. it was odd in length and added about 20lb to my frame. i kept it because i wanted to force it to work, alas, i just donated it. hopefully it fits someone else better than me..",2,0,0,General,Tops,Sweaters +872,28,Too baggy,Tried on the xxs petite and still felt that it looked too boxy and baggy on me. cute concept but poor execution,3,0,0,General,Tops,Knits +872,65,,"This top was originally way overpriced. so i ordered it on sale for half price. still overpriced. it arrived yesterday and frankly i am disappointed. the quality is not great. it is like a jersey type material. doesn't look like the photograph at all. i like the color, but frankly, that's about it.",2,0,4,General,Tops,Knits +1126,43,"Yes, but!","I am keeping this because i got a great deal (30% off sale price), it fits great (i alternate between xs and s, went with s), and overall it has nice quality (thick fabric, secure toggles, etc.), but--what is with the lack of lining? i would hesitate to buy anything from this brand at full price because of that. there are just large seams on the inside, which is tolerable because of the type of fabric, but come on.",4,1,3,General,Jackets,Outerwear +1126,37,Surprised it hasn't sold out,"I received my coat today. in love! it is so flattering in so many ways. it may not be form fitting, but i love all the details and i'm a sucker for hoods. this is a great fall/winter coat especially if you live in the south. it will probably only work as a late spring/early fall coat for you northern ladies. my only compliant is that the arms are too long, but i'm only 5', so it'll possibly be the perfect fit for someone else.",5,1,0,General,Jackets,Outerwear +872,48,Go anywhere top,"This is a great ""go to"" top. it isn't too low, too tight, too dressy or too casual. i'm 5'1 and ordered a small petite. it fits perfectly, especially under the arms, (where tops always show my bra) & it doesn't go ""too"" low. i have to admit, i purchased the dusty rose color, i'm not sure how great it complements my olive skin, but i love it anyway.",5,1,0,General,Tops,Knits +872,31,Not ideal,"Ordered this online in the pinkish color. the material is a little thin. as a busty, curvy lady this one just didn't sit right, ran a tad large, and looked boxy. if you have a thinner frame, may be a better look for you. detailing is nice.",3,0,0,General,Tops,Knits +872,42,Great gift!,I ordered this for my friend and she loved it!,4,1,0,General,Tops,Knits +872,64,"Cute top, but not worth full price","I'm a bit disappointed in this top. i'm keeping because retailer's shipping rates are obnoxious and i don't have a store near me. by the time i pay for shipping both ways, i could have paid for 1/2 the shirt. the loft has some very similar tops for about 1/2 the price. i love meadow rue, and their material is fabulous, but the design is off on this one. you can't size down because the armholes and top are fitted, but the bottom is a tent. not my usual style, as i'm short, with a short waist. this",3,1,11,General,Tops,Knits +868,32,Gorgeous white summer tank,"I got this in white and was surprised to see that it fits me. i am very petite but with a 32d bust and purchased the xxs. this fit me perfectly! the fabric is soft and kind of silky, the straps were not too long, the hem hit just at my hip line. i am buying the other color!",5,1,0,General,Tops,Knits +1126,36,Lovely fall coat,"I just received this coat and love it. the only downside is that online the color looks like a royal blue (which i wanted) but in truth the coat is a basic navy. this was not a deal breaker for me. i love the details. it is not lined as someone mentioned earlier but it's not meant to be a heavy winter coat. i can't wait to wear it with jeans, boots and a striped or plaid tunic.",4,1,0,General,Jackets,Outerwear +868,28,Sent straight back,"I ordered this top online during the mother's day sale, thinking i had found the perfect white staple tank i wanted for summer. i had this top on for barely five seconds before i knew it was going straight back. the quality of the fabric and the overall design are both very good. but the problem is that the top comes with an under-layer up top. this is normally a good thing; extra coverage in a sumer top generally means you ca go braless. the problem is that the top layer of the shirt is so shee",1,0,2,General,Tops,Knits +1072,36,Beautiful!,I love this dress even more in person than in the photo! it is more sleek and fitted than it appears on the model. the seams are flattering and the fabric is lovely.,5,1,2,General Petite,Dresses,Dresses +868,50,"Just ok, very voluminous","Purchased this should in the blue motif in size small. i am usually between a small and medium in shirts, 36c broad shoulders. the fit was fine in the small. however, i had a few issues with the top: 1) the blue motif looked actually like a faded blue (as if it had been washed quite a few times and looked worn), 2) the front mid/bottom section laid strangely and gave me a maternity look, and 3) the back has alot of fabric (see back of tank in white motif) and was very voluminous. for me, it wasn",3,0,6,General,Tops,Knits +1009,46,Perfect retailer,"I fell in love with this online and i'm so thrilled that it's even more beautiful in person. it is a stunning, very dark teal velvet with the most gorgeous embroidery. perfect fit, quality, and nicely lined. a keeper for years to come! i think it's true to size (for reference i'm 5'1, 100 lbs and the 0p fits perfectly)",5,1,2,General,Bottoms,Skirts +964,19,Great layering piece,I bought this vest hoping to be able to throw it over long sleeve tops for fall and it's perfect for that- it adds a bit of detail with the buttons and pockets on the vest!,5,1,0,General,Jackets,Jackets +519,37,Love these yoga crops,"Unbelievably soft fabric that doesn't feel like it will pill. i ordered dark grey. i'm 5'3"" 130 (just after baby) and size m fits well, super-flattering. doesn't smash my buns. the seams are in all the right places to flatter. styling is between ballerina and badass, as i think the ankle wraps look a little tough. i highly recommend.",5,1,0,Initmates,Intimate,Lounge +872,54,Classy,"Hi, this top is absolutely gorgeous in my opinion. very feminine. it has a small amount of swing without a large amount of fabric. love it.",5,1,1,General Petite,Tops,Knits +872,44,Great top,Love this top. looks much better on than the hanger. the color and fabric are very nice.,5,1,0,General Petite,Tops,Knits +868,36,So comfortable and airy,"I was hesitant to buy this top after reading previous reviews, but i love it! granted, i am two months postpartum so i am looking for tops that are airy (it's summer in socal) but cover up my tummy. the material is soft and stretchy and it does have a loose shelf bra type inset---so not a real bra but at least something there. i wore a free people bralette with it and it looked perfect! really happy with this top!",5,1,0,General,Tops,Knits +872,48,"Very cute, runs large","I like the casual, yet detailed look of this piece. it looks great with crops. the casual tie string makes the piece feel very laid back, but the details are so pretty. i have it in lavender. it looks way better in person. saw it at the store and grabbed it immediately.",4,1,0,General Petite,Tops,Knits +1078,35,,"Absolutely in love with this dress! perfect to wear to work or for a casual brunch or cookout. i'm a 34b, 27"" waist, and 36"" hip and 5'3"" and went with the xsp. very impressed with the quality and well worth the sale price.",5,1,0,General Petite,Dresses,Dresses +828,49,Very nice!,"This top works very well with a white or green cardigan for work. the color is more green than in the photo and it is wider on the bottom. it hides a non-flat stomach very well without looking matronly. i ordered a small petite, but i am heavy on top so i did not find the armhole problem that the other reviewer had. my only con is that i don't love the high-low thing that every retailer top seems to have these days, but i can live with it.",4,1,1,General,Tops,Blouses +827,44,,"Great material that drapes nicely. super comfy, feels cool but it's a thick material--not at all see through. so happy i purchased this. and super easy with the snap buttons, but the shirt is very well made and high-quality material. would look great on all sizes and shapes. i'm 5' 4"" and about 140, small chest. normally i'm a s or m with tops but bought this in a m because i like a slightly oversized shirt, though it's also made to be looser and longer. still, at 5' 4"" i'm not swimming in a m.",5,1,2,General Petite,Tops,Blouses +865,37,Runs big,Pretty design and good quality but the medium was very balloony at the bottom. fit my chest alright (34c) but flared out way too much at the bottom.,2,0,0,General,Tops,Knits +1068,73,Love these pants,I am petite so ordered in the store and they shipped to my home. i ordered a 24p and they fit great. they stretch a tiny bit. goes with a lot of tops and they are light weight which is great with houston westher,4,1,0,General,Bottoms,Pants +563,56,Absolutely gorgeous,"This gorgeous dress is what retailer is all about. natural fibers like silk and rayon and cotton, unusual beautiful prints and colors, not your average day to day find. i bought this in my usual size l, and while i could use a bit more room in the top, it works either unbuttoned one button, which shows the beautiful turquoise slip that comes with it, or, i am going to stitch it down the front so the buttons won't open and the top won't gap at the bust. i am 5'5"" and the dress is a perfect l",5,1,8,General,Trend,Trend +865,26,Material too flimsy,"I wanted to love this as i love bright colored patterns. however, when i received the pattern was different than the one pictured and didn't appear as bright and the material was much different than i expected. could almost see through the shirt where it is white and is very thin. + +also, i have a larger chest and a smaller waistline and the cut of the where the peplum began made me look larger than i actually am. i am a 36ddd and i normally where a size medium. a medium fit but like i said made",2,0,1,General,Tops,Knits +865,35,Cheap fabric and terrible fit,I bought this shirt to wear under a black skirt suit. the fabric does have some stretch to it however if you have a normal to above boob size ... beware! i have a 36d chest and the front of the shirt hit me to the point that i then looked preggers. it was one of those situations which reminded me why i do not buy empire dresses. in addition the fabric felt like something my grandmother would have used back in the 60's. it was a thick polyester type material. i think this shirt would still work f,1,0,0,General,Tops,Knits +1068,50,Light weight capri,These are nice and light weight and comfortable,4,1,3,General,Bottoms,Pants +862,54,No,"This top did not look at all like it did on the model. i thought it would be slightly loose through the hips but instead it was snug on top and very very very loose. great for someone who is pregnant. which i am not. +returning.",3,0,6,General,Tops,Knits +865,27,Cute!,"This top is cute! it adds a pop of color to my day and seems to be of high quality. the colors seem more vibrant in person and the material is quite soft and stretchy. as another reviewer pointed out, the peplum is only in the front! it sounds really weird but i don't really mind the look because i'll be wearing a jacket over it. i'm usually a size 12/14 with a 36dd bust and the large fits beautifully.",4,1,1,General,Tops,Knits +865,53,Nice fit.,"This is a very slimming, well-made, nice fitting top-i just disliked the colors. they did not look good on me. otherwise this is a very nice piece!",2,1,0,General,Tops,Knits +857,54,Mis-sized,"This is a great looking top but the sizing is way off. in the photo it looks a little oversized. i am normally a medium but this one was very small, sleeves several inches too short and it is more like 25"" long instead of the 35"" listed on the description. in the right size i think it will be great but i'm not sure whether to go up one size or two.",4,1,8,General Petite,Tops,Knits +865,64,Beautiful print...weird fit,"I love the peplum tanks that retailer puts out, but sadly this one did not work for me. the print is vibrant and the colors are even brighter in person, the the material made it look cheap. the fit in the bust was off - i felt that it cut too much into the bra area. and the poof part of the peplum hit me at a weird spot on my torso. really wanted it to work, but maybe it would look better on someone more slender/taller than me (for reference i'm 4'10"" and usually wear size l in retailer)",3,0,0,General,Tops,Knits +287,53,Nothing special,"It's so hard to tell exactly what this sweatshirt looks like from the online photos. it has a white and pale sky blue tie dye look all over with a sea foam green floral print. runs tts. the floral print isn't centered on the one i received, but for $11 i'll be keeping it.",4,1,0,Initmates,Intimate,Lounge +865,59,Not for busty women...,"When i got this top in the mail i was impressed by the colors. they were very vibrant and i loved the feel of the material as well. however the top did not look good on. i have an hourglass figure with a dd+ bust, and the peplum just made me look like i didn't have a waist. the arm holes were also very big and showed my bra. overall i think this is a very cute top, but would probably be better on women with more athletic figures.",4,1,0,General,Tops,Knits +1078,35,Snags easily,"I'm 5'2 and bought the dress in a petite medium. i like to buy clothes that i can wear to work and this dress was almost too short. if it were any shorter, it wouldn't have worked. if i were to buy it again, i'd probably go with a non-petite size. also, i ordered the dress online and i found two snags in it as soon as i pulled it out of the box. i don't think they will be terribly noticeable, but just beware that this dress will apparently snag easily. i plan to wear it with a purse without meta",4,1,1,General Petite,Dresses,Dresses +1068,41,Not the same!,"I usually buy a pair of these kind of pants every year from this brand. they are lightweight, sturdy and very flattering to my curvier body. this brand can run big, so i usually buy a size 2 rather than my normal size 4. i was going to wait it out and let someone else try them first, but then i caved and ordered them in two sizes: 26 and 27 because they didn't label them 2, 4, 6 etc. anymore. these pants still look well made and have cute little details, but they are bigger than ever!! the 27's",2,0,6,General,Bottoms,Pants +287,32,New fav spring top,"I picked this up on sale and was glad i did - the material is just the right thickness for some of the chilly days we have here in spring in the northeast. the fit is right on, but size up if you are unsure or inbetween. the detail down the back is adorable and adds a point of interest to this sweatshirt. the fit is boxy - but i think it compliments and balances the overall girly design.",5,1,1,Initmates,Intimate,Lounge +1068,42,Great casual crop,Great casual pant for the summer. wish there were more colors. white or beige would be great. comfortable. great fit. sizing is consistent with my normal designer denim sizing; 26. i'm also 5'3 and the regular size pant is just right for me.,5,1,0,General,Bottoms,Pants +91,27,So disappointing!,"I was so excited to get this robe in the mail but was beyond disappointed when i opened the package. the fabric is extremely stiff and thin. the fabric felt like something curtains would be made out of and the white background was see through. the robe is very short and cut small in the shoulders, therefore it looked like i was wearing a piece of children's clothing. i also ordered the matching pj pants but didn't even take them out of the package after seeing how rough and see through the mater",1,0,12,Initmates,Intimate,Sleep +828,32,"Runs large, muted colors","I bought this tank for work, but the color of the print is slightly muted compared to the photo. i usually wear a xxs or xs (i am 100 lbs, 5'1) and i got the xs thinking it will be loose, which i wanted. the arm holes were down to my waist, and it was also unusually wide. the quality of the fabric is nice though, not to heavy and not too thin.",3,1,1,General,Tops,Blouses +1068,42,"Cute pants, but size down","I just received these in the mail, but had to send them back to the store because they are too big. i usually wear a 28 and sometimes even a 29 in most ag and mother jeans. the 28 in these were loose in the waist and overall baggier than shown in the picture. i ordered size 27, so hopefully these will fit just right since they are really cute. the beige color is just as pictured and almost a rust color which goes well with a dark grey top as shown.",5,1,5,General,Bottoms,Pants +1078,34,Too boxy but nice idea,"This dress did not work well on my figure. i have a small waist and broad hips, and the dress (size m for 140 lbs, 5'8"") was too boxy. i didn't have objections to the fabric, like other reviewers - honestly, even if there were a snag or two, the fabric is kind of rustic and i don't think a snag would look terrible, depending on where it is. i should note that one of the ornamental buttons immediately fell off the dress upon arrival. my friend got the same dress in a size s and it worked better f",2,0,0,General Petite,Dresses,Dresses +865,47,Not sure,"I love the colors of this top. it does run very large though. when i received my usual small i felt like i was swimming in the top, not fitted at all. the material is a bit funky too - seems a little lower quality because of the fabric. will return and try a smaller size if there is one available at the store and see if i change my mind.",3,0,0,General,Tops,Knits +1078,53,Beautiful and classy,Wore this dress for easter dinner and received many compliments. it is delicate and if not careful the diamond pattern can snag. i loved the comfort and ability to dress up or down. i ordered the regular instead of petite as i wanted the length at my knees not thigh high. and it fit perfect at 5'4.,4,1,5,General Petite,Dresses,Dresses +563,53,Beautiful and unusual,"This dress is beautiful and unusual. i think the colors shown in the picture are a little brighter than the dress i bought...the turquoise and gold seem slightly more muted in person, which isn't necessarily a bad thing. there are sequins along the shoulders of the dress that you also can't see in the picture, but they aren't gaudy or too stevie nicks-bohemian. i didn't find the bodice of the size m too tight as another reviewer noted...it's' my normal size, and though i'm a little chesty (32-34",5,1,0,General,Trend,Trend +1078,52,Classic design with drawbacks,"I ordered this dress in two sizes, pxs and ps. they both arrived in a timely manner but the pxs was snagged upon arrival. there were a few other reviewers that stated the dress snagged easily but i loved the classic look of this dress so i thought i would take the chance. unfortunately i had to take both back to the store because the potential for snagging the fabric was too high even considering the sale price. also, the dress comes with a cotton slip but the slip for the pxs was tiny while the",3,0,1,General Petite,Dresses,Dresses +287,52,Unique take on sweatshirt,I liked that this was a unique take on a sweatshirt. pretty seam down the back and weight of material. i'm going to return it because i wish it was a little more of a loose/baggy fit and under-pattern is darker than i thought.,3,1,0,Initmates,Intimate,Lounge +1078,35,Big blue sack,"This dress hangs like a sack. it really needs a belt to give it some shape. i tried to style it with one, but then didn't look right either. i did like the slip that came with it. i'll be returning it.",1,0,0,General Petite,Dresses,Dresses +857,45,Nothing like the picture!,"I thought this was more like an oversized sweatshirt. not at all! i'm either a m or l and i bought a large and that was too small and too tight. it is more fitted. if you are looking for something more comfy, don't buy. however, if you want more of a fitted blouse feel, then go for it.",1,0,0,General Petite,Tops,Knits +857,35,So cute. too small.,"So wanted to love this top. love the look entirely. but the medium was beyond snug, so i sent it back for a large. hopefully the bigger size will make it a keeper!",4,1,0,General Petite,Tops,Knits +287,53,Cute and warm,Material is thick and warm. print is very pretty. i received complements from all age groups. fits a little boxy but it works.,5,1,1,Initmates,Intimate,Lounge +865,33,Ok top,"Very nice material, soft and feminine colors. however, the waist sat higher than my natural waist and was uncomfortable. unfortunately it's going back",3,1,0,General,Tops,Knits +1078,19,So cute but quality not good,"This dress is so cute and so flattering. i loved the shape, but i wore it wonce and the fabric was pulling on everything! just holding a purse while walking managed to pull out a ton of the fabric! when you spend so much money on something you think the quality would be better..",3,0,17,General Petite,Dresses,Dresses +1068,47,Love these pants,Ordered my regular size 27. they were tight when they arrived but they stretch - a lot. i like the looser style so was vey pleased but think they are at least a size larger after one wear.,5,1,0,General,Bottoms,Pants +865,34,Not as expected,I really loved the colors and style of this top. unfortunately it runs a bit small and was too short on me. i'm 5'9. some mentioned they didn't like fabric but i thought it was good!,2,0,1,General,Tops,Knits +1078,48,Petite and busty- avoid,"I wanted to like this so much. it's a great good girl dress, church dress. however, it makes no sense. it's a summer dress with massively thick lining that snags i'm petite and busty and it made me look and feel very wide.",2,0,0,General Petite,Dresses,Dresses +862,31,More of a baby-doll shape than it appears online,"I was excited to try this on in the store today. the zipper details on the shoulder are really cute and the ribbing pattern is flattering. i was disappointed when i put it on though because it fits like a baby-doll / pregnancy top. it's snug around the bust, and then flares out pretty widely through the lower half. you can't really see that on the model. i was hoping it was more of a fitted tee, but sadly, that wasn't the case.",3,0,9,General,Tops,Knits +828,57,Versatile,"This is one great button up shirt ! the fringe hem is a fun little detail that gives this shirt some serious versatility. it looks great layered under jackets and sweaters, with a came underneath, or all on its own. the fabric could be a bit thicker. i am between a small and a medium ( a 6 or an 8), and bought this in a small.",5,1,2,General,Tops,Blouses +828,52,Favorite everyday shirt!,Love this shirt! it is great quality and fits true to size in a comfy not too fitted way that a button down should fit. i love that it is a classic white cotton shirt with a modern edge with the little bit of fringing on the bottom and sleeve cuffs. it's great to wear with jeans or leggings and i can even see dressing it up or down depending on the accessories worn. i have already gotten lots of compliments when wearing it....everyone wants to get it for themselves! i'd even get it in another co,5,1,2,General,Tops,Blouses +1068,35,,"These are so comfortable and surprisingly flattering! i bought the taupe in sp, for reference i'm 5'2', 115 lbs., curvy on bottom. i was afraid it would give me a ""bubble butt"" and it didn't. could be dressed up with right shoes/accessories.",5,1,8,General,Bottoms,Pants +1074,50,So gorgeous,"I did the happy dance when the dress arrived, but the very sad dance when i tried it on. unfortunately, instead of following my instincts, i took the review here (and reviews from some other sites) to heart and ordered a size bigger than usual . huge mistake, as in this dress was huge -- much too big to alter and keep the integrity of design. for reference i'm 5'7, 130lbs, 34c. i usually wear an 8 dress (due to a very large rib cage). i ordered the 10 but was literally swimming. i think a 6 woul",5,1,2,General,Dresses,Dresses +869,42,,,5,1,0,General,Tops,Knits +869,54,,"I was intrigued by this top...it's very cute but i feel that the tassels are just slightly too big and if the fringe would have been a little more subtle, the top would be cuter. i'm still on the fence with this one....",4,1,1,General,Tops,Knits +895,46,Perfect orange cardigan,"I ordered the ""red"" in a size xl. the fit is perfect--it matches the model's photos. the material is so soft. it's definitely a cozy fabric. the red color description is wrong but the photo accurately shows how it's really an orange shade. the color is cheery since it's bright. it will be great to use on cold days.",5,1,0,General,Tops,Fine gauge +1075,51,Stylish and unique,"I bought this dress for a christmas party and received lots of compliments! at 50, even though i live in a cold climate i was looking for something (not black!) stylish, and comfortable that i would not roast in at a party! it is a beautiful green color with nice embroidery front and back and the shape is very boho. i like my dresses a little more fitted so i bought the xs (and i am usually a small ...so size down!) and had the waist nipped in a bit by my seamstress to give it more of a flatteri",5,1,2,General,Dresses,Dresses +869,34,Perfect for fall,I love this top! tassels are not too big. material is thick. i wish is was a little longer though.,5,1,0,General,Tops,Knits +869,43,Very fun top,"I really like this top, a nice spin on a class sweatshirt. fun with a pair of jeans or cords.",5,1,1,General,Tops,Knits +1083,29,,"Great everyday dress. i bought a small (5'9, 135lbs) and it really fits nicely.",5,1,1,General,Dresses,Dresses +895,38,Love it!,This is the cutest cardigan. i purchased it in the red. i wish there were more colors,5,1,5,General,Tops,Fine gauge +828,63,Updated white shirt,First tried on a large but wanted a little more room which an xl gave me. it is just what i wanted to update my wardrobe.,4,1,4,General,Tops,Blouses +895,42,Lovely sweater,Bought the camel color and love it. nice for cool evenings and mornings spring through fall. soft and comfortable. delicate yet not too much so that you wouldn't wear often.,5,1,0,General,Tops,Fine gauge +186,39,"""perfect with jeans""",Great with leggings.perfect with cold weather. hard to find if you have large calves .retailer is only place i could find leg warmers to fit. they are nice and thick and warm. and true to color.,5,1,0,Initmates,Intimate,Legwear +1083,39,Pretty and flattering dress,"I really love this dress! it's very flattering and comfortable, and all the buttons keep the wrap in check. i've gotten lots of compliments on it. also, it's got pockets!",5,1,1,General,Dresses,Dresses +869,22,Love it!!,Love the shirt! fits great and is so cute! a must have for fall!,5,1,1,General,Tops,Knits +1068,43,Amazing pants you won't be sorry you got!,"I ordered 3 different styles of jogger pants and these were definitely the ones to keep! true to size and instantly comfortable due to the soft material they are made from. the taupe color i got will go with a lot, too. these are great pants that you won't be sorry you bought!",5,1,0,General,Bottoms,Pants +895,40,,"Beautiful sweater, perfect length, surprisingly warm",5,1,0,General,Tops,Fine gauge +895,35,Great gift,I ordered two of these in orange as holiday gifts this year. both were loved! great style and quality will hopefully make this a go-to sweater for both recipients.,5,1,0,General,Tops,Fine gauge +869,66,Good and bad,"I would have loved this tee but the color didn't love me. it's sort of a mustard orange. the embroidery is beautifully done but i felt the size of the yarn tassels were too big and looked a bit odd, but i have a large bust so don't like to draw attention there. it's a sweatshirt and not a tee shirt, but it flows and doesn't grab anywhere. it looked so nice under a jean jacket. if it weren't for the color and tassels, it would be a keeper for me.",4,1,3,General,Tops,Knits +1083,32,Beautiful dress,"Believe the reviews - this dress is very flattering, great quality, and an excellent print (i got the polka dot). i was concerned about the wrap front since i am busty - 32dd - but this looks great, is appropriate for work. love!",5,1,1,General,Dresses,Dresses +869,79,Love--but second time's a charm on sizing,"I love the mustard color and fun boho details of this shirt, however the sizing was a little weird. i ordered the small petite first and it was just too short (which is rarely a problem i have), so i ordered it in the regular small. it's perfect in length, but a little loose on top, which i'm fine with. overall, very happy with this purchase and have received many compliments on it.",5,1,1,General,Tops,Knits +895,27,Warm cardigan,Nice warm long cardigan that can work for many seasons. works well over a dress.,4,1,0,General,Tops,Fine gauge +966,41,"Great quality, structured vest","This vest looks exactly as in pictures which is a good thing for online exclusives. i love the fact that it's lined and the texture and color of the fabric is very nice. has a good, solid quality feel to it. it does not have any buttons or belt that comes with it but looks perfectly fine just left opened. i wore it with belt as well and it add to the structured styling of the vest. more on the conservative side of retailer.",5,1,3,General Petite,Jackets,Jackets +828,50,,"I have been searching for the perfect white shirt. this is it! i love how the collar lays and the longer length and frayed hem are perfection! the fabric is super soft, too. i am very pleased with this purchase!",5,1,2,General,Tops,Blouses +895,46,Long cardigan,Great sweater for casual days. just the right length and fabric weight. very versatile. fit is true to size not oversized.,5,1,1,General,Tops,Fine gauge +828,38,Time will tell,"This is a cute top although it runs fairly large. i have washed it once and the fray did ok; however, i'm a bit concerned about how the shirt will wash over time with the frayed edges.",4,1,1,General,Tops,Blouses +869,32,,,5,1,0,General,Tops,Knits +869,33,Unique and flattering!,"Love, love love this top. it's got a little bit of a native american vibe without being over-the-top. i tend to wear a small in retailer, but the medium was the way to go for me. it's not long, and the style errs on the not-tight side. if you can go between two sizes, don't get the smaller one. and i love the shade of yellow!",5,1,3,General,Tops,Knits +1083,40,A perfect wrap dress.,"A great wrap dress with many buttons, the dress stays on better than any other wrap dress i ever owned.",5,1,0,General,Dresses,Dresses +828,35,"""beach business""","Great for the beachy business look. classy, but immensely comfortable. i feel like i look sharp without having to sit poker-straight.",5,1,4,General,Tops,Blouses +869,52,Unique quality fabric,"This top is as pictured. i'm 5 feet 120 pounds. the small petite was a great fit. the material is cozy, soft and somewhat thick. dress it casual with jeans or elevate it with slacks.",5,1,4,General,Tops,Knits +1083,33,Lovely take on the classic shirt dress,Received this dress for christmas and fell in love. the detail and fit is perfection. the buttons go all the way to the bottom of the skirt so no concern for pesky flyaway exposure should the wind blow. the detail on the arms w the buttons is also cute and i personally loved the longer sleeve that almost comes to my elbow - it's very flattering. overall a great little dress!,5,1,0,General,Dresses,Dresses +1091,38,Perfect winter dress!,I came into the store to try another dress on and was given this dress to try. it is perfect! i paired it with black tights and tall boots for a family photo. i got it in the wine color. highly recommend and very fun for winter. it does run really large. i usually wear a small but got an extra small.,5,1,12,General,Dresses,Dresses +1110,36,Retro with a modern twist,"It is such a cute dress. the mulit-colored aspect allows me to wear many different color shoes with it. the dress can be formal or informal, and it works for a myriad of occasions. please purchase it!!!!",5,1,0,General,Dresses,Dresses +927,60,Lovely sweater,"This is a lovely sweater - the ""moss"" color however is really camel, which is what the photo indicates. it fits tts, is all cashmere, and is knit in a brioche stitch that gives it loft and texture that can be seen well in the detail photo. i am generally not a fan of raglan sleeves but in this case it works with the overall construction of the sweater - one that features interesting decreases, lines, and angles. it is very soft, warm, and lightweight, and can be worn as a casual piece or dressed",5,1,3,General,Tops,Sweaters +1091,28,Runs very big!,"I was excited to see this dress as i'd bought the sparrow boiled wool sheath dress in xs last year and loved the fit. however, this dress does not fit the same way. the top fits fine, but the waist and the bottom are way too big. i laid it over my sparrow dress from last year, and the bottom is at least an inch wider (two inches, if you go by the total circumference). i'm planning to exchange for an xxs and see if that one fits better.",4,1,1,General,Dresses,Dresses +1091,74,Comfortable and versatile,"I purchased this in grey and wine and both are wonderful. the boiled wool is light but warm and not itchy. fits nicely through the bodice and flares out to create a nice shape. the pockets are terrific and lay nice and flat. i'm short but the petite was well above my knee. i could have worn petite small just fine. it fit nicely in the bodice - the smaller size brought the seaming up a bit higher to form a more empire waist, but i chose the petite medium because i wanted it loose through the wais",5,1,1,General,Dresses,Dresses +301,33,Amazing swimsuit,"I bought this on a whim. i have a difficult time finding a great fitting suit, especially online! + +this suit is structured so well. the material will seemingly last way longer than most of my other suits that are priced much higher. the material i feel holds in my stomach. i have a large bust and it is comfortably supported in this. + +the design is so cute and i love the way the way crisscrossed. it makes a one piece feel less like a one piece.",5,1,1,Initmates,Intimate,Swim +1091,36,Great look,This dress in coral is a beautiful color and awesome material. only problem is it runs a little big- i am a pretty true to size small and should've ordered an xs- the hips are a little wide and v in the neck a little low. instead of sending back i just wore a camisole and leggings w ankle boots and it looked very cute regardless.,3,1,0,General,Dresses,Dresses +1091,31,Not flattering on straight figures,"Unfortunately this dress ran very large on me (please no more vanity sizing!) and minimized what few curves i have. my store didn't have this in petite so i tried a regular xs - the neckline was low and there were at least 4 inches of space at the waist. it also flares out quite a bit, you can see this in the catalog shot. while this wasn't flattering on me, it may work better on curvier figures.",3,0,4,General,Dresses,Dresses +879,36,Nice,This piece is very comfortable and feels well made. it is not slimming.,4,1,0,General Petite,Tops,Knits +1091,35,I love this dress,"I have had a lot of complements while wearing this dress. i purchased it in the grey. other reviews felt that this dress ran large. i agree that it might be a little larger than other retailer purchases i have made but not by much. i purchased it in small (usually what i wear in dresses) i'm very tall at 5'9"" (mostly legs) and the length is great. also the neck line is perfect on me and i have a fairly average torso length. . i am very happy with the purchase.",5,1,0,General,Dresses,Dresses +1091,47,"Warm dress, with a few issues.","First, i love wool. if it's 100% wool, i love it. if wool isn't your thing, then this dress isn't for you. i ordered this dress online in the burgundy. it is not itchy. it falls above my knees and i am 5'3"". it is warm and cozy with pockets, which i love. with the sleeves being short, i am wearing a long, frilly cardigan over it. i ordered the small (did not notice a size chart with this product). i am usually a size 4 or 6. it fits great in the bodice, but runs large through the hips. however,",3,1,9,General,Dresses,Dresses +927,41,Soft and cozy,"This is a deliciously soft and cozy cashmere sweater. the cashmere is thick and knitted with a ribbed brioche stitch. the sweater is true to size, though a bit boxy, so i did size down for a slightly more fitted and flattering look. the sweater is a little on the short side, but i'm petite, so i thought the regular xxs was perfect. the stitch details are lovely and it it so soft i want to wear it every day. it did start to pill after one wear, but this is the nature of cashmere. i'm very pleased",5,1,2,General,Tops,Sweaters +927,59,Not worth the money,I did not like this cashmere sweater at all. i ordered the pink which was more of a peach color. although the color was very pretty the material was very thin and cheap looking . it was also very short . not worth the money even at 40% off.,1,0,4,General,Tops,Sweaters +1091,40,Wished it fit,Loved that this was an 100% boiled wool dress but unfortunately runs very large. i tried the small and extra small - both were really large in the hips. i will maybe try the xxs - was hoping to make this is winter staple.,3,1,0,General,Dresses,Dresses +927,42,Unflattering cut,"Love the warm fuzzies of this sweater, did not love the unflattering cut. the sweater hung lifelessly from my bust line down. plus, it was a little short in the front. i have to send it back. :(",3,0,3,General,Tops,Sweaters +301,35,"Good, not great...","I had ordered another retailer suit awhile back in an xl because my usual lg was not available, and lets say i was swimming in the xl, much to big. so when this suit came up for sale i snatched it up in lg. when i compare the two, the lg is over 4inches smaller than the xl, seems like quite a big jump in the sizing. the suit fits in the body quite well, however it's a bit snug in the side bust area. strangely, the suit has boning on the side of the bust, and also the silicone grip on the top edge,",3,0,2,Initmates,Intimate,Swim +879,43,Nice style & detail,"I love this shirt! it's super comfy and i love the design and detail. it does run large, so order a size down.",4,1,0,General Petite,Tops,Knits +1110,29,Flowing summer dress,"This dress is really beautiful. i have already worn it to both an engagement party (fancy) and just out to dinner (casual); it fits most occasions, depending on what you pair it with, which always makes me feel like i have gotten my full money's worth. i've gotten several compliments on it; the best one being that it looks as though i was wearing a piece of art! the outside material of the dress is silky in texture and has a nice sheen to it. it looks true to the picture on the website. the dres",5,1,12,General,Dresses,Dresses +1091,31,Undecided,"The dress is great for pear shapes. however, i do feel it runs larger than typical retailer sizing. ordered a small (5'8"" 140#) and i still think it may be a bit big. the material is very comfortable, not too thick or thin. however, i feel the shaping on the bottom is a little bulky due to the fabric. see the attached photo.",3,0,25,General,Dresses,Dresses +1091,41,Beautiful sweater dress,"I love this dress so much that i purchased it in both grey and wine. i find the cut very flattering and slimming, and love the pockets. it works great for northern california winters, with tights, boots, boiled wool sweatercoat over it while outdoors, and on its own indoors. i wish there was a long-sleeved version. i feel exceptionally cute and cozy while wearing it. good job, sparrow! btw, i bought the other currently offered sparrow wool dress (the mock-neck dress), and this one is just an inc",5,1,0,General,Dresses,Dresses +301,44,Love this but wish a few things were different...,"Overall, this swimsuit is what i needed and have been looking for. i normally wear bikinis but i needed a one piece, and i wanted something unique and different. i ordered the chevron print, and i do love the colors and ""retro"" look of the swimsuit. if i could change a couple of things, i would have the legs and booty slightly more high cut -- but not much. and i might have wanted the option to take off some, if not all, of the straps. other than that, i do love it...and i doubt that anyone else",5,1,2,Initmates,Intimate,Swim +903,60,Runs really large,I really liked the design. ordered a medium which was huge. also thought i would not be able to tolerate it because of the material -- a bit itchy. returned it.,1,0,0,General,Tops,Fine gauge +903,74,"Lovely sweater, runs large",Love this sweater but it's too large. will exchange for smaller size because i really want it.,4,1,0,General,Tops,Fine gauge +1074,61,Perfection!,"Such a unique mix of prints but it totally works. much better and more vibrant in person. true to size. fits more like a maxi on me since i'm 5'1""",5,1,0,General,Dresses,Dresses +927,59,Another fabulous cashmere sweater!,The sweater is very soft. it has an interesting pattern. i purchased the neutral color in size xs which runs tts. it's definitely a cozy sweater to wear this winter.,5,1,8,General,Tops,Sweaters +879,36,,This top is super cute. the color is beautiful and the lace detail is very feminine. im a 36c and got the size small. it fits great.,5,1,0,General Petite,Tops,Knits +1091,50,"Great color, runs big","I agree with some of the other reviewers; this dress runs very large. when i tried on the xs in my local store, i loved the color and thought i could work with it with the right bra or camisole, but it was just cut far too low in the front and when i tried it on at home, it was just too roomy and not fitted enough. i ordered both an xsp and an xxs today so we will see if they fit better. it is an adoreable design, cut and color. it just runs way big so size down if you decide to get it.",3,1,0,General,Dresses,Dresses +1091,28,Beautiful color,I wanted to love this dress. i bought the cranberry color and it really is gorgeous. the cut was wrong for my body type. it is a bit roomier than expected. but i wear a size 36ddd so the seams on the chest hit at a very awkward spot. i'm sure it would look great on someone with a smaller chest,3,1,0,General,Dresses,Dresses +301,42,Love it!!,"This bathing suit is so cute. it fits me great. i'm 5'10 and about 130 and ordered a medium. my only complaint is that the outside straps sometimes fall off my shoulders, which could be annoying if you are doing anything active. but overall a great, modest and cute swimsuit.",5,1,3,Initmates,Intimate,Swim +879,36,,,5,1,0,General Petite,Tops,Knits +1110,39,Larkhill swing part deaux,"Les fauves is another version of last years larkhill swing dress but better. one, the swing has less to swing, but in a good way! they reduced the voluminous amount of material while retaining the fun swing aspect. two, the dress is shorter so it's more flattering to the vertically challenged like me. what's the same? still wonderful silk, discreet pockets, beautiful abstract floral print and those horrid little buttons that are difficult to fasten on the back of a tight neckband collar. i h",5,1,1,General,Dresses,Dresses +1074,39,Slayed,"The moment i laid eyes on this beauty, i was mesmerized. there's so much going on with the print but it all works. it's so fun and flattering and versatile since the variety of colors go with just about every thing i own in my closet. it can be fancied up or casualed down depending on your shoes and accessories. like the first reviewer recommended, size down. i bought an 8 instead of 10 and my bust is 36dd with a wide rib cage. i really wish this was a midi on me but alas no petite sizes w",5,1,1,General,Dresses,Dresses +964,46,Collared cadet coat,"The collar from a distance looks like it has seen better days (very scruffy), but it is so silky soft. and the slight sheen to the jacket is a nice twist to an ordinary army type. the fabric is definitely thinner than i expected, but it's also softer and better for layering.",4,1,0,General,Jackets,Jackets +964,44,"Shirt and or jacket, with a flair","I dig this jacket very much because i can wear it like a thick shirt or as a jacket, and the removable collar gives even more versatility. i am short so i opted for regular xs (i'm 5ft2in, 34b, 26 waist, 36 hips), the bit of spandex stretch helps me achieve the fitted look without looking too tight. i love military green color, it's a happier neutral than black or brown. without saying, it goes with everything and flatters all body types.",5,1,0,General,Jackets,Jackets +1110,55,Disappointed,"I wanted to love this dress! i ordered it when there was a 20 percent off special and couldn't wait to get it. the colors are as depicted and the dress fit true to size. i also liked that it wasn't too short. what i didnt like was that the dress is lined in white, which you can plainly see in the picture, but i didnt notice before ordering. i just think it would have been much prettier lined in black. im disappointed and the dress is going back.",3,0,0,General,Dresses,Dresses +1078,37,Even better in person!,I'm 5' 120 and the 4p fit like a glove. i have a bigger chest and there is no pulling on the buttons. the colors and fit on the dress are perfect. i had so many compliments when i wore it!,5,1,1,General Petite,Dresses,Dresses +1110,34,Beautiful print,"I loved this dress before putting it on, but it was just not the right cut or style for my body type. it is very roomy and full and looked like a maternity dress which was not a look i was going for. sadly this will be going back. i loved the print and the feel of the material. just not a flattering cut for me.",2,0,0,General,Dresses,Dresses +1110,48,Beautiful print,"Found this dress at my local retailer. . it was one of those dresses that just catches your eye.. very,very, beautiful print. . the dress is loose and flowy and feels so comfortable on. i purchased it without a second thought. i am 5'1"" and usually wear a 0 or 2 and the 2 was a better fit for me. so breezy and cool for summer.",5,1,2,General,Dresses,Dresses +1078,47,,"This dress does run large, but i'm wearing it loose and flowy. bought it for desert trip music festival, with booties and a hat or headband, very hippie chic. my husband thinks it's adorable! the prints are darling.",5,1,0,General Petite,Dresses,Dresses +110,64,"Cute, with reservations","First one i received was ripping apart already in the sleeve opening at wrist (warning: very tight sleeves!), plus 2"" of the green shiny band detail was missed altogether by whomever sewed this particular one- just left unstitched. and long threads were hanging in several places. this is by no means a quality piece and is severely overpriced. on the positive side, it is very cute and i'm keeping the replacement one, but know that it is also delicate. after one use, there is a snag on the inside",3,0,0,Initmates,Intimate,Lounge +1078,49,Love this dress,"So cute, so comfortable, so pretty - so i guess i love everything about it. it is not too short on me and i think you can wear it in many ways... thought of adding a vest - thought of boots - can't wait to wear it. i agree the material is substantial so it isn't flimsy for fall or winter. happy with this purchase. runs true to size. i went with the op. i sometimes chose regular length, but this one is just right in the petite. i have long arms but these sleeves are just right. i am 5 ft. tall, b",5,1,2,General Petite,Dresses,Dresses +1059,71,,"This jumpsuit is cuter than it looks online. my store displayed it with a brown belt, which dresses it up. it is perfect for our hot summers with brown or silver sandals. i will wear it with a short sleeve white cotton tee. i'm 5' 7"" and bought the extra small. pricey but worth it, so stylish. so retailer!",4,1,4,General,Bottoms,Pants +112,89,Love it!,Great piece. using as a night gown. slept in it last night. like a dream.,5,1,0,General Petite,Intimate,Lounge +1078,39,Pretty and sturdy,"I like the make of this dress, the fabric is thick and light at the same time. +the cut is loose and flattering. the different patterns are also very fun. colors are gorgeous, nice details. the buttons are sturdy. +i tried on both 0p and 00p - not much difference in the 2 (i would go petite if you are on the short side). the 00p was just a bit snugger near the =chest, but didn't gape. the waist is definitely meant to be looser, so don't expect a fitted dress. length was slightly above the knee",5,1,6,General Petite,Dresses,Dresses +1110,53,Love the dress,"Very quick delivery. ordered sunday and in my mailbox tuesday before noon! nice fit, length is perfect. i'm 5'3"" and the regular size 6 hits just above the knee. one thing is the nice little button in the back fell off just as i was going to try it on. found on the floor and i will just sew it back on. other than that i love the print and everything about the dress. true to size. ?? retailer",5,1,0,General,Dresses,Dresses +1110,39,,"I love the unusual print, but the cut didn't work for me. i've got a round back side and a sway back, and the dress made me look twice as big front to back than i actually am because there's no shaping to help it adjust to the curves. so sad!",3,1,2,General,Dresses,Dresses +377,38,Great basic tank,"Great basic tank with a bit of a 'flair' at bottom that makes it super cute. will layer with cute bra most likely. the coral color is great, too. very pretty. i also got the white.",5,1,0,Initmates,Intimate,Lounge +1110,46,Great maternity dress,"I wanted to love this dress. i went into retailer in sb to try it on and when i saw it on the rack it looked beautiful, both the print and the material. then i tried it on and it fit like a tent. i am just under 5'5 and it hit right below my knees, not like shown in the picture here. on that note, i passed on this one due to the fit. i think this would make a fantastic maternity dress though.",3,0,2,General,Dresses,Dresses +868,35,An immediate return,"The fit on this shirt is bizarre--it very much resembles a nursing top (but wouldn't actually work for that purpose). the side visible in the picture is nicely draped, but the other side can flap open and is completely different. i tried two different sizes and both were equally unfortunate!",1,0,5,General,Tops,Knits +1110,41,Perfect,"This dress is even more beautiful in person. it fits true to size and drapes nicely from the body without being tent-like, as some swing dresses are prone to be. the material is very nice and the pattern is stunning and unique. as someone else mentioned, you can pair this with a cardi for work. it's also perfect for a night out. it's easily dressed up or down. and looks amazing with a skinny belt. i'm happy i bought this one!",5,1,1,General,Dresses,Dresses +1078,28,,Love this dress!!! thought the colors would be too much but it actually isn't and is just so cute. got a ton of compliments on it when i wore it! the material is light but not see through at all. the length is perfect and comfortable to sit around in. this will be my go to dress this fall!,5,1,0,General Petite,Dresses,Dresses +1078,46,Awe love!,"Oh my! this dress fits wonderfully on! so ready for autumn! i have a big bust, this dress does not split at the buttons.",5,1,15,General Petite,Dresses,Dresses +377,25,Sturdy basic,"Got this in gray, pretty good quality, all around good basic.",4,1,0,Initmates,Intimate,Lounge +377,37,Perfect tank!,"I know this is labeled under activewear, but the fabric is a dream, it's incredibly flattering and could absolutely be worn in any outfit! i just bought the moss and may end up getting the other colors too. i generally am a l or xl, and the large fit well. it's alined and has a bit of stretch to it. it's so comfortable! highly recommend!",5,1,8,Initmates,Intimate,Lounge +1059,55,Lovely and comfortable,"I tried on this jumpsuit on a whim thinking it be a great throwback to the 70s. it is actually very flattering on, with the lines running down vertical, giving a slimming look to any figure. it is also very soft and comfortable on, and has nice, large pockets on the sides. it doesn't look dated at all once on, and i'm sure will get plenty of use as the weather warms up. for reference, i'm 5'7"" tall, and weigh close to 130 lbs., and found the small fit well. the only drawback was the pice, but i",5,1,7,General,Bottoms,Pants +377,56,Pure perfection,This is a great top. i almost walked right by it because it is so simplistic compared to the other things in retailer. i just wanted something super casual and this fits the bill. the fabric is a dream and it has a nice drape without being overly voluminous. i usually love white tops but the white was my least favorite. i ended up getting the moss and the gray. i could have gotten either the xs or the s. i went with the small because it was a little longer and had a wee bit more room in the upper,5,1,3,Initmates,Intimate,Lounge +1030,52,Perfect fit.,"I generally wear a 27. jeans fit perfectly. skinny, but not too skinny.",5,1,0,General,Bottoms,Jeans +1059,57,Just okay,"I was so excited to receive this romper. it's a great material, but it's actually a bit drab. the colors are very bland and the flowers just hang. it's not flattering as it is very roomy.",3,0,0,General,Bottoms,Pants +1110,37,Flattering dress,"Saw this dress in the retailer catalog and tried on in store. didn't need a dress but ended up purchasing as will be wearable for summer/early fall. seems like a print dress cut and style that will be used for many seasons. outer fabric is a bit delicate/may snag, and a bit wrinkly as another reviewer said, but works with the dress.",5,1,1,General,Dresses,Dresses +377,40,See through and strange,"I own some pure and good cotton tanks similar to this in black that i live in teaching dance. i was hoping these would be the same. i ordered the pale blue and it is completely see through and fits tight in the back and loose in the front. i have no desire to have a bra/sports bra show whether out the sides or through the fabric, it is tacky!",1,0,8,Initmates,Intimate,Lounge +112,46,"Easy, comfortable and beachy chic","This dress is very comfortable and casual, but in a high quality fabric that makes it great for a summer dinner with dressy sandals. i don't think a bra can be worn with it which i don't mind at all but might be a problem for others.",4,1,0,General Petite,Intimate,Lounge +1028,67,Versatile yet stylish cropped denim,These citizens of humanity jeans are indeed pricy but worth the money. they fit slim through the hips and not too loose in the legs to make you feel like they are huge...very versatile and look fabulous with a cropped sweater or even a hip length top. add a pair of chunky shoes and you have a great look. i even tried them with dansko clogs and they looks cute. it's a great break from skinny jeans and much more chic than boyfriend jeans.,5,1,1,General,Bottoms,Jeans +1110,39,Pretty but underwhelmed,I think this dress is very pretty and i like that it's made of silk. i also like the way it fits since it skims over my figure flaws without being too poufy. what i don't like is the sloppiness of how the print was stitched on my dress. the print frame is offset and details are cut off in both the front and back (you can see similar in the model shot from behind). for the price i was expecting a little more quality control. i also do not care for the lining. i do not think the off white is,3,1,3,General,Dresses,Dresses +377,51,Comfy & cool,What a great purchase (especially on sale!) as this tank can't get more comfy. the material is soft and great to wear during those warm weather months. love it!,5,1,1,Initmates,Intimate,Lounge +1078,40,Darling dress!,"I stumbled upon this dress yesterday at the store and fell in love with it! i wore it today with boots and received tons of compliments. it is light, comfortable and flattering. i love that it is machine washable, too!",5,1,0,General Petite,Dresses,Dresses +1110,64,Gorgeous!,"This is a beautiful dress. it fits true to size. i have some issues around the middle and this just flows away from the body. i am 5'5"" and it falls to the knee on me, longer than pictured on the model. the fabric is a nice weight that can be worn three seasons. the print is pretty and romantic. i'm planning to wear this to my daughter's very informal wedding and know i'll be comfortable and look put together. this was a lucky find!",5,1,5,General,Dresses,Dresses +377,35,Better than it looks!,"I saw this top online and fell in love with it, as i live in white cotton comfy tanks, but i was concerned that it might make me look like i was wearing a tent from the side profile since i am top heavy - 36d, and i happen to have this problem with some tops and dresses. so i went into the store to try it on in a size l and i was shocked how not only did it not look like a tent it had a slimming effect! i felt so attractive in it i had a hard time looking at myself in the mirror (believe me this",5,1,3,Initmates,Intimate,Lounge +1078,38,Lovely dress!,"I loved this dress when i saw it online! i could not wait until i see in one of the local stores. i bought it today! unlike other reviews, i think this dress runs large. i am a 4 and bought the zero. maeve tends to run large on me. i would suggest that you try a size smaller. it looks very flattering!",5,1,1,General Petite,Dresses,Dresses +1078,38,My new favorite dress!!,"This dress rules. so comfy, and versatile. flattering cut. great with flats, wedges, booties, boots with tights. easily my new fav. runs large. i am usually a 6/8 and the 4 was perfect after i steamed it. no button gap either, i am a 34c.",5,1,0,General Petite,Dresses,Dresses +377,21,,"I got one of these tanks, and went back and bought two more online. i have the gray, green and white. the white requires a undershirt for me, but that's no problem. the shirts are darling, they're under activewear and i think they could be used that way, but i definitely don't. they're simple but have a nice flow, and the front and back are perfect. i love the material and the colors. i would buy more if there was more in more natural tones, i don't love bright colors but i love the green, white",5,1,0,Initmates,Intimate,Lounge +1078,38,There should be more !,Loved it! i am curvy and it is very hard to find a dress that looks easy and at the same time shapes you. the various cuts of the different prints are placed in the right place in the body . easy dress and beautiful. there should be more dresses in this style in different color combos.,5,1,1,General Petite,Dresses,Dresses +1059,53,"Pretty, not flattering","I'm 5'8"" and 130 and this made me look huge. it was a small but too billowy. it is pretty, nice fabric and well made but i returned.",3,0,0,General,Bottoms,Pants +488,43,Great leggings,"I bought a xs in black. i like the weight, texture, and thickness of this fabric. it feels like it smoothes over and holds the lines of my body in well. may be the other reviewer got a pair out of an odd batch, which could mean there are inconsistencies? i would like to see how the color and the stretch holds up with future washes. it would have gotten five stars since if it came in petitte length. but i will pick up a couple of more if it hits sale.",4,1,0,Initmates,Intimate,Legwear +1081,51,"Short dress, but great theory","I love this dress, but it is inches shorter than the description says or shows. i am only 5'7 and it is 2 to 3 inches above my knee. otherwise, it is a loose fit and hides all problem areas.",3,1,0,General Petite,Dresses,Dresses +1134,53,Fun fur!,A seasonal must have. nicely made. medium weight. cozy. buttons to half way down. i am petite and the xs fits with enough room for layers underneath. highly recommend.,5,1,0,General,Jackets,Outerwear +1081,25,,,4,1,0,General Petite,Dresses,Dresses +875,28,,"Fit is oversized but intentional. flattering on. love the neckline. modesty might call for a tank top underneath if bending over. fabric is soft, stretchy and has a good quality heft to it.",5,1,0,General,Tops,Knits +873,45,Bunches up...,"I saw this on sale, and it looked lovely online. i really wanted to love it when i received it. it looked great, but once i tried it on, it bunches up in the back. it looks awkward. the lace and small details are pretty, but the fit is just off. returned it in the store.",2,0,0,General,Tops,Knits +1081,32,Cute and easy piece to wear,Wish this worked for me! i am 5'9''. it is much shorter than it looks in the photo and the pockets did not hit my hips or torso in the right spot. the neck was kind of tight on me too. i love the idea of this dress but need it longer. the dress is very roomy overall.,3,1,0,General Petite,Dresses,Dresses +258,46,Cozy,These pants are comfortable and cozy. great for lounging around and cute enough to wear out of the house to coffee or running errands. i'll be wearing them a lot.,5,1,0,Initmates,Intimate,Sleep +1080,52,"Nice, but...","The dress is very pretty, however the description is deceiving. i purchased it not just for the look but because it was listed as ""silk"" but that is not exactly true. the under-slip is silk but the outer dress, what you see is definitely not. it is a cheap, thin material on top, skirt is stiff,, not loose or flowy as the picture would have you think. i will keep it, very happy i did not pay full price.",4,1,0,General,Dresses,Dresses +868,39,Too wide,This would have been cute if it was more fitted. i am 5'7 and 125 lbs and the small was too wide. i didn't try the xs because the small was almost too short in the sleeves and so was the length.,2,0,2,General,Tops,Knits +873,36,Love love,"Love this top. +perfect under a jacket for work or on its own for date night. i have a long torso and the length is perfect. so dainty and different!",5,1,0,General,Tops,Knits +1081,53,This product ran short in length,"I purchased this dress for myself. however, when i tried it on at home the length was too short. i gave the dress to a relative who is petite and the dress fit her perfectly.",5,1,0,General Petite,Dresses,Dresses +509,41,Pretty spring flowers,"I have been eyeing these pants for about a month or so; every time i stopped by my local retailer store i would check them out but never actually bought them. well, today i finally went for it and i am so glad i did! the floral pattern is very feminine yet unique and the colors are uplifting and cheerful for spring. the material is very soft, light and flowy and i'm sure will be comfortable in the heat of summer. the only drawback i found was that the fabric is not very stretchy and i like to be a",5,1,2,Initmates,Intimate,Sleep +996,40,Flattering skirt,This cut and shape of this skirt is very flattering. i am normally a medium but the small fit and looked much better- less bulky. the material is nice almost sweater like but not so heavy. it's a very versatile skirt. highly recommend.,5,1,0,General,Bottoms,Skirts +569,46,"It's like a work of art, but sadly, not flattering","It's like a work of art, but sadly, not flattering on me. i absolutely loved the look, and even considered taking it to a tailor, but the material overall is very stiff. if you're teeny tiny and need something to give you the illusion of hips, you might love it. very sad to return this.",2,0,1,General,Trend,Trend +509,50,,,5,1,0,Initmates,Intimate,Sleep +1081,31,,Love this dress. going to wear it for thanksgiving. love the material.,5,1,0,General Petite,Dresses,Dresses +509,53,A few problems,"These are very pretty, but i have had a few problems with them. out of the package, i found them to be true to size. i think i purchased the pxxs or the pxs. however, even though they are machine washable, i feel that they shrunk upon washing and are now too short (i am barely over 5' tall). also, the elastic waistband keeps twisting within the casing, which drives me crazy. i have to keep straightening it. i think there are better options for sleep pants.",2,0,2,Initmates,Intimate,Sleep +569,55,"Gorgeous lace top, design fail","I recommend this topper but with reservations. it is beautiful looking, especially the lace portion. +it is also very wide. the gathered portion is a complete design fail, it balloons up right below the bust, making one look wide and pretty ridiculous. it's obvious that the model is hiding the gathered poof by placing her arms close to her body. but i knew this from the other reviews posted here so it was no surprise. +i ordered size s, the smallest available, and it fit very wide more like a",3,1,2,General,Trend,Trend +873,43,Elegant top,"I was shopping for a holiday outfit today at my retailer store, and my sales associate suggested i try on this top. i have lo idea where it was on the store l, yet it's a very pretty top that stands out when you have it on. i took this in a small because it's meant to run shorter. i felt xs would have been too small. i purchased it to wear with jeans or dress pants. pretty detail. blouse shows off my arms and minimizes my waist. i love it!",4,1,7,General,Tops,Knits +569,64,,"I was so excited about this top, and so disappointed when it arrived today. the lace part is lovely, but the skirt part is a crinoline type fabric that balloons out at the sides. it is gathered at the sides rather than pleated, and there is no way to get it to lay flat. the back center section is pleated. why couldn't they have had the pleats all around? this will be going back with much regret.",1,0,13,General,Trend,Trend +899,50,Really oddly shaped sweater!,"I want to like this sweater. the color is lovely, more of a grayish blue, and the design is nice. the quality is amazingly good, as it's thick without being too thick and very soft. but the design is odd and quite unflattering! i got the xsmall but it's two big. the sleeves have a very low shoulder so they almost have a wing like look. it doesn't look like it does on this model. the waist area is a lot bigger, so it does sit on your hips, however the sweater isn't slimming cause of the odd shape",3,0,0,General,Tops,Fine gauge +509,69,Juneberry sleep pants perfect fit,"I love these sleep pants they are the perfect length. i' +am 5'10 and slim these fit great, its so hard to find pants that fit tall slender women.",5,1,0,Initmates,Intimate,Sleep +569,58,Fly away sides,I waited a long time to get this top. unfortunately i will be returning. the sides are gathered and stick out a lot on the sides. not as pictured. the sides should have been pleated. it runs smaller in the bust and when closed it was a little snug. afraid this might shrink with dry cleaning or washing. the design is unique and wish this top would of worked.,2,0,7,General,Trend,Trend +1033,60,"Great fit, wish they were ankle length","These jeans fit great, but i think getting the right size is key. i bought my usual denim size 26 and at first i thought they were too tight. but as the day wore on, they softened and conformed to my body and fit like a glove. if i bought them in a larger size, i'm afraid they'd bag out like jeans tend to do. i think it's the ""legging"" style that makes them so form fitting. i wish they were ankle length like on the model, but i'm 5'5"" and they are quite a bit longer on me than the model.",4,1,0,General,Bottoms,Jeans +1081,33,Not what i expected,"It was quite a bit shorter on me than what it shows on the model who is the same height. the pull-on styling is a #fail as i could barely get my head through the neck opening! i was afraid it might rip a seam. the fabric seems low quality, like it would stretch out and degrade faster than others. overall, not the dress or quality i expected :/",2,0,1,General Petite,Dresses,Dresses +569,53,Pretty bad in real life,"When i unwrapped this a chemical ""stink"" hit me that amost knocked me over. it was really unbearable and i m not overly sensitive to smells. second it was way too large with a boxy unflattering cut. the waist sits very high at elbow height and every below the waist the material balloons out in a rediculous manner. i wonder if they had it pinned down somehow on the picture here. with a more flattering cut i might have decided to wash it a few times to get the stink out. i do not recommend this fo",1,0,9,General,Trend,Trend +873,45,,"I have been looking at this top online & today i tried it on in the store in a size small and xs regular. i am 5'3"", 120 lbs. 34b, and the xs fit better than small. in the small the armholes were too low & showed my bra. this is the regular cut, not even petite (& note i am on the shorter side) & the length was a few inches shorter than i would like. glad i didn't order this online in petite. i love the detail & the material looks wellmade, with the exception of the beading in one spot was alrea",3,0,9,General,Tops,Knits +1078,20,,,5,1,0,General,Dresses,Dresses +1081,68,,"Very cute dress, but fabric is very flimsy and seams were very puckered which couldn't be pressed out.",2,0,0,General Petite,Dresses,Dresses +1081,33,Great for shorter clients,"I love this dress, but it is too short to keep. i am 5'8"" and weigh 124lbs. most of my cloths from retailer are either a size 4 or a small, but this dress is substantially shorter than other dresses purchased from retailer. it looks adorable on, but it is just too short (about 3 inches above my knees) to be considered professional enough to wear to work.",3,1,0,General Petite,Dresses,Dresses +1134,64,Lovely but runs large,"I ordered this coat in a size xs during the promo. it just arrived & is too big. sleeves way too long & big under the arms. it's labeled xs but looks more like a m. i don't mind an oversized fit & having the sleeves altered but this is just not working. if petite were available it may work for me. it is nicely made, soft, comfy, button front which i prefer instead of snaps. i think it wld be super cozy on a cold day. love the print! i am of small build, 5'3"", 115#, usually a xs-s, occas petite.",4,1,0,General,Jackets,Outerwear +996,45,Gorgeous,"First mermaid-ish skirt ever that's flattering enough to pull off with a curvy lower body. the material is light-weight sweater knit that hugs in all the right places and its unique cut along the bottom make it very in the moment. the color is a rich, deep, gorgeous brown with subtle highlights that draw from whatever top you pear with it. runs large so size down.",5,1,4,General,Bottoms,Skirts +509,35,Not for petites,Length too long and waist to high. these are not sized for petites.,2,0,5,Initmates,Intimate,Sleep +873,31,Cute & comfy,"I had higher hopes for this top and thought it would be fanicer. but as a previous reviewer mentioned, the quality of the material and elastic waistband makes the top look a little cheaper in person. i'm glad i got it on sale with the extra 25% off. + +i was hoping to exchange it for a small, but it's sold out by now. the top runs a little large. normally i'm between a small and a medium, but i think a small might even be too big. i put it on this morning in the dark and by the time i got to work",4,1,0,General,Tops,Knits +471,54,Vibrant colors & sweet side detail,"Love the mara hoffman basketweave bikini bottoms in fractals red. i went to her website for the size chart and got these in a size 'm'. very good fit, just a bit cheekier than her classic cut bikini bottoms. i got them with the matching basketweave bikini top. +. +i'm 5'2"", currently 33-25-37 to 38 depending on where i measure. upper hipbones are 34""; fuller thighs and bottom, so i never know what to order. i think a size 's' would be too skimpy so i hope these hold up well in the waves. +. +co",5,1,0,Initmates,Intimate,Swim +1074,48,Not recommended if petite,"I disliked this dress. it didn't fall on me the way it falls on the model pictured. i think it would work well for tall, thin women with a smaller chest. i am petite with a larger chest, and it accentuated my chest in an unflattering way and managed to make me look frumpy at the same time. not recommended for petite women.",2,0,1,General,Dresses,Dresses +875,65,Softness and comfort,"This is a beautiful well designed top. the pattern is laid out to match on each side. the back has a narrow center insert of sheer fabric, for an interesting detail, with wonderful construction. this sheer fabric is also added to the bottom as an edging . this measures only 1 1/4"" wide and lays flat and finished off well. the sleeves have excess fabric for comfort but do not make one's arms look heavy. the unusual neckline shape in the front is well sewn and lays flat nicely. i think this top is",5,1,1,General,Tops,Knits +1012,75,My new holiday skirt,"I love this skirt; but it is so long that i have ordered the petite as well to see which one i will keep. i am tall; but even pulled up higher than my waist, there is at least 3 inches too much in length and i want to wear a flat shoe or boot with it. if i keep this one, it will need to be altered. +it has pockets which i love. it is an effortless long skirt which i will wear christmas day for sure. the pattern is stunning with the mixed prints. the fabric is silky. it can be dressed down with a",4,1,5,General Petite,Bottoms,Skirts +1081,33,"Stylish, versatile dress","I ordered this dress looking for something to wear out for an evening. after seeing the other reviews i wasn't sure about it, but i was very pleased when it arrived. i find it is elegant and sexy, but also modest enough when i sized up by 1. i normally wear an xs in dresses but found the small fit perfectly. it is form-fitting particularly in the waist and back without being too tight. i'm excited to wear it and think it would look beautiful with a long necklace.",5,1,3,General Petite,Dresses,Dresses +1022,33,,,5,1,0,General,Bottoms,Jeans +1060,23,So many compliments,"All of my friends loved these pants- as did i! these are so gorgeous. the sequins seem well stitched. the small fit me well- hanging straight as pictured, not too snug or uncomfortable. they hit me at the ankle. there are back pockets.",5,1,2,General Petite,Bottoms,Pants +1022,38,The pants are see-through,I can't stand buying pants and i can see the pockets lining and my darker skin through the fabric. i don't consider that high-quality.,2,0,1,General,Bottoms,Jeans +1022,54,Retailer! please bring these back in black!,These have been a staple for me the last three years. i have owned three pairs of them in black. i haven't been able to find them in black for some time and i need these back in my life!!! please please bring them back!!,5,1,0,General,Bottoms,Jeans +1060,59,Love these,These are true to size and photo. i wore them to the opera and cant wait to wear them with sandals and a tee this summer!,5,1,0,General Petite,Bottoms,Pants +868,34,Depends on body type,"I think this shirt would be really cute on the right body type, just not mine. i'm 5'5, 125 and a 34ddd a couple weeks post partum. thought this could be a good shirt while i'm nursing bc it's flowy but stylish. unfortunately it did nothing for me when i put it on. the cut drew all attention to my big chest---not in a good way--and distracted from my smaller lower half. made me look much bigger and heavier than i actually am. probably good for small chested girls, very tall girls or curvy on the",2,0,7,General,Tops,Knits +1022,32,Great fit,"These pants fit true to size. i have a small waist and curvy hips, and while i have always loved the low rise ag stevie, these offer more coverage at the back with the same great slim fit through the leg. the length is also great for those of us who are not super tall. the have some stretch but i wore them several times without washing and the never got baggy in the knees or other stretch points. i own two other pairs of ag stevie in traditional denim and they still look great after years of wea",5,1,1,General,Bottoms,Jeans +868,41,Beautiful and very comfortable top!,"I bought this top on the advice of another tall reviewer and i'm so happy that i did. this is the perfect top for tall girls. i did size down from my usual large to a medium. the top was still oversized, but in a very pretty way. i love the material. this top is so soft and extremely comfortable. the v neckline is very pretty and not too low. i can see myself dressing this up with nicer pants for work or with skinny jeans for a more casual look. if you are a tall girl, this top is a must h",5,1,0,General,Tops,Knits +1060,30,,"These looked so fun, i had to have them! i usually wear a 14 in pants, but the large fit well. despite a lack of thigh gap and walking in these all night, i didn't lose a single sequin. they're comfortable and get a ton of compliments. if you're considering them, i definitely recommend going for it!",5,1,0,General Petite,Bottoms,Pants +999,41,Silk meadow mini,"This silk skirt was not the best look for me, but may work for others. i purchased the med, which fit fine. i just wasn't in love with the print/colors. the skirt has quality material and is well made. it's very light and airy. i did return it.",3,1,0,General Petite,Bottoms,Skirts +1060,37,Cute,I wish these zipped up instead of the drawstring. they are super cute but don't care for the way they sit on the hips.,3,1,0,General Petite,Bottoms,Pants +868,60,Relaxed and soft,"What a great top! i am 5'9"" - 136 lbs with a 34d chest.. and this top looks and feels great on. i am usually a 6 and the small fit perfectly. i purchased the grey and it is a nice medium grey color. the v in front hits in a great spot.. not too low, but just low enough to look feminine. i haven't washed and dried the top yet, so i hope it looks as good after washing as it does brand new. i was hesitant to order because of the earlier reviews, but i find this top really works for me, so i am glad",5,1,0,General,Tops,Knits +1022,36,,"These are great pants. i was nervous because when i saw them at the store they looked pretty linty but after wearing them a number of times they are not bad. i have to run a lint roller over them occasionally but not more than other black pants. i wear these to work and they are very comfortable. kind of stretchy, but very flattering. the higher rise than the other stevies makes them work really well for work-allows them to look less ""jean"" like. i highly recommend these-can't believe they aren'",5,1,3,General,Bottoms,Jeans +1022,38,Great fabric and perfect length,"I love these jeans, cant believe i never purchased them earlier. i'm always a 30 in paige and ag and this was no different. i will say that i did fit into the 29, so it could be that they run slightly large. the fabric is amazing!! and the white is perfect. love that it is not see through and fabric is substantial.the length for me at 5'5 was at my ankle. i loved them so much that i bought them in white and beige/cream. highly recommend.",5,1,10,General,Bottoms,Jeans +1022,47,Flattering!,"I was returning some things when i saw these jeans and had to try them on! they must be magical pants, because they are slimming and very flattering! amazing jeans!",5,1,4,General,Bottoms,Jeans +823,52,Very see through,"I ordered this shirt online and didn't even try it on... it is super see through and i would need to wear a tank underneath and i don't want to have that extra layer in the summer. +it is cute though!",2,1,0,General Petite,Tops,Blouses +1022,49,Best jeans ever,"I spend most of my time searching for the perfect pair of jeans (okay, maybe a slight exaggeration, but only slight). finally, the the ag stevie's are it. this is my third pair. now, for more colors...",5,1,1,General,Bottoms,Jeans +868,45,Loose and comfy,"I love the neckline on this - sharp enough for work, but cute for a fun night out too. only complaint is it's soooo flowy on the bottom. i could hide a baby under here for sure. i got the medium thank goodness or it would have been ridiculous. i'm 5'8, 160lbs. great for fall.",4,1,0,General,Tops,Knits +1081,50,Average and plain,"I agree with the first reviewer. this dress is just ok; nothing to write home about. if you need a throw on dress in a pinch, it's nice to have on hand, but there are probably a lot of other retailer dresses that fit the bill that are better quality than this one. it is also very body conscious in the back. the material is a thin, ribbed rayon - on the cheap side. overall, it's a comfortable piece, but it's more like a thin, long-sleeve t-shirt, rather than a quality dress. it would have been a gr",3,1,5,General,Dresses,Dresses +823,62,Fabric is flimsy,"It is a proper fitting oversized shirt. however, it is very flimsy and even see-through as a summer weight shirt. i returned it because i don't want to wear a tank or cami under it during hot weather.",3,0,3,General Petite,Tops,Blouses +868,71,Neckline,"I love the way the neckline is open not too low ! it also falls on your hips just right. + +great buy",5,1,0,General,Tops,Knits +1022,52,Ag stevie jeans,"I think these jeans are amazing. they are very flattering and most of all comfortable. i often will go up a size when buying white but i didn't have to with these. they also relax very nicely as you wear them. buying white jeans has always been a challenge, often they are to thin and not that flattering. i don't feel the same about these, they are the perfect summer white jean. i think i need another pair!",5,1,2,General,Bottoms,Jeans +1022,42,Really soft!,"I have owned a lot of stevies in the past. the only problem with them for me has been the rise. i have always thought they would have been perfect with a bit of a higher rise. voila! these have the perfect mid rise (for me). they are really soft. too long for my 29 inch inseam. they bunch at the ankles, but don't drag. i would love for them to have a skinnier ankle, but i also think they're fine how they are. i bought my normal size. they may turn out to be a tiny bit loose after wearing them. t",5,1,1,General,Bottoms,Jeans +823,49,Might as well wear my husband's shirt,"This shirt is enormous and, as the title of my review suggests, it looks like a men's button down. the fabric is quite sheer, but that's actually what i liked best about it. i just looked completely shapeless in this top & wish i had realized it before i wore it out because i would definitely have returned it. perhaps if i had bought it 2 sizes smaller i might have liked it better - it didn't fit anything like the model photos suggest - it's huge. not ""easy/slouchy"".",3,0,0,General Petite,Tops,Blouses +415,31,,"Beautiful suit. i had been eyeing this one for weeks and finally decided to just buy the darn thing. +it is tiny, just beware. as in it doesn't cover much, especially on the booty. not a bad thing, but buyer beware :) if you are looking for more coverage, size up. i wear a 32d and ordered a medium top. good thing i didn't get a small. i have to get the band taken in a bit, but i need the coverage in the cup. +for the bottoms i also got a medium and usually wear a small or medium in swimwear bo",4,1,0,Initmates,Intimate,Swim +817,35,Adorable!,"I saw this top at my local store and tried it on a whim. it is so much cuter in person than it looks online - i wouldn't have given it a second look based on these pictures... it perhaps runs a tiny bit large, but i stuck with my usual size small since it hung nicer on my body than the xs did. if you're thin you may want to size down - i have a decent amount of ""padding"" that keeps me from wanting to wear anything fitted (5'4"", 130 lbs). the little dots are more prevalent in person and the peplu",5,1,11,General Petite,Tops,Blouses +868,37,,"Gorgeous color (plum) and is very comfy. the lace at the top is just enough to be feminine, but not too much to be trashy. +like many of the other reviewers, i sized this down and am glad that i did. i think the larger size would have been ""tent like"".",4,1,0,General,Tops,Knits +822,56,Gorgeous peasant top,"The dahlia bell sleeve blouse is absolutely gorgeous in my opinion. i have already worn it several times, with white cropped denim or the cropped fringed pilcro denim jeans. it also looks great with the pilcro rolled shorts in navy or white. i took my usual size large, and though the fabric seems like it may be sheer, if you wear a nude bra you do not need a cami beneath. the blue band hits right about the waist of your jeans so your jeans don't show thru either. this blouse is lightweight and v",5,1,7,General,Tops,Blouses +868,67,April fools?,"I do not even know where to begin with this product. i ordered a small (i go between small and medium) and felt that would be a good fit. after trying on the shirt, i would have opted for the xxxxxxxxs or whatever the smallest size is. this shirt is very boxy. i know its supposed to have a 'flow' to it, but this shirt is too much. it needs to be taken in. or have a belt wrapped around it. i tried the belt look but it did not look flattering. i found this color to be very blah. overall, i am slig",1,0,0,General,Tops,Knits +850,28,Simple structured classic,"Cute staple in classic style overall. fabric weight is good, will be able to get by with nude bra. many wardrobe options with this staple.",4,1,0,General Petite,Tops,Blouses +868,33,"Cute, but....",I can usually be counted on to love a pretty top with lace detail and a bit of flow. this one has those qualities but it does not look great on me. perhaps it is too flowy because i am 5?3. or possibly the fabric is too soft a look on me. i did size down as reviewers suggested. maybe one size was not enough :-). i must return it.,3,0,0,General,Tops,Knits +868,66,Love love,"This top is fabulous! so comfy and the lace at the top is just right. it does run a little big but drapes so well it looks fine...i got the plum but tempted to get the ivory,,,especially at the sale price! a steal...",5,1,0,General,Tops,Knits +1078,39,On my wish list,"I tried this on in the store, in regular size (i often need petite). i think on this one, i could go either way. + +the cut is flattering fit and flare, and the colors are rich. i like the ""flowery"" design, good spring piece in my opinion, as it has components of all kinds of seasons: sleeveless and see-though material, buthe design part is almost like a fine corduroy, very soft. not too flimsy iether.",4,1,13,General Petite,Dresses,Dresses +868,39,,Huge! normally wear a medium and this was huge and very unflattering.,2,0,0,General,Tops,Knits +933,59,Spectacular cardigan,"This cardigan/sweater/jacket is splendidly soft, wonderfully warm and super stylish. i wear it with a navy pencil skirt or leggings. this piece will be timeless.",5,1,4,General Petite,Tops,Sweaters +868,46,"Comfortable, shrinks after washing","I ordered the ivory in xl. when i received it, there was more material than i expected. but, after washing & air-drying, it shrunk a lot. it's pretty and comfortable. worth getting on sale.",4,1,0,General,Tops,Knits +822,43,Not great,Liked the netting around the collar but the whole blouse was very baggy. order size down.,3,0,1,General,Tops,Blouses +985,47,Excellent sweater jacket,This sweater jacket is beautiful. the picture doesn't do it justice. works very well with a tank underneath and a skirt or over a knee length dress. wore with boots and received many compliments. it's classy.,5,1,2,General,Jackets,Jackets +868,27,A little disappointed,"I loved this top when i saw it online, and ordered it right away. however, the fit is way off. i am always a size medium. always. but i was swimming in this and had to return it. even if it had fit, i wasn't thrilled with it. i thought it would be something i could dress up, especially with the lace detail, but instead it looked really frumpy. i would recommend this top as long as you know to order a smaller size and are looking for something a little more casual.",3,1,0,General,Tops,Knits +1078,65,Very cute dress,"The dress is very cute, probably more on the casual side. i ordered the 2 petite and it hits me a few inches above the knee, which is what i wanted. the material of the dress and under slip is a little thin, but it looked nice after i ironed it. the top part of the dress looks great and shows off my shoulders nicely.",4,1,6,General Petite,Dresses,Dresses +822,46,Flattering and colorful,Looks great with jeans for a more bohemian look. i normally wear a medium but went large to accommodate a 6 month pregnant belly. the blouse is loose enough i probably could have stayed with the medium.,5,1,1,General,Tops,Blouses +817,69,Easy breezy and pretty!,"This is very comfortable, and pretty top. i love the pleated peplum and the flutter sleeves. the v-neck is the right height, and the embroidered polka-dots are very sweet. i got many complements wearing this perfect for summer top!",5,1,2,General Petite,Tops,Blouses +868,44,,"Great top! super cute. runs a little big, i usually purchase l but the m fit better. it's thin, but not see through, so it lays well.",5,1,0,General,Tops,Knits +868,35,Not my favorite,"I was hoping to love this tunic, but it isn't what i was hoping for. the material is cute, but the piece itself is a little too baggy and just doesn't do anything for my shape. just made me look boxy all around. it felt more like a poncho than a tailored tunic. unfortunately, it has to go back.",3,0,1,General,Tops,Knits +822,39,Everyday perfect!,I absolutely love the dahlia bell-sleeve blouse. this blouse has a lovely flow. perfect for fall. sleeves have a slight bell that hang nicely. i would recommend this blouse to everyone!,5,1,2,General,Tops,Blouses +868,62,So fun and comfy!,"I purchased this in the ivory color in store and liked it so much i ordered the plum color on-line. i am almost always an xl, but this fit better in the l size. it's very soft and comfy and i love the swingy style. will be wearing it a lot!",5,1,0,General,Tops,Knits +903,47,Super soft and pretty,"I'm happy with this sweater! a few things that may help others: 1) the detail on the yoke is made from a silky taupe-colored fiber, 2) it is ivory, not white and 3) although the fit is true to size, the sweater runs short, so if you prefer a longer fit you may want to size up.",4,1,4,General,Tops,Fine gauge +839,60,,"This is one of my favorite tops! it is comfortable and an easy ""throw and go"" top. i am a big fan of denim tops and the lace on the back gives it that extra detail and flare. very pleased :)",5,1,0,General,Tops,Blouses +850,31,Elegant,"I got this top in white and absolutely love it. the top can be tucked in or worn out, it is very elegant and will go well with skirts as well as pants and even jeans. can't wait to wear it.",5,1,0,General Petite,Tops,Blouses +868,38,Comfy and pretty and run 2 sizes too big.,"I'm always an xl in retailer blouses, and to be quite honest sometimes the xl are too tight to keep. however, in this blouse the size medium fits me like a normal size xl would, meaning i had to go down 2 sizes. even at size medium the blouse is still very loose and flowy. the body is cut like a trapeze a-line, so very forgiving. the fabric has a lot of stretch to it, so the arms aren't tight. the fabric is very comfortable and the lace detail is nice. just a heads up for anyone who would c",5,1,9,General,Tops,Knits +868,37,Cozy elegance!,"First off, this top is super cozy! i adore an easy top that has beautiful detail - and this one does! the fabric is a lot like a thermal shirt, but not too warm. it's very stretchy!! not sure if it will stretch out with wear, but you could easily size down. the body has a ton of room. because of the cute cut, you could wear it oversized without it drowning you, or you could size down to keep it more slim. the lace is simple and even more beautiful in person! i highly recommend this one - especia",5,1,15,General,Tops,Knits +868,39,Runs very large!,I'm not sure i recommend this shirt but i did purchase the plum yesterday. i'm always always a m and had to size down to an xs on this one. that's how large it was! even the xs had plenty of room; i'm 5'6 145 lbs 36b for reference. the material look like it will stretch out even further but i got it anyway. it was on sale plus 25% off and for that price i can use it for casual days on the weekends. it's comfortable on and loved the lace detail.,3,0,0,General,Tops,Knits +934,72,Enormous,"Ordered this in my usual medium, knowing it was meant to be over-sized. but i could easily have put another of me (138 lbs. with junk in the trunk) inside it! so i'm returning it for a small, feeling sure that there'll still be enough extra for a slouchy look.",4,1,3,General,Tops,Sweaters +985,41,Very loose fit,"This is a very loose fitting style jacket. if you like your jackets oversized, get your regular size. if you prefer the slightly loose (but not baggy) fit like the product photo, size down. as noted by another reviewer, the sleeves are incredibly long. i would say if you are a typical size 0 or 2 (unless you like the oversized fit), you are likely sized out of this jacket. it's a shame, because the quality is great and the windowpane print is beautiful. i'm sadly sized out.",4,1,0,General,Jackets,Jackets +868,39,Pretty but run large,I bought the neutral color. this is a lightweight tunic sweater that can be worn during spring. the lace detail is so pretty...i ordered my normal size small and would have preferred an extra small...the top flows nice but would've been a better overall fit if i sized down. i'm 5'7 140 lbs for reference. make sure you size down at least 1 size.,4,1,0,General,Tops,Knits +1078,31,Perfect!,This dress is super flattering. i love everything about it!,5,1,1,General Petite,Dresses,Dresses +868,38,Five of me could fit in this top!,"I am 6' and typically wear a size 8-10. i am a rather busty kind of gal (36h), so i usually order larges in tops so that i am sure there is no pull across my chest. i ordered a large in this top in the plum color. when i received the top, i could not stop laughing at how huge it was... the fit in the chest area is fine, but i can wrap the sides around me and tie them into a bow. at least half of the material needs to be removed! despite how huge the top is, it is very cute otherwise! i just mail",3,0,0,General,Tops,Knits +1078,30,Better in person!,"The print and detail on this dress are so much better in person, especially the neckline! i agree with the previous reviewer in that it felt spring-timey to me. flattering fit and flare however the top runs extremely small. i am usually a 6 in retailer dresses and i could barely zip the 8 over my bust but the 10 was enormous. rest of the dress fit fine but if you are large up top you might want to size up. fabric does not stretch. overall too cute to pass up! for reference i am a 34dd.",4,1,12,General,Dresses,Dresses +1078,32,"Versatile, great spring & winter color","Color of the dress matches color on my monitor. the neckline is sheer. i am 5'4"" ,125 lbs, 32d and ordered a size 6. i thought it fit perfect. this is a great spring/summer dress and can be worn with dress heels or flats for a dressier look. it can also be worm with tennis shoes (white converse are my choice) for a more casual look. + +i think this dress could also transition to a fall/winter piece paired with tights and a suit jacket or cardigan. + +also, i love the pockets, though i do see ho",5,1,1,General,Dresses,Dresses +868,63,,"What a beautiful flowing top. i am either a large or xl in tops but only needed a large in this top. i purchased it in the neutral color, but will probably get it in plum. if you have some flaws in your middle, this conceals everything. the material is so soft. you can dress it up or down and wear it from now until late fall. the plum color was beautiful, but i have more to wear with neutral. a great, versatile top.",5,1,28,General,Tops,Knits +1078,19,,Really cute stress! i love the pattern and feel that this dress you can easily dress up or dress down. the neckline is the main reason why i bought the dress. it is a dress that hits above my knees so i like how modest it is. the slightly open back is also a nice touch. it's a dress that can easily be dressed up or dressed down. perfect spring dress!,5,1,1,General,Dresses,Dresses +868,38,Comfy and stylish,I'm 7months preggars and this top actually compliments my belly. extremely comfortable.,5,1,0,General,Tops,Knits +850,24,Great basic tank,I'm always on the hunt for good white blouses to pair with business casual attire or everyday wear. this was a great tank. i love the fabric. it's nice and sturdy and you don't have to worry about wearing a cami beneath it. this fabric does wrinkle some so bear that in mind. i really like the shape of the top near the shoulders. it's a great conservative cut. the little criss cross detail on the back adds a bit of charm to the top. i would definitely recommend this to others.,4,1,1,General Petite,Tops,Blouses +1078,34,My new favorite dress,"This dress fits me perfect. the only complaint i have is that it was a little snug around the neck every now and then. it was a little snug getting in and out of the dress too. overall, the design is beautiful and it is definitely my new favorite.",5,1,2,General,Dresses,Dresses +822,45,Subtle bohemian,"Usually the whole boho style looks funny on me, but the cut and print were subtle enough for me to pull it off. the colors are beautiful - probably flattering against any hair or skin tones...i took my usual small because the shoulders were generous enough. word of caution - this is dry clean only.",5,1,2,General,Tops,Blouses +817,42,Had such promise,"I was really excited after finding this top online and reading the reviews; the combination of peplum, cap sleeves, and color seemed too good to be true. i ordered a size medium but unfortunately, this top is on the short side so wearing it with pants or jeans did not work out. in addition, the fabric was more sheer than it looks in the picture and the v-neck in front dipped a little lower, too. a camisole might have solved both of those problems but i didn't bother. i returned it to the store.",2,0,0,General Petite,Tops,Blouses +822,45,Beautiful print and colors,"This is a really pretty shirt - the colors are beautiful. it runs large, and it's semi-sheer. shape is loose and boxy, but because it's more sheer, it didn't seem as boxy. i'm tall, and this was long enough. only change would be to make the sleeves a little less bell like. not tight, but lose some of the volume.",4,1,0,General,Tops,Blouses +868,24,Nice spring top,"I do a lot of online shopping and, consequently, a lot of returning. when i saw this shirt online i was really excited about it - it just looks very elegant, nice and airy. when the shirt arrived, i almost thought that i should return it, because there was blue lint all over the body and sleeves. turns out that this is part of the shirt; if you zoom in, you can see the blue specs woven in. i didn't end up returning the shirt, because it's extremely comfortable, and i still get a lot of complimen",4,1,0,General,Tops,Knits +1078,26,Kentucky derby dress,Really love the print of this dress and the eyelet detailing around the neck! very flattering!,4,1,1,General,Dresses,Dresses +868,34,Be careful how you wash!,"This shirt is beautiful. it is flowy and light, a perfect piece for transitioning from winter to spring. however, do not follow the washing instructions on the tag. it says you can machine wash, tumble dry low, and despite going one step further and washing on my gentle cycle in cold water and drying it on extra low, it came out of the wash so small that a child could barely wear it. it went from being a tunic to an inappropriate crop top i will never wear again. if you do order, please take the",2,0,16,General,Tops,Knits +1033,56,Great cords,"I love these pants. these pants are perfect if you like a slim style, but can't comfortably wear skinnies. i like the heavy weight corduroy fabric and seaming details. i bought the ""wine"" color, but as pictured, it really is rust or copper colored, which i prefer.",5,1,0,General,Bottoms,Jeans +936,47,Great alternative to a sweat shirt,"I love wearing this pullover with leggings and boots. it's soft, comfortable, and loose fitting.",5,1,1,General Petite,Tops,Sweaters +863,36,,,5,1,0,General,Tops,Knits +839,63,Very cute top!,The blue is not see though at all and the length is perfect. so many tops now are on the longer side or have the high/low hems. this one is great....love it. kinda want the white one now!,5,1,0,General,Tops,Blouses +839,28,Pretty but very short,"This is a beautiful and well-made top; sadly it just didn't work for me. i'm 5'1 with a pretty short waist and even on me it was too short. the shortness might've worked if it wasn't as baggy as it was. i don't mind baggy, loose-fitting tops, but this was so much so that it was just unflattering; it looked a bit boxy as well.",3,0,0,General,Tops,Blouses +839,34,"Cute top, but short and boxy","Nicely made, pretty details, but it's cropped fairly short and is rather boxy. wore with orange linen pants and it was cute!",3,1,1,General,Tops,Blouses +863,43,Great shirt,"Bought this shirt in the black. runs tts, very comfortable and flattering. past left of center shirts in this style/fabric seem to run a little large, but i bought this in my usual retailer m, and it's great. very similar to last years style, but perhaps a tad more fitted. i gave it a 4 for quality b/c i have noticed a little bit of pilling under the arm area, but overall, it holds up pretty well.",5,1,3,General,Tops,Knits +45,26,"Cute pants, but short.","These pants have a really cute design. however, they are a bit short (and i'm only 5'4""). i'm still happy i purchased them, but i thought i was purchasing full length pants (as shown on the model) and not capris.",4,1,0,General,Bottoms,Casual bottoms +863,40,Good material,"I am 5'3"", 118 lbs and fit perfect in size s petite. good material and flatting!",4,1,2,General,Tops,Knits +839,25,Cute in theory,"This is a gorgeous top; however, it is very sheer and see through. maybe the fabric would have been better if it was a bit thicker?",3,1,23,General,Tops,Blouses +863,45,Another great one from left of center,"Love this top! such a pretty color and so comfy. sleeves are a bit long, but fits pretty true, like most left of center. washes and dries in the dryer very nicely.",5,1,0,General,Tops,Knits +863,38,"A shirt to live in, but inconsistent sizing","I liked this shirt so much i ordered a second one online in the same size but different color. unfortunately the second one is much shorter than the first and looks less like a tunic or more like a cropped flowy top - not a good look. so the second one is going back. otherwise the shirt would get 5 stars. washes well, super soft and comfy, and looks great with all kinds of bottoms...jeans, cords, leggings. wish it came in more colors. i typically wear a m or l in retailer tops and took the l in th",4,1,2,General,Tops,Knits +863,39,Soft and comfy,"Perfect for the weekend, purchased the purple, it is a nice soft purple, great with jeans. xs petite was perfect. (115 lbs)",5,1,0,General,Tops,Knits +839,52,,Loved it. i have receive so many compliments when i wear this. it fit great.,5,1,1,General,Tops,Blouses +863,46,Perfect long-sleeved tee,I ordered the orange version in size xl. it fits true to size. the fit on me matches the online photos. it's so comfortable to wear. i love the unique details of it. i've washed & air-dried it too. it retained its size. the color is outstanding. it's such a pretty shade that looks more red online than it does in person. there's more of a darker orange tint to it. i've gotten a lot of use out of this tee. hopefully it'll come back in the fall in more colors.,5,1,0,General,Tops,Knits +829,28,Beautiful piece,"I'm in love with this print! the fabric is very soft too. as others have noted it is small in some odd spots and a little big in others, but overall my usual size worked out great. i wear it with a cute belt to enhance an hourglass look, because it's pretty drapey. really versatile, lovely tunic.",5,1,0,General Petite,Tops,Blouses +863,41,Great top!,This top is a cross between a shirt and sweater. great length and very soft. it does run a little large so size down if you are n the fence. hangs nicely in the back.,5,1,2,General,Tops,Knits +863,71,Good fit,"Was looking for a top with this style. i ordered this top wondering if it would fit in the hip area after reading the size chart (it showed a close fit.) the answer is yes! there's room to spare, which is a good thing. i like the nubby front material and the hemline's asymmetrical style. i'll be layering this top with sweaters and jackets all winter. very soft feeling fabric. wouldn't mind another one in a different color!",5,1,3,General,Tops,Knits +863,36,Pretty and comfortable,"I bought the grey, which is a gorgeous color. i like the long length in the arms (though i tried it on in different colors and the arm length did very). soft and pretty. i like the length. the back does wrinkle, but i still like the shirt. it's loose, casual and flattering.",5,1,2,General,Tops,Knits +828,32,From a petite - love this shirt,"It's a little roomy, but this shirt is spectacular. i've gotten so many compliments on this one, whether worn with jeans, work pants, or shorts. all-weather. as other reviewers have said, the material is sort of sleek-feeling - not traditional cotton. for me, i love that, as i've been able to wash stains out of this shirt more easily than i otherwise would. i am normally a tiny, tiny petite, but i ended up buying this in the xs regular because the style worked even though it's a bit loose.",5,1,0,General,Tops,Blouses +829,59,Fun shirt for work or weekend wear!,This top is great to wear to work or for enjoying brunch or dinner with friends. it is very comfortable and pairs great with jeans for a dressed down look. i sometimes wear it under a chambray dress and have gotten a ton of compliments. great purchase!,5,1,0,General Petite,Tops,Blouses +839,56,Sweet shirt!,"This is a light, so fun to wear shirt. it's delicate and can be worn to dress up jeans. i would very much recommend it. love it!",5,1,0,General,Tops,Blouses +863,46,Not in love with the color,Ordered this online and thought it was more of a red than the true orange that it is,4,0,0,General,Tops,Knits +863,31,Medora tee,"I love this shirt. i have it in black and purple. i found the fit tts and looks great casually with a scarf or dressed up with a nice necklace. you can't go wrong with a cute long sleeve shirt that is soft. i like the length goes just past my bottom in the back but not overwhelming. +it is more fitted than last years style.",5,1,2,General,Tops,Knits +863,49,So comfy!,I bought this shirt in black and green and now bought the orange. it is casual and stylish at the same time. material is soft. great shirt!,5,1,0,General,Tops,Knits +863,54,Super soft,"I was undecided whether to get regular or petite. i am 5'4"" but i didn't want it to be sloppy long. ordered the petite xs as other reviewers suggested ordering down and its perfect. length falls on me same as the model above. not heavy and very soft. casual but not sloppy. sleeves are a tad long which i prefer.",5,1,0,General,Tops,Knits +839,53,Gorgeous white blouse,I love a good white blouse and this shirt does not disappoint. the detailing of the lace and bead work make it extra special. i just love it. it can be dressed up or worn with jeans. it runs a bit wide. i normally don't buy a petite in tops because i am long in the body but i did with this one after i tried the regular.,5,1,1,General,Tops,Blouses +936,25,Great fit,Love this top! the material is very comfortable and it's loose fitting which is what i was looking for!,5,1,3,General Petite,Tops,Sweaters +863,56,A staple,"This is so comfortable, i had to buy another one. looks great under sleeveless sweaters. interesting texture adds interest.",5,1,0,General,Tops,Knits +839,44,,,5,1,0,General,Tops,Blouses +839,43,Well made cute top,"So this top is kind of short, but that is pictured. it hits right where it does in the photo, which i like. it is a sheer material, not terribly so, but you will most likely need a cami, which you could pair a long one with to offset the shorter top if you don't like the shortness. i love the top, it's very pretty detailing, cute, just as pictured. i ordered a size 2 and it fits great. i usually wear petites, but you really don't need to get a petite because it's short as it is. i have broad sho",5,1,1,General,Tops,Blouses +267,48,Shimmer v,"Love this, but the one thing that made me buy this is that if you look at the pic, the girl has her hand in a pocket - there is no pocket!!! which makes me bring the rating down - some one else had noted that the v is deep - they are very right - be prepared to shift the shirt lots unless you wear something under....... it is- other than that i really like it",3,1,2,Initmates,Intimate,Sleep +829,30,Great shirt,"I ordered this shirt last week, and i wore it as soon as it arrived. it is a beautiful shirt with an original design. it is rather casual, but you can dress it up with the right accessories. the print appears to be navy (it was advertised as black), and it looks great with jeans. i would certainly recommend this item.",5,1,0,General,Tops,Blouses +839,52,Cute but not for me,"Beautiful in white, and beautiful to look at, but as the other reviewer mentioned, the fabric is very sheer and see thru. not a deal breaker if worn over a cami; however, the reason i am returning it is the fit. there is too much fabric flaring right at my waist. it looks like a tent on me. in addition, some of the beading is already coming off, and i can't imagine what it will look like after one wash. that's too bad, but i can't justify paying this much money for a sweet top that is beautiful",4,0,13,General,Tops,Blouses +863,59,,,5,1,0,General,Tops,Knits +863,29,Great basic,"This is a really great tunic. purchased it in black and it is very flattering. i love the side slit detail. the material may seem very casual, but it is extremely comfortable and can be dressed up. i'm 5'3"" 130lbs and a s fits perfect.",5,1,0,General,Tops,Knits +839,48,Shirt looks better than in the photo,I am not a big fan of lace but this shirt has just enough. it actually looks better than the photo and it looks even better when you wear it. i have received numerous compliments on this shirt everytime i've worn it.,4,1,2,General,Tops,Blouses +815,40,Unique,"This blouse is made out of a high-quality material, flows beautifully, and the neutral flower pattern makes its yellow/green base pop. i played with a bow and decided that it looks the best tied lower than on the model to form v shaped neckline. this piece will transition easily from one season to the next and from causal to dressy. for the reference, size 12 was the best fit form my curvy 36dd frame.",5,1,2,General,Tops,Blouses +863,45,"Love it, but.....","I love this top (so cute and comfy!), but i wore it twice, washed it once on gentle and layed to dry.....now there are 2 small holes in the front. for as much as it cost, i would have expected it to be more durable. very disappointing, especially since i don't live near an retailer and can't take it back easily......",2,0,1,General,Tops,Knits +839,28,Very detail lace and beading design. comfortable!,"I was eyeing this blouse when the catelog was mailed to me earlier this year. i never got a chance to try it on in stores, but when i saw it online and on sale i snagged it. what i didn't realize was the intricate design of this blouse. ithas really pretty lace all over the top and then fine beading securely sewn on. the blouse has crochet sleeve designs and also a very pretty neck bib area. it fits me tts and very comfortably. i love the airy feeling of it and it actually also isn't too long on",5,1,0,General,Tops,Blouses +267,45,,,5,1,0,Initmates,Intimate,Sleep +936,48,Cozy and perfect for a southern winter,Love this sweater it's perfect for chilly florida evenings....love the loose boxy shape and it's very cozy not itchy!,5,1,1,General Petite,Tops,Sweaters +863,51,Thermal elegance,Luv the loose fit and quality fabric - great piece for layering.,5,1,0,General,Tops,Knits +828,36,Staple buttondowns,A must for every closet. very flattering fit - although i think the white is slightly boxier than the chambray.,5,1,0,General,Tops,Blouses +839,41,Very short shirt - gorgeous for shorter folks!,"I loved this shirt online and went to my local retailer store the other day and wanted to try it on. i didn't even get past the ""hold it up and measure the length"" test we tall people often do, as it was incredibly short. there is no way i could wear this shirt at 5'11"". + +unless you have a short torso and want to rock the (icky) high-waisted pants that are everywhere right now, this beautiful top might not work for you. + +oh, and it's sheer. camisole needed for white and navy.",4,1,21,General,Tops,Blouses +829,50,Super cute,Super cute and flow. mine had a bit of stitching problem so i am exchanging it for the same thing. fabric feels great. def recommend,5,1,0,General Petite,Tops,Blouses +863,42,Nice tee,A great everyday tee!! dress it up a bit with a great gold necklace!! looks nice with jeans and brown boots!!,5,1,0,General,Tops,Knits +936,66,"Love, love, love",I love this sweater! i have gotten so many compliments. it is so comfortable and unique. i am planning on ordering the same sweater in another color. i wear a small and ordered a small. it fit me perfectly. i shop at retailer for a lot of my clothes because they are well made and different.,5,1,3,General Petite,Tops,Sweaters +936,52,"Zippery-do-dah, zippery-day, my,oh,my sweater",This sweater is very cute! it looks great with a blouse underneath and open the zipper or it is great with a camisole. you will need something underneath especially if the temperatures are low as it is a wee bit shear. i am a small/medium ordinarily but it depends upon the designer. this runs a little large but keep that in mind if you plan on layering. the price is right and the zipper is aesthetically pleasing. i have the blue and oatmeal/beige color both are great pieces to any wardrobe.,5,1,0,General Petite,Tops,Sweaters +936,60,Shapeless,"I am 5' 4 1/2"", 125 lbs., and ordered a m in this. i'm usually between a s and m. it was too big and didn't have any shape to it. i don't think a s would fit much better. also, i ordered the pink but it was really a coral. if my local store had a s i would probably try it on in a different color, but they don't. i'll have to return this. it looks so cute online.",3,0,2,General Petite,Tops,Sweaters +936,22,Good sweater!,"I really like this sweater! it runs a little larger than expected, but i like my sweaters big. super, super comfortable and not itchy at all.",4,1,0,General Petite,Tops,Sweaters +927,54,Wanted to love it !,Bells out to much i had to send it back,3,1,2,General Petite,Tops,Sweaters +1035,52,Fits awesome!,"Love these jeans! they fit great, they feel great. i am 5'9.5 135 pounds. they fit everywhere you would like them to. unroll them and they are long! love love love!! so wonderful i just bought my second pair.",5,1,1,General Petite,Bottoms,Jeans +936,75,Perfect versatile sweater,This cream sweater is a great addition to your wardrobe. the length hits below the waist and the zipper adds an updated touch to the look. is a bit itchy but there's room for a light layer underneath.,5,1,2,General Petite,Tops,Sweaters +936,55,Too boxy,"I have been looking at this sweater online since it first came out and i finally ordered it when it was 40% off. i ordered a size m petite, sadly when it arrived and i tried it on, it was very boxy, stiff like, and did not flow like it looked on the model online so i sent it back.",1,0,1,General Petite,Tops,Sweaters +936,41,,I can only review the ivory as that was the only color in my local store. this sweater is very flattering as it is fitted on top but has a nice flow over the hips plus the zipper allows for more room or to show off an underlying top. the material is soft and the ivory is very pretty in person.,5,1,19,General Petite,Tops,Sweaters +936,42,,"I bought the ivory sweater. lovely color and softness. the zipper is a great, unique feature that i love. the bottom has a wavy shape with extra fabric - definitely creates a bell shape.",4,1,0,General Petite,Tops,Sweaters +1035,45,"My new ""go-to"" jeans","Just got these jeans last week. love the quality, which is typical of pilcro jeans. i usually have to get a tall size, being 5'10"", however they sold out quickly. so i decided to order the regular inseam in my usual size. they fit great. since they are more of a boyfriend jean, they don't fit too snug. so i'm able to get away with the regular inseam. i'm usually a 26-27 tall, and the 27 regular works. love the cuffs and rise in the jeans. i've worn with booties, heels...and am waiting for warm w",5,1,2,General Petite,Bottoms,Jeans +823,58,Stunning perfection,"Absolutely stunning. the color, the pattern, the quality. i love everything about this top.",5,1,0,General Petite,Tops,Blouses +936,60,Stylish,"Love the style of this sweater and it just happens to be warm, too!",5,1,0,General Petite,Tops,Sweaters +858,65,Just alright,"I was really excited to get this top but unfortunately its going to have to go back. i am 5'6 120 and usually a s fits. however, this was really tight. also, the material is really really thin for the $90 price-tag. save yourself some money and avoid this one.",3,0,1,General,Tops,Knits +872,66,"Great, versatile t-shirt","I love this top. it has a relaxed fit without being frumpy, and it looks great with boyfriend jeans or skinny jeans and boots. it's a great, soft fabric that doesn't require a cami underneath. wish there were other colors.",5,1,1,General,Tops,Knits +936,46,"Soft, warm, & cozy","I was pleasantly surprised by this beautiful sweater! being that it's a wool blend, i thought it would be itchy against my skin. to my surprise, it is quite the opposite. very cozy and soft, with plenty of ""wiggle room"". i'm very tall and having enough length for my arms is always a concern. the sleeves are long and comfortable. this sweater is quickly becoming one of my new favorite ""go to"" pieces!",5,1,0,General Petite,Tops,Sweaters +862,48,,"This top has great detailing and color. does run a little big, but adds to the style and movement of the tank. the stitching around the bottom makes it cute for layering.",5,1,0,General Petite,Tops,Knits +1035,44,,"I hoped i would hate these because i have a zillion pairs of jeans. as i suspected, they're amazing and quickly became my favorite! they have just the right amount of stretch, so flattering.",5,1,1,General Petite,Bottoms,Jeans +936,61,,,5,1,0,General Petite,Tops,Sweaters +862,49,In pursuit of individual style,"I remember the first time i walked into an retailer store: like walking into a dream of all my favorite things. i've finally found a store whose products help me to express myself. as a writer, i love whimsical & out of the ordinary. i have found my honey hole. every time one of the pastel bags w/ribbon handles is past over the counter or i push 'add to cart' on my computer, i do a little happy dance in my heart. my closet is like a candy store filled with sweets & treats. thank you retailerp",5,1,0,General Petite,Tops,Knits +1035,36,So cute!,"I really love these jeans! they are so comfortable and are very flattering. i am 5'10 and a size 6. i bought the 28 regular and they fit perfectly. i have high hips, so i appreciate the mid rise in these. the length was perfect too, so i'm glad i did not purchase the tall. the length was the same on me as in the picture. the jeans arrived uncuffed, and they look just as cute without the cuff as they do with. i will definitely wear them with and without a cuff for different looks. i am very happy",5,1,1,General Petite,Bottoms,Jeans +862,45,Huge,Runs very large. ordered a smaller size due to other reviews but should have ordered several sizes smaller,2,0,0,General Petite,Tops,Knits +936,56,,"I bought this sweater for my future daughter-in-law for her birthday in coral. she lover it! the contrast of color in the yarn is hard to see in the photos. grey and bright coral, just beautiful!",5,1,0,General Petite,Tops,Sweaters +927,43,"Like the ""swing"" shape, don't like the color","I got this 25% off before christmas. i immediately started wearing it, thinking it would be a staple. i like the swing shape; the shape feels just right - not too baggy. but the material is more washed out looking than the picture reveals, collects lint like crazy, and out of the box the sweater looks like it has been laundered several times. also, there is a particularly prominent hole in the chest area (as you can see in retailer's picture). it looks out of place in person. i'm left loving the s",3,1,2,General Petite,Tops,Sweaters +823,33,Love,"Just received this top in the mail & purchased at the sale price. beautiful classic piece that can easily be dressed up or down. excellent quality & fits tts. for reference, i'm 5'5, 120lbs & ordered the sp & xs, i kept the xs. the sp had an elastic waist, there was no drawstring. not sure if this applies to all petite sizes or just the one i received.",5,1,0,General Petite,Tops,Blouses +1072,37,Cute idea horrible fit,"This was exactly the item i was looking for. simple, black, stylish. unfortunately the fit is terrible and proportions completely off. the upper arms, chest and hips were ridiculously tight and the whole look was uncomfortable and flattering.",1,0,0,General Petite,Dresses,Dresses +1108,28,,"Let me preface this by saying, im totally keeping this dress! + +it is kind of a weird design, but intriguing. i received it in the mail yesterday, i am 5'6"", 125 lbs and have hips. as a previous reviewer mentioned, this dress is more fitted than a swing dress as it appears. fortunately the xs fit me just right - but i cannot gain another lb. + +my husband said that i looked like i was in a choir because of the higher neck design and bell sleeves, but he too found the dress somewhat alluring.",5,1,0,General,Dresses,Dresses +862,37,,"I second that above review who states ""worst blouse i've ever ordered""",1,0,14,General,Tops,Knits +936,41,,"When i saw this sweater online i honestly didn't think it was really anything special. however, when i saw it in my local retailer store i really liked the knit as well as the color (kind of an off white/ pinkish) i decided to give it a try. i have to say that i really like this sweater a lot. the cut is quite flattering even though it is baggy and it is very soft. i think it will look very cute with a pair of skinny jeans and boots this winter. glad i decided to give it a try.",5,1,1,General Petite,Tops,Sweaters +927,36,Love this vest,"I have been looking for a vest this winter and i saw this one online. i am a huge fan of swing tops. i don't care for super fitted clothes. the knit says part wool so i was expecting it to be a little scratchier, however when i got it, it is so soft and more cotteny feel to it than wool but has the warmth of wool when wearing it. i really have to try not to wear it everyday. just love this vest! it's my favorite purchase this season. i am a size 10 in tops and i can either do a med or a large. i",5,1,2,General Petite,Tops,Sweaters +936,56,Stylish sweater,"This sweater is so much better in person. it is a heavy, soft knit that fits perfectly.i am petite and thin and took the reg xs. it is very flattering and drops just below the hips. the bottom is a bit flowy. i bought the beige and bright pink color. the pink is very dark and bright and has an orangy tint to it. i wear a dark beige cami underneath. super cute with cuffed dark jeans and black booties.",5,1,0,General Petite,Tops,Sweaters +936,64,,Love this sweater! bought it in pink and grey and it looks great with jeans. great quality and true to size.,5,1,0,General Petite,Tops,Sweaters +1035,57,Great fit. i need to fix cuffs.,"Great fit in waist, hips and butt. i wore them all day and they did not stretch out. + +i am tall but the length of the jeans with the cuff is a tiny bit past my ankle bone. i want it just above the ankle bone so i am re-doing the cuff slightly and then i must send these to my tailor to close the cuff completely. they look silly when the big cuff isn't at least tacked in place. perhaps by design they were left this way so each of us buyers could find the proper length and close the cuff ourselves.",4,1,2,General Petite,Bottoms,Jeans +936,68,,"Purchased this sweater in pink which is a beautiful blend of grey and pink. i purchased my usual size xs and it fits great through the shoulders, sleeves and body. i did try on a s and the body was too boxy. also, i tried a couple of different ones in my xs (along with other colors) and found them to run a little differently so you may want to check this out. the sweater is beautiful and easy to wear. the zipper adds a unique detail which can be unzipped part way to show a tank or just to draw a",5,1,1,General Petite,Tops,Sweaters +1035,38,Great all around jeans,"Great jeans. especially since i'm getting tired of my skinny jeans. length is great for someone tall like me (5'10"") unless you wear heels with them but these are more sneaker/sandal jeans.",4,1,3,General Petite,Bottoms,Jeans +936,30,,"The sweater looks cute if you get the right size. it meant to look a little oversized, i think. the color is pretty in person, however it looks different online and in person so keep that in mind. the material is very warm and a little itchy you will need to wear it over a long sleeve undershirt. the look is nice but it is for a cold day.",4,1,4,General Petite,Tops,Sweaters +936,51,"Soft, roomy and classy","I just ordered this item and wore it yesterday. received compliments from my friends. truly a great sweater. feels soft to the touch. i love the cut and how it falls around my hips. sleeves were nice and long. i am a tall lady with long arms. almost 6 ft, weighing about 155. i got the med which was a perfect fit for me. love the off white. almost thinking of getting the peachy pink too.",5,1,0,General Petite,Tops,Sweaters +1170,34,Small,"I got an xs in this suit. i am 5'1, 100#, a32. this was much much too small. it was very tight around the chest and i am only a 32a. it is, however, a good looking suit. i suggest sizing up.",3,1,0,Initmates,Intimate,Swim +936,64,Love it!,This sweater is really pretty. i love the way it looks on but it is a bit itchy and scratch if you don't wear something under it.,4,1,0,General Petite,Tops,Sweaters +605,33,,"The are so comfortable, flattering, and i feel i can wear them with a lot of styles: dress them up or down, it all looks good. great product! make more like this please!",5,1,0,General,Bottoms,Shorts +1072,66,Beautiful dress,"Ordered size 12, it fits but pulls a tiny bit in the midsection. also way too long, hits below my knees. the dress is beautiful: crisp black color, nice fabric, great neck. it's also the kind of dress that must fit well to look good. i had to return mine.",3,1,0,General Petite,Dresses,Dresses +936,55,,Not flattering if your have large top. made well and very cute for thin no boob person,3,0,2,General Petite,Tops,Sweaters +936,40,Beautiful ivory sweater,The pictures of this sweater do not do it justice. i would have passed it over online but it immediately caught my eye in the store. the yarn is soft and cozy and the flair at the bottom adds a feminine touch. zipper is cute. v-neck is just right - it is not too low. i know i will be wearing this sweater a lot - very happy with this purchase! i didn't see the pink or navy in the store.,5,1,8,General Petite,Tops,Sweaters +936,35,Just what i was looking for,"On the real...i needed a sweater they gave my tummy some room! what yes i'd love some more pumpkin pie. know what im saying?! what appeared to be lack of constriction in the belly region of a tiny model, made me hope with fingers crossed it would look like that on me. please please just swing and not cling. mmmmm...k. the majority (70%) of the fabric content is natural and a sale was going on so i went for it and purchased this sweater online. so glad i did!",5,1,2,General Petite,Tops,Sweaters +936,42,Comfy casual and dress up,"This is a fun, cozy sweater. i feel you can dress it up and use it casual too. i bought the ivory in size s, i'm 5'2''. although i put it runs true to size, it's is a tad tight around my upper arms, not uncomfortable. i have normal to somewhat skinny arms, so i don't think it was my body type. i didn't check other sweaters in the same size to see if it was an isolated case. it is to be worn loose, it has quite a bit of material all around mid to lower part, just fyi.",5,1,8,General Petite,Tops,Sweaters +872,54,Love this top!,"Totally my style, i love how it hangs and is so soft and comfy. material is thin enough to be fairly lightweight, and i was worried about it being clingy -- so happy it's not! body skimming and very flattering for full bust (v-neck helps here) if like me you don't like tight chested clothing. also love the length of this top. i'm 5'4"" and 36ddd, size l fits me just how i like it.",5,1,3,General,Tops,Knits +1035,57,Not for curvy girls,"My normal size 30 in the hyphen chinos fits my size 10 body very well. these selvage jeans were too tight in the hips, too loose in the waist, and too tight in the knees, and i don't have big knees. also, the cuff was down to the floor instead of ankle length. cuffed, they seem to have a 32 inch inseam, and these were regular, not tall. basically, i think you need to have a straight up and down shape with no curves, and very long legs for this jean to work.",3,0,5,General Petite,Bottoms,Jeans +936,39,Cozy sweater,"The sweater looked different on each model so i wasn't sure what to expect. luckily, it fitted me similar to the one i was hoping it would, the cream sweater model. i'm 5'6"" and got a size small. i like that it hangs just past my hips and the long sleeves. also, the v-neck isn't too low so i don't have to wear a camisole.it's very cozy and doesn't itch.",5,1,4,General Petite,Tops,Sweaters +936,60,Cute with zipper,"This sweater runs a bit large/bulky around the bottom area. you can kind of see in picture. i purchased this online in medium as i'm 5'9 so normally wear that size. i could probably have ordered a small but will keep the medium, just a little too full around the hem. also, the v neck is somewhat low cut. pink color is nice and pale pink.",4,1,0,General Petite,Tops,Sweaters +48,33,Gorgeous and flattering,"I found this set once while browsing the website. i fell in love with it and kept a photo of the set so i could save up to purchase it. as luck would have it, my mom surprised me with a gift card, so i applied it to my purchase. i'm so happy with the set. it's wonderfully flattering, and makes me feel sexy. i want one in every color!",5,1,0,Initmates,Intimate,Intimates +936,71,Winter sweater,Great sweater - heavy without being too warm. great layering piece.,5,1,0,General Petite,Tops,Sweaters +605,36,Cute shorts for the length,"Hard to find longer shorts that i like. these are really cute. i thought from the pictures that the backside would be faded and lighter which i wasn't thrilled about, but willing to order and give a try. great to discover this is not the case- nice regular color on back and no fading. really cute shorts.",5,1,6,General,Bottoms,Shorts +936,53,,,5,1,0,General Petite,Tops,Sweaters +936,49,Nice swing sweater,"This sweater is heavier and has more of a swing shape to it than i had expected. but it is fitted enough at the top, that it still fit the bill. the pink is woven with a taupey color, and the effect is great. almost a little retro.",4,1,0,General Petite,Tops,Sweaters +927,51,,Recommend this vest - nice design - fabric is thicker than expected - might suggest a size smaller - plenty of room in loose styling,3,1,2,General Petite,Tops,Sweaters +862,57,"Very large, not worth sale price.","I usually wear small, ordered xs and it's still way too large. quality not that great, just meh, returning it.",3,0,0,General,Tops,Knits +1108,56,Love this dress,When i wore this dress i got tons of compliments! the quality is great along with the style.,5,1,2,General,Dresses,Dresses +1035,46,Good for long lean legs,"I think these jeans are good for people with long lean legs. i'm 5'7"" 155 lbs and the wide cuff made my legs look short and stubby. the weight of the jeans is a little on the heavier side - i usually like soft denim. i usually wear a 31 and thought they were true to size.",3,0,5,General Petite,Bottoms,Jeans +936,68,Shapeless and itchy sweater,"I ordered this sweater in the pink color in a small and xsmall, in order to see which was the best fit. i was really looking forward to getting it because it looked so great online - like it had a nice flow, the cute zipper and was a good match for a pink and grey skirt that i have. i was really disappointed, the sweater doesn't flow like it does in the picture - it kind of billows out in the front and back and isn't flattering. i have a small build, and, frankly, i usually look good in sweaters",2,0,14,General Petite,Tops,Sweaters +1035,40,Perfect!,These jeans are perfect in every way. i found that i took one size smaller than i do in the pilcro chinos. they are comfortable and have a small amount of stretch to them. i knew i was buying them the instant i put them on. they look great - highly recommend.,5,1,1,General Petite,Bottoms,Jeans +1035,27,Great jeans!,"I have a hard time finding jeans that fit and these ones are just right! i am 5'8, 125ish lbs and the 26s fix perfectly; they hug in all the right places and they are the perfect length. i will be wearing them uncuffed. there is no effort required to uncuff them, they're not sewn or anything. they have just the right amount of stretch and love the little cute details throughout them. thank you, retailer, for always helping me find great jeans!",5,1,19,General Petite,Bottoms,Jeans +862,53,Nice maternity tunic,After reading other reviews i ordered a small. my usual size is a m. it was huge all around. it's a beautiful print but i think it would make a nice maternity top.,3,0,0,General,Tops,Knits +1035,36,Love these!,"Love these jeans, comfortable fit and material is soft.. fit true to size and have a good rise.",5,1,1,General Petite,Bottoms,Jeans +936,33,Cute,"I think this sweater is well executed for what it is--a chunky knit trapeze sweater. i agree with another reviewer that i would ignore this product online, but it caught my eye in person. there was only one of the pink sweaters left in store. the interwoven peachy, heathery color is sweet and flattering. since i'm 5'1"", i ordered had the petite version to try. hope it works out 'cuz i'm eager to own something relaxed and cozy that's actually flattering and isn't a sweatshirt.",5,1,0,General Petite,Tops,Sweaters +927,35,Versatile,Like the swingy fit. looks nice with a long fitted tee underneath and skinny jeans. the color online says black but it looks more like a faded black like it has been washed too many times.,4,1,2,General Petite,Tops,Sweaters +1108,30,Perfect lbd,"As soon as i saw this dress online, i knew i wanted it! i was immediately drawn to the belled sleeves and lace embellishment along the neck/shoulders. i ordered online, and was so happy with the fit and quality of the dress. i am 5'5 and it hits just an inch above my knee. it's the perfect little black dress for a fun date night or an event!",5,1,0,General,Dresses,Dresses +936,33,Nice sweater :),Got so many complements! really comfy but runs big! i'm usually a large and i wish i had gotten the small.,5,1,0,General Petite,Tops,Sweaters +936,40,Color not as pictured on website,"I wish i had read the other review about the color of the pink version of this sweater before i ordered it. she was absolutely right - the color is completely different in person. it is this garish pink and brown that looks like it was knit together with remaindered yarn. it's too bad, because the cut of the sweater is cute and the zipper adds a funky touch. maybe the blue is better in person...",2,0,0,General Petite,Tops,Sweaters +835,51,Exquisite,"This top is beautiful. everything about it is beautiful. it has lovely detail on the back as well as the front. i chose a size 12 which seems to run true. it fit. however, regretfully i had to return the top. i came back here hoping i could find it in ivory or black... but there's only one color. the dusky rose is lovely, but i'm blonde and true pink is fine; this shade not so good, although as someone else here commented, it is a stunning shade of pink, very unusual -- like old dried roses. i l",5,1,1,General Petite,Tops,Blouses +862,41,Runs long,"I had been eyeing this top for awhile so decided to snag it when it went on sale. i'm still on the fence. i love the material and pattern but it is really long, and i'm 5'10"". it looks very roomy with jeans but i still want to try it with tights and boots to see if that looks better. overall i think it is a great piece.",4,1,0,General,Tops,Knits +1108,41,"Lovely drape, slim skirt","This is a beautiful piece. the fabric is a nice weight and the cut of the lace across the shoulders is flattering. the sleeves are dramatic, but not overly fussy. sadly i returned the dress because although it is a swing style (no waistline), it has a very straight cut. i was hoping it was more of an a-line silhouette to accommodate my hips, but alas. if you self-identify as a pear, this may not be the dress for you.",5,1,4,General,Dresses,Dresses +975,66,Love it,The linen fabric is elegantly thin feels and looks lovely,5,1,3,General,Jackets,Jackets +1035,39,A must have,"In nature pilco fashion, these jeans are amazing. i wear them rolled down, they have a slight boot cut, but not overly. i am 5'10 and the bottoms fall right to my heel- meaning the hem doesn't drag on the ground-finally the perfect pair of jeans. they also do not stretch out and keep shape after wearin all day! highly recommend, although a little pricy for pilcro, worth the splurge.",5,1,2,General Petite,Bottoms,Jeans +862,36,Worst blouse i've ordered....ever :(,"There were no reviews, it's an ""online exclusive"" and thought it might look good with a nice skirt at an upcoming wedding. the spandex jersey back looks like sweat shirt material. on the white version of this, it is mismatched with an oatmeal color and white that just looks awful. as a busty 36d i was stunned to find myself swimming in a medium. it does not look like the photograph and the sleeve billow out. i feel like this had to have been clipped and tucked in for this photograph. i'm an anth",1,0,43,General,Tops,Knits +1072,45,Super stylish dress,"This is a darling dress! it is super flattering . . . except if you are a swimmer and have broad shoulders. unfortunately i had to return it because it pulled so tightly across my shoulders/chest. i ordered a size 4 and it was actually true to size other than failing to accomodate for an athletic upper body. i'm 5'4"", 118 lbs. wish i could have kept this one!",4,1,0,General Petite,Dresses,Dresses +1108,38,Overwhelmed me,"I am petite (5'). even the xsmall petite looked sloppy on me. i also disliked the nude fabric under the lace- it made it look cheap. i wanted this to be the perfect lbd, i just couldn't make it work on my body.",1,0,5,General,Dresses,Dresses +936,47,Gorgeous sweater!,"I purchased all three colors! this sweater is gorgeous. i love it. it's made well, all three colors are beautiful and it fits great. it's definitely true to size. i'm thrilled with this sweater. adorable!",5,1,1,General Petite,Tops,Sweaters +936,25,Awkward fit,"This sweater was a little bit of a let down. i ordered the pink and it is actually a tan sweater with (bright) coral material woven throughout. it wasn't the 'soft pink/coral' color that it appeared to be online. while the material is very cozy, the sweater itself is short and boxy. i would've like the width better if the length would've been a little more proportionate. i am 5' 0"" and ordered a petite small. probably returning.",3,0,0,General Petite,Tops,Sweaters +936,21,Pretty but not for me,"This sweater is very pretty, i love the knit and the cream color. for some reason it just didn't flow the way i wanted it to, and i didn't love the v neck. just didn't pull me in completely!",3,1,1,General Petite,Tops,Sweaters +1059,39,Love it!,"This is a love at first sight item! bought that home after seeing it on the model. very soft and lovely! especially love the tie back! i wore it with a t shirt underneath. i am 5'4"" and size small. i bought xs and still a bit long. wish they have petite at the store.",5,1,3,General,Bottoms,Pants +175,30,Very pretty swimsuit,"This swimsuit is very well made and even prettier in person. i'm 5'8"" and about 145 pounds. i usually wear a size 6. i wear a 34d bra. i found the suit to run a bit small. i returned it because, despite how much i liked the style, it just wasn't flattering on my body type.",3,1,0,Initmates,Intimate,Swim +1060,29,,"I purchased these on sale and am only keeping them because they were such a low price. i ordered the 2 petite, but they do not actually seem to be made for a petite person. they are still very long (to my ankles) and the legs are very wide. the waist fits fine though.",3,0,0,General,Bottoms,Pants +883,34,,Good quality tank. very flowy and longer if you are short.,5,1,0,General Petite,Tops,Knits +911,70,,"I ended up returning it just because it didn't do much for my current postnatal figure, but otherwise this top is just so pretty and unique!",3,1,0,General Petite,Tops,Fine gauge +1059,32,Love!,"I tried on this jumpsuit on a whim and bought it immediately. finding a jumpsuit for my body type is hard (small chest, rounder in the middle and hips like whoa) but i have to say this one is ridiculously flattering. love the quality and feel of the fabric. i've worn it both braless and with a bandeau and have not needed to wear a shirt underneath, but then again it isn't a piece i plan to wear to work. i'm usually a sz 8/10 and got the medium regular which is perfect. i'm 5'5 and the bottom hit",5,1,2,General,Bottoms,Pants +1059,25,Adorable on!!!,This is so cute with a shirt or tee under neath. the look is better with a shirt underneath. very adorable for many occassions. i ordered the petite sizing b/c i like my pants more cropped.,5,1,3,General,Bottoms,Pants +1060,41,,I love a cropped pant but these do not hit the mark. the pant would have been more flattering if they hit just above the ankle instead of the calf. i think they make the leg look stunted. the material was a nice weight and good quality but the bow being attached was a big design flaw. it look cute tied but would have been much nicer if you could remove it when needed.,3,0,16,General,Bottoms,Pants +1081,35,So flattering,I am in between sizes (and styles) after having a baby. this dress looks great on my curvy figure and enhances my look with the cinching of the belt and the detail of the flutter sleeves. perfect length and really fits well. i am very happy with it!,5,1,0,General,Dresses,Dresses +936,53,"Fun, versatile sweater","This sweater is a great, oversized, warm, and very soft cozy winter treasure. it is very comfortable to wear, and looks cute on. i really believe it would be flattering on almost anyone. i highly recommend it, especially now that it is on sale.",5,1,0,General Petite,Tops,Sweaters +1081,42,"Beautiful dress, fits horribly","I purchased this and another eva franco dress during retailer's recent 20% off sale. i was looking for dresses that were work appropriate, but that would also transition well to happy hour or date night. they both seemed to be just what i was looking for. i ordered a 4 regular and a 6 regular, as i am usually in between sizes. the 4 was definitely too small. the 6 fit, technically, but was very ill fitting. not only is the dress itself short, but it is very short-waisted. i am only 5'3"", but it fe",2,0,3,General,Dresses,Dresses +883,37,"Beautiful, comfortable top",This top is so comfortable to wear. the way that it hangs makes it as light as air. wonderful for hot weather. the pattern is beautiful!,5,1,0,General Petite,Tops,Knits +862,52,Love the cuffs,"This shirt style is boxy, however, the material is soft and this shirt is very comfortable. i love the look of the cuffs. this is a fun shirt to wear",5,1,0,General Petite,Tops,Knits +824,57,Love this buttondown!,"Sorry, but i disagree with a previous reviewer who wrote that this buttondown is sheer and runs large. as for sizing, i purchased my usual size small. the fit is intended to be a bit slouchy, and it fits perfectly through the shoulders and the bust. love the high/low hemline, and the back isn't too tight across my bum. i'll also note that i'm 57 years of age and might tend to be a little more modest when it comes to sheer fabrics. the see-through factor is not an issue with this buttondown. i'm",5,1,13,General Petite,Tops,Blouses +1059,46,I love this jumpsuit,"I love this jumpsuit. + +i would like to first say that, while a gorgeous model, i actually think this piece looks even better on different body shapes! + +sizing +i love the shape, the style, and the comfort. i tried it on in a dressing room where it turns out another woman was trying it as well. i am 5'5"" and usually wear a 4 or 6 and got the small. she was a bit shorter and pettte and it looked fabulous on her! it is loose all over, and so flow and fabulous. it hits me where it hits the mod",5,1,4,General,Bottoms,Pants +883,34,,This top is so pretty in person. it bells out at the bottom just the right amount.,5,1,0,General Petite,Tops,Knits +1059,63,Picture is misleading - actually a versatile piece,"I bought this in store, size xs. i weigh 125-130. it was displayed with a white blouse. i cannot imagine wearing it as pictured. i bought it for work. it has nice detailing, back & side pockets, the straps that tie so cutely in the back is what adjusts it to your body. even at 5'5"", it is still cropped, i look forward to playing with it in regards to flats, heels, boots. long sleeve t-shirts, turtle neckes, even sleevless stuff.",5,1,11,General,Bottoms,Pants +1059,46,Great jumpsuit,"Great material, creative design... luckily i am small-busted and will be able to get away with nothing underneath. the closure/knotting on back is innovative. a sexy jumper",4,1,0,General,Bottoms,Pants +1081,38,"Perfect ""wear to all"" spring dress!","Easter ??mother's day tea??baby shower?? +i'm 5'2"" 120# and ordered a 4p. true to size. beautifully made, flowy, feminine. i can't wait to wear this!",5,1,9,General,Dresses,Dresses +1060,43,,"These are such quirky pants! they're a lot of fun, well made and i love the wide, cropped legs. they do run small - though most reviewers say they are true to size. i wear a 4/6 or 28, and in these i had to get a size 10. very tight at the waist, even though the rest of the pant flows easily and is loose. great color, they'll be perfect for spring and fall, and you can probably pair with boots in the winter. just a fun staple to my wardrobe.",5,1,0,General,Bottoms,Pants +1059,44,So stylish....if only by butt were flatter,"Probably should have noticed the material this jumpsuit is made of before buying. tencel, thus little to no give,kind of like linen and silk. beautiful material, soft with a slight sheen. the top portion fits well and the triangles cover the girls well (36dd). unfortunately there is no give on the back end for my bottom which is quite round and its tight around my thighs which aren't small either. (l/xl and 14). and sadly an xl would be too big upstairs and baggy around the middle. sigh, oh well",4,1,0,General,Bottoms,Pants +936,45,Comfy,"This is a nice, heavy sweater for cold days and lounging in jeans. very comfortable and flattering.",4,1,2,General Petite,Tops,Sweaters +883,59,Pretty summer top,"I saw this in the store today, tried on a small and a medium and a medium fit me better which is unusual. usually i am a small. this top is fitted around the chest and flowing at the bottom, a little longer than usual but the pattern is so pretty that i got it. i am 5'4"" 135 pounds and got a medium.",5,1,2,General Petite,Tops,Knits +1060,31,"Beautiful, but very short in the waist","I loved the color and lines of this jumpsuit, but found it to be far too short in the torso. (and about 8"" too long in the leg, but that's a lot easier to fix.) i tried sizing up, but it still wasn't working for me. i'm only 5'7"", and while i'm long-waisted i can usually make jumpsuits work. if you have a short torso and long legs, this is a beautiful option. otherwise, i can't recommend it.",3,0,0,General,Bottoms,Pants +862,48,,"This top is beautifully made and designed. +material is soft and comfortable however it's very boxy. the details on the side stick out. +i just found it not very flattering for me.",2,0,6,General,Tops,Knits +1060,35,Super comfy,"Super soft, super comfy pants. pain in the butt to iron out the wrinkles they came with.",4,1,1,General,Bottoms,Pants +1060,34,Amazing!,"I fell in love with this jumpsuit at first sight. the color is stunning and very striking. i found it to run a bit large, so would suggest sizing down for optimal fit, but all in all a great piece for summer that will transition nicely into early fall.",4,1,11,General,Bottoms,Pants +1081,40,"Flattering, quality dress","This is such a pretty dress. i was worried the arm holes would be too big since it was hard to see them in the pictures, but they are perfect! there is a built in red slip underneath. it is so cute on and really flattering by itself or even with some white skinny crop jeans underneath!",5,1,3,General,Dresses,Dresses +883,24,"Cool tank, but may need courage to wear.","I tried wearing it, however, i thought i needed courage to wear this tank. +unfortunately, i did not purchase this tank although i liked color and design. +first, it runs small than the regular size. +it feels even smaller because my size is xs. +in addition, it tends to exaggerate a body line. +i am not quite sure why this happens, but maybe it is just the way this tank is. +if you are confident about your upper body posture, then yes, it would look very cool. +however, if you have thin postur",2,0,3,General Petite,Tops,Knits +1060,55,Feel great pants,This pants are comfortable and classy. they go fantastic with tall booties as it gets colder.,4,1,1,General,Bottoms,Pants +883,41,Swingy and flirty,"Very nice soft fabric, has a nice swingy drape and flair. i use it to work out in , sleep in and just hang out around the house. could be paired with white pink or black leggings and a scarf too. very happy with this purchase.",5,1,0,General Petite,Tops,Knits +883,45,,,4,1,0,General Petite,Tops,Knits +936,21,Have to have it,I absolutley love this sweater. is is very cozy and warm and can be paired with many different outfits. i am upset i didn't get one in every color!,5,1,0,General Petite,Tops,Sweaters +1030,45,"Nice, but still on the fence","I was lucky enough to get these on sale with an additional 40% off, making them a fabulous deal. they are nicely made, and the shade of blue is very pretty. my only complaint, and the reason i'm on the fence is that they are so big. i usually buy a 31 in the ag stevie jeans, occasionally a 32, so i figured i'd be safe sizing down to a 30. wrong. i could have gone to a 29, and possibly even a 28....they're that big! i do like them though, and may just try shrinking them in the dryer.",4,1,0,General,Bottoms,Jeans +1059,44,Love it!,"I bought this in-store after seeing it online, and am in love with the shape! the cropped legs give it a style advantage in my opinion. for reference i'm 5'6"" 120lbs and a bcup. i got the xs. +the torso was too baggy and lost it's shape with a small. +as one reviewer mentioned it seems to be meant to be worn with a shirt underneath. i've tried with longer sleeved tops and with tank tops and they both look great - especially white. + +it has a modern cut and is very versatile. i plan to wear",5,1,2,General,Bottoms,Pants +824,28,,"Sheer top, runs big, usually i'm a size medium, but got small in these. +very pretty! great summer top.",5,1,0,General Petite,Tops,Blouses +936,22,Loved it!,"I got the small even though i usually order a medium for sweaters because i prefer them bigger and i'm glad i got the small. the sleeves are very long (which i love) and the sweater is also loose fitting (also, love). the color is gorgeous and it is thick but super soft. i wouldn't wear anything underneath it unless tucked in because the front just comes to the top of my pants. overall, it's gorgeous and i would definitely recommend this!!",5,1,0,General Petite,Tops,Sweaters +936,23,Too short in front,"40% sweaters...i couldn't pass it up. unfortunately, when i raise my arms, my tummy shows (i'm 5'6""), so i had to return it.",3,0,0,General Petite,Tops,Sweaters +862,37,,,1,0,0,General Petite,Tops,Knits +936,65,Fun sweater,"This sweater was exactly what i was hoping for. it is true to size. it actually is cozy, which i love in the winter. the color is so pretty. the quality is good. it is fun and stylish. i do recommend it.",4,1,0,General Petite,Tops,Sweaters +1060,28,Beautiful garment,"I love the look of this garment. from the color to the detailed design, it is just awesome looking. i tried this in 3 sizes: 2regular, 2petite, and 0 regular. i often order petite pants and they work, but for this item the crotch was too high for me to wear a petite size, and the legs were short enough to look awkward. i returned it for the 0 regular which fit me best - i'm 5'5, 110 lbs. i haven't worn it out yet, but am excited to wear it to a couple weddings this season. one fallback is that i",4,1,0,General Petite,Bottoms,Pants +936,50,,Probably one of my favorite turtle neck sweaters! it looks so chic and cute on!!,5,1,0,General Petite,Tops,Sweaters +936,54,,"When i saw this item online, i ordered it right away. loved the color and the oversized, comfy look to it. the pros: very soft,the color a deep cranberry as pictured. the cons; the low back - in the photo, the model's arms cover it up. when i put it on, it looked like an oversized flap that stuck out on the sides and was very visible from the front -- and because the material is unstructured, that made it look worse. i loved it except for this one feature, but because it was so detracting, i had",2,0,2,General Petite,Tops,Sweaters +1081,57,Beautiful!,"I love this dress so very much! i wish i could keep it, but it doesn't look right on me. i am 5'2, 100lbs, 32b, 24 waist, 33 hip. dress fit me well except for the fact that it made me look very wide. i think the combination of the ruffles on the sleeves with the blousey-ness and my short stature was not a great combo. it will be amazing on tall slender women, but did not flatter my short frame :( +otherwise beautiful",4,1,9,General,Dresses,Dresses +883,44,Loved this cute tank,This fit me perfectly. i'm petite and it is a little long but i like the length. it's perfect! so cute,5,1,0,General Petite,Tops,Knits +824,54,Cute summer blouse,"This top is really great for the summer. the fabric is light and gauzy so it's perfect for hot days. i don't like to wear a cami in the summer and this shirt does not require one when worn with a nude bra. i love the window pane pattern- and the light pink color is very flattering and subtle. i'm 5'5"", 124 lb. with fairly broad shoulders, and wear either a small or medium. i ordered the medium in this shirt and found it a bit large so the small would have worked as well. i would say that your re",5,1,1,General Petite,Tops,Blouses +1059,31,Suffer for modern fashion,"I've worn this twice now. the first time was after trying it on and realizing it was perfect. immediately purchased and never took it off. the second time, wore it to my internship (office) followed by museum and a concert. incredibly versatile. constant compliments. 5'7"", 135 pounds, 34 c, 27/28 waist. meant to be loose, carefree, incredibly modern. does wrinkle after long periods of sitting, but not enough to dislike. the biggest complaint for me and my retailer coworkers is that it is an incred",5,1,1,General,Bottoms,Pants +1059,35,"Adorable, comfy, and stylish","After a few months of coveting, i received this jumpsuit as a gift (apparently my longing wasn't too subtle!) and was delighted to find it didn't disappoint at all! the material has a nice weight and falls away from the body, but still is very swingy and light. it is great for our slightly chilly spring, yet i expect it will be fantastic as the weather warms up. i am 5'6"" and usually a 26"" or size 2 in bottoms and an xs or s on top. i got this jumpsuit in an xs and it fits very loosely (much lik",5,1,2,General,Bottoms,Pants +1059,42,Love it but...,It is soooo cute!!! i'm trying to figure a few things before deciding to keep..... how one goes to the bathroom when wearing it? i can't figure out how to get it on without help tying the straps in the back?,4,1,5,General,Bottoms,Pants +936,50,,"I am allergic to wool and have a hard time finding winter sweaters. was really excited when i read material content on this item only to be disappointed upon arrival to note that sweater is 10% wool. also found it to be very tight in arm area. for reference i am 5'10"", 130 lbs. and would say have slender arms! cute design that will work for some!",3,0,2,General Petite,Tops,Sweaters +1060,29,The color though,"I really love this piece because it's classic and the style transitions from day-to-night. the color caught my eye first, but once i tried it on, it was knotting the tie in front and seeing the elegant texture it created down each pant leg that sold me. i felt too comfortable to be stylish, but there i was multi-tasking my full-time passions in the retailer dressing room. no big deal. + +i am a tall, size 4/6 woman. for taller girls like me who a) intend to wear a small heel with the piece",5,1,1,General Petite,Bottoms,Pants +1030,46,Super soft and thin jeans,"These are great for summer except you need to size down! unless the pair i received was an anomaly, these run very large!",3,1,0,General,Bottoms,Jeans +1030,45,Sooooo comfy!!,"I tried these jeans on at the suggestion of the salesperson and couldn't walk out of the store without buying them even at full price of over $200 which i don't usually spend on jeans.. first of all, the material is so buttery soft you can't believe you are wearing jeans, secondly, i could actually find a pair that would fit my smaller waist in comparison to my larger than i wish hips 27-28 waist, 38-39ish hips... 5-4 i ended up with size 26... they are very thin and i worry about how they will",4,1,1,General,Bottoms,Jeans +936,66,Hi lo tneck,I bought this in the plum & love the color. i got this in xs which is my usual size & it's a little bit baggy but i think this is the style of the sweater. the front on me is not as long as pictured but just covers the top of my pants. my daughter liked it so much she bought the exact same one.,4,1,4,General Petite,Tops,Sweaters +862,34,"Well made, however, too large for me.","This is a very nice top, however, it was too large for me. i ordered a medium and needed a small. i am 5'9"",145 lbs.i will try again with a small.",5,1,0,General Petite,Tops,Knits +1060,26,,Super cute pants but pleats fan out too much when you are pear shaped. i would also need to shorten pants too look like the picture.,3,0,0,General Petite,Bottoms,Pants +1059,40,Can't be worn as pictured,"Ah! i wanted to love this but without anything under it (as pictured), the petite sizing reveals way too much side boob. i am 5'3"" and a small b cup. i ordered an xs petite. it fits but there isn't enough material under the armpits. the fabric and design is great other than this flaw. sadly returning.",1,0,17,General,Bottoms,Pants +1060,37,"Pretty on the hanger, weird on me","I tried this on in a store and it was beautiful except the sizing was way off. i'm 5'11"" and usually a 12 or 14. the 12 was skin-tight and the 14 was so loose it was comical - and even on my super long legs, the cuffs dragged on the floor. plus the lacy panels in the cleavage area are totally see-through and my bra was very visible. i was totally bummed. also incidentally, this didn't seem the best quality. there were strings hanging out of the lacy areas, and the waist tie ties way higher than",3,0,0,General Petite,Bottoms,Pants +824,34,Sheer and runs large,"Saw this on the mannequin and tried it on just for kicks: +________ +pros: +- breathable fabric, all cotton, with a lovely color. +________ +cons: +- runs large, which is the style of the top anyhow. however, i was swimming in the medium (and i normally fit in size 10/12 or m/l tops with retailer stuff. you can easily size down and have plenty of room left. but if you like it really baggy, then stick with your normal size. for reference, i'm a 36c and hourglass and had ample room in a medium. +- s",3,1,19,General Petite,Tops,Blouses +936,24,Amazing fit!,"At 4""11 i usually have to order items in petite and sometimes still have trouble fitting properly into items but i was able to buy this sweater in an xs! i figured with the high front and low back i wouldn't be able to fit it but it looks great on. not only is the fit amazing, but it feels amazing as well. it's such an easy wear and the high/low look is effortlessly chic!",5,1,4,General Petite,Tops,Sweaters +936,43,Love it!,"I love everything about this sweater. it's well made, the color is lovely, and best of all, i can wear it with skinny jeans without feel ""overexposed"" in the back. i think my husband thought it was rather shapeless, but i like the look of a bigger sweater with a skinny pant. a must buy at this great price!",5,1,0,General Petite,Tops,Sweaters +883,40,Beautiful print,The fabric is soft and the colors are bright. it fits well over the shoulders and the neckline is placed just right on the chest. the bottom portion of the tank is more of a swing style item than a form fitting tank. i am very pleased with the top and will wear it often.,4,1,0,General Petite,Tops,Knits +1060,51,Cute pants,"I've been wanting to try the cropped pleated pants style and i like these. the material is nice & comfortable and the bow adds whimsy. compared to other brands i've tried, these pants fit the best. the waistband goes up higher in the back so there's no gapping (a big plus for me). just one thing, i find cartonnier to run small so i would suggest ordering one size bigger.",5,1,2,General Petite,Bottoms,Pants +1059,38,Best summer piece,"This was my favorite piece of apparel i have purchased in a very long time! fun, trendy and comfy yet dressy piece. dress it up or down based on the occasion.",5,1,0,General,Bottoms,Pants +883,39,,"Caught my eye because of the colorful graphic print, in my closet because of the super sale price. it fits as expected in size medium, a little bit long since i'm short. i'm unsure of the longevity since it's a viscose mix. feels a little scratchy so if you're sensitive, be aware. i don't really wear tank tops without layers so this is a great addition to my casual wardrobe.",4,1,0,General Petite,Tops,Knits +1060,87,,Fits perfectly and is quite adorable. too keep in mind is that where it's cut off on the leg is a bit awkward if you're not wearing heels.,5,1,0,General Petite,Bottoms,Pants +1060,39,,"I tried this in an xxsp. i am normally an ssxp or xsp. it fit me well everywhere except in the crotch where i was given a slight wedgie. not the look i was going for. if i sized up, the rest of the jumpsuit would be too large on my frame. + +also, i don?t feel the quality matched the price point. the one i received had a lot of loose stings already and it was unopened previously. that being said, it is a beautiful color and on the right body, the style would work well. it just wasn?t for me.",3,1,3,General Petite,Bottoms,Pants +1060,28,Needs some work,"I love the style and color of this jumpsuit. i ordered a petite, and with tall shoes, it's still about 3"" too long. the side seam needs to be taken out at the bottom to hem it, so that's a pain in the rear. + also, this has a side zipper, but you step through the neckline to put it on. if any part of me was even a tiny bit larger, this would never work. +the biggest issue is that it armholes/bust gaps a lot. there should have been a dart from the armhole down towards the bust. i'm hoping to be",3,1,1,General Petite,Bottoms,Pants +936,47,Awesome sweater for winter!,"After reading the reviews i was hoping to be able to try this on in store. i was able to try on a xxs and a xs in the store on the sale rack. i tried both on and i usually will take an xs or small in sweaters. funny, but the xxs seemed to be a little longer in the front and the fit is nicer on me. after reading others review of this sweater i thought for sure it would be super short on the xxs but it wasn't. just goes to show you should always try on first! i did not feel that the sleeves were l",5,1,0,General Petite,Tops,Sweaters +646,41,"Great fit, so comfortable","I love love love this dress! it's comfy, light weight (but not see through!), and transitional. it drapes well and accents all those parts of me that i like accented. it's good for lounging with the kids, a run to the grocery store and then sipping wine at a beach. would buy more if there were more colors!",5,1,0,Initmates,Intimate,Lounge +820,59,Lovely embellishments,"This tunic has nice, soft fabric and nicely done embroidery that make it stand out. it's comfortable and the fabric is very nice, but it is not flannel as advertised. the tunic is made out of a double-gauze cotton, which is a great fabric with a casual look.",5,1,2,General Petite,Tops,Blouses +833,68,Stunning,This is a very flattering blouse. gorgeous detail with the beading!,5,1,0,General,Tops,Blouses +937,35,Favorite new fall sweater!,"This sweater is absolutely adorable! i was worried about the layers looking too frumpy but they were not - i normally wear a size medlum (8), but i sized down on this sweater on a gut feeling and bought a small --i didn't want it to be too loose or billowy, and it fits perfectly. will be so cute with jeans but also with skirts for work! you will be so happy you bought this one.",5,1,17,General,Tops,Sweaters +862,29,Love!,I love this! i agree with previous post that say it is much better in person. the fabric is high quality but not too thick. i bought this to have something light to wear on a trip to italy and it will be perfect. the color is so lovely and the flowy detail at the hem makes it unique. it's a basic without being basic. i'm so glad i added it to my wardrobe.,5,1,1,General Petite,Tops,Knits +862,35,"Soft, great fit, thin","I tried this on at antho today and loved it! the pictures online are not doing this garment any favors. it is flattering in person. the fabric is a light fabric-i was a little disappointed in this since i like things to be a little warmer, but this is probably better anyway with spring coming (it is coming, right?-today it's snowing) i like the under-layer that is kind of silky which i think adds a special touch to it. it is versatile and could be paired with anything.",5,1,6,General Petite,Tops,Knits +833,59,,Feminine with beading in front. love the neckline and flow. nice fall colors. sleeves button. really nice fit in shoulders. if you like this style it is absolutely beautiful on. may be short on those with long torsos.,5,1,7,General,Tops,Blouses +937,37,,,5,1,0,General,Tops,Sweaters +984,46,The best!!,"I tried this on (in the store) on a whim....then had to have it!! i'm normally a small but really loved the way the medium fit. good thing because it was the last jacket like it in the store!! super soft, comfy...a great purchase!! fur is removable for easy washing or a different look!!!",5,1,0,General Petite,Jackets,Jackets +820,50,"Easy, cool, awesome!","This is such a great piece. throw this top on with a pair of skinnies and some booties and you're dressed. it walks the line between too tight and too loose beautifully for my figure. love the contrast lining. it washes beautifully (i hang to dry). i wore it twice the first week i owned it. size s was best for me. i'm 5'4, 140lb, 34b, and generally a size 6.",5,1,3,General,Tops,Blouses +824,25,Runs a bit large,"And hits below my waist just far enough to make my thighs look enormous. i think how it fits depends alot on body type. the material is nice, color pretty, not cheap looking so i will keep it but must wear a topper to slim down thise ugly thighs of mine.....",2,1,0,General Petite,Tops,Blouses +370,40,,,5,1,0,Initmates,Intimate,Lounge +1022,32,Comfy jeans,"I ordered these jeans on sale based on the great reviews, but when the arrived the color looked different from the online pictures. i don't love the color but decided to try them on anyway since i've never tried ag before. well they are so soft and comfortable and fit great! i didn't want to take them off, so i ended up keeping them. now ag is my favorite brand for jeans!",5,1,0,General,Bottoms,Jeans +1147,35,A delightful piece,"I'm in love with siyu! i saw this jacket/cape and the brilliant colors drew me in. i had to have it. i'm so glad i purchased it, it is wonderful. i would say that the colors are a bit more muted than in the puctures, but still a brilliant statement piece. i was considering getting the sleeveless golden mock turtleneck to go with it, but glad i didn't. the neck of the jacket comes up fairly high, and it probably wouldn't have shown. the wool material is very fine, not scratchy, and a bit stretchy",5,1,7,General Petite,Trend,Trend +984,68,Too many ideas,"I was hesitant to buy this because it is double breasted which isn't my first choice. that was the least of the problems with this jacket. i love sparkle, and i love beautiful detail, none of the elements by themselves was a problem. the sum of the parts didn't work, though. the end result was an unflattering, confusing mess. the silhouette plus the frayed edges, plus the sequins plus the vent in back plus the huge buttons plus the double breast, plus the zipper were just too many things to go t",2,0,1,General Petite,Jackets,Jackets +1024,68,Great jeans!,"I haven't worn a pair of levis in ages, and had forgotten how great they are. i have recently lost weight and i have to say they are very flattering. i wasn't sure at first how i would ilike the frayed hems, but they are growing on me.",5,1,0,General,Bottoms,Jeans +1111,31,"Bold color, trendy dress","This dress is really cute, it's not a complete bag on you. i read that other reviewers complained about the fact that it is see-through. and that is the case, but i own multiple pairs of skin-toned underwear and did not find this to be a problem. the fabric is lightweight, but perfect for the summer. it does wrinkle, but a steamer is your best friend.",5,1,0,General,Dresses,Dresses +1081,28,,"I really wanted to love this dress, but i couldn't. it ran large and heavy. rather than a sleek cocktail dress, it felt more like a heavy sack once i put it on. there was one upside: the drape in the back did not appear to drop quite as low, so finding a bra to wear under the dress might be easier than if it draped as low as it appears in the picture.",1,0,5,General,Dresses,Dresses +996,27,Love this skirt!,"This skirt is not only cute but really comfy. i really like the materials it's made of and the way it seems to hug my body in a flattering way. i'm 5'2"" so the only down side is that i wish it came in petite but i still kept it because it looked great hitting me right above my knees and high at my waist. love this skirt!",5,1,2,General,Bottoms,Skirts +984,47,Runs small especially the arms,I love this jacket. it's the prettiest and most stylish jean jacket i've ever owned. the sleeves run small. i'm an xs but chose a small so i can button it and wear thin sweaters underneath.,5,1,0,General Petite,Jackets,Jackets +862,39,Soft but felt like robe,"More importatn, super soft matieral and comfortbale, hwoever, when i put it on, ilfelt like i was wearing a robe... i do like the detial in the fabric, but jsut dind't feel right as cardigan. maybe purchase if you are looking for a light robe. + +true to size, tried on xs, maybe petite would work too.",3,1,1,General Petite,Tops,Knits +104,56,"Very thin fabric, not worth $90","The pants are pretty and run true to size, but the fabric is bathing suit like, very thin and sheers in the butt when you squat. i wouldn't recommend for anything but waking.",2,0,0,Initmates,Intimate,Lounge +937,41,Poorly placed ruffles,"This sweater is a pretty color and style and is really soft and comfortable - i really wanted it to work. a small fit my 5'7"", 140 lb frame well (32dd) but the ruffles on the hips were not a wanted addition unfortunately. . tried it on three separate times to try to change my mind but in the end, it's going back. i would not suggest it if you have an athletic or hourglass figure with even a little hip.",4,0,3,General,Tops,Sweaters +1100,29,Runs small,"This is a pretty dress, although it runs smaller and the colors aren't as vibrant as on the website. the waist ran very small for me in a size 10 which is my normal size and normally runs looser in the waist area as i have an hour glass figure. this probably will look very nice on someone smaller.",3,1,0,General Petite,Dresses,Dresses +833,52,Not worth the price,I tried this blouse on in the store and chose not to purchase it. i did not think the fabric or design warranted the price point as it felt a bit cheap and there's not much to the design. it is true to size - my usual size 4 fit well enough. i'm on the tall side with an average bust and i did not find it short. my friend was shopping with me and she thought it looked maternity on her as she is thin but very well endowed. she also thought it made her shoulders look broad. personally i liked it on,3,1,2,General,Tops,Blouses +937,31,Strange cut,"The image online doesn't depict this blouse well.. my complaint is that the sweater portion looks crooked and shrunken where it has been cut at waist level and the ruffles have been attached at the hips. maybe i received a flawed piece, either way, i'll be sending it in for return.",3,0,0,General,Tops,Sweaters +1111,31,Thin material,"I wanted so badly to love this dress, but i couldn't get past the thin material that you can actually see through. not for this price anyhow. the dress is shorter than i had anticipated, and more fitted around the waistline flaring out at the bottom which i feel isn't accurately portrayed in the photo. on the positive though, the color is beautiful and the neck line stunning, but alas will be returning.",2,0,3,General,Dresses,Dresses +937,83,Beautiful and unique.,"Love this sweater! +soft and cozy and the ruffles are not overwhelming.....just a touch of pretty! +it will look pretty with a turquoise necklace for a pop of color! +classic, comfy and classy! +an anhtro a ++++++++ +runs very true to size, ordered my usual size an it fits perfectly.",5,1,4,General,Tops,Sweaters +752,57,All day whenever possible,"My daughter loves these, she wears them around the house all day when she doesn't have to go out.",4,1,0,Initmates,Intimate,Sleep +1100,43,Lovely print nice for athletic build,"I have another paper crown dress that is a favorite. this dress has the same quality and i love the print, which is somewhere between abstract and almost animal. unfortunately, the fit did not work for me. i am large-busted and need a bra. this dress cuts in at the shoulders and did not work with any of my bras except strapless. also, the waist cinches but without a defined band. this looked a bit more frumpy. again, i suspect the fault is in my figure, not the dress. + +for someone with a smaller",4,1,1,General Petite,Dresses,Dresses +728,59,Love them,Bought a pair of these with a gift card i got for my birthday. just ordered another pair! i love them for everyday use and working out,5,1,0,Initmates,Intimate,Legwear +1111,47,Fit and flare that swings,"This dress is adorable. the material is thin and wrinkles easily but it is so flattering. the cut is a little flowy like typical off-the-shoulder dresses but this one is cut in at the waist so your figure is not swallowed up. it combines the sexy summer vibe of an off-the-shoulder look but flatters like a fit and flare dress. it is fairly short. while i am only 5'4"" in an xs it falls just a bit further up on my legs than the model pictured (makes no sense to me). the color is a rich coral pink a",5,1,0,General,Dresses,Dresses +984,21,,,5,1,0,General Petite,Jackets,Jackets +820,51,,,5,1,0,General,Tops,Blouses +860,57,Not impressed,"Cute design. runs big in neckline, falls off shoulder exposing bra straps. fabric is very thin. sloppy look on short petite frame. 5'1"" 142lbs 34-36 c/d. purchased a medium. haven't washed it yet, but the fabric doesn't look like it will hold up well. i have kept it to wear as a sleep shirt with thin gray sleep sweats.",3,0,0,General,Tops,Knits +1024,52,,,5,1,0,General,Bottoms,Jeans +833,53,Dressing inspiration,"I saw this in the store on a beautiful autumn saturday afternoon and was inspired for what i wanted to add to my wardrobe for the season. this blouse is just fun without being loud or overpowering. the coloration works beautifully with my wardrobe and i can wear this dressed up or dressed down; with skirts, leggings, trousers, jeans...with a vest, jacket, or sweater or on its own. it is substantial enough not to wrinkle and look sloppy, it is easy to launder and will travel well with my capsule",5,1,0,General,Tops,Blouses +820,53,Mid winter addition,"I picked this tunic up on sale; it works wonderfully with several of my cardigans and vests; just add skinny jeans or leggings and some boots for a fun, super comfortable look. the sleeves are oddly extra long, but not a deal breaker as rolling them up gives that unfinished cool look. i hate ironing, but i will iron this top as its so much fun to wear. the embroidered and beaded detail is quite nice.",4,1,0,General,Tops,Blouses +1081,38,A total dud,"Was really excited for this dress and couldn't be more disappointed. doesn't look anything like the pictures. + +the fabric feels...cheap. it came wadded up in a ball and is a wrinkled mess. + +looking beyond that, i tried it on and thought i had put it on incorrectly. unfortunately not. the top half doesn't sit correctly. it's so bizarre that it seems like a flaw in the design. it doesn't sit on your shoulders, but doesn't look right off your shoulders. the neckline is very high. also, front b",1,0,17,General,Dresses,Dresses +1024,54,Cute and trendy,"These jeans really look very nice on. they are 99% cotton and 1% elastaine. if you want the look that you see on this model, order one size up. i am 5'9""/136 lbs. bought both 27 and 28. decided to keep the 28. mainly because the lower part of the leg was fitting too tight in the 27, looked more like a skinny jean but bunched up at the knee -- they are tapered. (i also own a pair of 100% cotton levi's wedgie in foot hills in size 27 which fit a bit different than these -- the foot hills definitel",5,1,0,General,Bottoms,Jeans +820,60,,Quirky tunic length top. has a windowpane print on the inside and the grey plaid looks like flannel but is cotton. the red burgandy embroidery adds punch and it has a boho flair. size down one size runs big.,5,1,1,General,Tops,Blouses +868,66,Cute top,"Great buy on sale. i wanted a foundation tee to wear under cardigans and it's great for that. perfect length, interesting, textured fabric. i got the white in a large. fits well. a bit oversized but in a good way. stick to your normal size.",4,1,0,General Petite,Tops,Knits +370,37,Great,"Love these-although i'm exchanging mine for a size larger. they are definitely wide leg, have plenty of length (i'm 5'6, and there is a good inch of extra length), but i found the waist band to fit snug without a ton of give. i also am working off extra baby weight in the stomach/hip area though, but thought it was worth mentioning. i'm pretty curvey, probably a size 31 in jeans right now, and exchanged a l for a xl. great quality",5,1,4,Initmates,Intimate,Lounge +984,49,Lovely jacket,"I really like this denim jacket with the plaid underneath. i also like the removable fur lining being that i live in florida i really don't need that. i ordered a size small which is my normal size and a medium. the small was tight in the arms so, i decided to keep the medium. i am really glad that i followed the others review in regards to sizing.",5,1,0,General Petite,Jackets,Jackets +820,53,Maybe not for petites?,"I ordered xs petite and was pretty excited when this arrived based on the reviews. however (and maybe it's just me) the top was really, really large on me, especially around the shoulders and upper arms, so the shape was not flattering. sorry to have to return this item.",4,1,1,General,Tops,Blouses +1081,30,,"I wasn't sure how this dress would be sized, so i ordered it in two different sizes and kept the smaller one. i would say it does run a little bit large, but not much. +i agree with other reviewers that the dress came kind of wrinkled, but overall the dress is like it was pictured. +i think that this dress might be better for taller women - i am 5'8"", and i think it fits well, but i could see how it would not be flattering if i were much shorter. overall, i am excited to wear this!",4,1,3,General,Dresses,Dresses +1081,90,Disappointed,"I was really looking forward to this dress. i tried it on and it does not wow like the picture. it came wrinkled, but i think even pressed it would fall weird. the side swoop falls funny, and you can see the seams underneath. and the top front falls funny, not quite sure what to do with it. it almost looks like a mock turtleneck until you fold it down. again, maybe if you get it pressed that would be better. the back is still beautiful though. i'm 5'3"" 115lbs ordered a 0. maybe on someone talle",2,0,15,General,Dresses,Dresses +862,26,So comfy,Love this! fits great. warm and soft. would recommend,5,1,0,General Petite,Tops,Knits +824,70,,Too pricey for the quality of this imported product.,3,0,4,General,Tops,Blouses +820,49,Too big,"Love the colors in this top. it's a shame it was so big and baggy i'm not that big a person but really made me look big and frumpy . i am 5'6"", 130#. athlete. size small was way too much material for my frame",3,0,0,General Petite,Tops,Blouses +28,29,Please make in more florals and patterns!,"This suit is perfect in every way! (the leg opening could be a little bigger for the size) i would be a small if the leg openings were a bit bigger. + +please please offer another suit before december 2015 so i can buy for our cruise!!!",5,1,0,Initmates,Intimate,Swim +984,48,Really cute!,"I saw this a few months back and wanted it then and now i bought it. i missed a few promos but i ended up getting it at full price in a large, my usual size i like in the pilcro denim jacket line. i love pilcro and have several of this brands denim jackets and each one is very special. i love the use of the plaid details. it has a weathered appearance - the denim and my distressed treatments are not too severe, as some reviewers have commented on the ""holes"" . i will say this jacket runs small.",5,1,2,General Petite,Jackets,Jackets +862,41,Cuter in person!,I tried this cardigan on today at retailer and i absolutely loved it! it's much cuter in real life than it looks online. it's a perfect sweater for my skinny jeans--long sweater--tall boots winter uniform.,5,1,2,General Petite,Tops,Knits +984,33,,,5,1,0,General Petite,Jackets,Jackets +820,39,Fun fall tunic,I am curvy on bottom. i am 5ft 9 and this is very long. it's ok to wear with jeans or leggings and the longer tunics are stylish these days. however it's long enough to be a dress. i bought a large my usual size. i gave it 4 stars because it is sized bigger then a large.it is 100% cotton so maybe it will shrink a little. i am ok with it though. it is very loose and a relaxed fit. the embroidery on the neckline has pretty little beadwork all over the stitching. very cute detail. i love the patter,4,1,28,General Petite,Tops,Blouses +862,40,,"I agree with the other viewers that this cardigan is significantly better looking in person. i am 5'7"" 126 lbs and bought the medium. it is more fitted than how it is on the model. it keeps its shape after multiple wears and is very comfortable. i'm glad i have it!",5,1,3,General Petite,Tops,Knits +820,49,"Huge, size down!","This is a really unique floreat top. unfortunately the petite sizes sold out so i went with an xs. this was too big?too wide in the shoulders and chest, all around actually. my other issue is that it's a heavy material. i just feel like if i was wearing it around all day, i might burn up in it. it did not feel like it was breathable. and finally, i'm 5'2""?even the xs was too long in the back. + +i could see how this could look really cool on the right person?i'm just not that person to pull it",4,1,0,General Petite,Tops,Blouses +1057,47,"Beautiful suede, but colors are not correct.","Just received these and they fit perfectly, but the panels are different shades of gray. the color is not consistent and it make them look bad. they are perfect otherwise, but sadly they are not wearable. i will be returning",2,0,0,General Petite,Bottoms,Pants +984,46,Pilcro faux fur denim jacket,"Denim, faux fur, flannel... hooray! i absolutely love this jacket and i'll wear it all winter (even under my warmer winter coat). i'm 5'6""/130 and usually a 2-4 in retailer and the small in this coat was plenty big in the waist/chest and even had room underneath to add a second shirt or light sweater. it seems a little shorter on me than in the photo... maybe that's the only drawback.",5,1,1,General Petite,Jackets,Jackets +370,41,Great wide leg sweatpants!,Retailerpologists has always carried the best sweatpants. i wish they sold these in more colors. very flattering!,5,1,2,Initmates,Intimate,Lounge +862,32,Great addition to my wardrobe!,"This is a great piece, you can do many things with it. i wore it to work and church :)",5,1,0,General Petite,Tops,Knits +752,38,Great pajama pants,I love pajama pants by this company. i have a couple now and they are all so soft and lightweight.,5,1,0,Initmates,Intimate,Sleep +1057,53,Love these pants,"I bought these immediately after trying them on. i was totally surprised to see these very cool, edgy pants at retailer. the color and details are spot on! great quality. i wore them with a blaclk leather high platform boot and black top tucked in. i received a lot of compliments. these look like they should come from europe! i just wish retailer would buy better quality and more interesting things like these pants.",5,1,9,General Petite,Bottoms,Pants +820,39,Really cute,"This tunic has really cute detail. it is hard to see in online photos, but there is dark brownish beading over the embroidery. the fabric is not as soft as i would have liked, but it's still a keeper because of the two patterns, embroidery and beading. also, it is long and does run large, but i think the measurements given in the description are accurate. it is a tunic after all! i ordered an xs petite, and it will be very cute with leggings and boots.",5,1,3,General Petite,Tops,Blouses +866,35,Cute top,"The lace front is more detailed than i expected, but in a good way. the sleeves are softer on the outside, but the inside is not too scratchy as others have said, in my opinion. it is comfy but i feel that the lace part is fragile and i will need to be mindful of where i'm sitting when wearing it. not a deal breaker though...",4,1,0,General,Tops,Knits +875,42,Love this top!!,"I am a teacher and love finding cute, comfortable clothes. i wore this for the first time today and got compliments all day long! i felt so stylish, and i was still able to do what i needed to do!",5,1,1,General,Tops,Knits +875,20,Fall transition,I sized down from my typical size small. beautiful detail on the back. slightly sheer in front but dark bra or cami fixes that. shorter in front than back but not too short. goes with jeans and pants plus a shorter cardigan or denim jacket would look great.,4,1,1,General,Tops,Knits +875,44,Perfect fall piece,"I saw this and had to have it! it is so beautiful. it has pops of color that can be paired with so many options. i like the uniqueness of the flowers being on the backside. it is thinner fabric, so i will have to wear a black cami underneath but i have no problem with that. especially, going into cooler weather anyway. it is very flattering on. this one will go fast. thank you retailer!",4,1,7,General,Tops,Knits +875,54,Love this top!,"I have gotten so many compliments on this top. it does run very large- i'm normally a large, returned for a medium, which is still a bit on the large size. the small was even still large but much shorter so i loved it so much i just took the medium. it's a 'tent' style or 'trapeze' style which doesn't completely show in the images. super nice, thin linen-like cotton and absolutely beautiful. love it!",5,1,0,General,Tops,Knits +875,39,Lovely transitional piece,"This top is lovely and so perfect for this time of year when you want to look fall-ish but when it's still too hot to wear long sleeves. but i'm pretty sure it's navy, not black. very dark navy, yes. still, not black. compared to every other black top in my closet it looks navy. so that was a little disappointing. but i'm keeping it because i'm a sucker for a flowy top, and i can wear it right now.",4,1,0,General,Tops,Knits +875,46,Fun top!,"This top is fun to wear & looks great with black, grey or my wine color jeans!! love it!",5,1,0,General,Tops,Knits +875,37,Boxy or large,"I'm not entirely sure if this shirt just runs large or if it fits oddly/boxy. the flowered material puffs out on the sides a couple of inches under my arms... i'm usually a pretty solid size medium, but i think i'm going to try to exchange this for a small to see if that solves that weird fit issue, because it is a nice idea of a design and comfortable overall. but, if that doesn't solve the trick, if not recommend, b/c that side puffiness isn't flattering.",4,1,2,General,Tops,Knits +762,35,Love love love this!,I went into the store to try this one on bc of my broad shoulders and muscular build (in arms) as sometimes the open shoulder pieces fit snug. this dress was perfect and so soft!!! fit me like a glove! i have a long torso and am 5'8'' so it's a little short - but throw on some tights and booties and it's perfect! i'm a size 10/12 and got a large :),5,1,3,General Petite,Intimate,Lounge +875,44,Pretty blouse,"I bought this blouse with the 30% off price- i don't think i would pay full price for it, but for the sale price i think it's fair. as the other reviewers have said, it's definitely navy in front, not black, but it's a nice color combination and can be worn with dark jeans, or with black pants for a more casual work look. it's sheer, but a dark cami underneath fixes the problem. i think it fits true to size, with the understanding that it's supposed to be flow-y and loose.",4,1,0,General,Tops,Knits +1059,60,Gorgeous & unique,Oh my gosh do i love this jumpsuit. i am so glad that i bought it. it is beautiful and fits perfectly. classy and beautiful and made in the perfect color. the design is slimming as well.there is nothing that i would change about it. i may be wearing this for my 60th birthday this month and am sure i will be getting it out for other occasions in the future. i love it.,5,1,2,General,Bottoms,Pants +1110,57,Nice shape and fabric- very stylish!,"This dress fits true to size- i ordered an 8 and it fits like a glove. it is a bit shorter than i thought (i'm 5'8'') but will be perfect with leggings in the winter and for the weekend in spring. it is a nice weight linen, not too thin. the dots aren't white, they're more light blue. very cute dress!",4,1,18,General,Dresses,Dresses +866,36,Not great in person...,"I was really hopeful that this top would work on me because it is so cute online. however, i was very disappointed when i finally received it. the sleeves look soft and snuggy in the picture but are actually a bit stiff and scratchy in person. i could almost get over the sleeves, but the white part of the shirt was horrible. i am 5'10 and a size 6. i wear a size small at retailer, and i got a small in this top. the bottom of the shirt was a tad short on me and hit just below my belt line-- which i",2,0,38,General,Tops,Knits +1059,28,,"I really wanted this jumpsuit to be my holiday staple! i ordered this jumpsuit in a sz 4 (my typical size) - the jumpsuit doesn't have a waist, i suppose the ribbon created the illusion of a waist. most jumpsuits are super slimming because of having a waistband and this does not besides the bow. also what i found strange is the back zipper goes all the way down passed your bottom - it's the longest zipper i've ever seen. it's very body hugging so it shows your curves if you have any. i will sadl",3,0,10,General,Bottoms,Pants +999,53,Runs small would be a bit of an understatement...,It is a shame when a product such as this is left on the website after so many comments reveal the item to be more defective in production than an opinion of size proportion. i read the reviews so had expected the item to run small so i ordered accordingly...this does not run small-this is not representative of any of the three categories one associates with women's apparel sizing. i am usually a small and the description by previous reviewers described the fit as being perfect for me-very small,1,0,1,General,Bottoms,Skirts +1059,59,Beautiful!,"I""m going to a wedding in dec and looking for something different.. thats where my retailer comes in...their is this beautiful lace jumpsuit staring me in the face saying im what u r looking for! i'm 5'4 117 and the petite size 6 fit perfect!! love the navy blue color!. all set,i am ready!!",5,1,3,General,Bottoms,Pants +999,44,100% cotton,"No lycra in this skirt says my label, ignore the website description. it's 100% cotton so no stretch. + +me: 28-29"" waist and 36"" hips. the medium is a snug fit on my true waist. i love it and will be tucking in shirts / tees when i wear it. otherwise it seems true to the pictures, dark and long. the slit opens above my knees (i'm 5'6""). + +the pockets are in a kind of odd position in the very front but the trick of that is they add no bulk to hips so...it's a win!",4,1,1,General,Bottoms,Skirts +1030,54,Great jeans,"I was specifically looking for a nice pair of high-waisted jeans and this pair fit the bill. i am a little unsure about the unfinished hem hence the 4 rating on design, i would have preferred a finished hem. i am 5'4"" and they are a tad shorter than i normally like to wear my jeans. i have had them for a couple of days, still deciding whether to keep them despite the fact that i really love them other than these two issues.",5,1,1,General,Bottoms,Jeans +875,31,Great fall piece,"The longer back makes this one of my favorite pieces for fall. the navy blue pairs well with the floral accents on the back. this blouse is a little too sheer for my liking, but nothing a cami cannot fix.",4,1,0,General,Tops,Knits +1059,75,"This is a comfortable, beautiful piece","This jumpsuit is absolutely beautiful. it fit like a glove and made me feel incredibly classy and sexy at the same time. i am 5'4"" and ~120lbs and the 4 fit like a glove and right at my ankles and above my elbows, the 6 fit a bit more loose and below my ankles and right at my elbows. it is so different and easy to wear.",5,1,8,General,Bottoms,Pants +1110,42,Beautiful shape,"This is a beautiful dress. the dress is a lighter blue when compared to the picture, and the fabric is thick but the shape is beautiful. the waist is very fitted but it didn't feel uncomfortable. i didn't think the fabric was itchy as others mentioned. i do think it is a bit short on the front (it is a high low dress), but at 5'4"" that is not a problem for me. it was true to size for me (135 lbs, 34c).",5,1,1,General,Dresses,Dresses +1110,48,10 lbs. no thanks!,"I was very excited to receive this dress because of the cute photo. however, upon arrival i was completely disappointed. the color is much more drab than the photo. the smudged polkadots weren't attractive. there were many little bumps and pulls in the linen. the dress is super heavy. the pleats around the waist did not lay correctly. +and it adds 10 pounds to your hips! super sad! i am sending it back.",1,0,25,General,Dresses,Dresses +1110,24,Surprising find,I ordered this dress on a whim in my normal size 8 and if fits perfectly! i felt so pretty when i put it on. i love the volume of the skirt with the tighter top. it was very flattering to me. the linen thickness was nice but not for summer in florida maybe spring. but its lovely!,5,1,0,General,Dresses,Dresses +1059,64,Love this!,"Purchased this for new years eve and an early january wedding. can't say enough good things about it! the lace fabric is soft with the perfect weight. the style is slimming and flattering. although i am short, i have a full bustline and ordered regular rather than petite and it fits perfectly. pants are very easy to hem if needed. +needs very little by way of accessories because the lace edging is so beautiful.4 seasons appropriate!",5,1,3,General,Bottoms,Pants +875,50,Surprisingly flattering,These tailored front flowy back tops don't always work. this is long enough to wear with leggings and quite flattering,5,1,0,General,Tops,Knits +1110,21,"Great fit, great textile","I ordered this after falling in love with the near-identically-patterned red linen shirtdress - this dress has almost exactly the same construction, but the cloth is slightly heavier-weight, and there is no slip (because the fabric is thick enough to not need one). a few other reviewers mentioned that the cut was ill-fitting or unflattering - obviously, that depends on the wearer's build - this dress seems cut for relatively small-busted people, so i lucked out. i love the classic a-frame outlin",5,1,5,General,Dresses,Dresses +875,51,Sadly nothing as shown on model,"The models pose and description are misleading. this top has absolutely no shape to it. the front of the shirt is kind of like a slub shirt texture, plain black. the back print is nice,just more faded than shown in picture. the entire design has no form. it is huge. also cheaply made.",3,0,0,General,Tops,Knits +1110,30,Two silhouettes in one,This dress was an adorable a-line in the front and a shift dress (no pleats) in the back. tack onto that a high-low hemline and it's just trying to be too many things. would've loved to see this dress as a true a-line/fit-and-flare. it would've been perfect. fits true to size.,3,1,1,General,Dresses,Dresses +937,34,Lovely cozy and stylish sweater,"It's a cozy sweater that doesn't make me feel frumpy, still stylish and it's not too heavy but still warm enough. it's like wearing a blanket sort of. definitely sheer with the big loom, wear a camisole under it. i got compliments the first day i wore it!",5,1,1,General,Tops,Sweaters +937,38,So pleased,"I bought this sweater on a whim in the store, without trying it on. when i got home, i decided it would probably lose it's shape and it seemed a big clunky sweater and i planned to return it. a few days later, desperate for something to wear, i grabbed it and decided to keep it - merely to have something to wear that day. i'm so glad i did. + +this is a great sweater. layered with a cami, it looks fantastic it does not lose its shape or grow. it is structured, so it doesn't feel sloppy. it has w",5,1,5,General,Tops,Sweaters +875,30,Great light and flowy top,"Love the design! fabric is very light and flowy. i like a tank underneath for a little extra coverage. runs a little wide. size down. such a fun top, i've had tons of compliments! i usually wear a size 8 and i purchased a medium but wish that i had sized down to a small.",5,1,0,General,Tops,Knits +875,40,Might work for someone else,I thought this was a sweet design but it is too boxy for me.,3,0,0,General,Tops,Knits +1059,29,Awesome!!!,"Every time i turned around received another complement! it was perfect for a december wedding, great for a holiday party, and fit the bill for christmas eve. very comfortable and slimming. i'm still amazed at the number of complements received! the navy blue lace is elegant and comfortable, not scratchy like some lace. the ""v"" in back of the jumpsuit makes it easy to zip and unzip, i have some some imitations and thought i might have a problem zipping up the jumpsuit. not a problem! absolutely a",5,1,1,General,Bottoms,Pants +875,66,My dreams were dashed...,"I thought this top was so pretty and airy, but it just didn't work out. i typically wear an xl in retailer and was able to size down to a l in this top. i ended up returning because the front is pretty sheer and the black tented out in a weird way about half-way down (there is a seam across and without this it would have hung perfectly). disappointed.",3,0,0,General,Tops,Knits +618,28,,,5,1,0,Initmates,Intimate,Swim +937,45,Sexy sweater,"I would never have noticed this from the product shot, it was on the one of a kind rack at my store. the open work that shows off your bralette or a cami is sexy and it has just the right amount of slouch. super comfy. i loved it. bought a medium.",5,1,1,General,Tops,Sweaters +210,46,Scooped knit slip,Doesn't feel like cotton jersey. feels like a thin version of the seamless cami. it's not soft as i expected. it's much thinner than expected too.,2,0,2,Initmates,Intimate,Layering +304,34,Perfect,"Soft and comfy without being too thick or too warm. flattering cut. quality material and construction. fully opaque, so no show-though. true to size (i'm 5'8"", 140 lbs, my usual size small is perfect). could not improve upon these joggers. love, love, love.",5,1,0,Initmates,Intimate,Lounge +866,50,,Such a cute top! can be dressed up or down. i wore it on sting break and had many compliments.,4,1,0,General,Tops,Knits +875,40,Very cute but will shrink!,"I loved this shirt! flattering and pretty. it's hand wash only or dry clean. i hand washed it and the blue t-shirt part of the shirt shrank, and now the front of the shirt is too short for me. would not recommend due to shrinkage... too bad.",2,0,0,General,Tops,Knits +875,64,Nice surprise,"I tried this one with the free ship/20% without much expectation so i was surprised by this nice piece. i am not usually a fan of sheer shirts, but this one manages to be sheer yet not see through! the black color works that magic. the linen makes this a nicer material rather than the usual knit. i am not usually a linen fan as it gives me the itches, but this is soft and light. the back is really beautiful and brighter colors in person. the balance between the front and back lengths does work a",5,1,13,General,Tops,Knits +866,33,Comfortable,Very comfortable. runs a little large. purchased a medium and probably should have gone with a small.,4,1,1,General,Tops,Knits +875,55,Wanted to love it,"I had such high hopes for this, but the fit was really strange. i ordered my usual size small, but it is huge. the sides of the top are very wide and boxy, and the back hangs far from my body, very droopy. even if i got a smaller size, the design/fit is not for me. i like the linen front of the blouse, though it is quite sheer. the fabric on the back has a pretty design, but it appears to be stamped on thin black cloth, rather than the richly-colored fabric i saw in the picture. i am truly disap",3,0,0,General,Tops,Knits +1082,57,Perfect in plaid!,"I couldn't wait to try this on because i love the brand holding horses! this dress did not disappoint! although i detest the difficulty with side zippers (why can't they simply return to the back seam?) i was easily able to pull this dress on because it had some give to the fabric. once on, the dress has a very flattering fit over the bust (the wrap over bodice is already secured with a stitch) and through the tummy. i believe these were sized s,m, l so i took my regular medium. +length wise, par",5,1,13,General Petite,Dresses,Dresses +1051,36,,"I love jumpsuits in general. however, it is usually either a yay or a nay and this was definitely a yay! i am currently wearing it right now as i write this review! the waistband hits perfectly on me. i am 5'7 and about 160 and i bought the large. super easy to throw on!",5,1,4,General Petite,Bottoms,Pants +1082,45,It's a keeper!,"I'd been eyeing this dress for a while, wondering if it could work for me. i wound up ordering the sp size when it went on sale. its pretty perfect-i am 5'4' and currently 130 lbs. it fits well, if a touch loose in the waist, but i think if i had purchased the xsp it might be too snug through the bust, as it's fairly fitted there. the neckline comes a little lower than i usually wear, which is part of why i wanted to order the petite size rather than the regular (that and the length), but i can",5,1,1,General Petite,Dresses,Dresses +868,59,Best in cream,"I ordered this in grey first but didn't care for the black lace ---- so, decided to try the cream/beige/neutral and i just love it. i have areas i am trying to ""cover up"" and this really fits the bill without looking too much like an oversized tunic. the back is the clincher. different and surprising. washes excellently, but i did line dry as i was afraid of shrinkage. if there are any left you won't be sorry and the neutral color looks good on almost everyone!",5,1,5,General Petite,Tops,Knits +1051,62,Elevenses knows a good jumpsuit,"I have come to scoop up basically ever elevenses jumpsuit that they release because they are perfection - always the perfect fit and quality fabric. i'm on the taller side at 5'7"" and found this to fit perfectly, yet somehow it looks equally as perfect on shorter ladies i saw in the dressing room. awesome!",5,1,1,General Petite,Bottoms,Pants +1110,69,A disappointment,"This dress is just very unattractive. it is quite short-waisted, almost empire and so the pockets hit in an odd place. also it is very long - midi length - and the skirt is very wide. the effect is matronly, not cute at all. size-wise it fit true to size and it is a nice medium weight denim and the construction is good.",1,0,24,General,Dresses,Dresses +829,40,Fun top,"I ordered this top on a whim and never in a million years did i expect to love it as much as i did. while it is by no means work appropriate, it is a fun top for a night out. the material is light and flowy and it drapes perfectly over my post baby tummy. i tried it on with jeans, shorts and white pants and it really looked great with all items. wish this came in a few other colors. for reference, i am a 36dd and a size 12, took the large and it looked flowy without being maternity topish.",5,1,12,General Petite,Tops,Blouses +1110,46,Jeans dress? oh yes.,"I admit, i did not intend to buy a jean-dress but the cut - i could not pass it up. classic and vintage dress style. the fringy hem and more conservative length is so fun and makes the strapless top stand out. with a stunning necklace this will be a versatile piece. no doubt.",5,1,2,General,Dresses,Dresses +866,32,Beautiful top!!,"I first saw this shirt on one of the workers at the retailer stores and it looked beautiful. i loved it so much i had to order it when it came on sale. the fit is a little too short for my liking, but i think i can make it work. also, it does fit a little snug around the arms but it at least it doesn't show your undergarments. overall, i think it is absolutely beautiful. the fabric has a beautiful shimmer to it and it looks easy to dress up for a day at the office or a night on the town, or paired",4,1,2,General,Tops,Knits +1082,33,Surprised,I went into the store not expecting to walk out with this dress. i just happened to try it on in an xs and i loved it. i probably could have gone with a petite because it's long but it didn't bother me enough and i didn't want to wait for it to be ordered. it's nicely fitted through the waist and definitely looks better with a belt. the downside is that the lining is short (mid thigh) and tends to bunch up underneath which then makes it puff out slightly. this didn't bother me enough to return i,4,1,4,General Petite,Dresses,Dresses +1082,44,,"I am mad for plaid--this dress is my new favorite!! why? i'll tell you!! the picture online does not do it justice, but you must add a belt. the dress is cut lower in the front, but has a great stitch to keep it from gaping open over my d cup chest. the material is soft and breathable. the xsp was perfect for my 5'2"" frame, my typical size.",5,1,4,General Petite,Dresses,Dresses +1051,56,Can't wait to wear this!,"You know how sometimes you put something on and don't even have to look in the mirror to know you like it? well this is that piece of clothing. i bought a jumpsuit last year at retailer and wore it all the time so i wanted to get a new one this year. i saw this on the website and liked it all the way through when i put it on at the store. comfy, casual, not too young for my 56-year-old self, the right length, and i can comfortably wear a regular bra with it. perfect on all counts.",5,1,0,General Petite,Bottoms,Pants +866,63,"Different, interesting and cool","This top is adorable; fits like a glove which makes me a little nervous...there were no washing instructions attached so i will hope for the best. the quality of your garments are always excellent; its only the risk of buying on line (sizing) which makes me hold my breath until i can try my order on. it is a joy to get items that fit from retailer, my favorite online store!",4,1,1,General,Tops,Knits +1110,53,Strapless denim a-line dress,"Such an adorable and comfortable dress! just love the fit, the design and the comfort of the denim fabric. it's quite flattering, fit's true to size and i can't wait to wear it to casual parties all summer long! highly recommend! lots of +options too with dressing it up a bit more with fun high healed sandals or a pretty shrug and just as nice to wear with flip flops or keds! i 5'5"" and usually a size 4 and it fit true to size....grab it while you still can!",4,1,1,General,Dresses,Dresses +1082,49,Casual chic dress,"I like the natural fiber of this dress- both the lining and outer layer are comfortable, breathable cotton. the dress has a casual contemporary vibe with the plaid weave and asymmetrical hem, but is surprisingly fitted in some areas. the bust of the xsp was too tight for me, and as a 34 b i don't usually have the problem of being too busty for my clothes. i normally wear an xsp in a dress that seems loose and flowy like this one, but this dress is more fitted than you might suspect from the webs",4,1,1,General Petite,Dresses,Dresses +829,42,Awesome shirt,"This shirt is a 10! i've been looking for an off the shoulder top that i can wear a bra with. i almost never spend full price on retailer items but this one is worth every penny. don't hesitate, just buy it!",5,1,0,General Petite,Tops,Blouses +1110,50,Buy this dress!,"I ""studied"" this dress for weeks before i finally bought it. i am soooo glad i bought it. much more fabulous than the picture. soft, quality denim that is not too heavy for summer. very fitted on top. love the pockets and the torn hem.",5,1,1,General,Dresses,Dresses +868,44,,,5,1,0,General Petite,Tops,Knits +1110,45,"Good idea, but...","This dress has great potential. i happen to have a longer torso so the fit was off. as a previous review stated, it's short waisted and a lot a skirt which i agree, the hem is also funky. i am still deciding if i want to keep it, but if i do, i plan on altering the skirt to be narrower and hemming it a bit shorter too. for reference, i'm 5'3"" and weigh 110 and i purchased a size 0.",3,1,3,General,Dresses,Dresses +1051,37,Highly recommend for jumpsuit-hesistant ladies!,"I have been unable to find a jumpsuit that looks good, likely due to my long torso. this is the first one that doesn't make me look like i am a tall five-year-old (easy to dress it up with a statement necklace) and fits perfectly. i am 5'6"", 120 pds, and bought my normal xs. highly recommend, especially with the current extra % off promotion!",5,1,0,General Petite,Bottoms,Pants +868,36,Flattering loungewear,This sweatshirt is very cute on. it works well with leggings or skinny jeans. it's the perfect thing to wear when you want to be comfortable but still look feminine.,5,1,11,General Petite,Tops,Knits +1110,41,Great dress but....,"I agree with the other reviewers about the versatility and the fit of the dress. i am 5'9"" and yes the pockets hit just a tad high, but the fit of the bodice and bust is so great that i am willing to overlook this small flaw. the only thing that has really bothered me about the dress, that i haven't seen anyone else comment on is the slightly strange odor from the denim. maybe it just happens to be my particular dress, but i have noticed this strange smell from a pair of seven jeans i had purcha",4,1,0,General,Dresses,Dresses +829,33,,"I was excited to receive this top and wanted to love it; however, the side ruffles flared out more than i expected. it didn't look right on me so had to return it :(",3,0,1,General Petite,Tops,Blouses +1082,47,,"I loved this dress the second i saw it in the catalog and had to have it! i had been looking for a plaid dress for awhile but couldn't find anything that i fell in love with till this one. i love the front of the dress and the asymmetrical details. it's just beautiful. my only complaint would be that the back of the dress is pretty blah. after all the awesome going on in front, i was disappointed in the view from behind, but i still love this dress and will be keeping it and wearing it for a lon",5,1,0,General Petite,Dresses,Dresses +866,50,It's going back,"This tank (in black) is nice quality, most of the fringe hangs straight and seems to be attached well. it's just too short and too boxy for my figure (curvy/hips). would look good on someone who has straight hips and is not long waisted. since that doesn't describe me, it has to go back.",2,0,0,General,Tops,Knits +1082,60,Bohemian tartan palid,"When i saw this dress the model was standing in an outdoor setting and i fell in love with it but then i noticed the model in an indoors photo the dress looked different. as i studied the difference, it was the way the plaid fell on each dress. the one i liked fell more vertically giving it a slimming effect and the others were horizontal giving it a widening effect so, i went to my local retailer to see. they had the one i liked on a dummy. it is tts and the plaid matched perfectly. the front flo",5,1,6,General Petite,Dresses,Dresses +829,50,"Cute top, very forgiving","I purchased this in the 6p and the 8p. both fit similar, but the 6p was just a little more form fitting. the problem i have with this top is that while the top of the shirt and the shoulders are awesome, the rest of the top is pretty boxy. i am a 36c, broad shoulders. i did layer it with a longer necklace which helped deter the boxy look. if the mid section could be a little more form fitting, it would be a perfect top! soft, cool fabric, great for summer.",4,1,3,General Petite,Tops,Blouses +1082,48,Unique plaid dress,"I'm a sucker for plaid. i tried another plaid shirtdress from retailer, and it looked like a housecoat on me. this is lovely - a bit fitted, but very relaxed and casual. i'll be able to dress it up for casual days at work. it's got enough lovely details to be stylish. i think the waist looks a bit simple, so a belt helps dress it up. the sleeves finish with a button, so it looks polished, or they can be rolled up. i love it with booties!",4,1,1,General Petite,Dresses,Dresses +1110,41,Cute dress!,"Super cute dress and very flattering. simple, fresh, and fun!",4,1,3,General,Dresses,Dresses +1110,48,Keep throwing it on!,"Let's face it, this dress isn't perfect for all body types, but fits mine perfectly. i""m 5'5"" 120(it) lbs. i love the cut and the unfinished bottom feels very causal when need be or a little more refined when needed. the zipper has a long denim piece attached to help with zipping up. the denim is soft and lays nicely. i suppose the fact that i got it on sale does make me love it that much more, but i keep putting it on. with a closet full of clothes and sun dresses in particular, i still keep pu",5,1,1,General,Dresses,Dresses +1082,50,Very tricky sizing,"I love the pattern and colors of this dress. the quality of the fabric is great. i initially ordered my usual size xs, but found it a bit roomy so i ordered both an xsp and an xxs. the xxs was more fitted and the xsp was too short in my opinion. i am still on the fence about the xs and the xxs. the xxs has a tighter fit, but it is also tight in the bust and i wonder how it will be if i have to reach for something - will it be too tight? even though the xs runs slightly big, i can still work with",4,1,4,General Petite,Dresses,Dresses +829,48,Not for me,"Adorable top, but i have to agree with what two other reviewers said... that is is boxy and unflattering. i have a similar patterned top, also by maeve, but the sizing on that runs small, medium, large. the s petite that i have doesn't fit quite the same as the 4 petite in this blouse. this is definitely more ""square"" in the torso, and the ruffles do stick out more - very flouncy. it just made me look frumpy instead of the sexy date night look i was going for. i am 5' and 120 lbs. also, i didn't",3,1,1,General,Tops,Blouses +1082,31,,"The torso runs a bit long, but this is otherwise a comfortable, and cute dress.",5,1,0,General Petite,Dresses,Dresses +1082,56,"Great idea, but...","Every single time i was in a store, this dress caught my eye. there was never a large or xl to try on; however, so when a free shipping offer came up, i took a chance and ordered both. the xl was too large; the large was much better, but a little snug, so if it shrunk, i would have been out of luck. if i would have kept one, it would have been the large; however, they are both going back. a plaid dress sounds like a good idea for the winter when you look at it on the hanger, but on a body, it is",2,0,1,General Petite,Dresses,Dresses +1110,34,Perfect summer work or play dress,"The dress is well-structured and refined enough to wear with a cardigan to work on casual fridays but fun enough to wear on its own to a summer festival. because of the length, i would suggest wearing with heels, as it hits below the knee. i would suggest a size down, especially if you are smaller-busted.",5,1,2,General,Dresses,Dresses +1082,35,,"This is my third dress-the first one was the right size, but the plaid fell on the dress in an awkward way. the second one was a size too small, but this one is perfect! i am wearing it with a belt and loving it!",5,1,0,General Petite,Dresses,Dresses +1082,36,Love this dress!,"Walked into the store and the first thing that caught my eye was this dress. great pattern and fabric, a quality, versatile piece. i am a size 4 and purchased an xs petite, seems to run just a tad big.",5,1,3,General Petite,Dresses,Dresses +1082,42,Runs small in bust,"Amazing, beautiful dress that is very slimming and elegant, while casual. but it is only for smaller busted women! i have a medium and am a 34c - it's tight and pulls strangely. i've seen that comment elsewhere. i tried on the large and it was too big everywhere but the bust.",4,1,1,General Petite,Dresses,Dresses +1082,35,Great fit!,I was looking for a dress to conceal my post baby body but wanted to be able to wear it once i lost the extra weight and this dress does the job! the fit is very flattering and it hangs nicely. great material.,5,1,6,General Petite,Dresses,Dresses +1110,49,Couldn't wait to see this in person!,"I had my eye on this dress since it fist came out, but hesitated to order due to some of the lower reviews. when i got a chance to try it on - i loved it! i did go up a size. i am 5'5"" so i had it shortened to above the knee, i didn't mind losing the unfinished hem - had the hem match that of the pockets. i am a 34c but the bodice is stable and even if i pull at it, it stays put! so happy to find this, especially on sale! i plan to wear it at our company party which is help on a large charter bo",5,1,1,General,Dresses,Dresses +1051,31,,"Because of my body type, i never thought i could wear a romper. i tried this on out of curiosity and am so glad i did. it fits well (i did size up because of my thighs), is comfortable, and an alternative to a dress. the patterned bottom did not accentuate my lower body, which was a worry. i got compliments when i wore this to dinner with a pair of sandals.",5,1,1,General Petite,Bottoms,Pants +1082,35,Ill fitting,"Like some other reviewers, i, too, have to comment on the dress's fit. the dress doesn't fit right around the bust or the waist. as a seamstress myself, i know that the problem is that it doesn't have any darts in the bust, and thus the bust and the waist are just about the same size. this dress really just needed a few of these extra hidden details to fit right. while a belt helps, i don't think it helps enough to justify the price. it's too bad--i think the concept of it is cool, and i was rea",2,0,0,General Petite,Dresses,Dresses +1110,47,No hemming or hawing,"I want to love this dress. it's cute and fits well...except that the hem has been taken out! it looks like it had a hem that was removed, and they left the crease remnant and frayed edge. looks very sloppy on the bottom. to keep this dress, i would have to pay a seamstress to hem it, and i don't want to pay extra money for something that should already be done.",3,0,10,General,Dresses,Dresses +1082,34,Makes you look skinnier,Dress is awesome and makes you look skinnier.,5,1,0,General Petite,Dresses,Dresses +1110,51,Perfectly simlpe and elegant,"I'm 5'6"", 125 lbs, wear size 2 or 4 normally, and small or extra small. 34b bra. i tried on size 2 and it fit great. this dress rocks! i live the soft material and side pockets. not a lover of a line skirts, but this one is subtle. i do need a strapless bra, but if you are more endowed than me, you won't need it. the hem is unseamed, leaving it a bit edgy. since the denium is light i can wear ghis dress now and into summer. i live in texas so probabley won't be wearing it after june. covering my",5,1,1,General,Dresses,Dresses +1082,38,Flattering dress,"I ordered this online with out previously trying it on and it fit nicely! just love the colors, draping and material. nice and light, good spring or fall dress. i wore it with black flats but it would look great with booties too. very flattering. i received a ton of compliments!",5,1,0,General Petite,Dresses,Dresses +1051,38,Soooooo comfortable,"I love jumpsuits but this literally feels like pajamas. it doesn't look like pajamas but it is soft and cozy and isn't too big or too tight anywhere. i am 5'6"" and 130 and i purchased the small and it fits just like the model. the button in the back at the top is a little hard to close but the whole thing comes off and on easy which is such a bonus in a jumpsuit. this is a winner! it can be worn casually or dressed up.",5,1,0,General Petite,Bottoms,Pants +1110,46,Perfect denim dress,"Strapless dresses can be so flattering so when i saw this on retailer i had to order it! this dress did not disappoint. for reference i ordered a size 4 and i am 5'5"", 135 lbs, 34b chest. in the chest area it fits perfectly, while the ribcage area is a little snug, but not uncomfortably so. the pockets are great. the denim quality is great. and i like the frayed bottom of dress. i got compliments straight away on the beauty of the dress from two men. which i thought was quite interesting because i",5,1,4,General,Dresses,Dresses +866,51,Fun in black and ivory,"I bought this top in two colors because i need more statement tops and thought the colors were different enough for a really great top. i have only worn the ivory so far and love it. comfortable, great style and solid quality so the fringe isn't fraying or falling out. + +if i could change one thing it would be the itchiness around the neck opening. it's not horrible but it can be distracting and mildly uncomfortable. + +i am really happy with the tops and can't wait to start wearing the black one t",4,1,2,General,Tops,Knits +1082,37,Soft,"Very comfortable and soft. i wish the neck was a bit lower and it runs on the large side. i am 5'7"" wear a 10/12, i ordered the l and it was very big on me, will try it in the m, though i'm worried that it will be too high in the waist on me.",4,1,2,General Petite,Dresses,Dresses +1082,63,Shirtwaist w style,"I got the small; 5'7"" 150 lbs,pear shaped. fit was a little sung,mainly due to the lining.i wore it once already- super cute.i washed it in cold and line dried it as i was afraid of shrinkage.i thought about getting a medium but all sizes except xs are sold out. i must be careful not to gain any more weight,otherwise the dress won't fit me anymore!",4,1,2,General Petite,Dresses,Dresses +1110,52,Not for short people!,"This denim dress is best worn by someone over 5' 8"". i had to spend a lot to have it taken up and it still doesn't look that great. so if you don't want to pay over $200 once altered, do not buy this dress. + +the best part of the dress is the top. it was true to size on top.",3,0,2,General,Dresses,Dresses +1110,47,Lot's of compliments,"I ordered this dress in a size 6. for reference i am 5'7"", 145 lbs. i love it! the fit is perfect. unlike other reviews, i was aware the hem was unfinished, and i like the look. the top part does not seem to short. the style, to me is kinda retro. i wore the dress with flip-flops and a large chunky necklace. i received lot's of compliments, it is my favorite dress right now!",5,1,3,General,Dresses,Dresses +1110,45,"The denim ""little black dress"" ... love!","I need to start by saying i'm 5' 10"". i think that's why i love this dress so much. it's not too short on me like so many. it is a classic fit that is flattering on me. the raw edge detail makes it a little more fun then just a strapless denim dress and the pockets are the best! i love dresses with pockets! they don't stick out weird or anything either. the only negative which prevents the perfect 5 star review is the bottom is fuller than i would like. a-line is a little misleading. it's defini",4,1,8,General,Dresses,Dresses +1051,53,"Fits nice, cute","I'm 5'8, 130 and ordered a small. it fits very nice and it's flattering. my daughter doesn't like it as she thinks it looks like a t-shirt tucked into pants. i get that but it fits nicely and i like the pattern and tapered legs.",4,1,1,General Petite,Bottoms,Pants +215,45,Such a comfy piece!,"These are truly slouchy leggings. i am short (5'3) so they do bunch quite a bit for me but when paired with a long chunky sweater they are perfect! unlike the other review, i felt that they ran a little on the larger side. i am typically an 8/10 and ordered the m/l. they sit nicely on my lower waist and do not sag but the length is long long long. i recommend these for wearing out or around the house.",5,1,4,Initmates,Intimate,Legwear +876,66,Unusual design,"The beaded shoulders make this a unique tee shirt. it turns an ordinary tee shirt into a more eye-catching one. i bought 2 different colors and love them. i prefer the little boxier fit as it is very flattering. the material is a nice weight, not too thin.",5,1,1,General,Tops,Knits +215,31,Beware: they're sheer,"I got these in the neutral color & quickly understood why they're categorized as ""loungewear"". if you're going to wear them out of the house, wear a tunic or a dress over them. i folded the scrunch part up over my calves & wore them like boot socks when i went out. i got a m/l & they fit about on par with other leggings / tights of that size range. + +when i got home, i rolled them down & put the bottoms over my heels. the rest of the bottoms scrunched around my ankles. i recommend them for around",4,1,2,Initmates,Intimate,Legwear +820,59,Stunning,This flew out of my local store so fast i had to order on line. simply stunning. was reluctant to pay high price but worth it. will get much wear.,5,1,4,General,Tops,Blouses +834,27,Amazing!,Beautiful flattering blouse,5,1,0,General,Tops,Blouses +876,40,"A little bit vintage, a little bit rock-n-roll","This has a nice vintage cut and soft feel with the metal detailing of a blinded out rock n roll tee. it's perfect with jeans, a leather skirt or even lounge pants. it's a great top to throw in an overnight bag for a weekend away because it's so versatile.",5,1,0,General,Tops,Knits +215,47,"Good product, comfortable",On the advice of other reviewers i purchased the m/l in this item. boy was i happy i did. i am normally a size 6-8 and because of the sheerness issue mentioned by another reviewer i purchased the larger size. they are still sheer in the rear end. you must wear a tunic or longer shirt/skirt with these. if you are hanging around the house it is not too bad. these are very comfortable and feel great while wearing. the color is great and the look is good. they are really long when you remove them fr,4,1,2,Initmates,Intimate,Legwear +876,36,Classy meets simple,I love this shirt! it fits great and looks awesome with shorts or skinny jeans. i love the beads on the shoulders. i liked it so much that i ordered it in 2 colors.,5,1,0,General,Tops,Knits +1022,66,Finally!!!,"I cannot even tell you how many pairs of white jeans i have tried on in my quest to find white jeans! all brands and all styles and finally i took a chance on these and have found the ones! these are great quality, as true for any ag pants i have ever purchased. they are a crisp white and are not see through and the fit is amazing! i have athletic legs and with my muscular thighs and calves it has been difficult to find a pair of white jeans that didn't hug to tightly and therefore fitting poorl",5,1,1,General Petite,Bottoms,Jeans +1084,26,"I really wanted to love this dress, but...","This dress is beautiful as pictured on the model. but on me, not so much. i am normally a size 0/00 with a 32b bra size. i ordered this dress in an xs and it was just too big and boxy. i also thought the material was going to be thicker, but it was very thin and didn't seem to fall right on my body. beautiful design, just not the right material or fit.",3,0,0,General,Dresses,Dresses +820,39,"Beautiful, but need to right sizing","This top is very feminie, i love hte pelats and flower details. it can be, however, a bit boxy, i think if you have wider hips, i might avoid. great to go with skinny pants/ejans, though. could size down, if shoulders are not too wide...",4,1,1,General,Tops,Blouses +215,27,Love these!,"Bought this as ""transitional"" wear post baby #2 & i love them! will probably end up wearing them all winter long! i love that i'm 6 foot & they still are scrunchy at the bottom which i honestly wasn't expecting.",5,1,1,Initmates,Intimate,Legwear +428,47,,Gorgeous suit - sexy cut on the back but seems to hold you as well. suit runs very small. i wear a 4 in regular clothing. i bought both the small and medium and just exchanged it for a large.,4,1,4,Initmates,Intimate,Swim +423,37,Not for me,"This appears much more pink in person. i'm not really a pink girl but thought i'd try. +the way the shoulders are cut makes my defined shoulders/arms look too intense for my liking. this would look nicer on someone more petite and less athletic in my opinion. i like that the bust has slight padding that can make a bra unnecessary for yoga, spin, pilates, ballet, or barre class. it's nice and fitted and true to size. would be really cute on the right person.",4,1,0,Initmates,Intimate,Lounge +876,28,Simple but fun top,"Cute top, i actually got a lot of compliments on it. the white is slightly see through, which doesn't bother me but could bother other people. all around cute casual piece.",4,1,0,General,Tops,Knits +876,54,Simple cute tee with a twist,"Love the tee in the red. it's not too sheer and the metal detail on the shoulders turns it from a simple tee to a tee with a little more pizazz. fits true to size. i take either a medium or large in retailer and this in a size large fits well. it is a bit boxy, but not sloppy. on sale it's a great deal.",4,1,0,General,Tops,Knits +876,45,Artistic; goes with everything,"The simplicity of this t-shirt will go with jeans, shorts, or anything casual. the macrame and bead details give it that extra style. i bought the red and white, and love them both. the red is warm and bright, with pink undertones. despite the boxiness of the fit, it ran true to size for me. i did not think it was too big; its meant to be loose and slouchy rather than fitted.",5,1,0,General,Tops,Knits +834,31,Great blouse!,"This blouse is not only flattering, but a great way to dress up a pair of jeans! fits well, but a big tight around the arms, had to go up a size.",4,1,0,General,Tops,Blouses +876,29,Perfect dress up-or-down top!,"This top is lovely. it's got a decent length to it, so it can be tucked into nice pants or a skirt. the gold beading design on the shoulders is a little heavy, which can sometimes cause it to slip/sag off the shoulder -- not entirely off, but enough to reveal a bra strap for a kind of off-shoulder look! it's very flattering if you tuck it in, or even if you don't. i got this top in red, and it's lovely --a little more towards than coral side than crimson.",5,1,0,General,Tops,Knits +215,31,"See-through, but worth it.","I am a 5'10"" size 4 (or 28 long - i need a 33-34"" inseam) woman. i bought the s/m and they fit perfectly (with all the excess length bunching at my ankles, as designed)! i'm thrilled. i bought the light color. one thing, wear nude underwear and lighter (or just short) socks - these are definitely see-through! however, i only plan to wear these with long tunics and sweaters anyways - something always reaching down to my upper thighs, at least. so comfy and cozy!",5,1,2,Initmates,Intimate,Legwear +876,35,"Too boxy, sizing down - not good!","I read the other review that said the shirt was boxy, i didn't think it would be a terribly big deal. unfortunately, it is. normally i wear a size s, so i sized down o an xs. the shirt fits in the sleeves and neckline, but the shirt is still very box and now super short. unfortunately, this is going back. not a good fit. adorable details but the fit is terrible.",1,0,6,General,Tops,Knits +820,40,Perfect party top,This top has glam written all over it. the pleating gives it a delicate look but is not cheaply made or feeling. it lays so beautiful...i would say this runs tts but because i am busty i sized up to give it more of flowy look. because i am busty it also looks like high low blouse. no need for a necklace the flowers and shimmer do all the work for you. i paired it with leather leggins and it was adorable.,5,1,1,General,Tops,Blouses +876,40,One of a kind!,"I'm 5'5, 145lbs and i'm usually a small/medium depending on the vendor. i bought this shirt in a red, medium and love it. yes, it's boxy and a little big but lays nicely and i think it's meant to be a bit big. i've worn a black cami underneath and the shoulder hangs off a little to the side giving a little extra sexy look to it. this shirt washes well per instructions, didn't shrink or loose it's shape and i've washed it three times now. i've had many compliments on how cute this shirt is, love",5,1,0,General,Tops,Knits +876,34,,,5,1,0,General,Tops,Knits +876,40,Super cute shirt,I just bought this shirt on sale. i'd been eyeing it for a bit and when it went on sale i had to get it. its really cute and comfortable and fits really nicely. it's not too short or boxy and the detail on the sleeves is great.,5,1,0,General,Tops,Knits +834,41,Versitile classic,"I usually do not like three quarter sleeve shirts and i do not like tie necks of any sorts. this blouse has both and i love it! i loved it in pictures and, against my two dislikes listed above, i gave it a chance. i am glad i did. the shirt is lined in the body which means the white one is not see through...yey, no need for cami underneath! the lining also adds extra warmth as this is a very thin fabric shirt. the sleeves are loose enough so that the 3/4 length does not restrict me. the tie some",5,1,0,General,Tops,Blouses +876,34,,The red is so pretty in-person. i love the details on the sleeves... only complaint is the fit is pretty boxy and couldn't size down because it is borderline to short in length. did buy it today and we will see if it work out!!,4,1,4,General,Tops,Knits +215,42,Long legs required,"Nice quality, but enough material for two sets of tights. can scrunch up at the bottom for a different look.",4,1,1,Initmates,Intimate,Legwear +876,25,Fun shoulder detail,"I bought this shirt specifically for the extra details on the shoulder. when i received the shirt, it was a little stiffer than i expected but not enough to return it for being too uncomfortable.",4,1,0,General,Tops,Knits +876,39,Cute design,"Cute design. details on shoulder make the tshirt more special but it runs large so that kind of takes away from the styling. got it on super sale, so i'll keep it. maybe a wash will shrink it a bit...",4,1,0,General,Tops,Knits +215,28,Love the ribbed sweaterknit leggings,"They're great. i saw them featured in one of the marketing emails. they looked comfortable and cute, different with the leg warmer type bottom. i went to the retailer near me, but they didn't have them in store. this was a slight disappointment because i wanted to try them on for sizing purposes. but, i ordered them because they were affordable, in the $30 range, cute, comfortable, and stylish. they also ended up fitting perfectly as well. nice job!",5,1,4,Initmates,Intimate,Legwear +215,35,Cozy and fun!,"I love these with tunics and little dresses! they hit at a funny place on my hips, though; i wish they were a bit higher-up. since the waistband is thick, they show through tops unless they are pulls up above my hips, and they're a bit too short-waisted for that. but i was able to stretch them a bit, and i love them!",4,1,3,Initmates,Intimate,Legwear +876,66,Great hot weather tee,"The metal detail @ the shoulders is the perfect touch to an otherwise ordinary tee. +regarding sizing. i am 5' 4"", 36dd and i usually have to buy l in tops and make alterations. after reading the other reviews i ordered a m & s. because my shoulders are narrow the s fit better. front measurement shoulder to hem is 24"" on both the s and the m. plenty of length for me. i also wasn't looking for a tight fit around the waist and tucking in just the front as shown on the model looks great. i saw thi",5,1,0,General,Tops,Knits +876,65,Size down!,"I'm normally an xl, but i bought a l since so many said it was big and boxy. the l fit great. it's tailored to the body, but not tight-fitting, just as shown on the model. + +the detailing at the shoulders is heavy, compared to the light knit of the fabric of this tee. so, it pulls the neckline forward a bit. + +i bought the red and wow! it's a bright, fireengine red that's just stunning. it looks lighter in the photo. it arrived all squished up in a little tiny roll so it was really wrinkled.",4,1,0,General,Tops,Knits +215,56,Wonderful cozy feeling,"Absolutely love these leggings - warm, comfortable - great way to relax after a long day? snuggle up in these...do stretch even longer after a while, but wash and wear again is easy - even wear out of the house...bought in green and love how well they go with sweaters, shirts, etc. -",5,1,1,Initmates,Intimate,Legwear +834,25,"Simple, classic top","For the sale price, this is an amazing deal. i tried the white version of this shirt on in a size 10 because, being on sale, that was all they had available in the store. it was unfortunately too large with the 'v' of the shirt plunging rather low and the sleeves hanging off my shoulders, and i didn't buy it. when i came back a few days later, i found this in a size 6 in black. i honestly don't know my shirt size in numbers, but i'd consider this one a small to medium so i'd say it's fairly true",5,1,0,General,Tops,Blouses +860,65,The perfect tee! elegant..,"I slightly balked at the cost, but i am completely satisfied and glowing about the product, and it is made in the usa. in these times, that means a lot. 100% supima cotton and the perfect design with reasonable deep v-neck, front and back and the slightly lengthened sides, very ultimate design for a tee. i bought the dark grey; the tag says ""wash before wearing"", which is one extra step... still, i find this supima cotton tee pretty much divine. i bought the dark grey in medium, my usual ( size",5,1,13,General Petite,Tops,Knits +820,36,Delicate and beautiful,"I received this blouse for christmas and it is just gorgeous! it fit true to size, and goes with my whole romantic, feminine style that i have without being overly girly. not too sheer, so no need for a tank underneath, and being that it is neutral, it will go with just about everything i own! love it!",5,1,0,General,Tops,Blouses +1008,63,Cute pencil,I wanted to love this skirt but i got it today and i just was a little disappointed...i read all the reviews but i found it ran small and really fitted not straight pencil like on the model! it is a knit...and it looked like cotton...has a lot of give but it hangs a little weird. the panel in the front doesn't lie flat and looks a little funky! the colors in the skirt look exactly like the picture on line so that was good... i liked it but didn't love it and for $98.00 i want to love it! i am be,4,1,5,General,Bottoms,Skirts +1081,27,,"I saw this dress online and thought it looked just ok. i happened to see the dress in my retailer store today, and thought i would try it. i'm so glad i did. this dress looks so much better on. i'm usually a 10-12 in dresses at retailer, i tried this in a large. it fit perfect. it's doesn't cling to you, but it doesn't hang like a sack either. i think it made me look taller and thin. woohoo. i would say it's a little on the thinner side, it's not a heavy knit. it's two layers of thinner knit , as yo",5,1,56,General Petite,Dresses,Dresses +1081,25,Versatile dress,"Wearing this dress for the first time now, and i love it! soft material, comfortable, and easy to dress up or dress down, making it good for all kinds of different occasions. + +i was a bit nervous about the initial purchase due to other reviews saying this dress isn't great for pear shapes, but i whole-heartedly disagree! i think it actually just needs a belt for those of us with particularly curvy figures - i'm wearing a belt around my natural waist, and have bloused out the top and it looks g",5,1,0,General Petite,Dresses,Dresses +1008,47,Not as flattering as i'd hoped,"I don't love this skirt as much as the other reviewers do. it fits a little bit weird on me, and i wanted the tie to be adjustable so i could bring in the extra fabric a bit (the knot is not adjustable). the skirt is borderline tight around my rear and legs, so i can't size down. the knit is substantial, so that's something -- but i found the extra fabric around my middle just wasn't flattering on me. i had recently bought and loved lilke's tideline pencil skirt, which also has a fabric tie wrap",3,1,0,General,Bottoms,Skirts +1008,26,Love it!,"Such a cute skirt! the fabric is comfortable and light, and the the tie in the front helps conceal some of those ""tummy issues"" a lot of people want to hide. :)",5,1,0,General,Bottoms,Skirts +1104,28,,I received this dress today for a june wedding. i was so excited about it and the quality is beautiful but unfortunately i am going to have to return it. it runs very big. i normally like to wear items a bit bigger/baggier but with this dress it needs to be tight on the sides. bummer :(,3,1,0,General Petite,Dresses,Dresses +703,44,Love this romper,"I had bee struggling to find a romper with longer length shorts, it seems like so many of the rompers have short shorts for the bottom half and i wanted something to hit upper mid leg, something like a 4"" inseam on a short. on a whim i ordered this and hoped it would be long enough and sure enough it is perfect. still stylish and still ""short"" for summer without it being so short on the bottom. well made! nice closure at bust so there is no gaping.",5,1,5,General Petite,Bottoms,Pants +828,37,Perfect white blouse,"I bought my typical size (xs) and it fits perfectly. it's loose but not overly baggy which is what i was looking for. the material seems very durable. my concern with all white tops is being too thin and see through and that was not the case with this shirt. the front comes right above my crotch and the back covers my cushion. i've only worn it once and that was with some bootcut jeans, booties, simple earrings and a statement necklace. i highly recommend it.",5,1,3,General,Tops,Blouses +1028,39,Love,"...a little long still, but loved the fit. +flattering on me, i have thighs and these balanced out the thigh effect. color (wash) was also very nice in my opinion. can be wrn with any top, really, i had to make myself return them jsut coz of price, but on my wish list for sure!",5,1,1,General,Bottoms,Jeans +1081,39,Nicer than i expected,"I would not have tried this on or ordered it by myself, but my stylist brought it over for me to try (as it was on promotion). well, ok, i get it, i actually liked it on, but the regular size was too big in the arm hole... thinking of it, i should have ordered the xxs... maybe i will. + +flattering style, comfrotable fabric, really nice overall...",5,1,0,General,Dresses,Dresses +1081,43,"Great design, poor execution","I was really excited about this dress. i had only seen it online and it looked like the perfect transitional piece, casual or dress up. when it arrived in the mail, the feel of the fabric was great and i slipped it on and it was so comfy i felt like i was wearing a nightdress. unfortunately it hung like that, too. the material sags in places it shouldn't. i have a 5'8"" 125 lb frame, and i ordered an extra small, and both my husband and sister said it was unflattering and urged me to send it back",2,0,0,General,Dresses,Dresses +828,51,A nice twist on a classic,"I love the cut of this shirt! interesting back, and it hangs nicely.....surprisingly flattering! i'm usually a small and needed the xs in this shirt, fyi. very soft, and overall just very pleased with this purchase! i bought it in the denim as well!",5,1,0,General,Tops,Blouses +1081,76,,"This is an all-purpose outfit, well-made, good material. it can be worn many ways.",4,1,0,General,Dresses,Dresses +819,35,,,5,1,0,General Petite,Tops,Blouses +822,39,"Beautiful, unique top","I loved this top when i laid eyes on it online, and in person, it did not disappoint. it is a beautiful and unique top. the color is striking and the style is adorable. i can't wait to wear this with some flare jeans and espadrilles.",5,1,1,General,Tops,Blouses +1028,54,Lovely option if you are petite,"This wash is so beautiful but i found the rise too long for me. so happy i found them in 24p here on the site. they are wonderful but i'd like to caution with respect to proportions: + +i have long legs (for a petite, ha!) and a petite upper body. these jeans almost entirely differ with respect to length. so id say if the your torso is fairly true to a regular fit, and your legs are shorter, you totally save on hemming the regular fit jeans. like another reviewe noted, hemming will reduce the fl",4,1,0,General,Bottoms,Jeans +1081,48,Love this dress!,I ordered this dress in oatmeal the minute i saw it online. i'm 5'5 and 115 lbs. and my usual xs fits perfectly. i would say this dress will be the most flattering on a long lean body type. (it will show bumps and bulges.). i will wear it asap with booties and a jacket. and it also looks great with flip flops or sandals for the summer. very happy!,5,1,3,General,Dresses,Dresses +555,29,Was very excited about this dress,"This dress is just my style. i have been waiting for it to go on sale since it hit new arrivals. when the sale hit the extra 30% off, i pulled the trigger. unfortunately for me, it was a little snug in the bust and as a tall lady, the waist hit me at slightly the wrong spot. i am 5' 9"" and am a 36d. so if you are tall and busty, this will not be the dress for you just from the way it is cut and manufactured. the skirt section of the dress has a hook underneath the vest section that it is pretty",4,1,2,General,Trend,Trend +625,34,Wanted to love it,I thought this suit would be the perfect solution of stylish but forgiving of my new mom bod. this one didn't work for me. i ordered the medium. the top is very small--i would recommend only for b cup or smaller. the full coverage bottoms did nothing for my shape. it seemed to make me seem rounder and shorter. sending this one back! i did find success same size in a faux wrap style retailer suit.,2,0,0,Initmates,Intimate,Swim +1081,42,Unique dress,I like how this dress is really different and fun with the slit up the front and the short layer revealed underneath. it can be worn in many seasons. i wore it yesterday with sandals but i could also see wearing it with booties and a cardigan. cute dress!,4,1,0,General,Dresses,Dresses +1008,33,Very pretty,This is a great skirt. i am always on the lookout for machine washable clothes that are fun and work appropriate. this skirt is really flattering on my body. the only thing that's a little off is the tie at the front but it's still really stunning on.,5,1,0,General,Bottoms,Skirts +625,49,"Vintage beauty, but runs short","This suit is super cute! i think it will be too short in the body for taller girls. i am 5'4 117 pounds 32c and bought the medium. very cute fit, but it's almost slightly too short in the body. maybe if you are smaller on top, you will get more length in the body? i really want to keep this suit. i might consider the large, but the rest of the suit fits perfect.",4,1,0,Initmates,Intimate,Swim +1008,74,Great twist on a pencil skirt,"I love the style and quality of this skirt. the material is a bit heavier than anticipated, so it works well in cooler months, and the thickness makes it easy to wear a shirt underneath. it fits true to size - my usual 6 is form-fitting without being overly snug or pulled. + +i am on the taller side, and the skirt is fairly long - it comes to the bottom of my knee.",5,1,0,General,Bottoms,Skirts +1081,36,Great dress unless you are pear shaped,"I wanted to love this but if you carry your weight in your hips, butt or thighs this is not the dress for you. runs tts. i'm 5'5, 135 lb and the small fit but made my lower half look even wider than what it it. also felt like it was a bit too long in length.",3,1,17,General,Dresses,Dresses +1081,45,,,5,1,0,General,Dresses,Dresses +828,31,,It was hard for me to pay full price for basic white button-down but i am so glad i did. the high-low and split back detail give the shirt a unique look. it looks cute with jeans and wedges as a dressed down option. i bought this to go with the shoreline skirt and it looked really good together. this is a staple that can be worn multiple times and for many years.,5,1,0,General,Tops,Blouses +828,23,"Beautiful shirt, great fabric, seam come undone :(","This shirt flows beautifully and the fabric is almost wrinkle free. i also love that it's the perfect weight and not too low cut, and that the buttons are covered. however, the stitching started to come undone the first time a wore it! i didn't even wash the shirt yet. sadly, i don't think i can recommend this shirt, though maybe give it a try- i might have got a defective one. oh this shirt also seems to run a bit large through the body, but it still looks great. i hope this helps!",3,0,3,General,Tops,Blouses +828,50,,"Love this! when i first saw it online, i thought it was a bit pricey for a plain white shirt. but i finally gave in and ordered it! i'm so glad i did! i've worn it twice in one week so it won't be difficult to get my money's worth! it's very soft and fits perfectly. looks great with jeans or dress pants. i like to tuck the front in my pants and leave the back out.",5,1,0,General,Tops,Blouses +1008,22,Amazing,"I seriously love this skirt! i bought it for my college graduation and i was complimented by everyone that saw it. not only that, but it is beyond versatile, you can dress it up, make it casual, or make it professional. it is extremely ideal especially for the price. it also is the most comfortable skirt i've ever worn, so that's a plus.",5,1,0,General,Bottoms,Skirts +1081,45,Nothing like pictures,"I was so excited to try this on after having discovered it on the retailer app and stepping into the store and seeing it. on the hanger it looked alright, but once i slipped it on, it's like everything i've got going for me disappeared. granted, i'm s little bottom heavy, so these types of dresses don't typically flatter my body type anyways.",3,0,23,General,Dresses,Dresses +555,39,Nice quality,"This dress runs tts. the fabric is a good quality, and it has pockets. i am about 5'5"", and it hit just above the knee. i really wanted to keep it, but it hit me at an odd spot and not on my waistline. this made the dress look awkwardly full and me look hippy (despite the fact that my waist is 26"" and my hips are 35"").",4,1,16,General,Trend,Trend +1081,34,,Cute and comfortable. has layered design with black underneath which adds dimension and warmth. can wear in multiple seasons with and without jacket.,5,1,0,General,Dresses,Dresses +300,34,Nice detailing,"I tried this on in gray while in store, it was the cuff detailing that initially attracted me. once i tried it on there wasn't a lot i loved about it so it didn't leave with me but now that it's on sale, it's the perfect choice. i'm wearing a medium in the photo, and the only real downfall is how long the arms are on me and i have long arms. maybe sizing down would help but i fear i have too much winter weight to hide to take a small. for reference, i'm 5'6"", 145 lbs curvy hourglass, generous hi",4,1,25,Initmates,Intimate,Lounge +300,40,,"This tunic is a casual, comfy yet stylish piece that is a great addition to my wardrobe. the only thing i find might be an issue is the thin material. i tried wearing a tank top under it but the material is too thin and the outline of the tank was too noticeable and looked odd. removed the tank and all was good! pairs great with leggings",5,1,0,Initmates,Intimate,Lounge +300,39,Love it!,"I wasn't sure how this would look on, but it is very flattering. looks great with leggings or jeans! i have received many complements!",4,1,2,Initmates,Intimate,Lounge +920,43,Pillsville,"Comfy, but constantly picking pills off of it, from first wear.",4,1,1,General,Tops,Fine gauge +975,66,Warm & stylish,"I love this jacket - can dress it up or dress it down. over a dress, skirt or jeans. very soft and flattering!",5,1,1,General,Jackets,Jackets +300,36,"Soft, stylish tunic",This tunic is super comfy and will look great with leggings or skinny jeans. i absolutely love the detailing on the sleeves. i am so glad i ordered this item!,5,1,0,Initmates,Intimate,Lounge +975,29,"Wanted to love this, but runs incredibly large","This jacket is soft, a beautiful color, the perfect length, and incredibly versatile (a fleece jacket that doubles as a blazer) but i was swimming in it! i wouldn't have minded the larger size, but the sleeves looked ridiculous. i wish i'd ordered early enough to try a petite size, but i'm not sure that would've helped. sad to send this back!",4,0,0,General,Jackets,Jackets +1009,39,Bought on the spot!,This color rich pattern will transition nicely into the fall season. it wears well with a bare leg and will look great with opaque tights later in the season. the higher waist and gathering work well on my figure.,5,1,4,General,Bottoms,Skirts +975,38,"Warm, soft, but looks like a blazer","This jacket feels like a throw blanket, but has shape and is appropriate to wear both casually or dressed up to make it profession enough to wear to the office. the jacket is bias cut and longer in the back to cover your rear. since it's fleece, the sleeves roll up easily and you can move around in it with ease. it has pockets big enough to carry your phone. i'm 5'7"" 135 with a small chest and i got the jacket in my normal size small and it's loose enough for me to wear layers underneath. if i w",5,1,0,General,Jackets,Jackets +300,39,Perfect!,This is my first pure+good piece. i am not disappointed. i am 125# and a 34c....ordered the small. fits like a dream. love the moss color. nice long sleeves (i will am picky about sleeves). comfortable fabric. the detail at the cuff is lovely. i can see this versatile piece taking me through the entire year.,5,1,2,Initmates,Intimate,Lounge +300,37,,"Comfy, will be great with a sweater or vest over it. love the pink color.",5,1,2,Initmates,Intimate,Lounge +975,33,Chic and comfortable,"Love this blazer! combines a chic, pulled together look with super soft, comfortable material. will be great for the office and the weekend. runs a little big?am typically a large or xl, so i ordered the xl and had to exchange for a large. might have actually been able to size down to a medium, but didn't want to deal with the back and forth again.",5,1,0,General,Jackets,Jackets +1100,39,Ok,"I like the dress on line: color flowers, cut, etc. but when i tried it on it was just meh... the color did wash me out a bit, the flowers are still beautiful, but the cut wasn't as flattering on my body as it was on the model. 0p fit ok, but i didn't keep it. you ahve to tie your own shoulder straps, so adjustable, i guess that is a plus. + +115 lbs 30 dd, 26.5 in waist",4,1,0,General Petite,Dresses,Dresses +300,39,Comfy,The lengths is what drew me to this top. i love the simple look of the cowl neck. nice detail to the sleeve that creates a more than casual look.,4,1,2,Initmates,Intimate,Lounge +1009,35,,Great colors and not too voluminous. lined whig will be great for fall but the downsides are the huge elastic waist bc it'll require a belt or something over it (looks v casual alone) and even with a perfect fit it gives a bit of muffin just bc it's a huge piece of elastic. i've literally tried this on on two occasions trying to convince myself it it. lol but it's not worth it at the current price.,3,0,1,General,Bottoms,Skirts +1009,28,,,4,1,0,General,Bottoms,Skirts +1059,65,Run big!,"Beware ladies! these are the first pair of cartonnier pants i've tried that actually run large! i have several other pair of cartonnier crops that are sized way up to a 10 (my normal size is 6 or 8). to my surprise, my normal size 6 in these for perfectly!! the fabric is way different than the printed crops. i got the bright red, and fabric is stretchy! great fit and great weight for summer!",4,1,1,General,Bottoms,Pants +1009,38,Versatile and flattering,"Perfect for lunch with the girls, pta, or saturdays with the family. this skirt is a perfect addition to your fall wardrobe.",5,1,1,General,Bottoms,Skirts +300,37,Love the sleeves,"I am usually a medium, but sized down to a small for a more fitted look. the light pink is slightly sheer, but will look great over leggings and jeans. i love the detail on the sleeve.",5,1,7,Initmates,Intimate,Lounge +300,46,Flattering and elegant,"Like many clothes, this looks much better on you than on the model; with a little bit of curve, it is not shapeless but very flattering. i wore it out with friends for drinks and they all exclaimed at how elegant it was. the wrist keyhole is a nice touch, and quality is very good. for reference, i'm 5'6"", 125 lbs.",5,1,1,Initmates,Intimate,Lounge +975,37,Love!!!,Thanks for the tip to size down. i am typically a m or a l (36d) and i sized down to a s. it is perfectly structured and warm and soft and beautiful. got it on the 40 percent of sale items so the price was right. absolutely a classic. i got the plum color. thanks retailer for another wardrobe staple.,5,1,0,General,Jackets,Jackets +837,35,Nice but....,"I was so excited to receive this shirt. it is a beautiful color and material and very well made. i loved the lace detail and wanted to love the shirt. however, i put it on and the seem hit right at the top of my bust. it broadened my shoulders and the fabric started right at my bust so it flowed down from there making me look boxy and wide. i am a 32dd, 5'3, and 115 pounds for reference. if you are more narrow and don't have a chest this would be absolutely adorable but sadly for me it had to go",3,1,1,General,Tops,Blouses +1059,53,Very cute!,"Love these charlies! the side zip is a nice change of pace and the dark grey goes with practically everything i own. fabric is a perfect weight for spring and summer too. i ordered one size up, mainly because i put on a couple pounds this past winter (like usual) and the description said slim fit. i went from a 6 to an 8 and the 8's weren't big at all, so they might run a tad on the small side. side zipper is a little harder to zip near the waistband, but i don't think that can be prevented.",5,1,13,General,Bottoms,Pants +975,58,Cute and cozy but poor quality fabric,"This jacket is cozy, warm, and very cute, but after the 1st washing (according to the manufacturer's instructions) it began to pill and has worsened each time.",3,0,3,General,Jackets,Jackets +975,46,,Beautiful fall/winter piece! so soft and comfy!! was unsure about it when i saw it online but once i saw it in store and got to try it on and feel it i could not put it down! i felt you could definitely size down!,5,1,10,General,Jackets,Jackets +1059,36,Beware the butt sag.,"These pants are the perfect color, and i love the detail of the zippered pockets... i was so excited when they came in the mail and fit pretty well. they were slightly loose, but i thought they would hold their shape and the size smaller would be too small. after an hour of wear, i was swimming in these! i can almost pull them down without unzipping them and the seat of the pants looks particularly, um, saggy. i am in-between a 4 and 6, and since the pants are detailed as slim fit, i thought it",2,0,5,General,Bottoms,Pants +975,24,Lovely!,This coat is so beautiful! like others i wouldn't have even considered it online but i tried it on in the store and absolutely fell in love with. it is the softest material ever and is so flattering on.,5,1,1,General,Jackets,Jackets +975,47,Cute jacket but low quality,"The jacket runs large so size down. it's a good jacket to throw on the go. but i don't see this lasting long bc after he first wash, it started piling. the quality of the material isn't great!",4,1,2,General,Jackets,Jackets +300,34,Purchased...thought about it...and returned,"I purchased this, and it ended up sitting in my closet for a couple of weeks. i bought it in the green, and i felt it did nothing to enhance my figure. it's kind of a boring design. i like the cowl neck (rare on a tunic) and the sleeve details. the colors don't seem to go well with standard black leggings. overall, unimpressed.",3,0,0,Initmates,Intimate,Lounge +975,40,Arrived damaged,"The button fell off when i took it out of the bag, and i noticed that all of the thread had unraveled. will be returning :-(",2,0,0,General,Jackets,Jackets +975,33,"Nice cut, but cheap materials","I agree with a previous reviewer who said that it was very nicely cut, but unfortunately, the materials are so cheap. the ""fleece"" material that it is made out of feels like the cheap polyester fleece blankets that you get at the discount stores. it will pill easily, and is noticeable even in the dark color. i must have gotten one shipped straight from the store, and it was already starting to do some gnarly pilling. i do love the cut of it, but i can't justify keeping it because this won't last",3,0,1,General,Jackets,Jackets +975,48,Big and boxt,"I ordered a small, but it was way to big. it was very soft.",2,0,0,General,Jackets,Jackets +975,62,Lovely soft light jacket,"I've been looking for sometime for a spring/summer jacket to wear on warm days over light clothing. i wanted something feminine and just structured enough to move beyond casual. this fits the ticket! it is a very pale grey and a soft, cozy fabric. i am 5'8"" tall and 118 lbs, and usually wear an xs in many items but a s in jackets due to the shoulders. these shoulders were large on me in the s. the waist was also large, but worth having it altered. if you find this on sale it's a great buy!",5,1,0,General,Jackets,Jackets +1009,22,,Love this skirt ! i thought it would be much shorter but when i tried it on it was the perfect length and super cute!! the material is thick but not uncomfortable and very move able!,5,1,0,General,Bottoms,Skirts +300,31,Buy it!!,"This is a gorgeous piece of clothing - true to size, simple yet flattering lines, very comfortable. it has such flattering little touches as well, such as the detail work on the sleeves. love it, love it, love it! i just wish it were machine washable!!",5,1,0,Initmates,Intimate,Lounge +300,40,Very stylish tunic-top!,"I love this top! from the details on the cuffs to the draping at the neck to the light-weight, yet very high-quality material, this top is my new winter-spring transition piece. i'm 5'3"", small chest, and a slight curve in the hips. the arms of this top fit me fine, but because the fabric doesn't stretch, you may find the sleeves too fitted. the length is perfect for hiding the butt without looking like pajamas (about mid-thigh). i've paired it with cuffed jeans and sneakers (like the model is w",5,1,2,Initmates,Intimate,Lounge +975,41,Fab and cozy,"I have wanted a fleece jacket for ages (for warmth and practicality), but i'm not the sporty type. this is the perfect alternative! i got it in wine and use it over a cardigan and dress or jeans. it is a lovely color and passes as wool. this is one of the best things i've ever purchased at retailer. highly recommended. btw, it runs quite big. i'm generally a medium to large but the small is perfect on me.",5,1,1,General,Jackets,Jackets +1059,37,Stretches & creases like crazy,"These were so perfect for the first hour or so. i was convinced they were my new favorite pants! but their initial forgiveness turned into a slovenly stretch, and they creased and wrinkled like crazy after i'd been sitting a couple hours. it looked downright embarrassing - saggy and wrinkly (radiating from the crotch, no less) . i got them in the gray, and it's possible that other colors use different, less awful fabric.",2,0,18,General,Bottoms,Pants +1059,61,Great pant,"Wow! great find and a true fit. i totally dislike pant shopping and these are a gem. +slimming, flattering and so comfortable, the style is great. great basic summer pant!",5,1,0,General,Bottoms,Pants +975,62,Fabulous,"So soft, light and warm! will work as an outer layer or fit under a coat. the wine is beautiful, with a subtle two-tone contrast between the outside and slightly brighter inside, even though it's just one layer. relaxed and casual yet will dress up a tee or blouse. + +i'm usually m or even l but the m was too droopy at the shoulders so went for the s, which looks less slouchy and more jacket-y on.",5,1,6,General,Jackets,Jackets +1009,62,Another winner!,I loved the mustard colored version of this skirt for summer and was thrilled to see it reissued in darker hues. same comfortable fit and cool textured fabric that doesn't wrinkle. i found the regular sizing to still be above the knee and the wide elastic waistband great for either a cropped top or a belt. will wear often.,5,1,3,General,Bottoms,Skirts +975,73,"Cozy, beautiful wine color",Really soft and perfect for work or leisure! fits a little large but ok. i usually take a small or medium (size 8 or 10) and the small in this jacket fits nicely but a little big. very comfortable. will be great for travel.,4,1,2,General,Jackets,Jackets +1009,27,,,5,1,0,General,Bottoms,Skirts +1009,40,Comfortable and great for work,I love this skirt and was so happy to see it in stores again in a great color for the fall. the fit is great for me because i do not have a flat stomach and the elastic makes it comfortable to wear. the material is a good quality. this skirt adds the perfect pop of color to my closet.,5,1,0,General,Bottoms,Skirts +300,56,Comfy & stylish,"Long, thin, tunic. perfect over leggings, great for casual day but look pulled together.",5,1,2,Initmates,Intimate,Lounge +300,52,"Comfy, long jersey tunic","I love most pure and good clothing pieces, mostly because the fit and fabric are comfy and made of good quality materials. this tunic does deliver on both counts, but i is very, very long and straight up and down. +fyi: i have a boyish figure, having no waist/hips. i have a broad shoulder/back, so the cowl neckline coupled with the very long and straight tunic doesn't really flatter my body. it would be okay for just haging around the house, but i wouldn't feel comfortable wearing this tunic out",4,1,18,Initmates,Intimate,Lounge +74,25,Exactly as pictured,"Love this bra! i was looking for something feminine and sexy and this is perfect. it's exactly as pictured. i was worried the material would be too delicate and fragile, but it's really durable! my only issue is that it fits a tiny bit awkwardly because of the solid material on the side, but it doesn't actually look awkward, just feels a bit odd at first. i highly recommend it if you're looking for something sweet and sexy!",4,1,1,Initmates,Intimate,Intimates +1059,45,Great pants!,"I love charlie pants. i've bought a few in the past, and i've never been disappointed with quality, style, or fit. i love the side zip on these and the nice flat front as a result. i wish more pants were side zip- so much more flattering than having that part stick out under fitted shirts. i got these in a 4, my usual size, and while they fit a little more snugly than my other size 4 charlie pants, there is enough stretch that they don't look or feel too tight. i also got these in the regular, r",5,1,0,General,Bottoms,Pants +1100,54,,"Such a beautiful, well-made dress! the color of the dress is slightly more pink in person -- a very pale pink. the lining is an off-white color. it fits very well, aside from being a bit long (i'm 5' and ordered the xxs petite). so glad paper crown is making xxs p now!",5,1,4,General Petite,Dresses,Dresses +300,27,,,5,1,0,Initmates,Intimate,Lounge +1078,39,,,5,1,0,General Petite,Dresses,Dresses +1078,26,,I got several compliments when i wore this dress. it's very comfortable and will be great for fall.,4,1,0,General Petite,Dresses,Dresses +1020,48,,"I just recently purchased this skirt and i love it! +it's cotton with spandex incorporated, so it's soft and not stiff. it hugs your waist and accentuates your butt nicely. the lace up is unique in design, so it can be dressed up with a sparkle blouse or dressed casual in a t-shirt. i'm 5' 1"" in height so the length is very flattering and it zips up in the back. great color cream and excellent quality.",5,1,3,General Petite,Bottoms,Skirts +1078,48,Wish it had a little more shape,"A cute dress. i did not have the issue with the slip being too tight. i wish it had a little more shape to it. while flowy, it looks a tiny bit tent-like. i still like it and wear it into fall with booties and boots!",4,1,0,General Petite,Dresses,Dresses +1078,46,Flowy blue,Really comfortable dress to wear. pretty flower design. good fabric and ribbon details are well placed. thankful it came with a cotton under slip because it's very sheer fabric and i didn't have to think of what to put underneath. have worn it twice since it shipped and i'm really happy with my purchase. online order and shipment was super fast too.,5,1,0,General Petite,Dresses,Dresses +984,36,Love,"I'm short and curvy and just had a baby. love this cape because it's super comfy and warm but not too warm. have had it for a couple of weeks now and it's my go to for running around during the day. the description says grey but it reads a tiny bit green - like light camo green but so slight that it still pairs well with most everything. + +usu a med but got the xs/s because of how slouchy it is anyway. med looked too big in the shoulders.",4,1,2,General Petite,Jackets,Jackets +1030,36,Love mother,Morher jeans are my favourite! they are soft and fit great. make my saggy butt look good! they do stretch with wears but shrink again in the wash. they do shrink quite a bit so don't dry all the way! i recommend mother to all!,5,1,0,General,Bottoms,Jeans +941,30,Beautiful but will lose shape,"This top was a disappointment for me. it was beautiful but because of the material it is made out of, it will stretch out as you wear it and not regain it's shape. it is also a little heavy for day time during summers in the south.... but the weight of it was not so much of a concern as the ability to retain its shape.",3,0,7,General,Tops,Sweaters +1078,38,Love this dress,I purchased a petite size which fit great except for the slip. the slip is at least 2 inches shorter than dress. super comfy and flattering! perfect for fall with at pair of booties.,4,1,0,General Petite,Dresses,Dresses +1078,48,"Great blue, slimming fit","I really like this dress. despite the somewhat gathered skirt, it has a clean line and doesn't add a lot of volume around the hips. the blue is a great color. the length is well above the knee but i'm 5'10"". i can see wearing this dress in the fall with leggings or tights and boots.",5,1,2,General Petite,Dresses,Dresses +1078,49,Wanted to like it,"I have a holding horses dress similar to this one from about a year ago. i loved the swinging fit without it looking like a maternity dress. the fit and style of this dress is wonderful, it's the color that killed it for me. i ordered the ""orange"" because i liked the photo on the model. when the dress arrived in the mail, i could hardly take it out of the package and try it on. the color is almost neon orange. too much for this redhead. hard to wear that bright neony color. not sure",2,0,0,General Petite,Dresses,Dresses +1078,50,Didn't work,"This dress ran small in the arms for me. when i returned it for a bigger size, the dress i got had a huge rip in the decorative threading on the back. i can't believe the product wasn't checked for flaws this huge before shipping. i asked for another one in the same size. we'll see if it, too, is defective",3,0,0,General Petite,Dresses,Dresses +984,37,Cute layering piece,Bought one for myself and one for my mom. we both love it. super soft. boxy and oversized but great for layering over a belted tunic.,5,1,0,General Petite,Jackets,Jackets +984,47,Hooded utility cape,This was completely different than i expected. the xs/s was so large that it looked messy. unfortunately i had to return it.,2,0,0,General Petite,Jackets,Jackets +1078,32,Had to return,"I loved this dress and it fit perfectly. i did not have any issue with the camisole being tight, and i am really curvy. i did however have a problem trying to take it off. it has no zipper and in order for me to get it over my head i had to stretch my shoulders to the point where i ripped the back. i went to the store and tried on the larger size and ripped that one too. i tried to take it off more delicately but i couldn't. maybe it was me, but this dress is too much hassle. if i went any highe",2,0,2,General Petite,Dresses,Dresses +733,42,Beautiful as a nightgown or dress!,"Tried this on on a whim and so glad i did, it is lovely! i can't wait for next summer now as i'll definitely wear this as a dress with a light cardigan. seems tts (34d and 5'2"", i bought in a small and it fits nicely). a bit pricey for what it is ($68 or $58 would have been more appropriate i think) so try to get it on sale :)",5,1,0,General Petite,Intimate,Lounge +936,37,Soft and sexy,"I bought this as a gift for a friend that is getting married in a few months. it's so soft and cozy, i'm tempted to keep it! i got the xs/s regular in white and was worried it would be too long but hits my natural waist (belly button) and i've got a shorter torso and am 5'4.5"". i got this during the 40% sweater sale and feel it is worth the full price. a fun piece but not one to keep you warm on a cold night, more of a cab to curb piece.",5,1,2,General Petite,Tops,Sweaters +1078,41,Great dress,This dress is great. wear now and into fall with boots and leggings. it seems to have structure with the seams and is nicley flowy.,5,1,7,General Petite,Dresses,Dresses +1078,24,,"This dress can be casual, or you can dress it up for going out. i just love this dress!",5,1,0,General Petite,Dresses,Dresses +984,70,A wonderful garment for chilly days,"What s lovely surprise this jacket/cape/poncho is! first, it is a substantial piece. heavier than it appears. it has an almost faux suede feel to it, with a deliciously lush french terry lining. it looks and feels very rich. i bought both colors and was glad i did! i live on the coast and this will be fantastic over a sweater for morning walks along the shore. i'm a l/xl and the m/l size is a perfect fit!",5,1,1,General Petite,Jackets,Jackets +1078,46,Pretty dress,Very pretty dress but the fit is not great. i have to get help to take it off because it's tight in the shoulders.,4,1,0,General Petite,Dresses,Dresses +841,60,Dissappointed in this blouse,"When i saw this blouse online i thought it looked like a great combination of casual with the elegance of an intricate print. i was so disappointed when it came. the print is not centered in the front or the back. it looks like they were trying to save on the material and just cut it out wherever with no thought to symmetry. for this price the detail of centering the design was expected, especially because this is how it appeared in the picture. loved the blouse, but i will be returning it becau",2,0,11,General,Tops,Blouses +829,34,Great.... though....,"Ok, so this is adorable. i am 5'3"" and medium size and had to take this to my alterations people because i loved it so much but it fit awkwardly. the back was too long and hung funny on my short body. after it was reworked, it is the cutest thing i own. they also made the little belt tighter across my waist. it is super versatile. my alterations people ran out and bought themselves one after they saw mine. so---- if you are not a toothpick or tall know it can be amazing with a little attention.",4,1,2,General Petite,Tops,Blouses +540,64,Cute but tricky zipper,"These are super cute shorts - great pattern, pockets (yay!) and really nice fabric. but, they're just a little too short for me, run a little small, and the side zipper is something of a pain -- i don't know if it was a construction issue on the pair i received or a stupid user issue but it seemed as if the seam with the zipper was just off -- not really a side seam but more toward the back. plus, the zipper sticks on the waistband seam making it even more difficult to zip. i wish i had read the",4,1,0,General,Bottoms,Shorts +1030,42,Amazing,"These are my first pair of mother denim and certainly not the last. they fit true to size. i am a 26 in designer denim such as j brand, paige, ag. i bought these in a size 26 and they fit perfectly. they hug my curves nicely. i am 5'3 so they bunch up just a little bit at the ankles which i can easily have altered, but honestly don't need it. the quality is great - nice denim material with a lot of stretch to it. i love my skinny jeans tight and these were exactly what i was looking for!",5,1,7,General,Bottoms,Jeans +1099,36,,As the other reviewer stated the dress is not lined and the fabric feels very cheap. i tried the sp as well and felt i could have gone down to the xsp. i like the style and coloring but given the price and lack of quality this is going back.,1,0,4,General Petite,Dresses,Dresses +829,56,This one falls short,"Saw this tunic on line and when it was immediately sold out i thought it had to be a winner. after several days of trolling on line the 2p was finally back in stock. now comes the disappointment. yes, the material is sheer but would be a nice weight for humid summer days. the front looked exactly like the model. cut with high side slits that truly made this a tunic. the back of this tunic is some sort of origami design. the fabric bunches out at the butt area. it's bad when you're standing and i",3,0,8,General Petite,Tops,Blouses +863,44,"Nice t, but not super soft","This shirt has beautiful coloring but the material wasn't as soft as i thought it would be. i was hoping they would be the super soft material, maybe washing them would help, but i didn't want to chance it so i returned them.",3,0,0,General,Tops,Knits +991,30,,"The skirt is totally see through unless you wear a slip. even though it has a built in slip, it is still see through. the problem is that the slip is made out of the same super thin polyester material as the outside skirt. if it wasn't see through i would keep it.",2,0,1,General,Bottoms,Skirts +936,49,Soooo soft!,This is a delightfully soft and fluffy sweater. i might have bought it if my store had the petite size. the white was pretty and a good weight (not too light or heavy) and comfortable. it would be fun to layer over various outfits. it did not seem to shed.,5,1,1,General Petite,Tops,Sweaters +936,50,Cozy and pretty but sheds a lot,"This is a beautiful and warm sweater, well cut and easy to dress up or down. the biggest problem is the extreme shedding which looks messy against darker clothing, especially against wool or cashmere winter coats.",3,0,1,General Petite,Tops,Sweaters +941,25,Perfect fall top!,I just ordered this top and i love it! it is a perfect top for fall days with a cute leather jacket.,5,1,0,General,Tops,Sweaters +1078,36,Cute dress but terrible design flaw,"I purchased this dress yesterday and it's cute and fits great, but the embroidery across the back ripped as soon as i moved my arms. it's really delicate and strains anytime you lift your arms overhead or forward. i'm keeping it anyway because the supersoft pretty slip that come with it is worth the sale price.",3,0,0,General Petite,Dresses,Dresses +863,51,,"I loved the color and the neckline was flattering. however, it would have fit me better in a petite size bc i am 5'3"" and a 32f. it fits slim so to fit in my bust it was too long. also didn't think the fabric was good quality for this price.",3,0,2,General,Tops,Knits +1078,36,Good fall dress,Nice dress to wear while seasons are transitioning,3,0,0,General Petite,Dresses,Dresses +1078,35,Little doll on the prarie,"Loved this dress online, but my small pettie stature made me looks like an orphan from the prairie.",2,0,0,General Petite,Dresses,Dresses +1078,36,Recommend this product!,"I got this online in a sale and couldn't wait to try it on at home! it's so cute, the fabric is a great print and the fit is swingy, which i love. i have a larger bust than waist and i'm 5'8"", 160 lbs. i ordered my normal size 10 and it fit perfectly. i can't wait to wear it with booties this fall!",5,1,0,General Petite,Dresses,Dresses +1078,32,"Pretty colors, poor fit","I loved the colors on this dress, but i don't like the way it fits. it is tight around the shoulders, but the rest of the dress is really big and has no shape",3,0,0,General Petite,Dresses,Dresses +936,44,Sheds,This cardigan is very soft and feminine. it looks nice on but it sheds everywhere. i decided to pass on it when it got white fur all over the other clothes in the fitting room. if you don't mind the shedding then i would recommend this sweater.,3,1,2,General Petite,Tops,Sweaters +984,57,Unique,"Just received and sorry to return. i am 5'9"" i wear a size 8 i ordered the m/l . it way really big and to wide",4,1,1,General Petite,Jackets,Jackets +1099,60,Cool for summer-adorable!,"It has been a long cold winter and spring...but it is going to get hot! +and this is a perfect dress for july. +i tried this on and did not feel the need for a slip or a cami, yes, it is lightweight, no, i would not consider it for work, but when it gets hot in the summer, i feel like this will be a perfect slip on and go dress for days or casual evenings. +i wear a 12, and the medium fit perfectly +i considered ordering the small, since i had some extra space, but again, it is going to get hot,",5,1,3,General Petite,Dresses,Dresses +1078,42,,Horrible fit. i do not understand why they but a aline dress with a skin non aline camisole under the dress.,1,0,26,General Petite,Dresses,Dresses +1078,34,Where is the slip!?,"Was excited to receive this dress as i got it at a great price on sale. the colors are great and it fits pretty good, but it came without a slip!! so disappointing to not receive the entire dress!! hence the 2 stars. may send it back for this reason.",2,0,0,General Petite,Dresses,Dresses +1078,38,"Voluminous, flow-y material but falls just right","I am usually an xsp or 0p but i ordered up one size (2p) due to previous reviews complaining about the tight slip. however i definitely did not need to size up. the slip is fine and the outer 'shell' is billowy and i should have stuck with my usual size! when i put it on i was not in love due to the dress being so roomy, but a second check in the mirror showed that the fabric / seams draped well and it overall looked pretty cute. it hits about 2 inches above my knees and therefore seems pretty p",4,1,1,General Petite,Dresses,Dresses +829,51,Sleeveless lab coat,"Tried this on in store with red ag ankle jeans and the only thing i could do was chuckle. it looked like a sleeveless lab coat or butchers coat. take your pick this styling was not for me. the fabric is nice not flimsy. you can see whatever pants your wearing underneath but i guess that's a moot point since it does have a substantial side slit. it does run tts. i'm 5'3ish, 118# and the size 2 fit ok. probably would have sized up to the 4 because a slight pull at the chest (34d-dd). in the end i",3,0,14,General Petite,Tops,Blouses +863,35,"Wonderful fit, flattering, easy care tee","I purchased all the colors of this wonderful tee after receiving the first. it's machine wash and dry, and they've all held up well through multiple washes so far. the neckline and fit is flattering for a larger bust, due to the ribbing, but would be great on a more athletic figure as well. the fabric is soft enough that the 3/4 sleeves don't bug me, like some other tops do. all the colors are great and you'll want more than one! true to size.",5,1,15,General,Tops,Knits +1078,39,Cute dress,This is a nice flowy dress that i plan to wear in the fall with long boots. i love how light it feels.,5,1,0,General Petite,Dresses,Dresses +1078,34,,"The pattern is very cute! from the front i liked it, but when i turn to the side, you can see just how voluminous it is. it ended up looking a bit tenty. if it had just a bit more shape it would be perfect. in the end, not the most flattering.",3,1,0,General Petite,Dresses,Dresses +941,52,Versitile tank,"Bought pink and cream colors on sale. arm holes on my usual size medium were large so bought smalls and like them a lot. i'm 5'9"" and longer front and back worked well. fabric weave nice weight and good for summer or cooler with sweater or jacket over it.",4,1,0,General,Tops,Sweaters +941,23,,Love this top. a little heavy but looks great with shorts or white jeans.,4,1,6,General,Tops,Sweaters +1078,40,Perfect fall dress,Dress is true to size. has a built in liner with thin straps so it is not see through. really cute on.,4,1,0,General Petite,Dresses,Dresses +1078,55,My new fave!,Most comfortable and great looking! i got complements from everyone! literally!,5,1,0,General Petite,Dresses,Dresses +888,64,Interesting,"This top runs large... an entire size. i am on the fence about it.. it is quite *stylish* and well made. it is fairly heavy and seems like it would be very warm. the burgundy color is nice. the issue i am having with it is the way the lower black arms are sewn in the upper arms. it just seems somewhat *odd*. overall though, it is very *forgiving*,especially with the black border around the entire bottom. it is the perfect top to showcase a great long necklace and it would be great with leggings",4,1,7,General,Tops,Knits +1126,37,Cutest cape!!!,"This arrived in my store this morning and it is as cute as it appears online!! i'm a curvy gal so i honestly wasn't feeling like this would look good on me. but it is thick and the fabric is sturdy so it lays on me exactly the way it does on the model! the fabric on the blue side almost has a vinyl feel to it...like it would be rainproof! the sherpa layer is super soft and in my opinion, even cuter than the blue side! the trim is all lined with a faux leather and the ties on each side can be adj",5,1,3,General Petite,Jackets,Outerwear +1078,37,Too billowy,I really loved this in the catalog. the fabric and details are very pretty. however it's a lot of fabric without much form. my husband suggested it for maternity (not realizing it has fitted slip). not for curvy/ hourglass. had to send it back.,2,0,0,General Petite,Dresses,Dresses +733,38,Comfy and cute,"This chemise is very pretty in person. when i tried it on, i was surprised to find that it looks more like a sundress than a chemise. the material is kind of thin, but if you wear a nude colored bra underneath it, it won't show. it looked super cute with a denim jacket on. i took my normal size s and it fits perfectly (for reference, i am 5'2"", 34b, 120lbs). i am very happy with this purchase, and i can't wear it as a chemise, a coverup, or a hot day sundress. highly recommended!",5,1,4,General Petite,Intimate,Lounge +1099,32,Cute summer dress,"I love the ease of style of this dress. perfect for summer and to wear for a cruise. the only problem with the dress is that it comes unlined. if it was lined, it'd be perfect. if you plan to wear this over swimwear, it's great. if not, make sure to wear neutral underwear since it is partly see through. would need to get a slip along with this dress. + +i'm 5' and got a s p. i could have easily gotten the xs. the dress hits in slightly lower on my thigh than what is seen on the model.",4,1,9,General Petite,Dresses,Dresses +936,31,Beautiful and high end!,"As soon as i tried on this cardigan i knew i had to have it. it takes your outfit to a glam and high end look. the fabric is oh so soft and i loved how it draped. the sleeves hang low and give you a vintage feel. i would give this a 5 star rating however, the downside to this cardigan is the shedding! it shed all over my black pants when i wore it, and on my friends too! :( i really went back and forth on returning this, but i think it's so beautiful i am keeping it. i am hoping over time the sh",4,1,11,General Petite,Tops,Sweaters +1078,34,Cute casual dress,Cute dress to throw on and go. fits pretty true to size except for the slip underneath. it's a little tight and i felt to short for the dress. i ended up wearing a full slip i had under it and that work great!,3,1,0,General Petite,Dresses,Dresses +1078,42,Very roomy,"I ordered this dress is in the yellow/orange. the colors are pretty, the pink detail is nice and that's about it. the slip underneath is a form fitting yellow cotton - no big deal. the dress itself runs very large and in an unflattering way. if i was pregnant, it was perfect. the material feels cheap to me and this, along with the roomy fit - is why this dress will be returned.",2,0,0,General Petite,Dresses,Dresses +733,39,Why rayon?,"Usually i'd wait for a sale on rayon loungewear but i would have gladly paid more if this was cotton or silk! despite the poor fabric, the design is light and beautiful with a high quality floral print that's distinctive and elegant. i can wear this with a thin strappy slip or a lacy cami bra or with a cardigan, jacket and lacy boy shorts. an retailer employee wore this chemise under a denim shirtdress and belted the whole outfit together--it was perfection. i purchased size m and my figure is 39-",4,1,1,General Petite,Intimate,Lounge +733,52,"Elegant, comfortable chemise","I love pj's and other assorted lounging pieces, and this one is exceptional. in fact, i plan to buy the pj bottoms made with the same fabric. i tried them both on in the store, and ultimately decided on the chemise because it is very special. +the fit is tts. fyi: 36c, short waist, broad shoulders, 5'3"" +i normally wear a m/l in a chemise, and i chose a m in this one. there is plenty of room, but it is more fitted to my shape as a chemise should be. the piece shows curves, without showing bumps",5,1,1,General Petite,Intimate,Lounge +941,30,Been watching this top,I was waiting for this top to go on sale because its one of those tops that you can probably only find the right weather to wear it once a year. so i was so happy i could order this ahead of time and pick it up in the store the same day!,5,1,1,General,Tops,Sweaters +1078,34,Great dress!,"I bought this dress for fall and will get a lot of wear out of it! the fit is perfect - loose, but structured. plan to pair with booties over the coming months!",5,1,0,General Petite,Dresses,Dresses +941,35,,"Love love love this in the pink! not as big a big of the off-white, but it's nice too.",5,1,0,General,Tops,Sweaters +1078,60,Cute and comfortable peasant dress,"I sized up on this one and i'm glad i did. the slip for this dress is very small and in my normal size i doubt it would've have even covered what needs to be covered for a dress like this too work. other than that, this swing dress is adorable, work appropriate and the pattern is sweet. even though i ordered a 12, instead of my usually 10, the sleeves were a bit constricting, but hit at the right spot. i see myself throwing this easy little number on a lot.",4,1,0,General Petite,Dresses,Dresses +941,45,,,5,1,0,General,Tops,Sweaters +941,53,Saundra tank,"The saundra tank is a very pretty and feminine knitted top. it is soft and comes in a very delicate pink color. +i took this on a recent trip and it paired well with capri tights and wedges. it was very comfortable to wear having a medium weight to it. the only issue that i had was that the cut below your arms is very deep and made it difficult to hide the side of your bra. it is a rather loose fit, so if you prefer something more form fitting, you might opt for a smaller size.",5,1,0,General,Tops,Sweaters +1078,25,Great dress!,"Nice loose-fitting dress to wear in the summer and to transition into the fall. i had no problem with the slip being too tight. 5'3'', 118lbs, and went with my normal size 2. it was loose through the body but sizing down would have made the dress too tight on my shoulders. it's great with boots or flats!",5,1,1,General Petite,Dresses,Dresses +1078,65,,"This is a beautiful dress. however, it looked awful on me. i ordered the medium and it was huge. also, i looked 7 months pregnant. not a good style for the short person.",1,0,0,General Petite,Dresses,Dresses +1078,63,Great but not for me.,The dress is adorable and has a very nice fabric and a slip that goes underneath. it was just too big for me even as a swing dress.,3,1,0,General Petite,Dresses,Dresses +936,31,Surprisingly cute!,"This is a surprisingly cute faux-fur coverup! it's much cuter in person than on the model. i will be wearing mine over a little black dress, for the holiday parties. it's very glam! perfect for going out. it's also very soft, snuggly, and comfy. most faux fur makes me look gigantic and wide, but this one looks a bit like a little capelet or shrug, and very flattering. it flares out nicely in the back too, and it has a pretty lace-knit stripe pattern on the back. it does shed a bit though. also,",5,1,10,General Petite,Tops,Sweaters +927,32,Color/fabric,This is totally different. great addition to my wardrobe!,5,1,0,General,Tops,Sweaters +840,33,Gorgeous!,"I ordered this shirt in the xl in both colors and i am in love! as a large chested lady, with a bit extra around the middle, this shirt is super flattering and perfect for everyday summer weather. i'm sure i will be wearing this all summer. yay retailer!",5,1,1,General Petite,Tops,Blouses +927,38,"Love this, with reservation","I love tunics, i love sweaters, i love turquoise. i ordered this in large, and it fits well, but the arms are very long. i don't like constantly pushing sleeves up so i wear it with the cuffs turned back. a previous reviewer commented on the length and another about the bagginess. i didn't have issues with either. it hits just above my knee (5'5"") and it is appropriately proportioned around the the body of the sweater. so what's my reservation? how the sweater is more delicate than it seems. the",4,1,0,General,Tops,Sweaters +927,31,Make sure you handwash or dry clean only,"Luckily i bought this on sale... i now see the instructions online say to hand wash, but i bought mine in the store. the instructions on the tag said to wash delicate in cold water and tumble dry. i washed it in cold water and it shrunk to doll size.",1,0,2,General,Tops,Sweaters +872,58,Classy cowlneck,"I saw this in the store and loved the feel of the fabric but did not want to pay full price. i was very happy when it went on sale. the top clings nicely without feeling tight. i got sp (5'5, 125)as i worried the neckline would slip off. fits perfectly. fabric has a very slight sheen. i just hope it holds up to washing and caution is needed as you may create pulls with jewelry if careless.",5,1,1,General Petite,Tops,Knits +840,46,"Prettier in person, runs a bit small",I ordered the xl in the green motif. the shirt is fitted through the body. i'm a pear-shape so it's tight around my hips. it's cut straight down. i'll need to wear this tucked in or belt it/pull it up a bit closer to my waistline so it's more comfortable. the colors & pattern in the green motif are prettier in person. i love orange roses & haven't found any shirt or dress with orange roses before so i kept it. i used my birthday discount to splurge on this. i think it's over-priced for what it i,4,1,8,General Petite,Tops,Blouses +444,33,Beach ready,"I love this tunic! perfect for the beach or by the pool! gorgeous design and even better in person! light weight, i am usually a small/medium and originally bought the small but ended up returning for the medium so i had a little more room up top for wearing over my swimsuit.",5,1,3,Initmates,Intimate,Swim +218,37,,"This is a beautiful suit. was looking for a one piece. i ordered online. it is definitely high quality, but i ended up returning it. the colors seemed much more muted than the picture shows. i loved the fit, just wasn't as striking as i expected.",3,0,3,Initmates,Intimate,Swim +927,55,Lovely sweater despite the differences,"This sweater is very nice. i bought it online recently with a discount on the discount and felt i got an amazing bargain. it is not larger than expected, but is not exactly the fit the model's picture implies. it is a roomier design. nonetheless, it is well-made and all wool, instead of that mystery mix of fibers that sometimes is the case with things described as ""wool"". the one thing that might be more discouraging to online buyers is that the color is not the lovely blue the picture depicts,",4,1,0,General,Tops,Sweaters +736,38,Skimpy,"I love the look of this bra, but unfortunately it is pretty skimpy and sheer. i need a little more padding to define my shape and i wish it had modesty padding. this wasn't for me so i returned it.",4,1,0,Initmates,Intimate,Intimates +872,53,Catchy towel,Great unique style top for casual or dress,5,1,0,General Petite,Tops,Knits +444,25,Super cute light weight beach cover up,"I bought this for a beach getaway with the purpose of using it as a beach cover up. it was great for this purpose! however, i also bought it thinking that i could use it as a dress during the summer. i probably won't be using it for purposes other than the beach as it is extremely light weight and a bit sheer. also, although it's hard to see it in the photo, there are slits on the side of the dress. all of these elements make it perfect for the beach when you want a breezy, light-weight dress bu",4,1,1,Initmates,Intimate,Swim +736,39,,"I really love the look and style of these. i am not a fan of thong underwear; definitely prefer these bikini or ""hipster"" styles, but sometimes it's hard to find them in attractive design. this pair is definitely attractive and i like how they fit and look a lot. i've only worn them once and they held up well for the day -- i often find lace can rip on the first wear, so i was wary. they did okay, but i do worry that they seem delicate enough i could accidentally stuck a thumb through it and rip",4,1,0,Initmates,Intimate,Intimates +872,34,Beautiful pleating adds a touch of elegance,"For my 5'9"", 36 c bust, hourglass frame, and 170 lbs, i got the medium and found it fit well. a bit snug but i didn't want to go to large and have it too loose at the top. my thoughts below: +__________ +pros: +- lots of stretch and comfortable due to being part modal. +- the pleating on either side on the shoulders just drapes so lovely with the cowlneck. it just gives it an edgy look that i really like. +- this ""grey"" has actually a minuscule houndstooth-like or checkboard-like appearance that's ha",5,1,6,General Petite,Tops,Knits +872,52,Heavier fabric & flattering,"I tried this on even though i usually am not interested in cowlneck tops. the fabric is heavier, so it is not good for hot weather. the fabric is a weave of lighter and darker colors - you can see if you zoom in, so it has an interesting texture. very flattering because it is fitted and not boxy.",5,1,1,General Petite,Tops,Knits +838,44,Perfection,"Thanks to the previous reviewer who noted the details and size of the blouse, i purchased this blouse. it's true to size, size small fit me perfectly (i'm 34b, 26 waist, 36 hips), and it even fit my muscular arms and broad shoulders perfectly. the color is very rich, a wine color. some of the jars of jam have berries on it, and of course, the tassels have spoons at the end. the neckline is so perfect, feminine yet appropriate for work. how cute is that? it is a silky material and flows perfectly",5,1,0,General,Tops,Blouses +103,52,Shimmer in silver/grey - size down,"As in most ribbed camis, this stretches out - so size down. it is very pretty/delicate (e.g. fabric is thin) and the silver/grey color has metalic thread running through. plan to pair it with an retailer grey bolero sweater for the holidays.",4,1,1,Initmates,Intimate,Layering +829,35,Maternity blouse,"I was planning on wearing this at the office but it looks like a maternity blouse. not flattering at all. i loved the concept.. silky, loose fitting, professional.. but they didn't succeed. its a big mess. return.",2,0,0,General Petite,Tops,Blouses +859,34,A very cute cropped topper,"This is an adorable topper for all these ballgowns when you have no top. that said, it was a lot shorter on me than i expected. i attribute this to the fact that i have a chest. the fit is true to size, but while not showing much tightness around the chest to any gape in the buttons in the back, it became more of a crop top. i have been needing a short topper so i'm definitely keeping this. the back button detail is adorable. the lace for me is soft and not stratchy or irritating but i only trie",5,1,4,General,Tops,Knits +1078,53,Great vintage pattern but what were they thinking,"Oh such a classic retailer look for summer! a vintage pattern on a crisp cotton fabric. i was immediately drawn to it. but wait- there is a sort of wrap around tie at the waist, creating the look of an apron. yes. it looks like one is wearing a full apron. or scrub dress. +why?? this would have been sooo much better as a simple shift or a skirt/blouse combo.",2,0,5,General Petite,Dresses,Dresses +942,53,Perfect weight,"While there are a countless number of ""winter-white wear-with everything"" sweaters, this is the best one i have seen yet. it is a substantial weight without being coat-like. it is cozy and can be crossed over in front to wrap if desired and it is not itchy as it is cotton. and it's hand washable! i would say it' runs true to size. i wear a 0-2 and petite ( 5 ft 2 in). i purchased the xs but not in petite becasue i wanted the length. it fits fine in the shoulders but the sleeves hit me at my knuc",5,1,8,General Petite,Tops,Sweaters +1078,75,More cons than pros,"The material is adorable and if it was available in a blouse with sleeves, i would buy in a minute. we have a pool and i thought it would be cute to wear while entertaining. now the cons, i am long waisted and this strange tie knotted high under the bustline giving an odd lumpy look. it runs short and i can't imagine who thought this design was a good idea. there were no reviews when i ordered. i am learning to try it on in the store and/or read the reviews before investing. i would say go up a",2,0,1,General Petite,Dresses,Dresses +940,34,"Warm, soft, pretty.... what's not to love?","This sweater is pretty, fits tts, feels soft against the skin and has a good weight to it so cami is absolutely not needed. i particularly like the buttons on the side. you could unbutton to have the sweater feel more swingy and show more of the underlayer. the design in the back is simple and flattering for all figures, i think. this shade of gray is also appealing to me as it's not too light or dark and has a hint of periwinkle undertone to it. the sweater is on the shorter side but i do think",4,1,2,General,Tops,Sweaters +829,51,,Beautiful blouse - the material is great. long enough to wear over leggings but i've also worn with my flare jeans. somewhat fitted at the top and then drapes out in a gorgeous way. one of my new favorites.,5,1,0,General Petite,Tops,Blouses +940,49,Nice!,The sweater had a square fit it has a chiffon ruffle at the bottom which i didn't see in the picture.,5,1,0,General,Tops,Sweaters +829,57,,,5,1,0,General Petite,Tops,Blouses +829,62,Beautiful!,Absolutely love this in blue. the cut and fit are flowy while still having a flattering shape. the colors and pattern are accurate on screen - vibrant and rich. the tie front is a pretty detail allowing the top to feel a little dressy. very happy with this purchase!,5,1,1,General Petite,Tops,Blouses +829,31,Maeve has done it again,"Maeve has done it again with a fabulous blouse. i bought in the blue motif and the colors are so wonderfully fall. the length is great for skinny jeans and leggings. loved that it covered the rear end as well. i am 5'5"", 135lbs, curvy/athletic frame, 34c and the size small fit well.",5,1,7,General Petite,Tops,Blouses +661,64,I'm wearing it as a top!,"I bought this in the store so i didn't know that it was actually a sleep chemise. i kind of wondered if it was supposed to be a super-short dress but the salesgirl said that it was a top so i tried it on. the price is shocking but i'm a teacher and this month (july) teachers get 15% off so that helped a little bit. when i tried it on, i absolutely loved it. maybe i look like a cupcake but i'm a very happy cupcake with tassels dangling from my sleeves! who doesn't love tassels?! this is just a ve",5,1,8,General Petite,Intimate,Lounge +829,39,Long in the back,"Another really cute iop (i tried on the blue), but if you are short, you definitely ned a petite size. sofy fabric, and pretty pattern, like hte tie nexk. too bad they sold out in my size...",4,1,1,General Petite,Tops,Blouses +1078,39,"Cute, lots of fabric","I tried the regular szie in store, like the cut, need petite though (too long and a lot of fabric) - i am 5'1.5"" and 115lbs... color, unfortunatly, looke aweful on my skin tone and washed me out. would need to be more red, the striping washed out the color nad dind't look flattering on me. the cut did, however. + +so, if you ahge a good hur to your skin, good dress for you, if you are palelike me, i don't recommend... + +ps love hte tie waist. picture not asflattering as on person.",4,1,3,General Petite,Dresses,Dresses +829,36,Adorable top!,"I rarely write reviews, but this one deserves one. this top is completely, utterly, adorable! it flows so beautifully, which makes it perfect to wear with leggings/skinny jeans. i wore mine with a blazer for a work holiday party, and i received so many compliments. this top makes you feel so feminine and pretty. i love the maeve brand, and this is certainly no exception! i'd love to get it in multiple colors!",5,1,0,General Petite,Tops,Blouses +1078,33,Great dress for summer,"This dress is gorgeous. i took the advice of a previous reviewer and tried one size down, it fit perfectly. i am usually between a 10 or 8 in retailer dresses depending on the cut, the size 8 in this was great. i am near the small chested side a 36b and there was still plenty of room in the top. the swimmers on the dress are embroidered and i didn't really notice until i saw the inside. beautiful detail. the dress is a lightweight cotton and great for warm weather. its even more flattering to be a",5,1,0,General Petite,Dresses,Dresses +661,24,Beautiful yet runs large,"I really loved the material and the feel of this item, however it does run very large. even though it is meant to be loungewear it is great as a top with skinny jeans or leggings.",4,1,1,General Petite,Intimate,Lounge +871,36,,"The shape is flattering on my postpartum body. even though the material is stretchy cotton and the shirt fits well across my shoulders and chest, the swing shape hides my stomach area. the material doesn't seem particularly breathable, so you might want to avoid wearing it in really hot, humid weather; but for my summers in the pacific northwest, it'll be fine.",5,1,1,General,Tops,Knits +865,37,Not the best fit,"The sweater fits a bit awkward in the front. it draped more than i would have liked. also, the transition from the stripes to the solid gray felt non cohesive because of the stitching. returned the item.",3,0,1,General Petite,Tops,Knits +1078,22,"Beautiful dress, just not for me","This dress is really gorgeous, really fun and beautifully made. i'm typically an 8petite (140lbs, 5'4"", 34dd) so i got this in an 8 and it was huge on me. there was so much extra room in the chest and the back and it was much too long for me. even if i sized down, it feels a little age inappropriate for me. i'm 21, and it felt very conservative and unflattering. i think this dress is excellent, just not for me.",3,1,6,General Petite,Dresses,Dresses +829,24,Love the fit!,I adore this blouse. i bought it in the blue at my local store and ordered the white! so cute. be careful- i dried my blue one (i openly did not read the care instructions..haha) and it shrunk a little. still beautiful though!,5,1,1,General Petite,Tops,Blouses +1078,29,"Beautiful dress, terrible zipper","I loved the look of the dress. it's a very flattering design. however, i absolutely hate the side zipper. every time i have worn it, the zipper will get stuck and it is a struggle to get it up. the side tie is a very cute touch, but you definitely have to figure out the best way to tie it, so you don't have a huge bump of fabric on your back. having said all this, i still did get a lot of compliments from this dress. i do wish the dress had a lining.",3,1,0,General,Dresses,Dresses +1078,23,The most darling little dress!,"I bought this dress as soon as i received the retailer catalogue. i rushed to the store because i absolutely fell in love with it. when i tried it on, i went a complete size down. i'm usually an 8, but i snagged this beauty in a 6. the top part really does run larger, so unless you have really broad shoulders, you'll need to size down. the sleeves hit my arms at a nice place, and the little tie in the front is awesome, because not only is it an interesting detail, it can be loosened or tightened d",5,1,3,General,Dresses,Dresses +829,53,Great blouse!,"This blouse combines two things i love - swing tops and bows. just received this and am very pleased. the blue version is very pretty. i recently purchased another top by the same brand and ordered a 6. for this, i ordered a small and am glad i did. i would suggest ordering your regular size (the top is fitted, the bottom is very fluid).",5,1,1,General Petite,Tops,Blouses +829,35,Cute top,"They were sold out of the medium that i usually wear in tops so i got a petite large hoping that would work. it obviously isn't the ideal fit but it will manage. it's very cute, but the colors aren't as vibrant as they looked in the pictures. for example the red in the floral print looks more like a rust color in person. but i do like it and plan on keeping it. will look cute with dark jeans and brown boots.",4,1,0,General,Tops,Blouses +829,40,Great top,This is a great top. easy breezy and perfect for fall in miami. perfect top for spring too. love the whimsical pattern. a great addition to any wardrobe.,5,1,1,General,Tops,Blouses +1078,25,Adorable!!!,"Ok...so after reading the other reviews, i'm sad to say i rated this as ""runs small"" only because i usually buy one or two sizes smaller in maeve than i settled on with this dress. it's actually an adorable dress but i'm sure you have to have the right figure. i don't think any one woman has the same figure as another and this dress is made for someone with a very definite hourglass figure. i have a large chest, a moderate middle and large hips. i really loved both sizes but i chose to size up b",4,1,7,General,Dresses,Dresses +829,62,Pretty in blue,"I ordered this top in xs and blue, its subtle but pretty on, as the style gives it a boost. it is a bit snug in the shoulders (cut a little snug in armpit?) but i would not want it larger. it does not affect the appearance, is not uncomfortable, just noticeable when moving arms around. nice fall top, want to try with blue or white jeans and boots.",4,1,3,General,Tops,Blouses +1078,49,Cute summer dress,Really cute fun print. nice summer dress..,5,1,0,General,Dresses,Dresses +1078,40,"Pretty print, strange fit","Totally bummed. the pretty print doesn't outweigh the very odd fit of this dress. makes you look really top heavy and even the print, which looks so cute online, looks muddled in person. sadly, went right back.",1,0,6,General,Dresses,Dresses +1081,41,Disappointing,"I really liked this dress in pictures online. i wanted to wear it to work on casual fridays. everything about this dress was a disappointment, especially at this price point. the fit was weird: tight in some places, too loose in others (i'm usually xs or s, i ordered this one is s). it's made out of a fairly thick and warm material, yet the neck area of the dress is more exposed than it appears in pictures, especially in the back, making it awkward to have this very warm dress with neck, upper b",2,0,3,General Petite,Dresses,Dresses +1078,26,Fun day dress,"I have to agree with another poster who was dissapointed about the dress not being lined....i mean, any dress over $50 should at least be lined! but, overall this is an adorable dress, very flattering and so fun for summer! if it were lined i would have purchased, but that's all personal preference as i cannot stand having to wear a slip!",4,1,2,General,Dresses,Dresses +942,42,"Lovely, flattering, thick sweater","I love this sweater. i found it in the sale section a few weeks ago but wasn't sure if it would be too bulky. it had a dark smudge on the collar left from someone or something. i thought maybe it had been left behind by others for that reason because the quality was so nice. thankfully, i washed it and the smudge came out. + + +i live in houston, tx and don't need to wear wool or cashmere sweaters for warmth. this is mostly cotton. it is well made. the sleeves were longer on me than the model,",5,1,0,General Petite,Tops,Sweaters +942,57,Stiff and heavy,I have been looking for a basic ivory sweater. i waited for this one to go on sale. the style is cute but the sweater itself is very stiff and heavy. unfortunately i decided to return it.,3,0,1,General Petite,Tops,Sweaters +661,43,Runs way too big,I really wanted to love this piece but it was very large. i'm 5'2 and ordered xs/s and i have return due to size.,1,0,0,General Petite,Intimate,Lounge +829,58,Love this blouse!,I have gotten so many compliments on this blouse! material is very comfortable and the fit is great!,5,1,3,General,Tops,Blouses +1078,57,Cute dress,"This dress is cute and i will wear it to work. i only decided to keep it because i got the sale price and an additional 40 percent off. the print is cute, but a little bit odd, it's a swimmer in a cap. the tie is fun.",3,1,1,General,Dresses,Dresses +829,49,"Gorgeous print, cut small in bust","I loved the print on this top in navy from the picture, and loved it even more in person. it is gorgeous, and the top feels high quality. that said, as usual with maeve clothing it fit me strangely. i am curvy with a small upper body (34 d) but larger bust, and maeve tops are almost always too tight in the bust and too flowy around the middle , which creates a pregnant look on me at least. i feel their fit model must be small busted, so for small busted ladies this top would be lovely. i always",4,1,0,General,Tops,Blouses +829,45,Great top,Love everything about the top. it's very versatile wear by itself or with a cute jacket. it's a great staple to have in your closet.,5,1,1,General,Tops,Blouses +1078,62,Charming and delightful!,"This dress is the opitome of summer! day or night, running errands during the day to a casual night out this dress will be that go to favorite. i feel it runs small on the top, i am large busted and i sized up for this reason and it still could be roomier...i wear a size 10 on top and for referance i got the 12. i will keep it as it is not uncomfortable but for a drees that lends to a drape on top i wish they would have made it roomier....imhave never had this issue with mauve as it is one of my",5,1,0,General,Dresses,Dresses +829,28,Cute top!,"I love the print on this. love. and the fit, for a swing blouse, was super flattering! typically i haven't found that to be true, but this one is so nice! i loved it so much, but i just couldn't find a ton of outfits to wear with such a unique piece. i have been trying to slim my closet so i did return this, but perhaps would purchase it on sale (to justify wearing it less). i typically wear a 4 in tops and dresses and took an xs.",5,1,1,General,Tops,Blouses +859,45,"Wow, beautiful!","This top is absolutely gorgeous!! i ordered in xs and unfortunately could not button it, too tight. for reference i am 5-3"", 120 lbs, 34b. i will definately be exchanging it for a size s, i just love how classy and glamorous this top is. i do wish it were a few inches longer, but it still looks so nice. i agree with other reviewer how nice it will go over a cocktail dress. hoping the size s has a better fit on me!",5,1,2,General,Tops,Knits +808,52,Sunday tunic,I love this! very comfortable & cute dress. true to size & picture. can't wait to wear it!,5,1,1,Initmates,Intimate,Lounge +1094,39,Flouncy,"What a fun print to have on a dress, let alone a sweet off white lace confection like this one. i really love the design and all the nice high quality touches. because i am busty and there is no stretch, i sized up. my only wish was that the look of the skirt wasn't so innocent..the flounce looks a bit juvenile, especially at my age. i'll try to figure out how to flatten it , maybe wet the skirts like a regency lady ;) here are my stats since i purchased 12p: 5'3"" 145# 36dd.",5,1,0,General Petite,Dresses,Dresses +661,39,,"Ig and the first reviewer convinced me to buy this top. it was styled so beautifully with jeans and shorts on two different retailer associates, i wanted to see if i could pull it off too. unfortunately my body type and shortness makes the it look like i'm wearing short peasant skirt as a top. really disappointed since the top is soft, beautiful, vibrant silk! maybe i will keep since i'm losing weight and will try it on again. generally i wear size m/l and i'm 5'3"" 135# 38-28-35. purchased this c",5,1,6,General Petite,Intimate,Lounge +940,40,,,5,1,0,General,Tops,Sweaters +829,45,Beautiful color,The color is just beautiful. i've gotten so many compliments!,4,1,0,General,Tops,Blouses +1078,33,Different and fun,"I really liked this dress online and i loved it in person. the print is different, the waist is synched, skirt is full. has a very feminine shape. definitely a special piece. runs large. i'm usually a 6 in dresses and an 8 in skirts. i'm 5-5"" 136#s, 34c and then 6 was noticeably too big. size 4 fit perfect (and i'm no size 4). no sleeves will make if easy to add a denim jacket or a cardigan. it hits approx 3-4"" above the knees, but has a conservative high neckline and back is covered. good quali",5,1,1,General,Dresses,Dresses +942,45,80's sweater,Remember those cable-knot cotton sweaters that were popular in the eighties?! that's exactly what this sweater is. everywhere your body bends like elbows is emphasized by the fact that cotton does not bounce back like other finer fabrics like wool and cashmere. i'll pass on this!,2,0,6,General Petite,Tops,Sweaters +1081,47,Stylish and comfortable,"The fabric of this dress is warm, soft, and comfortable. it is versatile and can be worn at both work or out for a casual evening date. it is cute without a belt but, i prefer one just to give it more shape. i plan to wear it often this season. i am 34b/28/37 and purchased a size small.",5,1,5,General Petite,Dresses,Dresses +1078,44,Pretty in pink,"I made a visit to the store specifically to try on this dress and it was a disappointment for me. i tried on size 6 regular (i'm 34b, 26 waist, 36 hips) and i could not zip the dress up half way. the zipper is on the side, but it's more to the back which i have to stretch my arms all the way back to reach it. it stopped at my waist and was too tight for me to zip up anymore. i tried on an 8 regular and the entire dress was huge. (i'm 34b, 26 waist, 36 hips). i like the regular size because the l",3,1,1,General,Dresses,Dresses +829,65,,"I love this top!!! it is soft, flattering, and beautifully cut/designed. i get so many compliments every time i wear it. i have the blue and the green, and wish they had the white in my size. beautifully elegant and can be dressed up or down. best purchase i ever made at retailer!!!",5,1,1,General,Tops,Blouses +1078,48,Great summer dress,I love this dress. the pattern is super cute and looks great with a jean jacket and comfy sandals or white sneakers. tons of compliments!!,5,1,1,General,Dresses,Dresses +1078,35,"Great print, awkward cut","I tried this dress on in the store, prepared to buy this lovely piece. i feel that it should have been a few inches longer, it would look more proportionate. next, the tie is really difficult to place, but it creates some great detail to the front and back. it wrinkles easily, i can see it would need to be ironed before each wear. lastly it is not lined, what a bummer, at least the skirt could be lined. but, it does have pockets, that is sweet.",3,0,3,General,Dresses,Dresses +1078,35,Awesome dress!,"I am so crazy about this dress. i got it in the mail today and just love it! no, it's not lined but it's not see through so no big deal. i was afraid the tie would add bulk but i look very thin. i just need to call for a price adjustment since i payed full price!",5,1,0,General,Dresses,Dresses +1059,36,Unique trousers,"I am 5'0"", 109lbs, and the 00 petite fit perfectly. the length was great too. as one reader noted, the zipper can be a little tricky but dont let that deter you from getting a pair of these sweet duds. it stretchs out a little as the day goes by but that is bearable. it has a hint of pink to it too. can be dressed up for the office or dressed down.",5,1,1,General Petite,Bottoms,Pants +1081,41,"Runs big, a bit sloppy looking and overpriced.","I was thoroughly underwhelmed. it did not hang well, and the fit seemed off. the tie waist just sort of hung there. i could have sized down, but i didn't even want to bother. it was pretty boring and flimsy for $138.",2,0,0,General Petite,Dresses,Dresses +1192,57,"Great fit, beautiful color",Love this chinos. they fit tts and the blue is vibrant. bought them in pink too. for reference i am 5&amp;amp;#39;5&amp;amp;quot; and weigh 122 lbs and bought size 27. the fit is a bit slouchy much like in the photos.,5,1,0,General,Bottoms,Pants +926,39,Warm and nice,"I read all reviews and i decided to try as the price was great. first of all i am 5'6"" 145 lbs, athletic build (not skinny but have muscles). the sweater fits great, just like glove, it does not make me look fat. the quality is great,sweater is warm, cozy and well-made. i am not sure about color as it's brighter as it shown. it is not quite coral, it's a little bit darker which will make it difficult to match it with. the sleeves run small so if you are taller then me just keep it in mind. th sw",3,1,0,General,Tops,Sweaters +1042,67,Love the fit,"I was fortunate to order the perfect size the first time. i am 5'3"" and 125 and ordered the size 4. it is a great fit. these lightweight pants are super cute and i especially love the way they are cut to dip a bit lower (not asymmetrical, just talking about the drape) on the inside hem so outside hem is perky and the bottom looks wide and is flattering. these zip up the back and the back lays flat which is also flattering. i love the look of the fabric so if i have a complaint it's that for the",5,1,6,General,Bottoms,Pants +1078,41,,,4,0,0,General,Dresses,Dresses +1059,56,"Cute, but hate the side zipper","I love charlie trousers. i must have 8 pair. i sometimes have bought a particular style in every color. that being said, i love these for the fabric, and general overall fit. pattern is on trend in color and versatility. i wore them out on saturday to a casual restaurant, and today at work with a business like blouse and cardigan. but, i hate the side zip. i generally hate invisible zippers period, because they tend to get caught at seams, and i have had them break on other garments. this one is",4,1,1,General Petite,Bottoms,Pants +1081,29,"Perfect fit, forgiving belly","This dress is so soft, and fits like a dream. i'm a new mom and the tie perfectly masks what's left of my mummy tummy, while still helping me feel stylish for fall!",5,1,5,General Petite,Dresses,Dresses +1059,49,So cute!,"Loved these in the store but the 00 was sold out everywhere and i noticed the fabric was very stretchy. i bought the 0 petite online and was worried about the length. they fit great. i'm 5'5"" .",5,1,1,General Petite,Bottoms,Pants +692,39,,"Perfect. easy , effortlessly beautiful design and just my favorite pajama ever. i'm not my ideal weight right now and these make me feel attractive again.love!",5,1,1,Initmates,Intimate,Sleep +347,29,Worth the splurge,"This is different from any bra i've had before, in a good way. the lace over the front is really beautiful, and no annoying straps means it's comfortable! fit and support are both great. i didn't notice that it was silk when i ordered, so it was a nice surprise to open something so luxe and elegant. i wasn't expecting an underwire, either, based on the s-m-l sizing, but it has one.",5,1,0,Initmates,Intimate,Intimates +969,83,Beautiful basic for rainy days,"I ordered the sapphire.............it is simply beautiful! +love love love. +superior hunter style and quality which never disappoints!",5,1,0,General Petite,Jackets,Jackets +1078,41,Dainty and darling,"I love the dress overall, however, found it a tad snug in the bust area. overall, a beautiful dress to own.",4,1,7,General,Dresses,Dresses +926,49,Wonderful sweater,"I like the color and design of the pullover sweater, so i bought it as a christmas gift for myself. it arrives almost the same as the picture. the only complain i have is that the size is a little larger than i expected. however it still look good on me,",5,1,2,General,Tops,Sweaters +1059,48,,"Got charlie trousers last year in a different print in my usual size 4 (5'2"", 115#). they initially fit perfectly but stretched out in the thighs and waist and now are loose. this time i bought a size smaller (size 2). they were snug but i felt them stretch during the first wear and they fit fine now. i recommend sizing down because they stretch out. love the print for summer (i love anything beachy) and had to have it! nice comfortable material which isn't hot for summer. got the regular si",4,1,0,General Petite,Bottoms,Pants +917,46,Super cool top,"This top looks just like you see it on the website - design is super cool and color is awesome, almost acid washed in areas. but know that this top is super, super thin and will not provide any warmth. i wish it were a bit thicker in fabric, it would have been perfect for the cool fall and going into winter especially for the price. the medium in this one fit me better than the small. i am 5'9 and 140 lbs.",4,1,0,General,Tops,Fine gauge +1082,51,Perfect dress,Love this dress! it can be worn in cold or warm weather with tights and boots or sandals and bare legs. the fit is roomy and a little longer in back. it washes nicely without losing length.,5,1,0,General,Dresses,Dresses +1059,27,Adorable,"I have never purchased printed pants before, but i was so smitten with the cute little shells that i had to try them on. i was impressed with the fabric, which has some thickness to it but will still be perfect for summer. i also have athletic calves and unlike other cartonnier pants i've tried, i had no trouble getting these over my legs! win win! i'm usually a size 8 and while it was fitted (not loose like on the model) i know they will stretch. being 5'4'' i'm just on the boarder of having mo",5,1,4,General Petite,Bottoms,Pants +917,66,"Runs big, size down","In the quest to find comfy, cute, casual tops i took a change on this one. it's cute but quite oversized. it just overwhelmed me. i ordered the large and generally wear medium or large so you can safely size down at least a size or two and still get the fit shown on the model. the style and color just didn't suit my coloring or body type, but i still recommend because it's comfortable and different enough to be a nice addition to someone else's closet.",4,1,0,General,Tops,Fine gauge +1059,28,Will order more in different colors!,"I am 5'5 about 110 lbs and the size 0 regular fits me well. sometimes i order petite, but the regular fit me just right. they are higher waisted than most pants i wear, but they are completely adorable and comfortable to boot. love the pattern. the sturdy quality is tangible. definitely going to order more of these pants in different patterns as they become available.",5,1,0,General Petite,Bottoms,Pants +926,40,Odd sleeves,"The design of this sweater is odd. it made me feel very ""round"" when i put it on. the sleeves were wide. the other reviewers were correct in saying that it's a thick sweater, which i thought i'd like. the torso was slimmer and longer than i expected. it really was the odd design of the sleeves that made me not like this sweater.",2,0,1,General,Tops,Sweaters +1081,60,Great to wear over tights,I love this dress which for me will double as tunic over leggings/tights. the fabric is very comfortable for fall into winter for southern california and looks super cute with booties or boots. this will be a mainstay of my wardrobe.,5,1,2,General Petite,Dresses,Dresses +1078,60,Adorable girly dress,"I love this dress. it is exactly my style, which is probably why i love it: girly, frilly, flowy... i love how much material it has. it flows and twirls in such a nice way because of the amount of fabric. it's the right length that the amount of material is not overwhelming - i'm 5'5"" and it hits just above my knees. i am currently 6 months pregnant, and it's plenty roomy to fit now, and will also mask the post-baby belly this summer. the only 2 cons, and the other reviewers touched on these as",5,1,5,General,Dresses,Dresses +1078,39,Beautiful and unique,"Great style and the color, can be dressed up or down. i love it!",5,1,1,General,Dresses,Dresses +1192,45,,Wish i would have bought them in every color. love,5,1,0,General,Bottoms,Pants +1059,52,Lots of compliments!,"I wore these with high heels to a formal gathering. i received many compliments. perfect for summer. you can dress them up with heels, or wear flats or sandals and be casual. i have a pear shape, so i think they fit best for my body type. love them!",5,1,0,General Petite,Bottoms,Pants +1033,60,Dark black interesting jeans!,"Love these pants. it's hard to get really dark dark black jeans with a little stretch, and these are perfect. i also like the cut as a bit of a change from skin tight leggings. and the fabric is super cool, like a lightweight brocade denim. i get compliments every time i wear them.",5,1,0,General,Bottoms,Jeans +1059,37,,I love these pants! they fit perfectly and are great for casual days at work. great quality too! love!!!,5,1,0,General Petite,Bottoms,Pants +1192,48,Reliable,"I've been buying pilcro for years. they are good quality, comfortable and wear well. my only complaint is (and this a general complaint of all pants today) is that these are cropped. i have a 35"" inseam. these stop well above my ankle but i love the color and the general fit. i'm used to having most of my pants (even those labelled tall) be too short so i don't mind it too much. i feel as though it runs a little big due to how much stretching that happens as you wear them. it's pretty much a tra",4,1,0,General,Bottoms,Pants +1078,36,Great transition dress,"Very charming, well made and comfortable. it is a heavier material with a slip so it's a great spring dress if you have cooler days but i could see in the summer if you have 80f + temps it could be a little warm. i have a 34c/d chest and i didn't find it too snug like the other reviewer. pretty tts for maeve.",4,1,4,General Petite,Dresses,Dresses +1059,42,"Lovely pants, but the strecth out a great deal","I really like the pattern and the cut of these pants. the fabric is nice, too. however, i was disappointed how much they stretched out the first (and only) time i wore them. i am 5'6"" and about 150 lbs. i ordered size 10; i am going to try to exchange them for a size 8 since they stretched so much.",3,1,0,General Petite,Bottoms,Pants +1078,39,Does really run large,"I found this dress to run large (like the other reviewers have mentioned). the quality is really nice, and the sweater fabric is a nice touch. it hit me right above the knee, and i an 5'5"". it is a purplish pink (as pictured). if it fits you properly, you will be pleased with the quality, color and unique style.",4,0,0,General Petite,Dresses,Dresses +926,44,"Pretty color, good quality","Lovely sweater, good quality fabric, pretty color. +as the reviewer say, it is very thick wool pile, if warm is not what you're looking for, you may want to think twice.",5,1,2,General,Tops,Sweaters +926,54,Vintage appeal in a soft chunky knit,"This 1960s aprã¨s-ski style sweater is made of an amazingly soft pure wool in a color that is a touch brighter and maybe even a bit more coral pink than the online photo looks to me. there is a large button under the collar that shows if you stand it up. seems to be of a very high quality, comparable to vintage hand-knit sweaters. +. +it is very chunky and warm, and i would recommend taking a size up for a looser fit. i'm 5'2"", 33-25-37, narrow shoulders, and otth the xs and s fit me well, running",5,1,4,General,Tops,Sweaters +1081,47,Fantastic dress!,"This simple dress will turn heads. it fits to the body, hugging just in the right spots. i love this dress! it is soft and feels amazing on. you can adjust the tie in the front. i purchased the copper color, but i have to say that is much more brown to me than copper. a dark brown. i still think the dress is adorable. looks cute with booties or knee high boots. winner!",5,1,5,General Petite,Dresses,Dresses +1192,35,,I have been searching for these pants my whole life. i have them in several colors. i wear the moss most often. i'd recommend your normal size or size down if in between sizes. they stretch a bit as you wear them. one other thing- after being washed and dried the color has lightened significantly.,5,1,2,General,Bottoms,Pants +986,35,Beautiful kimono,"I love this kimono, it's so soft, very beautiful and delicate. so flowy just like picture... gives your outfit such a beautiful addition!",5,1,0,General,Jackets,Jackets +1020,30,Looks can be deceiving...,"I loved how the skirt looked on the model, but when i tried in on it had no shape on me. i usually wear a size 6 and received a size 4 which was large on me. also, the material feels rough which i was not expecting as it is advertised as a silk skirt. i was really looking forward to wearing this skirt but it is just not i thought it was - i expect better quality from retailer.",3,0,0,General,Bottoms,Skirts +1078,29,So cute and comfortable!,"I'm 5'5"" and got the m. i thought i'd need the petite but i decided to try on the regular m in the store and the length was fine (mid calf). i gave a 3 for quality though because all the ones in my store were tearing in the back where the shoulders meet the back. i bought it anyway because it looked like an easy fix and it was so darn cute and comfortable on!",4,1,2,General,Dresses,Dresses +1037,46,Great pants,"I was so excited to see that these were on sale post holidays. love the style and the fit. my only disappointment was that they don't have as much stretch as i thought they would (i wrote above that it ""runs small"" but if it had more stretch then the sizing would be ok). for reference i'm 5'5 and 10. i usually wear 25 in pilcro pants but these felt tighter. i would exchange for a 26 but they're sold out unfortunately!",5,1,0,General Petite,Bottoms,Jeans +1094,28,So flattering! i bought 2,"I am 5'3"" and 115 lbs. i ordered 2 on a whim and i'm so happy i did because they're so flattering.",4,1,0,General,Dresses,Dresses +933,49,Perfect fall piece,This is a gorgeous jacket! love the softness and the style is unique and fresh. the color is going to keep me cheered through the winter. this will look great with a scarf and leggings.,5,1,1,General,Tops,Sweaters +975,32,So beautiful! :),"The photos shown here really do not do this bomber jacket justice! the colors of the embroidery are much deeper and richer in person! it is very well made, having no loose threads whatsoever. the retailer store where i bought mine featured this jacket over an ivory color lace blouse and it looked much more stunning than over the darker color that they show it here with. it does run true to size as the other reviewer mentioned too. i took my usual size large. i would say that if you're betwe",5,1,13,General Petite,Jackets,Jackets +98,32,Great for summer,I bought this to wear with a skirt that i wanted to dress down - i needed something that was long enough to be able to tuck it in without having that awkward line. its a great fit.,5,1,0,Initmates,Intimate,Intimates +1037,37,,Not for the curvy women. fit in the waist but bunched around the crotch,3,1,0,General Petite,Bottoms,Jeans +933,41,Gorgeous with a great fit,I love this flattering and comfortable jacket- it has a nice stretch and the color is out of this world. i think it will pack a big punch this fall.,5,1,0,General,Tops,Sweaters +936,38,Another win,"I stopped into retailer the other day for some ""window"" shopping and as soon as i saw this cardigan, it was love and i had to try it on. the sleeves run long on me but i'm on the shorter side so it was to be expected. everything else about this cardigan is amazing. i ran errands yesterday and it was the perfect weight for our cooler autumn weather. love this cardigan.",5,1,14,General Petite,Tops,Sweaters +936,40,Favorite,"Oh my. so soft, so delicious, i love this sweater. + +absolutely my new favorite. buy this. you won't be disappointed. the neck is soft and not irritating at all like the other reviewer said. +love love. +look how big the hood is if you so want.",5,1,8,General Petite,Tops,Sweaters +1094,26,Detail ripped,"I got my normal size and unfortunately the moment i tried it on the details on both shoulders ripped. the dress fit fine and i basically have no boobs so i don't think it was a case of it being too small. i guess it just wasn't reinforced enough. there was also a miss-stitch in the shoulder on the back which causes the back of the dress to bunch funnily. lastly, there's a slip on the inside which i don't think was necessary. it hugs tight to the body and makes the whole dress feel oddly clingy.",3,0,0,General,Dresses,Dresses +828,34,,"Soft, very thin material. perfect for summer but very difficult to wear without a bra because it is so thin it shows quite a bit. the chest is tight but you can adjust the fit by the neck tie. looks exactly like on the model but the cut made me feel wide. had to take it back.",4,0,1,General,Tops,Blouses +1094,68,Great staple,"I ordered the black and white, and the pattern is just as pictured (so cute!), but after reading the other reviews, i ordered a size up. and i'm glad i did. the m would have been snug, but the skirt in the l fit me as pictured on the model. i am i b cup, and the top was snug but not unflatteringly so on me. it's still a dress i can wear to work and even wear a tank underneath if i wanted to. overall, i'm incredibly happy with this one; i'm fairly straight, though, so i can see how this might be",5,1,0,General,Dresses,Dresses +1081,63,The perfect summer dress!,"Thanks to the vertical stripes, the adjustable neckline, the bow that cinches the waist, and the free flowing skirt, this dress is extremely flattering. the compliments i received when wearing this dress back that up! i was unsure if i should order a medium or large because i typically wear either/or depending on the dress style due to my hips. i ordered a large which fit thanks to the adjustable neckline and adjustable waist, but a medium definitely would have worked just as well for me (i just",5,1,0,General,Dresses,Dresses +936,42,Great fall sweater,"Tried it on in store and had to have it. so soft and easy to throw on. i'm 5'6"" and it hits at the knee. i usually wear an xs or small in tops and the xs fit great.",5,1,27,General Petite,Tops,Sweaters +936,37,,"I just love sleeping on snow sweaters and this one is no exception. it's soft and cozy and very warm. i do have sensitive skin, so i found this a bit itchy right away, but that went away after i wore it for a bit. this is oversized, but in a great way. you could size down if you wanted something a bit more fitted. sleeves are long and pre-cuffed. sweater hit me mid-lower thigh.",5,1,0,General Petite,Tops,Sweaters +1031,39,Wow. these are smoking hot,Worth every penny. i sized down one size and they look amazing.,5,1,0,General,Bottoms,Jeans +1078,42,I can wear a jumpsuit?!?!,"I never would have thought that i could wear a jumpsuit and it actually look good on me, but this is it!!! the fabric is weighted some so it lays very flattering and is very comfortable. the sash can be tied several ways-front, back, or side. i will be traveling in this to the beach and pairing it with an retailer wrap, and then wearing it alone with sandals once we exit the freezing airplanes. a racer back bra works great with this piece and the pockets are an added bonus. it looks like a d",5,1,2,General,Dresses,Dresses +975,69,Wow! makes me smile!,"I love this jacket. let's be clear though...it's not for warmth just for style but it's perfect for fall in california. i love the detailed work and have already tried this with so many different layers, a light blue tank, off white shirt, tshirt and it looks great with lots of things and truly makes the outfit. love unique pieces like this and i will be wearing it often. i bought my usual size small. sleeves are a bit long for my 5'4 frame but they didn't have in petite and it looks great.",5,1,0,General Petite,Jackets,Jackets +1094,41,Not for curvy girls,"I got this dress in the holly green and it's a lovely shade - perfect for fall and winter. this is why i gave it the high rating. however, be warned that the lining is very form fitting. i thought the dress had more of a fit and flare design to mask flaws like a belly and larger backside, but that's not the case. i had to return it, but for more slender-shaped ladies, the dress is likely a winner.",4,1,0,General,Dresses,Dresses +1081,20,Not for me,"I wanted a casual but special summer dress and had high hopes for this one. i normally like to try things on as it is difficult to tell fit online. when it arrived i was disappointed with this dress. it is very full in the skirt, the top fit a bit odd, not a lot of shape and not especially flattering. the fabric wasn't very exciting either. unfortunately this one went back.",3,0,3,General,Dresses,Dresses +1078,58,,"I personally love this romper. there's a lot of fabric to it, so it feels lush and substantial. and the pockets! they're so roomy i actually couldn't find my phone for a hot second. the crotch of the legs (because, yes, this thing is actually pants) is very long and so i was very comfortable sitting. + +the two things i don't love about this piece include the downfall of all rompers imo: not bathroom-break friendly. you basically have to disrobe. and since the legs are so long, you end up clingi",3,0,1,General,Dresses,Dresses +1094,33,Couldn't get it to work!,"After reading every review, i was certain i knew exactly what i was getting with this dress. wrong. i sized up from a small to a medium and the dress was still uncomfortably tight on my rib cage. the top is very exposing of the bust, and i'm small busted. i can't stand wearing camis, so there no way i'd be able to wear this dress even if i sized up again to a large. for reference, i'm 5'6"", a straight build 134 lbs, and wear a 6. pluses on this dress are, i loved the green color and length of sk",2,0,1,General,Dresses,Dresses +1094,29,Runs small,"Agree with other reviewers: this runs narrow in the skirt. the top is also quite low-cut, and it's already lined so i can't see wearing a cami or slip. i like the black-and-white print and the shape, and might have tried a size larger in the store. finally, it's an awkward, unflattering length. i'm 5'4"" and it hit below my knee.",3,1,0,General,Dresses,Dresses +1020,39,Feminine,"I love the feminine feel and look of this skirt. it is unique and matches many different shirts and looks great with a jacket. the only thing is it does run large. i ordered a 6 (my usual size) and it is very loose, not form fitting like the photo, but still cute and wearable. downsizing would've been better.",4,1,8,General,Bottoms,Skirts +1020,50,Lining too short,I had to return this because the lining is super short and uneven. its shorter in the back and falls weird. i love the color even better than the picture. but quality is lacking for this high price. i ordered the 4 petite and it fit but the elastic waist shows any bump in your tummy too. bummer,3,0,1,General,Bottoms,Skirts +1059,39,Ok i get it now,This was a return in my sale room and i just decided to try it on. love it! fits true to size thought kind of hard to zip up all the way. colors are great. got the petite size. the pattern is different for each one so each is unique. mine has. lot more navy blue.,5,1,0,General,Bottoms,Pants +975,39,New take on old staple,"I like the light fabric and embroidery on a otherwise hard look (bomber). feminine can be worn casually with jeans and a t-shirt, or over a dress. lovely on every note. fit: i ordered botih the xxs p and xsp. (had tried on regular xs in store) tried on the xxsp first and kept it (didn't try on xs p). since the fit is loose (bomber) on me i like it a little more fitted. there is enough room for a sweater. + +i am 115 lbs, 30 dd, 26.5 in waist. arms were not too snug either...",5,1,1,General Petite,Jackets,Jackets +1081,39,Cute fun and flirty,"I tried this one as a xs and xs petite, and of course ,the petite is the way to go for me. length slightly below around the knee, if i pull on the straps, then the hem hits the knees. i wish the blue was still available in petite, now that it is on sale. the waist is adjustable,and so are the straps. the material is airy like linen. pretty and flirty, and appropriate for work, can't go wrong. + +(115 lbs, 30 dd, 26.5 in waist)",5,1,0,General,Dresses,Dresses +1078,39,Comfortable,"I ordered the xxs petite (only size in petite left at the tme0 and that was right for me. i usually (should say used t) get xs but with the looser styles lately, xxs seems to fit me better. hte leg hem falls below my knee, but not too low on the calf. the waist is comfortable, hte weird part is the fabric, the sash part seems to be lighter and the softer part is on the inside so it would seem. + +for reference, i am 115 lbs, 30dd, 26.5 in waist.",4,1,0,General,Dresses,Dresses +1094,50,"I tried, but odd fit","The print and fabric are great, but this dress has odd construction, or maybe i have an odd construction. anyway, i'm 5-5, weigh 125-130, 36d. i ordered the small and it fit perfect up top and in the arms - but the issue was in the hips. i'm somewhere between athletic and curvy. the skirt looks more a-line in the photo, but it's actually cut pretty straight. spanx would have helped, but i'm not about to wear spanx all day in a work/casual dress, i think a medium would make the top too big, so i",2,0,0,General,Dresses,Dresses +1094,45,"Beautiful, but runs small","This dress is very well-made, fully-lined, and overall quite beautiful. however, i will have to agree with the other reviewers who say that it runs small. i am typically a solid medium in retailer clothes (5'9"", 36b, 155 lbs., apple shaped, long torso), but the medium in this is skin. tight. not a good look. the large fit much better and i did not find the skirt to be like a pencil (the fit is like the picture) and the length is at the knee. anyway, interesting that there is a such a huge differen",5,1,0,General,Dresses,Dresses +936,36,Soooo comfy,"This sweater is super soft and comfortable. runs very big. i usually wear a large, i purchased a medium and it is almost too big.",5,1,0,General Petite,Tops,Sweaters +1094,47,Love it!,Love classical look and this dress may look great on not so much curvy shape. price is great with extra 40% off so considering to get dark red one as well now!,5,1,0,General,Dresses,Dresses +936,46,"Bulky, heavy and awkward",I ordered the navy/gray combo in size xl. it was too heavy and uncomfortable to wear. it also attracted so much lint. the one i received must have come from a store because it already had a lot of fuzz on it. it added weight and was unflattering for my shape. the colors do match the photos online. the length also matches the model's photos. it just didn't work for me.,3,0,0,General Petite,Tops,Sweaters +1037,33,Love,"Wow i have never owned a pair of pants that fit so well! this is my first pair of pants from retailer. i always have the ""too tight in the thighs"" and ""gaping at the waist"" issue but not with these at all. i was so surprised. i purchases size 26 in both tan and blue. the perfect amount of stretch and so comfortable. a bit long but flares look best with heals anyway;)",5,1,0,General Petite,Bottoms,Jeans +1094,37,Meh,"I tried this dress at the store and it made me look 10 years older. the fit was tts but a bit odd around the waist. i am 5'4"" and 160 lbs and tried a small.",3,0,1,General,Dresses,Dresses +1094,37,Very versatile dress,This dress fits comfortably with great fabric and feels sturdy without to much weight. i love the color. the fit would be flattering on many different body types. i would highly reccomend this dress.,5,1,0,General,Dresses,Dresses +1037,36,Flattering and comfortable,"I bought these in light grey and navy. they are both beautiful. high quality,very flattering, and so comfortable! i love them! they're a perfect long length. i have long legs and it can be challenging finding a good length in pants. the pockets are deep and functional, which is rare in women's pants. they are more than i like to spend, but i will get a lot of wear out of them. they look and feel fantastic. i highly recommend these!",5,1,0,General Petite,Bottoms,Jeans +1037,42,**love**,So glad i was able to snag these killer 70's-ish flares. they are super cool at a nice length. love the button detail. i ordered these in my current size and they fit right out of the box. love them so much.,5,1,0,General Petite,Bottoms,Jeans +1078,51,Fantastic,This is really flattering. it's one of the best purchases i've made through retailer. i know it will work with a lot of different body types. the medium fit me well. i bought a petite version by mistake but it still fits.,4,1,4,General,Dresses,Dresses +975,60,,"It jacket of the season! this bomber is absolutely perfect. not only is the embroidery beautiful, but it's super comfy as well. it's lightweight, nicely lined, and well made. i only gave it four stars for quality simply because the embroidery could get pulled and frayed if not careful. you should expect that with any silky embroidered fabric however. i would highly recommend this jacket for any body type.",5,1,0,General Petite,Jackets,Jackets +1094,29,Fantastic dress,"Love the fit of this dress! i'm 5'2"" 120 and the petite extra small fits perfectly. the waist is slimming and the cut is not too low. also great pattern.",5,1,0,General,Dresses,Dresses +1094,32,Beautiful dress,This is a beautiful dress. fits true to size. very flowy and comfortable. the color looks just like the pic.,5,1,0,General,Dresses,Dresses +936,65,,"I may regret returning this sweater, because it would be lovely had i been able to wear it as i was when i ordered it. +as i am in a wheelchair temporarily, i find the sweater too bulky in a sitting position. +if you are slender and are looking for vertical lines that are slimming in a style so fashionable now, this is the sweater for you! the neutral colors and the bulky weave i also love because it goes with everything--a go-to sweater-coat.",4,1,2,General Petite,Tops,Sweaters +1037,41,Awesome retro cords!,"This is my first pair of pilcro pants but defiantly not my last. i always have a hard time trying to decide between a regular length and a tall because at 5'10"" i usually fall somewhere in between. i ordered the regular length and couldn't b happier, they are just long enough to wear a shorter heal with or a pair of flats. the beige color is really nice and pairs nicely with the sky blue mock turtleneck sweater i also ordered from retailer. i love the retro 70's style too! i couldn't be happier wi",5,1,0,General,Bottoms,Jeans +850,38,Super cute but embroidery is stiff,"Tried on standard xs and the photo on-line is slightly misleading as i thought that there were more colors involved in the embroidery pattern. in person, the pattern is not as intricate with only 2 solid colors. the body of the shirt is light, airy/billowy, not as form grazing like on the model..which i don't mind. i still love the top but would have to go for a petite xs or even a petite xxs so that it would be a little more fitted all around. note that the embroidery on the dã©colletã© feels lik",4,1,1,General,Tops,Blouses +1081,25,Perfect summer dress,"Dressed up or dressed down, this summer dress is perfect. the skirt is a lot of fabric, like others have said, but it's part of what makes this dress fun; and because the top is fitted, i find it very flattering because you can adjust the tie around the waist to make it fitted. that being said, the design sort of threw me off when it arrived in the mail because the waist as well as straps around the shoulders are adjustable; at first it looked like a sack, but when it's on and adjusted it will l",5,1,0,General,Dresses,Dresses +1081,41,Perfect summer staple dress.,"This dress intrigued me a bit online, but not enough to order it to try it. even on the rack, i wasn't so sure about it, but decided to try it this afternoon. i couldn't have been more pleased. it is fresh, flattering, flowy, light and beautiful. even though there is quite a bit of fabric, the vertical stripes and nipped in waist make it extremely flattering. i didn't realize this came in blue as well. i may add that one to my wishlist, but the red one is a definite winner. it will make a great",5,1,0,General,Dresses,Dresses +1020,40,Just okay,"The skirt is not as form fitting as i had hoped. it is a lot of material that is flowy and billowy, not straight and pencil-like as shown as in the pictures. the material and design is just okay- not super wowed by it. i did size down but feel like i might need to size down even more to get more of a fitted look.",4,0,0,General,Bottoms,Skirts +1059,38,,"Love the subtle pattern, i think it will be great for a number of occasions. the fit is very flattering. not lined, but high quality heavyweight fabric does not seem to make it necessary.",4,1,0,General,Bottoms,Pants +933,34,A new favorite,"I absolutely love this. i'm 115, 5'6"" and the xs is roomy because of the style, but it drapes very nicely and it's a perfect fit. with my new loafers and cropped pants, i'm all ready for fall! he slightly felted knit is a nice touch. it's also really soft.",5,1,0,General,Tops,Sweaters +975,43,Gorgeous jacket,"The images definitely do not do the jacket justice. the detail is beautiful, and the fabric is unexpected and quite luxurious.",5,1,1,General Petite,Jackets,Jackets +975,46,Beautiful bomber,"This is soft to the touch and just beautiful. +it is a little roomy, but true to size. i love it that way. +totally on trend for the season",5,1,1,General Petite,Jackets,Jackets +1020,49,Love the flow and hem on this skirt,"I tried this on in the store and thought the flowy fit and asymmetrical hem were great. the fabric is thin, which is nice for summer, but lined at the top half so it's not transparent except below the knee. the waist is quite high and has flexible elastic for an easy fit. i liked the skirt a lot and came online to find it in petite. sadly, it is sold out of most sizes in the petite length. i wish antrho would order more of the petite sizes because they seem to sell out fast!",5,1,11,General,Bottoms,Skirts +1078,27,Exquisite!,"This is one of those rare garments that is actually as flattering on me as it looks on the model. just like the picture, it hangs like a dress and emphasizes my curves without seeming too revealing. the weight of the fabric creates graceful movement, while the loose cut keeps it cool and breezy. for reference, i am 5'4"" and curvy (34d, 35x28x39), and i ordered a small petite. this is a smaller size than i would wear in most styles, but it fits almost like it was made for me. the tie hits slightl",5,1,3,General,Dresses,Dresses +1037,38,Love the fit,Love how this fits. length is great so i didn't need to hem (you wouldn't be able to). flattering on muscular/athletic legs/bottom. i bought in navy and then had to buy it in another color it fit so well.,5,1,0,General,Bottoms,Jeans +1020,57,,The material is beautiful and as others said its a bit fuller than one might think. i am returning because it's high waisted with a thick elastic waist band. not my style - i suppose it would work with a thick belt. as i said its beautiful - just not my style.,3,1,0,General,Bottoms,Skirts +1078,42,Wonderful & comfy,"This lovely number met all my expectations. ordered an xl, and glad i did. the fabric and styling has flattering drape and it can be dressed up or worn for a casual night out. if it was available in another classic color, or a subtle neutral pattern i'd probably purchase a second one (hint hint retailer).",5,1,1,General,Dresses,Dresses +1037,47,Fit issues!,"So these look so good online - i love flare and the button detail. however, on me, they were very long (which i knew) but too thigh-hugging for my taste, and the buttons looked cheap (i ordered the tan color). thus, back they went. for reference, i am 5'5"" and 125# and ordered the 6.",2,0,0,General,Bottoms,Jeans +1094,36,Great price for a cute dress,I was a little hesitant about sizing based on reviews-but my normal small fit perfectly. it is a little low cut for work-but with a scarf will be fine. i wish it was a bit shorter (hits just below the knees on me).but overall great. i have a fairly straight body type and think dress probably works best on this type. although if you were small on top and curvy on bottom i think this could be cute too. for the price point (with the sale) its definitely worth trying! i got the black and white-and i,5,1,0,General,Dresses,Dresses +1078,41,Super flattering romper,"You can?t go wrong with this one. it?s is super flattering. the size medium fit perfectly. for reference, i have a 38in chest (32 ff) and in the medium i was not over exposed, and it can be worn with a racing back bra with it not showing. i wish it came i more colors. please retailer?make this one in more colors.",5,1,0,General,Dresses,Dresses +1081,23,Absolutely gorgeous,"This dress is beautiful. i am happy i chose the sky blue color. i read a review before ordering that said it was more beautiful in person. it certainly is! i can't wait to wear it. the only issue is that it runs a tad bit too big. i am very thin, and usually an xs in retailer clothes. i could've fit an xxs. good thing the straps can tie and be adjusted. also, it is a little longer than i thought it would be on me (i am 5'7""). other than that, i love this dress.",4,1,0,General Petite,Dresses,Dresses +1078,49,Love it,I'm not a big fan of rompers but love this one. it is very flattering and comfortable. i love that you can dress it up with some heels and accessorizes or more casual with flats.,5,1,0,General,Dresses,Dresses +1020,52,Beautiful and comfortable skirt,"This is a lovely, romantic skirt that hangs nicely. it is lined except for the ruffle on the bottom. as others have said, the waistband is stretchy and molds to your shape. it is high waisted. i called the store to hold a size 4 and 6 for me to try. when i got there, i finally settled on a size 2, so it runs a bit large. i have a 25 inch waist and 36 inch hips. if this fits your style, give it a try, you won't be disappointed.",5,1,3,General,Bottoms,Skirts +1094,47,Cute dress,The dress is true to fit and very soft. you can dress it up or be casual with a denim jacket.,5,1,0,General,Dresses,Dresses +1094,29,Accidentally sexy,"On the hanger i thought this would be a great work dress, but on my curves it was pretty scandalous. really low cut--will need to pin it, and hugs curves (if you have them). it's comfortable and i like the pattern. i have a number of maeve's jersey dresses so i'm not expecting it to last incredibly long, but at 25% off it was a good deal.",4,1,0,General,Dresses,Dresses +1078,36,The best,"Okay, so i have an upcoming day of travel with four kids, a husband on crutches, and a flight leaving at 6am for which i have to leave my house at 4am, followed immediately by a le cirque show upon our arrival. i've been looking for something to wear during this chaos and this is it. the fabric is dreamy-soft, and the drape, perfect. yes, it looks like a dress, but i am happy for the conservative pants/jumpsuit it actually is. the pockets hold my phone without sagging, and i can wear sneakers du",5,1,2,General,Dresses,Dresses +1094,42,,"I'm a 34c and 136 lbs. the dress falls just below my knees, perfect for the colder weather! i bought this in m in two colors because i love it so much! the fit is so flattering and the material is so soft and comfortable. i continue to find maeve dresses classic, quality, flattering and comfortable!",5,1,0,General,Dresses,Dresses +1094,41,Versatile & comfortable,"Got several compliments on the dress the first time i wore it, and know it will work well for both the office, church and even a holiday party or two. i'm right on the line between petite & regular sizes, and could have gone w/a petite (probably medium) size instead as the dress is just a touch long with a deeper neckline for my frame. otherwise it fits well and the color is great, even if it's not quite the same as in the photo. overall, i'm satisfied with my purchase!",4,1,0,General,Dresses,Dresses +975,30,Beautiful jacket and well made....,"I bought this jacket in a regular and returned it to the store where they had a petite, it is lovely. i live in ca so it is perfect for an evening out.... remember not to buy this for warmth but a light cover up. it makes an outfit out of anything else you might want to wear. looks great with black under it or off white.... also looks great with the beautiful soft pinks that are out this season... or cranberry.... you will love it...",5,0,0,General Petite,Jackets,Jackets +936,47,Perfect sweater for chilly weather,Absolutely love this cardi! it's perfect with nice jeans and boots or my black pants. i am nearly 6' tall and a medium is plenty long in the sleeve and overall length. it adds warmth but it's breathable so it doesn't give you the super hot effect when going inside. they only reason i gave a 4 in quality is that it is loosely stitched so you can get caught on things :) otherwise it is a great addition to my closet!,5,1,0,General Petite,Tops,Sweaters +1081,43,,,5,1,0,General Petite,Dresses,Dresses +1099,41,Nice quality but boxy fit,"This is a pretty dress, but the cut is quite boxy. i had thought that the dress would cut in a bit along the body and then ""flare out"" more around the waist down to the hem; however, the dress is baggy from the sleeves all the way down, which lends to a rather unflattering look.",2,0,5,General Petite,Dresses,Dresses +1094,28,Cute though thin dress,"Based on the photos, i thought this dress would be very flattering on an hourglass shape. i ordered the faded reddish pink color. the color was true to the photo and very pretty and soft. the dress has an open neckline, fitted waist and skirt length that are all flattering, but the fabric is thin and clingy, making the dress overall not flattering on anyone not as thin as the model. it certainly doesn't hang. i believe it runs true to size. i'm generally a xs/s and i ordered a s and the fit was",3,0,0,General,Dresses,Dresses +1078,39,Amazing comfy and a dream!,This fit me perfectly with a little room but think it's meant to be this way so easier to get on and off. this feels like a dream and is very good quality. definitely a heavier piece but i like that. it is so very flattering and drapes beautifully to hide my tummy. the back is adorable too! retailer hit it out of park with this one! grab it before it's too late! i'm a 36ddd and size 14 and the large fit perfectly,5,1,19,General,Dresses,Dresses +936,33,Versatile sweater coat,"I bought this sweater/coat as a gift for my mother. she absolutely loves.it. it does seem to run a little large, and the sleeves are especially long. the navy and grey color combo is very nice. it seems like it will be very warm too.",5,1,0,General Petite,Tops,Sweaters +1094,26,,"I love this dress. i've received compliments from everyone. it's long enough to feel appropriate for work or teaching in sunday school - and, it's beautiful!",5,1,0,General,Dresses,Dresses +1078,46,,Just a heads up - this is a romper - pants and not a dress! you can't tell from the pictures. i ordered thinking it was a dress but it's actually ... culottes? i'm not sure what you would call it. the pull on styling was awkward and the sash was bulky. it definitely goes back!,3,0,42,General,Dresses,Dresses +975,51,Beautiful bomber,I saw this on one of the gals at my local retailer and fell in love. it is the coolest bomber and i instantly fell for it. i went with my normal l and i will be wearing this all fall and winter long it's just so unique and eye catching,5,1,10,General Petite,Jackets,Jackets +1099,42,,"The quality and fabric of this dress are lovely, but unfortunately i found it to be very unflattering and shapeless. it fit me like a sack, i ordered the m and i suppose i should've sized down, but even in the s i'm afraid this would be far too large. for reference, i am 5'7 and 135 lbs. i have a curvy build so this shape dress just wasn't right on me. i imagine it will look cute on more of a boyish figure. returned.",2,0,2,General Petite,Dresses,Dresses +975,42,,"I saw this online and went to the store yesterday to find it. i tried on a m, which is my normal size, and a s, which, if clothes are baggy, i'll buy for a more fitted look. the s was too small in the shoulders and my arm movement was restricted, so i bought the m. this is definitely true to size. it has a blousy waist to it, so no amount of downsizing will make this a fitted jacket. notice the model is pushing the jacket down with her hands in the pockets to make it look like it has a more defi",5,1,5,General Petite,Jackets,Jackets +936,29,Must have,"My favorite of the season. i purchased the grey sweater while shopping with girlfriends. i love it so much i'll be purchasing the brown as well. i would normally wear a m/l but tried it on and purchased a s. i don't like very fitted items. however, a small fit perfectly on me. this item runs big.",5,1,0,General Petite,Tops,Sweaters +1078,26,Love it!,"As everyone said, the fabric weighs and therefore the romper is flowing gracefully. and it is real soft. you can wear it without bra. it looks so flattering but still feels so comfortable. it is the reason that i placed an order online and it is also the first piece out of the package that i paired with excitement and went out full of contentment. the only thing is that i received mine with the place where the two bands meet with the back broken. i had to sew them all together. it almost felt li",4,1,0,General,Dresses,Dresses +1094,41,Great staple piece!,"I bought this on sale in all 3 colors. it doesn't look like much in the photos, but that's really the point. this is a staple, basic piece. layer on colors and prints, like a printed jacket, scarf or bag. i bought this in wine, along with the sweater knit boots and a bag with a print that ties the colors together. the shape of this dress is great - fitted through the waist and not a lot of extra fabric in the skirt. midi is usually a bad length for me 5'2"" but since the skirt isn't overwhelming,",5,1,2,General,Dresses,Dresses +1094,31,Cute and comfortable,"This dress is easy to dress up or down, and is very comfortable.",5,1,0,General,Dresses,Dresses +933,23,The one that didn't get away! :),"You know when you're shopping and you don't buy something you like, but later you can't stop thinking about it? that was the case with his sweater! i saw it paired with a cute top in the store so i tried it on on a whim. i'm so glad i eventually got it! it's toasty, soft, and thick with the perfect amount of quirk.",5,1,0,General,Tops,Sweaters +936,50,,"This is the perfect warm cozy boho sweater. the blue trim really stands out and brightens up the grey. this sweater will look cute over any outfit, or with jeans. i have long arms, and the sleeves almost cover my hands, which i really like. i highly recommend this, especially at 20% off!",5,1,10,General Petite,Tops,Sweaters +1020,52,Nice summer skirt that can be dressed up or down,"I just bought this skirt in the store and i'm happy with it, it can be dressed up or down it is made of washable silk so it doesn't require dry cleaning (but it should be hand washed or on delicate cycle obviously). it fits through the hips without being overly clingy. the waist is a wide stretchy smocking style so there is some give.",5,1,16,General,Bottoms,Skirts +1078,35,"Great concept, but...","I really wanted to love this, but the length of the pants was so awkward and dowdy. if they were longer or shorter, this would be a win. nice fabric, not too clingy so it is attractive on top and hips.",3,1,1,General,Dresses,Dresses +975,66,Fantastic jacket,"This jacket is a show stopper. great fabric, beautiful embroidery. well worth the price.",5,1,0,General Petite,Jackets,Jackets +1078,30,Really happy!,"I love this! it is comfortable, flowing and reminds me of glamorous women in 1970's movies. i especially love that is completely looks like a shirt (its pants) because i don't have to worry about my skirt flying up as i race around the city. bra// no bra doesn't matter, which i love. as someone with a larger bottom then top and am pretty tall, i usually have trouble finding one piece items that aren't too short in the crotch/waist zone. very roomy without looking like a sack.",5,1,2,General,Dresses,Dresses +1094,25,So glad i ordered a size up,"I originally bought this in a medium (for reference - i am 5'10"", 155 lbs.). it was tiny! i sent it back for a large and it fits beautifully. the fabric is incredibly soft and the dress is very flattering and comfortable. i would just recommend ordering up a size.",4,1,1,General,Dresses,Dresses +1037,45,,"Fit and style very nice. returned because way too long and bottom detail interfered with hemming. they were at least 4"" too long. i am 5'8"" so heels would fix the issue but i don't want to wear them with a comfy pair of pants.",3,1,0,General,Bottoms,Jeans +1094,64,,,4,1,0,General,Dresses,Dresses +975,55,Amazing,"I have been a loyal retailer customer for at least 10 years now, so i don't say this lightly; this might be my favorite clothing purchase ever. the overall design is incredible. the feminine detail in the embroidery combined with the traditional bomber style is done so well. i somehow snagged a medium petite and it is absolutely perfect. there is enough room to fit a sweater underneath, but the sleeves and waist are the perfect length! something which is difficult to find at 5'2"". also, i must say",5,1,1,General Petite,Jackets,Jackets +1078,63,Great first romper,"I've never owned a romper, and never had any desire to. but the classy design in black, soft, flowy fabric reeled me in, prompting me to push my boundaries a bit. i'm so glad i did. i don't think i have any other piece of clothing that makes me feel so classy or so fun, and certainly not at the same time. i wear it to work in an office environment with a cardigan, and the cardigan goes off after work as i run errands or play with the kids. i love it!! (and it even has pockets - i'm a sucker for",5,1,2,General,Dresses,Dresses +1020,53,Pretty and feminine but...,"Lightweight, airy silk. it's not shown in the photos but it has a half slip which is too noticeable through the thin silk. it looks somewhat cheap. the silk doesn't feel smooth to the touch. it has a slight roughness to it. it would have been nicer if they had used thicker, higher quality silk. the waist has a tight, wide, elastic band which after wearing for awhile feels uncomfortable. the color of the skirt is true to the photos. i wanted to love this skirt but i will be returning it.",3,0,0,General,Bottoms,Skirts +1037,34,Super cute cords,"My normal size 32 fit tts. the length is great (i'm 5'9). i love the button detail on the bottom, makes them a little unique.",5,1,0,General,Bottoms,Jeans +936,41,Great sweater,I love this sweater. comfortable and flattering. great for going out causal and staying warm!,5,1,0,General Petite,Tops,Sweaters +936,37,Love it!,"Just purchased it in store - very soft and cozy, great neutral color too. i am usually s, but bought it m just to have it slightly oversized.",5,1,1,General Petite,Tops,Sweaters +1094,39,Perfection,"I think i'm on the opposite side of the fence when it comes to fit, because i love this dress. it may be because i don't have much hips or curve to my waist that this dress is not tight as it is on others. it does make me look like i have some shape down there because it doesn't cling. i ordered the holly green and i adore the shoulder detail. confused as to why that same detail follows along around the inside of the dress across the shoulders because it itches a little. i do have to wear a cami",5,1,0,General,Dresses,Dresses +936,39,Roomy yet flattering,"This sweater is such a cozy knitted dream. the mixed knit contrast trim/hood adds enough visual interest to keep it unique from other incarnations out there. it's a little open work but still snuggly warm with layers. the fit is very roomy but not sloppy looking, that's why i picked 'runs large' as you'd have to size down for a somewhat slimmer look. if i could afford to buy the other color now i would. i wish retailer would commission a green version. and a brown version. red too. what the heck,",5,1,1,General Petite,Tops,Sweaters +1037,56,Retro cords,"As others have mentioned, they're quite long. i'm 5'8"" and need to wear 2"" heels to make sure these don't drag. they're much tighter in the butt and thighs than my other pilco pants. i love the button detail at the ankles.",5,1,0,General,Bottoms,Jeans +975,52,Great interpretation of the classic bomber jacket,"I loved this classic bomber jacket online and in the brochure sent to my house, so i was thrilled to see it in my local retailer store. i anticipated that i would need a large, but i was wrong. the m fits perfectly! +fyi: 36c, broad shoulders/back, short waist, size 10/12 in button-up or fitted tops,and dresses (usually 10) and a m in a loose-fit or knit top. +the m fits me just like the model in the photo, so i would think that you are between sizes like i usually am, you should size down. the z",5,1,6,General Petite,Jackets,Jackets +1078,55,Love it!,"Flattering, flowy, comfortable. the back strops have elastic so easy on and off. flows when you walk, the ties have two different types of black fabric, matching knit on one side, a matte crepe on the other. love the pockets, very versatile piece.",5,1,1,General,Dresses,Dresses +1037,38,Gorgeous and stylish,"These corduroys are perfect! the flare is just enough to be current without seeming overly trendy or costumey. they make my legs look super long and look great with a professional top, or my favorite, with a drapery tshirt half tucked. +they are pretty long. i'm 5'5 with pretty long legs and i could use a 1"" hem, which shouldn't affect the style much. until then i'm wearing them with a 1.5 inch platform and they're perfect. highly recommend! if they still had my size in other colors in stock i wo",5,1,0,General,Bottoms,Jeans +1037,42,,,5,1,0,General,Bottoms,Jeans +1094,32,Curvy girls beware,"This dress is such a beautiful color and the fabric is super soft and lovely. it would be stunning on someone with a slim figure, but since i've got curves/an athletic build, it simply did not work. too bad, because it is such a pretty dress!",3,0,0,General,Dresses,Dresses +933,64,Sunny surprise,"Perhaps it is the 69's vibe that hit me, but i had to check this out with the free shipping week. i am so glad that i did! +i fear wool as i have sensitive skin but this is soft and snuggly. the structure will allow for fit over many different types of under-layers, but unlike so much offered lately, it is not huge or tent-like, but a perfect fit. it is a heavier weight - light coat weight? this is perfect for me in the south. the color is as pictured, golden. in my xxs petite, the sleeves are p",5,1,3,General,Tops,Sweaters +975,53,Embroidered beauty,"I bought this jacket recently and i actually had been watching it in my retailer. store, but, they didn't have my size. someone must have returned a size small and i scooped it up. i probably would have bought the xs but, it was gone. i went with it a little oversized and love it! great quality and workmanship on the embroidery. more like the items that retailer used to sell in 2004 and 2005! super cute, love it!",5,1,0,General Petite,Jackets,Jackets +1078,44,To cute!!!,"I went to my local retailer store on saturday to pick up some new cute things that i had my eye on. +after collecting the items i came in for i saw this romper! i tried it on and it was 'amazing"" + comfortable , soft and so versatile!!! bonus!!! i left so tremendously happy!! it will be a win for +many years to come!!!!!!!!!!!",5,1,18,General,Dresses,Dresses +975,59,Special jacket,I'm always on the lookout for those special clothing items that add pizzazz to my wardrobe. this is one. i had been looking for a bomber jacket and tried many but this one falls elegantly and is really beautiful. i can't wait to show it off!,5,1,3,General Petite,Jackets,Jackets +1078,35,Rompers aren't for me,"I ordered this after seeing the rave reviews. it is not for me. just like the culottes i ordered, this romper makes me feel like a grandma. i said i'd recommend to others bc of the other reviews but again, this was not for me. i also didn't like the back of the romper. no way i could even get away with a racerback bra b/c it's so low cut. the good though- it is super comfortable and is a nice heavy fabric. tts also. i'm a med 8/10 and the medium was correct in this.",3,1,0,General,Dresses,Dresses +936,38,Perfect coatigan!,"This has quickly become my favorite sweater. i am thinking of getting another one in case mine wears out! it's comfy-cozy and soft. love it layered over t-shirts or long sleeved collared shirts, and am looking forward to trying it with a dress and bare legs once it's warmer out. it runs kind of big. i'm 5'8"" and usually a size 6/8 and i got an xs. the s fit too.",5,1,0,General Petite,Tops,Sweaters +1094,67,Great dress,"I bought this dress as a consolation prize when another dress i wanted didn't suit me. i was shocked by how flattering it was, because on the hanger it was just ""meh"". the material is soft jersey, heathered, and it hangs well. it has a simple lining, but that doesn't interfere with the fit. it is a little low for my personal taste, so i wear a cami or scarf, but for those less well endowed, you'd probably be fine without one. for the record, i typically wear a 2-4, 125 pounds, 5'8, and 32 ddd br",5,1,0,General,Dresses,Dresses +1078,34,Lovely dress for all seasons!,"This dress is fantastic! it's super flattering and very versatile. for reference, i am 5'4"" and 155 lbs, and usually a size 8 - 10 in retailer dresses. the size medium fit perfectly. highly recommend this item!",5,1,1,General,Dresses,Dresses +1078,45,Great spring/summer dress.,"I am excited for spring so i can wear this. i purchased the orange. it is actually more of a red, but i like it. colorful and flattering fit.",4,1,3,General,Dresses,Dresses +1081,36,Very loose,"I love the look of this dress & had high hopes, but it didn't live up to them. have no doubt that it is well made & beautiful, fully lined with lovely detailing around the neck. i am 5'6"", 155lbs with a postpartum belly that i'd like to hide, so i chose this dress as the reviews say it's a bit loose & forgiving. i found it to be so loose that it looks big & entirely hides my figure! i considered ordering a small, but knew that it was simply the cut of the dress & going down a size wouldn't chang",3,0,4,General Petite,Dresses,Dresses +1095,27,Good quality,"I received this product and love the color and sheen of it. it is not too flashy, and would work great as a dress to an event day or night with the right accessories. i am about 5'7 and 115 lbs, and usually wear a size 0 in dresses. the size 0 fit, but was a little loose. if they had a 00 it probably would have been too small though. you definitely cannot bend over in this dress because it is too short, but i didn't feel it was inappropriately short otherwise. it flares out just slightly on the",4,1,0,General,Dresses,Dresses +1078,64,Fabulous!,"This dress is so comfortable and looks so good. i love the low back and the swing in the skirt. i ordered the tangerine, which is really more red than orange. this is a simple, slip-on dress, perfect for traveling as it doesn't wrinkle. i will wear this often when the warm weather arrives.",5,1,10,General,Dresses,Dresses +1078,33,I love this dress!,"This dress is lovely. i'm tempted to buy it in all of the patterns that i like, but i'm forcing myself to be economical. (i check regularly to see if it's on sale, however! then they're all mine!) +this dress is soft, comfortable, classy, and has the unique feature of having a low-cut back. my only complaint is that the holes for the arms droop sometimes so reveal my bra. this could be from my shape, however, because i am rather busty. the dress runs true to size and is easy to clean. it's one o",5,1,0,General,Dresses,Dresses +850,28,Light and lovely but not for me,"This is a well-made top and looks very pretty in the pictures, but in person it has a little more of a gauzy look to it. it is a great summer shirt as it is light and airy, but unfortunately it didn't work for me. i wear a 34c and that often results in shirts look more like tents or maternity wear than anything else. so, perhaps this works better for the smaller chested. additionally, and this wasn't so much of a con and just something to note, the fabric is pretty see-through. it works for the",3,0,0,General Petite,Tops,Blouses +1084,48,A colorful big box,"Since this sold out so fast i ordered an xsp which is too short (i'm 5'5""), it also is too big! the empire waist has no shape or flatter, the sleeves are huge, the neckline was falling off my shoulder, i put it on and instantly knew this was all wrong. the print is very fun and my guess is that's what is attracting everyone to it. it looked like a big floppy mess of cute fabric on me. back it goes.",1,0,0,General,Dresses,Dresses +1078,63,,"Lovely dress, fits great, very flattering, flirty, loved it so much ordered another one in a different color, can't wait for warm weather so i can wear these dresses",5,1,36,General,Dresses,Dresses +1095,41,Elegant,"I ordered this online and the colors are prettier in person. the blue and gray contrast nicely and have a beautiful sheen to them. i am usually a 2 at retailer and while that fit, i felt i could size down. i am slender and since it is a shift, there was little room in the waist/butt area. i ordered a 0 and that fit perfect! if you love blue (like i do), this dress is for you!",5,1,6,General,Dresses,Dresses +1078,27,Flimsy material,"I returned this dress because the material is so flimsy and thin. i was expecting higher quality, especially for the price. i was disappointed. it is a pretty dress and fit great, but i felt like i was wearing tissue paper.",2,0,2,General,Dresses,Dresses +1081,33,,"Beautiful dress, but it just didn't look that flattering on me. the quality was nice and it looked just like the picture. unfortunately it just looked shapeless on me so i had to return it. the dress is probably more flattering if you have long legs to show off, i definitely don't!",3,0,5,General Petite,Dresses,Dresses +1030,44,,"Love these jeans. wish i could snag another pair because the fit is just on point, as is the wash. the side slit at the ankle really looks great with heels. a definite buy.",5,1,0,General,Bottoms,Jeans +1025,53,"Comfotable, cute jeans","I just purchased these jeans on-line in my regular petite size 27 (27-35-116lbs) as that's the size i almost always order but ended up exchanging them for the next size up and found the 28's to feel much more comfortable so i'd suggest sizing up one size. the jeans run a bit tight in the thigh and waist area and though i could also get away with wearing the 27's, i just personally prefer the fit of the 28's better. these jeans give a nice shape in the back, are super soft and are the same color",5,1,10,General,Bottoms,Jeans +167,38,Love the stretch,"The shorts have a linen look but have just a touch of stretch to them which is great for keeping their shape. i'm 5.7"" 140lbs and the shorts hit about 5"" down my thigh which is just long enough to cover but still sexy. the 29's fit but snug all over. the 30's gave a looser look but still fit in the waist. i have the navy and the mango. definitely recommend.",5,1,4,General,Bottoms,Shorts +1081,68,Great dress but runs too big,"Loved pattern, quality and fine details on this dress but it ran large. i ordered petite small and it was way too loose/baggy .i had to return it. i went bsck to order a petite x/small, but it was no longer available in this size on- line. so disappointed! + +fyi , i'm 5' , 112-115lbs and small boned -always wear size petite small . but not fir this dress! + +this dress is comfortable , well made, lined and pattern is extremely pretty with nice border ( which is hard to find for petites -a",4,1,0,General Petite,Dresses,Dresses +1078,53,Almost like raiding audrey hepburn's closet,"First of all a caveat, i am not curvy at all. i am average height but petite in terms of features and bones and such. specifically, i am 5 feet 6 inches tall and about 123 pounds and boyishly shaped with a feminine and timeless style. all this means that i can get overwhelmed by dresses/clothes with a lot of fabric or large prints and such. if you are shaped like me, this dress will be perfect for you! it highlights your advantages (slim and petite) and give you curves (that i wish i had natural",5,1,3,General,Dresses,Dresses +1078,39,"Fun, flirty, summery - love the color","Sadly, i had to keep only a few dresses, not all of them, so that one is in my wish list if my xs petite goes on sale in red and blue, i am pal so that is hte better color for me. i have not seen the green in eprson, but the neutral color is very nice too, if you are not into red. + +materila: thin-ish, strecthy, super comfortable, may be cool in a cold area though, brr. + +fit: xs petite fit perfectly everywhere, surprisingly, the shoulders are capped sleeves, i dind't exepct having them ""fall'",5,1,2,General,Dresses,Dresses +1081,39,"Had my eye on this, but dind't get","I finally visited a store with petite, and this dress was there, so of course, i snagged it to try on... i love the colors, i mean awesome, the fabric is also very soft, but the cut was just huh on me, nothing to go raving about,.,, i think it would be nice for a casual day but i often just wear joggers or yoga pants on casual days... so for the price i left it.",4,1,0,General Petite,Dresses,Dresses +1095,52,Stylish shift,"I was concerned about purchasing this dress when i read about two slender people buying it. i'm 5'6"" 145lbs and athletic. i normally wear a 10 and i ordered a 10. the material is really pretty, but stiff, more like brocade. the cut is different and it's not form fitting or feature enhancing, but it's comfortable and looks attractive. the arms and neck are not binding or cutting, they are interesting touches that make this different from other shifts. it's lined, falls a bit above my knee but not",4,1,1,General,Dresses,Dresses +940,46,Go to sweater!,"Love this sweater! you can wear it with just about everything. i have worn it with dresses, leggings and jeans. you can dress it up or down. wonderful quality for the price.",5,1,0,General,Tops,Sweaters +1078,43,Easy to wear dress,"Purchased the blue motif colorway which (as other reviewers mentioned) is cream, mushroom, black (heavier lines) and very dark navy (grid part). looks good with both my cropped and duster-length black cardigan. print is a nice balance between neutral and interesting. a lighter weight knit but still opaque and skims over (versus clings to) the body + +the fit is very flattering and forgiving. the rushed midsection is cut higher and lower on the side seam to give a more hourglass line. the scoop b",5,1,3,General,Dresses,Dresses +1081,48,Simple and stunning,"If you like the way this dress looks pictured, you'll love it when it arrives. the patterns and colors are vibrant, the fabric is of high-quality, and the dress is lined with a black slip. for sizing, i""m a size 2 or 4 and the xs is a great fit. while i often order petites for dresses - this petite was short enough on me to be mistaken for a tunic. (i'm 5'3).",5,1,8,General Petite,Dresses,Dresses +1078,40,Easy summer dress,"This is a great throw in your weekend bag summer dress. it runs a bit large, especially on the top, but i'll make it work. back is a bit low, so a cardigan would be required for office wear.",4,1,0,General,Dresses,Dresses +1078,27,Bit disappointed,"I wanted to love this dress, the open back, the lightweight fabric, and fun print. perfect for spring and summer. it could be i'm too tiny for this dress, but the front of the dress wasn't flattering. it just hung and there was an odd tuck in the waist that made it look like it ballooned out under my chest above my waist.",3,1,0,General,Dresses,Dresses +1078,61,Easy to wear dress,"I purchased this in the green. nice print, not overwhelming. slips on, hides a bra, and was simply comfortable to wear. can easily be dressed up or down, but i was looking for a dress that i could slip on at the last minute to go out to dinner with friends. i took it on a trip to florida, and it did not wrinkle in my suitcase. what more can you ask for?",5,1,0,General,Dresses,Dresses +1078,44,Love this dress,This dress is so flattering and comfortable. i got the green which is not too green. this is the perfect dress for a spring day and can be dressed up or dressed down.,5,1,0,General,Dresses,Dresses +1025,67,Great pair of jeans!,"Purchased the petite size of these jeans and the length is perfect for my 5'3"" height. the description doesn't mention what length the petite size is but i believe it to be 31 inches. the jean is cut small in the hips and snug in the thighs so consider going up a size if you are curvy. great color and style. i may be 60 something but these jeans bring me back to my youth. love them.",5,1,4,General,Bottoms,Jeans +263,23,Very comfy!,"I orderd this product in a size large, because i was afraid of it being seamless would make it too tight on my larger chest (32ddd), however the opposite happened. because it doesn't have any kind of seams it is very boxy and not skin tight like i expected, however it still works because it does fit me around my chest comfortably and when worn under something it gives a nice blouson effect. also, the v is a very nice depth- not too deep or too shallow. overall, i'm happy with it because it's a n",4,1,0,Initmates,Intimate,Layering +1078,38,Beautiful dress,"This dress is one of my new favorites. i usually wear a medium petite but had to size down in order to get it to fit properly. i was able to get the green one, while visiting in san francisco. i wish more stores had a petite section! it was great to be able to try things on!!!",4,1,4,General,Dresses,Dresses +1078,29,Throw it on and go,"Since there were so many colors to choose from and the 20% full priced items sale was going on, i went in person to retailer to check these great dresses out. glad i did! online i was torn between several prints, but in the dressing room, there was a clear winner for me (just for personal preference. the prints are still all great!). these dresses are so flattering and comfortable. great with a cardigan or jacket for work or sandals for the weekend. definitely tts. i am pretty much always a m in e",5,1,0,General,Dresses,Dresses +1084,49,,"This is a beautifu;l dress. unfortunately it runs extremely large. i wear sized 10-12 and ordered l. i was lost in all the material. but because i love this dress so much, i am taking a chance and ordered it in small.",4,1,0,General,Dresses,Dresses +850,36,Wide cut,"Very beautiful colors unfortunately the cut is much too tent- like and it looks like a maternity top on me. i like a flowy bohemian top but this one was too much for my tastes, sadly i sent it back.",2,1,2,General Petite,Tops,Blouses +1078,42,My wife loves this dress!,"I bought this dress because i thought it would look good on her, and it does.",5,1,0,General,Dresses,Dresses +1078,56,Unreasonably flattering,"To my knowledge this dress looks great on everyone. the fabric is light and of moderate quality, the finishing is acceptable. a great basic.",4,1,0,General,Dresses,Dresses +1078,54,Very pretty fress,"I got it in tangerine. beautiful, soft material, very flattering and cute dress. i am petite, so i will have to do some alterations to make the top port shorter, but other than that it's a perfect dress.",5,1,0,General,Dresses,Dresses +850,24,Very cute and flattering,The perfect simple black top. great fit - can be dressed up or down. closet staple!,5,1,0,General Petite,Tops,Blouses +1078,39,Pop of posey,"I was so excited to order this dress; however, once it arrived, i realized that the fit doesn't work for me. i carry my weight in my stomach and backside, and the dress clung to my trouble areas.",4,1,0,General,Dresses,Dresses +1030,64,More like leggings,"After losing a lot of weight i thought i'd try a pair of skinny jeans and since pilcro is my favorite jeans brand, i bought my usual pilcro size but wow. these are just way too tight. they pull on like leggings or tights, clinging to every part of your leg - there isn't even a bit of looseness around the calves and my lower legs have never been big. i kept thinking i'd just lose more weight and they would fit better but that isn't happening either (the fit) so these are going to my daughter who",3,0,5,General,Bottoms,Jeans +1081,44,Cute but a little big??,I ordered this in a large and its a super cute dress but this time the large ran super big! i usually wear a 10 so sometimes mediums are too small. i'm going to exchange it for a medium and see if that fits better. the beading detail is beautiful but just had too much fabric down below.,4,1,4,General,Dresses,Dresses +1033,32,Love more than i thought!,"I got size 26 and they don't fit me as ankle, they fit me as long skinnies, but the quality is so good. they're smooth and stretchy, but they feel thick enough that when you pull them on you can tell it's quality denim. a great pant buy if you're looking for soft as butter grey jeans.",5,1,0,General,Bottoms,Jeans +850,34,Beautiful but very fragile,"In retailer's defense, silk chiffon in general is super fragile. got the top in turquoise and the color and design are beautiful!! i'm 5'3 117 lbs and took an xs, fits true to size. i'm able to wear a nude strapless bra with the top and looks great. i have worn the top a couple of times and by the end of the day i had a few snags. i was able to pull the thread back inside the top, never ever cut silk chiffon. i love the top so much, i bought a second one in the same color and size as a back up. un",5,1,0,General Petite,Tops,Blouses +1078,26,So flattering!,"This is the most flattering dress i have bought in years. the fact that it's machine washable was a huge plus. fabric is so comfortable and the length is perfect! i wear either m or l and went with the large for a little extra room, but either would have fit well.",5,1,0,General,Dresses,Dresses +1078,56,Beautiful summer dress,"I saw this dress online and drove to the store to try it on. i love it! i bought the tangerine color which is really red and blue (not black). i am 5'7"", 130 pounds, 34b and i got the xs. the small was too loose in the upper portion and the arm holes were big, like another reviewer reported. i have a long torso and the dress fit perfectly. it's a lovely, soft fabric and i will take it traveling with me as it won't wrinkle (and it's washable).the back is cut low, but surprisingly my bra didn't sh",5,1,10,General,Dresses,Dresses +1078,25,Great movement,"Beautiful, washes well in a garment bag on delicate. has little clips in the shoulders to hold bra straps which is crucial with the scoop back if you have sloped shoulders like mine. i normally go for a large, but was definitely a medium in this dress. 32"" waist, 32f bra, +only minor complaint is that the pattern (at least on the red, though probably also on the others) is just printed on the outside and the inside is faded almost white, so since the sides of the dress are slightly longer than",4,1,2,General,Dresses,Dresses +1078,23,"Super flattering, beautiful dress","This is my favorite dress i've bought in the past year! it is super flattering and can be worn for work or casual wear. the fabric is soft and comfortable. can't wait till the weather gets warmer so i can start wearing it regularly! + +i'm 5'5 145lbs, 37-29-39. i got the medium petite and it fits perfectly!",5,1,98,General,Dresses,Dresses +1078,64,,"Lovely dress, but i would recommend ordering a size smaller than you normally do.",5,1,8,General,Dresses,Dresses +1078,42,So fun and pretty!,"I had to return my original order to size down - the bottom half was fine with either size, but the medium was baggy in the back torso area. (i'm 5'8"", 150#). i bought the ""tangerine"" version, which really is more red than orange. it's versatile and can be paired with various third pieces and shoes. i do have a long torso and this waist is a bit short on me however.",5,1,0,General,Dresses,Dresses +1078,45,"Feminine and flattering, love this dress!!","Green- feminine and flattering, love this dress!!",5,1,0,General,Dresses,Dresses +1078,50,Great dress but heavy material,I just received this dress and tried it on. it's a nice dress that is flattering but the material was much heavier that i expected it to be. it's way to heavy to wear in the florida heat so unfortunately it's going back.,5,1,0,General,Dresses,Dresses +850,50,Statement top!,"I purchased this in both the black and the turquoise and wish they made more colors! this top is perfect for our florida 90 degree weather! i am usually a medium in tops (size 6-8), broad shoulders, size 36c and i purchased this in a 6p and a 6 (as they were out of petite in turquoise). i do prefer the 6p as i am 5'2"". i would say this runs generous as there is ample room to move. i wear mine with a nude bra on the turquoise top and the bra straps show a bit, but they are almost covered by the s",5,1,8,General Petite,Tops,Blouses +1078,37,Lovely lines,"This dress is gorgeous and has beautiful lines. it is a little on the big side, but the fabric drapes enough that it doesn't matter.",4,1,1,General,Dresses,Dresses +1078,36,Great fit & feel,"I love this dress and will be purchasing it in other patterns. the fit is incredibly flattering and the fabric is lovely. doesn't wrinkle, easy to wash and wear. i am 5'7, 190lbs, bottom heavy with a 38c bra size. i purchased the size large and it fits me perfectly (though perhaps a little bit snug in the waist). if i wanted a looser fit, an xl would probably work though might be a bit loose on the top. the low back hits just above my bra strap, but does in fact cover all straps. for reference,",5,1,0,General,Dresses,Dresses +1078,26,Buy it!,"This dress is amazing! ordered one with a discount (the dark blue with flowers print) and it was becoming my go-to for work so had to bite the bullet and order two other colors full price. size m fit perfect 5'7"" 150#",5,1,0,General,Dresses,Dresses +1081,41,,I ordered this dress on a whim because of the 20% off on mother's day weekend and i am so glad i did. this dress is very flattering. i have a hard time finding dresses that are a little loose but don't make me look fat. this dress has just the right cut. i recommend it for anyone who likes something not to tight but also flattering.,5,1,15,General,Dresses,Dresses +1078,42,Easy comfortable dress,"Purchased dress in blue motif. love it. it is casual and comfortable, no fuss dress. love the sexy open scoop back that is just high enough to comfortably cover my bra strap.",5,1,0,General,Dresses,Dresses +1078,29,,"This is a beautiful summer dress. i especially love the exposed back which is the perfect cut to not show your bra and feels professional enough for work. plus it's comfortable, drapes nicely, and is machine wash and dry.",5,1,0,General,Dresses,Dresses +1078,25,Gorgeous dress,"I am so glad i returned this dress for a size down. i am 5'10"", and 160 lbs (curvy and muscular build), and the medium was surprisingly much too large on me. i returned it for a small, and oh my, it is perfect. i plan on wearing this to two summer weddings this year, and will then wear it for work. it really is a go-anywhere-do-anything sort of dress.",5,1,0,General,Dresses,Dresses +167,48,Almost perfect... check sizing!,"I ordered the mango and the navy in size 28. i am 5' and 130 lbs. both arrived with the size 28 label on them, the mango fit perfectly. perfect length on the legs and very flattering. the navy, on the other hand, was an inch shorter and an inch narrower! i kept double-checking the packing slip and the label inside the shorts to see if they accidentally sent a 27p. but no, it was clearly a 28. i brought that back to the store and ordered another navy 28, hoping that pair was just mislabeled 28 or",5,1,1,General,Bottoms,Shorts +1078,41,Perfect!,"This is a perfectly lovely jersey dress. it's really comfortable, true to size and the cut is flattering. you can wear it to work with heels or to the playground with your kids in sneakers or sandals. i didn't want to take it off. sizing is straightforward on this one: just order your regular size. there's nothing tricky about sizing. the xxsp (my regular size, depicted here), was just above the knee and not quite as long as the product description. great buy. waiting for boston weather to coope",5,1,6,General,Dresses,Dresses +1078,45,Very flattering,This dress is flattering in so many ways. fitted through the bodice with a lovely flare from the waist down to cover those hippy hips. sizing is perfect. i also bought it in the navy/black color. you can dress up with heels or down with flip flops.,5,1,0,General,Dresses,Dresses +1078,38,I own three,"I bought this dress in three different patterns, i love it so much! i am 5'7"" and around 135 pounds. usually a size six or eight in dresses. ordered the small and fits perfectly if a little bit. curvy frame. great for women on the busty side. fits beautiful and is stretchy but not too clingy.",5,1,0,General,Dresses,Dresses +927,38,Runs small; also very fitted,"I'm a size xl and i'm busty, so my review might not apply to everyone. +. +i really wanted this jacket to work, however, it did not. i tried this jacket on in my usual size xl and it was nowhere near the correct size. this jacket runs small. i don't see how anyone with a bust is going to be able to button this jacket. the jacket is not lined and it is very fitted, so putting the jacket on and taking it off will require a very thin shirt to be worn underneath. +. +the style of the jacket is very",4,1,2,General Petite,Tops,Sweaters +1078,35,"Feminine dress, size down","I've had this dress for a while now and waited to write a review, glad i did. i originally ordered the mp, 5'5"" 130 lbs. while it looked nice - accentuated my waist it was a bit big in the chest area. it probably would have been ok but i am picky about fit. after debating for awhile i ordered the sp and it fits much better! when i pulled it out of the package i was worried it was too short but it's not. it hits right above my knee. in fact i compared both dresses and there is not much of a diffe",5,1,0,General,Dresses,Dresses +1054,35,Fabulous item,"I love this jumpsuit. it's unique, comfortable and fits true to size. you can dress it up or down depending on the event. every time i wear it i get loads of compliments!",5,1,0,General,Bottoms,Pants +1078,47,Great dress!,Super easy and cute. i received lots of compliments!,5,1,0,General,Dresses,Dresses +1078,29,Perfect if you have curves,"I ordered this dress the instant it appeared online, hoping that 'tangerine' would mean red, and not orange. and, what luck! it was the perfect red for my coloring - nothing orange or bricky, it was a true red. the background color is actually a deep navy, but it looks almost black in some angles. the fabric is super comfortable. it's long enough for work, easy and fun enough for a date, and perfect for spring-summer months. + +my only problem with it is the top is too large. i am a 34-a, 5ft-3",4,1,4,General,Dresses,Dresses +1078,62,This product fabric feels great.,"It slips on easily, is soft & flattering. it will definitely be my ""go to"" dress.",5,1,1,General,Dresses,Dresses +1078,37,Pretty for spring and summer,"I love the green pattern. the fabric hangs and moves beautifully. thick enough to cover undergarments without slip or liner. ballet back is nice detail. i'm curvy and generally between s and m, s has a little room to spare. generally flattering piece. great for summer!",4,1,0,General,Dresses,Dresses +1078,24,Love it!,"This dress is soft and comfortable. it's perfect for summer. i ordered my usual size 4 petite and it fits perfectly. 34"" 26"" 5'1""",5,1,5,General,Dresses,Dresses +1095,19,,"I was a little skeptical to buy this dress at first because of the pattern. in all honestly, i am so happy that i did. it's so unique and truly a one of a kind design. when tried on the dress is very slimming.",5,1,0,General,Dresses,Dresses +850,37,,,5,1,0,General,Tops,Blouses +167,47,Pricey for shorts but worth it,"I bought these on a whim on mother's day when i was out shopping. i didn't try even try them on at the store. i got them home and couldn't believe how great they fit and how comfortable they were. the length is perfect for me. not too long or too short. they did stretch out a bit upon wearing them but i like the comfortable, relaxed look. i washed and dried them in the dryer. they came out perfect. i bought the coral color. will be buying more as it is hard to find shorts that work for me. i rec",5,1,0,General,Bottoms,Shorts +1078,53,A new favorite!,"I absolutely love this dress. the color is beautiful, the fit is flattering and it is so comfy i didn't want to take it off until bedtime. it is an all around winner. if i could do one thing to make it absolutely perfect i would take and inch or two off the hem. i am think of doing that but seriously i am not sure i want to have it out in alterations when i could be wearing it, it is just too comfy and cute!",5,1,0,General,Dresses,Dresses +1030,42,Grew on me...,"These do run small for pilcro which i think runs large overall. after reading other reviews i decided to get the size i would order in ag or coh and the like. thanks fellow reviewers because i'm pleased. when i first put them on i said no. the waist was a tad big (but comfy# and the legs seemed tight. with the slits at the bottom going right to my ankle (29 inch inseam) i thought these looked ridiculous. however, once i had them on for about 10 minutes they just sort of molded to my body and loo",5,1,1,General,Bottoms,Jeans +1078,39,Cute summer dress!,"The petite was a little bit long on me (i'm 5'2), but it otherwise fits true to size and is very soft and comfortable, breezy. covers enough that it is work appropriate or for something outside. a keeper!",4,1,0,General,Dresses,Dresses +167,44,,These shorts are really cute and are a flattering length. grey color has a silvery look to it. keepers.,5,1,0,General,Bottoms,Shorts +1084,53,More beautiful in reality,"I purchased this dress on a whim. it is easy to wear and very comfortable. the empire waist is flattering. however, the dress runs large and the lower half is a-line. the neckline is very flattering and you feel put together when wearing this dress. +i am happy to have it in my wardrobe. a go-to piece for years to come.",4,1,0,General,Dresses,Dresses +1078,47,Easy and pretty,"This dress is very comfortable, lovely, and versatile. i know i will wear this often throughout the spring and summer months because of it's elegant ease. i purchased a small and am a 34c and 28 waist; fits perfectly.",5,1,1,General,Dresses,Dresses +1078,38,"Comfortable, easy dress","What i love especially about this dress are the comfortable, soft fabric and the shape of the back -- the scoop and longer back hem are very ballet dancer! the green & off white print is very pretty for spring. sizing is a little tricky for me as i'm between petite and regular sizes. the hem length in the sp is perfect, about 1.5"" above the knee in front, but the waist sits a little high. the top seam of the waist section is above my natural waist, and the bottom seam sits right under my navel s",4,1,0,General,Dresses,Dresses +1078,39,Love this dress!!,"Beautiful dress!! i love this and am tempted to buy it in more colors. fits true to size, in a flattering way. love the cut of the back and the flow of the bottom.",5,1,1,General,Dresses,Dresses +1095,27,Cute :),Over all this is very cute . it is very short. but has very good quality material.,4,1,0,General,Dresses,Dresses +1078,31,Cute and comfy,"This dress is nicely made and hangs beautifully. i did find the shoulders a bit too wide even though i have pretty broad shoulders. then again, i'm also pretty tall and the length on this dress is really nice, so i'll take the slightly wide shoulders. the low back and gathered waist are very flattering. a perfect dress to wear in the summer!",4,1,0,General,Dresses,Dresses +1078,61,Just right,"Great dress, comfortable to wear and flattering, with the stretch cinch waist and the soft flare of the skirt i feel flirty and fun with its open scoop neck and dipping back. plenty of space and simplicity to accessorize or not. i bought it in black/white and red, each with its own feel.",4,1,0,General,Dresses,Dresses +1078,27,Extremely flattering and comfortable,"Love love love! i'm 5'8"", 122 lbs, 34b, and have an athletic frame (fairly narrow hips) and i bought an xs (in red.) usually i am a s with retailer for dresses (although occasionally a m for slimmer dresses), but i found that the top part of this dress required me to size down to an xs as the low back-design of the dress fit too loosely with the size s--it hung so that it showed my bra straps and the sleeves were a tad baggy under the arms, showing about 2"" of bra underneath. my guess is that if y",5,1,57,General,Dresses,Dresses +167,36,First shorts i've loved in a while!,Fit true to size and very well. hit the leg at a good length. i'm 5'5. they were perfect.,5,1,0,General,Bottoms,Shorts +167,48,,"These are comfy and cool. i got the blue, which is more royal than navy. in opinion, it goes well with almost anything! i can wear all the neutral colors, in addition to orange, red, yellow and patterns. they are flattering and like other reviewers, i went up a size to 28 in the blue. perfect length, not too short. got the same version last year in white, 27. 5'4"", 128lbs",5,1,0,General,Bottoms,Shorts +1078,52,Flattering on all figures,I purchased the green dress. it is very comfortable and soft. is as pictured. highly recommend for a casual everyday dress. looks like good quality. which it is. i ordered petite small. it is perfect size. i'm usually a 6p.,5,1,0,General,Dresses,Dresses +167,30,The best shorts!,"I am obsessed with these shorts. i bought blue ones last year and loved them so much i needed another pair. i purchased the gray ones and they are a beautiful hue, even with my pale legs. i think they will be very versatile. the fit is perfect!! hits at just the right length to be flattering and appropriate, not too short. super comfy. i am fuller on the bottom so shorts are tough to find, and these are truly amazing. i can't wait to wear them when it gets warmer! for reference i am 5' 4"" about",5,1,0,General,Bottoms,Shorts +1076,74,Dissappointed,"Was very surprised when i opened the package, this dress is very thin fabric and you need to wear a half slip as it is see through. the top of the dress is short to the draw string and does not drape bloused style at all. i have a short waist length so it should have worked. the color is a little darker than pictured, but over all looks cheap so full price with tax makes it way over priced. going back asap.",2,0,1,General,Dresses,Dresses +1078,30,,Beautiful dress; i ended up getting it in both the red and the green. the fit is absolutely perfect and it flatters pretty much any figure. one thing i would say is that you should get your exact size if possible; i ordered it online because it was so pretty in the 4p. i happened to be in the store the next week and i ttried on the 4r in the store just to see how it looked and it was awful! i was so disappointed but then my dress arrived in the mail and the 4p fit me perfectly. i'm so glad retailer,5,1,0,General,Dresses,Dresses +862,36,Gorgeous top!,"This is so pretty in person and really nice quality with soft velvet, stitched on beading is very firmly sewn on, great fit. runs a tad small (i am a curvy size 8 but as with many flowy/swingy retailer tops i needed a small to not be swimming in it). perfect with skinny jeans and booties and can't wait to wear it this holiday season.",5,1,11,General,Tops,Knits +936,42,Cute!,Cute sweater! the side panels are perforated so you may want to wear either a nude bra or a cami underneath..,5,1,0,General Petite,Tops,Sweaters +1039,38,For curvy girls!,"These didn't work for me because i am too straight shaped for these jeans. try them if you have a smaller waist and curvy hips and bottom! i didn't have anything to fill out the hips and seat. for reference, i ordered size 25, and they were loose in hip and seat, but fit my waist. my hips are 34.5"" and waist is 28"". they are a thinner stretch denim than they appear, but not jeggings thin.",4,1,0,General,Bottoms,Jeans +855,39,Unique but a little short,I was thrilled to find this in a store to try it on. the fabric is light weight and the cut of the sleeves make it very unique. my only gripe is the length. it hits the very top of my pants. so if you lift your arms in any way because of the cut of the sleeves - the whole shirt lifts up and shows belly. but i loved the elegance of it so much i decided that i can live with the shortness. i will just wear a tucked in cami underneath. this fit true to size.,4,1,14,General,Tops,Knits +903,35,,,5,1,0,General Petite,Tops,Fine gauge +823,49,Love this top!,Didn't even wait for a sale on this top! so adorable and fits great. i bought a medium and wear a small in most things. i like that it is a touch big as it hangs better that way.,5,1,1,General,Tops,Blouses +909,29,Love!,"This top is so cute. a little cropped, light for a sweater tank in my opinion, and runs a little big so i sized down one size. beautiful fabric and fit, the ruffles are such a fun addition! definitely recommend with a high waisted pant or skirt for work - so cute!",5,1,1,General Petite,Tops,Fine gauge +903,50,Top,On the picture shows the belt.doesn't come with the belt.,3,1,0,General Petite,Tops,Fine gauge +936,39,Meh,"I waited and got this sweater at the winter sale. i ordered the navy in a medium. the design is pretty, but as has been said, i was surprised at how short it is. i do love the detail, the tie back. nice weight. i have not found it to be itchy. the sweater i received was a store return, and it was a little wrinkled and fuzzy, but for $35 i considered my hunt for the perfect navy pullover to be over. i do need to wear a cami underneath, as the sides are more revealing than pictures. the first day",3,0,0,General Petite,Tops,Sweaters +862,34,Extremely flowy,"I like flowy tops because i have a bit of a belly and i like to camouflage it but this top was really flowy. the fabric is great and the embroidery is beautiful, i was hoping for this to be a holiday staple this year. it has to go back though, just too large. i don't love it quite enough to order a size down.",2,0,4,General,Tops,Knits +909,39,True to size but short,"I ordered both colors in xxs (xs p and xxs p were both sold out at the time sale came on): verdict, fits really nicely, but short. i would have to wear this with higher rise pants or pencil skirt (like the red one is pictures with a polka dot skirt). i decided to keep the red one, because it is a bot more unique, i do have a few navy tops. the xxs fits ""fitted"" (can't think of another way of saying it), so i like it as it will go nicely with looser bottoms. i love the sleeves, the ruffles make t",5,1,1,General Petite,Tops,Fine gauge +936,29,Nice simple sweater,This is a great sweater just to throw on with jeans or a skirt. simple and the tie on the back gives it a feminine flare,5,1,0,General Petite,Tops,Sweaters +936,46,Gorgeous green,"I ordered the green version in size xl. i knew it was cropped and it fits me as shown on the models. so, i think that's true to size. the knit is very soft. but, it's the color that's amazing--such a rich bright emerald green! i love the look of it. it's awkward fitting on my pear-shape. i layer a long tank underneath with this on top. but, the hemline of the sweater cuts at an unflattering place. still, the softness and the beautiful color make it a staple in my closet. when i'm staying at home",4,1,0,General Petite,Tops,Sweaters +862,26,,Love this top!! perfect date night top! you can dress it up with a cute pair of heels or wear it around doing errands in some flats.,5,1,0,General,Tops,Knits +909,46,Great best sweater,"Wanted to get this sweater in the red but the size has been sold out for a long time, then saw the navy go on sale and snatched it up. great fit, cropped shorter than most sweaters very classic looking and perfect for layering into the fall.",4,1,0,General Petite,Tops,Fine gauge +936,66,,Love the overall design especially the tie on the back. i know it will become a favorite. i do wish it were a tad longer though.,4,1,0,General Petite,Tops,Sweaters +909,38,Short,"This is a thick sweater. it is pretty, but has a short length.",3,0,1,General Petite,Tops,Fine gauge +936,39,Beautiful,"I bought this sweater in the navy blue and love it! it's soft and not itchy, and the tie back detailing gives it that extra something special. i'm 5'7 and 38 d, waist line 27/28 inches, and the size m is a perfect fit! wore it yesterday to my son's 3rd birthday party with jeans and received a lot of compliments.",5,1,0,General Petite,Tops,Sweaters +995,44,Lovely skirt with interesting design,I love it. the fabric is a heavier denim and it has a nice stretch. being tall i appreciate the length. the sizes run a bit large; i'm usually a 10/12 but the 8 is perfect.,4,1,0,General Petite,Bottoms,Skirts +903,35,Fit is funny.,"Cute details but not happy with the fit. runs wide and short. the peplum fabric on bottom is stiff, wrinkles easily, and lays funny. returning this one.",3,0,0,General Petite,Tops,Fine gauge +936,46,Great color,Great color and fit and feminine,5,1,0,General Petite,Tops,Sweaters +1040,38,Great fall jeans!,"The fit is incredible! the print is very subtle, but makes them a little bit edgy and easy to pair with many things i already have in my closet.",5,1,0,General,Bottoms,Jeans +936,40,Fun sweater,"Fun, light weight sweater for fall or sprint. love the vibrant green color, maybe for christmas? the tie-back makes it unique.",5,1,0,General Petite,Tops,Sweaters +936,73,I am in love with this sweater!!,"I have worn this sweater many times, i have received great compliments!",5,1,0,General Petite,Tops,Sweaters +914,32,Cute!,"I ordered this in black and loved it so much, i ordered the 'red' color too. it hasn't arrived yet, but i'm hoping its tan like it appears to be online. it fits tts (5'3"" and 110lbs) - the xs fit perfectly and wasn't too long.",5,1,0,General,Tops,Fine gauge +936,31,Too short,"I really didn't expect this sweater to be so short. i'm 5'8"" and there is no way it would fit me properly. i honestly didn't even try it on. i pulled it out of the bag and put it right back in and returned it. it looks like a crop top. i bought the blue, which was not as rich and nice looking in person as the picture. i love most things i buy through retailer but this was a swing and a miss.",2,0,1,General Petite,Tops,Sweaters +936,36,"Cute, but...","Very lovely sweater - lightweight with cute detailing at the side of the waist, sweet but not saccharine bow at the back of the neck. i really wanted to love this sweater, but it had to go back because it looked, um, used. pilling along the arms before i even got to wear it? it got returned, sadly.",3,0,0,General Petite,Tops,Sweaters +936,63,Bright sweater for a gray day,I love this sweater. it is classic but has details that make it fresh and different. the tie in the back offers very interesting detail.,5,1,0,General Petite,Tops,Sweaters +936,67,,"I love this sweater! i was nervous after reading the reviews, but ordered it anyway and i'm so glad i did. i got it in grey- the tie back/v-back feature is my favorite part-- flirty and feminine, unique but also subtle. i don't think the material is scratchy. it may not be as soft as some of my other retailer shirts, but i wouldn't call it scratchy. it was perfectly comfortable to me. i will say that it's a little short though. i vary between a m and l, depending on the shirt (5'9, long torso, 36c",5,1,0,General Petite,Tops,Sweaters +909,38,Perfect fit..,"I ordered this shirt through the website hoping it would look like it did on the model, it does! very nice, thick fabric. fits true to size, no complaints at all.",4,1,0,General Petite,Tops,Fine gauge +862,43,Romantic,"Lovely holiday blouse, flows at the bottom but doesn't bell out like some tunic blouses. the arms aren't cut in to much and i found that flattering to my shoulders the velvet and trim is strong and solid while the bottom half has a sweet little polka dot finish. charming and romantic.",5,1,0,General,Tops,Knits +710,66,Substantial leggings,"Wasn't sure about sizing so i ordered the xl and they fit my 5'3"", 153 lb frame. they'd work for any height because they gathered quite a bit around my ankles but easily adjusted to look like they fit. amazingly, they don't show the squishy bits at all. it's a substantial thick knit. i'm returning because i don't have the body for these and i'm short waisted so the top, wide, slenderizing part of the waistband starts well above the area where i carry my weight in my tummy, mid section. i highly",4,1,2,Initmates,Intimate,Lounge +936,38,Weird fit,"This is cut very strangely, i'm short waisted and this barely covered my belly button. the material is rough and scratchy. did not like at all and will be returning.",2,0,0,General Petite,Tops,Sweaters +710,29,The best leggings,"Super comfortable while also being very flattering. i'm 5'7, 135 lbs and ordered a size small which fits perfectly. i get lots of complements on the color, which is as pictured. love these for yoga, climbing, and lounging.",5,1,2,Initmates,Intimate,Lounge +936,32,"Lovely, very warm, not form fitting","I really like this sweater. it is surprisingly warm. it is not very form fitting (which can slenderize), but i enjoy layering with a lacy tank and don't have to worry about sucking in the guy either ;). i'm 5' 8"" and typically wear between a 6-8, the medium was definitely baggy, i ended up with a small in 2 colors.! + +oh, and the bow detail really does add a fanciness to an otherwise comfy/snuggle sweater.",4,1,0,General Petite,Tops,Sweaters +995,48,Very happy!,I love this brand and the 8 fits perfect. i am typically an 8 in retailer skirts and this is no exception. medium to heavy weight soft denim which is more of a darker denim shade with a wide a-line cut. the pockets are distinct and give the skirt character. it is pretty long and full looking on my 5'4 inch height. i purchased this on sale plus promo and very happy i was able to receive it as it became a sold out style in my size. the hem is a wide stitch hem and gives it a nice look. i look forwar,5,1,1,General Petite,Bottoms,Skirts +823,52,Top has great colors,Love this top! very flattering and fits true to size! top hits below mid thigh.,4,1,0,General,Tops,Blouses +936,60,"Cute, simple sweater","This is a nice, simple, understated sweater. i got the green and the navy and they look different enough to keep both. it''s a throw-it-on-over-a-shirt sweater, with the right length to let whatever is underneath show. and the ribbon tie on the back is a nice touch. + +i also like that the width of the sweater is an alternative to everything that's cut so tightly fitted - it's a nice width, with some room, without being boxy.",5,1,0,General Petite,Tops,Sweaters +936,37,,,5,1,0,General Petite,Tops,Sweaters +936,40,,"I purchased this sweater because of the cute unique diagonal design. however, i was largely disappointed by the fiber of the sweater, it is rather coarse to the touch and a bad fit. on the model it looks nice, but it was large around the torso, yet short at the same time creating an awkward and unflattering fit. i shall be returning it.",3,0,0,General Petite,Tops,Sweaters +862,26,Gorgeous,"This top is gorgeous!!! the picture just does not do it justice. i bought it solely based on the one review that said it looks very good. and it does! the velvet work at the top makes it look very dressy. the sleeves are not with big holes that show too much, the top and sleeves are perfect. i really like this top. i can't believe that the photo doesn't show it's gorgeousness, it looks so much better in-person. i so wish it came in more colors!!",4,1,9,General,Tops,Knits +930,22,Pretty at first glance,"I saw this sweater online and have been looking for a unique sleevless sweater for some time now. its a very beautiful sweater so i ordered it right away when i saw this design. i recieved the sweater in the mail and really wanted to love it but it just wasn't for me. its very well made and thick which i liked but i usually fit in small sized tops for retailer but they didn't have a small left in the sizes, i ordered a medium and it still ran small, i was very surprised. its was also disappointing",2,0,4,General,Tops,Sweaters +875,45,Beautiful sweater!,I was not sure how this would work on my short stature but it is truly cute. the color is a lovely cranberry red and the weight is light and versatile. this piece can be worn layered in fall and winter but also with crops or shorts and a tee in the spring and summer.,5,1,0,General Petite,Tops,Knits +829,31,Cute top,"Overall this top is very cute. it needs to be ironed before you can really judge it's cuteness! the sleeves are short and feature gold toned plastic buttons. for the price of the shirt, i thought the buttons looked cheap.",4,1,0,General Petite,Tops,Blouses +1038,59,,Love love! i am thick in waist and have thinner thighs and legs and these fit beautifully !! size down one size. very comfy. no muffin top or tummy rolling over and nice boyfriend look without being too baggy. very cute. so happy i found these. worth trying on.,5,1,4,General Petite,Bottoms,Jeans +836,38,Winner,"This top is so pretty and easy to wear. the material is super soft, it's long enough to tuck in as pictured but looks fine untucked. the back is gorgeous and will prompt me to wear my hair up to show it off! great purchase on retailer weekend, i'd be surprised if it lasts long enough to make it to sale.",5,1,5,General Petite,Tops,Blouses +836,38,,Love this shirt. it is long enough in back to wear with leggings. it is very cute and casual on. not fitted at all. i am 5'2 and ordered a regular size so that it fits longer.,5,1,0,General Petite,Tops,Blouses +1035,31,(mostly) good,"I have a curvy figure and have always loved the way pilcro jeans have fit aka plenty of stretch for butt and thighs and small waist. i was really excited to try their skinny, high waisted version. first, i don't like the faux whiskering on the jeans, i think it makes them look cheap. second, the fabric had more stretch than i'm use to for pilcro denim, and made them feel low quality. i don't think they are terrible, i just think i should have been more careful about reading the percentages of",4,1,4,General,Bottoms,Jeans +875,74,Versitile,"Stylish. great color. great fir in between weather. +may need shortening but constructed in a way that will make it easy.",5,1,0,General Petite,Tops,Knits +789,53,Cupro like silk,"Amazing dye so unique +you can put in washing machine no prob make sure you put in dryer with a non static dryer sheet for the dress to be super soft",5,1,5,Initmates,Intimate,Lounge +1038,30,Pilcro jeans,"Overall, very nice pair of boyfriend style jeans. super comfy. i asked one of the in store stylist for help styling them- she was very helpful and showed me lots of possibilities for these pants. also good for a post-partum tummy :)",4,1,0,General Petite,Bottoms,Jeans +836,70,Great quality chambray top,"Chambray top that is soft, but thick/heavy so it drapes well and is very flattering on. untucked, the top is shorter in the front and longer in the back. it hangs like a tunic, almost a-line so do not size up or you will have too much material. i am a sz small in most retailer clothing, and the sz 2 fit nicely. sz 4 was too loose around my arms, and the sz 0 was too tight around my chest. nice neckline and a pop of surprise with the gorgeous lace detail in the back.",5,1,8,General Petite,Tops,Blouses +1038,38,Love them!,"I sized down from a 27 p to a 26 p because i like a less loose fit. if you want a slight baggy look then go with your usual size. i love the style, contrasting hem color and slight distressing look. great for end of summer into fall!",5,1,6,General Petite,Bottoms,Jeans +864,41,Gigantic,"This looks cute in the web photo, unfortunately it is absolutely huge in person. i got the small and have to return it because it is not wearable for me.",2,0,0,General Petite,Tops,Knits +872,62,,Very cute top. the sleeves were more quarter length on me. looks great with jeans,5,1,7,General,Tops,Knits +1038,39,A fun and sassy jean,"If i could live in pilco jeans i would. maybe that's my goal for 2016. they are so comfortable and flattering! i sized down as others and i'm really happy with the fit. my other pilcos are a skin tight 30, but these are a comfortable 29.",5,1,3,General Petite,Bottoms,Jeans +1049,38,,"The black band seemed to cut across the widest part of my hips, emphasizing them. the pants are sheer. the fabric was not comfortable against my skin. overall, the pants were a miss.",2,0,2,General,Bottoms,Pants +836,38,,"The top is so soft, and the lace detail in the backs makes this your no-so-average chambray top. the fit is flattering for a curvy figure.",4,1,0,General Petite,Tops,Blouses +1077,63,Easy dress to love,I bought the xs in green and every time i wear it i get compliments all day. it's a more youthful style than i usually wear but i couldn't resist the dark green color. i wear this with black leggings and flats and it's a perfect dress for a school day.,5,1,0,General Petite,Dresses,Dresses +1038,42,"Good quality, strange fit","I love pilcros and tried everything to get these to work. one size down, two sizes down, no matter what, they just don't look right. the droopy look didn't work for me.",3,0,0,General Petite,Bottoms,Jeans +1038,23,Great jeans,"Great boyfriend style jeans. run large, though - i had to order a size down.",5,1,0,General Petite,Bottoms,Jeans +836,63,Love! so comfy and chic,"This top is so beautiful and well made, and the detailing in the back is gorgeous. it's unexpected and makes this piece really special. it does run a tiny bit large; i've gotten retailer chambray a before, and they usually shrink a touch in the wash and then for just right. i haven't washed this yet, but even a little large it fits well and hangs nicely without being overly baggy. get this, you won't regret it!",5,1,0,General Petite,Tops,Blouses +1077,33,Please make this in solid colors!,I love this silhouette. it is such a flattering cut! but the prints didn't work for me. please make this in black! or grey! or any solid color. pretty please...,4,1,0,General Petite,Dresses,Dresses +1035,42,Not so flattering on the backside,"I love my very old pilcro stet jeans. they are the perfect denim weight, and the back pockets are set in a way that is very flattering for the tush. not so with the newer pilcros unfortunately. the denim is thinner and may have more stretch and they get worn and pill on my inner thighs. and the back pockets are set far apart making my back side look unnaturally wide. it's a bummer.",2,0,0,General,Bottoms,Jeans +1077,31,Great dress,This dress is very flattering and well made. i can hardly wait to wear it. it's one of my favorite retailer purchases.,5,1,0,General Petite,Dresses,Dresses +930,74,Great sweater,"Although i find $150 a little pricey for a sleeveless sweater, buy it. i bought a size medium which fits me exactly. it is an off-white, which is what i wanted. i will be wearing it with a sweater skirt, for the ""sweater dress"" look. it is comfortable and versatile-also with a jacket.",5,1,4,General,Tops,Sweaters +1077,24,A very blouse-like dress - very cute,"This dress is very cute on. very flouncy. i know it looks like a gingham dress, but it's a more like a silk dress with a gingham pattern. the one issue i had was that it ballooned out at the back where you tied it on any size (bug or small), and i am larger on top, so i don't know what would happen with someone with a small chest. i wouldn't have minded if it did the same thing on the front, but it was just the back.",3,1,0,General Petite,Dresses,Dresses +1038,32,Great casual,"I was initially drawn to the shade of blue that these were as i was looking for a lighter late summer denim. after trying them on, i found that i did not want to take them off. they fit well and did not squeeze me anywhere. no muffin top as another reviewer noted. they are definitely a looser fit so size down. i probably could have even sized down again because i found them to stretch out after a while leaving a less flattering fit but certainly still s comfortable wear. absolutely worth a try!!",4,1,0,General Petite,Bottoms,Jeans +1038,49,Not for everyone,"If these jeans work for you, you're a lucky girl! the fabric is really thick and soft. pocket detail is cool and the hidden multicolored button placket is a nice detail. i ordered down a size. they're tight across my thighs and seem shorter than a 30"" inseam. the fit is boxy and not flattering on me but pants are so cute i may keep them anyway.",2,1,0,General Petite,Bottoms,Jeans +1049,47,,The fabric is quite thin and sheer. it runs a little small also. that being said they are really beautiful pants especially on sale,4,1,4,General,Bottoms,Pants +1038,31,Cute jeans but runs large,"I'm 5'2 and 105 lbs; normally a size 25 petite for most jean brands but learned after receiving my online purchase that these jeans run large. i exchanged them for a size 24 petite and thought they fit okay at first but after testing them around the house, they kept stretching and i felt like they were going to fall off my waist! didn't want to wear a belt with these because it distracted from the relaxed style. sadly had to return my purchase.",3,1,1,General Petite,Bottoms,Jeans +1038,56,Freshly fashionable & comfy,"I just bought these jeans today & i absolutely love them! +i usually wear a 25 or 26 in any jean depending on the fit. i bought these in the 25 regular & they fit so perfect. they definitely are not a legging fit nor are they a baggy boyfriend style. on the tag these jeans are described as a girl fit - slim with a dash of ease. that describes the fit of these perfectly. they are not tight & not baggy at all, just a bit of ease - at least on me. i am 5' 5"" & the regular length is perfect. the fab",5,1,6,General Petite,Bottoms,Jeans +980,26,Jacket even better in person!,This jacket is beautiful! the embroidery is very well done! the jacket is fully lined in black. i usually wear a l/xl and definitely needed the xl as it runs a little small.,5,1,4,General Petite,Jackets,Jackets +1038,44,Great weekend jean,Just got these and they are great..i ordered mine online and took the advice of many reviewers to size down. i usually wear a 27 (sometimes a 26) but got these in a 26 and they are perfect. the material is soft and stretchy. would highly recommend these to all.,5,1,1,General Petite,Bottoms,Jeans +875,47,Beautiful color,"I kept coming back to look at this vest for the color and design and finally gave in. vest is my favorite when dress layer. i hesitate because no descriptions about the model height, the vest may look perfect on her and look like a maxi dress on my 5'4"" body. it turned out just fine. the front is below my knees like the picture of the model. i love the beautiful red and the material that stretches just enough for my arms to move around . this is definitely a good buy.",5,1,3,General Petite,Tops,Knits +872,27,Love it!,"I just bought this shirt last week in stores and i love it! it looks different on me. i bought an xs, though i'm 5'8"" 135lbs. not typically an xs( though i'm pretty small on top). it's 3/4 sleeves on me and tight at my forarms. i love it! it so cute and you can't see in the picture but the design has a tiny bit of shimmer. the detail is cut out but not really see though so i don't feel like i have to wear a tank or anything under it as long as i wear a nude bra. did i mention i love it! i hope i",5,1,1,General,Tops,Knits +836,27,Love love love,"This shirt is so great! i fell in love with it once i saw the back. if you're looking for a classic looking shirt with a little pizzazz, this is it. i have wide hips, and this tank if great because it's a little boxy without making me look huge. it's excellent quality, and i look forward to wearing this tank all spring and summer!",5,1,0,General Petite,Tops,Blouses +980,45,"Beautiful, substantial jacket",I pair this jacket with a black pencil skirt and it looks very put together. the embroidery is lovely and well done but the jacket would have been nicer with a polyester lining because it clings a little when you put it on. and it's an awfully heavy jacket for the summer. but overall i love it and how i look in it. i think it runs true to size.,5,1,1,General Petite,Jackets,Jackets +829,46,Beautiful!,"Wow, i got this top in blue and i'm in love. love the whole off the shoulder trend and this does not disappoint. i sized a bit down ( usually get a 2) and i got a 0. since it fits a bit snug and the back shows the fau- tank in the bank, i find it really classy.. like your on-trend but not trying to bare too much skin. i think it could even be worn in a professional setting because of that. its very upscale looking in the navy. +would totally buy different colors if it came in others, but i'm no",5,1,4,General Petite,Tops,Blouses +1038,22,,"These jeans are adorable! i'm so sad they didn't fit. my legs are bigger than the rest of my body, but i usually have good luck with wide leg pants. if you are looking for wide legs, these are not the jeans for you!",2,1,1,General Petite,Bottoms,Jeans +1038,56,Super comfortable and flattering,"I found these jeans to be more fitted than slouchy. +for reference, i'm 5'4"" and 160#. i'm heavier thru the hips and thighs and ordered both the 31 & 32 petite (i usually take 32 p in pilcro) and the 32 fit well but was by no means slouchy. however, still very flattering and unique. i had purchased the other pilcro em in 32 p and they did fit looser and i would also recommend that style. always count on pilcro for great fit and style.",4,1,6,General Petite,Bottoms,Jeans +1038,49,Nice jean,"These were very nice, but had to return. i have a hard time with jeans as i am big and curvy in hips and butt. these were tight in those places and big in the waist,",3,1,2,General Petite,Bottoms,Jeans +988,23,,"For reference i am 5'5"" and 145lbs with an hourglass figure and bought a 8 petite instead of my usual 6 because i wanted it to be a bit shorter with the a-line design. the skirt fit perfectly, but the waistband is not stretchy like the rest of the skirt. the quality is great but the design and color is not. the skirt is actually much darker of a red than in the picture, more like a dark red wine. it is super a-line which was not flattering on me and the layers are all individual pieces of fabric",3,0,15,General Petite,Bottoms,Skirts +829,38,"Love, but difficult fit","In maeve i run between a size 2-4. my regular size 4 was too tight in the shoulders, the fabric didn't drop off the shoulders like it does on the model. it also felt too tight near the back were the button is, almost as if there was not enough fabric. the sleeves were also too short and tight around the arms. sized up to a 6 and all those issues were fixed. since this top is billowy anyway the size up really didn't mess with the shape of the top. love the gold color, so pretty!",4,1,0,General Petite,Tops,Blouses +836,35,Staple with a twist,"Love the crochet detail on the back. yes, it does show the bottom band of your bra. i think i'm okay with that. i had on a magenta colored bra when i tried this on and it was a nice pop of color. i think the top runs tts to slightly big. if you're in between sizes i would go down. i am a 34b and i ordered a size 4. so i haven't tried on the 2 but i think it would fit too and not be quite as loose in the arm hole area. i'm sure this top will sell out before it hits sale.",5,1,4,General Petite,Tops,Blouses +829,54,Love this top,"I wanted this top so bad i ordered one size up (only size left in navy) and it is a little big but i still love it. so fun, love the color.",5,1,0,General Petite,Tops,Blouses +1077,71,Beautiful! but big,"A really beautiful, well made dress. runs extremely big though! i'm not petite by any means and ordered a large but i'm positively swimming in it. an oversized look works for this particular dress, but i think it's supposed to be more fitted so i would recommend sizing down from what you might normally expect for a piece of this style.",5,1,0,General Petite,Dresses,Dresses +1036,40,So mixed on these,"I'm obsessed with the cut and style. being 5'11"" i don't have a lot of good jean options to wear with heels. these jeans are amazing fit beautifully but the fabric quality doesn't seem to be there. after 2 wears the seam started separating at the crotch. and thus wasn't the case where i was trying to wiggle into pants too small. i ended up returning but may give them another shot at some point.",4,1,4,General,Bottoms,Jeans +836,24,Beautiful material and back crochet,"I saw this in the store and grabbed it to try on due to the material and the back. i was surprised how nice it felt on and how the back looked. i had a blue bra on and it really could not be seen which was a worry. i loved how the back lay and that it was shorter in the front. even for the sale price it was expensive, but i went home with it!! it will go great with long skirts, jeans, and any color pants. i was very happy to walk out of the store with it. i am 5'4"" and about 120. i have a slende",5,1,0,General Petite,Tops,Blouses +872,46,On the fence,"This top is gorgeous, but the sleeves are all wrong. they're very tight for about 5"" at the bottom, right up to the elbow making it tight when i bend my arms. it's also loose in the armpit area, the bottom of the sleeve starts under my chest, and is styled that way, so i'm considering returning. i actually drove an hour to the nearest store to size up, but the sleeve feels even more tight. ugh! i love the quality & looks otherwise, and the front is double layered so no need to layer. the front i",4,1,0,General,Tops,Knits +803,30,Quirky & cute,"Okay, this is the cutest sleep jumper i've ever owned. it's soft and cozy, and even a tiny bit sexy. i give it 4 stars because it's a little on the thin side; not sheer but close. really fun little piece. definitely recommend.",4,1,2,Initmates,Intimate,Lounge +1038,49,Comfy jeans,"These jeans run true to size, very comfy and i love the frayed bottoms",5,1,0,General Petite,Bottoms,Jeans +1038,30,Disappointing,These jeans were so cute on- wore them a handful of times and they'd been washed twice. put them on and - rip! ripped right at the crotch in the front so not fixable- and on vacation no less when i had to scramble to find something else to wear. poor quality - disappointing and not what i expected from retailer. :-( they also run large even for a more relaxed fit- sized down for a good fit.,1,0,1,General Petite,Bottoms,Jeans +1038,29,"Loose in the crotch, jegging-like everywhere else","I think you have to have stick legs/legs for days for this style to fit as pictured. i thought i had found the perfect boyfriend jean, but once these babies arrived i was really disappointed. the color is slightly brighter than the picture, which is fine, though i was digging the slightly greyed look. + +anyway, these were loose in the waist and crotch and fit snugly everywhere else. i have a fairly athletic build, so it's not uncommon for me to have issues with fit around the calves and thighs,",3,0,42,General Petite,Bottoms,Jeans +1038,41,,,5,1,0,General Petite,Bottoms,Jeans +1038,41,Comfortable jeans!,"Love these funky jeans. they are a little baggy, like boyfriend jeans. i wore them with a linen white tee and wore them dressed up with a silk top and boots for ""casual"" friday. they are versatile. love these jeans!",5,1,1,General Petite,Bottoms,Jeans +803,40,It just wasn't perfectly cozy,"I love the concept, and it fit nice and looked cozy yet a bit sexy. however, the material was a tiny bit scratchy and warm. so with no long sleeves, you would have to wear a sweater or something on top and i was looking for a simple one piece. i would have loved this and not returned it if the fabric was soft. it should be, it's all about being cozy.",4,1,1,Initmates,Intimate,Lounge +1038,38,Cute jeans,"So let me start by saying i love non-skinny cut jeans. i'm a curvy athletic type with thick legs, so when a jeans comes around with a ""generous"" fit, i'm thrilled! these jeans are generously cut through the hips and waist, giving it a boyfriend type of cut. the denim is soft, like your old favorite pair of jeans that have been washed 1000 times. i did size down one size and probably could have gone down one more size, but i still want a bit of a looser cut. pilcro denim always has stretch in the",5,1,0,General Petite,Bottoms,Jeans +393,26,Love retailer bathing suits!,Perfect fit and i've gotten so many compliments. i buy all my suits from here now!,5,1,0,Initmates,Intimate,Swim +875,52,,Love this so much! i have received so manu compliments!,5,1,0,General Petite,Tops,Knits +1038,56,Good alternative to boy jeans......,"Let me begin by saying i own quite few pilcro jeans, the script, and hyphen to name a few, absolutely love them, they fit tts, super soft with just the right amount of stretch. the em jean have the perfect retro look, super soft, with just enough relaxed fit to still look stylish. unfortunately, i noticed that they have gone up in price a bit since they were introduced as the signature jean for retailer, andddddd, they are no longer made in the usa, but in china....so you may need to try on",4,1,8,General Petite,Bottoms,Jeans +1074,57,,"While the dress is pretty, it's a lot more boring than it seems online. the box top is actually a completely separate piece, which is kind of neat - you can choose to remove it or not. the box top is very wide (much wider than on the model) and very unflattering! also, the dress is a stiff silk fabric and doesn't flow like you would think it would. returning it!",3,1,28,General,Dresses,Dresses +870,24,Love this top!!!!,"This is a sweet, lightweight top that i will wear again and again. nice touches in the front and back. little keyhole opening with two buttons at the neck in back.",5,1,11,General Petite,Tops,Knits +870,47,"Boxy, short and unflattering","Ordered this top online, as i loved the colors and design, but i should have listened to the other reviewers. i ordered my usual size m, and it was just very unflattering. it was short and wide, not at all like it's pictured on the model. needless to say it was immediately shipped back.",2,0,0,General Petite,Tops,Knits +870,62,Not like the picture at all,I ordered my usual medium. the tops length came only to my waist and was wide and unflatering. the armholes were right under my arms. too bad as this looked so cute in the picture. i returned.,2,0,6,General Petite,Tops,Knits +975,54,Pleasant surprise!,"This outfit was online for months with no review so i was skeptical to order but very glad i did as it is better in person. +it is beautiful, high quality tommy bahama inspired suit. i am 55 so short shorts are risky even though i am a typical size 4 or 6. i took a 4 in the blazer and i am typically a high 4 or low 6 in size so i would say the blazer is very true to size. i took the size 8 in the shorts as i felt they ran small and i wanted the extra length. they ride a bit lower on my waist an",5,1,1,General Petite,Jackets,Jackets +866,48,I like it in xxs,"I think i ordered this in an xxs because of the other reviews making it sound like it ran large. and i'm happy with the size and overall look of this tee on me. i'm 5'3"" about 105 lbs and 34aa (i generally order xs or xspetite). the cuffs of the sleeves are pretty tight and the v-neck is higher than i'd like but otherwise i really like the loose, casual fit. there's no armhole seam, they're dolman sleeves. the tee i got translates to ""the beautiful coast"". it does say made in usa on the label. a",4,1,0,General Petite,Tops,Knits +866,28,Comfy and cute,"Super cute and comfy, perfect for fall and winter (apre ski!). great with skinny jeans or leggings and ankle boots.",5,1,0,General Petite,Tops,Knits +870,44,Amazing.,"I had my eyes on this top ever since i saw it online. i couldn't be happier with it. it is very comfortable, flattering and unique. i think it will wear well into the fall with black skinnies.",5,1,2,General Petite,Tops,Knits +948,24,Stunning!,"This sweater is so beautiful on. it is thick material, but does not make you look boxy. it fits so nicely and is flattering. the design is just gorgeous. if you are considering this sweater-- get it, you won't regret it! + +i'm normally a small (4-6) and i ordered a small. it fits true to size. the fit is *perfect* so if you want it slightly more relaxed, order one size up.",5,1,4,General,Tops,Sweaters +866,33,Boxy. large.,"Boxy, unflattering, and large. + +i'm 5'2'' and a curvy 135 pounds. this top (size s) swallowed me, had no shape, and the material didn't feel great either. i wouldn't even purchase it on sale--there are other graphic tees that are much nicer. i'll be sticking to splendid and sundry.",3,0,2,General Petite,Tops,Knits +1074,45,Cheaply made,"I liked it online, but i didn't want to pay shipping for something i wasn't sure if it is good. when i saw one size 4 in the store, i was excited to try it on. however, it didn't quite meet the expectation. the dress fits a little loose (donna morgan size 2 fits me better), and it is not lined at all. the separate top piece is just way too big without any shape. there must be a clip on the back of the top shown on the model to make it look smaller. i love the blue floral print, but that is the o",3,0,6,General,Dresses,Dresses +1072,43,Retro awesomeness,"Super comfortable and cute!! i have received tons of compliments one this dress. the material is soft and the print/colors are awesome. this dress will get a lot of use over fall, winter and spring. runs a little big. i am typically a s but chose the xs . love love love!",5,1,0,General,Dresses,Dresses +1099,41,"Very cute, well made","This dress is short, but super flattering. i was surprised when i tried it on in-store that i liked it as much as i did! the lace detail around the neck is unique and beautiful. i'm 135, 5'8"", 32dd and the small fits perfectly. it's easy to wear and can be dressed down with tights and boots, or dressed up.",5,1,0,General,Dresses,Dresses +1072,64,Love this dress!,"Wanted this dress several months ago, but it was out of stock. finally was able to order and very glad i did, it is perfect! it fits exactly as i had hoped, the length is great, right above my knee and it hangs beautifully. looks great with my caramel colored boots and i received many compliments. just hoping they do some more drop waist dresses, especially for summer.",5,1,0,General,Dresses,Dresses +909,60,"Beautiful, but not for everyone!","At the beginning of the season i lusted over an ivory haute couture side-sliced tunic so much that i almost sprang for the $800 price tag. when i saw this at retailer, i realized it was similar, but had certain design elements that made it even more unique than the other. i just received it, and i was not disappointed! that cable neckline is beautiful, the 3/4 sleeves are perfect to show off a bracelet or two, and whether worn with skinny jeans, as shown, or wide leg trousers (as the haute",4,1,16,General Petite,Tops,Fine gauge +909,34,,"Runs true to size but some details were not as expected. the slit is only on one side and the look is more like sweater dress than sweater tunic. the length is not as long as pictured on the model. i'm 5'7 and the sweater ends half an inch below knees. +the side slit starts too high, my waist is exposed unless i wear high waisted leggings. +other than that the sweater is darling. the cotton (68%) and acrylic (32%) thread is soft and thin, not bulky at all. the sweater stretches lightly with wear a",4,1,5,General Petite,Tops,Fine gauge +1072,35,"Great dress, poor stitching","After the second wash, the stitching in the armpits completely fell apart. after sewing it back up, wearing it, and washing it a third time, the stitching in the other armpit completely fell apart as well. not sure if this was just a fluke, but it was very disappointing. now that both armpits are sewn and all other stitches are intact, i must say that this is a great dress. i would have returned the dress to retailer, but i've already washed and worn it, so again...very disappointing. i would say",2,1,2,General,Dresses,Dresses +1153,42,Hook and eye issues,"With all of the glowing reviews of this dress, i so badly wanted to adore this very special cocktail dress. it fit nicely, the quality was great, but there is a decorative (?) line of hook and eyes down the front which come undone with the slightest movement. i wore the dress out one time and was paranoid the entire time, kept glancing down to make sure i hadn't come undressed. i suppose i could've gotten out the needlenose and crimped them all shut, but decided to take it back. i didn't see tha",2,0,6,General,Dresses,Dresses +936,28,So cozy! love it.,"I have a number of sweaters from moth, and they never disappoint. the ones made with this ultra soft and warm yarn are my favorite. i bought both colors :) i wear it with jeans or dressier clothes-- i'd say it's very versatile.",5,1,0,General Petite,Tops,Sweaters +936,38,Beautifully knit sweater,"The ivory color needs a little camisole or tank underneath. the sweater is beautifully knit and has a soft and nubby texture. hope it washes well. maybe size up if you want a looser, relaxed feel. hits me right around the hip bone and i am 5' 8"". can easily be dressed up or down with accessories.",5,1,12,General Petite,Tops,Sweaters +909,53,,"I love this sweater because it is an edge to it, fit is true to size and its soft and confortable",5,1,5,General Petite,Tops,Fine gauge +1153,37,Too big!,"Due to the black sheath being out of stock in all sizes (for quite some time), i took my chances ordering an 8p in navy which was way too big on me. i also didnt love the navy. i wish i could try the 6 or 6p in black but out of stock and wouldn't arrive in time for my events. sadly returning.",3,1,1,General,Dresses,Dresses +1059,53,,,5,1,0,General Petite,Bottoms,Pants +1072,31,"Comfortable, boho dress","Gorgeous pattern, even prettier in person! runs slightly large in my opinion, could size down. nice to have as a petite option.",5,1,1,General,Dresses,Dresses +1072,40,Beautiful print!,"I saw this dress in the store & loved the print so much i had to try it on. i definitely do not own anything like this. i tried on a m & i agree that it runs large & on my petite hourglass frame it was a bit overwhelming. however, i was prepared for that & paired it with a brown belt & absolutely loved it. the belt made the dress a little shorter & definitely accentuated my curves in a good way. such a beautiful, casual dress that is actually comfortable. i can't wait to wear it with tights with",5,1,0,General,Dresses,Dresses +1072,41,Beautifully bohemian,"I just love this dress! it is so pretty and feminine and comfortable. the colors and patterns are perfect for both spring and fall and i know that this is one piece that i will get a lot of use out of. originally, i thought the cut would be a bit boxy but it is not at all. in fact, the fabric is beautiful, soft, and flowy with a lovely bohemian aesthetic. it looks great with tights, tall boots and a big floppy wool hat. any one considering this dress should defiantly try it on, as it is highly u",5,1,1,General,Dresses,Dresses +1153,82,Perfect lnd (little navy dress),"I originally wanted the black in 00p but it wasn't available around the date of my husband's company party. i was bummed out until my 2nd choice (the navy) was delivered and wow! i love this dress. i felt stunning without having to show much skin. i followed another reviewer's advice and applied pliers to the front fasteners. the zipper in the back is all it takes to slip in to this hot-mama piece. i wore this dress with a simple gold cuff, neutral colored pumps, and a gold clutch. i look forwar",5,1,4,General,Dresses,Dresses +1072,26,Beautiful print,"This is a gorgeous dress. the print is beautiful and unique, however because it is baggy the dress does run big on smaller frames. i would definitely recommend sizing down.",5,1,0,General,Dresses,Dresses +1153,29,I love this dress!,"Fabulous dress. i was looking for that one dress that i could spend a little money on and wear to a variety of events, mostly weddings. i received tons of compliments and was very comfortable in it. the hooks on the front of the dress to start to unhook themselves if you don't really clamp down on them, but that was the only issue. i don't know how flattering this would be on shorter ladies, only because it ends right around your knees.",5,1,1,General,Dresses,Dresses +811,66,Runs small,This is baby soft and a great basic. i ordered my normal size large and it clings in an unattractive way so you might want to size up for a better fit if you're not going to wear it as a layer. the black color is saturated in a good way. it's also very long but i'm short so this would be perfect for taller frames.,5,1,0,Initmates,Intimate,Lounge +967,29,Love this jacket!,"I love this jacket! i was hesitant to order, but i'm so glad i did. it's such a cute, unique blazer to add to my wardrobe. fit is very true to size for a blazer.",5,1,0,General,Jackets,Jackets +936,31,Comfy cozy,"I was in search of a few sweaters that were functional for the winter, but also fit my style. i will have to wear a camisole underneath, but i love the feel and the fit! i always have a problem finding sleeves that are long enough. the sleeves are an appropriate length.",5,1,0,General Petite,Tops,Sweaters +1072,35,Love this dress!,"I love this dress! perfect with high boots. and the quality of fabric looks and feels great. fits just like it shows in the picture. + +i am size 6 and i ordered the medium and its flows well on me. i like it a little looser for that boho look.",5,1,0,General,Dresses,Dresses +936,25,Thick and cozy,Great sweater. cozy and thick. the bands at the waist and wrists help keep this sweater in place. the loopy knitted fabric adds a bit of texture to the gray which makes it a little more exciting than your average gray sweater. i got a small and it fit perfectly.,5,1,0,General Petite,Tops,Sweaters +811,32,Great basic!,"I have this in the blue/teal color, and i love it, so far! i'm considering buying it in other colors. this tee is stretchy, comfortable, and soft, even after being washed a few times. it fit true to size on me (xs), although it's a bit form-hugging, so if you want a looser fit, consider sizing up. the only thing about the blue is that it's not quite as dark as in the photo on the website. i wish retailer would make these kinds of basic tees more often!",5,1,0,Initmates,Intimate,Lounge +1072,39,Size down please,"I love this dress because it's so comfortable and has this hippie peasant vibe that i don't generally wear. plus it's a three season dress with pockets! bought the medium but i should have sized down to a small. on top i'm a m/l girl and the medium is huge. i'm not going to exchange since i wear a sweater over it right now. this dress looks good with or without a belt, with long boots, booties and sandals. so happy with this purchase!",5,1,0,General,Dresses,Dresses +1153,39,Gorgeous classic in navy,"Byron lars knows how to make you look like a woman with his magical dresses! i decided to get the navy (i also own the sold-out marguerite aka carissima in bronze) instead of the black or white since everyone and their mother owns it already. the lace of the top is different--more delicate but less intricate. it's still very beautiful. my body type is inverted and the dress is hourglass, so the size 8p fits great on top but loose on my hips and rear. i'm going to keep this dress and do mo",5,1,3,General,Dresses,Dresses +1072,61,Huge for petite,"When i ordered this online, i should have paid more attention to the picture. the dress comes to the knees of the 5'10"" model. i was swimming in small petite size. i checked the label and wondered whether i received the wrong size. nope, it was ps. either the dress was mislabeled, or this is cut huge. returning. too bad because the shape and color are cute.",1,0,0,General,Dresses,Dresses +1072,44,,"This dress is one of my recent faves from retailer. the fit is great. i'm 5'8"" and 145. i ordered the small and it's perfect.",5,1,0,General,Dresses,Dresses +975,64,Disappointing,"I built a new wardrobe around the three lovely velvet blazers: moss, copper and burgundy. they are soft, well-fitting, pretty linings and very satisfactory. this new version is stiff material, and ill-fitting. not coming in petite is a problem and it may fit others better, but it is too full across the front. with the stiff materials, this is a bad fit. disappointing and going back.",2,0,0,General,Jackets,Jackets +1072,52,,,5,1,0,General,Dresses,Dresses +1094,44,It does work for busty gals!!!,"My mom pointed out this dress in the store a while back and i said ""cute, but no way i could pull that off. ""i am a short curvy and busty lady and have never been able to wear strapless dresses. i ended up ordering it for a wedding and it was a perfect fit!!! i got the petite small and the fit up top is snug but comfortable and holds the ladies in with no bra needed. amazing. the fabric is dreamy and this dress is so easily dressed up or down. hides flaws, excellent all around.",5,1,1,General Petite,Dresses,Dresses +927,36,Buy this!,Fits perfect!,5,1,0,General Petite,Tops,Sweaters +927,48,,,5,1,0,General Petite,Tops,Sweaters +1049,62,Maybe if they go on sale...,"These are cute...nice overall fit (tts) and length was like model on my 5'7"" frame...quality and comfort were also nice. for me the issue was color...when they came in at first i did a double-take wondering what i had ordered and if it was the right item. the colors are very bright, most notably an almost neon orange. the colors plus the diagonal lines/blue hem combo felt a little clown-like to me. i try to pick versatile items that i can wear multiple ways, and i just couldn't imagine many ways",4,1,5,General,Bottoms,Pants +927,20,More of a poncho than a sweater,"I tried this on in the store in the xs size. the pattern is striking and really makes you think of all the things you love about fall. having said that i did not buy it and probably won't unless i find it on the sale rack later. it is really more of a poncho than a sweater. the fit is very oversize through the body and i tried the xs size. it is also fairly cropped on me as i am tall. i would only wear it with a shirt underneath. the sleeves and not attached to the shoulder, but start further do",3,1,1,General Petite,Tops,Sweaters +864,23,Cute but too short,This top is very cute and if you are short you will love it. i am tall and the dividing line of color block kept rising up over my bust so it looked weird. it made it look like an ill fitting maternity top. had to go back.,2,0,10,General Petite,Tops,Knits +1078,35,Unflattering fit,"This dress runs a bit small. the large arm holes were unflattering to my small chest. also, this dress seemed to make my belly protrude. it kind of made me look pregnant in a way that no other dress has! i could see this dress being flattering on someone with a very flat stomach or a large chest. not me!!",3,0,0,General,Dresses,Dresses +864,46,"Comfy tee, great for xl","I ordered the navy/green combo in xl and it's prettier in person. the fit matches the model so it's true to size for me. it is loose through the body. it's not slimming but not widening either. if you like how it looks on the model, that's how it should be when you try it on. + +it's soft and flowy and perfect for feeling comfortable. i love how the arms and chest are more fitted. the material has give to it. the stitching everywhere was well-done, no loose strands. it's a great basic. i'm going t",5,1,2,General Petite,Tops,Knits +927,37,,"Love the look of this poncho - which is not as large/billowy as i thought it would be. i tried it on as a whim in the store and fell in love. the colors are more beige than gray, for those of you with pale/blue underdone complexions. it may wash you out. love the orange knit running through to give it a little pop. i'm 5'9""/132 pounds, and the hem was a bit cropped on me. may want to consider a tank top or t-shirt underneath.",5,1,0,General Petite,Tops,Sweaters +1110,55,I really wanted to like it....but,"The dress was just too ill fitting and bulky and large. it was more matronly looking then anything and did not fit well. if you are going to try it, probably size down 2 sizes. for reference, i'm 5'4"" and 124 lbs. i bought my normal size 4 and it was very large. i would not recommend as it's just not flattering. i love one shoulder dresses and tops so was very disappointed as i'm an retailer devotee....",2,0,6,General Petite,Dresses,Dresses +927,27,Updated classic,"The fair-isle details are gorgeous and the wool is thick, but not itchy. the neckline is a perfect crew cut style- not too tight, but compliments the neck itself. the stitching has a lot of beautiful neutral colors so you can wear this with jeans, blue or gray cords, etc. so many options!!!",5,1,0,General Petite,Tops,Sweaters +864,29,Love!,"I really like this top, the material is thicker than i thought which is a good thing! it fits me very well and is very comfortable. i definitely recommend this shirt!",5,1,3,General Petite,Tops,Knits +1103,49,Runs very small on top.,"This dress is quite lovely in person, but it runs very small, particularly in the bust. i'm usually okay with a large in retailer dresses (sometimes medium), but i had a hard time getting into this, and the top was literally about 10"" from being able to zip up. granted, i have a larger than average bust, but that's still excessive, and the fabric has no give whatsoever. +the online pictures are pretty accurate representations in terms of look and shape. i think it would probably be best for pear s",4,1,1,General,Dresses,Dresses +1078,35,Beautiful dress,"Beautiful dress, stretch material makes sure it fits the figure nicely. great value.",5,1,0,General,Dresses,Dresses +1094,46,Dreamy fabric!,"Tried on today, this dress has the most soft dreamy fabric i've ever felt. unfortunately for me, strapless dresses are not flattering on me, but for anyone looking for the perfect summer strapless, this is it. i am sad that it didn't work for me.",5,1,4,General Petite,Dresses,Dresses +1110,46,Too large to be true,"This dress is absolutely charming. i could not find the petite size, so i went with the 0 regular. it was too, too large for me. felt more like a size 4. i am 5'2"" and 112 pounds, thought the 0 would fit. the fabric is soft, the style charming and it is easy to fold and take on a trip- it didn't wrinkle in the package it was shipped in.",4,1,0,General Petite,Dresses,Dresses +927,53,Neck too wide,"I wanted to love this. i have been looking for a poncho-type sweater for our cold midwestern winters. the cream colored one that i really wanted sold out instantly and i missed the window for the xxsp. i ordered this in the xs/sp (smallest size available). i am 5'1"" and 108 lbs with small shoulders. the neck opening is huge. my collar bones and a seciton of my upper back were exposed. this would not keep me warm due to so much exposed skin on my neck, back, and shoulders. i suppose i could get a",3,0,0,General Petite,Tops,Sweaters +927,32,Super frumpy,"This looks so gorgeous on the model on the site, so i ordered it online. it was incredibly frumpy when i tried it on. looks like i took a floor rug, cut a hole in the middle and slipped it over my head. the sweater itself is so pretty, its just too bad it falls so awkwardly on me. i normally wear a small so i ordered the xs/s and the sleeves still fall past my thumbs. its kind of itchy too. will be returning this asap.",2,0,34,General Petite,Tops,Sweaters +1094,40,Very cute!,I tried this dress on today and ended up buying it. its a thicker material and looks better in person. more red and white striped with an uneven hem. the back of the dress is a bit more like a swim suit. i probably is best for smaller chests. i'm guessing it runs a little bit big - as the medium fit nicely on me and lately i'm a large medium/small large.,5,1,4,General Petite,Dresses,Dresses +1135,45,"Lovely fabric, sophisticated style","I am waist-challenged. i like a narrowly cut structured sheath dress, sort of like the 60s styles. this is a great dress either belted or loose with great accessories and lovely shoes. it has so many colors in the pattern, you can wear this with anything, and the fabric is so high-end and quality that you can definitely wear this to work with a jacket and then change into a denim or leather jacket and tough high boots and go out for the evening in the fall-winter. it arrived in the mail and righ",5,1,0,General,Trend,Trend +864,61,,"I've had my eye on this cute knit top for awhile and when there was a sale, i picked up both colors. they fit me like they do the model, a little loose and swingy, but not overly so. the colors look spot-on like the picture. i am rather top heavy, (34dd) but with the colors being darker on the top portion, i feel like this works without accentuating my bust too much. i am 5'4 and weigh 149, the medium worked out great. the knit is soft and it appears to be made well. the only drawback is a rough",5,1,5,General,Tops,Knits +864,27,Love,There's a free people version of this top and this by far surpasses the fit of it. i'm 5'3 and purchased the xl and it fits me exactly like the model. i would say it is tts and extremely soft.,5,1,0,General,Tops,Knits +1078,33,Figure forming,"I do recommend this dress with some caveats. 1: it'll be difficult to find a bra that won't show straps, and 2: it's very figure flattering so if you're body conscious, particularly tummy",4,1,0,General,Dresses,Dresses +1078,43,Very snug,"I tried this on in the store in a size 4, and it was too tight. i'd need a 6 or possibly a 8, if i wanted a little room. (the store didn't have either.) though it was too tight, it was very flattering and more comfortable than i assumed. the neckline is a little awkward. the front straps of my racerback bra peeked out the sides. this might not be an issue with a bigger size.",4,1,0,General,Dresses,Dresses +1094,28,Very flattering,"Although the dress is heavy like other reviews mentioned, it is sturdy enough to not be see through and the material is extremely soft. i am currently an xs or small in nearly all retailer clothing however a d cup bra, i think that if you are a smaller person the dress may be too much to carry, but for those of us that find it is sometimes hard to get a great fit on top and still fitted through the waist ...it is perfect! many compliments & the hem is so fun...also other reviews mentioned the bow",5,1,0,General Petite,Dresses,Dresses +1094,53,Perfectly soft fourth july dress,"I love this dress. the fabric is butter soft, the strapless top stays in place and it hangs beautifully. it is such a wonderfully comfortable summer dress. as previously stated, i'm in love.",5,1,0,General Petite,Dresses,Dresses +1094,51,"Feminine, classic beauty","Let's begin with the fabric....it's heavy, but not in a burdensome way. as soon as you put it on, you feel like you have a quality piece of clothing on. next: aesthetics---this dress is flowy and feminine. and a bonus, it made me look bustier than i am; perhaps because of the stripes. i didn't find myself pulling this dress up all the time. once i put it on, it stayed in place perfectly. bottom line: this dress goes from dressy to casual without a second thought. and it's on sale--grab this one",5,1,0,General Petite,Dresses,Dresses +1094,52,Summer staple,"Maeve did it again! great material, vivid color and amazing fit. i tried this dress on 2 weeks ago but didn't purchase. when i saw that they were having a sale i couldn't get to the store quick enough! +ladies, if you're bottom heavy like i am then this dress will make you look awesome!",5,1,3,General Petite,Dresses,Dresses +927,40,,,5,1,0,General Petite,Tops,Sweaters +1094,44,,"The retailer stylist had showed me this on my way out of the fitting room and i'm so glad she did. i went back in to try it on and loved it!! it almost has a ""spanx"" like stretch to the material which perfectly keeps its shape and is so well made. i also really liked the open part in the back because it adds an extra something to the dress but you can still wear a strapless bra if you desire. i plan on wearing it at the beach on the 4th of july:-)",5,1,2,General Petite,Dresses,Dresses +1078,28,,,5,1,0,General,Dresses,Dresses +1049,36,,,5,1,0,General,Bottoms,Pants +10,38,Comfy and cute,"This dress is comfortable and a great piece to travel with. goes with ballet flats, sandals, to ankle boots.",4,1,0,Initmates,Intimate,Chemises +1110,43,Runs very large!,"Cute dress but way too big. i ordered a 2 petite and i'm swimming in it. i'm usually a size 2-4 and 5'4"". +will exchange for smaller size since i think it would be really great if fit properly.",4,1,4,General,Dresses,Dresses +244,50,,,5,1,0,Initmates,Intimate,Sleep +927,37,It's a keep,"This is a gorgeous piece-the pattern and color combination are classic fall. the sleeves for a xs/s are slightly short (i am 5'8"") but the rest of the fit is great. with the type of fabric and poncho-style, i would recommend wearing something underneath.",5,1,0,General Petite,Tops,Sweaters +1094,35,Gorgeous dress!,"I love this dress. the fabric is a little heavy, so it won't blow away on a windy day (and bonus, even with my triple d chest i'm comfortable not wearing a bra with this) but may not be what you want to wear on a really hot day. the shape is flattering on any body type-i am 6 months pregnant and it still looks great. it can go from spring to summer to fall quite easily, with the addition of a jean jacket and some converse or vans instead of sandals. i'd absolutely recommend this dress.",5,1,1,General Petite,Dresses,Dresses +1024,31,Not what i expected.,"I had such high hopes, but they are just slightly off. they run a tad large, so i suggest sizing down. (i usually wear a 28 or 29, and the 28 fit nicely through the hips and thighs.) +unfortunately, the color is off- i thought they were going to be a dark midnight blue, but they are actually gray. and they have a button-fly closure which causes the pants to protrude a bit in the area where no woman wants protrusion. i will be returning them.",2,0,4,General,Bottoms,Jeans +1037,58,,"The design of the pant hangs nicely and fit,well,",4,1,0,General Petite,Bottoms,Jeans +1125,40,Gorgeous coat,"I love coats and have a collection of unique ones and this one is in my top 3! wow is it a stunner! totally different and very classy. not my every day coat but will be used for dinner outings and special occasions with the right outfit. i did reinforce the buttons since there had been many complaints about that, which is why i only gave it 4 stars for quality. great design on this one retailer!",5,1,0,General Petite,Jackets,Outerwear +1125,46,"Gorgeous, but...","I bought a 2p when i should've bought a 0p. i was swimming in the 2p. however, it didn't matter, because everything was itchy, and i'm not even allergic to wool. the beautiful buttons are oddly placed to achieve that cool design, and just like other reviewers commented, you have to twist and contort them to get them to button...which, inevitably, will lead to them popping off. and i didn't see an extra one in case that happened. the coat is stunning, there's no argument about that, and i welcome",5,0,0,General Petite,Jackets,Outerwear +867,36,Super cute t,This t is very cute and comfortable. could be worn casually or dressed up a little bit with jeans.very cute pattern on the shoulder area. love this top!,5,1,0,General,Tops,Knits +1125,33,"Beautiful, but cheaply made","I ordered this coat because, like others, i was taken by its feminine beauty! unfortunately, the coat showed up with the top button broken off (and missing) and another button hole torn open. i returned that coat right away, thinking that it'd been damaged somehow in shipping. however, i began to question the quality of the coat when the second coat showed up with a broken and missing top button! when i tried on the coat, i found the missing button stuffed into the pocket. not the quality i expe",2,0,3,General Petite,Jackets,Outerwear +1037,34,,These jeans are so comfortable and they are made of the softest fabric. i love that they can be dressed up or down. love these!!,4,1,0,General Petite,Bottoms,Jeans +867,57,Pretty details,Bought the green t shirt. very pretty subtle floral detail near the shoulders. love scalloped neck design. this t is more sheer than the average t so i'll be layering it over a tank. fit is true to size.,5,1,1,General,Tops,Knits +1037,32,,I am 5'9 and i wear my usual 27 like i always do in pilcro. i am so sad that they are too short. they are 32.5 inches long and it's just too short for my legs even with flats. the fit is great and they run true to size but they are too short for tall girls. i usually buy the wide leg linen pants and those are long enough. these needed to be about an inch longer. i do recommend them if you're a bit shorter :),4,1,5,General Petite,Bottoms,Jeans +1024,29,,,3,1,0,General,Bottoms,Jeans +1037,34,,"Love the fit ! perfect for accomplishing the ""dressy jean"" look. i always take the same size in pilcro and this is true to size, but not stretchy as in some of the other pilco styles.",5,1,0,General Petite,Bottoms,Jeans +867,45,Opening day tee,Cute and comfy! i usually wear a small but bought a medium because it appeared to run a little small.,4,1,0,General,Tops,Knits +1125,54,Beautiful & playful coat,"This coat is so gorgeous, it's true to size, fits perfectly, warm and flattering.",5,1,0,General Petite,Jackets,Outerwear +1099,53,,"This dress is very beautiful and looks great on, however had to downsize one size.",5,1,3,General Petite,Dresses,Dresses +1125,54,,,5,1,0,General Petite,Jackets,Outerwear +1099,64,Prettier in person!,I love this dress! i was worried it would swallow my petite frame but it is flowy yet flattering. i have worn it to several different occasions. it looks great with tights and boots and just flats. the lace detailing makes it unique.,5,1,0,General Petite,Dresses,Dresses +1125,65,Beautiful coat....................but!,"This is one of the most beautiful coat i've seen. could not wait to wear it. even found the perfect dress boots for it, but the first time i wore it all the buttons broke and fell off. the buttons have a thin plastic shank that you can break just by buttoning your coat. extremely poor quality. i had to have all the buttons remade. a coat this pretty and this expensive should at least have decent buttons. the inside of the coat is pink huge polka-dots- really cute. it also runs very small. i wear",4,1,1,General Petite,Jackets,Outerwear +1102,26,It's a shift dress,"This dress isn't as fitted as it looks on the model. it appear to be more of a shift dress. as gorgeous as the print and quality are, it doesn't look great on me. for reference, i'm 5'5 105lbs and bought xs. for whatever reason, the high neckline isn't flattering on me. i do personally think this dress is perfect if you have broad shoulders.",3,0,1,General,Dresses,Dresses +1125,60,,"Love the coat. style and fit are a perfect fit. true to size. +thanks for the previous reviews about the button. i am extra careful taking it on and off. versatile. take the collar off and wear on a sweater or whatever inspires you.",5,1,0,General Petite,Jackets,Outerwear +867,25,,,4,1,0,General,Tops,Knits +1125,38,Presses all the wrong buttons,"This coat is so lovely, it is the embodiment of 1940's classic movie star style. the color, the style, the collar add a subtle flair of drama that you definitely want in your wardrobe .... if only it weren't for those pesky buttons! +like other reviewers, i am disappointed to note that within a month of owning, the top button popped off in the middle of a dinner date on a rainy night in a french restaurant. that same night, i noticed a button was missing from one of the sleeves. alas, i am as yet",3,0,1,General Petite,Jackets,Outerwear +1099,42,Adorable,"This dress is really flattering on. fits true to size. perfect length, i'm 5'6"" & dress hits just a few inches above my knees. it's simple, yet versatile seasonally. right now i plan to wear it with booties & sandals in the spring.",5,1,5,General Petite,Dresses,Dresses +1125,20,Hollywood chic,"Omg when i saw this coat in the baby blue i knew i had to have it. i tried it on and fell madly in love! i decided it was the only thing i needed in this world. it is soft and cozy. comfort with an old fashion hollywood glam. its almost sold out already, so grab it if you can cuz its divine! does run a little big, so i got a 0 instead of a 2 and its perfect.",5,1,0,General Petite,Jackets,Outerwear +867,35,Soft & cute,"The fun coloring of this tee gives what would otherwise be a basic tee it's flare. it is a very soft shirt and will be cute with anything. the length is good too - you can tuck in or leave out. i believe it is tts. it might be a little sheer in some lights, but i think you could pull it off with a nude-colored bra. it's not sheer enough to me to warrant an undershirt.",5,1,1,General,Tops,Knits +253,41,Comfortable and flattering,"This top exceeded my expectations. i got it in the gray striped pattern, size small. it's probably the combination of the pattern and the removable padding that makes it very flattering on my small chested figure (i would imagine big chested gals would not find enough support in this one though). the fabric is very soft and comfortable with just enough stretch. overall, very happy with this top. but does it have to be so expensive, retailer?",5,1,6,Initmates,Intimate,Swim +1024,51,Not for everyone,I just tried these on at my local seattle store and ended buying a size up. i feel they ran small as i am usually a 29 in most and got the 31 in these. the 30 fit tight but it looked nothing special just like a very high rise mom jean and i was bursting the top button so this jean is made for hourglass bodies for sure. the 31 is loose and slouchy and it looked really different in a good way so it came home with me. they are a washed out black grey color with some tie die effects. did not care fo,5,1,2,General,Bottoms,Jeans +1054,34,,"It was a hard decision, but i'm returning these. they're definitely pretty and well-made. they drape nicely. ultimately, they are too high-waisted and too billowy for most of my tops (which are mostly long and billowy). these trousers are too nice to wear with most of my fitted tanks. even a normal-length t-shirt, untucked, draped weirdly and came down too far on these high-waisted pants. i guess they're too ""formal"" for what i had in mind - pictured them more like a maxi skirt. if they were hal",3,0,0,General,Bottoms,Pants +1125,32,An investment piece,"This coat is truly gorgeous in person. it's an investment coat, one that i will probably wear for years to come because the style is timeless and the color is lovely. i found it to be very high quality. in fact, i would love to see more coats of this caliber from retailer. the other reviews had me hesitant to splurge on it, but i don't plan on wearing it buttoned very often so that will be a non-issue for me. the lining is one of the best parts of the coat! show it off! i think the problem",5,1,1,General Petite,Jackets,Outerwear +1037,35,Love them!,I love these pants! they are very flattering. they do however run long so even though i'm 5'5'' the regulars were crazy long on me and the petite fit me perfectly. i was worried they would stretch out a lot but i've worn them twice and they haven't.,5,1,0,General Petite,Bottoms,Jeans +867,36,"Cute, but thinner than i would like","It is a cute top and i loved the fit and it's super soft feel, but i'm kind of getting tired of the sheer shirt thing this year. i bought this for the summer and it's hot here so not wanting to have to wear a shirt under my shirt. it's not crazy sheer, but still undecided. if you live in a state with no sweat, you'll probably be fine. :) i'll have to walk around and try it in different lighting situations and think about it?",3,1,28,General,Tops,Knits +1054,40,,,3,0,0,General,Bottoms,Pants +921,54,Oversized and itchy,The small is huge on me and the sweater is very itchy. cute idea but not for me. i will return it.,3,0,0,General,Tops,Sweaters +253,32,Great fit,This top is awesome! it fits well and has a flattering shape. it's true to size and i love it!,5,1,2,Initmates,Intimate,Swim +1099,57,Cute!!!!,"Love this dress. i wear a size large, but had to return and order a medium, planning to wear with boots. it's a light dress, cute for work. the only downside is that it wrinkles easily.",4,1,1,General Petite,Dresses,Dresses +253,42,"Delightful, different, gets dirty asap","I love the design and fit and quality. have been looking for a long-line top like this and was willing to pay full price. i have that dreadful little roll right under my bust line and this sucks everything in nicely. smooths it all out. i'm a 38c and everything was contained nicely and fit great in the large top. + +here's my issue - wore it once and the colors ran! i was so excited to wear this i didn't even wash the top (i rinsed and dried the bottom, though). and i'm not a swimmer. just let",2,0,0,Initmates,Intimate,Swim +1024,63,Cute but tight,"These are pretty good high-rise jeans--probably the best you'll find for the price. they're all one color, no whisking or fading, so they look dressier than your average jeans, and the cut through the leg is bone straight, which i think flatters most body shapes. i agree with the other reviewers--they are tight. i got these in a 25, my usual size, and they squeeze my belly. i probably could've sized up, but i'm waiting to see if they stretch out the way most levi's do.",4,1,0,General,Bottoms,Jeans +1102,29,Nicer in person,"Very high quality dress. there are two layers (the under navy and over white crochet) which makes this worth the price. however it is very straight, making the dress fit like a bag if you have hips or boobs. tried petite and regular and both were too baggy even in xs.",3,1,0,General,Dresses,Dresses +1125,49,Buttons have not been fixed despite retailer's claim,"Despite retailer's claim that they have ""fixed"" the button issue on this coat, beware. they haven't. i ordered this coat november 18th, feeling safe that the issue that scores of other reviewers had noted was fixed, because retailer indicated ""rest assured, this issue has been fixed"" (as noted in the item description). feeling confident that i'd get a non-defective coat at this late date in the quality assurance cycle, i was severely disappointed to open my shipment tonight (nov 24th) immediately di",2,0,4,General Petite,Jackets,Outerwear +1024,55,Love!,"So glad to see high waisted jeans again! very soft, very comfortable, and the raw edge hem makes them just edgy enough!",5,1,0,General,Bottoms,Jeans +867,65,Beautiful akemi and kin detail!,"This is a bit pricey, but i think the akemi and kin quality is worth the price. this photo is quite inadequate to let you see the gorgeous dye color and floral detail. the sleeves are upturned and tacked; the curvy hem is very flattering, and the designer added a small triangle of cloth at the top of the curvy side, just to add to the careful, custom detail. the 60% cotton/40% modal is deliciously soft. the fine detail in cut, fit, artistic design will make this not simple tee a divine pleasure",5,1,10,General,Tops,Knits +1099,65,Not as pictured,I was so excited to see this yellow dress online but was disappointed with the color when it arrived. the yellow us much darker than pictured. i felt the dress ran true to size but if you're short you definitely want to go with petite sizes.,3,0,6,General Petite,Dresses,Dresses +1168,26,Love these suits!,I've gotten so many compliments. i'll never buy a bathing suit anywhere else. i buy all my suits from here now!,5,1,0,Initmates,Intimate,Swim +867,68,Perfect tee,I love this tee. it is light weight and fits perfectly. the additional accents like cuff work and detail around the neck makes it original.,5,1,0,General,Tops,Knits +1094,26,Love! be careful the color choice though.,"I love this dress so much that i bought it in 2 colors: one in blue and one in orange. great style, comfortable and quality material. however, the cut is much, much deeper than it appears in the pictures. women with bust should be conscious of that. + +the blue is the better color. the orange looks more like a fluorescent, red-orange. still cute, but not as subtly muted as it appears in the pics. + +overall, great dress. even better with the sale price.",5,1,0,General,Dresses,Dresses +1094,25,Engagement photo,"I got this dress in navy for my engagement photos and i got so many compliments on the design and fit of the dress. it's very comfortable and stretchy so i got a 6 petite and it fit perfectly, where normally i need an 8 or a 10 because clothes are made so tight now. it was light weight and fit great in the bust and fell nicely over the hips. and for the bottom of the dress being white, it surprisingly wasn't see through. i wouldn't go wearing bright red under the dress but there is definitely no",5,1,18,General,Dresses,Dresses +873,64,Cute but durable,"Love it - love the color, fabric and buttons. really comfortable! relaxed fit",5,1,0,General,Tops,Knits +1094,51,Weird,This dress just fits weird. maybe it works for somebody..... there is a reason it has been put on sale...,1,0,1,General,Dresses,Dresses +1094,29,Great summer staple!,"I bought the orange version during the tag sale and was so pleasantly surprised when it arrived. it fits very well and is made from thick, high quality material. i only wish they had more colors! +sizing--i bought the 2p and it fits well, although a 0p may have fit better. the dress is fairly low cut on me, although i am small chested, but i wouldn't feel comfortable wearing it to work.",5,1,0,General,Dresses,Dresses +1094,33,Pretty dress,"I got this dress in the navy blue and it fits perfect. there is a little too much fabric in the middle, but it allows the dress the stretch more. the fabric on the button is a little thin and not lined, but you really can't see anything through it. i'm 5'2"" and usually purchase the petite, but the regular fit just fine and hit me about mid knee. the petite would have probably been too short.",5,1,1,General,Dresses,Dresses +1094,28,Alicia,"I ordered the black and white version online, and the dress fit perfectly. it was very well-made with a nicely textured, heavier cloth, and the overall appearance is very classy. it is a versatile dress, and i would highly recommend it!",5,1,5,General,Dresses,Dresses +927,38,Very nicely made,"I normally take a small or medium in antrho tops, i ordered the xs/s and i'm kind of swimming in it. i think it's a good look though, and will complement shorts or skinny jeans. i could wear this through all seasons in the pnw so i expect to get a lot of use out of it! i was afraid the embroidered shoulders would be stiff and stick out but that isn't the case at all. the sweater is all soft and flowy, drapes nicely, and can be easily dressed up or down. worth the price.",5,1,16,General Petite,Tops,Sweaters +927,29,,"It's a beautiful sweater but it is very wide (much wider than it looks on the model), even in the xs/s. it is also fairly itchy. just way too big for my small frame, which is not really the look i was going for.",3,0,1,General Petite,Tops,Sweaters +927,37,,,2,0,0,General Petite,Tops,Sweaters +909,34,Not for skinny girls,"This is not even a dolman style sweater because it's loose fitting everywhere around the arm. the point of a dolman sweater is that the sleeves are fitted around the wrist/forearm, but this is not the case with this sweater. it's super loose around the wrist area - i can fit both of my wrists into a sleeve.",2,0,1,General Petite,Tops,Fine gauge +927,30,Beautiful piece,As soon as i saw this piece online i knew i had to have it. like other reviewers the black flower part on the shoulders can be itchy underneath. it does run large but that's my style. i love pairing pieces like this with skinny jeans or leggings and booties. can be dressed up or down. highly recommend :),5,1,0,General Petite,Tops,Sweaters +1094,29,Love this dress!,"Bought the green/blue - colors are bright, fabric is so soft. the neckline is just right for a small chest. the top is structured nicely, giving you a figure flattering fit.",5,1,0,General,Dresses,Dresses +909,40,,"This sweater is gorgeous. it is soft and i love the button detail down the sides of the sleeves. i would have loved the blue color but it was sold out, so i settled for the soft peach color. it is a very pretty sweater and looks nice on.",4,1,0,General Petite,Tops,Fine gauge +1079,43,Cute,"Nice, flowy dress... only thing is that it has the high low skirt which i think is getting outdated. beyond that, it is a cute dress.",4,1,0,General,Dresses,Dresses +909,68,Beautiful color,"I love both the color of this sweater as well as the buttons on the cuffs. this sweater is an easy pick any day of the week and goes well with all of my work pants. plus, the soft and pretty pink adds some brightness to my otherwise dark winter wardrobe.",5,1,0,General Petite,Tops,Fine gauge +927,54,,"This poncho is very pretty and unique.it does run very over-sized, however that's how it is styled to be. the embroidery is very nice, it does sit back on the should a little further than pictured. the open weave is a little looser than the picture seems and you will need to wear something under it (cami; tank; body shaper). probably will pick or snag pretty easily also. the longer hem in the back is cute, but if you are on the shorter side you may not like where it hits. it will look best with",4,1,1,General Petite,Tops,Sweaters +1094,44,Beautiful dress,"I bought the blue/green color. it was absolutely beautiful...i paired it with a green sweater jacket for inside and took the sweater off as it warmed up. very comfortable, versatile, flexible and the color is rich. i am 5'5 and 147 pds and the m fit perfect.",5,1,0,General,Dresses,Dresses +927,23,Love!,This top is lovely! high quality yet delicate material and is the perfect weight to transition to autumn. the top is oversized yet flattering. paired with leggings it will be the perfect travel outfit for my upcoming trip. i can't wait to wear it over and over again!,5,1,0,General Petite,Tops,Sweaters +927,30,Super cute,"I ordered this a few weeks ago on major sale. im quite tall (5'11) so i went with the m/l to ensure that the length would work. its definitely long enough, almost a little too big, but i like the slouchy look. my only real complaint is that its a bit itchy. other than that i think its a great buy!",4,1,1,General Petite,Tops,Sweaters +1094,34,,"I ordered the red/orange but it was much brighter than i expected (felt almost neon). and the dress felt much more casual than i expected from the pictures online. that said, it's a great dress and i am keeping it - just adjusting my expectations/what i plan to wear it for.",4,1,0,General,Dresses,Dresses +927,28,Way too big!,"I was so excited to try this sweater on when it arrived but to my disappointment, it was overly large! i was pratically swimming in it. really love the design and the way it looks on the model. just didn't work out that way on me.",2,0,0,General Petite,Tops,Sweaters +927,63,,"Love this poncho! it's casual, has a bit of a sexy vibe, comfy. great with leggings, probably boots once it's a little cooler. soft and lacey, lace is sheer so a cami is needed.",5,1,1,General Petite,Tops,Sweaters +909,29,Oversized bag,"This sweater has the weirdest stitching, although the buttons on the sleeves are a nice touch and the hunter green color is to die...poor fit means poor sweater :)",2,0,0,General,Tops,Fine gauge +868,44,,Runs very big. i ordered a l and need a m. unfortunately no medium left! great top with lots of character. hate i missed this cute top,3,1,0,General,Tops,Knits +1094,36,Perfect summer dress,"I bought this in the orange color. might not be the color for everyone but with my coloring looked great, very similar to the picture online. fit is perfect, very comfortable. the fabric is night, stretching but flattering. bought this with the 30% off sale, not sure i would have paid full price based on the fabric. but love that i got if for extra off the sale. wish the others were in stock because i would have bought them too.",5,1,0,General,Dresses,Dresses +611,29,Flattering romper,"Rompers are usually tough for me. i am petite, especially on top (5'2"", 110 lbs, 34a), but have a healthy butt and hips, which can make sizing difficult. in this romper, i tried a regular xs, and found the fit very flattering. the top was blouse-y on me, but not overly so, and the arm holes didn't gape, which is usually an issue for me with non-petite sizing. the elastic waistband is also great, as you can adjust it to hit you in a flattering spot and keep the shorts from being too short (which",4,1,3,General Petite,Bottoms,Pants +1092,33,The details...,"This is a great dress that i was eyeing for some time. i bought it after new year's with the 40% off discount. unfortunately the dress arrived with a defect so i have to have it fixed. + +the quality of the dress is amazing. the details are truly unique. one could tell that the dress is very well made. however, it does run large. i bought the xs and feel that i could have downsized at least one to two sizes! it's very comfortable and it could be dressed up or down. + +overall, im happy with the purc",4,1,0,General Petite,Dresses,Dresses +1053,42,"Finally, a jumpsuit that fits the short waisted!","I've always loved the idea of jumpsuits, but could never find one that worked -- either the print was too crazy, or the length was too long, or the waist line looked funky on me. this one worked perfectly. i'm 5'4"" and the regular xs fit nicely. can't wait to wear this, especially in the spring/summer.",5,1,4,General Petite,Bottoms,Pants +1092,42,,I bought this dress thinking it would be cute for christmas in florida but when i received it i wasn't so sure about a christmas dress. i like it for a casual night out with high boots. super cute!! i received many compliments!,4,1,1,General Petite,Dresses,Dresses +1053,26,Favorite new piece,"Absolutely love this piece! 5'6 and 120 lbs and ordered a small, fits perfectly. this jumpsuit has become a regular in my outfit rotation, i get compliments every time i wear it.",5,1,0,General Petite,Bottoms,Pants +611,29,Love this romper!,"This is the first romper i have have purchased and is so cute! i am in between a small and a medium usually (5'7, 135 lbs and athletic). the medium fit okay, but with some extra fabric--the small fit better and was much more flattering. the romper feel well-made. can't wait to wear it!",5,1,0,General Petite,Bottoms,Pants +942,63,Had to send it back,"I was so excited to order this sweater. i thought that the moss color would make it a great basic for work or casual days. ordering it on sale made it all the better. however, when it came i was so sad to see how muted the colors were, with little definition. the sweater itself lacks definition as well, just shapeless and hangy. i also did not expect the angora like hair on the sweater which bothered by eyes as soon as i tried it on.",2,0,2,General Petite,Tops,Sweaters +927,38,Big and boxy,"This sweater is big and box. it looks very similar on as it does on the model. as other reviewers have mentioned, the embroidery on the shoulders is a bit itchy.",3,0,1,General Petite,Tops,Sweaters +1053,27,Effortless jumpsuit,"This jumpsuit is great! i finally found a jumpsuit that works with my longer torso. the fabric is so comfortable and moves with you. i'm planning to pair a thick belt with the jumpsuit over the portion with the tie, just for some added detail while wearing the piece. it's quite easy to get in and out of.",5,1,1,General Petite,Bottoms,Pants +1094,34,Great day dress,"I loved wearing this outside on a hot day! the fabric is a nice quality. you can't tell in the photos, but it is a jersey/knit fabric. the color labeled red that looks orange is actually coral. it's a nice color. i usually wear a true size 2, and that's what i ordered, but i found that it is slightly big. i can wear it, but would have preferred half a size to a full size smaller. a versatile dress that you can wear often!",4,1,0,General Petite,Dresses,Dresses +909,33,Beautiful sweater,"This sweater is absolutely gorgeous! the green is a lovely, rich shade and the material is wonderfully soft. i love the slightly slouchy fit, but it's far from looking shapeless. i bought my usual size small (5'8"", 140, straight athletic build, size 4/6) and i love it casually paired with boyfriend jeans and ankle boots or a little elevated with a skinny and heels. + +i'm so happy to have tracked it down in our local store, i'd buy them all if there was more in stock!",5,1,1,General,Tops,Fine gauge +909,44,"Stylish, soft, and great color","I love this sweater! i ordered the xs petite. it fits perfectly! it is soft. i hate itchy sweaters. the ""peach"" color is actually more pink, but i love the color. great buy! i'm ordering another one.",5,1,0,General,Tops,Fine gauge +927,31,Looks old even at the store but nice design,"Although this has a nice design and i wanted to love it, it already looked ruined in the store with pulls all over each one i found. the fit is nice but i wouldn't buy it due to the material being too delicate.",2,0,1,General Petite,Tops,Sweaters +1053,68,,"Just purchased this in the lilac color in the store in my usual xs size. the cut and shape are very flattering, with the waist sitting lower than my natural waist. in person, the color looks very different than on the website. it is more a lovely neutral taupe to me. one thing is that the snap at the neck is placed about one half inch off in order for the neckline to lay flat. since this jumpsuit is so cute, i decided that this is an easy fix i can do myself.",5,1,1,General Petite,Bottoms,Pants +927,38,Great summer-fall sweater,"I really like this sweater a lot. it runs huge though. i have a m/l and i'm swimming in it (5'9"" sz 12-14). i like the length and the swingy-ness. there's enough coverage for me to feel comfortable layering it over a bra cami and leggings. the shoulder detail is what makes it. the only downside is that the threads on the reverse side of the embroidery are a little rough, but not enough to bother me. the knitted fabric is soft and cool feeling. i plan on wearing it into fall with ""real pants"" and",4,1,5,General Petite,Tops,Sweaters +1094,58,Lovely dress,"I ordered this online and was so excited to try it! unfortunately it didn't work for me. maybe its the style but i had issues with the fit. maybe i'm too long waisted, it just didn't seem to fall properly. i liked the fabric, loved the length, could see getting a lot of use from this. i would definitely recommend trying it on!",4,1,0,General Petite,Dresses,Dresses +1094,51,So wanted it to work,This dress has a great shape and fabric - but the v neckline is too deep/low and the arm holes are also cut too low. would loved to have been able to keep it but had to return.,2,0,2,General Petite,Dresses,Dresses +1053,42,"Nice idea, but tricky to get on and off","This is beautiful fabric and a good fit, but it's such a pain to get on and off, that i just don't want to hassle with it. the button is in the back, and very tricky to reach. too bad, because otherwise it's darling!",3,1,0,General Petite,Bottoms,Pants +1094,26,Disappointing,"This is a really nice quality dress. it is a low-cut v-neck but the fabric is form fitting so its not revealing when u move. i love the top part of the dress but the skirt just did nothing for me. it's a soft material but the skirt almost resembles a bath towel in look and feel. i am petite in size (5'0"" 100lbs). i will be returning due to the skirt being to loose on me in width rather than length. also, the center pleat of the skirt makes it look a bit odd. the skirt hit right at knee height.",2,0,20,General Petite,Dresses,Dresses +909,26,The buttons add right amount of detail,"This sweater is comfy and light and the buttons are a great added detail. i bought this as a gift, but i tried it on anyways and almost kept it for myself! great for early spring days.",5,1,0,General,Tops,Fine gauge +927,28,Adorable!,Love this top! perfect for fall/winter! it does run large but it looks great! love!,5,1,0,General Petite,Tops,Sweaters +927,39,,,4,1,0,General Petite,Tops,Sweaters +909,25,Luxurious,"This sweater is very warm yet light. the pink color is very cute, and the buttons are detailed very nicely! it hangs a bit low under the arms, and definitely tightens at the wrist. i ordered the xs size, and i find that i am unable to push the sleeves up. this is so beautiful and has a subtle uniqueness.",5,1,3,General,Tops,Fine gauge +1053,29,,,3,0,0,General Petite,Bottoms,Pants +611,69,Way cute,Nicely designed romper with an wide elastic waist band that can be worn on the hips or around the waist. not too short for this 60+ body and very comfy. i wear either a med. or large and went with large for this. a good buy.,4,1,0,General Petite,Bottoms,Pants +1094,47,,"So many things to love: love the mod kind of style, the forgiving pleats and empire waist and the fabric quality. but the neckline is just way too deep. if they didn't pin the one on the model, i'm a monkey's uncle. that super low neckline takes what should be a nice day dress and turns it into something you can't really wear in a church or in front of your dad. i seriously considered altering it, but the waist is already so high, i felt it would ruin the line of the dress.",3,0,3,General Petite,Dresses,Dresses +909,30,,,5,1,0,General,Tops,Fine gauge +611,51,In love again,Tried this little number on in store...... i am 51 years old..... not a bad body.... gave this a shot. it looks minus my slightly wrinkled knees great ....and very close to what it looks like on model. very happy with one!!!,5,1,4,General Petite,Bottoms,Pants +1003,69,Charming skirt,"I have been wanting this skirt for a long time. i was worried about waist which is fitted. i finally ordered it and it i very cute. the waist is indeed fitted but there is some give to the fabric, fabric is soft cotton not unlike denim with some stretch. there i a soft cotton liner in skirt. i took the cloth belt off because i cannot retie it so neatly as in the photo, also i just don't want a bow on my stomach. i own a cute narrow belt that i will wear with skirt as i think something is needed",4,1,3,General,Bottoms,Skirts +873,36,,,5,1,0,General,Tops,Knits +927,38,Holy enormous!,"This is the widest sweater i have ever seen. i laughed out loud when i opened it, and then showed it around my office and everyone else cracked up too. it is comically wide. + +even when i was 9-1/2 months pregnant, the m/l would have been pretty roomy on me. now that i'm back to about a size 10-12, this looks like jared from subway's pre-weight-loss pants, in sweater form. ridiculous!",2,0,1,General Petite,Tops,Sweaters +1094,58,Cute dress!,"I didn't go with the intention of even looking at a dress, but decided to try this on. once i did, i knew that i had to get it. it's so cute. i got the one listed as green motif, which is actually a royal blue bodice. the colors are vibrant and it's so comfortable.",5,1,3,General Petite,Dresses,Dresses +927,49,Beautiful but big and wide,"I should have known with the combined sizing, but this is very wide, even in the xs/sm. it's a beautiful sweater, a thicker gauge of yarn than it appears to have, and the pointelle ""holes"" are also larger than they appear. it is fairly itchy if you don't mind that. just way too big for my small frame--almost falling of the shoulders, which is not the look i was going for. if you want a wide and boxy look, or have a larger frame, this could be great for you. it is pretty and quite unique.",4,1,9,General Petite,Tops,Sweaters +611,48,Hot summer night outfit,"I'm 5'0 125 lbs and the petite small fits perfectly. i love the length of the shorts, not too short and not frumpy either. the waist has a hidden band so it hugs you in a good way and makes the top half slightly blousy, so it's forgiving. will go great with gray booties, black wedges or sandals.",5,1,1,General Petite,Bottoms,Pants +1094,35,"Simple, cute dress",I really like this dress. it has a very flattering cut and a stretchy forgiving fit so you could go your normal size or up a size and both would fit great. i got the red (orange) and i have worn it once and got 3 compliments in the few hours i was out. great buy! especially on sale ;),5,1,0,General Petite,Dresses,Dresses +909,36,,"This is a great sweater. i gave it four instead of five stars because it runs unusually wide and is a bit boxy. if you like your clothes a little big, this is the sweater for you!",4,1,0,General,Tops,Fine gauge +611,31,Really nice piece of work!,"I love this romper. it's really flattering and well made. at most stores, i wear a medium but normally at retailer i wear a small. i had to exchange the small for a medium, but other than i really loved it!",5,1,0,General Petite,Bottoms,Pants +909,45,Beautiful,"This sweater is so soft, beautiful and well made. it runs just a bit large, but i love the look.",5,1,0,General,Tops,Fine gauge +1094,32,,"Ordered a size 0, my usual at retailer... very flattering, fits well",5,1,0,General Petite,Dresses,Dresses +927,39,Cute for fall,Pretty! can't wait to wear this in the fall. design is understated yet pretty. nice poncho:swing style. haven't worn it yet so i can't rate the durability or wash experience yet. glad i got this on sale!,5,1,0,General Petite,Tops,Sweaters +1094,57,Light summer dress,"Cute, light summer dress. wish it worked for me. the tank part of the dress is light and super comfy. the bottom part of the dress is narrow and a bit fitted, doesn't work for a curvy bottomed girl.",5,1,7,General Petite,Dresses,Dresses +927,36,The stitching is beautiful but.....,"The sweater could be really pretty, but it is huge. i ordered the xs/s and it was swimming on me. it's too bad, because the stitching was beautiful, but this item is going back.",2,0,1,General Petite,Tops,Sweaters +1094,40,Could have been better...,"I grabbed my typical size (8) and found it fit snug in the bust. the fabric has plenty of stretch, so the snugness was fine, especially because it meant there was no gaping along the neckline in the front. it's lowcut, but i didn't feel particularly exposed. i ended up not buying it because i don't think it fit my body right. the distance between the top of the shoulder and the bottom of the arm hole was too long for me - a significant portion of my bra was exposed at the bottom of the arm hole",2,0,0,General Petite,Dresses,Dresses +1094,30,"Adorable, timeless, versatile",I was drawn to the green/blue color in store! it's so cute and comfortable. i'm usually a size 2/4 and needed the 2. the bodice is flattering and the length was perfect on me. i'm even 4 months pregnant with my 2nd baby and this will work with my growing belly for another month or so. it's got great stretch!,5,1,0,General Petite,Dresses,Dresses +868,41,Pretty but swingy,This top is very airly and swingy. definitely need to wear skinny jeans to off set the volume on top. it is a pretty top and also unique so i kept it.,4,1,1,General,Tops,Knits +1094,57,Wanted to love,"I like the feel, stretch and softness of this dress, it's very comfortable. sadly, as others have commented, the armhole openings are just too long causing the dress to fit and look a little off around the chest area on me. i considered sizing down to a 4, but it fit beautifully other than the armhole area. unfortunately it will have to go back. i am 5'7"",120 lbs, 34d and ordered a 6.",3,1,0,General Petite,Dresses,Dresses +927,27,Product great for a tall person,"I love the concept of an airy, flowing sweater that has great detail. this item stole my heart online. however, i am fairly petite (5'3'') and it looked like it was drowning me. the neck line is decently wide and my small frame couldn't hold it up; it kept falling off my shoulders. i ended up returning. i think it would look and feel fantastic though if i were taller and had broad shoulders.",3,0,0,General Petite,Tops,Sweaters +611,39,Amazing,I'm 5 9 with a slender build but have always found rompers to not be figure flattering. however this one was perfect! not too short nor long and looks great! highly recommend!!,5,1,0,General Petite,Bottoms,Pants +868,26,Oversized swing,"I was very pleasantly surprised by the beautiful, intricate threaded material of this shirt! it takes the shirt from a casual top to an intricate and unique piece in my closet that can be dressed up or down. the top is definitely larger than i expected - i wear a size small (ordered a small) and it's very wide (lots of extra material) as it falls! i checked it to see if i had accidentally received a large when it first came. it looks like a baby doll shirt, with the shirt getting wider and more",3,1,3,General,Tops,Knits +927,27,Nice casual piece,This piece was really great for summer. you can wear it dressed up or down. i wore it over another green retailer dress with wedges. i usually never layer clothes but it just made sense. i love it?,4,1,0,General Petite,Tops,Sweaters +611,38,Very cute!,"I was not sure whether i would like an xs or a s. rompers can be tricky. i am 5'6"" 123lbs. i went ahead and ordered the xs and it is perfect. it is just long enough in the body for me. the shorts length is perfect, not too short or too long. i can't wait to wear this!",5,1,0,General Petite,Bottoms,Pants +611,57,Love it,"Very comfortable, looks good on. like the fabric also.",5,1,0,General Petite,Bottoms,Pants +1094,29,Great dress,"This dress is gorgeous in person. it is so much softer than it appears the photo and the fabric moves well. what you can't see from the picture is that the bodice sort of overhangs the skirt by an inch or so which is really nice for accentuating a small waist and separates the top from the bottom in a cool way. + +i am 5'6"" 135 lbs and curvy. 36-26-39 for reference. i ordered the 4 and it is loose although still flattering thanks to the forgiving cut. wish i had gotten a 2 but now they are sold",5,1,1,General Petite,Dresses,Dresses +1104,38,"Pretty, just not a keeper","This is a very pretty dress. the previous reviewers helped a lot when it came to deciding which size to order. typically i am a 0 or 2, sometimes a 4. in this dress i ordered a 6. that was the perfect size. + +the coloring is cute, unique, and very versatile. for me it wasn't a keeper because the material was soooo heavy, feels like canvas almost. if you're looking for a dress to layer under a chunky sweater on a cold day i imagine this would work. but for me it was a no.",4,0,1,General Petite,Dresses,Dresses +1072,32,So versatile and stylish!,"I noticed some reviewers didn't like the loose shape of the dress. it is indeed a dress with a looser silhouette than most! but that's what makes it unique and expensive looking! i loved the extra material in the dress, especially in the back, it flowed gracefully and beautifully. i can imagine wearing this dress for many occasions and feeling instantly chic with minimal effort! :) it was also very figure flattering! i ordered the size l and it was a perfect knee length, so i would say this dres",5,1,2,General Petite,Dresses,Dresses +868,35,Lovely,"Cute top, perfect by itself or for layering. i sensed it would run large, so i ordered an xxs, 115 lbs, 5'2"".",5,1,12,General,Tops,Knits +857,41,"My best retailer purchase, ever","36dd, size 10/12 top and 12/14 bottom + +these tank tops are literally the best thing i have ever purchased from retailer. the colors and patterns are gorgeous - i have four of these (yellow, green, navy birds and the white with navy flower)! the top layer and middle liner are heavy, high quality polyester. the bottom layer is a comfortable knit. the extra layers make this top warmer than most tanks - it's perfect for layering under a sweater or jacket. it's very loose and flowy. i could have",5,1,0,General Petite,Tops,Knits +1095,63,Comfy and cute!,"Such a cute and comfy dress to wear. colors are vibrant just as they appear in the picture. the m fit was better for me than the small. ( 5'7', 140lbs for reference.) it's such a great dress to throw on and go. love it!",5,1,2,General Petite,Dresses,Dresses +1080,46,Beautiful summer dress,"I love this dress. i bought it 2 weeks ago and have already worn it 3 times, each time receiving multiple compliments. it is easy, comfortable and cute. also love that you can tie it in the back or the front. great dress!",5,1,4,General,Dresses,Dresses +1080,32,Dress in catalog is not the same,"I saw this dress in the catalog and immediately ran to the store to purchase. then i realized the dress in the catalog is slightly different, but the small differences is what makes the catalog dress so much more unique and worth the money! look at the top, the stripe colors are different. and the stripes flow different on the skirt part as well. and the dress was short on me and i'm two inches shorter than the model. bummer.",1,0,5,General,Dresses,Dresses +1077,41,I really want to love this dress,"I'll start with what i loved, this dress is made with a really beautiful, quality material. the material is gorgeous in person and the dress is lined which is really nice. however the fit is just so very strange. i am 5'6"" and curvy. i tried both a medium and a small (for reference i usually take a medium or large/ size 8 or 10) the medium was so large and too roomy around the arms and chest (i'm 34 d) the small was too tight. the v neck lay in a very strange way and i'm not sure it would have b",3,0,25,General,Dresses,Dresses +1077,63,Tall and lean,"This dress reminds me of a fabric used for curtains. it is sturdy beautiful and strong. i looked like a large picture window in it. if i was 5'10"" and 120 pounds it may have worked ?",2,0,3,General,Dresses,Dresses +828,53,Top is too shear with see through front,This is a sweet top as it is shown. on the model it appears there is a panel behind the lace on the front of the top. this is not so-the entire front of the top is see through. one would need to wear a camisole. the material on the blouse is very sheer-it appears to be rather cheap actually. if you are wearing a top this sheer it does not make sense to have a camisole on underneath. that said you are going to be able to see your bra and skin down to your belly button if you do not have a camisol,2,0,0,General,Tops,Blouses +1080,28,Flattering and comfortable,I was worried at first that this dress might make me look like a circus tent but it is actually incredibly flattering. also super comfy! first day wearing if i got compliments from friends and strangers!,5,1,0,General,Dresses,Dresses +1077,63,Beautiful fabric but...,"Nice quality fabric and design, but found the armhole cut weirdly and fit of upper bodice strange. wanted to love it but sadly sent it back",2,0,1,General,Dresses,Dresses +1095,39,"Like, but not love","Likes: colors, the design of the flower is very pretty, the color-blocking is a nice touch and in this season, but, it is pretty short. + +i bought thh petite right off the bat as i assumed i would need that, but i really dind't. it ended up beign too short. + +#/4 sleeves always flattering, but hte cut is meant to be comfy, i think it would have looked better on me if it was a little more hourglass hsaped (if that makes sense#. + +i am usually xs, and that was fine, so buy your usual size ok #one siz",4,1,1,General Petite,Dresses,Dresses +1104,54,Tiny!,"Gorgeous, but so, so, small. recommend ordering 2 sizes up.",5,1,0,General,Dresses,Dresses +1080,37,,"This is not only comfortable but incredibly flattering. being 6'0"" it's also long enough for me.",5,1,5,General,Dresses,Dresses +1077,47,So close! but one fatal flaw.....,"I really liked this dress in so many ways. i'm tall and pear-shaped so the flowy shape is great for me. however, the deal-breaker was how the armholes were cut. it isn't that obvious in the photos, but they are cut in around the bust in the front in a way that was really weird looking on me, and it was too expensive to keep something that's unflattering. too bad, if they had just had a normal armhole it would have been a home run. lovely fabric and nice that it has pockets.",3,1,3,General,Dresses,Dresses +1104,38,Order up!,"This dress is super cute, flattering and well made but it runs very small. i am usually a 6 so from other reviews i ordered an 8 and it is still tight in the hip area. it zips but the fabric pulls a bit in the front and it rides up when i walk. i am going to try and exchange it for a 10 because i think i'll get lots of wear out of it.",5,1,1,General,Dresses,Dresses +1077,44,Love this dress!,I love the cut of this dress. i can see how some would not like the way the arms are cut. i love the pockets and the way this dress flows when you walk it it. it's very fun to wear. i am wearing it to an awards show and was a little worried it may be too casual but the texture and weight of the fabric make it look more dressy. i will be getting a lot of mileage out of this dress.,5,1,1,General,Dresses,Dresses +1077,43,"A for effort, just not for everybody","If you think you can pull this off by all means try it. the fabric is excellent quality--thick yet soft, and the floral print is lovely (unlike a lot of the prints this season). i am not exactly short (5'6"") and not wide (34-26-36), but this made me look like a houseboat. too bad, as it is such an interesting cut. i ordered down since i can sometimes wear an xs, but the bottom was still voluminous.",4,1,1,General,Dresses,Dresses +1077,41,"Beautiful dress, runs very large","Love this dress and so sorry it's not available in xxs. tried on today in store and the xs was very large in the upper body. i normally wear a 2-4, so this was surprising. if you happen to need probably size 6 or larger, you're in luck!",5,1,1,General,Dresses,Dresses +1104,36,Runs small!,Very well made dress but runs extremely small! definitely size up!,4,1,6,General,Dresses,Dresses +1077,35,Love the dress. runs very big.,"Snagged this dress in store today. the only reason i didn't give it 5 stars is because it is dry clean only although i will probably attempt to home wash. it runs very large. i am usually a medium but currently nursing a baby so need large to fit the chest but i bought this dress in a small. also, it can be elegantly worn backward so the zipper is in front to provide nirsing access. i don't think anyone but you would know you are wearing it backwards. very heavy fabric which makes it drape nicel",4,1,3,General,Dresses,Dresses +1072,60,Huge tent,"This dress looks cute online, but it is enormous. i bought a small, but it looked more like a 3x plus size. i tried it on, just in case, and honestly it looked like a great dress for a clown. this dress must have had two feet of fabric pinned behind the model in the photo.",1,0,2,General Petite,Dresses,Dresses +828,41,Not for the broad shouldered,"Loved everything about this top except two things: the price (there is a lot of pretty detail though) and the shoulders. what is not depicted in the stock photos is how wide the shoulder ruffles are...i have an athletic build at 5'7"", 140 lbs and 32dd and this top unfortunately made me look like a football player. i ordered a small and the fit was perfect. beware that this top is on the shorter side. it really is very pretty but i would steer away if you have athletic or broad shoulders.",4,0,9,General,Tops,Blouses +1072,78,Very disappointing!!!!,"I've been eyeing this dress for months, so when it went on sale i finally purchased it. now i see why it's on sale. +the dress runs extremely large and has no shape.... looks like a potatoe sack and i feel like moo...moo in it! +this will be going back to the store!!!!",2,0,2,General Petite,Dresses,Dresses +1000,35,Very classy skirt with a great length.,I love this long knit skirt! it is great for any of the cooler seasons! it has a lovely somewhat a-line look when you have it on. the knit is a light weight but has a nice feel to it. true to size. i love the length to pair with tall boots!,5,1,5,General,Bottoms,Skirts +1080,37,Gorgeous summer dress,"I absolutely love this dress! when i wear it i feel so graceful and pretty. the belt allows you to tie it so that if your weight fluctuates up or down, it still looks great. i think i'm going to be wearing this dress all summer. love, love, love. + +i think my only quibble would be that the lining on the inside fits more snugly than the dress itself, and when i was walking it rode up (it's like a stretchy mesh type material). but i'm carrying a few more pounds than i'd like right now. once i lo",5,1,7,General,Dresses,Dresses +1072,43,Pretty dress but not for me,"The dress is pretty and like retailer it is nice quality, i just didn't keep it because it had no shape on me and even with a belt didn't look right. i would have gone down a size in this dress also.",3,0,3,General Petite,Dresses,Dresses +1080,40,Lovely summer dress,"I have been eyeing this dress online for a while but never could justify the price. well, when it went on sale, i couldn't pass up the opportunity. it arrived today and is even better than i expected. very flattering cut, long enough for tall people (i'm 5'10"") and beautiful colors. + +i ordered s (my usual size in retailer dresses, i'm 145 lbs, 36c) and it fits perfectly. this will definitely be my go-to dress for the rest of the summer. i love all my retailer dresses but sometimes find them a tad",5,1,2,General,Dresses,Dresses +868,37,Color not as pictured,"I had high hopes for this top based on the photos, but when it arrived it is a very thin cheap feeling top. the color is a dusty rose color that has a yellowish mottle throughout it, almost like a tie dye or slub effect. not pretty at all.",1,0,0,General,Tops,Knits +868,38,Certain to be a fav,Love this top! it is fitted through the shoulders and arms and has a slight swing. the peplum falls at a great spot and the material lays nicely. very flattering on my 5 months postpartum body that is on the rebound. i got the blue but i might get the pink too!,5,1,0,General,Tops,Knits +698,33,,"I love this caftan! it can be worn belted as a dressier look or unbelted down to the pool or beach as more of a caftan. this is the perfect, versatile piece to have for the summer",5,1,2,Initmates,Intimate,Lounge +1077,35,Great maxi!,"This dress is very cute. the material is high quality and as others have mentioned it isn't jet black, but more muted. the cut of the neckline is very flattering and the pockets are definitely a bonus. you could dress this up or down with flats or heels - it's very versatile. it will be perfect for summer and in the evening you can throw a sweater or even a moto jacket over it. definitely worth every penny.",5,1,1,General,Dresses,Dresses +872,31,Fabulous breezy top,"I was a little nervous to purchase this top as there were no previous reviews. but it intrigued me- especially with the sale price! i love it! i am 5' 6"" and got the small. it hits just at/below my knee in the front and a few inches above my ankle in the back. it is perfect with a pair of skinny jeans or leggings. what makes it go from a frumpy tunic to a cute flowy top is the slits up the side. a beautiful touch! the neck is very high- almost a cross between a turtle neck and a hooded look. i l",5,1,1,General,Tops,Knits +868,60,Unexpectedly flattering,"I did not have the same experience as the other reviewers. found the color just as pictured - a dusty pink (made to look worn - so may not be your thing). fabric hangs nicely and is slimming on me. long enough for leggings but great with jeans, booties and long necklace (needs accessorizing). the aged look may not be for all, but overall i love it.",5,1,0,General,Tops,Knits +872,39,Material not what i exoected,Loved the design and legnth but the material was not a light and soft as i expected. i would get this in another fabric.,4,0,0,General,Tops,Knits +1077,35,Gorgeous - needs a belt if you aren't tiny,"I adore this dress, but i never would have bought it if i didn't wear it with a belt. as some reviewers have said, it's a sack. the belt takes care of this. it still isn't a slimming dress, but i really don't mind--the elegance and comfort make up for it. + +i'm 5'10"", 34c, and curvy in the hips, and the medium fit perfectly. i could see this fitting strangely if you were larger in the bust.",5,1,0,General,Dresses,Dresses +868,31,Colors look nothing like online photos:(,"When i saw this top online, i thought i'd love it and immediately ordered it in both colors. they arrived today and i am soooo disappointed. i have never seen such drab colors. the blue is a muddy grayish hue (like an overcast day) and the pink is a dusty shade of peach. yuck. and i was hoping the ruffle at the bottom would have a chiffon-like flowy effect. instead, the ruffle is made of a cheap looking knit. back these go...",1,0,0,General,Tops,Knits +828,67,Very sheer,"A beautiful blouse;however, i assumed from the photo that it had a lining. it does not and the blouse is very sheer. it seems to run a bit small also, and if i add a camisole it might be too tight. the length is adequate. i may be returning it although it is very lovely and feminine.",3,1,5,General,Tops,Blouses +1080,26,Not for short people,"I really wanted to like this dress. i am 5'3"" 125 lbs and this dress was about 4 inches too long. the hem created a puddle around my feet. i've bought other maxis from retailer without this problem. sadly it went back to the store.",3,0,1,General,Dresses,Dresses +868,40,Very nice,Great color. great length. will go perfect with leggings and skinny jeans/pants. this will work well when the weather transitions and will be super cute under a cardigan when it gets cold.,5,1,17,General,Tops,Knits +1077,45,A wallpaper potato-sack,"The title says it all. while the quality was good, when i put this dress on a felt like i was wearing a shapeless sack fashioned out of wallpaper. the length was longer than on the model (makes sense since i am only 5'5""), which was ok, but the overall fit was just too big. i am a size 2 and tried the xs, which was huge. just not flattering or breezy or sexy in any way. going back!",2,0,14,General,Dresses,Dresses +1077,40,Beautifully draped dress,"This dress is of excellent quality, made from fairly heavy fabric. the drape of the dress is beautiful - the dress definitely works if you're tall and slender. i'm 5'9, 32b, 125lbs, and i have the xs.",5,1,3,General,Dresses,Dresses +1072,33,Listen to the reviews--pass!!,"Man, this dress is the worst. i don't understand how it looks the way it does on the model. agree with previous reviewer - there must be a minimum of 200 pins pulling the waves and waves of extra fabric back. this dress looks so cute , but is so, so, so disappointing in person. sweater collar and cuffs - stiff and bulky. dress - billowy and sack-like - not sure how they got a belt to pull it all in. save yourself the return and do not get sucked in by the sale price and extra sale discount like",1,0,0,General Petite,Dresses,Dresses +1104,30,"So, so small!",I was so ready to love this dress but it runs extremely small - like you should maybe purchase a size 2 sizes bigger than what you normally wear.,3,0,4,General,Dresses,Dresses +868,72,Blah,"I just received my back-ordered wildberry top in blue. it's not blue but instead a dull, mottled purplish hue. it looks like a well-worn, stretched out tee shirt with a tired ruffle along the bottom. so disappointing. it's going back for sure.",2,0,0,General,Tops,Knits +1080,41,Comfy and cute,"I wore this dress for this first time today, and it is a head-turner. sure to be a new favorite! i received several compliments while out running errands. the dress is flattering to my hourglass shape (i tied it in the back). it is not at all clingy; it flows nicely. the top of the dress is bra-friendly and not too low cut. i am 5'8"" and found the length to be just right for me; the medium skims the tops of my feet, and i wore the dress with flat sandals. unlike another reviewer, the dress i rec",5,1,1,General,Dresses,Dresses +1080,44,,Light and distinctive design. the fabric seems somehow synthetic and in very warm weather might become not so fresh,4,1,1,General,Dresses,Dresses +1072,43,Wow...,"So disappointed. i love retailer! this was a huge disappointment. i am 5'3"" and 120 pounds. when i put it on, all i could think was that i looked just like a clown due to the big cowl neck and how large and round the dress made me look. if i wasn't so disappointed, i might have laughed. this had to have been a design mistake. i've truly never seen something so unflattering.",1,0,0,General Petite,Dresses,Dresses +828,38,Cute but see through,I was under the impression that the blouse is lined however i'd need to buy yet another tank to go underneath which may be an issue due to how short this blouse is. i returned it.,3,0,3,General,Tops,Blouses +1075,48,Great dress,Such a great dress. fit is flattering. the small v cut in the front and beading around the neckline keep it from becoming a boring lbd. classy enough to wear to a funeral but can be dressed up with some killer shoes. thrilled with purchase!,1,1,0,General,Dresses,Dresses +1124,50,Love it!,"I love this faux-fur coat. i wear it both dressed up & down. i usually wear xs but bought s so i could wear sweaters under it and the arms would still be long & i'm happy i did (5'4"" 103 for reference). the faux is soft & comfy. it's warm, but not blizzard warm. i get loads of compliments on it when i wear it & ""where did you get that?"" +definitely worth the purchase on sale.",5,1,0,General Petite,Jackets,Outerwear +1095,55,Simple and beautiful,Unusual design and striking color make this the perfect dress this winter season. the fit is flattering and the design makes it perfect for work or play.,5,1,1,General Petite,Dresses,Dresses +1077,61,Very lovely dress,The material is wonderful and the dress is lined. plenty of room in the bodice area for a 36d bust. will be wearing a lot this season.,5,1,7,General,Dresses,Dresses +1077,35,I'm in love!,"I tried it on at store and went back to buy it once it hit the sale rack. not the kind of dress that grabbed my attention online, but once i put it on i knew that it would find a way to my closet. the fabric is high quality, and there is lots of it. the color, the weight, the pockets- i love everything about it. i see how it might not work for everyone, but for me (5'7, 135 lb, 36b) xs is a great fit.",5,1,1,General,Dresses,Dresses +1080,40,My first maxi!,"I don't usually wear maxi dresses because i am tall (5'10) so they usually aren't ""maxi"" on me. i'm also hourglass shaped and maxis with no waist definition make me look frumpy. this dress solves both those problems! it's very long and the waist has attached ties to define and keep it from being too billowy. it's also lined to the knees so you can wear with confidence but still have the bottom be light and breezy.",5,1,2,General,Dresses,Dresses +868,36,Disappointing,The pink version of this top finally arrived -- nearly 2 months after ordering. the expected delivery date kept slipping. the color is not as shown online. online it looks like a light pink. the actual top was more of taupe color. it's a basic tee with pretty ruffling at the bottom. not enough to keep.,3,1,0,General,Tops,Knits +1077,33,Awesome and unique,"I love this dress, the print is beautiful, the fabric has a nice heavy drape and the cut is simple but unique. i'm short and curvy so generally shapeless dresses don't work on me, this is an exception. + +i ordered the regular instead of the petite and it is full length on me, which i think i like more than if it were a midi. + +the armholes do cut in, i wasn't sure if i liked that until i sized down and it fit closer. + +my husband chuckled that it's a little mrs. roper... i don't care, i'm wea",5,1,1,General,Dresses,Dresses +1080,34,Great maxi,"Easy, fun and flattering. fits tts. i normally wear a m/l or 10/12. i ordered a large and it fits well. the tie at the back lets you wear it as tight or loose as you want it. the length is good for my 5'9 frame.",5,1,0,General,Dresses,Dresses +1080,39,Unexpected delight,I wasn't expecting to love to this dress as much as i do. the length and horizontal stripes (petite was sold out and my torso is square) are automatically two strikes but the sale-on-sale price was begging me to give it a go. so glad i did! the cut and flare are flattering. the self to tie is slimming and can be styled different ways. the regular length is doable when i wear platform wedges. the colors scream summer and vacation fun. my only problem is the feel of the fabric--liner is fin,5,1,2,General,Dresses,Dresses +1077,62,"Gorgeous material, beautiful cut","I am 5'3, 120 lbs and i got xs petite. it fits beautifully and hits me a couple inches above my ankle bone. as stated in my review title, the material is quite heavy and great quality, which helps it hang nicely. cut high enough under the armholes and snug enough under the arms and across the top of my chest so the fullness at the bottom is proportional. love it with my lace-up espadrilles!",5,1,2,General,Dresses,Dresses +1080,32,,,5,1,0,General,Dresses,Dresses +1080,24,Beautiful and relaxed,This is a gorgeous dress. the fabric has the look of linen (though it is not) and the lining is a soft mesh. looks both relaxed and stylish.,5,1,5,General,Dresses,Dresses +868,66,Darling!,"This top is just darling! the body of the top is lightweight ""sweatshirt"" type material that's dyed to appear well used. the ruffling along the bottom is color coordinated and beautifully textured. great to wear with leggings! the back hangs lower than the front so your rear will be covered. extremely comfortable, machine washable. an unexpectedly ""nicer than it looks online"" garment. i bought the blue version which looks more lavender irl.",5,1,0,General,Tops,Knits +1095,41,Get so many a+ comments from it,"It is one of the best dress for the season. light, nice color, elegant, can not find more word of it. really great buy! this brand has very special design that really amazed me recently. just want to give a+ to the designer.",5,1,3,General Petite,Dresses,Dresses +1075,54,,"I cannot say enough good things about this dress. as a petite person (5'0), it is so hard to find things that fit well without alterations, but this dress fit perfectly. it's also so well-made: the fabric is soft, comfortable, and gorgeously detailed, and the dress is lined which makes it feel durable and gives the skirt some volume (in a good, flattering way)! i got it shortened by about 2"", but this dress fits like a dream.",5,1,2,General,Dresses,Dresses +1072,38,,"The cowl and cuffs of the dress are thick and heavy sweater material, but the dress itself is extremely thin. the non-belted pictures do not show how much volume there is to the dress, which was enormous in my normal size.",2,0,10,General Petite,Dresses,Dresses +1104,28,Such a cute dress - runs super small!,So disappointed! i couldn't even get it on. definitely order a size up!,4,1,1,General,Dresses,Dresses +1077,64,Nice if it fits you,"Very attractive pattern and color. the black is so soft that it seems close to sepia. the length was fine. the fabric, meaning the dress, is quite heavy for not having a lining except just around the bra area---even though the facing didn't successfully substitute for a bra in my opinion. the arm holes are cut in quite a bit so one would have to find the appropriate bra. +the dress runs very large. i ordered an xs petite. it was about 2 inches too large (4 inches total) on either side across the",3,1,31,General,Dresses,Dresses +1077,60,Beautiful,"I normally wear a size 12 because of my shoulders and back. after reading reviews after purchasing dress online, i was expecting it to be too small. it is, in fact, somewhat large. i love the way i feel in it. i am 5'8 and the length is perfect. i cannot wait to wear it. the black is so soft. love the boho feel, yet classic and feminine..",5,1,3,General,Dresses,Dresses +1080,33,Stand out maxi,"Love this dress. great lightweight fabric, bold colors, and lined to the knee. the lining makes sure the dress lies smooth, but it breaths well so it doesn't add extra heat. i found it ran true to size and it's a good length for tall girls. i like that you can tie the belt in the front or back. looks great on it's own or dress it up with a statement necklace. there is also a nice girth to the skirt giving it lots of movement. great find.",5,1,2,General,Dresses,Dresses +1078,63,A gorgeous swing dress,"This is an amazing summer dress! so pretty it stood out even though only a few were left on the rack. it's light, airy and perfect even for the hottest summer days. the straps are not adjustable but for me the dress was not too low and it fit just like on the model pictured. a very thin belt comes with it but adds nothing ,only detracts. i am usually a s or m in retailer sizing and the s was perfect. + ( for ref. 5'7', 140 lbs) this dress is so flawless and beautiful and i feel wonderful wearing",5,1,22,General,Dresses,Dresses +1078,28,Very flowy,This dress has way too much material. the material is really soft and beautiful but there's too much of it. it feels like you're wearing a big sack. sadly i'll be returning it.,3,0,1,General,Dresses,Dresses +1078,49,Love this dress,"I am a petite girl, 5'2""/105 lbs- i bought size s and it fits me just right. i love the way the fabric feels on my body. i tried this dress with flat shoe and it doesn't make me look short. the colors are vibrant but not too bright which makes it perfect for any time of the year to wear.",5,1,1,General,Dresses,Dresses +1078,33,Couldn't send it back fast enough!,"Unlike the other two reviews , i found this dress horrid. i ordered a xs since i am between that and a s. it was just too much fabric for me. . i have a small frame, so it was just so overwhelming, the armholes were big and i felt like i had a bag on me. colors were nice and fabric was soft and light.. the belt made no sense as others have said. length was good. i tried it on as soon as i got it and couldn't take it off fast enough. i literally ran to the post office and back it goes. this is my",2,0,8,General,Dresses,Dresses +1078,48,,"Too full of a dress for me. i tried a belt and it is then too chunky. if you are younger, tall and slim, this would look great",2,0,0,General,Dresses,Dresses +1078,35,,,4,1,0,General,Dresses,Dresses +1078,26,Swing dress,When i received the dress i went to try it on and one of the loops for the string to cinch the dress broke. guess that's gonna have to go back,3,1,0,General,Dresses,Dresses +1078,52,"All occasions, all beautiful, all quality","I tried on almost every dress in the shop today, and this is the dress. as soon as i tried it on i started twirling around. i felt beautiful and i couldn't stop smiling. my mother said that it makes my blue eyes glow. it flatters my figure by hanging perfectly across my bust-line, floating over my curves, and camouflaging my little unappealing bumps. also, the dress is cut nicely under the arms which allows coverage for a strapless bra. i chose the medium size even though i usually wear a large",5,1,8,General,Dresses,Dresses +1078,25,,"Love this dress! the other reviews were accurate. it is a lot of fabric and i can't decide whether i will actually use the belt that it came with. but i think it would be a great, beachy dress for the summer.",5,1,1,General,Dresses,Dresses +1078,50,I love this dress so much i almost said a bad word,"Omg, i am 5'8 size 14, big hips and i simply love love, love this dress! when i first saw myself in the mirror i just loved the way it fell and gypsy style of it. the material is rich and soft. i caught it on sale under a hundred bucks and it is more than worth it!",5,1,3,General,Dresses,Dresses +1078,53,Beautiful dress,"Found this dress on the sale rack, but the store did not have my size. fortunately they were able to order & ship it free. the colors & fabric caught my eye right away. it reminds me of a vintage apron print, but in a good way. i'm tall with a long torso & i +had to lower the waist tie.",4,1,0,General,Dresses,Dresses +1078,33,Perfect for that weird pregnancy phase...,"... between looking fat and looking like you have a human being on tap (which is way longer than you would imagine). another reviewer mentioned that this makes your boobs look huge when cinched which is true, and also ok since my boobs are huge now. if i wasn't pregnant i'm not sure i would go with this because it definitely has a lot more fabric to it than the model photos make it appear, especially when you cinch. but for 6 months pregnant, this dress made me feel fab.u.lous since it toned dow",4,1,7,General,Dresses,Dresses +436,49,"Cozy and soft, easy fit","I tried these on in the store and they are super cozy. at 5'1"", they hit me just above the ankle in the regular length. i came to the website to get the petite length, hoping for a better fit in the rise as well as a slightly shorter leg length. these pants are comfortable without looking sloppy.",5,1,2,Initmates,Intimate,Lounge +1078,38,Too flowy,The pattern and fabric on this dress are very nice. there is just too much fabric. it's much too baggy but could make a nice maternity dress. i'll be returning it.,3,0,0,General,Dresses,Dresses +1078,34,"Love the print, hate the fit","I have a love-hate relationship with this dress. the fabric and print are beautiful but like most swing styles, this dress doesn't work if you're curvy. tried on an xs in the store which was huge, ordered an xxsp, the length was perfect but the dress does nothing for a pear-shape. looks marginally better cinched in with the belt but i was lost in all the fabric and the skimming nature of the dress did nothing for me. as my boyfriend said, ""that looks like something you'd wear if you were pregnan",3,1,1,General,Dresses,Dresses +1078,51,Disappointed,I was so excited to get this dress. i saw someone try it on in the store and waited all season for it to go on sale. i loved it except for the seam that was right at the neckline in the front. they didn't even try to match up the fabrics. it was so obvious and cheap looking that i had to send this dress back. so sad!,3,0,1,General,Dresses,Dresses +1078,37,Absolutely love this dress,"Love everything about this. i bought this after reading other reviews. beautiful fabric, i'm 5'10"", 135 and bought the small and fits perfect. it's great with heels or flats... seriously just makes you want to twirl, dance, skip, you name it.",5,1,1,General,Dresses,Dresses +1078,65,Absolutely georgeous!,"I bought this beautiful dress at the store yesterday and had some assistance from staff, which was great. the tie, that another reviewer referred to, is essential, i believe. when tied in the back, slightly high and sinched just enough to define smallest part of waist, it falls beautifully and frames the center panel perfectly. i, personally, would never cut the tie off. at least try it this way before making that decision.",5,1,3,General,Dresses,Dresses +1078,44,Too much fabric,"As soon as i saw this dress i ordered it...i didn't want to miss out on it. i loved the look...the colors were so fun and bright...i thought it was going to be my perfect dress for an upcoming trip to hawaii. i am 5'4"" about 118#. i ordered a pxs. when it arrived i loved the feel of the fabric and the colors but was wondering what it would look like on as it was a lot of fabric. i know it is to be flowing but on me it was just awful. part is that the ties on the shoulder are sewn in place so i c",2,0,12,General,Dresses,Dresses +934,50,Gorgeous sweater but runs very big!,"I purchased the medium in this sweater as that was all that was left. but it fit like a large if not an xlarge! it's a beautifully made sweater and really soft. i now think i know why it suddenly becomes available again here and there. it's not the kind of sweater you want to wear over sized because as beautifully made as it is, it's not that flattering if it's hanging on you. luckily it suddenly became available in a small which i quickly ordered and will keep my figures crossed that it's bette",4,1,0,General,Tops,Sweaters +1078,44,The petite fits great,"Got the petite size. dress is swing style, so extra fabric is expected. can wear a nude bra or strapless. dress is beautiful in person, more so than online. very comfy and stands out without being flashy, just pretty and different. nice silk (matte, not shiny).",5,1,0,General,Dresses,Dresses +1078,45,"Gorgeous, flattering dress","This dress is soft, comfortable, beautiful and drapes so nicely - not tent-like at all. i wasn't sure about sizing, and went with some reviewers who recommended sizing down, but the small in the strap/underarm area so i am exchanging for my usual medium. as another reviewer noted, you cannot adjust the straps, they are stitched together not tied together. i considered having it altered but was assured there are plenty in stock. i cannot wait for it to arrive! perfect for summer, or fall with a c",5,1,1,General,Dresses,Dresses +1078,32,Good enough,"I purchased this dress as an easy option to throw on after the gym or on a weekend trip without fuss. the fabric is soft, hangs well, and it is well-lined. but it's also a little more bilious than perhaps necessary to be beautiful and flowing. as in, i'm very comfortable in this dress, but it's not a dress i receive compliments while wearing. perhaps it reads as maternity wear without the belt.",4,1,0,General,Dresses,Dresses +1078,40,I found it unflattering,"I am a curvy size 8. i loved the colors but found it looked maternity when unbelted and there was too much bunchy fabric at the waist when tied. i tend to like things that emphasize my waist, however.",3,0,12,General,Dresses,Dresses +907,33,Beautiful sweater,"Beautiful detail. sweater is warm, soft, and very comfortable. fits perfectly. i was worried without having seen it in person that the lace detailing would be fragile, but it is knitted into the underlying sweater material. i have worn it no less than five times already and not a flaw or a pull in it.",5,1,2,General,Tops,Fine gauge +1078,53,Beautiful unique dress.,"Beautiful colors in this dress that can be worn as a swing dress, belted with the tie, or tied in the back. stunning!",5,1,1,General,Dresses,Dresses +1078,36,I really wanted this to work...,"But like other reviewers said, it looks nothing like the picture of the model. i am 5'3"" and 110 lbs, i usually wear an xs in maeve and i ordered the xs petite - the straps are not adjustable so the top part of the dress is up too high and then there is just so much material, it looks like i'm 6 months pregnant. and i usually love loose dresses like this, but the way this falls really does make you look like you are hiding a sack of potatoes. so bummed, because the material is beautiful and i lo",2,0,2,General,Dresses,Dresses +280,26,Would be really cute on a tall girl,"I so wanted to love this suit! it is so unique and cute, however it does not wear well on a short girl! i am 5""4 and the torso was much too short for me so the cut down the middle looked really wide and odd and the suit just made me look stumpy instead of sexy. also, for how expensive this suit it i also thought the material was pretty thin for how expensive this suit is. i'm sad to say it is going back.",3,0,3,Initmates,Intimate,Swim +1078,64,Love it,"This is a perfect dress for summer in florida. it does run larger than it needs to be, even for a swing dress. no problem, i took in the sides several inches on each side, and it looks great. it's very easy to pick the stitches on the straps and make them adjustable.it has a nice, lightweight full lining. my new favorite dress.",5,1,0,General,Dresses,Dresses +1078,43,Lovely summer dress,"I fell in love with this dress when i saw it. i love the colors and pattern. i've just been on the fence whether it complements my hippy frame. i'm a size 8/10 right now. i do like it with or without the tie for different effects. one concern is that the website says hand wash and the tag on the seam says dry clean only. i usually don't buy dry clean clothes, but might make an exception for this one.",5,1,1,General,Dresses,Dresses +1078,32,"Close, but no","I really, really wanted to take this home with me but decided against it. from the front this dress looks amazing when it was belted and i love the colors in it. however, it bunched like crazy in the back. i tried it without the belting and it just hung like a sack and was completely unflattering. if there were some way to get rid of the bunching in the back then i would have taken it home. but with the cost of the dress, i can't justify taking it to a tailor so it stayed. sigh. so close.",3,0,1,General,Dresses,Dresses +877,62,,"I ordered 2 sizes to try for in store pickup. both were too large, so size down (i am 5'4"", 125 lbs and the s was too large in the neck and body, even though i generally wear things large). also, the collar was a hemmed flat collar, not the roll collar depicted. i reviewed that with the salesperson as well -- we were both at a loss to explain why, and the tiger embellishments were more orange, yellow and glittery on the ones i ordered.",3,1,2,General,Tops,Knits +1078,39,Gorgeous silk pattern,"Everything about this dress is perfect for my body type. i used the tie belt as a cinch to gather the fabric and made the silhouette into a loose fit & flare. i have a large upper body and small lower half so maybe the excess fabric balances out my body but looks terrible on other shapes. i am 36dd 140# 5'3"" and i purchased the medium petite.",5,1,0,General,Dresses,Dresses +1078,43,Tricky to wear,I am torn about this dress. the print is very pretty and the fabric has a gentle flow to it. the top part is great but the portion below the chest reminded me of a tent. it is tricky to pull off if you are well-endowed on the top or wear a padded bra. i liked the look better when i tied it at the back with the ultra-thin belt straps which gave some shape to the waist. i agree with the other reviewer that a slim person could carry the look well. i usually don't return online purchases unless they,3,1,2,General,Dresses,Dresses +1008,42,,Love love this skirt! quality is great and so comfortable. you can even do this skirt with boots and sweater in colder months! so glad i got it!!,5,1,1,General,Bottoms,Skirts +1088,45,Frumpy,"This dress had so much potential. looked cute when i received it. put it on & couldn't wait to take it off. it's shapeless, top heavy & just overall unflattering. the material could be cute....on a totally different dress. don't waste your money.",1,0,0,General Petite,Dresses,Dresses +824,53,,Excellent quality blouse and sooo pretyy!! i was worried when i saw on-line that is 100 % cotton. i though it was a cotton blouse that would get wrinkly. but i was pleasantly surprised when i saw it in the store! it is a substantial weight cotton/gauze that looks like hand stitched embroidery. i'd say it fits tts.,5,1,7,General Petite,Tops,Blouses +1008,33,Midi skirt,"I'm 5'4"", 120lbs and the xs fits perfectly. the skirt is flattering and quality is nice. will be good for cooler days in the fall. a bit warm for a hot summer day, but nice for a night time event.",4,1,1,General,Bottoms,Skirts +1022,55,Not loving the extra stretchy fabric,"Long-time ag jeans fan. lately though, i'm finding the material is much too stretchy. i wanted a good pair of jeans. if i wanted pajama jeans, i would've ordered them. i found the same thing with the steve capris i ordered (same review there). +so back both pairs went. +it's a shame because the color was as pictured and just what i wanted. if only they had been made out of actual jeans material.",2,0,4,General,Bottoms,Jeans +806,52,"Pretty color, but wrong fit","I ordered this shirt in the purple stripe and was happy when it arrived and i really liked the color and style. however, like the other reviewer, when i tried it on, the little circles on the front line up perfectly with your bra straps. i even tried a different style bra and had the same result. sadly i returned it yesterday.",3,0,0,General Petite,Intimate,Lounge +831,47,Beautiful blouse with lovely cotton-lace detail,"I bought this blouse in ivory, which is almost white, just as pictured. it's pretty sheer (as shown in the pics) and the cotton lace insets show the top and straps of my bra. despite this, i'm keeping the blouse and will sort out how to wear it because it's so unusual and gorgeous! if black looks good on you (it's bad on me), i'd probably go with that colorway over the ivory because it's easier to blend a black bra with a black blouse than a nude bra with an almost white blouse. the blouse runs",4,1,4,General,Tops,Blouses +1056,38,Stunning and comfortable,"I needed to get this hemmed about 3-4 inches, but it was well worth it. this is a gorgeous, effortlessly glam outfit. the material is silky soft, with some stretch, and drapes beautifully. i am a 12/14 and got an xl-- i think a large would have been better (this had extra width at the waist, but it worked with the tie belt). i loved wearing this and felt comfortable all night.",5,1,0,General,Bottoms,Pants +967,51,Tight under arms,"This jacket was cute, however, i am normally a large with a bit of room to spare. this has the irritating issue of not fitting under the arms and across the chest and shoulders. it is not my shape as most other brands at retailer fit me. this jacket is not sized correctly.",1,0,1,General,Jackets,Jackets +1088,34,Cute and unusual,"I found this tts (ordered a m, i'm an 8) and not annoying to put on. i ended up being glad it doesn't have a zipper - when i tried it on, i thought it would look better with a v-neck, so i tried it on backwards with the hook and eye open in the front. i think it's identical back and front except for that, and it looks cuter with a slightly lower neckline, especially for a bustier person like me. i might sew down the flaps on the inside of the neck so it makes a somewhat high v-neck. with that al",4,1,7,General Petite,Dresses,Dresses +1008,33,Very clingy,"This skirt is much more vivid in person, which i like. the fit though was off for me. i ordered my usual size medium. i wear a 6 or 8 in bottoms. the medium was fitted!! you could see every curve. definitely not comfortable with that! i would probably have a better fit with a size up, however, i am not a fan of the gray lining that you can see on the inner back portion of skirt... so i think i will pass on this one.",5,1,0,General,Bottoms,Skirts +1008,39,Cute and comfy,"The skirt material is super comfortable. hte cut is also pretty flattering, i don't hink this picture does the skirt justice. the regualr size was a little long on me, i would order a petite (if like me, you are 5'1.5""#, went xs #at 115 lbs). the skirt is also a bit stretchy, not stiff. + +color is way prettier in person, i never looked twice at th skirt online, but in the store, it looked myuch prettier.",5,1,20,General,Bottoms,Skirts +1088,54,A no go....,"Contrary to the first review, there is a zipper so while it wasn't easy to get on, it did fit over my bust. i found this too small and high waisted, and i already have a high waist so i can imagine it looking empire waisted on a normal torso. what i hated was the ridiculous inverted pleat in the front of the dress which is almost impossible to see in the online photo. it made my already busty frame even wider and more unflattering. the lining was nice and soft and the sleeve length and hemline l",1,0,4,General Petite,Dresses,Dresses +500,50,"Quality, but top runs large and bottoms small","I loved the design of this suit when i saw it online. + the material is definitely high quality and the bottoms i knew would stay put, if they had fit me in the first place. i ordered a size medium in both top and bottom. the bottoms were much much too small and the top was just ever so slightly too large. i should've known something was up with sizing because all of the larges were sold out already. i think i could've used a large bottom and a size small top.",4,1,3,Initmates,Intimate,Swim +873,74,"Gorgeous top, classic retailer","I have purchased many of retailer's henley tees throughout the years. this one is a bit special and just so feminine i had to get it black in my local store. i love the look of the crisp, white, but it was too sheer to wear to work without a cami, and i cannot layer camis in once it gets hot. + +anyhow, this shirt is made in my favorite spring/summer tee shirt fabric: 100%s linen. linen gets so soft and drapey over time. the yoke is lace. the arms have a small ruching that is sewn, not buttoned up l",5,1,3,General,Tops,Knits +1008,35,Softest fabric ever,This skirt is super cute and a great easy skirt to wear with basically anything. but what is truly remarkable is the softness off its fabric. i found it in the store and wasn't sure i needed it but it felt so good i could not put it down!,5,1,0,General,Bottoms,Skirts +669,21,Pretty but cheap,"These are light and airy and pretty. they also tore the third time i wore them and not on a seam - a little above the knee while i was lying in my bed. + +they also do not slim the figure and the fabric is slightly see-through as it is so thin, therefore if you are looking for serious lounge pants - great - i would not leave the house in them... or turn over in bed in them. + +when i sit, the slits fall down around my thighs. my son complimented my dress the other day because the slits give way",1,0,6,General Petite,Intimate,Lounge +873,44,Beautiful top!,"I saw this at a store today and am so glad i tried it on. i'm usually xs in retailer tops, but for this shirt i preferred s for a loose fit. the lace detail is elegant and very pretty.",5,1,2,General,Tops,Knits +1088,38,Waist doesn't stretch and no zipper,Bought the dress online and it only has an eye and hook at the top. the waist has no stretch and their isn't a zipper. you have to be a contortionist to get it over your head and shoulders. so cute in the pic but not realistic. going back.,1,0,11,General Petite,Dresses,Dresses +873,41,Great trendy tee!,"Love! the detailing is so pretty! and finally!!! it's a top that's comfortably long. retailer has been making all of their tops so short lately! i'm 5'7"" and a dd. i ordered a large simply because it's a cotton tee and i didn't want a fitted look, per se. my only criticism would be that the material is a little thin in the front. i just ordered it in black too!",5,1,2,General,Tops,Knits +873,41,Pretty top! material a little scratchy.,The top is really pretty. it is sheer and needs a camisole. wish the material was a little softer. think it fits true to size.,4,1,1,General,Tops,Knits +1033,51,Great jeans,"Love me some pilcro jeans! these fit like the stet jeans. + +i got my usual size 27p and the fit is good but not too tight. i am not crazy about the hem but they feel so good that they are worth it. they don't come above my ankle like on the model but come slightly below which i really like. i will say that if you want a true black, you may not like this color. they are more of a faded black.",5,1,1,General,Bottoms,Jeans +806,40,Forget about wearing a bra,"I had high hopes for this top but it didn't work for me at all. it shows your bra straps perfectly. plus, it was so big and boxy that it made me look about 10 pounds heavier. no thanks!",2,0,0,General Petite,Intimate,Lounge +1008,47,Lovely and comfy,"I bought this in the pattern in a size medium. i am a size 4-6 (38"" around the hips/butt). the small fit but felt very clingy to my curves. the medium gave me a little more wiggle room and didn't outline every curve of my butt. the material is very soft and comfortable, but it didn't feel thin or cheap or see-through. it has a nice weight to it. i am tall (almost 5' 9"") and it fit me just as it appears in the picture.",5,1,8,General,Bottoms,Skirts +1008,55,Pretty flattering skirt,"I love this skirt - fits great, snug but comfortable and the length is perfect for wearing with ankle strap sandals. the material is soft and hangs nicely. my new favorite skirt. i am 5'8 and curvy - got the large, which was perfect for my fuller figure.",5,1,1,General,Bottoms,Skirts +824,44,,"Tried and pictured the regular size small. my stats are 34/35a-28-36 and i usually wear a 6 or an 8 on top in shirts and blazers. the small here was nicely loose so it might run a bit big. +in person, the colors are dark navy on light beige. +lovely heavy weight cotton and stitching. +i think it's deliberately a bit short, hit at my hip (i'm 5'6"") but i like this. +the 3/4"" sleeves are a bit nowhere for me...i wish they were full length but that's my only quibble.",5,1,9,General Petite,Tops,Blouses +1088,37,A winner for me,"Since the reviews are quite polarized for this dress, i thought i'd throw in my $0.02...first, to clarify, there is indeed a zipper. it's well-hidden under the l arm (i didn't think there was one based on the reviews and got it on zipped fine; once it was on, i could feel the zipper [not uncomfortably, i just realized there was one]). dress does not have a lot of give, so i imagine that zipped, it would be difficult to get off. because no give, don't order down; that said, i found this dress to",4,1,2,General Petite,Dresses,Dresses +831,60,"Perfect style, will be a favorite",This is going to be a favorite. the fabric is substantial without being heavy. it has a beautiful drape. this blouse is loose but skims the body closer rather than being blousy. it works perfectly worn with a skirt or pants and belted or tucked but is not too blousy if left unbelted. i purchased the black with the lovely feather pattern. the colors are vibrant. i'm always looking for something black with some color because i tend to wear a lot of black on the bottom. this fit true to size. i am,5,1,3,General,Tops,Blouses +1008,49,"Unique style, but clingy","This is a nice style and pattern, but it is quite clingy around the hips, so beware if you don't like to reveal too much in that area. i do love the tulip-like hem.",4,1,0,General,Bottoms,Skirts +873,49,Classic style with nice details,"This is a very pretty top with nice lace details. the linen makes it not quite as soft as 100% cotton but still comfortable and breathable. the fit was just right in the small petite. i tried it on in the store and was very tempted, but wound up not buying it because i have other similar tops. i would snap it up if it went on sale or if i needed a top of this type.",5,1,0,General,Tops,Knits +873,34,Pretty top that did not have enough back room,"Shirt looks nice standing straight but did not work if i cross my arms. i felt that i could have superman'd out if that. i would have gone for a larger size of it was available, but sadly not.",4,1,0,General,Tops,Knits +831,56,Lovely tunic,"Well-made and well-designed tunic top. looks great over pants. not recommended for tucking in, as the pin tucks hit right at the waistline. the ivory is a bit see-through so i wear it with a cami underneath. be aware that your bra will likely be visible through the cut-outs in front. i didn't realize that the first time i wore it and was amazed to discover, at the end of the evening, how tacky it looked. to avoid that you need a low-cut bra. with the proper undergarments, this is a great top tha",4,1,0,General,Tops,Blouses +960,26,Schoolboy look,"I was skeptical about the contrasting color details on this blazer, and it turns out i was right to be. this blazer just looks like part of a prep school uniform, both in the colors and the fit, which is very boxy. maybe this is someone's style, but i just don't think it looks good.",4,0,5,General,Jackets,Jackets +1088,33,Adorable somewhat vintage looking dress,Have to disagree with previous posters. i found just one of these on the sale rack in my local retailer (someone returned it from online) and it was adorable on. got many compliments in the dressing room area. other customers asked if there were more available but it's turns out it's an online exclusive. it does have a zipper. i recommend sizing up not because it runs small (i think it's pretty true to size) but i think it looks better a bit loose/drapery. fabric is soft and pretty. tailoring is f,5,1,0,General Petite,Dresses,Dresses +1008,33,So flattering,This skirt is so flattering and comfortable!,5,1,0,General,Bottoms,Skirts +873,55,Sheer & lovely,"Tried both colors....gorgeous, but kept the white as it offers more versatility in my wardrobe. happened to have an retailer cami that follows the lines of this top exactly to help conceal how transparent it is. [the black color will also need a cami -- strong sunlight or a camera flash will be revealing.] a lovely layering piece under sweaters, vests, jackets. so pleased!",4,1,1,General Petite,Tops,Knits +824,65,Meets all expectations,This shirt is really lovely. the fabric is soft and comfortable and the embroidery is very well done. it looks great with jeans and adds a little feminine touch to the look.,5,1,0,General Petite,Tops,Blouses +1008,33,Great skirt but..,"Ok, so maybe i am too picky because the pattern is lovely, the colors are great, the fabric is quality, the fit is flattering, the sizing is appropriate. that said, the high to low hemline shows the inner fabric so it kinda stands out when you are moving and i find it distracting so unfortunately i am returning it. sizing reference, i wear a size 8/10 in pants, i'm 5'3 and the medium petite fit comfortably.",4,1,4,General,Bottoms,Skirts +927,48,Love this vest!,"Found this vest in the sale section, actually rolled up in a ball on the floor! what a great find. the colors and texture are rich. strong navy blue base with rich other shades and texture. yes the vest runs big, but if you tie it from the back the bulky look is gone! love this way to wear a cocoon cut vest! the vest is in a size xs/sm and on my build works like a typical medium would be. perfect for work and lovely with jeans and skirts. washable wool blend that is soft with nice structure. to",5,1,0,General,Tops,Sweaters +1008,62,This skirt looks better in person,"Great fabric, not too clingy and provides a forgiving sillhoette. very comfortable. perfect skirt for summer get togethers or shopping. may be a little long if you are on the short side. one thing i liked is that the skirt draped well and doesn't hang open or slide up. recommend particularly on sale.",4,1,0,General,Bottoms,Skirts +873,45,Beautiful top,"I love this top. it looks exactly as pictured and has a very flattering fit. i ordered the black and it is somewhat sheer. the material has a slight burnout effect. the black can be worn without a cami but if i wear it to work, i will need to add one.",5,1,2,General Petite,Tops,Knits +873,34,Lovely lace design but sheer,"An retailer associate gave me this to try on since i love white clothing and lace. i tried on a large for my 5'9"", 36c. hourglass frame and found it to be a tad large and probably could go down a size. my thoughts are.... +_______________ +pros: +- breathable and comfortable fabric due to cotton/linen blend. +- lace detailing at the top is lovely. +- runs tts except i found the arms ran a tad small (and i have smaller circumference). but there's enough stretch. +_______________ +cons: +- extremely sheer!",4,1,24,General Petite,Tops,Knits +873,56,,Very pretty top with beautiful lace detail both front and back. love the way the material feels and it hangs very nice....actually slimming. i purchased the black & would highly recommend.,5,1,6,General Petite,Tops,Knits +960,60,Great navy blazy with extra flair,"Love this blazer - it's a heavy jersey fabric, which is comfortable all day, with no wrinkling. and it has a cute light grey jersey knit trim around the pockets which adds visual interest and keeps it from being a boring navy blazer. the sizing is correct - i wear a 6, and the 6 fits perfectly. it's got a slightly athletic 'boyfriend' fit - it's not boxy, but don't look for a really skinny tight fit around the waste.",5,1,11,General,Jackets,Jackets +873,46,"Lovely, dressy tee",I love this t-shirt! it's a little bit dressy because of the lace but the t-shirt material is great for casual wear. i tried on the white but ended up buying the black because the white is so sheer. i'll still have to wear a layering tank with it but the black just feels less sheer for some reason. really cute and nice quality t-shirt!,5,1,3,General Petite,Tops,Knits +1008,36,Casual and fashionable,"I got this in black. will probably get in the purple print too. the purple is a bit more casual, while the black can be work appropriate if with a nice top. very comfy.",3,1,1,General,Bottoms,Skirts +927,38,Star trek villain,"This top is really beautiful, but looks absolutely horrible on my 5'9"" apple shaped body. in the words of my husband, i looked like a star trek villain.",2,0,2,General,Tops,Sweaters +1008,68,A great skirt for the right figure,"This midi skirt arrived and i tried it on immediately. the fit was perfect and i wanted it badly enough to say that it would balance my 5'5"" height and 135 lbs. if i just wore a higher heel shoe. then i saw the grey lining showing from the back of the skirt through the scalloped front. it's a beautiful skirt, flows nicely and could be flattering on a taller person who can forgive a poorly designed lining. i would recommend giving it a try.",4,1,0,General,Bottoms,Skirts +873,37,Pretty,"Cute, basic white shirt with nice detail. i love meadow rue and this is another great shirt from them. while i love it, i wish it were just a little bit softer (i am a sucker for soft things). however, i am keeping the shirt and it will be great for work or play.",4,1,0,General Petite,Tops,Knits +862,47,,Super comfortable; great with jeans or leggings. i would definitely order a size down.,5,1,0,General,Tops,Knits +862,42,Soft and comfy,"This is the softest shirt, super comfy, very baggy but i'd say true to size for the style. it is a bit thin and i'm worried how it will hold up, or would have given the full 5 stars. i'm not a usual fan of the turtle neck but this is so soft, i love it!",4,1,2,General,Tops,Knits +862,62,Cozy and cute,"Love this with leggings or jeans for a casual look. quality seems ok, though i'm hoping for no shrinkage after i wash since it's the perfect length at the moment (i'm 5'7"" and it just covers my butt). good sale purchase!",4,1,0,General,Tops,Knits +1078,51,Beautiful pattern,I love this dress. i read the reviews on it before i purchased and they were spot on. i have broad shoulders so i ordered the large. it was still plenty roomy but i wore a royal blue sweater with it and it pulled the waist in just enough to make it fit without a belt. i would buy it again!!,5,1,0,General,Dresses,Dresses +1078,34,Gorgeous dress- runs large,"This is not my usual style, but the print is gorgeous and the dress is really high quality. i'm glad i purchased. it definitely runs big- i am usually an xs or s depending on brand but i ordered an xs p. it fits pretty well and falls at the perfect length just above my knees (i'm 5'3, 110). it's a little shapeless still but that's the look. i'm still sort of wondering if i should have gotten an xxs but the xs p definitely works especially for the length. can't wait to wear this. amazing sale pri",5,1,0,General,Dresses,Dresses +862,23,,"This shirt is so comfortable, soft, and super cute. definitely recommend!",5,1,0,General,Tops,Knits +862,39,Recommend if you find your size,"I tried on xs in the store (returned) and it looked huge on me, i like the rushing idea, the material is super soft, but overall, couldn't justify even at sale with 40% off, as it wasn't flattering when it looks big. blue color nice in person.",4,1,1,General,Tops,Knits +862,33,Soft and cozy,"The model does not look as good in this shirt as it looks in real life. it is flowy, flattering, and elegant, not to mention warm and soft. i hope it holds up!",5,1,0,General,Tops,Knits +1072,26,"Cute dress, muted color","Very flattering dress but i think the black is more of a washed out navy/black instead of a true black which made matching this with other black times (cardigan, tights,etc) difficult.",4,1,0,General Petite,Dresses,Dresses +862,42,Sheds,"Love the style, weight (not too hot) and look but it sheds all over any pants other than jeans. i also wore a white tank under it and it stained it blue. very disappointed",3,0,0,General,Tops,Knits +1078,23,Great dress!,"It runs a little large, i got a small and it was still a little large in the shoulders (but maybe that is just my body type). otherwise i love this dress!",4,1,0,General,Dresses,Dresses +862,46,,"I was so excited when i purchased this top! it was going to be my go to for running around, as it looked super cute with leggings and boots! the softness alone made me feel like i was wearing my pajamas.....so comfy! that all changed after one washing......it is now pilling and not nearly as soft as before! makes me sad, but it is going back!",2,0,0,General,Tops,Knits +1078,49,"Weird, unflattering cut","I wanted to love this dress so much so that i ignored earlier reviews and purchased it in two sizes to see if i could make it work. the fabric is gorgeous, but the fit was very unflattering. it's too large on top and hangs awkwardly in both sizes. i considered tailoring to make it work but with this pattern i felt like that would be a compromise. in the end i returned both sizes ast the fabric couldn't compensate for the very unflattering fit.",2,0,0,General,Dresses,Dresses +1078,49,Pretty but odd fit,"The fabric is nice and could pass for silk even though it is viscose-rayon. the pattern is pretty and flattering. sadly, the fit was just off- big in the center but tight at the hips. if i size up the v-neck might be too wide. i'm disappointed that i'll have to return it. it probably would look great on a different body type. i would recommend it for apple body types but not for pear body types.",3,1,0,General,Dresses,Dresses +862,36,,I agree with the review that says this is better in person than in the pic online. great sale price and super cozy but thin enough to transition to spring!,4,1,0,General,Tops,Knits +1078,40,Light up the room!,"I adore this dress! it's so charming. great quality, lovely fabric, beautiful color. the fit is supposed to be boxy and probably won't work on a beautiful curvy body. with a petite athletic body, i feel beautiful in it! i wear a small or xs and i definitely needed an extra small. pair it with black or camel, sandals or boots, it's lovely!",5,1,0,General,Dresses,Dresses +862,39,Very versatile!,"Flattering, comfortable, and a fantastically versatile color and style. if you'd like the garment to fit about how it does on the model, i'd say that it's tts. the picture represents the color accurately - is a very dark, slate grey. i've found that the color is a great neutral - i can wear it with other neutrals or with colors, as featured on the model. the style is also really versatile - i can wear it as a stand-alone t-shirt, or under a blazer to work. + +i've washed the garment once on the",5,1,4,General,Tops,Knits +1022,41,Perfect aside from length,"Fit tts, very flattering and slimming with fitted thighs and slight flare. can be dressed up given the beautiful and classy dark wash. the hint of stretch makes them super comfortable. the only thing is, they are very long, will have to hem unless you are 6 ft tall. in my 5'5 case i'm afraid the hemming will take away some of the flare effect. ag, please make pants with realistic length! still, very happy, especially since i was lucky to get my size during a promo.",4,1,1,General,Bottoms,Jeans +868,44,"Pretty, lightweight shirt for summer but huge","The previous reviewer was right on with her review, including that the shirt is a bit darker in color irl. i'm writing this review to emphasize how large this shirt runs. i'm typically a small in shirts, usually a 4 and occasionally a 6 if it's a very fitted style. i'm 5'5"", 125lbs, 34b, and i went with the xs in this, and it is huge on me. i really like it though, so i'm considering reordering in an xxs, i've never worn an xxs. i'm starting to get frustrated with inconsistent sizing, especially",4,1,5,General,Tops,Knits +862,27,Cozy pullover,"I saw this online and didn't think twice about it but then i came across it at my local store and it's so much better in person! it is incredibly soft and cozy! i purchased the gray stripe version and two solid color versions (cream/forrest green.) i can see this being a great staple over the fall/winter with leggings, boots and a long pendant.",5,1,4,General,Tops,Knits +862,53,Great product!,Extremely well made tank top. great for work or a night out.,5,1,2,General,Tops,Knits +862,41,Soft and cozy!,"Love love love this turtleneck! it's soft and cozy, and i've already reached for it on several chilly days. it definitely runs large. i sized down and it still has an oversized, swingy shape.",5,1,0,General,Tops,Knits +1078,52,"Pretty colors, but fits like a sack","It made me look extra thick in the middle--could pass for maternity wear. pretty colors. fabric is fine. it's just too shapeless and not flattering on me. i'm 5'11"" and it was also on the short side for me. even if it fit better, probably too short for my age (40s).",3,0,1,General Petite,Dresses,Dresses +1078,35,I'm confused,"Let me start with: i love this dress --- but i'm totally confused. there is a pleat in the center of the dress, which if you look at the first photo on retailer's website, you can see that the model has the pleat in front, but when i recieved the dress, the tag is on the pleat side, meaning if you put the pleat in front, you're wearing it backwards. then other pictures show the model with no pleat in front, i tried it both ways and neither way felt wrong --- i thought it would fit funny if i flipp",4,1,0,General Petite,Dresses,Dresses +862,45,"Flattering, and comfortable!",Surprisingly flattering and so very soft and comfortable. have had many compliments on this. super cute paired with skinny jeans and boots. also purchased the ausaria infinity scarf in navy which contrasts nicely with this top. and a plus--no signs of pilling yet.,5,1,2,General,Tops,Knits +1078,56,,This dress fits true to size. i ordered an xs like i usually wear as a small was falling off of me when i had tried on in store. the colors are more vibrant in person. it's a really pretty dress and is very well made. the fabric is solid and light weight. i don't think it would work for someone with a lot of curves unless they sized up though as it is a really straight dress that is meant to lay free.,4,1,1,General Petite,Dresses,Dresses +1078,50,Love this dress!!,This dress is wonderful. fits perfect. very comfortable. wonderful colors.,5,1,0,General Petite,Dresses,Dresses +1022,43,"Great jeans, but long","I'm a big ag fan, so i was excited to receive these for my birthday. i really love everything about them, but boy were they long!! even with a 3 inch heeled boot i was stepping on the hem. i'm 5'7"", so i don't often have to get things hemmed, but that was a must with these jeans. i recommend these jeans, but unless you're 6 foot tall, plan on running them to the tailors.",5,1,1,General,Bottoms,Jeans +862,23,"Amazing, versatile shirt","Has to be one of my favorite retailer purchases! the shirt is so soft and can be paired with so many different items. the turtle neck will help keep you warm, although the actual material is a little thin. don't let that dissuade you though. you won't be disappointed by this purchase! i'm going to get the other color too :)",5,1,0,General,Tops,Knits +822,34,,,5,1,0,General Petite,Tops,Blouses +1078,30,"Cute print, no shape",I was excited about this dress because i love the colors and print. the dress has no shape though and not in a good way. it's not flowy enough for the look of a shape dress but its not fitted enough to be flattering.,3,0,1,General Petite,Dresses,Dresses +862,33,Super soft,"Mutliple layers of buttery softness. i bought the blue and it's true to size. it is soo soft, i could wear this to sleep. it drapes beautifully. highly recommend it. now i want to buy all the colors!",5,1,5,General,Tops,Knits +1078,42,"Beautiful dress, but runs large","Great quality, beautiful print, definitely a steal given its current sale price. it does run large. order a size smaller. works perfect with a belt!",5,1,1,General Petite,Dresses,Dresses +1078,46,Beautiful dress,"This dress is gorgeous and feels so soft! looks great with booties and flats! can be paired with so much! jackets, scarfs, long necklaces! so glad i bought it! i did down size to a small from my usual medium! and got the regular instead of petite! fit great",5,1,0,General Petite,Dresses,Dresses +1078,50,Lovely worn as a tunic or dress,This tunic is lovely and versatile. looks great over a pair of jeans or as a dress!,5,1,0,General Petite,Dresses,Dresses +1078,45,So gorgeous,I never write reviews although i do most of my shopping online but i had to write one for this tunic. i got it in the blue and sized down from a small to extra small- although i ordered both to see. the smaller size fit better around the shoulders. it is a bit retro funky and elegant at the same time. great price for such a quality piece.,5,1,0,General Petite,Dresses,Dresses +1078,50,Great fabric,"Bought this for my 21 year old daughter, and she loves it. the blue color is very pretty and she says she gets lots of compliments and requests to ""touch it"" because the fabric is gorgeous. it's a bit boxy, and a little short to wear as a dress for her 5'9"" height - she says she risks showing her undies when she raises her arms. but she likes is so much she's just keeping her arms down. :-)",4,1,0,General Petite,Dresses,Dresses +835,68,,,3,1,0,General,Tops,Blouses +1078,46,Cute dress!,"Perfect dress for the fall in texas. the velvet is on point for this season. the dress is very roomy on the bottom half...wish it was a little more fitted. but, overall a great dress, got tons of compliments!",4,1,0,General Petite,Dresses,Dresses +872,24,"Pretty top, runs large","I sized down to an xs from my usual size small, and it fits perfectly. it is cropped but i like the swingy shape that will work well with high-waisted bottoms. i did have to get a replacement because my first top had some beading coming off when i received it in the mail, but this new one seems much more sturdy.",4,1,0,General Petite,Tops,Knits +909,54,Great weekend piece,"I saw this in the store on a mannequin in baltimore.....and i had to try it. it almost felt more like a sweatshirt than a true sweater. i found the top to be a shaped. smaller at the shoulders and chest and widening as it went down. +the sleeves were rolled up which showed a soft peachy look underneath, which was cute. but i am on the fence on to which size to go with. like other reviewers have said, if you go up a size for shoulder comfort it gets a bit too swingy on the bottom. the length was n",4,1,0,General,Tops,Fine gauge +868,46,Fun new top,This top is very cute and is made out of soft material that isn't clingy at all. and you don't have to be stick thin for it to look good. i don't like to show my arms normally but this top is very flattering all around. i love it!,5,1,0,General,Tops,Knits +909,35,"Pretty from far away, but...","As soon as you get up close to this sweater, you will notice that the bird on the front is of an interesting kind of material-almost like carpet that has been shaved waaaaaaaay down so that the little fibers are sticking straight up and a fraction of a millimeter high. i was not excited about this texture and can imagine it will be a huge magnet for collecting lint and dust throughout the day. the fit was way off on this one for me and was not flattering at all. it wasn't for me at all even thou",2,0,5,General,Tops,Fine gauge +868,37,,"This top had so much potential! i bought the striped colorway in an xs, which is my normal size. i am a 32d with an athletic build so the sleeves are tighter on my arms than pictured, although they are adjustable. the top of the shirt fits perfectly, but the bottom is very wide and short. i'm only 5'2"" but it's still just a tad shorter than i'd like. i wish it was slightly more fitted and then it would be perfect. unfortunately, this one is going back.",4,0,1,General,Tops,Knits +857,25,In love,"This top is absolutely beautiful. i especially love the richness of the black and burgundy one! i am typically a size medium but purchased the large because i wanted it to fit a little bigger and longer - i was going for more of a tunic-style. if you're broad-shouldered like i am, you may opt for a bigger size as well because the sleeves can look a little silly if its too small.",5,1,0,General Petite,Tops,Knits +1078,26,So cute!,I love this piece! they're calling it a tunic but its plenty long enough to wear without any pants. i usually wear a small/xsmall in retailer sizes and i definitely went with the xsmall. size down to avoid the potato sack look. i think this piece is so great for fall. definitely a must buy!,5,1,28,General,Dresses,Dresses +1078,32,Fell apart before my eyes,"Was excited to wear the dress for the first time. but while standing in front of the mirror putting makeup on, the seam between the body and sleeve just started to unravel. strangest thing - just a random hole appeared :(.",1,0,0,General,Dresses,Dresses +1078,52,Beautiful quality of fabric and style,"I saw this on a model in the house and home catalog. it looked very comfy but with an edge of elegance. i saw it in store in the navy and loved it. the other color is very washed out, not good for me being a blonde. i didn't try it on, and got a small as it looked as it ran a little large. i'm 5'4"", 130 lbs. and it fit perfectly. it hits above knee, a little longer than on model. it hangs beautifully and the blue color is stunning, looks expensive. i received a few complements the first time i w",5,1,1,General,Dresses,Dresses +1095,24,Best sundress ever.,"The cut, fabric and detail on this dress is incredible. it runs a bit small though, usually i wear a 00p, but the 0p is plenty snug. 5'4'',110lbs,32c, fits just as on the model, looks much like photos, but slightly more yellow in tone.",5,1,0,General,Dresses,Dresses +872,45,Cute & very full,"Cute top. agree with other reviewer that it is really nice in person. the colors are rich and the embroidery is beautiful. it is a very full swing top, but be aware that the sides are a few inches shorter than the front and back. this isn't evident in the photo shown. i usually wear a sm in retailer tops, and the small looks larger on me than how it fits on the model, in fullness and especially in the arms. it's still cute enough to keep, but i personally probably could have gone down a size.",5,1,6,General Petite,Tops,Knits +857,30,Different and flattering,Purchased this shirt for holiday photos and it worked great. very flattering and a fun take on plaid. more feminine than your classic plaid button down.,5,1,1,General Petite,Tops,Knits +857,34,Fun take on plaid,"I was looking for a red and black plaid top with a twist, and this tee definitely fits the bill! i plan to wear this shirt with a long sleeve tee under it for extra warmth for casual holiday events, and can see it with a skirt and cardi for work. fabric is soft and comfortable. fit is loose but not too boxy.",4,1,0,General Petite,Tops,Knits +1078,24,Love but too baggy if petite,"I loved this dress and tried on the xs in the store and then ordered the petite. i thought if i ordered the petite it would not be as baggy. it is just way to boxy/baggy for someone my height and weight. however i would recommend to someone taller because the velvet is great quality and it would have been an amazing dress to have for fall and also for winter. for reference i am 5'0"" and weight 113 pounds.",3,1,0,General,Dresses,Dresses +1104,37,Great for any season,"I love the way this dress moves on you and the high low. a medium fit me perfectly. i am 5'8"" and the long part in the back barely touches the floor in flat shoes. the colors are sort of fall, but the top is like a sun dress. i think you could wear this any time of year with the appropriate accessories. i wore it with a 3/4 length sleeved cardigan and sandals in oct. and it was perfect. the fabric feels nice, great quality. it's on sale so you have nothing to loose!",5,1,0,General Petite,Dresses,Dresses +857,25,Cute & different,I bought this in the blue motif and i love the colors of the plaid. the first day i wore it i received many compliments. the armholes are a bit low but i wore a cami underneath. i don't think it is that noticeable unless your arms are raised the whole time. i like my shirts to be a bit longer and this is perfect since i have a longer torso. i am normally a size 6/m/34b and the med fit perfectly.,5,1,0,General Petite,Tops,Knits +1095,28,"So cute, great print!","I love fitted top dresses like this but i find them hard to fit well on my body. this one fit perfectly, straps can be let out or taken in easily, and i get tons of comments on the print!",5,1,0,General,Dresses,Dresses +492,23,So soft!,I just love this hoodie! it is so soft and comfortable. i am usually an extra small and that size fit me great. i wish it didn't have the brand on the back of it but i can get over that. this is a very cozy piece that i will wear many times.,5,1,1,,, +492,49,Wardrobe staple,Love this hoodie. so soft and goes with everything. highly recommend for comfort and style. great company.,5,1,0,,, +1078,27,,I wear an xxs petite and this dress was still large. i like that look so i'm okay with that but the sides do stick out a little bit if you have a smaller frame.,4,1,1,General,Dresses,Dresses +868,44,Best shirt ever!!! go get it!!!,"I bought this shirt in every color. i look sexy and the best part is how comfortable it is. it is very versatile. i wear it at networking semi formal events/ dinners/ going out with friends, and everywhere. i feel awesome with it.",5,1,0,General Petite,Tops,Knits +1078,56,I'm over 50 and over 150 lbs and love this dress!,"The large is perfect for me and is just my style - not too baggy but just shapely enough to where to the office with or without leggings, as the fall approaches. i bought the blue; the color is rich and saturated. the material is soft and all around comfortable, which is my number one factor in buying clothes. love its versatility too, since a jacket and scarf can dress it up. shoes also dress up or dress down the dress. all in all a bargain.",4,1,4,General,Dresses,Dresses +1078,23,"High quality, on trend","I love this tunic! it runs slightly large. i ordered my usual size small (i am 5'4'' 125lbs) and it is a looser fit but falls nicely. i wear it as a dress, and the blue/gray color is so pretty!",4,1,1,General,Dresses,Dresses +1070,27,Love these leggings,"I'm 5'3"" and 110 lbs. i usually have a hard time finding pants or leggings that are short enough and fit just right. i ordered an xs, and these fit like a glove right away and i was so pleased! i ordered the brown and blue motif. i have only received the blue so far but love them. they hit just right at the ankle and aren't too loose at the bottom. it seems like they are made well but will wait until after the first wash. i'm someone that wears leggings all the time but love that these look like",4,1,0,General,Bottoms,Pants +1078,46,Call me infatuated...,"Absolutely love this little shift!!! i bought it on a whim really. it just harkened back to my crushed velvet loving days of the 80's! crushed velvet then was just something fuzzy that had been run over by a car and maybe thrown up on a few times at a punk rock bar :-) this is not that sort of velvet. it's also not some cheap polyester looking knock-off of true velvet. i always find those to have a somewhat ""plastic"" sheen to them. that is exactly what i was worried about judging from the pictur",5,1,0,General,Dresses,Dresses +1095,26,,Love this dress and so does my boyfriend. took my usual size 2 and it's a little snug but the 4 would have been too big.,5,1,0,General,Dresses,Dresses +1095,30,Runs true to size,"I read all the reviews before purchasing this and took the advice of others on sizing up. i am 5'4"" hourglass shape (32d, 27 inch waist, size 28 pant size) and normally wear a size 4p in retailer dresses. i ordered a 6p and the top was way too big on me. i went straight to an retailer store to try on a 4 regular and the top half was perfect on me. a little too long for my liking (about an inch below my knee), so i re-ordered it in a 4p. this dress ran true to size for me. i recommend trying it on in",4,1,1,General,Dresses,Dresses +1095,26,Proceed with caution if you are busty!,"I absolutely love this dress! it's a great summer dress that's flirty and fun. i feel this dress runs pretty true to size except in the bust area. the buttons at the top pull a little bit on me unless i wear a bra that pushes the girls up and together. i'm a 32ddd just so you have an idea. i'm 5'10, about 145-150 lbs and i'm a 4-6. in dresses i'm usually able to get away with a 4. i have a bigger bust and bum but a super, tiny waist. i'm just barely able to get away with wearing a 4 in this dres",5,1,3,General,Dresses,Dresses +1095,29,Fun sundress,"This dress is very sweet and summery. i disagree with all the other reviewers who complain about their not being enough room in the chest. i wear a double d and i didn't notice any pulling, which is definitely a problem i've experienced in other button down dresses. i also appreciated that the straps were wide enough to cover a bra - though i definitely will have to have them shortened. the color is not particularly vibrant (kind of a soft yellow thoat might not be flattering on every skin tone)",5,1,5,General,Dresses,Dresses +1066,39,Tts but long,"I ordered the 0p, in red and love these pants. the only problem is even in petites, these are long on me (maybe ok with 4 inch heels). the cut is comfortable and flattering, i have muscular thighs and these fall nicely on me. the color is also nice for this fall. i purchased last year's version (grey and turquoise, but reverse from what is offered this year) and they are very comparable (although i bought them too big last year). fabric not prone to easy wrinkling, highly recommend. (reference 1",5,1,5,General,Bottoms,Pants +1095,33,No bra unicorn dress!,"If i ever find something i can wear sans bra, i am pretty much going to buy it. just looking at this dress i wouldn't think it possible, but it is! this is a rare occurrence for me! honestly, the dress is a little tight a pulls a little bit across the chest (32d), but being able to go braless trumps that for me. hopefully it isn't too noticeable... i did find the straps to be extremely long, so i had them shortened. this dress is adorable and i've received so many compliments. it's so comfortabl",4,1,0,General,Dresses,Dresses +1078,73,,I love this crushed velvet dress in the rich blue color . i plan to wear it with short peep toe boots and also with ankle leggings and flats. so glad velvet is in this year!,5,1,0,General,Dresses,Dresses +1078,45,Definitely size down,"Love everything about this dress except - it runs huge. i am busty and usually wear a 12 in dresses, but the large was completely shapeless on me. will try medium and hope it is better bc otherwise i love the dress!!",4,1,0,General,Dresses,Dresses +974,28,Fell in love!,"Saw this jacket online and decided to search in store for it! i found it, and although it definitely looks more mustard in the picture online compared to the bright yello it really is, i felt it fit very well! it runs large, i usually am a size 6, however, i ended up buying a size 4 for a more fitted cropped appearance. the material is heavy but made very well, and feels great on! i recommend this blazer for any female that wants to brighten her closet up for spring!",4,1,6,General,Jackets,Jackets +1095,31,Beautiful summer frock,Love the buttons because i am currently nursing my 5 month old. easy access. i'm a 32dd 5'9 147 and it fits fine in the top. got a size 4... love how it flows over my pear shaped hips. i thought it was a sunflower print but actually moths! haha very cute. wish i would have waited and got the sale price... bought my it in may for mother's day!,4,1,0,General,Dresses,Dresses +1070,40,"Pretty, but totally uncomfortable!","I'm 5'8 - 38""?30""?38"" - i bought these leggings in a size large (blue motif) to wear under a really cozy organic cotton tunic in an attempt to create a sophisticated-looking, comfortable look. when i first it them on they felt like compression leggings and i wondered if they were too small. i wore them for a day and now they are falling down around the waist and the crotch is hanging. i spend so much time trying to hike them back up - i'm not at all comfortable and i doubt i'm looking sophistica",4,0,1,General,Bottoms,Pants +1070,45,Fashionable and comfortable,"Love these leggings. great fit, great look. perfect with boots and oversized sweater. bought a couple of different fabrics. highly recommend.",5,1,0,General,Bottoms,Pants +492,48,,,5,1,0,,, +836,37,Pretty top,"I adore maeve tops, and this is no exception. i'm small on top (32a), ordered my usual maeve size 0. i'm 5'3, 105 lbs, ordered regular (not petite) because the front of this blouse is already short. fits appropriarely, but take note it is much more blousy than it appears in the photo. you have to try it on, either you'll love it or hate it. i do love it's slightly oversized blousy fit, so i was not hesitant to put it in the dryer on low for about 15-20 minutes. well... it shrunk up like nothing",5,1,7,General,Tops,Blouses +1078,30,,,4,1,0,General,Dresses,Dresses +1095,32,So disappointing,"I was so excited to get this dress, and it was such a disappointment! it looks so cute on the model, but it was very different when i got it. the color is a lot more yellow than i thought it would be, and the pattern just looked a bit strange--it stood out more against the yellow instead of looking neutral. the dress fit really awkwardly on the top. the straps were way too long, and the chest area was practically baggy when i put it on. i normally wear a 4p, and i ordered down to a 2p. the waist",2,0,0,General,Dresses,Dresses +831,59,Grab it while you can!,"I actually paid full price for this over the winter and i'm not sorry i did. great top w/lovely fabric. i usually wear a small but in this top, an xs, so it runs a bit large.",5,1,1,General,Tops,Blouses +1078,57,Potato sack,"I look like i put a baggy bag over my head. also, the material really seemed like fake velvet to me.",1,0,1,General,Dresses,Dresses +868,41,Cute top,Very cute top and so comfortable! it runs big i'm between a medium and large. i ordered the large and it's definitely a little big but wearable. i probably should've swapped it for a medium but it's still really cute!,4,1,0,General Petite,Tops,Knits +1095,25,"Cute dress with potential, but not gonna work","I wanted to love this dress, but sadly i will be returning. the color looked fairly different in person than on the model. i thought it was a browner/neutral hue, but the dress is almost like a yellow seersucker-ish with brownish moth printing. was cuter than expected! the sweetheart neckline is darling, but that is where it fit me poorly. i have a 34c bust, and the cups of the size 4 were gaping on me in the front and all along the arm holes. the straps were also way too long and falling off my",3,0,2,General,Dresses,Dresses +868,46,Soft top but too revealing for non-toned arms,"The fabric is super soft and the grey is pretty, but it is light grey not dark grey as described when you select to buy it. my biggest issue with the top is that the cold shoulder arm reveals the entire arm, so if you aren't completely toned with your tricep and all over arm, it will show... which is why i bought this to hide my blunders",3,1,1,General Petite,Tops,Knits +872,42,Pretty embroidery- beading but poor shape,"Very disappointed when i received this. the colors and ombre fabric are beautiful. beading and embroidery make it a even more unique top however the shape ruins all of that. first it is nearly a crop top. second, it is boxy and it's attempt to be a swing top only makes it bulky. third, need to size down 2 sizes. had to return this.",2,0,0,General Petite,Tops,Knits +872,20,Cute but too large,"I love this top and the beading is beautiful, but just like everyone else, it was way too large. i normally wear a lg, but the large looks and feels like a 3xl. beautiful but large",3,0,0,General Petite,Tops,Knits +1078,45,Velvet crush!!,"This is a really beautiful dress, the pictures don't capture it well enough. was looking for a comfortable shift dress that is versatile, this fit the bill. for reference, i am 5'3"" and weigh around 113 lbs, i got an xxs...and it was a bit baggy, but shift aren't supposed to be tight. also has some fun details! look forward to wearing this!",4,1,0,General,Dresses,Dresses +1078,43,Adorable and funky,"I've been hesitant with crushed velvet comeback...but this dress is adorable! first, it is not a tent; on me it's the perfect fit for the style - not too swingy but definitely not fitted. this is the dress you can grab on a day you don't feel like sucking it in, throw a blazer over it if you need you look professional, wear to a girls brunch with booties or a night out with the hubs. the little extra detail i didn't see online that was a pleasant style surprise is the almost strap-looking piece",5,1,3,General,Dresses,Dresses +868,43,This blouse has an 80's vibe!,"I wasn't sure i would like this top, but wanted something different, than what i already own. i ordered it in an xs (my usual size) and it is slightly loose (which i knew it would be based on the cut). it looks great with jeans or shorts. i purchased the black and white striped one because it looks more interesting. the ties may drive me crazy- we'll see. i like the weight of the fabric, i just hope it doesn't pill. for reference, i am 5'3 and 123lbs. i usually wear a 2/4.",4,1,9,General,Tops,Knits +857,36,Cool and casual,"This top is a nice piece to transition into fall. it goes well with jeans, but it could also be dressed up with black pants.",5,1,2,General Petite,Tops,Knits +1095,65,Perfect little summer dress,"I was really nervous when ordering this dress because of the other reviews, but i couldn't get to a store during the mother's day event and really wanted this little number. it arrived yesterday and i'm already so excited to wear it, especially once i get just a tiny bit of a tan. i love the fact that it is yellow and white stripes with the dragonflies on top--the pattern is so much cuter in person than it appears online. the fabric is also a good weight, and it is lined, which greatly simplifie",5,1,0,General,Dresses,Dresses +1078,49,Cute!,"Runs a little big, but cute and comfortable. also shows bra straps a bit on each side, even when i ordered a size smaller. overall, very happy with it.",5,1,1,General,Dresses,Dresses +1095,37,"Lovely dress, but may need to alter on top","Based on reviews, i was concerned that this dress would not fit in the chest area. however, i find that i have ample room there (i am a full c). it is a tiny bit tight in the waist, but not uncomfortable or unflattering. i will go ahead and say that it runs small for that reason. the straps are a little long on me and will need to be taken up. also there is no zipper so getting it on and off requires unbuttoning the buttons, so it's not fast. + +overall quality is very nice and it is very prett",4,1,0,General,Dresses,Dresses +1078,23,,"Love love love this dress! i was worried the velvet would look cheap, but it absolutely does not! i bought an xxsmall and it is a little tight in the chest, but everything else fits perfectly ! i bought this in the slate color, but am seriously considering buying the lighter color as well!",5,1,14,General,Dresses,Dresses +1078,49,Adorable!,"After reading many of the reviews stating the dress can have the potato sack look, i certainly had concerns. particularly since i am petite, hourglass, athletic, and approaching 50. i decided t give the blue shade a try. the lighter shade is beautiful but was afraid it would wash me out with my darker hair and olive-toned skin. let me start by saying the blue is so beautiful and rich looking. the velvet has such dimension and is no ordinary velvet material. it is also lined. when i first tried i",5,1,1,General,Dresses,Dresses +1078,24,"Loving it, just order a size down!","Listen to all the reviews, size down! i got the dress in my usual size large thinking it would fit well size i have large hips and a booty, i was wrong!!! i could camp out in the large! it was super large!!! + +got the medium and its fit amazingly! its a tad bit tight in the chest(barely tight) but im a 38dd and this is not an unusual thing for. i just need to wear a thinner bra and it will be perfect! cant wait to wear it! loving the velvet trend this fall! thinking about getting the blue too!",5,1,0,General,Dresses,Dresses +872,55,Cute tee,It is very cute. i think actual one is much better than the picture.,5,1,1,General Petite,Tops,Knits +1095,32,Very flattering!,"I'm going to be straight out... this dress is very flattering and will get you a lot of male attention. so be warned! + +i am a 34c and i got a size 2p. it fit's tight, but just right. i have no trouble with the buttons, at all. i am 5'4"" and it comes above my knee. the material is very quality and seems as it will last a very long time. i get complimented very often when i wear it.",5,1,0,General Petite,Dresses,Dresses +1095,33,Cute summer dress,"This was a cute design, but didn't work for me. the fabric was slightly see-through, and too tight around the bust.",4,1,0,General Petite,Dresses,Dresses +831,42,Beautiful,This blouse looks even better in person. it fits true to size and is lightweight. i am not a huge fan of designs on shirts and usually stick with solids but i find this design to be very flattering. i just bought it today but i know i will get a lot of use out of it.,5,1,3,General,Tops,Blouses +909,36,Strange dimensions,"It's beautiful, lovely quality, gorgeous bird. but the fit just doesn't work for me. i'm usually a medium, which is what i got, it's just too tight in the chest. for ref 36d. as is it already flares out some in the bottom so i'm not gonna bother w a larger size unfortunately",2,1,3,General Petite,Tops,Fine gauge +1095,23,,"I bought this dress as a birthday present to myself which i wore to a recent weekend vacation to dallas, texas and i absolutely love it. i love the color and the design of the dress as i think it is timeless and i will get a lot of use out of it for years to come. +however, this dress is tight in the chest area and i would recommend sizing up. i am 5'10"", 156 pounds, and usually wear a us size 6, but when i tried this dress on in a size 6 the dress stopped buttoning up underneath my bust. i end",4,1,0,General Petite,Dresses,Dresses +1078,35,Like this,"Cute and different +looks good belted +will try with lace leggings",4,1,1,General,Dresses,Dresses +1078,39,Fun and flirty,Love! color and fabric are beautiful! new fav,5,1,0,General,Dresses,Dresses +1022,36,,"Love! i am 5'3"" 118lbs with short legs and a long torso. i was worried these would be too long....they fit to perfection! super excited about this purchase",5,1,0,General,Bottoms,Jeans +831,63,Pretty print!!!,"Today was my first visit to our new store! the sales person had this on and i liked the medium tones of the colors. many times i hesitate to order because i never know if the brand will run small and this does not. if you wear a medium in michael kors shirts, order medium.",5,1,2,General,Tops,Blouses +831,26,Universal top,"I'm not sure why it's considered a ""blue motif,"" i think it's more on the black and cream side. other than that this is a great silk top for warmer weather, it's lightweight and airy and you'll probably want to wear a nude bra underneath. looks great with jeans and heels for a fun night out as well as trousers for work. i'm 5'7"" and almost 130 lbs with a 34a bust and a small fit great.",5,1,2,General,Tops,Blouses +857,34,Versatile great top,"I've worn this top with leggings and straight leg jeans. looks great with both. it's almost like a t shirt but not as clingy and way more style. i'm 5'3, 165 and the large fit great. it hid my leftover baby belly and still looked stylish with flats or boots. only complaintbis that the armholes are cut low, so side of my bra is visible. but overall it's well worth it!",5,1,0,General Petite,Tops,Knits +1078,62,Fun for the upcoming holidays,"Love the crushed velvet and tried it on in the regular sizing in blue, but really needed the petite. although i tried on the xs in the regular sizing, i was afraid i'd need my normal sp, so i ordered that instead of the xsp. should have stuck with the xsp and will be exchanging it for that size. it definitely is dress length (but dowdy dress length in the regular for me at 5'1"") and the petite sizing is not all that much shorter, but enough to be cute. expecting a lot of use, especially over the",5,1,1,General,Dresses,Dresses +909,57,Beautiful!,"I ordered this sweater and it is beautiful.... i am returning though because it fits snug through chest, shoulders and upper arms. i am an xs - and that is what i ordered and it was tight through these areas. if you are busty it would be a definite problem.",4,1,10,General Petite,Tops,Fine gauge +974,32,Goes with everything,"This is a beautifully made jacket. i ended up buying the cream color as the yellow had sold out. the cream goes with everything, so that was probably the right decision. the inside of the jacket has a silk lining with a scotty dog pattern. the jacket fabric has just the right weight to hang properly, without being too heavy.",5,1,0,General,Jackets,Jackets +1078,37,Love,Love this dress and the color,5,1,1,General,Dresses,Dresses +898,72,Love,"Runs small. great quality. haven't washed it yet, but guessing it will shrink if i dry it. awesome texture- waffle knit. i got the stripe. it has a removable palm tree pin!",5,1,0,General,Tops,Fine gauge +1095,35,Retro sundress,"I love this dress! i rarely pay full price at retailer and couldn't take the risk of loosing this waiting for a sale. i tried on two different size 4 and a 2 and they all fit the same; a little large in the bust and the straps a tad long on the 4's. i typically can go between 2 and 4 at retailer, and with this dress the 2 was a better fit, i'm 34b and i had room in the bust on the 2 and the 4 was loose in the bust. i did t have any gaping issues others commented about. i'd have given it 5 sta",5,1,2,General Petite,Dresses,Dresses +1078,39,Beautiful & modern,"I tried this dress on in the store but decided to think about it because of price. i ended up buying it later on line. i usually wear a medium (5' 7"" 128 lbs wide shoulders) but got a small in this dress. it does run the risk of looking like a sack but sizing down did the trick! the easy going loosness yet elegance is why i like it. it is so comfy but looks lucious. i plan to wear it often this fall and christmas.",5,1,0,General,Dresses,Dresses +1078,33,This awesome dress!,"I saw this dress in the store and immediately grabbed it. i think that if i'd only seen it online i wouldn't have looked at it twice. in person, the fabric is so beautiful, a shining and classy velvet crinkle that could go way way dressy with the right accessories. this dress runs large, like all of floreat's items. i am 5'2"" 110# and normally wear an xs or 0, but had to size down to xxs petite for the right fit (like on the model). the only drawback is dry clean only. based on the content of th",5,1,0,General,Dresses,Dresses +1070,24,,,4,1,0,General,Bottoms,Pants +1070,59,Love these leggings!!!,"I purchased all 4 of the color/pattern offered. all fit beautifully and have washed up great with no shrinkage with line dry. the only pair i had retuned were the blue motif because they were made from a very different material with not near as much stretch and felt much smaller to me and not as comfortable. the pattern was cute and may work just fine with those who have a different build. i felt these were in general true to size. no doubt i will wear these all winter! +thanks antro!!",5,1,2,General,Bottoms,Pants +868,37,So cute,I love the off the shoulder trend but don't like having to wear a strapless bra so this style caught my eye. it is cute and different and people compliment me on it. swingy but flattering and i got the turquoise but i like it so much i just ordered another one in the black and white stripe.,5,1,0,General,Tops,Knits +836,44,A line,"This is a beautiful blouse. very pretty and looks well made. unfortunately i had to send it back. i'm looking for a more classic cut. it has an a line/tent shape. when i put it on and put my arms above my head, the bottom of the blouse was up to my bra! +i would order from this brand again.",4,1,4,General,Tops,Blouses +1078,36,Wrong color and too big,I was so excited for this dress to come. i am 5'1" and 100lbs so i ordered and xs petite. it was literally falling down around my shoulders and gigantic all around. maybe on someone taller this would have looked great. i was also disappointed that the blue shown online was not accurate. my dress was a much lighter blue. back to the store it goes.,2,0,0,General,Dresses,Dresses +909,49,Gorgeous!,"I have nothing but positive comments to say about this sweater. i'm 5'6, 130 pounds and i got a medium because my shoulders are a bit wide and my sweater fits me just as it does the model. it's not bulky but it is very warm, and the colors are out of this world! a very high quality and unusual piece that will be in my wardrobe for many years.",5,1,0,General Petite,Tops,Fine gauge +1078,50,Gorgeous color and casual cool,The blue color is sublime - the material velvet iridescent cool - the fit is loose and not something to wear to show off your figure but it is has a cool swingy boho vibe that was what i was expecting ... add a cool shirt jacket to elevate it and give it more structure,4,1,0,General,Dresses,Dresses +1095,24,Love this!,"This dress is very, very flattering which i was a little surprised about because i have a smaller chest! it is pretty long, coming to right around my knees and i love the buttons! i would say that the quality is not 100% there, it is very thin material but i am still very happy with it. i really wish they made this dress in other colors because i would buy them in a heartbeat! it is a perfect summer dress and i can't wait to wear it!!",5,1,10,General Petite,Dresses,Dresses +868,55,"Love the color & open shoulders, but too blousy","I love the color (coral/pink) and the open shoulder design of this top, but it's too blousy at the bottom (way too much fabric). i ordered a small. i am 5'4"" and 120 lbs. i might try an xs if they still have them in stock. fabric is comfortable. the ties on the sleeves add a special touch.",3,1,0,General,Tops,Knits +1095,31,Great attention to detail,"Even though i'm currently at a 34f in the bust the size 12 works for me, although i did install 2 snaps between the top 3 buttons to keep everything in line. i'm 5'5"" and my torso is often too short for regular sized clothes. the straps were too long for me, but to my delight i discovered that this particular dress is designed to unstitch and tailor the strap length with ease. with those small alterations this dress fits like it was made for me, plus the pattern and fabric are top notch. i tried",4,1,0,General Petite,Dresses,Dresses +1078,41,,,3,1,0,General,Dresses,Dresses +1078,37,Stunning,"I've been eyeing this dress for weeks. finally i took the plunge and bought it! the velvet is gorgeous and the style is fun and playful. i know many of the reviewers said it was running large, but i had to order an xl because i nearly got stuck in the l (no stretch). im normally a size 16 and carry most of my weight in my stomach butt and hips. definitely more of a shift than a swing. however its still just lovely. looking forward to paring it with a kimono for a wedding tomorrow!",5,1,0,General,Dresses,Dresses +857,38,Happy with the look and fit,"I love the built in layers of this shirt. it looks great layered with a long sleeved shirt underneath for winter also. being a teen in the 90s, it reminds me of a little bit of grunge, but in a less brooding more classy way. if only i still had my doc martins... i find the fit to be great, slightly loose, but not baggy and the fabric feels light but not fragile.",4,1,0,General Petite,Tops,Knits +1095,29,So classic!,Great little dress for a picnic. i am a 34dd and didn't have a problem buttoning the dress unlike another previous reviewer. i had purchased a size 8. my only reason for return was the price and my wallet! otherwise this well-made dress would still be in my closet! love the buttons.,5,1,0,General Petite,Dresses,Dresses +1078,67,Crushing on crinkled velvet,"When i saw this dress online, i immediately passed on it. but i was drawn to it's faint shimmer and soft feel in the store and decided to try it on. i am usually xs - s in dresses and tried the xs (5'4, 34b, 27 waist). it fit beautifully. it comes about a couple of inches above my knee and makes me look slim from the side - which isn't typical of shift dresses. i plan on wearing it with flats now and tights and booties when the weather gets cooler. would be a great holiday or new years eve dress",4,1,0,General,Dresses,Dresses +857,46,Cute and versatile!,"I tried the red version at store, it fit really good and i loved it. then i found the blue version online and liked even more. it can be worn for business and casual.",5,1,0,General Petite,Tops,Knits +1070,63,Awesome,Love these leggings & the color. i haven't been able to find a pair of great brown leggings for years. i was concerned the small might not fit but they are perfect,5,1,0,General,Bottoms,Pants +836,26,"Love, love, love","I love this shirt!!! the front is a little shorter than i thought it would be, but overall, it is so cute and comfy!! wish they had it in more colors!!",5,1,0,General,Tops,Blouses +1078,60,Stunning fabric,Bought this for the beautiful fabric and easy fit which it has. fits nicely through the shoulder area and is a little on the baggy side in the legs but the draping fabric makes up for that. i bought it in petite small and it is definitely long enough for a dress.,4,1,2,General,Dresses,Dresses +836,65,,"Love this shirt! it runs a bit big, i ordered the (petite) 4 and its a bit long in the sleeves if i don't roll them up, and a bit long and big in the back. but i love the look and it is classic. great with skinny jeans.",5,1,3,General,Tops,Blouses +872,42,Werid cut!!!,"I was really excited to see what this looked like in person. when i unpacked this shirt i was shocked to see what how short it looked. the colors are very close to what you see online but the shirt is super boxy. i have a smaller torso and it barely came to below my waist. you can't tell by the picture but this shirt can fit at least 2 people in the width. when i tried it on, it didn't look as boxy but still a really weird cut! it was disappointing because it looks so cute online! i will be retu",3,0,5,General,Tops,Knits +1022,35,Amazing overalls!,"I am not someone who normally wears overalls (this is actually my first pair!) but i'm so glad that i took the plunge and bought these. they fit amazingly while being both perfectly trendy and perfectly timeless. if you are on the fence about overalls in general, these are a perfect first pair. + +i'm a 25 in most denim brands and was also a 25 in these. the bottom portion fits perfectly and doesn't look sloppy (like i assumed overalls would be) at all! the top is perfectly casual. + +i'm so ha",5,1,8,General,Bottoms,Jeans +1022,29,The pefect overall,"I have been dreaming of the perfect overall that i can live in this spring/summer. these overalls completely fit the bill. i would normally wear a size 24, but i wanted the fit to be more relaxed with a slight slouchy look. i went with a a size 25 and they are exactly what i wanted. i feel like i can move around feely in these. they are extremely comfortable and the denim is pretty lightweight. i highly recommend these!",5,1,2,General,Bottoms,Jeans +1078,30,Disappointing,"I wanted to love this dress, especially because it's been given good reviews. i ordered the blue and tried it on. the fit was pretty good and the color is pretty and deep. i did not like the seam that ran around the drop waist. it created a weird allusion that the two pockets in front was actually a continuous pouch around the dress. i also did not like the neckline - there is fabric added on the shoulders that's in a different fabric and makes it look like you're wearing a t-shirt underneath th",3,0,1,General,Dresses,Dresses +1078,45,Great tunic dress,A very nice fall into winter tunic. length is long enough to wear along line as a dress with tights and tall boots. i found it true to size. the color of slate blue is beautiful!,4,1,0,General,Dresses,Dresses +1070,40,Great pattern,"Love these. wearing them today with a longer tunic style denim shirt and cardigan and boots. nice subtle print. i think they run about 1 size small. i'm normally a size 0/25. the xs was a bit snug and the material stretched so you could see white around the seams where the print pulled. size s fits great without any pulling and waistband comes up far enough. incidentally, i like them so much bought the same leggings in plain black elsewhere and the size s was the best fit in those too. love love",5,1,0,General,Bottoms,Pants +1066,34,So cool!,"I have a pair of elevenses very similar to the turquoise and grey pair, and i get non-stop compliments on them. they are very flattering and drape beautifully. the fabric is also complete no-fuss and no-fade. this time, i went for the red pair, and i love them. they really go with the current upscale 70s vibe; they have the 70s attitude without the poor quality of most vintage 70s clothes.",5,1,3,General,Bottoms,Pants +1095,34,From horse track to beach day,I purchased this dress to wear to a horse race but will also be wearing it all summer long! the material is light weight and has a vintage flare to the print. the button in the center of the dress add an extra detail that keeps the dress pretty and casual.,4,1,0,General Petite,Dresses,Dresses +857,26,,"Really wanted to love this top but it was too boxy for me! really pretty deep wine colors and a great plaid, but overall it did not give me any shape and it was returned,",3,0,0,General Petite,Tops,Knits +1066,30,"Beautiful, but consider petite!","The navy version of these pants are beautiful. the contrast gray stripe is subtle and slimming, and continues through details in the pockets. + +i am 5'6"", 34-26-38 and i wore a size 4 regular and 4 petite. the regulars were very long, and even heels couldn't help them. the pant leg covered my foot, covered my toes. the petites were much better (and i rarely order petite). they hit the bottom of my foot with no heels, so i think a heel would make them look right. i'm just not sure if the petite",4,1,1,General,Bottoms,Pants +868,65,So soft but tickles :d,"The fabric is divine. it's a thin polyester knit that just floats on your body. it's soft and drapes wonderfully. it's like wearing a nightgown. + +the styling is so sexy. it looks really alluring but it's actually just a plain ol' tank top with a bit of a sleeve dangling at the elbows. it's very modest really. + +the silly thing is, it tickles! yeah those dangling ties tickle your arms when you move. lol + +i bought the grey in a xl and the fit is perfect. it says ""dark grey"" but it's really l",5,1,0,General,Tops,Knits +1070,26,Grease leggings,My girlfriend and i both purchased these leggings in grey. we love the color because it goes with so many things.the problem is they do not fit the same. hers ran true to size and mine ran small. i am tempted to reorder another pair to see if they fit differently.,3,0,0,General Petite,Bottoms,Pants +1066,36,,"I love these pants, they are a great addition to my work wardrobe. the fit is very flattering, with the wide legs falling perfectly, and they are a great length. i got the red, which is a beautiful and brighter than the pics. the fabric is a nice weight, perfect for fl winters. i personally like the mid-rise as it helps with tucking in shirts that are on the shorter side. i highly recommend these pants as a nice alternative in color and cut for the office. i'm 5'7"" and 135lbs and i purchased the",5,1,1,General,Bottoms,Pants +857,46,,Awesomely different top. the first time i wore it i didn't wash it so it was big on me. it shrunk from washing so it fits better now. there is some unraveling of the frayed edges though.,4,1,2,General Petite,Tops,Knits +831,47,Pretty pleasant,I like this on the model so i ordered it. it is not quite as deep in color as online but still pretty. it fits well not too loose and not tight at all. i will get great use out of this all the way through spring!,4,1,2,General,Tops,Blouses +1095,37,Cute vintage style sundress!,Love this dress! i sized up from a 6 to an 8 because of the small bust issue and it fits perfect. perfect casual summer dress with a vintage feel.,4,1,4,General Petite,Dresses,Dresses +1095,58,Good quality,"I thought i would take a chance even though reviews suggested tricky sizing issues. unfortunately it's true, it was very tight at the waist and bust even though i sized up to a size 8. i took it back to the store.",3,1,0,General Petite,Dresses,Dresses +1078,44,Start fall with this piece,"Saw this at the store and it is breathtaking in person. as the previous reviewer stated, i too consider this a dress and not a tunic, and it's not really crinkled either. the dress is structured, very soft, and so gorgeous on. i tried on a regular x-small and it fit but a bit uncomfortable at the mid section. the small fit better (it's meant to be a bit loose, bohemian looking) and the hem falls right at my knees which is perfect for the office (i'm 5'2"", 34b, 26 waist, 36 hips). i have medium o",5,1,8,General Petite,Dresses,Dresses +868,55,Just adorable !! a must for every wardrobe,I just received this and absolutely love it !!! i love cold shoulder designs and this one is unique and so well made. i am usually a size small and it fit perfectly. i would say it runs true to size and will look perfect with white or black pants and a cute sandal. i am so glad i got it. love the quality .,5,1,17,General,Tops,Knits +831,54,Great top for spring and summer,I was a bit unsure when ordering because of the cut of this blouse. i have a lean athletic torso but i am a 32dd. sometimes tops like this can make me look heavy or pregnant. love the fit though. it fits lovely and comfy. it goes well with jeans or cream colored pants and will be a nice addition to my spring wardrobe.,5,1,4,General,Tops,Blouses +1078,72,Stylish and artsy dress,"Love this dress!! i ordered the blue for some color and it is nicer in person than in the photo. the fabric and color are beautiful. can dress this up or wear for work. i am 5', 110 lbs and 35/26/35 and got the size xs petite. it is a loose fit but not too loose. very unique dress that i can wear all fall and winter.",5,1,0,General Petite,Dresses,Dresses +1095,38,"Love this dress, but definitely some fit issues...","Super cute retro styling and i adore the pattern however i had some fit issues that were worth noting. i tried the standard 6 on at my local store but the bodice was so tight on my 34 b chest. i was determined to get this lovely summer frock and had the sa order an 8p to be shipped to me. i'm currently taking my 8p for a spin today but only after some alterations: even through the dress was quite large in the bust, there was still the dreaded button gaping so i added 2 snaps in between some of t",4,1,1,General Petite,Dresses,Dresses +1095,38,Cute summer dress,"You have to give this dress a try - yes, it runs small - i'm usually a 4 in retailer dresses. / 32dd 5'5"" 130lb - i couldn't button the top button with my bra on but i could without it on - it fit perfect every where else. it is very flattering in every way. it's 100% cotton, lightweight, and soft. the flare does not have too much fabric and is actually slimming unlike other fit and flare dresses. the sz 6 fit more comfortable and i could wear my bra which looked better and gave my breasts a lift",5,1,2,General Petite,Dresses,Dresses +868,54,Love the cutout and the sleeve detail,This is very cute. i got a lot of compliments when i wore it. i'm 5'10 so i always struggle with tops being too short but this was ok,5,1,0,General,Tops,Knits +835,34,Great for layering at work,"Cute shirt. i'm 5'3"" and 120 lbs. size s fits perfectly. a little shorter in the back than i'd like but great for layering.",4,1,0,General,Tops,Blouses +857,21,Love it!,"I got a m in this top and was a little scared but i absolutly love this top, i was debating on it and then caught it on the 30% off sale, my first retailer purchase and it definitely won't be my last! great quality, so comfortable, and very cute!",5,1,0,General Petite,Tops,Knits +1095,42,A tad disappointing...,"I usually love maeve and generally feel like everything they make was made for me. sadly, this dress is a definite exception, which could easily have been solved by changing the construction of the dress. as other reviewers stated, the dress does run small, but even if you size up, if you have any breasts at all, the dress will pull at the buttons, causing them to gape (i'm only a b cup, so not on the large side.) i'm pretty sure this is why the model has her arms crossed in the picture. i love",2,0,10,General Petite,Dresses,Dresses +1078,39,Great dress!,This is the perfect dress to wear casual or dress up a bit - perfect for fall and super comfy!,5,1,0,General Petite,Dresses,Dresses +1095,38,Super cute!,"I love this dress. it is a fun and flirty summer dress. i think it can be dressed up or worn casually. i am a 36c, 29"" waist, 40"" hips. i bought a size 8 and it fits me great. as others said, it is a little snug across the chest, but i think it is supposed to be. with the proper bra it fits very comfortably! i am going to wear it for mother's day brunch!",5,1,1,General Petite,Dresses,Dresses +868,48,Sleeve detail is fab!,"This piece is a winner solely b/c of the sleeves. otherwise, it's a plain, large tee. however, the sleeves are gorgeous and so unique! had they had my size left, i would have purchased in other colors (i got pink). it runs large, so size down.",4,1,0,General,Tops,Knits +835,48,Very chic,"Absolutely love the diagonal zipper. it is extremely flattering for the office, and comfortable. a great layering piece with a simple blazer, or alone. looks high quality. my only one minor complaint is that the bottom tends to move away from my body, as the top is wide on the bottom. hence, gives you a lot of leeway in the stomach area. may not be a good thing, or may be a good thing. still, overall, a keeper.",4,1,0,General,Tops,Blouses +831,48,Beautiful,"Rec'd so many compliments on this. absolutely beautiful, comfortable and versatile. try it with white crops and cute heels!",5,1,0,General,Tops,Blouses +1095,35,Straps are long.,"I got this on sale. i sized up from my normal 10 to a 12 based on reviews. the 12 is too large for me and i'd need a 10 which is sold out. the straps are very long. i think even if i sized down, i'd have to have them altered. also, the dress i got is missing the bottom button. sending back. i'm not too sad, i ordered the pink pippa swing dress with the same order and love it.",4,1,0,General Petite,Dresses,Dresses +1078,52,A beauty,I have featured two pictures below. one is size s. the other is xs petite. i'm 5 feet 120 and a 34 d. i highly recommend this dress. i definitely could have gone either way. but felt sizing down would be more flattering.,5,1,2,General Petite,Dresses,Dresses +1075,34,Shapeless ans unflattering,The details on this dress are lovely. the embroidery is wonderful. but the fit on this dress is just not for me. it is very baggy and shapeless. it doesn't have any curves at all so it just drapes down me and looks formless. really unflattering. sad but it's going back.,3,0,2,General,Dresses,Dresses +872,51,Better than the photo,"I actually love the thickness of the cotton fabric on this top. i am tired of too thin shirts that develop holes right away. i love the color too.i am usually a medium and the medium fits well, if a little roomy.",5,1,2,General,Tops,Knits +1030,68,,I love these jeans! their fit is fabulous and they are very comfortable! my new favorite brand of jeans!,4,1,0,General,Bottoms,Jeans +1080,41,Perfect dress,"I love this dress. it fits perfect (i'm 5,3, 108 and ordered xs)i think the off white stone color is true to the picture. i will be wearing this dress as my wedding dress for our small intimidate wedding. i can't wait.",4,1,0,General,Dresses,Dresses +872,46,Great fun top !,I just received this in the mail today and i love it! its adorable- very flattering and hides all the spots you'd want hidden. i don't find that this runs too large. i ordered my usual size large and it fits tts. it's not meant to fit snug. i ordered this in the navy color- beautiful and flattering!,5,1,2,General,Tops,Knits +872,48,Great top,"Love the detail, quality of make and fabric, comfort. i've been looking for a top like this. expect that it will wash fine. it's not see through and i always wear a nude bra. got xs in white and it fits well, not too loose and billowy. i'm 5'2"", 115#. highly recommend.",5,1,0,General,Tops,Knits +1087,32,Sheer and no slip?,"I'm not sure if i only received part of this dress as a mistake, but i received the chiffon shell, but there was no slip as pictured. it makes it kind of difficult to wear when the entire thing is sheer. i had high hopes, but sadly, this is being returned. the xs is out of stock now, so i can't even reorder. bummer.",1,0,2,General,Dresses,Dresses +960,24,Jingle all the wayyy...,This jacket is just as stunning in person as online. high quality and just overall fabulous design. as much as i loved it though i couldn't get over the fact i was jingling every time i moved. it seemed like it could cause piling issues and i thought it might get annoying wearing for an entire day. i loved this and wanted so hard to keep it but i need functional chic pieces not noise makers. anyways fit was great looked just like the model on me so i would recommend but with caution as for this,4,1,0,General,Jackets,Jackets +281,54,Didn't work for me...,"I'm on the shorter (5''3"") side of the spectrum and usually wear an xs in retailer. this is a lovely suit but it didn't work at all for me. it might work well on a taller person or someone who is longer waisted. the ruching and fuller cut leg was not flattering on me at all. it was very tight and pinched. sadly, i returned it.",2,0,0,Initmates,Intimate,Swim +850,54,Perfect summer top,Loved this online and it did not disappoint. lightweight and super flattering. fabric is sheer with a lovely windowpane pattern. top front of the bodice is lined. looks great with a pair of jeans. super easy to care for. toss in washer in a mesh bag and it comes our perfectly. will likely be a go-to summer piece.,4,1,4,General,Tops,Blouses +281,50,This is a gorgeous swimsuit,"The design and fabric on this suit are even more gorgeous in person than on-line. i am 5'4"" and between 138/140 and ordered a medium. the thing i especially like about this suit is that it has adequate cup size and support. i am a 36c or d depending on the bra and this suit is very flattering and provides nice coverage and cup support. the straps can be shortened if you want a little more bust support. the material and design of the suit itself feel substantial and even without the straps, it do",5,1,1,Initmates,Intimate,Swim +850,48,Go up a size if you are busty!,"Love this top. very flattering on an hour glass figure because even though it has a more of an empire waist it is not so volumous as to overwhelm the figure --as so many retailer tops are these days. one caution: i had to go up a size to accommodate my bust. normally a size 6 or small in retailer tops but a 34dd, so went up to a size 8. the top is more snug around the bustline so just be warned if you are well endowed. +the fabric is sheer but not overly so, embroidery is well done. over all a b",4,1,4,General,Tops,Blouses +281,30,"Flattering, but small","The ruching on this suit is super flattering. i ordered the medium -- i am 5' 6"", 150 lbs, and usually a solid ""medium"" in most retailer items -- though i would definitely recommend sizing up with this guy. i was able to get it on (and it certainly held everything in place), but since it is a one piece, pulling it on was a bit of a struggle and i certainly could have used about an inch more fabric from top to bottom. i will be returning and exchanging for a large.",5,1,3,Initmates,Intimate,Swim +1025,60,,"I was really excited to get these pants but was somewhat disappointed when i received them. the fabric and color are great but i was expecting a more traditional cut after examining the ones shown on the model. i need to size down on boyfriend cut jeans, and i would have initially, but the description doesn't say anything and the model doesn't look like she's wearing a boyfriend cut, so i didn't . now the size i need is unavailable so i am returning these, sigh. i so wanted to keep them.",4,1,3,General,Bottoms,Jeans +1110,36,Buyer beware if purchasing in black!,I fell in love with this dress when the catalog came in the mail and jumped online immediately to order it. the dress just arrived and is not as pictured in the catalog - the picture of the model walking on the beach. in that picture it appears to have black lining or a black slip underneath when in reality there is nude lining sewn into every edge and isn't going anywhere - for a minute i thought about having it removed by a tailor but it seems the entire dress would have to be re-sewn. some of,3,1,7,General,Dresses,Dresses +1110,42,Too small in chest,I loved this dress. i kept putting it on trying to figure out how to get my boobs to not fall out all over the place. this is not a dress for larger breasts. it is absolutely beautiful otherwise!,5,1,0,General,Dresses,Dresses +1047,35,,"These pants are beautiful and very comfortable. i am 5'3"" and 120, ordered an extra small. i had to hem them because they are extremely long, otherwise the fit is great.",4,1,0,General,Bottoms,Pants +1110,25,Such a fun dress,I love this dress. i think it will be awesome to wear this summer but also a great transition piece into fall. very boho!,5,1,0,General,Dresses,Dresses +1110,33,,"This is a nice dress, but i'm glad i tried it on in the store. not for women with bigger breasts. i'm 36d and size 10 didn't fit me on top. lace part was too short to cover the whole area. other than that color is great .",3,1,0,General,Dresses,Dresses +1047,26,Very cute by very long,"I purchased these pants once i saw them go on sale. i had seen them a little while back but with summer coming to an end, i didn't want to spend $88 for a pant a wouldn't wear often. the $49 plus 20% off is a great price. they are really cute and just as pictured. good quality too. however, they were at least 3 inches too long. i am 110lbs, 5'3"" and ordered the xs like i always do. they fit perfectly except for the length. worth the $20 to get hemmed.",5,1,0,General,Bottoms,Pants +1047,34,Great flowy pant,"These pants are nothing short of amazing! they have a great wide leg with plenty of beautiful flow to them. i am 6 months pregnant and can wear them under my bump, but they are by no means maternity pants (i have only gained 8 lbs). they have a nice silky material that will be great for hot summer weather and will be great, comfortable travel pants. the only downfall is the length. i am 5'6"" with long legs and will have to get 2-3 inches chopped off.",5,1,0,General,Bottoms,Pants +1047,54,Classy and comfortable,"I have 2 of these now by the same designer. it's comfortable and will be a staple in my closet for summer, early fall and spring. it is a little on the long end but with platform heels, it's perfect.",5,1,0,General,Bottoms,Pants +1110,52,Perfect for the spring/summer,"I noticed the reddish one (actually, barney-purple) in my local store and had to try it one, since i like this cut of dresses from my teenage years. the color was my main concern, but this proved perfect overall. it is low cut in the bust, but a scarf can fix it for us modest girls. there were quite a few loose threads on the lace and stiching that i had to trim off. for the reference, i am 5'4"", 120 lbs, and an xs was perfect.",5,1,0,General,Dresses,Dresses +996,26,Runs small and short- why no size 16?,"The skirt has a great cute design and great colors and great shape. but it runs very small and short. this company needs to provide a better fit, and large sizes if they run small.",4,0,4,General,Bottoms,Skirts +868,41,Too short,"This top would be great if it were longer and the neck wasn't so open. even for a boatneck, the neck was too wide. for those that don't mind showing their stomachs this top will be okay. the material is nice and stretchy and i like the stripes but just way too short for me.",3,0,2,General,Tops,Knits +825,24,White is completely see through!,"Very cute shirt, but the white is see through. i could see every detail on my bra. i returned for the pink, which is just as cute.",4,1,7,General,Tops,Blouses +865,57,Fun and unusial,"I felt comfortable wearing this to a party. easy to wear and accessorize +.",5,1,0,General,Tops,Knits +868,38,Too thick,"This sweater was pretty short. beyond that, when i raised my arms, the thickness of the sweater caused the shoulders to rise up and stay there when i put my arms down.",2,0,2,General,Tops,Knits +420,41,Super soft & comfy,"I love these pants. saw them in-store & couldn't do it at full price but they're a steal on sale. super soft & comfy. love the wide leg. fits true to size. i'm 5'2"" 125 lbs & ordered the xs bc no petite. waistband fits a bit tight but i prefer that to them slipping down. would buy again,",5,1,1,Initmates,Intimate,Lounge +996,39,As always soft and flattering,"Only thing is the fit is a little loose, so i wish the xxs petite wasn't sold out (or that there was a xxs#. at 115 lbs, i tried on e xs regular, that made the skirt a maxi on me #5'1.5""# and it was nice, but a bit loose. i would have worn it as a sexy strapless #i tried it, just not daring enough to actually wear it like that). so i ordered the xs petite, we shall see. + +the navy and beige is a nice classy combo, i could see it being pulled off in all seasons, depending how you pair it.",5,1,7,General,Bottoms,Skirts +825,48,Perfect white top!,"While the blue color pictured is stunning, i purchased the white poplin in store. two best features? the ruffle on the neckline continues across the back and dips into a small ""v"" ( a great detail, especially for short or swept-up hair during summer months). next, this white fabric's crisp finish is coupled with a ""just right"" weight (solid enough to be opaque, but light enough for warm days). plan to pair it with skinny jeans throughout spring and summer. thrilled!",5,1,8,General,Tops,Blouses +996,49,Cute skirt,"This skirt is really cute. it's body conscious but not tight. the material is soft and stretchy, making it flattering and comfy. while it's smooth in the back, the draping in the front could hide tummy issues. as another reviewer said, you can dress this skirt up or down. i typically wear a s/4 in bottoms at retailer and the s fit tts. also, i love the different take on the high-low hem.",5,1,1,General,Bottoms,Skirts +1047,40,Cute but long,"You will need to get these pants hemmed if you are not six foot tall, as they are quite long. but they are so cute that the extra alteration expense is worth it. imagine wearing pants that feel like pajamas but that look like a million bucks. is this not every woman's fashion fantasy?",4,1,0,General,Bottoms,Pants +996,52,,,5,1,0,General,Bottoms,Skirts +865,54,Very delicate but super cute,"I really love this top, but am afraid i may need to return it, because the fabric is so delicate that little snags began to show up within hours of wearing it, and they show really badly as black spots, because the fabric is made with light and dark delicate threads. it feels so good on though! you must be super careful with it. i have no idea how the little snags even got there!",3,1,1,General,Tops,Knits +865,44,Frumpy,"I am 5,7"" 135 lbs the small fit well in the bust but no shape . it was just big and frumpy . it went back .",2,0,0,General,Tops,Knits +825,53,"Tickled, tickled, tickled!!!","Yep, absolutely tickled to death with this top. light, airy, cotton poplin with personality plus. such an aesthetically pleasing piece! i haven't been this pleased with an article of clothing in some time! this blouse speaks to me...i am 5'5"" 142 lbs and the size eight was a tad large-might have gotten a six but this is fine. it is very blousy on the bottom but when it speaks to me it says 'belt' or 'tuck' anyway! the neckline is just too much! it gives such personality to the piece. the open ne",5,1,1,General,Tops,Blouses +1047,39,Can't say enough about these pants!,"I was so excited when these pants went on sale! tried them on in-store and ordered online. tried both medium and small and they both work, thanks to the elastic waistline. they do run very long, so if you're super tall these are great, otherwise prepare to wear very tall heels or get them hemmed.",5,1,0,General,Bottoms,Pants +996,47,"Definitely an ""all about the bass"" look","If you know the meghan trainor song (and who doesn't?), you'll know what i mean! i could tell by the photos online that this skirt would enhance curves, and i am fine with that. however, it is very snug in the rear. i can honestly say i had made it to my 40s without ever once wondering or worrying, ""does my butt look big in this?""--that is, until i tried on this skirt. however, i chose to keep it since we were going to hawaii soon, and i decided it would be fine as a casual skirt and cover-up. i",3,1,2,General,Bottoms,Skirts +1110,57,,"I love this dress! good for work or social occasions. flowy fabric, and not boxy. the length is perfect, not too short. i can't wait to wear it. picture is accurate as to color.",5,1,0,General,Dresses,Dresses +1047,32,These pants are like wearing angel wings!,"The pants are everything i expected and much more! the material is a delicious and light weight. the colors are beautiful-white base with jade green and black design. there is a very comfortable elastic band waist with tie. i am 5'9"" and ordered the longer length and they are just to the ground. i weigh 140 and have a slim figure and the medium is a very comfortable fit. i would highly recommend these if you like looks that are up to date and comfy-these are a win-win!",5,1,7,General,Bottoms,Pants +420,62,So soft i wear them as pajamas,"I really love these pants as ""loungers"". not sure i would wear them outside the house, because the legs are very wide.. yes, the elastic has the problem that others have mentioned, but i just hold it in place when i pull them on and it stays put. but the fabric is so soft that i put them on every night after work and sometimes don't take them off before bed. pockets are a nice touch - something i have come to love about retailer pants.",5,1,0,Initmates,Intimate,Lounge +996,41,Very flattering!,"I tried this skirt on in the store, it fit like a glove (that doesn't happen very often for me) but couldn't find the right top to pair w/ it so i passed on it, but when i got home i found the perfect top already in my closet! so, i ordered it online, it doesn't seem to lay quite as nice as the one i tried on in the store, but i'm keeping it regardless. highly recommended this skirt! fits tts.",5,1,0,General,Bottoms,Skirts +996,31,,"This skirt looks great on, i didn't even think before buying it, planning to wear it all summer. so the aesthetic is great. quality and design, not so much. you get exactly one good wear out of it before the folding absolutely disintegrates, it is not sewn in or built to last. + +then, it looks like a cheap sarong over a cheap miniskirt. i thought the dry cleaner might be able to fix it, but they said they would have to resew the whole garment, not exactly what you want to hear with almost bran",1,0,6,General,Bottoms,Skirts +1135,66,Amazing flannel,"Never spent this much on a dress so it needs to be amazing for me to keep it. i've never seen flannel patterns and colors like this. the details in the back are unique. but in the end, i decided to return because it's too long and although it fit fine in a size large it didn't look that great on me. the dress has an exaggerated drop waist that was too low for my short waisted frame. the fabric smells odd. i tried belting it but the pockets and back buttons created bulk.",4,1,0,General,Trend,Trend +1047,20,Love the pattern but,"I absolutely loved these pants when i tried them on. i am 5'1 and will definitely need it hemmed because they are so so long. but i'm fine with that because these pants are so unique and gorgeous. i'm 130 lbs usually a size small but xs fit me just fine. i will have to say though, i am very upset because my pants shipped with a huge tear in the waistband. the only way i was able to try them on was because the last bit of the waistband was hanging on by a thread. so the quality isn't too great. a",4,0,0,General,Bottoms,Pants +868,39,Works if you're broad shouldered,"If you are like me and your shoulders are broader than your hips, the boat-neck on this won't be too wide on you. +---------- +i am normally a m or l in retailer tops, and went with the m, and i have very large biceps. if you're broad-shouldered but have smaller arms, i would recommended sizing down a size. +---------- +i have a very long torso and didn't find this to be too short...but i love jeans with a 10"" rise. if you are going to pair this with low or medium (8.5"") rise jeans, then yes, you will",3,1,22,General,Tops,Knits +1047,69,Hawthorne wide-legs,"These are huuuuge! i'm 5'8"" 117lbs. i ordered the small, but unfortunately they were way to big. i might have tried the xs, however didn't care for the pattern as much as the picture. i think these would work better on taller fuller figure girls.",3,0,3,General,Bottoms,Pants +825,38,"Beautifully made, quality top","I fell in love with this top on the spot and paid full price for it, which is a rarity, since everything goes on sale. it's a beautify top, well made and sits well on me. i am 5'6"", usually wear a size 10 but got away with an 8 in this one. i do have short torso, so i can see it having a problem for someone with long torso or someone who's tall. what's even better is that it went on sale and the store was nice enough to give me the difference back. i'm thinking about getting the other two colors",5,1,3,General,Tops,Blouses +420,70,Great pants - but have to return them...,"I do love these pants, but they are way too long for me and will have to return them. the petite sizes are sold out. it is true that the elastic in the waistband is not attached to the waistband fabric and does get twisted when you put the pants on. however, to me that is not a show-stopper. sorry i cannot keep them! i do love retailer and will continue shopping with you!",4,1,1,Initmates,Intimate,Lounge +1110,32,Super flattering!,"This dress was a 'maybe' for me online but when i tried it on i was totally won over! i got the raspberry, which is a really pretty color. i have 34dd chest and it fits nicely on me, fairly true to size and is super flattering on me- more so than most swing dresses. love it.",5,1,2,General,Dresses,Dresses +1047,64,Flattering and comfy,"I love flowy pants like these. pattern looks different, the green is pale, like on the far right. smocking is a beautiful touch and they are a nice weight and well made. had to hem them up about 2"" and i'm 5'8"", about 180. xl fits perfectly.",5,1,2,General,Bottoms,Pants +1016,36,"Really great, might be for taller gals","Really cute skirt. found it to be too much material on my frame - 5'4. would look really great on someone taller. the tie in the front was pretty, but a bit bulky on me and ultimately i want a skirt i can wear both ways - with shirts tucked in or out. this one is tuck in only so sending back. will look really great on someone else though! nice knee length skirt.",5,1,6,General,Bottoms,Skirts +865,60,Cute thin sheath type tank,"Very cute adorable shape tank top but extremely huge + does not come in petite and is not even close to fitting me + extra small is like a medium + not a sky color , like the picture it is a black-and-white type of the shirt which needs a thin camisole underneath shirt is definitely white but would look great with the black or gray camisole underneath + better for taller larger sized people",3,1,6,General,Tops,Knits +1098,34,Beautiful!,"Love the colors!! i'm 5'2"" and the regular goes down to my ankles like a petite dress would normally. if you get petite, it would be as high as it is on the model. the material is comfortable and i can see this as a pretty versatile piece.",5,1,0,General,Dresses,Dresses +1110,44,"Awkward, not as pictured",I purchased the 0p online and it was so incredibly short on me it wouldn't even serve as a tunic!! it was also so tight in the bust area that i could not pull it down because there is absolutely no give in the material. the berry color was not as bright as it had appeared online but in fact was a very muddled color that seemed to make the material look even more cheap. i would need to size up considerably to have good fit without give in the bust and arms and judging by the structure of the dres,3,0,51,General Petite,Dresses,Dresses +1110,45,Wrinkles,"This dress is gorgeous as displayed at store. color is vibrant, but the one i ordered looked dull and wrinkles very easily. i wore it to a ceremony and the seatbelt left me wrinkled before i arrived. the top is very wide and best to wear strapless.",2,0,2,General Petite,Dresses,Dresses +1110,52,Beautiful,"I am 5'7"" and wanted a swing type of dress that wasn't too short to be too young or too long to look frumpy and this fits perfect. it's very comfortable. it has nice quality in the fabric... not all polyester like many of the swing dresses out now. + +it's a bit longer in the back and has a very ethereal quality without being childlike. it's pretty, the sleeves are long enough and the elastic fits well. no pinching. i can wear a full bra with it and both boots and super sexy heels look great wi",5,1,31,General Petite,Dresses,Dresses +996,38,So flattering!!,"This skirt looks very nice in person and it hugs one's cure beautifully. the hem is uneven which makes it more interesting. i am 5'2"", 120lbs, tried it in the navy/beige color in size s and size xs, and i found size xs fits better. the fabric is soft and stretchy, and it drapes well. because i am petite, the length of the normal size fits me more like a maxi skirt (it goes all the way down to my mid calf). unfortunately, the petite xs is sold out, so i have to settle with the normal size xs. sti",5,1,6,General,Bottoms,Skirts +1110,43,,"I purchased this dress in the berry color. it is beautiful and feminine. the length fit just like in the picture. i love all the detail and ease of this dress. i'm 5'2"" 34d and purchased a size 2. it fits true to size.",5,1,9,General Petite,Dresses,Dresses +1110,31,Stunning lace/boho dress,"This is a gorgeous dress with a great, boho styling! the color in person is exactly as it's shown. it is wearable all throughout the year - easily paired with boots or sandals. while the fit is true to size, i found the lace detailing has no stretch to it so the bodice is a little tight. i love this dress and can't wait to wear it.",4,1,0,General Petite,Dresses,Dresses +420,57,"Lovely, yet annoying.....","I bought these almost immediately after touching them in store; they were so soft i didn't even need to try them on to know i would love them. i now wish i had tried them on in the store, so i could have learned that the elastic band on the inside isn't sown in, meaning the band will constantly twist and get tangled whenever i put them on/take them off. it's unbelievably annoying. i have to fix them every time i wear them. if i had known this i don't know if i would have purchased them. they are",3,1,31,Initmates,Intimate,Lounge +825,38,"Beautiful color, short waist","This shirt has a vibrant color and beautiful neck line, but unfortunately i had to send it back. it is short waisted with a lot of material in the back. had it been 1-2 inches longer it may flare out, but based on the length on me, it ended up looking like a shrunken tent. for reference, i am 5'8 with a long torso.",3,0,10,General,Tops,Blouses +1111,38,Love! love! love!,"A perfect summer dress! beautiful print and is extremely flattering for a curvy frame! i have worn this dress twice and have received at least 2 compliments each time! only note... wearing a bra with this dress isn't really a possibility due to the back detail. its pasties or if you're okay being ""free flowing"" & your chest isn't too large.. you can get away with it! ;)",5,1,1,General Petite,Dresses,Dresses +1098,29,Fits snug,"This dress was too cute to pass up! i loved it online but when i got it home, it was so tight i couldn't zip up my normal size. the length was perfect on me being 5'7"". the fabric and detail was beautiful. if you have a bust, order a size up. beautiful dress just really snug up top.",2,1,0,General,Dresses,Dresses +1110,64,Lovely spring addition,"This is one of those ""why we shop at retailer dresses."" + +this dress arrived today - via lasership - in an actual box! both deliveries from this service far surpass fedex, ups and certainly usps which crams an expensive item in an unprotected plastic bag into the mailbox!!! okay - off my soapbox and thanks for the free shipping weekend! + +raspberry is quite beautiful - truly as pictured. the lacework should be more resilient than many. the shape is reigned in by the bodice (not elastic btw) and the",5,1,25,General Petite,Dresses,Dresses +868,54,Cute and comfortable,"Love this top, looks really cute with a pair of high waist jeans. it is a nice thick cotton fabric that does not stretch out after wearing. it is short, so for me the high waist pants were a must, but if you don't mind showing your belly, then it would be cute with anything, the boat neck collar is not so wide that it shows your bra straps as with some. overall it was a good fit.",5,1,0,General,Tops,Knits +1047,33,Highly recommend,"I loved these online and am even more in love since receiving them in the mail. the band on top is a great touch for these flowy pants! i'm 5'9 and they are still a little long, but other than that they are perfect.",5,1,0,General,Bottoms,Pants +1047,38,Amazing pants!,"I bought these yesterday and i love them! they are super comfortable, and are the perfect length and size. i'm 5'8 and 150. i tried on both the small and medium (small for kicks, but turns out they were a better fit!). the medium fit great too-albeit a little baggy on the thigh. these are now my go to pants for summer, and travel! i can't wait to start wearing them!",5,1,1,General,Bottoms,Pants +996,48,,"This is so comfortable and so flattering. i got it in two colors. i think it runs tts. i sized up so i could wear it lower on my hips. i'm 5'2"" and got the regular size rather than petite and it's more of a maxi skirt on me--way longer than on the model. this is what i wanted (i can never find maxi skirts that aren't way too long even when i try petite), but if you want it more midi, go for petite sizing.",5,1,1,General,Bottoms,Skirts +128,30,Pills horribly,"I splurged on this pajama set for myself and now regret it. even though the design is adorable, the knitted fabric contains acrylic and started pilling a lot within the first week of wear. after a month and a couple washes, it looks horrible. it may be the worst case of pilling i've ever seen in a fabric. so so disappointed. it initially fit true to size but has stretched out a bit over time.",1,0,0,General Petite,Intimate,Lounge +828,48,Thin lightweight and sheer,"Personally i love cloth and stone. . this top however sheer is still a nice top to have in my rotation. it is thin, lightweight, and sheer but with a cami or nude bra can be pulled off nicely.. i did find the top to be tts for me but the sleeves were snug. i purchased this on sale with extra 30 percent off so i was justified in getting it..",4,1,0,General,Tops,Blouses +128,41,Super cute and comfy,"I am 5'2"", 110 lbs and i ordered my usual size xs and they fit perfectly. they are so soft and comfortable and keep me very warm. i can't wait to take them with me when we go to the snow next month!",5,1,0,General Petite,Intimate,Lounge +828,35,Great transition from work to evening,"It's lightweight, which is perfect for summer officewear when i don't want bare arms. my fear with buying any white shirt is that it will be too sheer. this shirt is sheer but not as much as most, in part due to the pattern that camouflages any sheer-ness. i don't find it to be see through when wearing a nude colored bra that matches my skintone exactly, i've worn it to work with a nude bra, and it was a great transition shirt between the office and happy hour. i went a size up to a small becaus",5,1,2,General,Tops,Blouses +862,29,Lovely tee with great back detail,This top is really cute- the plum is a lovely color and the top fits true to size. love the back detailing. and it is really good t-shirt quality.,5,1,0,General Petite,Tops,Knits +343,29,,I absolutely adore this top! it is super soft. i purchased it in the wine color. i would recommend this for anyone! if they have other colors i plan on buying them. i am going to wear this with jeans and my furry vest in the fall/winter.,5,1,1,Initmates,Intimate,Layering +862,46,Too much material,"Maternity like, and although the back is really cool, there is too much material in the front and it is almost like thin ribbed long underwear/pajama. returned.",2,0,0,General Petite,Tops,Knits +1094,56,Thin material,"This is a lovely dress, but much more casual than i thought from the picture. the material is very thin and casual. i needed a dressier dress, and i didn't need another casual dress, so i sent it back, but it would be fine if you want something casual.",3,1,0,General Petite,Dresses,Dresses +828,60,Too sheer,"I agree with the previous reviewer that this shirt is way to sheer at least for me. if you don't mind wearing a cami under it or your bra and skin showing in the back especially, then it might be for you. i did not feel like it was very good quality either the print is really cute, but then it did not button all the way up and i like the option because i think they drape better when they have buttons to the top wether you choose to button up.",2,0,7,General,Tops,Blouses +1094,45,Cute dress... for summer!,"I bought this dress on clearance and think it will be cute next summer, on a super-hot day with ballet flats. i have no idea what it's doing in the fall collection. am looking forward to wearing it 10 months from now!!",4,1,0,General Petite,Dresses,Dresses +1098,31,High quality one of a kind piece,"This dress had my attention immediately online, but in person it was even prettier. i would not say the colors are very ""pink"" as the color selection indicates, rather browns (with possible pink undertones) and yellows, and even a splash of dark green in the print here and there. there isn't a ton of give or stretch to the fabric so a larger chest may need to size up. i am 5'5"", 135lbs, 34c, curvy/muscular frame and the size 4 fit just right (though i don't have a ton of extra room in the chest",5,1,2,General,Dresses,Dresses +828,62,Great for summer blouse,"Yes it is thin but a great summer blouse. the body runs true to size, but the sleeves are tight..i may try to size up so the sleeves can be more comfortable.",4,1,1,General,Tops,Blouses +128,63,Perfect winter leggings,"Love these soft cozy leggings. fit like a glove. perfect for weekends, lounging, sleeping during cold winter weather. want more of the same!",5,1,0,General Petite,Intimate,Lounge +862,35,Love this top!,I am very happy with this shirt. i don't like skin tight clothes. i bought this top a bit loose but it does not look like i am wearing a sack. it is tunic length on me so i have worn it with jeans and boots. i love the way it flows while i walk. very flattering on. would definitely recommend!,5,1,0,General,Tops,Knits +862,65,Gorgeous,"I bought this for our daughter. i tried it on when it arrived and the material is fabulous and feels soooo good against the skin. the purple is a stunning color - very subdued and classy. if she does not like it on christmas after gifts are opened, guess who is going to keep it for herself! if she loves it as much as i think she will, then i'll just have to get one for myself. the pleats in the back are very flattering. best of all is the fabric. it is luxurious. thank you retailer for yet another",5,1,1,General,Tops,Knits +128,40,Amazing!,"Amazing! they are like those cozy, wool socks. they are true to size. they don't stretch out (at least yet), even after i stretched, etc . i am going to get another pair since i envision wearing these often in the cold house.",5,1,0,General Petite,Intimate,Lounge +871,34,Love it,"Very pleased with this top. i got the blue and white first and now i'm getting the red and white. the material is comfy and not sheer, and the slits at the side and the zipper in back add extra style.",5,1,1,General,Tops,Knits +1094,47,"Love it, but it's huge!","This would be a great dress if it was sized correctly. i ordered my usual xs and was shocked at how large it was. sadly the gray/black color is no longer available in xxs (a size i would never typically order) and is not available in petite sizes. i liked the design, the fabric, and the color. if you are lucky enough to be larger than a size xs, i recommend ordering one size smaller than your usual. + +for reference, i'm 5'3"", 111 lbs, 28dddd/30ddd, and usual wear a size 0 in dresses and pants (i",4,0,1,General Petite,Dresses,Dresses +757,38,Really disappointed,"Loved how this draped and im super petite 5'1""(32b bust) and this was seriously one of the most ill fitting items i have every owned. i purchased the pxs and it was huge. i hope this has a better fit as the other reviewers seem to have a more positive review. i was just appalled as to how bad the measurements were off. unfortunately the straps are not adjustable so this went below my chest. too sad retailer, please get the fit right!!",1,0,0,Initmates,Intimate,Intimates +862,21,Effortless,"I love this comfy top, and if it couldn't get any better, the pleated back makes it extra special! it is easy to thrown on and still feel put together. i purchased this top in the green and i'm absolutely enthralled by the rich color! i do agree that the quality of the pleats could be slightly better, however i believe it's up to par with the price point. i typically wear an xs/xsp and ultimately decided to go with a small for a more oversized tunic top look, but otherwise i'd go for your normal",5,1,6,General,Tops,Knits +862,35,Pleated back tee,I love this top! i think the knit rib quality is quite lovely and the color is gorgeous. i bought the plum color and got many compliments while wearing it. i like that it's a little on the longer side. i wore it with my pull-on ponte pants and booties. very cute!!,5,1,3,General,Tops,Knits +343,59,Feels oh sooo good!,"Never want to take this tee off, so comfy, & neutral, ecru stripe, with a teeny bit sparklecolor is superb! goes with a ton of items from my own closets! need more in every color/print/stripe......just feels ooh, soooo good",5,1,1,Initmates,Intimate,Layering +343,53,Love it!,"I bought the black one on an extra 40% off sale and i just love it! not thrilled about the other colors, but i might order another one just because i like it so much. super soft and comfy. i had to order a size up since the mediums were all sold out, but i like the way it fits. not too big at all.",5,1,1,Initmates,Intimate,Layering +757,49,,"This is a great layering piece. got in orange color and it is really a beautiful shade. i am 5'3"" 36dd and went with a m. very flowy, nice length (more on the short side), and not see through. i am able to wear without a bra, where the ruffles cover any possible chance of seeing anything ;). i have a black came from another brand and have literally worn it to pieces. goes well under a jacket for work, a kimono, wrap, denim jacket, just anything! i was a bit disappointed it is ""dry clean only"", h",5,1,3,Initmates,Intimate,Intimates +828,46,,Beautiful pattern and shape! however i had to send it back! it is extremely see through and ran very small! i even sized up and it still pulled in the bust area! maybe someone with a smaller bust might fit them better!,3,0,4,General,Tops,Blouses +862,41,Lots of compliments!,"If you're a curvy girl like me this shirt is very flattering. hangs nicely in the front, not too clingy. also has that accordian back which is very nice because it hides my back fat. the plum is gorgeous! was king it for the first time so can't yet comment on how it holds up with washing or whether the back retains its accordian loom with the hang to dry recommendation.",5,1,2,General,Tops,Knits +757,26,Dress me up or down!,"Love the color of this shirt! i wear it under a brown leather jacket i purchased, in store!",5,1,1,Initmates,Intimate,Intimates +128,48,Cutest leggings ever,These legging are adorable. i love that i was able to get them in a petite size and the detailing of these pants are awesome. the buttons at the ankle are cute. i truly feel these leggings are worth the price i paid for them because normally i don't like to spend so much on leggings.,5,1,1,General Petite,Intimate,Lounge +1098,61,,"This dress is beautifully made, but it does not flair slightly as in the photo, it stick out like a tent. it might be a good maternity dress. the fabric is somewhat stiff andheavy with a slight texture.",1,0,0,General,Dresses,Dresses +862,27,Unimpressed,This shirt is thin and shapeless. the quality is h&m esque. unflattering. not a fan,2,0,20,General,Tops,Knits +863,50,Not for a petite!,I really liked the style of this top but it's way oversized! i'm petite and drowned in this top even though i got it in an xs. the material is nice but i can't see i had a feeling for the cut because it runs so big. this one is going back to the store!,3,0,0,General,Tops,Knits +818,32,Classic shirt,I love this shirt and the colors it brings out. this shirt makes a great statement. it can be worn with jeans and look great or worn with slacks. i great a lot of compliments.,5,1,0,General,Tops,Blouses +1094,42,Not as shown,"I was extremely disappointed when this arrived. it's nothing like the red color shown, rather it's a very dull reddish color. as other reviews have suggested, it is very thin and runs large. i have to return.",1,0,0,General,Dresses,Dresses +831,31,Super cute,This fits a little short on me and i'll have to wear a shirt underneath even with a high waist pant. i still adore it! get it for the price!,5,1,0,General,Tops,Blouses +343,25,Sleek and fun,Very nice long-sleeved shirt. the fabric is soft and warm. you can wear it on its own or easily compliment with a jacket.,5,1,1,Initmates,Intimate,Layering +863,71,Tie-neck tee,Love it - material is soft and color goes will with any color.,5,1,1,General,Tops,Knits +862,59,Great piece!,"I couldn't be happier with this top. it is very flattering and not at all shapeless as suggested by another reviewer...least not on me. yes the materiel is somewhat thin but it is advertised to be a tee shirt type material. that is why it feels so comfortable on with nice stretch and softness . i love the pleated back giving it neat detail and a added feminine touch. i ordered the dark purple color and it looks just like in the photo. +thanks retailer!!!!",5,1,2,General,Tops,Knits +862,33,Great flattering blouse!,This blouse fits true to size. i carry alot of weight in my mid section and this blouse easily covers and hides my mid section where i'm not having to tug or pull down. i have this blouse in the olive green in xl and it fits perfect. i wore this on christmas with my family.,5,1,3,General,Tops,Knits +862,40,Green pleated top,"This color is really cool because it can go with black, grey, or tan shoes. the back pleats are unique and do not add bulk. the back is also lined, so you don't need a tank. fits tts and i thought it was fairly flattering. on sale, this is a great deal.",5,1,0,General,Tops,Knits +1094,36,"Great design, but thin","Love this dress? very flattering fit, though it runs big. i usually wear a s/m and got an xs in this dress. the only concern is the fabric is thin, but love it nonetheless.",4,1,1,General,Dresses,Dresses +862,38,,A comfortable shirt that has a touch of dressy to it.,4,1,2,General,Tops,Knits +871,43,Well made but go a size up,"I like this top, but it does not fit me correctly. i am 5'1"", and have a larger bust, 34 c. this shirt fits in the length, but is tight in the bust. i would have to buy this in a medium. i normally wear an xs or s. the quality is better than most t shirts, and i ordered the red. the red is a deep and striking color, and one of the better reds i've seen this season. the biggest problem i had was the cut of the shirt. the top cuts in and doesn't provide coverage, my bras are not covered by this to",3,0,4,General,Tops,Knits +1094,48,Versatile dress,"This dress is very versatile - it will be cool and comfortable in the summer, but one could also wear it with leggings or skinny jeans in the winter with a sweater or jacket. it can be worn casually with a belt, or dressed up with a statement necklace and earrings for a night out. the black color is more like a charcoal grey, which suits me fine. grab it while you can - it's a good deal for the current sale on sale price!",5,1,0,General,Dresses,Dresses +863,26,,"This t shirt is huge. i am 5' tall, size xs and i am swimming in this xs. i'm trying a size down. it is meant to be oversized but this is extreme.",4,1,2,General,Tops,Knits +343,66,Pills,So comfortable and soft but starting pilling after one wear! sending back.,3,0,6,Initmates,Intimate,Layering +828,54,Love it!!,"I loved the delicate and feminine print of this blouse at first sight. the fit was perfect - just enough room to be flattering and comfortable, without adding any unnecessary bulk. the style and print could even be paired with a more classic skirt and pumps and go to the office. the length was also spot-on - it's not too long to be a tunic, yet long enough to wear with skinny jeans or even leggings on an errand-running day. the blouse is very lightweight and sheer, making it that much more comfo",5,1,3,General,Tops,Blouses +128,37,Love. love. love!,"My husband bought me this set for christmas and it was hands down my favorite gift. these leggings, let me tell you about these leggings!! so comfortable, so cute (buttons/color/pattern), love they way they feel on my legs. as soon as i get home from work i put them on (well, a lot of days). i am ordering another pair. i am someone who doesn't do leggings. i would go as far as saying that this lounge set actually makes me feel sexy, that's how much i love them.",5,1,0,General Petite,Intimate,Lounge +863,64,Much cuter than i expectecd!,"I looked at this top online & thought abt wearing w/ shorts (later) & saw that it's cotton which i love. decided to order my usual size small in the black & the moss. arrived yesterday... happened to have on a pair of leggings & tried on the tops. wow, really cute w/ leggings... looks like i can wear w/ skinnys, shorts, or leggings so i'm happy w/ that. may even go w/ a skirt or slacks. +the cap sleeves are cute & the top flares some but not over-whelming or maternity-like. plenty of room on my s",5,1,11,General,Tops,Knits +863,44,Way too large everywhere,"I ordered a medium in this and it definitely fits more like a large. i liked the color & the sleeves, but tying the tie at the neck looks silly on me and leaving it open shows too much cleavage. overall, it is just shapeless and too much fabric on me. i'm sending this one back.",2,0,0,General,Tops,Knits +828,34,Beautiful but extremely see thru,"The design is gorgeous, the fit is great and the fabric drapes beautifully and is very comfortable. however, it's extremely see thru.",2,0,20,General,Tops,Blouses +757,27,Great but not quite as expected,"I really love this camisole, but it's shorter than i expected.",4,1,1,Initmates,Intimate,Intimates +1001,62,Skirt of the season,"When i saw this skirt on line, i wasn't impressed--especially at the price. but then i saw it in the store and i had to have it! it's beautiful. definitely a colder weather skirt due to the nice weight of the fabric. the colors are lovely and subtle, with a little sheen, ensuring you can wear it with many tops and for many occasions, from everyday to dressier. length is just at the bottom of the knee for me (5'7""), with a flattering and comfortable cut.",5,1,0,General,Bottoms,Skirts +939,67,Fun unique jacket,Purchased for myself and loved the fabric and unique design. it runs very large and the size smaller was not available so it was returned.,5,1,0,General Petite,Tops,Sweaters +939,44,Very cute!,"I purchased this jacket in red. i have several boiled wool jackets from retailer and this one did not disappoint. it is very warm and appears to be high quality. it looks good both snapped and open. i do believe that it runs large. i settled on an xxs petite and am just under 5'4"".",4,1,0,General Petite,Tops,Sweaters +939,56,,I had to order on line -- so popular that my store had sold out! i ordered the cranberry colored jacket and love the color. fortunately the salesperson talked me into a small as it runs fairly big (i'm usually a true medium). i can't wait for the weather to cool off so i can wear it!,4,1,2,General Petite,Tops,Sweaters +903,42,,"Fit is true to size, color is accurate. love the feel of the knit, it's weightier than if anticipated. i'm looking forward to wearing this to my pnw trips.",5,1,1,General Petite,Tops,Fine gauge +1094,53,Fits like a sack of potatoes!,"I tried this dress on in the store. i loved the fabric and color, but the fit was huge, no matter how much i sized down. there are full dresses and tunics that are supposed to be loose, but this was shapeless in an unflattering way. i was attracted to the style and color, but the execution left much to be desired.",1,0,0,General,Dresses,Dresses +939,55,Cute jacket!,This is such a great addition to my fall wardrobe. this is so cute! i'm 5'9 and this fits perfectly. i don't usually do well with some of the cropped pieces but this one has such a complementary cute. the sleeves are just the right length. i've had lots and lots of complements on this one! it's a keeper!,5,1,0,General Petite,Tops,Sweaters +1110,47,Zipper is weird,"I ordered the dress on-line. this dress looked pretty, the material was soft and comfortable, the length was perfect, but the zipper was totally out of place. it bulged out in a weird way which made it look like the dress was torn. i had to return the dress. i normally don't see a problem at this level in retailer clothes.",2,0,2,General Petite,Dresses,Dresses +1081,48,,,4,1,0,General,Dresses,Dresses +939,37,Flattering warmth,"This sweater is warm and cozy. it has flattering lines the way it closes, the banded detail at the hem and sleeve details. please remember it is wool so right next to your skin my be itchy. however it is the best sweater for a slim flattering warm look.",5,1,0,General Petite,Tops,Sweaters +939,68,My new favorite jacket,"I love this jacket and always get compliments when i wear it. i have the green version, and the color is lovely. the sleeves are the perfect length ( i got a petite size) and it is very flattering. the jacket is not warm enough for a really windy, snowy day, but is perfect for cool fall days.",5,1,0,General Petite,Tops,Sweaters +927,20,"Cute pattern, soft, comfy and flattering fit","I just purchased this sweater, but have not worn it yet as it is still very hot in the va/dc area. the print is super cute in person. it reminds me of a missoni knit pattern. the color is described as gray motif, but it's really more greens and browns, very fall colors. the sweater is soft and comfortable. the knit is fine, not chunky and doesn't add bulk. it is fitted through the chest with an empire waist and flowing over your stomach and hip area; wonderfully forgiving of any extra bulges you",5,1,1,General Petite,Tops,Sweaters +903,39,Too short in length and boxy for me,Just not my style. it is light and the color is lovely and summery. but the cut of the sweater just did not work at all for me. and it wasn't overly soft - though that wouldn't have mattered if it fit me better.,4,1,2,General Petite,Tops,Fine gauge +1081,53,Definitely size down,"This dress is beautiful--lovely colors and design--but it's huuuge. i'm usually a s/m in tops and dresses, but i got an xs after trying it on in the store. i'm busty and have hips and still have a bit of room. the length is good--a little above the knee but still work appropriate. with my curves it's not my most flattering dress since it pretty much falls straight down, but i think it's too pretty not to keep.",4,1,0,General,Dresses,Dresses +1094,56,"Easy, flirty style","My preference is clothing made of natural fibers, but i couldn't resist trying this on once i felt it! the cut-out pattern in the fabric, the color, the buttons & the design of the back all add to make a dress i'm going to wear with leather flip-flops during the day or wedges & a denim jacket at night. it's perfect for southern california fall (& likely much of winter this year) weather. i'm a 32d (& won't need/wear a bra) & although i usually wear a 6, i bought a 4. maeve, i like your style!",5,1,0,General,Dresses,Dresses +1081,46,Perfect fall dress,"Very cute, great fit and super comfortable. perfect for fall with tall boots",5,1,0,General,Dresses,Dresses +1001,31,,I was worried this skirt might look too much like a bedspread. but it is so gorgeous on and the cut is so flattering. i ordered a petite small and it fits perfectly. great fall/winter skirt.,5,1,0,General,Bottoms,Skirts +939,39,Versatile and flattering,"I trired this one and lvoed it right away. the cut is flattering, but the sleeves are a little long so ordering petite. the red color is like a wine color, very nice. i also ordered green to see the color in person, i am not sure which i will keep. can be worn with anything, really: jeans, pants or skirts or dresses...",5,1,0,General Petite,Tops,Sweaters +939,29,Wool to drool for,"This sweater is so well made and uniquely designed. one of the main reasons i love retailer is for how toy make wool sweaters, timeless, affordable, and versatile. + +worth the money!",5,1,1,General Petite,Tops,Sweaters +1110,50,Simple but feminine design,"This is a simple design, but feminine and dressy enough for a summer wedding. this dress is great for hourglass shapes, but it does not hide your features.",5,1,1,General Petite,Dresses,Dresses +621,32,,Love the dress but ended up returning it as i'm not sure how often i would wear it. the only down fall is the dress is straight so you have to take smaller steps but stunning dress!!!,5,1,1,General Petite,Intimate,Lounge +828,55,Adorable!,"I wore this top recently and received several compliments. it's a great top with the off the shoulder trend, plus you can wear a normal bra underneath! runs large so i recommend one size down.",5,1,0,General,Tops,Blouses +864,25,Fun wardrobe addition-get it on sale...,"I got this cute tunic in-store in the coral color during a 25% off sale items promotion. it's a fun, quirky piece with mixed fabrics, and can be worn alone with leggings or layered with a jacket, skinny jeans and boots. a versatile piece, it does have a few issues. i found he armhole to be slightly large on my petite frame, even in the xs; not a deal-breaker, but a bit of a pet peeve for me. i'll probably end up wearing cami under it most of the time, since the top knit portion is a somewhat loo",4,1,1,General,Tops,Knits +939,51,Superb statement jacket,"One in every fifteen items of retailer clothing fits. this jacket is one. easy to grab and keep chill away. hood snuggles up as cozy collar when not worn up. model in photo must have orangutan arms, sleeves hit at wrist on this wearer with shortish arms. + +boiled wool fabric is light, which is great for layering. lovely transition fall to winter transition piece. statement jacket that will live on next season and beyond. + +thank you, rosie neira.",5,1,0,General Petite,Tops,Sweaters +939,40,Love this jacket!,"I was looking for a cross between a light, fall-wool jacket and a cardigan and this is it! the red version looks festive in the winter, and the hood adds a bit of spunk. looks great both open and buttoned. i received many compliments on this the first time i wore it.",4,1,0,General Petite,Tops,Sweaters +621,46,Drop-dead gorgeous,"When i tried on this dress my husband's jaw dropped to the ground. it is so unique and so beautiful on. however the cut of the fabric fit oddly on me so i am exchanging for a small with fingers crossed. i am a size 6, 5'8"" and the medium just felt a little boxy over the middle section. my six year old son said that it was the most beautiful dress he had ever seen. buy this!",5,1,10,General Petite,Intimate,Lounge +621,27,Beautiful on!,"I saw this dress online and fell in love with it. it is just as beautiful in person too. very delicate, but receive so many compliments every time i wear. it is two separate pieces, a slip dress and the overlying fringe dress. i am 5'4"" and need a 2 inch wedge heel to keep the bottom from dragging. probably could have tried to order the petite but figured i'd probably be wearing heals anyway. i normally wear a 6/8 in dresses and the medium fit perfectly and is so flattering! the top half is flow",5,1,0,General Petite,Intimate,Lounge +621,44,Elegant boho chic!,"I am 5'1"" and 120lb with curves and muscles. i am tiny and slim but i have t & a in spades, a 34c and a bubble but. that said. this dress made me look tall and lithe. i took the xs petite because the xs the fringe was too long on the bottom. there is plenty of blouse on the top to accommodate the ""girls"" and you can pull the dress up or down to make it more blousy or more of a fitted column dress, to your preference. it's more of an antique ivory color and beautiful with gold or silver sandals.",5,1,4,General Petite,Intimate,Lounge +939,56,Cool jacket,I had to have this jacket! looks much better in person. i bought the navy color. the fit is great. it has a flowy bottom and is unstructured. i wear a dark navy t shirt or cami underneath. great with jeans and over the knee boots or booties. its a bit heavy and bulky to wear under a coat.,5,1,0,General Petite,Tops,Sweaters +621,46,Cool dress!,"This dress is so unique, and is high quality. it came nicely packaged, and unfolded with no wrinkles. i bought it as a cool summer dress for events, and it fits the bill. i wore it once, and received many compliments. the only issue, is that you cannot take even medium size steps wearing this dress. a side slit would have solved the problem, but that would not have deterred me from buying it. the straps for the slip underneath are great, so that i could adjust it so my bra would not show.",4,1,2,General Petite,Intimate,Lounge +621,56,"Should carry xl, so here's what i did...","I automatically knocked off one star because every brand that offers size xs (and many also offer xxs), should also care about us size 14/16/xls as well. i ordered a size large, and of course it shows every bump and love handle in back, but i recreated a look from my local retailer's window. they showed a long unbuttoned cotton weave dress over this crochet dress. (the closest dress pictured online to what i saw is the ""mabli maxi dress"", but imagine it opened if it had buttons, and in blue.) with",4,0,0,General Petite,Intimate,Lounge +1094,34,Perfect fall dress,I almost didn't try this dress. i walked by it a few times and am so glad i gave it a try! the fit is amazing. so flattering. the color and material for fall is perfect. it looks great with booties and heels.,5,1,0,General Petite,Dresses,Dresses +939,69,Beautiful jacket,"I bought this online in dark green after trying on the burgundy. i usually wear a medium (5'2"", 120) but i looked better in the small in this jacket. the combination of very deep green, black and tan is beautiful. the cut is very flattering with the jacket open or snapped closed. it is nice enough to wear with black pants or skirt but looks just as good with jeans. i am in my 60's and this look is chic and fresh without being too ""young"" for my age. it's also very well made. i love it.",5,1,0,General Petite,Tops,Sweaters +1110,47,,"Beautiful dress. flowing but not too much volume, not too short but not dowdy, gorgeous deep jade color with chartreuse accents, flattering waist (not sure why the model is covering that part up, but it's a nice waist with a tie belt). i think it looks really smashing in person. not too formal, perfect for a daytime event like a bridal shower.",5,1,13,General Petite,Dresses,Dresses +939,43,Amazing sweater,What a cute swing sweater and so easy to layer. this jacket looks great snapped or left open and the collar and hood leave such a soft look around your neck. this has such great elements of cozy and warmth just in time for cool weather!,5,1,0,General Petite,Tops,Sweaters +621,31,"Beautiful, but with a downside","This dress is gorgeous with fine detailing, and even though i'm curvier than the model, it still fits well and is flattering (please see attached poor quality photos). i'm 5' 8"", 32dd, i usually wear a 6, and the small is great. my only complaint is that the bottom of the skirt around the ankles is super tiny, and i feel like i have to take itty-bitty steps. it's a bit off-putting not to be free to stride normally. i recommend the dress, but you may consider (like i am) having a professional add",4,1,1,General Petite,Intimate,Lounge +621,39,,"This dress is amazing! the color is a little darker then what's pictured, but the dress is great. very delicate. you have to be careful how you handle it.",5,1,20,General Petite,Intimate,Lounge +1081,40,Great fall piece that's comfortable!,"I saw this dress online and purchased to see how it felt on. i love the material and its quality. it did run a little big, i usually wear a medium in most retailer clothing, but sized down per other reviews. the dress is beautiful and look forward to wearing through fall and winter but just wish it tapered a little more from the waist down.",4,1,0,General,Dresses,Dresses +903,21,Lightweight and breezy,"I bought this with the intention of taking it on a very warm trip - and i think it'll do just fine! it's a wonderful open-gauge knit - delicate and light, but substantial enough that i don't fear snagging it constantly. the cloth has a nice weight and drape, and while the fit is on the loose side, it does look intentional. wonderful as a pullover or by itself. i have the minty blue-green color, and it's divine. definitely worth the price.",5,1,19,General Petite,Tops,Fine gauge +1110,29,Beautiful,"5ft 6inches +135lbs +short waisted, small bust (30dd) + the color is more watermelon pink than that slightly orangey tone that's shown on the website. i ordered a six petite because i wanted it to be kneelength. the four petite also fit, but was a little constricted in the bust. the dress is weightless--100% silk! i agree with the other reviewer about the bust of this dress --it's probably not great for large chests because of the ruffles",5,1,4,General Petite,Dresses,Dresses +939,67,Comfy jacket,"I love this jacket. something to get cozy in on cool california winter nights, and still light enough to wear open and walk around without getting too hot. i am 5'3' and have a medium frame but 34 dd on top. i bought a medium because i hate things to be tight around my chest, and this is perfect. my only disappointment is that i wish it had pockets. i got the wine color and it is very beautiful. wonderful, unique and comfortable jacket. i do recommend it.",5,1,0,General Petite,Tops,Sweaters +903,36,Feminine,"This is a beautiful sweater . it's very lightweight and sheer, so best to wear a tank or camisole underneath. also better for warmer months. i ordered the light aqua color and it's lovely.",5,1,0,General Petite,Tops,Fine gauge +903,33,Looks better in photos- returning immediately,"I had high hopes for this sweater and when i found it on sale online, i jumped at the opportunity. i am 5'11"", slender and always wear a small in retailer tops. i purchased this in the mint , size small and as soon as i opened the bag, i had doubts. the fabric is terrible, thin and scratchy. it is not soft and supple as i had imagined. the mint color looks faded and the shape is awful. the length of the arms hits in a bizarre spot, the overall length of the sweater cuts me off at the torso and the",1,0,0,General Petite,Tops,Fine gauge +1001,22,,I sized down in this and it fit perfectly! i normally opt for petite in skirts but i stuck to regular for this skirt and it was much more flattering . adorable and well made!,5,1,1,General,Bottoms,Skirts +1110,34,Good for small chests,"Tried this on yesterday in the fitting room and i really wanted to get it but two problems - 1. not made for c cup bra women or larger and 2. the ruffles come right out of the nipple line area of the chest, so when you see yourself at a profile view, there's these ruffles that look like they're coming out of your chest. just sayin'. not for me.",3,1,10,General Petite,Dresses,Dresses +621,36,,"Great dress, true to size....wore it to dinner one night while in a beach vacation friends, got tons of compliments! you have to be careful when putting it on, as it may snag! otherwise, highly recommended!!",5,1,0,General Petite,Intimate,Lounge +864,56,Amazing,"Perfect for work or a night out. packing for europe, wore it out on a saturday night with leggings and heels. layer it after yoga got it in all colors love",5,1,0,General Petite,Tops,Knits +939,46,Lovely cape,"The red of the cape is a deep garnet. really pretty with the beige lining. it's loose enough that it feels and flows differently than a sweater. the boiled wool isn't itchy but keeps you warm on a fall day. the one snap lets you easily take it on and off. i'm 5'5"" and 125lbs. the xs fit perfectly without being too tight. i've gotten a lot of compliments on it.",5,1,0,General Petite,Tops,Sweaters +621,31,Great goddess,"I just got this dress and am so excited to have it hanging in my closet, i've been eyeing it for a long time and am glad i got it on sale. i felt like a greek goddess when i tried this on and cannot wait to wear it. it fits like it was made just for me. the outer material is a little heavier than expected but it not a problem, the second layer is form fitting and soft. i feel like the restricted opening at the bottom forces me to slow down, like a lady and take in my surroundings, after all life",5,1,5,General Petite,Intimate,Lounge +903,53,Goes with everything,"Perfect sweater to throw on with anything. it is fairly thin, i wore a cami underneath. the sleeves and hem are rolled. you have to be careful and it can snag easily. happy with my purchase.",4,1,0,General Petite,Tops,Fine gauge +864,51,Better looking on that in the picture,"So this is available in the store in a reddish coral color, see the #your retailer pictures and you'll see someone wearing it under the gray blazer. anyway, i tried it on and the fit was very flattering for a tunic. the front of the sweater hit me just at the waist and the front draped nicely. somehow the back was slightly hugging my back side but not tight or restricted. i ended up ordering the black and navy online because the fit was fantastic and will go with so many things. nothing shee",5,1,19,General Petite,Tops,Knits +1110,45,I'm in love with this dress! (the blue green one),"This is the most comfortable, sweet, beautiful, romantic and timeless dress. i bought the green motif one is sz 14 and it fits perfectly. i am smaller chested (usually a 12/medium/large up top depending on the item) and a sz 14/xl/33 for pants so perhaps this dress runs one size small? the color in the detail shot is most accurate - it's bright & cheerful and dreamy.",5,1,2,General Petite,Dresses,Dresses +621,51,Uniquely beautiful & elegant dress,"This is truly a beautiful dress! the delicate fringe-like fabric throughout makes it unique and and the column silhouette with slight blouse-like top is elegant! perfect for summer with comfortable stretchy slip that comes with the dress! the material on the waist line stretches and is very comfortable. the bottom is pretty narrow so you need to take smaller steps. it does run large, i am 5'3""/135lbs/34b and an xs fit perfect throughout as well as the length! only not so positive feature is how",4,1,2,General Petite,Intimate,Lounge +621,44,Show your petite customers some love,"I loved the look of this dress the moment i saw it but was ridiculously long. at 5""3 i can usually get away with buying regular length longer dresses and pants with the help of heels if needed but not a chance this time. this dress does not come in petite and the fringed bottom design of the dress would not allow for any type of altering either.",5,1,3,General Petite,Intimate,Lounge +1081,30,Boho fall dress,This is a great fall boho dress. you can dress up or down depending on the shoes. looks great with boots! but definitely size down!!,5,1,0,General,Dresses,Dresses +864,41,Much more flattering than the photo!,I just bought this and tried it on on a whim and am so happy i did! it's so much more flattering on than this photo depicts. i think it'll be one of my summer staples this year! give it a try!,5,1,4,General Petite,Tops,Knits +1001,34,A winner; better than the posy maxi sweater dress!,"I tried this in the store a few weeks ago when it just came out because i loved the neutral design and look of it and came back the following week to purchase it with my discount code because it really is worth it... +_______ +pros: +- true a-line silhouette. if you have curves and hips like i do (5'9, 36c, hourglass, 165 lbs), then this skirt will flatter you completely. there's a lovely swing to the dress and it drapes wonderfully because it's a thicker fabric. +- runs tts. i can normally wear",5,1,5,General,Bottoms,Skirts +621,62,Stunning!,"Oh how i love this dress! i was pleasantly surprised at the texture of the fabric, it is a wonderful feel of cotton and not that poly that sticks to your fingers. it fits like a dream...true to size...romantic and flirty...i can see this with cowboy boots and hat as well as with evening sandals...the possibilities are limitless. i am so happy i was finally able to snag one up as a return because it sold out. just love it! i also plan to wear it in the fall with a jean jacket. it is a winter whit",5,1,0,General Petite,Intimate,Lounge +939,66,Love this beautiful jacket!!!,"I don't care because i like be it so much; but, make no mistake, it is not black but rather a dark navy. however please don't let this fall negatively on your decision to buy it. it's fabulous!",5,1,1,General Petite,Tops,Sweaters +25,38,Adorable and cozy,"This sweater is the best sweater to throw on over a buttoned blouse, t-shirts, long sleeves, tanks. i always get comments on how comfortable and adorable this sweater is. a worthwhile buy.",5,1,0,General,Tops,Knits +1081,39,Size dooooown!,"If you know one.september and you know what's good for you, then size the heck down. maybe even two sizes if your particularly slim or want the dress to fit tighter. any way, this dress is simply scrumptious! the embroidery at the bodice is so detailed and pretty. the layers are light and soft like silk (but it's rayon/poly) and the sleeves are sheer and voluminous. i actually prefer the sleeves rolled up because they are too long. neckline features a slit-v with two hooks to close if wanted. co",5,1,10,General,Dresses,Dresses +939,39,Swingy,This jacket is sweet and swingy and showing an early sixties vibe that i adore. a bit cropped and wide so definitely size down so your proportions don't look off. i took my medium and it was way too wide and unflattering so i switched to a sp. looks and feels great with layers.,5,1,0,General Petite,Tops,Sweaters +830,60,Disappointing,Loved how this top looked online and couldn't wait to get it. i ordered the xs and it was huge and also very short in length compared to the picture online. i love the fabric and design but the fit was totally off. this is going back!,2,0,0,General,Tops,Blouses +654,46,Vitamin a anastasia bottoms,"These run tiny. i wear a 25/26 in pants and took a medium in this bottom and i'm still not completely comfortable with the fit. love the floral print, but with a bottom this small you don't really see much of the flowers so on mine at least it's just some splashes of different dark colors.",4,1,2,Initmates,Intimate,Swim +927,41,Even more gorgeous in person,"This sweater totally caught my eye online and when it arrived, it was even better than on the website. gorgeous colors---kind of a retro look, but more modern and updated. very happy with my purchase!",5,1,0,General Petite,Tops,Sweaters +1001,26,,"Such a pretty skirt. i think it's a very versatile piece. a bit heavier, can't wait to wear when it cools down more. i saw the dress that is similar to the skirt in the catalog last month and loved it too. note the skirt does not have the same shine in the fabric that the dress does.",5,1,3,General,Bottoms,Skirts +1110,24,Beautiful dress,"This is one of my new favorite dresses!! i ordered this in pink, and think it looks even more gorgeous in person that it does on the model. it's more of a reddish color. the dress hugs my body in a flattering way. i'm a 34b and the dress fits very comfortably, but it might be a tight fit for someone with a larger bust. i'm usually a small for retailer dresses and the small fit like a glove. it is wonderfully flowy and extremely elegant. i can't wait to wear this out!!",5,1,4,General Petite,Dresses,Dresses +1110,49,Another great summer style from hd,"This dress can be flattering on any figure type - but especially for women who need a little curve. i always wear a 6 in hd, and this fits nice and snug around the middle with a becoming flirty skirt that is lower in the back than front. flat chested women will have to fill it out with a padded bra. it may not be a great cut for a short person, as it has a long line to it and lots of busy-ness. only drawback, which depends on your taste, is the yellow pattern - it's a weird kind of greeny yellow",5,1,0,General Petite,Dresses,Dresses +939,39,Beautiful color,"I ordered the red color. it is really good quality. the brownish accents with the burgundy is beautiful and different. unfortunately, i found it to run very large. my normal size fit like a tent, and i had to return.",4,1,0,General Petite,Tops,Sweaters +864,39,Casual and cute tunic,"This tunic is comfortable and casual. it is as pictured and flattering. the two materials make it flattering. i ordered the white, and it is see through. it really does need a camisole, which i found a little distracting given the fact that it is already layered. i which i had ordered another color, because it is cute.",4,1,0,General Petite,Tops,Knits +939,35,Gorgeous sweater,"This was such an impulse buy- i bought it online during a sweater sale- and i am so glad i did! this is definitely one of my favorite recent purchases. it definitely seems more like a coat than a sweater, but it is lightweight. i ordered the red and it is beautiful. it looks great buttoned or left open and i think this could be dressed up or down (though it does have a hood, so that gives it a slightly more casual feel). it fits true to size- and it is definitely shorter in the front than the ba",5,1,0,General Petite,Tops,Sweaters +1110,54,Raspberry delight of a dress,"Tried on a size 2 regular and it fit well, felt incredibly soft and airy, and is handwashable. i'm 5'2"", currently 33-25-37 or 38, with narrow shoulders and torso, somewhat long-waisted but petite from bust to shoulders. i often wear a size 0p or 0 in retailer dresses and tops. the arm holes were a tiny bit low, but not terrible. a petite would have been shorter, but also more of an empire waist. the pink really is more of a red like the online photo; great color.",5,1,0,General Petite,Dresses,Dresses +1110,39,Nice dress but not for me,"I really wanted to like this dress. the material, design, length and fit all over was perfect, except for the armholes- too big and the ruffles came right upto the nipple line. not comfortable with that. sadly, had to return.",4,0,0,General Petite,Dresses,Dresses +1110,31,"Beautiful dress, but zipper won't lay flat","I tried this dress on in the store and it fit pretty much perfectly in all the right areas except that the top of the zipper puckered away from my body and didn't lay flat. it just kept poking my arm. i tried it in a smaller size to see if that was the issue, but i encountered the same issue. too bad, as it was otherwise lovely and felt very comfortable. + +i tried the green color. i think in person, it's slightly more rich green, less blue/aqua than the photos online.",4,1,10,General Petite,Dresses,Dresses +1076,34,Correct at sale pricing.,"I love anna sui's lines makeup to everything. this dress is beautiful in a very usual sort of way and after trying it on, i couldn't see anything spectacular that made it unique or special somehow. the elastic waist does make this dress forgiving and it runs big. the hem is lovely scalloped. each detail is very nice in and of itself but when put together in this dress, there is no wow that justifies the full price tag. now that it's on sale i'll keep it probably for summer.",4,1,3,General Petite,Dresses,Dresses +829,52,There is no care instructions sewn into this garme,I like the tunic but there are no care instructions in the garment. if i wash it once and it shrinks or the dye runs it will be going back. please send care instructions.,3,1,3,General,Tops,Blouses +927,41,Weird sizing,"I like the colors, material and style of this sweater but not a fan of the sizing. the xs/s was far too short for me and the m/l was great in length but had a tremendous amount of extra volume. i am 5'/6"" size 8.",3,0,0,General,Tops,Sweaters +1076,47,Super fun yet comfortable dress!,I love the fabric and design of this dress. you will definitely get noticed. and it's comfortable - just slip it on and go!,5,1,0,General Petite,Dresses,Dresses +1009,37,,"Love this skirt. purchased it in a 0 and it fit fairly good. sat high up on the waist, which i like. however, now that i have worn it i should have ordered it in a 2. i think the 2 would have let it sit further down making it not so short. i do recommend this skirt but i would order both your regular size and one size up (0 is my typical size in full skirts).",5,1,5,General Petite,Bottoms,Skirts +1081,39,Love,"But i have no idea where i would wear this dress... i tried on the size 2 in store, someone had returned it, but i always loved the cut and color of this dress (been in my wish list) so i tried it on anyway. it is so lovely, the cut is super flattering, the bow on the chest is beautiful, and the colors are much nicer in person, pinker. the feel is a bit satin0like, soft. i would need the 0 as it was a bit wide on the chest, but not a petite - surprisingly (usually do need petite in dresses). +if",5,1,1,General,Dresses,Dresses +980,45,Great versitle jacket,"I ordered this jacket to complement the larkin dress by moulinette soeurs, which i planned to wear to a funeral. the pair together were perfect. the jacket added just the right touch in fashion and practical warmth on a sunny but chilly february morning in alexandria, va. i ordered my usual size and it fit perfectly, if not a tad bit large. but then i'm not very tall so occasionally items have more material than i need. but i never worry about that since it doesn't usually affect the lines of th",5,1,9,General Petite,Jackets,Jackets +927,37,Nice piece,"Ordered online, hedging my bets on size (chose xs/s) because i have broad shoulders and muscular arms and wear anything from 2-8 sizes depending on brand. my gamble paid off - it's a beautiful sweater. soft, comfortable, nice drape. + +(i suspect that finer-boned more petite customers might complain of swimming in this, but it worked well for me!)",5,1,0,General,Tops,Sweaters +1077,38,Cute but poorly constructed,"I bought this dress because it was cute, swinging and lightweight -- seemingly perfect for this hot nyc summer. after on wash and dry, the dress is already ripped around two buttons. i'll still wear it but i don't think it'll last until next summer. kind of pitiful since it wasn't a cheap-o dress. also it is big but that seemed to be sort of the point.",2,0,3,General,Dresses,Dresses +829,44,Not great quality,"After reading the other reviewers i decided to try this out. unfortunately, the material does not fall nicely on me and the belt hits in an unflattering spot. i like the idea but it's just not a flattering cut or material. going back!",2,0,0,General,Tops,Blouses +829,45,,"I agree with the other reviewer on the slimming effect of this tunic and can't wait til the weather warms up so i can wear it. i'm 5' 5""/140lbs and the 6 was a perfect fit. one thing i didn't notice in the images, at least not the main image, is that the slits on the side at the hip are pretty high. not a problem, but just something i hadn't noticed. also, for me, i wasn't too sure about the color combo initially but it works in person.",4,1,6,General,Tops,Blouses +93,30,Too small in the chest for a size large,"I ordered a size large, however as a large, my chest is large as well. this nighty barley covered me (in the chest region). the rest of the body fit well.",2,0,0,Initmates,Intimate,Sleep +1076,49,"Gorgeous fabric, plain silhouette","The silk sequin-adorned fabric of this dress is just gorgeous and i love the mix of colors and patterns. the shape is very plain, though. this can work to make the dress less formal, so that you could wear the beautiful fabric to a more casual event. but i'm not sure it's the most flattering style. i am between sizes and i sized up but am wondering if i should have gotten the smaller size - maybe that would made for a more flattering fit. i was also a bit disappointed that the prettiest parts of",4,1,0,General Petite,Dresses,Dresses +1009,44,Perfect addition to any wardrobe.,"I love this skirt. maybe i love wrap skirts in general, but many miss the mark. this one is just right. it does not have elastic waist band which always makes me look frumpy, instead it is a side zip and allows for the tummy to stay flat as well as the pleats. the embroidery is just enough and you may not be able to see the design of black on black in the fabric which makes the skirt. i usually wear a size 6 but the 8 fit just right, so you may want to size up.",5,1,2,General Petite,Bottoms,Skirts +829,69,Cute and unique,"I was so happy to discover that my size (00 petite) had suddenly become available again online--probably someone's return. and i wasn't disappointed when i tried the tunic on--it fit great (unlike other recent online purchases from retailer.) love the plaid and the style. the cut should flatter many body types. definitely worth the money! + +please, retailer, expand your inventory in petite sizes. the cute stuff sells out so quickly.",5,1,1,General,Tops,Blouses +944,32,,,5,1,0,General,Tops,Sweaters +829,58,Very versatile tunic,"Saw this tunic on line and loved the color combo. tried it on at the store and found it to be true to size for me - i'm a 34 dd, 5 ft 4 and the regular size 10 fit fine. i was curious to see if the petite size would fit best with the loops for the tie belt being a little higher, but none were available. still the regular 10 works well. excited to wear when the weather gets warmer like the model with white skinny or cropped jeans, and wearing it open as a duster with a tank or cami. seems very ve",5,1,4,General,Tops,Blouses +831,37,Unique and good quality,"The material used is soft and breezy and good for summer.the design is unique and catchy. the two cons its dry clean and runs very large. i normally wear m from retailer and this top in ""s"" still too roomy. since its for summer, i'm keeping it as it is.",4,1,0,General,Tops,Blouses +1081,34,Beautiful plaid material,I seriously wanted to cry when this dress didn't fit me. i knew ordering it that it was a long shot. i'm a 36d and strapless rarely works. this was no different. the dress ran true to size and it is precious!,4,1,0,General,Dresses,Dresses +829,60,Cool summery tunic,"I love tunics and the colors of this one is what caught my eye. overall, the tunic is nice but i have to agree with another review that the stitching at the top of the slits is not good. i also agree that the slits are to high. they should have made them stop at a lower point. it gives an odd effect. the tunic looks good especially with tights. it is tts and i believe the top probably looks better on someone tall because the length of it is so long compared to other tunics.",5,1,0,General,Tops,Blouses +980,34,Doesn't look like the photo at all,"This arrived this week and i was so disappointed. the proportions are all wrong--- from the empire waist to the dolman sleeves, to the weird texture added to the material. if i could sum up this jacket with one word it would be ""weird"".",2,0,4,General Petite,Jackets,Jackets +1081,51,,Love the versatility of this dress. looks better in person!,5,1,0,General,Dresses,Dresses +686,28,Just what i was looking for!,"This is the perfect lounge/sleep cami! i am 5'1'' 120 lbs and purchased the dark purple small. it's hangs a bit loose - my preferred fit for sleeping shirts. good quality, easy washing (machine/delicate), and cool and airy for hot summer nights.",5,1,0,Initmates,Intimate,Sleep +829,31,"Love the colors, not a fan of the side slit","Loved almost everything about this top. the colors are great, comfortable fit, but the length was a little too long for my 5'4 frame. i also wasn't a big fan of the large side slit. i would still recommend this great top.",3,1,3,General,Tops,Blouses +1077,63,Great dress,This is a wonderful style.,5,1,1,General Petite,Dresses,Dresses +1077,60,,The dress does run large. i'm 5'4 and 135 and the xs fit great. it's a very comfortable summer dress. have had many compliments on it.,4,1,3,General Petite,Dresses,Dresses +1077,32,,Dress runs very large. quality is great and the pockets are a great addition.,3,1,8,General Petite,Dresses,Dresses +1077,28,,It's a bit baggy (i'm normally a 6/8 medium but went with the small here). i debated for a while but finally went for it on sale and i'm so glad. the colors are just gorgeous in person. delicate stitching on the shoulders adds a feminine touch. great with my jean jacket which gathers up the extra material just right. looks great with summer sandals and booties for fall. i love love love this dress!,5,1,0,General Petite,Dresses,Dresses +829,42,Comfortable,Comfortable with leggings or cropped skinnies. would be better as a solid as opposed to a plaid print. breathable and airy fabric.,4,1,1,General,Tops,Blouses +927,23,The gypsy version of a patagonia,"This is that one special, whimsical beauty that you hope to open on christmas morning. super comfy, not at all itchy and the pattern and colors are super stunning. even more vivid in person. i've never seen anything quite like it! very eye catching and oozing for compliments. can be dressed up or down, quite easily. very warm, and surprisingly true to size, even with the m/l combo. i'd say definitely worth the price..it is expensive, but this heirloom worthy piece is worth the splurge.",5,1,0,General,Tops,Sweaters +829,49,Lovely but not quite right,"I definitely think this may have worked had i tried on a petite-sized version for the length. i was not at one of the stores with the petites. i did feel like at 5'2"" the regular size is just too long. i tried a size 4 on with leggings and that didn't look right. the size 4 seemed fine (34b chest, 118 lbs). maybe if i had a different pair of pants on but the slits up the sides of the shirt made it look not quite right with leggings. i kept thinking the shorter size would have helped. i really li",4,1,1,General,Tops,Blouses +829,39,Cute but not for me,"I don't have the right body to pull this off. too many awkward styling issues (length, slits, tie, stitch quality) so this will have to go back. maybe if i was taller and slimmer this would be good. alas, it isn't meant to be...",3,0,0,General,Tops,Blouses +829,45,Loved this online,"I loved this top online and even more when i opened it up. however, the quality of the stitching is poor. where the seam comes together at the hip on both sides, the stitching is very loose and appears to be coming undone. i was bummed and am sending it back today.",2,0,8,General,Tops,Blouses +829,65,A winner for sure.,"I love the color combo, and the design make me feel tall and thin. i know this is going to be very cool to wear on a hot day. i like it with my white jeans, and you can wear it a number of ways. i love this brand, i still wear the plaid from last spring. it's a got to have.",5,1,6,General,Tops,Blouses +93,33,Pretty!,"I love wearing this to bed and it's really pretty! the lace is thin and delicate, so it can get snagged easily, but it's pretty comfortable. the only thing that could make it more comfortable is if the material underneath the bust was looser, though it wouldn't be as supportive. overall, i think it's a very beautiful chemise!",4,1,0,Initmates,Intimate,Sleep +828,34,Love the polka dots,Very comfortable. fits true to size. i also have this in white. fits snug in the top but hangs loose around the waist making it very comfortable. shirt is very flattering. the polka dots add a playful touch. super cute.,5,1,0,General,Tops,Blouses +829,48,Unique long piece,"I love this with white leggings that skim my legs b/c it is a looser top that you can cinch at the waist. one small complaint is that the tie is awkward with the side slits, but for the sale price, i can overlook this.",4,1,0,General,Tops,Blouses +1077,35,Great if you get sizing right,In person the colors are prettier and it's more interesting than the front shot in the model. i tried on and bought my regular medium. got home and tried it on and realized it's too big:(,5,1,0,General Petite,Dresses,Dresses +1033,59,Great basic skinny jean,"I got these jeans on sale and have been very happy with them. they seem to go with everything - just a really nice basic skinny jean to have. lightweight with a little bit of give. they fit tts for me, and hit about an inch and a half longer on my legs than the model in the picture (i'm 5'6""). i've had them for a couple of months now and keep expecting them to show some wear in the knees bc of how often i wear them. not yet! any marks on them have come off easily in the wash. overall, very happy",5,1,1,General,Bottoms,Jeans +921,74,Tunic,This top is well made and would be cute but huge. this top has no shape and is way big. back this goes.j,2,0,6,General,Tops,Sweaters +850,33,Patchwork denim tank,"I took advantage of the summer tag sale and bought a few tops including this one. i've been eyeing this online for quite some time, so i was pretty excited to get it at such a good price. it came in the mail the other day. it's like christmas morning when you see an retailer package at your door, however, this time wasn't so great. the top is fine. average at best. the top fits true to size. maybe it's the pattern or the cut, but it didn't work well on my body. i recommend trying this on first.",2,0,6,General Petite,Tops,Blouses +1076,49,Comfy and adorable,"I was pleasantly surprised by the quality, cut, and softness of this dress. it can be dressed up or down, with or without leggings/tights, and is cute with boots or flats. my only complaint is that the sleeves are not near as long as what is shown in the photo. i'd say more like 3/4 sleeves. thankfully there is elastic at the cuffs, so the sleeves can be pushed up, and the the material can slightly drape over the elastic.",5,1,10,General Petite,Dresses,Dresses +1076,51,Red dress,Dress is lovely - the sleeves were shorter than i thought but otherwise nice fabric and very pretty cut!!,4,1,1,General Petite,Dresses,Dresses +1024,36,,,5,1,0,General,Bottoms,Jeans +975,53,,,4,1,0,General,Jackets,Jackets +975,59,"Great, comfortable jacket",Love this jacket. it fits very well and is super comfortable. you can wear it to work or on the weekends. super versatile!,5,1,14,General,Jackets,Jackets +921,41,Best suited as a beach cover-up,"I am tall and typically wear a size 10/12, so i thought i could pull this off even if it was large as the other review noted. but the thing about this piece is that it is more of a cover-up than a tunic. it fits like a poncho. with my arms at my sides, it fit me similar to the model picture. but if i lift my arms (to use them), then it looks like i am wearing a dress that is designed for someone twice as large as me. the reason for that is that it doesn't really have sleeves - it's more like hol",3,1,3,General,Tops,Sweaters +911,49,Huge!,Overall nice material and styling but be prepare for it to be huge. i purposely sized down and i still felt like i was swimming in this.,3,1,1,General Petite,Tops,Fine gauge +1076,48,Didn't love.,"I found it very thin and much more sheer than i expected. not sure i could get away with wearing it without a slip.sadly i'll be returning it. also, runs a bit large. would have returned it for an xs if i loved it.",3,0,3,General Petite,Dresses,Dresses +921,54,Unique neckline and swingy shape merino knit,"The neckline is beautiful, whether pulled forward or slipping back. the pure merino knit is very fine with the two front panels cut on the bias. raglan sleeves with high armholes. it is a tiny bit itchy, and normally i'm not too sensitive, but that may improve with a handwash in eucalan or something similar. +. +fit for size xs on 5'2"", currently 33-25-37 (30d or 32c bra) with narrow shoulders and torso: +snug at the shoulders, but as it is a pure merino knit, it does stretch. the front length just",5,1,2,General,Tops,Sweaters +975,50,Not just another black jacket,"When i was purchasing this i asked to myself ""do i really need another black jacket"". when it arrived i realized that this is not just another black jacket. this jacket is special. it is light weight - but structured. it is the perfect length and the fabric feels amazing. this jacket is my new favorite.",5,1,19,General,Jackets,Jackets +985,31,Exposure of material's backside disappoints,"While this is cozy and well made, the problem lies with the unavoidable exposure of the inside of the poncho, which looks unfinished. had the inside been lined or had the hue of the stripes continued through the material, the draped look of this piece would be gorgeous. unfortunately, the faded backside of the pattern (a glimpse of it under model's left hand), viewable through the very large arm holes (and impossible to hide), disrupts the effortless, fluid feel that a poncho should have. i was",2,0,5,General Petite,Jackets,Jackets +862,38,,,5,1,0,General Petite,Tops,Knits +180,39,,"I love this shirt! it is so soft and a bit see through, so recommend wearing a camisole underneath. perfect with jeans! the fit is slightly boxy, but works well.",5,1,0,Initmates,Intimate,Sleep +180,47,,Stylish and super comfy. even though it's a relaxed oversize fit it is still very flattering and pretty. i dressed it up with cool jeans and my fave free suede boots. my only complaint is that it is not available in more colors. pretty please make more color variations : ),5,1,0,Initmates,Intimate,Sleep +985,52,Great wool look but didn't hang well,"Loved the look of this wool and so well made! problem was it literally would have been better on a bed as a blanket than on my body as a blanket coat. just overwhelmed me and didn't look good. i'm 5/9"" and 160 lbs so i'm no shrinking violet just too heavy of fabric.",3,0,2,General Petite,Jackets,Jackets +862,44,Did not fit properly,"I loved this top when i saw it online. i was able to go in the store and try it on and sadly, it is not the top for me. if you have a large chest, then this top will gather at your cleavage and give an awful appearance. the fabric falls in and even the sales associate agreed that it was unsightly. if i were an a or b, this probably would have worked. i should have known to stay away from a pleated top.",3,0,3,General Petite,Tops,Knits +680,40,,"So pretty. 5'4"" 115 lbs and the xs fits perfectly.",5,1,2,General,Bottoms,Shorts +862,49,Not what i was expecting...,"I was expecting a tee shirt, but the material is more of light sweater knit. in the end it wasn't the fabric that was the deal breaker...it was the fit. in my regular size it is too wide and boxy through the body. i also felt like the arms are too big as well. it's going back and i am not going to bother ordering it in a smaller size. it's a shame because the embroidery really is lovely.",2,0,4,General Petite,Tops,Knits +862,49,"Some things going for it, but overall miss for me.","The red detail at the shoulders is pretty, and i liked the contrast between the red and white. the fabric is soft and comfortable. it is a sweater knit fabric, more substantial than you might guess from photos. the sleeve ruffles were a little poofy for me, and combined with the loose fit it made me feel a little too girl-ish. this could work for you if you are looking for a peasant style blouse with a forgiving shape and nice details, but it wasn't quite right for me.",4,1,11,General Petite,Tops,Knits +1059,32,Very satisfied!,"These pants were a wonderful addition to my wardrobe! the fun print and texture add interest, but at the same time, are not too busy. they seem well-made, and they have a slim and flattering fit. the side zipper is also a nice touch. i would definitely recommend this item.",5,1,0,General,Bottoms,Pants +534,46,Pleasantly surprised,I saw this suit in the store and was immediately drawn to it. i did not think it was gonna work because i have boobs (real ones) and i was not sure it would provide enough support. it is the cutest suit ever. have enough support to get away with it but definitely couldn't go for a jog. ha. it will also look great with white jeans and double as a bodysuit.,5,1,3,Initmates,Intimate,Swim +862,57,It's all in the details!,"If you like loose flowing tops, embroidery, and fluttery sleeves, you'll adore this top! i went a size down and it's a perfect fit.",5,1,3,General Petite,Tops,Knits +180,38,Too boxy,"If the sweater looked as it does in the picture, i would keep it. however, it was very boxy and short, a style that does not work for me at all. i'm 5 ft. 6 in. and ordered the medium. i suspect the sweater on the model may be clipped back to make it look more form fitting. unfortunately i will have to return the sweater.",3,0,0,Initmates,Intimate,Sleep +1059,50,,"These pants are so comfy, well-fitting and flattering. i will order the same style in more colors and patterns because i can tell this will be my uniform this summer. true to size if you like a close fit like i do. size up if you like a loose fit. length is shorter than capri--more like a 1950s pedal pusher. cute.",5,1,5,General,Bottoms,Pants +872,36,,,5,1,0,General,Tops,Knits +1059,42,Comfy,These pants run large than the true size. it is so comfortable and can be dress up or dressed down.,4,1,0,General,Bottoms,Pants +534,23,Can't wait to wear it!,"I love the look of this right away. i found it ran small to retailer's clothes (where i'm inexplicably a xs or s here i was a m). i also am a dd, so would have appreciated more support, but as the other reviewer, i can get away with it to wear this cute suit.",4,1,0,Initmates,Intimate,Swim +862,35,Beautiful and unique top,"This top is beautiful and unique, but also i predict it will be high maintenance with the sleeves -- definitely have to be careful with the delicate sleeves.",5,1,0,General Petite,Tops,Knits +862,54,Versatile top,"I was happy to see this top come back after being sold out. the cream is a pretty color....not too warm toned. the cut is true to size, although very fitted in the arm hole area. the sleeves rather fitted. the fabric of the sleeves is fairly fragile but should be doable if not overly worn. the chest fitted with an aline cut. rather loser in the back. it is also somewhat see through, although not as bad as some i have tried. overall it's a really great top, but would need to be worn with care. gr",4,1,5,General Petite,Tops,Knits +606,48,Size up!!,"I love these shorts!!! they are thin lightweight and not see through. however the reviews are correct. i am usually a size 2 or 4 in shorts. i am 5'1"" 112 pounds and i had to size up to 6.. i was able to zip the shorts up but the fit wa a little tight. the 6 offered me the comfort of more room.. overall nice shorts..",5,1,0,General,Bottoms,Shorts +606,46,Fit was disappointing,"I'm 5'4"", 130 lbs, curvy and fit. i'm usually a size 6 but when i tried these shorts on, they were tight. i sized up to an 8 and they looked better. but overall the fit was not flattering on a petite, curvy frame. i think these shorts would work on someone taller and a bit thinner in the thigh area.",3,0,6,General,Bottoms,Shorts +829,35,Like a bolt of fabric,"Like the previous review said, i was excited to receive this top. i had grand visions of all the ways i could wear it! to my chagrin, when i put it on, it just fell right down and pooled around my waist. i wish there were smaller sizes to order. sadly, this is going back.",1,0,3,General Petite,Tops,Blouses +1033,35,,"I should have known to size up, since that is what i usually do for skinny jeans (ordered a size 27, should have done 28). good quality denim, just too tight in the legs for my taste. i debated trying a bigger size, but decided i just don't love the distressed look on me. although i love that they offer high-rise petites. for reference, 5'2"", 115 lbs., curvy on bottom, usually a size 4/6 for pants.",4,1,0,General Petite,Bottoms,Jeans +1028,37,Lovely gray jeans,"I agree with another reviewer that these are not ankle jeans. however, even as regular jeans they fit great and the color is lovely and very versatile. i normally need to have my jeans hemmed but the length on these is perfect for my 5'4 frame",5,1,0,General,Bottoms,Jeans +1083,46,Not for single girls :-(,"I love, love, love byron lars dresses. they fit my curves like a glove. but this one... i guess it would have fit me like a glove. but i live alone, and at the moment i don't have enough money to hire a lady's maid, and so i couldn't actually tell. it buttons all the way up the back, so you cannot put it on yourself, unless you are a contortionist. wanted to love this but can't.",3,0,3,General,Dresses,Dresses +1083,39,,"I bought about 20 dresses online in an attempt to find a few dresses for derby week in kentucky. this was one of the 2 that made the cut. i'm usually a 6, and i bought a 6. it fit like it was tailor made for me. i questioned if it was too tight at first, but decided it was just right and felt great in it for a full day at the track. it was comfy. it almost felt like it had built in spanx. i didn't have to wear a bra and it gave me great lift, almost like a bustier. i got so many compliments, mu",5,1,2,General,Dresses,Dresses +1129,38,Cosiest coat,"While i have to agree with some other reviewers that this is not the most flattering coat (as a size 12/14 with hips, it does my hips no favors), but the comfort and warmth make up for it. this coat is so soft, it's like wearing a puffy blanket. unlike typical puffer coats, it does not have any kind of vinyl feel to it- but nor does it have any wind or water resistance at all. with all that said, the comfort and cosy feel won me over. i've received several compliments as well, so maybe it's more",4,1,0,General,Jackets,Outerwear +1083,58,Vintage jewel,"If you have a love for vintage, romantic, feminine attire, this is the dress for you. it evokes memory of days gone by. it isn't just beautiful, the quality is superb. make sure you check the measurements for this little beauty has so stretch to it.",5,1,3,General,Dresses,Dresses +1083,45,Classic beauty!,"I absoluty love this dress! it hugs in all the right places, giving a sexy yet very classy look, very much a ""mad men"" look. the quality is fantastic and could easily pass for a vintage dress that has been kept safely preserved. i would recomend every lady has one of these in her closet, especially when you need to feel just a little bit prettier!",5,1,7,General,Dresses,Dresses +862,46,One of the prettiest retailer sweaters,"I ordered the mauve in size xl and it fits true to size. it matched the photos online. all of the details are prettier in person. it's delicate. but, it's washed/dried well. very pretty shade of mauve.",5,1,0,General Petite,Tops,Knits +866,29,Runs very large,"This sweater is huge! i usually wear a small, ordered an extra small and i was still swimming in it. i like big sweaters, but i ended up returning it because the sizing looked ridiculous.",3,0,1,General,Tops,Knits +1129,43,Love this coat!,"It was bit on pricey side but it was love at first sight! i couldn't let go after i tried it on..it is soft, lightweight, moves with me, keeps me warm (not just from top up)..it feels silky to the touch and is very versatile and stylish.. + +runs true to size and it expands a bit the more you wear it ...",5,1,2,General,Jackets,Outerwear +862,41,Great top for everday,"I love to shop at retailer for tops that i can wear everyday. they always seem to have pieces that are comfortable, casual, and quite different from what you would find in most stores. this top is exactly that! it fits true to size and is washable. all you need are jeans, boots and a neutral necklace and you are good to go. you can't go wrong if you purchase this top!",5,1,0,General Petite,Tops,Knits +862,49,Love it but need a larger size,"It is delicate and soft. the sleeves fit great on my 5'10"", 130lb frame, but the shoulders on the size small were too tight so i am exchanging it for a medium. the lining is unusual -- the front is fully lined but the back is only lined to the shoulder blades which is somewhat noticeable on the model. i would choose to wear a cami underneath for extra coverage.",4,1,2,General Petite,Tops,Knits +1129,46,Re: super cute and stylish!,"I loved this the minute i saw it in the store but left without buying it. i called the store an hour later and asked them to hold it for me so i could get it the next day. :) + +i love it. it's still a little too warm to wear it in nyc yet but i will soon. i'm thinking 40-50's is the perfect temps for it. + +i rarely say this but i don't think the photos of the coat above do it justice.",5,1,0,General,Jackets,Outerwear +1030,36,,Worth every single penny. size up - they are very tight!,5,1,0,General,Bottoms,Jeans +866,29,Comfy and cute,"I like that you can dress this shirt up or down. go out, or lounge in it! very comfortable and i would recommend buying it.",5,1,0,General,Tops,Knits +876,45,Pretty but runs large,"I was looking forward to trying this on after seeing it in the catalog. i wear an xs or small in retailer tops and tried this on in an xs. it was huge. reminded me of a maternity top. it was much more flowy on me than it looks on the model. the material was nice, thin but not see through. the macrame detailing seemed well made. i'd recommend this if you're looking for a flowy top but definitely size down.",3,1,12,General Petite,Tops,Knits +761,62,Nice in between seasons top,"Great top for in between seasons. comfy/soft/roomy. fyi - the pattern has tiny holes that will show through - i.e., bra, skin, etc.",4,1,2,Initmates,Intimate,Lounge +867,35,,I just bought this today so i can't say whether or not it will wear well but i think it will. i love it bc it's different and super comfy but also stylish. i know that when i wear this other people won't have it on. i think it looks better in person than on this model in picture.,5,1,3,General,Tops,Knits +1030,46,Great jean love mother,"Love these vintage soft jeans.. they do run small so be sure get a size larger.. i am typically a 27 and i ordered a 28... look amazing with boots, flip flops and slip ons... love mother jeans.. work every time",5,1,1,General,Bottoms,Jeans +840,59,Runs large,"The buttons on the back are very tedious. you will need someone to help you. if you get past that hurdle, then you have the look of a little girl in a smock. way too big. like a nightgown. nice quality, but not practical.",1,0,0,General Petite,Tops,Blouses +876,32,Like a tent,"I agree with everything the other reviewer stated. this top is very billowy and runs large, it would be nice if i didn't have a chest! the other issue with this top is the macrame detailing is made more out of a satin like material and i wanted it to look closer to natural raw fiber. the pink is slightly more pink in person but it's not that far off. had to return.",4,1,7,General Petite,Tops,Knits +761,32,Light weight & sheer/ great for layering,Warning-- it's totally sheer so you will need to wear a tank under it or unless you're very confident in your mid-section you can wear a bandeau or just a bra. it's definitely a lounge/ leisure wear piece and great for layering if you want to wear it out. it's lightweight and perfect layer over a simple dress or top. i live in this over the weekends. i am a larger gal-- broader shoulder and purchased an xl. it's true to size and roomy.,5,1,2,Initmates,Intimate,Lounge +867,34,Weird collar,The collar on this sweater is too stiff for my taste. the color and fabric is really nice. just wish the collar was different.,3,0,2,General,Tops,Knits +876,48,Not raspberry,"So bummed... i ordered this in the raspberry color then actually saw it in a store before it arrived to my house, so i tried it on. while i agree with the other reviews, it runs big in some areas, something about the neckline just wasn't right on me. it seemed to ride up higher and wasn't what i wanted. also, the ""raspberry"" color is almost more of a burnt orange. when i think of raspberry, i think of pink or red, this was neither of those. the top itself is cute though and super comfy. if it we",3,1,2,General Petite,Tops,Knits +1083,38,Beautiful dress with some minor flaws,"I purchased this dress to wear to a wedding in june. i am 5'4"", 32d and 120lbs. i bought the size 2 and it fit like a glove, didn't even have to wear a bra. the quality is beautiful. the fabric, stitching and detail are top notch and well worth the price. the way the seaming hits you on the hips and but is very flattering, especially for girls who may not be that curvy. it accentuates your curves for sure. it reminds me of an old hollywood, wiggle dress. + +with that being said the dress does h",4,1,5,General,Dresses,Dresses +1083,59,,"Gorgeous and well constructed dress. runs a little small. couldn't button up the size 8 although i can fit into a size 6 of other dresses by this designer. also the back buttons are very difficult to button, especially by yourself. i had to return it but am contemplating ordering it in a size 10.",4,1,1,General,Dresses,Dresses +876,59,Sunset orange - not raspberry,Billowy top - perfect for casual comfort. the topic is definitely not raspberry-- it is a sunset orange. disappointed as i was going for a match. i should have gone off of the picture and not the color name.,3,1,0,General Petite,Tops,Knits +867,30,Great style and easy to wear,"I'm glad the previous reviews had mentioned the dolman sleeves so i was better prepared for how it would fit. you do have to do some rearranging of the fabric, but it generally stays put and isn't bothersome. the neckline is a bit more structured than shown in the pictures, but it only adds to a more sophisticated look. great fabric and color as well.",4,1,1,General,Tops,Knits +1083,33,Significant other required,"This dress is beautiful and extremely well made... if you can get into it. the only way to close the dress is a line of difficult to button buttons up the back. it's form fitting, so you'd better be on your yoga a game or have a loved one or hand maiden to lend a hand. i thought about taking it to a tailor to install a hidden side zipper, but it's soooo form fitting i'm afraid i wouldn't wear it.",2,0,1,General,Dresses,Dresses +876,23,Not great,"Too much fabric, not a flattering top. for reference i am wearing a medium in the photos and my measurements are 38-30-40.",2,0,3,General Petite,Tops,Knits +862,33,Unique staple,"Fits true to size, soft material and unique look. the sleeves and overall cut of this shirt are flattering. i was worried it might look boxy or baggy but it didn't at all. the dark gray is a gorgeous color and can be dressed up or down. definitely going to be a staple in my closet.",5,1,0,General,Tops,Knits +1028,27,Light and tight,I love these pants. they fit great!,4,1,1,General,Bottoms,Jeans +761,33,,,5,1,0,Initmates,Intimate,Lounge +867,26,,Beautiful sweatshirt top that can be worn to work.,5,1,0,General,Tops,Knits +999,53,Fun skirt to wear instead of shorts,"This is very cute. it's lined, it's smocked. it's longer on me than the model in the picture. i was a bit concerned about the short length but the skirt actually came to just above my knees, which works well for me. it might run a tad big because it is a pull of skirt. i look forward to wearing this light weight skirt on hot days his summer!!",5,1,10,General,Bottoms,Skirts +1083,27,"Beautiful dress, but required lots of tailoring","This dress is truly a work of art, and i've received many compliments on it. + +be warned, though, that it may require extensive tailoring to fit you. i'm 37-28-40 (so pretty darn hourglass shaped) and 5 feet 3 inches. i ordered the 8p. the dress was still huge in the the waist and not flattering at all. the neckline, also, was too low for my comfort. (if you're busty, necklines get pushed out and more things show.) my tailor was able to bring the neckline up by adding seams in the sleeves and",4,1,0,General,Dresses,Dresses +1083,25,"Beautiful, well made dress but little flexibility","This dress is gorgeous. the fabric is thick and layered with well designed lines. since the fabric is thick, it gives very little around your body. i have wide hips, a big butt and bust so this dress unfortunately was not a good fit for me. i usually fit in a 6 petite and for this one i got an 8. it fit around my bust and hips, but was bunched up in the back. i would definitely at least give this dress a try because it was very beautiful.",4,1,3,General,Dresses,Dresses +866,56,,Size down on this top. bought it online and when i took out of the packagei quickly put it back in. you could have put 4 of me in the xs. i think even an xxs would be huge. extremely boxy!! i recommend it only if you can find the correct size.,4,1,9,General,Tops,Knits +606,35,Great shorts!,"I love these shorts, nice material, good fitting, and great look. i sized up, usually an 8 and i ordered a 10 based on others reviews and it was the right choice. these are a great casual short or dressed up with shoes and a nice shirt.",5,1,1,General,Bottoms,Shorts +1129,34,Sarah portland,I wore this coat one day and the buttons started falling off. it stretched so much. i'm going to beg my local store to take back. it shouldn't fall apart like that. it's super duper cozy though.,3,0,0,General,Jackets,Outerwear +895,38,Cute cardigan,"I like this sweater. i am 5'4"", 125 lbs, and bought the xs. if i had to do it again, i'd buy the xxs. for a fitted cardigan it ran slightly big. it's a thin material- you would layer it over a tank or tee.",4,1,3,General Petite,Tops,Fine gauge +1083,28,Grandmas draperies dress,"I had to review this because i purchased before any reviews were up and now that i've received this dress i'm appalled by all the positive reviews!!! this dress is hideous in person. seriously hideous. and even if you can get past the drapery fabric, it's incredibly restricting. the picture online is so misleading. the dress isn't even an ivory it's more of a pea green! so disappointed.",1,0,3,General,Dresses,Dresses +876,38,,"So this top is adorable light and airy and i like the loose fit, i think it will nice and cool for summer. the red is very flattering color, i have fairer skin and feel like it gave nice color without being overbearing. love this top. my only complaint is that i feel like the the arm hole is a bit snug. not enough to not keep, just wish there was a little more room.",4,1,3,General Petite,Tops,Knits +876,64,Cute and different,I like this top and agree that it does run large. i find the fabric to be somewhat heavy which i consider a good thing as it will hang nicely and do a good job of hiding *imperfections*. it does have a pleat in the back which is not so apparent in the photo here. i love the neckline... a slight bit of a *v* neck.,4,1,1,General Petite,Tops,Knits +862,57,Beautiful swing shirt,Love love this sweater/shirt. i have worn it out to dinner and work with leggings. it is soft and comfy. the pleats in the back are beautiful and do not require constant ironing. i even bought it in the pink.,5,1,1,General,Tops,Knits +867,34,Varying feelings and opinions,"As you can see, there is an array of differing opinions on here, and i share sentiments on both: +_______ +pros: +- the texture and feel of this is great; it is very comfortable and is different. +- tts for the most part; i normally can wear sizes 10 and 12 (m and l) with most retailer and got the medium and the fit was overall fine but more snug at the hips. if you're more slim/straight, it'll probably fit you like on the model. +- good length, not too short or too long. +- the mock collar is ni",3,1,10,General,Tops,Knits +1030,37,Flattering,These have a great fit & design. i ordered a size larger after reading that this style runs on the small size. typically i'm a 27 but ordered a 28. the wash has a great vintage feel about it! i also love that these do not lose their shape after wearing all day.,5,1,2,General,Bottoms,Jeans +876,32,Super cute,"This is a super cute tank, received compliments when i wore it to work.",4,1,0,General Petite,Tops,Knits +867,49,So pretty,"I took a chance and ordered this top on sale, even after reading the troublesome reviews. this updated take on the turtleneck is a keeper for me. the purple color is vibrant and the collar lays without repeated fussing. i ordered the xs (116, 5'4"" for reference) and the fit was tts and close to, but not snug on my torso. there is room for a button down blouse underneath (as styled in a gallery pic) and i did not find the sleeves to be problematic, as it fit me close enough to the body to not giv",5,1,2,General,Tops,Knits +1028,39,Not petite,"Just received pants and even though they are labeled ""petite"" they are not. the inseam is 28 for a waist size 26, which is not what the description states.",3,1,3,General,Bottoms,Jeans +876,62,Better on the hanger,"I thought it was going to be so pretty. it is ugly on. the macrame is thick, stiff and rough. the top fits awkward on top where the macrame is and the rest is shapeless. yuk!",2,0,0,General Petite,Tops,Knits +1129,26,Awful,"This coat is awful, just awful. i bought it based on the reviews, my husband said it looks like i am wearing a mattress. it looked awful. i really really liked the softness and that it wasn't like another puffer coat, it was also stretchy and the buttons super easy to wear, but the look, style, and design make it very unflattering. it looked so bad that i took it off right away. so disappointing!",1,0,0,General,Jackets,Outerwear +1083,26,Breathtaking dress!,"I new i had to have this dress the moment i saw it. i am a recent convert to byron lars and have three dress of his design. they are all 6 or 6p so i felt confident ordering a 6. whoops! this dress fit perfectly up to the waist. it was even a little roomy but i couldn't button it up any further than that. it is a little weird since i always thought i had a narrow ribcage. anyway, i will have to exchange it for an 8p. and hope for the best. it really is an exquisitely beautiful dress and unbeliev",5,1,0,General,Dresses,Dresses +1077,50,Perfect!!,"I took this into the dressing room for fun and wow so glad i did! i got the regular m and it fits perfectly. it is very slightly roomy but i think thats the design and it still looks great. as a petite, the regular m fit perfectly - heals or no heals. its comfy and lovely!!!!!",5,1,1,General Petite,Dresses,Dresses +857,40,I bought both colors,"It's a light material so it flows. the shine is just enough to dress up when i need. i'm a 12 and usually buy xl of any t-shirt looking style, but the large fit perfectly. i am however not large breasted.",5,1,10,General Petite,Tops,Knits +1049,64,Cuter for fall than spring,"Cute pants, not for me. a petite size may have changed my mind. more like ankle pants on my 5'2"" frame and a bit large all over. that said, the fabric is stretchy and they would be super comfortable. love the snaps on the waistband, classy casual.",3,1,4,General,Bottoms,Pants +1049,49,Expect the unexpected,"While contemplating on purchasing these pants. after receiving them, quality was superb, waffle material 5 spandex, beautiful green color, and 2 snaps in the front, zipper and 2 front and back pockets. material has alot of give and wide legs. these pants don't come to the ankle so don't expect it. sort of like capri but longer, lose fitting and wide legs. nice addition to my closet. i hit the jackpot now and again w/ this store.",5,1,2,General,Bottoms,Pants +865,57,Love love this top!,"This tank/blouse is flowy and i love the design. it was immediately comfortable and seemed true to size. i wore it to a family event with a sweater, black leggings and boots. i'm 5'5,"" 36d and usually wear medium in retailer tops and this fit beautifully from the get go, just love it!",5,1,0,General,Tops,Knits +857,39,I bought both colors,I bought both colors thinking i might like one since i wasn't totally sold on colors looking online. well the cut is sooo flattering that i was sold and had to keep both. this shirts are great.,5,1,0,General Petite,Tops,Knits +1077,29,So 60s and mod,"I am currently searching for the perfect pair of white boots to go with this. this is so fun. i used to wear a lot of vintage clothes and this dress lit the fire again to start looking for cool pieces. i tried on my usual size and found that it fit pretty tts. it was a bit roomy in the hips, but considering the cut of the dress, i assume that to be intentional. for reference, i am 5'9"", 150 lbs, 36d and bought a size 8.",4,1,0,General Petite,Dresses,Dresses +1077,49,Super cute,"This dress is adorable. i wore it one time and got so many compliments! +it's very light and comfortable. it fits like a shift should - a bit loose. i love it. wish it came in more colors!",4,1,0,General Petite,Dresses,Dresses +857,35,,This shirt was great for one wear. after just one wash (followed instructions to dry clean) it lost all shape and now hangs like a bed sheet. terrible waste of money on a pricey top.,1,0,0,General Petite,Tops,Knits +857,43,Splendid never disappoints,"This tee is s bit on the pricey side but well with it. soft fabric, and unique mix beautiful colors (i got the grey, blush, and gold) that will offer a lot of options on terms of what it can be worn with. i love splendid and this tee is why i do!",5,1,0,General Petite,Tops,Knits +861,36,Great tee,"I took a chance on this one with free shipping and figured i had nothing to lose. i love it! the bottom hem is slightly flared, but does not look like a maternity tee. i'm going to wear this with a fun scarf, skinnies and colorful flats! this tee is a must!",5,1,4,General Petite,Tops,Knits +1085,44,Needs a zipper,So i ordered a 0 and p0. when i received them i could tell right away that i'd prefer the 0 and it looked to be the perfect size. then i tried to slip it on over my shoulders...it was tight. it was the right size but it was so hard to get on over my shoulders and then to take it off i needed my husband's help. it fit great otherwise. i loved the feel of the fabric...the design of the bodice. going up a size would not help me as then it would be too large in the bust area...i'm a 32b but i do hav,3,1,5,General,Dresses,Dresses +857,37,"Soft, comfy perfect summer top","Love this top! super comfortable, great fit, and really pretty colors. probably going to buy it in multiple colors it fits so great.",5,1,0,General Petite,Tops,Knits +857,55,Couldn't....help....myself!,Not just another striped tee. perfect drape & lightly fitted at the bottom sides so it skims the body & is super flattering. the subtle shimmer is just right. love the gray! very versatile & irresistible. i'm a size 4/small & this is tts.,5,1,0,General Petite,Tops,Knits +857,22,,,5,1,0,General Petite,Tops,Knits +1085,50,Cuter than pictured!,"I'm glad i discovered this super easy to wear, flattering summer dress on a recent store visit. if i had only seen it online, i'm not sure i would have ordered it. i prefer it styled with flat sandals for an effortless boho look. i'm 5'5, slim and small chested and xs fit perfectly.",5,1,3,General,Dresses,Dresses +1077,72,Beautiful dress,"Looks great on. fits beautifully,",5,1,1,General Petite,Dresses,Dresses +857,44,,"I liked the design and the shirt did fit well enough, but the thin fabric does not justify the price. it looks like it will get holes in it after a wash or two.",2,0,0,General Petite,Tops,Knits +861,37,Perfect top!,"This is really my favorite top! i wear it all the time, like every day. it's so soft, a beautiful rich color (blue), has nice detailing, and so flattering on a hot momma like me who still has a little tummy from my three lovely children. snuck it in to my dressy office on a friday as well - with a conservative skirt and high heels. only downside is the lack of other nice colors. the stripe isn't cutting it. got my regular xs and it fits perfectly.",5,1,0,General Petite,Tops,Knits +1077,28,Pretty but didn't fit me well,"Disappointed this didn't fit better. the pockets stuck out on the sides, and it was baggy through the middle. you could also see the pockets through the outer layer of the dress. the color is more like a chartreuse than the picture. it's really pretty!",3,1,0,General Petite,Dresses,Dresses +1077,49,Disappointing,"I saw this dress and loved everything about it! i was so sad when i tried it on and it was just too big. they were out of the smaller size, so i had to return it. the dress is well made and the color is just a bit neon compared to the picture.",2,1,1,General Petite,Dresses,Dresses +932,41,,"Here's what i liked: +great shape through body, cool empire waist. and good length +loved the color, more rust than red. +material was somewhat light which liked since i often get overheated in turtlenecks. + +here's what i disliked: +the sleeves!! the reason they only show the model with her arms against her body is because the sleeves are ridiculous. they are just too big and too flowy. they will always be in the way of everything and there is no way to roll or push up.",3,0,10,General,Tops,Sweaters +867,26,Love,"I was so bummed to see how quickly this top sold out online in the black. however, to my delight, i happened to stumble upon the shirt in my size in my local store recently. knowing it was sold out online, i immediately grabbed it to try on. big mistake: i instantly fell in love. i'm a curvy woman (34d chest, wide hips, small waist and a slight tummy) and this shirt fits beautifully in my usual size (which is a medium in deletta). hugs my figure without making me look big. i work in an office wh",5,1,8,General,Tops,Knits +966,37,,,5,1,0,General,Jackets,Jackets +867,50,6 compliments in 1 day!,"I ordered this top (black) in both small and medium; i can get usually away with small at retailer but am size medium in all other stores. as soon as i received the package and opened it up, i knew i would keep this top. it has a gorgeous texture to it, a slight sheen, and is well made. it's extremely comfortable as a t-shirt would be, but has more structure and looks very chic. the waist nips in just enough to give the flutter hem a little flare at the hips and is very feminine. i have a long tor",5,1,2,General,Tops,Knits +932,43,Runs large,"I love everything about this sweater except the sizing. i purchased the deep red in xs. the yarn weight is perfect for me (in los angeles), the length is perfect, the sleeves are bell shaped but not at all a problem for me (they're not so big that they get in my way at all, unlike another reviewer),the collar can be folded in a way that it stands upright for a kind of retro look, which i love. the only problem is that the sweater is way too big. i can handle a wide, swingy style, but with the sl",3,1,0,General,Tops,Sweaters +1111,38,"Beautiful, but slip is small","I ordered this in a size 4 and it is great quality. the only problem is the size of the slip. the top is very tight across my average chest, but fine elsewhere - odd fit. the dress fits great and i debated finding another slip, but ultimately decided to return it.",3,1,11,General Petite,Dresses,Dresses +867,42,Beautiful shirt,"I loved the shirt. the fabric was amazing and i loved the way it fit, unfortunately it didn't look good on me. but i would recommend this shirt to anyone who can pull it off the look, i was sad i couldn't.",5,1,0,General,Tops,Knits +867,70,Great fit and styling!,"Love this ripple-front top. fabric is beautiful, love the lining and the fit is perfect. looks great with pants and skirts. i also love the sleeve length. i purchased this in both white and black. great for spring and summer.",5,1,3,General,Tops,Knits +867,42,Super flattering,This top is sold out in my size online but i was fortunate enough to snag one in the store. great top that can be dressed up or down. the ruching across the front is very slimming. tried the top with skirts and pants -- looks great with everything! i usually wear a size small in deletta tops but sized up to a medium to accommodate my chest (i am a full c cup). i highly recommend this purchase.,5,1,6,General,Tops,Knits +867,34,Great top!,"I was looking for a comfortable top that looks put-together and cute for work, and this one fits the bill. i couldn't decide between black or white ? so i got both! if i had to choose, i would stick with the black, because it's more slimming, particularly for those of us with a large bust. it's not as heavy or stiff of a material as it appears in the pic, which i like, but it still has structure. great basic with some flair. i got the small (my normal retailer size), and it fit perfectly.",5,1,1,General,Tops,Knits +867,53,Would definitely recommend,"This top is just as pretty in person as it is online. i usually buy petites, but ordered this one in the regular length and i'm glad i did. perfect on me at 5'2"". my usual size medium fit great everywhere else too. love their fabric choice as well. i'm getting really tired of the thin cottons and slub jersey materials being used so often now. deletta made my day once again!!!",5,1,18,General,Tops,Knits +966,45,Great jacket!,"Love this jacket so much! so comfy and great for traveling. i love the fit and the way it wears,",5,1,1,General,Jackets,Jackets +966,32,Almost perfect,"Out 6 items i purchased online, this is only one that made the cut. it's super soft and cute on. the only thing i didn't like was the cute lining is attached by buttons, but it needs more attachment points to keep it from showing. i'm going to fix that myself, but i hate sewing things that i purchase. so it lost a star for that.",4,1,0,General,Jackets,Jackets +867,52,Cute top,"I got this top in white and it is cute. the fabric is a weird kind of polyester, and kind of shiny. i got the medium and it pulls a little around the chest. overall i like it.",4,1,1,General,Tops,Knits +966,33,Happy :)),"I am very happy about the jacket. i like the material and the cut. i was able to wear the jacket for a walk on a rather windy day, about 60 f, with a thin sweater underneath, and it felt comfortable. + +the fit is very flattering. i would prefer the sleeves to be a little longer (5'7"", 125 lb, got size s). also, i wish the lining was full, not just the front detail - it would allow more versatility. but that's just me... + +overall, i like it :))",5,1,0,General,Jackets,Jackets +966,32,,Great jacket. love that the hoodie insert is removable so i can wear just the outer jacket for work.,5,1,0,General,Jackets,Jackets +867,25,So hot!!,"Love this top, wore it for the first time today and it looks so good. soooo flattering from the front. the back is plain, but ive got some back fat, so i wear a jacket.",5,1,0,General,Tops,Knits +867,37,Poufy ruching,"This should have been cute, but the fabric choice + ruching design made me look like i had elephant skin rippling around my waist -- super unflattering.",2,0,2,General,Tops,Knits +867,36,Not for bigger busts,"I wanted to love this shirt. it's got a thicker material, a flattering shape and the uniqueness for a basic top. however when i put this on, it just looked like it was ill-fitting over the chest. i think if the pull was below the chest, it would be much better.",3,1,1,General,Tops,Knits +966,43,Cute but not for me,"I'm 5'6'' , athletic build-thought it was cute but in the end didn't like the color of the inner sweatshirt--wish it was black or white. send it back.",3,0,0,General,Jackets,Jackets +867,34,Finally a white top that isn't boxy and sheer!,"I agree with the other reviewer -- it's refreshing to find a top that isn't all baggy or sheer, which seems to be the current trend right now. +_______ +pros: +- lots of stretch. this was so comfortable and the rayon lining inside really makes this breathable. +- the ruched detailing, sleeves and overall length is great. +- no cami needed with the white. i see in the pics on the model that appears to be cami underneath. i wrote a nude bra and didn't have an issue at the front because it's two la",4,1,12,General,Tops,Knits +966,46,Love it!,"I love this blazer! it's so comfortable! i just wonder if the company makes more ""inserts"" in different fabrics/colors? i'd love to be able to change it up a bit.",5,1,4,General,Jackets,Jackets +966,61,Great with everything,It's a great light jacket for early spring. ideal topper for jeans or denim skirt.,5,1,0,General,Jackets,Jackets +966,43,"Versatile, adorable jacket","The pictures online do not do this jacket justice. i saw it hanging in the store and had to have it, even before i tried it on. it's extremely versatile, worn as shown, as a layered look, or the zipped ""liner"" is can be removed and this can be worn as a simple blazer. it's the perfect weight for spring/fall. it's fitted, and so cute. this jacket runs true to size (not large). i usually wear a 4 and the small fit perfectly.",5,1,11,General,Jackets,Jackets +966,35,Fab jacket,"This jacket is the best. i'm trying to step up my work wardrobe game while still maintaining some personality and this blazer fits the bill. it's soft, structured, and best part: the hoodie insert is removable. for reference, i'm 5'4"", 128 lbs and the small fit perfectly.",5,1,0,General,Jackets,Jackets +867,46,Didn't love the fit.,"I'm tall (5'11"" and busty) and found this top to run on the short side. as others have said, the material is soft and stretchy, but the rouching created a bit of a bulky look. i returned it.",3,0,0,General,Tops,Knits +1124,50,,This cape is stunning! the perfect addition to any closet. it can be worn to a formal or out to dinner with jeans. the fur is so soft and the quality is superior. it has real fur hooks (four) to close it and the side pockets are adorable. definitely a buy and a bargain on sale!,5,1,0,General Petite,Jackets,Outerwear +1081,43,"Beautiful flowy, dreamy dress","This is the second dress i buy at retailer this year and this one is spot on!! exactly what i was looking for: feminine, dressy yet can be dressed up or down depending on the circumstance. the fabric in this dress is particularly gorgeous, very comfortable on the skin, very flowy so it doesn't have a ""heavy"" quality to it and the design is amazing with the navy ribbon on the front. i completely fell in love with this dress! this is a little number to keep for many years.",5,1,0,General,Dresses,Dresses +848,51,Exceeded expectations,Received this top as a gift from a friend with great taste. found fabric to have high quality feel and texture and it fit quite well. love how the flutter layer creates a different look.,5,1,1,General,Tops,Blouses +867,35,,"This is a nice top! it is dressy and cute, tts. i am 8 or 10 and got a med. would look great with jeans, pencil skirts, slim cut pants. very happy with this purchase.",5,1,0,General,Tops,Knits +879,36,Great design,"This is a great top. it does run a bit large but it's intended to be flowing. i got so many compliments the first time i wore the top and its actually quite flattering! great purchase, especially on sale!",4,1,0,General Petite,Tops,Knits +185,36,Warm and attractive but too tight/narrow and short,These could barely fit over my calf and did not even broach my knee. i have big calves but i am otherwise i slim and normal sized woman. these are way too tight and narrow to enjoy or to get much use out of.,2,0,1,Initmates,Intimate,Legwear +402,34,Perfect one-piece swim suit!,"This is a wonderful one-piece swim suit! it's very flattering on, and the colors and design are just lovely. i also love the suit's vintage feel and that it's sexy without being overly revealing. i seldom pay full price for clothing, but this item is definitely worth every penny!!! i bought a size medium and it fit perfectly.",5,1,7,Initmates,Intimate,Swim +879,38,Nice top,"This is a great shirt for fall. very comfortable and flowy, without making you look dumpy. tried it on in the store, ended up waiting to buy online at the sale price.",5,1,0,General Petite,Tops,Knits +879,33,Unique and comfy top!,"I love this top! i'm 5'7'', 135 lb and the small fits well (probably could have fit in the xs). it is more fitted at the top and flowy at the bottom. i ordered it in orange and it is a very pretty peachy coral stripe. highly recommend for a comfy top that can be dressed up a bit more than your average t-shirt.",5,1,0,General Petite,Tops,Knits +1110,41,Unfortunate design,Construction excellent. the dress was pretty big around the hip...does not have a shape like seen in the picture. the fabric was beautiful but was stiff...like furniture. the color was not as vibrant as the picture. returned.,3,0,2,General,Dresses,Dresses +965,44,Cute jacket but small,"I really like the look of this jacket, but i think it runs small and i must return the one i received. i am debating about ordering the next size up because it is so cute. it can go with jeans or khakis and bright or white shirt underneath. it seems very versatile. will be a good transition piece between seasons. i also like that it is made in the usa.",4,1,2,General,Jackets,Jackets +879,39,,,3,0,0,General Petite,Tops,Knits +869,38,,"Beautiful top but it didn't fit. i am small chested with wide shoulders, normally wear a xs or s - ordered the xs and it swallowed me.",3,1,0,General,Tops,Knits +879,56,"Cute style, flimsy fabric","Bought this shirt in mid-july, washed twice (cold, delicate) and hung to dry. already holes/falling apart",3,0,2,General Petite,Tops,Knits +895,63,Stylish little sweater,"I fell in love with this on-line and when it arrived today i think i love it even more because the white portion of this sweater is really a medium pink color which looks so chic. although i am not usually into pink, this looks so stylish with the pink instead of the white. this is a piece you might find in a vintage store in the village in nyc. can't wait for it to get chilly so i can wear it. for reference, i am 5'1, 36c chest and the small fit perfect. the quality is really high end as well.",5,1,1,General Petite,Tops,Fine gauge +879,37,Relaxed and cool,Like this top. it's not too thin but still remains cool. too bad it has to be hand washed.,4,1,0,General Petite,Tops,Knits +879,34,Great unique striped tee,"Love this top and wish they had more colors in xs, but the sale was too good so they were sold out. i'm 5'10"" 140 lbs, an xs fits great. will go with jeans or leggings.",5,1,0,General Petite,Tops,Knits +139,34,,"This top is a great, versatile long sleeved shirt. i'm 5'10"" and the sleeves were long for me, so i don't know why it's listed as 3/4 length. i could see where sleeve length would be a problem for more petite ladies. the wine color is beautiful. it is slightly more fitted than the picture, i was afraid it might be semi-sheer, but its totally fine. i wish it was a bit longer in the torso, but it's not short like some sweaters this season. i do tend to have a shorter torso, so a tall lady with a l",5,1,2,Initmates,Intimate,Layering +965,34,Perfect for work,"I ordered this blazer so i could look more put-together for work, but still feel comfortable. it checks both of those boxes, (it's almost like a sweatshirt material with more structure) and has a great cut/style. my only word of caution is that i thought this jacket was white with blue stripes, but the white part is actually a light heathered gray. i think i would have preferred white, but i still like it enough to keep. got my normal size small, which fit great.",5,1,7,General,Jackets,Jackets +1075,49,Nice quality but odd fit.,"This dress has a nice soft fabric and pretty details in the stitching and there is a matching slip with adjustable straps that snaps onto the inside shoulders. i found the length in petite to be fine but the loose fit to be unflattering for me as a short person (5'1""). however, the photos here on the website with the model are quite accurate- you can see exactly how it fits loose through the waist. if that's what you are looking for, go for it, but personally i didn't find it to ""do anything"" fo",4,1,2,General,Dresses,Dresses +1094,47,Voluminous but lovely,I needed to size down to a small. it's very flowy. but the color palette and the open stitching around the neck and hem are really sophisticated and pretty.,4,1,1,General,Dresses,Dresses +879,36,Great looking tee,"Great looking, please dry clean it or you'll ruin it, fits well, easy to make an outfit look stylish",4,1,0,General Petite,Tops,Knits +879,35,Stretches out during wear,"Love the style and fit, but it does stretch out during wear. by the end of the day, it feels big.",3,1,0,General Petite,Tops,Knits +879,31,Great shirt!,I love this top. it is comfortable and different from other tops in my closet!,5,1,0,General Petite,Tops,Knits +879,31,Kind of scratchy,"The material was a little itchy in my opinion. the fit was pretty big. almost a night shirt. i'm 5' 3"", and i will probably only wear this around the house with tights. i got a small. i purchased the orange color online. stay away if you have an olive skin tone! it's the pinkish it appears to be on be on the website. i'm 130 pounds 34d",3,0,0,General Petite,Tops,Knits +879,43,Love this shirt,"I bought this shirt at the store and after going home and trying it on, i promptly went online and ordered two more! i've gotten multiple compliments anytime i wear any of them. great for looking put together with no fuss. +people that have commented there's were destroyed in the wash didn't read the care label which says dry clean.",5,1,0,General Petite,Tops,Knits +1110,47,"Quality dress and gorgeous fabric, but frumpy fit",This dress has gorgeous fabric and impeccable quality construction! i'm 5'4 118lbs and large busted (32. dd). i am usually an overall size 4 but when buying dresses usually have to purchase a six to accommodate my chest. i ordered a size 4 because that was the only size left and was going to take a chance . it fit perfect across the chest but the overall dress is enormous! does not even slightly silhouette your figure. it is like a giant stiff triangle. i was going to return but was so hesitant,3,1,1,General,Dresses,Dresses +869,36,,,5,1,0,General,Tops,Knits +879,61,Very delicate,"I love this top, very slimming and cool fabric. only problem it is very delicate and will snag, as a mater of fact mine arrived with a hole in the back. i'm returning for exchange as i love the way the top looks, but know i will have to be super careful not to snag the fabric.",4,1,3,General Petite,Tops,Knits +879,42,"Great, flattering, comfy",I run between an xs and s in most retailer shirts. i went with the xs in this one and was glad i did. the fit is lovely and flattering. i loved this shirt the second i put it on -- then went to order it in another color.,5,1,0,General Petite,Tops,Knits +1110,26,Do not size up!,"Following the advice of other reviews, i ordered a size larger than normal, since the reviews said runs small in the bust. the dress ended up being much too big everywhere, including the bust. + +the dress was beautiful and great quality! sad i ended up with the wrong size.",3,1,4,General,Dresses,Dresses +139,26,Comfy top,"I love this top and wear it all the time. it's a gorgeous pale blue and feels amazing....it is a tighter fitting shirt so if you like looser clothes, size up",5,1,0,Initmates,Intimate,Layering +879,31,"Comfy, versatile top","Great top! a little large, but i shrank it a little in the wash, and it fits a little better now. i love the structure and pattern of this top, as well as the lovely coral/orange color. it can be dressed up or dressed down! love it!",5,1,0,General Petite,Tops,Knits +139,53,,"Great layering top. so comfy, feels soft as my pjs. bought it in 3 colors.",5,1,0,Initmates,Intimate,Layering +879,35,Easy casual shirt,"Very flattering, the material is not the softest but it's an easy one to throw on with jeans",4,1,0,General Petite,Tops,Knits +879,25,,,4,1,0,General Petite,Tops,Knits +402,36,Great design,"I love this swimsuit - the color, the pattern and the coverage! the material is different for me, but easy to get on and off. my complaint is that, although the backside looks great, there is no padding in the front. for a full coverage suit, this leaves little to the imagination. i'm torn on finding justification to keep it.",3,1,7,Initmates,Intimate,Swim +139,48,"Nice shirt, shrunk a lot in length after washing","I like this shirt, as in general i prefer more form-fitting and less flowy shirts. however, after washing the shirt and hanging dry it has shrunk to be too short to wear with even mid-rise jeans. so: good if you don't like long t-shirts, bad if you are tall, like me (5'8"") and don't want to wear a crop top.",3,1,0,Initmates,Intimate,Layering +879,27,Terrible fabric,I loved the shirt until i washed it! awful fabric quality. cheaply made.,1,0,0,General Petite,Tops,Knits +1073,32,,"I tried this dress on in the store and loved it. it's unfortunately out my price range but if i could have afforded it, i would have bought it. i'm about 5'10"" and the length of the size 2 was perfect. sexy back and great color.",5,1,3,General Petite,Dresses,Dresses +879,36,Great weekend wear,The shirt is very comfy and is slenderizing in the waist area.,4,1,0,General Petite,Tops,Knits +1073,37,Sad this couldn't come home with me....,"So i really loved this dress. i am tall (6ft) and the size 8 was perfect length. i would have worn it with flat dressy sandals. i would say it is true to size. i am not a flowy dress kind of girl but this was just the perfect amount of ""flow"" without making me feel like i was wearing a long potato sack. the back is just gorgeous and unique. here is why i couldn't make it mine. the tube top part is completely detachable and extremely thin. there is literally not much to it and i'm not sure it wou",2,0,7,General Petite,Dresses,Dresses +879,74,Great maternity top,"I bought this top when i was 6 months pregnant and wore it the rest of the pregnancy. i am 5'4, 34d and 135 lbs. i got all the way up to 172lbs and a chest size of 36dd. now that i'm not pregnant...i don't think it flatters my ""new figure"" anymore. ha! but i seriously wore it all the time when i was pregnant...so gotta give it at least 4 stars.",4,1,0,General Petite,Tops,Knits +879,39,Great basic shirt,"It's hard purchasing clothes online. i was hesitant on this shirt wondering about the size and that it might be too plain or boring. when i received it i was pleasantly surprised as its texture adds a nice bit of upscale to this basic tee. if your debating on whether to choose a larger or smaller size, i went with the smaller size as its a looser style and fits perfect.",5,1,0,General Petite,Tops,Knits +879,43,"Love the top, but...",Bought this early in the season - probably washed and worn <8 times and there are small holes that have formed in the front towards the bottom...bummer!,3,0,1,General Petite,Tops,Knits +965,71,Stylish and comfortable,"This jacket has great style, is really comfortable, and looks good with jeans or nice pants. i usually wear a small or extra small in all clothes but thought the arms were tight in the small. the medium is a better fit.",5,1,0,General,Jackets,Jackets +1047,27,Beautiful!,"I originally bought this for myself but it was way too big on my backside since i don't have much ""junk in the trunk."" i decided to pass it on to my sister since it was just too pretty to return. it fits her much better and she's worn it on a few occasions. it does run larger and the pants are very long. definitely have to be either hemmed or always worn with heels.",4,1,0,General Petite,Bottoms,Pants +886,38,Perfect...but,"It's an adorable take on the ""casual"" sweatshirt. i love the layers, but i wish they were just a little different. they hang a little strange. perhaps if the bottom one was a smidge longer? i'm not sure. or if the sweatshirt layer was a little longer and the blouse bit was therefore longer. it all hangs just a little...off? but, it's not so off that it looks bad. i'm petite, so it's cute on, but, i think if you were tall, it might hang a little weird. a warning though, i ordered a small, and the",4,1,0,General,Tops,Knits +1111,55,Lovely dress,"This dress is lovely. i tried it in the red and the black. decided to keep the red, as i have so much black. going to wear to a spring wedding - i will feel so comfortable and appropriate! just looking for a great statement necklace!",5,1,6,General Petite,Dresses,Dresses +829,59,,Tts and very feminine and flattering. looks same as on model. love this style. if you like style highly recommend . armholes not too big- yay!,5,1,3,General Petite,Tops,Blouses +835,28,Adorable and chic,"This shirt is structured enough to wear to work and flirty enough to wear out on the town. the details around the neck and the bottom make it very unique. i paired it with a chunky necklace and got tons of compliments. however, i could imagine this shirt may not work for those with a bigger bust line as there isn't much give in that area.",5,1,2,General,Tops,Blouses +886,54,Notta for me,I had high hopes for this top but it was too big and too much fabric.,3,0,0,General,Tops,Knits +886,62,Perfect and at the right price!,"In my opinion, the quality and uniqueness of this piece far definitely warrants a full price purchase. adorable cut and style, comfortable and cute. it's the perfect flexible top to wear to work with a skirt or more casually with your favorite pair of jeans. love this!",5,1,2,General,Tops,Knits +886,54,Super cute,"Really cute version of a sweatshirt. fits true to size through the shoulders and bust line; however, since i am larger in the bust area than the hip, the lower half of the top looks slightly large on my body. the sweatshirt is cut very straight, so it would probably flatter a person with a pear or straight shape. the inside material of the sweatshirt is a little rough; however, the appliquã© design makes this shirt a keeper.",4,1,2,General,Tops,Knits +886,46,"Didn't fit well for me, but well-made","I ordered this in size xl and it ran small. i'm a pear-shape and thought this style would be flattering. i have a few other peplum-style sweatshirts from retailer that are my favorites. but, the cut on this is tighter so the bottom layers gap and don't flow well. i found it to run short too. it's cut one size too small. i would have sized up but, being xl, there's no option for that. i'm returning mine. + +the applique is done well and is cute. the colors look the same in person.",3,0,0,General,Tops,Knits +677,47,"Pretty dress, horrible quality","I read the reviews before i bought this dress and had trouble believing that the dress literally fell apart at the seams so i bought it. first the good: i love the color, the fabric, and the design. it's very lightweight and loose-fitting and is perfect for hot days. the neck and sleeves are pretty on. i can wear it as a cover up or put on a necklace and sandals for everyday errands and things. +now the bad: it literally falls apart at the seams as you take it out of the package! i""m surprised a",3,0,0,Initmates,Intimate,Lounge +886,31,Wish it was more fitted,"The design of this top is super cute and the material is decent. the only flaw is that despite buying the smallest size (xxsp), it's still very boxy on me. i wish it was more fitted at the waist which would make it much more flattering. however, since i am actually pregnant, this actually works to my advantage, for the time being.",4,1,1,General,Tops,Knits +886,60,Classic retailer style,"Love this top! it has a beautiful appliquã© that is reminiscent of many past retailer favorites. it's comfy, yet cute and fashionable.",5,1,2,General,Tops,Knits +1083,52,,"I love this dress! the fabric and overall design are beautiful. however, the dress fit runs small, at least for me. i ordered a size 10 based on the reviews. i have another byron lars dress in a size 8 that fits well. i kept the dress because it is so pretty.",4,1,0,General,Dresses,Dresses +677,53,If only it came in petite. . . .,"I love this tunic. i am typically an xxs petite, so i should have known that the regular xs would be too large, but i took a chance on it. unfortunately it was, in fact, much too large. it is too bad because i absolutely love it. the fabric is soooo soft and comfy. i ordered it in the blue, and it is prettier than pictured. this is a great dress for the beach or pool-side or just knocking around. if you live in a hot climate or take warm-weather vacations, i highly recommend this. it takes up ve",5,1,3,Initmates,Intimate,Lounge +1111,47,Riding the dowdy line,"This is one of those dresses that might be better for those under 40. on me, the fullness of the pleats and the bell sleeve made me feel like i was wearing one of those dresses for a much older lady. i miss not having to consider those things. the red color is lovely and the dress is modest. i just think it will read a lot better on a younger chiquita.",3,1,7,General Petite,Dresses,Dresses +862,62,Really does run very large.,"This cardigan is super soft and comfy with nice big pockets and an easy feel. i am glad i read the other reviews before i bought it, though. i usually wear an xl (and they are often too small), but i ordered a large and even that one is a bit on the generous size. but i really like it a lot!",4,1,1,General,Tops,Knits +886,56,Stylish and easy to wear.,"This top is very cute and appears in person just as it does in the picture. fits true to size and the item is made well. i had many complements and it was fun to wear! + +unfortunately, i did have to iron it right out of the bag.",5,1,2,General,Tops,Knits +862,30,Great sweater - runs big!,I originally purchased this sweater in a size small (5'4 125lbs) and i was swimming in it! i went into the store and exchanged it for a size xs and it still runs a little big. i do love the quality though and its so soft! it's made of a sweatshirt like material which gives it a lazy sunday feel. it is definitely more casual than your typical cardigan but is so cozy! this is quickly becoming a go to for after yoga or just lazy sundays at home. great product!,4,1,0,General,Tops,Knits +1083,41,Amazing,"I'm 5'0, 125 lbs, and 34d, i ordered a 6p and it fits perfectly. the color is more of a bronze mixed with gold and chocolate. the picture does not do it justice.",5,1,0,General,Dresses,Dresses +949,66,Cute enough,I got the grey in my normal size large and it fits as shown. love the cowl neck although it's a bit awkward and oversized. the cowl is a lighter shade of grey and a nice contrast. it felt a bit itchy and is a tad boxy and short. i decided to return.,4,1,0,General,Tops,Sweaters +1047,46,Cute but strange fit on me,"This is an adorable piece but the fit is a gamble. the crotch hung way too low for comfort on these so since i got a great sale price, i had them altered. i haven't worn them yet but i'm sure i'll get compliments when i do. so if you want to take chance on the fit and/or alter them, go for it!",3,0,0,General Petite,Bottoms,Pants +862,29,Wanted to love it.,I ordered a size smaller prr other reviewers but that still didn't prepare me for the sweater's issues. it looks really cute but the quality is pretty horrendous. i wore it for the first time today and already the sweater is pilling a lot on my back. seriously heartbroken.,1,0,0,General,Tops,Knits +1083,55,A beautiful fit!,"I love this dress. the fit is spectacular and if there were any problems with the hook and eyes in the front coming undone as stated in previous reviews, it has been corrected! the dress does not come undone and it moves beautifully with you walking, sitting and bending. i wore this to a holiday party and the color is just amazing! a coppery and brown/gold pattern. very flattering! i will purchase more byron lars dresses for certain!",5,1,1,General,Dresses,Dresses +886,43,,"Great top. i ordered online because i needed a white top that i could get away with wearing in fall to work (even though it's white). i'm ""busty"" and normally shirts like this make me look gigantic (like i'm going to tip over) but this was a very flattering cut and fit. i highly recommend. it was also comfortable and i wore it with blue slacks to work (the flower is partially dark blue). i'm 5'8"" and the length was perfect. not too long in the butt but enough to cover it subtly.",5,1,2,General,Tops,Knits +1083,48,Gorgeous dress!!!,"I just got this in the mail, absolutely gorgeous. the hook and eye closure is very secure, i have no problem walking or sitting in this dress. i ordered a aize 8 going by the previous reviews that this dress ran small, i could have ordered my normal 6, but the 8 fits pretty good,just a tad big. the dress is more chocolate brown than black and the detail is really stunning!! you can't find unique dresses like this anymore, truly beautiful!!",5,1,1,General,Dresses,Dresses +1083,44,Beautiful,"I thought this dress was beautiful and the quality is amazing. i thought it was going to be black and gold, but it has a lot of brown in it as well. i ordered a petite. i'm 5'61/2"" and the petite was just above my knees whereas the regular came below my knees. this is a dress i can wear to many events.",4,1,2,General,Dresses,Dresses +862,28,Cute & cozy,"This sweater is a grand-dad style sweater. i love the pattern of the fabric. it does run a bit large, especially in the length of the sleeves. it definitely fits a more ""oversized"" sort of look. i find it very comfortable & perfect for a casual/weekend outfit.",4,1,0,General,Tops,Knits +829,64,I wanted to love!,"I received this yesterday and the fit for me is so strange...to tight in the bust and the arms were to big for me..i am so bummed...the arms do not stay on my shoulders. i have many tops but maeve and they fit me well..this is the first one i have to return. this top is made well and i do recommend, but it should be tried on before purchasing as it is pricey if it does not fit you!",3,1,2,General Petite,Tops,Blouses +1111,55,Swam on me!,I ordered a size 12 and it was huge on me! very loose fitting dress. i didn't like the material either.,2,0,3,General Petite,Dresses,Dresses +886,20,Great versatility top,Love my new top! i wear it casually with skinny navy pants and dressed up with new wide leg winter white pants! it's funky style garnered lots of compliments. as a mother of two teens i love to dress cute and appropriate. it really pairs well with so much and the bold flower makes it stand out!,5,1,3,General,Tops,Knits +1083,39,Runs both large,"I didn't want to get the black carissima because i already own the mona, so when i saw this gorgeous marguerite for sale, i had to bite. the main colors are chocolate brown, copper and rose pink--such a beautiful combination. the hook",3,1,1,General,Dresses,Dresses +1083,26,,"Fits like a glove and looks amazing on. it fits so many different body types but yet is flattering in all the right places! i got 00p and have a smaller chest and hip but it really gives a nice shape! got compliments all night when i wore this to a formal dance, but i could see myself wearing this again and again for holiday parties or other occasions!",5,1,1,General,Dresses,Dresses +862,26,Love,"Someone else mentioned that this fit like a grandpa sweater and they were absolutely right. it's definitely loose fitting, but it's really cute and well made. i usually get a medium size in tops/sweaters but, after reading the other reviews, i ordered the small and i'm so glad i did - it's the perfect casual cardigan. i wish it came in more colors!",5,1,0,General,Tops,Knits +1083,43,Another beautiful byron lars,"I am addicted to these dresses! as usual, the detail is amazing and the shape is so flattering. +as some reviewers mentioned, the dress is much more brown than shown on the picture so if you're looking for a black dress, there are others in the collection that are much better. otherwise, gorgeous dress.",4,1,0,General,Dresses,Dresses +835,68,Love this top!,"I bought this top in a large. i washed it in cold water, and it shrank just enough to flatter. the material is great, in that when i washed it, the blouse hanged quite nicely, no ironing needed. also, the material is heavy enough that no tank is needed underneath the top. thakoon had made the same top last summer, and it had cost around $500. this top is even better due to the material, and i could buy it for a fraction of the price. highly recommend!",5,1,3,General,Tops,Blouses +829,47,Great fall blouse,"This blouse is very versatile. it can be worn with jeans or dress pants. great fall color. +it is very sheer and you will need to wear something under it. it's pretty in person with an original print design.",4,1,0,General Petite,Tops,Blouses +817,29,Great work blouse,"I bought this blouse in the purple motif and love it for work. great design and print. +based on the existing reviews, i sized down from my normal xs to an xxs and i actually wish that i would have stuck with the xs only because the blouse is tighter on my biceps than i would prefer, but i am keeping the blouse. i always appreciate this in other reviews, so hopefully it helps: i'm 5'2"", 117 lbs, and a small 32b.",4,1,3,General Petite,Tops,Blouses +432,47,Not as beautiful as online,"I'm disappointed in these pants, which looked so beautiful online and even have pockets! in person the pattern and colors aren't as nice, the fabric is too thin, and the pants look cheap. the pockets are pretty shallow. the fit isn't good either. i ordered up (i'm between sizes) and they're still not as flowy as i'd have liked. these are too pricy as lounge pants for me to be on the fence about them, so they're going back. if you buy them knowing about the thin fabric and snug fit, they might wo",1,0,2,Initmates,Intimate,Swim +1088,31,Runs small but good quality,"I ordered this dress online but it turned out to be too small. i loved the color, fabric, and overall quality. i should have ordered one size up.",5,1,0,General Petite,Dresses,Dresses +829,62,Super cute,"I bought this is the orange/red motif and it is a beautiful print, although in person it is a more rich reddish color than the washed out model image. the entire shirt is sheer, so i will need to wear something under, but that doesn't bother me. i have a small chest (34a) and find that the front of the shirt is noticeably longer than the back, but that wouldn't be an issue if i was a little better endowed. this looks gorgeous with black pants and a blazer. not sure that it is worth full price, b",4,1,11,General Petite,Tops,Blouses +829,63,Fall dots,Great transition into fall for layering. easy breezy dress up or down-is thin so it does need a cami,4,1,1,General Petite,Tops,Blouses +817,45,Disappointing blouse,"I was intrigued by the pattern of this blouse (the purple version) but the design is terrible for me. it's boxy, i didn't like the fabric, and the arm ruffles are bizarre. it's going back tomorrow.",1,0,4,General Petite,Tops,Blouses +829,64,Flowy and light,"This top us flowy, breathable, and feminine. the fabric is light so it doesn't feel like you're wearing a swing dress with heavy fabric. it is sheer so a cami underneath is best. with flowers, less structured tops, i size down to a small or 6. some other tops i'd go to medium or 8.",5,1,1,General Petite,Tops,Blouses +829,38,Perfect fall blouse,I just received this in the mail and must say its one of my favorite purchases in a long time from retailer. the navy polka dot color combo is classic yet fun with the orange. looks great on its own as well as under a cardy. this will be in heavy rotation.,5,1,0,General Petite,Tops,Blouses +817,40,"Lovely fabric, not boxy",I've bought similar blouses from retailer before that i didn't love as much as this. it's not boxy or wide on me. it's a great length and i find the 3/4 bell sleeves to be elegant. i bought the purple one on sale and went back for the red/cream. my only complaint would be that the stitching could be of better quality. the fabric is very nice -- love the print.,4,1,1,General Petite,Tops,Blouses +838,42,Cute boho fall blouse,"Loved the look of the blouse online but the one i received has weird pattern placement that i'm not a fan of. mine was mostly cut from the ""mum/sunflower"" patterned fabric and none of the pretty teal and red pattern. the shirt online as a good combo of patterns-- mine is a solid mrs. roper-all-over-flower print! way overboard!! that said-- the cut is cute and the yoke at the back is a nice detail-- hoping i can exchange it for one that looks more like the online pic!",4,1,0,General,Tops,Blouses +829,36,Great top,This is such a cute top. perfect for fall layered with a sweater!,5,1,1,General Petite,Tops,Blouses +1094,39,Nothing special,"I was excited to receive in hopes to wear more as a tunic over skinnies vs a dress for fall. this runs sooo very large. the material is thick, and the pattern is just ok. didn't do anything for my hourglass shape. returned.",3,0,1,General Petite,Dresses,Dresses +1086,22,Perfect year round dress,"This dress is incredibly soft! with sleeves that can be rolled up or down, it is extremely versatile. while the dress is very comfortable and mostly fits true to size, i found it to be ever so slightly snug through the hips at first. however, i am somewhat difficult to fit with an accentuated hourglass figure. overall, i am very happy with this purchase and look forward to wearing it during my travels!",5,1,2,General,Dresses,Dresses +829,37,Beautiful!,"This blouse was exactly what i was looking for. perfect for those last balmy days of summer. fabric a bit sheer, but it flows beautifully and the pleating details and higher neckline make this top truly stunning. it is very flowy, so if you're looking for something more fitted, this might not be for you.",5,1,1,General Petite,Tops,Blouses +829,47,So cute!,"I love this top - it is the cutest top i've purchased in a while. the colors are so fun and the cut is flattering. it will go with plenty and will work for day and night, for work and on weekends. you need to get this top before it sells out. retailer please get this top in more patterns!!",5,1,0,General Petite,Tops,Blouses +829,29,Cutest blouse,"I ordered this in the tangerine and it is so cute. its very comfortable and flattering. i wore a tank under it, but didn't find it to be as sheer as other reviewers. i paired it with slim pants, brown suede ankle boots and a long necklace and it was one of the cutest outfits i have worn in a long time. i got a lot of compliments! i want this in tons of colors/patterns!",5,1,0,General Petite,Tops,Blouses +1086,36,"Comfy, cute and... sexy?!","I bought this dress because it looked sooo comfy. and it is! the fabric feels nice and it fits loose without feeling like a burlap sack. it's perfect for running around town for errands. i actually didn't think my boyfriend would like it because he generally likes more form-fitting pieces (yes, big surprise) but he actually commented out of the blue that it's really sexy. comfy *and* sexy?! score!",4,1,10,General,Dresses,Dresses +1081,22,Beautiful,"I love this dress. it fits like a dream and is incredibly flattering. i vary between a 4 and a 6 in dresses, and the 6 was too large on the bust but the 4 fit great! the dress is longer than in the picture, the model must be wearing heels, but it doesn't quite hit the ground with flats. the fabric is light and airy, it comes across a little more formal in person but is versatile enough to be worn more casually as well.",5,1,11,General Petite,Dresses,Dresses +829,42,Love it!,I love this top. i also have it in blue! i wish it came in more colors/ prints! i would definitely buy it!,5,1,0,General Petite,Tops,Blouses +829,59,Stylish and ready for layering,"I bought the navy polka dot top and i love the way the design lets you work orange into your wardrobe if it's a color you wouldn't normally wear. the blouse is sheer so a camisole is needed underneath; i'm looking forward to layering over the blouse in the fall to add a pop of pattern to a navy sweater. +i'm a 34f and size 12 fit me easily with extra room under the arms. the gathering stops above the bust so that it fit's snug above and loose below. worn loose, the blouse is fairly long, coverin",5,1,1,General Petite,Tops,Blouses +1081,24,Lovely dress,"Very graceful, long skirt. runs true to size and looks great! this is the kind of dress you will wear all summer long.",5,1,0,General Petite,Dresses,Dresses +829,66,Nope,"Loved the fabric but returning because the armholes are cut waaaaay too low. unless you have 30"" arms, all you get is an unnecessary showing of your bra",3,0,0,General Petite,Tops,Blouses +829,34,Cute blouse,"This is one of my favorite recent retailer purchases. i wore it to work and a presentation. many people commented on how much they loved my top, and then turned back around to take a second glance to realize it wasn't paisley but leopards and tiger prints. it's really fun and fits well. great for work or dressed down with jeans.",5,1,1,General Petite,Tops,Blouses +174,52,Beautiful but a very difficult fit,"I bought the s; came with a tag saying ""sz 8"". it is in fact more like a size 2, if not 0. + +the bust is probably a 34 a or b, or 32a or b - the cups fit me relatively well, but the rest was so tight that i could barely manage to put put it in. i can't imagine wrestling with this bathing suit each time i want to wear it, so i will return it. + +the fabric, design is as spectacular as it looks though... very good quality.",3,0,0,Initmates,Intimate,Swim +1059,31,"Beautiful aesthetic, crazy construction","5'7"", 34c, 28 jeans, 4 dress. ordered a small and a medium. never tried on the medium. the small was a little big in the waist, but what threw me for a loop was the chest. huge! could work if it's meant to be blousey, but the armholes were massive. if an xs is returned, i might give it a shot. but i can't imagine what women who are smaller than me are going to do in this jumpsuit. great color, transitions into fall easily. cannot be belted or wear a camisole due to the opening at the stomach. sh",3,0,1,General,Bottoms,Pants +1025,57,These are not higher waisted pants.,"These pants are more like 9"" not 10"". i was very dissappointed. the color is great and so is the fabric. +if you look more closely at the model the pants don't fit her either!! they are too small! i haven't decided whether or not to take them back because i am losing weight. i am a 31 so far but these pants are like a 30. i need the color because they go perfectly with a top i bought from retailer",2,0,0,General Petite,Bottoms,Jeans +1081,23,Eh dress,I wanted to love the stress so much i mean who doesn't love polkadots and a good maxi! unfortunately the fit was too awkward. the bust is saggy and the waist seems to poof out,3,0,6,General Petite,Dresses,Dresses +829,33,,,5,1,0,General Petite,Tops,Blouses +1086,65,Versatile & fun dress,"Not sure why this tunic dress is rated only 3 stars. i love it, as i do all coth & stone pieces. and it is cloth & stonw as another reviewer pointed out. the material is great and fit is tts except for the sleeves being just a bit tight. this dress does not run large as do some c&s pieces so don't size down. i'm 5'7"", 126 lbs and slender, and the m is perfect. if you have large or very muscular arms, this dress might not work for you. i plan to layer with a thin tee underneath, tights and boots",5,1,7,General,Dresses,Dresses +935,35,Poor quality,"I ordered this cardigan on sale and it was a wonderful fit and color. just the light sort of cute pullover i was looking for to keep and wear at work. unfortunately, it is poorly made. i wore it once and it already started to fray and fall apart. after closely inspecting the cause, i realized that the threads in the sweater are not fully sewed together, so the minute you put it on, one will start to unravel leading to a domino effect. it is a shame because the design and cut were truly a great f",2,0,0,General,Tops,Sweaters +838,43,Beautiful peasant top,"For once i found a peasant top that wasn't a balloon. i'm 5'1 and curvier on top and the small fit great. the blouse billowed a bit but it didn't make me look like a hot air balloon. the pattern of the blouse, a mix of various floral swatches, is very pretty. the blouse will look great with black skinny jeans and boots for fall. i can't wait to wear it!",5,1,2,General,Tops,Blouses +829,30,This blouse is a perfect fall print!,I purchased the orange tiger print and absolutely love it! the colors and pattern are rich and vibrant and can easily be dressed up to be worn for work or a night out!,4,1,0,General Petite,Tops,Blouses +1086,53,Cute but thin,"The fabric is flimsy and not substantial. i thought it ran a little small. i usually wear a large in this style, but it was too tight.",3,1,10,General,Dresses,Dresses +838,47,Runs large,"The top is a pretty and has a nice pattern. it does run large and is it a bit billowy. i am 5'4 petite and ordered a small ( maybe the xs would have been better). however, the top swallowed me up and was unflattering. the colors are true to the picture..not very bright, but would be a nice transition to fall top. +the feel of the blouse was nice and maybe if i was taller and ordered a smaller size it would have been better.",3,1,3,General,Tops,Blouses +1059,37,Cute but runs small,"I like this! the fabric is soft and a little less orange-looking than in the photo. i'm usually a size 12 or 14 and the size l is very small on me - as in i'd have to lose a little weight for it to look normal on me. also, it's a bit annoying that you have to undo all the little buttons in the bodice to get it on and off when going to the bathroom. but otherwise it looks cute and even has pockets!",4,1,0,General,Bottoms,Pants +1081,59,Too much gathering over bust-sticks out an inch!,"The dress fit fine, with two exceptions. first, i am 5'1"", and i ordered a petite 4. the dress was dragging on the ground, so it would need hemming if i were keeping it. but the deal breaker was that the gathering of the outer fabric over the bust stuck out an inch beyond my 34d figure, which made me look like i had very oddly shaped nipples. i made the assumption that the dress i received was defective, so sent it back, but unfortunately, the replacement fit the same way. the lining fabric fit",3,0,2,General,Dresses,Dresses +1086,20,Simple and cute dress,I found this in the returned section of the store in a large. i am normally a m but the fit would have been too small in the shoulders. it is very light weight and the color is much lighter in person which means it will go right into spring!,5,1,0,General,Dresses,Dresses +829,45,,"Really flattering cut, this shirt is perfect for fall. got so many compliments the first time i wore it!",5,1,0,General Petite,Tops,Blouses +828,39,Great casual shirt,I love this shirt because it's casual yet fun! the first time i wore it i received several compliments because of the fun tassels.,4,1,2,General,Tops,Blouses +829,30,?? the print.,I love the tiger print. its subtlety is the perfect added quirk to an outfit.,5,1,0,General Petite,Tops,Blouses +817,57,Beautiful and versatile,"I bought this in the purple print. the fabric is soft - similar to silk. looks great with black, burgundy, tan pants/skirts. i find it comfortable and received compliments on it at work.i have not washed yet - cannot comment on washability..",5,1,1,General Petite,Tops,Blouses +1078,33,,"Incredibly flattering cut! i got so many compliments when i wore this dress to a friend's wedding. with the built in bra, you don't have to add extra uncomfortable layers. it stays put with or without the straps! the skirt is blissfully full and fun for twirling. i had a little trouble figuring out the belt, as it wraps around multiple times. but once i worked that out, it was perfect! love this cut! i hope they make it again it different colors!",5,1,0,General Petite,Dresses,Dresses +1059,35,A-ma-zing,"I am so in love with these pants. i generally stay away from wide legged pants because i think they make me look shorter (i am already short) but these are awesome. the fabric is not very thick so they are moveable which is great, but not so moveable that they feel like palazzo pants-they will hold their shape. i love the polka dot design so much and i actually really love the whole outfit with the black tie-top. these pants are long on me, but it isn't surprising since i am pretty short, i am t",5,1,14,General,Bottoms,Pants +581,35,"Long on me, but i loooove it","I am short so this ends up being really long on me, but i like that i can show off some amazing heels with this skirt. lately, i have been getting into grey so that it puts more attention on my accessories. the cut of this skirt is amazing, and the thick waistband is non-traditional which makes something that normally would be boring, really stand out (plus it helps hide baby fat!). the fabric is a medium weight, but it does flow nicely, and it does not seem to wrinkle easily which is a huge plu",5,1,3,Initmates,Intimate,Lounge +875,44,,"Sadly, i returned this one. i'm a 36d bra size and this shirt could not handle that. it fit around my chest, so sizing up was not necessary, but my chest caused the straps to shift and sit funny on my shoulders. cute top and well made for those who can fit into it better!",3,0,1,General,Tops,Knits +713,29,Love,"Gorgeous wide leg sweats. i did wear them outside but i wore with a long t because they are slightly see through if they are snug on your bum. they don't seem like they will last long because they are thin. but the cut is adorable and very flattering. they were a gift, not sure i would have spent $78 but i do love them.",5,1,6,Initmates,Intimate,Lounge +1078,35,Nice quality,Saw this in store and could hardly wait to try it on! the print is adorable and colors are vibrant. the material is heavier than i'd like for hot phoenix summers but decided to get it anyway. will be great for work. i noticed that there is a little more room in the chest area of this dress but not a deal breaker. seems to be well made in general and i love the pockets!,5,1,10,General Petite,Dresses,Dresses +1078,43,Darling dress!,"This dress runs a little smaller than most maeve dresses, but it is so cute. i still ended up getting my regular size 6, but will need to wear spanx with it to get a smoother line. nice material, and great color. the store had just gotten it in when i bought it, and everyone who saw it was raving over it.",5,1,2,General Petite,Dresses,Dresses +1078,42,Run small but great color,"This dress looks great with bright color, but size runs small.",5,1,0,General Petite,Dresses,Dresses +1078,29,Classic,"In retailer dresses the petites usually fit me better, i'm short, but this regular fit well. looks super cute, i've gotten so many compliments on it. comfortable, and the pockets are always nice.",5,1,0,General Petite,Dresses,Dresses +1078,38,Odd fit,"This dress had an odd fit. very loose on top with pointy darts, very tight on bottom. fabric was stiff so it didn't move well with me",2,0,4,General Petite,Dresses,Dresses +1094,39,Sweet and sexy at the same time,"I loved this dress the moment i saw it online and debated ordering it as i wasn't sure the color would work on my pale skin, but wow, so pretty! it fits like s glove, in fact i almost had a hard time zipping the side where the fabric changes. the tie waist in a beautiful addition. the chest seems roomy enough, i am a 30 dd and the 0 petite fit. it is surplice so may give more if bigger chested. the skirt is a kind of lace and looks pleated at the same time. my only complaint is the side zipper i",5,1,9,General,Dresses,Dresses +1078,39,"Can you say ""legs ahoy""","Wow, that dress is short... at least, the epite was, not falttering on muscular thighs... perhaps a regualr size on that one would work, but the bodice was a perfect fit, so not sure there... i decided not to try it on, as i figured this dress is very seasonal, and trendy. otherwise, if you ahve the money to spare and leaner legs,i would recommend it. the cut was actualyl flattering otherwise, i didn't have bunching issues like others, and my 30dd boobs fit in the 0p. color and pattern are prett",3,1,2,General Petite,Dresses,Dresses +1094,46,Pretty in pink,"Beautiful color. emphasizes a small waist; top is fitted, so if you're curvy, beware. i'm a 32 ddd and size 10. skirt is roomy. agree with other reviewer that zipper is not smooth. reminds me a little of a prom dress i had in 1987... which could be good or bad ;)",5,1,7,General Petite,Dresses,Dresses +1078,61,Strangely cut,"Was super excited to try this on, but had to go up 3 sizes from my normal 6 and the waist was still too tight - i was swimming in the top as well. just a very strange cut and unflattering. such a bummer because it's so pretty.",2,0,1,General Petite,Dresses,Dresses +862,33,,"Loved the bright pattern online and had hoped it had a similar fit to the tyla ts which i love. in actuality this was a lot boxier. the cut was shorter in length, too short for my 5'10 frame. the width was rather boxy and unflattering, particularly with the wide arm holes and flat cuffed sleeves. also the pattern looked a little cheap in person, way less spectacular than retailers typical gorgeous vibrant patterns. this is going back i'm afraid.",3,0,0,General Petite,Tops,Knits +1060,50,Perfect white pants,I love these pants purchased them in white the fit is great the fabric is just the right thickness given they are white i don't want the fabric to be too thin a bit long so i will have to have them tailored but vey happy with these pants,5,1,0,General Petite,Bottoms,Pants +1094,42,Lovely,"Absolutely lovely dress, in a gorgeous color, drapes well. the perfect blend of pretty and sexy. so much more beautiful in person!",5,1,0,General Petite,Dresses,Dresses +1158,39,Doesn't fit,"Fun, sexy underwear but rides up in the front. will return",2,0,0,Initmates,Intimate,Intimates +713,25,You will live in these pants!,"$78 for a pair of sweats seems like a lot of money, but not when you consider the amount of wear you will get out of these pants. they are thin and a little on the long side, but very flattering. plus, the thin material makes them perfect for summer nights. i love the pockets. not a big fan of the tie on the front, but that's just a personal preference. i won't just be wearing these on the weekend. i found lots of fun tops and jackets in my closet that will turn these pants into something i'll b",5,1,4,Initmates,Intimate,Lounge +1078,34,Beautiful but runs tiny,"This dress is my first retailer purchase in several years. i saw it in the window and had to try it on! i'm quite small, usually a size 0, 2 at most, and 34b at the top. i had to size up to a 4 in this dress for it to zip up and be moderately comfortable. + +i love the 50s vibe of the volume at the bottom. the cotton is nice - glad to see retailer go back to offering natural fabrics! + +very pretty color, and print.",4,1,8,General Petite,Dresses,Dresses +862,29,Very soft and cute design,"The material is so soft and i really like the design (i got the map one). as others mentioned, sleeves are quite short, almost morel like a muscle tee than a t-shirt, but i don't mind. looks really cute under a cardigan for fall too.",4,1,0,General Petite,Tops,Knits +1078,36,Striking dress!,"Based on reviewers' comments, i sized up and ordered an 8 (normally i run 4-6). and while the waist fit pretty well, the bust was too large and roomy (i'm a34b bust). i eventually got ahold of a 6 and the waist still fits and the bust is much better. so for me, at least the two dresses i got are true to fit. and the dress is very pretty and i'm excited to wear it!!!....i guess since it's fall i may have to wait until next year...",4,1,0,General Petite,Dresses,Dresses +1078,31,,"The dress is very feminine and very flirty. i love orange/melon-colored dresses. this one does not disappoint. it does run extremely small around the rib cage. i had to size up to a 6 when i typically wear a 2 or 4. my bra size is 32 b. nice quality fabric, lined, with built-in bustier.",4,1,1,General Petite,Dresses,Dresses +862,24,Odd sleeves?,"Designs are nice and texture feels comfortable, but sleeves are odd because they are angled. +i wonder what i should do to look cool in this t-shirt. +i tried wearing neutral motif, but i still felt odd. +also, width is relatively wide, so it runs large. +i rated average for overall rating because of these odd sleeves and feelings. +personally, i do not recommend this t-shirt, but who knows, it may be right for you... +so, my advice is to try wearing it in a fitting room and check whether it loo",3,0,1,General Petite,Tops,Knits +713,61,What i expected,"Beautiful fit, love the style! fabric somewhat thin, but didn't bother me. thought a little expensive however, but i'm keeping!",4,1,1,Initmates,Intimate,Lounge +1078,67,"Beautiful dress, poor fit","It was love at first sight when i saw this dress online. i have several maeve dresses which i love so i thought this would be a sure thing. i was really excited when it arrived because when i opened the package the dress looked just as beautiful...until i put it on. fit is fine from the waist down but the upper part fits very poorly especially in the back. +not sure if it's the zipper that pulls the fabric or if there's just too much fabric in the back but the back of the bodice doesn't lie flat",3,0,5,General Petite,Dresses,Dresses +862,60,,,3,0,0,General Petite,Tops,Knits +1078,28,,This dress has a very flattering cut and the style is very cute. i ordered a 4 petite and i typically wear a 2 or 4 regularly. the 4 petite was a great length (above the knee but not inappropriate). i wore to a bridal shower and received a lot of compliments!,5,1,5,General Petite,Dresses,Dresses +835,41,,Gosh this is beautiful but it is way wider and puffer than i imagined it would be. in fact it almost looks like a costume or something you would buy handmade. i would just feel silly wearing this out to dinner with a group of friends. i gave it high ratings on the quality however because it really is beautiful but the design is just not what i had hoped for.,3,0,3,General,Tops,Blouses +835,41,Dreamy tunic,"Aaaaaaamazing tunic, it was love at first sight and the detail is spot on. the total weight is heavier than expected but that is due to the impeccable quality of the top.",5,1,0,General,Tops,Blouses +1078,45,Bad lining,"I ordered this dress in my usual sz 2 it seemed to be tight on the hips , then i tried the next sz 4 and it was tight because ,i realized that the lining was very sticky, and would bunch up underneath making the dress look defective on me, not for curvy on bottom. i think if you are more slim down below this will maybe work but i had to return for this reason. i was considering cutting out the lining because it was so cute, and i really liked the look of the dress, if it goes on sale i may purch",2,0,4,General Petite,Dresses,Dresses +862,82,Shirt is just okay,"Relaxed fit, soft and comfortable. interesting design but material is extremely thin. if i had purchased this at full price, i probably would have returned it. it seems more like a pajama top...",3,0,0,General Petite,Tops,Knits +862,23,Nothing special,I am wearing a medium in the photos and for reference my measurements are 38-30-40. i did not purchase this top.,3,0,38,General Petite,Tops,Knits +1060,38,Perfect pants,I'm so in love with these pants. they are so flattering and made of thick material. they do run a bit large though so i'd suggest you size down. i also like they they're high waisted. the gold button details are gorgeous as well. great pair of pants.,5,1,1,General Petite,Bottoms,Pants +1078,38,Not worth the effort,"Generally, i find sizing at retailer to be very consistent, so i ordered this dress in the same size that i order all of my other retailer dresses. the bust was way to small. so i had to go and return this and have the next size up shipped to me. it's till way too small! in addition, the shipping was terrible - the dress was just dumped into a bag with no attempt to fold this, and the right strap was defective! it's so irritating that i have to return this again!",1,0,0,General Petite,Dresses,Dresses +862,50,Nice t-shirt but odd sleeves,"I like the pattern on this shirt and the fit over all is pretty good. i wasn't sure if i liked the sleeves as they are very angled, much more so than i expected. still, the shirt is nice enough that i'm keeping it.",4,1,18,General Petite,Tops,Knits +1078,31,We need more vintage retailer style.,"The print on this dress harkens to the old days of retailer. if you miss the fun prints and whimsical styles, playful textures, and conversational pieces - this dress is for you! at 5'7"", 34c, 27-28 waist, i bought the size 4. runs tts. site claims it's a fit and flare but i think it's more of a sheath cut. the thicker canvas like material has stretch but gives good form. i wear mine as a jumper/pinafore with a white shirt sleeve blouse. my only complaint is that - as a dress - the arm holes are a",4,1,3,General Petite,Dresses,Dresses +1078,33,Unflattering fit,"This vibrant colors in this dress are beautiful, but the fit is very off. you would assume a fit like this would be slimming and flattering at the waist but it somehow squished down my boobs, and made my waist look wide. it also ran small.",3,0,1,General Petite,Dresses,Dresses +1060,70,,,5,1,0,General Petite,Bottoms,Pants +1078,43,"Wrinkly cotton, nice shape","While the cut, drape, and shape of this dress are very attractive, seeing the fabric in person was disappointing to me. it's clearly well-made and there are abundant high-quality details. however, the combination of a large-ish pattern and the wrinkly, thin cotton still felt kind of limp and cheap. i sent it back.",3,1,0,General Petite,Dresses,Dresses +1078,31,Darling dress,"I wore this sailboat dress with blue wedges to a wedding and received tons of compliments from men, women and children. i love the material, pockets, and flattering cut. definitely iron it beforehand because it wrinkles.",5,1,0,General Petite,Dresses,Dresses +1078,46,So fun!,Can't wait for the weather to get warmer so i can wear this one. as others have said the material is heavier but i think that's a positive as it is very structured and slimming. i'm a fan of maeve dresses and this is no different!,5,1,0,General Petite,Dresses,Dresses +1078,36,"Pretty dress, bad fit","This dress is very cute! i loved it. the quality is excellent. however, the fit is off. i'm 5""1, 107lbs, 32c. this dress was roomy in the bust and was a little too broad shouldered. it was tight around the waist. this caused creasing and buldging in the back. the color is much more vibrant in person. i would have kept it, if it fit properly.",3,1,0,General Petite,Dresses,Dresses +862,44,Ordered 2,"I love these tees, i ordered 2 of the map shirt. they are comfortable and stylish. i knew that i would wear it so much, so i bought a spare.",5,1,0,General Petite,Tops,Knits +1078,39,Great dress!,This dress looks and feels classy and expensive! every time i wear it out i get compliments on the color and style.,5,1,0,General Petite,Dresses,Dresses +1078,56,"Beautiful, classic","What can i say? this is a winner! it is stunning, gorgeous, a perfect summer dress that looks like sunshine and orange sorbet. it is classic, early 1960s look, which is exactly my style! i am usually a 14 or a 16, so i went with a 16 based on the reviews, and it fits divinely. i don't need another orange dress, but this is a keeper!",5,1,4,General Petite,Dresses,Dresses +1078,43,,"The cut of the bodice is very strange and unflattering. it is great quality, but designed poorly. returned it.",2,0,7,General Petite,Dresses,Dresses +1078,51,Super flattering,"Great dress, love how flattering it is and that it has a little bit of a retro feel. the dress is well made, too!!",5,1,0,General Petite,Dresses,Dresses +1078,36,"If you make one purchase this spring, buy this!","Maeve does not disappoint! unlike many of the tops and dresses which recently have been billowy, a bit shapeless, and not form-fitting, this hugs all the right curves. it's adorable, eye-catching and the pattern is so cute. i paired it with nude heels today and a jacket - so fun. just like the wynwood top in all 4 colors, the level of fun and playfulness is unmatched. it's tts. i am 5'4"" 115 and got the 2. thank you, retailer & thank you, maeve!",5,1,0,General Petite,Dresses,Dresses +831,38,Great style,"This pull over is so easy to wear, very comfortable and has a great bohemian vibe. it's quality seems higher than what i was expecting- lots of details, tassels, fringe and hood. i travel a lot for work internationally and it's become my go-to for the plane, dinners and excursions- makes a boring outfit looks effortlessly cool. would love to see more items like this pullover in the store this fall.",5,1,1,General,Tops,Blouses +831,34,Great piece,"This pullover is perfect for spring all the way into fall. it is comfortable and the perfect piece to throw on over a summery tank and jeans. i've even worn it over dresses before and it worked great. soft fabric, but durable. i've had a lot of compliments on this pullover and recommend it for you!",5,1,1,General,Tops,Blouses +1078,44,Fun and flattering!,"I got the dress with the boat pattern- such a fun dress and very flattering. it is definitely a coral, but i am able to wear this with my fair skin and will probably look better with some color as spring/summer finally arrive. i am only 5""2' so the length is great for me- i can wear this to work, but it would be pretty short for a tall gal. definitely recommend!",5,1,0,General Petite,Dresses,Dresses +862,43,Liked the print,"I purchased this shirt in the novelty print, very cute. the shirt itself is fine, slight relaxed fit, thin material, purchased in a small (normal size), it really was the print that sold me. on it looked very cute and just really liked it. may not be worth the $58 i paid for it but would be a good pick up on sale.",4,1,17,General Petite,Tops,Knits +862,55,"Pretty colors, comfortable",Comfortable top. would have been nice to have it a couple inches longer. pretty colors (the floral pattern).,4,1,0,General Petite,Tops,Knits +1060,59,Love these pants,"Been wanting a pair of high waisted sailor pants for a while and these are perfect! love the fabric . will be able to wear these in the spring, summer, and into fall. bought the 2 petite and the fit is perfect. nice drape and figure flattering. even the petite runs long and will have to wear with a high heel rather than flats. bought the black and thinking about purchasing the white pair as well. very very nice and i am very happy with this purchase.",5,1,8,General Petite,Bottoms,Pants +875,40,East to wear and stylish!,"This poncho is right on trend, falls beautifully, and looks great with just a t-shirt underneath. very stylish and versatile. i received many compliments on it when i wore it. the only reason it didn't get 5 stars is because it snagged fairly quickly after i put it on the first time. it only happened once, so probably not a huge issue. i love it!",4,1,0,General,Tops,Knits +1094,57,Gorgeous but runs very small,"I wish his dress would have worked. it is beautiful!! however, the waist and bust runs very small. the bottom of the dress does flare out a bit but the waist is so tight that unless you are a stick, everything at your waist and hips will stick out.",3,0,6,General,Dresses,Dresses +862,39,,"Love the print and loose fit. doesn't look to wide on my top heavy torso and the sleeves don't cling to my chubby upper arms or tummy. wore all day today, first with shorts then with cropped jeans.",5,1,2,General Petite,Tops,Knits +1078,42,Kennedy summer dress,"This dress makes me this of jackie kennedy on the beach in the summertime. i love the pattern and the pockets, oh my goodness the pockets! i saw this in the store and ordered one while i was there online because the ribbon on the zipper was frayed. well guess what we i got it in the mail at home the ribbon was also frayed. ugh. i kept it because it wasn't a huge deal breaker. the color is a little strange, not a true red more of a orangish red. i think it's super versatile and hopefully i will w",4,1,0,General Petite,Dresses,Dresses +713,59,"Excellent style, poor quality control","I practically live in lounge pants, and i like the unique style of this wide-leg version. i'm generally a 6/28 in pants and ordered the small which fit well, if a bit big. the overall fit is great - slim at the hip with a nice wide waistband, and flatteringly-placed dropped pockets. the pants really slim my hips and provide a nice silhouette with the wide legs. the fabric is soft and flows and i did not experience any sheerness. as for color - i would call these a deep cool brown, definitely not",3,1,1,Initmates,Intimate,Lounge +862,50,Great casual shirt,Got this shirt in the map design - super cute! it looks great with jeans or chinos in different colors. fun and different shirt. fit just as expected.,5,1,0,General Petite,Tops,Knits +1078,46,Runs small yet very billowy skirt,"What is going on with maeve sizing this season? in the past two months, i've purchased two maeve dresses that run very small--particularly at the waist. having many maeve items from past seasons and other recent retailer purchases, it's impossible to ignore that maeve's sizing is quite off. that aside, the vibrant summer colors and material quality are great. the skirt is lined but billowy and fuller than ideal. strangely, it's a lot of dress yet not enough at the same time. there bodice h",2,0,15,General Petite,Dresses,Dresses +1060,44,Tailored and structured,"These pants are a great buy now that it's on sale. even though the weather is warming up, it can be stashed away until next cold season because it is timeless. the fabric is thick but not bulky, the side zip is flattering, and the buttons add a touch of flair, which make the pants look very tailored. size 6 regular fit me well on the waist and hips (i'm 5'2"", 26 waist, 36 hips). i cut off 4 inches of the hem so i can wear it with 3-heels. i prefer the regular size for elevenses pants because the",5,1,1,General Petite,Bottoms,Pants +1104,19,,"I have a different perspective than the other reviewers. the fabric is thin - and silky -perfect for summer! it is a pleasant change from other items in my summer closet. i bought the small, which i typically wear. it can easily be dressed up with heels and down with flat sandals. finally, it has pockets!!!!",5,1,0,General,Dresses,Dresses +1078,30,"Ehhh... it's fine, i guess.","When you buy a dress full price and it goes on sale before you can even wear it ($168 down to $49) uuuuggghhh... i like the dress fine enough, but it has a weird under wire, it makes my chest look strange, like i don't fill it in. i usually don't have that problem as a c cup. more orange/red then yellow as well. wouldn't recommend.",3,0,0,General Petite,Dresses,Dresses +1060,45,Nice,"Quality is great, fits very well at waste, i am 5'4 135lb bought size 8p and it's good... i would require wear heels as it reaches and sits on the floor. they are more fall/spring/winter pants as material quite thick. overall, i am happy with them",5,1,2,General Petite,Bottoms,Pants +862,44,,,4,1,0,General Petite,Tops,Knits +1078,54,Vintage vibe with built-in support,"This should be a good dress for hourglass figures. runs a bit narrow in the ribcage, so you may want to try a couple of sizes. i'm 5'2"", currently 33-25-37 or 38 with a 28"" underbust, 28dd/30d/32c bra. normally a 0p or 0 in these type of dresses; the size 2 fit, not sure i could have zipped a size 0. +. +loved that the boning at the front bust and sides keeps the dress up and in place without the straps. side pockets, and the cotton feels soft, more like a sateen than a poplin weave. lovely colo",4,1,3,General Petite,Dresses,Dresses +1078,25,,As soon as i put the dress on i had to buy it! i felt like it looked and fit really well on. the dress pictured is an 8 and was a bit baggy up top. i'm a 32c so i purchased a 6 and it fits like a glove. i'm 5'8 and it hits just above the knee.,5,1,1,General Petite,Dresses,Dresses +713,49,,,5,1,0,Initmates,Intimate,Lounge +1078,35,"Beautiful bright color, form fitting.","I wasn't sure the color would be good on me (pale with reddish hair) but it is great for my complexion. on to the fit...it fits small, imo. i'm a 10, sometimes 8. i got the 10 and it is very form fitting. don't get me wrong, it does a great job of holding it all in and giving a great overall silhouette. but, it's not that comfy to sit in and i have to suck in to have a flat belly in it. trying to decide if i should send back and try a 12??",5,1,1,General Petite,Dresses,Dresses +1060,54,Great fit but too long for petite!,"I tried the size 2, regular in store. they were a bit roomy and since i am 5'3"", i was glad that they were offered in petite. they did not carry petites in the store so they ordered a petite 0 for me. i tried them on when i received them and they fit like they had been tailor made for me. the rise was a bit short but not a deal breaker, however, they were very long and i hoped that i had shoes that were high enough. i often hem pants but figure when i buy petites there is no need. also, the hem",4,1,6,General Petite,Bottoms,Pants +850,30,Perfect summer blouse,This blouse is perfect for a summer afternoon. it;s very light and the v neck back on it is super cute. the coloring is amazing. it's hard to find anything with those two colors incorporated. looks perfect with jeans or shorts and can be dressed up or dressed down. i am a solid 12 in everything...tops and bottoms and this shirt was no differemt. i like it a little loose so i went with my normal size but i am sure i could have gone down to a 10 as well. don't pass this up. it's a lovely lovely to,5,1,4,General,Tops,Blouses +1028,46,My new go-to throw-back jeans!,"These beauties offer such sweet respite from low-rise skinny jeans -- hallelujah! absolutely love the high waist and elongated line. i'm 5' 7' and the 25 are a great fit. very slimming, and already i've dressed them down with an off-the-shoulder top and wedge espadrilles and dressed them up with a silk blouse and heels. the design is very retro-fabulous, the quality top notch. love these and look forward to having them as a ""forever"" staple in my denim repertoire. i've been searching far and wid",5,1,6,General,Bottoms,Jeans +378,59,Adorable suit,"I ordered this suit online which is something i never do!! i am 5'6"" 120# and ordered the 6. it fits perfectly! it covers up nicely. i am small chested (34a) and it has padded cups which enhances my chest. the ruching hides any tummy flaws. really a slimming suit and great quality.",5,1,0,Initmates,Intimate,Swim +1028,65,Fabulous!,"I love these jeans! they are super soft and just the right weight for year around. however, they do run large. i normally wear a size 27. i am 5'7 and weigh 127#'s. because the other reviewers mentioned the sizing issue, i ordered a size down=26. they were too large and i sent them back for an exchange. these are perfect. i get tons of compliments when i wear them...i would love to see coh make them in a true black.",5,1,2,General,Bottoms,Jeans +1008,24,,,5,1,0,General Petite,Bottoms,Skirts +378,26,Perfect for post-baby,"Like other reviewers have mentioned, i was hesitant to spend so much money on a swimsuit. after lots of searching and reading reviews to try to find a bathing suit for a newly postpartum body, i went for it. i am so happy that i did - it fits perfectly. snug in all the right places, and makes my extra baby pudge seem nonexistent. before baby i was a bikini-only kind of girl, so i wasn't sure how i'd feel in a one piece in this style. it really is better than i could have imagined. i highly recom",5,1,1,Initmates,Intimate,Swim +863,54,Comfy and pretty,"This top is a great addition to my summer wardrobe. i love it because it does not cling to my body, and in a hot humid summer, i want things that flow. this is super cute and flattering. the lace in the back is soft, and not too revealing.",5,1,0,General,Tops,Knits +863,33,The back is my favorite,Love the lace on the back! it's a sweet take on a typical tee! comfy! a little on the boxier side but a great tee.,5,1,0,General,Tops,Knits +974,29,"Cute, yet different","I love this jacket. i was waiting for it to go on sale, and it did... but only because of the fit. + +the style is great and it has a peplum that goes all the way around the back. very different. + +however, it runs insanely small. i'm not sure where the others are saying it fits true to size. it does not. typically, i'm a xs or s petite. i wear a 0 or a 2. this jacket i needed a 6 in. very small across the back.",5,1,11,General Petite,Jackets,Jackets +378,59,,This bathing suit is absolutely fabulous! it makes me feel like i stepped out of the notebook! definitely worth every penny!,5,1,1,Initmates,Intimate,Swim +863,37,,"I love this top! i was hesitant about purchasing based on the other reviews but i'm so happy i decided to order this beautiful top! i'm 5'4"" 115lbs and the xs fits great. it does run a lititle big but i like slightly over-sized tops with skinny jeans. the xxs probably would have worked as well. i definitely reccomend giving this top a try but size down if you are going for a more fitted look. the lace detail give this staple piece a nice added detail!",4,1,0,General,Tops,Knits +859,46,Ooooo! love this so much more than i thought,"This blouse is beautiful, and very versatile, as others have said. i seem to have been buying many maeve prints lately, and got used to that fit. this blouse fits slimmer, but not tight, and ends up extremely flattering. the arms are also a bit slimmer in cut but not too tight -- the fabric has a little give/stretch and so even f they aren't totally loose, it's still comfortable. the lace detail is subtle but pretty. i am going to wear this to death, i can tell.",5,1,1,General Petite,Tops,Knits +1008,23,Beware if you have a butt!,"I have been wanting this skirt since it came out, and was overjoyed when it went on sale. i got my typical 00 size (24-26 waist, xsmall-xxsmall shirts/dresses), but when i tried it on i was a bit confused. the waist is a little roomy,so there's no way i could wear a 0, but the skirt hugs my butt. and i'm talking in that weird ""hug the butt but flares out awkwardly below way"". now i don't consider myself particularly gifted in the back end department, but this skirt sure says the opposite! i can'",4,1,1,General Petite,Bottoms,Skirts +378,26,,"I love it! i was hesitant to spend so much on a suit, but it's well worth the money. i'm 5'3"", 140 lbs, and my stomach is my biggest problem area. i ordered a size 8 and it's a perfect fit and very flattering.",5,1,9,Initmates,Intimate,Swim +1028,41,Instant comfort,I love these jeans-the minute you put them on they feel broken in and comfortable. they do have a long inseam and need to be worn with a stacked heel but that adds to the aesthetic. i ordered my normal size-i usually wear a 27 and could have kept them-but wanted a snugger fit through the bum. so i gave them to a friend and ordered one size down and got the perfect fit for me.,5,1,0,General,Bottoms,Jeans +863,37,Vanity sizing,"Loved the idea of this top--but it just won't work for me. it's really big. i'm 5'3"" and 125 lbs. a small should be fine, but i'm swimming in this. the back is pretty (i tried it on with a white cami), but it looks very maternity on me. tried to order the xs, but it's sold out. too bad. was a cute idea. not too thin for summer.",3,0,2,General,Tops,Knits +1028,41,If you miss cotton jeans try these..,For those of you that don't care for stretch jeans you would probably like these. they feel like 100% cotton but better. no stretch at all which i'm glad. i'm not a fan of the stretch. to me these are those comfy go-to jeans. i got my usual size 28 which i perfer in these because i can use the pockets with ease. the pockets are lower side pocket which are great! you will likely need to hem them unless you are pretty tall. i hemmed mine and you can't tell it. i'm not sure how much these could be,5,1,0,General,Bottoms,Jeans +974,48,Stylish jacket but runs small,"The only thing i did not like about this jacket was that i could not find it in my size before it sold out! retailer, please bring back another iteration for spring!",5,1,0,General Petite,Jackets,Jackets +835,49,Beautiful top!,"This top is beautiful. soft and silky and hangs in a very flattering manner. i am usually a 4, but sized up to an 8 to get a little more length. it drapes really nicely. i wear it with skinny jeans and a long necklaces for a casual, put-together look or it can be dressed up easily, too. i'm not sure what the previous reviewer meant about the neckline. it lays perfectly on me. highly recommend.",5,1,1,General,Tops,Blouses +863,62,,This is a darling white top. the juxtaposition of the simple front and the beautiful lace back makes this a unique piece. definitely size down.,4,1,0,General,Tops,Knits +974,60,Stunning,This blazer is gorgeous. the brocade fabric is beautiful. the color is really a blueish purple/indigo. you can wear it with a black skirt/pants and even jeans. the only downside is that it runs about one size smaller than what it says it is.,4,1,1,General Petite,Jackets,Jackets +378,34,Love!!,"I love this swisuit. it is very well made and super flattering. i've received so many compliments on it. i have 3 little kids (4, 2.5, and 7 months) so it is perfect for chasing them around at the pool or beach. i am still working on losing the baby weight, so the rusching in front works well to hide my tummy. i am 5'2 and about 116lbs and the size 4 works well. i'm hoping it will go on sale so i can buy another one, but i imagine these will sell out quickly.",5,1,1,Initmates,Intimate,Swim +1028,49,Not for small people,"Cute in concept, so large in reality. i am 5'3"", size 24 in jeans. i was swimming in these. i mean the seat is huge and the length of the rise is super long. don't even try if you are a little person. long and lean, yes, would probably look great on you.",3,1,7,General,Bottoms,Jeans +1086,37,Cool design for summer,"I was able to try this on in store thanks to a return. it is a cool looking item and i thought the fit and aesthetic were spot on but the price made me leave it behind. even on sale, i this wasn't worth the price for me- the high-low hem and material combined exclude it as a work option for me. if this is something you can get mileage out of, i really do recommend it- well made, lovely colors, and nice style.",4,1,2,General,Dresses,Dresses +378,41,Believe the hype!,"I have been wearing tankinis for a long time and haven't worn a one piece in years. i'm 40 and, let's be honest, things don't look the same in a bathing suit as they did 20 years ago. this suit is very flattering - i'm not obese, but i do have a bit of a jelly roll in the stomach area and the combination of the polka dots and the ruching, as well as the construction of the suit itself with the side panels, really camouflages my stomach area. although there isn't underwire, which i prefer, i do f",5,1,10,Initmates,Intimate,Swim +974,36,Beautiful but too small...,"This jacket is absolutely beautiful. the color is a much deeper navy than it appears in the pictures, and the brocade with the contrasting lining is lovely. however, as another reviewer commented, the back across the shoulders is incredibly small. i ordered up from my normal 2 to a 4, and it was still too tight. there is no way i could even lift my arms over my head without ripping out the back of the jacket. i fear a 6 will be too big. this one is going back, sadly.",4,1,1,General Petite,Jackets,Jackets +378,47,Great fit--exactly as expected!,This is perfect if you are looking for comfort and style in the same bathing suit.,5,1,2,Initmates,Intimate,Swim +850,59,,,5,1,0,General Petite,Tops,Blouses +480,53,Great shorts,The fitted high waist with the wide legs make for a flattering and comfortable short. perfect length as well! dress up or down. love these shorts and wish there were more colors!,5,1,1,General,Bottoms,Shorts +1080,31,Runs large!,"Beautiful dress! i usually wear a size 4 regular, or a 6 petite (if the dress has sleeves). i ordered this in the 6p and it is too big. wish i could exchange it for a 4p, but it's no longer available.",4,1,1,General,Dresses,Dresses +1008,56,Cute skirt,Have only tried on but it is a very cute skirt and i think will be comfortable to wear. i love the texture of the material. i do wish it came in other colors. it is a little heavier material but not too much.,5,1,1,General,Bottoms,Skirts +1008,55,Versatile skirt,"I was originally looking for a denim skirt with a fit and flare shape. i then saw this skirt and decided it was much more versatile than denim. it is a mid weight skirt, lined, good length...just above the knee, and the swingy shape is perfect. i will wear it now with boots and a chunky sweater. when it warms up, flats and a short sleeve sweater will be cute! i ordered a small, but i really should have paid more attention to the other reviews because it does run large! i ordered another one in e",5,1,2,General,Bottoms,Skirts +864,42,Awww... so in love!,This is online exclusive so i ordered both sizes xs and s. it runs pretty large so i kept size xs. the material can be stretched. but i like the feeling of it and very comfortable to your skin. i am so happy receiving so many compliments wherever i go!!!,5,1,0,General Petite,Tops,Knits +909,62,Beautiful!,"I'm always nervous about length on ponchos, and this one was perfect (fit like the model and i am 5'7""). it is definitely a thin/semi-sheer knit, but it looks so classy and elegant with a black long sleeve under it and jeans. i love that this doesn't require dry cleaning and makes me look put-together for an easy day to night look. i'm 25 weeks pregnant and love that this works now and later :) very happy with this purchase!",4,1,2,General,Tops,Fine gauge +109,56,Love this!,I bought it in black and cream! great weight. soft fabric. beautiful lace.,5,1,0,Initmates,Intimate,Layering +109,39,I didn't realize this (used to) come in black...,"Looks really nice on teh pictures. i tried on thre cream as this was the only color availalbe at my store (tried on per stylist recommendation(. it is very thin, you can see ripples from my belly lol, but still fairly flattering. i ended up purchasing, but it is in my maybe pile for now... wil lwait before wearing it to be sure. can't wear a grey bar with it, that htin...",4,1,2,Initmates,Intimate,Layering +1099,42,Runs little big,"Beautiful dress. loved the navy and the low v neck in front and back. but i had to return for smaller size. i am 5'2"" 114 lbs. i ordered small and it was a little big and definitely long. i returned for an xs petite and am hoping it will fit perfectly!",4,1,0,General,Dresses,Dresses +1008,54,,"This skirt is a great staple. i somewhat agree with the first reviewer that it is a little big but not huge. i bought a m which is my regular size and i have to have it shorten the length, but that is typical for me since i am very short, but i liked the waist and didn't feel like it was too big and i have a very small waist. i don't like tight elastic at the waist and this sat very comfortably on me. nice heavy material for the winter.",4,1,1,General,Bottoms,Skirts +876,46,Fun sweatshirt,"I ordered this in size xl. it fits true to size. it does have a boat neckline which runs a little tight on me. but, everything else feels comfortable. i know this isn't a flattering style. horizontal stripes on my plus-sized, pear-shape isn't my favorite. but, i love the back. the knot isn't very comfortable to lean against. i just love the lace in the back that i wear it when running short errands where i don't have to lean back a lot. it does need a tank underneath or it's see-through in the b",5,1,0,General Petite,Tops,Knits +1086,23,Nice office dress,Comfy and different. almost like a sweater fabric.,4,1,0,General,Dresses,Dresses +1008,39,Love!,I bought the 0p and love this skirt! it works well dressed up for a night out or i even wore it to my nieces baptism...have received a ton of compliments each time i've worn it.,4,1,0,General,Bottoms,Skirts +109,32,Nice design,I purchased this top in the oatmeal/beige color. i love it. the material is very soft and it fits true to size. i would have purchased the black color too if it was still available.,5,1,0,Initmates,Intimate,Layering +826,39,Gorgeous top,"So happy with this top. i love the fabric, the colors and the flowy fit! definitely recommend!",5,1,0,General,Tops,Blouses +909,49,"Thin, short, dull","I'm not much for ponchos, but this one looked unique. it is thin, kind of a felt material - that was expected - but i was surprised to find it was shorter at waist than how it appears online,, and it was wide horizontally. the colors were more muted and the design was slightly off center unlike pic. the turtleneck was thick and itchy. it was a return.",3,0,0,General,Tops,Fine gauge +1080,29,Love it!,"I am 5'4, 125-130lbs, c34 bust. i ordered this dress for a wedding in size 2 and it was too big! exchanged for the size 0 and it fits perfectly. order 1 size down, ladies!",4,1,0,General,Dresses,Dresses +1083,62,Perfect summer dress,"I love this dress. it's adorable and great for summer with a unique style- it's a bit unusual with the high and slightly ruffled neck. it can easily be dressed up or worn more casually. this is the most flattering dress i've found this season (particularly around the stomach area). i'm 5""3' and took a petite size, which fit perfectly. this dress is a bit translucent, so skin-toned undergarments are a must.",5,1,2,General,Dresses,Dresses +826,34,Pretty top,This top is really pretty and flattering. i bought my usual size and its loose and flows without being too boxy. the pattern is beautiful and the band on the top stays up well.,4,1,1,General,Tops,Blouses +1099,52,Fantastically stunning but try before buying,"Like the other reviewer, i was super lucky to find this dress at my local stores. i tried both the medium and the small. usually at retailer, i wear a medium. however, this dress in a medium did not look flattering on me. it hung off my shoulders and the material was too loose in between the velvet tiers, making my bottom look bumpy. when i tried on the small, the dress fit and flattered me perfectly! by far the best dress i ever owned. i truly recommend you try this dress on before purchasing. fo",5,1,1,General,Dresses,Dresses +864,57,Fantabulous sleeves!,"I was pleasantly surprised when i received this top in the mail. i expected the top to be more of a tee shirt but it is very soft and more like a light sweater. i feel the sizing is true-to-size but the design is not meant to be close to the body. for me, the shoulders and length were perfect. + +this top is all about the sleeves. matador? perhaps, but it was the sleeves that attracted me to this sweater. i will wear with with a vest, skinny jeans and booties.",5,1,0,General Petite,Tops,Knits +864,42,Sleeves are too much,"I definitely like unique things, but the sleeves are way too much on this sweater. it's a shame because it is so soft and comfortable, but overall i felt it looked somewhat silly on me.",3,0,0,General Petite,Tops,Knits +909,49,Returned,"The fit was not flattering at all, but the worst part was the colors were really dull and not bright as shown in the online photos.",1,0,0,General,Tops,Fine gauge +1080,42,,Not sure what to think! i had great plans for this dress,3,0,8,General,Dresses,Dresses +826,31,Polyester,"Love the top design, not so much the fabric. i should've read the top was 100% polyester. returning and finding a better quality top.",3,0,3,General,Tops,Blouses +1099,43,Poor quality,"Unfortunately the dress is pulling apart after the first wash ( gentle hand wash cycle). also, there are no bra-straps holders, and my bra straps did show up a lot...",2,0,0,General,Dresses,Dresses +1080,29,Slip and lace overlay,"This dress is the best of all worlds: sophisticated, modern, and flattering. i was surprised that the ""dress"" is actually two separate pieces: a navy blue slip and a bold magenta lace overlay, which will be perfect going into fall and the holiday season. i had two babies back-to-back and am not back to my pre-baby shape, but i was pleased to see how flattering this dress was. i will be wearing it to a wedding in a couple of weeks, and i know i will feel comfortable and confident in it.",5,1,1,General,Dresses,Dresses +864,43,Yikes!,"I was so excited to get this top... and while it is soooo amazingly soft, i still could not keep it. i must admit that i am only 5'2"", so i do think this had quite a bit to do with my dislike of this... but i felt like a matador, which is definitely not what i was going for... maybe if your tall and lean, this would work. but for me, no way.",2,0,0,General Petite,Tops,Knits +909,53,Cute and lightweight,This is so cute and i love that it is not heavy or bulky.,5,1,1,General,Tops,Fine gauge +1080,30,Runs very large,I would have l loved to keep it but even the 0p was big. i have pretty broad muscular shoulders and back and i was swimming it. i wish retailer would stock more petites. i would repurchase if the 00p was available. they always sell out very very quickly and they never restock.,3,0,0,General,Dresses,Dresses +1080,38,Love this!,Love this dress! ordered a 0p and it fit perfectly.,5,1,0,General,Dresses,Dresses +909,50,Very thin material. nice colors,"I agree with the other reviewer about the great colors, but when i took this off the rack to try one, you can see through both layers of fabric. i thought, insulting quality, for the price. i imagine the holes would start after one wearing.",1,0,5,General,Tops,Fine gauge +1099,35,"Beautiful dress, i wish it came in petite","This is a beautiful dress (and my husband agrees). i'm 5'5"", 114lb and the xs was long on me and a bit baggy on top. i looked in to having it taken up, but i think that will be hard to do without damaging much of what's elegant about the dress. i hope that someone with more curves and a bit more height is able to enjoy this one.",5,1,12,General,Dresses,Dresses +1086,23,Comfy and flattering,"The fabric is more sweater-like than it appears in the image, but it makes the dress both cozy and comfortable. the skirt is a faux wrap that's secured at the waist by the tie. overall, the dress is high-quality, true to fit, and very flattering.",5,1,0,General,Dresses,Dresses +109,70,So pretty!,This turtleneck is already wrapped and it's soon going under the tree for me! i bought it when i saw it in the store and tried it on. it's fitted but not too tight or snug... just fitted and flattering. the lace cutout area is so flattering and unexpected. i love this top and think it will be a wardrobe staple - both for dress and casual. (i'll wash it carefully just in case. it seems well made but i'd hate to snag the lace.),5,1,0,Initmates,Intimate,Layering +480,41,High-waist + comfy,"I have vowed to only purchase high-waisted bottoms from here on out because they are just more in line with my style! these shorts did not disappoint. i love that they're versatile enough to wear with a cute top + wedges or with a t-shirt and flats. great find! (i got my normal sz. 25 which is usually a tight fit, these zipped up perfectly though!)",5,1,2,General,Bottoms,Shorts +864,79,Love it,This is such a cool top/sweater. i like simple designs with a twist and the sleeves add that. great with skinnies and heels,5,1,0,General Petite,Tops,Knits +1099,22,,"I do not think this dress runs large. i think it it is true to size. i am usually a size 10 and a 34dd. definitely curvy and tall at 5'8. the large was perfect for my bust. i ordered a med also, and it looks really narrow in the waist. length is below knees as pictured. i was finding that the zipper under left arm is very catchy. i even checked the med and it is worse. that concerns me, but love the dress so i am keeping the large. length is so hard. i hardly ever find a dress the hits a little",5,1,7,General,Dresses,Dresses +1080,31,,"I couldn't wait to try this dress on when i first saw it featured. it is stunning! i love the red lace over-layed with a blue slip. it adds a fun color contrast to the piece. i am usually a size 6 in retailer clothing and found this one comfortably true to size. this dress has a very renaissance chic quality which is very feminine, flirty and unique. a great find for fall/winter parties. i can't wait to wear it! + +if i had to find a fault with this dress, it's the lack of pockets. retailer d",4,1,4,General,Dresses,Dresses +1080,47,,"Beautiful and femine dress. it comes with a slip which is a big plus. it fits well and the sleeves are flowy and just at the right length. the only downside is that the bottom is not hem and being lace, it is delicate. you have to take care wearing this.",5,1,2,General,Dresses,Dresses +1008,45,Runs very big.,"This is a very nice, well made skirt but beware, it runs extremely large in size around the waist. i usually wear a m in most things, and i am going to return this skirt for an xs.",5,1,3,General,Bottoms,Skirts +480,47,Versatile shorts,"These shorts work well for shopping, running errands, or spending hours on dirty baseball bleachers. they are not too short and are true to size.",5,1,1,General,Bottoms,Shorts +642,67,Comfort and style in one pant!,"Love the fit....not so tight you can wear a short top with these, but not slouchy either. color goes with everything. for wrinkles, i hung them and sprayed with water...wrinkles gone. bought 2 pair for traveling.",5,1,1,Initmates,Intimate,Lounge +642,20,Just awesome,These joggers are amazing! they fit true to size if not a bit loose. i purchased my usual small (size 6). the seams are sewn perfectly and the fabric is dreamy. i wore these to work with sandals and was so comfy and appropriate all day in the hot weather. the color is a deep gray and goes with everything! the front panel makes them a bit more fitted and there is even back pockets!,5,1,6,Initmates,Intimate,Lounge +40,36,Natori t back,"It is a very pretty bra. light weight and beautiful lace. however, i have yet to find a t-back that does not make me feel like i am going to spill out. to me it ran small. i now know to get a 34 instead. i am working on losing weight, perhaps that might help with the fit?",3,1,1,Initmates,Intimate,Intimates +642,40,Throw on and go,"Really fun comfortable pants. i haven't worn them yet as its hot here but i can't wait. i tried them on with wedge sandals & a lacey bohemian top and they looked awesome. i also tried them on with white rocker booties and my vintage t that says ""italians do it better"" and a jean jacket...i'm loving the look & feel of them, bring on the cool autumn days.",5,1,1,Initmates,Intimate,Lounge +866,35,Not as flattering as in picture,"I waited impatiently for this item to come in stock, and when it did, i had it overnighted because i was so excited to receive it. it's hit or miss with me as far as retailer's mediums and larges, depending on the brand. i generally err on the side of caution, so i ordered the large. it looked cute out of the package, but when i put it on i was terribly disappointed. it flared way out at the bottom, and was not as fitted through the waist as on the model. this could have been the large sizing, but",3,0,7,General,Tops,Knits +1086,46,Covers sins,This is so flowing and perfect to hide any flaws.i adore it!,5,1,0,General,Dresses,Dresses +40,39,Pretty and feminine,"I do wish this came in a 30dd sizing, purchased he 32d and it fits, though the band is looser than desired. i am still keeping it. i love the back, will be great for some of my dresses ti used to wear strapless bras to wear. recommend.",5,1,0,Initmates,Intimate,Intimates +1086,39,How do you spell my-mu?,"I love the pattern adn color combo, but, wow,t really flatering on me. too much fabric. i felt like i was trying to hide wight gain or pregnancy or wearing a mumu. anyway, not for me, but others might toll wnat to try in case it was just me... too bad. + +length was decent in regulat size though, not too long. just too wide.",2,0,8,General,Dresses,Dresses +866,39,Between true to size and big,"True to size if we take into account how some brands are making things bigger for hte size; i ordered both the xxs and xs, and xxs was more flattering (years past, xxs would be way too snug, my size didn't change). pros: i actually thought the cut was flattering on me, the top is very cute. hte bummer for me is the fabric, the grey part is not as sift as i would have hoped and the ""shirt"" part can wrinkle (did in the package). length was nice for both sizes, so overall, i would go smaller for a",5,1,1,General,Tops,Knits +866,41,"Adorable, but not for me","This is an adorable top, but it just wasn't my style. i'm 40 and felt silly wearing a big bow, but if you can rock this look i'd recommend it. the top is a thin sweatshirt material, not a knit sweater or a thick sweatshirt fabric. it is a cotton rayon blend. the sweatshirt part is cropped, but the striped shirt details come to a good length. the shirt trim is 100% cotton. the fit was true to size. it is a bit loose, not overly fitted, but true to size. it nips in a bit at the waist and then flar",4,0,1,General,Tops,Knits +1094,47,Gorgeous but runs small,"As in the other review, this dress runs small. i'm usually an 8 but it was tight and short. i would love to exchange for a 10 but it's out of stock. the beading and the colors on this dress are breathtaking...i was so disappointed it didn't fit! the background is more taupe/nude than cream which i actually really like.",4,1,1,General,Dresses,Dresses +1035,30,Super cute!,"Okay, these are seriously the cutest black jeans i've ever put on my body. i can't say enough positive things about them. sure, the color bleeds a little (like the previous review stated), but they're black jeans. i haven't encountered a single pair of designer black jeans that don't have some color transfer. + +also, these jeans are really stretchy which makes them a dream to wear. + +here is my one complaint -- i am normally a size 29-30 depending upon brand, cut etc. i had to size down to a",5,1,0,General,Bottoms,Jeans +876,53,"Cheap, cheap, cheap.",This runs very small and has a beautiful design but it feels very cheap. material feels like thinnest possible t-shirt material out there. surprised with retailer on this one. back home to retailer it goes!,3,0,0,General Petite,Tops,Knits +642,41,,"These are super comfortable. i love feeling like i'm wearing pajamas in public but being properly dressed, although i wear them around the house often, too. i don't regret spending this much money on these pants, it was worth it since i'm wearing them so much.",5,1,1,Initmates,Intimate,Lounge +1028,53,In love!,"I bought the denim ch rocket high-rise crop last spring and had so much fun wearing them that i had to scoop up these babys when i saw black!! same fantastic fit only i had to size up so i assuming they run small in black? i could sleep in these they are this comfy and so flattering! i've got a flat behind and the placement of the pockets really give that lift i need in back! i'd buy one in every color if i could, so worth that price tag!!!",5,1,1,General,Bottoms,Jeans +1112,53,Uniquely terrific cape,"I stalked the website to get this in a pxxs. it runs a tad large. this is a beautiful garment. i receive many, many compliments every time i wear it. in fact, nearly everyone comments on it. it is surprisingly warm for a cape. i love that it works so well over my bulkier sweaters. as others have mentioned, the buttons are a little difficult, but i found that they got easier with multiple wearings. i disagree with the reviewer that feels the collar must be worn up. i actually like the collar down",5,1,1,General Petite,Jackets,Outerwear +866,52,"Stylish top, but neck opening too small!","I was so excited to get this top! i love the bow at the neck and the frill sleeves, so current. unfortunately, it was difficult for me to pull it over my head! the neck opening is too small, and there are no buttons. i have a pretty small head and very fine straight hair, so i can imagine that others will have a similar issue getting it on! + +i am keeping it because i love the style, but will need to alter the neck myself. the rest of the top fits just a bit loose. +i got the x-small and am a 3",3,0,0,General,Tops,Knits +876,49,Beautiful!,From the moment i saw this top i knew i had to have it. the colors of the embroidery are just so beautiful. it is even prettier in person than it is online!!,5,1,1,General Petite,Tops,Knits +866,23,So cute,"Love this top. it is a little big through the body/waist, i thought it would be a little more fitted but i still love it. the bow really makes the shirt",5,1,0,General,Tops,Knits +40,43,Functional beauty,"I own many of the natori feathers back close bras and decided to try the front close version for spring/summer tops and dresses. i purchased the yellow and got the matching hipsters panty. i no longer see the yellow available but you could find elsewhere or maybe retailer will bring this color back (it is lovely!)? for sizing, i tried my normal size (34b) and the cup size larger per other reviews. the 34c did end up fitting better so i also recommend going up a cup size. excited for warmer weather",5,1,0,Initmates,Intimate,Intimates +1086,43,Beautiful concept. failure in reality.,"Beautiful floral print and while i like the concept of this dress it was a total failure for me. where the knit meets the print hit me at the top of my bust, truly a disastrous look for a bustier figure since the fabric just drapes down and made me look much larger than i actually am. same with the arms, if the white knit had carried down to the elbow it would have elongated the arms instead of cutting them off mid biceps to make them look like giant hams. i'm 5'6"" and a classic size 8 and this",2,0,0,General,Dresses,Dresses +1094,50,"Vibrant colors, great dress","I loved the colors of this vibrant dress. the beading is fabulous. the dress does run small, i sized up one size. i wore it out and got a lot of compliments",5,1,0,General,Dresses,Dresses +866,36,Arms=super tight,"I was excited to nab this lovely because i am a sucker for a faux layered look. i am usually an xs or s, depending on the designer so i went with xs in this top based on reviews that it doesn't drape well. i barely got my arms into the sleeves. i thought maybe it was a mistake and i received a child's size? i eventually did get it on but barely got it back off. size up 1-2 for comfort if you have to have this girl. i was bummed my local retailer did not have a m for me to try. returned. for ref:",3,1,0,General,Tops,Knits +642,28,In love!,I would buy these in every color! they're incredibly soft and stylish and feel like wearing pj's in public!,5,1,4,Initmates,Intimate,Lounge +1162,41,Love,"As a mom, items in my wardrobe that are easy to throw on in a flash, comfortable to run around in with my kids, and still look like i took some time putting together my outfit are priceless. these fit the bill on all counts. they look fantastic with a pair of booties and a light, flowing top. + +these have to be the most comfortable joggers ever made.",5,1,0,Initmates,Intimate,Lounge +876,55,,This top makes me feel like the artist i am. it's so beautifully embroidered and detailed! i wear it with cords or jeans and it never gets boring. it was worth every penny!,5,1,1,General Petite,Tops,Knits +876,43,"Beautiful shirt, delicate care required","I love this shirt and have received compliments each time that i've worn it. there is a lot of visual interest from the vibrant colors, stitching and mesh panel on the back, and it is a great transitional piece from late summer to fall and into winter. my only complaint is that the threads pull easily, and there are no laundering instructions, so i had to log in to the website to learn that it was machine washable. i would definitely recommend using a lingerie bag, washing on delicate and not pu",4,1,2,General Petite,Tops,Knits +866,39,Meh,"I wanted to love this top, but had 2 major problems with it. first, it's not for short girls. i'm only 5' tall and it was a total mess on me proportion wise. the sleeves were way too long and the seam where the sweater and peplum meet hit right in the middle of my butt, which was terribly unflattering. second, the grey fabric was very thin and kinda cheap looking. no regrets on returning this one.",3,0,0,General,Tops,Knits +862,23,This product is great for all occasions,"I loved this top so much that i ended up purchasing it in another color. it works with so many different outfits, both casual and dressy. it is super comfortable and so soft. i would definitely recommend it!",5,1,0,General,Tops,Knits +564,53,Flapper-esque,Oh this is so much prettier in person! what you can't see from the pics is that the bottom flutes out a bit. it is quite charming. fits true to size.,5,1,4,General,Trend,Trend +904,66,Great drape!,I love how this long sweater drapes. it's soft -feels great on - and looks fabulous over leggings or skinnys!,5,1,0,General Petite,Tops,Fine gauge +822,26,,"It's a beautiful top, but not for the price. very thin material (not see-through though), i fear it may easily rip.",3,0,1,General Petite,Tops,Blouses +822,37,Annoying as heck but too pretty to return,"I fell in love with this top when i saw it online. i love tracy reese! the pattern is beautiful and the yellow is even brighter in person. i ordered a size small even though i normally wear an xs in all tops. for whatever reason, there was no xs offered, which is odd. the straps are adjustable which is good but unfortunately you absolutely cannot wear this top without fashion tape to keep the straps from falling off your shoulders. the straps slipped off my shoulders constantly. i wore a coobie",4,1,4,General Petite,Tops,Blouses +1074,59,Love love,"I love everything about this dress. the style, fit, colors and design of fabric, quality and feel of fabric. so happy and highly recommend!",5,1,1,General,Dresses,Dresses +862,66,Love the back scoop!,"I love this top. other reviewers have mentioned the softness of the material and the cozy, perfect for fall/perfect for the sf bay area ""winter"", but i would like to call out my favorite element of the top being the scoop in the back. it adds just a little bit of soft sexiness while being just right for a comfortable weekend sweater to a dressed up office appropriate shirt.",5,1,2,General,Tops,Knits +862,41,Super soft!,"This shirt is so soft and very flattering. i ordered the navy in a medium (5' 10"" 150 lbs). love how it scoops in the back.",5,1,0,General,Tops,Knits +850,31,Perfect fit and style for work or casual,"I get nervous shopping online, but this top fit perfectly - wasn't too long or too short. it has nice flow and dresses up or down depending on the look you're going for. i got the off-white with blue polka-dots and love it!",5,1,1,General,Tops,Blouses +758,61,Not as pictures,Material is strange. triangle top is funky. this is just not awesome in any way.,1,0,0,Initmates,Intimate,Intimates +850,48,Super sweet feminine top,"I'm 5'7"" with a 36 b bra size and a size 4 fit perfectly and could not have been more comfortable. one big plus for me is that it is virtually wrinkle free. i purchased the orange which is a lovely muted orange, not neon or too bright and received multiple compliments when i wore it to work the first time.",5,1,2,General,Tops,Blouses +862,31,Wear it all the time,"Bought the gray online just to try it and i've already worn it 3 times! very soft, love the flowiness, and the scoop in the back gives it a slightly less casual touch without losing comfort. the only concern i have is that it may pill up a little and not sure how it will hold up in the wash. i'm 5'5"", 135lbs, 34c, curvy/muscular frame and the size small was perfect (true to size).",5,1,10,General,Tops,Knits +904,23,Love the style!,"This top runs large. i am going to return the medium i ordered for a small. +i wish it came in different colors. i love the style.",3,1,2,General Petite,Tops,Fine gauge +850,43,Too short!,"This is such a cute design, but it's so short! it barely hits at my hips. you'd have to wear a layer under it to keep your tummy from being exposed. i'm also not thrilled with the buttons - i am a 34c bra size and the second button was gaping open on the size 4 top. i wish they'd been sewn shut - the neckline is so big, it's not like the buttons need to function. i got the burgundy with pink flowers and the colors are great. too bad it's so short and gapes open at the bust. going back.",3,0,19,General,Tops,Blouses +822,38,Love this!,"Such a pretty blouse, drapes nicely though it is a little on the large side. i got my usual medium and had to fix the straps a few times, but a fun summer top that makes you feel super feminine. maybe i could have sized down but i got it online on clearance so i didn't have the chance to try on another size. still love it!",4,1,0,General Petite,Tops,Blouses +850,61,So pretty!,"I ordered this in the burgundy and am in love with the print and color, very feminine without being over the top. +i'm 5'4"", 123lbs, 34a and the 2 fit perfect. the cut is drapey without being maternity like and i appreciate that's it not as long and full as many of the other tops out there, making it easier to wear with some pants or skirts. it even has little snaps to hold your bra strap in place, although i doubt i would use those. this top is appropriate for any age without looking too girly",5,1,1,General,Tops,Blouses +850,38,Beware of color,"I ordered this in both the white and navy colors - navy being what looks like an ivory background with navy spots. when i received the blouse, the background on the navy is actually a light grey/beige color that makes the whole top look kind of dingy. when ordering the navy version, be aware that the product images don't show the true background color on the top!",3,1,4,General,Tops,Blouses +740,36,Gorgeous and versatile,"Just received this in black and am in love! it has a stevie nicks vibe and i look forward to wearing it as a swimsuit cover up, dress with black slip underneath, and even with a black tank and skinny jeans! it really is beautiful. i am 5'3 and was worried it would be too long, but it just hits above ground with flats, and will work even better with wedges. + +it is big and will flatter a variety of sizes... even though i'm a 6/8 i don't feel like it's too overwhelming. + +my only concern is how",4,1,6,Initmates,Intimate,Swim +904,37,Beautiful top -- runs large!!,"I purchased this top in the xs and was so excited to receive it as i love the layered look snd the back of the sweater was so cute online! the sweater itself is lovely, but it was a tent on me! waaaaay too big for my 5'3"" frame. if you're a taller gal or someone who likes more volume in their swing tops, this is for you. unfortunately, i had to return it.",4,0,10,General Petite,Tops,Fine gauge +850,55,,,4,1,0,General,Tops,Blouses +1074,60,Just makes me feel happy!,"This is such a fun happy dress. i saw it in the store on the rack that has online returns so there was only one available to try on. it was a size 4 and i usually wear a 6 in retailer brands. i loved the dress and tried it anyway and it fit perfectly which is why i think it runs a bit large. ( for reference, i am 5'2"" and 140 lbs., hourglass shape but a bit fluffy in the tummy and upper arms.) it has an empire waistline and a zipper in the back. it is so light and airy and super comfortable. it ha",5,1,6,General,Dresses,Dresses +822,60,,"Lovely summer top, comfortable and cool for hot summer days. beautiful fabric, fits tts. highly recommend.",5,1,4,General Petite,Tops,Blouses +822,25,My favorite summer top!,"I just love the bright yellow floral pattern and the off the shoulder sleeves. the loose fit is really ideal for when i just want to throw something on and run out the door but look super cute at the same time. it runs a little large to give you the flowy look, but i like things flowy so this wasn't an issue for me but a plus!",5,1,0,General Petite,Tops,Blouses +850,53,So pretty in red,"I love this in the red motif....looks great with jeans or white. for maeve, this runs a little larger. at 5'8"" 130 lbs, i typically need a 6 to keep the front from pulling/gaping. the 6 in this was roomy and the 4 was also good. took the 6 for a little extra length. the shirt hits be about like the model in length, and while a little cropped, it won't show your stomach.",4,1,3,General,Tops,Blouses +862,50,Worth having in every color!,"Wow... great top, i have all the colors now. wow like them all. great weight cozy but not too heavy. nice that no pilling either! love it.",5,1,0,General,Tops,Knits +929,47,Pretty but heavy,"I love the look of this pullover, however, it was too short and heavy for my small frame with narrow shoulders. sleeves were too long as well.",3,1,1,General,Tops,Sweaters +1074,35,Completely amazing!,"I rarely buy anything at full price at retailer. but, after trying this dress on last weekend i had to buy it because i couldn't handle the thought of not having this dress in my life! i'm 5 feet tall and a size 12, so this was definitely a maxi on me. but, there is just enough room at the bottom that i can safely wear it with flats. i'm very pear-shaped and this dress is extremely flattering on me. even my husband agreed that i needed to buy it even though he hates my shopping/clothing add",5,1,17,General,Dresses,Dresses +441,35,Perfect,I purchased this top as a swim suit cover-up and it is perfect! i was counting on the model in the photo being tall so that the top would be longer on me and that was true. great product.,5,1,0,Initmates,Intimate,Swim +850,49,,,4,1,0,General,Tops,Blouses +850,39,Just sew the gap,"Being a 34d, i was nervous about the gaping between the top two buttons given the other reviews i read. they're right - it totally gaps even when standing still. so i took it to the tailor. they sewed the seam between the top two buttons. easy fix for a blouse that otherwise works. the color is great (i got the red one) and i like the fabric. i didn't think it hit awkwardly at the bottom seam. looks great with skinny white jeans.",5,1,2,General,Tops,Blouses +822,46,,,5,1,0,General Petite,Tops,Blouses +850,42,Beautiful swing top,"I'm glad i tried this on. i was drawn to the burgundy and pink floral print, but i wasn't so sure about the cut or style of the top. once it was on, however, i loved it. i don't much care for the a-line tops that remind me of maternity wear. they're cute on rail-thin, young girls, but not so much on mom-bod women in their 40s. this top is the exception. the details from the buttons to the thin pleats, the unique cut of the bust-line and the print make this top both lovely and flattering. i wore",5,1,5,General,Tops,Blouses +850,32,"Perfect fit, cute for summer","I'm a big fan of maeve products. still, even when i like something, i always prefer to try on in the store just to be certain. i decided to risk it this time and was so happy when this top came and it fit perfectly. i'm 5'3, 150 lbs but carry more weight on bottom so i ordered the 8. it's just right--cute and flowy. i'll probably get another one in a different color!",5,1,5,General,Tops,Blouses +862,54,"Soft, feminine and flowey",I bought this in wine in both the small and medium. both fit but am keeping the medium since it drapes better and looks like the photo with longer length in body and sleeves. light material is a great weight since heavy sweaters can be too hot in heated offices. style can be dressed up or down for office or weekend. have ordered the blue and grey. only concern is how well the fabric will launder.,4,1,1,General,Tops,Knits +1033,66,"Nice, but.....","I love almost everything about these jeans. color, fabric and rise are perfect. unfortunately, they bag at the knee on me. should have ordered a size smaller than my usual, but since i have worn them, i will keep them.",4,1,0,General,Bottoms,Jeans +850,57,Great colour!,Looking forward to wearing this on a beach holiday !,4,1,0,General,Tops,Blouses +1074,32,Yes!,"What a delight of a dress! i saw it online and it piqued my interest in person too. with only one size available, i was limited to try on a dress two sizes too small, so i've factored that in to my review. the dress is very light and would be see through without the attached slip. the length fell just above my ankle with the design allowing for a movement and flow to the bottom. the colors are vibrant in person, perhaps even more so than online. the fit seems to be true to size, though i have to",5,1,3,General,Dresses,Dresses +850,48,Sweet tank,"I got this in the green blue pink motif and i love it. really nice flow and not tent like at all. 5'8, 135, and in a size 6 i don't find this shows my stomach at all. it's really comfortable and i love the colors. i did get this in store at 15% off and i think it's a little pricy for a rayon shirt without the discount.",5,1,3,General Petite,Tops,Blouses +862,28,Very comfortable (and reversible),"Very comfortable sweater. tts. i felt the back was a little too low to wear to work, but it works perfectly reversed. tempted to buy it in another color.",5,1,1,General,Tops,Knits +850,64,Reallly cute,Loved this blouse but tried on size 8 (my size). waaaaaay too big. tried a 6 - still big - but the 4 was perfect. the only problem was that it did get a bit shorter in length but also ended up a little more fitted which i really liked.,4,1,0,General Petite,Tops,Blouses +850,30,Great color!,"This shirt was exactly what i was looking for. it's fitted at the top with just the right amount of swing. some of retailer's shirts can have too much swing for me, but this is just right. the color is great too!",5,1,0,General Petite,Tops,Blouses +862,20,Love this shirt,"I agree with other reviews; this shirt is more like a thin sweater. it is so soft. i was walking around the first time i wore it asking people to pet me. i just got it on sale and wore it twice this week already. i've gotten so many compliments. i bought this on sale in grey. i love it so much that i just bought a navy and burgundy one too. it runs slightly large, but i like my comfortable sweaters to fit large. definitely an important staple to any wardrobe.",5,1,1,General,Tops,Knits +850,64,Love the ikat print,"A while back the moss ikat print appealed to me online but sometimes these style tops look maternity on me so i passed up. well abt a month ago i spotted the 'moss' in the store & had to try it! it really is cute & love the print even more in person. the size 4 was fine but the armholes exposed the bra a little & i wondered if it wld be a little too short after washing. well, the size 6 was a little longer & a tad more flowy, & oddly the armholes covered the bra (the 4 didn't). i went w/ the siz",5,1,2,General Petite,Tops,Blouses +850,41,Cute summer tank!,"This is such a cute summer tank to wear with capris or shorts. it is loose fitting and while i normally prefer the petite sizing at 5'1, i got the 00 since i liked the longer length. i purchased the wine and navy colors and the neckline isn't too deep at all. love it!",5,1,8,General Petite,Tops,Blouses +862,42,Great sweater!,"Love this sweater. one of my favorite fall purchases by far. love how it hangs - especially the low back. it's simple, comfortable yet so chic at the same time. i bought the grey and goes great with skinny jeans and boots.",5,1,0,General,Tops,Knits +441,53,Great for the beach,"I wore this tunic everyday on vacation in hawaii. runs a little small, i'm usually a small and the x-small was just right. perfect length, short but not too short.",5,1,0,Initmates,Intimate,Swim +1074,35,,"This dress ran large on me. i am a 10, sometimes an 8 but went with the 10. it just hung on me, giving me no shape. the colors are pretty and the dress was nice, but i expected it to wow me more for the price. sending back, may try again if the next size makes it to sale.",5,1,2,General,Dresses,Dresses +975,64,Country classic,Perfect fall accessory and transitional piece for cooler days. classic red and black check with a fashion flair. great with jeans or dress it up with jewelry. a great find!,5,1,1,General,Jackets,Jackets +332,29,Love these!!,"I was hesitant to order these especially because they didn't have a petite since there's shipping and i thought i might have to return them. i know that most shorts from retailer run a little big (i'm usually a 4 but in retailer bottoms 0-2). i ordered the 2 regular since there were no petites. they're not too high waisted (i think they could have gone higher) but they're not low, either. love them. they're so fun and i can't wait to break them out.",5,1,0,General,Bottoms,Shorts +1081,35,Flattering,"I love this dress-i have it in the other color (black and white) but now i see this color scheme and i think i may actually like this one better. i love the wider stripes near the waistline which gives it a slimming appearance. the knotted look gives this dress a beachy feel which gets me in the mood for summertime. i love that the pattern is bold, but the color scheme allows this dress to still stay in the casual category and still be insanely flattering. i love that i could wear this dress eve",5,1,20,General,Dresses,Dresses +1081,63,,Versatile and fun dress. color is better in person than picture. looks great with jeans jacket for chilly moments. doesn't wrinkle on long airplane trip and rolls up teeny-tiny for packing!,5,1,0,General,Dresses,Dresses +850,39,Wrong button choice,I agree with the other reviewers - the fabric is beautiful - although i wish they would start making blouses again that didn't require you to wear a cami underneath because of sheerness. i mean for the price shouldn't it be lined or something. when did our expectations on fabric quality get so low. but i knew going in that it would be sheer so i can't really complain too much. plus they are so loosely sewn on that after 20 minutes and only half the buttons undone one fell off. i gave up at that,1,0,3,General Petite,Tops,Blouses +332,60,Fabulous print!,Love these shorts. such a pretty print!,5,1,0,General,Bottoms,Shorts +960,40,Unique cape,"I love the design of this cape. most capes are coats which can only be wore in the fall months here in the midwest since winter is too cold. this cape is more like a layering piece for indoors similar to a cardigan sweater, which i like. it can be wore in an office setting or out on the town with jeans. the constructions is well made as well",5,1,5,General,Jackets,Jackets +850,45,The buttons are a project...,"For a blouse this beautiful and whimsical, i just can't understand why the little button loops would need to be constructed to maintain security on fort knox. i patiently worked my way through the gauntlet of them because i was determined to try it on, but ultimately, i can't see doing this again for a pricey top that shouldn't require hard labor to access. the fabric is perfect; a beautiful cotton lawn without any sheen, which really brings out the contrast of colors. it is slightly see through",4,1,10,General Petite,Tops,Blouses +1081,44,,"This dress looks so beautiful on the model and i couldn't resist ordering it on-line. i have an athletic build -- read small hips -- straight. i'm 5'5' and 135 lbs. i was very disappointed when i put on. it's made for a curvy build. the dress was just too big, especially around the hips. i think this dress is probably beautiful on a curvier build!",3,1,7,General,Dresses,Dresses +1084,40,"Very thick & shapless, runs large","This dress didn't work for me at all. i'm 6ft tall, 160lb, i usually wear size l 8/10, but based on the reviews i ordered an m. the material of this dress is very soft and fuzzy, color is about the same as pictured, also length is appropriate. dress is very thick and warm, the fabric however has no stretch at all, dress is very specious and shapeless. there is allot of room everywhere except shoulders & sleeves, i thought that area was tight & snug which is strange because it runs large everywhe",1,0,11,General,Dresses,Dresses +882,45,,This shirt is comfortable and looks just like the picture. my only complaint is that it is quite boxy so not very flattering. the colors and details are great. the material is good quality and thick. if you are looking for a light t-shirt this is not for you,3,1,0,General,Tops,Knits +332,57,,,5,1,0,General,Bottoms,Shorts +1084,40,Can i select runs too large and runs too small?,Loved the pattern and colors of this dress. the material was extremely heavy. the shoulders and across the back was very small so that i couldn't lift my arms or put them out straight in front of me. but then the rest of the dress was huge and shapeless. sadly i had to return it.,3,0,1,General,Dresses,Dresses +882,48,Way too big,"So, ordered online. tried this on, boyfriend asked me if i was buying maternity clothes. +back it goes. super cute but huge.",2,0,0,General,Tops,Knits +1081,39,I knew i would love it,"I saw this in the store and wanted to try it on, but ran out of time (a week or so ago). i thought i would need petite, but surprise, it does not come in petite...so i started obsxessing that i had to try it on, whcich i did yesterday. mistake, because i love it, and even if it is not peite, it workedc (with heels), and online it already says only a few left, so my size will not make it to sale... so i bought it full price. + +cut is very flattering, and colors are great. also can be worn any seas",5,1,20,General,Dresses,Dresses +850,57,Lovely fabric & nicely tailored,"I love this blouse!! the shape is very flattering. the fabric is sheer, perfect for those hot summer days. i especially like the way the sleeves fall, just enough flounce. the buttons are a great detail. i didn't bother undoing them, just threw it over my head. looks great dressed up or down.",5,1,2,General Petite,Tops,Blouses +1081,27,,,5,1,0,General,Dresses,Dresses +1098,56,,"Very pretty color (slightly darker than on my computer), a bit like a light periwinkle/lavender... embroidery is lovely and the dress has a fresh spring-like quality. the style is a basic shift, but the color and details make up for the straight shape. great dress for the spring/summer months. good quality and was a nice deal on sale!",5,1,4,General,Dresses,Dresses +1086,31,,Way too big and had a granny like styling. was very excited but ultimately took it back.,2,0,1,General,Dresses,Dresses +850,40,,Beautiful top! had trouble with the buttons but i just slipped it over my head to avoid trying to get the buttons loose. it will look great with dark jeans and mules!,5,1,0,General Petite,Tops,Blouses +882,23,Cute shirt!,I bought this shirt because the reviews convinced me to. i bought it in the blue color and it's really cute. the design on the sleeves is also great and the back of the shirt looks cute too!,5,1,0,General,Tops,Knits +882,55,Love this cute top,I have this top in both the green and blue and live them both. the back of this top is so cute and makes the whole top.the embroidery is cute too.,5,1,0,General,Tops,Knits +966,35,Perfect fall duster,"I was hesitant to try this duster vest because i'm on the shorter side (5'1 110). i was very pleasantly surprised when i tried it on and love it! i ordered a xs petite and yes it is long (as it is supposed to be), but fitted enough that it looks very cute paired with skinny jeans and boots. the fleece lining was substantial and the outer wool was very soft. definitely a keeper!",5,1,3,General,Jackets,Jackets +332,34,Adore the fabric,"The fabric design of these shorts is so great. i don't adore the fit, they are a little short waisted for my long torso and the leg openings flare out more than i prefer and are about 1/2-1 inch longer than i would like but i can fix the inseam issue by hemming them. i may still pick them up just because i love the fabric so much.",4,1,1,General,Bottoms,Shorts +332,37,Love these shorts!,"Hi quality fabric and detail. fit really well. i'm 5.4, 120 and they will be a staple of my summer wardrobe.",5,1,0,General,Bottoms,Shorts +1084,46,Mod done modern,"I found this dress on a pretty good sale. i'd never pay full price. that said, it's very stylish. it reminds me of marni, mui mui or prada. as other posters have mentioned, it does run tight across the bust",4,1,0,General,Dresses,Dresses +966,38,Perfect transitional 3rd piece,"I love this little vest! such an easy outfit completer. just throw it on over jeans and a tank or long sleeves and voila...effortlessly chic! the colors pop and it's the perfect length. if you're on the fence with this one, definitely give it a try. you won't be disappointed!",5,1,0,General,Jackets,Jackets +1081,69,Perfect summer go-to,"This is the first thing i saw when i walked into retailer and immediately snagged it. it is so flattering and true to size. pretty colors, unusual styling. there is nothing about this beauty that i don't like!",5,1,1,General,Dresses,Dresses +1081,58,This dress is super flattering,"I saw this at my retailer store and hesitated to try it on as it looked so long. i'm only 5'1"", so it goes to above my ankles. it's like a midi dress on me, but i really love it! it is so flattering. there is a inner lining that smoothes out anything you don't want to show. it's the usual bailey 44 great quality. so slimming! hugs the booty in the right way! definitely worth the money!",5,1,25,General,Dresses,Dresses +882,65,Very cute,I love the tie dye and the accent stitching. back detail is fun!,5,1,0,General,Tops,Knits +850,39,"Beautiful, but can't be used.","This top is absolutely beautiful. the fabric is great, the cut is nice, etc... however, the buttons are too big for the button loops, which do not have any stretch. it took ten minutes to open the shirt to try it on. once i had it on, i left it unbuttoned. i returned it. (if you can't live without it, you could put smaller buttons on it.) too pricey for a non-functioning top. too bad.",2,0,2,General Petite,Tops,Blouses +966,36,Great piece!,I was wavering on this post purchase but then decided to wear it to a store opening event and double digit people asked me where i got it or commented that they liked it. i guess i made the right decision! the inside is a super soft gray jersey knit. wears great with black.,5,1,0,General,Jackets,Jackets +1081,38,,,5,1,0,General,Dresses,Dresses +882,62,,,5,1,0,General,Tops,Knits +882,28,Cute variation on a t shirt,"I just got this shirt the other day, and already love it. it fits like a basic tee, but the details on the sleeves and back are really cute. the shape is loose at the bottom, which makes this really comfortable. +my only complaint is it's a little tight across the back, but this does not hurt the overall fit and comfort of the top. this is a little thicker than a tee shirt too, so the quality feels nice.",4,1,10,General,Tops,Knits +332,33,,So cute. modest length. perfect with a flowy top and wedges for date night or t-shirt and flip flops for a little dressier daytime. love the colors,5,1,0,General,Bottoms,Shorts +882,66,Cute!,"This is a great tee. true to size, i ordered the large and it skims nicely over my hips. it has lovely quirky design features in the back and pinkish cross stitches on the sleeves and shoulders. i got the blue and it looks just like the pic. great weight for the rest of summer into fall. perfect addition to my casual life style.",5,1,13,General,Tops,Knits +850,51,Lovely blouse,"I'm not really sure what the big to-do about the buttons is all about - i was able to slip the blouse on over my head without undoing any of them with no problems. yes the buttons are difficult, but unless you're breastfeeding, they shouldn't be a deal breaker! the blouse is exactly what i was expecting. so pretty, feminine and flattering. also, though it is a tiny bit sheer, i plan to wear it with a nude bra and no cami.",5,1,0,General Petite,Tops,Blouses +1081,47,,"Very well made and would flatter the right body type. i sized up to a medium (normally size 6), but the front part where the wrap came together did not cover me. the only thing you could see was the grey liner. i'm not sure this one was not sewn incorrectly, or it ran terribly small. i have had success with bailey 44 in the past so maybe this one was just not for me. the quality of the fabric and design are well done.",4,1,0,General,Dresses,Dresses +1084,49,Cozy winter party dress,"I bought this shift dress for a ""black & plaid"" nye event, and it fit the bill perfectly for a cold winter's night. looks great with tights and boots, has pockets, and dresses up nicely. i like a good shift at this point in the holiday season -- leaves room for that last bit of seasonal eating and drinking. looking forward to wearing this through the winter months.",4,1,1,General,Dresses,Dresses +850,46,,A serious joke. i struggled with the buttons for a good 10 minutes and gave up after the 3rd button. i'm not sure what they were thinking.,1,0,5,General Petite,Tops,Blouses +82,63,Design too fluorescent,"I loved the lavender color on the cape. it was soft and comfortable. but the design on the front ruined it for me. it took me all of 1 minute to know it was going back. it looked like florescent bird feathers nothing wrong with that, it just wasn't my style at all. i was a bit disappointed as it would have been perfect for cool ca nights. it looked more subdued in the photo, it's not. i clicked i would recommend to others as it is nicely made and i guess just not my taste as far as the colors an",3,1,0,Initmates,Intimate,Lounge +82,70,Glorious,Beautiful and comfy!!!! love it!,5,1,0,Initmates,Intimate,Lounge +1081,57,Love love love,"I absolutely love this dress! it hugs your body without being clingy - very flattering. the fabric is so soft. i am 5'7"" - 120 lbs - and i usually take an xs or s - i got a m in this dress because of the style and fit and it was perfect.",5,1,3,General,Dresses,Dresses +1081,30,Amazing fit,"I gained a million pounds in the last couple years so now i usually stay away from anything clingy or stretchy. but this dress is genius. it somehow looks smooth over everything while clinging to the curves in all the right places and none of the wrong ones. i'm 5'5"", about 190 pounds, and have a proportionate hourglass shape. the m actually fit great. normally i'd wear a large but the stretch and flattering cut of the dress made the m look better. i would venture to guess most people could size",5,1,5,General,Dresses,Dresses +1081,46,Great summer dress,Perfect except a little snug around the hips. very forgiving silhouette.,5,1,0,General,Dresses,Dresses +1084,50,Material was fuzzy and itchy,"I got this dress and the material was super fuzzy and itchy. the prior reviews stated it was ""warm and cozy"" and not itchy at all, but i found it to be uncomfortably so. the dress was true to size for me and the length was good. i loved the plaid in the material just wished the material had been more soft and not rough. the material reminded me of mohair.",2,1,0,General,Dresses,Dresses +1081,29,,Loved this dress and was even happier to learn i could order it in petite!!,4,1,0,General,Dresses,Dresses +1081,38,Just odd,"I am absolutely shocked that so many people love this dress. maybe i should have sized up and reconsidered, but i still don't think it would have worked. the fabric is very soft but that's where it's qualities, for me, ended. the knot felt huge to me and definitely added unnecessary size to my already curvy hips. (for reference i'm 5'4"" and 125, hourglass. 32dd .) the cut at the bottom also felt very strange and restrictive to me, like i would have had to take smaller steps to walk around in it.",2,0,0,General,Dresses,Dresses +882,64,Just right,"I purchased the washed-out blue color. it is lovely with blue or black jeans. medium fit great. it is heavier cotton, and ever so slightly stretchy. this is not the kind of cotton to eventually come out of the dryer with tiny holes around the bottom of the tee. it is very comfortable. the embellishment on the sleeves is a nice touch, and i like the yoke with loop closure on the back. a fun addition to my casual wardrobe.",5,1,0,General,Tops,Knits +332,39,Not last year's cut,"I had a few pairs of these high-waisted beauties last year and love them so i was thrilled to see them in this adorable pattern which is even cuter in person. unfortunately, the cut is different. the sides, covered here by the model's hands, flare out a bit which is the function of the sectioning that the piping accentuates. the top is not the definitively high-wasted height from last year. i don't own anything else high-wasted, being an apple i'm generally a low-rider owing to a small hips/butt",3,0,3,General,Bottoms,Shorts +332,36,Perfection,"I love these shorts. love that the inseam is longer than 3"". the pattern is awesome, perfect for spring. my thighs are always going to be bigger than most, so i sized up 1 size like i do in all cartonnier pants. these are a must have for spring/summer!",5,1,3,General,Bottoms,Shorts +966,37,Cool vest,Just got this vest in my store yesterday and i was immediately drawn to it. the outside of the vest is this thick knit in an oatmeal color and a bright cobalt blue (even brighter than it appears online). the inside is a jersey knit fabric in grey. its an eye catcher for sure. i knew i needed to try it on. the vest is longer in length (like it appears in the photos). my only gripe is the fit. its great around the neck...nice and full. but i wish the body of the vest was larger. it fits very much,4,1,2,General,Jackets,Jackets +332,40,Springtime!,"I saw these shorts while leaving the store and immediately went back to the register to add them to my wardrobe. they fit me true to other cartionnier clothing. i'm 5'7"" 126 lbs and took a size 6. there is a significant amount of stretch in them, but do not grow as the day goes on. the colors are bright and fun without looking juvenile.",5,1,8,General,Bottoms,Shorts +1081,35,I sized down and the fit is perfect.,"Let me start by saying i was not in the market for a new dress. i bought this because it was retailer day and because in my seasoned experience as an online shopper this many positive reviews is rare so i'd better listen up. and because i really like the other bailey 44 dress i own. wow! i am glad i made the impulse decision to buy this. i love it, my husband loves it and it's comfy. for reference i did size down and went with a petite. had i not i think the dress would look on me like it does on",5,1,5,General Petite,Dresses,Dresses +1084,39,,This looked nothing like the picture on me. was long and very unflattering. belled out greatly at the bottom also. the material was thick which is why i give it three starts for quality. but overall awkward.,2,0,0,General,Dresses,Dresses +332,49,Love it,I love this short. i normally wear size 10 this short just bit larger than average 10 .it is not to short not to long just perfect.,5,1,0,General,Bottoms,Shorts +1084,62,,I love this dress. very comfortable. soft? absolutely!,5,1,2,General,Dresses,Dresses +1081,54,One more fan of this dress,"I was sorry to miss the original offering of this dress when it went on sale, so i jumped and ordered the gray/blue/green/black stripes when offered. i purchase almost all of my retailer clothes online, the dresses i am interested in are not generally offered in my local store, so there is always that moment of truth when i get to find out if something i fell in love with actually works for me... as everyone else has said, this dress is fabulous! i got my usual size 10. i am 5'5, small busted and",5,1,2,General Petite,Dresses,Dresses +1081,33,Amazing fit!!!,I never write reviews and i do a ton of online shopping but i had to write how amazing this dress is. so happy with this purchase. totally worth every penny! it fits like a dream- the rouching on the side is so pretty and i love the full coverage at the top. such he pretty colors too. perfect dress!!!,5,1,1,General Petite,Dresses,Dresses +850,36,Awsome,"Love this top.. very flattering and form figure.. i dont see the issue with the buttoms, has elastized back enough to pullover in and out. material is thin yes .. but not so see through. i'm so keeping this .",5,1,0,General Petite,Tops,Blouses +833,43,Great top!,This is a very stylish casual top. it fits great! i plan on wearing it with a long sleeve black tshirt underneath or black turtleneck. i absolutely love the crochet detail at the bottom!,4,1,0,General Petite,Tops,Blouses +1081,39,Preaching to the choir,"At the altar of bailey 44! all hail the 'gathered stripes dress' because it can do nothing wrong, especially to my body. i got the mp and this piece totally enhances what little i've got. so happy!",5,1,2,General Petite,Dresses,Dresses +1084,36,Pretty but not for me,"Wanted to love this dress. the fabric is very nice, pretty colors, great quality and style. it just didn't work for my body type. it would fit great on someone with narrower shoulders. probably want to size down.",4,1,0,General,Dresses,Dresses +1033,29,Great fit for everyday jeans,"Love these! i'm about 5'4, and they fit right at the ankle. the slit gives them a little more detail than regular jeans. i've worn them several times, and they haven't stretched out at all. perfect for spring.",5,1,7,General Petite,Bottoms,Jeans +1084,34,Don't lift your arms,Dress looks awesome when your arms are down like the model. but don't you dare lift your arms. i'm kinda tall and the dress barely covers my bum when arms are raised. keeping the dress but will have to keep my arms down ;) maybe?,3,1,3,General,Dresses,Dresses +1081,32,So soft,"I absolutely love this dress. it is super soft and flattering for my body type (petite and curvy). though, i wish it did come in petite, as the upper body part of the dress would fit a little better. but that didn't stop me from purchasing as that's an easy alteration. very flattering. love it.",5,1,10,General Petite,Dresses,Dresses +1084,19,,"I recommend this dress because it is beautiful, stylish and well made even though it did not work for me. i tried the small and extra small. the first - way too big, lengthwise (hit my knees) as well as in the shoulders - the latter to tight across the chest - not for me but worth a try. i am typically a small with usually never have a problem with length.",2,1,0,General,Dresses,Dresses +1033,39,Cute and stylish,"I have athletic calves from running, so i really struggle with straight/skinny jeans. but these fit me just fine (and don't look like jeggings). i think the slit helps. i have a 29"" inseam and these hit just above the ankle. great find - especially on sale.",5,1,0,General Petite,Bottoms,Jeans +1081,47,Adorable - better in person!,"I was lucky enough to hit retailer day in san diego and snagged this little number - it is truly better looking in person. the dress hugs in all the right places and actually fits tighter than the model shows, but the material is that soft, but stretchy and gently molds to the shape of your body. i was really surprised, i would have never tried this dress from the photo shown. so glad i went in - it's really adorable!",5,1,1,General Petite,Dresses,Dresses +1081,35,Hugs curves,"This is a very fitted dress. i love it and it is very comfortable but might only be appropriate for date night as it really hugs curves. there is a lining of the same material underneath that holds you in a little. i think it could go with a lot of different shoes and you could dress it up or down with jewelry, jacket, even a large sweater over the top. tts. i definitely would not recommend sizing down! i'm a 8/10 and the med is right for me.",5,1,0,General Petite,Dresses,Dresses +1081,51,,"Very flattering and comfortable - doesn't show undie lines. i am 5'7"" and it hit me at same spot as shown in photo. a keeper. can dress up or down. i typically wear a medium but typically steer away from body-con styles. l was perfect fit for me - form fitting but not skin tight.",4,1,0,General Petite,Dresses,Dresses +863,63,Not exactly what i expected.,"I ordered this top in 2 colors because i thought it would be great with leggings. i always love my retailer purchases, but this fell a little short. i think it may be the type fabric it is, but the way the back hangs so low on my frame (5'4"") it doesn't drape nicely over my leggings. the style of the top is very cute and maybe if i wanted it for skinny jeans, it would be ok. i returned them both to the store. + +this is one that would be better to try on first...",3,1,0,General,Tops,Knits +863,44,Love!,"I love wearing this so much! i wear it with leggings, jeans and i also like to pair it with is a long linen skirt that i have. i purchased it in plum and then went back for a second in moss. i got them before they went on sale for fear they'd be out of my size. i am very happy with my purchase! i highly recommend.",5,1,0,General,Tops,Knits +1070,22,Amazing!!,These leggings are perfect!! i normally struggle to find pants that are comfortable and flattering but these are exactly what i've been looking for. they are so versatile - they can be worn for a lazy day in or a night on the town. a new staple in my wardrobe!,5,1,1,General Petite,Bottoms,Pants +832,42,Perfect for summer,Sheer and lightweight. perfect for summer. great detail could not justify paying full price.,3,1,1,General,Tops,Blouses +1028,40,"Great jeans, runs large!",Great jeans. especially if you are on the shorter side (5 ft 3 for example). they run very large. i typically buy size 28/29 and bought a size 27 and had a tailor take in the waist a bit. i'm syked for these for fall!,5,1,1,General,Bottoms,Jeans +863,31,Staple,This tee has a loose fit. very comfortable. covers my backside with inches to spare. flattering fit although oversized. i'm a small-medium in most retailer tops. the small fit me nicely. 34dd 140lbs 5'6. bought it in olive and mustard. great for layering or weekends.,5,1,0,General,Tops,Knits +1072,42,"Beautiful, comfortable dress with slight fit issue","This dress does indeed run large like the other reviewers mentioned, but it also runs small in the shoulders. i'm 5'3"" and usually a size 6. the xs fit perfectly in the body, but was a little too small in the shoulders. i liked the dress enough to size up to a small to fit the shoulders, and then just had the sides taken in slightly. i did purchase this dress during the 20% off sale, so that helped justify the cost of alterations.",4,1,9,General,Dresses,Dresses +863,61,,"Soft fabric and long, flattering, perfect for leggings",5,1,0,General,Tops,Knits +1072,49,Too hot for summer in the south!,"I like my clothes loose fitting but even for me this ran large, i am 5'7 134b and medium fit in the shoulders but was too big overall",3,0,12,General,Dresses,Dresses +927,36,Even better in person,"I am pleasantly surprised by this purchase. i went back and forth on buy-in this, but ended up trying it out. so glad i did! it is very flattering and a very nice color. it fits perfectly and i look forward to wearing it with my distressed denim and boots for fall.",5,1,2,General Petite,Tops,Sweaters +828,39,How fun,"I love the cut of this top, it flares out nicely, and is very stylish. the blue is also soft on every skin tone! even my super pale skin :-) i like that it has some detail, not just the plain chambray/denim color. the xs was nice, i didn't try petite or xxs, just bought the xs in store... you can adjust how tight the fit is by tying the top and loose is nice in this style. the length was also good. (115 lbs, 30dd chest)",5,1,12,General,Tops,Blouses +1004,41,,,5,1,0,General Petite,Bottoms,Skirts +927,27,Summer sweater,"This is a thick material, but it is also airy. i got the white and don't have to worry about it being see through. it is a little boxy, but the hem hits a good length and doesn't bother me. really great for work in the summer and going between really hot and really cold temperatures. a good basic piece that can be dressed up or down that is definitely worth getting.",5,1,1,General Petite,Tops,Sweaters +863,55,Good fall/winter top for warmer climates,"Runs big, especially if you're on the shorter side - very long on my 5'3: frame, even in extra small. material was thinner than i'd hoped, doesn't look as smooth as on the model. this top will really only look good with leggings - pants with any detail or rear pockets will show through and detract from the look. i do like the sleeve length and rich colors for fall.",4,1,0,General,Tops,Knits +868,48,Nice blouse,"It's soft and feels nice on skin. +true to size and fits just fine. more form fitting than model picture.",4,1,1,General,Tops,Knits +1072,57,Not what i expected,"Although i love retailer, this product isn't the quality or presentation i expect from them. the dress arrived stuffed into a small plastic bag and was a crumpled mess. the fabric wasn't soft and fluid as i expected, but rather was stiff and a little scratchy. i purchased the ecru version, which was also slightly darker than the photo showed. i returned the dress and will keep looking.",1,0,3,General,Dresses,Dresses +927,37,Timeless top (but try on first),"I'm thrilled with this purchase, and looking forward to spending many years with this classic. on the subject of fit; i generally wear size medium for tops, but my broad shoulders occasionally have me in larges. since the thick-textured fabric is mostly cotton and minimal stretch (with a mix of linen), the larger size will provide more room and comfort. i'm honoring my ""tts"" choice for folks who prefer a more ""fitted"" look. overall this piece wears well!!",5,1,7,General Petite,Tops,Sweaters +1004,28,Beautiful fall skirt,I ordered the dark turquoise skirt and it fits perfectly! the materials is a very high quality corduroy and the color is beautiful. i really like the buttons on the front as well. gotta love warm skirts for colder climates!,5,1,0,General Petite,Bottoms,Skirts +863,32,Great fit and style,Love this shirt! so comfortable and the style is really flattering.,5,1,0,General,Tops,Knits +1072,39,??this,"Adorable & comfortable. i'm 5'3"", 115 lbs, and ordered an xs.",5,1,0,General,Dresses,Dresses +828,32,Favorite summer top!,"I absolutely love this top! it is soft, comfortable and perfectly flowy. this is definitely my favorite go to casual summer top.",5,1,3,General,Tops,Blouses +1070,33,Wow!,"I have never looked good in a legging. stretchy denim ""jeggings"" are usually the most i can get away with. but i am amazed how flattering these are! the fit is great (i got a m cause i'm small, but curvy in my hips/butt), the material is thick enough not to reveal too much, and the faux pocket in the back does a lot to make one feel less exposed. the length seems like it would be a great compromise between short and tall girls too -- i'm pretty short, but they aren't too long on me, there's a ve",5,1,19,General Petite,Bottoms,Pants +1004,59,Nice fall piece,"I just tried it on and it fits well, with no extra room. it seems like a nice fall piece to have in your wardrobe. the color leans more towards green. now i have to figure out what to put on top when i wear it! +i think it will be cute with boots.",4,1,0,General Petite,Bottoms,Skirts +1070,49,Structured leggings,"These are the best leggings i've ever worn. because they are structured and substantial, they are less casual than ordinary leggings. i bought them for a trip to paris, and i wore them many times. they're sleek, stylish, comfortable, and they go with everything!",5,1,0,General Petite,Bottoms,Pants +1004,47,Another winner!,Love this skirt! i purchased the chino skirt during the summer and wore it weekly. this skirt is the fall equivalent! flattering and true to size! there is some stretch to it so it's very comfortable. highly recommend!,5,1,2,General Petite,Bottoms,Skirts +927,59,Great with pilazzo pants!,"Nice chunky knit cotton tank with cut-out shoulders. sporty looking. armholes are the right size and bra doesn't show. no holes to see through, even in white. tts. i took my usual medium. falls to about hip bone, approx 20"" from shoulder. not tight, not baggy, but has a nice comfortable drape. i got in white. best to put it on before applying makeup. this goes great with black and white print pilazzo pants! love this top.",5,1,2,General Petite,Tops,Sweaters +1004,63,Cute fall skirt,"Bought this skirt in the light plum color. nice soft corduroy fabric. +it fit well. not too short. +will be cute this fall with a sweater and boots. +my only complaint. i wish it had pockets.",5,1,1,General Petite,Bottoms,Skirts +1004,79,Great fall/winter skirt,"Living in alaska means fall starts early and winter runs long. this great little skirt is perfect for casual fridays and weekends. i am 4'11 and ordered the petite 4, which is a little big around the waist, but could tuck a sweater or shirt in. absolutely love this skirt and thinking about purchasing in another color.",5,1,0,General Petite,Bottoms,Skirts +828,60,Summer time blues,Nice rendition of a summer halter that resembles denim. i bought my normal small but could have downsized to an xs. if your busty stay with your normal size as it is more tts. i like the blue plaid colors and the soft cotton material it's made of. it has a very nice flow with the cute peek a boo back neckline. the interior fabric lining is also a quite lovely chambray blue that nicely offsets the blue plaid.,5,1,4,General,Tops,Blouses +863,47,Comfy shirt,"This shirt is so pretty and casual however with a nice scarf, it can also be worn to a nicer restaurant. it also hides all my flaws. the only concern i have is, it's a bit thin material and not sure how long it will last. having said that, i love how the material looks and falls on my body. i love it so much i bought a white shirt as well as the lavender.",5,1,0,General,Tops,Knits +863,33,Great tee,"I bought this top on sale in the store and immediately came home and ordered it in another color online. i love the length even in the xs which isn't always the case. i am 5'9"" and a size 2 and the xs fits me perfect even after washing and drying a couple times. looks cute under sweaters and vests. can wear all year round. lightweight and good neckline.",5,1,0,General,Tops,Knits +863,71,A great basic for your closet!,"I bought the first one in the gold color, which i call mustard. i really love the high-low style and looks great when worn with a long necklace(s). when they went on sale, i bought two more, black and grey. i love that they are perfect for layering when it's cold, but that i can also wear them alone, in other seasons. thy ran a bit large for me, so i was able to purchase the small. i am small boned, but large in the bust. i'm also short, 5'2"", but they don't look too long, especially when i wear",5,1,0,General,Tops,Knits +1004,51,Great fall staple,"Great style and fit. i purchased the wine color, and i'm probably going to also get the other two. i typically wear a 10-12 in skirts, bought this in a 12 and it fits perfect. however, the fabric is super stretchy so a 10 may have been sufficient.",5,1,2,General Petite,Bottoms,Skirts +1004,58,Great skirt and yet....no pockets,"I bought this in the faded pink rose color (which is inexplicably called ""red motif"") and it is very comfortable yet not so stretchy as to fall off. i did size down from 12 to 10; there is a bit of puckering of the front placket but i believe, based on my history with pilcro, that there will be enough stretching out to even out that puckering. i wish there were pockets though i can see it may be a design decision. i love the faded inbetween color but the other colors are great and i can see gett",4,1,13,General Petite,Bottoms,Skirts +1072,52,"Green is beautiful color, fit too baggy and loose","I purchased the green dress in medium. i usually wear a medium. the fabric is pretty. shoulders fit nicely. sleeves were short in an odd length, but that is indeed pictured accurately. the body of the dress is very shapeless, billowy and wide, which made this appear far more like a nightgown than the photo shown. i considered altering the garment, by sewing in the sides from the armpit downward, but i decided to return the dress.",3,0,9,General,Dresses,Dresses +898,47,"Crazy long , but pretty","Love the material (more natural fiber than synthetic), the pattern, and the colors. also, it is cozy! the one con is that it is really big and crazy-long. so long, that it may be a show-stopper. on the fence about that.",5,1,0,General,Tops,Fine gauge +1004,50,,,5,1,0,General Petite,Bottoms,Skirts +1070,32,Fine,They were fine. i had hoped they'd be more like begging a though... more structure. they were very much just leggings and rather unflattering in the crotch area. they felt well made though. might work for someone else. not a bad legging.,4,1,1,General Petite,Bottoms,Pants +1072,49,Luisa swing dress,Love this dress! the color is gorgeous! what you don't see until you see the dress in person is the beautiful detail of the stitched flowers on the dress. i received so many compliments when i wore this dress. the sleeves are sheer and the material light weight. you can wear this dress year round. i love these kind of dresses! retailer knows how to do this right! love this store!,5,1,0,General,Dresses,Dresses +863,33,Great layering staple,"Great basic item. can be worn with leggings or pants, dressed up or down, or layered on. fit and color are true to size and picture.",4,1,0,General,Tops,Knits +868,42,Better than a basic,"Lovely feel to this almost-cowl neck turtleneck. it's quite thin, and has 3/4 length sleeves, so it won't keep you warm. but the fabric is soft, the ribbing is flattering, and the fit is loose without feeling frumpy. overall, a good staple that's a bit more interesting. the mauve-ish color looks great with grays.",4,1,2,General,Tops,Knits +1072,68,Super cute.,"I ordered this dress in the green ,and i love it. it does run a little large so i went down one size, which was ok by me!! it is super cute!!",5,1,0,General,Dresses,Dresses +927,54,Disappointing ...,This whole order was disappointing. the main piece i ordered was cancelled and the two remaining items - this sweater included were poorly made. there was a snag/thread hanging out in the middle of the front of the sweater - tried to tuck it in but it wouldn't stay so i'll be returning it.,2,0,2,General Petite,Tops,Sweaters +863,49,,Fits great and goes great under cardigans and jackets,5,1,0,General,Tops,Knits +927,46,Coral roll top sweater.,This sweater is thick and does cover the bra well. i did not find it to be well made. the ribbing seemed to be attached loosely in places. i am a size large with a b cup and a bit thicker through the middle to my middle age dismay. putting this sweater on in coral made me feel like a giant peach. for those with larger breasts it is likely more flattering.,2,0,0,General Petite,Tops,Sweaters +863,39,Awkward length in front,"It seems like most people love this tee, so you might as well. i returned it because i didn't like how the front hung. if the front was as long as the back, i would have kept it. or, if the front was short enough to wear with thick pants, untucked, i might have kept it (seems like this top would only look good with leggings or skirts). i do like the material, though. it's very thin and looks great in the shoulder and neck area. and i liked how the back of the shirt looked when i tried wearing it",3,0,0,General,Tops,Knits +832,51,"Really cute, with a great fit","This top is super cute, nice and light for the hot weather, with a tts fit. the model is wearing a light-colored bra, so it shows through. but, with a black bra, there is no problem.",5,1,1,General,Tops,Blouses +828,44,So cute,"This top is great! it looks much better in person. it's still kind of a faded look but it's not as light as shown here. also, the exact location of the plaid is different on each top. it runs just a tiny bit large but i liked it loose so took my normal size. there is another fabric lining the front in a very cute print. will be a nice, loose and cool top for summer. love the tie in the back as well.",5,1,0,General,Tops,Blouses +1004,32,,,5,1,0,General Petite,Bottoms,Skirts +927,44,Modern chic,"The tank is very structured, thick yet breathable, not see through. the coral is much brighter in person, and the white is more like a light cream color. the white is versatile for all seasons but i like the coral because it's such an unusual color. size regular xs is fitted on me (not too tight, not too loose, but over the course of the day, it stretches a little) and the hem falls at the upper hip (i'm 5'2"", 34b, 26 waist, 36 hips). my favorite part is the arm holes are not too big. the knit a",5,1,14,General Petite,Tops,Sweaters +1004,44,Hurray for corduroy,"I saw this skirt at my local retailer store and thought it was just another corduroy skirt until i got up close and personal. it feels so soft yet there is structure to the skirt, hurray for a bit of spandex for movement. the first button is different from the rest of the buttons and i appreciate that type of details. only the wine color was available in the store and it is shown just like on the photo. the skirt falls right above my knees and size regular 4 fit me very well (i'm 5'2"", 26 waist, 3",5,1,4,General Petite,Bottoms,Skirts +927,73,Neat sweater,I like this top. it fits nicely. the knit is thicker than i though it would be t but i still like it.,4,1,3,General Petite,Tops,Sweaters +927,47,Nice tank for summer!,"I purchased this tank in white. the material is very soft, but it is very thick, which i was surprised by, but i still like it. the fit is a little boxy. i have an xxsp and it fits a little large. hangs perfectly - just like the photo. i almost sent it back just because of the boxy look, but i think i make it work this summer. going to keep it!",4,1,3,General Petite,Tops,Sweaters +1072,35,Not at all what i expected.,"I ordered the ivory of this dress, expecting it to be a nice dress i could wear into my second trimester of pregnancy. instead, i received a dress that looks like a ugly, vintage-gone-wrong curtain of fabric. the 'ivory' is the color of yellowed newspapers. the fabric was cheap and had thread pieces sticking up all over the place. i would've been better off sewing myself a dress out of drapes a la gone with the wind or sound of music. the fit isn't that great, either. big and boxy. it could acco",1,0,6,General,Dresses,Dresses +832,42,Perfect summer top,"Light weight and cotton, great summer top. runs a little big but it suits me. i'm short and find the straps a drop loose because they're a fixed length meant for someone a little taller than 5'1"" me, but they are not falling down so far. also, if you look at the photo of the model wearing the top in black, you can see through the lace to the bra underneath. if you just wear a bra the same color as the top it's not at all noticeable. great piece for summer.",5,1,3,General,Tops,Blouses +1044,48,Comfortable white(ish) non-see-through pants,"Great pants, with a couple of quibbles. + +these pants have mini blue stripes in the fabric, so in real life they look a bit more blue than they do in the photos. these are not white pants, but they would fill the ""faded blue denim"" niche in your wardrobe. and also like faded blue denim, these pants are more opaque than most lightweight white pants are these days. you would not want to wear black underwear with these, but likewise your undergarment choice would not be immediately apparent (compa",4,1,14,General,Bottoms,Pants +1095,44,Unflattering and uncomfortable,"I saw this dress online and immediately fell in love with the bow design. purchased my typical size 4 but found it way too tight. i went to my local retailer to exchange it for the size 6. unfortunately, even the size 6 just did not fit right. moving around in the dress was challenging; the slightest shoulder/arm movement made the dress ride up. i was constantly pulling it down. the fabric is also quite stiff and heavy. overall, it's a cute dress but just not for me.",3,0,5,General,Dresses,Dresses +1095,27,Great classic dress,"Bought this dress online in my usual 0p for a special event and liked the cut but found the area around my stomach and the bottom of the open area on the back to be a bit large. this in the back created the potential problem of flapping open so that you could see down the back of the dress. surprisingly they had 00p as well so i reordered that one and love it. + +keep in mind that the style is very subdued and elegant especially from the front with a little bit of fun added to the back with the",5,1,1,General,Dresses,Dresses +1020,63,Disappointment,"The material is horrible, it's heavy and cheap. the skirt does not ""flow"" as it appears in the photo. instead the bottom part of the skirt just stands out like ruffles. am returning.",1,0,12,General,Bottoms,Skirts +818,44,Darling top,"I love this top! it's classic and classy but with a fun update being a henley. the gingham is super cute, the texture of the fabric is really nice and soft and thick (it is fully lined). i plan to layer it for winter and can't wait to pair it with white capris come spring. i bought my usual size xs and it's a little snug at the hips (where i'm more curvy) but perfect overall. highly recommend!",5,1,1,General,Tops,Blouses +1095,27,Super cute,"I love the classy design and the little surprise bow in the back. i am 5'2"" and about 107lbs, size 0 fit well. i was afraid it might be too short, but on me it is just above the knee. the bow on the back did not hide the bra strap on me, but the fabric is thick overall so that it can be worn without one. the fit is great once on, but it is a little hard to take off, since the zipper is not on the side so there is no relief in the arm/chest area. the color is beautiful, it's true to the pictures.",5,1,1,General,Dresses,Dresses +1020,40,,I bought the red and it is gorgeous. i love how it hangs - heavy but fluid. i usually wear a 4 but i bought a 6 and it was perfect.,5,1,0,General,Bottoms,Skirts +1095,49,A lot to love in this dress...,"The color on this dress is absolutely gorgeous, the fabric is great, and the bow detail in the back makes the dress much more interesting. i also quite liked the length. (i'm 5' 5"" and weigh about 132 and bought a 6 regular, which came to a couple of inches above my knee....not as short as it looks on the model.) overall style and aesthetic, i love. + +the problem with this dress is the fit. i tried it on in the store, starting with an 8. too big, no problem. tried the 6, still a bit large (gap",4,1,1,General,Dresses,Dresses +1095,37,Not for petite/short-waisted,"I purchased the dress with the bow-back shift in peach because i loved it's nautical theme pattern. when i recurve do the dress, i found it to be stiff and boxy. being a petite, short-waisted person, the top portion of the stress hung on my body awkwardly. my bra strap was showing in the back, and the dress needed to be pulled up about 2 inches to properly sit on my frame. +i returned the dress",2,0,0,General,Dresses,Dresses +1020,66,Cute skirt,"Skirt fit perfectly, nice construction - hidden zipper, full lining - nicely done. would love to see it in navy or black.",5,1,7,General,Bottoms,Skirts +1075,51,Very different,"This is one of those dresses that hides on the rack until you see it. and you think, hmmm- this is really interesting. and then you try it on. and all the ladies in the dressing room say ""whoa"" yep, this is that dress. much more fitted and flattering on my 5'9"" 150lb frame. it oddly kind of alludes to 70's caftans. very cool.",4,1,3,General Petite,Dresses,Dresses +1095,28,No good for larger busts,"The design of this dress is very cute, but if you have an average to large bust, don't even think about it. returned, unfortunately.",3,0,0,General,Dresses,Dresses +868,32,,"Best beachy summer tunic in the store. can be worn knotted at the hip or worn straight. can be worn over jeans, shorts, a bathing suit, take your pick. wear it with a tank/cami underneath or not. it works wither way. asymmetrical cut. great for us long-legged tall people. fabulous buy. only con is that it's a tad delicate. unfinished hem and loose-knit. will easily snag if you aren't mindful. i recommend hand wash, air dry.",5,1,0,General,Tops,Knits +1095,42,,"I loved this dress and after i got it on. as others mentioned, it is difficult to get it on. i wish that the bow snapped on and off. as i took the dress off the bow came off itself. unfortunately going to be returning the dress.",3,0,1,General,Dresses,Dresses +868,42,Fun summer top,"I really like this top! it's lightweight, great quality, and i've worn it for casual weekend outings and also dressed up for work.",5,1,0,General,Tops,Knits +1095,19,Pretty color and love the bow,"The material is different than i expected, but i like it a lot. the dress is extremely tight fitting, i will be returning it if i can't figure something out. i'm a 36d and wear a 6, very very restricting in the chest/shoulder area. unfortunately, it may just not be designed for my body type. getting the dress on was for sure one of my hardest workouts...and i crossfit. oh, and the bow does not come off at all, so good luck with that. the red color is gorgeous, i hope it works out.",4,1,0,General,Dresses,Dresses +868,48,Cute breezy tank for summer,"Love this tank! i ordered a small and it fits beautifully. i am 5'5"" and 140 lbs. . tank is sheer so i wear a cami underneath. length is quite long but i wear it with skinny white capris and it looks chic. my only concern is the raw hem edge. worried about how this will hold up with some washings. other than that i love it. i received many compliments when i wore it.",5,1,0,General,Tops,Knits +1095,39,Really wanted to make it work,"As soon as i saw this dress, i absolutely fell in love with it. when i got it, i noticed it was slightly small, but figured i could deal with it. i was packing for my vacation and tried it on again just last night and i noticed the bow is coming off the back. i could fix it, but honestly a dress shouldn't start falling apart before you even wear it. it's cut on the small side. wish i tried the larger one, but now it's sold out. and i was kind of disappointed there were no pockets as pictured. i",2,0,1,General,Dresses,Dresses +1095,55,Not the best,"I've rarely met a maeve item i didnt like. initially looking at this dress i thought it was suede but it's a structured cotton, making it a little more stiff than i'd like. i feel that making it suede would've been perfect for this dress. i am 5'2 140 lbs. usually a 4-6, i tried on the 6 and it was a great fit except for the chest area (34d) and the butt/hips area, making this dress a little less shift and a little baggy in the abdominal region. i then tried on the 8 and it was way too big all a",3,0,4,General,Dresses,Dresses +868,32,Great for layering!,"Even though this shirt is incredibly thin, i love that i can wear it multiple ways throughout the year. it can be used as a swimsuit coverup, with white jeans in the summer, over skinny jeans and with a sweater in the fall/winter. this is a great piece to own!",5,1,0,General,Tops,Knits +1095,29,Very stiff and unflattering,"I was hoping to wear this dress for an engagement photoshoot but it fit terribly. i'm 5'0, 98 lbs, 32a, and have some hips/butt. this dress (ordered xxs petite) hugged my hip/butt region tightly, which made the dress ride up and balloon out around my stomach and back. there was also too much extra room in the chest, so sizing up was out of the question. there is just way too much fabric and it's very stiff with no drape or shape whatsoever. i felt like i was wearing a cardboard box. the sleeves",3,1,7,General,Dresses,Dresses +1095,41,Don't buy this dress!! blue stained my dress!,On a hot summer 90 degree day the blue ink on the dress stained the dress and my new tory burch bag. i would never have expected that the blue print would bleed all over me and my new dress. great dress and such a wonderful fit...too bad its unwearable now.,1,0,0,General,Dresses,Dresses +349,49,Petal soft and pretty.,"This is a very comfortable bralette- the silk covers one's most sensitive parts, so it feels like you are wearing almost nothing. it's very pretty, too. i wear a 34b bra and the small fits me. it doesn't have a lot of support, but it's very comfortable for wearing at home or on errands. the cups are a little far apart, but it still works. if you're looking for something pretty and comfortable for casual wear, i would recommend this at the sale price.",5,1,3,Initmates,Intimate,Intimates +868,32,Unique but not orange,"This has a unique style and feel to the fabric which i like. however, the color is not orange as advertised. it's more or a reddish pink tone which was somewhat disappointing because orange is what i was looking for. i will still keep it to pair with other outfits in mind.",4,1,0,General,Tops,Knits +1095,22,"Great look, poor fit","I'm a consistent size 6 (ordered a small) with a pretty athletic build (wide shoulders and strong arms) and this dress simply did not fit with those proportions. the sleeves and back were far too tight. additionally, the bow did not cover my bra strap, likely because it isn't made for someone my height. had to return.",3,0,2,General,Dresses,Dresses +1095,24,Lovely but not for me,This dress is adorable but sadly not for me. i had to size up from my normal 6/8 to a 10 regular to make sure all my curves fit in comfortably. sadly i wasn't in love. the bow back hit me right to cover my bra but the fact mine didn't come with pockets as shown was a disappointment. it will be going back.,4,1,0,General,Dresses,Dresses +1078,51,Pretty for a narrow bohemian,"Not good for for an hourglass shape. lots and lots of pretty fabric, but the waist hits just where the hips widen--very bohemian (just no good for a figure 8). the sizing is generous. with both elastic and a zipper, there's room to go small if between sizes, be aware: the plunge at the front is wide and dramatic. i dropped the hangar in the dressing room and had to clutch fabric close to my reasonably-modest c-cup so as not to spill out. would perhaps work on a very narrow person who's completel",3,0,3,General Petite,Dresses,Dresses +1095,21,No pockets,"I was disappointed that this dress had no pockets, as every picture on this website suggests. otherwise, it is a great color and shape. still sad though...",3,1,10,General Petite,Dresses,Dresses +1095,32,"Close, but no cigar","I love the design of this dress, but found it to be an odd fit. the bow in back didn't cover my bra, and in fact, though the overall fit seemed right, the bust was tight unless i removed the bra (which is not an option in my book). i'm not large-chested, so this seemed like a design flaw to me.",3,0,0,General Petite,Dresses,Dresses +0,26,,,5,1,0,General,Jackets,Outerwear +1095,35,Love,"I bought this dress to wear to a rehearsal dinner. like other reviewers have said it is a true shift dress. i'm 5'2, 114lbs and the 0 fit me like a glove. it was a little hard to get the top on because the bow is not detachable (wish there was a snap or something) but once on i was in love. i may have to safety pin my bra to the bow so it doesn't show because it kept showing when i tried on. overall a very beautiful dress.",5,1,3,General Petite,Dresses,Dresses +1095,35,,Very cute dress for 5'5 or taller,5,1,0,General Petite,Dresses,Dresses +1095,31,Living out my vintage fantasies (and his),"I used to walk by this dress, thinking not much of it. but one day i realized it had a bow which im a complete sucker for. tried it on. fell in love. tried on the 4 and 6 - went with the 4, runs tts. if the dress is too large, the bow flips down and you can see too much gaping between your back and the dress. somewhere between a shift and a sheath is this silhouette. with my hair pinned up in a teased out japanese bun and great black heels, my valentine date fell for this dress too. he said it r",5,1,3,General Petite,Dresses,Dresses +818,52,Beautiful quality but runs quite small,I would say that this blouse runs 1-2 sizes too small. the fabric is unique - it's like gauze backed by fine netting - and the workmanship is excellent.,4,1,2,General,Tops,Blouses +818,36,Cute top,"Really cute top, normally order a s or xs. based on reviews, i ordered a m and good fit.",5,1,0,General,Tops,Blouses +1095,45,Weird fit,"I purchased this dress in my usual petite size 2. it fit me quite well for the most part, a bit tight around the armpit area but the major issue for me was with the front of the dress. there was a weird pocket of extra fabric under my chest area (i'm small chested). also, the bow across the back did not cover my bra strap (below the bow) which made me think i needed to size up. i'm not sure if that would have fixed the weird fit in the front but i just decided to return the dress in the end. the",3,1,14,General Petite,Dresses,Dresses +868,37,Scoop it up before its gone!,"This one arrived at my store and was sold out in two days! everyone loves it. the fabric is a woven material. very light, a little sheer but comfortable and really airy! it has a bit of weight to it, so it doesn't stick at all which is a win for me. the colors are perfectly neutral. this is as long as it looks in the photos. tunic length and i love it! i am 5'8 and it hits below my toosh. loved wearing this with leggings and jacket, or pairing it with denim. i adore it and i'm so glad i grabbed",5,1,0,General,Tops,Knits +868,52,Terrible quality cut,"Cut out design, no seems or hems. + very disappointed in retailer",1,0,0,General,Tops,Knits +1095,40,"Comfortable yet, beautiful fit",Love the bright color of this dress for spring and the loose fit and light material are very comfortable.,4,1,0,General Petite,Dresses,Dresses +1095,37,Love this dress,It is a perfect weight and length. it's a great dress. i did need to have the waist altered bc it is a straight fit.,4,1,0,General Petite,Dresses,Dresses +868,64,Cute but won't last,"Wore it a couple of times, it is cool and comfortable. washed it and the raw edges are starting to fray. i might get one or two more wears out of it. hand washed and hung dry.",2,0,0,General,Tops,Knits +868,48,I love the feel of this tunic!,"I was so excited to receive the playa tunic in the mail! i love the colors and the flowy bottom and raw edges. this tunic could be worn as a dress or with jeggings, jeans, or leggings. this is a wonderful fall transition piece!!",5,1,0,General,Tops,Knits +868,23,Lovely tunic,"I love this tunic! with that said the reason i only gave 4 stars over all was because the material wasn't what i was expecting. it's more like a thin sweater like material, with raw edge which normally is fine but i do worry about how long this will last. the design and colors are lovely! i have worn it with leggings and cropped jeans and it looks fantastic! great summer top/dress/tunic!",4,1,1,General,Tops,Knits +1020,61,"Lovely cut, fit & length","Great cut & fit! the length is perfect, too. i like the weight of the skirt overall. good for all seasons.",5,1,0,General,Bottoms,Skirts +1075,58,Bold!,"This dress has a much more flattering fit than appears! it has curves and fits tts. the fabric is fairly heavy, nice quality polyester and will be just the right weight for a nocal wedding. the back straps nicely cover foundations so even though it's open you don't need special undergarments. the color in the pic is spot on. don't be deceived by the ""turquoise"" moniker.",4,1,7,General Petite,Dresses,Dresses +868,38,,I am usually an xs but ordered an xxs in this because it looked like it ran large. glad i did. it's still roomy but doesn't look too big. could be a swim cover-up or would look cute with jeans. very pleased.,5,1,8,General,Tops,Knits +1078,50,Beautifully designed,"I love this dress but unfortunately it is so low plunge that i would have no occasion to use this dress, except for possibly a pool-side event. + +i am a modest c cup and could not get away with wearing this dress anywhere. + +if you do decide to purchase the dress, you can actually go a size down. i'm between a 4 and 6 and purchased the 4 and fits beautifully.",5,1,2,General Petite,Dresses,Dresses +1022,43,Love love love these jeans,They are as comfortable as sweat pants. i can wear these all day and then some and be comfy. i love the fit (skinny's can be hard for me - i have athletic thighs) and the length is fantastic. i want more pairs in different washes!!,5,1,1,General,Bottoms,Jeans +194,33,,I love this cozy jacket. i wanted a neutral colored jacket for casual outings. this does fit true to size. i am 5' 2'' and 105 pounds. i purchased the xs. you can cuff the sleeves to shorten the length of the arms. it has a piping so it doesn't look odd if cuffed. i do find most things/brands at retailer run big on me but not this item.,5,1,0,General Petite,Intimate,Lounge +1094,62,Cute for summer,This dress is comfortable and cute. i wear xs and this is true to size. the only thing i don't like is the neckline. it is very low cut. will have to wear a cami underneath.,5,1,12,General Petite,Dresses,Dresses +1089,33,Absolutely awful,"I was so excited to order this dress. i loved that it had a normal neck, nice length, and there wasn't a hole in the back. but this dress is just plain awful. the top fit tight across the bust, it flattened me out like i was wearing a too tight sports bra. then the back zipper puckered and bumped up like there is too much zipper for the fabric. i could not get the zipper to lay flat. the fabric is itchy and very cheap feeling. on top of it all the colors are much brighter than they appear in the",1,0,2,General,Dresses,Dresses +1022,60,Comfy stylish jeans,"I like these jeans because they are long enough to wear with any kind of shoe or boot and they have enough stretch to be comfy, but not too tight and they do not bag out :)",4,1,2,General,Bottoms,Jeans +194,27,Well made,This jacket looks great and is well made. the material is very lush however the body of the jacket runs big while the sleeves are tight.,3,0,0,General Petite,Intimate,Lounge +194,25,,I've been wearing this very comfortable and cute coat for 2 weeks. it is already tearing at the seams somehow. the quality of this is very poor.,2,0,1,General Petite,Intimate,Lounge +194,36,Love love love,"I purchased this jacket in the beige color from the black friday sale and have already worn it several times. it is comfortable, warm. and stylish. i love it so much i got it as christmas gift for a good friend and my sister. as for sizing, i do find saturday/sunday brand runs a little big. i typically wear medium or size 8 in tops and bought the jacket in a size small.",5,1,9,General Petite,Intimate,Lounge +860,63,,,1,0,0,General Petite,Tops,Knits +194,47,Love this jacket!,"Got the jacket in blue xs, i am 5-1, 110 lbs. fits great and wanted the beige one too! however the beige color ones have a totally different fit! the beige jackets run big and i was swimming in the xs, hence the mixed reviews from other peeps.",5,1,1,General Petite,Intimate,Lounge +1025,39,Cute but very tight,These run small. i normally wear 28 on ag stevie's and paige jeans so i ordered these in 28 and they were very tight. otherwise very well made and super cute but i had to return them.,3,0,2,General,Bottoms,Jeans +194,41,,"Love this jacket... perfect for replacing old hoodies with something a little more chic. incredibly soft, warm and cozy. love! color is true to picture and i found it runs true to size.",5,1,0,General Petite,Intimate,Lounge +873,64,,A nice comfy sweatshirt. i do wish it was just a tad longer; tends to run a little short and therefore looks a little boxy and i'm only 5'3! (i purchased the regular size not the petite)also the front wool insert is a little scratchy as it is not lined on the inside.,3,1,1,General Petite,Tops,Knits +1055,34,Not for me!,"Omg - i laughed so hard after i put these on. i was so excited to get them. i ordered them in my usual 4. i got a little suspicious when i pulled them out and noticed they had an elastic waist band. + +they were a little too small for me and even if they were not it's hard to imagine a world in which they didn't make me look like an oompa loompa or a hobbit! they are beautifully made and i kept looking at the picture and wondering why they don't look like that on me? i definitely have a curvier sh",3,0,1,General Petite,Bottoms,Pants +1089,62,Beautiful dress!,I actually bought this dress last year and they made another one in a similar dark floral which i also bought--because i love this dress so much! i wish they would make a different pattern--i'd buy a third one! the online picture does not do any justice to this dress. fits like a dream---soooo flattering. modest but not matronly at all. flows beautifully. i have received tons of compliments every single time i wear this dress. this dress is absolutely lovely. please make this in another pattern!,5,1,1,General,Dresses,Dresses +873,36,Cute sweatshirt,"I found this to be true to size (m fit me well - 5'7"", 140 lb, usually a size m for tops). it does have a straight fit, and it hits at the waist. i wouldn't call it cropped, but if you prefer longer tops you may want to layer. it looks cute with a collared shirt underneath, and you can pull the shirt's cuffs over the sweatshirt. the sleeves were a great length.",4,1,0,General Petite,Tops,Knits +194,46,Order your usual size!!,"So cute, warm and fashionable. i ordered a size down and it fit like i was in a sausage casing. gave that size to my daughter and i will order my usual size. the arms are small and the rest is true to size. love the quality softness and style of this. with a hood, for the win!",5,1,2,General Petite,Intimate,Lounge +194,33,Sizing depends on the comor,"I was a bit confused with all the reviews here. some said this runs small and others said it runs big +i decided to go to the store and try it. i'm 5'6 and 112 lbs. i'm usually size 2 or xs. +when i tried the blue one, xs is very tight on the arm and i would have to size up if i ever want to wear a sweater underneath. +however, when i tried the beige one, xs fits me well with some room for sweater. +either one is beautiful. great quality as you would expect from this brand.",5,1,0,General Petite,Intimate,Lounge +1089,21,Gorgeous classic,"I ordered this dress in a size 12. i'm 5'9'' and 180lb. i usually wear size 14 but the 12 fit beautifully. the material has a nice stretch to it so that i think it would still fit whether i gained or loss 10 lbs. when i pulled it out of the box i immediately thought it read ""grandma"", but was pleasantly surprised when i put it on. it is snug in the waist and flares out nicely from there. it hits me on the knee exactly as it does the model in the picture. i plan on wearing this maybe for christma",5,1,1,General,Dresses,Dresses +1094,26,This just might be the perfect dress,"I received this dress as a birthday gift and am completely in love with it! there are some things about it that i wish i'd known (but are by no means deal breakers!). first, you can kind of see this in the model shot, the keyhole neckline is not sewn shut at all - it's completely open. it didn't cause problems for me, but some women may not be comfortable with that. my dress didn't have any zippers and so was a pullover. the band that runs around the waist has little to no stretch, so you have t",5,1,5,General Petite,Dresses,Dresses +1053,57,Not as hoped,"I wished these fit a little better. unfortunately, they were a little tight in the thighs and if i didn't pull the waist of the pants up, i had sagging crotch and the pockets hung out. needless to say i made a return.",1,0,0,General Petite,Bottoms,Pants +871,19,Pretty...thin,"The shirt fits nice and has a classic cut. i would imagine this to look good on just about anyone. the shirt is soft and comfortable, but is rather thin and see through. the stitching is coming undone a little bit in some areas. wouldn't pay full price for it, but it's worth it on sale.",4,1,0,General,Tops,Knits +871,29,Returned,"Material is very thin, and although this is apparent in the design, i just didn't like the way the cuffed sleeves felt...",3,0,0,General,Tops,Knits +1089,45,,"Absolutely beautiful dress. i bought a size 8 and found it tts. i typically buy 6/8 in retailer dresses. the print is gorgeous (i am a sucker for anything with poppies) and i love the silky material; hugs your curves and flows nicely. i was worried the torso would be too long based on prior reviews, and because i am of short torso, but it fits well. would definitely recommend.",5,1,1,General,Dresses,Dresses +1022,27,,"I absolutely love the fit of these jeans! they are perfect in length and fit nicely on the hips. they are fitted and look nice with boots, but they do not feel tight at all because of the legging material. legging material, while comfortable, typically feels thin, but these do not and they are quite warm. + +the one major drawback is that the pants have pilled on the thighs. i have had these pants for about 1.5 months now and i have washed them (and have hang dried them) about 4 times. i have neve",3,1,2,General,Bottoms,Jeans +1089,56,Horrifying fabric,"I had a dress that felt like this in 1993. it jiggles, even if you don't. no amount of spanx can cure a dress jiggling of its own accord. the neckline that i had thought would be classic instead veered into frumpy. all in all i felt like it belonged in a discount store surrounded by polyester brethren.",2,0,7,General,Dresses,Dresses +194,43,,"I saw this coat online and loved it. the blue collar is great. the length is great, fits over bottom. it is quite warm. the arms are a little tight but they loosen up. the sale price plus 40% off was the ticket.",4,1,0,General Petite,Intimate,Lounge +896,64,Child-sized!!!!,"The small, zipped and laid flat, measures 16"" across at the bottom of the armholes, 11"" at the waist and 18"" from shoulder seam to bottom edge. it's too small for a size 0, and not by just a little! too bad, because it really is very pretty.",1,0,12,General,Tops,Fine gauge +1089,43,Pretty print,"I love this dress in the fact that it isn't low cut, isn't several inches above the knee - and bam it has sleeves! the length is gracious and the all over print flattering for a full figure. the skirt has a wonderful swing to it. i'm 5'4"" and 165, so i ordered the 12 regular. it does fit (and has stretch to the fabric), however it is too long in the torso on me. so much so that the low waist seam pops up and the zipper bumps out when i move around. i pulled up the top by an inch or two and the d",4,1,11,General,Dresses,Dresses +1094,23,,"I ordered this dress online and am struggling to decide about whether to keep it. the fabric is soft and comfortable and has a more casual look. the dress makes my boobs look awesome, but doesn't do much for the rest of my body. the main reason i'm on the fence about keeping it are that i'm not sure if i would wear it to work (the slit goes up fairly high and the fit draws attention to my bust). i think that i would love it for casual wear in the summer but i prefer to invest in dresses that are",4,1,8,General Petite,Dresses,Dresses +1094,35,Perfect maxi dress,"I love love love this dress! i am 5'4"" 117lbs and got an xs. it's just barely small on me but works great. it looks amazing and i can't always wear maxi dresses. they don't always work with my body type. this one is perfect. the color is gorgeous. i highly recommend this dress.",5,1,8,General Petite,Dresses,Dresses +194,61,Great jacket,"Just bought this jacket on sale and i love it! it's like a soft compfy sweatshirt , love the longer length. i feel like it runs pretty true to size. i usually buy an xs or small and the small fit fine. the sleeves are a tad long but not too bad, the model has them scrunched up but i find they are too snug to do that. i would highly recommend this jacket, just love the feel and look of it.",5,1,0,General Petite,Intimate,Lounge +1094,53,Super simple summer style,"I am so pleased with this midi dress; i've already worn and laundered this dress multiple times and i cannot express how comfortable and cute this dress is to wear. best of all, the fabric is just substantial enough that there are no posterior lumps or panty lines that are visible and the v-neck is just low enough to provide a subtle sexy dã©colletage. i love the length of this dress as i really dislike my knobby knees and this exposes enough leg from the sides and disguises the ugly knees for me",5,1,8,General Petite,Dresses,Dresses +1022,46,,It's way more distressed than it looks in the picture and that was a no for me.,2,0,0,General,Bottoms,Jeans +1094,37,Fits perfectly,"I'm small--5'1"" and 90 lbs--and the petite xxs fits really well. the fabric feels soft, too. i can't wait for warmer weather so i can wear this.",5,1,6,General Petite,Dresses,Dresses +1022,27,"My favorite pair of jeans, however, they get baggy","I went on a wild goose chase for these jeans, as they were sold out all around the country. i finally got the last pair from some store in the midwest! they are my favorite pair of jeans, they fit very well. however, for the price, they should not get loose and baggy after 1-2 wears. i hate that they need to be washed and dried so often so that they will fit properly. expensive jeans should not sag. i have abercrombie jeggings for a fraction of the price that never get loose, even after 20 wears",3,1,2,General,Bottoms,Jeans +1055,39,Adorable menswear look,"I was a little hesitant to buy these given that i am just 5'1"" - i didn't want to look like an extra from the set of ""newsies."" but these are very well made and tailored for a woman's body...the trousers actually accentuate the waist and the cropped leg works well for a petite frame. they are nicely lined and the wool blend is soft and not scratchy. i love them!",5,1,8,General Petite,Bottoms,Pants +1022,35,,,4,1,0,General,Bottoms,Jeans +1094,33,,"This dress is incredible soft and flattering. it sits higher on the waist than most other dresses i've received from retailer, which is actually great for me, as i have a short torso. i have been able to put it in with the regular wash cycle, which was a pleasant surprise. the only issue was with the overlapping fabric on the top; i ended up adding an extra stitch to avoid being totally exposed.",5,1,0,General Petite,Dresses,Dresses +194,52,Nice and cozy,I love this jacket and the price was a great bonus. it fit perfectly and is nice cozy and warm. well made and the beige color is great.,5,1,0,General Petite,Intimate,Lounge +1089,32,The best dress i own,"I splurged on this dress when it was first in stock a year ago and haven't regretted it for a minute. it is my go to dress for work, cocktails, and once, two weddings in one day! the print is gorgeous and the fabric is super comfortable. i love twirling in it as the dress has just enough stretch with a little flounce. the length is ladylike and the sleeves provide perfect coverage for my arms. the seam between the bodice and the skirt hits right at your natural waist and the look really flatters",5,1,5,General,Dresses,Dresses +194,32,,"You want to buy this! it's so comfy and stylish, yet casual. the sale price is amazing. if anything, the arms of the coat are a bit thin compared to the body of the coat. overall, it fits well though. i ordered an xs. i almost want to order the other color i love it so much. i will probably wear this year round but it will be especially cute in autumn!",5,1,0,General Petite,Intimate,Lounge +194,32,Runs big; comfy jacket!,"Like other reviewers, i did find that this jacket runs big. i am usually a size 2p or an xs and found an xxs in store and fits well. it'll be a great everyday-jacket!",5,1,0,General Petite,Intimate,Lounge +873,43,Versatile,I love this! i can dress it up with a sharp white button down and skirt or match it with grey leggings and boots for easy sunday's.,4,1,0,General Petite,Tops,Knits +1094,39,Hard to get,"This dress was hard for me to get on but once i did...my oh my. i am quite top heavy including my upper arms and back, so forcing the waistband over my shoulders made me panic a bit. after the struggle, it fits like a glove and skims over all my yucky parts! can't stop caressing the fabric and i hope my date (aka the hubs) feels the same. dress is not lined. i would've liked a soft mesh type lining similar to what plenty uses. petite was sold out so i bought medium regular and it skims the",5,1,0,General Petite,Dresses,Dresses +194,39,Fits tts & small & large,"This great casual jacket has a confusing fit but if you know what you want and understand the style, you can be surely happy with this plush & smooth stadium coat. first, the neutral/beige fits a little easier but it is definitely larger in the body compared to the navy. for both colors the shoulders and sleeves are fitted (perhaps a little tight) while the body has an a-line flare and subtle hi-lo hem. the neutral really flares out a lot while the blue is a gentle flare. if you have narrow shou",4,1,0,General Petite,Intimate,Lounge +1089,40,Not so sure about it,"I was really excited for this dress to come and hoped it would work well for a couple of holiday parties that i will be going to this season. i wasn't sure what i thought when trying it on, but i am thinking it will go back since i still am not super excited about it. for me the waistline was a bit high, and it had a bit of a frumpy feel. i love the floral pattern but overall it just wasn't amazing.",3,1,0,General,Dresses,Dresses +1022,40,,,5,1,0,General,Bottoms,Jeans +194,40,,,4,1,0,General Petite,Intimate,Lounge +194,39,"Great, runs small","I love this jacket, but in contrast to the other reviewers find it to run a little small. i usually wear a small at retailer and got a size medium as the small was a little tight under the armpits. this might be because i have a large chest, but i wanted more room in case i want to layer.",5,1,10,General Petite,Intimate,Lounge +1094,44,Great dress!,Great dress for vacations!,5,1,2,General Petite,Dresses,Dresses +1094,29,Pretty,"I love the style of this dress and the way it lays. looks nice on, just wish it were longer. i normally wear size small but had to return for a medium so that it was long enough.",4,1,1,General Petite,Dresses,Dresses +871,61,,"Poor quality, material looks much thinner and cheaper than pictured.",1,0,7,General,Tops,Knits +194,25,Cozy but huge,"This coat is really nice and cushy and warm, but it runs very very large. i am about 5'7"", 150 lbs and i ordered a medium and i probably should have ordered an xs because it was ginormous. i returned it in favor of another jacket. i'm sure i would have loved it if it were smaller but i found something i liked more in the interim. it's also a little bit darker in person. just a little bit, i was expected it to be more creme white and it was like a tan.",4,1,10,General Petite,Intimate,Lounge +1094,51,Better in person,I feel in love when i tried it on! i'm 5'2 an usually have to hem long dresses - but this on fits perfectly. it's full length on me -it's shorter on the model but i think it looks better full length. and it's a gorgeous burgundy. soft and comfortable. can't wait to wear it!,5,1,10,General Petite,Dresses,Dresses +862,26,Easy shirt to throw on,Love to just throw on this shirt with whatever accessories and skinny jeans. easy to wear and very comfortable,4,1,1,General Petite,Tops,Knits +862,23,"Gorgeous, more detail than shown","This tee is such a staple for me. i bought it in the green and it is such an elegant deep emerald. the perfect shade. the shirt has some detail that is not shown - there is stitching/seaming along the side in the front and back that give the shirt a good structure. the shirt also has a great weight to it. the knit is sort of a vertically ribbed knit but thicker than a classic ribbed tank top. the edges of the material are also open, almost-frayed edges. the additional detail on this shirt defini",5,1,0,General Petite,Tops,Knits +868,53,Cute spring/summer top,I was just at the store and purchased this cute top which runs tts for me. i wasn't expecting to find anything at the store but the beautiful lace and adorable tie at the front caught my eye so i bought the small which is my usual size at retailer (34d-27-35) and it fits perfectly. the material is a touch thin but that's okay with me since i don't want heavy clothes for the warmer months anyway. i also don't find this top particularly see through as it's black and will wear a full coverage bra wit,5,1,17,General,Tops,Knits +994,30,Scratchy!,I loved this skirt on the rack. but it was not lined and super scratchy when worn. i could barely wear it for the length it took to try it on. so sad. such a gorgeous skirt.,2,0,2,General,Bottoms,Skirts +1103,31,Awkward to wear,"This dress is beautiful, made with high-quality fabric, unique design and color, etc. +but it fits so weird! i am hourglass shaped so this dress seemed pretty ideal, but i just couldn't make it work. it was heavy and awkward feeling when on, the clasp at the breast would definitely not stay closed long, and would undoubtedly need replacing sooner than later. the sleeves are too fluttery and long. the dress itself is just too bulky and has too much of that beautiful fabric. maybe a really tall, s",3,0,0,General,Dresses,Dresses +1103,54,I feel like a princess...,"This is the most beautiful dress ever! i'm very short and petite with an hourglass figure and a rather large chest. this dress feels like it was made for me. i often have a difficult time finding a dress that flatters my figure and is slimming. i was shocked that it was even a little roomy in the chest. the cut is so beautiful and it is very well made. while the lining might be too short for tall girls, being only 5""1, the lining is perfect. the length in the back is just a teeny bit too long so",5,1,1,General,Dresses,Dresses +1103,41,"Gorgeous, gorgeous, gorgeous","The photo does not do this dress justice at all. it's a light lavender and extremely flattering. i'm athletic so have broader shoulders and hips, and this is an amazing fit for me. also, the front has a small button to make it more modest, which is closed in the photo of the model, but if you leave it open, va-va-va-voom! so, to summarize: beautiful spring lavender, fabulously feminine fit. get it!",5,1,7,General,Dresses,Dresses +1110,35,Adorable design. sizing off,"Adorable fall dress. but it runs huge -- i'm an hourglass 8 or 10 usually and the 6 fit best in the top and full skirt (36d, 30 waist) but sadly each size the sleeves get like 2 inches shorter. since these are blouses sleeves they look off. so sad bc this dress is adorable otherwise. if you always find sleeves too long for you, snap up this gem, this is for you!",4,0,0,General,Dresses,Dresses +929,30,Itchy and oversized,"I'm 5'5 and 130lbs and i was swimming in the small. the arms are very boxy, the sleeves too long, and and it just wasn't a flattering fit at all. the color and design on the front are both nice. the sweater is made in china and very, very itchy. i own wool sweaters and wear them with layers, but there was no way this was going to be comfortable. very disappointed, especially given the price, but perhaps that's why there are so many left at the end of the season and on sale. this one is going bac",2,0,2,General,Tops,Sweaters +994,58,,"So i was super excited to get this skirt, unfortunately it's not what i thought it would be. the color is much different then what pictured, it has bronze threading and the black on the picture is more gray in real life. the material isn't so great easier, i thought it would be thicker but instead it's pretty thin and wrinkles easy. the design is very cute and it is a flattering shape but the material is just too poor for me to give this a good rating. i wouldn't say it's itchy like the other re",3,0,0,General,Bottoms,Skirts +1110,51,Very flattering,I am 5'4 and a curvy girl and find this dress to be super flattering in fit and length. i got a size 14 which is my typical size. the slip is a little tight in the bust area for me so i find it easier to put on first and then the dress over which is possible because it snaps in and out at the shoulders. it arrived super wrinkled but i found tossing it in the dryer for a few min helped - is it dry clean which is slightly high maintenance but so cute it's worth it. great dress for transitioning in,5,1,1,General,Dresses,Dresses +868,64,"True to size-a bit big, but a great casual top","This is definitely again, a bit big. i'm usually a med, that is what i got, i could have gotten a small, but the arm holes might have been a tad tight then. i'm keeping the med, in case it shrinks, as it is part rayon, and rayon always shrinks if put in the washer. it is a great casual piece that will go with most anything. i love the tie, as you can then tighten the waist up a bit, or leave looser. the material is soft and not clingy. this is why i love a rayon blend. it hits me below my waist",4,1,0,General,Tops,Knits +868,31,Great detailing & comfy,Love how breezy this shirt is and adds unique texture & detailing to your outfit. the simple black color is a nice touch so the color does not compete with the detailing.,5,1,0,General,Tops,Knits +917,66,Great cardigan,"I ordered this because it looked to be a good fit for my casual lifestyle. and it doesn't disappoint! it's cozy, lightweight but warm, flows well and looks great tied or worn loose. i ordered my regular size large in the grey. it fits as shown, just a bit longer because i'm short. the color is more of a blue gray with white striations that are well placed. it's really striking for such a casual piece. very pretty. highly recommend.",4,1,0,General,Tops,Fine gauge +868,54,So cute,"Love this top, very flattering. love it so much, i actually wish it was a dress...a knit summer dress with a tie at the waist would be perfect. seems to run a little big, so if you're deciding between sizes, size down.",5,1,0,General,Tops,Knits +929,36,Too big,It was huge. material looked good but was too bulky. will be returning it.,2,0,1,General,Tops,Sweaters +929,40,Warm & heavy sweater,"This sweater runs true to size. i am 5'7' and 125 lbs and ordered the small. it has a beautiful mix of colors that reminds me of a creamsicle. it is a well made, heavy sweater that will definitely keep you warm. if you like the feel of wool, buy it. if not, pass on it.",3,1,4,General,Tops,Sweaters +1110,42,,"I loved this dress when i saw it in the store. the colors, weight, fabric. love. love. love. +unfortunately i have to agree with other reviewers, the pockets and the positing of the draw string made my hips look unflatteringly large. i tried on a size 0 petite, which is my usual size. all flowed nicely except for when you get to the pockets. truly disappointed as it was beautiful in every other way. but in the end, i had to pass.",2,0,0,General,Dresses,Dresses +1103,38,Feminine beauty,I wish it were easier to get in this dress. i'm 5'4 with a 36d and i couldn't get it on. it's so pretty though.,3,0,0,General,Dresses,Dresses +1103,34,Almost a winner for me -- almost,"I saw this on a mannequin at the store and was instantly drawn in by all the beautiful blue lace and the overall design. however, when i tried it on, i personally found a few things that just didn't work for me: +____________ +pros: +- blue lace is lovely throughout, nicely done. +- there's a little snap closure at the front of the dress where the fabric overlaps at the bra cups. i can only assume it's to make it easier to get the dress on. it's a nice little detail, although not sure if really",4,1,21,General,Dresses,Dresses +994,19,,"This skirt is so cute!! highly recommend, super easy to dress up or to dress down. it isn't shown as well in the picture but it has really intricate and pretty detailed stitching throughout the skirt. i have gotten so many compliments on it, random people have even stopped to tell me how much they like it and where they can find it. it runs a little small so i recommend buying it a size up. also, if you're taller like me it is a little short in the back. overall, a great buy!",4,1,1,General,Bottoms,Skirts +929,40,"Beautiful color, big sleeves","This sweater is beautiful but runs big. i got the xs (5'3"", 110lbs) and it's very roomy. i love the thickness, the color, the pockets, and even the roominess except for the sleeves. they are very long and very wide, which makes it look bulky. if sleeves were slimmer it would look like a cute intentionally oversized style- instead i look like a kid who borrowed a giant sweater. i think it would work better on a taller, slim person. but i still like it.",4,1,4,General,Tops,Sweaters +1035,53,Too tight in the leg area,"I don't think they are an easy fit cut, they are more like skinny jeans. as i was looking for something more relaxed i decided to return them. the quality of the material is good, the color is nice.",3,1,9,General,Bottoms,Jeans +1110,36,Love it,"I saw this online first and didn't care for it. then i saw it in-store and purchased it with little memory of the online experience, because the dress is that much better in person: it's (nearly) seasonless, looks great with fall boots, and has garnered many compliments. this is one of those that the internet can't really do justice to. i withhold a star for quality since the snap-in keeps for the slip were confusing (and maybe it's just the one i bought): one of the keeps was detached from the",5,1,0,General,Dresses,Dresses +868,41,Adorable!,"This top is very versatile. i wore it out to dinner with skinny jeans on a friday night, but it can easily transition to a saturday afternoon stroll around town top.",5,1,0,General,Tops,Knits +1110,39,,"I actually love this dress. the colors on the dark gray are mesmerizing. the design of the placket adds a special touch to the look. my issue is the way it looks on my body--not flattering. i already have a squarish apple (squarple?!) body and the cut emphasizes this more. i was hoping the fabric would hang on me the same way the ivory dress on the curly haired model does, so i sized up. all this did was make me look wider, especially at the shoulders. the drawstring at the elastic makes",3,1,7,General,Dresses,Dresses +466,23,"Beautiful, but beware! ""cheeky"" coverage","This is a great bikini bottom. i purchased this along with the matching top, and you can definitely tell a difference in the quality of the material for these. the print is beautiful, and the cut is very flattering - my only ""issue"" is a matter of personal preference - these were much ""cheekier"" on me than the photo of the model (i have a larger behind). for reference, i am usually a 6/8 28/29 in bottoms, and purchased a medium. sizing up would have only presented an issue in the waist fitting.",4,1,0,Initmates,Intimate,Swim +868,41,Great for shorter torsos ... not so much on me,"This top is lovely! i wanted so badly to make it work for me, but it is just too short and makes me look broad. i am 5' 11"" and have a long torso, and the keyhole where the tie is gapes (fixed that with two safety pins, though - and would have stitched it shut if i was keeping this lovely blouse). + +the fact that i cannot lift my arms up without flashing my tummy to the world didn't even deter me enough to return it. + +but the overall fit was just boxy on me. it made me look larger overall. fo",4,1,6,General Petite,Tops,Knits +868,55,Beautiful. unique. flattering,"I just received this top today, and as usual, retailer doesn't disappoint!! it's beautiful, runs a bit generous and has such pretty detail. i'm 5'2, 128 pounds and always wear a size small. this small fits well with just enough room to be a little generous around your waist. what a steal!! don't miss this perfect addition to any wardrobe.",5,1,0,General Petite,Tops,Knits +1110,55,,"This dress is a great weight and it's very comfortable. i'm glad i tried it on when i saw it in the store, i probably would have passed it by online. great detail, lined and not see-through! i'm 5'4 and 115lbs and it's still the 0 is still a little baggy, but that is the style of this dress!",4,1,0,General,Dresses,Dresses +868,57,Cute and different,This is a great little top. the tie sits right at the waist and loose enough to slide over top of pants or shorts. the detailing at neck and shoulders is very eye catching. i received several compliments when i wore it.,5,1,0,General Petite,Tops,Knits +1066,37,Surprisingly versatile,"I bought these on sale for a great price online without seeing in person and was pleased to find that they are very versatile, could be very casual or great for weekend shopping, etc . the purple is a great shade and the fit is great. i'm 135 pound for reference and i purchased the size 28.",5,1,0,General,Bottoms,Pants +1103,38,My dream dress,"Fits great. structured, but still comfy. figure flattering.",5,1,0,General,Dresses,Dresses +862,30,Not great for athletic frame,"I am 5' 7"" with an athletic build (small chest, small waist, muscular hips/thighs). this shirt just hangs on me and makes me look much larger than i am. i purchased a small, an extra small would be way too short. i could see how it works for fuller figured girls.",3,0,1,General,Tops,Knits +940,44,Hip sweater,So stylish. i have gotten tons of compliments on this sweater. i absolutely love it!,5,1,0,General,Tops,Sweaters +833,42,Lovely top,"I'm 5'1"" and this top was too long for me. it's pretty but expensive for what it is.",3,1,0,General,Tops,Blouses +984,41,,"Nice fit, very comfortable if you wear a thin shirt underneath.",5,1,0,General,Jackets,Jackets +833,75,Disappointing,"I ordered this because the reviews were outstanding. i am returning it. although the embroidery looks fine on screen, in person it looks cheap and tacky. moreover, the high ruffled neck goes a step too far -- into over-the-top victorian cutesy. +overpriced, to boot. +obviously, mine is a minority opinion.",2,0,5,General,Tops,Blouses +984,36,"Cute, casual, and well-made","I purchased this in purple, and agree with previous reviewers who've mentioned that it looks more casual in person. it can be dressed up with the right accessories, though, and the fabric is really excellent quality, soft and durable. i really like the contrasting plaid back, it's a subtle but fashionable detail.",5,1,0,General,Jackets,Jackets +984,44,,"I bought the delaney blazer in size 6 -- and i really like it. there are surprising design elements which make it a unique piece -- the buttons of the sleeves are mismatched, the back material is different from the front, it has some exposed seams. like others have said it does have a boxy fit -- which i don't mind. i also found it to be a bit short. if both of these things are fine for you, the blazer is a great addition to a casual-creative professional look.",4,1,0,General,Jackets,Jackets +833,47,Beautiful embroidery,"My 16 year-old daughter fell in love with this when we saw it in the store at the beginning of the summer, but it was much, much too expensive. when i saw it on sale at the end of the summer, i jumped on it. she loves it.",5,1,0,General,Tops,Blouses +382,23,,I am in love with this suit. i got the white floral. it's beautiful and classy. it feels like great quality too! i am going to get the black color too when it's back in stock. i am 5'9 and about 140lbs (32 dd) and i'm wearing a medium. i got both the small and medium and decided to keep the medium. it does have more fabric with the medium but the bigger size covers my chest and bigger bottom.,5,1,2,Initmates,Intimate,Swim +382,32,Beautiful suit,"I bought a suit similar to this last year, and loved it! this year i bought the pineapple print, and it is beautiful (size 2). it is classy/sexy. i have a long torso, so i like that it covers me better than most one piece swim suits i try on. i highly recommend this product!",5,1,0,Initmates,Intimate,Swim +833,56,Love the colorful embroidery,"A versatile, pretty and feminine addition to your closet. perfect with black pants, jeans, shorts...dress it up, dress it down.",5,1,1,General,Tops,Blouses +844,37,,Material was a tad rough for my liking. the color did nothing for my olive complexion. given the price of this shirt (even with 20% off) i don't think it's worth it. if i'm spending $100+ on a blouse i need to love it and i do not love this one...going back.,2,0,2,General,Tops,Blouses +833,39,Nice,"I ordered both colors in different sizes (xs and xxs) - petite were no longer available, so can't compare there. + +color: i liked the black better for these reasons: +1) color can be worn year-round, just add a nice jacket or cardigan, and ok for winter season. +2) ivory was kind of see-through + +size: xxs fit me better, the xs was wider and bigger arm holes. + +sadly, the xxs was the ivory, so i didn't keep either of them. + +ref: 115 lbs, 30dd, 26.5 in wasit",4,1,1,General,Tops,Blouses +833,39,Showstopper,"I added this to a stack of try-ons on my trip to retailer today not expecting to be impressed by this number but was blown away when i tried it on. 148 dollars is a little pricey but didn't hesitate it was so beautiful, i am a 32b and normally wear a size 6 and the small fit perfectly. can't wait to wear it on vacation in new orleans in a couple of weeks!",5,1,9,General,Tops,Blouses +873,46,Favorite casual hoodie,"I bought this earlier in the summer in size xl. i've gotten such good use out of it. the fit on me matches the model. the details of the crochet lace add such a nice touch. not your typical hoodie. but, just the same comfort. i've washed in cold in my machine & air dried. it hasn't shrunk. one of my favorite purchases. perfect for chilly weather or when you go into a/c areas. would love this in other colors. great piece!",5,1,0,General,Tops,Knits +984,56,So cool!!!!,I found this in your store and had to have it! i wore it on a date night and received more compliments than i can count!!!! the attention to detail makes this jacket special. i am 5 ft 5 inches 124lbs and a 4fits but a 6 is perfect for a sweater underneath. i actually went back a bought the other color. worth every penny.,5,1,1,General,Jackets,Jackets +833,39,So pretty!,"I wanted to get a couple tops for date nights that went well with skinny jeans and this hit the mark! as mentioned before, this top is translucent and thus would recommend using a cami as well. however the embroidery is beautiful. i have not had it cleaned yet and thus cannot comment on the durability. can't wait to wear it out.",4,1,2,General,Tops,Blouses +833,20,Simply pretty,This shirt is simply pretty. it's light and dresses up a distressed pair of jeans.,5,1,0,General,Tops,Blouses +382,33,,Gorgeous lace detail on this classic swimsuit. absolutely love it! fits true to size.,5,1,0,Initmates,Intimate,Swim +833,53,Beautiful wispy flowers,"This beautiful blouse first caught my eye in the store. i thought it was a bit pricey, but couldn't keep thinking about it. walked away without it! then i went online and it had gone on sale! i knew i had to have it. the large fit perfectly! i got so many compliments on the blouse. i wore it with skinny jeans and little boots! i couldn't be happier with this gorgeous blouse!",5,1,0,General,Tops,Blouses +833,42,,Loved this top! bought it during the recent promo and thought the sale price more fair. i sized up because i wanted a swing-ier silhouette and more room at the neckline. the top is impeccably made and the embroidery is sturdy. i did not find the top see-thru and am wearing it with a racer back black bra and have no issues.,4,1,5,General,Tops,Blouses +382,35,Perfect!,"I love this! great quality and flattering. i'd definitely agree that it runs true to size, as i had to size up because it was the only size available, and it is a little large in the stomach and rear, but it works well in the chest area. the v neck isn't too low and the sides provide good coverage up top. also, it covers the rear end well! material is nice and thick and the seams are good quality. super happy with this purchase, just wish it was in stock in the smaller size so it held me in more",5,1,5,Initmates,Intimate,Swim +382,30,,,5,1,0,Initmates,Intimate,Swim +833,67,Gorgeous,"This is a truly exquisite top. it looks exactly as it does online with cascades of delicately embroidered flowers on front and back and a slightly ruffled neck. very chic and versatile with skirts or pants. +material is very light and chiffon like and it's fully lined so no need for a cami. it's ever so slightly see-through in the sections that are not embroidered but only in very intense light. +it fits tts, i usually get petite sizes but i got a xxs regular because i wanted a longer length and",5,1,14,General,Tops,Blouses +833,35,Beautiful top!,"For sizing, i normally wear either xs or s in tops (i'm 5'7"", 130lbs, 34a). i tried on both, and both fit, but the arm holes were a little too tight on the xs. i ended up picking the s because it felt most comfortable. when i tried on the ivory color, i could see my blue bra underneath, and it would require a cami. the black didn't. i love the embroidered design and ruffled neck. i agree the buttons on the back of the neck are a tad difficult to button, but it's not a deterrent.",5,1,0,General,Tops,Blouses +833,42,"So-so, for the price","Pretty tank, embroidered flowers just as pictured. slightly see through so that a cami would be a must. for the price, should be more of a show stopper...unfortunately just average.",3,0,42,General,Tops,Blouses +382,32,,"I am absolutely in love with this bathing suit and i want it in every color possible! i bought the black one last year and wore it all summer as no other suit that i already owned could compare. i get compliments on it every where i go. it's flattering, comfy and it's a one piece that doesn't make me feel frumpy. buy this suit!",5,1,1,Initmates,Intimate,Swim +833,37,I love this shirt,Perfect fit. though it is shear i found that i could wear it without a cami. i absolutely recommend this shirt. it fits tts.,5,1,0,General,Tops,Blouses +445,33,Cartagena cover-up,"I love this cover-up. it does feel big when you first put it on, however, you just pull on the strap and tie it to your liking. i am 5'2, so this hits a little lower than on the model in the picture, but it does not drag on the floor. this is my new favorite cover-up. now, all i need is the sun!",4,1,3,Initmates,Intimate,Swim +382,37,Stunning!,"I got the floral suit and honestly, it's the most beautiful bathing suit i have ever owned. i have yet to wear it to the pool or beach so i don't know how it holds up when getting wet. i can see where other reviewers have said there is no support in the chest. it is padded which is nice, but no underwire or anything to hold the girls up. if you are big chested this could be an issue - not so much for me. :) looking forward to wearing this suit when the weather gets warmer!",5,1,0,Initmates,Intimate,Swim +844,66,Amazing,"Ordered this on a whim, in my normal size large, and so glad i did. it's just beautiful. the color is a tea stained white background with soft grey blue and cinnamon colored tiny flowers. it has a soft, fairy princess vibe that could be dressy or casual. the 3/4 sleeves have elastic. it just flows nicely over the body and isn't oversized like so many tops. there's a ruffle with a slight peplum in the back. it's a beauty.",5,1,9,General,Tops,Blouses +833,31,Amazing tank!,I absolutely love this tank. it goes great with a pair of jeans and cute booties. great colors and material. i love the nigh neck.,5,1,0,General,Tops,Blouses +984,39,Love this blazer!!!!!,The sleeves are small. should buy a larger size than usual. other than this is perfect.,5,1,0,General,Jackets,Jackets +940,74,Nice sweater.,Like it; but it's quite short and rather boxy. i'll keep it because it's pretty versatile.,3,1,0,General,Tops,Sweaters +833,60,Embroidered tank,I bought this top for my sister's birthday so the review is based on her opinion. she loved it and told me the embroidery was beautiful. she said it was tts. she also stated that the blouse was so versatile and could be worn dressed up or down.,5,1,1,General,Tops,Blouses +833,61,Love it!,Love the look. love the fit for both professional and casual looks!!,5,1,1,General,Tops,Blouses +382,37,Gorgeous bathing suit!,"Such a beautiful pattern - i think you could wear it with a skirt and it wouldn't even read as a bathing suit. love the lacy pattern in front. great fit. i bought a medium, when i usually wear a small in retailer. it fits a little loose, so i'd probably buy a small if i bought another one, but it all depends on how you like your suits to fit.",5,1,1,Initmates,Intimate,Swim +833,38,Beautiful blouse; unfinished threads to sew,"I'm an xl in retailer tops, and the xl in this blouse fit wonderfully. i bought the blouse in black, but will also probably purchase it in the cream. the blouse is made very nicely, however i had to deal with about 6 embroidered pieces that were not knotted. i had to take a needle, and thread the loose pieces to the back of the blouse and then knot them in with the rest of the embroidery. some of the individual flowers just came out entirely. however, this is such a stunning blouse and i feel so g",5,1,0,General,Tops,Blouses +833,51,O.m.g. soooo beautiful,"I saw this top at my local retailer and instantly fell in love. i didn't even try it on first because i just ""knew"". when i finally got home and tried it on, it didn't disappoint. ultra feminine and sexy at the same time. the delicate high neck, coupled with the exposed cut in shoulders really sold this for me. then, you come to appreciate the beautiful sewn in flowers. loved this one....so much prettier in person than online.",5,1,0,General,Tops,Blouses +940,36,,It is a really cute sweater. i thought it would be a little longer based on the picture. on me it hits at my waist but i am still okay with it. the design is unique and i am happy with the purchase.,4,1,0,General,Tops,Sweaters +984,27,Wanted to love,"Delaine blazer so many little details with a slight bit of ruggedness. loved the unmatched buttons, checkered back and fraying that gave this piece personality making it appear less stuffy. easyily dress it up or down, that being said it seems to run true to size except the arms and shoulders were very tight. i would consider going up a size if more of an athletic build. ordered a 4 but i think a 6 would have been perfect!",3,1,0,General,Jackets,Jackets +382,23,Perfect swimsuit,"This swimsuit is amazing! i am 5' 4"" and about 135 lbs, and ordered a small. however, i am returning it for an extra small (just a personal preference as i like my swimsuits a bit snug so they don't get loose when wet). the fabric is very forgiving and stretchy (which is why i'm exchanging for a smaller size - i can slide the size small up my legs with ease), but the fabric is also very sturdy (so it seems, i haven't worn it in the water yet obviously). overall, very cute and surprisingly flatte",5,1,1,Initmates,Intimate,Swim +833,56,Not like the picture,The neckline is very tight and itchy. the arm holes are deeply cut. the length is not as long in person as it is on the model in the picture. it's short-waisted. it's too bad because the embroidery is very pretty.,1,0,2,General,Tops,Blouses +833,51,Sotra tank,"Nice quality, beautiful colors. so nice i bought another as a gift.",5,1,0,General,Tops,Blouses +833,65,Love it!,"I bought this in june on a sale and am so glad that i did. it''s so pretty and classy. the neck has stretch so it's not tight at all. it's styled like a swing top, but it really isn't. there isn't much of a fabric abundance to this, although it is loose (and cool.) i bought an xl, which is my usual size and the fit is fine. + +there are 2 layers of fabric. i do not think a cami is needed at all. + +i bought this in black and the floral embroidery just pops! i'm just not a white fan due to cleani",5,1,0,General,Tops,Blouses +382,25,This bathing suit is a dream.,"Simply perfect. i ordered the white floral maillot in a large (5'6""-ish, 145 pounds) and it is so comfortable and flattering that i do not want to take it off. the colors are so vibrant and accurate, which is great considering not all internet item photos are the same in person. i do recommend ordering a size up -- the medium was snug, but definitely remember that your suit shrinks when wet. now that they have a new print -- hello fish!! -- i really really want another!",5,1,1,Initmates,Intimate,Swim +382,47,Extremely pretty swimsuit,"Extremely pretty swimsuit, gorgeous cut in the front with the lace and the floral print, very flattering to hourglass shapes. coverage across rear end is a bit less than i would prefer, but it's so very pretty that i'm keeping it. several comments from friends that this could be worn as a tank top for regular wear it is so pretty.",4,1,0,Initmates,Intimate,Swim +833,39,Sexy shirt,This top is feminine and sexy. it can be dressed up or dressed down. i love it and will hold onto it forever.,4,1,0,General,Tops,Blouses +984,43,Fun twist on a versatile piece,"I love this blazer so much i bought it in both colors. i'm 5'7"", 120 pounds and bought the size 4 which is perfect. initially when i tried it on in the store i thought i needed the 6 because it was a little tight in the arms and shoulders. the 6 was too boxy on me and i'm so glad i went with the 4. it stretched, especially the arms, and fits perfect. i love how i can dress this down (with a graphic tee and jeans) or dress up (with a blouse and cropped black pants).",5,1,4,General,Jackets,Jackets +833,41,Sheer but pretty,"I'm pretty tan and i always have to be careful with white tops or pants. i love the embroidery detail but this top is practically see-through for me. it is double-lined, but i could still see my bra. very pretty though and i was disappointed that it didn't work for me.",3,0,0,General,Tops,Blouses +833,20,Beautiful but doesn't hold up well,"Beautiful. got several compliments when wearing it. does not hold up with washes though. threads unraveling everywhere. i am thinking of returning it for this reason. fits true to size. i am 5'4"" 118 lbs, xs fit. i am smaller on top.",3,0,0,General,Tops,Blouses +984,32,Several ways to wear,"I like how this jacket is very versatile. you can wear it to work, or play. it does have interesting detail on it, i kept it based on the price and those details. i have the olive color. the arms are a little tight.",3,1,0,General,Jackets,Jackets +833,34,Itchy,"Very pretty top, but like the other reviewers said?the neck is very itchy. i live in florida and i don't think i can wear this during the summer unless i get the neck lined. i got an xxs p which was a little shorter than i would have liked, so i am returning for xxs.",4,1,0,General,Tops,Blouses +382,19,"Pretty pattern, lacking in support","I love the way that this suit looked, however i found that it was lacking in support. i was disappointed to discover upon trying it on, that it just does not cover my butt. it fit elsewhere just fine, but the slim cut up the sides left it a little too revealing for my liking. in addition i found the top to be awkwardly fitting around the chest area. i am a 34b and ordered a small and it seemed to be too baggy at the top.",3,0,2,Initmates,Intimate,Swim +833,44,,"This top is absolutely adorable, i cannot express how much i love it. paired with skinny jeans and a bright cardi for the spring, this can easily transition into summer. it's actually cuter irl than in the picture. if you are on the fence about this, get it! you won't regret it.",5,1,4,General,Tops,Blouses +984,47,Basic with a twist,"Wasn't too sure about this jacket when i got it in the mail - seemed a little boxy on - maybe a smaller size would've worked better but i want to be able to layer. however, i'm keeping it because it's versatile, i love the contrast of the front/back and the buttons on the sleeve (which actually button and un-button, meaning they aren't just for show and the sleeves can be easily rolled up). a great basic jacket with some neat details.",4,1,1,General,Jackets,Jackets +833,59,Love this top!,"This has been my go to top every time i go out lately. i just make sure i am with different people. the length is perfect and not too long. i wear a strapless black bra and you cannot see through the shirt. the only thing i don't like about it, is the three buttons in the back at the top are very, very difficult to button.",5,1,5,General,Tops,Blouses +833,47,A beautiful work of art!,"The embroidery is breathtaking. it is more flattering and interesting in person. i would highly recommend it!. it is true to size, figure flattering, and unique. the only reason i gave it four stars for quality is because the neck is a little itchy. if you are looking for a show stopper and conversation piece, this is it!",5,1,3,General,Tops,Blouses +382,35,Perfect suit,"I have a large cup size and year after year i am in the search of the perfect suit that supports, but doesn't look matronly. this year i had a baby and wanted to move to a one piece, but still wanted to feel sexy and youthful. i thought there is no way this suit is going to look good and/or support a 34ff, but gave it try because of all the 5 star reviews. i tried it on and my husband just said ""wow!"" this suit hugs you in all the right places and actually supports - i don't know how, but it doe",5,1,1,Initmates,Intimate,Swim +1117,43,Not as pictured and described,"When i read car coat, i expect a little more weight. it really is just a thin, long blazer. also, the colors appear different online. i expected a red/maroon with bue and white stripe, so maybe i mis-read completely...? it is actually brown/mustard/beige combo. not what i expected, so it will be a return.",2,0,0,General,Jackets,Outerwear +1098,43,Wish it was a different color,"I loved this dress when it came out this summer but it quickly became impossible to get. i snagged up this one as quickly as i could when it came out. i don't really love any of the fall colors it was offered in, but for this one - i would say it is much more rust and less orange in person.",4,1,0,General,Dresses,Dresses +1098,34,Lovely dress if you are small chested,"I fell in love with this dress online. i listened to the reviews and ordered a size up. i got it in the mail and couldn't wait to try it on! i was sad that to find, that while it was tight across the chest and the keyhole in the back seemed to pull, it was really large in the body. in addition, while the lace is beautiful it is very fragile. i still think this is a great dress but definitely for someone who is small chested. for reference i am a 32dd and size 2-4 and i ordered a medium.",3,1,0,General,Dresses,Dresses +1098,33,Worth the hype,"I had been hearing about this dress for months and was so excited to see they brought it back in more colors. the reviews i read claimed it runs small in the chest area. i'm a true pear shape (23b, i normally wear - size 2, xs, on top and size 4-6 on the bottom, but with dresses i almost always get size 2) because of the swing a nature of the dress i decided to size down with this one. i was nervous how tight it would be up top but i also didn't want it to look like inwas wearing a sack! so i to",5,1,2,General,Dresses,Dresses +828,31,Nautical style!,"Love this top! cloth & stone makes excellent quality clothes that are durable and have unique details. this top can go with many different looks and i can't wait to take it out for a spin! + +i bought the medallion crops to go with this top and it is an awesome combo, i would definitely check it out!",5,1,5,General,Tops,Blouses +1094,33,,"Comfortable, stretchy fabric; both colors are beautiful",5,1,0,General Petite,Dresses,Dresses +1117,31,"Really lovely, not for me","This coat is wonderful. it's boxy and drapes really nicely. the colors are beautiful and versitile. i love the pockets. the fabric is sturdy, but not heavy. i have nothing but good things to say about this coat. i had to return it, sadly, since it wasn't flattering on my hourglass shape. (i am 5'6"", 34dd-27-42 and the small fit well) if you're confident enough to hide your waste, go for it. your won't regret it.",5,1,0,General,Jackets,Outerwear +1010,25,,I love this skirt!! i'm trying to find the perfect place to wear it :),5,1,3,General,Bottoms,Skirts +1020,25,Adorable--runs two sizes too small,I ordered my usual size; however when it arrived it appeared to fit a 9 year old! the color and style are adorable. i will need to exchange it for 2 sizes larger! i am so shocked at maeve's sizing.,5,0,5,General,Bottoms,Skirts +1010,74,Petites please!?,I absolutely adore this skirt! sadly it was a lot of skirt for me- i'm 5 feet nothing and it would have been too much fabric to hem. wish this skirt came in a petite size. great color and a fun option for the fall wedding season!,3,1,2,General,Bottoms,Skirts +828,65,Great top!,"I just received this top and love it. the fabric is soft and comfy. it is just as pictured, no surprises. lace-up fronts are a hot item for spring. for reference, i am 5'7 and weigh #127. the xs fits perfectly.",5,1,15,General,Tops,Blouses +944,39,Unexpected love,"I thought, this is nice, when it was a new arrival i put it in my wish lsit as i liked how the cut looked on the modl. but i dind't think i would love it as much on me (i ordered it when it hit sale#. the material is ""fluffy"", and has a shimmer you can't see on the online picture. one of hte thread will need to be cut, but no biggie, it is so ute. the beading is also very subtle, but pretty. my stylist #brught it in t try onin the store# loved it somuch she is ordering one for herself. the cut i",5,1,1,General,Tops,Sweaters +828,39,Cute but big,"This top was always on my wait for sale list, now it is and i had to pass. i love the look on other people, the laec up is super cute and trendy, but the cut was just too big on me. it left me blah. i think if you are tall and are looking for a nice white shirt, then go for it, it looks so nice half tucked with skinny jeans...",4,1,1,General,Tops,Blouses +1117,34,Love it!,This is such a unique piece and could be dressed up or down. i can see myself wearing this with skinny jeans and a tee and adding a statement necklace or wearing over a dress. i tend to get hot so i like how light weight this is even though it is lined. it is of excellent quality but may run slightly small (or at least smaller than other items i have purchased through retailer). the drape is extremely flattering and i think that would be true for every figure. my favorite feature is the oversized,5,1,0,General,Jackets,Outerwear +867,25,,"The shirt is beautifully made and very comfortable. i'm a medium though, and i ordered as such- but it's way too big for me.",3,1,0,General Petite,Tops,Knits +828,22,Xs is still too big :(,"Love this top, but the xs is still way too big, swallows me. 5'1"" petite. wish it came in a petite offering. sadly, had to return this item.",4,1,0,General,Tops,Blouses +1094,62,Comfy & flattering,"I love this dress! splurged while i was doing my christmas shopping to get this for myself, and i'm so glad i did! it's such a comfortable dress - stretchy and not too thin or too heavy of a fabric. it pairs well with tights and a long cardigan in the winter, or on it's own with a statement necklace. style and fit are great - this dress is super flattering,",5,1,4,General Petite,Dresses,Dresses +1098,40,Sweet dress,This is an awesome go to for dressy or casual! wore it with booties for a dinner and flats for temple and was perfect for both! lace is a little delicate but worth the extra care!,5,1,0,General,Dresses,Dresses +1084,26,Cheshire dress,The cheshire dress is lovely. the fit is true to size and the quality is awesome. i love the way the sleeves lay on my shoulders. i would definitely recommend this dress!,4,1,1,General,Dresses,Dresses +828,33,Fits well,"I'm 5'7, 125lbs, and the small fits perfectly. the sleeves are the right length (i have long arms and legs), and the body fits loosely, without looking sloppy. at my height, the small is not long enough to wear as a tunic, which is fine. + +unfortunately, the shirt arrived with makeup stains around the laces and the inside of the shirt, so i had to wash it before wearing it. + +i only purchased this shirt because it was on sale.",3,1,0,General,Tops,Blouses +867,28,Incredibly flattering,"This top is gorgeous and flattering for spring. the fit is beautiful. one thing - i find that the seam that goes across the stomach does chafe a little bit. however, with a light tank underneath this is no issue at all and the top is well worth it.",5,1,1,General Petite,Tops,Knits +1117,24,Love it! hello fall!,"Love this jacket! this picture shows the sleeves rolled down, but in the stores they have them rolled up and i have to say that is how you'll most likely wear it as the sleeves might be too short if you rolled them down. however, it is still a fabulous fall coat! it does run slightly large, but it depends on how you want it to fit. i am typically a medium, and i bought the m/l because the xs/s was a little fought in the shoulders. i bought last weekend and already wore twice because it looks gre",5,1,0,General,Jackets,Outerwear +1010,28,,"I love this skirt! the color is beautiful, much darker than in the photo. the only issue i have is with the length. it's much longer in real life. i'm definitely going to need to have it shortened.",5,1,0,General,Bottoms,Skirts +1098,38,"Fun, flirty but snug up top","I'm keeping this cute and fun dress but i agree that the top is tricky if you have a larger bust or shoulders. i got my tts 6 and am a 32dd with broad shoulders and can wear it but it's snug. the top would probably look better in an 8 but there's so much volume below, i kept the 6. i'm 5'7"" and thought it was short but just fine for anything other than a professional setting. i have toddlers, so not the best dress for bending over, but fun for when i'm out and about on my own. + +big compliments",4,1,1,General,Dresses,Dresses +935,36,Flowy sides,This sweater is very comfy and looks great with tighter leggins. beautiful color,4,1,0,General,Tops,Sweaters +1094,45,Love the dress,Fits great and the material feels great on! going to buy a second one in a different pattern.,5,1,3,General,Dresses,Dresses +828,56,Perfect,"This is an awesome blouse! it is well made. the fabric is thick and soft. it drapes beautifully. i love the tie at the top. i wish it came in other colors - other than the denim offered. i am 5'4"", 115 pounds, flat chested. the xs fit well.",5,1,0,General,Tops,Blouses +867,58,Super cute,"The online picture does not do this top justice. much cuter in person. soft and so comfortable. got this in my usual xs. paired with a white ""fluffy"" sweater and jeans to wear to a casual charity event. hope they do more of this top in other colors.",5,1,5,General Petite,Tops,Knits +878,41,Runs so big,"I'm a short girl, but i usually wear tops in a small or medium at retailer. for me, i would have needed this shirt in a size at least one notch smaller than even offered. this shirt is adorable. love the details. i wanted it so bad, which is why i paid so much for a basic t-shirt. still, it was large to the point of frumpiness and could have used some sort of scoop or v-neck to break up the dots.",2,1,0,General Petite,Tops,Knits +1117,42,So cute,"Love this jacket. you will definitely want to size down though. i am usually a medium/large, but i was swimming in that size. i opted for the xs/s, and it is perfect.",5,1,0,General,Jackets,Outerwear +867,30,Comfortable and unique!,"I bought this top on a whim - it's not 100% my style, but wanted to try something different. the fabric and print are amazing! so unique, soft, subtle, and delicate. great fit as well. my only complaint is not the fault of the top, but if you have a bit of tummy, the fold at the peplum really brings it out so you'd have to wear high-waisted bottoms or suck it in. the hem is also really flowy, more so than shown in the pictures. theres a lot of fabric so it kind of ruffles more at the bottom rath",5,1,2,General Petite,Tops,Knits +828,58,Perfect in every way,Tops are a challenge for me. i am top heavy so i often have to size up to avoid pulling in the bust. this one is not over sized in the bust but i am able to open the laceing for a little more wiggle room but still not look like i am wearing a tent. fabric is wonderful. it is not too thin and not too thick.? it does pull up slightly in the wash. it requires a little ironing or a good steaming.,5,1,28,General,Tops,Blouses +1117,62,Light weight duster,"This duster is light weight - good for a inside a chilly restaurant, but not really warm enough for cold outdoor winter weather. + +really punches up a black on black outfit. polished, artsy, interesting look. runs large. has a feel similar to a swing coat - with less swing. + +i've received many compliments on this piece. wear it with confidence - it is on the bold side.",5,1,0,General,Jackets,Outerwear +1117,40,Vintage style,"This coat is a classic! i would wear it every day if it wasn't so distinct. very comfortable, flattering, and stylish.",5,1,0,General,Jackets,Outerwear +867,34,Wanted to love...,"An odd top. +for my curvy figure (34g), the seam did not enhance, but rather made me look wider. +the material is...interesting. foam-like is all i can think to describe it. the fabric and design are not as elegant looking in person.",3,0,0,General Petite,Tops,Knits +1094,34,Great dress!,"I really love this dress. it's very flattering for all body types - i'm 5'4"", 120 and i purchased a small. it also looks really cute with a stretchy belt. in the picture - it doesn't show this, but it has these cute snap sleeves that adds some great detail. it's also very comfortable. it is a thin material, so for those looking for a thicker fabric - this may not be the right dress. loved it!",5,1,6,General,Dresses,Dresses +1094,40,Comfortable but you need good undergarments,I love the swing and the pretty color of the dress. it's fun to dress up or dress down. the fabric is a little thin so you will need good undergarments if you have lumps and bumps.,4,1,0,General,Dresses,Dresses +878,45,Fun t-shirt with distressed gold dots,"I love this top because the gold dots add a bit of bling to your otherwise average slouchy t-shirt. i didn't notice that the dots are actually 'distressed' until i got the shirt and then looked closer at the online pictures. worry not, they are supposed to be that way and do not peel off. the sizing is a bit odd but i assumed that it corresponded to xs,s,m,l so i ordered my usual xs (0) size and it worked out just right. i'm giving this shirt an overall of 4 stars instead of 5 because this shirt",4,1,2,General Petite,Tops,Knits +1117,31,,"I saw this in the store and was glad i didn't order it earlier online. i thought it would be beautifully stitched but it was rather flat and unimpressive in person. i like more unusual and flattering pieces, and this just wasn't it. no compliments here.",2,0,0,General,Jackets,Outerwear +1098,38,,,5,1,0,General,Dresses,Dresses +828,56,Nice drape!,"I love this top! although, i wish i had ordered the large rather than the medium. i am 5'4"", 138 pounds and a 34d. the medium just fits but is ever so slightly snug across my shoulders. it will work; though i will probably have it dry cleaned rather than risk shrinkage by washing at home.",4,1,0,General,Tops,Blouses +1050,35,Versatile,"Love this! perfect in the summer with bright, strappy heels or sandals or booties in the winter.",5,1,0,General,Bottoms,Pants +1010,60,,"I'm obsessed with this skirt and was so excited when it came in the mail. i ordered a m, and it was massive! i'm 5'9 and typically wear a 6 or an 8. as i don't really have much of a waist/am built more like a column, i wanted it to sit right at my waist/right under my ribs. wanted to wear a crop top with it, but it fell down to my hips which made me look significantly larger. the quality is amazing, and the skirt is even better looking in person! worth ordering in a size down and getting it tail",3,1,1,General,Bottoms,Skirts +1088,34,Drapes on a woman's body beautifully,"I saw this in the sales section today and was drawn to it by the color and style. i really didn't think it'd fit on me, even though the only size available was a size 12, because it looked like a sheath-type dress that's more body hugging, and usually such dresses just don't work well on my wider hips and hourglass frame. howeverl here's what i thought: +_____________ +pros: +- beautiful blush pink. it looks exactly the same in person as online. +- very comfortable as the other reviewer mentioned. t",5,1,0,General Petite,Dresses,Dresses +867,34,"Elegant, comfortable, and classic","-this was actually at my local retailer store. it reminded me of another online exclusive that was a dress and had the same flower shapes but the color was a soft pink; this is exactly like that. +_____________ +pros: +- it is so lovely with the pleated front",5,1,4,General Petite,Tops,Knits +828,69,So soft,"Love this henely, the lace-up is cute. the shirt is comfy. so versatile. beach coverup or over jeans",5,1,0,General,Tops,Blouses +1098,34,Pretty details,"I got this in blush pink and the details are very pretty. the dress is wide, might have a tailor bring it in on the sides, but its very comfortable and i like that it covers my arms a bit, but still keeps you cool.",4,1,0,General,Dresses,Dresses +1098,34,Beautiful dress!,"I have had my eye on this dress since the spring (in yellow), but it sold out quickly. i jumped on this dress as soon as i saw it come out in different colors this fall! i purchased the peach color and it is really lovely. i will be wearing this dress for family photos. the lace and the details are so very pretty! i am usually a size 0 or 2, and purchased in size 2 since there is no stretch to it. it is a beautiful dress and i highly recommend it! wish it came in white!",5,1,0,General,Dresses,Dresses +867,45,Note the neoprene,"Now i would've been scared off by the fabrics had i not seen the cute, flattering cut if this spring top. love the futuristic look of the fabric and style brought back by the rise design throughout. like the previous reviewer claims, this top is even cuter on us non models (who are pry not as washed out). the color combo is another positive because it's both flattering and versatile!",5,1,4,General Petite,Tops,Knits +878,58,Nice,I wore this tee under a comfy cardigan on a flight to denver. i received several compliments.,4,1,2,General Petite,Tops,Knits +828,44,,Beautiful. elegant. sexy. i love the fit. can be dressed up or wear with jeans. it's great!,5,1,0,General,Tops,Blouses +864,34,Comfy and pretty,"I love simple, comfortable tops with interesting details and one that i can easily throw on without much fuss. this top is made for people like me!!! the ribbed knit is super soft without being too thin, the lace is quite pretty without being too delicate. normally, tops like this have the lace portion sewn to the hem but this top actually has a whole layer of lace under the knit outer shell. so, it's like wearing a layer of lace and ribbed sweater on top of the lace. the good news is, the lace",5,1,2,General,Tops,Knits +862,50,Stylish and versatile,"I recently purchased the reading room cardigan in the color pink. the color is beautiful, and very flattering with my olive complexion. i ordered a medium, and although it's not a traditional fitted cardigan, the shape was very flattering, good length for my 5' 6"" height, and is very versatile. great for transitional weather into spring.",4,1,5,General,Tops,Knits +220,34,Awkward. just awkward.,"I loved the look of this top online - it had great lines. i was so disappointed when i received it. it has zero support/lining and i'm not large chested to need a lot. it's also incredibly awkward to get on and the tie in the back is only long enough to knot it, making it even harder to get off. it was returned.",2,0,0,Initmates,Intimate,Swim +1097,40,Chic minimalism,"Love the simple non-fussy style of this dress. note that the color is not ivory, as described and expected (not the first time retailer makes that mistake), however i still found the oatmealish-warm beige color to be flattering to my skin tone (warm tones look best on me). like that the shoulders are covered while still feeling sleeveless, gives it a dressier feel. the fine texture is lovely. this does drape up top, while the bottom clings a bit, but not overly much for me to feel immodest. i am 5",5,1,5,General Petite,Dresses,Dresses +933,63,,"Nice sweater, just did not look good on me. sorry, going back.",3,1,0,General,Tops,Sweaters +831,50,Beautiful blouse,"True to size, nice unique shoulder/neckline fit and blousey/full on the bottom and arms which taper in. for me, i prefer to wear it tucked or partially tucked in to add waist definition. though a vest or belt can also be used. sheer, you will need a cami. lovely flow and colors., the collar,pleats and neck tie add a romantic interest. just beautiful.",5,1,1,General Petite,Tops,Blouses +1025,41,Price is justified when they look this good.,"Great jean! i will live in these this winter. so flattering, bum looks good, leg is slender and lengthening. perfect petite jean with a flared leg.",5,1,0,General,Bottoms,Jeans +1127,29,Odd shaped coat with stripped bands sewn in,Ordered a size medium as i usually take a medium in retailer coats- the wool is wonderful however the stripped bands are sewn into the fabric which add to the weight. the coat has an odd shape - not a line or straight. the medium was large on me. the bottom edges of the coat did not line up when buttoned and there was no inside hook or button to help even out the bottom edges. sadly this coat will be returned.,2,0,10,General,Jackets,Outerwear +933,43,Love the pattern and color,"I love this sweater but i'm on the fence about keeping it only because i haven't figured out a way to layer and wear it. it really does appear best with a plain white top and jeans. i've tried it with several other things in my closet and just haven't found another combination that sells it for me - i really like my pieces to be more versatile so i can mix and match them into other outfits. this piece is just enough of a ""statement"" that - for me - wearing it with more simple clothing staples is",4,1,0,General,Tops,Sweaters +864,42,Sweet basic tee,"Great tee for layering, love the sweet lace along the bottom. the lace lines the entire body of the tee and it's a little thin so i prefer a cami underneath but a nude bra would be invisible. i usually wear a small, sometimes an xs, and the small fits like it does on the model.",5,1,1,General,Tops,Knits +895,25,Slimming and classy,"I saw this classic beauty on a mannequin with black trousers, and it looks gorgeous so i went back to try it on! looks better on vs on the table +i have broad shoulders and the small worked",5,1,2,General Petite,Tops,Fine gauge +933,30,Luxurious,"This reminds me of a kimono or poncho rather than a ""cardigan"" but that aside its a beautiful sweater. the feel of it is luxurious and is soft and comfortable. i would size down at least one size. i'm usually a medium to large and i bought the small. i gave this piece 4 stars because it is a touch boxy. it's seems like a piece i'll throw on with jeans and wear to a casual dinner in the fall. definitely a fall/winter item.",4,1,3,General,Tops,Sweaters +862,32,Super cute!,"Love, love, love! +this is true retailer! the color is lovely and it's so soft! i love the seams in the back and the overall ""raw seam"" style.",5,1,0,General,Tops,Knits +862,29,Too much fabric,This open cardigan runs really big and has way too much fabric. even going down a size i felt like i was swimming in it.,2,0,15,General,Tops,Knits +864,34,Great top!,"I received this top today and though the color is not white as shown in the pic, it's a beautiful top. its more ivory as mentioned. the lace is like a lining(covering the entire body except the arms) underneath the ribbed fabric. like the other reviewer mentioned the lace is not itchy but soft and very pretty! i totally love it!!! this is my new favorite top in my wardrobe!!",5,1,2,General,Tops,Knits +895,50,"Beautiful color, fabric; strange blousy fit","I wanted to love this turtleneck. i read the reviews before ordering. i love the color, the weight of the knit, the ribbing. the small fit me perfectly; i am a 34b, not broad shouldered, and on the thin side in my upper body. however, this item has a strange ""blousy"" fit. the picture of the back view hints at this but it's worse in person. it's like a bell shaped top or even slightly trapezey, which simply doesn't work with my shape. plus, i'm long waisted. i could have made this work had it not",3,0,4,General Petite,Tops,Fine gauge +831,48,Very nice blouse!,"Received this blouse to wear for the holidays and was not disappointed. the design of the shirt is to be relaxed and flowing. i usually wear a medium which is what i ordered. the shirt fit fine but i probably could of managed with a small if i did not want it as relaxed. so if you are between sizes, you might want to size down. if i did order a small, the sleeves might of been a tad short since i have longer arms. the shirt is sheer, so you will need a cami underneath. i wore a black one which w",4,1,1,General Petite,Tops,Blouses +220,47,Low quality for price,"This suit did nothing for me. the top has zero support. this would work for a younger woman who does not require any support and is smaller chested. also, the top gapped in the center. it just did not fit right. the top is very thin showing everything. a light padding would make a big difference in this suit. also i could not get a good fit. as i tightened the top, the back would ride up. the bottoms are ok. not renatkable",2,0,1,Initmates,Intimate,Swim +933,46,Runs very large,"I instantly fell in love with the graphic pattern on this drapey layering piece, and i've received compliments every time i have worn it. however i seriously considered returning it because the way the garment is cut causes it to bunch awkwardly at the sides. maybe it's still just too big--even though medium or large is my size in tops, the medium in this sweater clearly looks baggier on me than it does on the model in the photo, for instance. it is definitely not slimming, but the striking patt",3,1,0,General,Tops,Sweaters +644,42,Used to be better,"I love and live in these but the recent scoop tanks i purchased were thin, not as great. so i want to recommend them because they are really versatile but the quality has deminished.",3,1,0,Initmates,Intimate,Intimates +895,53,Never met a turtleneck i didn't like...,"This is no exception to the rule! i love turtlenecks and this one is going to be a favorite. do know that this is not lightweight-even though this is sleeveless it is definitely a substantial knit. the color is a beautiful nutmeg and can be dressed up or down. i purchased a gorgeous neutral beaded necklace to go with it and it is simply stunning! it does 'bell out' a little at the bottom which, in my opinion-is the only design flaw. i normally wear a medium in most retailer tops and the small is a",5,1,0,General Petite,Tops,Fine gauge +1025,41,,I really likes these jeans. they are comfortable with stretch and look cute. the price is high but an investment for sure !,4,1,0,General,Bottoms,Jeans +831,60,"Very pretty, too blousy","This is a very pretty blouse with a vintage, romantic looking fabric. the tiny pleats near the neck and shoulders are lovely. i love the colors...black, brown, and cream. it's hard to find a top that can be worn well with both black and brown. the long tie adds a romantic feel. this blouse is totally sheer so requires a cami or tank. i actually love the blouse, but returned it because it is super blousy. i am 5'2"", 140 lbs., and the small was fine. it is just so blousy, that even belting it didn",5,1,1,General Petite,Tops,Blouses +868,76,Light and breezy,"This top has slightly more of a burnout effect than i realized. i like it and its great for layering, but you must wear something underneath as it is quite sheer.",4,1,1,General,Tops,Knits +862,39,Chic cardigan,"The color of this cardigan is beautiful, and the material is very soft.",4,1,0,General,Tops,Knits +865,50,Great layer piece,This is a great layering piece. took it on a trip and wore with both a long sleeve and tank under it. is more 'khaki' color then the photo shows - which was a goo thing for me.,5,1,0,General,Tops,Knits +895,23,,Love the color. love the design. at the hem this top runs wide. i'm still deciding whether to keep this as i think the wide hem may be somewhat flattering on me.,4,1,0,General Petite,Tops,Fine gauge +895,59,Excellent style,I loved the way it looks on. fit tts. only problem for me was it was so itchy. there is that small amt. of wool in it. if you have any problem with wool this may not work for you,2,0,2,General Petite,Tops,Fine gauge +1097,52,"Versatile , elegant and chic !","Love, love, love this dress. you can dress it up with high heels, or down with sandals . a mid weight material with seperate slip that serves as a lining . i am athletic , 5' 7"" and 132 lbs and bought a size small. i have broad shoulders , average waist , short torso , small hips and long legs. in the spring a denim jacket would look perfect with this dress.",5,1,4,General Petite,Dresses,Dresses +865,59,Obsessed.,I can't stop wearing this. it's perfect for layering! the fit is great-loose but not a bag. i love that it's a wide open knit.,5,1,0,General,Tops,Knits +895,51,Not for short wasted imo,"I've had my eye on this for a while. went into my local retailer to try it on. tried on s and xs. it fit the same, not much different. the color is great. will go with so many things however i have a larger bust 34d-dd and am short wasted, generally wearing petite in skirts because of it. it sort of belled at the bottom, peplum""ish"" which made it look like my bust drooped to my waste. not flattering on me. i'm 5'3ish, 118# and generally wear 4 in tops. it felt like it would stretch out as the day",3,0,0,General Petite,Tops,Fine gauge +895,26,Great transitioning top,"It took me a while to finally try this on after seeing it in store for a while, i wasn't sure about the color. then i saw it matched with the brush stroke charlie trousers (which i had just purchased) and loved the combination so much i had to finally try it. i love the fit and feel of this top. i agree with a poster before that the photo does not do this top justice. my only wish is that t was a touch longer.",5,1,0,General Petite,Tops,Fine gauge +862,45,Comfortable and soft,"I am super-pleased with this cardigan, which is at a terrific sale price. i saw this in the pink color in the state street retailer in chicago, and i loved the feel of the material but wasn't sure about the color for me. when i saw they had a neutral striped version online, i decided to get it. the material is very soft and the beige/neutral color has a gray undertone which is good for my skintone. the front is double-layered and it has a fun seaming detail in the back and an ""unfinished"" trim whi",5,1,0,General,Tops,Knits +644,32,Pilled immediately,"The first time i wore this tank it started pilling around the arms and down the sides. it is terribly quality, and gets worse with every wear and wash. possibly the worst wear on a new clothing item i've ever seen. like the design and fit, immediately relegated it to a weekend/home shirt because it was unprofessionally pilly and the pills are small so can't be shaved off.",1,0,0,Initmates,Intimate,Intimates +1097,35,,Unforgiving to even your smallest imperfections.,2,0,15,General Petite,Dresses,Dresses +1025,92,The only jeans you'll ever wear!,"It's hard to tell how jeans will fit when shopping online. i was very pleasantly surprised. they are super soft, very high quality and look even better in person. i'm 5'3 118 lbs and i ordered the 27p and may have to get them taken up an inch, but they fit perfectly through the hips and come in at the knee. i'm big in the hips and small in the waist and they fit perfectly. highly recommend for petites out there!",5,1,2,General,Bottoms,Jeans +644,67,Perfect layering piece,I have this tank in all colors...it is superb for layering...comfortable and i love that you can reverse it for a different neckline...and it's long enough!,5,1,0,Initmates,Intimate,Intimates +831,51,Almost a winner,"There was only a l in store but i tried it as a gauge. given i am normally a xs/0, i knew it was going to be too big but wanted to see if i could get an idea of how it might look in my regular size. it truly is a lovely blouse - gauzy fabric, flowy feel and an easy piece to dress up or down. however the xs was much shorter in the sleeves, (above the wrist bone on me), and much shorter in the body, (sat at mid pelvis - for ref i am 5'7""). this completely altered the look and i think i would have",4,1,1,General Petite,Tops,Blouses +1025,47,I'm in love,"I'm 5'1 and 110 pounds and i ordered the 26 petite. the jeans are fabulous...flattering....comfortable...i could go on and on. the fabric is super soft and the fit hugs in all the right places. it is a nice flare bottom. i will have to wear these with heels or wedges, they are too long for flats.",5,1,5,General,Bottoms,Jeans +933,35,Loosely fitted,"I like that i can wear this over anything, only drawback is that it's short-sleeved so it semi-defeats the purpose of having a cardigan but- it's so pretty i can't return it!",5,1,0,General,Tops,Sweaters +862,52,Soft and easy with stripes!,"The fabric is really soft and the cardi has a cute and comfy slouchy, loose fit. reminds me of free people cardis with the extra long sleeves and loose fit. great to throw on over workout clothes or with jeans and a tee shirt. easy piece. would size down. i'm getting lots of use out of it.",5,1,2,General,Tops,Knits +895,52,Soft and cozy,"I highly recommend this top. i am busty and was concerned that it might not be flattering. but i find it flattering. i also don't have the greatest arms, so i wore a crisp white top underneath. see my pics below. hides any tummy pooch and is so flattering. runs tts. i ordered a small. i'm 5' 120 lbs. the petite might have been too short for my taste. don't hesitate!",5,1,1,General Petite,Tops,Fine gauge +859,42,,"I love the style of this top, there's good stretch to the fabric so it's very flattering. the length is good for me, as the previous review stated, it's a little long but for me it's lengthening. the lace is lovely, too. i'll wear it with some white jeans for summer.",5,1,7,General Petite,Tops,Knits +1076,32,,"If you love the print then this is the dress for you. it is so incredibly flattering for hour-glass shapes. and it has pockets! i wanted to keep it but i just did not like the pattern and every guy i showed it to hated the pattern. if they had it in a different color, i would buy it in every color. :)",4,1,0,General,Dresses,Dresses +1086,59,,Very light weight and soft fabric. i bought the blue but did not try green or grey. i love blue with my skin tone and am afraid green may make my skin look yellow. did not see the green in my store though. very comfy and flattering dress. runs tts.,5,1,2,General Petite,Dresses,Dresses +438,23,,"I was so excited for this romper, but was disappointed after trying it on. the material felt cheap for the price, and it runs quite small. will be returning. :(",3,0,8,General,Bottoms,Shorts +936,41,,Great sweater coat! i bought the camel color and it looks so good over all black. it runs large. i usually buy a medium in sweaters but his one i bought the small. it is very unique and a cool take on a peacoat.,5,1,23,General,Tops,Sweaters +1086,39,Like but did not keep,"I ordered this in xxs petite, and it fit nicely, the green color was nice, the cut was just above the knee, flattering, but not wow. it is nice if you need a casual dress to hang around, go to the beach, playground with kids, etc., but there were just better options for me. so i returned it. the size fit me well at 115 lbs, 30dd chest. i say go for it, if you need a nice soft casual dress, ok to size down.",4,1,4,General Petite,Dresses,Dresses +1086,26,Love this!!!,"I bought this dress in the green color and i am absolutely in love with it!! it is very figure flattering and looks great even though i have a larger bust. it is also a great length, hits about an inch or two above the knee. highly recommend!!!",5,1,6,General Petite,Dresses,Dresses +936,56,Just what i have been looking for,"I have wanted a boiled wool jacket for years. finally. i got the gray/navy. soft, warm and classic. i expect it to last forever. it is the right weight for out door wear in warmer climates or late fall/early spring in minnesota. the sleeves are long, but push up nicely, and roomy enough to go over a long sleeved blouse. i paired it with the tartan charlie trousers, and it is very polished for work. soft. but someone sensitive to wool might find it itchy. i agree that it is a little boxy--but i t",5,1,1,General,Tops,Sweaters +936,34,,,5,1,0,General,Tops,Sweaters +1163,46,,"I am not sure where all of the other reviews on these pants went, but when i ordered mine, there were mostly all good reviews. i absolutely love these lounge pants. someone mentioned that they thought they were a little itchy where the lace is but while they may not be the softest pants ever, they are certainly very comfortable, not itchy at all. i am 5'6"""" 140 lbs and i ordered the medium. the fit was a little snug at first but, as i wore them, they stretched and loosened. i also wear them with",5,1,0,Initmates,Intimate,Sleep +936,37,Classy,"I bought this jacket in the grey blue color and i absolutely love it. it is warm an sophisticated and versatile. i am 5'4"" and 160 lbs and the medium was good for me.",5,1,0,General,Tops,Sweaters +936,56,Love this jacket!,"The first day i wore this jacket to work, three people told me how great it looked. it's stylish but comfy, looks great worn with a tunic and leggings or accompanying a skirt and tights. best of all, the camel color is a great change from black and as a bonus, doesn't show my orangeish lab's dog hair!",5,1,0,General,Tops,Sweaters +921,27,,,5,1,0,General,Tops,Sweaters +936,42,,"Great jacket! warm as a coat yet thin enough to wear indoors. i dress up with a fitted dress, or dress down with jeans. very versatile and comfortable. i always get compliments on it.",5,1,0,General,Tops,Sweaters +857,36,Great top!,"This top is very comfortable and really cute on. the material is super soft. i bought the white and am very happy with it, but it is a little sheer so i have to wear a cami with it. i would definitely recommend!",4,1,15,General Petite,Tops,Knits +1086,27,The summer dress,"I saw this online and thought the idea was super cute, but was not sure if it would be worth the money because it looks typical. but, when i went to the store to try it on, i saw it was anything but typical. the fit is perfect and the fabric so soft. i wanted the dress in the green, but they were already sold out in my size at the store, so i had to order it online. i cannot wait until it comes in! i will wear this often during the summer.",5,1,4,General Petite,Dresses,Dresses +921,59,Love it!!,I love this sweater. it is a beautiful color and i love the boxy shape. very soft.,5,1,1,General,Tops,Sweaters +1045,49,,Love love love...the fit is amazing and truly well made. this jumpsuit is a classic and it fits perfectly. i just wish the button was a little bit more secure but other than that it's a 10,5,1,6,General,Bottoms,Pants +936,30,Love this coat,Lightweight warm in cold nice as a day jacket. works well as a casual coat. very soft but a little wooly. it's really nice color. thinking about buying another. i got the dark one.,5,1,15,General,Tops,Sweaters +859,53,Cute and unique top,"This top is really cute. the fabric is soft with a little stretch to it. the lace shoulders with the denim cutouts add so much to this top. i was afraid it might make it too stiff & bulky around the shoulders, but it doesn't. very cute. the armholes are cut on the bigger side, but not so big that it shows your bra strap or anything.(just comfortable) the cut is also very nice and the pleats make it more body slimming. runs pretty tts. i ordered my usual medium and it's not quite as form fitting",4,1,12,General Petite,Tops,Knits +386,57,,"Soft fabric, waistband is flat no vpl!lace trim cuts in a bit for a little vpl- but still nice lightweight, barely there but full coverage. would buy again!",5,1,0,Initmates,Intimate,Intimates +1200,24,Its worth the sale price if you know your size,"Bought this dress without trying it on but listened to the previous reviews saying this ran small and wow does it. i usually wear a 6 but ordered an eight which was hard to get on even with the upsizing. i do have a 34ddd bust so i do have a difficult time when dresses have no stretch over give in that area. overall beautiful dress, fabric is not stretchy which killed it for me.",3,0,0,General,Dresses,Dresses +936,69,So soft,Love this jacket - got it in the charcoal color. i especially enjoy the collar and the handy pockets.,5,1,1,General,Tops,Sweaters +1086,30,Love it!,"I love this dress. it's cool and comfortable in this crazy heat! the fabric has a great feel to it. i do wish it was just a little longer.. + +(i'm 5'8"", 145#, and bought a medium)",5,1,0,General Petite,Dresses,Dresses +936,50,Comfortable but boxy,"I purchased this sweater in camel and love it. the fabric is very soft and lightweight (perfect for warmer climates with chilly but not cold weather). i'm 5'9"" and got a medium, but the sleeves seemed a bit long to me. it's also a bit boxy due to double breasted the cut, so if you have a petite frame it may overwhelm you. otherwise it's definitely a great coat for the money.",4,1,2,General,Tops,Sweaters +1086,30,,I'm 5'8 140 lbs and small worked perfectly. great dress!,5,1,0,General Petite,Dresses,Dresses +857,22,Perfect!,This is such a perfect tee to wear on cold days! it's a fall/winter/spring staple for sure. it's very soft and falls perfectly. i would definitely recommend it.,5,1,2,General Petite,Tops,Knits +1087,65,Perfect for summer,"This dress might be the most comfortable article of clothing i own, especially for the hot summers. it is attractively loose, and so light that you barely feel like you are wearing it. love it!",5,1,0,General,Dresses,Dresses +936,69,A great jacket!,I love this jacket and have worn it to work with a deep chocolate brown t-neck and straight leg pants. i get a lot of compliments on it. i am happy that the double breasting does not bulk up my silouette as that can happen with the style. the boiled wool is fine quality without being thick. the color is true to what is shown. the fit is perfect and what i expected. i highly recommend the purchase.,5,1,1,General,Tops,Sweaters +1082,32,Love this day dress!,This dress is so cute and comfy! i purchased it for my friend's wedding brunch celebration - perfect transitional piece!,5,1,6,General Petite,Dresses,Dresses +936,67,,I love this jacket. runs true to size. plan on wearing this a lot this spring and summer. perfect for our weather here. looks just like a jacket but has the stretch and give of a sweater and not heavy like other pea coats. can be dressed up or casual.,4,1,0,General,Tops,Sweaters +936,62,"Cute, cozy, classic","I was trying on the cream knit turtleneck midi dress in the store, and wanted the shearling vest shown with it to work for me. the dress is sleeveless, very good looking on, but the vest on me was too much, looked like i was being swallowed by a huge shearling taco. i wanted and needed something to stay warm in without the bulk of a full coat. the stylist brought me this jacket, and it was just the thing for me. its classic and modern, warm without bulk, and the two tone complimented the dress a",5,1,18,General,Tops,Sweaters +864,31,Stunning - but not for the faint of heart.,"I'm 5'7"", 34c, 28 jeans, size 4 dress. one of these beauties ended up in our store and i had to try it on. the sleeves are no joke - serious bell sleeves that could have looked comical with the polka dots, but is surprisingly chic. the one i purchased was a medium - never had an opportunity to try a small, which i suspect is my actual size. buying it oversized made this magical. it feels modern. i actually think because the whole sweater is oversized on me, it makes the sleeves less cartoonish.",5,1,3,General,Tops,Knits +1087,25,Runs big,This dress looks so cute in the pictures-i love the style. ordered typical size and it was huge-felt like many sizes too big.,2,0,0,General,Dresses,Dresses +864,45,,Lucky enough to have the chance to try this on in the store! the sleeves are not big,5,1,0,General,Tops,Knits +1095,41,Gorgeous,"This is my favorite dress purchase so far in 2016. the fabric feel and thickness is wonderful. it flares out a little but not too much. order the size that matches your largest measurement on the size chart for bust and waist, - or if you have broad shoulders, the larger of your typical size range. i'm typically a 00p or a 0p, with a 00p hip measurement, a middle range (00p is 24, 0p is 25) waist measument (24.5) and a 00p bust measurement, but my shoulders are broad and athletic. 0p, the larger",5,1,0,General,Dresses,Dresses +1082,60,Allison dress,"I love my new dress! it is comfy, classy and so easy to wear! you can dress it up or down with ease. i'm looking forward to seeing more styles from this designer. i hope soon!! don't miss out on this dress. it's a must have for your wardrobe!",5,1,4,General Petite,Dresses,Dresses +921,54,Adorable but boxy,"Really liked the color but the style was too cropped and boxy for me. this sweater was short, wide and unflattering. however, i like this designer so i ordered another style with a different silhouette.",4,1,0,General,Tops,Sweaters +1095,48,Dress is made for broad shoulders and small waist,The fabric and colors of this dress are beautiful but the fit is terrible. i had to go up a size to get a fit in the waist but it was then incredibly loose in the shoulders. what a pity. had to return.,2,0,2,General,Dresses,Dresses +936,56,A bit petite,"Very nice design and color (beige). however, i am 5'1"", 118# (athletic# and i thought the petite small was a bit too short #even for this cut) and just a bit too tight in the upper arms when wearing over a light-weight long sleeve dress. may work well over sleeveless. will see if a regular small fits better, but then the sleeves will be too long and not easily hemmed like the petite sleeves can be. the fabric is a bit felty for a boiled wool, but not a deal breaker.",4,1,11,General,Tops,Sweaters +1086,41,Surprisingly very flattering!,"I have been looking for a summer dress with a bit of a chic flair to it- i was thinking black, tank top dress. after weeks of hunting for the idea in my head, i started to branch out. i reluctantly tried this on thinking it would be 'baggish', plain, and possibly too short. wow was i wrong!! this dress is everything + more. wear with some wedges, belt it (although it doesn't need it at all!), layer a high neckline lace top over it, the possibilities are endless. although i loved the green, the b",5,1,2,General Petite,Dresses,Dresses +1076,39,,"Gorgeous pattern and colors for autumn. maeve does me good when it comes to maxi dresses. i have to say that the sizing is all over the place! i am generally a medium, but the small and xs (?!) fit me well also. the stretchiness of the jersey is very comfortable and forgiving, except at the ruched waistband, which took longer to stretch out, but it did eventually. i do need to hem if i want to wear flats, but the length works for my higher heels. there are pockets and a lining to my knees. i am",5,1,0,General,Dresses,Dresses +936,39,Cute topper,"I love boiled wool paired with classic silhouettes and this bonette combines best of both. the fabric is soft, not too substantial but still warm for my climate, goes great with many outfit combinations, has a flexible cut for my body type. i chose to to buy the size small and while it's a little tight in the upper sleeves (because my upper arms are chubby) i can work with it when i wear the right top. the medium was a just a bit too boxy for the profile i wanted but i may get it any way in the",5,1,2,General,Tops,Sweaters +936,39,"Pretty, but buttons stand out too much.","I like this coat, especially the collar and cuffs. but the buttons were too eye-catching for me. i wanted something more subtle. still, i recommend the coat.",4,1,2,General,Tops,Sweaters +936,34,Perfect for cooler weather,Completely versatile and absolutely perfect for days when my pea coat is too heavy. looks amazing with jeans or with slacks for work. i highly recommend this jacket!,5,1,0,General,Tops,Sweaters +936,61,Oh so cozy,This boiled wool jacket is warm and cozy. it does run a little big. i have to fold the sleeves twice! but it looks great and i got compliments immediately.,5,1,1,General,Tops,Sweaters +1111,39,"Beautiful lace detail, but...","I wanted to love this dress!! i eyed it for months before deciding to purchase, and when i hit submit, i purchased a size down, given the prior reviews. excitedly, i whiled away the moments until it appeared in my mailbox. as soon as this dress was delivered, i ripped it out of its packaging and ooohed and aaahed over the beautiful lace overlay and the halter cut. hurriedly, i pulled the dress over my head, allowing it to drape over my body. and drape it did, but not in a good way; rather, the d",3,0,0,General Petite,Dresses,Dresses +936,54,Nicely tailored and very soft,"You would expect anything woolen to be slightly scratchy. this is incredibly soft. i couldn't belive it's veltevty soft texture when i pulled it out of the carton. i had to check the content ag immediately to comfim. the cut is not too fussy but slimming and the sleeves are nice and long. it was a little dissapointing that the usual attention to the styling on the back of the piece was missing here. it's a straight, plain back with no darts, plackets, peplums or ruching.",4,1,0,General,Tops,Sweaters +1086,39,Cute spring versatile dress,"Saw this in the store and had to have it. i got the green because its different. i am typically a 4 or xs in most dresses, sometimes a small. i bought the small in this dress until i realized it was a little too loose. if you like that look, the small could have worked too.the xs didn't look like a bag on me and could be dressed with a belt for a more fitted look. i like the knee length and fabric is super soft. definitely recommend!",4,1,0,General Petite,Dresses,Dresses +864,42,,Stylish or comfy - often the choice when looking for casual but not with this top! it's comfy and cozy and stylish to boot. the sleeves are fun and create a nice line of interest. you can pair this with jeans for a casual day or dress it up with slacks and heels and be comfy either way.,5,1,0,General,Tops,Knits +872,42,,"This top looks beautiful online. when i got it, it looks nothing like the pic. it's wide, too much fabric, no shape and so unflattering. it's definitely going back",1,0,0,General Petite,Tops,Knits +897,36,Beautiful sweater,"I fell in love with this sweater as soon as i saw it. i was a little unsure what the quality would be like just from the photos, but i went ahead and ordered it and it is even more amazing in person. it's super soft and well made. it's also very warm even though it has such a large open weave. the price is definitely higher than i would normally pay, but this is a piece that will stay in your closet, and wardrobe rotation for years and years. definitely worth the investment. i agree with the pre",5,1,0,General,Tops,Fine gauge +187,30,Beautifully created,"Lovely socks, great color, stitched well, a little thin",5,1,0,Initmates,Intimate,Legwear +875,37,Almost there...,"Really wanted to love this, especially with the lacing and long length for this off-the-shoulder top. when the top arrived, the lacing was stiff and length of the straps were long so that the bottom of the lace didn't completely cover my black strapless bra (and i felt it sat a bit too low down my chest). thought about taking in the straps but then the area around the armpits would be uncomfortable. i did love the length of the top though. wish this top was a keeper, but going to have to return.",3,0,0,General,Tops,Knits +886,48,Pretty embroidery,I went a size down on this top. it was to billowy in my regular size. it has the elastic waist but it was bunching up too much in that area. i love the embroidery. . it is gorgeous. . will have to hand wash for sure.,5,1,0,General,Tops,Knits +881,59,,I was really disappointed when i tried this top on. the design and cut of the neckline is very bulky and just off. the cut of the top overall was just off.,1,0,0,General,Tops,Knits +872,59,Ugh,Very unflattering and no shape or flair. lots of extra material but no swing or shape. do not recommend.,1,0,15,General Petite,Tops,Knits +872,31,Circus tent,"I love the idea of this top, but there is just way too much fabric involved in person! i'm 5'2 and usually wear a small or medium to accommodate a fuller chest. i ordered a small and it fit fine around the chest but the huge swing hem combined with the slightly stiff fabric is just enormously unflattering. i feel like they could have made about 3 shirts out of it. i think the picture must have it pinned a ton in the back, the silhouette is nothing like shown. if there were just less fabric, i wo",1,0,4,General Petite,Tops,Knits +1136,39,Super cozy,"Received this yesterday, wearing it today and am happy. it's warm and cozy - perfect blend of sweatshirt and sweater for when you want to be comfortable, yet still look like you tried. i'm 5'4.5" and 130 lbs. i ordered an xs and it's still pretty roomy which is how i think it's supposed to fit. i would prefer it to be a little more form fitting, but not enough to send back. great with skinny jeans and boots.",4,1,0,General,Trend,Trend +862,39,Love the different stripes,"I tried on the xs in store, and loved it. stylist said i need xs petite, but otherwise, it looks great. the cut is flattering, the neckline is a tad higher and almost has a mini cowl. the colors are neutral and would love to wear with a nice pair of dark flared pants. or skinnies. so at 115 lbs, 30dd, i would go with xs petite( i am below 5'2""). fabric is very soft too...",5,1,5,General,Tops,Knits +1028,44,Great crops,"Had to have these when i saw them online. usually an ag girl, but loved the button fly and boyfriend fit. originally ordered a 28 and returned for a 27. after a couple of wears, wish i bought the 26. a must have!",5,1,2,General Petite,Bottoms,Jeans +1028,59,Great jeans,I love these jeans . i have a few pairs of citizen jeans and like the way they fit . these are a slim boyfriend jean - not too baggy - very flattering with any top - loose or tight fitting . wish retailer carried the white .,5,1,1,General Petite,Bottoms,Jeans +872,61,Great purchase,"I bought this top last week and absolutely love it! it hides my muffin top and falls in all the right places. it does not cling, but is very flattering for my size 12-14 body.",5,1,18,General Petite,Tops,Knits +886,47,"Some good and some bad,,,","The colors of this top are perfect for spring, i love the embroidery and like the sleeves with the ties at the bottom. what i didn't like and primary reason i may be returning, is the elastic bottom. it cuts off at an awkward spot on my waist and makes my top section look short and wide. i am very disappointed about this, as the rest of the blouse is gorgeous.",3,0,7,General,Tops,Knits +818,40,"Beautiful fabric, huge cut","The fabric on this shirt was beautifully woven and so soft/cozy. but the shirt was so wide! i'm 5'2"", 103lbs and got an xs. there was room for two of me in there. it draped very well, but instead of looking slouchy and cool, it just looked too big. so, back it goes.",3,0,0,General,Tops,Blouses +996,40,If you're craving the marsupial look...,"Then this one is for you! so disappointed upon receipt of this skirt, as i had been eyeing it for a while and was excited to see it on sale. based upon the pictures, i thought the black stitching was just an interesting outline detail, but it is actually masking this skirt's ugly secret: a pouch. yes, it literally has a pouch smack dab in the middle of your abdomen, which does not lay flat. the material also looks rather snag prone and already had a few pulls in spots. this one",2,0,6,General,Bottoms,Skirts +862,50,"Unnatural feeling fabric, slim fit","Sadly, going back. ordered m, light color option, very difficult to pull over my head, not a good sign. got it on and neckline looked attractive (height w/o being a mock turtle), but whole thing a bit small around middle. could order the l, but i'm not liking the feeling of the fabric, it feels tight with restrictive and nonuniform stretch: 33 cotton/27 poly/27 acrylic and 95 rayon/5 spandex ""contrast"", which must mean the stripes. combine w/fact that the two wide stripes are right at my middle",2,0,9,General,Tops,Knits +1028,31,The best!,"Coh emerson style jeans are the best fit and style. the ""pacifica"" color is a light blue and nice for spring and summer. i love the slim boyfriend. i have thighs and they fit like a skinny without being super tight. there is just enough stretch. no holes either. they are easy to dress up or down and have become my new favorites.",5,1,3,General Petite,Bottoms,Jeans +750,47,Perfect little affordable dress,This is a darling dress at this price point. i tried some of the more expensive options in the off-the-shoulder dresses this season and this one is as flattering and as well constructed as the others. the fabric is light but it is not sheer. it is smooth with a bit of a sheen. it is airy but not drapey like a rayon would be. i would describe it as a lawn. upon arrival the packaging indicated that it is considered a 'cover-up'. the site did not describe it that way but it may explain the comparat,5,1,1,Initmates,Intimate,Swim +881,32,Not for busty girls,"The fabric is quality, nice thicker fabric. the fit was strange, the top part fit great through the arms and shoulders, except my bust makes the front stick out and results in a maternity look. it was also slightly wide, i considered taking it in on the sides. ultimately it wouldn't be worth the money. it would be a great top for someone with a smaller chest.",4,1,19,General,Tops,Knits +872,38,Gorgeous top,"Love, love, love this top. so flattering and forgiving. bought it in white - great for summer!",5,1,2,General Petite,Tops,Knits +818,42,Very lightweight comfy fabric,I love this shirt!!! i ordered a medium and the sleeves were very long and the shirt was wide in general. i returned it for a small and it is perfect. size down! i love the comfy gauzy feel of this shirt.,5,1,0,General,Tops,Blouses +875,31,Love this gorgeous top!,"I am a loyal retailer shopper, but find many items are hit or miss. this definitely is a hit especially in black! i am 5'4"" 125 lbs and 36ddd. i usually take a m or m petite in retailer tops. because this is flowy and long, a s petite fits perfectly. the style is one-of-a-kind, the lace is heavy and top quality, and when you try on the right size, it hits perfectly. the lavender is a dusty shade that won't work well in fall/winter. it would look wonderful in cranberry or forest green.",5,1,0,General,Tops,Knits +881,48,Disappointing,"This top doesn't at all fit like it does on the model. the mid section is very wide and boxy and the material is thick and almost sweatshirt-like. i typically wear size small or 4, but perhaps an xs might've fit or looked better. sadly i must return this shirt.",1,0,21,General,Tops,Knits +872,50,I wear the top backwards!,"I bought this top in all colors as i love it so much! it is lightweight and perfect for our hot/humid summers. i actually wear the top backwards because the front of the top is longer that the back. to me it looked stranger to have it longer in the front! size wise, i think this top runs pretty large. i am usually a medium in most tops, sometimes a small, and i purchased this in a small petite. it fits great. i even tried on the xs petite and while it still fit in armpits and chest, it was just",4,1,5,General Petite,Tops,Knits +875,50,"Amazing, feminine and comfy!!","I usually wear a small or medium in meadow rue. i am 5'2"", 120#, broad shoulders. i ordered both the sp & the mp. i tried on the small petite first and it was too tight in the shoulders/arm (that was without lifting my arms forward or up). i tried on the mp and it was perfect! i would have to say this is my favorite fall top so far! the color is very pretty . . .more of a lavender than pink. the lace detail is delicate and pretty. the top is more like a tunic, get the petite if you short",5,1,0,General,Tops,Knits +886,36,Cute top with right undershirt,"I love peasant shirts so wanted to try it. cute top, but v-neck was lower than i was expecting. i have to wear an undershirt under this for that and also because of sheerness. fyi- shirt is off-white so stark white cami didn't work. was struggling to find something, but have the leana v-neck in navy- worked perfect and follows neckline exactly. now really cute! need something not long sleeves to wear under for spring weather here, but will keep and try to figure it out. 5'4, 135 lbs, ordered xs.",5,1,10,General,Tops,Knits +872,48,Wish it worked,"I bought this top in lilac size s since other reviewers said it has a lot of fabric. the color and the quality were great -- loved that it had the lining underneath. if your bust is bigger than an a cup, beware. the top basically flared out from the farthest point on my bust and the fabric below just hung there. it was a pregnancy look. perhaps that's why the model has her arms crossed in front -- to give the illusion that it tapers in below the ribs, but it does not. unfortunately, this one is",3,0,0,General,Tops,Knits +886,55,,,5,1,0,General,Tops,Knits +872,35,The circus is in town,"At first i was taken by the beautiful lacework and the pictures online showing what appeared to be a loose but shaped silhouette. the pictures must have been staged with pins in the back because, in person, the shirt fits like a circus tent. without exaggeration, there is a surplus of about 16 inches. + +the material is still beautiful. and because of that, i haven't decided whether i'll return this shirt or try cutting out some excess fabric to create a cleaner, more fitted shape.",2,0,0,General,Tops,Knits +886,57,Behemian details!!,"I've been waiting for this to go on sale, and just picked one up in store. the details and style of this blouse do not disappoint! since it's billowy in nature, a size smaller fits me perfectly.",5,1,1,General,Tops,Knits +996,31,Classy basic,"For me a good pencil skirt makes me feel so ladylike. i love eva franco pencils but be warned they are designed to be a tight fit through the tush. i wear a 12 and i ordered the 12 in this skirt. the pouch another reviewer pointed out seems intended to be a pocket, but because the skirt fits me pretty snugly it doesn't stick out when i walk and sit. the fabric does seem like it would snag easily so i'll choose accessories thoughtfully. for reference i have a 33"" waist and 42"" hips.",4,1,1,General,Bottoms,Skirts +881,46,Cute stylish top,"I am wearing this right now! it's a funny fabric--almost like a bedspread--but the cut and fit are perfect. i am short and i love the length of the hem, the babydoll style and the 3/4 sleeve. very cute for summer work or going out.",4,1,0,General,Tops,Knits +875,60,Pretty top,This top has really beautiful lace detail. the color is much deeper pink than the picture online. i ordered the xs petite and it fits fine but i like my tops longer so i wish i had gotten the regular xs instead. it is very pretty!,5,1,0,General,Tops,Knits +187,34,Small but cute,"I have 9.5-10 size feet, and these are a bit small; the heel doesn't quite make it around my heel to where it's supposed to be. still, they're comfy and not too thick or too warm. i really like the stripes of different patterns. good trouser socks. i imagine if you're size 7 or 8 these will fit perfectly. i got the mint and the pink colors, and they're very true to how they appear on my computer screen.",4,1,2,Initmates,Intimate,Legwear +187,32,I purchased the purple color,"Cute socks, very comfy as well. good quality in person.",4,1,0,Initmates,Intimate,Legwear +872,37,Too much fabric,"I really wanted to love this top, but there is way too much fabric. it looks nothing like the pictures. it was more like a maternity top vs. a swingy top. i'll be returning this one.",1,0,1,General,Tops,Knits +872,46,,I bought this top in white. i wore it with black skinny crop jeans. it is very cute and flattering. the length is just so that it makes the swing top flattering without is bring too overwhelming. i received lots of compliments. the quality is great and the top washed up well too. love it. for reference. i'm 5'5' 125 lbs and bought the top in small.,5,1,14,General,Tops,Knits +886,42,Perfect spring top,"I saw this peasant blouse online and thought it looked cute, but not really enough to spend the money on. i purchased a few other things instead. i happened to go into the store to see a different top in person and spotted this one. it is definitely cuter in person. as with most tops like this, it is baggy and loose. however, probably due to the elastic at the bottom, this one doesn't look overly big and shapeless. just a pretty top that will be perfect for spring. for reference, i am 5'6 115, a",5,1,9,General,Tops,Knits +881,37,Not for me...,"I keep trying to find a peplum that works for me, but so far i have been unsuccessful. i just do not think that my shape and the peplum shape play well together?aside from the peplum issue, this shirt had a massive amount of material and runs large. the material alone is thick, making it a bulkier shirt, then add the volume of the peplum and i looked (and felt) huge. needless to say, this one was returned, sale or no sale.",1,0,0,General,Tops,Knits +1049,34,Interesting pant!,I recommend zooming in on the fabric as there are like ink streaks on it which at first i thought was a flaw but it is clearly shown--and is actually a nice touch to make these different! the fit is true to size or a tiny bit small if you are curvy in the hips. i wear a 10-12 and the l is fine but i wouldn't want them any smaller. super lightweight the piping detail on the sides is really cute!,4,1,0,General Petite,Bottoms,Pants +862,48,Not for the petite or large chested,"Did not work for me. whatsoever. the stripes were adorable but the piece just didn't fit like on the model. the collar was practically choking me and the tie just didn't make my figure look the way it normally does. aka i looked frumpy and chunky, which i'm not. going back.",1,0,1,General,Tops,Knits +881,21,Pretty but the doesn't fit right.,"Alright, so i really love this shirt. but i am having it taken in to fit me. i weigh 110 and am 5 foot 3 and pretty petite, and this shirt is too big on me and i got an xs. i didn't wanna get xxs and am glad i didn't because i think it would be too short. i'm going to keep the shirt, but it is too big on me, it puffs out in the front and some in the back when you stand certain ways and i need to have it taken in, or else it isn't as flattering as it should be. the material is awesome and i love",4,1,4,General,Tops,Knits +872,28,Hideous,So this may be my least favorite thing i have ever bought from retailer. this top had so much extra material it was like wearing a bag or parachute. it looked a million times cuter in the photos.,1,0,0,General,Tops,Knits +828,35,Love it!,It is the perfect shirt that looks and feels great. i wear a size 4 and it fits perfectly.,5,1,0,General,Tops,Blouses +828,37,Classic,"This shirt fits beautifully, though might be tight for the large chested. the fabrics is very soft, and the look classic and feminine.",5,1,0,General,Tops,Blouses +1025,30,A bit too long,"I love these pants, but they are a bit too long. like the reviewer below, they hit me right at the ankles. i am 5'6"". i am going to hem them a bit. also they were a little bigger in the waist than expected--could have ordered a size 28 instead of a 29.",4,1,1,General,Bottoms,Jeans +1025,56,Love these!!,Every so often the perfect pair of bottoms comes along. this style was it for me. i'm tall 5'9 so the length fits perfect for a crop wide leg trouser. i will be able to wear these in the summer as they are light weight enough and also into fall before it gets too cold. can't wait to wear them. extra bonus i got them on sale. if you are short these will probably be more like a long leg trouser on you. also fit true to size.,5,1,0,General,Bottoms,Jeans +1022,31,A long last ; perfect leggings,"Can't say enough about these pants. +i often find leggings to be to revealing when wearing them with long but not long enough top. i have a longer torso so finding tops that hit this sweet spot is an issue for me. i also don't love long flowy tops with jeans all the time. the portions look all off and i look and feel heavy in my middle section. +cue these darlings! with out any buttons, zippers on the front your shirts will lay flat and crisp. i feel comfortable and appropriate at my causal work o",5,1,4,General,Bottoms,Jeans +394,21,,"I love this suit, the bottoms ran a bit too big on me. i'm usually a small, but an extra small would have fit more comfortably. the small wasn't huge, so i kept with them and im still very happy with this purchase.",5,1,0,Initmates,Intimate,Swim +394,45,"Fits tts, comfortable and flattering","I purchased these bottoms with the matching peplum top in romantic floral. i also purchased the higher waisted bottoms just in case. +i returned the higher bottoms and that's saying a lot. +i have two sons and now struggle with fit in regard to two piece bathing suits. +the higher bottoms just didn't fit right and i didn't need the extra coverage because these fit so well and the peplum gives extra coverage, though not really necessary. +the others cut in a bit in the seat and hips and these",5,1,2,Initmates,Intimate,Swim +394,30,,,5,1,0,Initmates,Intimate,Swim +394,37,Amazing bikini bottoms,"Oh how i dread online shopping for bikinis...especially bottoms. however, these bottoms are incredible. the fit is perfect. you know when you are wearing normal underwear and you ask yourself... ""why can't bathing suit bottoms just fit like this?"" these bikini bottoms do! you can't tell by the picture but they are a really great weight...not too thick and bulky...very flattering...perfect rear coverage...doesn't pinch your sides.truly the most flattering bottoms i've found in a long time. worth",5,1,8,Initmates,Intimate,Swim +828,19,Comfy and classy,"This shirt is so soft and luxuriously feeling. the material looks very nice and seems well made. it has a nice length to it, so it can be worn properly with leggings without any worry. i'm a 36d and can't get the button to close properly, so i'd recommend sizing up if this could be an issue for you. overall it will be a very versitile piece i'm excited to add to my wardrobe.",5,1,0,General,Tops,Blouses +828,70,Perfect white blouse,I love white blouses in the summer. this one is perfect. bought one size down and it is perfect. the lovely tailored neck is very flattering and hard to find. i do send it to the cleaners just to make sure it keeps that crisp cool look for hot summer days.,5,1,1,General,Tops,Blouses +1025,45,Mixed feelings,"I still have mixed feelings about this pants. the fabric is nice, soft and flows well. the fit is good, i ordered 30, could have gone with 29, not a big deal. the one thing that is off is the length - i am 5.7 and these come right to above my ankle...nowhere close to how they sit on the model. the issue with this length is that is neither here nor there, too short for regular pant length and too long for crops. i will probably have to hem them a bit, which is a disappointment when you pay so muc",3,1,8,General,Bottoms,Jeans +828,35,Summer top,"The color of this top is perfect for summer, it is a light lilac tone. the fabric is also light and super soft. great cut too - even my husband liked the cut of the shirt. + +i ordered a large based on other reviews but found the arms to be a little tight, but not enough not to keep the top. the shirt does run slim, being a 36d i do have to keep the top buttons unbutton but i am okay with wearing a little cami under the shirt.",4,1,0,General,Tops,Blouses +828,65,Love this top!,"I'm so glad i bought this. the picture doesn't do it justice. it's lightweight, flowy and super comfy. i'll be wearing this all the time. very lightweight so it doesn't get hot. love the material, it's soft, light and flattering! color says light grey but it does have a bit of a blue/lavender hue to it as another reviewer said. i love cloth & stone and this is one of my favorites! well worth the money!",5,1,0,General,Tops,Blouses +996,66,Very flattering,"Ordered in my normal size large and i love it. beautiful fit. striking pattern that's quite slimming. the stripes are deep chocolate next to a mauve purple gray on a white background. it looks black so lots of colors would work on top. the fabrication is a soft rib knit and it has a substantial elastic waistband. it overlaps in the front and the opening falls a bit high so that may be a deal breaker for some because it does expose some upper thigh. i like the look but i'm 5'3"" so it works well",5,1,4,General Petite,Bottoms,Skirts +1025,44,,,5,1,0,General,Bottoms,Jeans +828,46,Slim great material,"I love the color, it has a lavender hue. it's slightly see-through, but breathes nicely and is very soft and comfortable. it falls long in the back and fits slim through the torso.",4,1,4,General,Tops,Blouses +828,57,Falls to the back.,"1. i'm 5'5"" tall, 143 lbs and 38 (36d) - 32 -40 and the medium fit me well. + +2. my only problem is that the collar keeps falling to the back. i feel like the shoulder isn't cut right to sit on the shoulder. i seem to have this problem a lot with this brand, where the shirt just wants to fall to the back.",4,1,0,General,Tops,Blouses +828,44,Runs big,"This is a beautiful blouse however it runs big. i order the small and had to return it. my measurements are 5'4 135 34c-28-38 for reference. you will not regret buying this blouse but it has to be the right size if not it would look like it did on me, frumpy. i kept taking it off and putting it back on trying to make it work (because i liked the material that much) but if you look at the model she has her arms straight down. when i lifted my arms i had 3 inches of extra material on both side. th",4,1,3,General,Tops,Blouses +1008,33,Great skirt,"Love the material -- it is a thick cotton, but it is structured enough and thick enough so that it doesn't cling to me (in a bad way). its like wearing a sweater. my only beef with it is that the seam where the black material is stitched to the gray material creates a bump in the silhouette. (the black material is the same as the gray and it also has a herringbone pattern thats not really visible in the pictures) i would have preferred a uniform material rather than a panel sewn in. not a huge d",5,1,4,General,Bottoms,Skirts +828,40,,,5,1,0,General,Tops,Blouses +394,32,Great fit,"These bottoms are comfortable, soft and fit perfectly. the pattern is exactly the colors online.",5,1,0,Initmates,Intimate,Swim +1025,46,,"I love these, but i should have ordered the size 25 instead of my usual 26. i can wear them higher with a tight belt, but they are still too long. too cute to return though.",4,1,0,General,Bottoms,Jeans +828,25,Favorite shirt,"Best part: covers my bum. perfect for teaching, casual girls' night or casual date night. my only complaint is there aren't other colors. awful decision. i would have purchased at least 5 of these at the right price.",5,1,0,General,Tops,Blouses +1025,59,Snug in waist,"Right on trend, easy to wear, but a bit snug in waist. which the vendor gave item specific sizing to make the selection of the size a bit easier.",4,1,0,General,Bottoms,Jeans +394,38,Love it!,So soft and comfortable!,5,1,0,Initmates,Intimate,Swim +828,35,True to size,"This is a comfortable and easy shirt that is meant to be slightly looser. i wear a size small in all cloth and stone and found this shirt to be true to size. the extra small was too tight in the shoulders and didn't have the right look to it. + +same fabric as my other cloth and stone items, however, i had to steam the cuffed sleeves and back pleating after washing and drying to make it look nice and crisp. also, the cuffed sleeves are sewn that way, which i like.",5,1,1,General,Tops,Blouses +940,65,Truly unflattering!,"Granted that i am not as reed thin, or as young, as the model. but i am tall and reasonably slender. i have long hands and small wrists, which would be a factor in the overall effect of this garment. this poncho looked like some sad old stretched out who-knows-what that you'd keep in the car for emergency purposes, in case you needed warmth if the car broke down in a snowstorm -- and i have one of those foldable reflective blankets in the glove box for that purpose. i was looking for a statement",1,0,0,General,Tops,Sweaters +862,62,Basic top that does the trick,"This is a cute top that is very soft and comes in nice colors. it's body hugging, but not clingy. i'm 5'5"" 120 with square shoulders and a longer torso, and when i initially tried a small i thought it looked ok, but when i tried on the extra small it looked much better. the way the top is cut it fits a bit weird under the arms, as you can see in the photos, but it wasn't enough to keep me from picking up a few colors when it went on sale. i like wearing this under a jacket or cardigan with jeans",3,1,1,General,Tops,Knits +940,34,Wanted to love this,"I saw this sweater on-line and loved it until i tried it on. i'm 5-7, flat chested, 135 pounds and i ordered a size small. the sweater fit everywhere except for my arms. this sweater will work great if you are short. consider making your sweaters a little longer, because i do not consider myself tall.",1,0,1,General,Tops,Sweaters +940,41,Cute and comfy layer,"This is a nice sweater, it is comfortable and a great top layer. it fits tts but be aware that when you raise your arms it rides up pretty high. i bought the grey/brown option. i find it to be more brown than grey.",4,1,0,General,Tops,Sweaters +991,55,Just beautiful!,"What a special skirt. so beautiful, great quality. i got on sale, but still expensive . . and it was still worth it. i will be wearing this for years!",5,1,0,General,Bottoms,Skirts +940,59,,"Just bought red today to wear to a conference to stay warm over floreat peasant blouse and pilcro serif jeans. love love!! very flattering and plan to wear with skirts, on airplanes for warmth and for travel. very versatile . highly recommend .",5,1,0,General,Tops,Sweaters +862,44,,"I bought this top in all four colors. soft material, elegant design, relaxed fit- a true staple for every closet!",5,1,0,General,Tops,Knits +984,56,Beautiful,I really love this brand and i love the fit of this blazer. my bottons were loose on this jacket and i got the rose color too and i do agree with the other reviewer that the color is more terra-cotta. great for spring and cool summer night. it runs tts im a 36dd and the medium fit nice.,4,1,8,General Petite,Jackets,Jackets +862,41,Very flattering!,This top fits so well and looks much better on than in the picture.,5,1,0,General,Tops,Knits +984,24,"Nice color, bulky fit","Was looking more for a tailored, blazer like chino jacket. this was just too bulky. usually wear a 00p, ordered the 00, and could have put a chunky sweater underneath. 5'4'', 110 lbs, 32c for reference.",3,0,1,General Petite,Jackets,Jackets +940,65,Perfect fall cape.....easy to wear!,Love this medium weight wool cape. it is so much prettier in person. the photos look a bit boring but this cape is very versatile and simple to wear. some capes hang oddly on me but this one was flattering without the bulk. not itchy either. the photos don't really show the sleeves clearly but there is a sleeve built into the cape. the taupe color is a rich neutral that can be paired with thin or thicker turtlenecks or shirts. the sleeves are bracelet length so full length sweaters will show und,5,1,2,General,Tops,Sweaters +890,35,Really really ridiculously good looking,"I saw this sweater and just about died. i loved the accentuated shoulders and beautiful knit detail on the sleeves. lucky for me, retailer day started a couple of days after this sweater debuted, and i snagged it right away. i just got it and am in love. it fits true to size and the shoulders and sleeves are everything i hoped they would be. the neckline in very flattering as well. it is soft and the color is gorgeous. if there is a negative, it would be that it is a bit boxy in the torso, and doe",5,1,2,General Petite,Tops,Fine gauge +850,62,Lovely and unique!,"As is true of a bunch of the fall clothing photos, the colors are totally washed out in these model images which is such a shame. the embroidery is bright and vivid and totally unique on this! the bib area is actually a soft corduroy which i think is nice to transition into fall and winter. in terms of fit, i do feel like this is maybe geared more towards the slender build - it is a slim cut which i found really flattering for me since i sometimes swim in tunics. at 5'7"", 128# with a very small",5,1,12,General Petite,Tops,Blouses +940,41,Cozy poncho at just the right length,"I've had my eye on this poncho for weeks and finally scored the olive green one over thanksgiving/black friday special. i would say the color is more mustard yellow, which will go well with a variety of jewel-tone tops, etc. the poncho is a nice weight, but not too heavy. i am 4""11 with short arms, but i went ahead and bought the regular xs instead of the petite sizes and the length is perfect. i am seriously considering getting the cranberry one as well. a classic buy for winter which i'm sure",5,1,0,General,Tops,Sweaters +940,33,Love!!!,"This is such a fun pullover sweater! i'm not much for sweaters, so i thought this would be a neat alternative. im between a small and medium, so i went with the small due to the swing style. it fit wonderfully! i'm even happy with the length which completely covers my behind (i'm 5'6""). i choose the gray and it's a great neutral, but now i'm contemplating going back for the red as well! hopefully a promo will come along soon!",5,1,0,General,Tops,Sweaters +940,31,"Looks great, not the easiest to wear","Love a gray sweater and this one is stunning. layered with a plaid tunic and worn to work, with many compliments. the only downside is the poncho shape, with the large wing like sleeves, makes it impossible to wear a coat over this sweater. if you wanted to wear in the winter cold, you would need a cape. also not an ideal piece if you need to lift your arms for any reason. keeping that in mind though, i still really like it for days when i want to look cute and won't be don't a ton of moving aro",4,1,7,General,Tops,Sweaters +844,63,Breezy,Love this top-that simple,5,1,0,General,Tops,Blouses +862,74,Great service,"Originally got one with a stain. retailer quickly sent a replacement, +useful with many skirts and pants. well made.",5,1,0,General,Tops,Knits +940,39,But wear something underneath,"Colors are great, the fit is flattering, but as soon as you raise your arms, the whole shirt lifts... there is no picture of anyone lifting their arms... be sure to wear something under :-)",4,1,0,General,Tops,Sweaters +862,45,Classic versital shirt,"I purchased this shirt in white and black. the white is more ivory-isn, and is a bit thin/see through. the shirts can be worn with jeans, or dressed up with a skirt. i just wish it was a little more form fitting. i do like the hint of stretch in the fabric! very comfortable as well!",2,1,1,General,Tops,Knits +862,37,A nice basic,Thank goodness for a nice white basic tee that is not see through! i go back and forth between an xs and s depending on how i want an item to fit - i don't like things to be too form fitting because i still have a little post-baby pooch. i went with a s in this shirt and it works well. my only complaint is that the neckline is not totally straight - where the seam comes up from under the arm to hit the neckline it bumps out a little bit. but it's a great nicer basic that will go well with almost,4,1,2,General,Tops,Knits +844,43,Short and scratchy,"This top is beautiful! but the fabric is really stiff and itchy. in addition, it's rather cropped or short. the real disaster and heart break for me was when i washed it. the tag recommends dry cleaning, but allows for hand washing. i should have dry cleaned - it shrunk even more when i washed it on delicate setting in cold. too bad, because this looks so cute the first time you wear it. if you're up for a dry cleaning bill and don't mind a little stiff scratchy material, you'll be fine buying t",3,0,2,General,Tops,Blouses +940,47,Love love love,"I initially bought this in the stone color and loved it so much the first time i wore it that i went back for the red. without a doubt my favorite purchases of the season. have gotten so many compliments on both and despite the fact that the style isn't form fitting, it is still somehow very flattering. would highly recommend this sweater to anyone!",5,1,0,General,Tops,Sweaters +1022,25,Best jeans i've ever owned,"These jeans are so great, i'm thinking of getting a second pair for when the first wear out, despite the price. they hug my curves and make me feel like a bombshell. the fabric and stitching is all good quality and sturdy - these are comfy but they definitely are not thin like legging jeans. love them!",5,1,8,General,Bottoms,Jeans +850,64,,Looks and fits just like the picture. fabric is nice and soft. looking forward to wearing this tunic as soon as the weather cools just a little,5,1,0,General,Tops,Blouses +984,46,Nice jacket to add to my wardrobe,"I bought this in rose and i really like the jacket. the color is not rose but the picture is accurate. it is more terra cotta as previous reviewer's said. it is pretty casual but you can dress it up with a chunky necklace and dressy boots. i do wish it was a tad more fitted in the waist. i think it looks better buttoned, but i do wear it open as well.",5,1,3,General Petite,Jackets,Jackets +862,41,Great basic top,"I bought this in purple and then just now in navy.i love the sleeve length and neckline. this shirt is made of a very soft knit material a so its very comfy and flattering. goes well with jeans, shirts and shorts. i definitely recommend purchasing this shirt.",5,1,0,General,Tops,Knits +862,48,"Nice, but not amazing","I'm pretty flat-chested (34aa) so it's hard for me to say how the sizing runs on this top for others. to me, it's a slim fitting but not tight, true to size t-shirt. i tried the xs regular (dressing room photo) and the small petite (other photo) and i'd say the main fit difference was in the shoulders. the small petite fit me better in the shoulders (xs petite wasn't available). also the neckline of the small petite came up a little higher. the white is a slightly dingy off-white but i think the",4,1,19,General,Tops,Knits +940,30,For a specific person,"I love ponchos and the colors are gorgeous, but the pictures make it look much longer than it is. i would've loved it if i were petite but i personally don't think it's meant for taller people. such a shame.",3,1,0,General,Tops,Sweaters +940,56,Must have piece for fall,First saw this poncho on a petite blog and after reading reviews happily paid full price. i followed the petite reviews and purchased the xs regular. the length hits right below my bum so it's perfectly structured to wear with leggings. the cable knit is super soft and very warm. wore this for the first time last weekend layered over a long sleeve tee and was perfectly cozy outside for a fall day in chicago. this item will not last long and is well worth paying full price.,5,1,2,General,Tops,Sweaters +1080,26,Picture does not do it justice,"The dress i received was not in the least what i was expecting, and in the best way possible. i initially purchased the dress as something i could wear to work, but when i put it on, it was clear the dress was meant for something a bit more fun. it's more along the lines of a sweater dress and is very flattering and chic.",5,1,1,General Petite,Dresses,Dresses +850,41,Pretty!,Love! love! love this tunic! i was worried about getting the regular size because they don't have my size in petite anymore but im glad i took a chance getting the regular size. my daughter said its just perfect on me. very pretty!,5,1,0,General,Tops,Blouses +940,68,"Comfortable, good design","Love this poncho! purchased xs in gold/olive color and the length is good. i could have sized up for extra length but thought there was too much fabric in body. for reference-5'8"". slender. love the diagonal cable pattern and curved design. the sleeves are more comfortable for me pushed up a little but if left long works well and are about wrist length. the color is great for fall but could easily transition into winter.spring. the gray is a lighter gray and is nice, too, but size xs not availab",5,1,0,General,Tops,Sweaters +850,65,Fall perfection,"I fell in love with this tunic on instagram, and couldn't wait to find it during the tops promotion. it was absolutely not a disappointment. as the other reviewer mentioned, the colors of the embroidery are brighter than they appear in the online images, and this actually makes the shirt more beautiful--they're rich and fallish, but not at all over the top. + +i'm thrilled with the quality and overall cut of this tunic. i would agree that it might be best to run to a larger size in a range--i di",5,1,5,General,Tops,Blouses +1080,59,So nice but too short for me,"Great fabric and nice cut - like other reviewer said, fitted but not too....but it was just too short for my legs. i do wonder if the description is wrong but i didn't keep it long enough to measure and check this.",5,1,0,General Petite,Dresses,Dresses +862,28,,"Nice fit, wish it was a little longer but i really do like it and feel good when i wear it",5,1,0,General,Tops,Knits +844,61,Gorgeous!,Love this top! runs true to size. exactly as pictured.,5,1,1,General,Tops,Blouses +984,36,"Adorable, ordering the petite","Adorable jacket. i ordered the medium (5'4, 135 lbs). sleeves are long and have to roll them up. ordering the petite medium to see if it fits better. pink color is great.",5,1,7,General Petite,Jackets,Jackets +850,57,Fun casual tunic,"So soft. a casual tunic, yet polished and interesting enough for work. darker blue than the photo, and the colors are much brighter and prettier in person.",5,1,0,General,Tops,Blouses +940,35,Pretty poncho,"I purchased this sweater at my local retailer store a few weeks ago. i picked the dark grey color which is more of a neutral beige or oatmeal color. i love it! i just wish i had purchased it earlier to wear through the fall. it has a substantial weight and is warm. this sweater/poncho has a great drape that is really flattering, especially in the back. it does have slits on the sides so you really would need to wear a layer underneath. i've worn it with a turtleneck and button-ups and it looks rea",5,1,1,General,Tops,Sweaters +850,54,Cute but.....,There were no reviews when i ordered this tunic so nothing to help gauge fit. it is very cute but the fit is strange - very narrow in the shoulders and chest.,3,0,0,General,Tops,Blouses +862,25,Beautiful maroon top,This is a great everyday top for pairing with jeans or a nice skirt. love the wine/maroon color. super comfy. i took other reviewers' advice and ordered a size up and it was a little too big.,4,1,0,General,Tops,Knits +1104,49,Order small,"I had to order this dress three times to get the correct size. ordered a petite which worked great. i really like the dress now that i found the size that fits best. love the color! perfect for so many occasions, church, special events and dinner out. great with flats and wedges. i know i will be wearing it lots this summer. did i mention i love the color! worth repeating.",4,1,2,General Petite,Dresses,Dresses +940,60,Super cute. true poncho style.,"I tried this on in store but didn't purchase it due to price, then kicked myself afterwards when my size was sold out online. i really wanted the gray. i finally was able to order my size when it was restocked very briefly and am so happy i did. this is such a cute poncho. + +i also have the angel of the north poncho from last winter, and don't like that one nearly as much. that one was too long; this one is the perfect length. it curves down in the front and back, and then comes up at the sides r",5,1,2,General,Tops,Sweaters +984,58,My new go-to!,"I love this jacket! works so well with business casual outfits, and the color goes with almost everything! great over blouses or t shirts. by far my favorite purchase in quite a while!",5,1,0,General Petite,Jackets,Jackets +940,37,"Soft,cozy poncho--perfect for fall/winter!","I love this! i bought it in the red color. in person it is a deeper color than it looks online and it has some flecks of lighter yarn in it that just add to it's beauty. it is very soft and cozy. it is warm without being hot. i typically wear a small/sometimes medium at retailer. i bought a medium only because i wanted it to be a little longer so that i could wear it with leggings and feel comfortable. i am 5'8"" though, so if you are shorter than you may not need to size up. it looks great with a",5,1,0,General,Tops,Sweaters +975,65,Love it!,"Received the jacket today -- i love it but because it has no stretch in the material it feels a little snug across the shoulders. i have long arms and it fit perfect for the length. i tried to order the next size to see how it would fit, but it was sold out! i'll keep looking for it to be back in stock.",5,1,1,General,Jackets,Jackets +1035,42,Hip & trendy,This is my second pair of pilcro jeans and the second time i am totally impressed. these jeans have a comfortable stretch and rugged wash that is trendy & fun. they are the perfect everyday jean and look great casually with a pair of birkenstocks or converse low tops. the only thing worth pointing out is that i am pretty short (5'4) and the regular length fits me perfectly. this may be an issue for ladies lucky enough to have some extra inches on me.,5,1,0,General,Bottoms,Jeans +1080,62,Comfortable dress,I really like this dress a lot. the material is soft and comfortable. it is clingy but not in a bad way. the design can camouflage some figure problems. i thought it looked better with a belt so i added a skinny beige/pink belt which worked great. can't say enough about how comfortable this dress is.,5,1,2,General Petite,Dresses,Dresses +984,28,,,5,1,0,General Petite,Jackets,Jackets +940,23,,"This poncho is perfect! the slits on the side may seem intimidating at first, but wear a flowy tank under neath it for a nice added detail. it's easy to wear over a fitted dress as well, or a high-waisted full skirt. +i have red hair and the gold looks amazing with that hair color. but the grey and creme are neutral and go well with a lot of options.",5,1,0,General,Tops,Sweaters +850,39,Certainly lovely,"A lovely, creatively designed tunic that just isn't for me. the embroidery is certainly intricate and the chambray shirt has a wearable hand, but the combination on my body type didn't look quite right, probably because i am too top heavy and apple torsoed. i think if i were more slender, the fit would look like a flattering dress. i had purchased the size 10 and i am 36dd 140#.",4,1,1,General,Tops,Blouses +940,37,"Beautiful, warm sweater!","I saw this online, and decided to go to the store to have a look at it in person. i was not disappointed at all! it is so gorgeous! i purchased the burgundy color, and have received so many compliments. it is very well made. i am 5'5"", 126 lbs, and purchased a small. i think some others mentioned it falls short in back, but on me it falls well passed my bottom. maybe they purchased a petite.",5,1,0,General,Tops,Sweaters +940,29,Great fall fashion find!,"Like another reviewer, i initially passed by this sweater and thought nothing of it until i noticed it on display... super cute and ultra comfy... the kind of sweater that just beckons to be warn in the fall. i purchased this in the olive color and just love it. very cute and flattering for a poncho-type sweater. i do think it runs a bit large so i sized down for the perfect fit. i highly recommend this item!",5,1,4,General,Tops,Sweaters +984,36,"Very nice, comfortable, great color","Other than the color (i got the rose color), which is great, i think my favorite part about this jacket is that the sleeves are actually long enough. i am 5'7"" and the sleeves come right to my wrists, if not just a tad longer onto my hands. it's also got some stretch to it so it doesn't make you feel to stiff as you wear it; you can move in it :) it's very comfortable and pretty.",5,1,1,General Petite,Jackets,Jackets +940,34,I sized way down,"This is basically a poncho with arm holes. but it looks great and is well-made. +i got this in the wine, which is a beautiful color. the design is nice and looks expensive (but i'm not sure how it will hold up after washing), it is oversized and a little boxy. i'm a medium or large on top and i ended up purchasing an xs and it fits just fine in the shoulders and arms. the rest of it is still roomy (though short) but perfectly fine. i got this on sale, so it was well worth the price point.",4,1,0,General,Tops,Sweaters +984,72,The good and the bad,"First, the good: i like the basic shape of the jacket, with its crisply cut lapels +and rounded corners at the bottom...the functional pockets (including the +cool watch pocket), the size of the buttons, the color. i got the honey, +and it was lovely and intense,. now, the bad: +i got the regular 8. the jacket is at least an inch too short. although it's +a small, tight 8, the sleeves are strikingly too long. they would have to +be folded, and the lining which would show is not that attractive.",3,0,4,General Petite,Jackets,Jackets +984,39,Buttons falling off...,"This blazer is a nice weight for summer. it is more terracotta than rose, but is still a nice color. the fit is tts and flattering. however, the buttons were almost falling off the one i received. i didn't take this as a sign of great quality and plan to return it.",3,0,8,General Petite,Jackets,Jackets +984,52,Just meh for the price,"I am 5 feet and 120 lbs. i ordered the honey. quality was excellent. no button issues. fits true to size. i ordered a small petite. my issue was the chino fabric was too casual. it's okay. if it were on sale i would keep it, but not at full price. color is as shown in the honey. no issues on arm length. but i like mine a little longer. it's kind of menswear. which some gals would like. i am a 34 c and it only looks good buttoned up on me. i'd say if your on the fence give it a try. it's tts.",4,1,2,General Petite,Jackets,Jackets +940,39,"Beautiful sweater, poor sleeve design","This sweater is beautiful, especially in the bordeaux color. the cable knit in varying directions makes it interesting and unique and the length is great for us short waisted ladies. my big issue with this sweater is the sleeves. there really are no sleeves, just arm holes at the same level as the hem of the sweater, so you feel as if you need to keep your arms pinned to your sides to keep from lifting the sweater up to expose your midsection, or pushing the sleeves way up, which then results in",3,0,1,General,Tops,Sweaters +868,52,"Beautiful, full, flowing","I bought the wine color. typically wear med or large., med was plenty big.... the color is deep and beautiful. is so soft and flowing. i love it!",5,1,0,General,Tops,Knits +831,37,,,5,1,0,General Petite,Tops,Blouses +1033,56,Too skinny for me,"I was so sad to have to return these pilcro jeans. my calves are just too athletic for these jeans. they weren't comfortable. they were a little loose in the waist. so, sizing up, would not have fit the tight in the calves problem. i have two pairs of stetson crop flares and they fit perfectly. in fact i love the pilcro stetson crop flare style. wish retailer would sell more of this style.",4,1,3,General Petite,Bottoms,Jeans +831,40,Love this blouse,"This blouse is gorgeous, i purchased in two colors and absolutely love it. just a side note i normally wear a size small blouse or size 4-6 blouse, in this i went up a size and purchased the medium.",5,1,0,General Petite,Tops,Blouses +988,30,Cute but some major flaws,"The pattern is cute. it's a little more subtle than in the photos. the problems were the skirt are 1: pretty sure it will wrinkle in two seconds and 2: it has buttons down the front of it with no lining behind it. which means, if you sit down wearing this skirt and it doesn't lay quite right, it gaps and you can see whatever is or is not underneath! the buttons are like two inches apart, so it's not a tiny little gap. no thanks. also, this skirt fir true to size, it wasn't tight, just gappy.",3,0,10,General,Bottoms,Skirts +868,64,,"I love this top!! very comfortable and versatile!! +i will be purchasing the top in all the other colors!!",4,1,0,General Petite,Tops,Knits +996,28,Spicy and comfortable,"This skirt was very figure flattering, and the elastic waist is comfortable and does not cut into my sides! has a great look",5,1,0,General Petite,Bottoms,Skirts +831,47,Beautiful blouse can be tucked in or left out,"I bough this in the blue green color and it's absolutely beautiful -- just as it appears online. actually the shirt in general looks just like it does online -- it's fitted up top and flowy everywhere else. this may be because i'm fairly straight-figured -- it's possible it would be less flattering on a bigger bust. i agree with the other reviewers who say the fabric wrinkles too easily. i am sometimes an xs and sometimes a s, and i ordered the s in this and like how it fits. note: in meadow rue",5,1,5,General Petite,Tops,Blouses +868,58,Love the boho look!,"Soft and pretty, but way too big and wide. love the bell-sleeve detail. i'm exchanging for one size smaller.",4,1,0,General Petite,Tops,Knits +862,42,,,5,1,0,General,Tops,Knits +831,25,Perfect blouse!,"This blouse makes me feel young, vibrant, and beautiful! i got it in (2) colors with the coupon special. i love how it fits and it's slimming! love it. i have broad shoulders, and it is very slimming.",5,1,8,General Petite,Tops,Blouses +875,42,Size down if between sizes,I love the quality of this little gem. it's going to be used as an under a sweater top and also to fill a v-neck line dress up that's too low for me. it's made very well in my opinion but it runs a bit too full so if you are between sizes you could easily go down a size.,4,1,0,General,Tops,Knits +868,30,Love!,"Pretty obsessed with this top. it feels like a cotton, poncho. it's definitely made to be over-sized and flowy. it even hangs off the shoulder some. it does run very large. i'm normally a medium to a large and i purchased the xs (never ever an xs normally). even still it's loose as it's designed to be. so definitely size down 2 sizes. other than that super comfy and a casual top that can be worn to make my leggings and flip flops a little more ""fancy"". would also be nice with jeans for a casual",5,1,0,General Petite,Tops,Knits +1033,33,Love! but tight!,"I love pilcros! i have a few pairs and all in 28s, so that's what i ordered, however they are so tight i could even button them! i haven't gained any weight and all my old pairs fit fine... i liked the color and length so much i'm exchanging them for 29s. hopefully that will do the trick!",4,1,8,General Petite,Bottoms,Jeans +875,31,Cute little two-in-one,"Bought this top on a whim on a tops sale and am really glad i did. it's a nice two-in-one piece that can be dressed up for the office with a blazer or down with jeans and a sweater. striped portion of the shirt is a ponte stretchy material. i am 5'5"", 135lbs, 34c, curvy/muscular frame and the small was perfect and even roomy (i don't like things too tight).",4,1,1,General,Tops,Knits +1033,32,Perfect!,Absolutely love these. i ordered them in bronze and i'm thinking about getting the lilac pair as well. they're super comfortable and look great on.,5,1,7,General Petite,Bottoms,Jeans +831,55,,,4,1,0,General Petite,Tops,Blouses +996,28,Perfect,"When i put this skirt on my aunt said that looks like a skirt with class. she's right. this skirt feels as wonderful on as it looks. i love the faux leather slash, it is the perfect detail without detracting from a printed top. i think it is great to just slip on no zipper (for those days).i even pulled this on over a dress. bailey 44 hits it out of the park again. i have 3 dresses and now a skirt. t.e colors on the website are brighter than they are in person, just fyi.",5,1,0,General Petite,Bottoms,Skirts +862,54,,"This is a great tee.... i bought this in the green in a size m. i'm normally a small but because of the fitted look, i opted for the medium. i probably could have sized down to the small, but the medium is still fitted just not too tight, which is actually a nice look. the only thing i wish was different are the sleeves. the sleeves are just a little too puffy for me, but it's so cute that i'm keeping it.",4,1,1,General,Tops,Knits +862,54,Cute top,"I ordered the green and lilac. the pink color was not offered when i placed my order so that was not an option. i found that it ran true to size, but was a loose fit. the lilac color had white streaks from the the-dyed effect, but it looked like someone had spilled paint on the front in one area so i did not even try that one on. for now, i am keeping the green one, but it is a deeper green than pictured and also a looser fit than on the model. i do like that it is 100 percent cotton and very so",3,1,16,General,Tops,Knits +862,20,"Pretty feminine top, cuter than a tee","Bought this online to get something in the purple family. it's a deeper hue than pictured and, as others have noted, there are variations in the color all over. cute with jeans, definitely an upgrade from a boring old t. one word to the wise--saw the ""pink"" in the store today. definitely not pink--it's orange. i'm 5'6"", 127 lbs., and 34b. bought xs and it is perfect.",5,1,0,General,Tops,Knits +831,33,,"Cute and simple top. a little tight through the bust. looks great tucked or out, and super cute with a simple jacket. easy piece to dress up or down.",5,1,0,General Petite,Tops,Blouses +831,35,Put a stop to this top,"I love this outfit so much and bought the skirt pictured with the top on the model in high hopes my quest for the perfect date night outfit would be ended. not so. for starters the top is much more of a beige in person. a horrible unflattering color that few can get away with successfully. secondly there is just so. much. fabric. it billows and bunches all over the place to wear it out like that as shown would be silly and to tuck it in looks like i've tried to hard to make it ""work"", lastly the",1,0,2,General Petite,Tops,Blouses +831,39,,"I've got a bit of a love/hate relationship with this top. the fabric feels a little odd and wrinkles crazy hard, and i'm not a fan of the open ladder ribbon over the bust (really? who needs to see the top of my bra?). but i love love love the overall fit, the details (like the polka dot trim and the sheer tucks) and the color (blue green). it looks good tucked in or loose, and i can layer it under cardigans and jackets. i'll get a matching ribbon and sew it in under the ladder ribbon so it's act",5,1,19,General Petite,Tops,Blouses +862,63,Perfect little tee!,"This tee has the cutest details and the green is actually a beautiful, deeper green. the shirt has a great fit and looks so much more flattering on than the pictures show. (5'4"" 109# got an xs, slightly loose, exactly how i like it.) the somewhat mottled/dye type color makes it a casual piece for me; great with jeans. nice fabric, thickness.",5,1,6,General,Tops,Knits +1033,36,,"Super cute pants, fit and color just like model picture. i fall between a 28 and 29 waist, and all that was available was a 29; so i ordered it online. however, when they came it was just a bit too big/loose so i had to return them. if i had been able to get just the right size (maybe size own a bit if in questions) i think i would have kept them.",4,1,0,General Petite,Bottoms,Jeans +362,60,Sexy and comfortable,"Love this chemise. perfect blend of comfort and sexy. i bought it in pink, size small. i'm a 32d about 115 lbs and if fit perfectly, i could even probably go to an xs, but i didn't want to wait. the fabric is super soft and the color is vibrant. looks exactly like the picture. decent price.",5,1,2,Initmates,Intimate,Intimates +1033,40,Flattering cut,"Really like these -- they fit really well and look great with a pair of chucks and a sweater if i'm dressing down a bit, as well as with flats and a nicer blouse. really versatile. i'm kind of pear-shaped, and these seem to minimize my flaws a bit, too, so that never hurts!",5,1,3,General Petite,Bottoms,Jeans +831,51,,"I ordered the teal color - it is a beautiful color. the fit is a bit odd like one other person commented, but the pros outweigh the cons. i am thinking of ordering the other colors too.",4,1,1,General Petite,Tops,Blouses +1033,64,"Great fit, great colors","I had never worn pilcro jeans, and i took a chance and ordered without trying them on. i couldn't be more pleased! i wear a 26, but it is often difficult to find a good fitting pair of jeans. these fit comfortably and don't feel too tight, but are fitted enough to look great. i like the little bit of extra room around the top, allowing the jeans to feel comfortable. i'll be back for more pilcro jeans!",5,1,0,General Petite,Bottoms,Jeans +862,46,Love the feminine details,"The lilac pic of this shirt doesn't do it justice......it is so darn cute on! the band around the waist really draws your eye in and makes your waist look really small.... love that!!! also, the pleated sleeves are just so feminine and pretty! the fabric is like a washed cotton.....very soft. i can see this being dressed up or made really casual.....i bought the green color and am going to wear it with a chunky turquoise necklace and pencil skirt!",5,1,23,General,Tops,Knits +1033,31,,Love these! so comfy and a great color! also love that it came in petite! it is so hard to find avoid crop pant in petite!!!,5,1,0,General Petite,Bottoms,Jeans +362,31,Cute & comfy,"Love this chemise. the lace detail is cute, the length of the skirt is longer than many of the night gowns you'd find in the cute, not frumpy category, and overall it is super soft and comfortable for lounging and sleeping. bought the large, and i'm normally around a size 8-10, between medium and large depending on the cut of the item. the large is slightly on the big size, so the straps move around when i sleep. not a big deal for me, so i kept it.",5,1,1,Initmates,Intimate,Intimates +1033,41,Runs small.,"I usually wear 26 or 27 in pants, but i sized up to a 28p for these. the waist is a little big but better fit overall. i ended up buying them in the white also.",4,1,0,General Petite,Bottoms,Jeans +862,51,,,5,1,0,General Petite,Tops,Knits +831,43,Sweet,"I recently purchased this blouse in black. i love the soft yet crepe like fabric and the small bit of negative space trim just above the bust line gives it an air of elegance. comfortable and breathable, i see this becoming a ""how did i live without this"" staple.",5,1,0,General Petite,Tops,Blouses +868,66,I like it,"The moss color intrigued me so i ordered a medium instead of large because it looked oversized. i generally wear a large. medium is a good fit. probably could have ordered the small, but wanted to preserve the draping on the side. this top is very wide but it looks great on. so do size down. love the color variations. it's true to the pics and is a nice addition to my casual lifestyle.",4,1,11,General Petite,Tops,Knits +862,66,??so cute,Lately retailer tees have been misses for me but i was intrigued by the reviewers comments about the shaping of the tee to enhance the illusion of a waistline. that drew me in because i have a short waist and some shaped tees just cling there and emphasize rolls more than my waist. but not this one. it is more fitted along the back waist and looser in the front. i generally order size large in tees as i did with this one. i don't think the fit is too big because it's cut not to cling anywhere. i h,5,1,3,General Petite,Tops,Knits +868,35,,,5,1,0,General Petite,Tops,Knits +1033,29,Nice color and cut,"I love this pair to add some color to a plain outfit. however, they ran just a tad bigger than i expected.",4,1,0,General Petite,Bottoms,Jeans +868,52,"Sloppy, shapeless, ginormous top","I sized way down and this top was still shapeless and tent-like. the sweatshirt fabric overpowered the cute, feminine details.",1,0,0,General Petite,Tops,Knits +1033,53,High waist,"Those are very cute and lavender color is very beautiful in person, however i do not like the cut. waist goes about inch higher than usual pilcro, which for summer heat is something i do not find neither practical nor pretty and unfortunately i have to send them back : (. also, this year pilcro runs little bit tighter in waist than usual, so you might consider ordering one size up if you are between sizes.",4,1,8,General Petite,Bottoms,Jeans +862,70,Very retro,This top reminds me of something out of the 40's. it is super comfortable and just makes a very clean look,5,1,1,General Petite,Tops,Knits +868,28,So comfy!,I absolutely love this top! ordered the moss color in size xxs. i am 5'5 105 lbs. i typically wear xs and 0 in retailer clothing. this top is kinda flared/loose fitting so i would size down. the website currently says it's by everleigh but the tag says eri & ali. color is a little darker in person but tie dye effect is spot on. it's beautiful! and super super comfy! i am currently wearing it with my lululemons! but can defin see this top being dressed up with a cute pendant necklace and skinny bla,5,1,1,General Petite,Tops,Knits +1086,32,,"Lovely dress. the beautiful colors are exactly as shown on the website. i'm 5'2"" and it reaches about midway down my shin. i'm normally a size 0 and i ordered the x-small and it fits perfectly. definitely a keeper!",5,1,7,General Petite,Dresses,Dresses +1033,64,Great basics!,"Pilcros always fit perfectly and these jeans are no different. the style is great and a little different with the slits on the side. i bought the gold color which is a little brighter than pictured. for that reason, i'm on the fence about keeping them. i wish there were other bold colors to choose from since most of the other choices seem washed out.",5,1,10,General Petite,Bottoms,Jeans +831,41,Do not wash!,"True to size until it met the laundry! let my disappointment be a lesson -- $80 for a blouse that i no longer recognize. i washed this item as indicated by the care instructions and it shrunk by at least 30%. dry clean this garment, or spot clean at best.",3,0,17,General Petite,Tops,Blouses +831,38,Great blouse,"In love with this blouse, i first got in ivory went back and got in black, you can dress casual or up.",5,1,0,General Petite,Tops,Blouses +1033,32,Lovely gray crops,"Got these in my usual size and they are wonderful! the gray goes with everything, i'm hoping they come out with some greens or blues too!",5,1,1,General Petite,Bottoms,Jeans +1033,34,Wear these multiple times per week,"I love these jeans! i came on here to see if they were here on sale, and they are but alas, not in my size. i probably wear these three times per week - to work, going out with friends, all over. i got the gray and i would say the color on the site is true to how they look in person. i bought mine in the store and i will say that i've been on the fence about whether they're gray or purple but the site says gray. if you want a true gray that is a more blue-ish gray, then these are not it because",5,1,0,General Petite,Bottoms,Jeans +996,28,"Unstructured and not ""expensive""-looking","I bought this in the blue and really wanted to like it--i had plans to check sizing and then order it again in the red, as well! however, this skirt falls victim to the recent design trend of using a pattern for a structured skirt but substituting a softer fabric and (horrors!) an elastic waistband. this ended up just looking kind of cheap and sweatshirty as a result. back it went.",2,0,0,General Petite,Bottoms,Skirts +1033,43,Slimming jean for curvy girl,"I got these in gray. like other reviewers mentioned, the waist is a little higher (not 70s though) but the jean had great control so it ""holds"" everything in instead of creating a muffin top which many shorter waisted jeans do. contours to the leg. love it!",5,1,0,General Petite,Bottoms,Jeans +862,48,,,5,1,0,General Petite,Tops,Knits +862,64,Stylish tee,"Another wonderful deletta top is hanging in my closet! i love the cotton. i love the style. medium fit perfect. it is loose around the middle, so soft and comfortable. i purchased the lavender washout. i know i will be wearing this frequently.",5,1,0,General Petite,Tops,Knits +1033,42,,They are really cute. the fabric is a little stiff but the details are nice. the waist seems big so i suggest sizing down. i bought 27 p my usual size and sent them back for a 26 p because the waist was big.,5,1,1,General Petite,Bottoms,Jeans +1033,40,White runs large,"I ordered this in the white in my usual size 26, and these were too big on me (5'5"", 110lbs). the pants bunched up unattractively around my thighs because they were not form-fitting. i am hoping to exchange for the size 25 because i prefer a tighter fit. the style of the pants were very cute. i like the side slit detail and the cropped look. i'm hoping these pants work out for me in the smaller size.",4,1,2,General Petite,Bottoms,Jeans +868,40,,,4,1,0,General Petite,Tops,Knits +1033,71,,,5,1,0,General Petite,Bottoms,Jeans +1033,38,Pilcro rules!,"I love pilcro and this pair is another proof why i love it! i bought a pair in light red - the color is so pretty. the fit is perfect. i normally wear petites, but this time bought a regular length, and i love it. it is not too long, as the pants are cropped, and not too short as the petite cut might have been. +pilcro never disappoints me, as i have many different pairs and love each one of them. may go for another color in this same style. they are awesome!!",5,1,2,General Petite,Bottoms,Jeans +831,39,Cute yet super wrinkly,"Super cut but easily wrinkles. eg. i ironed it, got dressed, then bent down to tie my daughters shoe and the whole front bottom was super wrinkly. i thought that it'd go away but it didn't... just got worse by the time i got out of my car at work... front and back were noticeably wrinkled all day.",3,1,3,General Petite,Tops,Blouses +862,66,,Living a casual life style in key largo fl. i love a fitted t-shirt instead of a boxy shape. i'm 67 years and am very active and fit. love your store. classy,4,1,1,General Petite,Tops,Knits +868,75,This is this season's favorite brand for me.,This is tee is so soft and the other one in the same brand is the same. love the details also and the color wash.,5,1,0,General,Tops,Knits +831,44,Great blouse for any occasion,"Great fit, looks excellent with jeans as well as tucked in with a pencil skirt.",5,1,0,General Petite,Tops,Blouses +1033,36,Gets baggy with wear,"These are very well-made jeans, the fabric is substantial and gives a lot of stretch with movement. i adore the extra inch or so in the rise of the waist, and they make my butt look great. however, these jeans fit like a glove when i put them on first thing, but within an hour or so of wear they are so baggy it's like wearing a size bigger. i'd say perhaps buy a size smaller if you want them to fit snugly through the day. if you like roomy, then buy your regular size.",3,1,4,General Petite,Bottoms,Jeans +862,57,,"Super cute and comfortable. has a shape, not boxy.",4,1,0,General Petite,Tops,Knits +1033,60,Best summer jeans!,"These are my favorite pair of capris/ankle jeans ever! i'm 5'4"", 120lbs and got the 28 petite in gray. the fit is fantastic and the length is perfect for summer days (couple inches above my ankles). the gray color is so versatile and i can dress it up or down. i plan on getting it in other colors as well since the fit is so good.",5,1,3,General Petite,Bottoms,Jeans +862,38,"Nice ""fancy"" tee","Super flattering cut and the material is like buttah! no seriously, it's like a 10-yr old tee soft! the colors aren't even close compared to online, though. the green is a brighter almost grass green and the pink is more like a salmon color. i didn't see the lilac in the store.",5,1,1,General Petite,Tops,Knits +831,38,Lovely top,I purchased the teal/blue and the color is striking. though i put true to size the decorative top is slightly tight around the bust. and the bottom too is fitted and not flowy. for a looser fit you may want to size up. for a more fitted look it is true to size.,5,1,0,General Petite,Tops,Blouses +831,31,Great work top,"I snagged this top with the 25% off sale and it's adorable. i got the white, and it goes great with some skinny jeans or tucked into a skirt. i found it ran true to size. my only complaint is that like some other reviewers have stated, it does wrinkly very easily. and i would say for full price i don't think the quality is worth the cost, but on sale, it's a great shirt.",5,1,0,General Petite,Tops,Blouses +1060,36,Love these pants!,These are a great versatile pair of black pants. they look chic without trying too hard and they work well dressed up or down. they do run a bit big as others have said. i generally wear a 16 and thats what i got in these but they're definitely big and bag out by the end of the day.,5,1,1,General,Bottoms,Pants +862,64,,The top is adorable and i love it. however the pink is not pink but more of a very faded orange color. i was really hoping for pink but the shirt is a keeper.,5,1,6,General Petite,Tops,Knits +835,49,Very short!!,"I love this fabric, and the design details of this top. but i am only 5'3, and this top ends above my waist! shoulders and sleeves fit perfectly and the neck and back details are very flattering. i ended up keeping the shirt because i love the fabric so much, but i am trying to find a way to wear this shirt with how short it is. tucking in or wearing with high-waisted bottoms are all i can figure out, for someone without a perfectly flat tummy.",3,1,6,General Petite,Tops,Blouses +862,59,Great top and a great price,"This top also caught my eye in my local store, and being a devoted deletta lover, i had to buy. it is a straight, slim fit, so i bought a medium, instead of my usual small, to glide over my curvy lower half. it's thin, finely woven knit, with two cute little buttons at the top of the side slit; the cut and longer length in the back is very flattering. i bought the heathered black and have worn with my black pilcro leggings; it's a great top to wear over leggings or skinny jeans; no belts with th",5,1,7,General Petite,Tops,Knits +1078,31,,"I wanted to love this dress so badly. it came and the material is beautiful, but when i put it on it fit so awkwardly. there was just no way to make it look good. maybe i needed a smaller size, but oh well.",3,0,0,General,Dresses,Dresses +1082,43,See through top,"This dress is very pretty but only the bottom is lined. the top is completely see through and you would need to wear a tank or slip underneath. i wanted a dress i could just throw on and not have to layer so it didm't work for me. but if you don't mind layering or your bra peeking through, it's still a very beautiful dress. i'm usually a petite in most things but this wasn't available in p so i ordered an xs. the length was good (not too long, not too short) but it was cut way too low for me. on",3,1,4,General Petite,Dresses,Dresses +862,61,"Comfortable, unique, polished pullover top",I love this top! the fit is perfect and i particularly like the longer back. there is a split between the shorter front and longer back which is brilliant so you can move and sit without it pulling around your bum. looks great with skinny jeans or with leggings. it is very light weight and is perfect for spring. the sleeves are slightly fitted and very comfortable. the quality and construction is great. i am 5 feet and got a petite xs which is perfect.,5,1,6,General Petite,Tops,Knits +1083,45,Beautiful and unique,"I wore this dress to my work christmas party and got compliments all night! it's a beautiful dress with fantastic details, and it is very comfortable. i am 5' 5.5"" and about 122 lbs. i am typically a 0 on top, 2 waist, and 2-4 bottom. i ordered the 2 and it was the right choice for me. it was a little snug on the bum and around the thighs (it pulled ever so slightly in the front) but it still looked good. it's stretchy without looking like it is stretchy. the top part of the dress fit well, and",5,1,0,General Petite,Dresses,Dresses +1083,49,Purchase before this dress sells out!,"The photo of this dress does not do it justice. this dress is absolutely gorgeous. the construction is very high quality. i always worry about peekaboos with button front dresses as i am very busty. total non-issue with this dress. the petite fit is also spot on. it is slightly large in the back bodice for me, but i always have that problem. it's an easy tailoring fix. + +i think i'm in love with byron lars <3",5,1,2,General Petite,Dresses,Dresses +1078,56,Gorgeous colorway,"Perfect length and colors. i get asked where i got it on the reg, every time i wear it. mostly a casual vibe with flat sandals...",4,1,0,General,Dresses,Dresses +1083,44,Stunning,"I tried this dress on and thought it was stunning. the cut was just right, it fit all my slight curves. i'm 5'8 and 145lbs- a slender build and bought the size 8. it is lined and the material is high quality with an illusion of sheer. the length hits me just on my knees and the look is so audrey hepburn. the belt is made of a grosgrain black material and adds another elegant touch if used; it looks great without it too. of course this dress comes at a high price point, but with the 25% of full p",5,1,2,General Petite,Dresses,Dresses +864,26,Sherbrooke peplum top,"Fits great, comfortable!",5,1,0,General,Tops,Knits +1082,35,Pretty but not for me,"I love the colors in this dress, it's very feminine. however, i wish it came in petite because even the xs is too overwhelming on my frame.",3,0,4,General Petite,Dresses,Dresses +1083,49,Gorgeous - but tight at the hips.,"This dress is beautiful and unique but if you are more pear shaped get the correct size to fit your hips. it fits very close through the behind --but is stretchy. as i was putting it on and felt it hugging me closely, i thought it would never work - but when i looked in the mirror i found it looked quite nice even though it clings. and the stretch allows plenty of movement. if i size up to allow more room in the hips then i think it will be too loose on top. so i will just wear it with spanx. th",5,1,2,General Petite,Dresses,Dresses +835,64,Love it,This top has beautiful subtle metallic bits in the pattern. fell in love with the fabric. looks great with high-waist pants.,5,1,2,General Petite,Tops,Blouses +864,46,Really cute,Great transitional top. comfy and great fit. i like my tops to be somewhat roomy and this was great in a small. i usually buy medium.,5,1,0,General,Tops,Knits +1083,54,Ridiculously flattering,"This dress fitted me like a glove. i ordered the size 4, at 5ft7 and 130lbs, it was perfect though i could not weigh two pounds more. i cannot wait to wear it, it has that wow thing going for it, very good quality too.",5,1,0,General Petite,Dresses,Dresses +1082,42,Beautiful flirty dress,"This dress is adorable. the ruffles are a very cute detail. the top is a bit transparent. for the price it probably should have included something to make it less transparent, but it is so cute i will just put a cami underneath. runs true to size, my usual xsmall fit perfect (5'4"", 34c, 135 lbs). i didn't find the top to be that blousy, i thought it was perfect for me.",5,1,2,General Petite,Dresses,Dresses +864,66,I looked like a clown,"Don't get me wrong, this is probably cute on someone else, but not me. i looked in the mirror and just laughed, it was that bad. so if you're considering getting this, size down. ordered mine in large and it looks like i'm wearing a barrel. the pink is pretty but the horizontal striping did nothing for my shape. the fabric is soft. i'm just over trying peplums.",2,1,0,General,Tops,Knits +1082,49,,I love the dress as shown in the photo. thankfully i had a chance to see the dress in the store. it is sheer. can see thru it. can not wear this to work.,1,0,0,General Petite,Dresses,Dresses +835,52,Lovely fabric but not pretty design,"Despite the delicacy of the fabric and femininity of the patterns, the cut of this blouse is rather androgynous and not in a flattering or modern way. ick. so disappointed.",3,0,3,General Petite,Tops,Blouses +862,49,Simple top,This is a comfortable tunic piece with ample rear coverage. it is lightweight and there is room to layer a thin tank top underneath.the ivory is a marled heather with ivory buttons. it is not anything special in terms of style but it will serve the purpose of being a casual separate for around the house or for a quick errand.,3,0,2,General Petite,Tops,Knits +1083,39,Show stopper,"Sexy, yet sweet and demure? all points checked with cute little number. this is the third byron dress i've bought and like the melodist, i purchased the 8p and had the same issue--too loose in the hips",5,1,0,General,Dresses,Dresses +875,52,"Cute, but runs a little small","This is very cute, but i will have to size up my large to extra large. and normally i wear a medium or large. it is quite tight as a large. it looks a lot cuter on the model. so i am hoping the extra large does it.",4,1,4,General,Tops,Knits +1083,43,Another beautiful byron lars,"This is my third byron lars and as usual it is absolutely gorgeous and so worth the price. it completely flatters the body and all the details add so much interest, creating a very unique dress.",5,1,0,General,Dresses,Dresses +1083,67,Third time is the charm !!!!,"Several months ago i bought the byron lars pieced brocade dress (size 10) it's a little large through the torso area but with the belt it fits good enough. since i have loved this dress so much i wanted another byron lars dress so i bought the carissima sheath and the sunrose dress both in a 10. they both were way too big so i ordered a size 8 and they both just barely fit ??? oh was i disappointed....so one more try, i ordered this dress the allusione sheath size 10, and yepeee it fits perfect",5,1,1,General,Dresses,Dresses +1078,34,"Great fit, short","This is a cute dress, it fits well. i have a bust do it's not as ""loose"" as it is on the model. runs short. i'm 5'8"" solid size 10",4,1,11,General,Dresses,Dresses +897,29,I want to love it!,"Just got this in the mail yesterday and i want so badly to love it but it's just a little too big and boxy. i'm 5'5"", 125lbs and ordered a small but i really wish i'd ordered the xs. not sure if i'll exchange or just return. seems high quality and the pattern is gorgeous. it's basically exactly what i'm looking for until i actually put it on and then it just kind of looks like i'm wearing my grandpa's old sweater.",3,1,2,General,Tops,Fine gauge +895,47,Soft and flattering,"I bought this in the dark gray and it's got a lot of blue undertones to it. it's beautiful and flattering in my regular size, not too fitted -- not as loose as on the model but still roomy enough. i'll take the advice of a previous reviewer and wash only the armpits when needed. this fabric is so delicate i'm afraid it will shrink if i ever submerge the whole thing in water. it's a gorgeous piece and i'm happy to have it for the remaining cool days of the season.",5,1,1,General,Tops,Fine gauge +916,62,Beautiful!,"This sweater is beautiful and looks exactly as pictured in terms of fit, length, and color. the fabric is super soft and not at all itchy - feels soft like a boucle type knit. the sleeves are 3/4 length and the weight is maybe a medium-weight (not super warm). i wouldn't see this taking me too far into a northeastern winter, but for right now it's perfect!! fit is tts :)",5,1,13,General,Tops,Fine gauge +1078,25,Adorable!,"I love this dress; however, b/c of my broad shoulders i need to size up. i would say if you have a straight and slender frame then it's tts. the bottam half was fine it was a tad bit snug around the arm pits for me. it is very cute for spring summer. it is sold out.",5,1,0,General,Dresses,Dresses +875,61,,Love this top.!!! this is a very comfortable everyday top worn primarily with jeans. please make it in more colors. i think it should be less expensive.,4,1,1,General,Tops,Knits +865,35,"Great, comfy top","I loved this top when i first saw it online and it did not disappoint when i received it in the mail. it's very lightweight, perfect for spring, cool summer night, early fall. i really like the design and like that you can tuck it in. there is enough fabric in the front to give it a ""flowy"" look that i appreciate bc i will be giving birth soon and my post baby body will likely need some coverage! great top!",5,1,1,General,Tops,Knits +916,39,So soft,"Surprisingly, this poncho is both flattering and soft. i must say i didn't think the fabric would be as soft, since a lot of knits have wool, but this is great. i purchased both xs/s and xs/s p. +the petite was just slightly more fitted, so i went with that. i love the boat neck, on me, it gives the poncho an elegant look. colors are nice and neutral.i think i will wear this with dresses and jeans, both. great purchase. (115 lbs, 30dd, 26.5 in waist)",5,1,0,General,Tops,Fine gauge +1078,39,"Cute, shorter, went with regualr size","I am so glad i tried this on last minute in my store... it was on a tbale and saw it no hte stylist picks so decided why not try it on. i thought i would need a petite, but hte elngth of the regualr hit me almsot one inch above my knee, which is a sweet spot for me. petite may hit me too high to be able to pull ths casual style at work, (and i wear character shirts with jeans or joggers on the weekends)... so i ordered the 0 for me (the store 0 had a stain on it :-( + +i am 115 lbs for referenc",5,1,3,General,Dresses,Dresses +1110,29,Gorgeous,"Gorgeous dress, colors as appear in picture, thick material- quality is good. sizing- im usually a size 2 or small, got a small, and it is big in the chest/ length is below the knee. would recommend a size smaller than normal. not a huge deal- small alteration job.",5,1,0,General Petite,Dresses,Dresses +895,38,Washers beware,"This is a lovely top. received many compliments. felt very feminine, and perfect for chilly spring. please take this to the dry cleaners, you will avoid feeling distraught as i did after washing it, which is the recommended method to clean it, and seeing it shrunk to half it's previous size. sad.",4,1,0,General,Tops,Fine gauge +1078,53,,This dress is good quality but the designers today really need to design their clothing line with the busty woman in mind.,4,0,0,General,Dresses,Dresses +916,51,Adorable!,I love this poncho/sweater. it feels cozy and looks really cool. can't wait til the weather cools down so i can wear it.,5,1,1,General,Tops,Fine gauge +1049,49,Great all-around pants!,"I saw army green pants similar to this in the store, but then found these on line and ordered them instead. i love them. they stretch out a bit so i am glad i sized down. i could possibly have sized down even one more size. i got a 27. the waist is very comfortable, so maybe this is just the fit...after all, they are basically stylish fatiques. either way, they are casual but on trend. i have planned a ton of outfits in my head already because these pants will go with so much! i think the cuff w",5,1,1,General Petite,Bottoms,Pants +1059,53,If the description had matched the product...,"It gets a little old to receive products over and over that do not match the photo or description of the product, retailer! the photo shows a black pant with blue colored striping. the pants that i got are black with green and brown striping. i find the color combination in the photo to be what i wanted and since the fit was nice (albeit short and i'm only 5'5"" tall) i would have kept these. unfortunately, the pants that i got are nowhere close to the description so i will be returning them. the f",3,0,0,General,Bottoms,Pants +1078,33,Must have if you can find it,"I searched far and wide for this dress. after ordering an 8, 10 and 12 from 3 different stores in two different cities, in a span of 2 months, i finally settled on the 10! i literally went searching for this while on vacation, too. i'm 5'5.5"", 160 lbs and 36c bust and the 10 fit perfectly. this dress is adorable and i've worn it to the office and on the weekends. this will definitely be in my biweekly rotation this summer. the quality is on point and it was definitely worth the price tag. i was",5,1,2,General,Dresses,Dresses +1059,40,Sweet trousers,These menswear inspired trouser and beyond cute and comfy. great color and fit. soft interior. dress up with a blazer or go casua with a tee. adorable.,5,1,0,General,Bottoms,Pants +1078,58,Fun dress!,"Great little shift dress! for me it seemed to run true to size. i'm 5' 4.5"" and curvy. the regular size 10 fit perfect, about 3"" above the knee. a really fun design with the fringe. can't wait to wear once the snow is completely gone.",5,1,0,General,Dresses,Dresses +1049,35,Not as pictured?,"I received these pants, but they are not as pictured, see the photo of the back pockets, there is a detail there that was not on the pants that i received. i'm not sure about these, the quality is nice, but they are much baggier than shown and i ordered 2 sizes down.",3,0,3,General Petite,Bottoms,Pants +1078,37,Get it now!,This is soo cute and definitely runs tts. i ordered both the 6 and the 8 and ended up keeping the 8. i absolutley love this and i think it is unique and fun! i plan to wear it on a vacation in a month.,5,1,5,General,Dresses,Dresses +1059,44,Love these throw back pants!,"I love clothes, and my mom raised me to look for styles that are different, and unique. these pants are it! they fit beautifully, but run slightly big. i'm between a 4 and a 6, actually kept both. the 4 fits great in the hips and legs, plenty of room if you have curves (i do not), but it's a tad tight in the waist, if that helps. these are a perfect length, at 5' 7"" they hit above my ankle bone, and look perfect w a pointed, closed shoe. i love the colors, and am bored to death of black and grey",5,1,0,General,Bottoms,Pants +1078,30,Love this dress!,"I'm 5 feet tall, so dresses are hard to find for me. but, the petite sizes fit accurately. i'm very pleased with the dress!!!",5,1,2,General,Dresses,Dresses +1078,38,Great fit & so cute!,"Really really like this dress. expected it to be shorter based on other reviews, but at 5'6 it it was a great length for me. it is true to size and while it was a little bit of a loose fit, it was just enough to hide trouble areas. sometimes i struggle with dresses such as this because they are too big on top and snug in the hip area, but this one was perfect for me. great find!",5,1,0,General,Dresses,Dresses +1059,49,Very comfortable,I love these pants. i saw them and had to have them. i love the classic plaid style and have always loved the blue/green combination. i purchased the fisherman sweater and saw these pants and new it would be a hit. get compliments on this combo all the time.,5,1,1,General,Bottoms,Pants +916,45,,"First, thanks retailer for not putting itchy wool or fur in this! it's so soft! gorgeous bias for is super flattering for those of us with less than perfect bodies. for reference, i'm 5'5"", 32dd, 28, 38. size xs/s was perfect.",5,1,1,General,Tops,Fine gauge +895,34,Perfect lightweight sweater!,I've worn this twice now and got a ton of compliments on it. it's so comfortable and looks great. the lavender color is gorgeous. highly recommend.,5,1,1,General,Tops,Fine gauge +1036,46,Favorite jeans,"These are fantastic jeans. true to size but know that if you are average height, you'll need to wear heels with these. imo flare pants look much better with heels anyway.",5,1,0,General,Bottoms,Jeans +916,37,In love,"I am a little retailer obsessed and have a lot of clothing from here....this has to be the best thing i've ever purchased. it is so soft and beautiful. i am 5'11 and 150lbs and got the m/l ...fits perfectly and doesn't swallow me up but it does hide my bottom and the sides come up but not to wear my side stomach is showing. it does sit at an angle on the body but to me that's so perfect, a little different and not a defect. it is not itchy whats so ever. i love this with skinny jeans and brown boo",5,1,5,General,Tops,Fine gauge +897,66,Soft,"I ordered my normal size large and am sadly returning because it's overly large and long on my frame. the slight dolman sleeves are too long and wide and better suited for longer arms than mine. love the pointelle sleeves. they add a soft feminine vibe. hard to tell from the photos, but the texture is almost fuzzy. the gray color is beautiful and its actually made from multi colored beige and gray that looks silver in the light. it doesn't itch or shed. i don't like it enough to try a smaller",4,1,0,General,Tops,Fine gauge +916,43,Awesome poncho,"Just to back up what everyone else is saying, this poncho is perfect. it is indeed super soft! casual and fun. i personally thought the coloring at the bottom was even prettier than pictured. this poncho is not tight around the neck, yet not lose. it goes right over your head without messing up your hair. i love the sleeves. they can be worn above the elbow or easily pulled just down below it. a great alternative to a sweater. i ordered the petite xs/s and i'm 5'3. hits right at bum.",5,1,0,General,Tops,Fine gauge +895,50,Much nicer on than on the hanger!,"I liked this sweater in the picture but was less impressed when i saw it in the store. it looked a bit odd and perhaps cheap to me. still i decided to leave it on my wish list and got it as a christmas gift. once i tried it on, i really liked the way it looked and felt! it's flattering, comfortable and looks great with jeans! it's really cozy! i rated it tts but you could almost size down on it.",4,1,3,General,Tops,Fine gauge +897,46,,"This is a very sweet/soft sweater, however it runs very large and is very boxy! i would say at least size down 1-2 sizes! i wanted to love them but i had to send it back!!",3,1,1,General,Tops,Fine gauge +65,33,Casual short,Cute casual drawstring short. runs a little large but nice style for an oversized look. nice length for long legs.,5,1,0,General,Bottoms,Shorts +1078,59,So cute!,"This dress is even better in person! i am usually a size 2 and i went up to a 4. it is my favorite dress this spring! it is so cute with booties or sandals. i would say that it runs slightly small, so you should get the next size up if you're busty or have hips. it has been selling fast, you should get it while you can! :)",5,1,2,General,Dresses,Dresses +875,44,,I loved how soft the top was on my skin... plus the sexy detail in the back was a win !,5,1,1,General,Tops,Knits +897,54,A beautiful versatile sweater.,I purchased this sweater in grey to take on a fall european trip. it is very pretty without being overly frilly. a marled heather grey color. soft and warm without being too bulky. light enough to wear in the daytime but with enough coverage to transition into a cool evening. casual enough to wear over a tee or blouse with jeans yet sleek enough to pair with a skirt or dress. it is a roomy fit without being sloppy. i like things a bit loose and comfy - not too tight and am happy with the medium,4,1,0,General,Tops,Fine gauge +1078,50,,"I love this dress! i spotted it in the store yesterday right before walking out. i almost missed it! i'm so glad that i didn't because this dress is super cute. the fit is nice too. not too short. the fringe detailing is very cool. i cannot wait to wear this dress this spring/summer. casual enough for flip flops, but could also be dressed up with some cute wedge sandals.",5,1,7,General,Dresses,Dresses +1078,51,"Flirty, pretty, stripey fun","More of an a-line rather than tunic shape--which makes this a great, flattering, spring-through-summer party and barbecue throw on. true to size, washable. the indigo and purpley-gray pop with the mix of rose stripes, and the fringe and length keep it from being dowdy. i'm 5'5"" and this hit mid thigh. i keep pulling it out of the closet and trying it on! can't wait for the weather to turn in earnest to wear this sassiness out.",5,1,2,General,Dresses,Dresses +895,43,Pretty - but dry clean only,"Great sweater - very pretty and warm. i would say it fits true to size, but the fit itself/style is just a little roomier - just like on the model. i usually take an xs and the xs fit great. +the tag says to dry clean or hand wash in cold. i always wash my wool sweaters in cold water, in a garment bag, on delicate wash and have never had a problem. +but, when i did that for this sweater, it shrunk to a size that would fit a 4 year old. the fabric in the arms stuck together, like velcro. very inter",4,1,20,General,Tops,Fine gauge +557,39,Great lounge wear,Excellent dress for lounging in the house or for sleeping. very comfortable and a little sexy at the same time.,5,1,3,Initmates,Intimate,Layering +895,42,,,5,1,0,General,Tops,Fine gauge +823,37,,"This is a great quality top. it did not look great on me, since i am quite top heavy. but is lovely.",5,1,0,General,Tops,Blouses +823,43,Great if you are thin!,"I wish this shirt would not have had so much material. it would make a great maternity top! if you are really thin, it might work for you too.",2,0,0,General,Tops,Blouses +916,40,Love! right brand?,"Absolutely love! as others have mentioned, it's super comfy and the colors in the bottom definitely brighten up the sweater. the online brand says monogram, but the tag says sleeping on snow....weird.",5,1,1,General,Tops,Fine gauge +1059,37,Wow,I get the great reviews. these do for me what no jogger could. i have hips. i never thought these would work. they do and they look just as cool on me as the model. i am a 10-12. i could only find a 12 but i think a 10 would be perfect. they are effortlessly cool and casual...for all body types. i'm so excited i tried these on.,5,1,0,General Petite,Bottoms,Pants +1104,41,Absolutely love this,"This is my fourth amadi piece from retailer. i love their signature fitted crossover top design which i am finding in many of their pieces (like the lola jumpsuit, crossfront lola dress and others). this dress has the same crossover top design, with a slim maxi silhouette. the fabric is 97% rayon and 3% nylon with a neat texture that doesn't come through on the product photo but adds to its appeal in my opinion because it hides wrinkles. it fits tts and the same as the other amadi pie",5,1,8,General,Dresses,Dresses +897,56,,"Soft, slouchy, and comfortable. +what more could you ask for?",5,1,0,General,Tops,Fine gauge +897,21,A little too big...,"This sweater is super cute and perfect for a fall day. however, i am 5&#39;9&quot; and ordered a small which was way too long in the arms (the sleeves came down to my fingers). wish there was an xs i could order because i do love it.",4,1,0,General,Tops,Fine gauge +1059,25,Flatteringly cute,"My only wish is that the front waistband were more high-waisted, but other than that, the pants are darling--flattering, vintage yet on-trend and made with high quality fabric and tailoring. i am 5'2"" 125 pounds and i bought a size 4. they are a perfect fit.",5,1,0,General Petite,Bottoms,Pants +895,43,Beautiful and comfortable but not flattering,"This sweater was gorgeous, however, i think it was to boxy for my figure. it had to go back as it was not flattering.i would recommend this product to someone with a taller slimmer figure. i'm 5'6 145 lbs.",4,1,0,General,Tops,Fine gauge +1059,39,Great fit,"I received so many compliments on these pants! these are not only classic, they fit amazing...look great with heels and/or booties. match both black and brown.",5,1,0,General Petite,Bottoms,Pants +1059,41,Super cute for the office!,"So, i usually find that retailer tops run large (everywhere else i'm a medium, but i'm always a small at retailer) but with pants or slacks i'm usually an 8 and i always have to size up in retailer to a 10, but based on some of the other ""runs large"" reviews, i stuck with my normal size 8 and they fit perfectly! super cute. not lined, but the material has a nice weight to it, so that doesn't bother me. will def be wearing to the office.",5,1,0,General Petite,Bottoms,Pants +865,48,,"This top is super cute and comfy! just wish they would have made more xl's - ran out fast! i am 5'10 and usually wear an 8-10 top in retailer, so i purchased a large in this top to get the length and look of the model in the picture. it was too short and didn't fall like the picture, i tried to exchange for the xl and it was already sold out! bummer! was looking forward to wearing this all summer! 4 stars for running out of a size so quickly! please make more!!",4,1,1,General,Tops,Knits +998,61,Wowza,This is a beautiful skirt that is extremely well made.,5,1,0,General,Bottoms,Skirts +1078,34,"Wider hips, beware","I noticed most of the comments on here in which it worked for women are those who are petite and slim. i'm neither. i'm 5'9, 36c, hourglass, with more meat to my bones. my thoughts... +_________ +pros: +- fabric is amazing, breathable, great summer dress (but i'd wear it more as a top honestly). +- fairly easy to get on. +- ample room in chest. + +_________ +cons: +- too short. like others mentioned, if you're tall, this is going to be an issue. +- too snug in the hips. i tried on a size 12 and",4,1,2,General,Dresses,Dresses +916,40,Super cute,I love this poncho. it' so soft and cozy!! looks great with a pair of tights or jeans. just adorable.,4,1,0,General,Tops,Fine gauge +916,42,Poncho love,"I have many ponchos! i think they are timeless, fun, and sophisticated. and this one is definitely a nice addition to my wardrobe. as many have mentioned, the center of the poncho is off center, however, this does not detract from the beautiful pattern on this item. i will enjoy wearing it (with a tee or tank underneath) this winter and fall. great purchase.",4,1,0,General,Tops,Fine gauge +1078,28,Cute and stylish,"This is so cute...i love the stripe and fringe combo. i took my typical size, 4. kind of short for a 5'7 frame, but love otherwise.",4,1,0,General,Dresses,Dresses +1078,35,"Short, but great dress","This dress is great but extremely short. i'm 5'6"" wear a size 4/6. the 6 looked like a tunic on me it was so short.",4,1,0,General,Dresses,Dresses +895,60,Sporty but delicate,"Great design & execution - this is essentially a striped jersey sleeveless turtleneck, made of a nice, high-quality jersey. with a delicate lightweight soft sweater attached over it. so you get this really pretty look where the jersey underlay means the sweater hangs beautifully, no clinging at all. and the sleeves are just the sheer sweater - so pretty. + +i got the lavender - looks exactly like the pic. and it is true to size.",5,1,5,General,Tops,Fine gauge +897,41,Favorite new sweater,"Love this sweater! beautiful detail, thicker yarn and well made. sweater has more structure to it than i had anticipated, which makes it look more tailered while being soft and comfortable. hits my lower hip and i'm 5'6"". receive compliments every time i wear it.",5,1,0,General,Tops,Fine gauge +916,64,Adorable,"When this poncho first came online i ordered it in the xs/s, my usual size. i was a little disappointed that the point in the front oddly hung low & was off-center. the back was centered. i returned it. when i spotted them at the store recently, i tried on a few in the xs/s to compare & see how others hung. i found that one of them hung fine in the front (centered), the back was a little off center which was fine. it's soft & comfy, love the soft white color & border trim. it's just perfect!",5,1,0,General,Tops,Fine gauge +1059,62,Versitile and fun,"I love these pants. i vary between 10 & 12, the 10 fit perfectly since they are designed on the fuller size, perfect for my body type of small waist and a bit of bottom. so many colors to coordinate with these pants. teal green, ""retailer"" yellow, black...i am not fond of ankle pants, prefer longer pants. i took the cuffs down and lengthened the pants. the only problem is that these pants are so exquisitely made, removing the cuff tacks was a challenge! perfect pants for those of us who have shape",5,1,0,General Petite,Bottoms,Pants +1059,38,Great trousers,Great pants. i'm 5'6 and about 130. the size 2 fit nice at the waist and loose in the thigh. they hit right at the ankle. the colors are nice/ muted. the details are great. overall great pants.,5,1,1,General Petite,Bottoms,Pants +916,46,Perfect poncho sweater,"So soft, high quality, perfect poncho sweater that will go with every pair of jeans you have. love!",5,1,0,General,Tops,Fine gauge +1078,70,,"Love this dress. the description says ""pull over styling"" but it's not. there is a side zipper which i think makes for a better fit. i bought a 4 which fit great. i'm 5'4"" 125 lbs and it hits right above the knee.",5,1,8,General,Dresses,Dresses +916,47,Lovely poncho!,"I was hesitant to buy this, but i'm so glad i did. this is a beautiful poncho. i am petite and usually ponchos overwhelm me, but this fits just right. it is extremely soft, not itchy at all. the color along the bottom of the poncho is actually a bright pink color, it looks a little more red in the photo to me. i'm still happy with this. it will be a wonderful addition to my fall/winter wardrobe. great product!",5,1,3,General,Tops,Fine gauge +1078,28,Cute but very short,"Very cute and high-quality dress but it is very short. the length wouldn't be that much of an issue except for the fringe (which is awesome and unique, by the way) hits right at the butt. wish this dress (and, subsequently the fringe) was 3 inches longer.",3,1,1,General,Dresses,Dresses +395,63,"More of these, retailer!!!","Best bathing suit bottoms ever. low-rise doesn't work forever, and this bottom is perfect if you want a little more coverage without being too mom-ish. the ruching gives it a really cute retro feel (as opposed to a granny panties feel). my usual size small fits great, and i definitely did not have the problem another reviewer did with it coming up past the belly button (it hits me right where it hits the model in the photo). i just wish they made it in more prints! there are some really cute top",5,1,3,Initmates,Intimate,Swim +1086,32,Shrinks!!,"I recently bought this dress and wore it once. i really liked it! it was comfy, cute and fit well. but... then i washed it. i followed the washing instructions exactly, but now it looks more like a shirt than a dress and it's completely unwearable. i'm super disappointed because i thought this dress would be a wardrobe staple this summer.",2,0,6,General Petite,Dresses,Dresses +577,30,,"This romper is extremely well made and the colors are even more beautiful in person. however, i found it to run extremely short in the torso. i couldn't get my arms through the sleeves after stepping into it without ripping the garment. for reference i'm 5'9 with a slightly longer than average torso. i ordered my normal size m.",3,0,5,General,Bottoms,Shorts +249,37,,Such a fun jacket! great to wear in the spring or to the office as an alternative to a formal blazer. very comfortable!,5,1,0,General Petite,Intimate,Lounge +1086,66,Well designed,"Love cloth and stone. this dress looks and fits exactly as pictured. soft and casual, with great design details.",5,1,13,General Petite,Dresses,Dresses +577,63,Ahahahaha,"This was so ridiculous on me. i'm 5'8"" 120 usually a 2/xs. so i ordered the xs. the inseam of the shorts are so short they barely cover my bum. and i mean barely. the romper itself was so wide that two of me could have fit in it. love the colors, fabric, and the non-elasticized waist. if you are under 5'5"" this might work for you in non-petite sizing.",3,0,4,General,Bottoms,Shorts +395,39,Great fabric & lots of coverage,"High quality fabric and lots of bottom/ back coverage. also, it did not cut into my hips (which is fabulous!) ...so, if you're looking for a little more coverage this is your bottom. i found it true to size...i'm 5'8"" and 150 lbs and i got a size 8 :)",5,1,2,Initmates,Intimate,Swim +833,46,Wow piece,"I bought this in both colors,for it is perfect for me.it looks great with jeans and then dress it up later with pants.this is why i love retailer!",5,1,0,General,Tops,Blouses +1088,49,Beautiful dress,I love this dress. the colors are beautiful. i find it hard to find dresses that are knee length and with sleeves and flattering. this is all three. my only complaint is sleeves are a bit long but overall...awesome!,4,1,2,General Petite,Dresses,Dresses +577,44,All in ones are tricky,I really like this romper and i ordered it to fit my bottom. i'm a 6 on the bottom and 4 up top. i ordered a mp to cover the bottom and a petite for my height. it's a keeper but i will be belting or adding something to cinch it at the waist so that it has more of a shape.,4,1,0,General,Bottoms,Shorts +249,34,,This jacket is perfect. swings just the right amount without looking too big.,5,1,0,General Petite,Intimate,Lounge +395,32,Great coverage,I ordered these in a medium and they fit but i wanted more coverage so i sized up. i wear a 26 or 27 and i took the large. the large isn't tight at all but the medium was. i like my bottoms to have a lot of coverage and don't mind them a little big. i like how much coverage they provide but still look feminine and cute.,5,1,1,Initmates,Intimate,Swim +395,36,Perfect!,"Oh how i have searched for a mid-rise bottom that was not matronly, and finally i have found one! they cover just enough of the back without looking like my mothers bathing suit butt, and the ruched sides add just enough interest to not be boring in a solid color. and speaking of the color, the blue is beautiful. i am happy with these and hope they hold up for several years. i am 125 lbs and the small fit perfect.",5,1,8,Initmates,Intimate,Swim +249,37,Nice jacket!,I saw this jacket in the store and it looks and fit beautiful! it fits tts and is forgiving to the curvy. this is a staple piece to have during the fall or spring. highly recommend.,5,1,1,General Petite,Intimate,Lounge +1045,33,Stylish,These are very stylish. if you are short they are a little baggy at the bottom. they are a bit over-priced. i bought them before they went on sale. good quality and feel light and airy.,4,1,3,General,Bottoms,Pants +1083,38,I'm torn on this dress...,"I love the concept of this dress. i love the stripes, ruffle hem and little cut up detail. but it runs huge. i'm 5'3"", 148 lbs, and typically wear a 6-8. i went with the xs in this dress. it flairs out significantly near the waist and hips which makes it super comfortable, but not the most flattering. i wish they had tapered it in slightly to give it a slightly more fitted look. i'm keeping it and think it will be cute with booties in the fall. but i'm not 100% on it",4,1,9,General,Dresses,Dresses +1083,39,,,5,1,0,General,Dresses,Dresses +249,64,Such a great staple!,I just bought this jacket for my mom to take with her on a trip to europe. it is perfect! perfect packing piece that doesnt wrinkle and is a substantial enough weight to wear on chilly evenings. considering buying an additional one in my size...,5,1,0,General Petite,Intimate,Lounge +932,48,,I can't wait for the milder weather to arrive so i can wear this tunic. it is very stylish and elegant and one of those rare pieces that makes you feel good wearing it.,5,1,4,General,Tops,Sweaters +1083,29,Runs very large,"The other reviewers are right, this runs huge. why have a number of cute tops been running so large lately?! i'm 5'1 and 100 lbs and was drowning in the xxs petite. it also almost reached my knees. i thought it'd be a cute little tunic to wear in the fall but it just looks ridiculous because of how large it is and how there's no taper or shape. maybe even order 2 sizes down. the quality is pretty good if you can make the sizing work for you.",3,1,2,General,Dresses,Dresses +1086,48,Wanted to love this dress,"After trying several sizes, including petite and regular, i am sad to return this dress. the regular sizes were too long on me (i am 5'4"") and although the petite fit me just a little short, the biggest issue was how tent like it fit me. i wanted it to look like it does on the model but i just couldn't get the fit. usually i have great luck with cloth & stone.",2,0,5,General Petite,Dresses,Dresses +395,52,Nice butt coverage,"I am hippie and always worry about coverage. this was a nice fit, good coverage but did not look old-ladyish.",4,1,1,Initmates,Intimate,Swim +1083,66,Has potential,"I felt like a 12 year old wearing my big sister's dress. it's a bit too roomy and long for my frame in my normal size large, hitting below my knees. the top part fits my large, 34g chest nicely but it becomes a wide a-line through the hips. the fabric is a bit thick like a sweatshirt knit so it doesn't flow softly over the body. the fabric of the lace vee insert at the hem is thick and looks awkward. i love the black and white stripes. very striking. would love a top in these colors and fabric,",4,1,2,General,Dresses,Dresses +1083,67,Disappointing,"This dress is adorable in the photo; however, in reality, it fits like a tent. the top would be okay although i would need a smaller size if i were to keep it. it flares out in the skirt to become an a-line and it's just not very flattering. if i had read the reviews before ordering, i would have sized down, but i ordered before any reviews had been posted. sadly, i must return.",2,0,3,General,Dresses,Dresses +395,89,,"Beautiful fabric, great quality, fits true to size. love them!",5,1,0,Initmates,Intimate,Swim +249,57,Didn't work out,"Nice weight and loved the design, but the inside was what i loved the most. it doesn't show in the photos, but the zipper is a light blue and the fabric is double-sided, so the inside is lined with light blue flowers on a darker blue background. cute detail! the only drawback was the length of the sleeves. they were about 2"" too long...and i have long arms! there wasn't enough stretch in band of the sleeve to keep them up once you pushed them up. the only other option i came up with was to fold",3,1,0,General Petite,Intimate,Lounge +1088,46,Certain body type,"Yes, i bought this dress in anticipation of wearing it right away. it's not mean for everybody. it would look good on a stick figure. if you have some hips, they balloon out.",3,0,1,General Petite,Dresses,Dresses +829,51,The definition of a conversation piece,"This is a quirky, whimsical, uniquely designed top that's sure to get a lot of comments and opinions (and hopefully good ones!). i really love it. think it is what it is, a fun, conversation piece. and isn't that what's great about fashion? tts, very comfy, yes boxy, but i don't think in a bad way. the ruffle on the bottom is adorable. would look great with slim ivory or white denim and booties, or even a darker denim. hits mid bum. nice quality too.",5,1,0,General,Tops,Blouses +249,25,Quality jacket,"Like the other reviewer said, there's a nice inner lining, and the material of the jacket is just so nice. looks a little like a blazer when worn, but the heather gray makes it a dress up or down sort of piece.",5,1,0,General Petite,Intimate,Lounge +1088,24,,I absolutely love this dress! it's great for business casual. it's also such a great color for the transition into fall.,5,1,1,General Petite,Dresses,Dresses +577,55,Weird fit,"I am 5' 7"" - 110 lbs. ordered my normal xs and the bottom portion was way over sized. it fit like a parachute, you could fit about 12 of me in the bottoms and very short. nice quality material, but extremely awkward fit.",1,0,1,General,Bottoms,Shorts +395,32,Great fit,These bottoms are super comfortable. i think they run a little big for a small. i bought another swimsuit from retailer and the bottoms are also small and fit a little better than these. it goes well with the peplum swimsuit top. im so excited about wearing them this season!!,5,1,1,Initmates,Intimate,Swim +1083,40,Cute casual dress.,This is a cute casual dress that could be worn with flip flops or boots.,4,1,0,General,Dresses,Dresses +577,36,,"This romper is really cute. it's flowy and wide at the middle, which i like. it's comfortable. i ordered my usual size small and it was too big. i'm hoping an exchange will do the trick .",4,1,2,General,Bottoms,Shorts +829,53,"Runs large, too boxy","The material is nice and of good thick, quality. feels a bit stiff due to the lovely embroidery. unfortunately this top runs large and is not fitted at all. as the material is thick and stiff it does not drape well which makes for an unflattering look.",4,1,0,General,Tops,Blouses +936,35,,I just received this and had ordered it in my normal size small and it is way too big! sadly xs is sold out so i will just have to return mine. the style is like a swing coat and zips up the front. the material is thinner but nice and can be worn over sweaters or bulkier items! the color is more beige in real life.,4,1,0,General,Tops,Sweaters +395,33,Vintage beach ready,Love this vintage high waisted bikini bottom! fits true to size. it pulls up to a little past my belly button and the runching is in all the right places. i'm not too sure how it will stay put in the waist area for a dip in the ocean . can't wait to lounge around in it ar the beach though.,5,1,2,Initmates,Intimate,Swim +936,23,,I absolutely love this piece. it's a beautiful and chic piece that is perfect for any occasion,5,1,1,General,Tops,Sweaters +936,69,"Fantastic piece - very timeless, great color","I love this, just bought it and so glad i did. really want to wear it out, so hopefully the weather will cool down soon since i am in the south and we are experiencing an extremely warm winter. regardless, it will be with me a long time...so if i don't use it this season, i will eventually as it is timeless and goes with anything.",5,1,2,General,Tops,Sweaters +395,58,Perfect two-piece,"Ok, so who likes to buy bathing suits? apparently i do, because this one arrived today in the white and rust, and i'm buying the black one in a second! i can't pass up such a flattering suit. the ruched bottom gives just enough extra so it's not skin tight to your bottom. and the top has just the right amount of cover. the whole suit is easy to wear, nicely made, and flattering through the roof.",5,1,0,Initmates,Intimate,Swim +876,36,Cute but...,"This shirt is adorable but it's really just a cotton t-shirt. based on the picture online, i thought it would have more weight, be a more substantial fabric. again, it's adorable but not sure how long it will last.",5,1,1,General,Tops,Knits +833,37,,"Ordered both the black and white and ordered both in 0 and p2. preferred the black over white and the p2 fit the best. however, they reminded me too much of a maternity top so they both went back. +if you order you will need to wear a cami underneath?at least i would. not a terrible top, just not for me.",4,1,9,General,Tops,Blouses +1076,59,Beautiful,I bought this dress on a whim. i am so glad i did! got it in black. it is stunning and comfortable,5,1,0,General,Dresses,Dresses +876,59,Tee with a bit of style,"Cute tee. it's a casual tee with some nice detailing that gives it some style. the fabric is a good thickness. not see-through thin but light enough for warm weather. the color should match pretty much anything. nice neckline. i think it runs slightly large. i hover between a small, extra small with tops and the xs fit nicely. i do have narrow shoulders, 32dd, so women with normal to wide shoulders might prefer their usual size. i don't expect people to gush over it with compliments but it it a",5,1,5,General,Tops,Knits +1084,50,Too short shorter than written tunic not dress,"Dress is nice but can't be worn without tights or you are at a risk of indecently exposing yourself. it is around 30"" in length so is more of a tunic than a dress. i'm only 5'1 and it was too short . can't imagine anyone taller even trying to wear this !",1,0,5,General Petite,Dresses,Dresses +876,66,Great tee,"It's hard to find a comfortable, attractive tee. this one is it for me. ordered a large. it skims perfectly over my back and lower half. no grabbing. sleeves are cut nicely for those of us who don't love their upper arms. the lacing adds nice detail and interest. it's soft and comfy. it's an unusual color that will go with almost any bottom. great now and under a jean jacket or cardigan as the weather cools.",5,1,4,General,Tops,Knits +876,36,Fun top,"Cute top, great for the inner maid marian fan. :) fun twist on t-shirt in regular size. also ordered the alexandria top in somewhat similar vein, but didn't care for that one at all. this one was cute and the fit is flattering. the other is boxy and boring to me. recommend this one.",5,1,5,General,Tops,Knits +1084,52,"Nicely fitted, lined dress but very warm","Great dress, nicely structured, but the fabric is very thick and since it's lined, it's a very ""warm"" dress. not something you would wear in the spring, especially in the summer. ordered in petite, so hem length was perfect on me (i'm 5').",4,1,0,General Petite,Dresses,Dresses +876,26,Great top with a little extra!,"Love this top--the material is very soft and though this isn't a thick tshirt, it holds its shape and supports the grommet detailing nicely. i'm 5'7"", about 130, not busty, and got a small--fits great! the color is more of an off-rose/blush (has more of a brown tint than the photo shows).",5,1,2,General,Tops,Knits +866,48,"Fabric seems cheaply made, very tight sleeves","I liked the colors and the design but it's kind of an odd fabric, no give at all and no drape. stiff and kind of structured feeling for a casual cardigan. the sleeves are extremely narrow and tight. i ordered a medium and it felt like a ace bandage squeezing my arms. my arms are normal sized. if you have exceptionally narrow arms, might work for you. sending it back.",3,0,5,General,Tops,Knits +1099,36,Prepare for compliments,"I actually saw this dress on an associate and didn't like it. but as i was trying on other things, i saw my size hanging on a rack in the dressing room and thought - why not, just try it. glad i did! it is so flattering on and you can dress it up or down it's so versatile. i received so many compliments when i wore this, glad i gave it a try!",5,1,0,General Petite,Dresses,Dresses +1099,62,Lovely!,"I absolutely adore this dress! i was nervous to try it because i just had a baby, thinking that the waist tie looked potentially bulky/stiff based on the images. i am so glad i gave this a shot - it is actually one of the few dresses that i am comfortable wearing right now. the tie helps make me look like i have a waist, even though i don't right now, while covering up some of the leftover baby weight. i grabbed this is my usual size s (27 / 34b / 5'7""), and found it to fit perfectly, plus the t",5,1,0,General Petite,Dresses,Dresses +1099,48,Best summer buy!,The print caught my eye. then i felt the breathable cotton fabric and had to try it on. i am only 5'2'' and have a small waist but sized 32dd bust with hips and have a hard time finding clothes that fit well.. this dress fit me perfectly! i have dressed it up and down and always get compliments. this dress was on the pricey side but has turned out to be worth every penny.,5,1,0,General Petite,Dresses,Dresses +1099,35,Flattering!,"Wow, i didn't think this dress would work on my curvy frame. i still have a baby belly and some dresses look like mumu's on me. this was so flattering, the waist cinches nicely and the length is just above the knee. i am 5.6"" and 145lbs for reference. the weight its light/cottony and it looks great with flats and wedges. +love it!",5,1,0,General Petite,Dresses,Dresses +1099,39,Cuter than expected,"My stylist brought me the regular xs to try on in the store and almost told me i should buy it... the length seemed just fine, but i usually get petite so decided to order the xs petite before deciding... good decision, there is less fabric in the skirt, so it seemed anyway, so i am less overwhelmed buy the skirt. the cut is super flattering, and length was actually better (the longer sides hit ,me around the knee). i wasn't sold on the dolor, as i have pale skin, but there is enough dark to com",5,1,1,General Petite,Dresses,Dresses +1099,32,Best best best best ever,"This dress is the absolute best. it is comfy, flattering, cute - pretty much the best dress ever. as a previous reviewer said, ti is a 3 - even 4 - season dress. throw it on with boots and a wool cardi in the winter and youre all set. i didnt even think twice about buying it. perfect length- a little longer in the back but not too short in the front (and i do not like short dresses/skirts). dont think about it... just buy.",5,1,0,General Petite,Dresses,Dresses +1099,38,Defines the waist,"I really liked this dress. the tie defines the waist, and the skirt volume is flattering. one minor concern i had was the dress is a bit thin, although the skirt is lined. i think this will be a great summer in fall transition piece.",4,1,0,General Petite,Dresses,Dresses +854,51,,"So gorgeous! the details make this tank so special! the subtle sequin around the neckline are just enough to make this a dress-up or dress-down top. perfect with skinny jeans for an evening date night or a black cardigan for the office. the fabric is soft -- almost like a very light weight knit sweater, but so light that you can wear it for summer.",5,1,3,General Petite,Tops,Knits +1080,53,Eye candy...,"I haven't gotten a dress from retailer in a long time that i like as i do this one! this is the old retailer-quality, extras, and unique design! fits like it was made for me-tts, i am 5'5"", 142 lbs and the 6 is perfection! no enlarged arm holes or funky fit...it has lining as well as a tu-tu slip underneath so you can create your own fullness in the skirt. it is very fitted at the bust and waist and will hide numerous flaws at the hips. this dress is spectacular so don't wait...press the button!!!!",5,1,1,General,Dresses,Dresses +854,39,"Gorgeous and airy, but large!","Saw online and had to have. got it home and i was swimming in it! i normally am a size l in most retailer brands, but this felt so large! the actual top is lovely, with an airy artistic quality to it. not sure if i will go back for the medium or not.",3,1,2,General Petite,Tops,Knits +1104,38,Beautiful dress,"This dress is really beautiful and high quality. the pattern, color, and fabric are great. the fit is flattering (i'm hourglass to pear shaped) and the size perfect for me in petite. please keep offering high quality clothes in petite sizes by higher end designers.",5,1,1,General,Dresses,Dresses +1099,51,Channeling sophia loren!,"Was hopeful this might work on my petite pear shape (i am 5', probably 135-140lb; one to two sizes larger on the bottom) when i first saw online so went to store to give the regular size a trial run before ordering the petite size online. you can never tell with these flare dresses - some just make the hips look so much worse and haven't had a lot of luck with casual retailer flare dresses this season. first tried on the medium and fell in love instantly - was looking a little big but thought orde",5,1,7,General Petite,Dresses,Dresses +1099,34,Worth a shot!,"I walked right by this dress until an associate of mine asked me to try it on. i am so glad she did. this dress is far more flattering on me then i expected and it has pockets! after assessing it further, i decided i liked the material it is lined and will not make you look like a wrinkled up paper bag after sitting down. i bought a small, i compared the medium and both would work on my frame because of the tie waist. i am 5ft 3"" 137 lbs 36b chest and i have a proportionate athletic figure. for",5,1,13,General Petite,Dresses,Dresses +1099,37,"So comfy, great cut, pockets, win for petites","My new favorite! i wouldn't have thought twice about this dress handling on a rack in store, but after seeing so many cute pics of ladies in this dress, i caved. i needed a petite, so ordered a sp and xsp. the length on both is perfect. i'm 5'0"" and both hit above my knee in front and hit at in back and on sides. i didn't try on a regular in store, but based on the sp/xsp, i'm pretty sure there'd be too much material for a petite frame. the xsp is cut slimmer and if i had a tiny waist, i'd proba",5,1,0,General Petite,Dresses,Dresses +1099,56,Great touring dress,"I just bought this dress in the store and i love it. i'm in my 50s and it does every thing i need a dress to do. it has sleeves, it's modest enough and shows my shape. the colors are great and go with most shoes. i'm heading to italy soon and this one will see me through many museums and churches. great buy!",5,1,1,General Petite,Dresses,Dresses +1075,36,"Beautiful, but totally see-through","This dress is elegant and really lovely. it looks like a throwback to the 20s and 30s. it drapes nicely and i think it would be flattering on most body types. and this is why i am recommending it. but be warned: it runs large. + +the problem with the dress is that the slip might as well not be there at all--it is completely sheer. for example, i have a couple tattoos and you can see them right through the fabric, which is not the look i'm going for. this might be a deal breaker for some. for me, i",3,1,0,General,Dresses,Dresses +1099,65,,"This dress is an absolute win. i was won over on the hanger by the linen fabric's lightweight nature, and then i tried it on. such a good fit for my high waist, and the tie was super flattering. i love this with booties as i was wearing today, but think it will be adorable with espadrilles as well for a more summery look. it's also the rare three season dress, with its cut and coloring working most of the year. for sizing, i'd say it's true to size. i got my regular size s with no trouble with",5,1,5,General Petite,Dresses,Dresses +854,40,Uncomfortable,I didn't realize that there were sequins on the design. they kept poking my shoulders and made the top very uncomfortable. the white material was also not very flattering on me. it went back.,2,0,1,General Petite,Tops,Knits +27,28,So glad this comes in 32 d!,This bra surprised me by how good it looks on. the placement of the lace and cups creates a flattering silhouette.,5,1,0,Initmates,Intimate,Intimates +1099,47,,,5,0,0,General Petite,Dresses,Dresses +578,34,"Great bodysuit, fabric stretches with wear","I'm 5'5"" 127lbs. ordered size small. not sheer. bodysuit snaps. great to wear with skirts and wide leg pants!!",4,1,0,Initmates,Intimate,Layering +1055,63,,"I took the advise of a reviewer and sized down to xs. i am 5'6 and 110. i could take them off without unbuttoning them, they were hugh, even the xs! they looked like a halloween costume. even at the discounted sale price, awful and kind of made me laugh. but i guess that's why they are still available at this sale price.",1,0,1,General Petite,Bottoms,Pants +854,55,Must see in person,"It's easy to miss the fine details that make this top special.the fabric inset around the collar & front placket is an abstract blossoming spring branch print overlaid with 3d decorative embroidery and clear sequins & is trimmed with a delicate lace. the sequins are eye-catching in a very subtle, shimmery way. + +beautiful under a sweater, love the top's double layer look, fits tts, not too sheer. + +you might have to wear a strapless bra or do without one altogether because of the neckline and",5,1,1,General Petite,Tops,Knits +1099,62,No petite needed,"I too was immediately drawn to this dress online and was this close to ordering a petite when i stopped my my local retailer and they had just gotten it in, in regular only. of course i tried it on (in the xs regular) and was thrilled to find it fit perfectly and was so flattering on my hourglass figure. i'm 5'1"" and 115 with a 32 dd chest. no gaping or pulling, the waist and shoulders were where they should be and i found the length, with the hi/lo hem to be just above my knees in front. i think",5,1,3,General Petite,Dresses,Dresses +854,40,Not what i thought,"I loved the look of this top when i saw it online, however, when i received it i was kinda disappointed. the color of the top was different than what i perceived initially. .it's way more off white. ..not my favorite. the texture/pattern of fabric on the body of the top was too near hanky for me. the sequin detail at neckline is wonderful, but not enough for me to keep. unfortunately i will be returning this one. not a hit for my desired as the tic but some one else might love!",3,0,1,General Petite,Tops,Knits +1022,23,Love 'em,"The wash is just as pictured, and the fit is great, i actually got a 29 when i usually wear a 28 but when i wear a belt with them they hug the waist perfectly. im always on the search from 28"" length however these jeans are a 30"" and still look excellent if i roll them up once.",5,1,2,General,Bottoms,Jeans +1055,36,,"I typically wear a 4/6 but am a little bigger right now, so i went with the medium. was so excited to get these but was very disappointed when i tried them on. they look beautiful, but there is no lining, leaving the fabric uncomfortable. they were also huge! definitely make sure you size down if you d",3,0,3,General Petite,Bottoms,Pants +1099,35,Better for busty ladies,"I loved this dress the moment i first saw it! i have another dress from this brand that i've had for a couple years and wear it all the time plus i love the tie waist detail. however after trying this dress in both a size medium (my typical size) and a small, i've given up. it does not look good on me and i think thats because i am a 34b, there is room in the chest even in the size small. so would look really good on a curvy girl! i'm 5'5"" ordered regular size and it came to just above my knees.",4,1,0,General Petite,Dresses,Dresses +1016,34,What you see is what you get,"I'm actually surprised no one has reviewed this yet. i took the plunge because it seemed like a classic wardrobe staple, nothing too flashy or fancy, that would go well with many outfits. my thoughts below: +__________________ +pros: +- fits tts. i'm normally either a 10 or 12 and got the large. it fit well and the elastic isn't too tight. fit very well for me because i have wider hips. so if you're straight or slim, you could probably size down. +- exactly as pictured. it does have a nice flow",3,1,1,General Petite,Bottoms,Skirts +1099,39,I agree,"I agree with all the positive reviews about the look, fit and comfort of this dress. definitely a four season dress. for winter i plan on wearing wool tights, wool coat and boots and keeping the waist untied. for me both the medium petite & regular looked good just a bit tight in the shoulders, since that's how my body is built. i'm keeping the regular hem version. my stats for fit reference: 5'3"" 140# 36dd, meaty arms/shoulders/back, small hips, no waist/bum.",5,1,0,General Petite,Dresses,Dresses +1030,28,"Adorable, great quality!","I love love love these bright red jeans. they fit great, they're super soft and comfortable, and the bright red is a great punch of color. only sad about how expensive they are. at that price point, i decided to return them, but am hoping they get marked down!",5,1,0,General,Bottoms,Jeans +1099,47,Better in person!,I was excited to try this dress on in person and so glad i did. it's actually really cute. the material is soft and super comfortable. the dress hits just above the knee and the tie in the front accentuates your waist. i was pleasantly surprised at how cute it really is. i'm excited to wear this to work! worth the price.,5,1,0,General Petite,Dresses,Dresses +1099,27,The perfect summer dress,"I am 5'1"" and curvy, and purchased this dress in medium petite, and it fits to perfection! i love how light & breezy it is for those hot & muggy summer days. the tie front makes this style very flattering for all body types, and the skirt is lined so it is not see-through! plus, the pockets. this dress is a winner.",5,1,1,General Petite,Dresses,Dresses +1099,24,Amazing quality and design,I love this dress! great fit and quality. love that the skirt is lined. this is a real throw on and go piece. i've worn it with wedges and with espadrille sneakers. my only complaint is that the sturdy material makes it difficult to get the tie waist to lay down flat. but overall an amazing dress!,5,1,1,General Petite,Dresses,Dresses +1099,43,Very flattering,"I love this dress! the colors work well with my olive skin color, it has pockets and it has a hi-lo front/back.â â i have slim hips so the tie waist is very flattering which gives an hourglass figure.â â i am 5?2?, 116 lbs and a 32d.â â i usually need a petite size because retailer dresses run a little long on me. but i was able to get away with getting an xs regular because of the hi-lo length. it fell perfectly above my knee.",5,1,6,General Petite,Dresses,Dresses +836,43,,"Top is very cute and wearable, fit is boxy but nice.",5,1,0,General Petite,Tops,Blouses +737,29,Fits fine - fabric/color not terrific,"I ordered this in black and white, thinking you can never have enough silk camisoles. + +i returned the black because it looked like polyester. the white is actually a cream/ivory, not bright white as pictured. it is also not the best feeling quality, however the fit is good, and true to size.",3,1,0,Initmates,Intimate,Intimates +1011,38,,"This was a lovely skirt. the colors are beautiful, and the style is not too poofy like other ball skirts. +it is very high waisted, and at 5'8"" the length was similar to the model.",5,1,1,General,Bottoms,Skirts +916,44,"Unique peplum sweater, soft, comfy, fabulous","Dark burgundy sweater, cable pattern in front (subtle; hard to see online) embedded with panels of brown tweed in peplum section. beautiful fall sweater. soft and comfortable. looks great with skinny jeans, would also look nice with a casual skirt or pants. beautiful color. slightly roomy fit (not fitted, but not boxy)...true to general size. love this for fall and winter. flattering, comfortable, unique.",5,1,0,General,Tops,Fine gauge +1083,43,,"I fell in love with this piece when i saw it in store a few months ago. when there was 25% off dresses, i decided to pull the trigger and ordered it online. since i didn't try it on back then, i ordered my usual petite size 10, but found it to be too big. it's too bad i had to return it because it's a beautifully designed dress. i like the neckline, rouching on the side of the bodice, the lining and slim silhouette. the dress is very stretchy. i found that i could take big strides comfortably in",4,1,2,General,Dresses,Dresses +836,66,A bit underwhelmed,"I hoped to love this based on the prior review, but i didn't. it's a beautifully crafted top but the print didn't look good on me. and although i grabbed during the sale it's too expensive to keep when it's not perfect.",4,1,1,General Petite,Tops,Blouses +11,46,Wanted to love it,"The color says red but it's more like a rust. i'm 5'3"" so it was long and would need to be tailored and the fabric is so thin i was afraid it would rip if it got caught on anything. + +finally returned it without it making it out the door :(",2,0,0,General,Bottoms,Jeans +1077,36,Wrap dress,Beautiful print. agree with other reviewers that the small snap at the bust is inadequate for anyone with a d or greater bust size. the dress was a perfect length on me with heels - even after i kicked off my heels i didn't find it too long like other reviewers. wind does open op the front so i may get it altered so it's no longer a true wrap dress,4,1,0,General Petite,Dresses,Dresses +737,50,Nice camisole,"I purchased this in the black and received it today. it is silky feeling and is a quality camisole. the color is a muted black, not all shiny as some silks are (and they often look cheap) but this looks great and could be worn alone, under leather, or with a sweater/kimono. i usually wear a medium in tops, and this fit true to size. i am 5'2"" and it doesn't look too long, but i do wish it came in a petite. still keeping it!",4,1,0,Initmates,Intimate,Intimates +916,38,Pretty but fabrics tore apart,The concept of this sweater is really pretty. my usual size xl fit perfectly; not tight or too loose. the color of the sweater is not like the photo; there is a lot more of a brown tone. by putting the sweater on and taking it off i must have torn a hole because there is a 1 1/2 inch tear in the front where the peplum bottom panel has been felted to the body of the sweater. it literally pulled apart where the two fabrics meet. the other issue i have with the sweater is the area where the front a,4,1,5,General,Tops,Fine gauge +827,68,,"Three tops for the price of one.....i fell in love with this top the moment i saw it online. i tried it on as soon as i received it with jeans and it looked just how i hoped it would. not too short, just right. then i tried it on with the buttons in front and just loved how it looked. this can be worn 3 ways......back buttoned, front buttoned and as an unbuttoned throw on over a tank and shorts. recommend this highly for just about any body type..",5,1,0,General Petite,Tops,Blouses +1087,44,Beautiful!!,This dress fits perfectly and true to size. the waist detail and flair is fun and flirty. it's probably my favorite dress i've ever bought.,5,1,0,General,Dresses,Dresses +1083,23,Great purchase,Love the style and fit. great buy! my legs aren't as long as the models however so it falls a bit lower on the knees.,4,1,0,General,Dresses,Dresses +836,47,Beautiful find,"This is a unique blouse, it reminds me of the unique items i would find at the store many years ago. it is a gorgeous item. it does have a boxy fit, but it is not unflattering. i am very pleased with this purchase and would recommend this product. +the quality is nice and it is an item that people will notice.",5,1,1,General Petite,Tops,Blouses +836,52,"Beautiful, elegant, quirky summer top","Every now and then a piece like this one comes along at retailer, and i quickly make the purchase without any regret. +without being stuffy or old, this top is simply elegant. the floral is very high-end designer (think italian made) for a fraction of the cost. made of 100% bamboo, it is light without being sheer. there is no need for a cami with this one. the fabric has the body of a good linen, but it doesn't wrinkle nearly as much. it does require dry cleaning, though, if this matters to you.",5,1,15,General Petite,Tops,Blouses +974,61,Love blazer but sizing way off,"I have blazers in size 8 from this designer and they fit with room to spare. i understand this is a more fitted style, but it is still way too small. size 10 and size 12 were not much bigger. great colors and cute design, but just too small even if you do not plan on buttoning it. i hope they bring back this jacket but make it true to size.",2,0,2,General,Jackets,Jackets +974,34,Not as small as other reviewers have said,I was so afraid to get a too-small blazer (based on other reviews) that i ordered this two sizes up. i am usually a 0 or 2 in a blazer and ordered a 4. it was huge. i then ordered a 2 and it is just right. it's comfortable and chic and i love the blue and black combination.,5,1,1,General,Jackets,Jackets +1095,35,,,5,1,0,General,Dresses,Dresses +1052,43,,"I cannot wait for summer! +when i received this item i felt the same as the other reviewers. it may be a little pricey for the material. then i tried it on. i love it. just add some accessories and let's go!",4,1,1,General,Bottoms,Pants +975,43,Great classic hacking jacket with modern elements,"I found this during the tag sale this year. great classic hacking jacket that still feels modern thanks to the cut (a bit shorter) and bright metallic buttons. i got it in a light grey which will work well with many outfits. heads up to curvy short waisted girls, this blazer really worked well for me due the shorter length and great waist placement. really flattering. it does seem to run a bit small, particularly in the sleeves and shoulders so i sized up which also allows for layering underneat",4,1,0,General Petite,Jackets,Jackets +85,46,Trust this brand- hanky pinky,"I honestly just love the hanky panky brand. i know it sometimes feels a little extravagant to purchase their lingerie, but the quality, fit and style are so good that it is absolutely worth it. this piece is no exception. i don't normally purchase lingerie like this, but saw this chemise and decided to try it. just as the other pieces from this brand, it's comfortable and gorgeous- so high quality and classy. it's a great cut, the fabric is clearly lace, but beautifully done. and the feel is lov",5,1,0,Initmates,Intimate,Intimates +1095,45,Almost perfect,"I bought the petite and my only wish, oddly enough, is that the length at the bottom was 3 inches longer! as a petite, this dress his just before the knee and should be mid calf as shown in the picture. however, the design is exceptional and i will wear this all year from sandals to ballet flats to boots.",4,1,2,General,Dresses,Dresses +974,35,"Fabric feels cheap, not great construction","This design looks really sharp on the image, but in reality this jacket felt more like a jacket you would get at forever xxi. the fabric had that polyester/shiny quality to it that made it look cheap. since the fabric was pretty soft, with a gray jersey lining, it felt more like a padded jacket than a constructed blazer. + +i also thought the cut was small if you have a bust larger than a b, i felt like i was busting out of a size 8, and i am a 34d.",3,0,1,General,Jackets,Jackets +1095,51,Beautifully crafted,"This dress is even more amazing in person. the beading and embroidery are quite intricate and add a touch of elegance. the kimono like sleeves have the same details - especially nice for toasting! +be aware that the dress is not mid calf but just below the knee- a surprise but still quite lovely. the lines of the dress and exceptional detailing should make this dress a timeless classic. i look forward to wearing it to many occasions when a lbd would be just too expected!",5,1,1,General,Dresses,Dresses +975,44,,Simple blazer with cute details - buttons on the back and lining. this will look good both in the office over over a pair of jeans and booties. i was able to go with the regular size (instead of petite) because i will wear with the sleeve rolled up.,5,1,0,General Petite,Jackets,Jackets +975,32,Obsessed with this jacket!,"I was not in the market for a black blazer but saw this in store and had to try it on. the quality of the fabric and overall aesthetic is fantastic! love love love the gold buttons. this will look great for work, with jeans, or even as a cover up over a cute dress. i am a generally a size medium (sometimes small) and tend to fall between a 6 and 8, i went with the 8 in this jacket!",5,1,1,General Petite,Jackets,Jackets +974,50,Great blazer/jacket,I purchased this blazer and its so comfortable. it runs small i am usually a size 6 but had to get it in size 8. i will be getting a lot of use out of this blazer. it can be worn professionally with skirt or solid color dress or casual with jeans. the fabric so very soft almost like a sweatshirt.,5,1,12,General,Jackets,Jackets +503,27,New favorite!,"This bra is everything. looks good and feels good. so happy with this purchase. for reference, i am a c cup and got a medium. i do have a little side boob action happening but i'm still happy with the fit of the medium",5,1,1,Initmates,Intimate,Intimates +1028,53,Perfection,"The reviews are right about these fitting perfectly in the fitting room, i knew right off i had to get them. i have a flat rear end and these make my rear look great! i'm 5'5 about 130 lbs. and i chose the 29. i initially bought both the 28 and 29' to make sure they would not stretch out and the didn't. i didn't want to be squeezed in with the 28. i think they are very well made and i'll love wearing them for a long time.",5,1,1,General Petite,Bottoms,Jeans +975,40,The perfect blazer,"Ok. stop everything, take out your credit card & order this blazer immediately! i'm obsessed with blazers, but was on the fence about ordering this one (i mean, how many black blazers can one girl own?!), but after reading the outstanding reviews, i decided to go for it & i'm so glad i did! the online pictures do it no justice whatsoever, & i was afraid the polyester blend & gold buttons would look cheap, but, boy, was i in for a surprise when i opened my package! the black fabric looks high-end",5,1,0,General Petite,Jackets,Jackets +1095,51,Beautiful but not as long as shown,"This is a beautiful dress with gorgeous details but it is not as long as it appears in the photo. i am 5'9""and ordered an xl. the dress comes just below my knees.",4,1,2,General,Dresses,Dresses +1028,48,Rocket crop rocks,"These jeans are the best. fit perfectly, so soft, comfortable, and look great on. i am in love. i put them on and did not want to take them off. i am 5'3"" and simply love the length for me. plus in my opinion the high waist is a s dream. so comfortable and really flatter my curves. these are pricey which is my only real complaint, but they are feeling worth it as i see myself wearing these a ton and the quality seems great, so i am thinking they will last a long time. don't hesitate to buy these",5,1,0,General Petite,Bottoms,Jeans +1028,51,I love these jeans!,"I'm curvy, have very muscular thighs and am just under 5'5"". i was not very optimistic when the sales associate told me i would love these jeans. she was right, they're amazing. they are incredibly flattering, just the right length for me (even tho cropped) as i can wear them as full-length or just add one or two rolls and it's a crop. the fabric is amazingly soft and they immediately felt like a favorite, old pair of jeans. the pockets are well placed so they do wonders for the bootie. oh, and",5,1,4,General Petite,Bottoms,Jeans +974,40,Chic & well made jacket,"This is my second jacket from this brand cartonnier and i am thoroughly pleased. + +i love the quality and texture of the fabric of this coat. i think the styling is super classic with a little bohemian edge. + +i am 5' 3"" and 120 lbs and the size 4 fit me perfectly.",5,1,0,General,Jackets,Jackets +974,48,Fabric is poor quality,I purchased this jacket in my local store. size 10 and runs really small . i love the color combination and design but the fabric in my opinion is poor quality. i have seen a lot of retailer use this poly spun knit in so much of their items and the jacket after bringing it home and looking in the light was already showing pilling. looks like it is worn in an bad way. returned the next day. this was a big disappointment and every time i see this fabric being used in retailer clothes it makes me mad.,1,0,4,General,Jackets,Jackets +1020,48,Great on sale!,"I have been watching this skirt and only scooped it up on sale plus promo. it runs small and the size 10 fits like a size 8 would fit . 145 lbs and curvy figure, flat tummy but have hips and tush. the quality is just ok and not worth the full price but on sale it was doable. i love a-line styles and this skirt is different with the fabric stitching at diagonal pieces. it is light weight so i can really see this being worn more in spring and summer and a go to skirt that looks sharp . website pho",4,1,1,General Petite,Bottoms,Skirts +1052,36,The perfect harem,"I love this item! i'll wear it as a cover up or to dress up and go out. the material is great for summer- light and breathes. +i first ordered a small because the medium was sold out. it fit too high-water. i then ordered the large and it fits great. the medium may have been fine too. i'm 5'4"", 145.",5,1,0,General,Bottoms,Pants +974,45,Perfection,"True, this blazer runs small, so size up! beyond the beautiful depth of color from the herringbone black and dark blue, the stretchy fabric allows for flexibility in what you can wear underneath and for both your bloated and your skinny days. best of all this blazer could be worn 3-4 seasons out if the year and it's got a super-soft lining.",5,1,6,General,Jackets,Jackets +1052,39,Priced too high,I want to like and keep. at this price point i cant justify keeping. if it does go to clearance i will reorder. due to the thin material it seems more summery and casual than what i was anticipating. true to size. i ordered a medium and am 5'9 and 155 pounds.,3,0,8,General,Bottoms,Pants +1028,31,So very comfortable!,"These jeans are worth every penny! they fit me perfectly as soon as i put them on, and i wore them the rest of the day! they are true to size with very generous stretch...if anything, i would size down. they feel durable, but not like typical denim. very soft. i am 5'3"" and about 117 or so, and my normal 25 fit like a dream. i did end up exchanging these because there was a small nick on the inside of the left thigh, and i was afraid they might tear right open. if the new pair comes without defe",5,1,0,General Petite,Bottoms,Jeans +975,23,Cute,"This is a sweet little jacket. i saw it in the store but was unsure because of the price. but after trying it on, i just fell in love! the cut is really flattering. the jacket does run small. i really enjoy the little pop of color on the sleeves. my only complaint is the buttons make me nervous, because they seem to be heavy and i worry that i'll lose one, but only on the front 2, the arms and back buttons seem to be just fine. overall this is a fantastic buy that is great for an office setting",5,1,0,General Petite,Jackets,Jackets +974,44,,"This is the tiniest blazer i've ever purchased in a size 10. i usually wear an 8, but sized up based on other reviews and it was still too small. it's very attractive but please size true to size",1,0,5,General,Jackets,Jackets +256,43,,,5,1,0,General Petite,Intimate,Lounge +1099,39,"Poor quality, not as cute as photo","I expected this dress to be a much better fit and quality overall--the size small fit me fine--i'm about 140 and small in the chest, but the zipper was incredibly cheap and the dress could've draped in a more attractive way. if this dress could be in cotton and given more consideration to the fit and drape, it'd be worth it, but it's going back.",3,0,0,General Petite,Dresses,Dresses +256,40,,"I was hesitant in purchasing these without trying them on first, but i'm happy i did. they are higher quality than the typical legging. the sizing runs bigger than average.",5,1,0,General Petite,Intimate,Lounge +829,41,Have gotten multiple compliments,"I don't usually wear this much color, but i'm so glad i purchased this top. it is really cute on and professional enough for work, but with a tank underneath and the buttons undone, its casual too. i have received several compliments both times i have worn the shirt. sleeves are a bit long.",4,1,4,General,Tops,Blouses +193,34,Great staple,"I bought navy in my usual size s, and the color and fit are exactly as pictured. very good quality cotton. the pocket can lay funny on the hips but a little adjustments does the trick. i wore this chemise at home and hubby noticed it (never happens), i wore it to study in coffee shop with boots and scarf and felt comfortable, warm and stylish. great staple, well made and well priced.",5,1,10,Initmates,Intimate,Sleep +1082,25,Perfect.,Absolutely stunning dress. true to size and flows like a dream.,5,1,1,General Petite,Dresses,Dresses +256,58,Leisure wear,"I loved the design of these pants, and got them to go with the matching jacket. the problem with them is there isn't enough stretch to keep them up. i found that thru out the day i was pulling them up, as they would slide down. the pant fabric should have had more stretch or they should have put stronger elastic at the waist.",3,1,2,General Petite,Intimate,Lounge +1070,41,Great camo pant!,"These are a comfortable, flattering casual pant. i usually wear a 27 in skinny jeans, so i dropped down to a 26 to make sure they weren't to baggy. i love them and will wear the a lot!",5,1,0,General Petite,Bottoms,Pants +1033,66,Love!!,"These are my new favorite pair of jeans. very flattering (particularly on the bum)! the wash is great - dark and slightly distressed, with a frayed hem at the ankle. the leg is straight rather than super skinny, which i am really enjoying as of late. fyi - i am usually a size 29 in denim, but went down to a 28 in this style.",5,1,2,General Petite,Bottoms,Jeans +193,20,Perfect,This is such a comfy dress and recommend it to anyone. pairs amazing with leather boots and hat,5,1,0,Initmates,Intimate,Sleep +829,35,Hangs funny,I really wanted to like this shirt but it doesn't seem to be of that great of quality and is much more sheer than indicated in the photographs. the shirt is very clingy and doesn't hang well. i sent it back,3,0,1,General,Tops,Blouses +1099,44,Darling and versatile,"This dress is very well made and the fabric hangs beautifully. i weigh 125 and usually wear a small but sized up to medium for a longer sleeve and hem. the print, fabric and style make it appropriate for daytime or evening. it should transition nicely to fall and will look great with boots.",5,1,4,General Petite,Dresses,Dresses +256,46,Nice spin on leggings,"I bought these on sale and love, love them! they are comfortable and super cute with the print detail on the calves and around the waist. i am waiting to receive the matching hoodie. don't know it i will wear them together since i don't like to be too ""matchy"". i have worn the leggings with a long black tunic top and grey slip on sneakers. very happy with this purchase!",5,1,1,General Petite,Intimate,Lounge +829,52,Great top,"Love this top! the color is very pretty, great for the holidays. i haven't washed it yet, but it says machine wash which is a plus for me.",5,1,2,General,Tops,Blouses +829,69,Soft and flowy,"This blouse drapes nicely. the 8 in the store was too big which is not what i usually find with maeve. i wear a 6 or small in most blouses. i ordered the 6 and it was still too big, so i hope the 4 will work.",5,1,0,General,Tops,Blouses +193,36,Great comfy dress!,"I received this dress in both colors (oatmeal and blue) for christmas, and i love them! they are super comfortable and great with leggings. i can wear them just to lounge around the house or dress them up a bit for church. i am 5'10 and 140 lbs and i got the small. it fits true to size. i would definitely recommend!",5,1,3,Initmates,Intimate,Sleep +1099,54,"Beautiful, versatile dress","I have gotten constant compliments on this dress and it is very flattering. i normally wear a large or a size 12 and i had to order this in an xl. i am big busted so that makes the difference. + +this could be so easily dressed up but easily made casual with a denim jacket or sweater. + +one of my favorite fall purchases.",5,1,0,General Petite,Dresses,Dresses +193,56,Perfect nightshirt,"Love the length and long sleeves. so comfy to sleep in! great purchase, i ordered the navy one too!!",5,1,0,Initmates,Intimate,Sleep +193,30,I like it,This dress is super comfortable and well made. i am 5'10 150lbs and the large was a little too big but with a belt it worked out just fine,5,1,1,Initmates,Intimate,Sleep +1056,41,Cleo jumsuit,"I was on the fence about ordering my normal med, but so glad i did. it fits sooo well. i do think its more suited for warmer days since the material is very thin. its sort of a cropped length and looks great with sandals and heels. i don't like showing off bra detail and will add some kind of closure detail to hide bra or wear a very lightweight top underneath. this was a great buy especially with the sale.",4,1,0,General,Bottoms,Pants +829,43,,I originally ordered this blouse to wear for work. i was pleasantly surprised that i could wear it casually with jeans! fits comfortably and hugs my curves!,5,1,0,General,Tops,Blouses +862,39,,Cute to wear with leggings. i like that it's easy to just throw on. it's fitted at the top and easy to chase kids around but doesn't look too momish or sloppy.,5,1,1,General Petite,Tops,Knits +865,37,,"Great shirt! i am a tshirt wearing girl so i like to have a lot of different styles. this is more than a tshirt- great style and thicker than expected. great fit, overall love it",5,1,2,General,Tops,Knits +829,41,So pretty,"I bought this blouse after i saw my aunt wearing it. the color is lovely. i spilled soup on it during my first wearing and it laundered wonderfully. i am so glad! such an easy piece to throw on, very comfortable. fit is great.",5,1,0,General,Tops,Blouses +1099,38,Gorgeous!,"Buy this dress! you won't be disappointed. it's lovely and can be worn in the summer and easily transition to fall or even winter with opaque tights, tall boots, and a denim jacket. the neckline is unique and stunning - demure yet sexy - something that can easily be worn during the 9-5 work day or into the evening. i bought my regular size m and it hits just about my knees. i don't think this dress runs small at all.",5,1,0,General Petite,Dresses,Dresses +193,65,Chic and casual cotton comfort.,"Wanted a cooler weather casual weekend errand dress and this is very confortable to wear with artistic leggings and tall boots. pockets are always handy and it is easy to style with a contrast scarf or long necklace. for added warmth can add a full slip or wear alone in spring with sandals. received numerous compliments wearing the first time, so purchased the navy one several weeks later. anticipate wearing these dresses often and when the cotton finally wears down will use as a nightgown. love",5,1,9,Initmates,Intimate,Sleep +829,42,,Perfect top! the color is absolutely beautiful and the fit is better than i imagined it would be! love!!!,5,1,0,General,Tops,Blouses +1022,66,Almost,"Having never tried this brand, i didn't know what to expect. these are a boyfriend cut with a straight leg, not fitted like a skinny jean. the fabric is soft and lightweight, definitely a summer time jean. the stripes are nice, subtle but noticeable. i ordered the 31's, i'm a size 12 and they fit okay. i have a tummy and the jeans fit oddly in the front crotch area, almost tight and clearly defining the dreaded camel toe. i tried them with a variety of undergarments with the same result every ti",4,1,0,General,Bottoms,Jeans +1099,69,Dress for all occasions,"For reference i am 5'5"" and 118 lbs. the small fits nicely. the style is flattering. i have a big rib age, so as with many back zip styles that area is a bit tight when i sit down. not too bad though. ican wear it to work and out for a date both. colors are a bit subdued but i will enhance the pink or blue floral tones with a sweater, jacket and jewelry.",5,1,0,General Petite,Dresses,Dresses +1099,22,,"Cute but not sure it's worth the price point. i might reach for it in sale, and while it was cute on, i just don't spend that much on a daytime casual dress. i'm sure you could dress it up with heels or something but there's something about this dress that screams casual daytime. still very pretty and flattering! i loved the neckline and detailing there",5,1,0,General Petite,Dresses,Dresses +1099,35,Lovely,"Tried this dress on in a s and it fit very nicely. it's a very unique dress and i loved it, but i just didn't know where i would wear it!",5,1,0,General Petite,Dresses,Dresses +1099,42,Cute dress,"This dress is true to size, it looks sexy on the model but much more modest in person. great for work!",4,1,1,General Petite,Dresses,Dresses +1099,28,Gorgeous dress!,"I worse this dress to a rehersal dinner and received so many compliments. it was a perfect summer dress.. the colors are true to the picture and beautifil. it is also very well made, comfortable and flattering. i am 5'3' and 130 lbs and i ordered a medium petitte which fit great. it was short but not too short! it will be a go-to dress!",5,1,4,General Petite,Dresses,Dresses +1099,43,Romantic and pretty,"I was walking to the fitting room and i saw two of this dress on a rack- an xs and small. i could tell by looking at it that it runs small, so i grabbed a small to try on. i didn't want to love this dress (it's expensive), but i did. it is so pretty and flattering. i wish it were an inch or two longer, but it's ok. with tights in the fall will be fine. not sure i would wear this to work, as i am a teacher and it is too short for me. it definitely runs small. i am between a 2 and a 4, so i took t",5,1,5,General Petite,Dresses,Dresses +862,31,,"It's a cute idea, but it's so low cut and the material is very thin. i was hoping to wear it as a cool, flowing summer top, but i'll have to layer it since my whole bra basically hangs out of it. i'm only keeping it because it was such a good price. also the buttons are super tiny and a little hard to fasten.",2,0,0,General Petite,Tops,Knits +862,33,,,4,1,0,General Petite,Tops,Knits +193,54,Nice enough item on sale with discount,"Just recently purchased and think it's ok for the price. would never pay full on this one & that's from an retailer shopper who's purchased plenty at full price. design is cute but definitely looks like a sleep shirt esp in the lighter color, so-so on construction - the bottom seams pucker slightly, the pockets bunch up weirdly (steaming/laundering don't help) & the shoulders also hunch up oddly. could be because of the thicker fabric sewn to the knit but laundering didn't help that issue either.",2,1,0,Initmates,Intimate,Sleep +1099,41,Beautiful dress but runs small,"I ordered the stress in an xl. i usually wear a size 12 in most retailer clothes. the pattern and the flow of the dress is very beautiful but it runs extremely small. also, i felt that i was choking. it is better suited for thin women.",3,0,4,General Petite,Dresses,Dresses +1099,66,Good for any occasion.,"I would give it a 3.5 if half star possible. like other reviews said, the material is a little cheap and back zip got stuck when i tried to unzip it before trying it on. overall, nice color and flattering look that could be dress up or down. i am 5'8"", 155lbs, 36b and m is a little snug for me on the top.",3,1,0,General Petite,Dresses,Dresses +1099,31,Best dress!,"I highly recommend this dress! it is super flattering and i got so many compliments. it fits like a glove and honestly made me look 10 lbs thinner. very romantic and has great movement. the length is perfect, since the top is quite modest, it's nice that it's on the shorter side - makes it a little flirty! i wasn't sure of the pattern at first, but it fit so perfectly that i overlooked it and bought it anyway. by the end of the night i was in love with the pattern. it really stood out and i can'",5,1,1,General Petite,Dresses,Dresses +193,30,Super comfy!,"I was so excited for this to come in the mail, once i got it and opened it up i actually went back to verify this was in fact pajamas! it is great quality and super soft! some positives were that it has pockets! (who knew?!) and like stated before it is super soft and comfortable. the only negative is that it is not physically attractive, it is very baggy and it a-lines out. it's fine its pajamas but if you are wanting something cute for bed and you have a straight body this may not be the answe",4,1,0,Initmates,Intimate,Sleep +829,33,Easy wear!,Great top! very easy to wear. looks great with jeans or dressier pants.,5,1,0,General,Tops,Blouses +1099,47,Better in person,This dress is very lightweight and great for fall/spring weddings. i received several compliments all night! sits very nice on the waist as well!,5,1,0,General Petite,Dresses,Dresses +1099,35,,Love this dress. had to exchange it because it runs a little small. i got the right size and it is beautiful.,5,1,0,General Petite,Dresses,Dresses +1099,61,Exquisite and unique dress,"This very unique dress is exquisite and so versatile ? suitable for daytime or evening, and will look great with a cardigan and tights for year-round wear. it fits perfectly and seems true to size to me ? i?m 5?2?, about 112 pounds, and got an xs. the description says the dress can be machine washed, but with the delicate trim around the neckline, i plan to hand-wash it carefully. so happy with this purchase!",5,1,6,General Petite,Dresses,Dresses +862,46,Sandstripe vest,"As a beach cover-up this would be great, but i'm surprised retailer calls this a dress and doesn't show on the model how thin it is. it's pretty sheer and i couldn't get away without layering it.",2,0,0,General Petite,Tops,Knits +256,52,Very cute and comfortable,"These are so cute... i went into the store to buy something else and came out with these. i usually wear a 10 and bought a medium. these are also lower price than i expected. also, well constructed. thank you antho!!",5,1,3,General Petite,Intimate,Lounge +1070,36,,"Very cute and flattering but i'd order at least one size down. i'm usually a 25/26, and just during the time i tried on the 25s in the store, i could tell they'd loosen up enough for a 24. i'll review more once i have them, had to order since they don't typically have 24s in store, so can't comment on quality as of yet.",5,1,0,General Petite,Bottoms,Pants +1033,35,Super cute- not overly distressed blue jeans!,"Love the jeans! the color is listed as black for some reason but they are definitely blue like the picture. and what i love most is i've always wanted somewhat distressed jeans but for me the ripped jeans look doesn't work. these are perfectly distressed without being hole-y. i also love the length. i'm usually a 29"" person because i love ankle length for boots (tall and short). these are listed i think a bit shorter than that i think but didn't feel cropped. they are also made of some special """,5,1,2,General,Bottoms,Jeans +193,26,,"Very comfortable nightgown, love that it had pockets. fit is as expected.",5,1,0,Initmates,Intimate,Sleep +829,32,,,5,1,0,General,Tops,Blouses +862,69,Runs small,"Ordered online, just received this vest, so disappointed! love the garment but it is way too small. i wear a medium in most clothing and size 6 in a dress, but the medium in this vest isn't just snug it is definitely too small, even worn alone, i can't button it. i am now ordering the large and keeping my fingers crossed as i want to wear a tee under it. hoping i won't need to return both the m and the l, thinking of ordering an xl.",4,1,3,General,Tops,Knits +865,44,Cute and unique,"Love the lace back panel, unique design. would not call this blue....definitely more of a grey color, but it is pretty! got size small and it fit well. 5'6"" 140 lbs.",5,1,0,General,Tops,Knits +1099,31,Can be dressed up or down,"I looked at the other reviews before purchasing and this is the one time it didn't work out for me. a lot of people said to size up, so i ordered a medium and it was far too big on me. i reordered my regular small and it's perfect. it's shorter, obviously, but not so short that it is unwearable. i can't wait to wear this out!",5,1,1,General,Dresses,Dresses +862,48,"Shapely, but busty gals beware","I do like the shape of this piece. it is eye catching due to the length and flattering. however, if you are chesty, this piece shows off more than i was comfy with, and i don't think i've ever had that problem with retailer. in the body, i needed an xs or i would be swimming in it. but up top, the xs showed much too much cleavage. (34d, 5', 115). i'm still keeping it but i have to watch where i wear this.",3,1,2,General,Tops,Knits +829,34,,"Love this un-basic white top. it's very flattering on, and i love that it's a versatile piece that can be dressed up or down depending on the occasion. i am usually a size 8 in maeve tops/dresses, but i found a size 6 fit me a bit better in this particular top. if your'e in between sizes, you may need to size down. i definitely recommend this top!",5,1,0,General,Tops,Blouses +1194,35,,"Just fab. great length, great pattern, flattering fit, and even pockets!!",5,1,0,General,Dresses,Dresses +482,24,Not so great,"Material is thin, with a fleece like feeling on the inside. hard to describe but almost feels like a really thin north face material. the cut on the sides of chest area is super awkward, shows way too much, would never be appropriate to wear a regular bra underneath.",2,0,3,Initmates,Intimate,Lounge +852,50,,,3,0,0,General,Tops,Blouses +941,42,,"Gorgeous and soft, luxurious feeling sweater! i purchased this in the pink/purple color that is no longer showing as available and just love it. it's unbelievably soft, feels like a blanket. i found that if you sort of fold the neck line under a little, it drapes like a cowl neck a little and not quite as off the shoulder....as it's very cold where i am...can't see wearing it that far off during the winter! that was my solution and i love it! i'm typically and xs, bought the xxs b/c it appeared",5,1,21,General Petite,Tops,Sweaters +829,54,Scalloped heaven,"What a cute top! i would say true to size. it is a pullover so i went with a 6, for easy dressing. the scalloped tank around the shoulders is unique and lays nicely. i would say the top is a lined in cut. not too swingy at all. a great length to be left out or tucked in. i can think of so many uses for this top, i may grab another to keep on hand. will be adorable with skirts or shorts.",5,1,5,General,Tops,Blouses +482,35,"Yay, another dress","I love workout dresses and skirts. i sport them in both yoga (if they have an under layer of shorts, obviously) and in high cardio classes-as well as for things like tennis. i like the extra breeze a dress/skirt will get you, and find them to be really comfortable. i really like this dress as it is not a super bold color (it is hard to find workout attire that is not neon colored). i prefer things to be a little more relaxed and less ""look at me"" like when i am working out. this dress is flatter",5,1,12,Initmates,Intimate,Lounge +829,72,Essential feminine white blouse,"I love a crisp white poplin blouse and this top is perfect in that role. i am between a small and medium in retailer tops. because this top looked a little bell in the model photos, i decided to order a 6. it was a bit snug across the chest. for reference, i am a 34c. i returned it for the 8 and it fit perfect. i'm not sure why this top was offered during the winter because it will likely hang in my closet until april. highly recommend this blouse for summer.",5,1,2,General,Tops,Blouses +482,39,Poor fit,"While the styling is cute, the fit was poor under the arms and there was quite a gap. i returned this.",3,0,5,Initmates,Intimate,Lounge +941,41,Great sweater,"36dd, 10/12 in tops, 12/14 in bottoms +this is a wonderfully soft and warm sweater. the pink color is heathered with some grey and goes with just about any neutral bottom. the neckline was a little fiddly when i first tried it on, however like one of the previous reviewers i folded the left side under a bit to make an asymmetrical cowl neck, and it lays very nicely and looks great. runs a little big, i tried the medium and it fits perfectly. another great sweater from moth!",5,1,1,General Petite,Tops,Sweaters +1056,29,Perfect for fall,"Love this. i adore pilcro, great for us gals who have thick hips, thighs and a slim waist. they fit tts and are a great staple for fall. the color says dark orange but they are as pictured, a perfect dark tan. i wish that retailer would buy more size 33 in all pilcro. they always sell out fast and i am always out of luck unless i find them when they first come out. also, please make a full length boyfriend jean pilcro! love.",5,1,9,General,Bottoms,Pants +862,28,Love the look for the holidays,"This velvet t-shirt is perfect for the holidays! i usually wear a size 12 top, or a l, but i ordered up and got a size xl. it is very tight around my chest (36c) and armpits, and the v-neck sometimes spreads apart a lot if i move my arms around a lot. but other than that, it looks great, just runs small. if you are a size 14 or larger, i don't think that this will fit.",4,1,7,General,Tops,Knits +482,31,Simple but large,"I normally wear a medium with these types of fabrics but this one was oddly proportioned on me. the skirt was also not very flattering to my hourglass figure, but it at least fit well. the top was baggy and gaped at the armpits as stated by others. i really wanted to like this dress but it made me look 20 pounds heavier even in the places it looked too big on me. i could have tried going with a small but the skirt would have then been too short.",2,0,4,Initmates,Intimate,Lounge +579,26,Super cute & comfy!,"I haven't owned a skort in years! this one is super cute and so soft! i love the details, the asymmetrical cut and the buckles. i bought it in olive green. it fits really well. i'm 5'5"" 119 lbs with an athletic frame and i purchased a size 2 (my normal size). it fits comfortably around my waste and thighs/but with some wiggle room. + +i'm wearing it today w/ a navy blue/cream floral tank top, white/navy striped vans, and a gold dangly necklace. i love that its a versatile item and i'm looking f",5,1,1,General,Bottoms,Shorts +867,35,One of the best fits for an retailer shirt,"I love retailer clothes, but i've often ordered shirts in an xs that i really needed an xs petite in because of the length and fit through the bust, but they didn't have any petites in the size i needed. i'm at 5'1"", 114 pounds. i got this shirt in xs (not petite) and am thrilled with the fit. the material is formfitting enough to look like a petite, and it doesn't drop below my waist line. i'm thrilled with my purchase!",5,1,1,General Petite,Tops,Knits +868,30,Huge,"Agree with other poster. this shirt runs very big. i'm all for a flowy, shirt that hides my belly but this is just a tent. i'll be retuning it.",1,0,5,General,Tops,Knits +867,68,Not flattering on me,"This top is very soft and well made. for my short and curvy figure, it is very unflattering. i considered altering it, but there is no way to do it. it gapes in the front and if you have a waist at all, it won't show because this top is boxy and full in that area. if you are tall and slim, it might be perfect, so give it a try.",1,0,1,General Petite,Tops,Knits +829,20,,"A little more see-through than you would think, but has super cute smaller details! also needs to be ironed, a lot.",5,1,1,General,Tops,Blouses +867,24,Adorable tropic top,This floral tank looks so cute on. the layered cut is very flattering and i've received several compliments while wearing it. adorable,5,1,0,General Petite,Tops,Knits +482,37,I really wanted to love this dress,"So, this dress is extremely comfortable, but it's just really awkward. i am on the fence about keeping it, my husband loves it and thinks i should. it just draws attention to the belly, so any issues after having kids, is very noticeable. not to mention the huge cutouts for the arms. very comfortable, but not sure if i will keep it.",3,0,0,Initmates,Intimate,Lounge +926,37,Thick and warm,"Really nice thick fabric, yet lays really nice. scarf included, love the poncho style. will get me throught the end of pregnancy and will look great after as well!",5,1,0,General,Tops,Sweaters +482,65,Comfortable,"This dress is extremely comfortable. the dress is slightly loose under the armpits, but the other than that the overall fit is great. can be dressed up or down!",5,1,3,Initmates,Intimate,Lounge +482,50,,,1,0,0,Initmates,Intimate,Lounge +867,46,"Fantastic fabric, problem with design","I ordered this in size xl. the fit is true to size. it fits me as it does on the model. the draping is very flattering. i'm a pear-shape and this shape works well. it definitely needs a tank underneath. you could sew a bit of the top to keep it closed. otherwise, everything can show. i like using different colored tanks to pull out the colors in the pattern. +the quality of the material is outstanding. the print looks so much prettier in person. it's very vibrant. the photos online, at least on",4,1,11,General Petite,Tops,Knits +941,44,Love this sweater!!,"This sweater is so beautiful, soft, and warm. the neck is a little different and meant to be worn off the shoulder. i don't wear it off the shoulder. if you just work with it a bit it will lay nicely. i get compliments every time i wear it!!",5,1,1,General Petite,Tops,Sweaters +829,33,Wanted to love this!,"I wanted to love this top! on me it was weirdly boxy. it was too wide and too short, and it was more sheer than i expected it. the fabric is lightweight but wrinkles really easy and loses shape pretty quickly. i also thought the fabric would be heavier and have more structure than it has. i love the scalloped detail at the arms but after about five minutes of wear this felt super crumpled and just kind of sloppy. unfortunately it will be going back.",3,0,1,General,Tops,Blouses +579,20,Great purchase!,"Beautiful skort! true to size and very comfortable. the actual shorts part of the skort is a nice, modest length. they have the appearance of a skirt with the utility and feel of a nice pair of shorts. i can't wait to wear it again! i am very pleased with my purchase.",5,1,2,General,Bottoms,Shorts +941,35,Wanted to love this,"So, this is a super soft comfy sweater. the color is great and i really wanted to love it. but the dolman sleeves sort of annoyed me. that being said, all of the good things about this sweater almost made me keep it. the neckline is also really neat. it drapes nicely, and stays that way. if you are on the fence give it a try!",3,1,0,General Petite,Tops,Sweaters +1044,48,Looks more expensive,"Great pair of work slacks with a flare. wear these with boots give a very rich look. super flattering cut and flat waist. +highly recommend these for fall through winter!",5,1,2,General,Bottoms,Pants +867,40,,"This is theoretically a great summer top addition to your wardrobe. i love the floral print - it's bold and lively primary colors on a black background. i'm usually a size small in retailer tops and neither the small nor the medium fit me very well. the small was a bit too fitted everywhere and strangely, the medium gapes at the front when i'm sitting but not standing (i'm 34b otherwise height-weight proportionate with broad shoulders). another reviewer mentioned a design flaw - the floral print i",4,1,3,General Petite,Tops,Knits +862,41,Misrepresented cleaning instructions,"I purchased the dusty rose. i thought the picture represented the color accurately. the shirt material had a nice thickness and drape. it felt very luxurious. the opening in the front is cut a little low but workable. + +in the end i am disappointed in the care information provided by the site. it listed the garment as machine washable but the care label in the garment states it is dry clean only. i would not have purchased it if i would have know that. i am going to have to return it for this rea",4,0,1,General,Tops,Knits +941,47,"Soft, sexy sweater","I bought this in the mauve in my usual size small. i think this sweater is intentionally big and slouchy, so i would say it runs true to size. it is very soft and the weave is airy--not going to be warm enough for a below freezing day but i love the style. the neckline is a bit fussy but i think you just have to wear it and let it fall the way it wants to. the sleeves are long enough to cover your hands. the sweater, when pulled all the way down, covers my butt and half my thighs (and i'm 5'9"" t",5,1,13,General Petite,Tops,Sweaters +1056,34,Comfortable fit for many occasions,"I mentioned the sizing is true to size but it should be important to note that they will loosen throughout the day, so when i order another color i will size down one size. the color is as pictured too. +these are great for casual and business casual wear. so comfortable and perfect and flattering for my shape, athletic with muscular thighs. +can't wait to order another pair.",5,1,0,General,Bottoms,Pants +274,44,,"True to size i found. got the medium and had a bit of room to spare. usually i'm a 6 on the lower half, (34-28-36). +the upper portion is a very very light heathered grey, almost cream and yes, i found it to be see through. +comfortable but either for lounging round the house only or wear a tunic to cya!",4,1,1,Initmates,Intimate,Lounge +941,30,Gorgeous but ridiculous,"This sweater is incredibly soft and pretty, but there is just no way to get it to lay the way the model does in the picture. i found myself constantly tugging at the top to get it to stay off the shoulder - otherwise it just bunched up top and make a weird funnel neck. i really wanted it to work, but it was just so impractical.",3,0,5,General Petite,Tops,Sweaters +941,33,Horrible,"The sweater runs large, the sweater is designed in such a way that it looks very sloppy. i would never be able to wear it out of the house. however, the material is exceptionally soft and delightful. keeping as its a great stay at home & lounge sweater, but way over priced for this purpose. if you can get the fabric to lay correctly, you're a genius.",1,0,0,General Petite,Tops,Sweaters +941,54,,"I absolutely love this sweater and the color is beautiful! i read through the reviews and purchased a medium as i read that this sweater ran large - i'm very happy i sized down. +i haven't yet worn it and hope that it does stay off the shoulder, as pictured, without having to constantly re-arrange. +great sale price!",5,1,0,General Petite,Tops,Sweaters +1044,46,Flimsy,"I loved the cut and the stretch in the material made them comfortable, however i found that the material was unflattering for thicker thighs because it tended to cling to the body. it would have been better with some sort of lining as it would have prevented the flimsy material from highlighting imperfections. bottom of pants are not hemmed, so if you want a clean look, you may not like the edges. these were returned immediately as it just did not work for me.",2,0,1,General,Bottoms,Pants +482,58,Too big armholes,"I wanted to like this sporty dress too. i teach at an elementary school and like to get down on my knees st my students level - plus we can get messy most days with our learning and most days are go - go - go being ""on"" every second...the armholes were cut too big and weirdly squared. i didn't like the middle ""ridge"" either as it was unflattering. it was returned.",2,0,0,Initmates,Intimate,Lounge +1044,36,Highly recommend!,"I was nervous to order the pants because i didn't think they looked great on the model in the picture. they are by far, my new favorite pants. the fabric is so soft and stretchy, yet hugs my curves doesn't stretch out during the day. i was expecting the fabric to be thick or stiff, but it is very lightweight, yet professional for work. the cut is perfect--i wanted black culottes but i'm only 5'5"" so a lot of them overwhelm me. these are fitted at the top and gradually looser through the thighs a",5,1,2,General,Bottoms,Pants +100,44,Sizing is off,"Good design, comfortable fit. however, sizing is way off. i am a 34c and the small fits with minimal support. agree with the previous review. not sure it is a keeper.",4,1,3,Initmates,Intimate,Intimates +867,36,,,5,1,0,General Petite,Tops,Knits +941,45,"Dreamy, soft sweater","Very warm and snuggly, gorgeous color, nice fit. i have a little trouble getting the neck to lay right, but managed so it works for work. i can't say enough how toasty it is. very good quality and styling.",5,1,0,General Petite,Tops,Sweaters +941,43,Pretty,"I like this sweater. i bought it in small and medium because it was 25% off and i didn't want my size to sell out. im keeping the small. im 5'5"" and 140 lbs and hourglass. the medium was way too much fabric. its still roomy in the small, but its lush looking and soft and will look pretty with jeans and high boots. i ordered the one in the beige as well but i think the lavender color is prettier in person. i think the beige may wash me out. hope this helps.",5,1,9,General Petite,Tops,Sweaters +1056,33,,"I bought these last year and loved them, however they came in tall sizes. this year they do not and the inseam is just way too short, even at 33"". im 5'7"" and they barely graze the floor with no break in the pant leg. i prefer to wear them with boots and they will not be long enough even with a short heal",2,0,0,General,Bottoms,Pants +1056,47,Too short,I love these. the color and the style. but they are once again too short. they are not 33 inches. i need 32 inches to go to the floor. these are above the floor so they are not 33 inches. very disappointing.,3,1,2,General,Bottoms,Pants +829,40,Another great one from maeve,"I am usually a 4 in maeve tops, but i sized up to a 6. i am 5'7"" 127 lbs. it is a crisp white, comfortable, easy to wear tank that requires some ironing or steaming. it doesn't look like much in the photo, but once i saw it in person and tried it on, it was an easy decision to make the purchase. it is feminine and has a pronounced a-line shape to it.",5,1,2,General,Tops,Blouses +482,43,Sporty elegance,"I tried this dress on and convinced myself that i didn't need it. on another visit, i tried again and couldn't resist. it is amazingly comfortable and a great alternative to shorts/jeans/pants. you can dress it up a bit with sandals vs athletic shoes but the fabric does tend toward more festive picnic or outdoor concert vs wedding. i prefer wearing dresses so this is a wonderful addition.",5,1,1,Initmates,Intimate,Lounge +868,43,Runs large,I normally wear a large to medium but due to other reviews i ordered a med and could've worn a small. i still love it and i'm so glad i ordered.,4,1,0,General,Tops,Knits +829,36,,This is a super cute top. the online image does not do it justice. the scalloped edges around the arms give it a flirty and feminine look. i got lots of compliments when i paired it with the shorebird pencil skirt. the material is thick enough to not make it see-through and it's pretty tts.,5,1,1,General,Tops,Blouses +941,43,"Beautiful, soft sweater!","I was a bit skeptical about this lovely sweater, but now that i have tried it on with a pair of skinny jeans and tall boots, i am sold! it is so soft and full of movement. it has a very unique design. the purple color is gorgeous and inviting. i will enjoy this sweater all winter long!! i am usually a small/medium and the medium fits a bit big, but looks beautiful on. the neckline does fold in and adds to the appeal.",5,1,0,General Petite,Tops,Sweaters +867,33,Flattering!,"Super flattering fit. i am generally a large, large, and the medium of this shirt fit really well. the drape of the fabric was very forgiving of my tummy. great look. also my 1 year old son loves the colors and flowers!",4,1,1,General Petite,Tops,Knits +482,64,Great summer dress,This dress is amazing and spans multiple uses. i brought it to st. john with me and used it as an after swim dress as well as a going out on the town dress. it is flattering and a light but durable material. the only thing that was even remotely challenging was that i needed to adjust my bra straps to be hidden. overall i loved the dress and totally recommend it.,5,1,9,Initmates,Intimate,Lounge +867,24,Super soft and elegant,"This top is so fun, but more importantly, it is sooooo soft and comfortable!!",5,1,0,General Petite,Tops,Knits +941,39,Comfy,"Taking the sweater out of the package i was kind of skeptical because of the shape, but to my surprise it looks like as it does on the model. it does take a minute to figure out how to wear it. i ordered the medium (normally wear a size 8) and is a little long, but goes with my personal style. i love the idea of being able to wear it out without looking frumpy or comfy at home.",5,1,0,General Petite,Tops,Sweaters +941,34,Stylish flair,"This is a beautiful sweater, warm, looks great with jeans as well as more formal work clothes. the neckline gives it a stylish boho twist beyond the traditional. i love the color, and it can function almost like a neutral, complimenting almost any other hues. highly recommended!",5,1,0,General Petite,Tops,Sweaters +862,34,Feels lovely to the skin; 1 major flaw for me,"I'm a sucker for anything in rich velvet tones and fabric :) the retailer i visited only had the dark blue top. + +_____________ + +it is tts and hangs nicely on the body, even for gals with longer backs. there was no issue of see-through with the blue (hopefully the pink is the same) due to the dark color and thicker material. the sides are a tad see-through, but only at the cap sleeves! the rest is well lined. + +my only complaint is the v-cut at the chest; it's entirely too low for my liking. every t",4,1,12,General,Tops,Knits +941,44,Nothing like on the model,"The model must have this sweater pinned at the back. the sweater color is true and the material soft as anything, but the fit is ??!! at 5'9"" with a long torso and broad shoulders, the large was still shlumpy. didn't hang right at all, bunches oddly and is not the least bit flattering. my 5'7"" uber fit daughter had the same issue, and she usually makes everything that doesn't work for me look amazing. returned.",2,0,0,General Petite,Tops,Sweaters +941,39,Get creative,"Get creative with the neckline or let it fall where ever. this is a purposefully slouchy, uber casual, super soft",5,1,0,General Petite,Tops,Sweaters +867,43,"Just buy this, already!","This top is amazing. it's a little stretchy but doesn't cling and it's surprisingly flattering on my curvy figure. i have a large chest and the shirt fits perfectly with or without a cami underneath. the material is very soft and the print is vibrant and fun. the shirt does run a little large. the only slight issue i have is that it is a little shorter than i usually like on my long torso. other than that, it's pretty much perfect.",5,1,2,General Petite,Tops,Knits +829,52,"Not-so-basic, basic white top","I am always on the hunt for a white shirt that is not too sheer, so that i can wear it without a cami underneath. on that count, this top is a winner! +regarding the fit, it is a shorter top, so i am not sure that it would be able to be tucked in a bottom for most people. i am short waisted, and i wouldn't be able to tuck it in. +in fact, i think it is really meant to have an almost cropped fit. +fyi: 36c (34d), broad shoulders/back, short waist - in a fitted shirt i take a 10/12, but i tried this",5,1,4,General,Tops,Blouses +867,32,"Pretty, runs large","Great print and material, but this top runs large. i'm 36c and usually wear l in most lines retailer carries, but this was just big. i reordered in a medium.",4,1,4,General Petite,Tops,Knits +482,40,Little big in the armholes,"This dress had a nice silhouette, but the armholes were cut a bit wide and made it look sloppy- too bad - it would've made a nice casual dress!",3,0,0,Initmates,Intimate,Lounge +867,58,Too much fabric in the wrong places!,"Usually i really like deletta and know the sizing and shapes. this top looked pretty in the pics and i thought it would be a nice change from a tee. it was baggy, hung low and the layers just looked boxy and shapeless.",1,0,0,General Petite,Tops,Knits +867,32,Great for nursing mother! (very low cut),"Very soft material, probably will pill quickly but it is super comfortable. it is also very low cut; it works perfectly for me for breastfeeding because each of the front panels can be easily pulled to the side. a cami underneath is required, the model definitely isn't wearing a bra. i'll be wearing a nursing tank under this. definitely a good print for summer.",4,1,1,General Petite,Tops,Knits +862,37,"Great shirt, if you don't mind a lot of cleavage","This shirt is so soft and lovely, i will be wearing it a lot...after i make one little adjustment. i don't mind some cleavage, but the bottom of the slit in the middle of this shirt goes all the way down to my bra and i feel like i'm showing a lot of side boob...inner side boob?...cleavage? i don't know what the word is, but it definitely feels out of place in a professional setting. however, i'm going to sew a hook and eye onto the top of the slit so i can close it and it will be more like a ke",4,1,0,General,Tops,Knits +579,54,Skort fans rejoice,"I'm a huge skort fan from way back, but finding a cute skort is harder than finding a needle in a haystack, so when i saw this on line i was excited, and when i saw it in the store, my hopes were confirmed. this is truly a stylish, functional skort!! the diagnol hem is flattering along with the two buckle details. love the pockets. you even get a little bonus pocket. the fabric is a beautiful color (moss) and soft, so it hangs in a flattering manner, instead of bunching up. this skort looks grea",5,1,4,General,Bottoms,Shorts +579,53,Summer go to,"Love this skort. bought it in green in store and am now going to get it in black on line. fairly true to size maybe on the lightly larger side. soft, well made and comfortable! bought size 4, am 5'5"" 110lbs",5,1,5,General,Bottoms,Shorts +949,43,So cute and comfy!,I love this sweater! it is so comfortable and lightweight. i am always warm and i can see myself wearing this sweater without getting overheated. very flattering as well :-),5,1,0,General,Tops,Sweaters +1077,44,A pretty dress but a bit large.,This dress has a nice flow and it is simple but versatile. you can pair it with a jacket or cardigan for the winter and use it year round. however it runs one size large.,3,1,1,General Petite,Dresses,Dresses +867,33,Gorgeous,"I love this top. the wine color is beautiful, the fabric is soft, the details are pretty, and it fits perfectly. it is long, and will likely look best with leggings or skinny pants and boots.",5,1,0,General Petite,Tops,Knits +949,52,Soft and easy,Love this sweater and it is so soft and cozy cause it has a little wool in it...not scratchy at all. 5'4 138# usually wear size 6. i got a small regular (not petite). looks great with leggings and skirts not to long for a shorty like me.,5,1,0,General,Tops,Sweaters +1077,43,"Cute, comfortable but runs large",I tried on the blue floral dress in the spring but found it too large on top. i liked the new red motif dress and sized down to a medium which fits much better.,4,1,0,General Petite,Dresses,Dresses +949,40,Cute for fall,This is a pretty sweater that is great for transitioning to fall. wear it sleeveless on throw a leather jacket over it for cooler nights. fights true to size. the gray is a very pretty color. great addition to my wardrobe!,5,1,0,General,Tops,Sweaters +867,63,Beautiful comfortable versatile,"This blouse is an all season winner.i bought the taupe and can wear it with or without a cami, under a sweater. alone, with skirts, pants, jeans. i am 5'7, 135# and a medium was perfect although i normally wear a small.",5,1,0,General Petite,Tops,Knits +949,37,New fall staple,"I love this top. it's so soft and the cut is so flattering for a sweater! the sleeve holes are low enough so that you could easily layer underneath it but high enough to be work alone. the knit is a perfect fall thickeness...warm but not too thick. i am 5'11"" 130lbs and i got the medium for the extra length.",5,1,0,General,Tops,Sweaters +1077,43,Great versatile dress,I ordered the floral blue dress. i am a size 8-10 and ordered the medium. it did not find that it was large on top as others had mention. i love the smoking but would also look great with a belt and boots. it makes a great all weather dress.,5,1,0,General Petite,Dresses,Dresses +818,44,Summer blouse,"I am 5'8"", broad shoulders,can sometimes wear a size 4 depending on the cut. i purchased the size 6 and was a true fit. just enough flow to give you room to move but not too much to make you look larger than you really are. the fabric us light and great quality. perfect for a summer night out. so happy with this purchase",5,1,0,General,Tops,Blouses +818,69,Cheap fabric,"While i love the design and shape of this blouse, the fabric was of very poor quality. i will return it.",2,0,4,General,Tops,Blouses +949,55,Pilly,"Extremely cute sweater, but after having worn it twice it's already pilling up. i'd expect more for a $100 sweater.",1,0,0,General,Tops,Sweaters +1077,65,Love it,"This dress is just lovely--i love the pattern and the cut, and it's very comfortable to wear. i like it because i can wear it just about anywhere, and it's appropriate. you can dress it up or down. i get lots of compliments when i wear it!",5,1,0,General Petite,Dresses,Dresses +867,47,,,5,1,0,General Petite,Tops,Knits +949,79,Classic fall sweater,"This sweater is soft and comfortable. it's the perfect transition piece from summer to fall and in winter can be easily layered. at 4'11 it's a little large and could have sized down to an extra small petite, but still love it.",5,1,0,General Petite,Tops,Sweaters +597,35,Beautiful dress,This dress is much larger in person than it looks on the model but i absolutley love it! there is an inner tie that helps taper the waist a bit and the material is gorgeous!,5,1,1,General,Trend,Trend +1093,43,,,1,0,0,General,Dresses,Dresses +949,36,Lovely and timeless,"Gorgeous material, great length for tall girls, warm without being too heavy, super soft. i ordered the grey and white in small and have returned them for extra-small. i feel like they run a bit big though i seemed to have gone down a size at retailer in the past year, not sure if its vanity sizing. this is a classic sweater and a timeless staple - elegant and sophisticated. the grey is that nice soft grey that doesn't wash a fair complected person out and is flattering with all complexions. great",5,1,6,General Petite,Tops,Sweaters +949,44,Go to top,This is a great transition piece. wear with jeans or dress it up with a cute skirt.,4,1,0,General Petite,Tops,Sweaters +949,55,,"Modern, unique, versatile; love it paired with the essential culottes. usually size 4/small but got the xs, otherwise the armholes dipped down too low as did the back hem of the sweater (",5,1,2,General Petite,Tops,Sweaters +818,51,Wow!,"Just received this gorgeous blouse and i couldn't be happier! it's stunning! not sheer at all, but light and breezy. i typically wear a medium, sometimes a small, but i ordered the medium since velvet tends to be a little tight in the shoulders on me. this medium is a little roomy so it fits more like a tunic - which is what i've been looking for all spring. the blue is even prettier in person - a true blue. a perfect find!",5,1,7,General,Tops,Blouses +953,61,The pictures do not do it justice,This is the most fabulous sweater ever. i really hesitated spending $368 for a sweater but this sweater is worth every dime! it is soft and luxurious. i tried it over a cashmere cable knit dress and it looks unbelievable -- i also tried it over jeans and it looks equally as good. if it came in another color - i'd buy it too.,5,1,0,General,Tops,Sweaters +1077,39,Size down one or two sizes,"I have this in the beautiful spring green/pink combo and i this gorgeous blue/maroon tapestry combo, which is prefect for fall. unfortunately, i bought the green in s and it's still pretty big in the bust area, but they sold out of xs. i was able to get the blue in xs and it fits perfectly. i usually order m",5,1,1,General Petite,Dresses,Dresses +867,45,Pretty,"Nice fitting, pretty and feminine. looks great with skinny jeans/leggings and boots. good in spring, fall and winter!",4,1,0,General Petite,Tops,Knits +949,52,Great transitional sweater,"Love this - bought in camel and cream in xs. runs large. cute with jeans & thigh high boots, leather skirt and booties or just casual. so many compliments... great for wearing a sweater but showing off arms....",5,1,0,General Petite,Tops,Sweaters +1077,44,Too baggy,"This dress is just too baggy overall. i am 5'6"" 140 lbs and a size small was so unflattering. i can't go down in size because the waist detail will get too high on me. it was already a little high on the small.",2,0,0,General Petite,Dresses,Dresses +867,26,Looks better online,"I ordered this top in red based on one of the reviews. it is more like marroon. i am very disappointed. the top itself is plain cotton and not that great quality. it is long and has the belt at the back, but the fit and quality overall are very plain. it looks a tad dowdy. i am still keeping it because i got it on sale and i can wear it at home with lounge leggings. but it is definitely not dressy. perhaps white may not look as bad. the plain design and marroon dull color don't help.",3,0,0,General Petite,Tops,Knits +1089,42,Artsy and beautiful,"I see me wearing this dress with more of an edgey look - not going for romantic. smoky eye, skinny dark jeans under it and pumps. swings further from body than i thought. + +i'm 5'7"", wear a 34b and am typically a size 2. that's the size i bought. fits well and while pretty, it's made with heft ... not overly delicate - can't see this snagging. it's more of a cotton lace which is why it looks cool with skinny jeans. detail at the neck gives it more interest.",5,1,2,General,Dresses,Dresses +1063,35,Fabric is amazing,"I know you cannot tell from the pictures, but the fabric on this is incredible. it is very light and extremely airy so that it flows when you walk. i am a rather petite individual so it would require excessive tailoring for me to wear this-both in length and in the top. i think it was true to size with this exception-and i wish they offered this in petite. i would have tailored the length if it was only that, but on the top (i am not large-chested) there was a bunch of extra fabric that just lai",5,1,7,General,Bottoms,Pants +1089,35,Not my favorite dress,"I saw this one for the first time today in-store and was not impressed. it is a lacey material with an under-layer, so with a different cut other than a swing dress i would have fallen in love and it would have been absolutely gorgeous. unfortunately, i did not like the swing dress cut, especially not in white. i wasn't sure if the designer was going for a throw back to the 70s or a shortened version of my grandmother's wedding gown, but either way it was not working for me. to be fair, swing dr",2,0,16,General,Dresses,Dresses +1089,29,Love.,"I'm pregnant (2nd trimester) and really wanted a beautiful, non-maternity dress. i got this in ivory and it's just perfect. the lace on the sleeves is really comfortable, i love the fit, and i love the length. i got tons of compliments on it. my only regret is that i didn't also get it in slate and i really wishing it would get re-stocked.",5,1,0,General,Dresses,Dresses +925,66,"Beautiful, beautiful, beautiful!!!","This sweater is a beautiful, quality, well-made, piece of art! it looks on, exactly like it looks online. when i ordered it, i was worried that my usual size, xs, might be too tight. however, it is a perfect fit: it is fitted, yet, it still has a comfortable looseness (with some extra room in the length of the arms). for reference, i am 122 lbs, 5'4"", 36-17-36. the color is a perfect match to the pilcro serif navy/marin leggings. of course, i am always apprehensive about stretching and/or shrink",5,1,5,General,Tops,Sweaters +981,62,"Stiff, thin, unflattering","I was hoping that this would be a nice neutral layering staple but it simply leaves a lot to be desired. it fits tts, length is fine...the inside is some, but the outside darker material is stiff and cheap (kinda canvas feeling?). the material is super stiff which makes it flare out like like a tent in a super unflattering way. it also is on the thinnish side - it looks in the model shot like it would be a little thicker and warm. this is definitely going back.",2,0,11,General Petite,Jackets,Jackets +513,27,Wonderful one piece,"I am very happy with this suit! it is gorgeous and very well made. my only suggestion is to use your normal swimsuit size when ordering rather than their recommendations. i am a 4-6 in dress size but am curvy with a large bust. i went with a medium because i thought there was no way i would wear a small! the medium actually fits great in the waist and bottom, however is small in the top for me. i'm ordering a large to compare coverage.",5,1,1,Initmates,Intimate,Swim +940,33,Favorite retailer purchase of the whole year!,"This sweater vest is the best! it is so versatile! i've already worn it over a dress and recieved compliments all day. the knit is substantial without being to thin or heavy. i love the little flecks of color in the yarn as well! it makes coordinating easy. i thought the faux fur might be too overwhelming or hot, but thankfully it's not at all. runs true to size. worth full price!",5,1,1,General,Tops,Sweaters +981,37,,"Ordered this vest in both the xs and pxs. i liked the length and overall fit of the xs, however, i ended up returning both due to how the vest draped. the outer fabric is a bit more stiff which made the vest balloon out more then what i liked. overall, it?s not a terrible vest but just not for me.",3,1,7,General Petite,Jackets,Jackets +965,39,Not structured,"I ordered ths thinking it was likea blazer, but it is soft and not structured, like a t-shirt. however, it is rather flattering on. i had a har dtime deciding whether to keep it. the regular size was fine on me, i usually require peites, but this doesn't come in petites, and it was really nice with the fitted cowl shirt i was wearing. i am definitely putting it back in my wish list (as i did end up returning).",4,1,1,General Petite,Jackets,Jackets +1089,38,,"I don't normally write reviews, but i purchased this dress in white in 3 different sizes and each dress had the same flaw. the hems were very uneven on all three. this dress was poorly sewn. it's a shame because it looked awesome online. i was very disappointed!!!!!",2,0,0,General,Dresses,Dresses +1063,42,,Love love love this jumpsuit. i can't wait to wear it in the tx summer. it is super fun and elegant. you can dress it up or keep it casual. i am 5'9 155 and wear a 10. it laying quite nicely and doesn't require you to wear heels with it.,5,1,3,General,Bottoms,Pants +1089,27,Lacey vintage heaven,"I walked into retailer today to buy 2 dishes for a registry. $$$ later i walked out with this dress (and another, ugh). it is so beautiful in person. it ever-so-slightly flares out and it definitely has that 70s feel. i got it in white and plan on wearing it for my rehearsal dinner with tan platforms and a flower crown. for reference: 5'7/got some hips and thighs/148lbs - and i got a medium. would have gotten the small but it was slightly shorter.",5,1,5,General,Dresses,Dresses +940,46,,,5,1,0,General,Tops,Sweaters +1063,37,Meh,"So i'm not sure if its just my body type or what, but this did nothing for me. the bottom, which i thought would be too big was actually too small in both the small and the medium (i'm a size 8 bottom) and then when i sized up to the medium it was still too tight and then the top was loose. i just think this one is going to take the right body type. it could look really beautiful on the right person, just not me.",2,0,5,General,Bottoms,Pants +1059,45,Perfect pants,"These are the perfect pants for the hourglass figure, i needed sz 4 but the store was sold out in my sz plan to order . these pants are light weight and fit in all the right spots , don't show any flaws on legs and i do have them ,but they are very complimentary to my figure . they are also really hip without being over the top or weird.",5,1,4,General,Bottoms,Pants +828,59,Snag this before it's gone!,"Great news if you missed out on this tank last year! this s the exact style and cut as last season's buttondown tank released by c&s. + +super flattering fit, not too poofy. it *is* semi-open in the back and the slit goes as high as the last button. super sweet for summer and goes with virtually everything. i reeeeally wish they had this one in more colorways. it's grrrrr8! + +for reference i'm 5'6"" 103lbs 34a 25 in jeans and i tried on an xs. last year i purchased an xxs petite and it fits exa",5,1,9,General,Tops,Blouses +981,38,Great vest,I bought this yesterday in store - i agree it runs large and sizing down keeps it from swallowing you. i typically wear a large and went with a medium. love the grey color - it will make a nice neutral. am looking forward to wearing this well into fall/winter as i'm in the south where it takes a while to get cold.,5,1,0,General Petite,Jackets,Jackets +940,36,Insanely stunning vest,"This vest is not only stylish and beautiful, it also has pretty specks of blue and rust and other colors. will go with so much. i love the collar, not too big, not too small, just right. frames the face nicely. can wear with dresses, can wear with skirts, can wear with jeans, can wear with cords, the list is endless. this will make any outfit look pulled together. the accompanying belt or sash hits at hip level, i personally like it more at waist level so i remove the belt and wear without it. f",5,1,0,General,Tops,Sweaters +909,39,Missed the mark,"I think this will work well on very busty hourglass figures,or very petite frames; but on my athletic build this shirt did me no favors. i have one of those body types where my biceps are very muscular, and my shoulders are broader than my hips (w/a 34b chest). i typically take a m or a l in most retailer tops, and, had i kept this, i would have gone with the m. +---------- +this shirt hit my arm at the low point of my bicep (~1"" above my elbow) and made my arms look huge. fyi, the v neck is very de",2,0,37,General,Tops,Fine gauge +981,39,This vest is amazing!,"I love this vest! it is a great color and the inside is very soft! i will definitely be able to dress it up or down. +if you are in between sizes i would definitely size up if you plan on wearing this with a little heavier turtleneck/blouse underneath. +it's amazing! i feel so confident in it!",4,1,1,General Petite,Jackets,Jackets +1089,42,,"Love this dress! fits tts. great fitted slip underneath beautiful lace design. i'm 5'6"" the dress (size small), hits right above my knees. very versatile dress, may be dressed up or down depending on shoes",5,1,1,General,Dresses,Dresses +940,34,Gorgeous all around!,Love love this sweater vest! quality is wonderful and the fit is great. highly recommend!,5,1,0,General,Tops,Sweaters +940,48,Very impressed,"Picked this darling vest in a medium. i have been eyeing for sometime but really did not want to pay full price, after checking other manufactures i came back to this vest at retailer. as the other reviewers mentioned, the softness, spec of colors which enables you to wear the vest with so many colors in bottoms and tops; the pockets, the belt, which i love as much as the pockets, though the faux fur collar i do wish was removable. the faux fur will limit me in getting away with wearing this vest",4,1,1,General,Tops,Sweaters +1089,44,Only for the tall at heart,"I saw this dress in our store and immediately walked over to check it out. it is quite a stunning piece. i purchased it without trying it on and wished i would have. unfortunately, there is entirely too much material in the bodice. it was overwhelming on me. for reference i am 5 ""3 and i do wear an xs but i am muscular and not thin. i think it would work well on somebody taller or leggier who could balance out the amount of material in the dress.",3,0,1,General,Dresses,Dresses +1089,31,"Great, easy dress to pair up or down","I immediately purchased this dress when it came into store. at 5'7"" it hits enough above the knee to be flirty, but still not too short and is appropriate for me to wear to work. sleeves are fitted which helps to balance the trapeze fit. i'm just concerned with keeping the lace in good condition, but overall i love the dress.",5,1,8,General,Dresses,Dresses +827,28,,I love maeve but this shirt's quality was poor and it was not worth the price. i would not recommend buying this online. you really need to try the blouse on in the store to make the decision as to if its worth purchasing or not...... and in my case this is being sent back.,2,0,0,General Petite,Tops,Blouses +1089,42,Very versatile,I have this dress in white and i have worn it twice for completely different events. i wore it with red heels for a dressy look and then with boots and a jean jacket for a more casual look. i am only 5'4'' and it hit above my knees. it's a soft white that is appropriate for winter wear. love it!,5,1,2,General,Dresses,Dresses +1089,29,Perfect bride dress,Fits perfect.,5,1,0,General,Dresses,Dresses +981,53,Great drape,"I missed out on the sherpa vest in caramel last year and didn't want to miss out again - can't wait to wear this when it gets chilly. i am between a s & m but the small was very comfortable. it could be easilly layered over a thicker item, or a t-shirt as pictured. so glad i picked this one up.",5,1,8,General Petite,Jackets,Jackets +513,57,,This is what a bathing suit should look and feel like. no crawling up the cheeks :) no spillage out the front. i would say it's true to size or a little on the large size. i'm 5'4 122 and ordered a medium which was great for me. maybe a small would have been ok but i couldn't be happier. good job! color is true to the pic. quality seems nice and sturdy.,5,1,1,Initmates,Intimate,Swim +981,32,Cute vest,"Fun outerwear for the fall. the color is a bit more grey than the photo shows (at least on my screen), but i still think it'll go with a lot.",5,1,0,General Petite,Jackets,Jackets +909,54,Curve-hugging lightweight classic,"I got a size xxsp which is perfect although i usually wear a xs petite or xs. i'm 5'2"", currently 33-25-37, 30d/32c bra, with narrow shoulders and torso, a bit long-waisted. the ribbed darby sweater hugs every single curve without being tight. low cut, but not as low as on the model; very flattering neckline. sleeves end about an inch above my elbows and can be folded up. +. +well made, very lightweight knit of 57% cotton, 43% polyester. the ribbing detail is very well thought out. there is bias",5,1,0,General,Tops,Fine gauge +909,52,Perfect summer sweater,Bought this sweater as soon as i saw it. the knit ribs and the length help slim your lines. it is flattering even on my heavier mid section. the material is airy but not see through (yay!) i love that the deep v-neck with collar is not too deep for the office. i would buy another if another color becomes available. perfect spring to summer sweater,4,1,8,General,Tops,Fine gauge +1078,26,"Cute, comfortable, runs small","Where i live it's warm enough to wear this dress with tights through the winter. the dress is super comfortable with a unique shape. only downside, the arms and chest run pretty small so if you usually have a hard time fitting sleeves, try a size up.",4,1,0,General Petite,Dresses,Dresses +865,26,,,5,1,0,General,Tops,Knits +895,39,Very cute,"The sweater is thinner than i expected but very cute so i'm keeping it. it seems well made so i'm not expecting easy snags, it washed well.",4,1,1,General,Tops,Fine gauge +1078,51,Love this dress!,"Love this dress!!! i agree with the other reviewers, i had to size up one size, but then it was perfect. i'm 5'5, 125 lbs. and the size 6 worked great.",5,1,0,General Petite,Dresses,Dresses +1078,25,Size up,"If you are shaped anything like me, you will have to size up quite a bit on this one. i tried it on in my normal size and probably needed to size up 2 or more sizes to get the proper fit. the fabric has no ""give"" and feels a little cheap in my opinion. for your reference, i am a curvy, athletic build with broad shoulders.",4,1,0,General Petite,Dresses,Dresses +221,59,,"Very flattering. fits tts. love the colors. does not give any lift up or support to breasts.i am a 36 c and i was fine with this. it is so flattering to back and overall a flattering fit i was ok with my breast not being supported and uplifted. if you want support this is not for you. it does look exactly as it does on model in regard to coverage showing some cleavage but very little. i am 5'6"" 127 lbs and not very fit and took a medium. my husband really loves this suit and gave it two big thum",5,1,3,Initmates,Intimate,Swim +862,56,Such a nice design....,"This top could've been one of my favorites ever. i ordered the rose option and was planning on ordering another color. the fabric is super thin but i was able to wear w/o an extra tank. unfortunately after 2 wears, several small holes appeared around the neck/under the ruffle. i washed this top on hand wash cycle and hung to dry. when i came to read the reviews, i noticed i wasn't the only customer with this issue.",2,0,0,General,Tops,Knits +862,44,,"I love this top- it's loose and flowy, yet flattering, and the colors are fun. the armholes are cut a little low, so a cami is necessary. after one wash and lay flat dry, the wrinkling is substantial. hope i can steam it back to its normal shape.",4,1,1,General,Tops,Knits +907,56,Adorable dress,I ordered xs/petite but i think i better ordered xxs which was already sold out at the time i purchased. i recommend one size smaller for this sweater. this sweater is designed very wide for your shoulder which could be fallen down for people who usually prefer petite size but it's really adorable!!,4,1,12,General,Tops,Fine gauge +895,33,Adorbs,"Very cute, very flattering. the peplum is fairly subtle and really works, falling at just the right place for me (i'm 5'5). i got the red and have worn it over a dress and with jeans. the color is deep and works well with my pale skin. the fabric is quality and looks like it will hold up well over time - always an issue with sweaters. + +unlike some of the other reviewers, i found it ran slightly large. i am small framed but large-chested and often take a medium in sweaters, but a small is roomy o",5,1,0,General,Tops,Fine gauge +865,40,,I bought this top for my daughter and it looks beautiful. it's a pretty jade green color and has a nice flow to it. the back is very flattering as well.,5,1,0,General,Tops,Knits +865,70,"Love,love,love!!","I had originally bought this top in one of your stores and loved it!!! got sooo many compliments!!! while reading my e-mail one night, i saw it on sale!! of course i would have bought it anyway!!! now i have 2 of my favorite tops!!!",5,1,0,General,Tops,Knits +862,30,<3,I ordered this top in rose. (the color is actually more of a cream with navy and yellow stripes but i could tell that from the photo when i was ordering). the fit is true to size and the cut is very flattering. excited to add this gem to my summer wardrobe!,5,1,0,General,Tops,Knits +945,45,Must have fall vest,"If your looking for something to spice up your wardrobe, this is it. rich in color and a luxurious soft hand but so much better in person. i plan to dress up with a long knit tunic and tights plus over the knee boots or with destructed dark denim and booties. i got the burgundy color and may go back for the blue as well. this is a staple for many seasons to come.",5,1,0,General,Tops,Sweaters +862,32,,,5,1,0,General,Tops,Knits +1078,20,,"I ordered the blue dress because i loved the color and unique design. the blue was much more of a dark navy, not a sapphire blue as it looks in the picture. the picture also shows it tying on the side. it did not tie on the side when i tried it on but in the front as pictured in the red version of the dress. it was not at all flattering on me. one of the few disappointing things i have ordered from retailer.",3,0,2,General Petite,Dresses,Dresses +865,32,"Cute, but clumsy","The design is cute, but there is way too much fabric in the lower part of the shirt. also, the fabric for the lower part crumples easily. unless you carry around an iron, you may not want to wear it outside the house. i kept the shirt to wear around the house.",3,0,0,General,Tops,Knits +1078,56,Great dress,My only reservation is that i wish the tail wasn't so much longer than the front. i returned it reluctantly because i needed something just a little dressier for the occasion.,4,1,0,General Petite,Dresses,Dresses +895,45,Very flattering!,"I bought this is a size small, i'm 5'8"" 140 and the fit it perfect. it is a very pretty red and looks very cute on. i'm very happy i bought it but i did buy it on sale otherwise i may have hesitated because of the price.",5,1,1,General,Tops,Fine gauge +895,35,Don't think twice,This structured sweater is beautiful and timeless! gorgeous seasonal color and style is classic! i typically order medium but wanted a more flowy look and got a large. great purchase. great fit!,5,1,7,General,Tops,Fine gauge +945,59,"Love, love, love!!","I ordered a m/l in this vest and it fits perfectly. thirst is cozy and stylish. in fact, i ordered the same vest in another color! it's versatile enough to wear with both skirts and jeans. i also think it's a timeless piece that will stay in style for years to come.",5,1,0,General,Tops,Sweaters +1078,57,,,4,1,0,General Petite,Dresses,Dresses +907,66,Gorgeous.,So lovely. perfect print / graphic. want to buy in both colors but the yellow is perfection.,5,1,0,General,Tops,Fine gauge +1078,74,Bloomsbury,"This is a very nice, flattering thing which can be worn as a dress or a shirt. therefore decided tiokeep it.",4,1,0,General,Dresses,Dresses +865,53,Very flowy,"The back of this top is nice but it is very flowy. i ordered a small (32dd, normally a 4/6 in retailer tops) -- a smaller size would fit better but is not available. overall nice, but wish it came in a smaller size.",4,1,0,General,Tops,Knits +907,23,Favorite fall sweater,"I love, love, love this sweater. it is slightly fitted so that is drapes beautifully. notice it has 3/4 length sleeves which is fine for north caroline where it does not really get cold. i purchased the blue and i wore it with fitted jeans.",5,1,0,General,Tops,Fine gauge +865,34,,"Very soft material, length is great, a little more loose than i would have liked.",3,1,0,General,Tops,Knits +945,46,Love this vest,"This is a perfect change of seasons into cooler (colder!) months piece. + +colors +the colors are muted, the pattern is modern and stylish, the cut flattering. + +sizing +the sizing is generous, and fit is easy. love length, which is true to the product photo- fitting at about the bottom of my fingertips. i love the coverage without looking too covered. + +quality +it's soft, a great weight ---and the quality seems good. i have already worn it a few times and it is not one of those sweaters",5,1,0,General,Tops,Sweaters +907,40,Color off,I ordered the yellow color way expecting it to be a mustard color. it seemed to have a greenish tint to it and didn't look right on me. also the pockets didn't lay right so the flower didn't look right.,3,0,0,General,Tops,Fine gauge +921,67,Gorgeous and enormous,"First, i did not notice the description mentioning metallic thread. i was disappointed when i opened the box to find it is a metallic, but actually i'm glad i didn't know because i love it. it does not look cheap and it really works. the pale peachy color is gorgeous and the metallic is subtle enough. the real issue for me is the size. i ordered the small and it is huge. enormous. especially from the back. the seam on the sleeve is just above my elbow so it's almost a bat wing kind of thing and",5,1,7,General,Tops,Sweaters +907,39,Can;t decide on color,"I ordered both colors in the xxs p knowing that size goes fast. i used to wear xs or xs petite consistently, but this last year, i have found myself needing the smaller size (vanity sizing?) in this case, the xxs p was perfect for me, length was around mid-thigh (could almost wear as a dress if i were younger and not as muscular in my thighs), the waist and chest are fitted but not snug (fitted in the sense that it follows my natural curves). the flower patterns are so cute, it does cut at the p",5,1,11,General,Tops,Fine gauge +945,36,Love it!,"Loved this vest when i tried it on in the store, and ordered it during the last sale. i usually wear a medium, and the xs/s fit much better than the m/l. getting excited for fall! now if the weather would cooperate, so i can wear this cute new vest!",5,1,0,General,Tops,Sweaters +865,33,Versatile,"This shirt is versatile for work and fun. my sister has this shirt and thought it was so cute, i ordered it too.",4,1,0,General,Tops,Knits +895,38,Perfect fit,Fit is perfect. body slimming. i'm glad i purchased it.,5,1,0,General Petite,Tops,Fine gauge +945,30,Super cozy and perfect for layers,"Love this vest. it is super soft and cozy yet fits and lays well. not bulky, so it's a great piece to layer over flannels. it has a bit of stretch.",5,1,0,General,Tops,Sweaters +865,21,Love this!,Im short (5'2'') so it's a little long on me! but it's super cute and i love it!!,5,1,0,General,Tops,Knits +895,49,Love it!,This is a beautiful light weight sweater. great for the texas weather. the red is a great color for the holidays too.,5,1,0,General Petite,Tops,Fine gauge +895,51,,"I love the looks of this sweater on the model! after receiving it, it was still very pretty and stylish to look at. my problem is that i am petite, and the sweater seemed to run very large. it wasn't very fitted. i think the detailing in the back would look better fitted. it made me look rather dowdy and/or matronly unlike how it looks on the model. i think that was because it was just too big. i returned it.",3,1,3,General Petite,Tops,Fine gauge +907,45,Love it,"This is my favorite find of the fall. i got the mustard color and it is wonderful. very soft, nice shape, unique design. i am usually between a medium and large in tops, but i found that the medium was a little too short for my liking. (i am 5 ft 8 in tall). even sizing up, it's far too short for me to wear as a dress as some others had mentioned, but looks great with jeans and boots. the large is perfect!!",5,1,0,General,Tops,Fine gauge +862,58,Ruffle detailing is high quality.,I love the neckline with the pleated ruffles and tie. it's graceful and distinctive yet still understated.,5,1,0,General Petite,Tops,Knits +865,55,Comfortable and flattering,Love my new wardrobe addition. fits perfect and goes with everything,5,1,0,General,Tops,Knits +895,48,Beautiful sweater,"I purchased this sweater in red, it's a deep, rich color and although i usually opt for black, you can see the beautiful details on this sweater much better in the red. i love this item!",5,1,1,General Petite,Tops,Fine gauge +865,56,Adds volume,"This was another unusual choice for a larger busted woman like myself, but i couldn't say no to that sweet little back detail. i'll attack the waist with a cropped jacket. for those looking to add volume or flowy fabric, you've found your answer and then some!",4,1,5,General,Tops,Knits +865,43,Not quite right,The green color was beautiful but the top was too low cut and looked more maternity than boho.,3,0,0,General,Tops,Knits +1078,73,Cute and stylish,"This dress is adorable. thanks to everyone who commented that the dress runs small as that's definitely true. i ended up ordering up two sizes and got a perfect fit. i was afraid the wrapped skirt might emphasize the hips too much, but that isn't the case. it adds a bit of quirky style and makes this different from the usual shirt dress. it's great with booties or chunky wedges.",5,1,0,General,Dresses,Dresses +907,51,So cute and lightweight!,Some of the reviews about this being cheap fabric made me nervous about purchasing...but i did and i love it! the material isn't super thick but i like that as i tend to run hot. it's super soft material and feels good on!!,5,1,0,General,Tops,Fine gauge +865,38,Mixed review,I wanted to love this shirt and thought i would based on the reviews. it runs really large however and while i love how flows it is i also looked pregnant. i am keeping though- looks nice layered under a jacket or sweater but alone i feel it looked sloppy and big....... which is sometimes just what you want so it is staying in my closet.,3,1,0,General,Tops,Knits +865,40,,,5,1,0,General,Tops,Knits +1078,27,,This dress is effortlessly chic. i wore it with black tights and booties and it was perfection. will definitely be a casual staple year around.,5,1,0,General,Dresses,Dresses +907,74,Adorable!,I ordered this in xsp navy with the merlot/burgundy flower and it fits above the knees as pictured. the tunic is medium weigh and has a-line shape with a loose waist and i find it very comfortable. the sleeve are straight cut (not tight) and 3/4 quarter in length. i will wear it with leggings and boots/booties this coming fall.. i find this tunic is well-made and disagreed with one review that it is cheaply made. (wrong color?) fyi: 102 lbs. 32c,5,1,6,General,Tops,Fine gauge +895,52,Perfect holiday sweater,"This sweater is so much cuter in person than as pictured. i bought the lovely red one today. i got my usual size, xs. i plan to wear it more fitted as a top rather than as a jacket, although i can still layer it if i want. the color is divine. the weight is just right, not too heavy but not too light. sometimes peplums overwhelm me, but this one did not. it hits at just the right spots and is flattering all over, particularly making my waist look small.",5,1,3,General Petite,Tops,Fine gauge +907,45,Can't wait to wear this,"I tried this on and think it will look great with leggings and boots. it's very flattering without being too tight or too baggy. some of retailer's clothes are just too full and baggy for me and make me look large. i am 5'4"" 140 lbs and ordered the medium which fits perfectly. i ordered both the navy and yellow, but the yellow has not arrive yet.",4,1,1,General,Tops,Fine gauge +907,47,Love my poppy tunic,I do not have an retailer where i live so i ordered this tunic online. the material is extremely soft & comfortable ( not at all itchy). tts. i fell in love with it immediately and can't believe how many compliments i received all day long when i wore it to work ( with some skinny ankle length pants). can be dressed up or down. this is certainly going to get a lot of use this fall,5,1,0,General,Tops,Fine gauge +1078,47,"Style, comfort, great fall color","Runs big, but the fabric is nice and comfortable. i had to return first order and order the next size up. it is short in the front but a nice length in the back. it will be a great dress for fall and the color is unique, more brownish orange than red. it will look great with boots!",5,1,0,General,Dresses,Dresses +1078,32,,,4,1,0,General,Dresses,Dresses +865,21,Cute design,Cute design and interesting back feature. runs a little big and is comfortable and flowy.,5,1,0,General,Tops,Knits +865,51,Summer coverall,"This is absolutely a 1-season top. the material is very thin and flowy, with the front v plunging pretty dramatically. i'm using mine as a swim cover, and i'm thrilled to report the mottled pattern on the cotton hides perspiration(!) +the first time i wore this top, i paired it with denim shorts, and the hemline completely covered the shorts, so it was way more of a mini-dress than a long shirt--which is ok. if i wear it again as a top rather than a swim cover, i'd just go with yoga shorts benea",4,1,1,General,Tops,Knits +895,68,Perfect red cardi,"I had this on my wish list but saw it as a "" on of"" on black friday....and it just happened to be my sisz p it fit me perfect... if anything it runs a little big but it is great to layer. it can be worn sipped over a cami with lace showing .... or as a regular cardi/jacket over first layer! the detailing is loely! even tho it is 40% off today ( i got it with the 25% off store wide sale), my size sold out before this promo so i am very glad i got it when i did. just in time for all the christmas",5,1,0,General Petite,Tops,Fine gauge +1078,56,,"After reading all the reviews i thought i would have to size up. went into my local retailer and found this dress in a size 4 burnt orange color (last one in stock). it was still marked $79 so i think thats why it was still there.. i crossed my fingers and tried it on, it fit perfect! not to short or tight in the upper sleeve. i'm 5'4"" so maybe that's why the lenght was fine on me. if you can find this in your local store try it on. it's really cute and comfortable. i also have the front lace up j",5,1,0,General,Dresses,Dresses +1078,44,Defective!,"I wanted to love this dress. i saw it in the catalog in blue, and wanted it. however, for some reason i took my sweet time in ordering it, and by the time i did, only the orange was available: but on sale. i was so excited when it arrived, and as i was trying it on, i thought, this is a bit shorter in the skirt than i usually go but it's so pretty... and then i couldn't get my right arm in the sleeve at all. i wondered if i had caught some of the lining as i was putting it on or something, but n",2,0,2,General,Dresses,Dresses +865,52,,,5,1,0,General,Tops,Knits +895,58,Great sweater,I have this in both the black and red. great design. very flattering and soft. the red is the perfect color. will get a lot of west from these for many years.,5,1,0,General Petite,Tops,Fine gauge +865,23,Not flattering,"I love the idea of this top, but wish there wasn't so much fabric. i am wearing a medium in the photos and for reference my measurements are 38-30-40.",2,0,15,General,Tops,Knits +945,53,Love this vest,"I first saw this vest displayed in the window and admired the colors and weave. i couldn't get it out of my mind, so i had to make a special trip back to retailer to buy it. it is soft and drapes well. looks amazing with denim and boots. i think it will be my favorite fall purchase.",5,1,0,General,Tops,Sweaters +945,35,,,5,1,0,General,Tops,Sweaters +907,55,Beatiful tunic,"The tunic is very pretty! when i visited antho store, i was just fallen in love with it. +i purchased purple one because the color is for fall. this is good for straight and slender body type. +please purchase it before it is gone!",5,1,1,General,Tops,Fine gauge +945,36,,"This vest is sooo cute! i bought the red (really a dark burgundy) and it is perfect for fall. i wanted to buy the other color but it's sold out online. i'm 5'3"" and the length is fine. i'm usually an xs 2 or 4 at retailer and the regular xs/s is the perfect size. i am on the busty side and doesn't make me feel too heavy like some vests.",5,1,0,General,Tops,Sweaters +1078,54,Cute dress but......,I love the look of this dress and the material - the problem is that when i tried it on the fit was a bit off. it seems that the arm holes hung down way too much and pulled the dress so it is uncomfortable to wear. i don't think i could have gone down or up a size to make this dress work. it is a shame because i really liked the look of it.,3,0,0,General,Dresses,Dresses +907,41,Great different fall sweater,"Deep purple keeps it fall, flower design keeps it feminine, pockets make it fun! love it and can't wait to wear it.",4,1,0,General,Tops,Fine gauge +865,36,Want it in every color,"I love this top! it falls in a romantic and easy way. it's very flattering and looks great. i just had a baby two weeks ago so it hides my insecurities and post baby bump. i had many compliments and felt so comfortable, so ordered it in the green color. i wish there were more!!",5,1,0,General,Tops,Knits +895,60,Red sweater,This is an awesome pointelle sweater. i love angel of the north sweaters. i bought the small (34b) and it fit tts. the pleats in the back hang without pulling. it also flatters the figure with it's shaping. it is a lightweight sweater in a great shade of red. just love it!,5,1,0,General Petite,Tops,Fine gauge +862,30,Shrunk like crazy!,"Bought this shirt on sale. it was super cute in the dressing room, and for the first time i wore it. washed it per the instructions (wash delicate with cold water, lay flat to dry) and it shrunk so much i don't think i'm going to be able to wear it anymore. it was oversized and loose when i bought it, so it shrunk a lot. there is also a small hole all of the sudden, that i have no idea where it came from (wasn't there when i put it in the washer). very disappointed.",1,0,1,General Petite,Tops,Knits +895,67,Image does not do it justice,"This is the cutest sweater. i bought it today in black. i cannot wait to wear it. it is a lovely, distinctive knit & just the right weight to layer as shown with a white blouse or with a turtleneck. i tried both the xs and s; and i decided to go with the s as it still emphasized that i have waist, but i could layer it nicely. i am 5'4"", 130 lb. you can always count on angel of the north for great style.",5,0,16,General,Tops,Fine gauge +865,57,,,5,1,0,General,Tops,Knits +862,34,,"Great too. love it's flow. dolan is a great brand. however it's definitely large and baggy which is fine just know it's not tight. i'm 5' 10"" and 135 and ordered a s.",5,1,17,General Petite,Tops,Knits +865,55,Stylish & comfortable,"I ordered the green top in store after trying on a medium that was huge. the small fits me well and i love the flowy style and softness of the fabric. i like it with skinny capri jeans and the color will transition well into fall. i'm in florida where it is still very hot in october. if you typically wear either a small or medium, order the small in this top.",4,1,0,General,Tops,Knits +907,57,Beautiful and cozy,"This is a beautiful sweater/tunic/dress. i ordered in the mustard color, and wearing it will brighten my day on a dreary winter morning. it is so hard to find winter clothes in bright colors. the sweater is soft and not itchy. it is a bit longer than i expected...maybe 35"" (i am 5'7""), but that is just fine! it can be worn with leggings or tights. dressed up or dressed down. i couldn't be more pleased.",5,1,1,General,Tops,Fine gauge +907,32,Love how it fits!,"I'm 5'3, with a 32h chest. ive always had a hard time finding clothes that fit well because i'm chest heavy. this fits perfectly without making me look bigger than i am and hides my post pregnancy pooch well! + +i usually order a medium at retailer and ordered a medium in this sweater.",5,1,0,General,Tops,Fine gauge +865,39,Not very flattering,"As much as i wanted to love this top, it was too flowy and and i felt like i looked bigger than i am (i'm a size 6). maybe a smaller size would have made a big difference.",2,0,0,General,Tops,Knits +865,37,Great style!,"Just picked this up at my retailer and i just love it. its totally different than your typical tee. the bottom is more of a blousy silk material and the top is a super soft knit. it lays really well and is long enough to wear with leggings! my favorite part is the t strap in the back. such a beautiful detail and so much fun. my only criticism with this top is where it hits on the bust. im a little more full figured, so the top looks better on me when the silk part isn't under my boobs. kinda have",5,1,2,General,Tops,Knits +862,49,Arm holes too big,"I likded this but tried it in two sizes and it was still too big in the armpit. my bra showed. i am about a d cup, smallish in other proportions (125, 5'6"") and no bra worked with this so that i wouldn't have to worry about my bra showing. nice fabric and drape. maybe good for someone who doesn't need a bra?",3,0,1,General Petite,Tops,Knits +907,43,Beautifully fitted sweater tunic,"Great design, beautiful colors, well fitted. got compliments.",5,1,0,General,Tops,Fine gauge +862,39,Adorbs,So much cuter than the picture. i bought a m and i'm a 34c i thought it was comfy n flattering,5,1,8,General Petite,Tops,Knits +945,58,Great sweater vest...,"Love the style of this vest, and an added bonus is how soft it is. every vest is different, though, so if you're shopping in the store, be sure to look at all of them.",5,1,1,General,Tops,Sweaters +865,53,Great fun shirt,Comfortable & the color was great. just as it looks in the picture. nice design,5,1,0,General,Tops,Knits +907,56,Cute but not for me,"I love the print on this. it's a super cute sweater, but i didn't think it worked so much for a 56 yr. old with a thickish middle. the med. was a bit snug but expect the large would've been too big (5'3"", 150 lbs). a great statement piece for anyone with the figure to carry it.",4,1,1,General,Tops,Fine gauge +945,23,Opted for larger size,"I tried both the xs/s and the m/l and found the larger size to be more roomy in the shoulders, and just swish a bit better around the hips. this is a change from many long vests my closet, which tend to be size small or medium, as are my blouses and tops. however, could happily live with either size and color, gorgeous.",5,1,4,General,Tops,Sweaters +907,49,Beautiful color and fit,I purchased the poppy pocket tunic in yellow. the color is perfect and looks great with my dark grey leggings. cannot wait until it's cold enough to wear.,5,1,0,General,Tops,Fine gauge +907,56,Loved so much i had to get both colors!,"This sweater is the reason i shop at retailer - unique, cute & comfy! the yellow really isn't 'one of my colors' but it's so different that i had to get it. and the cut is so flattering, that i had to go back to get the purple! it may run a tad bit generously; i'm 5'4"", 124 lbs, 34d and originally got the small. i wound up returning and getting the xs. that sizing was slightly more form-fitting, without being clingy.we had a hint of fall weather in colorado, so i immediately threw the yellow versi",5,1,3,General,Tops,Fine gauge +921,48,Very pretty but very itchy,"Like the first reviewer, i love the color and look, and agree that it is much longer and wider than it looks in the photo. i am 5'3"" 116lb and ordered a small. i was planning to wear it tucked into palazzo pants as the model seems to have done, but they must have used some other way to gather up the sweater in back because there is no way such volumes of material can be tucked into anything. and the metallic threads are itchy, so i had to finally layer a full sleeve tee under it to be able to st",3,1,1,General,Tops,Sweaters +865,55,Cute quincy tee,"Very pretty top. the fabric is wonderful! i enjoy the movement and the style. only downside is that it is cut a little low for me. but it does look great and the fit is, otherwise, perfect",4,1,0,General,Tops,Knits +907,52,Love it!!!,"I love this sweater. hoping to order the other color. the weight of the sweater is perfect, not too heavy. i also really liked how the sweater lays with leggings because it is not bulky. great sleeve length.",5,1,0,General,Tops,Fine gauge +1078,29,Runs small,"It's a fine dress, but it definitely runs small, and it's actually a lot shorter than i was expecting, especially since i'm only 5' 3""",2,0,0,General,Dresses,Dresses +907,43,Favorite find for fall,"I went to retailer for a pair of pants and walked out with this tunic in the blue motif and the pilcro cords in dark turquoise. this sweater, like the one i purchased last season by the same designer, is well made and the fabric is luxuriously soft (like cashmere soft). am so excited that the weather is finally cooling down to wear it!",5,1,0,General,Tops,Fine gauge +865,19,Love this top,This too is great to throw on when running to class or going out. love the two different materials and the back detail.,4,1,0,General,Tops,Knits +1078,35,"Flattering, size up","I am petite with somewhat broad shoulders. iusually wear 2 or 2p dresses. i ordered a 2 and it was tight in the shoulders & hip. otherwise this is a cute dress, looks better on the person than in pictures. the tie is an interesting twist on an otherwse basic shirtdress. the fabric drapes nicely on the body, i reordered dress in a 4. inever wear size4. hopefully it's not too big or long.",4,1,0,General,Dresses,Dresses +907,38,Love the cut of this sweater,"I purchased the poppy tunic in gold - it's a beautiful rich color - and overall am super happy with the cut of this sweater. retailer has been emphasizing oversized, flouncy tops for a few years now that do nothing for those of us with small waists/big booties - this top is just the opposite and i hope to see more like it. the wide neck is graceful and the sweater curves in nicely without hugging the body.",5,1,0,General,Tops,Fine gauge +895,50,Love,"Beautifully designed to flatter a women's figure. i love the fit and feel of this classic, but modern cardigan.",5,1,0,General Petite,Tops,Fine gauge +895,67,,"Perfect light weght sweater for the holidays. i love the detail in the back. the xs was a great fit for this 5'2"", 115 lb body.",5,1,1,General Petite,Tops,Fine gauge +862,53,Huge,This was so large on me that it looked awful. huge armholes and a baggy mess. material was nice and i loved the design. not sure a smaller size would even help.,3,0,0,General Petite,Tops,Knits +1078,45,"Flattering, quirky shirtdress","When i first saw this in the store, i loved the idea of this shirtdress with a twist. i tried it on in my usual size 4 but could not get it over my 32d bust. i wrote it off and moved on. back in the store shopping for a party dress, i saw this was now on sale. although not right for the party, i decided to try it in a bigger size. a size 6 was not available but a size 8 was. perfection! if you are willing to size up, you will be rewarded with a comfortable, versatile dress that can be super casu",4,1,2,General,Dresses,Dresses +865,36,Returned immediately,"First, the product arrived in a very small bag that made for many, many wrinkles - almost impossible to determine what it might look like. shame on retailer for sending their items in this manner. secondly, i don't know how individuals wear this with a bra. the back is cut so low that my bra back band partially showed - not my idea of a good look. third, the front necessitated a cami, and there is no way a cami can be worn due to how it is cut in the back. returning now, and i just received it.",4,0,10,General,Tops,Knits +907,49,,,3,0,0,General,Tops,Fine gauge +865,51,"Beautiful color, soft","I am super happy with this purchase. this top is so soft with a nice amount of flow. i'm wearing it with a bolero sweater over it, making it wearable in the fall and in cooler weather. i also purchased this top in the gray/green shade and it lovely as well.",5,1,0,General,Tops,Knits +862,42,Very cute but runs large!,"I bought this in store without trying it on. bought my typical size xs. the armholes are cut very low, as is the front neckline. it has an overall slightly slouchy fit. i definitely could not wear this to work without a camisole underneath. otherwise, i really like the style, and the black and white striped color way will go with alot.",4,1,11,General Petite,Tops,Knits +865,50,Fab fit and feel!!,"Love this top! the fit is so comfortable, and it flows beautifully when you walk. the added bonus is the flirty open back, cross strap design to make even your exit an attention grabber. pairs great with some jean leggings and wedge heels. +loved it so much i went back and ordered another color.",5,1,0,General,Tops,Knits +1025,49,,,5,1,0,General,Bottoms,Jeans +907,39,Perfect pop of poppy,"This super cute sweater is comfy and fun to wear. i love it as much as last years wool paned sweater tunic, except this sweater is too short on me to wear as a dress. wonderful with leggings and boots. i bought the blue in size m regular and my stats are: 63""t/39""c/28""w/35""h/30""i (tall/chest/waist/hips/inseam)",5,1,4,General,Tops,Fine gauge +1078,34,Love this dress!,"This is my favorite kind of dress: comfortable, unique, and can dress up or down. i am 5'2 and 100 lb, and bought the regular 0 because there were no petites available. it fit perfectly! the material is buttery soft and looks like it will hold up well, and i love the orange-red color. the tie detail makes this dress stand out and i find the cut very flattering. so glad i ordered it!!",5,1,0,General,Dresses,Dresses +945,30,Amazing!,"Love this sweater! not too long or bulky,true to size. the fabric is super soft, great quality!",5,1,6,General,Tops,Sweaters +865,60,This top looks so cute on,"I first saw this top earlier in the year. i watched for it to go on sale and it finally did over the labor day holiday + 40% off. i was very happy about that. it runs a tiny bit big. i got the s. i wonder if the xs would have been better but i kept the small because of the price and how cute it looked on. it looks gray online but it is more greenish gray. it has a cute back detail, too. it looks cute with jeans and gray pants. it is just cute and different than most of my other tops.",4,1,0,General,Tops,Knits +1078,29,Adorable spring time dress!,Thank goodness i looked at everyone's reviews beforehand because i ordered a size up (4) and it fits perfectly. i am usually a size 2 but can definitely tell it wouldn't have fit correctly had i ordered a 2. the orange color works well for either a fall dress with leggins or a spring dress by itself. i love it!,4,1,0,General,Dresses,Dresses +895,64,Crazy!,It's really crazy how much i like this sweater. i am surprised by the weight of the sweater. it is a medium-light weight that will be appropriate year round. it fits perfectly and is very flattering open or zipped. i will wear this as a stand alone top with a tank underneath for now and in place of a spring jacket when the weather is warmer. this is a nice find.,5,1,0,General Petite,Tops,Fine gauge +907,67,,,5,1,0,General,Tops,Fine gauge +907,44,Modern hippie happy beauty,"This is a modernized hippie sweater, so beautiful. blue is more for fall but i think the mustard color has more personality. the large flowers add attitude, pockets show comfort. it is soft (part silk fabric) and lays nicely. it is not thick enough for warmth, but there is room for a tissue turtleneck. regular s fits me well (it should be relaxed look, not fitted) and i wear it as a dress with thick tights and boots (i am 5ft2in, 34b, 26 waist, 36 hips, and the hem falls right above my knees).",5,1,0,General,Tops,Fine gauge +865,40,,"Love the top. love the color. love the back detail. as a larger chested woman, the shape was lost a bit. but i just couldn't resist.",3,1,0,General,Tops,Knits +865,33,Love this top!,"Usually retailer's designs run small for me, but this large fits great. super comfortable, long enough to wear with leggings. love the back cutout design and fabric choice. depending on bust size, it may seem to sit funny, but it's not meant to be a true baby doll design that sits under the bust. mine looks great :-)",5,1,0,General,Tops,Knits +945,30,Flattering and cozy!,"Love this vest!! i bought the red color and absolutely love the feel of the fabric. you can wear it over a variety of clothes..dresses, turtlenecks, long sleeve shirts. perfect staple for the winter and fall!",5,1,0,General,Tops,Sweaters +865,46,,,5,1,0,General,Tops,Knits +862,35,Very cute top,"This top is very cute. the fit is great and the material is very comfortable. i am a 5'7, 135 lbs and wear a 36d and the medium fit great!",5,1,2,General Petite,Tops,Knits +865,24,Awesome shirt!,This shirt was very cute. i ordered it as something to be able to wear to class with leggings and it is perfect. the colors are great and the length is very nice. it will be a nice piece to layer with a jacket for the the fall.,5,1,0,General,Tops,Knits +865,23,Great shirt,I love the style and the flow of this shirt. definitely worth the purchase and very flattering!,5,1,0,General,Tops,Knits +945,37,Perfect transitional piece,I have worn this with a tank and shorts and know it will be a great fall piece over a long sleeve tee. the pattern is pretty and the fabric is soft and warm. it can be casual or dressed up. this product is true to the picture- what you see is what you get.,5,1,0,General,Tops,Sweaters +865,32,Flowy and soft,"Exactly what i needed post pregnancy. this top is very comfortable with a drape that hides my tummy. the back hits that perfect spot where it looks great, but still hides a normal bra.",4,1,0,General,Tops,Knits +1078,44,,,5,1,0,General,Dresses,Dresses +865,45,Soft with drape,"This is an adorable top. i had to have it in both colors. it has a unique shape to it, and the simple details give it so much appeal. the beautiful fall like colors can be layered easily into the cooler weather of the season.",5,1,0,General,Tops,Knits +907,51,Poppy pocket tunic revie,"I liked everything about this tunic except the way that it looked on me. the fabric was great - not too heavy, not too light. the design was cute and i loved the colors (i got the yellow). it was cut well, and a good length for me (i am 5'2""). that being said, i am curvy and i felt like i looked even rounder in this top. if i was 6-8"" taller it probably would have been perfect.",5,1,0,General,Tops,Fine gauge +945,26,"Gorgeous, soft, luxurious!","So happy i purchased this - it's a gorgeous piece, and perfect for fall and winter. the colors are soft and beautiful, and i feel like this will pair well with a lot of shirts in my closet.",5,1,4,General,Tops,Sweaters +865,21,,"I saw this top and immediately knew it was for me! i love it. and i disagree on it being one season too, i could see making this work all year, for sure. i love the green/gray color and it flows so beautifully, it's perfect! the back wasn't a problem for me, when wearing a normal bra i couldn't see my bra, maybe if this is a problem your bra is up too high on your back, i'm very petite and didn't have a problem with it. i bought a small, could have possibly used a xs but they didn't have it, but",5,1,1,General,Tops,Knits +865,46,Love this shirt!,Beautiful design and perfect for warm days. it has a lovely open back with the perfect amount of loose fitting flow.,5,1,0,General,Tops,Knits +1084,42,Do not wash!,"I loved everything about this dress. the fit, the style and the ability to wear in the fall. i wore it once, washed it in gentle/hand-wash cycle, in cold water and laid it out flat to dry- per the instructions- and it shrank at least a full size. it's going back. i am so sad, as i said earlier, i really loved this dress.",2,0,5,General,Dresses,Dresses +1078,29,,"I bought this dress online to wear to work and i did not expect anything too impressive based on the picture of the model. i am really surprised at how beautiful, well-fitting, and soft this dress is. i am in love. it fits snugly, but the fabric is so thick that it is still very office appropriate (i work at a law firm). i ordered the small petite and it comes to the top of my knees.",5,1,0,General Petite,Dresses,Dresses +1094,57,Disappointing,"The fabric, colors and concept are fabulous but the pleating is overdone is it looks huge not swingy! +i am 5' 9"" and 135lbs. and even an x-small was too billowy to be cute. too bad- it's otherwise so great!",2,0,1,General Petite,Dresses,Dresses +1084,33,,Beautiful dress. lots of compliments. will transition well from summer to fall.,5,1,3,General,Dresses,Dresses +1092,35,Poor fabrication,"When i tried it on, it was a bit shapeless, but it was on a promo so i decided to get it. i kind off like shapeless. i've worn it three times and washed it gently in the machine as recommended (in a lingerie bag, always) and air dried it. it now has a huge rip on the sleeve seam, and i cannot see how this happened. the inner lining is soft and substantial but the outer gauze layer is thin.",1,0,1,General Petite,Dresses,Dresses +974,67,So disappointing,"I love the photo of this and because the reviews were so positive i ordered it. i was shocked when i opened the package. first, the fabric is not the silky rayon cotton blend i was expecting. it looks and feels more like a cheap cotton. it does not have the drape or feel or look i expect in a kimono, which brings me to the second disappointment. it is not a kimono at all. it has no kimono sleeve, no sleeves at all in fact. just a slit in the side of the body of the garment you put your arm throu",1,0,7,General,Jackets,Jackets +872,39,Artsy and comfy,"As other reviewers mentioned, this sweater is truly nice in person. i love the different patterns from the fabric. the cut is also flattering, not boxy. the collar on me turend the other way around (dark showing), and it also looked nice. i wasn't planning on buying anything, but it was thanskgiving weekend, with, you know, discount :-# not regretting it... + +i will wear it many ways: jeans and tshirt for weekends #if i get out of my workout clothes#, but also could be worn over a nice black blou",5,1,2,General Petite,Tops,Knits +1078,39,Need petite in this one,"I tried on the refgular xs and it fit, btu the cut was wring on me, i moved up the dress as though it was cut ""petite"" and what a difference! i will ahve to roder the petite for sure. + +te material is a thicker knit, very strectchy and warm enough to carry the dress through winter and spring. +the shoulders are well covered, in a flattering way. the chest area is crossed over ""open"", not stiched close, so yo ucan adjsut as needed. te ""tie"" jsut falls but is attached to the dress on one side, so it",5,1,4,General Petite,Dresses,Dresses +1094,69,Oh dear...where was this dress when i was pregnant,"Review title says almost all. add to that that it is age appropriate, unlike other kedia dresses, for the very young. just too cute for words. i have all of the other tk peasant dresses and although youthful they are appropriate for anyone young of heart. this however, on an older woman, looks ridiculous. i would have liked it for those 9 months but even then it would cover quadruplets!",2,0,0,General Petite,Dresses,Dresses +1092,27,So disappointed!,I was really excited when i ordered this dress for na upcoming beach vacation but was very disappointed when i finally saw it in person. it reminded me of those christmas nightgowns from the 90s with the red and white ruffles. pass!,1,0,2,General Petite,Dresses,Dresses +872,66,Comfortable arty,"I loved this jacket the minute i saw it. saturday sunday is one of my favorite brands. even cuter on than the photo. short back at natural waist long in front . great quality fabric. thick and warm. fits very narrow in sleeves so i went from small to medium to have room for a top underneath. the medium is perfect. back is stylish, solid tweed grey with front pattern wrapped around from front. sleeves and collar a black diamond pattern and ribbon trimmed edge.overall very interesting grey black c",5,1,3,General Petite,Tops,Knits +1028,24,Amazing jeans,"I love these jeans. i am normally a 25 so i went with a 25 petite. i'm 5'4"" and the length was perfect. the 25 was a little big so i'm going to order the 24 petite and compare. they r a great material and very stretchy",5,1,0,General Petite,Bottoms,Jeans +1092,47,Returned for another size,"Great comfortable dress with style! this ran a little large, so i returned for a medium! so glad i did!!!! you can dress down with a pair of low sandals and sun hat or dress up with some heels and hair pulls back!",5,1,0,General Petite,Dresses,Dresses +1028,91,Cut so small!,"These are the very stretchy, almost spongy, type fabric. i ordered my usual size and they fit me like a sausage skin. crazy small!!!",3,0,0,General Petite,Bottoms,Jeans +986,46,Simply beautiful,"This is a really beautiful kimono. soft and flattering. as well as eye catching. +can be dressed up or down. +absolutely recommend",5,1,0,General,Jackets,Jackets +909,47,Great layering piece all season,Love this sweater. the hi-low length is fun. the elbow length sleeves are great. wish retailer offered more colors! low part of the sweater is a touch clingy at first but stretches well. works well with jeans or leggings. overall perfect layering piece for all seasons.,5,1,0,General,Tops,Fine gauge +872,31,Love this!,What a great piece. so unique and so cool and made with high quality textiles. i expect this to be in heavy rotation. can go super casual/luxe with leather joggers or upscale with nice jeans and some heels.,5,1,0,General Petite,Tops,Knits +872,34,Classic sweater to pul on,This sweater is so cute!!! i intend to wear it as much as possible. the little elbow patches are a cute detail. it's warm but classy.,5,1,1,General Petite,Tops,Knits +909,62,,"I ordered this on sale in blue as i had missed it online. i wore it this week during our heat spurt in cali and was shocked how incredible comfy and cute this was with my skinny jeans. it was perfect for the warm day, as well as the snapping evening meeting i had to attend on an outdoor patio... i will love wearing this from spring into summer. i do hope they bring it back as i would love the beige too!.",5,1,0,General,Tops,Fine gauge +1084,35,Looks great off but not on,Loved the colors but the fit was less to be desired. very wide under arms & too much material. looks more like a maternity dress. i ordered a small petite & would have needed the xs but now it is no longer available. oh well. returning this.,1,0,1,General,Dresses,Dresses +672,48,Lounge shorts,"Beautiful shorts. make you feel like a million dollars. love love love them! + +the robe to match is also adorable.",5,1,0,Initmates,Intimate,Sleep +1094,35,Runs super large,"Wanted to love this dress as it's perfect for transition. i'm a curvy gal who usually sports an xl in dresses at retailer, and unfortunately this one was way too big even for me to pull off. my boyfriend actually guffawed when he saw me in it. i would implore the maker to try this style again as it's a good one, unfortunately the sizing was it's downfall.",3,0,0,General Petite,Dresses,Dresses +1094,27,Very large,"I love the design, that's why i'm going back for a smaller size. i bought a medium and that size was made for someone 50 lbs heavier than i. usually i'm good at choosing my size online, but not today. if you are curvy and round like me still go for a smaller size because this dress has a lot if room. also i wish more clothes would come into the stores to try on, please!",2,0,9,General Petite,Dresses,Dresses +974,37,The pictures don't do it justice!,"This is one you just need to see in person! stunning, detailed embroidery everywhere, gracefully oversized, very bohemian, light, airy and dreamy. this kimono was mine the second i saw it! white on white is classic...and this cream embroidery is beautiful. the kimono is very oversized. i'm normally a l or xl and this was plenty roomy. it's also quite long. nearly came down to my knees and i'm around 5'8. if there is an option for petite i'd recommend it to shorter gals! can't wait to pair this w",5,1,24,General,Jackets,Jackets +974,50,"Lovely piece, very pricey","I am still on the fence with this one. i got it sort of as an impulse buy when i was buying some tops at my local store the other day. the piece is gorgeous and looks great over a black tank top. it is very versatile in that you can wear it so many different ways; as an accent piece over a t-shirt, bathing suit cover up, over a dress. it is a delicate material so i'm sure you have to be careful washing it, but it has a feminine, flowy style that is very unique. the only thing that i'm not sure o",4,1,26,General Petite,Jackets,Jackets +974,29,Thrilled to own this,"I'm short, only 5ft and this is beautiful and flowy. it's just below my knees and i think it's perfect. i have only worn it twice out and literally everywhere i went i received a compliment, and asking where i got it. it's unique and no one else carries one like this. i know some customers mentioned the price being a bit high but i disagree. i would rather pay for something that i love, that has good design and quality instead of 50 or 60 for a so so product. that's what i love about retailerpolog",5,1,1,General Petite,Jackets,Jackets +872,26,Love!,"This is a lovely jacket. i thought it was going to be thicker, but it's so classy and chic. i got several comments on it, and i've only worn it once! great jacket to have in my closet. i can wear it to work, to dress up an outfit for school, or to complete an outfit.",5,1,1,General,Tops,Knits +1078,45,,,5,1,0,General Petite,Dresses,Dresses +1094,56,Not for me,"This dress was cute in the photos but wore like a sack when i put it on. great quality, fabric was lovely, just a little sparkle at the hemline, scallops were great but i put it on, i immediately took it back off and put it back in the sack to return. love the look, it just was terrible on me. i'm petite, 5'0"" and weigh 110# so i'm not large but the dress made me look like an oompaloompa.",2,0,1,General Petite,Dresses,Dresses +1110,50,Beautiful dress,This lacey dress fits well and is very comfortable.,4,1,0,General Petite,Dresses,Dresses +1078,45,Fits like a glove...,"I spotted this dress at my local retailer. to be honest, i saw it on a rack with a sale sign on it and didn't think much of it. then i saw it on a salesperson...wow! i think this dress looks much better on someone than on the hanger...so i recommend trying it on. + +i am 5'3"", 32b...and i bought an xs. it fits really well...right about the knee, similar to how it is shown in the photo so taller women may find it to be a little shorter. + +the ruffle/fabric that comes down the side adds an interesting",5,1,2,General Petite,Dresses,Dresses +974,68,Just didn't do it for me,"I bought this (because it looks beautiful, is well made, and a high quality piece). when i got it home and tried it on, it did not achieve the look i was going for (boho). instead, it was very drapery and full and big and i felt like i was wearing a ghost costume on halloween. i do love retailer's kimonos and thought i'd love this one. but it's going back. i don't need any more clothes in my closet that i do not absolutely love and want to wear again and again. that is my new criteria for purchasi",3,0,5,General Petite,Jackets,Jackets +986,39,,,5,1,0,General,Jackets,Jackets +872,42,,,4,1,0,General,Tops,Knits +872,42,,,5,1,0,General,Tops,Knits +1094,57,Beautiful folklore/bohemian print dress,"I ordered a xxs as i am a size 0. it fits very well, i am 5'5"" and the dress hits me 2 inches above knee. i would wear this with thick tights and boots. the sleeves are unlined, but because the material is of high quality, it does not seem too shear. you can belt this dress if you do not like the loose, swing style. i love the print and colors. i was not really aware of the silver sequence at the hem, but i do not mind it. however, i feel it does dress it up taking it out of the every day wear c",5,1,4,General Petite,Dresses,Dresses +872,69,,"Did want to love this jacket because i have so much black and white, but i saw it on my daughter and had to have it. i usually take a large, but i needed an extra large, and the fit is great. the material is not too heavy, so i know it can wear it year round by adjusting the weight of tee underneath.",5,1,1,General,Tops,Knits +1078,48,,,5,1,0,General Petite,Dresses,Dresses +1092,31,Design flaw,"I had such high hopes for this dress, but unfortunately it misses the mark completely. the design is flawed in that you cannot raise your arms to shoulder length. for someone who is 5'3, 105lbs, the dress has no shape and looks like something from zoolander's derelict campaign. i think one must have a specific body type for this dress, but regardless, they'll have to keep their arms at their sides.",1,0,13,General Petite,Dresses,Dresses +974,64,I finally caved!,"After eyeing this online several times, i saw it at my local store. in person it is just so pretty. it does have a romantic look to it. i wasn't looking for it... the sa was wearing it! she is much taller than i & it draped nicely over her denim jeans. says she loves it & just had to have it. well, of course, i was going to try it too! at 5'3"", 117#, it was to my knees in the front, longer in the back. a little on the overwhelming side. love the crinkly fabric, embroidery detail, short sleeves &",5,1,4,General Petite,Jackets,Jackets +1094,31,Way too short and baggy,"I couldn't wait to get this dress! i bought it and was instantly disappointed when i took it out of the bag. while the fabric was beautiful, the sizing was way off. this dress claims to be 35"" long, and i could tell instantly it wasn't. it barely covered my rear. i also know it's supposed to be flowy, but it was really, really wide. i can see this working for someone around 5 feet tall who is wider.",2,0,21,General Petite,Dresses,Dresses +909,62,Would have paid full price!,I love this sweater and don't think the pics do it justice. i ordered the light blue/lavender color and couldn't be happier. it's great with leggings or jeans and booties or boots. i received many compliments the one time i've worn it so far. so glad to have snagged this on sale but i wouldn't have hesitated to pay full price!,5,1,1,General,Tops,Fine gauge +1178,34,Great for layering,"This tank is fairly soft and fits true to size. i like that i can pick between a v or round neck, depending on my outfit. it truly offers a profile to layer with anything. the only complaint i have is that the edging wears faster than the rest of the tank. i've trimmed some pilling off of it to keep it looking neat. otherwise, this is one of my favorite tanks, and i have purchase two more so i can always find one when i want it. + +this tank has some stretch, so i imagine it fits a range of siz",4,1,1,Initmates,Intimate,Intimates +1078,39,,"This is a lightweight knit dress that is well-designed but very form-fitting. i decided to return it because at almost 40 there are parts of my body that i don't need to show, but if you're in great shape or willing to wear shape wear, this would be super cute.",3,1,1,General Petite,Dresses,Dresses +986,52,Perfection,This kimono is gorgeous and i've gotten many compliments. it looks good with a t-shirt and jeans or with something dressier. i love it.,5,1,4,General,Jackets,Jackets +1028,48,,,5,1,0,General Petite,Bottoms,Jeans +1094,24,Beautifil bohemian dress,I am very surprised by the low reviews of this dress. this dress is obviously a very loose fitting style. it is a bit of a man repellar dress.the quality of the fabric is beautiful and the pattern stunning. i find the loose flowy style liberating and comfortable. i love it with otk boots and tights for winter but also planning to wear with sandals in spring. i am 125lbs and purchased the petite small.,5,1,1,General Petite,Dresses,Dresses +1077,35,,,5,1,0,General,Dresses,Dresses +328,48,So super soft!,This is great and very soft inside. i am wearing it around my house all the time. great over workout clothes or jeans and leggings.,5,1,0,Initmates,Intimate,Lounge +1077,26,So much better in person,"The pictures of this dress are terrible compared to seeing it in person, and i instantly fell in love with this dress when i put it on. the fit is very flattering with a touch of 1920s flare. the colors are better in person too, with the lightest color being pink, not white as pictured.",5,1,5,General,Dresses,Dresses +815,41,Complete all on it's own,"Cute, simple top that completes an outfit all on it's own. it is pricey but i finally took the plunge and bought it.",4,1,0,General,Tops,Blouses +815,47,Not for every body shape,"This may be lovely on some people but it didn't work on me at all. i thought it would have some swing to it but the bottom hem was tight. if i had gone up a size, the top would have been huge. the bib wasn't flattering on me and it's also quite sheer. too bad because the print is great. maybe if you're athletic with slim hips you can manage it. i think if you are busty this could look like maternity wear on you. back it went, sadly.",3,0,2,General,Tops,Blouses +64,37,,,5,1,0,Initmates,Intimate,Sleep +1077,23,Great dress. fits perfectly!,"I love that retailerpolgie has petite sizes now. i am 5'4"" and 115lbs. i bought the 0p and it fits perfectly. the dress is very cute and the colors are a way to transition into fall when its still warm out.",5,1,2,General,Dresses,Dresses +936,40,Cute but not best quality,I would have bought this had it not been for the way the pockets are sewn in. they are attached on the inside by a string. if the string broke the pockets would dangle. for the price you would think they would have sewn pockets in to the vest. too bad.,5,1,2,General Petite,Tops,Sweaters +1033,53,Great!,"The color, heft, style & quality are perfect. i did go down one size since my usual size was too large in the waist.",5,1,0,General,Bottoms,Jeans +1033,61,Love these jeans!,"I absolutely love the look and fit of these jeans. i did have to size down. i ran into problems after washing. the fraying on one leg was twice that of the other, looking very unbalanced. after looking closely i found that one leg had a top stitching very close to the fray to prevent further fraying. the other leg did not have this stitching, thus the fraying double in size. i have sent a request to customer service for a replacement pair. these are adorable jeans just be sure to check for stitc",3,1,7,General,Bottoms,Jeans +815,40,Wardrobe must,The online pic does not even do this beautiful blouse justice. in person it is stunning and goes with everything.,5,1,5,General,Tops,Blouses +815,49,Nice details on this fun and flowy flamingo top,I tried this on at the store - the fuzzy trim around the bib is adorable and the overall texture with little puffs woven into the fabric has a nice quality feel to it. the pattern of flamingos is fun and the fabric is soft. it does run on the big and flowy side. i thought it was very cute and comfy but ultimately did not buy it because the price is rather high and the petite length is sold out. i'll snap it up if it goes on sale.,5,1,0,General,Tops,Blouses +1025,57,,Lovely small whale cords. they fit too tight around the waist for me. unfortunately i will have to return.,5,1,0,General Petite,Bottoms,Jeans +1033,56,Great cool looking jeans,"I just bought these jeans today & they are really cute & comfortable on. i love pilcro jeans as they fit really well, they are made well & they are always on style. i did have to go down a size as well but they fit beautifully! comfy & stylish!",5,1,1,General,Bottoms,Jeans +815,43,Definitely try on before buying,"Pretty top online - okay in person. runs small, especially on bottom hemline. thought it would have a swing to it. it does not. more sheer in person than i thought it would be. that wouldn't stop me from keeping it though. it was the way it laid on my chest that was unflattering. looked like i was wearing a bib. i don't have a large chest, just weird look on me. unfortunate, because it is an adorable print. top made for thinner or a petite lady.",3,0,5,General,Tops,Blouses +1077,47,"Rich, beautiful colors, very low neckline","For me, the v was too deep on this one, but the colors are beautiful.",4,1,1,General,Dresses,Dresses +1033,53,Finally!! the perfect boyfriend jean,"I've been trying on ""boyfriend"" jeans for more than a year, finally found a pair that fit and were comfortable. many of them had no stretch at all and were very uncomfortable. these have just enough stretch, but not too much. i usually wear a 29-30, tried on the 29 which were comfortable but too loose at the waist. the 28 were a perfect fit. +i'm 5'8"", 140lbs.",5,1,0,General,Bottoms,Jeans +1077,38,Lovely little dress,Never would have thought i would love it so much based on the picture online but saw it in person and it's so cute!! colors are very rich in person - even the soft pink (not a big pink gal) works so well with the other colors. great quality with full lining. i lucked out and picked it up for a steal on clearance with another 40% off! just love it!!,5,1,0,General,Dresses,Dresses +1033,37,Perfect denim,"Pilcro is an incredible denim brand and i've never been disappointed. these are no exception. minimal distress, perfect length (i'm 5'8 and they hit just like the model), great color and super comfy! they have some stretch to them and definitely fit baggier, so depending on how you want them to fit...i sized down for a snugger fit. these are fantastic!",5,1,18,General,Bottoms,Jeans +707,33,,"Love this dress! great for dressing up and down or just to throw on for the weekend. the fit is very flattering but i will say the fabric is very thin so you must use a slip, it's totally see through.",5,1,0,Initmates,Intimate,Lounge +991,23,Surprise! two slits!,"Maybe i didn't read the description correctly, but i was surprised that this skirt has two front slits, thigh-level, rather than just one, as shown in the photo above. it's gorgeous silk, the patterns are vivid, and the pleats are classy, giving just the right balance of form and flow. however, when i sat down, very little coverage!! ...which means i wouldn't wear it much. i considered taking it to my tailor, but too much effort and $$. however, it's beautifully crafted if you're looking for som",5,1,0,General,Bottoms,Skirts +815,60,,Very soft color and soft to touch. the material is light and airy and it feels great on. i wear a medium and bought the small. i would definitely buy this in another pattern if they made it as cute as the flamingos.,5,1,1,General,Tops,Blouses +991,54,Lovely and versatile skirt,"I saw this skirt online and loved the vibrant colors, pattern, and style. it looks even prettier in person. the material is light and soft. the skirt is fully lined so you don't have to worry about it being see-through. also, the skirt is a good length for me and won't drag on the floor. happy with purchase. recommend.",5,1,1,General,Bottoms,Skirts +936,35,Pretty but unsure,"I love how unique this vest is. i'm still figuring out how to wear it in a feminine way, as it lacks shape at the waist and the collar sometimes doesn't behave. i think the sweater texture makes it more casual, but i could belt it and wear with fancier shoes to glam it up. it is a nice third piece to keep warm for fall or winter--hopefully i""ll wear it more once i figure it out!",4,1,0,General Petite,Tops,Sweaters +815,73,Love it!,"Only worn this once but had multiple compliments! such a cute pattern and style. only complaint is wish they would have done the sides with a split. it kind of wants to hug the hips and then be too wide in the middle. still, love it!",5,1,2,General,Tops,Blouses +1077,47,,,3,0,0,General,Dresses,Dresses +815,54,,"This top is really cute and i love the design. however, the first time i wore it, the waste band started unraveling.",2,0,0,General,Tops,Blouses +815,38,So soft and beautiful,This top runs a tad big. it's beautiful in person and sooooo soft. definitely an retailer staple top. material and cut is great,5,1,6,General,Tops,Blouses +815,37,"Beautiful, feminine top!","I really love this top! it is soft, lightweight, and really pretty. it has quickly become one of my favorites!",5,1,0,General,Tops,Blouses +1077,58,Beautiful,"Exciting design, beautiful fabric. love this dress",5,1,0,General,Dresses,Dresses +835,30,Cute top,"I definitely agree with the other reviewers who said this top is better suited for someone tall and slender. the design on the lace is beautiful and i love the scalloped hem. but it is somewhat boxy and flowy, which didn't seem to work on my curvy body proportion-wise.",5,1,0,General,Tops,Blouses +996,33,Nice but yellowy,"This is a lovely skirt that fits well, but it is much more of a yellowy cream color than white. also, it felt very static-y.",3,0,4,General Petite,Bottoms,Skirts +1081,29,"Comfortable, but revealing, dress","I bought this dress for work and receive tons of compliments when i wear it! the material is soft and breathable, which makes it comfortable to wear all day at work with a light jacket. i do agree with the other reviewer though, it does show every bump, especially in the tummy. i also noticed that some of the fabric flaps will flip up when i sit down, but i am going to sew the flap down so it stops doing that.",5,1,1,General Petite,Dresses,Dresses +996,39,Oh my,"Fun fun fun. love the polka dot, but also the cut on this skirt is very flattering and retro. it is perhaps a little yellower on the ivory side, but neutral nonetheless... te fit is very flattering, 0p fit waist, hops, length (115 lbs, 26.5 in waist) i think i will have to keep this lovely item as i doubt it will make it to sale in my size!",5,1,2,General Petite,Bottoms,Skirts +996,64,Beautiful skirt,This skirt is really beautiful and well made. the color is a cream/off white like other reviewers mentioned. it fits mostly true to size--i have a straight build with a wider stomach and no hips and my usual 4 fit a tad tight in the waist but perfect in the hips. i just love this skirt.,5,1,0,General Petite,Bottoms,Skirts +1094,49,Pretty but...,"First of all, i've noticed that maeve is running big, i'm normally a size medium or 6 and two occasions now i've needed a size small and this is no different. of course i ordered the medium and would need to exchange it if i want it to fit better. it's loose allover. the only reason i'm not exchanging it is that the color washes my olive skin color. other than that it's a beautiful dress, it hist at the same spot on the leg as in the model's pictures. for reference, 5'9"", 36b, 29"", 38"".",4,1,0,General Petite,Dresses,Dresses +984,50,Great fall purchase!,"I can't wait for the first signs of fall so i can wear this! the fabric is a nice light weight and the fit is very flattering. as another interviewer commented, it can also be worn as a dress. well worth the investment!!",5,1,1,General Petite,Jackets,Jackets +984,43,Returned with a bit of regret,"Very cute coat but could not keep it for the price...just not sure it is worth almost $200,00 (with tax added to cost). when it goes on sale, i will most likely buy it.",3,1,2,General Petite,Jackets,Jackets +867,41,Great asymetrical top!,"I sat on this top for about 2 weeks waiting for more reviews to see if it was worth buying. i finally took a chance on it and i'm glad that i did. this top is really cute. i love the asymetrical pattern. it's long enough that it goes great with my black skinny jeans. the v neckline is perfect...not too low. i got this in my usual size large and it fits perfectly. i wish that the sleeves were slightly longer, but that shouldn't be a problem for someone not as tall. it's a quirky and ador",5,1,6,General,Tops,Knits +835,53,Got two colors!,"I ordered the navy, which is really stunning, by the way-and the cream. i asked my husband to choose the color for me and he asked me to keep both of them! there you have it. that should say it all! it is a beautifully done lace with an attached camisol liner which, if i'm not mistaken is on snaps so that you can remove it and wear your own cami if this one has a weird fit for you. the navy is really pretty due to the stark contrast of two shades of blue. as i said, my husband saw the cream colo",5,1,0,General,Tops,Blouses +867,29,,Very cute everyday tee. usually run between an xs or small with retailer and was happy i chose the extra small. a great updated on a classic strip tee.,4,1,1,General,Tops,Knits +996,28,,"Eva franco has done it again by creating another fabulously flattering, unique, and compliment grabbing skirt. it runs true to size and is very easy to move in and wear. this is my 10th skirt of hers and i love them all.",5,1,4,General Petite,Bottoms,Skirts +835,43,,"I bought this top in ivory and love it! i'm 5'5"" 125lbs and 32dd. i usually wear a small or 4 but sized up to a 6..i have no issues with the fabric!! this is a steal for the sale price.",5,1,0,General,Tops,Blouses +996,48,"Lovely, but....","I saw this skirt online and had to have it. as another reviewer mentioned, the color is more of a yellowy ivory. the skirt is very pretty, but also has a very thick/heavy satin polyester lining. i don't feel like i could wear it during the summer because the thick poly lining wouldn't breathe. that was the deciding factor and sadly i'll have to return it.",4,0,0,General Petite,Bottoms,Skirts +1081,50,Lovely and flattering!,"I really liked this dress. it's so comfy, i could sleep in it plus it's quite flattering. however, if you have a tummy, which i do, you have to really suck it in. the dress will show bulges but the layers make it a little more forgiving that the typical fitted dress. the length is great and conservative enough that i wore it to work today, though it does ride up as you walk. the blue is dark enough it could almost be worn with black shoes, almost. the top is really cut well with the perfect neck",4,1,9,General Petite,Dresses,Dresses +867,57,,The style and color is very nice but the fabric is a bit stiff. the fabric doesn't have much give and isn't as comfortable as most of my other retailer t shirts. still a cute top for the cooler weather.,4,1,1,General,Tops,Knits +984,34,Even cuter as a dress,I totally thought this was a dress when i tried it on and bought it in the store. there is a drawstring on the inside to cinch the waist making it look so cute as a dress.,5,1,0,General Petite,Jackets,Jackets +601,46,Boys and arrows bottom,"Love! boys and arrows make amazing suits! i wear a 25/26 in jeans and a size small in this bikini bottom - it actually fits true to size, which seems impossible in swimwear! cheeky for sure, but so cute! fabric is super, super soft. i want to wear these all day long.",5,1,0,Initmates,Intimate,Swim +1086,28,Versatile and soft,"In true cloth & stone fashion, this product is incredibly soft and comfortable. i bought mine in petite small, but it will flatter a number of different body shapes and sizes. it's easy to launder (machine wash), and it will work as a perfect piece to dress up or down, depending on how you accessorize the product. i can't wait to wear this while i'm on the go and traveling over the summer.",5,1,1,General,Dresses,Dresses +984,52,A jacket or dress for a four-season wardrobe,"Yes, like the photo suggests, this piece has a lot of the features of a jacket. but, i bought it to also wear as a dress. let me explain... + +fyi: 36c, broad shoulders/back, high waist, dress/top size 10 (without buttons, etc.) or 12 (fitted at the bust and waist), bottom size 6 (upside down triangle), 5'2"" + +i bought the small in this piece, because it is big enough to wear as a light jacket while also being fitted enough to wear as a dress. on the inside of the piece, there are strings that",5,1,11,General Petite,Jackets,Jackets +867,45,,This shirt is so cute in the picture but not so great in person. i bought the short sleeve version this summer and loved it! this runs really big so maybe a smaller size will help.,3,0,0,General,Tops,Knits +1086,33,,,5,1,0,General,Dresses,Dresses +867,43,,,5,1,0,General,Tops,Knits +1086,39,Soft!!!!,"This dress is so soft and comfortable. i love shift dresses and find them flattering. this one did not disappoint in that area. it is long enough for work and hits just above my knee. finally, the colors are great. the shades of blue, muted red and peachy pink are lovely.",5,1,1,General,Dresses,Dresses +1094,54,"Super cute and warm, too","I'm 5' tall and 95 pounds and ordered this in an xxsp. it's a little loose but still looks really attractive on my body. it's warmer and thicker than i thought it would be and lined. i love it! taller petites might want to size into regular because even on my super-petite body it hit a few inches above the knees - perfect length for me but will hit higher for those taller. +it's going to become a staple!",5,1,0,General Petite,Dresses,Dresses +831,59,Lovely blouse,This top is so much cuter in person. it's light and airy and very feminine. can be worn casually or dressed up. definitely not as full/baggy as it appears in the photo.,5,1,1,General Petite,Tops,Blouses +825,64,Amnesty hi-lo tunic:,I bought the blue & white one and it is so very comfortable! it will look with my blue jeans and in the summer with my white leggings! great quality at a good price.,5,1,1,General Petite,Tops,Blouses +825,43,Super cute,"I bought this tunic is blue. it is now one of my favorite tops to wear with skinny jeans or even leggings. i have always love rayon. this top did not disappoint me. it feels very soft and silky which makes it perfect for warmer days. for reference i am 5""1' 125 lbs, the xs p fits me just like the model...lose and not too long. i love it so much that i am considering another in different color.",5,1,1,General Petite,Tops,Blouses +825,58,,I purchased the blue & white pattern of this shirt. the color blue was bright and contrasted perfectly with the white color in the square design. this shirt worn with a white pair of slacks or a white skirt makes a perfect presentation for any occassion during the warm spring and summer months. the fit of the shirt was true to size. i love the longer length of this shirt because it elongates one's height. the cuffed sleeves are perfect in length. the classic style of this shirt guarantees many y,5,1,0,General Petite,Tops,Blouses +936,56,A little odd...,"Love the knit, color, texture--but oddly a short and boxy fit...and so...not flattering.",3,0,0,General Petite,Tops,Sweaters +936,39,"True to size, but in petite","I love hte green color, it is so vribant. i tried it on in regualr size, thinking i could order petite, but they sold out... waht a bummer. + +fit is very flattering, and i find it comfortable.",5,1,0,General Petite,Tops,Sweaters +825,59,Lovely rayon blouse,"Flattering cut, perfect for work or play. even better yet, it was on sale! if they had it in other colors i would buy it! beautiful high-quality garment like all the others i have purchased at retailer!!!",5,1,0,General Petite,Tops,Blouses +936,42,Fun preppy-isn winter vest,"I just saw this in the store and had to pick it up. i just love this green color and can imagine it going with a number of different types of tops/dresses. i personally think this looks best with a chambray button down shirt with this vest over it, paired with slim fitting black pants and boots.",5,1,12,General Petite,Tops,Sweaters +899,36,,"The sweater material was really soft and seemed well-made. the back is an interesting twist, but the material creases easily; i can see it looking messy by the end of the day. the main reason i returned it though was because it runs very large. i got my usual s, and i could have sized down 1, maybe even 2 sizes. i didn't like it enough to try a smaller size.",2,0,1,General,Tops,Fine gauge +1076,30,More of a cover up,This is more of a cover up than something you would wear out .,2,0,1,General,Dresses,Dresses +1094,56,Comfy staple,"I'm glad i bought this dress with a discount. it's a comfortable staple, but not a showstopper. i love the plush fabric, which has great weight, and the skirt. the top is cut to be a little revealing, which worked well with my full bust but wouldn't be work appropriate. the keyhole at the back is large, but did not reveal my bra.",4,1,1,General Petite,Dresses,Dresses +936,37,Cute -- exchanged for bigger size,"This sweater vest is versatile and adorable -- just runs very small. i normally wear an xs from retailer, and just exchanged for a medium. hoping that fits much better. i couldn't even get the xs on.",4,1,0,General Petite,Tops,Sweaters +94,38,"Great idea, poor execution","I absolutely loved the idea of an elongated hoodie as a lounge dress or robe. unfortunately, this particular product left a lot to be desired. firstly, the fit is slim, not relaxed. i'm 5'4"", at 110 lbs and tried both the size 1 (equivalent of a small) and size 2 (equivalent of a medium). sizing up just added length and did not do much to increase roominess. they both zipped up easily but did not drape well. finally, the fabric was really not welcoming. i prefer terry over fleece, however this w",3,0,32,Initmates,Intimate,Lounge +936,57,Adorable little vest,"Gave 4 stars only because i haven't worn this yet and don't know how the fabric will wear. thick knit, looks well made. no pilling/pulls. great color, true to on scree photo. true to size. regular medium fit perfect, enough room in the armholes and width to put over a blouse. for reference- 34-36 c/d 142 lbs 5'1"", short waisted, curvy, usual size 8-10p. didn't need a petite in this. the regular length hit at the waist and fit exactly like on the model. looked cute paired with the mauve navy stri",4,1,6,General,Tops,Sweaters +1076,78,"Gorgeous print, odd fit","I splurged on this dress (still a bit pricey, even on sale), but so far it's the best purchase i've made all summer. the terry is a somewhat unusual choice for a dress that otherwise would have been on the fancier side, but it makes it sooooo comfortable--it's even more breathable and lightweight than the super thin cotton sundresses that usually dominate the summer. my only real complaint is that the cut is a bit out of whack. the medium just barely fits my hips, but it's pretty loose on top--y",5,1,0,General,Dresses,Dresses +1047,47,Comfy and stylish,I love these pants. they are really comfortable without sacrificing style. perfect for the office or just running around. i'm 5ft 9inches and 165 lbs. i bought the medium which fits perfectly.,5,1,0,General,Bottoms,Pants +1047,62,So comfortable!,"These culottes are comfortable and cool. i am a size 8-10 and am 5' 4"" tall. i ordered the medium. the hemline hits me a little bit longer than the model. also they are more of a bell shape on me rather than kind of a straight pant as shown on the model. the pockets are great!",5,1,0,General,Bottoms,Pants +939,74,Fun sweater for the sale price,"This reminds me a bit of a vintage tennis sweater: wide-rib, v-neck; loose-fitting. nice creamy cotton blend. size was a bit hard to gauge. this sweater is long (lower hip length) and has dolman sleeves, so it has a quite roomy fit. however, i ordered the xs/s (my normal size), and it is scaled proportionately, so the fit is true.",4,1,2,General Petite,Tops,Sweaters +1047,24,Versatile pants,"Lightweight and cute. these pants do run on the larger side, which is fine is you like a more relaxed look. i usually wear a 10-12 in pants and i had to exchange the large for a medium which fit much better. great for summer weather!",4,1,9,General,Bottoms,Pants +1027,25,New favorite go to jeans,Super comfortable and flattering casual jeans. i'm 120 lbs 5'7 normally size 26 and the 26 fit perfect.,5,1,0,General,Bottoms,Jeans +1094,54,This dress has nice fit,"The dress is nice, but i was not excited about the color. the only color is this blue. also everyone has their favorite fit. i think i like some other fit better. my biggest problems are color and that is made majorly from synthetic materials. otherwise it fits well and for the right body type it will be perfect fit. +i like to own dresses made of more natural materials.",3,1,1,General Petite,Dresses,Dresses +825,28,Easy elegance,"This top is fantastic. something about it has an ease of elegance and grace. the overall structure and design is aesthetically pleasing and easy to wear. i feel immediately put together and ready for anything. the fabric has great texture and flows well without feeling like the wind will carry you away. i purchased the off-white - it is a bit see-through, but i don't mind wearing a cami underneath.",5,1,1,General Petite,Tops,Blouses +936,30,Great little sweater,"Amazing color- true to picture. it runs a bit large, even with layering underneath. i'm usually a 10/12 / l / 34d in tops and i needed the medium for a nice fit. i'm long-ish in the torso, and this sweater fits just slightly cropped, so really perfect with a longer button down underneath. the buttons on the back are a nice detail.",5,1,1,General,Tops,Sweaters +1047,34,Nice fabric/loose fit,These capri length pants are awesome! i do recommend sizing down though as the l was really big on me (i am a 10-12 with most of my weight in my rear so normally never size down in pants)--the fabric is really nice and the print is versatile and allows wonderfully for pattern mixing. super comfortable!,5,1,0,General,Bottoms,Pants +862,55,So verstile,I wear this top with jeans or cords. i allways get compliments. it's comfortable and versatile. go down a size!,5,1,0,General,Tops,Knits +1035,40,Great fit!,Super flattering! stretch a little with repeated wear but not as much as other pairs. i love these!!!,5,1,0,General,Bottoms,Jeans +233,67,Now i understand,"When ordering this product, i thought it was strange that the mediums were sold out. i went with the small which is generally what i wear. however, these run small and i see why the medium ran out. they are pretty, however, i wish they made them more true to size.",3,0,0,Initmates,Intimate,Intimates +867,56,,"This is a stunning top but it did not work for me because it looked like a maternity top on me.. i think a person needs to be thin with a small bust to carry this off. this would look good with many things, from ripped denim to leather pants, and is not necessarily just for holidays.",5,1,2,General,Tops,Knits +1035,42,Wow!!!,"Love the fit and comfort of these jeans!!! better than my 7's and citizens. the distressing is perfect, i don't have to worry about enlarging a knee hole. like another reviewer noted the color is lighter in person. they fit true to size for me and kept their shape a 3 wears. wish a knew about these before!!",5,1,0,General,Bottoms,Jeans +1035,38,,These jeans are so soft! fit is great and i love he higher waist as well. i can tell i will be wearing the heck out of these.,5,1,2,General,Bottoms,Jeans +1035,32,Why change a classic?,"Noticed all the 5 star reviews online for the latest pilcro stets- so due to the past 2 years of dissapointment of what was once a great pair of jeans....i was hopeful that retailerpologist listened and went back to the original pilcro stet formula- thick denim, just the right amount of give and a flattering 10 inch rise. walked right in and found them- and i knew right when i touched them- they were still the thin denim that's nowhere near the quality they once were. consumers pay attention and t",1,0,4,General,Bottoms,Jeans +862,44,Cute and different,"Love this top! i've worn it once and received several compliments. i'm 5'7"", 127, and the small fit well. i'm happy with my purchase.",5,1,0,General,Tops,Knits +1095,39,Fun airy summer dress,"I really like this dress, i wish they still had xxs p as the xs p is still a little big (i guess ti is the style). i love the eyelet design, the high low is very flattering, and the neckline too. very comfortable. i am not sure if i will keep it as i still think the xxs p would be more flattering, but i like it enough to consider keeping the bigger size. + +nice with a jeans jacket and brown clogs! + +(115 lbs, 30 dd, 26.5 in waist)",5,1,1,General,Dresses,Dresses +867,42,Great top,This is a beautiful top. it is something great to have in your wardrobe for the holiday season or a nice date night option. i highly recommend it. it runs true to size. the price is actually reasonable as far as dressy retailer tops go as well!,5,1,19,General,Tops,Knits +867,46,Not for chesty people,This blouse is beautiful and i saw someone wearing it and she looked great. i went and bought this to wear for a holiday party and it is not for people with any sort of chest! it looked ridiculous on me as the pleats started right at the bra line and caused the blouse to tent out in both directions! however - looks super cute on those more on the flat-chested side!,2,1,5,General,Tops,Knits +1030,25,Amazing jeans,"I wear these pants 3-4 days a week. i work in advertising, so they go perfectly with the polished/ trendy/ casual office attire that is required! they are simply the most comfortable jeans i own-- and also make me look slimmer without looking too tight. they are a unique type of material, a soft but structured stretch weave-- so more polished than normal jeggings-- and smooth over bumps, while still highlighting subtle curves. the zippers at the bottom add an edgy polish, but also provide a more",5,1,0,General,Bottoms,Jeans +1087,36,Great for summer,I got this dress in coral and i absolutely fell in love with it the moment i tried it on. the fabric is very soft and flows nicely. i am 5'3 and i got it in regular but the length is not too long or short. i can probably wear it with my flip flops.,5,1,0,General,Dresses,Dresses +1035,38,,,4,1,0,General,Bottoms,Jeans +1035,33,My new go to jeans,"These pilcro's jeans are so good!!! love the fit, the color, and the feel. i am a curvy girl and these are great, they hit me just right. now pilcro jeans used to strech out really bad but they seemed to have fixed the problem.i wore these jeans at work for 10 hours and they did stretch some but not a dress size, so i would buy the size you feel the most comfortable. i think these are a no brainer!",5,1,5,General,Bottoms,Jeans +867,60,Emroidered lycra top,"Very pretty as shown, runs true to size, however fabric is scratchy on skin.",4,1,1,General,Tops,Knits +1087,41,This dress is beautiful,"When i received the dress, it was true to size on the bust and length. i didn't purchase the petite, but i wish i did since i am 5'2. i tried to wear my wedges, but it's still long. i love the dress and would definitely recommend it.",5,1,0,General,Dresses,Dresses +912,31,Still undecided,"Let me start by saying that i cannot wear wool. it doesn't matter what type it is or if it is combined with cashmere, it makes me itch so much that i just can't do it and i didn't not find this as itchy as others stated. that being said, you definitely need to size down. i am a standard small and purchased the xs and there is still a load of fabric. i still don't know what to think. i think it is okay but i am not sure it justifies the price point.",3,1,0,General Petite,Tops,Fine gauge +912,29,Waaaaay too much fabric,"I know this is supposed to look oversized, and i own a few oversized ponchos, but this takes oversized to a whole new level. i ordered it in my usual size and it was just waaaaay too much fabric - i do not think sizing down would have made a difference. if you are looking for that, it seemed like good qualify.",2,0,0,General Petite,Tops,Fine gauge +867,36,Beautiful top,Beautiful top runs true to size. i'm in between an xs & small and went with the xs. it fit great and was beautiful for holiday photos. it has hints of silver in it.,5,1,0,General,Tops,Knits +1087,31,,"I ordered this dress in coral. while i like it and the dress is nice, i have many other outfits that i like better so this will be going back to the store. i might have kept it in black or blue.",3,0,0,General,Dresses,Dresses +1025,66,Tight,"I generally don't spend this much on jeans but wanted a nice black pair so rolled the dice during the sale. who can wear these? i'm an average size 12 and struggled to get these size 32s over my hips, buttoned and zipped. i looked like a stuffed black sausage. best for thin frames and even then, size up.",2,1,0,General Petite,Bottoms,Jeans +1035,36,New favorite jeans!,"Seriously the best jeans i have bought in years - better than my favorite paige and ag stevies. i sized down from a 27tall to a 26tall and they still aren't super tight, i think maybe some could even go down 2 sizes - i do still have a lot of room in the waist but i am pretty straight through the hips. i am almost 5'10 with long legs and the tall is a great ankle length and fits me like the model. wonderful stretch, comfy, great color and awesome ""ageing."" i don't normally like the ripped jean l",5,1,3,General Petite,Bottoms,Jeans +867,46,Sparkly and festive,"This top is way more sparkly and festive in person. i plan to pair it with black or charcoal gray pants for a holiday party, but it would also go great with dark jeans. it is super cute, can't wait to wear it.",5,1,4,General,Tops,Knits +867,39,Not for the busty,"The fabric and design are gorgeous so i was hoping the top would work for me. sadly, it looked ridiculous on me. i wouldn't recommend the top for busty girls. it looked like a bell on me. fyi, it doesn't come with a camisole underneath.",3,0,3,General,Tops,Knits +1035,39,My new favorite jeans!,"Great fit, runs maybe a tad big but overall great fit/quality.",5,1,0,General Petite,Bottoms,Jeans +1035,40,Love/hate,"I have a love/hate relationship with these jeans. when i first put them on, i felt like i had finally found my favorite pair of jeans. everything about how they fit and looked was just perfect - and they were offered in a petite size! but then two hours later they were sagging. the fabric is so cozy, but it just stretches too much, too fast. i am not willing to give up yet, so i ordered another pair in a smaller size. i'm less than thrilled about having to shell out the $$ for two pairs, but i r",3,1,3,General Petite,Bottoms,Jeans +867,40,Wanted to love it...,It's such a pretty top but i felt that it looked maternity-ish so i returned it.,1,0,1,General,Tops,Knits +1035,46,Should have went a size smaller,I love pilcro jeans. i have many pairs and usually i'm a 31. the sales girl said to buy them a size smaller because they stretch out. i should have listen. wore them one day and totally bagged out. hopefully they will shrink in the wash.,4,1,1,General Petite,Bottoms,Jeans +1035,34,Stretchs out,"Stretch out fast + +5,8 130lb i order size 26 which is my usually size. they fit prefect for about 3hr and then stretched out feeling not right on my body. maybe i should have gone down a sizes. even so i feel like the $$$ and quality don't add up but they are very soft and comfortable, i wouldn't buy them again.",3,1,0,General Petite,Bottoms,Jeans +867,53,Stiff silver lace,"I hate to be so negative but i can't believe this shirt has so many positive reviews. it is stiff, silver lace and hangs funny if you have a chest. adding a cami undnerneath makes it worse. looks cheap.",2,0,10,General,Tops,Knits +1087,33,Yes and no,"I like the idea of the dress, just not the fit in the bust. i'm not particularly big (32c), but it just didn't fit up there. i wish the dress had built in support because you can't really wear a bra.",3,1,0,General,Dresses,Dresses +1035,40,Stretch out fast,"Perhaps i should have gotten two sizes smaller, but the knees on these were baggie by lunch. +they are very soft and comfortable, but i wouldn't buy them again.",2,0,0,General Petite,Bottoms,Jeans +867,30,Festive top!,"This is a lovely blouse. it has an empire waist type cut, which camouflages tummy and hips nicely (especially after a large holiday meal!). i'm usually between a small and medium (4-6) and didn't really notice much of a different between the two sizes. + +**note: it does not come with the camisole shown in the photo, but any black or white standard camisole would work.",4,1,5,General,Tops,Knits +862,65,Love the fabric & design,"I purchased another top, same brand, in the same style from retailer and really love it. the fabric is lightweight, which makes it great for multiple seasons. i travel extensively and these tops hand wash and hang to dry very nicely. i wear a gray tank under this one and love the look. i also like the long length. as usual, i will probably tack the neckline up an inch or so, so that it's not so low - just my thing. overall, the pattern and the fabric are very nice. i usually wear an xs or s; i pur",5,1,2,General Petite,Tops,Knits +1035,27,Amazing,The fit on these is amazing and the color is great too! sometimes the fading is too much on jeans but this is just right. the rise fits really well and the length is great! love pilcro!,5,1,3,General Petite,Bottoms,Jeans +912,58,I love it so much i ordered two,"I purchased the moss green version of this sweater in a m petite. i""m 5'3, 135 lbs with a full bust. i love it! it fits beautifully, and i have received many compliments on it - from both friends and students (and for a high school teacher that's high praise). +when i saw the purple version i debated...two of the same very distinctive style? the answer was a resounding yes! can't wait! +the only minor warning about the sweater - it was very itchy on me the first time i wore it. second time - ok!",5,1,0,General Petite,Tops,Fine gauge +1035,21,Frayed apart,"I loved them on when i got them, but they literally frayed apart on my body as i wore them, and i had them on no more than 5 times. it was not a fit issue or a seam issue; they literally just frayed apart in two areas. while flattering and incredibly comfortable, the fabric was not at all durable...they are not your typical denim, they almost kind of a knit feel them.",1,0,0,General Petite,Bottoms,Jeans +1035,46,Great fall jeans!,"These jeans are awesome, as most of the reviewers have already noted, they are tastefully aged to look modern but not so ripped that i look sloppy. they fit true to size with retailer's recent sizing. i used to wear a size 26, but in the last couple of years i have had to move down to a size 25 even though i am still the same size and weight??? anyway, i bought these in a size 25 and they are perfect! i have not worn them all day yet so i cannot comment on whether they stretch out after wea",5,1,1,General Petite,Bottoms,Jeans +872,36,,,5,1,0,General,Tops,Knits +904,68,Beautiful fabric and detailing,"It's rare to find clothing made of quality fabrics, and this is a fine, soft wool blend. the design is feminine without being over-the-top, and the fit is slightly loose, as pictured on the model. i would not recommend wearing it with a belt, as pictured; it makes it look too ""trendy"" and detracts from the shape of the cardigan, which is beautiful on its own just skimming the body. it is a perfect topper and can work for daytime or an evening out. really lovely, and one of the few things i decid",5,1,0,General,Tops,Fine gauge +862,26,Amazing top,"Normally i would not have bought this color and print, it is just not a color that i usually wear. but after reading reviews i ordered it online. i love love this top. it looks good, is flattering, and is a very nice and different color. i wore it with berry leggings and love it. the top is very comfortable, can be worn with pants and leggings. the only issue i have is that since the jersey fabric is only at the back and not in the front, it pulls at the tummy section in the front and shows an o",5,1,1,General Petite,Tops,Knits +1035,30,A+mazing jeans,Ordered these in a size 32 and they fit perfectly!,5,1,0,General Petite,Bottoms,Jeans +867,42,Lovely blouse,"Lovely, but i am sensitive to some fabrics and i couldn't bear the feel of this lace. wish it had worked, so pretty in the picture!",4,1,0,General,Tops,Knits +862,50,Super cute,This top is both cute and flattering. it is also soft and the colors are gorgeous. i highly recommend,5,1,2,General Petite,Tops,Knits +1087,33,Awesome dress!,"I got this when it went on sale (in navy and coral colors), awesome dress for any occasion! as far as complaints go about the straps, its meant to be low-cut! i really like the basket weave bodice although that does make it more difficult to zip up, but i found it was easier to just slip the dress on zipped up since the stretchy fabric gives quite a bit rather than deal with the zipper. i normally wear about a 0-2 in most retailer brands and have the dress in both sizes (didn't notice a big differ",5,1,0,General,Dresses,Dresses +1056,36,,I am in love with pilcro pants. i am typically a petite 26 or 27. i'm a 27 in these khakis. which is could have them in every color and style.,5,1,1,General,Bottoms,Pants +872,66,Great fit,True to size so great fit from top to bottom. i am 5'5'' and it hits my hips at just the right spot - not too high or too low. it also does not flare out too much so it will not give off the impression that you have something to hide in the tummy area. it is very soft and comfortable. the material is not fragile so it should be easy to maintain its shape after washing.,5,1,5,General,Tops,Knits +1056,35,Avoid stain remover with these pants!,"I loved these pants. loved them so much that it pained me to return them. but, i used shout stain remover on them once, and it drastically faded them in the spot i used the stain remover, that i had to return them. i'm grateful to retailer for standing by their product and taking the pants back for a full refund. i'm tempted to buy them again if i can't find similar pants elsewhere (and just stay away from the stain remover). but, i'm still undecided.",3,0,0,General,Bottoms,Pants +1081,55,Classy,"Amazing style, great fabric and a dress for all occasions. bought the black and love it!",5,1,0,General Petite,Dresses,Dresses +1081,41,Could wear when heels or barefoot on beach,"Beautiful! soft, flattering but not clingy~ i bought in the green which is not a typical color in the summer palate which makes it all the more appealing.",5,1,17,General Petite,Dresses,Dresses +1056,41,Perfect chinos!,Love love love these!! the model does not do them justice since she makes them look like high rise pants. they are very soft with 15% stretch which is why i sized down . i usually wear a 30. you can remove the roll and they fit perfect w a heel . for those curvy women they look great! also have a slouchy appeal too but tailored . i went everywhere looking for chinos and these are the best ones out there!! for reference i am 141 pounds and 5'4 just losing weight from having a baby and absolutely,5,1,5,General,Bottoms,Pants +1056,45,Love!,Bought these in store and bought another on line. super comfortable and great for a casual look. great length as well! love the pilcro line.,5,1,0,General,Bottoms,Pants +1072,36,Exactly what i thought,"After reading some reviews about it running small i decided to order the 8 instead of my regular size 6 and bingo! i'm 5""7' 144 lb. dress hits right above my knees. i'm between slender and curvy.",5,1,0,General,Dresses,Dresses +1056,74,Love these!,I tried a pair of the hyphen chinos on at retailer and loved them. they are comfortable and a great casual look. i bought two more pairs in different colors on line.,5,1,0,General Petite,Bottoms,Pants +1056,42,,I looooove these pants. i was looking for a cool pair of white pants since last summer. i tried them on and they make my bootie look great. they are also not see through which i love. i love this brand and these pants will be my new summer staple! ps. they were a bit snug then relaxed a little after 2 wears.,5,1,0,General Petite,Bottoms,Pants +1081,56,Gorgeous dress,I saw this in the store and immediately loved it even before trying on. the style is classic and the fit is perfect. the material is soft and comfortable. it hugs without clinging. i tried on the black in s and the green in xs and went with the green. different shoes and accessories will dress this up or down. i plan to travel with it several times this summer. it will be a great option to wear on the plane and arrive looking chic.,5,1,2,General Petite,Dresses,Dresses +1056,36,,Love these pants. they are comfortable and flattering. i generally go for neutral colors but the blue is a beautiful shade that's easy to wear.,5,1,1,General Petite,Bottoms,Pants +1056,67,Beautiful colors and so comfy!,"Thank goodness chinos are in this year. i was so excited when i saw these pants, and they did not disappoint when i put them on. the material is so soft with a decent amount of stretch in them, making them incredibly comfy. they fit true to size and are very flattering - not too baggy or frumpy looking. i purchased the rose colored pants, which are basically a light nantucket red color. for reference, i am 5'8"" and ~135/40 lbs and bought a size 28. i'd be very surprised if i don't end up purchas",5,1,0,General Petite,Bottoms,Pants +1081,29,It's so soft!,"I ordered this dress after seeing it styled with a beautiful cape. when it arrived, it was incredibly soft and the color was a pretty, muted pink. however, once i put it on, it clinged to all the wrong places. having a larger chest made it show a lot of cleavage and if i can't wear a standard bra with it, it's too complicated. in a regular tank dress, it would have been a yes. overall a great dress, but probably for another body type.",3,1,0,General Petite,Dresses,Dresses +1056,59,Love these!,"These pants are my new ""go to"" . i am 5'6"" 122# and the 25 fits perfectly. they do give a little. + +lots of colors to choose from. i have the washed blue and am thinking i need to get more colors!",5,1,0,General Petite,Bottoms,Pants +1056,50,Nice fit,Comfortable and a great color for spring and summer,4,1,0,General Petite,Bottoms,Pants +1081,39,Simple yet sexy,"I tried on the xs in store, but ti was a little big on me (and i usually get petite in dresses, unless they are mini dresses). +so i decide to order the xxs petite. it fits much better. the length is, at the highest point, just above my knees. the chest part fits better on me as xxs p, the plunge is not low, not too high, and is flattering, i can wear a regular bra that can attach as t-back and you won't see anything. +the model on the picture is what it looks like as a usual size (so xs instea",5,1,11,General Petite,Dresses,Dresses +1056,46,Color became spotty after washing,"I bought a pair of these in stone and after the first wash they become all splotchy. i chalked it up to perhaps there was bleach leftover in the my washer. although nothing else in the load was blotchy. i then, because i loved the cut of these pants, bought another pair in the darker blue color. the same thing happened after the first wash. again, nothing else in that wash load was the least bit ruined -- just my new retailer pants! such a bummer-- definitely a dye issue. i called the stores i pur",1,0,2,General Petite,Bottoms,Pants +1081,32,Cute dress,I went with the xs because i didn't want the v neck in the front to be too low. it looks cute paired with a kimono and a necklace.,5,1,0,General Petite,Dresses,Dresses +1056,32,Love these,I have these in 3 colors and i always wear a 27 in pilcro. i could probably size down but i like them a little loose. they are great to have in the spring and summer. they are very soft and very comfy.,5,1,0,General Petite,Bottoms,Pants +727,36,Yoga vest,"I ordered a small and i'm usually always a small. i could not zip it up. i'm am returning it for a large, and this is concerning because what if it is big in a weird way because i'm usually a large?",3,0,1,Initmates,Intimate,Lounge +1081,33,Super flattering & versitile,"So to put this in some perspective, when i tried on this dress for my husband after bringing it home, he described it as ""possibly the best dress you've ever bought."" so that's definitely a winner! i think what makes the dress great is that it's not clingy, but still had a good drape. on the skinny models, it looks large and flowy, but on my curvier body, it draped beautifully and is super flattering, without being clingy or too tight. i'm usually a size 10, 36ddd, and i sized down to a medium s",5,1,13,General Petite,Dresses,Dresses +1056,46,You will not be disappointed.,I cannot say enough about these chinos. i hope retailer will keep them around for a long time despite the news that says retailer is going the way of jcrew. these pants are more stylish and comfortable than any other chinos i have owned. i am a teacher and being comfortable and stylish at the same time is important. i am a 10 to 12 and a 30 fits me fine. please please retailer keep making these every season in fun colors!!!,5,1,2,General Petite,Bottoms,Pants +1072,34,,,1,0,0,General Petite,Dresses,Dresses +1056,39,Love these pants,"I generally love pilcro pants and these are no exception. the fabric is heavy but soft, the color is so vivid but still easy to mix with other top combinations. they are comfortable and flattering. i am 5'2"" and these are not crops on me, with the rolled up hem they are a perfect full length pant but that works well for me.",5,1,0,General Petite,Bottoms,Pants +1056,46,My favorite pants i have ever bought from retailer,"These pants are a life saver. i love to travel with them and have washed them in a hotel sink, rolled in a towel, and hung dry with good results. picro does not usually fit me well, these pants are the exception. i'm 5'6 and if i uncuff them they can be worn as regular length. great for a baseball game! +i will panic if retailer ever changes or discontinues them!!!!",5,1,7,General Petite,Bottoms,Pants +872,41,Perfect top and great price!,"I recently bought this is a medium black and it is a perfect fit. it's a beautiful top and the peplum portion is perfect and long enough for someone with a lon torso. for reference, i'm 6ft 175lbs and usually wear a 10/12 or medium/large top. i went with the medium based on other reviews. i i was lucky to find this on sale.",5,1,1,General,Tops,Knits +1056,64,Great pants but be careful...,"These pants come in great colors and fit nicely if you determine your correct size, which may not be what you usually wear. i have several pair, but i am concerned about investing anymore because of all the complaints on dye stability. retailer is going to have to address this if it is going to continue carrying this product. now, that said, i had a bad accident on one pair of these pants, and the outcome was successful. i wore them to a dinner party and spilled grease on them from one of t",3,1,0,General Petite,Bottoms,Pants +1056,57,Only buy if you like baggy!,My husband never has anything negative to say about my clothes until i wore these pants! they are not flattering and kept stretching out until i could pull them off without unzipping them! baggy in the behind and sloppy looking. they are going back asap!,1,0,3,General,Bottoms,Pants +1056,53,Not colorfast at all!,"Bought the gold pair and dripped something on them so spot cleaned them with water only. my white washcloth turned bright yellow. the food came out but surrounding area was super faded. so i returned them, took the second pair home, wore them a few times, they stretched out so much, washed them in cold water and they have splotches that are really light. these pants are way too much trouble.",1,0,6,General,Bottoms,Pants +1056,22,I love these pants!,These pants are amazing. they are so comfortable and fit true to size. i typically wear a 28 or 29 depending on the pants and the 28s fit me perfectly. i bought the olive green pair and they are everything i have ever wanted in a pair of olive pants. i love that they are tighter in the butt area and loose in the knees and calves so they are not restrictive. i want every color!,5,1,0,General,Bottoms,Pants +1056,33,Color ruins easily,"I bought a pair of these a month ago and first time i washed them they came out with light spots all down the leg. i figured i did something wrong so i bought another pair in the same color and one in sage. just washed both pairs according to care instructions (no spills, stain remover, or anything but detergent) and both came out with light spots all down the leg. very sad to have wasted all that money.",1,0,5,General,Bottoms,Pants +872,29,,,5,1,0,General,Tops,Knits +1081,38,Go to dress,Perfect for a hot day and skins the body beautifully. so soft! i am usually a medium but got a small which fit perfect. usually swing dresses do not compliment the waistline but this one did!,5,1,0,General Petite,Dresses,Dresses +872,62,Beautiful color,"Bought this on sale and wore it to work yesterday with black skinny pants and leopard flats with a big gold necklace. i'm busty and have to be careful with peplum styles, but this one does well.",4,1,0,General,Tops,Knits +1056,49,,Loved these pants when i tried them on they looked great and felt so comfortable. when i washed according to the directions on the tag the bottom of one leg lost so much color that i can't wear them anymore..so disappointed!,3,0,1,General,Bottoms,Pants +1056,37,Great 3 season pants,"I've been looking for colored pants and these are the best! + +i am typically a 10 or 12 in pants and the 30 fit well. i tried on the rose color and loved those. the fit was great, though they wouldn't be long enough on me if i tried to unroll them (though you can). i liked how they fit my butt, hips and thighs, which is usually the most important part. i find that lots of colored pants accentuate the cellulite on my thighs too much, but that was not at all the case with these. + +the fabric is",5,1,1,General,Bottoms,Pants +1056,37,Turquoise dream,Bought these and they fit really well and are super comfy. love the color. will probably live in them this summer!,5,1,0,General,Bottoms,Pants +1056,57,Great basic casual pants,"I have three pairs of these, so i must like them. the fabric is soft and comfy right from the start. i think they might run just a bit large or small depending on the color you get. i tried on a pair of pink ones in a 29 in the store. i wanted the moss color, so i had to order that and decided to order my usual size (30). they fit pretty much like the 29's in the pink. but this fabric stretches, so i'm happy with them. they're not too ""boyfriend-y"""", so not sloppy, and you could dress them up wi",4,1,0,General,Bottoms,Pants +1056,40,Beautiful colors & amazing fit,"I purchased this in the gold in-store. when i got home and saw it also came in turquoise, i ordered those right away as well. the fit is amazing. the pants are very slimming without being tight. they are a comfortable and flattering pant. i really love the colors and will probably snag another pair or two when able. these are a great pant to dress up or just look snappy casual in. they are a great versatile pant. i normally wear a size 8 and weight 155. the 29 fit perfectly.",5,1,0,General,Bottoms,Pants +1072,43,,"Picture says the model is 5'10, i am 5'8. the dress hit me shorter on my leg than it did on the model. i loved everything about this dress, it did run a little snug so i was between a small and an extra small. i can't wear mid thigh dresses to work? so i am sadly returning the dress.",4,1,7,General Petite,Dresses,Dresses +1056,37,,,2,0,0,General,Bottoms,Pants +1056,63,Bad quality pants,"Do not waste your money on this. +at first, i bought pilcro hyphen chinos short and i loved it. so i bought this pants in store too. i laundry them yesterday and they both came out colorless. i was so shock. +fyi, i did not use bleach or chrolox, i mean i don''t use them.i will return them both. +still mad. this is bad quality enough worth it.",1,0,0,General,Bottoms,Pants +1056,24,,I wore these pants to work and they fit and looked great! however the first time i put them through the wash they became all discolored and are completely stained and now are unwearable. very disappointing. did not spend that much money to wear a pair of pants once.,1,0,0,General,Bottoms,Pants +1056,35,Perfect chinos,"I am going on a trip to south africa in may and needed pants that were cute, durable, yet comfortable and not frumpy. these are definitely the ones i was looking for. the fit is great - not too tight and not too baggy. i got them in three colors and all of them match what is on the site. i definitely recommend these chinos as you will be able to wear them to lots of different places - dressed up or down.",5,1,0,General,Bottoms,Pants +1081,29,All around great dress,"Bought this in the green because i thought it was a bit different. it is super flattering and the fabric is so soft and comfortable. i have it in an xs and a s and haven't yet decided which i am keeping as they both work. i'm 5'4"" and 116#. going to wear it on an upcoming trip and i think i will get a lot of use out of it during the rest of the summer into the early fall. i saw the black too and am tempted to buy that as well. have i mentioned i love this dress?",5,1,3,General Petite,Dresses,Dresses +1056,59,"Love the fit, watch when you wash them","Bought a pair of the gray and loved them, but after i washed them i saw the color was distorted as if bleach from a previous wash was still in the machine. + +so i ordered a second pair this one in green - same thing happened after i washed it. looked at instructions (finally!) and it says to wash in cold water - i washed in warm. could that be the problem? + +anyway - now they both look like there's discoloration and not a ""washed look"" that's on purpose. + +i'll still wear them, but an expe",3,0,1,General,Bottoms,Pants +1056,59,,"Do not buy these pants! the first time i washed these pants i ended up with big faded spots, and i followed the washing instructions. i bought another pair and the same thing happened. i'm out a bunch of money!",1,0,0,General,Bottoms,Pants +1056,38,Please make them in tall sizes,These were my go to work pants. i have 10 pairs. so disappointed that you are not making them in tall anymore. i will have to look elsewhere when buying pants. please bring them back,5,1,0,General,Bottoms,Pants +1056,38,Chinolicious,"I find these to be nearly perfect. the quality is idea--soft, yet sturdy. the stitching is unique based on the color--which i love. and while they're super machine-washable, i never need to iron them for a business-casual look. i tend to like things on the baggy side, so as a 5'7"" gal with about 120 pounds on me, i wear a 28, but i'm sure a fitted look would be more appealing to most. that said, i often get larger because they're a tiny bit shorter than i like, so i wear them kinda low. and if i",5,1,1,General,Bottoms,Pants +1056,47,Great color!,Love this color! when i saw this beautiful blue color in the store i had to try them on! so pretty! if you love pilcro chinos--you will be happy with these! same great fit and an awesome color!,5,1,19,General,Bottoms,Pants +1056,53,Must have!,"So cute and comfy. great fit. i bought them in green and they look great with wedges, sneakers or sandals. dress up or down. pair with a t-shirt and cotton blazer--adorable!",5,1,0,General,Bottoms,Pants +1056,42,Don't put anything in your pocket!,"I bought the yellow pair on vacation last week and loved them! i wore them home on the plane and had a pony tail holder in my pocket (basic goody binder), and there is a circle stain where the binder was! so strange! i sprayed them with spray and wash and washed them. the stain is still there and now it is discolored in the area i treated them! they are ruined! i am so disappointed and i only got one wear out of them!",1,0,2,General,Bottoms,Pants +1056,37,Discolored after one wash.,"Similar to others here, these pants were ruined after one wash. the first pair i bought simply faded after one wash, which was okay, but the second pair got weird splotches on the backside. i'd rather not call attention to that particular area of my body;) could've been a great addition to my wardrobe if they were better quality.",1,0,1,General,Bottoms,Pants +1081,32,Perfect summer dress,"This material is quickly becoming a favorite of mine. i have two other dolan dresses made of the same material. i do wash mine - cold water, delicate cycle. i hang dry it. i am broad shouldered and heavy chested, and the cut of this dress is extremely flattering. you can dress it up or dress it down too, love that!",5,1,3,General Petite,Dresses,Dresses +1056,45,Perfect chinos,"Love these chinos! they are so soft, have the right amount of stretch for a curvy figure, and the colors are great. i have purchased the khaki and blue so far. the blue color has the perfect washed/faded look. i love that they have petite sizes available. i will be stocking up on the other colors.",5,1,5,General,Bottoms,Pants +1056,34,Ruined in the wash,I loved these pants. they fit perfectly. and then i washed them. like the other reviewers the pants came out with spots all over them. the color seems to have faded in splotchy patterns. so sad. wondering if retailer will provide store credit or something to make it right?,1,0,0,General,Bottoms,Pants +1056,52,Pilcro is the best,"I loved the moss so much, had to go back to get the gold. these chinos look wonderful on. they can be dressed up with pumps and a blouse as well as dressed down with sneakers and a t-shirt. very versatile.",5,1,0,General,Bottoms,Pants +1081,25,Loved this dress until...,"I absolutely fell in love with this dress in the store and immediately scooped it up in black. wore it 3-4 times on hot summer days and it was perfect! very comfortable, easy to throw on and dress up or down. i decided to hand wash instead of dry cleaning (as i usually do) and after hanging dry, it became significantly more translucent than it had been before! i can no longer wear this dress because you can see everything through it. it's as though the fabric completely changed after being wet.",2,0,0,General Petite,Dresses,Dresses +872,34,Not flattering on a larger chest,"I tried on a l and found it incredibly unflattering on a large chest, as the waist hits a bit high. +the color is vibrant...i wanted to like!",3,0,2,General,Tops,Knits +1056,57,Nice but inconsistent fit,About a month ago i purchased the pilcro hypen chinos in moss size 28 petite. i loved the color and fit so much that when i saw free shipping being offered i decided to get another pair. this time i ordered the color ?pink? and of course size 28 petite. well the color really isn?t pink and unlike the moss color it does not look the color online. the color is more like salmon or apricot definitely not pink. what bothered me more is the fit. this pair was too big. it?s mind-boggling why the sizing,3,1,0,General,Bottoms,Pants +1056,69,,Pilcro pants are always a positive purchase. quality fabric. great design. i purchased the pink for spring and whenever. prettier in person than on line. they are a peachy pink color. will go with anything. dress them up or down.,5,1,3,General,Bottoms,Pants +1056,47,Nice and comfy!,"Love these pants. got them in yellow- gold color. pair them with retailer anafa tiered top which also has some yellow tones to it. goes lovely. good quality. important for me - the color is soft, not overly bright yellow, fabric is soft as well. great fit.!",5,1,0,General,Bottoms,Pants +1056,53,Tighter waist than last year,"Pilcro runs one size smaller this year - i compared with pants that i ordered last year and sure enough, one inch difference in waist. i did not notice difference in other dimensions of this garment, so my best guess is that pilcro decided to make tighter waist due to some complaints last year about waist being ?too lose?. i personally prefer sporty silhouette and am not thrilled with this change, but pants fit and are nice color and quality, so they stay. however, i am not sure i would order th",4,1,2,General,Bottoms,Pants +872,46,,,4,1,0,General,Tops,Knits +1056,57,My favorite pant.,"1. i'm 5'5"" tall, 145 lbs, and 38-32-40 and the size 30s fit me perfectly. + +2. the hyphen chino is my favorite pant. just stretchy enough. just casual enough without being sloppy. just nice enough to wear to work. + +3. i bought both pinks and the moss. the turquoise were too big in the waist for some reason, but the color, while gorgeous, didn't work with the rest of my wardrobe.",5,1,18,General,Bottoms,Pants +1056,58,Great staple,"I've ordered a pair of these from the catalog and loved them. on my next visit to a store, i picked up another color. i'm now considering getting another pair while the free shipping deal is going on. they are great pants with a great fit.",5,1,0,General,Bottoms,Pants +872,38,"Lovely shape, beautiful color","I'm an xl in retailer tops, and purchased this in the size xl. it fits very nicely; not tight. i usually have problems with peplum blouses hitting me oddly since i have a short waist, but this fit beautifully. i like the feel of the high quality fabric. the color green works so well with my red hair. i highly recommend this blouse.",5,1,0,General,Tops,Knits +1056,45,Love the color!,"These pants are great! the color is beautiful & the fabric super soft. fit is slimmer than expected, but sill nice.",5,1,0,General,Bottoms,Pants +1056,36,Beware of dye issues,"I love the fit of these pants. i bought them in several colors, but unfortunately when i laundered the teal blue pair, the places where the liquid detergent touched them (not bleach, detergent) look like they've touched bleach. i washed them in cold with regular detergent but will be unable to wear them after one wear. i was confused and even checked the detergent to make sure it did not have bleach in it, and it does not. very disappointing and i hope this is not true of the dye in the other co",3,0,0,General,Bottoms,Pants +1056,33,"Comfy fit, be careful when you wash them","I love these pilcro pants. i had them in two colors, both beige and khaki. super comfy, and they stretch out a little around the waist with wearing. however, i recently ruined both sets in the wash because i used a stain-stick remover to try to get some grease spots out of them. the stain stick instead lifted the dye off of them! now i have two sets of pants with odd light splotches on them...so sad they aren't more color-fast :(",5,1,1,General,Bottoms,Pants +872,39,,"I own quite a few deletta tops, and this one nails it. a great staple in a pretty color (i purchased the green). peplum tops can be hit or miss for me and often come up short or balloon out too much. this one is so flattering. i initially ordered a medium (5'8"", 145) but exchanged for a small when i found the medium to be a little roomy on me. the small is perfect. the top is made of a medium weight material and is slightly fitted, nipping in at the waist. the ""skirt"" piece falls nicely and is l",5,1,8,General,Tops,Knits +1056,55,Love these pants!,My favorite pants! they do run slightly large so i sized down. i have 3 colors and will continue to add more!,5,1,0,General,Bottoms,Pants +1056,40,Spring colors and comfort,"I bought these pants in white and tan. they are comfortable and fit great.however, they tend to stretch. i just got them and they are already starting to become uncomfortably loose. i still really like them but i recommend you buy a little tight so they become comfortable.",3,1,1,General,Bottoms,Pants +1072,62,Nice two tone,I originally got this for myself but it was just a little bit more snug than i liked. i ended up giving it to my daughter. it fits her nicely and she wore it to her holiday party at work and it was a hit!!,5,1,1,General Petite,Dresses,Dresses +1056,34,Try these on!,"I've been looking at these online for a while now, and couldn't decide if they'd fit me or not. i have large, muscular thighs and pants always run tight. when i was in the store today i decided to try them on anyway, and boy am i glad i did. the fabric is super soft, as everyone else mentions, and they are nice and loose, but also look like ankle pants. i actually sized down! (who doesn't love it when they get to do that?!) i loved the way they fit so much, i bought two pairs. i love the pastel",5,1,1,General,Bottoms,Pants +1081,48,Dolan never fails,"Dolan is my go to for comfy, pretty, practical dresses. i'm 5'0 125 lbs and i consistently wear a petite small in this brand. i bought the taupe - not my favorite color, but i had too many lbds and the green was not a summer color. i chose taupe to wear with my bronze and turquoise jewelry. summer must have.",5,1,0,General Petite,Dresses,Dresses +872,36,,"This top is an easy, classy staple for summer -tts and drapes well, great shape",5,1,0,General,Tops,Knits +1081,23,Flattering fit. may be sheer for some.,"Beautiful dress, skims the body perfectly and flatters. the silky and breathable fabric is everything-- it's made of cupro (used as a silk substitute but breathes like cotton-- uniqlo uses it in their ""airism"" products which makes it perfect for summer weather!). i wore it to a summer barbecue, dressed down with a denim shirt tied at the waist and simple jewelry, but can easily dress it up with a chunky heeled sandal and statement jewelry. it's gorgeous-- get it! + + +the colors of the fabric a",5,1,1,General Petite,Dresses,Dresses +1056,56,,,5,1,0,General,Bottoms,Pants +1056,46,So comfortable!,"I have always been a pilcro fan and these are so comfortable and fit well in the legs. i'm 5'6"" and 128 and the size 26 fit very well.",5,1,3,General,Bottoms,Pants +1056,71,Favorites,These are my favorite pants. i love the fit and they are comfortable. i have them in several colors. i hope you never discontinue them!,5,1,0,General,Bottoms,Pants +1056,27,My favorite pants!,"I am now on my third pair of these pilcro hyphen chinos...they fit my body type well, which is pear-shaped. they are super comfy, relaxed, and my go to pant. i love that they are a pop of color with what i am wearing vs just a normal jean. i can't say enough about these pants...",5,1,1,General,Bottoms,Pants +834,30,Cute,"This top has a flattering shape. the neckline is low, but not too low for work, and it flares a bit at the bottom. my only complaint is that it is short. i have a longish torso and this shirt hits right at the top of my pant's waistline. i just prefer tops to be a bit longer, but it's still a cute top.",4,1,0,General,Tops,Blouses +1056,49,Comfortable fit,"These chinos are very well made and has a really good fit. not too tight but a bit more relaxed so depending on the look you are going for, these are great! however, i ordered the bright aqua pair and received a pair that is really more teal. a bit disappointed but i'll live. i'm 5'4"" with a 30 inseam without shoes. these hit about half an inch below my ankle when not rolled up twice.",4,1,0,General,Bottoms,Pants +1056,57,My go-to pants!,"I love the pilcro stet pants & want them in every color, every season! please retailer, never stop making these +pants. i also love the ""new addition to the family"": the pilcro capri pants & would love every color of these too!",5,1,1,General,Bottoms,Pants +1056,41,Great pant,These pants feel great. fit is true to size. the blue color is very unique. definitely recommend!,5,1,0,General,Bottoms,Pants +872,47,,,5,1,0,General,Tops,Knits +1056,48,I love these pants,"I have these pants in a larger size, but recently lost some weight and wanted a smaller size. +they are so comfortable and soft and go with everything. +keep in mind that they run a little large and do stretch a bit once you wear them. +just wish they would be available in tall!!!",5,1,0,General,Bottoms,Pants +1081,39,Perfection from dolan,How i did not notice this dress for weeks i do not know. this is absolutely the best casual dress i've ever had the pleasure of owning and i hope my future includes acquiring the other sold out colors. i was fortunate enough to buy the holly in m and taupe in mp and they both fit well and look flattering on my unproportioned body. this dress goes well with many layers or on its own and is going to work for at least three seasons in my area. the drape of the willa complements my over large upper,5,1,0,General Petite,Dresses,Dresses +1056,38,,"Pilcro has my heart! their cut and style are perfect for me - no more squeezing into skinny jeans! dear retailer, please always sell pilcro and maeve brands - they are amazing!",5,1,28,General,Bottoms,Pants +1072,59,Great dress but runs very small,"I had to return the 2 for a size 4 and it is still snug in the ribs. i am very petite and usually wear size 0 and xs. the regular length hits me perfectly above the knee as i like. the previous review to order up was good but i'm writing to say i had to go up 2 sizes. i am 5'5"" 110 lbs, small frame.",5,1,0,General,Dresses,Dresses +1056,34,Perfect summer pants,"These pants are so comfortable and fit exactly as i expected. i love the variety of fun colors (i went with the gold). they are cooler than jeans, but just as versatile. i am 5'10"" and the length on me is the same as the model.",5,1,0,General,Bottoms,Pants +1081,24,Beautiful minimalist dress,"This dress is stunning and very flattering. i am a few months postpartum with just a bit of belly flub left, and this skims in all the right places without showing that. the fabric is gorgeous, although it seems like the darker colors can be a little sheer (i got the holly). absolutely love this, would consider picking up another color. i do find it runs a little small compared to other dolan pieces, including those in this fabric. i have a tunic and another dress in a small. i got a medium here",5,1,0,General Petite,Dresses,Dresses +1056,41,Casual chic!,"These are the most comfortable pants i have tried this season without sacrificing the style. they look best rolled up for that casual, chic look and can be dressed up or down. these do run slightly large. i'm 5""1 and 102- 104 pounds and took the 24 petite size. i bought the white color and will probably try another color or two before my size sells out. love these and really recommend them!",5,1,2,General,Bottoms,Pants +872,56,Flattering fit and comfortable fabric,"Happy to have tried this one on in store. unlike other peplum, the bottom portion does not pop out. looks good under a cadi as well. find this top very versatile. i got both colors since they are both flattering.",5,1,1,General,Tops,Knits +1056,43,Be careful with laundering,I love these pants but be care when you do laundry. the dye transferred to another pair of pilcro chinos that was a little lighter color. very frustrating. label mentioned it but i only noticed after it happened because the colors are both not that dark at all.,3,0,2,General,Bottoms,Pants +1056,31,"Cute and well made, just too low for me","These feel well made and so soft, but for me, they were just too low and too baggy...all i did was pull them up and feel uncomfortable. i wanted them to work! maybe in a smaller size they would feel better. i ordered my normal 25, in the light pink. they were very cute, i think i just have a hard time with pants with a rise this low.",5,1,1,General,Bottoms,Pants +872,37,Odd fit,"This top fit me great across the bust - true to size there, however, it was very loose other than that (outside of the peplum of course). it did not seem flattering for my body shape/did not give me much shape on top. i was wider than i should be/am. this may work on some body types, but did not work for me. it was a nice feeling, comfortable top however.",3,0,0,General,Tops,Knits +1056,47,Comfy,Comfy. i bought the moss color i really like it. great causal pant for spring and summer,4,1,2,General,Bottoms,Pants +1056,51,Love these pants!,"I got the yellow ones and love them so much i ordered the stone color. very comfortable and i can wear in th office or on the weekend. thinking about ordering every color! i love the pilcro hyphen line. fits my 5'4"" frame and athletic build perfectly! i'm 135 lbs and wear a size 28.",5,1,0,General,Bottoms,Pants +1056,33,Bring back tall sizes!,"Retailer, please make these fantastically versatile chinos in tall sizes again! i am 5'11"" and i usually order a size 8. the regular fit hits in the wrong place at the knee and results in the back of the knee fitting and feeling uncomfortable.",3,0,0,General,Bottoms,Pants +1068,64,"Nice, but...","These trousers arrived today. yippee. i really wanted to love them. i do like the color and the cut. not crazy about the fold-over waist. the fit through the waist, hips, and thighs is true to size. the biggest issue is that the description states that the inseam is 31.5"" which is perfect for me. however, these pants are actually 33.5"" in the inseam which makes heels a necessity if i want to wear them without altering them. i rarely wear heels these days, so that does not make me happy. one leg",4,1,6,General Petite,Bottoms,Pants +1068,35,Pants oversized,I wanted to love these pants since i hate super-fitted skinny pants. but they are really oversized. i'm 125lbs and 5 foot 2. so i'm petite but not considered skinny and have well endowed thighs and legs.but the xs was way too big for me.,3,0,0,General Petite,Bottoms,Pants +1068,33,Beautiful pants that are way too big!,"I love the feel and quality of these pants, however, they ran super big! they would not stay up around my waist, unfortunately.",3,0,0,General Petite,Bottoms,Pants +1068,34,Versatile summer staple,"Great summer pants. real wide leg. fit perfect even my muscular thighs. run a little roomy right of the rack but stretch out terribly. in my regular size, they start falling off after few hours of wear. long. dragging on the floor on my 5'7 frame.",5,1,5,General Petite,Bottoms,Pants +1068,29,Love,"Great, lightweight pants for summer!!! size down the length is slightly long and they stretch out throughout the day. i'm 5'8"" normally a 33 in pilcro and took a large in these. so cute",5,1,2,General Petite,Bottoms,Pants +390,32,Cute,"I'm 5'2.5"" and petite and had originally ordered s but decide that it was a bit large for me so i returned it and ordered the xs and it fit like a glove with breathing space. i love the conservative style. i can easily move around in it when i'm in the water with my baby. i don't have a large chest but i imagine this would great for big busted girls. it's lightly padded around the bust area. the skirt detail is very cute and the print is unique. i've already gotten compliments on it.",5,1,5,Initmates,Intimate,Swim +967,39,Love this!,"Super cute. 5'9"" 135 lbs and the medium was perfect to wear with a long sleeve shirt underneath. good quality and lined too. perfect for daytime when a leather moto might be a bit much.",5,1,0,General,Jackets,Jackets +1068,42,Great travel anywhere pants,"I bought these pants for a planned trip to southeast asia, where i want to look put together but also be very comfortable. the lightweight fabric is perfect for traveling in warm climates where one shouldn't necessarily be wearing shorts in certain public places or when visiting religious sites. these pants can also go to the pool, out on errands and to brunch. i bought the navy and would considering also buying the beige. great find and very reasonable sale price!",5,1,0,General Petite,Bottoms,Pants +936,58,Perfect for early spring,"This is the perfect sweater for early spring; lightweight; but not too thin. i""m 5'2"", 125 lbs. the medium fits perfect.",5,1,0,General Petite,Tops,Sweaters +936,39,"Fun ""wintery"" cardi","I ordered this only because it was in the stylist's picks, and decided to see what it was about. i ordered a petite, and don't regret it. the petite on my 5'1.5"" falls right by te hips, which is more flattering for a bomber-style top #not sure if descriptions says that, but it is a bit bomber-style#. the color is truly ivory, not as white as hte picture depicts, though now that i look colsely, you do see a contrast with the white top the model is wearing #so don't expect very white#. as mentione",5,1,1,General Petite,Tops,Sweaters +1068,50,Sizing is way off,I was thrilled to find a wide-legged pant in a natural fiber and ordered two pairs - l and xl. the l came first and was a tad too close for comfort so i returned it. when the xl arrived it seemed roomy but after my first wear the fold-over jersey knit waistband stretched out and the pants were dragging on the ground. they seem really huge on me and i now have to wear a belt to keep them up. the fabric also seems to be pilling easily- overall not my best retailer purchase (and i am a huge fan,3,0,0,General Petite,Bottoms,Pants +854,47,Beautiful colors,"This is such a pretty top and a great multi-season piece. i love the colors and pattern, and the cut is flattering. it's not too low cut in the front which is nice. it is woven on the front/sleeves and knit in the back so i'm a little nervous about how it will wash. i usually wear a m in retailer tops and a l in tiny (they usually are truly tiny) but in this tiny a m was good.",5,1,6,General,Tops,Knits +936,43,Festive cardigan,"This sweater is much more brilliant in person. the photo online doesn't do it justice. a couple of things, the faux fur collar is removable and it is attached with buttons of the same color as the sweater. the color is also more buttery than it appears. it hits right at the hip, which is so nice for wearing with dresses or skinny jeans and boots for a night out. i am 5'3"", 108 pounds and the xs hit me at hipline and was roomy without being oversized. it's really fun and festive with the collar,",5,1,18,General Petite,Tops,Sweaters +1068,63,,"Pants are professional, super comfortable and color matches loads of tops. love them.",5,1,0,General Petite,Bottoms,Pants +1068,32,Nice pants,"I love wide-leg linen pants and i'm always in the market for them. i've purchased these in two colors and have been happy with them so far. the waistband is fold-over and snug. not too tight or too loose. the length is longer than advertised. i'm 5'10"" and typically take a 33.5 or 34"" inseam. these are long enough for me so they have to be a 33"" at least. others may complain, but i'm happy!",5,1,0,General Petite,Bottoms,Pants +390,31,Very flattering,"This was my first choice as one piece suit after having 2 babies, the minute i put it on i just loved how confortable it felt and very flattering in all the right places. the fabric is great. i'm 5'4 and 155 lb i ordered a 10 and it fits great.",5,1,1,Initmates,Intimate,Swim +819,41,Cute but gross polyester,"I know we've gotten to the point that polyester can be acceptable, but sometimes it's still that horrible texture, unbreathable mess. unfortunately, that's what this top is made out of. so it runs big, its billowy, and cute, but i couldn't get it off quick enough because of the feel of the fabric.",2,0,0,General,Tops,Blouses +1068,41,Comfortable and beautiful linen pants,"I am 6ft tall and wear a size 12 bottom. i ordered these in a large because i wanted the length to be as long as possible and they were perfect. i have a 36 in inseam and these pants drug on the floor. i could even wear my wedges with them and they were still beautifully long and drapey. i bought the silver color and it was definitely more of a khaki. i probably could have easily worn a medium, as i did have to pull them up when i walked throughout the day. this may be because of the stre",5,1,0,General Petite,Bottoms,Pants +870,43,,"I tried this on in the store and loved it. it runs large. i'm 5'7"", 130lbs, very short waisted, and i got the xs. i realized it had a sheer section on the side, but the store paired it with a beautiful scarf that helped cover the sheerness. i didn't feel i needed a cami while wearing the scarf. plus the scarf will keep me warmer and let me wear the shirt a little longer in the fall.",5,1,0,General,Tops,Knits +1068,23,Comfortable pants,The waistband is reminiscent of yoga pants except looser. i think these pants are a little large and wide-legged. i have a bigger butt and i like my pants on the looser side overall so maybe that is why they were super loose on me. i think they are a great way to get away with wearing casual pants when you need to dress up. i feel like they would look best on a taller person. i need to get them hemmed.,4,1,1,General Petite,Bottoms,Pants +390,31,"Good quality, cute print but not flattering","Adorable suit, super cute print and great quality, but unfortunately not as flattering as other reviewers noted. i found that the white pattern accentuated the wrong areas and the ruffle feature was a bit over-the-top. the straps are also very thin and didn't offer too much support.",3,0,1,Initmates,Intimate,Swim +1146,52,Disappointed,"I have purchased a lot from retailer but lately, some of the items have been disappointing in quality.verses cost, this being one. the picture is nice but the actual blouse is nothing like this. the size was not accurate so buy a size bigger because of the sleeves.",1,0,3,General Petite,Trend,Trend +1068,36,,"These are beautiful pants - pretty basic, but comfy and you can dress them up. they definitely run large in both length and waist. i'm 5'10"" and having a little bit of a platform or heel is helpful.",4,1,0,General Petite,Bottoms,Pants +1068,44,Comfortable and pretty linen pants,"My only con would be these are long...even in petite they are long. otherwise i have no complaints. i love the comfortable fold over waist band! ah. i am planning to wear these on a long flight...they will help me look put together and keep my legs warm (i always freeze on airplanes) plus they will feel good! i am 5'4"" and must wear more than a flat sandal...i tried on with a wedge and it worked well. not sure if i will hem or not. might wait till after washing. lovely. ordered my typical pxs (d",5,1,6,General Petite,Bottoms,Pants +1068,57,Very comfortable and stylish!,"Bought these in both moss and navy. fits perfect, love the style and the roll,down waist. excellent quality. +bought the peachy color top,with the elephants to wear with the moss colored one and received lots of compliments.",5,1,3,General Petite,Bottoms,Pants +967,60,So cute and warm!!,"This is a great jacket. my only issue is sleeves are way to long and had to have them shortened. this upped my price by 45.00. oh well, its still what i wanted!",5,1,0,General,Jackets,Jackets +870,43,Fun and flowy,"I love this top, but i do need to wear a navy cami underneath. as the pic shows, the lace in the mid section makes it completely sheer in place... kinda odd placement in my opinion. but if you don't mind the sheerness or a cami, it's a great top.",4,1,0,General,Tops,Knits +1068,37,Not flattering,"The picture makes the pants appear flattering and comfortable. but they are not flattering at all. they seemed much bigger than they should have been and the ""fold over"" portion was not necessary.",1,0,0,General Petite,Bottoms,Pants +854,56,"Very cute, but tight sleeves","This top is very cute. it looks good with leggings, boyfriend jeans, and flare jeans. be careful, it will shrink. i bought an xs because other reviews said it runs large. it fit great, but i accidentally put it in the dryer and it shrunk. the sleeves that were already were fitted and not loose like the picture shows, shrunk so that they are a little snug on my arms. thankfully, it's still wearable because i do love it and have gotten several compliments on it.",4,1,0,General,Tops,Knits +936,48,Adorable !,"Love this zip cardigan with removable faux fur. it did not look like much on the hanger but once on it is soft , rich and just adorable, it can be dressed up or down, perfect for a finishing piece over a dress to wearing with jeans and skirts. the fabric is soft but substantial . the only negative for me is the zipper sticks a little. a plus it is a ivory shade and is a good basic. i chose my typical medium and fits perfect . 34 dd chest for reference. sale price plus promo made this a winner. i",5,1,1,General Petite,Tops,Sweaters +946,57,Adorable but poor construction,"This sweater is adorable and comfortable, but the poms are barely secured so they just pop off whenever they rub up against anything. i cannot even imagine trying to wash it. unfortunately, i will reluctantly be returning it because the construction is very poor.",2,0,16,General,Tops,Sweaters +1068,40,Easy breezy pants,"Love these pants! i'm 5'10 and the length is perfect. could even wear a little heel. the fold over waist is so comfy, they feel like pajamas but look very classy. i bought the navy and silver (more of a khaki color) on sale for a great deal. the washing instructions say line dry but i threw them in the dryer on low and they came out fine. just need to remove and hang quickly for less wrinkles.",5,1,0,General Petite,Bottoms,Pants +967,51,Amazingly wonderful jacket,"First, i must agree with the other reviewers who said that this jacket is short, because, well, it is. that being said, it is a perfect length for someone who is petite, like me. i am not a fan of lengthy tops or jackets, which tend to make my short body look like a blob. i love the length (or shortness) of this jacket! aside from that it fits true to size, is wonderfully warm and cozy, and makes me feel fabulous when i'm wearing it. it is my new favorite jacket!! :)",5,1,0,General,Jackets,Jackets +1055,51,,Really beautiful pants but run a very large-i usually wear four and am 5 10-the media was way too big in the waste and elsewhere and very long.,5,1,3,General Petite,Bottoms,Pants +936,42,Gorgeous,"I completely agree with the other reviewer. this sweater is so much prettier in person. i've been looking for years for a tasteful fur sweater and i think i finally found it. the size large was true to size for me aside from the very long sleeves, but i also have short arms. the fur isn't overwhelming and i love the pockets. i usually find sweaters with wool itchy but this one is not (it's 26% wool). i do plan to wear a cami or tank underneath.",5,1,4,General Petite,Tops,Sweaters +865,42,So soft,I love this shirt. it is so soft. not boxy at all. very flattering. my only complaint is that there aren't more colors!,5,1,0,General,Tops,Knits +936,59,Brannan cardigan,I really love this sweater. beautiful color and nice texture. i can't wait to wear it.,5,1,0,General Petite,Tops,Sweaters +854,39,"Pretty blouse, if it is built for you","Overall, i thought this was a very pretty blouse. i loved the colors and the design. the construction seemed good. others mentioned that it ran large, but i am tall and often struggle with the shoulders and arms, so i purchase my normal size small. i believe it is the width in my shoulders that caused the blouse to hang funny - you could see a decent amount of the back fabric hanging around the front sides, which looked odd. it made the front fabric look like it was cut at an angle. (i am not br",4,1,0,General,Tops,Knits +1068,25,"Comfy , nice wide leg, only sort of flattering",The fold over is so comfy. not the most flattering but really when you are wearing it you are going for comfort i think. bought these on sale and trying to decide if they are worth it or not,4,1,0,General Petite,Bottoms,Pants +1083,35,Gorgeous,"Most beautiful dress i have ever seen or tried on. i read all of the reviews and it seemed ladies with hips stated the dress ran small. so, after over a year of watching this dress and waiting for it to go on sale, i order a size bigger than i normally wear. i was devastated that it was too large. all sizes except 0 and 00 were sold out, so now i am stuck returning my dress or paying a small fortune to have it altered.",5,1,0,General,Dresses,Dresses +1038,41,Super cute,"These are some of the cutest jeans i've seen in a while. i ordered my usual size 28 and they were too big. i'm 5'9"" and about 140 lbs. i always were a 28! i reordered the 27, though, and they fit perfectly. the only disappointment was they make my butt look flat and emphasize my stomach, which isn't the case in other jeans. i think it's due to the high waist. they fit almost like a pair of pants. oh well, i'm keeping them. i tucked in a striped sailor tee and they looked adorable.",4,1,0,General,Bottoms,Jeans +1083,27,I don't understand this dress,"While i thought it looked really pretty on the hanger, when i tried it on it just felt like a mess. perhaps it suits other personalities and bodies. i hated that the zipper was in the front; i personally find it tacky and gawdy. while the patterns are pretty, the material felt like some weird fabric wallpaper and i didn't see how the price was justified with how the material felt cheap to me.",2,0,0,General,Dresses,Dresses +1083,22,,Superb quality and design. i am a 34d and 120lbs. i am a size 6 to 8 but mostly 8 due to my hips and top. i am pear shaped and 5'6. the dress was a little loose but i just need to get it a little fitted but you can hardly tell. i love the floral patterned so intricate. it truly looks like a princess dress. it is little heavy and at least it's not too tight for dancing.,5,1,0,General,Dresses,Dresses +763,57,This dress looks much better in person!,"I recently bought this dress in an retailer store, to attend an art museum event,. the open back created an awkward bra exposure problem, which i solved by buying a gabardia camisole by lacausa (the same brand and print as the dress.) the dress is described as casual, but it can be dressed up with gold shoes or sandals. +the retailer saleswoman brought me the dara vegan leather jacket in plum, by hei hei to complete the outfit. the contrast between the airy dress and the vegan leather was chic and",5,1,1,Initmates,Intimate,Lounge +1083,36,Everything and more,"I am obsessed with this dress. i wore it on new year's eve. i felt stunning in it. i can't wait to wear it again as soon as possible. +very good quality. my regular size 6 fit me but i cannot gain not even a pound more :) i'm 5""7' 144lb. i'm between slender and curvy.",5,1,0,General,Dresses,Dresses +1083,49,Adorable !!!!!,"I just received my dress yesterday and it is gorgeous!!! i actually ordered 2 sizes, 00p and 0p, depending on some cuts i'm between those 2 sizes, i am 5'1 92 lbs but with holidays eating i have gained 4 pounds so far, so the 00p was bit too tight all way from hips to bust area, i was able to zip it up but was a bit painful to keep breathing and got some weird wrinkles on the back between waist line and derriã©re. +the dress is a beautiful cocktail of sexy curvy silhouette with the baroque flavor",5,1,0,General,Dresses,Dresses +862,36,Nice but big,This runs a little big and falls off the shoulders a bit. i didn't like it as much as i had hoped.,3,1,0,General,Tops,Knits +1038,36,Super cute & comfy jeans,"I love these jeans. i bought my normal size 28 but after just two hours of wearing them, they had stretched out so much that i could take them off without un-buttoning them! (i probably could have gone two sizes smaller but i wanted them to fit loose). my local store was willing to offer me an exchange. kudos to retailer's wonderful customer service and standing by their products! i actually wear mine un-cuffed with boots and it looks super cute.",5,1,0,General,Bottoms,Jeans +1083,47,Size up if you want to sit down,"I love the dress enough to go on a diet. i sized up but still have reservations about the integrity of the seams if i should sit at any point during its wear. i hate skin tight clothing, and wear a 0 in everything else - the 2 made me feel as if you could see my cervix. i own other byron lars dresses that fit in a 0 - something happened with this dress.",4,1,0,General,Dresses,Dresses +862,40,,"For me, this top ran true to size. i'm so glad i ordered it in my normal size, because the spandex would have made the top way too clingy for me. i am normally a 8/medium on top and 12 bottom. i ordered this in a medium, and do not find it large at all. if you are going for a fitted look, sizing down may be best, but i didn't want it tight. on me, it's a little looser than what is shown on the model, but it still fits very nice, and not sloppy. i am not a fan of baggy tops. i have no issues with",5,1,6,General,Tops,Knits +1083,40,Gorgeous!,"This dress is stunning. the combinations of patterns/fabrics is beautiful and the cut is very flattering. i tend to wear a 6 or 8 depending on brand and the 8 fits perfectly. i am 32c on top and more of an apple than a pear shape, so the straight lines hide the tummy but shape the hips. love love love. i can't wait to wear this.",5,1,0,General,Dresses,Dresses +1038,38,I went down one size too.,"Normally a 28, and on a fluke i dragged the 27 to the fitting room. the 27 hung better that the 28. + +i have a belly, but not much in the hips, so this was surprising. most things are too tight in the waist. + +denim feels very soft. they may not last, but it's like butter.",4,1,1,General,Bottoms,Jeans +1083,37,Another byron lars beautiful dress,The dress is a great buy especially since it was on sale. it fits like his other dresses flattering as i don't have a big bust and have a bit of extra skin from pregnancies but with this dress i feel amazing. get a ton of compliments when i wear it!,5,1,0,General,Dresses,Dresses +1083,28,Piece of art!,"This dress stunning for the hourglass figure. the hips may be a little narrow. i bought the 6p and 4p and the 4p fit best. i read some reviews that said the hips were snug. it's true- a little difficult to sit down haha but the dress is so flattering. shoulders are a little loose, and i have pretty broad shoulders and a full chest. i'm 5'4, 32dd, waist 27 and 130 lbs.",5,1,0,General,Dresses,Dresses +1083,47,Exceptional design,"Size 2p is perfect for me (32a, 25"" waist, and 32"" hip) with a lot of room left for a big dinner. the design is exceptionally creative and attractive, and the fabric is of very high quality.",5,1,0,General,Dresses,Dresses +1083,47,,"This dress is gorgeous and perfect for holidays. unlike other byron lars dresses that have some stretch to them, this dress is fitted and has no give. i typically wear a size 4 (135lbs, 5'8, 34c) but in chest the 4 was too tight, i could zip it but could not breathe lol.. i sized up to 6 and the fit is true perfection.",5,1,0,General,Dresses,Dresses +1038,49,No thanks...,"I looked like i was going to work on a farm. well made, but seemed fit big. i like and have owned wide leg pants/capris, these were cartoonishly wide. + +needless to say, they were returned.",3,0,0,General,Bottoms,Jeans +862,43,Runs big,Runs really big. i usually wear small and this was falling off my shoulders. very comfortable and soft material. also looks brighter in pic than in person.,3,1,2,General,Tops,Knits +862,53,V-neck is way too low...,I sized down one size and it's still too big with the double v-neck style. this is going back.,3,0,3,General Petite,Tops,Knits +899,49,Just what i hoped it would be,"This is a richly detailed top that i bought to go with some nice skirts. the length hits right at the waist so it won't overlap a special skirt at the waist and create extra bulk. it is lined with a flesh colored mesh layer in the white color (you can see this layer in the photos but i wasn't sure if it was part of the piece or a camisole the model was wearing). however, it is still somewhat transparent so you would want to wear it with a flesh-colored bra or cami. overall, i am very happy with",5,1,3,General,Tops,Fine gauge +1083,49,It's a beauty!,"This is a gorgeous dress. it comes with a black silky belt, but mine was too large, which is probably why it is not shown on the model photos. i think maybe it only works if you're on the larger size for the dress. it's very easy to get on and off due to the front zipper. i was worried about bra straps showing on the low cut back, but they actually show more at the broad shoulders. i'm not sure if that's more apparent because i went up on the size to have room at the hips. there is a cute kick p",5,1,0,General,Dresses,Dresses +1083,45,Renaissance fair vibe,"I was disappointed by this dress. i listened to the reviews and ordered one size up, a size 6 instead of my usual 4, and that was the correct size. fit like a glove. unfortunately, the style left much to be desired. this dress is very costume-y. i felt like a wench from the renaissance fair. not a good vibe. it is a beautiful dress, i'm not denying that, but not as a dress you would actually wear to an event. there's just too much going on with the tapestry look and the many types of fabric. i a",3,0,0,General,Dresses,Dresses +763,66,??search for the perfect dress is over??,"This is an amazing dress. beautiful fabric and color. comfortable too. it's like wearing air. sorta chameleon like because this print literally goes with anything and looks unforgettable on. it's slimming too. i got the large and it flows so nicely over my body. the back is completely open. it closes with a tie at the neck and the waist that drapes beautifully and looks great from the side view. the fabric is a bit sheer so i ordered the white cotton slip by this designer, which is slightly snu",5,1,0,Initmates,Intimate,Lounge +1083,26,"Wow, what a dress!","I?m not the type of woman that wears dresses, but oh man...this dress! i?ve been eyeing it for a while, and it finally went on sale, then the extra 30% off made me cave. got it for $115. i bought it one size smaller (8) to encourage me to not over-indulge this xmas, and if fit like a glove. for reference, i?m 36 bust, 30 waist and normally a size 10 in retailer. it accentuates your curves & hugs your body while being ""sexy/conservative"". the intricate embroidery is exquisite and very eye catching.",5,1,1,General,Dresses,Dresses +1083,28,,"Measurements: 30aa / 24"" waist 5'4"" + +i historically wear 00p in jcrew and most retailer brands. i purchased a 0p and it fit well with a little room. i really hated that the waistline is almost a drop-waist. the ivory brocade panel comes low on the navel, so it makes you look shorter than you really are. + +the most impressive part of this dress is the neckline/shoulder. i have pretty narrow shoulders, so it's a quasi-boatneck and it's quite lovely.",5,1,0,General,Dresses,Dresses +1083,43,Byron lars does it again,"This dress truly is a work of art and i am becoming a little obsessed with byron lars' clothing line. this is my 3rd dress by him and i have been a size 2 in the other dresses. the 2 does fit in this dress but it is a little snug. not sure if a 4 would look as good because it is meant to be form fitting. the panels trick the eye into making you look thinner too. my dimensions 32c,26,33. it fits perfectly in the hips and waist but is tight on top.",5,1,0,General,Dresses,Dresses +1083,23,"Pear-shaped success, 2 sizes up","When this arrived in the mail, i knew there was a 50/50 chance of a sheath dress working with my body-type (athletic on top, larger on bottom). i usually wear size 6 in a-line dresses, and i found this dress, size 6, in the sale room, and barely squeezed in. ordered size 10 and love it. (for ref, 5'8"", 135 lbs, 34-b) the belt is adjustable, which puts everything in place. the front collar blends seamlessly into the sleeves, and the brocade panels are such a great quality of material, reminding m",5,1,1,General,Dresses,Dresses +899,39,Beautiful and high quality,"The quality of this sweater is excellent. it is well work the money. i am 34d 5'4"" and purchased a medium. fits perfectly for a fitted look and hits right at my natural waistline.",5,1,0,General,Tops,Fine gauge +1083,32,Unique and fun dress!,"I found this dress on sale recently in store and it was in my size- a 2p! i tried it on and it fits perfectly for my 34 d and 5ft frame. since i found it in store and it is an older dress, there are some frays in the threading (probably from being shipped, handled, etc). i still bought it for the sale price. i look forward to wearing it out!",5,1,0,General,Dresses,Dresses +1038,48,So cute!,"I love these jeans! another winner in the pilcro line. i took a size 29. i normally wear a 30/31 depending on cut. i am 5'4 inches and about 150 lbs curvy with small waist and the 29 fits comfortably and very flattering to my figure. love the button front and the red details . i recall having jeans like these about 15 years ago and this cut is so perfect , cute and stylish. the regular length hit just slighting above the center of my foot so wearing with flats will be perfect, i am not a high he",5,1,0,General,Bottoms,Jeans +1038,43,Awesome jeans!,"I tried these jeans on in my regular size and they seemed way too big, but still kinda cute. i went one size down and suddenly they were the most adorable, comfortable jeans that i've every had (and i have a lot of jeans!). i love them! they are very soft with gorgeous fading around the pockets. they are button fly which is unique. i got them on the sale on sale price and they are well worth every bit and more. i plan on wearing them with boots although high heal shoes should be beautiful with t",5,1,1,General,Bottoms,Jeans +1083,39,#1 stunna,"I am in lust with this fabulous dress. it's a feast for the eyes. it's so busy and detailed, yet it all works. fit on me is perfect. i did not have to size down or up. my upper torso is larger (m/l) than my bottom half (m/s). i also have a square waist. this dress makes me look like i have an hourglass figure. i love it as much as the mona dress. another point goes to ease of putting it on. i own six byron lars dresses and this is the *easiest* one to put on! just zip up and go.",5,1,0,General,Dresses,Dresses +1080,39,Fell in love years late,"I fell in love with this dress two years after it sold out so i'm so lucky to have gotten my greedy little hands on this eye catching retro modern number. my mom adores the fit on me as it reminds her of her youth in the 50's and 60's. i originally sized down to a 6, not realizing my bust/wide rib cage would make the fit difficult. wish i could have found an 8 but settled for 10p and will have a tailor finish it. i'm also going to remove the tulle layer since i want to wear as more casual frock.",5,1,0,General,Dresses,Dresses +862,46,Double v,"Thin and soft. lays nicely... form-fitting, but with enough fabric to move around and scrunch up without looking tight. the double-v makes it shift downward so the cut in front is pretty low - i have to keep adjusting it so it doesn't show too much. not sure how it'll hold up after a couple washes because the fabric is so lightweight.",4,1,0,General Petite,Tops,Knits +1083,53,Very detailed,"Normally i would take a size 0 or xs in dresses, but after reading the reviews i am glad i took a size larger. the 2p worked out very nicely and i am 5'3 102lbs. it is a bit stiff when i walk around in it and losses some of its shape. don't get me wrong but i love the dress and am always receiving compliments on it.",4,1,0,General,Dresses,Dresses +1083,26,My new favorite dress,"I love everything about this dress. the patterns are gorgeous and the mixture of fabrics and textures are so unique that they make such a beautiful statement. i got this in a 0p after reading review, and am usually a 00p-0p. the dress fit a bit baggy on me but if i can find some way to tighten the belt it would definitely still be wearable. i agree with other reviews that the top is larger. my measurements are 31-24-34...and i felt like the bottom fit comfortably with some room but the waist and",5,1,0,General,Dresses,Dresses +1083,54,,"I am a shopper....i shop a lot. this is one of my favorite dresses of all time! so unique, and, as others have said, like a piece of art! the fit is tight through the middle but that's what makes it look so perfect. i wore with tall brown suede boots and got compliments from ken and women alike. i love it!",5,1,0,General,Dresses,Dresses +1080,64,Great lbd,"It runs big though! definitely order a size smaller, the underneath slip is stretchy which is great, but the lace outer shell runs big!",4,1,7,General,Dresses,Dresses +1083,37,Bulky sleeves,"This cute dress was very nice on. however my only reservations were the thickness in the arm sleeves. the dress has this thick curtain like material on the sleeves that seemed to big and cut way to wide for my skinny arms. i thought about bringing this to the tailor but i feel it would be a lot of work and the bulkiness of the arms would just be the same. + +other than that the colors and dress are beautiful.",3,1,0,General,Dresses,Dresses +1045,48,Swallowed me alive,"I'm petite, but even if i weren't, i think this runs very large, isn't form flattering at all, and overall looks dull. it most definitely does not justify the price. material is thin.",2,0,1,General,Bottoms,Pants +1083,27,Beautiful,"This dress!!!! i had to try it on. of course i fell in love with it. it is so gorgeous in person, like a piece of unique artwork. you'll never find a dress like this!",5,1,0,General,Dresses,Dresses +862,43,Super comfy and well made but runs large!,Order at least one size down or the double v neckline will insist on slipping off your shoulders. everything else about this top is great.,4,1,3,General Petite,Tops,Knits +940,31,Stunning,"This is my new favorite sweater. it is a great mid-weight sweater, that hangs beautifully with an interesting bottom hemline. im so happy with this purchase. im 5-9, 155# and the m is perfect.",5,1,0,General Petite,Tops,Sweaters +942,21,This sweater truly is sleeping on snow,"It is my favorite piece in my closet right now. it is cute. it feels like a pillow. i just want to sleep in it, but i also want to wear it out so that i can show it off.",5,1,0,General Petite,Tops,Sweaters +936,27,"Pretty, but cheap feeling","I liked the look of the tunic sweater, and it was very soft. i am 5'7, 115 lbs and tried on the xs. the arms felt a bit tight, but overall it fit well and i liked the length. i did not like how high the hem was split though- i would ideally like to wear these with a pair of leggings, and wish the hem was split just a little lower and not right at my hip. the material was very soft, but i felt like it was a bit cheap for the price.",3,0,0,General Petite,Tops,Sweaters +936,33,Easy to wear,This is a perfect sweater to dress up or dress down. very comfortable and stylish. i love the slits on the side. works great with skinny jeans or leggings.,5,1,0,General Petite,Tops,Sweaters +936,33,Mediocre,"I got this in the green color. it's a beautiful color, soft to the touch. i agree with other reviewers that it seems very delicate. i don't mind dry-cleaning my sweaters, so that's not the issue. the problem is that a. it runs huge - i got the small and it swims on me. i tend to run between small and medium in tops - very unusual to have a small be so big on me and b. the slits go even higher than they look on the model - they come up to the top of my waist. even with high-waisted pants, the sli",3,0,0,General Petite,Tops,Sweaters +936,36,Disappointed - totally different in person,"This tunic only barely resembles the photo in person. + +first, the color is much less saturated and more orangey than it appears in the photos + +second, it's huge. i'm 5'4"" and typically wear 2 or 4p in retailerpolgies' shirts/dresses. i ordered the sp and the dress was at least 1.5 times wider than it needed to be. it hung off me completely boxy and shapeless; and the style doesn't really lend itself to use with a belt.",2,0,0,General Petite,Tops,Sweaters +936,37,,"Unfortunately, this is a lot more boxy in person than it shows on the model. it hung on me like a potato sack. also, the color isn't the rich red it shows but more of an orangey rust.",3,0,0,General Petite,Tops,Sweaters +940,62,Nice quality,"This is a beautiful quality knit. i do wish that it was a tad bit longer...i'm 5'7"" with a long torso and found it to hit like the model shot. since the sweater flares a little at the bottom, i think it might be more flattering a little longer. keeping this regardless because it will still get plenty of wear.",5,1,0,General Petite,Tops,Sweaters +872,25,Extremely attractive,Love the top! this is an attractive black top with a unique back which will match pretty much any thing in ones closet! yes i would say it runs a size bigger however it does not take away from the quality nor design,5,1,4,General,Tops,Knits +1081,27,Disappointing quality,"I almost ordered this online to wear to a party later this week, but i'm glad i waited to try it on at the store (i wasn't sure if i'd like the length of the petite or regular better.) i was so disappointed and didn't end up getting either! i have two bailey 44 dresses from several years ago that are much more flattering and incredibly soft/comfortable. this fabric on this dress was much rougher and it really bothered me that the stripes cut off at the side seams and then don't match up from the",2,0,1,General Petite,Dresses,Dresses +940,56,So flattering,I saw a lady trying this on in the store and fell in love with sweater. picture does not do it justice! there is so much detail. my usual size is small and it fit perfect. well worth price.,5,1,1,General Petite,Tops,Sweaters +936,47,,This is a great cut and looks good on. it is a very poor quality material. it balled and frayed in two wears. i returned it to the store.,2,0,2,General Petite,Tops,Sweaters +870,63,Wow simply gorgeous,"Ladies don't let this beauty get away. never paid much attention to it on-line but went into local retailer today and it was returned by someone. i couldn't get it on fast enough. it is gorgeous. runs tts. i took the small, for reference i am 36c top and petite. this will work on any body type. you won't be sorry. well worth the money for the style and fabric.",5,1,12,General,Tops,Knits +942,39,Wish i could wear it every day!,I bought this sweater to freshen up my fall wardrobe and just love it! adds texture and warmth to every outfit.,5,1,0,General Petite,Tops,Sweaters +1081,36,"Classic, sexy","Per baily 44's usual, no visible lines, hits in all the right places, extremely flattering, washes well, all of it. fo this price especially you'd be fool to pass this little number up!",5,1,0,General Petite,Dresses,Dresses +936,56,Time will tell,"This is a flattering, comfortable, soft sweater the instant you put it on. a few instants after that, however, i found mine had relaxed a great deal to become baggy, and pilled even more to become a fuzzy wuzzy monstrosity. i'm not optimistic about its longevity and wouldn't recommend it except for the extravagant single-use buyer.",3,0,7,General Petite,Tops,Sweaters +1081,45,Va va voom!,"Definitely a curve hugger. i bought the summer version of this dress (sleeveless white with black stripes) earlier this year and it was my go to dress all season long. was very excited to see a fall/winter version to pair with tights and boots. bought a medium again and it fits great. this is a very flattering dress, and the material is lightweight yet substantial and forgiving of flaws.",5,1,1,General Petite,Dresses,Dresses +936,25,,"I bought this mostly to wear around the house, so i'll keep it because i got it on a pretty good sale. + +that said, this runs really large. the sleeves are really loose, and it doesn't really hang well over my hips, which is a shame. it's very soft and cozy, which is nice, but i don't think i'll leave the house in it often. it also arrived with a hole in the ribbing on the bottom of the front panel. i was able to tie a knot through one of the loops that i think will prevent further unraveling, bu",3,0,0,General Petite,Tops,Sweaters +872,83,Pretty but runs huge!,"This top is beautiful, however it runs beyond big! +i ordered my usual size and i could have fit 2 of me in this top. +i am reordering and going 2 sizes down! +the tie back and embroidery is beautiful.",3,1,11,General,Tops,Knits +936,19,"I liked this sweater, with reservations","I liked this sweater's design, i like tunics. the sweater is a light weight knit.the sleeves are long. i got the green, which is lighter than the picture. the slit on sides go up about 18 inches from the bottom. the sweater is comfy, but a shirt is needed under or your ""love handles ""will be showing, if you have them. i also ordered the cream color, but it was more brownish than white, so i returned it.",4,1,0,General Petite,Tops,Sweaters +936,36,,"I was so excited to see this on sale, with an extra 25% off! no brainer. i bought the cream color which is the most beautiful sand color. just as shown. it is super soft and thin. a good quality thin knit. it's just too long for me. it just doesn't quite look right on me. i still have to give it a high rating because it is truly exactly as pictured. i'm 5'9 and it hits just above my knees and the slit runs up to my belt. if i could knock 3inches off this i'd have it in every color.",4,1,0,General Petite,Tops,Sweaters +936,63,Soft with just enough structure,"This sweater/tunic is lovely - soft, just enough structure in the top to not look like a sack, pretty color. i ordered the ""raspberry"" which is definitely more of a ""burnt orange-red"" to my eye. i understand what another reviewer was referring to regarding quality. the fabric just doesn't feel very substantial or strong. i have a feeling this might not last too long and it's a shame at this price point. i'd love to order another color but will definitely wait for sale. it's office appropriate an",4,1,2,General Petite,Tops,Sweaters +936,56,,"I love this sweater - i've gotten compliments on it every time i've worn it! i have the moth color and it is oh so cozy, yet not too big or too heavy. i pair it with black leggings, black booties and a crimson-colored scarf. it's nice as it can be great for day-to-evening. getting the other two colors asap! the medium fits me perfectly.",5,1,2,General Petite,Tops,Sweaters +942,49,,,5,1,0,General Petite,Tops,Sweaters +1016,53,Gorgeous,"This is the most beautiful and flattering skirt. it was a bit of an investment piece for me in that i just graduated from college, but i love that this skirt can be worn year round. it is more fitted at the top and then flows out at the bottom, making it super flattering. pictures do not do it justice!",5,1,0,General Petite,Bottoms,Skirts +936,68,Simple and classic,"I purchased this in the cream/beige color and love that it will go with everything. i can add details with long necklace or scarf-even a belt but it also stands alone and looks great with leggings or skinny jeans. i would also wear with a neutral skirt as shown on model. the fabric is not too thin and with a bit of cashmere will also add some warmth. it may shed some depending if you wear a nylon cami underneath. i purchased the xs, my usual size and fits great. 5'8-slender. love my purchase!",5,1,2,General Petite,Tops,Sweaters +936,59,I'd hoped it would be better.,"The black and white photo of this sweater makes it look absolutely beautiful. the color photography looked to be a beautiful rich burnt red color. it simply did not match. it was more of an almost faded version of the rich color. the fit was ""ok"". just didn't love it.",2,0,2,General Petite,Tops,Sweaters +936,35,Not retailer's best,"This sweater/tunic is very poor quality - the seams looked like they were about to come apart as soon as i got it. and, without a chunky statement necklace, it looks like your grandmothers apron. there just isn't any style to it - has to go back.",2,0,9,General Petite,Tops,Sweaters +940,69,Updated style,Loved the flared style of this cardigan. i first choose the yellow and returned it for the navy. the knit pointelle design is interesting and the cardi is so soft. have used it many times already - always makes me feel great.,5,1,0,General Petite,Tops,Sweaters +936,36,,I love this sweater. looks great with leggings or high waisted jeans. like most maeve clothing it runs a little large so i would size down. i get several compliments every time i wear this one. super comfortable too!,5,1,0,General Petite,Tops,Sweaters +940,56,Heavyweight cardigan,"This sweater carries alot of weight, more than it appeared. the yellow is more of a bright green/yellow- not a soft color as pictured. it is still a nice layering piece.",4,1,0,General Petite,Tops,Sweaters +940,67,Flattering and practical.,"I bought this in navy, medium, after looking at it online and reading all of the reviews. i am so glad i did. it hangs beautifully, and i have worn it nearly every day since it arrived. i am 5'3"", and 34 dd on top, with narrow shoulders and a short torso, so not easy to fit. this is very well made, and a medium to heavy cotton perfect for spring and foggy evenings in california. in fact i am wearing my new sweater over my friday casual tee at work today. if you ware hesitating the purchase at co",5,1,0,General Petite,Tops,Sweaters +936,28,Best sweater ever!,"I have this sweater in ivory and raspberry. it's gorgeous. holds up well on had wash cycle also. it's so flattering. i'm so so happy i bought theses. i am 5'8"", athletic build and a normal medium, this runs large. i bough smalls.",5,1,0,General Petite,Tops,Sweaters +936,27,Comfy but no good,"The sweater is very comfy and looked good the first time i tried it on, however the material is thin and slightly see through. +also, after one wear it completely stretched out and made the long sleeves awkward to wear without washing in between each wear. after the third time i wore it, i discovered a large hole in the armpit, most likely due to the excessive washing. i would not recommend this sweater.",2,0,1,General Petite,Tops,Sweaters +1078,37,Disappointed because not what i expected,"I agree with the first reviewer exactly. beautiful fabric and ""idea"" of dress (looks stunning on model), but huge and shapeless in person like a tent. not at all what i expected when ordering a 2 petite. sadly, has to be returned.",1,0,3,General,Dresses,Dresses +940,34,Ivory was odd color,"This sweater is really cute, great fit and unique style. unfortunately the ivory color was more yellow than i like. not the right shade for my skin tone.",3,0,2,General Petite,Tops,Sweaters +940,56,Pretty sweater for spring!,This sweater in the yellow caught my eye several times and i finally tried it on! so cute and perfect for transitional weather. threw it over the striped top that was hanging in the changing room. ended up with both!,5,1,8,General Petite,Tops,Sweaters +936,53,"Great staple, odd fit","This sweater in the neutral beige coloration was exactly what i wanted to rotate through my winter legging/boot rotation with different vests, belts, and scarves...spot on. it is not heavy weight, soft, perfect length for a tunic on a 5'4 frame, 34c, 125 lb....now the weird part - sleeves were excessively long and seem to have stretched longer after wear??? anyway, hand wash and little to no pilling a plus. i literally roll up the sleeves to wear this tunic and it tends to be bothersome, hence t",3,1,2,General Petite,Tops,Sweaters +940,35,Lovely basic piece,"I found this cardigan/sweater in the sale room at retailer in navy. thought i would just try it on. the picture does not do this justice. it is a basic piece but it is so soft and comfortable and when on, it has a little bit of a whimsical swing to it. i loved the way it kind of came to life. i wear a m/l and bought the m. i have a 36d bust and it looked great. it is a nice weight for spring/fall. it is not a heavy sweater.",5,1,3,General Petite,Tops,Sweaters +940,36,,,5,1,0,General Petite,Tops,Sweaters +1081,33,Great dress,"I love, love, love this brand. these people know how to cut and construct a dress. i'm apple-shaped and have trouble finding fitted dresses that flatter me, but this one makes me look curvy and hides my flaws. the pattern lays perfectly and will make you look great. the fabric is high-quality and fully-lined. it's perfect for work or for going out. i love that it's black and bronze-y, because i can wear it with black or brown accessories. i'm generally between a l/xl in retailer and the l fits wel",5,1,0,General Petite,Dresses,Dresses +1078,40,Disappointed,"The xs was too large on me and i'm not a tiny person. while the dress was beautiful on the model, in person it had way too much fabric and fit rather tent-like. the fabric is gorgeous and the dress would have worked if it were more of a fitted style and had half the amount of fabric on the bottom. not flattering at all.",2,0,5,General,Dresses,Dresses +936,62,Lovely green - really wanted to like this!,"I ordered this sweater in green, and it was a lovely soft color. the style of the sweater was nice -- really deep side splits made it feel trendy. the sweater is a great length, nice fabric and the side splits are appealing. however, it was just so, so big that i couldn't pull it off -- i just swam in it. i am 5'8"" and 118 lbs, fairly wiry?.even the xs didn't work for me. perhaps it would look more suitable on a curvier woman. i even considered having it tailored, since i've had a hard time find",3,0,4,General Petite,Tops,Sweaters +872,27,Not as pictured,"I was really disappointed in the shirt. the blue embroidery is a lot darker than what is shown in the photo, and barely stands out against the black. the photo does not accurately depict this shirt. i will be returning.",1,0,4,General,Tops,Knits +940,58,Lovely but...,"I thought i was getting this nice light weight white sweater but not the case. +it is a pretty heavy, nice thick cotton and beautiful made. it does run large. i got the small and love the oversize feel even on my 5'9"" frame. +but - it is not white, it is beige, and it is not light weight. i have enough beige sweaters in this look so this one is going back, even though it was a great buy on sale.",3,1,0,General Petite,Tops,Sweaters +936,83,,"I love this tunic. the knit is soft and comfortable and very easy to wear. i purchased ""moss"" and can change the look of the outfit by adding various accessories. the slits on the side are cut rather high and i have found that jeans or leggings of a thicker fabric look best.",5,1,0,General Petite,Tops,Sweaters +936,31,,"I wish i could wear this sweater every day! it is extremely soft. runs large. 5'9"", 130lbs, bought a large and it was way too big, but i successfully shrunk it in the dryer. sleeves are too bulky. it's not perfection, especially the sleeves. the photo shows the models with the sleeves pushed up. there is no way you could do that. they are almost like bell sleeves, and the material stretches like crazy. wish i had ordered down, but still love it.",5,1,0,General Petite,Tops,Sweaters +872,53,Love this top!!,"Can't wait to wear this top!! i found it to run tts for me, but i am a dd bust and need the extra material. happy with this purchase.",4,1,0,General,Tops,Knits +936,32,Perfect stable,I am so pleased with this product. it is a great staple for every woman. my one complaint is that it easily pulls.. something to be mindful of when handling the garment.,4,1,2,General Petite,Tops,Sweaters +1081,68,,"This is an extremely flattering dress. i couldn't resist buying it, even though i didn't come into the store looking for a dressier dress, which i feel this is. once i tried it on, i had to purchase it. its one of those things that i know i won't regret because at some point, an occasion will show up that i'll wear it to. its soft, comfy and flowing and accentuates the body's curves without being too tight or clingy. its a classic!",1,1,1,General Petite,Dresses,Dresses +940,54,,Perfect spring transition piece-- saffron yellow but medium weight and breathable. this color is in for spring and the perfect blend for a not too warm cover up!,5,1,3,General Petite,Tops,Sweaters +1016,34,So long!,I'm so sad this doesn't come in a petite length because the dress is extremely long! the fabric and design is beautiful although i do wish the fabric was a bit more flowly.,5,1,0,General Petite,Bottoms,Skirts +936,47,Comfy classic,This sweater is so soft and comfortable. looks dressy with skirt and booties or casual with leggings and flats.,5,1,1,General Petite,Tops,Sweaters +936,42,Flattering!,This sweater caught my eye while in the store shopping for a gift. i am on the shorter size so i was worried that it would drown me. it didn't! it hits me mid thigh. the sides are cut up high. i will wear a cami or shirt under it. super soft material. flattering fit. i have put on a little weight and this hides all the problem areas without looking frumpy. thanks,5,1,0,General Petite,Tops,Sweaters +940,55,Quality knit,"I ordered size medium in the blue color. the fit is true to size. however i am 5'3"" and the length is shorter on me than it is on the online model wearing the yellow color sweater. notice where the back sweater length falls on her. i checked the tags in my sweater twice to ensure i didn't purchase and/or receive petite sizing. the length in regular size hits me about the same as the online model photo wearing the ivory color. i am fairly certain the model is considerably taller than me so a litt",4,1,10,General Petite,Tops,Sweaters +936,32,So comfy,"I'm 5,4"", 135 lbs. i got the petite xs (normally would be petite small) and love the fit. it's soft weave and the length exudes the feeling of comfort and warmth.",5,1,1,General Petite,Tops,Sweaters +936,39,So-so,"I really wanted to recommend this sweater but honestly can't now. i was attracted to the softness, simplicity and sale price but its longevity ruined it. wrinkles, pills and loses shape quickly. if you still want to get it, consider your shoulders and how knits like this fit on you. this sweater runs tts to large depending on your shoulders and bust size. the styling is excellent--very versatile. but the yarn is too delicate and fussy.",3,0,0,General Petite,Tops,Sweaters +1081,39,Interesting staple,"I consider this to be a flattering dress that is a good wardrobe staple since it can be dressed up or down and worn with a variety items (i.e. cropped denim jacket, oversized knit cardi, leather moto.) the twisty knot in the front is very cute and slimming and doesn't add bulk to my squishy squarish waist. this dress is tts to a bit large. the colors and material make this appropriate for autumn through spring. my only upset with this dress is the raw edges which cheapens the quality and makes m",4,1,0,General Petite,Dresses,Dresses +870,36,Super cute,"Really cute and comfortable. i can wear it to work for a casual friday, or out on the weekend. a lot of the sequins are falling off and getting stuck in my dryer!",5,1,0,General,Tops,Knits +108,29,Great everything vest,I wear this vest a lot for it is really cozy and goes with a lot of different types of outfits! it's is versatile and figure flattering. i only buy timeless pieces that i know won't go out of style and this vest fits the bill!,5,1,0,Initmates,Intimate,Lounge +870,65,,"A lovely sweatshirt with mesh front and back cover with soucotache (sp?) handwork, with a touch of sequins for some pop! the knit sleeves are thin, but the top has some weight due to the detailing on the front and back. + +the fit is tts and as shown on the model. it lays comfortable but it's not really baggy. + +really lovely. glad i bought one before it was sold out.",5,1,2,General,Tops,Knits +936,47,Offers coverage yet flattering,"I purchased the raspberry color and it is beautiful. even though the sweater is very long and covers your bottom, it is surprisingly flattering. great with the booties or boots and skinny jeans. i am 34, 30, 37 and purchased a size small which, fits perfectly.",5,1,11,General Petite,Tops,Sweaters +1081,42,Nice dress for work or a date,"Bought this dress based on the other reviews and was glad i did. fabric is very nice and soft. it drapes nicely, hiding my tummy trouble area. very flattering and not too short, i could wear it with a blazer to work and also out on a date night. happy with my purchase.",5,1,0,General Petite,Dresses,Dresses +815,27,,I love this top! i typically wear a size small and this is very true to size. it's loose fitting but does not make you look large. the pattern on the material is also fun without being too busy. perfect for fall!,5,1,1,General,Tops,Blouses +940,65,"Ah, rosie neira--the best designer of knits!","This is a beautiful, artistic piece for your wardrobe! seriously, rosie neira is a talented, london-based designer, who will thrill you with her vision. she is expert at making a woman look amazing from every direction; these knits are stunning, the materials and workmanship flawless. the medium fits me as expected (size 8, medium top, 34f). i was drawn to this by the rosie neira label, the flowing front drape and slightly longer back, the gorgeous knit quality and design, and the way it makes m",5,1,30,General Petite,Tops,Sweaters +1081,72,Smart & stylish dress,This dress fits pretty much how it looks on the model. the fabric is soft and the stripes are a goldish color. i bought this because of the other reviews and glad i did! perfect dress for work and going out. the petite hits me mid-thigh like in the photo.,5,1,0,General Petite,Dresses,Dresses +940,60,Lovely cardigan,"I absolutely adore this cardigan. it's very feminine, stylish, and comfortable and the gold color is gorgeous. i received numerous compliments when i wore it to work the first time. it's the perfect weight for transitional weather or chilly offices.",5,1,0,General Petite,Tops,Sweaters +872,55,Unique,"I just received this shirt in the mail, and i'm in love. it isn't your average t-shirt in that it has character and class. i can't wait to wear it! another reviewer was unhappy that the embroidery in blue on the back wasn't as dramatic as the picture; i'm not seeing it. i think the blue stands out very well. i know i should say, ""hurry and get yours before they're gone,"" but in truth, i'd rather be the only one with this beautiful shirt! :)",5,1,2,General,Tops,Knits +940,34,Love this sweater!,"This has such a beautiful shape, goes with so many things and has gotten a lot of compliments already. my favorite new piece.",5,1,5,General Petite,Tops,Sweaters +940,35,,I went into the store to look at a few certain items. this wasn't one of them but it really caught my eye. i got it in yellow. it is such a great sweater. tts,5,1,7,General Petite,Tops,Sweaters +940,30,Beautiful sweater,"I love retailer sweaters! always great quality and design, this one is no exception. i have the navy blue one and it fits well, true to size.",5,1,1,General Petite,Tops,Sweaters +152,36,Warm and cozy,"Just what i was looking for. soft, cozy and warm.",5,1,0,,, +1079,25,A lot of dress,"This dress is so well made, but it's a lot of dress. i think i would have liked it if it were shorter. it felt a little too 50s housewife to me, and i was hoping for a flowing material. it wasn't worth the price to me so i sent it back.",4,0,4,General,Dresses,Dresses +864,40,Oh my oh my,"After reading all the reviews and sizing down one size. i got my top size m, i usually wear m/l depending on the style. i'm 6 ft tall, 160 lb, i like my clothing loose but not as loose as this top. i should have gone to xxxxxs if such exists. no wonder there is such a low leap in price. it is a good quality though, and very nice pale peach color. no would not recommend, unless you wear 3xxxl",1,0,0,General,Tops,Knits +268,39,So soft,"I love this robe, it is my new favorite for lounging around the house",5,1,0,Initmates,Intimate,Sleep +872,38,Love the shirt,"I purchased the blue, and i love the style and fit of the shirt. i worry a bit about the slit showing too much cleavage in certain positions, but my friends have assured me that it is work appropriate. very flattering, and i received a lot of compliments when i wore it.",5,1,0,General,Tops,Knits +152,37,Love!,I am loving these. they are quite long but are prefect to wear with pj shorts or leggings. very soft and cozy.,5,1,0,,, +358,29,Good support,"I am not a fan of unlined bras, but this one was so pretty i had to try it. the lace doesn't look cheap, but overall i wouldn't have wanted to pay full price. it fits well and the support offers a nice shape (no cone!). i might go back for the other color.",5,1,1,Initmates,Intimate,Intimates +152,39,"""long and warm""",These leg warmers are perfect for me. they are long enough and thick and warm enough to keep me from freezing in cold weather. great for people with large calves.,5,1,0,,, +268,53,Blissfully soft,"This robe is one of the best purchases i have made in the past year. i would also add that it is much cuter in person than pictured on the model. usually things look better on the models, but not this one. i have a tough time finding robes and sleepwear in petite sizes (thank you, retailer!). this robe is sooooo soft and cuddly, without being too heavy. the teal color is so pretty and the hemstitch detail is nice. i hate taking this off in the morning to get dressed.",5,1,12,Initmates,Intimate,Sleep +964,38,"It's a beautiful, wearable hug","This is the mid-weight fall/spring jacket i had designed for myself in my head! someone got into my head and made it! really - i could not have dreamed up a lovelier jacket. it fits like a glove, it's absolutely the softest thing ever, and the (removable) lining is far warmer and plusher than i expected (i wore it out tonight on a a clear, cold night - i felt like i was wearing a hug). nice, feminine waistline and pockets in all the right places round it all out. i look forward to unbuttoning th",5,1,14,General Petite,Jackets,Jackets +964,35,Love at first sight,"I knew once i saw this online that i would love it, because of that i almost feel like my review is biased. i have been searching for a jacket like this for awhile. i own the holding horses version from a few years back, but that one is just not fitted enough in the waist for me (even though it has a drawstring waist). this one too has an interior drawstring waist and it is more fitted in the waist giving the feminine appearance i desire. but it's not too tight. i am small up top, 34b but larger",5,1,4,General Petite,Jackets,Jackets +1025,34,Great cords but are small,These are my first paige cords/pants and they seem to run much smaller than the other brands i wear. i'm normally a 32 in all other brands but with these the waist is pretty tight. i do love the length (i'm 5'9 and they are plenty long.) i also love the bell/flare. i'm not sure what makes this brand so much more expensive as the quality though nice seems comparable to cheaper brands.,3,1,0,General,Bottoms,Jeans +995,39,"Cute, but not in love","I ordered my usual 0p, and this skirt seemed a little long for me. the 00p might also have fit if higher on the waist, as it hung a little, so in that sense, if you prefer higher waisted skirts, you can size down (i am 115 lbs, 26.5-27 in waist). the cut is nice and does flare out, but the one i received was folded and you could see the folds... so it didn't do the skirt justice. the top layer is almost off white, while the under skirt is pink, so that is a nice contrast. the appliquã© is pretty",4,1,2,General,Bottoms,Skirts +1070,39,Nope - not for muscular thighs,"Not that i don't recommend, only don't recommend if you have muscular thighs. so i tried on the small in plaid pattern (or checkered?) and not flattering on me at all. snug on the though and loose by the knee and below. also that pattern made my legs look weird, no kidding, kind of crooked... they are super comfortable and the small fit, so perhaps they run small? + +i would get petite if you are usually a petite, the regular size bunched on the bottom, too long. + +i am usually a 0p or 00p, or",3,0,0,General,Bottoms,Pants +887,46,Bought two in the pink/purple color,"At the beginning of summer, i first ordered one of these tops in size xl. i liked the colors and the material was such a soft, open weave. i thought it would be perfect for the hot weather so i ordered a 2nd on sale. unfortunately, even though these are made of mesh, these tops ended up being really hot. i wore them in texas, new york, new jersey, and florida. i thought they'd be a good, pretty choice. but, the material with the gathered waist & wrists, trapped in the heat. it was just too sheer",3,1,0,General,Tops,Knits +1050,41,,,4,1,0,General,Bottoms,Pants +995,33,Poodle skirt,"Being that i am short, 5'2"", this skirt flares out way too much resembling a 50's style poodle skirt. the model in photo has her arm strategically placed thus pushing back excess fabric toward the back making it look more streamline. this skirt is not for the under 5'5"". long leggy types could easily ""rock"" this.",3,0,1,General,Bottoms,Skirts +1070,48,"Brown is darker than expected, xsp is perfect","I got these in the brown and the red in my usual xspetite, and love both. the length is perfect for my 5'3"" height and they're not skin tight, but fit like a glove (i have a 26"" waist and 34"" hips). the elastic inside the waistband can get flipped fairly easily if i'm not careful, but it's easy to flip it back. i think that's the only thing that might stop me from attempting to wash them in the machine against the instructions, which say to hand wash only. i wish they had been made machine washa",5,1,0,General,Bottoms,Pants +1070,67,Comfy and interesting,"I picked these off of the rack at retailer, mainly because i loved the navy, black and brown combo of the squares. i tried on the medium, because they looked on the small side, even though i usually wear a size 4, or small in pants. good thing too, these fit really well,so they do run small, albeit a bit long in the regular medium on my 5'3"" frame. i could have used a petite for length if they had been there, but they didn't. that's ok, i don't mind rolling them up, it makes a statement i like. ye",5,1,0,General,Bottoms,Pants +1070,53,Great business casual or going out pants,"Love the subtle print - makes these good for work and for play. will wear with wedge booties, flowing top and jacket. perfect outfit.",5,1,0,General,Bottoms,Pants +1138,38,Unique blouse; does not flatter full figures,"This is a unique blouse and well worth a try. it is pure wool, so dry clean only. though it is wool, it is actually very thin and lightweight. i didn't find it to be scratchy. +. +i am a size xl, but in this blouse the large fit fine. the narrowest part of this blouse is the width of the shoulders, everything else is very voluminous. for this reason, it doesn't flatter my full figure; it makes me look much heavier than i am. my only options are to return it, or bring it to a local seamstress who",4,1,3,General,Trend,Trend +1050,33,,"One of the more beautiful pieces retailer hags carried in a long time. i instantly fell in love the second i took it out of the box. the only problem is that it runs short in the torso. i ordered the xs and it fit perfectly everywhere except it gave me a wedgie. for reference, i am 5'6"" 120 lbs, and a 34b. i returned the jumpsuit and ordered it in a small. hopefully it's long enough!!! everything about it is true to size except torso length. i have an average torso, so someone with a large torso m",4,1,8,General,Bottoms,Pants +568,44,Spectacular!,"This skirt is gorgeous. i'm glad i saw it in-store as the picture online does not do it justice. the colors are really rich and the pattern has a sentimental, vintage feeling. it also has pockets and a great, glamorous swing to it. this skirt is great for work with a blouse and heels and also looks awesome with a t-shirt tucked in and sandals. the fabric has a really nice four season weight, i think it will also look great with high boots and a turtleneck in the autumn. i get so many compliments",5,1,3,General,Trend,Trend +1070,33,,"Retailer is my favorite store! they always have everything i want and more. these pants are absolutely beautiful and intricate in design and the quality is fantastic. it's stylish and a pair of pants that i will always use and that will last for anlobn time. and how can i forget, these pants are slimming",5,1,0,General,Bottoms,Pants +818,26,Polka dots,"I thought this top had shimmery dots, that is what it looks like in the picture. but when it arrived, it looks much plainer in-person and i could not believe it was this top. the dots are polka dots. the embroidery at the v-neck doesn't stand out much in the photo but it does in-person. the top runs true to size but the fit didn't feel as perfect for me. i am sending it back. i needed a more shimmery top.",3,0,7,General,Tops,Blouses +1070,52,Curvy petite girls rejoice,"I ordered the black and red check leggings thanks to the suggestion of the retailer stylists online. there is no way in a million years that i would have picked these out due to my body shape. i'm petite size 6 and 120 pounds and 5 feet tall. i ordered a petite small. i do not have skinny legs and ordered these anyway. they are so flattering that i'm thinking of ordering the grey pair. the red pair are kind of darker. the picture makes the red look so much bright than they really are. trust me, yo",5,1,12,General,Bottoms,Pants +945,45,I had such high hopes!,"Oh how i love moth sweaters but wow was this one a disappointment. the color is wonderful, the shape is unique and the stitch work is lovely but that's where the compliments end. it's an itchy, cheap feeling acrylic that is too short for my torso. i am truly disappointed that at this price point it was such a cheap feeling piece. so bummed. so so bummed.",2,0,10,General,Tops,Sweaters +839,54,Chambray top,"I just received the top today, and will send back for a larger size. i am i between a 4 and 6, so tried the 4 thinking it would be boxy. it is very fitted with no opening to assist in pulling over shoulders. i am hoping the 6 is only slightly bigger. the shirt also had a slight musty odor. it's a rather thin chambray....with 3/4 sleeves. the top came to just the top of my jeans, which should work for higher waisted skirts or layering.",4,1,1,General Petite,Tops,Blouses +991,39,Yuck,"This looked beautiful online, but the skirt isn't 100% silk - the strips of fabric have different fiber content levels, with most of them containing some level of polyester. parts of the skirt felt like plastic to touch, and one strip has a very prominent gold sheen that looks cheap. overall very disappointing - this is not at all the beautiful silk skirt that it appears to be online. + +a definite return. i wouldn't even recommend this at first or second cut.",1,0,4,General,Bottoms,Skirts +873,55,Recomend if you can get the size right,"I got the size wrong, and the right size was ot available - so sad! i really loved this.",5,1,0,General,Tops,Knits +954,45,Cozy vest,"This is such a cute vest. nice and cozy. so cute paired with a long sleeve tee, statement necklace, jeans and booties. very happy with my purchase!",5,1,0,General,Tops,Sweaters +835,55,Too sheer,"If you are over 25, this top probably is not for you. it is absolutely see-thru. great style and beautiful light fabric, but you can see right thru it.",2,0,0,General,Tops,Blouses +1146,58,Ethereal,This is such an ethereal flowing dress.more gray than light blue as it appears in pix.love the flowy bell sleeves.its a modest length just above the knee.quality a bit lower than is the retailer norm but still good.,4,1,1,General Petite,Trend,Trend +819,56,Great addition to your spring/summer wardrobe,"I wore this unbuttoned with a moss green tla tank top, faded, ripped, rolled up stevies with gladiator sandals and turquoise jewelry and it looked great. this is an amazing piece for your summer wardrobe that can be worn so many ways.",5,1,7,General Petite,Tops,Blouses +584,36,Love,These are my favourite sleep pants. the waist band shrinks with every wash even without drying all the way on low. i normally wear a small and ended up getting the large so the waist band didn't cut in my sides.,5,1,0,Initmates,Intimate,Swim +945,25,I love this sweater,This sweater is so cute and classic and i've gotten so many compliments it's so gorgeous the wool is sooo warm 10/10 recommend,5,1,0,General,Tops,Sweaters +831,62,Love it!,"This one is perfect for the taller ladies (or those looking for a longer fit). i was a little discouraged by a few short-fitting tops recently, and this one finally works for me (at 5'7"" with a long torso). awesome quality, not overly delicate, and beautiful detail.",5,1,0,General Petite,Tops,Blouses +831,23,,Perfect lace tank. i am six feet tall and this top hits me about where it does on the model. i ordered xl and feel it is a generous tts . it is very figure flattering and not too tight across the bust. it has a thin lining so no camisole is needed. so beautiful!,5,1,7,General Petite,Tops,Blouses +584,44,,"Bought these online - sale, and am really happy with them. soft and light material - feel breezy, like a beach pant should!",4,1,1,Initmates,Intimate,Swim +831,63,Love this top,"This top arrived by mail this morning, it is beautiful even prettier than the picture. fits true to size and is wonderful quality. cannot wait to wear it when i leave on vacation this weekend.",5,1,1,General Petite,Tops,Blouses +862,56,Love it,"Love it, super cute, super comfortable. watch those bra straps!",5,1,0,General,Tops,Knits +1093,45,Lovely statement,"I ordered this dress and wow , this is one really pretty dress, my only drawback is that the dress is not fully lined. for this price i was expecting a full lined dress. the flower detail and beading is amazing, but this one is going back hopefully it will be on sale soon, i might reconsider",4,1,2,General,Dresses,Dresses +1076,38,,The fabric of this looks and feels so cheap it's hard to believe this is anna sui. i would say this is unwearable. there is zero stretch and it is made of itchy textured poly fabric that looks like novelty fabric at best. going back asap.,1,0,5,General,Dresses,Dresses +835,30,Beautiful fabric,This shirt is really quite cute. it can be dressed up or down depending on the occasion. it's also forgiving and quite flattering. my only concern is that it is a bit see through in certain lighting but it is very subtle. i definitely would recommend.,4,1,0,General,Tops,Blouses +831,77,Well made top,"I am petite and so ordered this top in a petite size and found that it ran large. i am also pretty busty to boot, but found there was more than enough room. the length was still a bit long for me, however it does hit on my where it does on the model. the top is wonderful quality, thick and not see through at all. i am almost tempted to get a regular size and try to wear it as a dress.",5,1,1,General Petite,Tops,Blouses +831,66,Pretty but,"This was a miss for me. the armholes are too low, it's lined and heavy. way too long. just didn't wow me. the lace is sturdy and beautiful, though.",4,1,0,General Petite,Tops,Blouses +1181,33,Wardrobe staple,"I love this tee! while it is true to size i feel, it is meant to have a loose fit. that being said, it is a very flattering cut and has a great drape. super comfy, flattering and classic.",5,1,1,General Petite,Tops,Knits +945,24,A purrfect find,"I love this sweater. as others have mentioned, it's not the softest acrylic in the world, but i can overlook that for the simple fact that it's adorable. i like the cropped fit- pairs perfectly with high waisted jeans/skirts. the embroidery has a sort of handmade feel to it without looking cheap. the slit up only one side makes it unique in my opinion. i did expect it to be a bit heavier, but it's a great layering piece and ideal for transitioning into colder weather. i may be biased because of",5,1,0,General,Tops,Sweaters +1146,56,Pretty dress,"This dress is nice, but it won't do for my purpose. i considered it for a mother of the groom dress, but it's not long enough for me. the dress is pretty, but very sheer and very low cut so it would require opaque undergarments. it's not possible to tell from the pictures how sheer this dress is.",4,0,1,General Petite,Trend,Trend +873,40,Boxy shoulders,"I love the feel and quality of this sweatshirt. however, because of the embroidery/lace detail on the shoulders, it makes it a little stiff so the shoulders look slightly boxy.",4,1,3,General,Tops,Knits +1030,44,Nice shade among my blue denins,"First pair of mother jeans, went with my regular 25 (as in my citizens/paige/ag) and it fits well. the waist doenst seem as high as it looks in the model (i wish it was). the fabric is stretchy and soft. it looks the same finish/color as online, a greyish denim. i like it.",4,1,1,General,Bottoms,Jeans +1181,41,,,5,1,0,General Petite,Tops,Knits +1093,47,This gown is stunning!!,"Gorgeous piece, although much longer than it appears to be in the photo. the price, however, is a bit steep. i'm not sure that i'm going to keep it because i just don't think it looks as expensive as it is.",4,1,4,General,Dresses,Dresses +831,50,Love this top,"I'm 5'9 and 150 pounds and got a medium. the cut is very flattering on me and i have received many compliments when i wear it. it is lined, so no need to wear a cami underneath.",5,1,0,General Petite,Tops,Blouses +344,34,Very fun!,"Great colors! somewhat odd fit but it works. don't love the bell on the tassel so i need to find some way to get that off, but otherwise i love it and i am definitely keeping!",4,1,0,Initmates,Intimate,Swim +819,37,Unique staple!,"I accidentally found this gem at my store today. i adore layering my style, and this is a perfect edition. it's light, but has enough weight to it that it has some movement and doesn't stick to other fabric. i wouldn't quite call it ""gauze"" since its heavier than your typical gauze. it's super long. i'm 5'8 and it definitely went to my knees. when worn buttoned up, it's clean and classic. when worn open, it's cool, bohemian and edgy...while still looking totally put together. i adore this. wish",5,1,3,General Petite,Tops,Blouses +1094,33,Beautiful dress,Love this dress. perfect for spring and fall. great material and well made. lovey design. the dress has a built in slip.,5,1,0,General,Dresses,Dresses +839,62,Great top,I love the ease of wearing and styling this top. i am very pleased with the construction. glad i ordered it!,5,1,0,General Petite,Tops,Blouses +819,22,This top is great!,This top is so flowy and has a great fit! i can see wearing it lots of different ways. it could definitely be dressed up or dressed down.,5,1,2,General Petite,Tops,Blouses +1094,39,Can't resist again,"Another maeve maxi to add to my crowded closet! i adore the print, it reminds me of morocco. i went with my usual m based on reviews about the waistband. i will have to disagree as i should have chosen s instead. i'm not going to return it, but i think this will really stretch out because of the knit and weight of the jersey.",5,1,0,General,Dresses,Dresses +1076,60,Beautiful dress!,"I am kicking myself for listening to an earlier negative review and not ordering this dress months ago. i finally took a chance on clearance and i love it! the knit fabric is soft and beautiful! so is the design and construction. the fabric is very light and delicate. all the details on the dress are just top notch. the body of the dress is lined, but the sleeves are not - so there's a slight see-through effect on the sleeves, showing the lovely and delicate knit. it fits like a dream, and i've",5,1,1,General,Dresses,Dresses +1181,71,,"All t-la's are great. but this one style is my fave. very comfortable, chic, and washes well! i got the grey, but i'm back to get more colors!",5,1,1,General Petite,Tops,Knits +945,61,,Cute kitty sweater! i'm 5 feet 105 # and went with a regular size xs instead of petite and it hits perfectly! yes it's itchy it wool! but i plan on wearing mine with a high/low tee under it. so cute!,5,1,0,General,Tops,Sweaters +1078,38,Gorgeous dress - spectacular!,"This dress is a beauty. i am 5'11"" and plan to wear this as a tunic over leggings or straight leg pants. the embroidery is really pretty, even though it does run a bit big. i would have liked a size 12 or less but it was completely sold out except for a size 14. it is so nice, with gorgeous high quality denim that i will make the best of it - may need to get some tailoring but in my mind, this dress is so worth it.",5,1,0,General Petite,Dresses,Dresses +831,65,If you're short...this is long!,"I'm only 4'11"" and this top comes to the top of my knees. i could wear it as a mini-dress. lol! so, it is definitely a tunic for us shorter gals. now, it can be shortened. the underlayer can be cut and rehemmed shorter. then the over-lay lace has to be very gently snipped around the scallop pattern a few rows up. i'm debating whether i should do it or not. the bottom is simply a snipped off row from the fabric to create the scallop lace trim anyway. + +as far as sizing, it's tailored. i didn't f",5,1,1,General Petite,Tops,Blouses +819,64,Way cute!,"As in previous reviews, this top can be worn in many ways. it could even be used as a pretty bathing suit cover-up. i like it with my cropped cotton spandex leggings which i have in many solid colors. i plan to wear it unbuttoned with my classic style spandex tanks i have in various colors & prints. the complete look says 'summer' & feels cool & comfy in this warm weather. even hubby loves the look! 5'3"", 117#. i bought my usual size small.",5,1,3,General,Tops,Blouses +1094,55,,"My absolute favorite dress yet from retailer! i wore it to numerous events this past summer and felt like $1,000,000.! glad it's on sale now for others to snatch up.",5,1,0,General,Dresses,Dresses +819,36,Love this top but be careful!,"I absolutely adore this tunic, however, i followed the label and hand washed/hung dry and it shrunk! i was able to exchange it, so i will be taking it to a dry cleaner to see how it needs to be cleaned. +for reference, i purchased a regular xs...i am 5'2"", 120 lbs.",4,1,2,General,Tops,Blouses +954,42,Great fall piece,"I purchased this about a month ago and its a great piece! it goes with just about everything from dresses to jeans and a long sleeve t-shirt. i love how it drapes around the front, and the material is very soft. it's a great piece for fall weather that will be a keeper in my closet!",5,1,0,General,Tops,Sweaters +873,59,Unique top,"I loved this top, but had to return because the stiff applique made me look like a linebacker! i wish it could have worked out, because this is a cool top. if this particular design works for you, go for it!",4,1,3,General,Tops,Knits +1081,37,Nice basic,"I did like this dress. it has a good simple shape, and is very comfortable. however, it's plain, and for the price and it being dry clean only, i'll wait to see if it'll go on sale. it's also worth noting that i'm 5'2"" and was uncomfortable with the length of the petite, but the regular size was a good length (right at the knees).",3,1,1,General Petite,Dresses,Dresses +933,32,,"I love this sweater it's so cute and so soft, and warm!",5,1,0,General,Tops,Sweaters +857,35,Would have been a great look...,"But-the problem is i cannot get the color to stay below the shoulders. the large appeal of this top is the over the shoulder look-but in just trying it on it would pop off the shoulders and make a cowl neck kind of top that didn't lay right. if it would have stayed it would have been a real win for me. i like the quality of the fabric and the longs sleeves, but i can't get the desired look to work out so this is going back.",3,0,18,General,Tops,Knits +1081,44,"Loved it so much, i bought two!","Love this dress so much! i bought the cranberry color first, and i loved it so much, that i also bought it in black. i think it runs fairly true to size. i am 5'3"" and about 110, and the xs petite fit perfectly. i tried the xs, and it was pretty large on my frame. i love the fabric and flow of this dress, and i love the pockets.",5,1,0,General Petite,Dresses,Dresses +1081,31,Great dress but colors are off,"I ordered the red and the the fit is great but the red is actually magenta, not red at all. i'm returning and ordering in a different color.",4,1,0,General Petite,Dresses,Dresses +1081,39,An o.k. tunic,"Not for petite women, you need to have a long figure for this tunic to drape like it does on the model. if it ever goes on sale i will purchase it but not worth the full price for me at the moment.",3,1,0,General Petite,Dresses,Dresses +1081,39,,The material on this dress is gorgeous. so soft! the fit is flattering and casual and looks great with booties or high boots!,5,1,0,General Petite,Dresses,Dresses +1081,57,"Cute, but not for me","The material and color of the dress were great, but the fit was rather blah. i don't think it was right for my shape. i am disappointed though, i liked design of it.",4,0,0,General Petite,Dresses,Dresses +1078,31,Flowy and comfy,"I was a little afraid to order this dress online but my local store only had a small left, so i jumped hoping the fabled net would appear, and it did. this might be my favorite retailer dress thus far. i ended up buying a large due to the fear of the front being too short, it was a good call. i'm sure a medium would have fit up top but i have longer legs and i know i wouldn't have felt comfortable in a medium's length. plus i tend to like the oversized look. i paired it with some slouchy socks and",5,1,0,General Petite,Dresses,Dresses +364,62,Love!,"Thick, soft, awesome quality - what's not to love?! i've had an awful time finding a new black warm cardigan this year to throw over anything from a tee to a casual dress, and this finally fits the bill! while it is soft like a sweatshirt, i would definitely not say that this is purely loungewear. nice enough to replace my old ratty sweaterknit!",5,1,0,General Petite,Intimate,Lounge +364,34,Too much cardigan,"I was definitely wearing retailer colored glasses (my term for when something looks great on you in the dressing room but leaves you wondering what-was-i-thinking when you try it on later) when i bought this. once i tried this on at home, i basically felt like i was swallowed up by this thing -- there's so much fabric layered in front and around your shoulders that you can actually feel the weight hanging down around your neck, and it naturally sticks out rather far in the back. i wanted to love t",2,0,3,General Petite,Intimate,Lounge +867,33,Great staple with a little detail.,"I love the elbow patches on this shirt. i ordered the wine color, and it's dark enough to almost be a neutral. i've worn it with many things already. my only complaint is that the sleeves are super long. typically, long sleeved shirts are too short for me, so i'm guessing this one would be ridiculously long on someone with short arms.",5,1,10,General,Tops,Knits +1081,31,So silky soft,"An impulse try on that was immediately moved into the ""yes i'm buying right now"" pile. the tunic is so soft. i have worn as a shirt dress with booties and knee boots/knee socks. the fabric (while not the most forgiving if you buy this tight) is so soft and cozy. i am 5'5"", 135lbs, 34c, and the small hands nice and loose all around the body. when this goes on sale, i am buying more colors.",5,1,8,General Petite,Dresses,Dresses +364,49,,"This is absolutely gorgeous cardigan! the pictures don't do it justice! it's comfortable and soft and very trendy at the same time! i bought it in teal and in medium, i am 5'3"" and usually wear 10-12! even though i think it runs tts, but for more fitted look, medium fits better ! i am blond and this color looks great! i also loved it when unzipped the upper part, it looked even better! it is perfect with leggings in grey, blue, green and black, also beautiful with aqua flora leggings and with re",5,1,8,General Petite,Intimate,Lounge +364,52,,"I had originally bought this in a medium, but needed to return for a small, it runs large. fits way better in the small....fits in the arms nicely and has nice shape around the body for a full jacket.",4,1,2,General Petite,Intimate,Lounge +1081,59,,"I tried this on at the suggestion of one of the sales girls. i was skeptical of the simple shape, but when i put on the green one, i didn't want to take it off-ever. i am 6' and thin- the small fits me perfectly. i loved it so much, i purchased the blue as well. love, love, love!",5,1,1,General Petite,Dresses,Dresses +1065,38,Very cute,"I was a bit worried when i took it out of the packaging but once i tried it on, all was well. it is a cute and comfortable outfit with enough detail to be stylish. i love rompers and this one is a great addition to the wardrobe.",4,1,0,General,Bottoms,Pants +1081,32,Love!,I have this dress in red and black and i'm contemplating getting the green one. it's amazingly soft and falls beautifully. really flattering and i just had a baby 6 weeks ago! it's true to size. i'm 5'6 and 138lbs and got a small. it should still fit fine once the rest of the baby weight is gone.,5,1,0,General Petite,Dresses,Dresses +1081,36,,"As a busty but small-waisted girl, i normally would not wear a loose shift like this. however, it turned out to be perfect for hiding my early/mid pregnancy belly. the dress is extremely comfortable, and it will also come in handy in the postpartum months. in fact, it looks so cute that i might just add it to my regular wardrobe after all.",5,1,0,General Petite,Dresses,Dresses +1110,30,The perfect summer dress,"This dress is casual enough to throw on as a cover up and dressy enough for a night out. it so comfy and versatile. will never go out of style. it does run large, but that is just the style of the dress. it really is the perfect summer dress.",5,1,1,General Petite,Dresses,Dresses +867,29,Very pretty and comfortable airy top,I really like the design and colors and the material is so soft and comfy. the top is a little on the short side so wearing a tank underneath is an option if you don't want your stomach to show when you raise your arms.,4,1,0,General,Tops,Knits +867,61,So-so,"Didn't love it, didn't hate, rather indifferent. the grey was a little more muted than i wanted for a summer tee. +i'm 5'4"", 123lbs, 34a, the xs fit if it wouldn't shrink, if you're about this size but larger busted go with the s.",3,1,4,General,Tops,Knits +833,36,Beautiful and flattering,"I love the details of this top, from the pleating to the sleeves, the pommed edges and the black lace at the bottom. the material is soft and comfortable. the fit is flowy and the details are feminine yet simple. it's light weight which will be nice in warm weather. and let me say once more how much i love the sleeves.",5,1,5,General,Tops,Blouses +364,36,Cozy but bulky,"This has a lot of extra fabric in the chest area. i was hoping i could button and close that in a way that didn't just have it jutting out. luckily, it's still flattering. definitely bulky. and in the black, it's picking up lots of dust and lint. still a great cut and look, so i'm happy with it overall.",4,1,1,General Petite,Intimate,Lounge +1081,31,,Not sure why this dress was once backordered? if you have a big chested basically falls from your chest straight down and gives you know figure. disappointing. i will be returning it. not meant for big chested fit woman.,3,0,0,General Petite,Dresses,Dresses +364,36,Sfylish and versatile,"Great ""sweater/jacket for spring and fall! i am a pilates tea her and great for before and after workouts! great price and a little thicker material like a sweatshirt to keep you nice and warm. tried it in-store and bought on online ! love",4,1,0,General Petite,Intimate,Lounge +364,70,"Beautiful cardigan, poorly designed...","I wish i could wax poetic about this gorgeous cardigan. i would have happily bought it in both colors except for the deal-breaking design flaw - the extremely tight sleeves. even if you have stick-thin arms, i don't know how you would ever be able to wear anything other than a tank top under it. sadly for me, this was a no go :(",3,0,3,General Petite,Intimate,Lounge +1065,66,Very nice,"I really like this jumpsuit, it is long waisted on me so i hope that washing it helped. love the material and washed up nicely. should be really comfortable.",4,1,2,General,Bottoms,Pants +1078,56,Will take you anywhere,A slip underneath makes this dress substantial. it's a good 'weather' transition dress-fall/spring. the lace is very pretty and it's an overall great dress that will take you anywhere. i plan to wear burgundy tights and brown boots with ti next weekend.,4,1,0,General Petite,Dresses,Dresses +364,40,Cozy comfy,"Great cardigan that can be put over everything! cute with yoga pants, jeans, or something dressier.",4,1,1,General Petite,Intimate,Lounge +1081,36,Beautiful dress terrible material,This is very large. i normally am a s/m and i took this in an x. it is a beautiful dress in color and fit but picks up any stain and i have had to have it dry cleaned after every use.,1,0,0,General Petite,Dresses,Dresses +1081,24,The best dress in the world!,This dress is amazing. i have it in almost every color. it is incredibly comfortable and versatile. you can dress it up or down. love it!,5,1,0,General Petite,Dresses,Dresses +1078,82,Pretty dress but a little too much fabric,"I've been eyeing this dress for some time and it finally went on sale so i decided to buy it. i bought a size small and while it fits through the shoulders (which is the place i need a little more room) the body of the dress needs to be less sack-like for lack of a better term. i thought it would hide flaws, but unfortunately, it makes me look bigger than i am. it kind of bags out even at the back where the fabric is gathered under the yoke. that being said, i don't really want to return it beca",4,1,0,General Petite,Dresses,Dresses +833,49,"Adorable, runs large","This top has a nice quality feel to it with natural fibers and i love the pom poms. however, it does have a roomy fit, so you might want to size down. as a petite person, i have a tendency to get lost in very billowy styles. overall, comfortable and cute and a nice rich blue color.",5,1,1,General,Tops,Blouses +933,68,"Cozy, warm, great details","I purchased this sweater after i saw it on a salesclerk at my local retailer store. i am usually a xs but based on reviews decided to size up considering the description of the fit of arms. when it arrived it was overall ok but seemed boxy at sides so i exchanged for my usual size. it arrived today and fits great-less fabric along sides but still good length for my 5'8, slender frame. the arms and shoulders are not too snug. the colors are beautiful and it is out of the ordinary-a statement piece,",5,1,1,General,Tops,Sweaters +933,34,Soft and cozy,"So soft, warm, and comfy! the colors are absolutely beautiful and represented accurately in the photo. i went with a small based on other reviews, and while it fits, it is slightly big. i probably could have sized down for a more tailored look but i like the extra room and think it still drapes well without looking bulky. for reference i'm 5'7"" 115 lbs (33-25-33) and mostly wear an xs/2 in tops. it does shed which is not a big deal to me but might be a deal breaker for others so i thought i woul",5,1,0,General,Tops,Sweaters +1081,60,Casual to evening dress,I'm a little hesitant about the dropped-hem style but this drapes so well and looks utterly chic. i wore it to a poetry reading with some fluevogs and it not only looked good but it felt like i was wearing nothing. the material is beautifully soft and i love this particular shade of blue. will definitely be wearing this a lot.,5,1,0,General Petite,Dresses,Dresses +1081,85,Perfect comfy stylish dress,"What more could you want than a dress that slips on easily, hugs all the right places and skims the others, feels like pajamas, and looks great for any occasion? i am about 120, 5'-1', 32 dd, usually a 4 petite. i ordered the petite small in navy and it fits just like the model photos. i tried it on in the store in a regular small and x-small, and could have gone with either, but the petite had better proportions, especially where the v-neck hit (i would have had to wear a very low plunge bra wi",5,1,0,General Petite,Dresses,Dresses +364,48,Warm and cozy,"Saw this online and thought it would be perfect for my upcoming plane ride. originally ordered the teal color, but when it arrived, i was disappointed that it was more of a muddy greenish teal and not the light bluish teal like in the photo. exchanged it for the black version and i couldn't be happier. the black goes well with everything--looks great with jeans and yoga pants. love it!!",5,1,1,General Petite,Intimate,Lounge +1081,46,Stylish and comfy,"First i think this dress runs a bit large - i am 5'5"" and about 140, athletic build. i tried on a l, m, s and ended up keeping the small. it is also a bit longer than i'd like, hits me in the mid-knee in the back hem, and barely above my knee on the front hem, not mid-thigh like on the tall model. i probably would have preferred a petite size but they were sold out. anyhow i decided to keep this dress because it is super comfortable but still stylish enough to wear to work. the slightly fitted a",4,1,1,General Petite,Dresses,Dresses +1081,41,Fabulous dress!,"I love this dress! i was apprehensive about it at first, because of the light material and boxy style. turns out the material is very flattering, and it hangs very well. the style isn't as boxy as it seems. it still flatters the figure without showing all your imperfections and it doesn't fit like a tent. i am 5'4"" and i ordered the petite. it's short enough to show off you legs, but not too short. for being less fitting, i like the balance of the short length, and it looks great with heeled boo",5,1,0,General Petite,Dresses,Dresses +1081,37,Easy dress,"This is great without a belt, with or without leggings. it drapes just right and is flattering for big busted, big behind women (like me).",5,1,0,General Petite,Dresses,Dresses +1081,32,Great dress!,"This is one of the best things i've ever purchased at retailer. it's comfortable, stylish, and flattering. i ordered it in black, and i'm now ordering the green as well. i usually wear small in the dolan line, and this is no exception. i am 5'2"", 135 lbs, athletic build, and the regular small fits perfectly.",5,1,0,General Petite,Dresses,Dresses +867,56,At least it's not a swing top! tts?,"I loved the idea of the placement print around the neckline and shoulders and even the nape. the print transforms an otherwise basic t-shirt into an eye catching top. it lacked in the length department, and there was extra fabric under the sleeves that wasn't flattering just above the girls. + +this is made by retailer brand postmark. i own several tops by this brand, and found that their printed fabric tends to fade out from wash #1. as is usual for postmark, the brand was not stated on the produ",4,1,95,General,Tops,Knits +1081,38,,,5,1,0,General Petite,Dresses,Dresses +1081,44,"Simple, soft and put together","This tunic dress is an easy ""go to"" outfit. it looks put together immediately. it is soft and comfortable. i ordered the regular xs even though typically i prefer petite sizing. this dress is above my knees in the front. i am 5'4"" and weight about 118#. i would have ordered a petite size but had previously tried this on in the store and knew the regular sizing was a good fit for me. in the store i tried the taupe color which seemed a bit see through. i ordered the green and it is a lovely shade.",4,1,0,General Petite,Dresses,Dresses +364,53,,This sweater would have been a better fit for me if the sleeves were slightly larger and had a button/snap on the front. the material is soft and comfortable. black pairs well with jeans.,4,1,0,General Petite,Intimate,Lounge +867,41,Great top,"This top fits nicely, lays nicely, and washed nicely! i purchased the same shirt in other colors because it was such a great purchase! i am short and it was not too long and not clingy.",5,1,0,General,Tops,Knits +364,40,Love this!!,Very comfy and warm! i love this! i bought the xs even though i am usually a s or xs.,5,1,2,General Petite,Intimate,Lounge +867,66,Festoon tee,True to size and lovely colors. bought this for my granddaughter and she loved it.,5,1,0,General,Tops,Knits +1081,44,,,5,1,0,General Petite,Dresses,Dresses +1065,29,Awesome buy!,"I am so happy i took a chance on this jumpsuit! i am post-baby (six weeks) and although i intend on slimming down more i would say that it is flattering even at my current size. and it will only get better! +the quality and color are great!",5,1,8,General,Bottoms,Pants +364,23,,"Super cute cardigan! can wear it with black tights and boots or shorts when it starts warming up. the color is great! i was hesitant about buying it but thankful i did. will probably buy it in the black, too.",5,1,2,General Petite,Intimate,Lounge +867,50,Very easy to wear,"The material is soft (maybe not the best quality) and the cut is easy to wear. i have both colors and love them...they wash nicely and i like the ""baseball"" cut at the bottom. i especially like the print at the neck line...very cute and feminine.",5,1,0,General,Tops,Knits +1081,43,Perfect for work,"I purchased this for travel for a work meeting, i paired black slim pants under with heels- +i added a long simple necklace and it was perfection. after getting a little wrinkled in my suitcase, i simply hung up while i showered and the wrinkles fell right out. +it was comfortable, traveled well, was light, but looked very professional. you could wear tights under with boots or i can see in the spring with fun nude shoes. +dolan always hits a home run- every dolan piece i have i still wear, years l",5,1,0,General Petite,Dresses,Dresses +822,56,"Orange lace part runs big, but lining is small","I snapped this up under the 20% off top sale and free shipping because it looks so pretty. i ordered a large because i usually take a large or xl in tops. it is huge! i could have taken a medium if not for the lining -- which is tiny! the lining does not cover the chest and bra area and hits the belly button area while the orange part falls down to the hips. and it looks like a block and makes me look wide. who needs that? like i said, a medium would fit better and would not be so wide, but i fe",2,0,3,General Petite,Tops,Blouses +1078,30,,,4,1,0,General Petite,Dresses,Dresses +1081,41,Love this dress,"I've had my eye on this dress ever since i saw it in a fall catalog. my daughter's name is tegan and this is exactly the style i love - simple. when it went on sale i was lucky enough to find it in the green color i wanted at a great price. it is so soft and comfortable, yet flattering. it's a must have. now i want to get this in black!",5,1,0,General Petite,Dresses,Dresses +880,45,Love this top!,"I love this top and cannot wait to wear it. the material is a nice weight, the color is pretty, and the fit is very flattering and comfortable. be aware that it does have an elastic waist and the design is very delicately sewn and could tear easily.",5,1,6,General Petite,Tops,Knits +867,57,Hole the first time!,"Loved this top on model. even happier when it went on sale. sort of boxy. but still excited, then within one day there was hole already in the thin tee fabric! disappointed. my other tees i purchased are fine.",3,1,0,General,Tops,Knits +933,58,Love this sweater....,Only negative thing is that it sheds. and even that is not really very negative! i would buy it again in a heartbeat.,5,1,0,General,Tops,Sweaters +867,55,Lovely top,"I purchased this top in the white and love the contrast between the stripes and floral pattern around the neckline. it fit perfectly, however i'm concerned that it might shrink because then it would be too short. i am 5'3"" tall, 120 lbs. and small busted. it draped really nicely. small would give me a little more length but may be too loose.",5,1,14,General,Tops,Knits +867,65,Very soft cotton knit,"I bought this in the grey as shown in the photo as i'm not fond of horizontal stripes and i felt the striping would distract from the floral accent of this tee. the gray is light and as pictured in the photo. + +i bought an xl and the fit is tailored, with some loose flow to it. it is not boxy or big on me. + +the fabric is a soft, soft, thin cotton knit and very cool for hot, muggy summer days....esp. in the southern us where it can be pretty intense. since i bought the gray, it's not sheer, al",3,1,3,General,Tops,Knits +1096,59,Runs very small,"I love this dress but the top runs very small. i am 5'5, 102 lbs, small frame and the 0 was tight. 0 is my go to size at retailer. i had to return it. i wish i had bought the 2 now.",5,1,1,General,Dresses,Dresses +1081,48,Please get this dress back in red!,I love this dress and was hoping to get it in more colors. i was bummed when my size xs regular was out of stock. i would've even ordered it in a s regular but that was out of stock too. please get more in...love the deep red color!,5,1,0,General Petite,Dresses,Dresses +199,40,,Gorgeous fabric. love the crochet back of top & cut out sides of bottoms. runs small. i'm 34a - small top fit. 26-36 - medium bottoms fit.,5,1,2,Initmates,Intimate,Swim +364,48,Too much material,"Beautiful color and softness, very warm, but the front is way too much material. it just wasn't flattering the way i wanted it to be. perhaps on a taller woman this would work.",3,0,1,General Petite,Intimate,Lounge +1081,44,So chic!,"This dress drapes beautifully and fits tts. i purchased the green colour in a petite small. for reference, i am 5'2"" and 120 lbs. rather than feeling clingy, this dress skims the body and hides trouble spots while highlighting everything i like about myself. for that reason i went ahead and paid full price with no regrets. looks fantastic with black tights and black ankle boots or bare legs with cowboy booties. highly recommend!!!",5,1,0,General Petite,Dresses,Dresses +1087,30,I said yes!,"I wore this dress to dinner right after my boyfriend proposed to me! it will be perfect to wear to any bridal event like a bridal shower, rehearsal dinner or engagement party. i ordered a size 0 and 2. the mock neck is a bit snug. there wasn't any difference really between a size 0 or 2 so i kept the size 0 since it fit better in the waist. it's beautifully made and feels like it will hold up well. it's casual but still interesting. it felt just a bit above my knees. a perfect length. i paired i",4,1,0,General,Dresses,Dresses +995,30,Gorgeous versatile skirt,"I went to the retailer store to look for an outfit for a wedding. i tried on a lot of dresses and the staff was super helpful with pulling items and making recommendations. after trying on their pulls, i browsed the store for myself and found this skirt. it wasn't in my size but i tried it on anyway and paired it with several different tops recommended by staff. this skirt looks great with every top-black, cream, white, long sleeve, no sleeve, short sleeve. i thought i had to get it for the versat",5,1,0,General Petite,Bottoms,Skirts +1059,59,,Very cute and flattering. very fitting in legs and thighs and i have fairly slim legs. i am a size 6 and 6 was very snug. i recommend trying these on in store or trying several sizes to see best fit.,5,1,4,General,Bottoms,Pants +1087,63,,"I'm 5'8"" and a 2/xs and this fit well in size 2, waist was actually a bit loose. unfortunately the waist hit at least 2"" too high -- on my ribcage. not cute or flattering. that was the only flaw. would be perfect on someone about 5'6"". otherwise the dress looked exactly as pictured. love the boho vibe of this dress, the lace, sleeve length, and cotton material. could easily be dressed up or down. the style feels a little edgy - not too sweet. i am so sad to return this.",4,1,0,General,Dresses,Dresses +1081,64,Better for taller women,"I am a petite size 10 and 5'1" i love the fabric and style of the dress, but found it to be too much dress for me. the skirt is very full and with the top i feel it would look better on a thin, taller person.",3,0,0,General Petite,Dresses,Dresses +1022,29,Heck yes!,"These are my saucy, fun jeans. when the ps brought them over, i wasn't sure about them but at 5'3, they make the perfect ankle jean. they look great with boots and are so comfy! i typically wear a 26-27 but i sized down in these because they're a lower fit on me and i wanted the waist to be tight. as the darling fiance says, they make your derriere look ""great!"" i'd snag these on sale ;)",5,1,0,General,Bottoms,Jeans +1087,36,,"I have a long torso and wider back/thick middle in proportion to my narrow tights. i was worried after reading other reviewers comments. for reference i'm a 2 in pants, 26-27 in jeans, xs in retailer tops but for floreat and maeve i'm always a 6. i ordered a size 6 and it was perfect. with my long torso i expected this dress to fit weird but it was perfection. in love. i wore it with faryl robin lace up sandals",5,1,0,General,Dresses,Dresses +1022,30,Love!,"I love ag jeans to begin with but even still sometimes certain styles miss the mark (at least on my body type). i was pleasantly surprised with this pair and even though they are pricey, i couldn't pass them up. they miraculously stay on my hips and i don't find myself pulling them up every few minutes. hallelujah! other than that they are stretchy and soft with out losing their shape. they hit right at the ankle for me (5'2). the hem is frayed which i'm hoping doesn't unravel too much with was",5,1,2,General,Bottoms,Jeans +1022,51,Love love love,I loved the color and style then put them on and didn't take them off! they are so comfortable cane believe it. they are going to be my fall staple,5,1,1,General,Bottoms,Jeans +1059,42,"Super cute, form fitting, good neutral","I saw these paired with the denim swing tank in the store and was inspired by the nautical look! the fit was a little snug. i am between a 4-6 in pants and definitely had to go with the 6, and even that was a little tight. for reference i am 5'6 and 125 lbs, curvy on bottom. the sales lady said they will stretch and there is some give to them, but i don't anticipate a lot of stretch. they are slim fitting all the way down and are flattering to the rear. i think they look better in person than on",4,1,10,General,Bottoms,Pants +1086,30,"Lovely dress, runs large","Lovely, lovely dress, great quality. unfortunately runs rather large at the hips. i wear a size 2 and the xs fit well in the chest but large at the hips.",4,1,4,General,Dresses,Dresses +1076,60,Just as pictured and a great casual look.,I ordered this dress in the red stripe and i love it. it is casual and easy to wear with flat sandals or booties. the dress is not really sheer like you might think from the picture and it included a nice knit under slip in a pale peachy pink shade that fits true to size as well. the dress has more of a soft woven cotton feel to it. the slip is not really necessary but nice that it is included. i looked at the blue color but it looks more like a tunic in the pictures. i think that the looks are,5,1,2,General,Dresses,Dresses +872,46,,"I don't usually go for the ""tenty"" cut in a blouse, but this one has such pretty detail and with a little cardy, looks great! love the black and white detail and embroidery.",5,1,4,General,Tops,Knits +1087,29,"Pretty, but very modest","This dress has great details and fit well on my hourglass shape. it just felt too covered up at the arms/shoulders, though. if the sleeves had been shorter or it had been sleeveless i think it would have felt a little more modern. the waistband on the one i tried on was also twisted, so you might want to check that before you buy. + +fit is tts. a little on the short side.",4,1,1,General,Dresses,Dresses +1022,40,Ag is amazing as always!,"I love the perfect length of these! i am 5'6"" and i love subtle capris which are very hard to find (unless i tailor them of course) but these are the perfect length and the color is great i have worn them twice and was stopped over and over again by people asking who made them. new favorite!! the waist runs a little tight but legs and tush are true to size!!",5,1,1,General,Bottoms,Jeans +1051,67,Great pant,"I love this pant. it is so soft and has some stretch in it. the first pair i tried in a size 10 and the sales associate suggested trying a size 12 as ithis pant should not fit tight as it is a trouser. tie 12 is perfect. it reminds me of a ""retro"" pant,which i love.",5,1,1,General Petite,Bottoms,Pants +1076,64,,I ordered this in the red stripe material. i love it! it is so soft and easy to wear. i'm wearing it as a bathing suit cover. a nice pink slip is included.,5,1,0,General,Dresses,Dresses +1081,56,Stunning dress,I bought this dress to wear to a fall wedding. it is absolutely gorgeous! the actual fabric is much more detailed in person. sizing is accurate. the dress is knee length. there is a little tulle underneath to give it the a-line shape.,5,1,2,General Petite,Dresses,Dresses +1022,51,Runs small,"I am a pretty consistent size 2 or 26. ordered these in my usual 26 and, yikes, right out of the package knew they''d be way to small. they have a lot of stretch in them so i was able to get them buttoned but they were wayyyy too small and looked awful. i returned them for a 27 which i am still waiting for. i'll update this review when they arrive. other than the size issue, they were just as pictured/expected.",3,1,1,General,Bottoms,Jeans +956,39,"Great ""cardigan""","If you're very small-framed and/or petite, i would size down in this. unless you want a really slouchy look and fit. +---------- +i have very broad shoulders and very large biceps, and typically wear a m/l in retailer tops. sometimes if a top is a pullover style (as opposed to button-down) i have to size up to a 12 to get the top to accommodate my shoulder width and biceps. so i was leery the size 8/italian 44 would fit, but it does, with room to spare, albeit it is not as loose or long in the ar",4,1,5,General,Jackets,Jackets +1022,41,,"Cute jeans, but they hit me a little higher on the calf than i would like so sadly i will be returning them.",4,1,1,General,Bottoms,Jeans +1059,46,,,5,1,0,General,Bottoms,Pants +1022,34,Great alternative to black pants,"I really like these. they're not too distressed, and the frayed ankle looks great. not too casual that you couldn't wear them to the office. the length is perfect on me, (i'm 5'1) i can wear them with sandals and booties without having to roll them up. they do run about one size small. i'm 5'1, 120 lbs, a slightly curvey petite and the 27 fit best,.",4,1,4,General,Bottoms,Jeans +1051,67,My view on sizing,"Based on other reviews, i ordered these trousers in my regular size 8 (dark grey) and up one size10 (black motif). the size 8 fit perfectly; and the size 10 are too big (returning). i am not sure what the other reviewers experienced, but size 8 in this brand fits, regardless of style. i also prefer the solid grey, but that is just a personal choice. i felt the black motif trousers looked like pajama bottoms.",5,0,0,General Petite,Bottoms,Pants +1059,57,Stripes are not my friend.,"These ran very small compared to other charlie pants i've bought in the past. even sizing up, the stripes were not flattering. the lady in the next dressing room over tried them on, too, and had the same feeling i did. the less curvy you are, the better stripes look. they more curvy you are, the less flattering stripes on pants look. the way the stripes come together at the seams just isn't flattering.",3,0,7,General,Bottoms,Pants +890,62,Dissapointed...,I was sooo excited to buy this top and it was such a bummer. this top hangs so poorly and is so droopy under the arms. it's clearly poorly made and the sizing was way off on me. i ordered my usual medium and it was so large and wide that i had to return it. it weirdly fit perfectly in the shoulders and arm length as mediums do for me but was so wide and unflattering for my figure (5'8 and athletic). i really wanted to like this top and considered ordering a small to see if it would fit better bu,2,0,0,General,Tops,Fine gauge +1075,32,The most beautiful clothing item i own,"I saw this on the rack, and tried it on because it was just so beautiful. the beading and embroidery details are unlike any piece of clothing i've seen in a ready-to-wear store. it feels and wears much more like a couture piece. +i wasn't planning on making such a big purchase, but it's just so beautiful i had to have it. i doubt i'll find another item of such quality and craftsmanship for the price. +runs large- i'm normally a size 6 (135lbs) and the size 4 fit perfectly.",5,1,1,General Petite,Dresses,Dresses +1022,27,"Perfect ""ankle jean"" for petites","I love ag for their soft, stretchy denim and flattering fit. bought these today and couldn't be happier! i usually order stevies in the petite ankle size, but the ""regular"" capri length fit perfectly skimmed my ankle.",5,1,5,General,Bottoms,Jeans +1022,48,These are a hit!,"I am a big fan of ag, i'm sure i have 15-20 pairs. i will say that i have rejected some of their offerings in the past because the fabric has been weird: denim that is so stretchy it doesn't look like real denim, fabric is so thin it shows every lump or bump etc.. so i'm always cautious, especially with their stretch twill. that aside, these particular jeans in this gray color are awesome. ag nailed it: great color, supportive, slimming fabric, great length and rise. a job well done ag! + +howe",5,1,3,General,Bottoms,Jeans +872,43,Nice choice if you want a design,"I was hesitant to order this top since i didnt know how well the design would be made on the front. i liked it, but sometimes items are different when you get them. this shirt was as pictured! the design is well made and there are no stray strings and i think it's probably one of the nicer designs available. the top iis a dressier fabric but can be worn with jeans as well as dress pants. also, some shirts with this cut are skimpy in the front and leave more skin exposed than what you see here. t",5,1,10,General,Tops,Knits +3,36,,I love this sweater. definite classic. i get lots of compliments on it.,5,1,0,General,Tops,Sweaters +1087,27,,I love this dress!,5,1,3,General,Dresses,Dresses +872,45,Lots of compliments,I bought this top in the wine color. i just love it. as soon as i wore it i received compliments because it has so many unique details. i bought a medium and it was just the right size.,5,1,0,General,Tops,Knits +1081,44,Jewel tone gorgeous,"The fabric is breathtaking, both the jewel tone colors and the burnt velvet that would flatter any skin tone. as usual, eva franco clothes run small so i went up a size, size regular 6 (i am 5ft2in, 34b, 26 waist, 36 hips) fit well, the hem is below my knees, appropriate for work. but i think it would look better as a skirt or a sheath dress. the top part looks strange, does not enhance any curve and turns the dress to frumpy on short folks like me, thus one star off.",4,1,0,General Petite,Dresses,Dresses +927,68,Weird,"When i tried this top on, i started laughing. the two rows of ruffles are made of a starchy thick cotton, which, instead of falling by the hips, juts out like wings. it's also huge. cute idea, wrong material and placement.",1,0,5,General,Tops,Sweaters +1060,33,Super 70s!,"Whoa! these are very high-waisted. but i think i like it! this is a very 70s style with the high waist and wide legs. the brown motif is kinda funky! i am a 70s/vintage lover though, so i was pleasantly surprised. the tall length is more than adequately long for my 6'2"" frame. i may need to take them up a little bit, in fact.",4,1,0,General,Bottoms,Pants +993,41,"Beautiful, but tight","This skirt fit, but is very body con. if you are not comfortable with such a tight fit, consider sizing up. overall, the design is beautiful and the fabric is heavy (hides bumps). i plan on ordering one size up, hoping that the waist is not too big.",4,1,16,General,Bottoms,Skirts +927,48,Strange fit,"This looks like the perfect easy sweater with the white shirt appeal to it, but sadly the fit of this number is really off. it looks more like a tent. it must have been clipped in the back or something. i cannot see any scenario in which this would look good...",1,0,1,General,Tops,Sweaters +1086,51,"Good summer dress, better fit than pictured","I'm 5'5"" and about 115, 35-36"" hip and small bust - the xxs petite is a nice fit, and doesn't hang straight down as it does on the model. it has some shape around my hips, and the slit is slightly above my knee, overall legnth also shorter than shown (good). it's not colorfast when you receive it, so be careful wearing light colored underwear (and maybe wash with only very dark colors the first time or two). i tried a regular xs in store at first, and it fit more like the photos - more of a beac",4,1,0,General,Dresses,Dresses +1086,27,Love it!,"I saw this dress on the girl working the fitting room at my local store. she had it knotted in the front with some cute cognac sandals. i immediately fell in love! i tried on the xs, my normal size, and it fit like a dream. so comfortable!! it was a little pricey so i held off but couldn't stop thinking about it. i went back the next day, caved & purchased. it's one of my favorite dresses for summer now. i love this brand so i wasn't surprised!",5,1,4,General,Dresses,Dresses +867,42,Great detail,"Love the detail of this top; however, it runs large and had no shape on me",3,1,1,General,Tops,Knits +927,56,Poof,This looks so cute...but don't be fooled. it is so poofy. it does not look in real life like it does on the model. it poofs way out on the sides and looks ridiculous. i was so disappointed.,2,0,5,General,Tops,Sweaters +927,40,It is weird but at the same time unique,"This top does sit weird, feels like a circus outfit... but at the same time its unique in its own way. i ordered a large and it was true to size in shoulders and chest area but larger and wider waist down, probably because of the way this top is styled. i'm 6ft tall 160 lbs i have curvy body and small chest 34a and i felt that top was a little too cropped for my long torso but i kind of liked it anyway. material is nice and soft for both grey wool and white cotton.",3,1,0,General,Tops,Sweaters +1086,48,More versatile than you may think,"I'm 5'10"", approximate size of model pictured, however this dress is at least 3 in shorter on me. the fabric is a bit thin and the v-neck is quite deep... +but i happily wore it on the beaches of puerto rico, added a jean jacket and epice scarf and wore it in paris. last week i wore it belted ( as i saw a sales associate in antro do) with an open weave sweater and flip-flops on a warm boston day. don't count it out yet, it really is a chameleon piece that you can wear so many ways.",5,1,8,General,Dresses,Dresses +829,41,Great top for summer!,"Cute, easy to wear. perfect little top! will go with so many things. the scalloped shoulders add such a nice touch. i'm a solid 8 with a pretty large chest. i think i need to go up. not sure. about to order a 10 to see if there is a big difference. so, if you have a larger chest you may want to order two sizes.",5,1,4,General Petite,Tops,Blouses +829,45,Cute top!,This is really cute - with a statement necklace or without. jeans or shorts. love it.,5,1,0,General Petite,Tops,Blouses +1086,34,Very thin material,"I wanted to love this dress, as the length, cut, and color are exactly what i've been looking for. but i was terribly disappointed in how thin and see through the material is.",2,0,9,General,Dresses,Dresses +927,53,,I bought this sweater and love it! one of my favorites this season.,5,1,0,General,Tops,Sweaters +1086,40,,The dress is very comfortable but runs a little big. i normally wear a 4/s and the small fits but doesn't have great shape. i'll keep it and wear with flip flops casually but was hoping it could transition out too. it's just not as fitted as it would need to be,4,1,0,General,Dresses,Dresses +829,63,Basic black bonus,"Just a little scallop makes this top special. +if your on the edge of a 10 i suggest sizing up. +fabric crisp-well made and worth full price",5,1,6,General Petite,Tops,Blouses +993,39,Lovely...,"I love, love, love this skirt. very flattering. i am 5'7"",125# with a 27"" waist, and ordered a size 4 based on previous reviews. yes, it is snug through the hips. i think it will stretch a bit with wear; however, i imagine curvy ladies may want to size up (sadly, i was not blessed with much in the way of curves). the material is thick. the skirt is lined. the print is beautiful. this is one skirt i was happy to pay full price for rather than risk missing it.",5,1,0,General,Bottoms,Skirts +927,27,Coloring is off,"This sweater is really pretty (and soft!) in real life, but if you purchase the coral color, be ready for a little bit of a surprise when you open the package. while it looks more orange and subdued online, it's more like a hot pink coral in real life. definitely more pink than orange and far more vibrant than pictured. still pretty, but not necessarily my taste so still deciding if it will go back or not. the cut and fit of the sweater is wonderful, though. it's so soft and airy, but definitely",4,1,6,General,Tops,Sweaters +1086,42,,"Love love! beautiful, soft, great color! very comfortable!",5,1,5,General,Dresses,Dresses +1086,43,Truly versatile,"I have worn this dress with a jean jacket, birkenstocks or a dressier wedged sandal. it washes beautifully and is super soft. would buy in different colors if there were more options. looks better in person.",5,1,3,General,Dresses,Dresses +927,55,Weird fit,Fits and lots nothing like picture. very wide like a tent dress!,1,0,3,General,Tops,Sweaters +993,37,Great color combo and fabric,I loved this skirt but it was slightly too small. i did not realize it pockets which is always a drawback for me in dresses/skirts. i have an hour glass frame and the extra fabric from pockets is too poofy in my opinion. beautiful color and high quality fabric/,4,1,0,General,Bottoms,Skirts +993,57,Love the length,"I found this skirt ran very small and i had to go up a size from what i usually wear. maybe it is meant to be worn really tight as the fabric seems to contain a lot of spandex. i really like the longer length. it feels like a good sturdy fabric. i haven't washed it yet, but i'm hoping it doesn't fade or shrink.",4,1,2,General,Bottoms,Skirts +773,27,,"This bra is very cute and pretty comfortable. i usually wear between a 34d in elle mcpherson and this fit perfect. i got it in black and while it's really cute i was surprised how different the color looked in person vs. online. online it looked to me to have some purple to it, but it is definitely 100% black in person (just an fyi). i also thought the tassel was cute, but it does look a little cheap and flimsy in person. still a great bra.",5,1,0,Initmates,Intimate,Intimates +993,29,So cute,"Love this skirt! it's definitely on the tight side, but is a stretchy material. i'm between a 6 and an 8 and went with the six because i liked the way it hugged my curves. as an hourglass shape i sometimes have problems finding pencil skirts - they either fit in the hips and are big at the waitband or the other way around. this one fit great throughout, and was both slimming in the front and flattering in the back. i was also worried that if i tucked anything into this skirt there would be weird",5,1,1,General,Bottoms,Skirts +1086,48,Great dress,I bought this dress as a pool/beach coverup but it is so cute i think i will also wear it other times as well. it is very comfortable and lightweight. perfect for the hot weather.,5,1,0,General,Dresses,Dresses +1086,41,"Great, easy dress","I adore this dress. i bought a little over a month ago and have already worn it many times- rare for me. it is so easy to throw on and yet it's stylish and flattering- i don't have the time or energy i used to get dressed up so i love this. when i bought it, it was knotted on one side in the front. that's the only way i wear it now. it just adds something to it and gives it more shape. i've washed it several times (laid flat to dry) and it has held up well. i'm definitely bookmarking this to buy",5,1,1,General,Dresses,Dresses +1086,66,My unexpected new favorite! simple & sexy,"This dress looks simple, but man is it unexpectedly sexy. and oh so comfortable! the deep v neckline and side slits elevate this from a simple tshirt dress to something else. add just the right accessories and this dress transforms. i have the xs and its just roomy enough without being clingy. and did i say how comfortable it is? the fabric is perfectly lightweight without being flimsy and color is a cool, saturated denim color. i receive compliments every time i wear it. love love love.",5,1,0,General,Dresses,Dresses +829,46,Beautiful blouse!!!,"This is a beautiful blouse and well made!!! i read the previous reviews and i'm usually between sizes 8 and 10, so i sized-up, and ordered size 12 and it fits well. i purchased the pink, and it's soo pretty! i'm very satisfied with my purchase, and i highly recommend this blouse.",5,1,0,General Petite,Tops,Blouses +1086,21,,Absolutely amazing! a must staple in every one's closet this season. i purchased the dress in a medium for a more relaxed look/feel. the silhouette is comfortable and makes for the perfect put on,5,1,13,General,Dresses,Dresses +1086,44,,"Tried the size small, regular. me: 5'6"", 34/35a-28-36, straightish shape, broader shoulders. +it's described as slim fit but i found the small to be a loose fit on me. i would almost consider trying the xs if i wanted something less baggy...but i think the style is meant to be very laidback. i tried to picture the extra material i had. +the color is a lovely denim blue and the length on me was just as the website describes. deep v neck but not to the point where i feel i'd need a cami, those of",5,1,27,General,Dresses,Dresses +1086,37,So versatile,This is definitely true to size. i tried both the small and medium on in the store and the small was too tight( this is meant to be a little looser like a tshirt) the medium was spot on. not too tight and not too baggy. i think it's a fun go to piece that can be worn with a jean jacket and sandels or booties. it looks like denim too which i wasn't expecting. way better in person!,5,1,18,General,Dresses,Dresses +993,24,Adorable and girly,"I received this skirt today and am absolutely thrilled! as a short and curvy lady, i feel most comfortable in fuller skirts (but not too poofy), and this one lies perfectly (does not make my hips look wide!). the colors are soft and very feminine, which also suits my style. it may seem like a springtime skirt, but i will start wearing it with tights and a sweater right away.",5,1,9,General,Bottoms,Skirts +829,35,"Beautiful color, unflattering fit","Loved the color! loved the scallops! wish i loved it on me. the poplin fabric is very structured, which doesn't lend to a nice drape. the bottom hem was a little small for my curvy hips, so the top rode up a bit on me. looks lovely on a straighter figure, but wasn't amazing for me.",3,0,1,General Petite,Tops,Blouses +927,57,I love this sweater!,"I read the earlier reviews on this, and though i agree that the photo here does not show how wide and swingy the top is, i love it! it is so adorable and comfortable. i bought the petite s, and i am 5'2"", 118 lbs. it fit true to size in the shoulders. the petite hits just a few inches below my waist, so you might want to keep that in mind if you do not want it to be this short. the sweater part is soft, not itchy, and the poplin sleeves and ruffle are crisp but soft as well. because this is very",5,1,0,General,Tops,Sweaters +829,51,Really cute top,"Love this top! got it in white for a recent trip to paris - felt chic and cool during a bit of a spring heat wave in the city of lights. it runs somewhat small - i'm 5'7, 128 lbs, broad shoulders, and got the 6. my usual 4 fit but was a little snug. i would recommend going up in size in this style. the 6 looked better because it is supposed to be a boxy, swingy top.",5,1,1,General Petite,Tops,Blouses +1086,66,Not for me,"Loved the color. the fabric is soft and comfy. ordered in my normal size large but it clung in the stomach, hip area where i carry my weight. would have liked the slits to be higher. overall just not a good look for me so returned.",4,1,0,General,Dresses,Dresses +1086,60,Rich color and comfort,"The color of this dress is just so beautiful - somehow both rich and airy! i believe this is meant to be a more relaxed fit, but that isn't quite my style. so to achieve more of a silhouette, i was lucky enough to stumble upon an xxs-p (petite) in store. i normally would never even try something on in this size, but it looked pretty generous so i decided to give it a try. so glad that i did! it gave more figure and i liked the length a bit shorter. with this dress, i think you can achieve the lo",5,1,8,General,Dresses,Dresses +993,34,"Meh, not so great",Just didn't look as cute on me as the pics online. the color blocking was kind of odd actually. returning.,3,0,0,General,Bottoms,Skirts +541,35,Great romper,"So cute! rompers are hard because they are so cute but rarely work for all body types. this one is so super cute. the material is so soft and comfy, feels silky. i got a small and fits perfect. i'm 5'4"" and 117lbs so it runs very true to size when most clothes from retailer run big. i love rompers but only have one other one. this is by far my favorite! i can't wait until it's much warmer and i can wear it all the time.",5,1,2,General,Bottoms,Shorts +867,56,Perfect for summer!,"Love this top! it's pretty, unique and well made. i did size down to a small for reference and still have a slightly oversized look.",1,1,12,General Petite,Tops,Knits +1086,49,,"Absolutely adore this dress. soft and comfortable fabric, ankle length but could be knotted in the front to be shorten. i am usually a s but had to buy an xs. the neckline may be a bit too low, if you are flat-chested. if you happen to see this gem in stores... it is a must buy! it will sell out completely in two days. some customer went back to exchange the next day that it had arrived in-stores but it was sold out, so we had to order it. perfect for all seasons and layering.",5,1,7,General,Dresses,Dresses +1086,53,Summer travel perfection,"I created a summer capsule wardrobe for travel and this t-shirt dress fits in with my collection perfectly. it is well made, super soft and comfortable, launders well, and does not require ironing. it is substantial enough to provide coverage across the posterior and the cap sleeves and length are fabulous for visiting sacred places and dining out or as a beach cover-up. i love that you can simply throws this on and go or dress it up with a belt, add a scarf or kimono, or a jacket and voila.",5,1,0,General,Dresses,Dresses +927,44,,,1,0,0,General,Tops,Sweaters +927,42,Perfect beach piece!,Great coastal sweater. color in my opinion is a perfect rendition of coral. the sleeves hit just right for me to wear long or bunch them up. i can see this sweater paired with shorts or skinny jeans.,5,1,1,General,Tops,Sweaters +993,57,Runs tight across the hips.,"1. i'm 5'5"" tall, 145 lbs, and 38-32-40. i'm normally a size 10, but i sized up to a size 12 in this skirt and while it fit fine in the waist, it was just too snug across the hips. + +2. the fabric is heavy weight, and i agree that the zipper should be longer. + +3. the length is a bit long and dowdy for a pencil skirt. it's very straight. it does not taper like pencil skirts normally do. + +4. i would have kept this if it fit a curvier figure.",4,1,4,General,Bottoms,Skirts +829,30,Cute top!,"I debated getting this top, and i am glad that i did! i got the pink, and it is a fun, vibrant color. someone suggested that if you are in between sizes, go up. i agree with that feeling; however, it is pretty true to size. it is preppy, cute, and classic.",5,1,0,General Petite,Tops,Blouses +993,24,"Thrilled; i was scared of the pencil skirt, but it","As the title suggests, i am very skeptical and scared of pencil skirts. i'm slim (sz 0) and on the shorter side (5'4''), but i have ""dramatic hips"", so i've always had a testy relationship with any clothing that exaggerates them. i'm obsessed with uniquely designed skirts thought, so i had to try this and i am so pleased i did! + +the fit is great and not too tight, allows for a little room for ladies with hips. i only wish the zipper went down a little further so shimmying out of it were a little",5,1,6,General,Bottoms,Skirts +829,55,Home run!,"While the white version is a tad more twee, this one in black is edgier, more sophisticated. tts for my 33"" chested, broad shouldered self in a 4. all the unique details add up to an outstanding, versatile piece: how it blouses out in back; opaque enough to wear without a cami; the scallops?i may keep both colors!",5,1,5,General Petite,Tops,Blouses +1013,34,,Super cute but order at least one size up,3,1,0,General,Bottoms,Skirts +927,65,A cozy wardrobe staple,"This top is large like with free people i got an extra small and washed it right away and put it in the dryer and it is soft and perfect. so comfortable and will be a go to top with jeans, pj bottoms or leggings/ i love the pocket and my cell phone fits perfectly. i am now ordering the other color. for reference i am 5.5"" and 125 pounds.",5,1,6,General,Tops,Sweaters +1060,25,Sweet!,"I am 5'2"" and 125 pounds and wear a 4p. i ordered the size 4 with the willingness to hem them; my goal was to get this true high-wasted style, which is extremely flattering. when the pants arrived, i was first struck by their high quality fabric and the top notch tailoring. the fabric is substantial yet it drapes beautifully. the true high waist flatters, but the buttons and slant pocket details further whittle the waist. i am so happy with my purchase!",5,1,0,General,Bottoms,Pants +867,44,Absolutely adorable,Love this top. beautiful. received a lot of compliments.,5,1,3,General Petite,Tops,Knits +729,38,Great bikini top,I love the design of this top. the pattern is beautiful and the back unique. i am a mom of two so i really appreciate the extra front coverage. i can run around at the beach with my kids and not be worried about overexposure. i am a 34d on top and purchased the large and it fits well.,5,1,1,Initmates,Intimate,Swim +1020,32,Super cute,Super cute skirt. i decided to return it because i felt like i did't have enough tops to go with it.,3,1,0,General Petite,Bottoms,Skirts +1050,77,Soft amd comfortable--and very stylish,"I have shirts and dresses from this brand, and they are great. i was happy to finally see a pair of pants! these are just as soft and well made as the other items. i would recommend you try them on. there is only a slight variation from one size to the next, so it will depend on what look you are going for. they are cropped at the calf, but can be ""pulled up"" for a more dressier look. i cannot say enough about the material. it is so soft and comfortable. they do wonders for your behind- i think",5,1,2,General,Bottoms,Pants +829,51,,"I purchased this in white my normal size being a 2, a size 4 fit better on me. i love the crisp white top with jeans and sandals, so much that i just ordered the same top in the raspberry color. + +would definitely recommend.",5,1,1,General Petite,Tops,Blouses +1050,40,Cropped joggers,"Nice quality and feel to the fabric but they are super lightweight and do not come down to the ankle. they fall at a strange place on the calf - a better cropped summer pant, perhaps.",3,0,1,General,Bottoms,Pants +1086,47,Perfect summer dress,"I tried this on today and it was awesome! great color, great fit, thin summer material but not too thin that it was see through. the slits added a really nice design to this dress, very slimming. my problem is the deep v in the front. for small busted women this might be a deal killer. for me in the xs the v hung even below my boobs, no cami could fix that. unfortunately, cloth and stone tend to make their shirts and dresses with too deep a v, it's always disappointing for me because i love thei",4,1,4,General,Dresses,Dresses +1086,35,"Cute t-shirt dress, overpriced","I liked the idea of this t-shirt dress for a great basic wardrobe staple; however, i feel that it was overpriced for the quality. it's a nice piece but i would wait for it to go on sale.",3,0,1,General,Dresses,Dresses +993,31,,"This skirt is a show piece! the design is beautiful and the fit is flattering for different body types. i got my usual size, even though i have a smaller waist and larger hips and thighs. the skirt looks cute with the split-back buttondown by cloth and stone. you will not regret buying this piece!",5,1,2,General,Bottoms,Skirts +1086,44,Cute!,"Hesitated to try it on because it was ""t-shirt dress"" and my experience has been that fabric is unforgiving for dimples or imperfections i was wrong with this one. it's great! color is nice. fabric looks textured bc of the dye. the neck line is perfect (i like a lower v) and the length is great bc of the side slits. i tried it on with the front panel knotted at the bottom (how it was on the hanger) and i love it. had to get. can dress up or down, but i'd say this has mostly a casual feel.",5,1,0,General,Dresses,Dresses +829,38,"Beautiful color, odd fit","I wanted to love this top- the pink color is wonderful and vibrant. however, like many tops lately, it is short waisted and ended up looking a bit boxy. i am 5'8 and found it about 1-2 inches too short.",3,0,6,General Petite,Tops,Blouses +867,52,So unique and cute!,"I bought this well made cute top today and love it. it can be day time casual or dressy for dinner. you will want to probably wear a cami underneath since its see through. its perfect for summer! im a 36d, 5'7"" 135 pounds, and usually wear a medium, but the small fit perfectly with room to spare. cuter in person.",5,1,18,General Petite,Tops,Knits +867,34,Huge,I ordered an xxs online and it's still massive. the only thing i can use it for is a beach coverup. the embroidery is pretty but i will be returning.,2,0,0,General Petite,Tops,Knits +729,31,Cute and comfy,Great swim top. good coverage and very comfortable. be advised this is not reversible like title suggests.,5,1,3,Initmates,Intimate,Swim +123,62,These pants make me want to smile,"Saw these in the store and had to have them. i wear them rolled up. they are lightweight. whenever i wear them i want to smile. the birds with hats are so funny. i wear them to run errands, have worn them when flying, etc. can't say enough good things about these pants. they wash well, no ironing needed.",5,1,1,Initmates,Intimate,Sleep +868,45,Frumpy if you are petite,"I loved the criss cross part of this tank. however, it looked so frumpy on. the cut was just odd and if you are petite it felt like a tent. i was so bummed because that criss cross was awesome but it just looked so weird on. i returned it. the material felt nice too.",1,0,1,General,Tops,Knits +927,38,Soft but a bit maternity,"The blue is a beautiful color, rather unique and it is really soft being cashmere. although, for the price i do feel it should of been a bit more ""special"". i also feel it's loose lower half feels a bit maternity. all that being said i do like the overall sweater and am keeping it as the color and feel win.",4,1,8,General,Tops,Sweaters +836,59,Love,Beautiful top and beautiful bright color. this does run 2 sizes small in arms and chest unless you are very narrow in stature and flat chested . i am usually a size 6 and a 36c and broad shoulders and size 10 just its in underarm area. i have short torso so love the length but those with very long torso may find this blouse too short. if you get the right size this topics really adorable. my husband also gave it a big thumbs up.,5,1,1,General,Tops,Blouses +836,65,,,5,1,0,General,Tops,Blouses +123,51,Chirpy sleepy,These are darling. love flannel and pattern which is very upbeat. wish they were a little more pegged/slim/tapered at the bottoms.,4,1,2,Initmates,Intimate,Sleep +935,47,Beautiful camel color,"Love this top! tried it on in store...so glad i did since it runs large and i had to size down to a medium. the color is a beautiful camel and the material is soft...very grateful the fabric content did not contain dreaded wool, lol! therefore leaving it soft and comfortable to wear...the price tag was a bit much considering it is only a sweater vest but with retailer price equals quality so i don't mind spending the extra $!",5,1,1,General,Tops,Sweaters +123,33,Lounge like royalty!,"I ordered these in a xxs, a little nervous about them being too small, and i was very pleased with the fit. for reference, i'm 5'2, 98lbs. these are great for all seasons, the lining is warm, yet adds a pop of color when cuffed. the crowns on the birds are pretty nifty!",5,1,0,Initmates,Intimate,Sleep +836,36,"If you have any ""bust"" not for you!","Loved this shirt when i saw the picture. unfortunately fit was not what it needed to be to keep it. you can't really see in the photo but if you have any chest at all (i am only 34b...so would say of average size bust) this shirt will not fit well. there is a seam in the bust area that cuts across the bust which is not flattering/doesn't fit well . the sleeves were also a bit more tight than i'd have thought from the photo. + +really wanted to love this - but unless you have a smaller chest it lik",2,0,2,General,Tops,Blouses +868,43,,"I love this top! the neckline is so unusual and so flattering. i am normally either a small or xs, but this fit great in the xs. i was also able to wear a regular bra which is always nice since i am large chested. great top...highly recommend.",5,1,2,General,Tops,Knits +828,73,Cute top but very uncomfortable,"The styling of this top is so cute but the fabric is thin, kind of scratchy & has +almost no give to it. it is very uncomfortable on & is very restricting as far as +movement is concerned. cannot recommend - back it goes!",1,0,0,General,Tops,Blouses +868,25,,"Bought this tank on a whim, but i'm so happy i did! so flattering, comfy and well made.",5,1,1,General,Tops,Knits +868,39,Not peachy,"I fell in love with the shirt when i saw it online; but, i was incredibly disappointed with it when it was delivered. on the positive side, the macrame is stunning. once again, there was way too much fabric which makes me look pregnant. most importantly, the color is not peach! it's almost a burnt indian red or brick red/orange. it was a disgusting color.",3,0,1,General,Tops,Knits +123,39,Can go either petite or not,"I tried on te regualr size (xs) as that is all they have in my store, and decided to get them anyway, even if a little long on me. why? because htey are so cute rolled up with the yellow color showing! + +super comfortable, have not washed htem yet, but hipefully they remain a decent wuality.",5,1,0,Initmates,Intimate,Sleep +904,39,Simply love,"This sweater is substantial, well-made, fabric is thick and comfortable. the length is on the shorter side, not cropped but shorter, perhaps if they had petite, ti would be cropped. the sleeves are perfect length too on me, it looks shorter on the model, they hit at mys wrists (i do usually need petite length). it seems a simple top, but it is quite beautiful in person. i strongly recommend it, even for the price... + +xs and i am 115 lbs, 30dd chest, 26.5 in waist",5,1,2,General Petite,Tops,Fine gauge +836,58,Great top. runs small!,Great top but it runs smaller than other tops in this brand. the chest and arm area is small. otherwise this top is great. just plan to size up one or two sizes. length was nice. hit right at the waist.,4,1,13,General,Tops,Blouses +1077,49,Love this dress!,The material feels nice and i love the flared arms.,4,1,0,General,Dresses,Dresses +868,46,Too big,"I love the teal color of this t-shirt and the macrame design at the top is beautiful, however, the top is way too large. i usually wear a size xs or s in retailer tops, so i ordered the size s, there is so much fabric below the chest it fits like a maternity top. i know if i order an xs, i will have the same problem. below the bust, the top is not flattering and it&#39;s a shame.",1,0,0,General,Tops,Knits +935,46,"Soft, comfy, perfect fit for xl",I've had great luck with items from sunday in brooklyn & this vest is another fantastic purchase. the color/fit match the photos. the material is so soft. i've worn it quite a bit since i received it and it hasn't pilled. it's washed well too. the braided part can be folded down if you don't want it higher on your neck. it will still lay flat & drape nicely. it's perfect for cold weather. i'd love to see this come out in other colors too.,5,1,0,General,Tops,Sweaters +836,33,Pretty but weird fit,"I initially liked the feel and quality of the top but once it was on it was much shorter and looser than the picture of the model. it flowed out from my chest with one central pleat in the front and my husband said it made me look pregnant. then came the tedious task of taking it off with such a snug fit in the shoulders. i'm regularly a size 2/xs, 32d and 120 lbs and both size 2 and 4 did not work for me.",2,0,0,General,Tops,Blouses +935,66,Love this vest,"This vest is so functional. i think it is much prettier in person than in this photo. it has a much softer look to it and is less orange, more tan. i've worn it with a lot of different things: over a sweater dress at work, with soft pants and a long-sleeve t-shirt, or skinny jeans/pants and a simple top. wish it came in other colors (gray, navy or green would all be amazing)...one of my favorite pieces this season for sure. i do think it runs a little bit large, but i think the next size smaller",5,1,0,General,Tops,Sweaters +1032,52,,I love these overalls but they run very small?i had to return and reorder.,3,1,2,General,Bottoms,Jeans +1077,58,Disappointed,I looked at this dress for a long time before i purchased it because of the money. i wear a size 2p. was entirely disappointed in the style and construction of this dress. for one thing the lining is bulky and you could never wear it in warmer weather without burning up. the dress as pictured looks very feminine and light weight silk but there is just too much material going on--- thick and heavy. the overall fit was too big and very unflattering.,2,0,4,General,Dresses,Dresses +123,44,Love these chirpy loungers!,"When i saw these lounge pants, i felt as though they were designed specifically for me. i love the cute bird design. i love the green/blue color of the fabric. the material is soft and inviting. give them a try. you won't regret it!",5,1,1,Initmates,Intimate,Sleep +836,38,Really pretty but sizing off my for me,Received this in the mail today and was disappointed. i typically wear a 6/8 but bought this in the 8 as i had purchased another similar top from the same company in an 8. this does not fit the same at all. the top pulled in my shoulder and chest area while had ample room in the body. needless to say i will be returning this item,2,0,27,General,Tops,Blouses +836,40,Disappointed,"Sleeves were tight, was difficult to put on ?. for the price, you want to love the shirt. sending it back.",2,0,15,General,Tops,Blouses +331,45,"Versatile top, super comfortable","This is such a great top that when my cat snagged it i bought a second version to wear in public and kept the snagged version to wear around the house or for working out. it is super comfortable and can be worn with so many things. definitely on the more casual side but you can dress it up slightly w/ jeans and booties, or it can be worn w/ leggings, jeans and tennis shoes, etc. i also bought the coral color in addition to the blue. if you're on the fence i would say you can't go wrong with buyi",5,1,1,Initmates,Intimate,Lounge +868,25,Lovely but...,Really like this tee but i do wish it was made of another material. i like the design. simple with a nice macrame detail. the material is a very plain with much to be desired. ultimately kept the shirt but would have loved it more if it was made with something that felt better quality.,5,1,0,General,Tops,Knits +927,48,"Thick, soft cashmere but style is not for me","I just got this in the green and i'd say the color is deeper/darker than shown. more of a turquoise-green, or muted teal color. it's the densest, thickest cashmere (it's 100% cashmere) i've felt in a while and it's so soft. but, it just doesn't look good on me. i'm 5'3"" and about 105 lbs, and usually wear xspetite. i got this in the xs regular hoping it would be long enough for leggings. and i don't think it is in the back. plus it's just too bell shaped and i'm slightly pear-shaped already. it",4,1,3,General,Tops,Sweaters +868,48,Unflattering cut,"I tried this top in xs in store. i loved the macrame detail and quality of fabric. it billowed out too much below the chest and looked tent like. my daughter laughed when she saw me in it- so did i! i didn't buy it. i'm 5'2"", 115#.",3,0,0,General,Tops,Knits +868,31,"Great design, poor execution","I love the material of this shirt and i love the design; however, there is just too much fabric. it felt very boxy and gave me no shape at all. for someone who is petite this just wasn't flattering. i love the design idea though!",3,0,1,General,Tops,Knits +868,42,Adorable but runs big,"Lovey top in the photos. however, its fairly large and the chest area can make you look even larger. i'm 5'3, 118lbs, 36c. generally wear xs or 2s in retailer tops. ordered the xs but it was just too large and unflattering. the lace work is so pretty. it has potential but the design doesn't work well for some.",2,0,1,General,Tops,Knits +828,57,So so pretty,"Sunday in brooklyn has been killing it lately with their tops! i could not decide between this and another of theirs, but i am glad i chose this one. first, the design is great. very cunning style: the sleeve length matches the length of the top tier, which gives this top a very finished look. the color is a beautiful jewel-like raspberry red with a bluish undertone. and, the fabric is a nice washable poly. i wore my usual size xs at retailer.",5,1,0,General,Tops,Blouses +868,32,Super cute,"This is a very cute top. i am 5'4'', 170lbs, 34dd, and a large fit great. it fit perfectly in the chest, but the top is meant to be baggy at the bottom and long (it covers my bum). looks very cute with skinny jeans. love it!",5,1,2,General,Tops,Knits +868,33,Loreley tank,"This is a great, effortless top. you can dress it up or down and fits true to size. it's forgiving and the straps draw your eye to the most flattering part of the body. the fabric is stretchy and and comfortable.",4,1,0,General,Tops,Knits +829,46,Boxy,"Very cute top and nice material, but the fit is strange. there's a reason that the model has her arms at her side. the shoulders fit perfectly in my usual small, but the body is very loose. the sleeves are full, probably twice as full as seen in the pictures,which adds interest but was unexpected. also, the arm hole is wide, so the bottom seam of the sleeve attaches low on the body of the shirt, which creates an awkward silhouette. i normally love designs by whit, but i'm not sure about this one",3,1,1,General,Tops,Blouses +123,43,Vibrant colors!,Fit great with moving room. colors very vibrant. just right for a house with lots of cool air conditioning!,5,1,0,Initmates,Intimate,Sleep +836,58,,"Beautifully made shirt however the sizing is way off. the sleeves and across the chest are really tight while the rest of the shirt fits fine. if you get a size larger then the shirt in the body is to large. would recommend if you have really tiny shoulders, arms and chest. such a shame since i really love the shirt.",2,1,2,General,Tops,Blouses +836,29,Beautiful top,"This is a beautiful top but the fit is odd. it's roomy and flowy in the bust and waist but the arms are disproportionately tight. i wear a size 8 in all hd in paris tops but this one didn't fit anything like the others. i wouldn't even know what size to recommend because it's almost too big in the body, while being too tight in the arms. the lace and mock neck is beautiful though so i'm hoping to find someway to wear it comfortably. otherwise, it will be going back.",3,1,0,General,Tops,Blouses +123,41,The cutest!,"I have several lilka pj bottoms and i'm glad to add these ones with the adorable bird print to my collection! tts, soft flannel, striking colors, only wish they had pockets!",5,1,1,Initmates,Intimate,Sleep +836,36,,"This top is tight across the bust (i am a 32dd cup) and more trapeze-shaped than the picture shows. if you are smaller busted, it may not flare out as much. +also- the sz 10 is what was tight - and i usually wear a sz. 4 or 6, or small-size top/blouse. +in the end, this wasn't very flattering as it looked more like a maternity top.",2,0,2,General,Tops,Blouses +836,36,So sad!,"I was obsessed with this top. i ordered my normal 4 and was bummed about the fit in the shoulders. the slight puff was too far in, it didn't hit on my shoulder. so i returned it to a store and ordered a 6. it came quickly but it was still too narrow in the shoulders. i took it to the store and held it against the 4 and the seam was the same length between the neck and shoulder as the 4. both returned. i had no hope for an 8.",2,0,2,General,Tops,Blouses +836,60,Not impressed,"This is the first hd in paris top i haven't loved. high hopes for this top since i love the brand and the color. this was an online only item so i guessed at the size, typically order a 4 petite. ordered the 4 regular since the length was already quite short in the regular length. it was oddly constructed, small in the arms but boxy and oddly bell shaped bottom. the lining was tough to keep straightened while trying to put it +on. too bad, but it went back",2,0,4,General,Tops,Blouses +1111,50,Stunning dress!,"This dress is as stunning in person as it is in these pictures! i'm petite, and so it's longer on me than it is on the model. i got a 4p and the waist was perfect! i thought it might look matronly as it was longer, but it looks classic. i feel like i could dress it down just a bit with flats and a cardi, or wear it to an event with heals and a wrap. it's so comfortable and forgiving in the waist and belly area, which is icing on the cake! i had absolutely no reason to buy it, but once i tried it",5,1,0,General,Dresses,Dresses +123,27,Birds in party hats,This pjs are adorable!! they run tts and are extremely comfortable!,5,1,0,Initmates,Intimate,Sleep +1074,45,So comfy...so sad it didnt fit,The fabric is great. the design is fun. i thought the dress would be perfect for work and also wear for a fun night out. the fit was perfect up top but the bottom part was to full and a lot longer then i expected. so i had to return it.,2,1,0,General,Dresses,Dresses +1095,31,,"This reminded me of big bird in person and just adds volume to your body. i'm thin and usually wear a size 0, so i'm not sure who this may look good on.",1,0,3,General,Dresses,Dresses +671,48,Soft and casual,"Pretty pyjama pants that can be worn running errands, dropping off kids.",5,1,0,Initmates,Intimate,Sleep +1111,43,Absolutely gorgeous dress!,"This dress is a winner! the material is not stiff like many neoprene dresses - it is soft and silky and has amazing drape. the dress is very flattering! the material is very stretchy even through the waist, so it is and easy ""perfect fit"" on different body types. i loved the shorter versions of the dress, but they weren't workable for me, but this length is perfect. and there are pockets that are sewn in with perfect detailing - they don't stick out or disturb the line of the dress.",5,1,11,General,Dresses,Dresses +836,39,Stunning!,I have no idea why this has bad reviews! how is there any left?! this is a beautiful piece that i had to have in both the navy and green. i love that it comes with a cami. it's very flattering and not too wide or boxy. the lace detail is amazing! i bought my usual size and it fits perfect. love this top!!,5,1,0,General,Tops,Blouses +836,69,Not as pictured -- better!,"This top in the remaining blue - green is not the top pictured. it's like the photos posted in a recent review by inwonderland. the color is deep and beautiful. the neck is high, the lace is floral, there's a seam under the bust with a center pleat falling from it. there's no reason for hesitancy at the sale price.",5,1,0,General,Tops,Blouses +836,69,Blue green,"This top is beautiful. at the present price, grab it. the fit was tts for me, a bit loose if anything. the blue green color, which is not pictured, is shown in my uploaded photos.",5,1,0,General,Tops,Blouses +1074,39,,,5,1,0,General,Dresses,Dresses +331,59,Boxy and unflattering,"Though the quality is good and the fabric is both sturdy and soft, the cut of this top made this a no-go for me. it's a bit short in front and also boxy, which is emphasized by the dolman sleeves. i ordered the coral color and it was much brighter - almost neon-y - as opposed to the soft salmon color my screen shows. i regretfully returned it.",3,0,0,Initmates,Intimate,Lounge +1074,37,Super cute,"This dress fits really cute. i actually think it's cuter in person than on the site. really flattering. the skirt hits a few inches longer on me than it does on the model, so it's appropriate for work and networking functions. i'm 5'3, 110lbs. i got the 0 and it's great!",5,1,0,General,Dresses,Dresses +123,43,Birdy love,"Vibrant colors and birds. what's not to love? these lounge pants are so cute, soft, and comfortable. they do run a little large.",4,1,1,Initmates,Intimate,Sleep +904,40,Adorable sweater!,"When i was finally able to find my size available online, i didn't hesitate. i am 5'4"", 123lbs, 34d and size 27 jeans. i originally ordered a small...wow! was i surprised it was too small, and cropped. i returned and ordered a medium, received today...and i have to say, i was super happy. it fit perfect, in fact it fit much like how the model's fit in the photographs.",5,1,0,General Petite,Tops,Fine gauge +331,52,Cute and well made,This is very practical. it goes with many things and is very comfortable....it can be worn with different leggings or with jeans! and it is well made! thanks retailer!,5,1,1,Initmates,Intimate,Lounge +937,53,,"Yes, it runs very large. i usually wear a m and ordered the xs/s. i like the oversize fit and i think this poncho is unique, chic and modern. definitely worth the price, especially on sale. very nice quality fabric.",5,1,1,General,Tops,Sweaters +828,34,Adorable!,Just bought this top in an xs and i can&#39;t wait to wear it. i&#39;m 5&#39;3 and 115 pounds. i usually stick with the petitie tops but the regular one fit me perfectly. you might need to wear a cami as it is a little see through. a great addition to my wardrobe.,5,1,0,General,Tops,Blouses +927,39,Perfect for fall!,"This is the kind of weather i want to wrap myself up with a cozy and soft blanket. but i can't really walking around with a giant bulky blanket. this cardigan is as good as i can get. it's so soft, comfy and well made. nowadays most of the knitwear are made of dominantly polyester. this one is mostly natural material with has a much better feel than the man made kind. +i like how this garment is not too bulky and not too tight. warm enough for the breeze but not too thick. love it!",5,1,2,General,Tops,Sweaters +927,35,Elegant comfort,"I saw this online and couldn't wait to get my hands on it. my only problem was choosing a color. i got the black one. it is a bit hairy, but soft and smooth as well. it feels very high quality. it has two nicely placed buttons if you'd like it kept in place, but it's just as nice loosely draped. it will work well dressed up or down. it runs large, but clearly intended to.",5,1,0,General,Tops,Sweaters +1081,36,Unique dress with pockets,"This dress has a beautiful shape. it was a onesie in a store (only one they had) and i'm glad i tried it on. usually i'm a 6 or 4. this is an 8, and it's a perfect fit. definitely size up at least one dress size. the knit shoulders are beautiful and the belt is slimming. i love the writing on it. it's a classic dress and it makes me feel beautiful and unique.",5,1,3,General Petite,Dresses,Dresses +1110,51,"Beautiful fabric, irregular fit","The fabric and color are absolutely beautiful. the shape of the dress is strange - fitted and tight through the waist, and enormous everywhere else. it was not flattering.",2,0,0,General,Dresses,Dresses +825,39,Nice enough,"I had been looking for an off the shoulder top (or open shoulder) as the trend is really in right now, but that proves more difficult for me (muscular traps and shoulders, not always flattering)... anyway, i decided to order this ( i saw it paired with a wide-leg jeans, tucked in)... that is how i like it... tucked in. it is otherwise a little boxy on me (wide shoulders means the whole thing shifts out. the fabric si a tiny bit wrinkle-prone, but not too badly. both colors are nice, but thought",4,1,1,General Petite,Tops,Blouses +927,57,Great up-to-date style!,This is a great up-to-date twist on a must-have staple - a black (or grey) cardigan. easy flowing and flattering style and warm enough for fall weather.,5,1,1,General,Tops,Sweaters +1081,54,Beautiful dress small in the bust!,"I absolutely loved this dress, the style is flattering and the mix of fabrics and lace make it truly feminine and unique. the only problem is the bust runs really small. i normally wear a 4-6 in retailer but i ordered a 6 and and 8 and both were way to tight in the bust. very disappointed because i really wanted to keep this dress.",3,1,1,General Petite,Dresses,Dresses +927,52,Can't bring myself to pay full price for this....,I tried this on in the store and almost considered buying it until i looked at the price tag. i think it's unique and interesting. i just don't think it's worth the $$$. the fabric is nothing special and the construction is not complicated enough to warrant the cost. i would consider it on sale. retailer has more interesting sweaters made with softer blends for a similar price - all things considered i don't think it's a smart purchase.,4,1,0,General,Tops,Sweaters +454,30,Great short,"I am very glad i purchased these shorts on sale. bought the coral color in a large. 5'7"" 140lbs with a generous underside and long legs, i usually wear a m or a l in yoga pants. the l here fits really nicely--not too tight and enough length in the inseam so that i don't feel silly practicing outdoors in the park. the rise is also perfect.",5,1,0,Initmates,Intimate,Lounge +912,29,Not made right,"This has such awful proportions. i'm 5'0 and 100 lbs, ordered xxs petite (in the neutral color). the seam at the bust literally hits in the middle of my bust!! it looks very unflattering, and it's very pronounced. i'm only 5'0 and already the seam hits at such a high point on me. below the seam the sweater is all scrunched up where it's sewed, and it balloons outward and is very square from there down. very shapeless sweater and not flattering at all unless you have your arms by your sides to hi",2,0,26,General,Tops,Fine gauge +927,33,Fuzzy,Wonderful sweater and fashionable for autumn. the only thing i do not like about the sweater is that it sheds very bad. bring a lint roller with you when you wear the sweater!,4,1,1,General,Tops,Sweaters +1110,52,Great dress but not for texas,"I purchased this dress to wear to a beach wedding. i loved the color, the fit and the style. i even got a lot of compliments on it. the problem was that the wedding was on the beach, in florida 85 degree weather and when you are sweating the fabric changes colors and takes a really really long time to return to normal! unfortunately i had to return it. would be great to wear indoors, just watch getting water or anything else on it!",3,0,2,General,Dresses,Dresses +927,54,Like wearing a comfy blanket,"I like wearing leggings with this sweater with its blanket like proportions. so soft and comfy! have only experienced minor shedding, nothing problematic.",4,1,0,General,Tops,Sweaters +1120,66,Amazing little jacket,"Oh just wow. this jacket is simply wonderful. ordered my regular size large and it's a bit oversized due to the swing cut and absolutely adorable on. love everything about it except the length which is very cropped. it's lightweight yet warm and very cuddly. the snap closure is wonderful. then there's the leather trim which just takes it up a notch. plenty of room for a sweater and it's lined. although it's so cropped, i think the length will be attractive worn over anything that's longer.",4,1,0,General,Jackets,Outerwear +825,37,So close,"I got this top planning to wear it with the sleeves up rather than off the shoulder, like in one of the photos. my regular size (medium) was way too large so i went down to a small. however, the collar was still too wide for the sleeves to stay above my bra straps. back it goes. if you're looking for a strictly off-the-shoulder top, you might like it. color is deep blue and the cotton is a nice weight.",3,0,0,General Petite,Tops,Blouses +912,34,Sizing is incredibly off,"I tried on this sweater...love the flowing top, and it looked like the seam would hit right under my bustline. +wrong. +the seam came right across my bust on a medium; sized up to a large, same thing. this shouldn't happen! not sure who this would actually flatter. +the sweater is high quality, and the colors are perfect. the fit needs work.",2,0,0,General,Tops,Fine gauge +927,33,Sheds something fierce,"I have a little white dog who i'm convinced sheds hair just as fast as he can grow them. i'm constantly finding white hairs on all of my clothes and have to actively work to keep my pup from lovingly brushing his sweet little head against my favorite black leggings. this sweater is exactly like my puppy. shedding for days and long after the seasons have changed it's gorgeous and the fit is lovely, but unless you're prepared to carry a lint roller with you, i would pass this by. it's very soft an",4,0,14,General,Tops,Sweaters +927,60,,,5,1,0,General,Tops,Sweaters +1081,48,Nice but runs really small!,"I was very excited to receive this dress (online only so had to have shipped.) the colors are classic primary as shown. the outer fabric is heavy and canvas-like, but the lining is white nylon-ish. the length was good. the dress is nicely lined but sadly runs very small in the bust. i am a size 8 and a 34b and this dress was too small for me. i rarely have this issue. sadly, it's going back. i should have waited to read reviews and sized up. fyi the belt has a look that appears worn similar to p",4,1,9,General Petite,Dresses,Dresses +1081,21,,Such a beautiful dress with my favorite print! it does run a size small if you ask me. the size 10 i got fits more like an 8. the corduroy belt really sets the waist off.,5,1,0,General Petite,Dresses,Dresses +825,48,Cute trendy top,"I love this top because it can be worn on or off the shoulders and looks equally as cute either way, i bought the red color and it is super cheerful and perfect for summer. looks great with faded jeans. i love the poplin fabric, although the stitching quality is shabby and i expect this won't hold up long enough to wear again next summer. for the price i feel like it should be crafted a little bit better. i am narrow shoulder'd and bra size 36 b or c and while a medium might have fit me better o",3,1,0,General Petite,Tops,Blouses +1021,38,,"Love the look, beautiful color, great length. but with many of retailer's lace skirts, dresses and shirts the zipper did not eat to cooperate.",4,1,1,General,Bottoms,Skirts +1110,44,,"The pictures do not do this dress justice. this dress is gorgeous, the color is beautiful, and it is so flattering on. even better, this dress is machine washable! simply hang it up to dry and it looks like it is fresh from the cleaners. i love this dress so much i don't even mind that i purchased it at full price, and now it is on sale. buy this dress for a special occasion -- it is so special.",5,1,5,General,Dresses,Dresses +1110,41,Beautiful dress!,"This dress is beautifully made, and has a lovely sheen to it. it's elegant and can be worn on different occasions. it's a very feminine dress. i ordered the dress in a few sizes and a size 2 fit me the best as i have a small bust line.",4,1,2,General,Dresses,Dresses +1072,68,Voluminous eye catching dress,"Mes demosilles style incorporates lots of material. this cotton layered, voluminous dress is an eye catcher but not for all figures. i like this bohemian style because it is different and can be worn with a belt to show off more of your figure or loose fitting. +i ordered a 36 size which fitted perfectly around the bust but i have broad shoulders and there is no zipper. i had to purchase the 38 size so i could remove the dress over my shoulders without too much trouble.",4,1,3,General Petite,Dresses,Dresses +912,46,Riley tunic,"So soft and pretty, but the fit is off on me. i'm an xs/0 and the seam on this hits right across my bust. with the 3/4 length sleeves it makes the whole thing look like it shrunk in the wash. on my pre-teen daughter however it looks perfect, so i guess i'd say size up if you have boobs!",4,1,6,General,Tops,Fine gauge +927,55,Even better than photo,Love this sweater. comfy and trendy. can't wait to wear with my new retailer knit leggings!,5,1,0,General,Tops,Sweaters +912,47,Wanted to love but couldn't.,Runs small. arms very short and hits in the wrong place across your chest. would not recommend.,2,0,0,General,Tops,Fine gauge +1081,39,My new favorite dress,"Whimsical and elegant. fits a bit snug in rib cage, but that works well for me. i'm a 32c.",5,1,3,General Petite,Dresses,Dresses +1081,43,Amazing design and unique style!,"This dress is absolutely gorgeous! the top portion fit a little smaller than the typical size i order. the zip side was a little snug, but the fit is very flattering! the lace detail and belted design are very pretty. the skirt portion has more volume than i tend to like, but it is it beautiful!",5,1,8,General Petite,Dresses,Dresses +927,64,Very nice,"I saw this online & wondered abt the sleeve length on me. i was thinking about ordering the petite size since i'm only 5'3"". sometimes cardigans have longer sleeves than i want. it was at the local store so i tried on the regular xs in the grey. the fit & sleeve length was fine. what i didn't care for was a slight itchiness (wool fiber) & some mild shedding (alpaca fiber). i decided against it but it is nice looking. 5""3"", 117#",4,1,22,General,Tops,Sweaters +1072,27,,"Hahaha..this dress is hilarious! it looks nothing like the image! i am usually a 0/xs, and 4 was the smallest size available, so i ordered it. when i opened it, it felt like 10 lbs of fabric. i thought maybe i ordered a size way too big, until i could barely squeeze into the top of the dress. once i looked in the mirror, i almost fell over laughing. the rest of the dress is huge. i don't believe this dress would be flattering on anyone.",1,0,7,General,Dresses,Dresses +830,51,Full but pretty,"I ordered this in an xl and when i pulled it out of the bag, it seemed huge. (i wear both l and xl, depending on the sizing) when i tried it, it did look like the photo - it's meant to be a little voluminous. the arms were a little snug, so sizing down was out of the question. it looks great tucked in to a pair of flair jeans. i gave the asthetic four stars because of the design, which is just a teeny bit off. the lace is delicate too, btw, so care will be needed not to snag it.",5,1,6,General,Tops,Blouses +840,31,Great item!,"This tunic is flattering and high quality, just be sure you size down!",5,1,0,General,Tops,Blouses +826,36,Fun top,"This top is cute. i got the mint coloured one and like it. with that said, the sewing however is a bit off. the bottom of the top is angled. there is no mention of that in the description so it is safe to say it is not part of the design. it is not tremendously noticeable, but i noticed it. i will still keep this top, coz i can camouflage that defect with a cardigan. it is sheer, so if you are wearing it for work without cover, a camisole would be required or a nude bra. i am 5'0"", 109lbs, and",4,1,7,General,Tops,Blouses +864,41,Great color,Great top. high quality. could use some stretch. recommend it!,4,1,0,General,Tops,Knits +864,69,Too short,This is a great top except i wish it was a bit longer or i wish it came with a short tank. it hits right at my pants which wouldn't be terrible (although not ideal) except my tank that i need to wear under it is long and so i either need to tuck it in or it will hang past the shirt. neither is what i was hoping for. still like it so debating whether to take it back. i think at full price i will return and consider it again it it makes it to sale.,4,1,0,General,Tops,Knits +864,25,Itchy,This top is lovely but also a little bit itchy. the detail around the neck is beautiful but it's very annoying. i can't decide if i will keep it or not.,4,1,1,General,Tops,Knits +1077,39,Not for everyone,"This is too much fabric for me (115 lbs, 30dd, 26.5 in waist, short) even in the smallest size, but i saw another costumer try it on and it was sooo lovely. the fabric has a shimmery thread, very pretty. the cut was super flattering on her curvier body, it was gorgeous. she tried it on with boots, and also put on a long vest over it every way was beautiful, jsut not on me, sadly. so i say give it a try, may work for you.",4,1,0,General,Dresses,Dresses +1080,38,Summer go-to dress!,"This dress is as comfortable as it is adorable. i am 6'2"" and usually wear 12/14 but the 10 fit me. love, love, love this dress!!",5,1,3,General Petite,Dresses,Dresses +840,27,"Nice top, but large","I wanted to love this top, but similar to many of retailer's styles (especially this season), this top is very large and tent-like. normally i like a larger top, but i was not expecting the length of this top. it might be cute belted if that is your style, but still much more like of a tunic than a top - could also make a nice maternity top. i am 5'7"" and ordered a medium and this top hit me much lower than pictured on the model. the fabric and pattern, as well as the neckline are very nice",4,1,5,General,Tops,Blouses +1065,47,Great concept that just misses the mark,"I received this jumpsuit today in size medium. i am normally a size 4-6. overall, the jumpsuit fit. i am 5' 8.5"" tall and the length was fine if i wore flats. the issue with this jumpsuit is the bottom half. the top jersey wrap part fit great--nice and stretchy, fit nicely on the curves. the problem is that the wrap part stops at your rib cage and the pants begin somewhere way up high, definitely on the rib cage. the gathering of the pants gave me a pooch where i don't have one, but the deal kil",4,0,1,General,Bottoms,Pants +1077,40,Love this dress!,"Super cute on. i love the print and the tie detail and the fact that the tie actually tightened which makes the waste adjustable. the slip is a tad tight, but it doesn't bother me, its stretchy so it's not uncomfortable. i bought size xs-i usually wear a 2 in dresses. i usually buy petite because of the length but this fell about 2"" above the knee on me which is perfect for work so i didn't need the petite. i am 5'3"", 125 lbs. i loved the soft fabric-fine for year round in southern cal.",5,1,0,General,Dresses,Dresses +1080,38,Perfect for short girls,This dress is lovely and easy to wear if you are short and you buy regular size (not petite). i am 5'1 and i bought the regular medium so the length of the front falls just above my knees. i can wear it to work without leggings. the other thing i love is it has pockets! and it fits generously - i weigh 140 lbs and will usually fit in a medium (if i don't breathe) and a large (if i use a belt). but in this size (medium regular - i can breathe! and i need a belt. ergo - i don't feel like i need to,5,1,0,General Petite,Dresses,Dresses +1077,38,Odd design,"The design is very strange. the inner slip is quite form-fitting, but the dress on top was just massive, like a sack. on the sides were tassels that i could not figure out what to do with. they looked weird just hanging off the side, so i tried to knot them like a belt. overall, this dress was not attractive on. it looks much better on the model. the coloring on the snakeskin print dress is also different in real life, harsher red, blue, and white print not the dusty rose and plum pictured.",2,0,0,General,Dresses,Dresses +1065,44,Effortless style,"Lovely jumpsuit. can be dressed up or down. i agree with the other reviewers that in my normal medium, the torso length is a bit short, making the garment pull. i sized up to a large, and with room in the hips and the correct torso length, the jumpsuit works. the bust is cut for a smaller gal. for reference, i am 5'7"", 36a, 155lb.",5,1,0,General,Bottoms,Pants +864,35,Beautiful!,"Beautiful lace shell! great with jeans for a night out, or with a skirt for a more formal affair. good quality, not itchy.",5,1,0,General,Tops,Knits +840,36,Nice top,No complaints about this top. i like that it's very soft and the length is good as a tunic. would recommend.,4,1,0,General,Tops,Blouses +1065,46,All legs jumper!,"This is really a lovely jumper and looks quite nice and dressy on. my problem is a short torso, but then again this may be made for short torso loving people! i felt like i was all legs in it. i never asked anyone else's opinion, though, so not sure if its just me and my complex. +if you don't have a short torso,then you might experience the pulling the others were speaking about because the waist might hit you higher than your usual waist. + +overall, i am not sure who this was designed for.. but",3,0,0,General,Bottoms,Pants +840,60,Sweet tunic,"Definitely size down it does run large however, it is a sweet floral print made of rayon so i would dry clean as rayon shrinks. i love tunic lengths and this one is a bit longer than most tunics but for me still works. there are 2 small pleats on the front and the ruffles on the neckline are a nice touch. it is made well. i have a long black sweater that will make this work right into the fall and winter.",5,1,1,General,Tops,Blouses +830,60,"Great details, on trend","I fell in love with this top online. i am obsessed with the little flounce detail on the sleeve and the slight a-line shape of the body. i was able to try it on in store and was glad i did because i ended up sizing up to a small from my usually x-small. i still put ""true to size"" because i think the forgiving cut allows the top to work in multiple sizes. i even tried on a medium and it still looked like it fit. the arms are a bit tight, as the other reviewer mentioned so keep in mind when choosi",4,1,1,General,Tops,Blouses +840,34,Love!!!,"Really cute top! love the ruffle detailing and the pattern. quality could be slightly better since i slightly expected the material to be softer. either way, i'm happy with the top. got my usual xs and it fit perfectly. it's meant to be a looser top so i don't mind that it runs a little bigger.",5,1,1,General,Tops,Blouses +840,25,,"I absolutely loved the look of this top and had to try it on, so i ordered it in xs and s because i own a few other tylho shirts and know they can run large. when they arrived, i could tell with just one look how huge this top runs. i didn't even bother opening the s. for reference, i'm 5'4"" and 135lb, 32c, and the xs is slightly too big through my bust. it's barely snug underneath my arms and not at all fitted down the sides of my ribcage, but i'm okay with that since it allows more room to wea",4,1,0,General,Tops,Blouses +1080,32,"Lightweight, but that's ok.","I bought this dress with my birthday coupon, i love the design of the fabric, and i think the length is great. it's a lightweight dress, which makes it a nice for more seasons. sandals in the summer, light sweater in the spring/fall, and tights, slip, and heavy sweater in the winter. the underarms wrinkled a lot the first time i wore it, which makes sense because i was wearing a sweater. the rest of the dress did not wrinkle at all. very satisfied!",4,1,0,General Petite,Dresses,Dresses +1080,35,,"I really wanted this dress to be perfect, but the skirt portion flares out in a way that was not flattering. the other reviewer is about 8 inches taller than me, perhaps it works better on a taller frame.",2,0,0,General Petite,Dresses,Dresses +864,47,,Really wanted to love this top...it is beautiful with very good quality but...ran small and tight...also the bottom sides flare out as if it was stitched with too much material looking awkward...,3,0,2,General,Tops,Knits +1110,60,,"Love the design of this denim dress. so unique! i did buy a size larger than i would have normally looked at based on reviews. if on the fence, go up but do get this one. it has no stretch, so a size 8 waist measures 15"" flat, with 17 under the arms. not really for big busted girls. i am 5'8"" and the length is right at lower knee. worth the sale price for sure!!",5,1,1,General,Dresses,Dresses +1110,43,Flattering,"This dress is fun and flattering. love the pieced denim look and the a-line style. unlike other reviewers, i found this dress to be true to size for my pear-shaped figure. the length is long enough to wear anywhere, and i think it would be flattering on a variety of ages and figures.",5,1,5,General,Dresses,Dresses +1110,39,Great piece,"I was very patient with this dress. i was waiting almost forever till this dress gets on sale. when i tried my usual 6 size it was way too tight but i could zip it. ( i am 5'6'' 145 lbs). the dress covers my knees and it's a perfect length, so when i sit it does not show too much of my length so it's a work friendly. it has side pockets, which can be very comfortable as well. the cut is great, it's a line,the thickness of material makes belly look great (in case if you care). i also like color a",5,1,1,General,Dresses,Dresses +916,37,,,5,1,0,General Petite,Tops,Fine gauge +916,39,Selling out...,"I ordered this on a whim as i though, hey, i don't have off the shoulder tops let's try ti, looks cute... +i ordered the nude after debating, but glad i did, it is a bit warmer in color, and i need warm colors to complement my pale skin. teh nude almost has a slight pink hue to it (maybe i am seeing things). it is soft, not sure there is wool, i am not that sensitive to wool, felt soft to me. + +size: i ordered the xxs as i think lately, retailer has been making things baggier, and on a shorter pe",5,1,13,General Petite,Tops,Fine gauge +1009,33,Soft and beautiful!,"This is a great skirt and i have received so many compliments wearing it. it's soft as butter and adorable with the ruffle on the bottom. i do find it runs small. i usually wear a 27 in jeans or a small in various tops and bottoms (and occasionally find i can fit in a 26 or xs) but i purchased a medium in this skirt. this is a very versatile piece. so far i have worn it to work (i'm 5'6"" and it's not inappropriately short at all) with tights, heels, and a jacket, but i'm excited to style it for",5,1,1,General,Bottoms,Skirts +1110,59,Great dress!,Purchased this in two sizes because other reviews said it runs small. i found that it was true to size for me .cant wait until it is warm enough to wear it!,5,1,1,General,Dresses,Dresses +1110,46,Heavy material,"I love this dress because it is different and unique. i agree with others that the torso runs tight. i got lucky and it still fits snuggly. i think that's the look the upper part should get with the bottom more a-line and flowy. +it's super cute though. the material is truly jeans material, therefore quite heavy and think. maybe not a dress for summer. more spring or fall with a little sweater.",4,1,0,General,Dresses,Dresses +553,31,,"Love! the perfect go-to black legging! i bought two pair! comfy waist band/not too tight, no muffin top! you won't be disappointed. buy them!",5,1,4,Initmates,Intimate,Sleep +916,59,Lovely top,I've been looking for an off the should sweater like this for over a year! looks great on and doesn't itch! can't wait for fall so i can wear it!,5,1,2,General Petite,Tops,Fine gauge +786,35,,,4,1,0,Initmates,Intimate,Sleep +864,30,"Elegant top, beautiful details.","The lace on this is gorgeous. it's feminine and elegant and fancy! definitely know if peplum style tops work for you before purchasing. if you have a large waist, it will just make you look bigger. but the top portion is nice and fitted, so i think it's very flattering. i'm 34c, 140b and got the small. fits great.",5,1,1,General,Tops,Knits +1110,36,,"I love holding horses and i am always be size 2 in their clothes (32dd, 5'3"", curvy). i ran into my local retailer to grab a shirt they had on hold and had to try this on because it's so cute. i couldn't get the 2 zipped and it seemed to be rather narrow in the torso. such a bummer!",3,0,8,General,Dresses,Dresses +1110,44,Perfect dress for anytime,"Based on the reviews of others, i ordered this dress a size larger than i usually wear and it fits perfect. i am an 8, so i got this in a 10. this is the perfect casual dress for pretty much anytime of the year -can be worn with sandals in the spring and summer, or boots in the winter.",5,1,0,General,Dresses,Dresses +1110,40,Love demin!,"Love this dress. very comfortable and stylish. wanted my size. but they only had a size larger available. still bought it, but feel good in it. glad i purchased it.",4,1,0,General,Dresses,Dresses +1110,31,"Unless you know a seamstress, don't bother","After reading all the reviews, i ordered up a size. the problem isn't that it runs small. it's that they took the bodice of a true size and stuck it on the skirt of a small size. or if you want to think of it differently - the bodice of a large size on to the skirt of a true size. the 4 top with the 6 bottom would be perfect. unfortunately - you get a size 4 fitted bodice with a skirt that puckers at the back and shows all your flaws (spare tire) or a size 6 that is atrociously long in the torso",3,0,9,General,Dresses,Dresses +1110,38,Excellent fit!,"After reading all reviews, i didn?t know what to expect, but i really loved the design so i ordered it any way. how positively surprised i was! this dress has a structure. the fit is great, just right in all places. the length hits right at the knee. i was afraid it would be too heavy for a denim dress, but it is actually thin and soft, not hot at all. for better understanding of the fit, i am 5?7?, 144 lb. and 34c. i?m between s and m in tops because of my wide shoulders, but size 8 in this dre",5,1,3,General,Dresses,Dresses +1110,29,So interesting & unique,"The weight of this denim is perfect, thin enough for a nice drape and wearability for all seasons but still thick enough to be structured. though there is absolutely no stretch, which is probably why so many are finding it to run small. i am a true size 6, but find that most retailer brands run quite large, therefore i usually wear a 4 and that's what i purchased in this dress. the bodice is a bit snug, but not enough to size up, for me personally. i know it's mostly a spring/summer dress,",4,1,3,General,Dresses,Dresses +1110,35,Runs very small,"Tried this dress on today in the store. i am a size 10, sometimes a size 8. the size 12 was the first size i tried that zipped all the way up. however it was still very tight around my stomach and bust. and then from having to size up, it flared out too much at the bottom for my liking",3,0,9,General,Dresses,Dresses +1110,68,Still undecided,"Having read all the reviews, i still (bravely) ordered in a size 2 (i can be a 0 or 2 in this brand)...first reaction? adorable style. second reaction? who was the model for this? i am pear shaped, and not short waisted, but the waist is low, and the top is snug...afraid a 4 would be too much top, but don't relish constantly pulling the dress down to keep the waist where it should be. am going into my local mall store, to see if they do have a 4...perhaps that will be better. really hesitant to",4,0,0,General,Dresses,Dresses +919,35,Comfortable and cozy,"This top is ""comfort wear"" or something i would wear to feel comfortable and cozy on the weekends but not something i would wear to work. because of that it is not an item i would traditionally purchase at retailer. that said, it is one of the best comfort clothing pieces i have found in a long time and i fell in love with it. i like the color which is good for transitioning into spring time, it is a thicker material which is great for transitional weather but also makes me more comfortable",5,1,7,General Petite,Tops,Fine gauge +1083,53,Recommendation with qualifier,"This gorgeous dress arrived today. the color is beautiful, but the sizing? way off. i cannot move my arms -- it is extremely snug across the shoulders. but, the rest of the dress is loose, as shown in the picture. if i went up a size to fit my shoulders, i'd be swimming in this dress. so, all you gals out there with anthletic tendencies: beware of this dress. it is for women without shoulders/with tiny arms. too bad. this is otherwise gorgeous & would look great worn over a sexy slip with the bo",4,1,12,General,Dresses,Dresses +1083,50,Beautiful color!,"This color is perfect: deep and rich. it is exactly as it looks on-line. the velvet is super-soft on the outside, while the inside is more of a woven finish. it makes it a little less cozy, but the drape is great. the fit is slim across the shoulders and chest, and full everywhere else. the waist is lower in the back than the front, so it sits lower on the hip. i'm 5'4, 140, 34b, and i got a small petite, because i liked where it hit my waist better. this means i won't be wearing it without tigh",5,1,0,General,Dresses,Dresses +1083,61,,"I was looking for a velvet dress for the holidays. this one was beutiful in color and teksture. +the only problem was that it was snug in the shoulders. going a size up would have made it too roomy elswhere.",4,1,1,General,Dresses,Dresses +836,42,Really nice,It's just not for me and i really like it. it's made very well and it looks great from the front. not so much from the side. i'm a 36c and this shirt bells out a lot from my chest...so much that i will be returning it. i look like i have an extra 20 lbs. on me.,5,1,0,General,Tops,Blouses +1083,33,... just not for me...,"I was very excited to try out this dress. i've been looking for a velvet dress for a couple of years now, and.. i'm not digging this one. the fabric itself was a let down right off the bat. it's cheap looking to me. i've seen nice velvet and this is very shiny, thin, and slightly sheer! the dress cut itself is what i was expecting, a loose baby doll type dress. the length hit above my knees. the overall effect made me feel very ""gypsy-ish""...my husband gave a firm no! when he saw me walk out of",3,1,2,General,Dresses,Dresses +1083,27,Not worth it,"I can't believe the reviews this dress has gotten. i ordered it and was so excited to get it. when i tried it on all of my excitement was gone. while i love the color the quality just isn't there and its not worth the money even with the 25% discount i used. the fabric is not thick, in fact it is quite sheer for ""velvet"". i honestly wouldn't feel comfortable with out a slip on underneath this. second is the fit. i'm 5'6 32a, xs on top 4 on bottom and i ordered an xs and the way this hung on me w",2,0,3,General,Dresses,Dresses +1027,39,Love these!,This is the 4th pair of current/elliot jeans i've bought. i'm 5'4 so the length is perfect for flats. they are so soft and cozy. wish they had a design on the pockets but love them none the less!,5,1,0,General,Bottoms,Jeans +1001,40,,"I returned this one. i usually love cecilia prado? s artistic textiles and was very happy with her floraknit dress, but this skirt was a disappointment . it simply looks different from the picture : it?s way more shimmery- metallic in person, (which i could see a lot of customers actually loved), but to me it made it look cheap. also it lacks structure: the a-shape looks drab on this knit fabric.",3,0,7,General,Bottoms,Skirts +1001,45,Beautiful skirt,"Fit, length and design were perfect. i took this skirt on a recent business trip and it transitioned perfectly from meetings to cocktail with an accessory change.",5,1,0,General,Bottoms,Skirts +142,43,Cute leggings but poor quality fabric.,"These are very cute leggings. i love the ribbed bottoms. as far as design and comfort, they are a five. but after only two wearings, they are pilling like crazy and look shabby. i'm very happy i only paid $23 for them. if i paid full price, i'd be more upset.",3,0,1,Initmates,Intimate,Legwear +919,53,Just one negative....,"This is a beautiful sweater. the color is not bright red, rather a dark coral. nonetheless it is much better looking in person than in the web photo. i only have one complaint which may be reason enough for me to return an otherwise perfect sweater. i wore this for approximately three hours today and could not believe the pilling under the arms and side of chest area. some pilling is normal and expected on any sweater but if this continues at the rate it appears to be going, i will contact retailer",4,1,0,General Petite,Tops,Fine gauge +142,19,,"I really liked these leggings, so comfy! they are so soft and the waistband is thick(about an inch wide). i am a size 10 in pants, i got a size m. i have a 33 inch inseam and these came down to my ankles. these leggings have textured stripes at the calf and hip.",5,1,1,Initmates,Intimate,Legwear +1001,40,Beautiful but fragile,"This skirt is gorgeous- the picture doesn't do it justice. it has beautiful sparkle and glitter in the material. i received tons of compliments on it. the biggest downside is the material- it seems to snag and pull so easily. in a short 2 hours of wearing it, the material was already pulled in two different places. i will keep the skirt because it is so pretty but have to not get upset when the material gets worse over time.",4,1,3,General,Bottoms,Skirts +1001,57,Better even than the picture,This skirt is shimmery without being too much. rich colors and perfect fit tts nice elastic middle so comfortable and gorgeous.,5,1,1,General,Bottoms,Skirts +1001,46,Go see in the store!,"Online photos do not do this skirt any justice i agree with a previous poster. i normally never buy anything brown, but there are pops of teal and magenta throughout. you can't see the gorgeous shimmer and the interesting layered colors online. in addition, this skirt has a stretch waistband (plus for the holidays!) and is so flattering, not too tight, but shows just enough of your curves, physique. i like that the skirt is longer as well - will look cute with boots. i purchased the size medium",5,1,4,General,Bottoms,Skirts +73,35,Calvin klein quality,"Love love love this pair of underwear (yes, i'm writing this about underwear). they're comfortable, flattering, and no vpl (visible panty line) without having to wear a thong.",5,1,0,Initmates,Intimate,Intimates +1001,65,Ab fab skirt!!!,"This is an absolutely fabulous skirt. i cant wait to wear it. the biggest challenge is finding the best way to accessorize it. i am an artist and have lots of clothing, but haven't created that ab fab combo yet. i will!!!!",5,1,0,General,Bottoms,Skirts +984,31,,,5,1,0,General,Jackets,Jackets +1001,32,The picture does not do this skirt justice!,When i got this skirt i figured it was a muted sweater skirt. what i got was a much fancier sparkly sweater skirt. the blue is more of a bright sparkly teal and gold thread is woven throughout. oh my it's spectacular. really beautiful.,5,1,1,General,Bottoms,Skirts +1083,43,Beautiful!,"I've been searching for a velvet top or dress for awhile. this arrived yesterday and it's absolutely beautiful. the color is rich and the fabric is thick and feels and looks like a very expensive, high quality item. i got it with the 25% off promo but it's worth every penny of the full price. can't wait to wear for the holidays! get this dress!",5,1,7,General,Dresses,Dresses +1083,53,Love,"I love this dress--i saw it on the way out of the store and was struck by the gorgeous color and rich velvet fabric and had to touch it and then try it on. i did not find it to be tight in the shoulders at all, nor do i think it looks cheap--on the contrary. the shape is indeed boxy, but it is still very flattering and comfortable. i wore it to a christmas brunch and got a ton of compliments. the only drawback for me is that it has to be dry cleaned. for reference, i am 5'6 1/2"" and usually wear",5,1,3,General,Dresses,Dresses +919,36,Awesome top,"I love this shirt! red + navy is one of my fave color combos, and the vintage feel is fantastic. the fabric is a little thicker and more sweater-like than i was expecting, but it's a good thing. the top isn't heavy, but the knit gives it more texture & interest. +this is the perfect thing to throw on for a casual sexy look...covered, but form-fitting and flattering.",5,1,5,General Petite,Tops,Fine gauge +1083,54,Fabric fantastic,"Got this dress in the mail today, and will have to say that it is not the most figure flattering dress i own. my 5'5"" athletic frame looks pretty boxy in this. that being said, the fabric is a soft, shiny blue/green. the garment swings nicely and has a slightly lower hem in the back (on me, anyway) and i think that's fun. who needs close fitting clothes during the holidays ? i'm keeping it. i plan to wear it with hot pink tights and boots.",4,1,3,General,Dresses,Dresses +1094,33,Great for somebody with less jelly belly,"Either this rouching is going to accentuate your waist or it's going to accentuate the fact that you just had a baby and ate too much linguini. unfortunately i have 10 more pounds to go and sadly this dress pointed that out. + +that said, i had to give it five stars all around because it's good quality, design, etc.. it'll be great but not for me. + +got a medium and it fit nicely (with the exception of pointing out that i still have baby belly to lose)-- 5'3, 34d, 150 pounds. hope this was hel",5,1,4,General Petite,Dresses,Dresses +1022,40,Buttery soft,"These jeans are extremely soft to the rich, as well as stretchy and flattering. they do not lose their shape after a whole day of wear. i am 5'3"" and the ankle length fits me as full length. i am a big fan.",5,1,2,General,Bottoms,Jeans +1022,40,Different fabric and looser cut,"I ordered these along with the regular ag stevie jeans and there is a definite difference in fabiric and cut. i liked the darker fabric but it was thinner and stretchier that the more ""denim"" version. the cut was also looser in the thigh and seat area which made for a looser, less flattering fit. returned it and kept the regular ag stevie.",1,0,2,General,Bottoms,Jeans +142,49,Not ideal,I was not a fan of these leggings. these were very unflattering. i could see that after wearing these all day they could start stretch out. i just didn't feel like they would hold up for even one season.,2,1,0,Initmates,Intimate,Legwear +1028,46,Not the boyfriend jean i was looking for,"These jeans look slouchy and shorter in the pic which was exactly what i was looking for, but they fit more like regular boot cuts on me and proved to be much longer than expected. i have fairly long legs and most jeans hit me like they do on the models, but these were very long. i only buy citizens of humanity and paige jeans and i can almost always buy online for them when it comes to skinny jeans, but these did not fit the same as their other styles. they are good quality and would probably f",3,0,0,General,Bottoms,Jeans +984,38,"On me, not flattering","I tried this on in the store yesterday and i wanted to buy it very much. the jacket would work well for many sleveless tops or dresses all summer, and would work in an office. but, on me, the unusual cut of the arms emphasized the worst part of my arms (saggy or fat area) in a comical manner. if they tried to design a garmet to make arms look bad, the couldnt have done it better. further, the extra material against the body added bulk at my narrowest point (i am hourglass). again, not flattering",3,1,14,General,Jackets,Jackets +1083,62,Lovely 3 season dress,I am very pleased with the quality and fit of this dress.the reader outfits next to the listing were darling. i do not care for the model shot. i think the dress is true to size and well constructed.,5,1,0,General,Dresses,Dresses +1094,39,Oh my,"Oh look i have a booty and would look at that--i have a waist too! yes this dress is way casual for its price point (soft stretch jersey in a heathered wine color) but it's all forgiven because it fits me like a glove. i really love the gathered waist detail and what it visually does to my non-hourglass body. wish there were more colors available, i would pick them up in a heartbeat. i purchased the medium petite. my stats for fit reference: 5'3"" tall, 140#, 36dd, 28"" waist, 35"" hips, wide",5,1,2,General Petite,Dresses,Dresses +1001,68,Gorgeous,"This skirt is a real ""dress up"" piece. it is simply stunning and indeed appears to have been designed by an artist. the aqua blue lining adds a definite pop of color while the shimmering knit outer layer is simply lovely. i plan to wear it out to dinner with friends this weekend and know that i will receive lots of compliments",5,1,0,General,Bottoms,Skirts +142,43,Cute casual leggings,I've never owned sweater leggings before so these were my first. i had to order large because well i have some junk in the trunk (am 10/12 on bottom and 8 on top). these are a teeny bit scratchy but i'm hoping with a wash they'll soften up--but they're really loose too so i'm also hoping they'll shrink a teensy bit.,3,1,0,Initmates,Intimate,Legwear +1001,78,So cute,This skirt is a dream. so so beautiful. looks way cute with brown boots. give this a go. don't listen to any negative review. this skirt is perfection.,5,1,0,General,Bottoms,Skirts +1083,64,Sad from ms designs,"I finally found this dress in store today and wow! i cannot believe this cheap looking dress is from ms! they have been among the top at retailer and this unlined, baggy, cheap velvet sub is a shock! what happened? only the color is nice. please get back to yourself ms!",2,0,2,General,Dresses,Dresses +142,38,Comfy leggings,These leggings are super comfy. i took the advice of other reviewers and ordered a size down and the leggings fit wonderfully. lately i've been having a problem with leggings falling down at the waist and these stay up nicely so i was very pleased. the leggings have a slight itch because of the sweater feel but they are very warm and i enjoy wearing them.,5,1,0,Initmates,Intimate,Legwear +1083,39,So its green----,"I don't know how this dress looks on your monitor. on mine - it looks dark green. which it is! i was pleased with this aspect since i had hoped it would be as pictured despite the color description as ""slate."" that aside, it was a bit too large on me, and since i am on the shorter side at 5'4"", i looked a bit like a child's doll in it. i wish it had looked better on me because the color is beautiful, and so is the quality.",5,1,7,General,Dresses,Dresses +895,38,Can't go wrong with a cashmere sweater!,"Beautiful sweater!! i love the color and the fit. the cowl neck isn't too tight and the sweater hangs away from the body without being boxy. it comes down to the low hip on me. very soft and cozy. i purchased the aqua in xs. fits perfectly and i'm 5"" 5' 127lbs.",5,1,0,General Petite,Tops,Fine gauge +145,47,Gorgeous! pics don't do them justice!,"I thought these were pretty on the website, but in person they look like a work of art! the colors are vivid -- bright reds, pinks, greens, blues, yellow -- with flora, fauna, houses, writing, type and so many other things on a white and cream background. they are very soft, medium-weight flannel. for me they run true to size. i wish they had pockets, though!",5,1,3,Initmates,Intimate,Sleep +930,53,Perfect hooded long vest,"I've been looking for exactly this. i really love it. it is heavy, but made extremely well and on sale a great price!",5,1,0,General,Tops,Sweaters +895,47,Best retailer purchase of the season,"I've tried or bought nearly every retailer cashmere sweater this season. this one fits the best and the yellow is a bit darker in person, not quite mustard but a deep rich yellow. i wish they would offer more colors.",5,1,1,General Petite,Tops,Fine gauge +145,53,,Love these lounge pants. i live in florida and was worried they might be too heavy. not the case at all. very soft and lightweight. so comfortable!!!,5,1,1,Initmates,Intimate,Sleep +895,31,Enormous,"I was really excited about this sweater, but the fit was terrible. the sleeves were the right size, but the body of the sweater was a tent - absolutely no shape. they must have clipped the sweater on the model. for reference, i'm 5'4 and 120 pounds and ordered a size small.",1,0,6,General Petite,Tops,Fine gauge +895,66,,Caught a sale in oct and purchased the gray. beautiful light gray. i am normally a med or lg and the small in this sweater was perfect. i am larger in the bust so it is not boxy on me. added a delicate pin to the shoulder and it was darling for our casual christmas dinner.,5,1,0,General,Tops,Fine gauge +895,63,Love it!,"Beautiful color, great style/design. only drawback is it's not as soft as other cashmere i've purchased...got the xs and the fit is perfect!",4,1,2,General,Tops,Fine gauge +1133,61,,"Looking for a stylish rain resistant coat to wear to ireland this fall and looks like this could fit the bill. the 30inch length is perfect. the faux fur lined collar and opening edges is a lovely touch, fur ends about 6 inches in so not fully lined, but great for weather in 50's-low 60's with a sweater added . ample room for that. i love the look, wish the pockets were just a bit bigger, i can barely fit my hand in. but overall i think it's a keeper. +i ordered m/l and am usually a medium or la",5,1,5,General Petite,Jackets,Outerwear +895,46,Beautiful,I bought this in aqua. the color is beautiful. the quality of the cashmere is great. i have worn this 3 times since purchasing! this can be dressed up or down. the cowl neck is not overwhelming and looks great with a shorter chunky necklace or even a scarf. flattering hem line. very versatile.,5,1,0,General,Tops,Fine gauge +829,31,Elegant blouse,Shirt fits great! i wore it for work and got lots of complements. looks very elegant. i also got the pants featured on the model since i liked the outfit so much ;),5,1,3,General,Tops,Blouses +895,48,On the fence,"I love cashmere, love the length, cowl-neck and colors, however i found the yellow to be bit more vibrant in person, which i liked. i'm not sure i will keep this because it seemed to be a bit too thin for my taste. i would gladly pay a bit more for a thicker ply sweater... i might justify this one at a sale price.",3,0,2,General Petite,Tops,Fine gauge +930,38,,"Beautiful piece, very well made and drapes well!!! i love it!!!! runs a little big, i'd go a size smaller.",5,1,2,General,Tops,Sweaters +145,48,,"Very cute in person, too. soft to the touch and comfy. as a person on the shorter side the roll up cuffs sold me on these pants! can't wait for it to get cool enough to wear them.",5,1,10,Initmates,Intimate,Sleep +591,48,Nice cami with cute detail,"I love camisoles like this, and retailer always has great ones! it has a nice length, so the lace detail can show underneath a jacket or shorter cardigan. it's fitted, but not tight.",5,1,0,Initmates,Intimate,Layering +895,59,Try it! you'll love it!,"This is a beautiful sweater. high quality cashmere was used as it is very soft. as other reviewers stated, the sweater does run large. so i purchased one size down and ordered an xxs, for a perfect fit. i went with yellow, which is a great color. this is not high low, which i love! i am so thrilled, that just as soon as i'm finished writing this review, i'm going to purchase another sweater in red.",5,1,1,General Petite,Tops,Fine gauge +829,51,"Classy, sophisticated",I bought this blouse in a size 4 (my normal size) to pair with winter white slacks and gun metal pumps. it was a hit. i felt beautiful and professional. and received many compliments at work as well as at an after work gathering the quality is surprisingly sturdy given the lace work. the collar and cuffs really set the design off. this top is much more impressive in person.,5,1,4,General,Tops,Blouses +1008,56,Ugg!,"This skirt is gianormous! i usually take an xl or l, so i ordered both. the waistband on the xl was so huge, i didn't even try it on. i feared it would not stay up! so i tried the large, and it was big as well. i think i would have needed a medium. but as it is, it is not the cute a-line that appears in the picture. (i wonder how they even got it to look like that !?!?!) it is huge, hip-y, and bunchy. yuck.",1,0,2,General Petite,Bottoms,Skirts +895,68,,"Bought the aqua because sizes were sold out. the bright color will be a welcome change this winter among all my neutrals. it's lovely, soft, well-fitting, and i only hope we have a few days in the south so i can wear it. well worth the price. would be a lovely wardrobe addition for any age, changed by what it's worn with...shoes, accessories,",5,1,1,General Petite,Tops,Fine gauge +829,46,Beautiful shirt!,This shirt is beautiful and well-made. the lace is soft - not scratchy at all. looks great with a cream or gray cami underneath.,5,1,0,General,Tops,Blouses +145,60,Most comfy flannel jammies ever,"Love, love these flannel sleep pants. i bought a pair 3 years ago and have been on the look out for the style again. these are truly the most comfortable pajama pants i have ever owned.",5,1,8,Initmates,Intimate,Sleep +1008,30,,"I recently ordered this and am so glad i did. i absolutely love it! my hips and butt are not tiny, so i was very nervous that this would be a giant pouf on my lower half, but it lays perfectly flat and has a very gentle a-line, contrary to other comments. i am 5'4"" and 130' but the xs fits perfectly and keeps me looking trim. the waist sits just barely below my natural waist. very happy with this purchase; would buy more if there were additional colors - who doesn't love an elastic-waisted skirt",5,1,1,General Petite,Bottoms,Skirts +1110,25,Amazing maxi,Bought this dress in store after trying it on. loved it. it's sexy with the lower cut front. the fabric is flowy and breathable. runs true to size. usually wear a 10 with my hips but the 8 fit better on top.the sides are well designed so your bra doesn't show. i'm 5''6' 32g size 29/30 jeans and athletic/hourglass built. i can't wait to wear it out. the pictures don't do it justice.,5,1,0,General,Dresses,Dresses +417,42,Nice change from denim,"I really like these shorts. i'm quite petite and have a hard time finding shorts to fit other than high end denim brands. these are great b/c of the sizing, i wear a 24 in most denim and the 24 in these fit perfectly. also love the length, not too short or long! going to order a second color, i have the plum and love it.",5,1,4,General,Bottoms,Shorts +868,26,,"Ordered this is the navy in a size m.....i'm 5' 5"", 135 lbs, 34d. it was huge!!! it is also very billowy but i'm going to try it in a petite s. i also changed colors to the ivory as the navy was really plain. hoping this size change works!",4,1,30,General,Tops,Knits +417,48,Variety of colors,I couldn't wait to try on these shorts after reading all the positive reviews about them. my local retailer had them in the bright blue and coral in my size 26 and 25. i purchased the 26 and am content with them. they are a very lightweight cool pair of shorts. they do have a little stretch to them and the length is perfect.. i have to note they do wrinkle a bit but perfect summer staple. .,5,1,0,General,Bottoms,Shorts +868,30,My new favorite top,"This top is wonderfully comfortable and well made. i've taken a few accidental naps while wearing it because i was just so comfortable. at the same time, i receive complements on the shirt every time i wear it. itt pairs well with so many types of pants. the only negative is that i only own one (the cream color). i regret greatly that i did not purchase it in all available colors when i had the chance! i really hope to see this top come back again later!",5,1,0,General,Tops,Knits +417,48,,The color was very different and vibrant. chose to size up for extra room and length,5,1,6,General,Bottoms,Shorts +1045,60,Extremely small pant!,Very small! so disappointed! they did not even have a size for me to exchange a day later when they arrived!,1,0,0,General,Bottoms,Pants +1092,59,Very short,"This runs very short. i had to size up so i could wear as a dress. still too short to wear to work with a cardi but adorable to wear to daytime summer events and date nights with hubby. i am 5'6"". length may work better for shorter women. love the style and fabric. very feminine, float and easy to wear with sandals on a hot summer day.",5,1,2,General,Dresses,Dresses +841,39,Not for larger chests,"I ordered this online, and when i opened the package, i was impressed with the quality of the material and stitching for this top. it is much nicer than a basic t-shirt. + +when i tried this on, the band of stitching that was supposed to go beneath my chest was sitting on top of my cleavage! also, the overall length is listed as 27"" long, but i think that is the back of the shirt. the front of the shirt is very short on me (i'm 5'10""), hitting well above my hip bones. + +if only this was much, m",2,0,11,General Petite,Tops,Blouses +868,36,Subtly soft,"I purchased this in the light red, and love it!!! this top is so incredibly soft and ridiculously comfortable. definitely worth buying. the material is high quality and can easily shift from season to season. wear alone with shorts and wedges for summer or put it over a long sleeve top, or even a holding horses jean shirt with a pair of black leggings and boots for fall. +absolutely love the softness and the consistency of the fabric.",5,1,2,General,Tops,Knits +417,45,Great shorts,These shorts are very flattering. will def. purchase another pair.,5,1,2,General,Bottoms,Shorts +868,32,So soft and flowy,"This tunic is a great length - i'm 5'4"" and it hits me mid/lower thigh. it's so soft and flowy which i love. i got a medium which is my normal size so i would say it runs a little big given that i'm almost 5 months pregnant with my second but it will still look and feel great post baby. arm holes are big but a cami can fix that. i got both colors available: the ivory and light red.",5,1,0,General,Tops,Knits +62,38,So cute,I love this!!!! nice and lightweight. super stylish,3,1,0,General Petite,Intimate,Lounge +1138,59,,"This skirt is adorable. i like it because its different and i like this length. the cactus look gray in the picture, but they are green.",4,1,1,General,Trend,Trend +868,37,"Love this, great for larger chests","I *love* this tunic. i'm 5'5"" and can wear it as a dress with bike shorts or leggings. it is so soft and comfortable, and i love the pink color--very versatile. my favorite thing about this piece--i am a 36dd and haven't bought a button down shirt in years until this tunic, which fits over my chest and is so flattering! many reviewers are saying that this tunic runs large--i agree, but for those of us who are busty, it's an opportunity to wear a cute, breezy style with buttons and a collar!",5,1,11,General,Tops,Knits +868,43,Makes me look pregnant,"I normally wear regular s, but even the xsp is too wide on me. it is really maternity wear. + +also, since the material is thin, the ivory is too shear for my liking.",3,0,4,General,Tops,Knits +417,31,"Great length, true to size despite initial snug","These shorts are comfortable and are just the right length. i have the blue and it isn't as bright as shown in the pictures, but it's a great color nonetheless that coordinates well with many wardrobe items. when i tried on my usual 25, i found the waist fit a bit snug so i bought the 26 for a comfortable fit. i should've stayed with my usual size though, because after wearing for an entire day, the shorts loosened up quite a bit and developed a saggy look to them. i'm so disappointed with this",4,1,1,General,Bottoms,Shorts +1092,53,Beautiful dress,This dress is so beautiful in person. i actually am currently wearing it with jeans and i get so many compliments on it. this picture on the website does not really do it justice. very flowy beautiful top/dress.,5,1,3,General,Dresses,Dresses +425,56,I've been looking...,"This is another ""i've been looking"" for me - a funnel-neck sweatshirt to feign athleticism with. i love it. the material is incredibly soft and warm. the fit is a little snug around a larger bust, and the lines would probably be more flattering on a more... well, modelesque... frame. but i'm thoroughly attached. size up if you're looking for movement.",4,1,1,Initmates,Intimate,Lounge +936,57,,I ordered it online so i wasn't sure how thick the sweater coat would be and when i received it i was pleasantly surprised at the thickness and high quality. definitely worth the price!,5,1,7,General,Tops,Sweaters +1110,32,Perfect maxi,I agree with the other reviews! perfect color and weight to the dress. should wear well in summer and fall. i'm 5'5'' 34c 140lbs athletic and got the 6 regular. fit well and the length was perfect with flats.,5,1,0,General,Dresses,Dresses +417,37,Perfect shorts,"I love these shorts! they are cuter in person than online. they fit perfectly--casual, somewhat loose, airy feeling. i am 5'3, 105 lbs, took my usual size 25. i wear shorts a little lower on my waist, and i prefer the looser fit. if you plan to wear them up higher on your waist, you can probably size down, but i didn't want to worry about shrinkage, and i wanted them to be easy and comfy. they washed nicely (machine wash, cold, laid flat), light iron touch up. i ordered in moss green, nice color",5,1,0,General,Bottoms,Shorts +868,55,Breezy & comfy,"This top does run large. i'm 5'8 142 lbs and usually a medium. i bought a small and probably could have gone xs. that said, i love this top. its soft and comfy and swingy. i bought the light red and its pretty true to the online color.",5,1,0,General,Tops,Knits +868,27,"Soft fabric and nice details, billowy design","This top is not quite what i expected, but it is good quality and very comfortable. looking at the tall, willowy model in the pictures, i thought the top would be about tunic length and hang straight down. in reality, the design adds volume to your frame by cutting out in a kind of a-line from shoulder to mid-thigh. in fact, the shirt is so long and has so much flare that i think if i had ordered the regular size rather than a petite it would actually make a cute dress. for reference, i'm 5'4"" a",4,1,3,General,Tops,Knits +417,51,Stretchy,"Love the length, cut, & placement of pockets. the stretch has positive & negative consequences, though. minuses: easily wrinkled, grow 2 sizes within the day. pluses: comfy, bendy, they're designed to be more of an active short, so the wrinkles & give are quite fine (they only stretch in unnoticeable areas). if we're to repurchase, i'd size down--but i love the bright color & comfort so much i'm keeping these as is. (i'm a 6-8, should have purchased the 27's.)",4,1,0,General,Bottoms,Shorts +868,41,Easy top,"I like this top. another reviewer mentioned that it was a great top for a busty girl...i agree. i'm a 32g and could have sized down to a small, but i kept the medium because i wanted the extra length to have the option of wearing it as a dress. the small may have caused slight button pulling, but since the fabric has stretch and the top has a generous cut, it wouldn?t look insane. my only issue is the fabric pills. i wore the top once, and the fabric near the armpit pilled a lot, especially for",4,1,0,General,Tops,Knits +868,57,,"The light red color is really nice. i ordered an xs but usually order small, because of the cut and it was perfect. the fabric is heavy but loose. the collar stands up nicely and the buttons lay flat. i purchased this beautiful piece on sale, but i would have paid full price.",5,1,0,General,Tops,Knits +417,66,So great,"Have been on the hunt for decent shorts all summer. as an elder, i need some length, comfort, style and attractive fit. these meet all the criteria. i'm 5'3"" and got the 31's. they're lightweight but substantial enough to keep their shape. love the faux cuff too. they stretched a bit but still have a perfect fit. got the grey on sale and getting 2 more in other colors left in my size at full price. so good!",5,1,1,General,Bottoms,Shorts +1092,33,,Beautiful dress. the details are lovely. it feels a little bit like a nightgown. i always wear a slip. bust does run a little small so i unbutton the first few buttons. armholes feel a little small also.,5,1,2,General,Dresses,Dresses +868,56,Runs large,"I was excited to receive this tunic in the red (more of a rose color) yet so disappointed to find out how large it runs. my usual size with retailer is a small (sometimes, xs). after reading through the reviews, i ordered an xs and even the xs is too big -- just too much fabric. unfortunately, the xxs is sold out and the xs will be returned.",3,1,0,General,Tops,Knits +818,63,Great summer shirt,"I can tell this is will be a ""go to"" shirt this summer. simple lines, yet a little ""different"" style - soft stripes, slits on the side seams and short, but not too short that it bares the stomach. it will look great with jeans, dressier with slim white pants or skirt or a pair of nice shorts. i don't usually go for button-down shirts, but this one was a bit unusual and caught my eye immediately. the fabric is soft yet holds it's shape.",5,1,0,General,Tops,Blouses +868,34,Runs very large,"I love tunics and really wanted this to work. i got this in a size s and it is absolutely gigantic. everything else about it is great, and i still haven't decided if i will try to swap it for an xs, which is definitely not my usual size (which is usually m, but often s at retailer). the pink/red color was quite pretty. if you have broad hips, fear not - you can size down and this top will still be generous around your hips. basically, if you're deliberating between s and m for this top, get",3,1,0,General,Tops,Knits +1110,33,Effortless!,"I tried this on a whim during the sale with no real intentions of buying but the moment i put this on i feel in love! the denim is soooooooo soft. it is heaven! seriously one of the most comfortable pieces i have ever tried on. the fit is very flattering and it can be worn multi seasons so..... it went home! that night i put it on and walked doen the stairs and my two year old daughter said ""mommy is so pretty""! . score! this dress is so simple and can be styled so many ways. plus it seems very",5,1,1,General,Dresses,Dresses +417,30,Super comfortable but not frumpy,These have become my go-to shorts as i can dress them up or down,5,1,0,General,Bottoms,Shorts +818,49,Great shirt,"Love this shirt, the material the design... but....i have not worn it yet... the side openings are strategically placed to show my least flattening angles, if you know what i mean. i will be sewing these two openings and hope the shirt still looks and fits beautiful.",4,1,0,General,Tops,Blouses +421,44,,Legs are too wide. the fabric is rough to the touch.,1,0,0,General Petite,Intimate,Lounge +417,27,,True to size and love the color. great to wear dressed up with wedges and a blouse or dressed down with some mephistos and a tee. linen fabric makes them light for summer heat,5,1,0,General,Bottoms,Shorts +818,66,Fab versitile top,"Love! love! love! this top! i saw this online and immediately knew tha tthis had to be in my wardrobe. i wear a lot of navy....(in my estimating the classiest color there is...black is passe'). it is simple, very wearable with pants, with skirts. the very thin stripe adds interest, without really being a pattern that conflicts with other patterns. i did have an issue with some threads that were randomly hanging from sleeve cuff...but nothing important. yes, it is cropped...very much so!!! so, if",5,1,1,General,Tops,Blouses +26,34,Cute holiday dress,"I'm 5'9 and wear a size 12. this dress runs tts though there is no stretch to it, found the bust to be a tad tight (38c). it is light with good movement. i did not find it short waisted and i thought the proportions were correct. the length was just long enough to make me feel comfortable wearing it. i'm looking forward to wearing it to holiday dinners this season.",4,1,0,General,Dresses,Dresses +868,60,Runs very large,This is a super cute tunic - it is simply way too big.,3,1,12,General,Tops,Knits +417,47,Great design,"These are so cute and the colors are great, however, they stretch out about 2 sizes. they fit me perfectly and i sized down and they stretched out about a size 1/2 to 2 sizes too big. i'm bummed out because they are perfect in every other way. didn't think they would stretch out as much as they did. and they look awful once +they've stretched out. wish i didn't take the tags off or i would have returned them. size down at +least one size, i could have sized down two sizes. hoping they shrink lik",3,1,1,General,Bottoms,Shorts +1092,44,Rules apply,"This dress is breathtaking in person: the back tie, the lace on the sides, the hem, the sleeves, the pleats at the chest, and the liner is opaque so it's not see-through. but it's very white, baby doll cut, and very short. in order to avoid the maternity, wedding-ish look, a few rules must be applied (thanks to retailer stylist ): buttons all the way up, a belt is a must to break the monotony of the all-over white and lace look. i purchased size 2 regular, and it still falls about 3 inches above m",5,1,2,General,Dresses,Dresses +1110,44,Elegant casual,"This is an understated elegant denim dress. the fabric color is just the right fade and thickness (not too thin and not too thick) which is appropriate for most occasions. it?s very soft and can get a bit wrinkly but nothing major. my local retailer has only the regular size and it's true to size, size 6 (my usual size for holding horses brand) fit well around the bust and waist area (i?m 34b, 26 waist, 36 hips; busty gals may want to size up). this dress shows cleavage so if you?re conscious like",5,1,9,General,Dresses,Dresses +818,32,,"This shirt is really cute. it's shorter than most - and it's supposed to be that way. if you don't want your midriff showing if you stretch - this shirt isn't for you. it has slits on the side also. the material is super light so will be great for summer. i just loved the way it fit and that it's different. i ordered an xs and i'm about 5'5"" and 120 lbs.",5,1,4,General,Tops,Blouses +417,52,Super comfy shorts,Love these shorts - got 2 pairs on sale just because it's hard to find shorts that fit nicely and are comfy with a great length.,5,1,0,General,Bottoms,Shorts +8,33,Great coverage,"This bathing suit has everything. i especially love the ruching in the waist and the boy short bottom. finally the coverage my booty needs. i've worn it dozens of times and it still holds its quality and looks brand new. i get a lot of compliments every time i wear it. +the only drawback is it doesn't dry very quickly. after a dip in the pool or the lake it stays wet for hours even when i'm laying out in the summer heat.",5,1,2,Initmates,Intimate,Swim +1037,29,Love!,I tried these on in my local store and immediately loved them! they are so flattering on my hourglass shape. the flare leg balances out the hips. great quality and very comfortable. i know i will get so much wear out of these. i bought a size up from my usual size and they fit perfectly.,5,1,0,General Petite,Bottoms,Jeans +989,27,Beautiful skirt,"I love this skirt. the material is soft and beautiful. i love wearing it with black tights and boots. the skirt is quite a bit longer than how it appears on the model, however (unless the model is 10 ft tall!). i am 5'2"" and if i place the skirt under my ribs, it reaches right above my knee. it works though and doesn't look bad. i would still recommend you buy this!",4,1,3,General,Bottoms,Skirts +8,38,Cute suit-didn't work for me,"This suit was high quality, and a cute design. however, it is clearly made for a lean body type.",1,0,0,Initmates,Intimate,Swim +868,51,Stripes of summer,This was an unexpected surprise. i love the material of this short sleeved (almost sweatshirt) summer tee. the entire design reads late summer stripes with a cozy twist! the first time i wore it made me realize how tricky it can be to wear stripes and this design deconstructs all my previous hangups!,4,1,0,General,Tops,Knits +868,27,So cozy,I love this!! great quality and super cozy. perfect to throw on for casual summer nights.,5,1,1,General,Tops,Knits +967,38,Very unique,This is a great quality product with unique design,5,1,0,General,Jackets,Jackets +867,40,"Very thin material, not flattering","I was very excited about ordering this top as i'm tall girl (6 ft) and i like my back well covered. i liked both style and design of the top on photo but when the package arrived i was very disappointed with the material. this top is incredibly thin and see through. though fabric is nice and soft, it feels more like a pajama top. all curves & bumps immediately stand out and it doesn't look flattering. i ordered 2 colors grey and black size large and returned both, although they were true to size",1,0,0,General Petite,Tops,Knits +8,57,Retro style,I bought a size 8 a few years back not my regular size but when used it tend to sag. so this time i bought a size 6 my regular size.,5,1,0,Initmates,Intimate,Swim +872,35,Great versatile top,"This is definitely my go to top for work, weekends or night out with the husband. i've worn it with skinny jeans, black tights and skirts. it goes with just about anything. easy to accessorize with a simple long chain necklace or a statement piece. i think the gray combo was a bit more flattering than the green combo.",5,1,0,General,Tops,Knits +1096,39,Beautiful and flattering,"I love the colors on this dress, very nice on a pale skin. i ahd this in my wish list for so long, and it finally went on sale. i ordered it and was very pleased. only drawback is the collar was a little irritating (but i am ok with it). it fits like a glove (o), i didn't think it would as there are no petites, but that worked for me, the lace pattern is classy. and the hem is totally fun. great purchase (maybe petite would not have bothered my neck). +115 lbs, 30 dd, 26.5 in waist",5,1,0,General,Dresses,Dresses +867,37,,Cute tunic. fits on the fitted side but i love it with a vest layered over. nice material.,5,1,1,General Petite,Tops,Knits +860,50,For the price...just ok,"Note: if you have a large chest, the seams hit in an unflattering spot. nice shirt, just not great for the price.",3,1,1,General,Tops,Knits +868,44,,I agree with other reviews. this is perfect to throw on for running errands or just hanging out at home. super soft and comfy. got the blue and now want the grey.,5,1,0,General,Tops,Knits +868,26,Super compfy,"This top is my go-to running errands top on the weekends, its super comfy and not to warm to wear throughout all the seasons. runs true to size and i get a bunch of compliments on the quality!",5,1,0,General,Tops,Knits +860,36,Love this tee!,"This long sleeved tee is soft and beautiful. the swing design is so pretty and flattering. the seams along the front and back are a lovely addition. i also appreciate the higher neckline, which is increasingly hard to find in these kind of tees. would love it in more colors. i bought the black. i tried the white as well, but it was too transparent for this particular style and the tank top underneath gave it a sporty appearance. not horrible, but not what i wanted, so the white went back.",5,1,0,General,Tops,Knits +8,70,Alas not as good as it looks,"The suit is lovely, but it is very long in the torso and gaps at the leg. i was told that it runs small and to size up to a 10. i did, but i do not think the smaller one would have done better. the bust is fake and it turns out when untied. worst of all it emphasizes the tummy. all in all not a good look for me. i am not heavy but i do need tummy support. normally i wear an 8 and in garnet hill a 6. sorry but it went back. i really wanted to like it.",2,0,0,Initmates,Intimate,Swim +868,70,,,5,1,0,General,Tops,Knits +910,83,Pretty details,"The delicate detail at the neckline on this sweater adds such a pretty yet subtle touch. +i layer it with various camis for a different look each time. +i ordered the dark yellow and it is a very unique and rich shade, and goes well with so other many colors. +looks gorgeous with a mint or aqua cami for a peek a boo effect. +classic yet unique! +runs very true to size.",5,1,7,General,Tops,Fine gauge +1059,41,"Fun cropped pants, but size uo","I bought one size up in these fun cropped pants. i am petite but wanted these to fit longer, so i ordered a regular size. they are perfect. there is a nice patterned texture to these pants that is hard to see in the pictures. they are worth the price!",5,1,0,General Petite,Bottoms,Pants +860,37,Cute!,"Love this shirt. i have it in black. i have a larger chest, but i don't feel like the seams hit me wrong. this is super cute and swingy. i however think the price is way too high for a think cotton tee.",4,1,0,General,Tops,Knits +1037,39,Almost perfect,"I'm 5.1 and always bought 27p. they didn't have petite anymore, so i bought 27r, knowing that it'll hit my ankle instead of being cropped. it's very cute as an ankle-length with some flare. my only issue is that the 27r was very tight around the crotch and upper thigh. it's a very tight fit just right there!... and not enough of stretch to be comfortable when sitting. i wonder if it will stretch out a bit more from wear? i then ordered a 28r to see if that fits better, and it fits a tad loose ev",3,1,1,General Petite,Bottoms,Jeans +839,63,Love!,"This chambray is super soft! it has such a great feel and texture. i love the detail and design on the front. it adds just the right amount of interest without making the top feel busy and still very neutral in color so you can dress it many different ways. i'm not sure how this fits in comparison to other holding horses shirts/tops, but i had to size up one from my typical retailer size because of the my (which isn't large!). so excited to get a lot of use out of this!",5,1,3,General,Tops,Blouses +1037,54,These cords are great!,"These cords are beautiful in the wine color and fit very well! i am 5'1 and got the petite size and felt they were a little to short, i know they are cropped flare but they hit me at a weird place. hindsight, i probable should have ordered then one size up!",5,1,0,General Petite,Bottoms,Jeans +1096,27,Absolutely stunning--if you get the right size,"This is the most intricate, delicate, beautiful dress i have seen in a long time! the pale blue, coppery brown, and dark purple tones are so complimentary of fair skin, dark hair, and light eyes. unfortunately my normal size was far too snug, especially on my hips, and this is now sold out. the fabric has no give, so i would say with any curves, size up if you can find this beauty. i'm heartbroken to be returning it!",5,1,0,General,Dresses,Dresses +819,66,Classy shirt,Very comfortable shirt. washes up nicely with just a little ironing on the pleats. cute detail of colored thread on buttons. just a tad tight in the shoulders but not distracting. no button placket chest gapping.,5,1,0,General,Tops,Blouses +1059,54,Not what i expected...,"Based on other customer reviews, i ordered these trousers expecting a lightweight cropped pant that would be appropriate for spring and especially summer. however, the fabric is much heavier than what i'd usually wear in the summer . the cut of the trousers were superb though - i like a low-rise or hipster cut which these are. + +they are fitted and not oversized like many of the other retailer items i buy, so if you are an xs these will be xs (or runs small for retailer clothing) if you like your clo",2,0,0,General Petite,Bottoms,Pants +867,35,Great versatile tunic,"I bought this tunic over christmastime at full price. i absolutely adore it! in my opinion, it isn't too thick or too thin. i got my usual size large and i think it fits perfectly! there are side slits, so it's perfect with skinny jeans or leggings. it's flattering because of the vertical stripes in the fabric. also with the grey color, there is a difference in the two fabrics that are used in the construction, so this adds some additional visual appeal. i haven't had any problems with snagging",5,1,1,General Petite,Tops,Knits +867,45,Love this tunic!,"I am in love with this tunic, i wear it with everything, jeans, leggings and just tights! super comfy, quality design. runs a bit large but i like that.",5,1,1,General Petite,Tops,Knits +854,55,Top that works with lots of colors,Comfortable and cute. versatile colors that can be worn with virtually anything.,5,1,0,General Petite,Tops,Knits +872,46,Fun,I get a ton of compliments on this. cute and comfortable. you can't go wrong.,5,1,0,General,Tops,Knits +819,52,"Huge, long, lightweight",Not a pretty blouse - it's quite utilitarian in design - and it runs enormous.,1,0,0,General,Tops,Blouses +910,46,Mumsy,"It's thin knit with a unique and pretty neckline, but unfortunately it's scratchy will not last. i just received it and it looks like it would fall apart after a few wears. it's a nice shade of offwhite at least. for me it's a no that will get sent back straight away.",2,0,4,General,Tops,Fine gauge +819,33,"Very thin fabric, pretty disappointing","I was so excited to order this top - it looked like it was made of more sturdy, soft cotton, but sadly after receiving it today i found that to not be true. it's incredibly sheer - you'd have to wear a cami underneath, which defeated the point for me. the pleating in the front hides your bra, but you can see it from all other angles (i tried it on with an unlined nude lace bra, which can easily hide under sheer clothing). i was hoping to be able to wear it on its own without a cami and for it to",2,0,3,General,Tops,Blouses +967,38,Gorgeous jacket,"This is a lovely jacket. it is easily paired with different bottoms and tops, and is such a fun take on the standard blazer with the beautiful ruffle pocket-detail. they are not actual pockets though, which i thought would have been an easy thing to incorporate. my chief issue with the fit is that it is a tad boxy. i am a standard xs/xxs and this runs just a tad big and a bit wide. but unbuttoned it falls seamlessly. if you use the clasp, it actually looks bigger. regardless, i love it and was o",5,1,0,General,Jackets,Jackets +967,59,,This is a beautiful jacket. the fabric is soft and drapes wonderful. truly a great addition to any staple in your wardrobe. i am having the sleeves shortened as i prefer a more 3/4 length.,5,1,3,General,Jackets,Jackets +8,33,Love this suit!,"I am 5'5, 150lb, generally size medium shirt, size 6 or 8 pants and bought a size 8. i have had two c-sections so my stomach has some problem areas, which can be easily highlighted in a swimsuit- not this one! i felt good, it hid my problem spots, showed off curves and stays in place! i can't speak to the durability of it yet, however, it makes me feel great, and that is tough when i am in a bathing suit. that in itself makes it worth the price! try it!",5,1,0,Initmates,Intimate,Swim +1037,45,Love the cropped flare,"I bought these pants in the wine color and i love them! i found them to be true to size. i always wear a 27 in pilcro and these were no exception. i am finding the cropped flare silhouette to be so versatile. they are more ankle length than cropped on me as i am 5'3"" but i think i prefer this. these pants can easily be dressed up or down - have worn with a dressy top and heels as well as a denim shirt and ballet flats. super cute!",5,1,9,General Petite,Bottoms,Jeans +1075,49,Beautiful dress,"Fell in love with this dress when i saw it. beautiful design and flow. although it needs an underskirt, because it is a see through. also it is a bit tight on the chest section. i haven't wore it yet, so more to come..",4,1,0,General,Dresses,Dresses +819,49,Great bouse,"I really like this blouse. it's hard to find a short sleeved button down that the sleeves don't stick out and look weird. this one does not have this problem. it is a bit sheer, but i don't mind wearing a cami with it. it is flowy... but not boxy/baggie. has a very nice, flattering drape. i'm 5'3"", 110lbs., 32c, petite frame. the 00 regular fits great. i'm often a petite (especially in pants and long sleeved tops)... but went with the regular size here bc i wanted the longer length.",5,1,2,General Petite,Tops,Blouses +860,26,Simple t with a twist,I love this shirt! it's a nice simple long-sleeved tee with some nice details. i especially love the seaming on the front & back-- very flattering!,4,1,0,General,Tops,Knits +1025,44,They feel amazing!,"These feel so soft and amazing. i especially love that the length work for me, just a tiny bit long and i am 5'4. i did find that they ran smaller than my pilcro and other jeans.",5,1,1,General,Bottoms,Jeans +8,36,Not what i expected,"I bought this suit based on the great reviews. i was so bummed when i tried it on. the top fit so well but the bottom kept bunching up. my torso is on the longer side so maybe that's why the bottoms keep coming up. every time i pulled the shorts down, the top would come down too, and vice versa. i am 5'5 and 120lbs and bought a 2 which is my normal size. i did like that the top had a bit of padding but that's the extent of what i liked about it. i will be returning it.",2,0,0,Initmates,Intimate,Swim +1059,28,Super cute - but they do run small,"I thought i'd be the exception - these pants are super cute - great fabric and color - kind of loved them - but they do run small - by about one size. just something to keep in mind while ordering. other than that - they are lovely, well-made pants.",5,1,0,General Petite,Bottoms,Pants +8,42,Such a nice bathing suit!,"This is my first one piece bathing suit, and i absolutely love it. the quality is great ! the color doesn't fade. +i usually wear a size 4 but i ordered a size 6 and it fits perfectly.",5,1,0,Initmates,Intimate,Swim +867,29,,I loved this top so much i bought both colors! soft and warm without being too thick or bulky.,5,1,1,General Petite,Tops,Knits +1037,38,"Great colors, runs small","Love the wine colored cords-- but i tried them and i was disappointed because my normal size was too small. i usually have to size down in pilcro pants but not these. (i'm an 8, and the 30 wasn't going to button!) i love the slight cropped flare! and the color! did i mention the color? but vanity wouldn't allow me to buy them. hopefully i just got a mislabeled pair!",4,1,0,General Petite,Bottoms,Jeans +860,65,Wonderful supima cotton top!,"This is a terrific top! the supima cotton is super-soft; the black, a deep black. i love that antho is listening, and that it's made in the usa! the lines and flow are beautiful and flattering. i bought the medium and am a reliable size 8 top/medium, 34f. the sleeves are nice and long. don't miss out on this classic tee, friends!",5,1,0,General,Tops,Knits +1075,42,Score!,Great dress that is very flattering. works well with flats or can be dressed up with heels. perfect for travel because the material doesn't wrinkle. would highly recommend this dress!,5,1,0,General,Dresses,Dresses +1037,45,Great pants,"These cords are great--lightweight for fl winters, and the bootcut flare bottom is super cute with ballet flats or booties. i am 5'10"" and typically a size 8; the size 29 fit perfectly. they have a little stretch to them, which is great. very flattering--wish i could order in more colors!!",5,1,1,General Petite,Bottoms,Jeans +828,69,"Nice drape, lovely navy","I've been looking for a navy shirt for some time and this is it. it's soft, drapes nicely but it's not as dressy as silk shirt would be. the navy is really blue, not a black-navy like so many. i've washed and dried it in the machines and it came out well. shrank just a little, but that made it perfect. for me it was true to size because i liked the slightly over-sized boyfriend fit, yet it still has shape. if you want a fitted shirt, go down a size or look for something else.",5,1,7,General Petite,Tops,Blouses +993,32,,,4,1,0,General,Bottoms,Skirts +828,39,"Beautiful color, nice fabric but ..","When i read all these positive reviews i did not hesitated, as i wanted good basics which will be good investment in me as looking good is always investment. well, i love blue color as i am blonde wih blue eyes and this color makes my eyes brighter and matches almost everything but..the design of the shirt is made oversize fit basically the shirt should not be dressed as fitted it's more relaxed fit so if you wear medium go head and order medium even if the small fits unless you want to look lik",3,0,0,General Petite,Tops,Blouses +828,39,Soft and comfortable while dressing up or down,The weight and drape of this shirt is wonderful. it is very comfortable while still being flattering. you could wear it with jeans and sneakers or heels. fits true to size and the navy color is very deep.,5,1,0,General Petite,Tops,Blouses +838,38,Unique,"I love this top! i just bought it on sale so the price was great but it would have been totally worth it paying full price! great quality, unique, and great fit. i look forward to wearing it all year!",5,1,0,General,Tops,Blouses +1081,20,Love it,"I absolutely love this dress! beautiful prints and design. i would say to size down though as it is rather flowy. i am normally a small and went to an xs, and it fits much better. this is definitely a keeper!",5,1,2,General,Dresses,Dresses +842,51,Alpinia top,"I really love the top but fyi it's really an open front vest and the under tank doesn't come with it. it's nice because you can mix it up with different colors underneath, but i think they should have noted that fact in case you weren't prepared to receive half of what you thought you were purchasing.",4,1,5,General,Tops,Blouses +1081,32,Loved this but too short for me,"I wish this dress was just a bit longer, it was beautifully made and i loved the colors, just too short for me.",4,1,0,General,Dresses,Dresses +828,29,Perfect fit,"This top is exactly what i was looking for. rich olive color and very versatile. great as a lightweight jacket, casual or dressed up button up. i purchased a medium and it fits great. 5'7"", broad shoulders, narrow waist, and full hips.",5,1,4,General Petite,Tops,Blouses +838,41,,Runs large. very boxy. white fabric on lower portion of the shirt extremely thin. it did not look as good as in in picture. very disappointing!,2,0,4,General,Tops,Blouses +1081,22,So pretty but too big,Just got this dress in an xl. i've never ordered from retailer before so i expected their clothes to run small. i was wrong. it's a beautiful high quality dress but i think it's just too big. i may end up exchanging it for a l. definitely size down in this dress!,3,1,0,General,Dresses,Dresses +1081,32,Perfect dress,"I love this dress so much - comfortable, flattering and really pretty. i wish i could buy this dress in every color!",5,1,4,General,Dresses,Dresses +828,57,Great staple shirt,"I love this shirt - it is very soft, and has a nice cut and drape. fits true to size. wish there were more colors!",5,1,0,General Petite,Tops,Blouses +1025,44,So soft,"Love these level 99 pants. ""newport"" style. dress them up or down. wearing mine today with a moth top i also got at a. looking kind of 70s chic. light jeans for a hot day.",5,1,3,General,Bottoms,Jeans +828,60,Great staple piece!,"I almost passed this in the store, but i am glad that i tried it! i really like that the fabric is so soft and has a ""blouse"" feel... and is machine washable! yay! love nice blouses that don't need to be dry cleaned! i would describe the material as thicker, so some may not like this for warmer weather. looks great with a long necklace like the minuet! i am typically a small and purchased this in an extra-small and still have plenty of room.",5,1,5,General Petite,Tops,Blouses +1135,66,Simply amazing,"In love! just wow. beautiful colors although they're dark you can still see all the variations. the flannel is light and not too heavy. there's visible black lace just below the shoulder. pretty buttons. ordered the large, my normal size and it's a perfect fit. roomy but not oversized. so well made i think this will be a favorite for years.",5,1,0,General,Trend,Trend +828,35,So soft and cuddly!,"I am 5'5"" normally about 120lb, but i'm about 145lb now at 9 months prego. i purchased the small. i can't resist buying retailer clothes, even though they might not fit me currently! however, because this shirt is drapey, it actually fits over my baby bump now and it will be perfect as a nursing shirt and then regular shirt later. it is so soft and great quality. will be cute dressed up for work or down with jeans!",5,1,2,General Petite,Tops,Blouses +401,23,Amazing,"I'm only 5'3"" so i ordered a small but i have a larger rear (size 4-6) end and bust (32dd). the small gave me plenty of room in the top. the bottom area was definitely meant for someone with a smaller butt but i don't feel over exposed or anything. the fabric on the bottom is thick which is really nice. it makes the body seem slim and keeps the white from being see through even when wet. the long sleeve design is also awesome! i have gotten numerous compliments on it. the top has an inner liner",5,1,1,Initmates,Intimate,Swim +993,48,Excellent,"I am 5'3"", 28/38 and got the sp. had no issues whatsoever, and love the colors.",5,1,2,General,Bottoms,Skirts +1081,37,,"I love this dress. like another reviewer said, it's the perfect teacher dress. i wore it on the first day of school. it's comfortable and flattering and super cute. i received lots of compliments.",5,1,0,General,Dresses,Dresses +571,40,Swingy and light,"Swing dresses are the holy grail of comfort. whatever's going on underneath doesn't matter because you're all arms and legs and billowy fun and this dress doesn't disappoint. beautiful, light and silky fabric with a pattern and color palate that can easily work all spring, summer and into the fall with some layers. a great, unique dress!",4,1,3,General,Trend,Trend +571,42,Swing into spring!,"This is an adorably gorgeous swing dress. the fabric is soft and flowy, and everything a swing dress should be. i was concerned that it would be too short, but it's the perfect length-fun while still being classy. a nice, chunky, eccentric bib necklace and nude sandal wedges would complete this outfit beautifully. highly recommend!",5,1,2,General,Trend,Trend +1083,27,"Beautiful dress, badly designed top!","I love the fabric and pattern of this dress so much that i decided to keep it (got it on mega sale), but i would have never paid full price or anything close. the armholes are enormous, showing bra and all. i am not particularly large chested (34c), and the buttons are stretched to gaping on me, even with the huge armholes. i have a cute red sweater coat that i will wear over it all fall, but i could not recommend it because of the poor cut design. + +pros: great pattern, fabric, pockets, true to",3,0,0,General,Dresses,Dresses +824,47,,Got lots of complements on this one. worn to work with skinny pants and a chunky necklace. classic look with a twist. would also look adorable with jeans as shown.,4,1,5,General Petite,Tops,Blouses +1083,41,Small in bust,"I am a 36dd, 10/12 in tops and 12/14 in bottoms. + +i tried both the navy/red pattern and the green polka dot. color and patterns on both are gorgeous. the fabric is very comfortable and a nice fit on the bottom half. size large fit perfectly in the waist however i had gapping across the bust. size xlarge fit ok in the front of the bust, but was loose in the back, gapping at the neck, and the waist was very loose. cute and comfy but only recommended for smaller busted gals.",3,0,0,General,Dresses,Dresses +37,26,,I ordered this in sand and loved it so much when i received it that i went back and ordered it in black as well. it is very flattering and sexy!,5,1,1,Initmates,Intimate,Intimates +1083,39,Flawed,The cut of the top portion of the dress is off. i tried on the s in-store & it bunched up in the breast area. i ordered a sp hoping the petite would fix the problem - nope - still bunched up. for reference i am a 34b. i would have kept the dress and given 5 stars if it wasn't for said flaw.,1,0,1,General,Dresses,Dresses +824,39,Super cute,"I, sadly, only noticed this top once on sale. i tried on the xs and it was just a bit big, i would need the petite, so i had to leave it behind (115 lbs, 30dd) - but it is adorable, can be dressed up and classy, casually with jeans, or sweetly, so many ways... love the subtle polka dots... oh well, i am sure i will find something similar i love!",5,1,1,General Petite,Tops,Blouses +865,34,Cream colored,The top is more of a cream color than an ivory. it's also a bit boxer than anticipated. fit is true to size.,2,1,0,General,Tops,Knits +1083,36,This was the retailer steal of a lifetime.,"I grabbed this dress in green when i saw it on sale (plus there was an additional percentage off that day online) and they had my size. while it's slightly loose in the body of the dress, that will probably tighten up after the first wash since it's rayon - then it should fit like a glove. i didn't experience the zipper issue - there is a hook & eye at the top to keep the fabric together, and the zipper was stiff so it won't unzip of its own volition. it is a tad bulky at the top of the zipper w",5,1,0,General,Dresses,Dresses +898,55,Classic,"I recently purchased this tunic and love it! its not to big, hangs just right, arm holes are not to big and the material is very comfortable! looks great with white jeans, shorts, or just jeans. i will get a lot of wear all year round! fits true to size. oh, slimming too!",5,1,6,General,Tops,Fine gauge +1083,40,Exactly what i was looking for,"I had been searching for an almost 50s style dress and i saw this one and instantly loved it. i wind up sending back so many things i get through retailer but this dress was everything i hoped it would be. i got the green one with the white dots. very comfortable, it just out a little with the hips because of the cut which is very 50s styling--it makes the waist look more narrow...",5,1,0,General,Dresses,Dresses +898,48,,,5,1,0,General,Tops,Fine gauge +864,57,Pretty but not as pictured,"I was expecting an ivory/white cardigan with some lace along the sides with a more slim fit. i am 138 lbs, 36b and normally wear a s or m so i ordered a m. the sweater is at least 1 or 2 sizes too large in my opinion and not at all a slim fit but more of boxy fit. + +the lace edges need to be trimmed up due to raw edges and strings hanging from them. also the color is difficult to detect online but i was surprised to see that it is ivory with gray stripes. not unpleasant but not as pictured. as",3,0,13,General,Tops,Knits +1083,53,As others have said...,"This is a very fetching little dress but the details of the fit, as described by other reviewers, is slightly off. i am 34d 5'5 and 140 lbs. the top fits perfectly but has an odd gap at the button placket. the fabric is nice enough but not exactly as i expected. one must have a very flat stomach as the top of the dress is not forgiving at all. the dress just wasn't me, i guess, so this one is going home to retailer...",3,0,0,General,Dresses,Dresses +824,85,,"This top is quite boxy and i was very disappointed with the color, it looked as if i'd washed it in filthy water. it's a very dingy white, needless to say it went back.",1,0,0,General Petite,Tops,Blouses +824,53,Cute shirt with unique pattern,"I love finding cute tops on sale that have great potential, but just need a little altering. i bought this one in my usual size medium and took it in 2 inches on both sides. it's still a looser fit, but much cuter. i didn't want to size down fearing it would be too tight in the shoulders and underarms. it's also a softer cotton fabric (similar to brushed cotton) rather than the crisp cotton most white button down shirts are made of.",4,1,2,General Petite,Tops,Blouses +824,33,Belia peplum top,"I really wanted this top to work but i felt that it was big and boxy. it's shorter in the front and longer in the back. the seam and peplum hit at a strange place and made me look disheveled. it's definitely worth trying on, but didn't fit me.",3,1,3,General Petite,Tops,Blouses +824,60,Love the 3/4 sleeves,"This is all around, a pretty feminine take on the white shirt- very cute! the dot pattern adds some drama without it being too over-board. this fit of this top is fairly generous (on me at least), but it doesn't have a lot of stretch. i could probably be either a s or xs, but took the xs to get more of a silhouette.",4,1,5,General Petite,Tops,Blouses +1083,48,"Comfortable, colorful, stylish!","This is a great dress! it's comfortable, easy care, and it looks fantastic. i love the bright green color, it's easy to wear alone, casually, or dressed up with cardigans or jackets. for my climate, this is a year-round piece. i can tone down the color and layer for cool seasons, and wear it alone in warm seasons.",5,1,0,General,Dresses,Dresses +1083,31,Lovely,This is a great dress; good quality fabric. the pattern & color are spot on. the silhouette is divine & would work on many body types. i also love the length!,5,1,0,General,Dresses,Dresses +824,36,Cute top,"Cute top, wish they had xxs. looks great with jeans and a fun necklace like pix. i got an xs (5'4 and 135 lbs) and it's still a little wider than i would prefer, but i'm not a skinny jeans gal so might look better with those. i decided to keep it since no xxs. wore all day with jeans for a more casual event, then added a skirt and high heels later for a theater show. super comfortable and looks great for all occasions.",4,1,2,General Petite,Tops,Blouses +1083,28,Unflattering,"I really love the pattern and the look on the model, and i thought i would love it. i ordered online, so i did not try on in store. when i tried it on, it has way too much fabric around the waist and skirt. it is thick fabric as well, and has a lining, and the waist has extra fabric for the design, and it has pockets, so it all adds up to be way too bulky. it is not flattering at all and made me look 10 pounds heavier. i am returning this dress. sad, because it looks so lovely on the model. i am",2,0,0,General,Dresses,Dresses +898,37,,"This tunic looks awesome in the picture. however, it is made of an uncomfortable sweater-like material not left of centers normal skin cotton. i was disappointed once i saw this in person. not a great material for summer.",2,0,5,General,Tops,Fine gauge +824,56,"Cute design, good quality but baggy & unflattering","Like a previous reviewer, i love white blouses -- nothing better. also love polka dots, so i grabbed this at my retailer store the minute i saw it without even trying it on. quality is good; nice material. maybe a little heavy for summer. but it really didn't work on me. i normally wear a small in tops, however with a 34d chest (5'5"" 122 lbs) i do sometimes get a bit of gapping with blouses at the chest. this does not gap but it just hangs on me. if it was a true peplum and fitted at the waist i t",3,0,4,General Petite,Tops,Blouses +1083,44,Completely wonky,"I got this in a l, and probably i am a m. however, the waist pretty much fit, but the bodice was baggy in a really bizarre way. i don't think a human could actually be shaped a way that would fit properly in this dress. this dress is well suited for a woman with a very large bust, but a small waist.",2,0,0,General,Dresses,Dresses +824,38,Flowy and feminine,This is my favorite top! i'm a 36d and usually wear a medium or large. i love this paired with skinny jeans or my level 99 blue shorts.,5,1,1,General Petite,Tops,Blouses +824,32,The key to cute fit is to size down,"I can see why the other reviewers think this top is huge in the waste - it's wide and not tailored at the waste ! the key to super cute fit is to size down - then it will look like it does on the model in the picture. i went with my regular medium and felt like i was wearing a giant moomoo, so i sized down and it immediately looked like it does on the model in the picture. it's super adorable in person, the collar and the polka dots make this playful yet very dressy and feminine and appropriate",5,1,2,General Petite,Tops,Blouses +865,32,Polyester lining? no.,"I have been in love with white lace tops lately. i saw in the description that there was a ""polyester lining"" - i'm really not into wearing a cami all the time as it takes away from the lace (my personal opinion). so i'm a little disappointed there there is no lining. very pretty. styling is a bit more ""swing"".",4,1,0,General,Tops,Knits +824,54,"Cute, great quality, nice fit","Love this top so much. it's very unique and one of those tops that's ""effortless"" to wear. i was expecting it to be boxy because of what other reviewers had written, but i find it to be flattering and comfortable. i'm glad i ordered the small because i do think the medium (my usual size) would have been too big.",5,1,0,General Petite,Tops,Blouses +1083,33,Classic work appropriate dress,"I am 5'4, 34c, with a pear shape. this dress fit me perfectly in a medium (30 inch natural waist). i had to use a safety pin to keep the bosom from gaping too much, so a smaller chested person would likely not have any issues. however, the material and design were perfectly pinup and work appropriate, so i was willing to make adjustments for it.",4,1,0,General,Dresses,Dresses +37,27,Beautiful,Beautiful nightie- looks like its really well made and fits really well. i'm normally a size 6-8 and the m was perfect. definitely recommend.,5,1,1,Initmates,Intimate,Intimates +824,58,Too boxy,"I really liked this top but when i tried it on it was big and too boxy. i considered ordering it in petite but the sales person said that the cut would be the same, boxy but shorter so i decided to pass.",3,0,2,General Petite,Tops,Blouses +37,41,Gorgeous!,"This fit perfectly. i am 5'7 , 138 pounds and ordered a small. i was very pleased with the way it draped over my body. i bought the black one.",5,1,2,Initmates,Intimate,Intimates +824,68,From a white shirt collector!,"I love white shirts and can never have enough in my closet. this one is gorgeous, and is way prettier in person than it looks on the model. it has a peplum bottom with sort of (but not quite)appliquã©d large polka dots all over. it is a pullover, so there are no buttons on the peplum. i normally wear xl in retailer tops unless they run very large. i tried on the large in the store and it fit but i knew if it shrank when i washed it i'd never be able to wear it again. i ordered the xl which came tod",5,1,13,General Petite,Tops,Blouses +1083,28,So close,"What a beautiful dress! after reading all the other reviews i ordered a size small petite. way too big. the dress sagged down so the waist was at my hips. there was a good 4 inches that i could've taken in. in addition the arm holes showed my entire side of my bra. even if i sized down to an xsp my bra would be visible. such a pity because i loved the blue motif. + +no issues with the zipper as others have mentioned + +for reference i'm 5'2"" 107 lbs average proportions.",3,0,0,General,Dresses,Dresses +37,25,,It is so beautiful and just as shown in the pictures! very elegant! i normally wear a small and it hung off me just a little.,5,1,1,Initmates,Intimate,Intimates +1083,61,Returned,"Wanted to love this- i did love the color and thought the style would work for anyone. but i tried it on and immediately took it off with a definite ""not keeping this."" the side zipper- a complaint by many, really made it uncomfortable. also, the detail under the bust would not lay flat and just looked odd. loved the material and definitely the green print. but i knew i would never wear it. just looked blah.",2,0,0,General,Dresses,Dresses +824,54,"Cute, alittle boxy","I was so excited for another fun white shirt. this was fits the bill! its cute, it does run alittle boxy maybe a hair large. it is also not white, white, has a touch of ivory. still, is a great top with skinny jeans. received a compliment yesterday while getting coffee, the lady was going online to get one for herself!",4,1,2,General Petite,Tops,Blouses +1104,25,Cute but can add love handles,I'm usually a small but the skirt of the dress was a bit loose and added love handles to my figure when i wear it. a smaller size would work better. it's cute and i love it but the material is form fitting and do a larger size isn't flattering. an xsmall for me,3,1,0,General,Dresses,Dresses +834,23,,"I have this top in the blue print and i love it. i'm super tempted to buy it in the black as well since i love it so much, but it might be a little pricy to have two of the same top. the only thing i will warn women about this top is that if you are busty then i would recommend going up a size. i wear a small in most retailer clothes but i went for a medium in this top. while the small did fit in al other areas, it looked like the buttons were going to pop at my bust.",5,1,0,General Petite,Tops,Blouses +831,35,Not my thing...,"This shirt was just really missing something for me. i originally liked the patter of the small dots all over the fabric, especially with the sleeves being more sheer than the rest of the blouse. i also am tending to gravitate toward clothes that hide my residual baby fat in my midsection. however, the tie is very high up on the neck and it made me feel like i was wearing a turtleneck. i rarely wear turtle necks because they make me feel like i am choking. in addition, the bow seemed to be too t",2,0,6,General,Tops,Blouses +831,34,So-so,"I had been eyeing this top for a while so i was so happy to see it go on sale! i was so excited that i went to my local retailer to try to purchase it right away. unfortunately this top did not fit me right. on the model it looks adorable, on me it was frumpy & ugly. the petite is sold out so i tried a regular medium (i'm usually in-between a medium & a large) & it fit me big & just didn't do anything to my figure. i agree with the other reviewers that the bow was too thin & flimsy & needed to be",3,0,2,General,Tops,Blouses +834,42,Great find!,"This top is adorable on. the online picture doesn't do it justice. a sales girl in my store had it on and i loved it and had to try it on. i got it in xs - black. i am 5'2"" and 115 lbs. it has the perfect drape to it. it might be too cool for winter but will be perfect when it warms up a little. this was my favorite thing i found in the store in months. love it.",5,1,3,General Petite,Tops,Blouses +1126,57,,"I took advantage of the promotional discount offered on this coat. i admired this soon as it appeared. hesitant to purchase without any reviews, nor had opportunity to visit the store so i took a chance. i love the pattern, burgundy wine faux fur collar, the fit. colors are true. i sized up which i recommend. glad i did, this will require thick sweater to provide any type of warmth if you are in a colder climate. length mid-knee. imo not worth full price. eleveness does design pretty coats!",5,1,0,General Petite,Jackets,Outerwear +834,59,Perfect blouse,"Fun , flirty, feminine!! love this blouse with jeans or with a skirt or leggings! i bought both blues i liked the first and after wearing it i ordered the navy with dots along with santuary black legging pants... just love !!!highly recommend. easy to wear.",5,1,1,General Petite,Tops,Blouses +831,32,Sweet,"I saw this in the rockefeller store and picked it right up. i don't wear red so this shade or burgundy was more my color. the fit is perfect (sometimes buy a m at retailer but the small was perfect, which is what i'd wear at in most brands). i was slightly shocked it cost more than the other tops i bought, but it was too pretty to put back. wore with dark flare jeans to dinner that very night!",5,1,2,General,Tops,Blouses +975,60,Perfect spring jacket!,"I love the style of this jacket! +i will be curious to see how it holds up in the rain. +it's very well made and has cute details. +it does run large.",5,1,4,General,Jackets,Jackets +528,35,Cute but baggy!,"I really wanted to love this romper and couldn't wait to try it on. it's super cute and love the material but once on the top portion is way too baggy even after cinching the waist. if i pulled the waist all the way down it looks smoother and nice, but if it sits at my natural waist, the back balloons out and it's unflattering. it's too bad, i love the print and ease of this design.",3,0,1,General,Bottoms,Shorts +1104,40,,"This dress would have been perfect in a medium petite. beautiful dress, wish i had sized down",3,1,0,General,Dresses,Dresses +831,59,It's okay,"Ahhh, i should have listened to previous reviews. indeed, this top runs very large. style wise, it is ok. i would say you could do much better at retailer.",3,0,1,General,Tops,Blouses +1104,67,Little black winter dress,"I found this dress to be perfect for the winter season. its warm, sleek, and classy. this dress is made in the usa so it is worth the price. i love the opening on the back and find it be flattering. it can be worn with tights for the winter and easily worn without in the summer. a wise investment for my closet!",4,1,0,General,Dresses,Dresses +528,38,Cute and comfy,Very cute and true to size if not just a little large up top.,4,1,0,General,Bottoms,Shorts +834,57,Beautiful shirt,Fits true to size. very feminine. it's great with skinny jeans. not quite the length of tunic,4,1,0,General Petite,Tops,Blouses +528,54,Best romper!,"I love this romper so much! i'm a tall girl (5'9), so often times its hard for me to find a romper that isn't too short. the length on this is perfect. this romper is an adorable design and the fit is great. the material is a great quality, and its really comfortable! i'm 5'9 34b bra, i usually range between an xs and s, i went with the s on this one and it fits great! i definitely recommend this if you're thinking about it.",5,1,0,General,Bottoms,Shorts +834,31,So flattering!,"I love love love this top. i love it so much i bought it in two different colors so i can wear it more often. i think it's feminine, chic, and classic. i've worn it several times and i each time i've had more than one person comment on it. i normally wear a small but they only had it in an extra small and i actually like how it fits which is why i think it runs a little large. the only place that it is a bit small is the cuffs at the end of the sleeves. i usually just unbutton those anyway so no",5,1,0,General Petite,Tops,Blouses +872,67,Great for summer,"I just got this top and can't wait to wear it for spring/summer! it is a lovely lightweight material and hangs loosely and comfortably. it definitely runs quite large so i would at the very least consider ordering on the small side of what you normally wear if not sizing down one completely. this is coming from someone who usually likes tops on the roomier side, so trust me on this! overall, i highly recommend this top if you're looking for a muted but unique, comfy top for the warmer months ahe",4,1,2,General Petite,Tops,Knits +831,31,Nice,"Darling top, lovely dark rich raspberry red color. runs very large so definitely size down. i ordered the s and m. i am usually m but went with the small. the s was smaller in the shoulders of course but not terribly- it was only an issue when i hugged myself. in the picture it looks like it fits her very well. i don't feel like it fits me quite as well- it's borderline maternity-ish... just a little too large and should come in at the waist just a touch more. i agree the bow i.e. seems weak (fa",4,1,1,General,Tops,Blouses +871,70,,,2,0,0,General,Tops,Knits +834,62,Every color!,"I bought this in every color, and would probably keep buying it if there were others - the fit is loose yet flattering, quality is good, feminine pretty ruffles that don't add bulk, and i love that it makes me feel pretty and put-together post-baby.",5,1,0,General Petite,Tops,Blouses +528,62,Totally adorable,"This romper is so cute and comfy! the fabric is soft and a beautiful shade of blue with light blue dots (true to the photos). i sometimes have issues with rompers due to my long torso, but this fits great, with shorts hitting about the same as the model image (i'm 5'7""). i really love the v-neck on this too - it's simple, but a really flattering cut that i don't think would expose even ladies with a larger chest. definitely a nice everyday piece - excited to wear it on a hot summer day at the pa",5,1,2,General,Bottoms,Shorts +831,59,,"Size down, runs a bit large, sleeves are cute and overall a pretty piece",4,1,15,General,Tops,Blouses +1104,36,Simple elegance,"Little clack dress. classic shape but is pretty low in the v neck. i am busty (34dd) and need a ""push-up"" bra to make the neckline close. it's very easy to wear and super comfy.",4,1,0,General,Dresses,Dresses +1116,20,I can wear this anywhere,"I love this sweater coat. i just put on a pair of leggings and boots and i'm good to go. it's warm and flattering and comfortable and i can wear it anywhere, it works at the office, out to eat, shopping or even just hanging around. + +fit: some of the other comments mention the small waist. this is a fitted sweater, not a roomy piece for layering over other pieces. i like the fit because i get the warmth of a big sweater without the bulk. the fit is similar to dresses that i have purchased at anth",4,1,2,General,Jackets,Outerwear +834,49,,I absolutely love this top. i'm always either an x-small or 0/2 in mauve. i think this top runs small. i tried on an extra small and it was too tight in the chest. i'm average in bust.,5,1,1,General Petite,Tops,Blouses +831,52,Disappointed,I'd been wanting the blouse for quite a while but hesitated based on reading reviews. when it went on sale i thought i'd try but it was like a tent on me. the fabric was pretty but just hung without any resemblance to photo. too bad because the color was gorgeous & could have been a favorite of looked like photo.,3,0,1,General,Tops,Blouses +831,37,,"This blouse is a beautiful color and i love the dot design and texture. however, it is a much baggier fit than i expected based on the photo, and it looks a little bit like a maternity shirt on me. i usually wear a size 8 or 10 and i bought a size medium.",3,0,1,General,Tops,Blouses +528,31,Great shape,"This romper has a great shape! you know that long saggy grandma butt that some rompers give you....this one is not that! it's cute and adorable and those long stitched pockets are so flattering to us short folk! i'm 5'4"" on a good day, 125#, 32g and this fits great. i picked up an xs (i'm never an xs) and it was very flattering. i'm usually a 4/27 in pants for reference. the v-neck and the way the shoulder seams start to angle in at the top make this very flattering. it is long enough for me to",5,1,1,General,Bottoms,Shorts +834,56,Adorable,Love this tunic. i bought it in black and wore it with skinny jeans and flat black boots and received many compliments. can be dressed up for work or worn with distressed jeans on the weekend.,5,1,0,General Petite,Tops,Blouses +975,39,"Cute enough, will it protect>?","I have been needing a rain coat and saw this one on sale, so decided to try it on. i do wish it was more ""fitted"", but it is pretty cute. the embroidered detail is nice. too bad the xs petite is sold out. i have no idea if it will hold to the rain though...",4,1,1,General,Jackets,Jackets +834,39,Nice and feminine flowy top,"This top is not bmeant to be super fitted, it is flowy and ""romantic"". i have ordered the petite to decide which size to keep, but my usual xs was fine, wil ljsut compare length. i was also curious about hte smaller size, but didn't order it, so i wil lnever know. +the only color i saw in person is the black on, and it is calssic, so i went with it. shall wait for petite verdict!",5,1,11,General Petite,Tops,Blouses +831,39,Petite on this one (5 foot one and a half lol),"So i tried on the regular size in the store, and love the top, but looked too big on me. + +color is gorgeous and rich, the sheer adds a little whimsical to it, and i love the tie-neck trend of lately. would go nicely with jeans (skinny or flare) or trousers, not sure about a skirt though,.",5,1,7,General,Tops,Blouses +834,57,Great fit and flow,"Love this flowing, cute top! casual, but can be easily dressed up. great fit.",5,1,2,General Petite,Tops,Blouses +1116,63,,This sweater coat is very bulky and has an odd and unflattering shape when on.,2,0,1,General,Jackets,Outerwear +1116,49,Very nice jacket for petites,I usually wear an xxsp in retailer brands. i bought this jacket in a regular size 0 and it fits like a glove. even the sleeves are the right length. it really accents my narrow waist. i imagine it runs very small for those who wear regular sizes. if you are petite this is the jacket for you. the jacket is unlined so i cant wear it in cold weather. it is very nice over a dress with black boots and with skinny jeans. i receive complements every time i wear this item!,4,1,0,General,Jackets,Outerwear +1104,57,Way too short,"I'm 5'7"", 130 lbs. i ordered a medium-regular. the dress fell three inches above my knees. this model is taller than i am, and it falls to her knees....doesn't make sense. i think retailer sends petites in place of regular.",1,0,0,General,Dresses,Dresses +1104,29,Buy if you have no fat,"Although i am small (size xs on top, 27 waist) this dress is not flattering if have any fat on your body....i would not recommend it.",3,0,0,General,Dresses,Dresses +1104,63,Not for me,"I'm usually a petite, but bought in regular xs. perhaps a petite would have worked better, but this was way too low cut in front and back. i did not like the way it hung on me at all. i'm 5;2"" and 105 lbs, but regular xs normally fits better than this did. i could barely keep the shoulders from slipping off. sorry, it's a return for me.",3,0,0,General,Dresses,Dresses +834,46,"So comfortable, flattering & with a great print","I ordered the navy in size xl and it fits me just as it does the model. this top is definitely one of my favorite retailer purchases. the cut is very flattering. i love how they designed the tunic to have a closer fit on top, the arms and through the top of the waist and then flow out. i'm a pear-shape and worried the bottom layer might accent my hips, but it all flows really nicely. the arms aren't tight. they're not loose but aren't too poofy. + +the material washed well too, without static (a pro",5,1,28,General Petite,Tops,Blouses +1116,54,Cute but super small,I really love this sweater. i normally wear an 8 and bought a 12. even it is a little snug. but it really is very cute! can't wait to wear it with black leggings and boots.,4,1,1,General,Jackets,Outerwear +917,42,,"While this is gorgeous in person, if you have a larger bust the v-neck will look really weird. because its so deep, it gets skewed(i'm a d cup). if only the v were 1 or 2 inches higher! unfortunately it's going back.",3,1,1,General,Tops,Fine gauge +831,38,Cute blouse,"Bought it on sale and i am keeping it. it is well made an the material seems to be of good quality. however, i believe this would be more flattering on someone less curvy - less hips, smaller bust - as it makes me look slightly pregnant. still, i am keeping it to use on those days i just don't feel like dressing up for work. i bought a large (i'm a 36-38c), but i think i could've gotten away with a medium.",3,1,0,General,Tops,Blouses +975,44,,I like this raincoat but it runs large. exchanging for a smaller size.,4,1,11,General Petite,Jackets,Jackets +834,63,Pretty & comfy,"I bought this in blue/black. it is so pretty. i get so many compliments. i'm a size 4/6 but large busted. i bought this in a medium & it's perfect. just the right amount of fullness. i'm 5'4"" so the length for me is perfect w/leggings.",5,1,2,General,Tops,Blouses +834,25,Please get this top!,"I purchased this amazing tunic in-store in the plaid pattern, and couldn't be more thrilled with it. i can already see myself overwearing it, because it's so pretty and easy. i typically wear an xs, and sometimes petite styles. the regular small fits very well. i'm sure the xs would have been alright, but i like the way my forearms don't feel constricted where it buttons, and sizing up seemed to help with gaping by the button holes. i love the way this looks with a variety bottoms and shoes. it",5,1,0,General,Tops,Blouses +834,63,Beautiful construction,"This garment is beautiful because the fabric has great drape to it. i am probably between a small and xsmall, but ordered the xsmall. it is snug, but i have decided to keep it and can wear a cami underneath, just in case the buttons gap just a little. i am concerned that going up a size with leave the neck area too gaping. it is also a little snug in the elbow area.",5,1,0,General,Tops,Blouses +831,23,Lovely,"This is such a lovely blouse! the color is true to the picture. i am a bigger girl--5'9"" and size 12, and i bought the large. the fit was beautiful--it was forgiving on my less-than-perfect midsection, but wasn't billowy at all. it did not pull around the shoulders or bust the way some button-up blouses do.",5,1,14,General,Tops,Blouses +1104,24,Cute but not on me,This dress looks so elegant and perfect for transition from work to night. it looks great on the model but it looked terrible on my. it's a lovely material but the middle added girth to my stomach area which i did not care for.,3,0,0,General,Dresses,Dresses +834,62,Great top,This top is perfect! very comfortable and flattering for any body type.,5,1,0,General,Tops,Blouses +1104,25,,"I was disappointed when the dress came in the mail. it was much shorter on my than on the model in the picture. (i am 5'5"") the detail of the dress and fabric shown in the picture is not as prominent in person which was also disappointing. the dress is just average. i didn't not return the dress...it looks much better on my younger sister (who is the same height) so i gave it to her. i guess it's just not the right dress for me.",3,1,0,General,Dresses,Dresses +834,70,This tunic fits perfectly!,This tunic is beautiful! the color is a vibrant blue. i can wear it with jeans or dress it up with my white linen capris! i ordered the small and it fits me perfectly!!!,5,1,0,General,Tops,Blouses +834,32,,Love this top!! so comfy and flattering. i ordered the black and the blue and i am itching to get the red/purple one too!,5,1,1,General,Tops,Blouses +831,49,Pretty- soft fabric and nice color.,I tried this in the store and i liked it. the color is very pretty and the fabric is soft and drapey and feels like good quality. i like the little subtle dots. i ultimately did not buy it because the tie at the throat is not my style and because i just don't need this kind of piece enough in my wardrobe at the moment. but it is a very nice top and i would recommend it if you like the color and style.,5,1,7,General,Tops,Blouses +1104,33,For the right body type it could work,"I got this number in the turquoise and i hadn't expected the skirt to be ribbed! are they all like that? retailer was out of the petites, so i sized down in a regular instead -- yeah, that didn't work. i definitely needed the petite version and perhaps should have even sized up. the bust was scandelously tight. in the end the dress wasn't flattering on my figure the way this style usually is on me -- the proportions were off somehow. it's just not one of those dresses that curvy petite girls shoul",4,1,0,General,Dresses,Dresses +975,24,Way too big,After reading the previous reviews i thought sizing down would be a great idea. as soon as i pulled it out of the bag i knew that the xs/s was still wayyy too big. for reference i am 5'3 and a 34ddd and usually wear an 8 but this thing was enormous. it was shapeless and boxy but done so horribly it looked like i was pregnant. it has an adjustable draw string at the bottom which helps to make you look like a balloon. such a disappointment. the design was lovely and it looked very high quality and,1,0,3,General Petite,Jackets,Jackets +834,58,Perfect!,"Bought this shirt in the colorful polka dot print and i'm obsessed! like previous reviews mentioned, it runs a little small in the chest. i'm normally a medium but am a 36c so ordered the large and it fits perfect! with the way the buttons are spaced i think all sizes will pull a little no matter what. it's a beautiful shirt and i plan on ordering the blue one as well.",5,1,0,General,Tops,Blouses +1104,36,Flattering feminine dress,"This dress hits flatters the whole body. love the three quarter sleeves, love the relaxed fit of the bottom half. love how it is fitted, body conscious around bust. super flattering. the teal color is particularly gorgeous. a color that would suit a lot of different skin tones. this is a no-brainer dress that you will reach for in your closet every single time.",5,1,1,General,Dresses,Dresses +975,30,Wish this worked!,"This looks great on the model but when it arrived, i couldn't believe it was the same jacket. it looks a bit like a really loose garbage bag on me and no amount of adjusting drawstrings is going to fix it. i really wanted to like it, but even the xs/s was too baggy. also a bit worried based on other reviews that it isn't actually a rain jacket and wont keep you dry.",2,0,2,General Petite,Jackets,Jackets +1104,40,,I never write reviews,3,0,0,General,Dresses,Dresses +1104,27,Flattering if you have a tummy!,"I've got the post-baby bulge and this dress makes me the hottest i've looked in a long time! fitted, but skimming where i don't want to be accentuated - it's a rare dress that can pull this off! the cleavage is there, so i think it's more of a night dress, but i'd wear it with a sweater during the day. very comfortable.",5,1,1,General,Dresses,Dresses +1104,42,Super soft and comfortable,I'm a 34c and 136 lbs. i bought this in m in two colors because i love it so much! the fit is so flattering and the material is so soft and comfortable. i continue to get the best quality and fitting dresses from retailer!,5,1,1,General,Dresses,Dresses +1116,53,Extremely disappointed,"Saw this on line and decided to ""splurge"" for the holidays. arrived today and is going right back. runs very small especially in the waist. trim is a cheap ribbed fabric with a zipper. fabric is not elegant looking as in the picture, appears cheap and very itchy. sooooo disappointed.",1,0,11,General,Jackets,Outerwear +834,24,Romantic peasant top,"I bought this top in the black motif and it is easily one of my new go to tops. can wear it to brunch, work, and happy hours, it always looks good! such a great buy.",5,1,0,General,Tops,Blouses +1104,27,Not for curvy hips,"This dress was ok - i thought the fabric was soft, but not my favorite. it's a pull on dress that would be easy to dress up or down. but, i have bigger hips and this dress was really not flattering on my - would be better on a different body type.",3,0,0,General,Dresses,Dresses +831,44,,"I love the fabric however the overall fit did not work for me. +i think the arms are much smaller than the overall shirt.",3,0,0,General,Tops,Blouses +834,28,My new favorite shirt,"This is one of the best things i have ever bought from anrtho. it is very flattering, and i always get compliments when i wear it. must have!",5,1,0,General,Tops,Blouses +528,50,Love this romper,"I ordered both a small and a medium because i have lost weight and seem to be in between sizes currently. lately i am anywhere from a 6 to a 10 in most retailer sizes. almost 5'4"" and @140 lbs. i could have gotten away with the small. but my bust size is 36c/d. the small fit but didn't hang as well or feel as comfortable around the chest as the medium. i agree with a previous reviewer that this romper does have a tendency to hang awkwardly at the waist until and unless you pull the drawstring tigh",4,1,0,General,Bottoms,Shorts +834,30,Great top for pregnant women:),I recently bought this top in both the black and blue motifs and love it! i'm currently 7 months pregnant and this top provides great coverage for the bump. i agree with another reviewer that noted that it is a little tight in the bust as i had to go up a size for that reason.,5,1,0,General,Tops,Blouses +917,26,Love love love,"This is the rare metallic that doesn't itch - really well made (italy) - lightweight - it's a total go! + +i usually wear a large - but i bought a medium (i tried it on in the dressing room - i think it looks better 'fit' than oversized preppy - i wear a 38b bra / size 12",5,1,0,General,Tops,Fine gauge +1116,34,Runs small,"I typically wear either a 2 or 4 and had to size up with this coat. the 6 fit, but i decided to go with an 8 to ensure it'd fit with layers. the sleeves aren't lined, so it's a little itchy against bare arms. it's really flattering and i love the pattern!",4,1,9,General,Jackets,Outerwear +1104,41,Just meh,I was excited about this - - such a lovely look online. but on me...it was just meh. i'm a little heavy right now so that could be playing into it...but i will say i loved the top part of the dress. very flattering and subtly sexy. but the bottom..it just hangs like a rag. it needs either more material for a swishier effect...or it needs to be a different material. or maybe knit just doesn't work on me in the form of a dress! the knit is nice but i kind of also feel like it is chintzy...i can't,3,0,1,General,Dresses,Dresses +831,25,Strange shirt,"This shirt was strange. the bow tie was too thin and the dots were too dominant on the shirt. it looks okay in the model picture, but when i tried it on the bow and the dots just clashed.",3,0,0,General,Tops,Blouses +834,45,,"Hands down, my new favorite top! love the look of this top! i would say this runs a little big. i definitely could have sized down. however, the flowy style of my usual retailer size works for me in this piece.",5,1,0,General,Tops,Blouses +1104,32,Ok dress,"The dress fits true to size and is pretty comfortable. i did look kinda matronly with my 34d chest. it's a good basic to have on your closet, but i ended up returning the one i bought. it didn't feel special enough to keep.",3,1,0,General,Dresses,Dresses +1104,45,Perfect comfy black dress,I got this dress to wear for christmas and it is perfect. looks great and is very comfy. low cut in front and back that is not too revealing and allows for perfect bra coverages. i got it in a small small.,5,1,0,General,Dresses,Dresses +834,63,,"I love maeve tops. i love the material and feel of this brand. when i saw the new tops that came out i ran to my local store to try one on. i'm usually a large in a top, once in a while an xl. they only had a large to try so i tried it in the black motif. +i could barely get the top on. it looked like i was missing 1/2 of the top. i doubled checked the size and it was a large. +it's a shame, the top is really cute. if you are the least bit broad or busty, go up a size or two. if you are usually a",3,0,3,General,Tops,Blouses +528,40,Very cute!,"I have been looking at rompers for a while but being that i'm 40, a lot of stores seem to carry rompers that are super short. i think these are the perfect length for summer (and for me!). it's cute! i am 5'5"" and 110 pounds and i ordered the xs. i docked one start because the top part seems to have a bit of excess fabric. if i pull the waist up, the top 1/2 balloons out a little awkwardly. but if i pull the shorts down so that the drawstring is resting lower than my natural waist, it looks okay",4,1,2,General,Bottoms,Shorts +834,67,Pretty in blue,This top is beautiful in color and fabric. unfortunately just didn't work in the breast line. gapped and there was just nothing i could do to make it hang correctly. i'm not really large in the chest area (38b) but the large just didn't work. had to send it back.,3,1,0,General,Tops,Blouses +1104,57,,Extremely soft and comfortable. fit very well. should travel really well.,5,1,1,General,Dresses,Dresses +1104,27,Really pretty but runs small,I loved this but it made my stomach look a lot bigger then it is. i would recommend going up a size in it,4,1,0,General,Dresses,Dresses +528,53,On the fence about this one,"I find this romper looks much more crisp on the picure than in real life. i find it more slouchier and shapeless even though i went with my ""smaller size"". the material is very soft, but thin, that is maybe the reason. i am not sure if i am going to keep. i wanted a bit more stunning look for my money. not saying this might be a great romper for somebody else however",4,1,0,General,Bottoms,Shorts +834,36,Perfect in every way!,"I love this top so much. i dare say it is one of my favorite retailer purchases to date. i got it in the blue and it is really magical! i get compliments every time i wear it. i have a pair of dressier black leggings that i never know what to wear with, i'm not really a leggings person. but this tunic is exactly the piece! plus, this tunic comes with pockets. what's better than that??!",5,1,0,General,Tops,Blouses +975,34,Nice but large/boxy,I'm normally a 10/12 and ordered the m/l. the body was a little big but ok. the arms are really wide. there are snaps to make them tighter but it doesn't do much. i do like the embroidery. it's an ok jacket but the fit could have been better.,3,1,0,General Petite,Jackets,Jackets +834,59,Colorful dots,"The tunic shown here (black and white) is the style i purchased, but not the color scheme. the one i got has a navy background with colorful large dots. the top is very cute, but has one drawback. it has covered buttons all the way down...and the top area gaps a bit so you can see your bra. i remedied the situation by sewing down the area on the placket around the top two buttons. worked like a charm! my new favorite top.",4,1,6,General,Tops,Blouses +831,28,,"I'm worried about the quality of the shirt. it looks like it may snag easily. i've decided to keep it, so hopefully i will get some use out of it. in hindsight i would have not bought it when considering the price and quality of the shirt.",2,0,0,General,Tops,Blouses +1104,32,Wonderfully snug yet stretchy and elegant,"I hate buying dresses because i rarely find one that fits well. i'm very petite on top (xsmall) and small/med on bottom, 5'8"". usually dresses are tight on my hips & thighs and loose up top. this fairly lightweight yet warm dress is such a winner! form-fitting yet stretchy and forgiving in all the right places. the x-small and small both fit pretty well but i decided to go with the x-small on this one. i think this will be a staple winter/fall dress. loved the fit so much i bought it in the peac",5,1,2,General,Dresses,Dresses +1126,32,Beautiful coat but thin fabric,"This coat looks great, but the fabric is thin--only partly wool. the snaps also don&amp;#39;t stay shut very well; i&amp;#39;ll probably add a hook-and-eye closure for security. despite its flaws, it looks good enough that it&amp;#39;s a keeper (when purchased on-sale).",4,1,0,General Petite,Jackets,Outerwear +936,44,,,5,1,0,General,Tops,Sweaters +975,52,Super cute!,This is the perfect jacket to throw on for errands around town. picture doesn't do it justice...very unique and stylish. love the three-quarter sleeves for this time of year.,5,1,0,General Petite,Jackets,Jackets +834,52,Great shape and flow,"This is a great piece, which has flow, grace, and charm. the blue is a beautiful color! i love it and received numerous complements after wearing it one time.",5,1,2,General,Tops,Blouses +1104,34,,"The dress is well-made and very nice, just didn't suit all of my lumps and bumps. wasn't super forgiving. also, i'm 5'8"" and it was a bit shorter than i expected. otherwise, a great dress!",4,1,0,General,Dresses,Dresses +1116,61,Cute but too many fit/fabric issues,"It's a cute topper. it fits nicely through the shoulders and arms, and because of the a-line, through the bottom. but the chest is 3 sizes too small and i don't have a big chest. the fabric is very scratchy, and mine arrived unbuttoned and unzipped, and i suspect it had been worn. + +going back. not tracy reese's best piece.",2,0,0,General,Jackets,Outerwear +1104,35,Great dress,Looks professional but wears like a sweater! so comfy!,5,1,0,General,Dresses,Dresses +1104,47,Great go to dress,This dress is comfortable and a great go to dress to wear to work and then after for drinks with friends.,5,1,0,General,Dresses,Dresses +834,28,Amazing!,"I love this tunic, super flattering + long enough (if your no super tall like me) to wear with leggings! it does run a little big, i like tops a little looser on me so i didn't mind that. i ordered a small- if your typically a small and prefer more fitted tops i would suggest sizing down. + +i bought the blue tunic first (the pictures don't do the textile design justice!) i loved it so much i went back online and purchased this tunic in black!!! + +thanks retailer for being awesome!",5,1,0,General,Tops,Blouses +975,64,More like a rain poncho,"I don't mind loose-fitting clothing, but to say that this product runs large is an understatement. no amount of pulling, tying, pinching could help me get this jacket to fall the way it does on the model in the photo. the arm holes are a foot in diameter for artistic purposes, and the jacket itself is meant to flow far away from the body, i guess. if you try to taper it in with the strings, then end result resembles a rounded beach ball. very disappointed, especially since the design on the fabr",3,0,5,General Petite,Jackets,Jackets +834,50,Fun and flirty,"I purchased this top in the black color and absolutely love it! it is very fun and can be either dressed up or down. i would wear this to work as well as out and about around town. it is worn loose, so i ordered a size down. i cannot wait to wear it through spring and summer!",5,1,0,General,Tops,Blouses +834,35,Flattering,"I ordered this in the navy and the red/blue plaid. fit- i'm usually a 10 m. after reading reviews, i ordered a l and it was the right choice. it's silky and covers up my postpartum middle nicely. i was worried the pleats would accentuate that part of me, but it does not at all. print- love the plaid. not sure about the navy with diff color dots. that one is probably going back.",5,1,0,General,Tops,Blouses +872,25,Perfect for layering,"While this shirt does run a little large, i am 5' 0"" and ordered a petite small, it is perfect for layering under a loose cardigan. can be dressed up or down- looking forward to wearing it this summer!",5,1,1,General Petite,Tops,Knits +831,32,Cute top,I was pleasantly surprised to find this piece in stock at my local store. it's a very comfortable top with plenty of room. the only criticism i have regarding it is that it's a bit maternity-esque. bought it in an xs.,4,1,3,General,Tops,Blouses +984,31,Nice cotton bomber jacket,I initially ordered the grey in a m per my usual sizing but on trying it on realized that the m was a bit frumpy and there was a lot of additional fabric at the back which tended to wrinkle very easily because it is cotton. i sized down to a s and was much happier with the fit and the overall look of the jacket. but i think this jacket may need some ironing once in a while. the grey color is a darker grey as per the product description and the pictures.,4,1,4,General,Jackets,Jackets +1086,28,Iconic retailer,"I'm always thrilled to find a piece like this at retailer - just received my dress and couldn't be happier! beautifully made and fits absolutely perfectly. i'm 5'5"" 118 lbs. and am very comfortable in the small (with a little breathing room). length is perfect with heels. planning to wear it with sandals to a birthday party this month and then into fall and winter with boots and a top layer. if you're hesitating, go for it!",5,1,1,General,Dresses,Dresses +1095,27,"Pretty, but stiff","I am 5'7, 115 lbs, and tried on a 0. the dress (red) looked great and i loved how it had a slimming effect, and i could wear this to work and the length is appropriate. it fit great, but it was a pain to get out of for some reason. i tried to get out of it through the bottom, but it kept getting stuck on my hips. i eventually got it out through the head, but it was such a pain that i just got frustrated. the fabric is okay- i expected a slightly better quality fabric for the price.",4,0,0,General,Dresses,Dresses +984,25,Cropped fit,The jacket was nice and soft but it was too short on my torso with a cropped fit which i'm not a fan of that style. i returned it.,3,0,0,General,Jackets,Jackets +1086,32,Comfy casual dress,"I love how comfortable this dress is, it does run a little large so i would order a size down. i'm 5'3"" and around 125lbs and had to exchange the xsp for an xxsp.",5,1,0,General,Dresses,Dresses +1086,72,Pockets not always good,"This tunic is perfect from the waist up. the problems comes in with the pockets. they make the tunic bulky around the hips and who needs bulk there? the tunic is a little more gray in person than what it appears to be in the photo. i usually wear an 8 or a medium. ordered this tunic in a medium and i think it runs just a little big. i may try this in a small. if that doesn't work, i may consider having the pockets removed in the medium. just wish is wasn't so pricey for all the extra work. but i",4,1,7,General,Dresses,Dresses +836,25,,"I agree a few others, it may be a little bit boxy but i don't even care because it's so beautiful! definitely a top i'm going to love long after this floral craze the fashion world is in begins to fade.",5,1,0,General,Tops,Blouses +927,45,Unique and beautiful but no pockets!,"First off, the moment i put on, i got tons of compliments from complete strangers. it truly is a unique and pretty. i am 5'3 and originally wanted the med petite for length. they were sold out so i got the xs in the regular size. that worked out good. it is a bit snug around the shoulders but not enough to go up a size. overall, xs was a good alternative to medium petite.",5,1,1,General Petite,Tops,Sweaters +984,61,,"I'm returning this jacket. i tried it on after it was delivered, and was happy with the weight, cut, and color, although it's more dusty mauve than it looks in the picture. however, the stitching and the zipper are of such poor quality that i doubt it will last very long. i actually can't get the zipper to zip at all. it's very rough and lightweight, and i'm afraid if i keep trying to force it i'll just end up breaking it. sorry to say yet another retailer item turns out to be poor quality. thi",2,0,2,General,Jackets,Jackets +927,44,Amazing cardigan - getting tons of compliments!,"I'm so happy i purchased this cardigan!! every time i've worn it i've actually gotten compliments, from both women and men:) i was slightly undecided at first due to it's quite pricey, but i think the quality is amazing and the pattern will actually last a long time as a keeper, not just a quick trend!! i'm so happy i snagged it before it ran out!!\ i have quite muscular upper arms, and the medium fits me well. the sleeves do have some give in them, and even though i'm also broad across my shoul",5,1,0,General Petite,Tops,Sweaters +1086,58,Simply perfect!,"This was a winner retailer!!!!! bought it with my birthday discount. a bit pricey, but when i wore it (over and over again) i can see why. the material is so soft, flows beautifully and is just the right length on me. i am petite (5'3"") slender at 115 and i wear it with wedge heels, just like the model. i did iron it when i took it out of the package but have not had to iron it again. + +i have received many compliments on this dress. bought the washed denim look. + +thank you!!!!",5,1,0,General,Dresses,Dresses +984,62,Is every day too much?,"I got this in peach, and am not ashamed to say that i wore it almost every day in the past week - over a tee, over a dress, over a tunic...it looks good with everything! my normal size s is on the looser side compared to my other retailer bombers, but i like it for layering purposes. so soft and comfy...i have a feeling i'm going to need a backup of this one!",5,1,2,General,Jackets,Jackets +1086,62,Love!,"This tunic fits exactly as shown and is so comfortable. the fabric is soft and buttery, and the lace up front is a awesome detail. happy that i went with the non-denim color because it's a gorgeous rich color that i think will transition well from season to season. love a good, cutr machine-washable tunic!",5,1,20,General,Dresses,Dresses +927,33,Gorgeous!!,"This is a very ""retailer "" piece. i love it! i wish retailer would bring back more pieces like this! anyway, the details on this sweater are so special! the sweater is sturdier and warmer than i thought it would be which is a plus. i love the drape it has to it down the front. one slight dislike is that the shoulders seem a little tight in my usual small. but, considering this sweater is completely sold out i will make it work! love it!",5,1,0,General Petite,Tops,Sweaters +836,31,Must see detail,"The pictures of this blouse simply don't do it justice. the floral details are gorgeous. i liked it when i ordered it, but loved it on. i am 5'5"", 135lbs, curvy/athletic frame, ordered the size 4 and it fit perfectly.",5,1,1,General,Tops,Blouses +927,60,Just beautiful,I was hesitant to order this but i am really glad i did. it is just beautiful. the quality is excellent. i would like it to have more snaps so i am going to add them. i can't wait to wear it.,5,1,0,General Petite,Tops,Sweaters +927,37,,I adore this sweater.... so happy that i was able to get one. get random compliments from strangers all the time!,5,1,0,General Petite,Tops,Sweaters +984,66,This jacket has it all.....,"First saw this jacket in the catalog, in peach, and had to have it. i received it today, and love it. its a soft, muted peach, very neutral. i ordered xl, im usually a m-l, but decided i wanted it to look big and comfy. the quality is great, feels good on. love it so much, i just ordered it in the dark grey. very classic jacket, will wear for years. one of my favorite hei hei pieces, never disappoints.",5,1,26,General,Jackets,Jackets +836,29,Epic,"I love this top. in fact, when i saw in the store, i was hoping that it would go on sale. i wore it and received many compliments. the underlay provide adequate coverage so no additional cami is needed. this top does run large. i normally wear a 2 and i ordered this in a 0 and it fits perfectly. i would not order this if you are not willing to spend the money to dry clean it. it is delicate and i would not encourage washing it at home.",5,1,0,General,Tops,Blouses +927,37,Classic retailer,"This screams the old school classic retailer that we all love. it was one of my rare full price purchases because it's just perfection! i'm 5'4, 112lbs and normally and xs. however, when i tried on an xs is store i felt that it sort of swallowed me up. i went ahead and ordered an xs petite even though i rarely go with petites, but it fits perfectly. it doesn't leave room for layering, but i live in socal, so i don't need to layer often.",5,1,0,General Petite,Tops,Sweaters +927,19,High quality,"The pattern is actually knitted into the fabric instead of just printed on like i've sometimes found; the embroidery mostly serves as a highlighting feature instead of a focus. the inside of the cardigan is another layer of fabric, sort of like a double knit? but with its own, simple striped pattern. the collar looks like it might be itchy, but it only is until it gets stretched out a bit and arranged properly.",5,1,1,General Petite,Tops,Sweaters +1095,27,Simple and stylish,"Definitely a great silhouette. overall, it's just a really classic look that can hang around in your closet for years before it looks dated. that said, it runs small. i often have difficulty with clothing like this since i'm a 4-6 on the top and a 10-12 on the bottom (5'7"" --- 35"" 28"" 41""!!!). my booty is definitely pushing some limits in this dress, but it does fit wearing a 6. shapewear to the rescue. conversely, my shoulders are petite, so the shoulders are a bit large. try this dress on in m",4,1,2,General,Dresses,Dresses +1095,63,Great dress,"I'm 60+, in relatively decent shape, 135 lbs, and size 6 is perfect. i went for the regular rather than petite sizing, which came well below my knees, and although i would usually have a sheath dress like this hemmed up to that slim part right at the bottom of the knee, the slim silhouette shape served to lengthen the profile as a longer dress, so i left it about 3"" below the knee. the stretch allows it to hug the body, and with the right undergarments, it is super comfortable and attractive. go",5,1,17,General,Dresses,Dresses +1086,39,Nice casual tunic for everyday,"I love this tunic in the carbon color on the model. the color does look different in person, more of a lighter gray. on me, the tunic runs very large. i am usually a small or medium but took the extra small in this and still have room. i agree with the other reviewers about the pockets. they do add bulk in the hip area so if this is a problem area for you, i'd avoid this tunic. overall, it's a nice tunic for everyday wear. the tie-neck adds a nice detail and makes the tunic stand out. it looks g",4,1,1,General,Dresses,Dresses +927,44,Gorgeous!,"This sweater is so lovely.. i like the fact that it's not super heavy, so you can be comfortable with a layer under it. the embroidery is beautiful. i usually get petite sizes when available, but the petite m was sold out when i purchased. i went with regular medium and am actually glad. it's not overwhelming or too long (i'm 5'2"").. in my opinion. if you're on the fence, go for it. totally worth it..",5,1,1,General Petite,Tops,Sweaters +984,38,"Affordable, comfortable jacket",Love this jacket. it is quite stylish and comfortable at the same time. i was surprised at how affordable it was. my only complaint is that it could wash you out if you have pale skin and get the peach color.,5,1,0,General,Jackets,Jackets +993,42,Knit skirts are the best,"And this one has a heavenly feel to it. i know it's not 100% cashmere, but it's soft and cozy. i love the understated colors and plan to wear it with a neutral/creme sweater. perfect to take from fall into winter.",5,1,4,General,Bottoms,Skirts +1086,46,Fantastic and machine washable!,"I bought this dress for a trip to the caribbean and really enjoyed wearing it. +i was worried it might look like a ""sack"" but i think it is both slimming and flattering. i love the interesting neckline and rolled up sleeves!! a winner.",5,1,2,General,Dresses,Dresses +927,33,Beautiful!,This is very unique and stylish! the embroidery is stunning plus it is extremely comfortable. it is pretty warm. it does not itch me at all as others have noted.,5,1,0,General Petite,Tops,Sweaters +927,41,Beautiful sweater and so much better in person!,"Just purchased this sweater in store as a christmas present for my self and i'm in love! i feel the fit besides the shoulders which are somewhat narrow, is perfect. i usually wear a petite medium in everything but had to go with the regular small because they didn't have petites in the store. i tried on the regular medium and it was just slightly too big everywhere. overall i am so pleased with this purchase. so happy i popped into retailer today and saw it!",5,1,0,General Petite,Tops,Sweaters +984,35,Cute bomber,"I really like this jacket! it runs big, so you may want to size down. the fabric was softer than i was expecting, but i really like it. very cute fall jacket!",4,1,0,General,Jackets,Jackets +836,33,"Too beautiful to be a ""tank""","When i first saw this in the retailer catalog, i thought it was beautiful. i am a sucker for floral prints, and unique color combinations, both of which this top has. i'm 5'3"", 120 lbs and a small bust at 32b, i usually wear a size 2 but it was a little loose all around so i'd say it runs big. they had the size 2 at a low sale price in my local store so i bought it without hesitation. it's a little loose but very flattering and very good quality, i definitely recommend it if your shape is s",5,1,0,General,Tops,Blouses +984,37,So cute and stylish!,I saw this online and just had to have it! it fits and looks exactly as pictured. excellent for spring or fall.,5,1,0,General,Jackets,Jackets +984,25,Just wonderful!!,This bomber really is superb. it's everything you could want in a jacket. beautiful color that goes with so much (i got the pink) and is so trendy this fall. i am 5'4 and smaller on top so i purchased the small. i didn't want it too baggy but i probably could've sized up to a medium too.,5,1,0,General,Jackets,Jackets +836,53,This is unusual and very pretty...,"...but it does have it's problems. the neck, although it has pretty button detail at the back, is very outsized on me. i would like to see it fit a bit more snugly as by not laying flat, necklaces bunch up and are hard to wear with it. it is just sort of 'floppy' if i'm making sense. the camisole liner is nicely made and attaches with snaps at the shoulders which gives this a definite plus. the fabric is sort of like chiffon with appliquã©d flowers. the color combination is beautiful and with the",4,1,0,General,Tops,Blouses +993,40,Great skirt but shrunk,"I love this skirt, the colors and the softness. i am little disappointed though that the skirt shrunk quite significantly in a cold water hand wash after the second time of wearing. i don't know if it is the material but i followed the instructions for washing. i am going to keep the skirt because i love it so much and hope that it might stretch a little out with wear and go back to its normal size. despite the shrinkage, i highly recommend.",4,1,2,General,Bottoms,Skirts +1081,36,,I so badly wanted this dress to work for me. the material and color is so beautiful. this had a 'sack like' fit and the side pockets accentuated my hips giving me a broader look than i would like.,3,0,0,General Petite,Dresses,Dresses +836,35,Beautiful,"I love this shirt! i wore it to a friend's baby shower and received a lot of compliments on it. the neckline and shoulders and very flattering, but then i'm not very busty, so maybe that's why it worked for me. the material is hand-wash only, but well worth it for such a unique, pretty top. i also didn't get any weird smell from this shirt nor did i think the material was too stiff.",5,1,0,General,Tops,Blouses +984,68,Great jacket!,"I recently purchased this jacket online in the rose color and it is beautiful! i usually wear an xs in retailer but purchased this in size s after trying on the grey color at the store. there was no xs to try for comparison but the s fit well and leaves room for light layers underneath. the only reason i rated it as ""runs small"" is that xs is my usual size so this may be true to size for most. i also wanted the option of zipping with layers underneath. the sleeves are long but can be rolled",5,1,0,General,Jackets,Jackets +1095,24,This is a trial and error dress,This dress needs such a specific body type but that's not to say it isn't for everyone. this dress is lovely but it's a dress that you need to try on in multiple sizes to figure out which will fit. i tried this in three different sizes to find the fit it was supposed to be. i had to size up and go to petite size. i do vary between 6 and 8 and this one i ended up getting an 8p. this dress is lovely but it is a trial and error dress so don't get discouraged if you have to size up it will look love,3,1,0,General,Dresses,Dresses +935,59,Color less blue,"This sweater does have a matching tie belt. it is detached, no belt loops. i'm guessing the previous reviewer accidentally threw it away with packing material. i loved this sweater on line. i could not bring myself to order it at full price. with tax it would have cost over $200, seemed too pricey for a sweater. when it was marked down to $99 with free shipping i couldn't hit buy fast enough. i was afraid it would sell out before i got through check out. my disappointment was the color. it is fa",5,1,2,General,Tops,Sweaters +1086,39,Cute & comfy,"I ordered an xs regular and it barely skims the floor when i'm wearing wedges or heels - perfect! it's form fitting but not clingy, and i think it's a pretty, comfortable dress. glad i made the purchase!",4,1,1,General,Dresses,Dresses +927,74,Fun sweater with lots of color,"I really wanted to love this sweater after reading all the reviews, but it just didn't work for me. the pattern is amazing (almost a little over powering, making it one of a kind and unique) but what i didn't like the color of the knit collar and front bands----it's an old looking mauve-tweed grandpa color. i probably would have kept it if that color was different. it was returned to find a different coat style sweater.",3,1,0,General Petite,Tops,Sweaters +984,44,Perfection!,"Cool, comfortable, goes with everything! i found both colors at my local antro today!! almost ordered the grey online because that's all that was available, but decided to check my store first. so glad i did. the peach is so pretty, and looks really good with my blond hair. the grey looked much more like a faded black, darker than pictured online, imo. i would have still purchased it in grey if that's all they had, because it is such a great piece, but the peach really is lovely. i'm 5'10"" 145 p",5,1,2,General,Jackets,Jackets +984,66,"Cool, soft tough girl vibe","Agree with the positive reviews. this fits nicely with my casual lifestyle. i ordered an xl in the grey although i generally wear a large. it's a bit oversized with plenty of room for layering. it does bulge a bit in the back but the knit waistband still hits just below my waist. the only drawback is that the sleeves are a bit wide, long and loose at the wrist. it's lined in the body with a soft fleece. the sleeves aren't lined but have a soft silky fabric in the cuffs so easily rolled, adding i",4,1,2,General,Jackets,Jackets +1095,40,Pretty but not quite right,This dress is really simple and elegant and i want to love it but i'm having a hard time getting it to fit right. i'm normally a size 4/6 and i bought this in an 8 and couldn't zip it up. i'm a 36d which is part of the problem so i exchanged it for a 10 and i can now zip it but the bar in the back i thought would cover my bra strap but like other reviewers mentioned its a bit high. most of my bras fall right into the hole beneath the bar. its unfortunate because i wanted to love this dress. i mi,4,1,1,General,Dresses,Dresses +1081,57,Very comfortable,I bought this dress to wear to a funeral. i usually wear a medium but when i tried it on it was way too big so i exchanged it for a small which fit perfectly! the side slits make the dress a bit sexy and the styling is boxy but very comfortable especially with the pockets! the fabric lies beautifully on the body. i would recommend this dress.,5,1,8,General Petite,Dresses,Dresses +1095,28,Perfect lbd,"This dress is perfect for anyone with an hour glass shape,it is true to size, i am 5'3 and 125b the 2 petite fit perfectly. the fabric has a little give to it so if you have hips and a chest it will stretch a little without feeling tight and dress sinches in the waist creating a beautiful silhouette. it's the structure of this dress that makes it elegant and sexy. this dress is so figure flattering, i could not believe how many complements i've received on it.",5,1,0,General,Dresses,Dresses +1183,35,Soft & buttery!,"This shirt is so soft and buttery! it fits tts and just as shown on the model. for the sale price, this shirt is a gonga! good go-to shirt on those days where you're just not sure what to wear. one thing that slightly bothers me about this shirt is that the arm holes are a bit loose, so you can see your bra. i think if you wear a black bra with it though, it would be fine.",5,1,3,General,Tops,Knits +984,51,Too small too small too small!,"This jacket is just too small for me anyway and i am no way big. i am tall and athletic and this thing looked like it had shrunk in the wash. there are so many better fitting other types out there, this went back",1,0,0,General,Jackets,Jackets +1095,57,Weird fit.,"1. i'm 5'5"" tall, 140 lbs and 38 (36d) - 32- 40. i'm normally a size 10 in most brands, and in maeve in the past. this dress was too tight across my waist and hips in a size 12, so it runs very slim. + +2. this dress is very long waisted, so the top bunched up funny. + +3. the horizontal bar in the back is in the wrong place, and will not hide your bra strap. + +4. there are bra strap keep loops in the shoulders, but this is an off the shoulder top. + +5. the underarms bunched funny. + +6. the dress has h",3,0,38,General,Dresses,Dresses +1056,57,Clown pants,"1. i'm 5'5"" tall, 145 lbs, and 38-32-40 and the size 30s fit me perfectly. + +2. i like the regular hyphen chinos and the stet chinos, but these pleated ones looked like clown pants because the pleats widen the hips and the ankle cuff is very tight compared to the regular hyphen chinos. + +3. i hated the mustard color. not flattering to me at all.",3,1,18,General,Bottoms,Pants +1086,42,Perfecto!,"I love this dress, it's the right length and its very soft and comfortable. it is not really denim, just a soft grey material. i tried on the blue one in the store before ordering the grey and found that the small fit better than the medium - i'm typically a medium. usually in this brand i have to size up but in this case i sized down :-) + +i highly recommend this dress is you are looking for a simple shift dress that you can just throw on and go.",5,1,20,General,Dresses,Dresses +1056,37,Swimming - size down,"I am a huge pilcro fan. however, these were beyond large. i am not even sure that the next size down would work. keep this in mind if you attempt these pants.",3,1,1,General,Bottoms,Pants +984,48,The perfect layer!,I love this jacket! it is super soft and a gorgeous color. i can wear it with jeans and a tee or dress it up and wear it to work. so versatile! a must have for the fall season!,5,1,0,General,Jackets,Jackets +1086,34,Too big around arms,"The dress is beautiful, i wanted to like it and could hardly wait to reveive it. it fits beautifully, and snug except around the arms where it is huge. i could only wear it with a tshirt underneat.",3,1,1,General,Dresses,Dresses +984,66,Perfect color and fit,Would buy this again in a heartbeat. so comfortable and fit is great. color will look good with jeans or a dress. bought it for a cruise in the spring and it is perfect!,5,1,0,General,Jackets,Jackets +1086,47,Adorable,"Like the other reviewers, i opted for the grey version. almost every tunic dress i've tried winds up looking like a sack when it's on my body, so i was very pleased when this dress looked pretty great. the neckline is perfect - nice depth and addition of on-trend lacing - and the length (love the shirttail hemline) is also perfect. the drape of the material keeps it from looking like a shapeless bag. my only comment #and it's quite minor - i'd give this 4.5 stars if i could) is that the pockets",4,1,9,General,Dresses,Dresses +993,54,Fun skirt,"This skirt fits me like a glove, you must get the matching top and orange jacket that makes the whole outfit high +fashion fun chic. i am 5' 8"" and 145 full figured and imlove this out fit. very cozy too.",5,1,1,General,Bottoms,Skirts +1095,37,Nice dress but way too long,The dress is well made with a great material. it is extremely long and unless you are tall it would overpower many petite women. i returned it.,3,0,0,General,Dresses,Dresses +927,23,Such a treat,"Birthday gift from my husband, and i have it hanging up where i can see it, the design is like a huge beautiful tapestry. although it looks heavy, the cotton has a nice feel to it. hand-embroidered here and there. i usually wear size s/m and the med. is very comfortable. gorgeous!",5,1,0,General Petite,Tops,Sweaters +984,30,Adorable comfy jacket,"Love this jacket! saw it in the store and waited a few days before breaking down and buying it in the peach color. glad i did as it sold out super fast. it's soft, flattering, versatile, and has great detail in the stitching. perfect layer for fall. i'm usually a large, sometimes medium in hei hei jackets and the large fit very comfortably with room for light layers underneath. the style is a little boxy and slouchy but the fit in the shoulders and elastic ribbed waistband give it a flattering f",5,1,1,General,Jackets,Jackets +984,46,Cropped,"How can some reviewers say this jacket is true to size, yet others say it runs small? i think it's because this jacket is cropped. by the time i took advantage of the fall perks 20 percent discount, the xs peach was sold out so i ended up ordering size s. i also got the xs gray to compare. sure enough, the xs looks better but is cropped on me. for ref, i'm 5' 5"", 32a, 115 lbs. i don't really need another almost black jacket so i'm either sized out or have to exchange for xs peach to wear with dr",3,1,2,General,Jackets,Jackets +1022,48,Very stretchy fabric has fit issues...,"I love the color and cut of the pants. they are more a dark indigo twill than a jean, to be sure. a fit issue is how the front pockets pop out because of the excessive stretchiness of the fabric. i wear them and love them, but stitched the front pockets closed to avoid the unflattering pop-out pockets.",4,1,3,General,Bottoms,Jeans +984,26,,"I love this jacket. the color is what drew me to it and it looks just like the picture. as far as sizing goes, i'm usually a medium but i ordered a small and it fit well. i feel that if i had ordered a medium it would look a little too puffy for my taste. the small gives me a more fitted look.",5,1,0,General,Jackets,Jackets +927,49,So flattering!,"Wow... i'm in love!!! when i first saw this i put it in my cart... when i went back to purchase it, it was sold out in my size... i was so bummed. i kept checking back and saw it was restocked so i quickly ordered it... thank heavens!!! when i first took it out of the box i thought it might be too ""grandma-y"" of a design... but i was wrong. it's just gorgeous! can totally be dressed up or down. so flattering. love love love it!!!",5,1,2,General Petite,Tops,Sweaters +984,57,The perfect jacket.,"I absolutely love this jacket. as a 36 year old woman, i want items that are on trend but don't look juvenile. this jacket hits the nail on the head for me.",5,1,1,General,Jackets,Jackets +984,68,,"Great jacket for night time in the south this time of year ... very nice fabric, great classic style with a little twist... love retailerplogy ... being an older female, sometimes things can look boring ....i love to dress in fun clothes ... finding something that will work for all ages and that is a ""little out side the lines "" is very nice!!!!",5,1,3,General,Jackets,Jackets +1095,33,,,5,1,0,General,Dresses,Dresses +984,37,Incredible jacket!!,"Woke up this morning to an email from retailer showcasing this gorgeous jacket. i knew i had to have it. trying it on in the store, it did not disappoint! hei hei is a really wonderful brand, and me being a more plus sized gal, their sizing is always wonderful. i normally do an xl in most retailer jackets and tops,..but i was able to do a l well. the arms have plenty of room and the body of the jacket has a room as well (like your typical bomber would). the fabric is soft and the blush color",5,1,7,General,Jackets,Jackets +1086,20,Yes!,"Lovely dress. i was a bit hesitant as a reviewer mentioned the fabric being irritable but luckily i had no issues. the regular is long and i have to wear it with my wedge, but i'm ok with that.",5,1,0,General,Dresses,Dresses +984,37,Cute and comfy,"Soft, comfortable and well made. great with sleeves rolled or down for cooler weather. interesting color- close to picture, maybe a little more orange. goes well with blues and grays.",4,1,0,General,Jackets,Jackets +927,49,Warm and fun for the season,"It's no surprise that this sweater coat is getting five stars. it's beautifully made, has a fun pattern, and fits great. + +i purchased the xs (regular size). there weren't any of the petite sizes left for me but the xs fits perfectly. the sleeves hit at my wrist (i'm 5'2"") while the length hits right at the top of my knees. i did notice that the shoulder width could be too tight if you are a more broad person. + +the colors are accurate to the website and catalog. this seems so extremely versatile",5,1,1,General Petite,Tops,Sweaters +984,40,Bomber jacket,"I usually wear a medium, and this jacket was no exception. the jacket is a shorter style as pictured. it is still flattering, even though it is a little boxy. i got the grey, which is a dark gray/slight greige color. if you like edgier over boho, this is a cute transitional jacket.",5,1,1,General,Jackets,Jackets +1081,35,,Love the tegan tunic version of this dress. i assumed since it looked identical except for the length that the sizing was the same but i was wrong. this runs so big! i got a s in the tegan but the s in this dress looked like an oversized potato sack on. i highly recommend ordering at least 2 sizes down unless you want to look tent-y.,2,0,10,General Petite,Dresses,Dresses +1022,45,Love the cropped flare!,"These jeans have definitely made me an ag convert. the fit is perfection and at 5'3"", it is so to buy jeans and simply wear them (without the typical extra 4-6"" of length).",5,1,0,General,Bottoms,Jeans +984,56,,Super cute jacket .perfect for fall i can't stop wearing it,5,1,0,General,Jackets,Jackets +927,28,Truly retailer,"This. this you have to buy! i just tried it on in our new store the other night and am in love. gorgeous details went into the sweater coat. it's thinner than most, which is nice when you want to look lovely but don't quite need to bundle up! i plan on purchasing after christmas if it's still around!",5,1,0,General,Tops,Sweaters +984,63,,"I bought this jacket in the gray and couldn't be happier with it. it is loose fitting but not oversized. it will look great over a dress with boots, or with jeans. very versatile piece.",5,1,0,General,Jackets,Jackets +881,36,"Cozy, but runs large","I like the unique design and it's warm and cozy. i wear a medium 95% of the time, but had to exchange this for a small, but the sleeves are still long enough. it sheds a bit, but i'm guessing it will slow over time.",4,1,1,General,Tops,Knits +984,39,,"I don't own any peach outerwear because i didn't think it would complement my skintone. this cozy bomber proved me wrong. wonderful quilting pattern and a vintage dye job that's eye catching. great for layering and the color goes with my autumn and spring wardrobe. this is not a fitted style, it's relaxed and a bit poufy at the sleeves and waist, just like a regular bomber jacket. i chose medium petite and it fits just right. i'm a 36d, 135#, 38-28-35.",5,1,4,General,Jackets,Jackets +1086,39,Finally in my hands,"Delayed for a month on back order, this dress was worth the wait! the beautiful design and colors are just as shown in the pictures. the length and cut is slimming, more fitted at the bodice with a subtle flare after the waist. detachable liner dress is a stetchy tank top that goes to the knees. pullover style with a closed-end side zip that's needed because the knit band design under the bust does not stretch at all. + + +if your skin is sensitive--this dress isn't for you. both the line",5,1,7,General,Dresses,Dresses +1056,60,Size down!,"Wish they had more colors in these pants. the dark grey is very nice, but i'd definitely take another color if offered. very cute pants. a fantastic deal at the sale price. but size down! they run a full size too big.",5,1,0,General,Bottoms,Pants +993,60,Soft & beautiful!,"The sweater and skirt are so pretty! they're really soft and have such an easy, comfortable look together. really love this gorgeous outfit. + +i am borderline small/medium and kept the size small after trying both on.",5,1,1,General,Bottoms,Skirts +993,47,,This picture doesn't do the skirt justice. i paired it with a creme colored cashmere cowlneck sweater and a silver jeweled belt. it is really pretty and flattering on.,5,1,4,General,Bottoms,Skirts +927,34,Such a beauty,"Ordered it in small regular and xtra small petite. what was surprising was that the xtra small petite fit better (meaning more room) across the chest. i'm normally a medium or medium petite, but this runs large. if you're unsure of a size, get both and return the one that doesn't fit as well. it's much better in person and looks very rich in colors and quality. the only complaint i have is there were some loose yarn pieces just dangling off the edges. i trimmed up with scissors and they didn't e",5,1,0,General,Tops,Sweaters +1081,27,Great dress,"Love this dress! it can be dressed up or down and its very comfortable. i got the ps, but could have probably fit into a pxs since the style is rather loose.",5,1,5,General Petite,Dresses,Dresses +1086,53,Unflattering,"I'm happy the other reviewers made this dress work because it looked terrible on me. i'm 5,9"" and 128 lbs and it made me look like i had gained 25 lbs. as others have said, the pockets make the dress even worse-it's very hard to get them to lay flat. the material is lovely, soft and i liked the gray color, but this dress made me feel like i was wearing something from an asylum.",2,0,4,General,Dresses,Dresses +927,69,Beautiful,"Great sweater to brighten those gloomy winter days. this is a beautiful sweater, soft, colorful. perfect.",5,1,0,General,Tops,Sweaters +1095,46,The perfect dress,"I tried this dress at the store and fell in love with it but they only had the red dress (my size). trust me, the red is absolutely beautiful but i needed a black dress so i purchased it online. i just can't wait for it to arrive! +it fits perfectly and it's so classy.",5,1,0,General,Dresses,Dresses +984,57,,Love the jacket! so versatile! would probably order up a size if you like a loose fit.,1,1,2,General,Jackets,Jackets +927,34,Favorite sweater,"I just received this sweater last week and love it. the material is so much softer and lighter than i expected, but plenty warm. the neck is slightly itchy, but not bad at all. i wore this sweater to church over a navy dress on sunday and received tons of compliments. it is such a unique piece.",5,1,0,General,Tops,Sweaters +927,66,Foret cardigan,"Love,love, love this. it is so different and unique. definitely not something you will see in any other store. wore it last week and have never received so many compliments on one piece. so retailer!!!!!! it was very warm and comfortable. i did wear a turtleneck under this, because of reviews of itching. i did not have any problems.",5,1,0,General,Tops,Sweaters +984,34,Perfect fall jacket,"Loved this from the minute i saw it in an email. i got the blue grey in a medium. i'm 5'4"", 140. it's a little roomy but will be nice over sweaters too. i love the cropped length. really well made.",5,1,0,General,Jackets,Jackets +944,50,Stylish lucsiously soft sweater!,"I see no one has reviewed this yet and since it is a beautiful sweater, and only available online, i thought i would contribute an opinion. the sweater is nicer in real life than the photo. it has a wonderful feel! the style: this sweater has very dramatic sleeves which i like though i could understand how that might annoy someone else. it is made with a heavy thick soft yarn so the sleeves hang nicely. i have worn it once and got complements so it is a sweater that while simple, is also a stand",4,1,1,General,Tops,Sweaters +984,67,Uniquely cute,"First of all i love retailer, i am 67 yrs old and my whole closet comes from the store. this jacket is way cute. the color is very nice and the fabric is nice. only complaint is i wish the cuffs were just a bit tighter/smaller.",4,1,1,General,Jackets,Jackets +993,45,Gorgeous skirt,This skirt is so soft and warm! looks gorgeous with middi boots or ankle boots. colors are beautiful and the length is perfect to take you into spring!,5,1,0,General,Bottoms,Skirts +1095,22,Amazing,This dress is amazing! i have a b cup and didn't quite fill out the top enough. but that is a small tailoring fix. i am completly in love with this dress and recommend it highly,5,1,0,General,Dresses,Dresses +1081,32,Pockets stick out on the sides,"What the picture doesn't show, is that there are pockets on the side seams that do add a bit to the hip area. also, the dress runs very large, in my opinion. i ordered a medium (my usual size) and everything was loose. i am going to exchange it for a small and hope the proportions stay the same because it's very pretty. + +it is very boxy, and kind of nightgown looking when it's big, so if you wouldn't want it to cling a bit this might not be a good dress. the fabric is gorgeous and soft, but be a",4,1,29,General Petite,Dresses,Dresses +927,53,Just ok cowl sweater,"Gorgeous color and fit, but fabric is not great. i ordered this to wear with leggings and booties. i returned as i could tell it would get baggy in the elbows and rear end. just not a good fabric. bummer!!!!",3,0,0,General,Tops,Sweaters +820,34,Very flattering but between seasons,This is beautiful on. it flatters the figure nicely. the material is a rougher cotton which seems oppressive for summer even though thin. it is very low cut but it looks wonderful.,4,1,0,General,Tops,Blouses +867,35,Love at first sight!,"Aesthetically pleasing and very well-made. love it! but, does run large.",5,1,1,General,Tops,Knits +820,47,,"Absolutely stunning top! love! what a great buy on sale! i wear a medium/large and purchased the size 12...fits perfect! beware that the bottom has somewhat of a flair! the material is light so i would say this top is something to be worn transitioning between seasons, late summer to fall!",5,1,0,General,Tops,Blouses +927,47,Great style but lacking quality,"I agree with the reviewer that said this product photo is misleading! you can't possibly wear this sweater off the shoulder as pictured! it does however provide a great fit, i sized down from large to medium...and the brown color is really pretty!",2,1,7,General,Tops,Sweaters +820,62,"Nice, but odd fit (for me)","I'm thinking that this might be a hit for the petites out there, but it didn't quite work on my long torso. the seam across the bust fell a little too high making the shirt ride up and the sleeve ended at a weird spot (not quite 3/4 sleeves, and also not long sleeves...but there is a band that makes it feel weird). the v-neck in the front is low, but offered full coverage on my 34a bust, but i can see it being pretty revealing on someone better endowed. fabric and color is nice, and it's a prett",4,1,6,General,Tops,Blouses +867,46,Perfection,"I can't wait to wear this,but it has been to hot in the south.you can wear this so many ways.the material is wonderful, and the pattern better in person.",5,1,0,General,Tops,Knits +927,25,Just okay,"I first have to agree with other reviewers about the quality of this sweater: the stitch is pretty, but the fabric isn't nearly as soft as i expected. it has the look and feel of a cheaper sweater. that said, the fit is pretty flattering. i didn't have any problem getting the cowl over my shoulders as pictured by the model. i've been looking for this style of sweater, so i'll probably keep it. however, it really didn't meet my expectations for quality.",3,0,1,General,Tops,Sweaters +921,75,Dissapointed,"I love the ethnic colors & the creative woven design of this garment. that's what attracted me in the first place. however, some of the metallic threads had snagged & i thought the loose weave & acrylic yarns would lead to more snags & it would eventually stretch out of shape. also, it's very big. too bad it doesn't come smaller. in the online picture, it must have been gathered & clipped behind the model because it really doesn't fit close like that & the long armholes are not visible online as",2,0,1,General,Tops,Sweaters +867,32,Easy throw on,"This piece is a great, easy throw on that allows you to still look polished. it's heavy weight is a perfect substitute for a coat on those in-between fall weather days when you don't want to lug a jacket around. lining is super soft and makes it so comfortable to wear.",5,1,0,General,Tops,Knits +927,61,Perfect fall sweater,"Bought this in navy - going to buy another one in a different color! it fits my curves beautifully! does not look ""boxy"" like other tunic sweaters. i also disagree with other reviews, i cannot see through it.",5,1,0,General,Tops,Sweaters +867,37,Lovely sweater!,Loved this online and even better in person. inner lining is like a cozy sweatshirt!,5,1,0,General,Tops,Knits +927,45,Great tunic!,"This sweater is super flattering. love the cowl neck and longer length. it is not boxy or shapeless, but manages to show off your figure without clinging anywhere. i did not find any of the colors to be see through as some other reviewers had noted. i purchased the navy and think i'll go back for the brown as well! size down if between sizes. i am 5'7"" and busty, and the medium fit great.",5,1,0,General,Tops,Sweaters +921,56,Not what i expected,The description doesn't indicate the metallic thread throughout the design. you cannot tell from the pix either. it's also a really strange design with the arm holes being almost the entire length of the sweater. can't decide if i want to keep it or return it.,3,1,3,General,Tops,Sweaters +927,41,Pretty but...,"I really had high hopes for this sweater however, unfortunately it is not as nice as i expected it to be. i own a few angel of the north sweaters and i really don't feel like this particular sweater meets their usual standard. first of all the yarn feels very cheap and is not very soft. secondly, the actual knit also appears to be very cheap. i ordered the white sweater in my usual size medium and while it fits, i really can't see how they were able to get the neck of the sweater to go off the m",4,1,25,General,Tops,Sweaters +927,45,"Lightweight sweater, runs a bit large","I initially bought this in the brown in a small but ended up exchanging it for an xs in ivory. as other reviewers have said, it's not the softest sweater you'll try on. if you want it to lightly hug your body like the way it is on the model, you may need to size down. while i love the style, it feels like the type of material that will get stretched out easily so i've been careful getting it on and off. i picked this up during retailer days and got it on sale. the quality is of the yarn is just of",4,1,1,General,Tops,Sweaters +820,46,Big busts not allowed!,"This top looked positively vulgar on!!!! i am a 34d, and it was way too low cut...my boobs were spilling out!!! in addition, the fabric reminded me of a cheese cloth.....it just looked and felt cheap. unfortunately, this top will be going back.",1,0,4,General,Tops,Blouses +867,38,,"I agree with previous review...looks so much better in person than online! i really do not need another poncho style sweater, but i could not resist. they colors and style are great!",4,1,1,General,Tops,Knits +1086,48,Too small,"I ordered a large and despite wearing a large in many other items from antrhopologie, this item was too small, especailly across the bust. it was very well-made and the color green is beautiful, but unfortunately, i will not be able to wear it. so disappointed.",2,0,0,General Petite,Dresses,Dresses +867,38,"Beautiful, but not quite right for me!","The fabric is really gorgeous, and the lining is lovely and soft. unfortunately being on the petite (short) side, it just didn't look quite right on me. i felt a little swallowed up. i wish it had worked because it's so lovely!!",4,1,1,General,Tops,Knits +820,32,Beautiful but thin,"I am very petite (size 00, xxs) and i got the smallest size this top came in and it fit great in the bust and arms but the bottom billowed out a little too much for my body frame type. it is so beautiful i had considered getting it altered, but the material was simply too see through so it had to go back. beautiful gauze material and detailing though!",4,1,2,General,Tops,Blouses +927,47,So pretty but not great quality,I must agree with some of the other reviewers--this sweater is so pretty! but the quality of the sweater is not great. my sensitive skin found it to be itchy. so sadly i had to return it.,4,1,0,General,Tops,Sweaters +820,45,"Almost ,but not quite...","I really wanted to love this top when i got it, but not so much. it fit nicely through the bust and torso, but flared out way too much, it ended up looking like a maternity top. maybe because i am more of an hourglass shape. another thing, it was very low cut, i would not have been able to wear this without a cami underneath. the fabric didn't seem to be the best quality, it also had a funny smell too it when i took it out of the package. this shirt was not worth the price. sadly, this was a mis",3,1,1,General,Tops,Blouses +927,45,,I usually love a cowl neck sweater but not this one. you can't wear it off the shoulders and it's weirdly sheer too. the only pro is that it doesn't include wool or fur.,2,0,0,General,Tops,Sweaters +1117,34,Perfect cape for hourglasses,"I kept stalking this cape on the site since it went on a few months ago and finally decided to pull the trigger. this is an absolutely gorgeous cape.perfect for hourglass figures because of the waist-defining belt. its a really modern cut - it reminds me of some of the red carpet cape dresses of late. its so elegant - this is a timeless cut. the nude is a gorgeous, rich warm brown color. if you're really busty, you might go up a size to get the girls covered. i ordered my usual size m, and i may",5,1,1,General,Jackets,Outerwear +820,61,Nice top,"I ordered this top from store. i'm 5'3"" and 114 lbs, i ordered size 4, fir very nice, just front is little to low for me, but i wear ten top , it will be fine. the style and material are amazing, love it!",5,1,0,General,Tops,Blouses +927,43,Flattering and warm,Comfortable and warm. i will wear this a lot this winter.,4,1,0,General,Tops,Sweaters +867,38,Great unique piece,"I have been admiring this piece for awhile and finally decided to purchase it, and i am so happy i did! the yellow is the perfect pop of color for fall/winter, but it isn't overwhelming or overpowering. fit is oversized (as is in any poncho style sweater) but it doesn't feel boxy or unflattering. if in between sizes, definitely go down. i like things oversized and i went with the xs/s and it fits great. this will be a go to piece for many years to come!",5,1,0,General,Tops,Knits +1086,56,Perfection,"Absolutely lovely! even better in real life. this is not your typical cheap, flimsy dress. this is quality! the fabric is interesting, the color is gorgeous and the styling is flattering. pay attention to the length ? there are miles of fabric in that fortuny-esque skirt and the model is very tall. i am 5'5"" and slim, and ordered petite small, and it's a little longer on me than it is on the model. i don't mind. i've been looking for a special-occasion dress for a long time and knew this was it",5,1,3,General Petite,Dresses,Dresses +867,53,Amazing poncho,"Walked into the retailer store in new york, while on vacation, and saw this on display. had to try it on immediately and loved the look. received several compliments from customers in the store. it's beautifully made, soft on the inside and makes a great statement piece that i will enjoy for years to come!! you will need to size down cause it runs large. i love it............",5,1,0,General,Tops,Knits +927,44,The perfect fall sweater,"I love this sweater. i ordered the xs because i have very narrow hips and i didn't want it to be too baggy. it fits a little like a very short sweater dress on me. what i really love is that the arms are nice and long. one of my pet peeves is sweaters that are compromised in arm length. +i bought the pink and plan to get at least one other color too!",5,1,1,General,Tops,Sweaters +1110,47,Looked like an oversize muumuu,"I really loved the look of this dress online and couldn't wait to try it on. based on my measurements i ordered a petite medium, following the petite size chart. the dress was the perfect length for my 5'5 frame, but it was just way too loose and not flattering on my figure. i'm 36c-32-37 and i looked like a sack of potatoes in the dress. the fabric and lining feel great though. i just wasn't the right fit for me.",3,0,0,General Petite,Dresses,Dresses +927,42,,"The sweater is nice but is very thin. it is see-through which does not make it a good fall/winter item for me. the design & structure of the sweater is nice & looks slimming on which is a bonus. i originally ordered my regular size (s) but had to upgrade to a large in order to get the neck to fall on my shoulder as shown in the picture. this wasn't a problem since the sweater is form fitting so getting the larger size did not make it look too big. overall, i did not keep the seater as i thought",3,0,0,General,Tops,Sweaters +927,50,,"I loved this sweater! it is a little thin, so i will probably wear a tank under it, but you could probably get away without one, i am normally either an xs or a small, and i got the xs in this sweater. the bottom is a little loose like in the models photo, but i really like it.",5,1,1,General,Tops,Sweaters +820,34,Worth every penny!,The material this top is made of is extremely comfortable and flattering for my body type. i normally wear 12/14 and 12 fit great (if you have a d or bigger you may need a bigger size) spillage is possible with wrong size lol.,5,1,9,General,Tops,Blouses +867,47,"Amazing, timeless piece!","This cape/poncho item is totally amazing. from the moment it whispered over my head as it slipped past my hair, i knew i had to have it. this piece is magical. it feels like you're wearing a blanket (the warmth factor), but the length is so perfect that it doesn't overwhelm you, nor does it make you look like a tank. the colors are amazingly saturated and the quality is so worth the price. the model is wearing it with light brown, but i tried it on over black leggings in the store and it works w",5,1,0,General,Tops,Knits +1110,54,Beautiful color!,This dress is a beautiful color and is so lightweight and flowing. will be perfect for a fall wedding that i am attending. it is supposed to be loose so i think it is relatively true to size if not just a bit on the large side. will look great with a kimono or other wrap when the weather is a bit chilly.,5,1,2,General Petite,Dresses,Dresses +1117,34,Didn't work for me,"I agree with the other reviewer that the belted part definitely gives some great definition for those with a defined waist and that it's a much lovelier color in person, but that's about it for me. thoughts below: +_____________ +pros: +- tts. i ordered the medium for my 36c, 5'9"" frame and found it sufficient. +- the color is much nicer in person, as the other reviewer mentioned. it's a richer brown. think ""mocha latte"" in terms of color. +- the belt really helps tie it all together and keep it",2,1,0,General,Jackets,Outerwear +921,62,Wonderful!,I am so surprised this was not styled properly in the photo! if worn the way it should be worn it would have sold out before going on sale. yes it is open down each side but you need to slide a belt inside the back so the back is left full and bring the belt out into the front on sides cinching in the front...making this a dramaticly gorgeous piece! i love it and will wear it with my leather jeans to pencil skirt. i am a personal stylist and designer and if you are thinking about this piece jump,5,1,3,General,Tops,Sweaters +927,59,Flattering top,"I bought the white in my usual xs size, i don't agree with some of the other reviews that say it is thin, because it is not a sweater. it is a pullover in a kind of waffle weave fabric , not a sweater knit. very cute with a flattering fit. casual wear.",5,1,0,General,Tops,Sweaters +867,34,Much too big,"This top is so lovely, but runs soo big. i ordered it online and was so surprised when i tried it on at home. i'm normally a size 14, and i was positively swimming in this top. hoping to exchange for a petite sm.",2,1,0,General,Tops,Knits +867,60,It's huge.,"No, but i'm not a small person. i'm 5'8, a size 6 on top, 8 on bottom. i don't love this on the model online, but i saw this on naomi's blog, love taza, and thought it looked amazing. i tried it on in my retailer, and while they only had a m/l, since i'm tall, i figured that'd be fine. oh. no. not fine. it's huge. like, it could almost cover a twin bed. it was a couple inches longer on me than on the model, and doesn't arc down in a drape nearly as well, so just looks, huuuge. i thought i was bein",2,0,2,General,Tops,Knits +1110,39,Transitional magic,"Perfect dress for the hot late summer/early autumn weeks! this beauty is flowy and rich in color. the tie back is adjustable which i love due to my weight fluctuations. because of the tie, length can be adjustable too! i'm short so the decision lies on what shoes i want to wear and how high i want my hem. this dress looks cute belted or with my cropped moto jacket thrown on top. all in all, i really like this dress and i see it staying in my closet for a long while if the horrid viscose construc",4,1,1,General Petite,Dresses,Dresses +921,60,Wear it and receive lots of compliments.,I wore it belted with a close fitting cami beneath because the sweater is open down both sides. be creative and wear it different ways.,5,1,1,General,Tops,Sweaters +927,47,Beautiful sweater!,"I disagree with the other review. i purchased the xxsp in navy and i think the sweater fits true to what is shown on the retailer-model. the sweater knit is lighter weight, it is not heavy. it fits more tightly to the body, which i like. the material is soft to me and navy color has a gray-tone to it. i did not find it difficult to wear the sweater off of the shoulders at all. if you are looking for a heavier sweater this is not for you. if you do not want a body skimming sweater this is not for y",5,1,4,General,Tops,Sweaters +867,30,Gorgeous,"I bought this on a whim, and i love it. the colors are much brighter than the photo would indicate. it's definitely a poncho - oversize is the name of the game - but it's cozy, gorgeous and i wish i could wear it every day.",5,1,1,General,Tops,Knits +1021,65,Love this skirt--get it,"This is a beautiful skirt and such a great piece to collect from erin fetherston. + +the design and cut are very flattering on a variety of body types. i have more of a curvy shape and love this type of cut to accentuate my smaller waste (rather than fitted dresses/skirts that hug). + +there are several linings that help give shape and volume. the stripes are made of ribbon. it's so gorgeous, i've received many compliments. i've paired with a sequin tank and glitter keds by kate spade...it's a dynam",5,1,0,General,Bottoms,Skirts +999,33,Zowie!,"This skirt is going to be perfect for the hot texas summers. super lightweight and floaty, and the pattern is so gorgeous. will go great with my favorite purple shoes!",5,1,0,General,Bottoms,Skirts +229,46,Non-existent waistband,"Ordered on line and thought these are a great quality as i pulled them out of the box. tried them on and found minimal elastic for the waist. within minutes of wearing, the waist fell down past my hips...glad i was at home. looks cute but will not stay up.",1,0,1,Initmates,Intimate,Legwear +226,35,Versatile,"I absolutely love slips, and i like the grey tone of this one-and that it is not super shiny. it adds to the versatility of the slip-which i wear many ways. i wear them as under layers for long cardigans, i wear them as a real traditional slip under other dresses, and i also have been known to wear them to bed. the fabric on this one is absolutely comfortable and lightweight. i like that the fabric is cut in a babydoll format and the straps are wider (an a different color) which adds just enough",5,1,1,Initmates,Intimate,Sleep +229,33,Waist falls down!,"I ordered these pants in my usual size (xl) and was shocked when i received them. the waist was huge and there was nothing in the way of an elastic or tie to keep them up. i couldn't keep them on so, of course, back they go! too bad! the sweater quality is great.",2,0,5,Initmates,Intimate,Legwear +821,55,Need to see it in person,What a classy special top. really dresses up a pair of black slacks. i actually think this is a perfect spring piece!,5,1,0,General,Tops,Blouses +229,65,"Stylish, warm, comfy . . . but, oops!","I love these leggings - they look and feel great, but i can't wear them out of the house! there is no elastic in the waistband, so they are constantly falling down. i won't dare wear them out, for fear they will fall down when i walk across the street. everything else about the leggings is exactly what i was looking for: style, comfort, and warmth. they are great for curling up to read a good book in front of the fire; not for doing anything active.",3,1,1,Initmates,Intimate,Legwear +229,31,No elasticity :(,"I wanted to love these, they are cute and warm - but they have absolutely no elasticity. i'm so mad at myself for not reading the reviews because i ended up wasting money on shipping 2 pairs of leggings that i ultimately took right back to the store.",1,0,0,Initmates,Intimate,Legwear +944,41,Soft and lovely.,"Pretty detail, fits nicely. i feel it runs very tts. it's a lot, though. fuzzy and detailed. it definitely takes over the outfit. i wonder about shedding as well if you pair it with dark pants or jeans...? it would be gorgeous with simple winter white pants at a holiday event. still on the fence, i don't know if its for me.",4,1,0,General,Tops,Sweaters +821,44,"Wanted to love it, but...",I saw the colors and texture of this top and wanted to love it however when i put it on it just did not work. the cut was so strange. it runs very small in the shoulders and then flairs out so much at the waist. i even ordered up a size based on reviews. i ordered an 8 when i normally where a small (6) in things. the shoulders were still too small and it was way too big every where else.,2,0,0,General,Tops,Blouses +1028,38,Good fit,"Good fit, quality, similar to the brand's other jeans.",5,1,0,General,Bottoms,Jeans +944,20,"So soft, pretty and unique","This sweater was just what i was looking for. it is so soft & comfortable. the design is unique and delicate, yet doesn't shed or itch. the decorations are not as pure white as pictured, there are several different tones of ivories & creams. i ordered the xs, which is my typical size in retailer sweaters, as i find that most run very large and this is no exception. it is oversize, but not bulky. however, the decorations do add some volume, so maybe not for all body types.",5,1,0,General,Tops,Sweaters +130,39,Great fit,"Noce color as well, only gave one less star due to thin you could see my bra quality (it was pink and i tried on the grey). otherwise, nice and soft. regular size a little long and long sleeves, but sold out n petite :-(",5,1,0,Initmates,Intimate,Layering +944,58,Super soft sweater,This is great soft sweater that is not to bulky looking.sometimes when you have a design like this it looks good off but when you put it on it makes you look like a stuffed marshmallow. this sweater's knit is thin enough that when you add the accents it looks less bulky. wore it with winter white pants and received many compliments.,5,1,1,General,Tops,Sweaters +949,58,Underwhelming,"I expected to love this, since i usually look good in this style of jacket. it's definitely comfortable and the fit was fine, but i really don't care for the wooden buttons and the overall look was just ""meh."" it's going back, unfortunately.",3,0,0,General,Tops,Sweaters +949,74,"Gorgeous, classic piece","Classic retailer piece that i am so happy to have in my wardrobe. high quality all wool felt jacket. unlined, stretchy comfortable knit. i wear mine as a knit blazer and love it. it is not merino soft, but soft enough to wear over a long sleeve tee. the neck does not itch. + +fits tts, i wear a l and that is my normal retailer size. i am tempted to get the cream as well!",5,1,0,General,Tops,Sweaters +821,45,Great shirt,"Kicky little pleat in the back is interesting and comfortable. great fit, good colors and doesn't wrinkle easily.",5,1,0,General,Tops,Blouses +836,58,Great shape stiff fabric,"Love the shape of this top and often look to retailer for corset-style summer tops that are pretty. this top is made from a thick, stiff fabric that doesn't breathe. so my usual size xxs was too constricting. tried an xs also and it basically fit but i still wasn't a fan of the very heavy fabric in a summer top. it's almost like a neoprene. the colors are an odd choice and not my favorite either. i wanted to see in person and they just don't cut it for me. would love in different colors and softer",3,0,5,General,Tops,Blouses +1089,29,Meh,"The details on this dress were pretty, but it was super poofy and i felt like it made me look bigger than i am. maybe if you have a straight body and want to create curves this would work for that, but not great on an hourglass/pear shaped figure. fits tts.",3,1,1,General Petite,Dresses,Dresses +1037,47,Fun for winter,"I bought these stretchy skinny cords in my usual size 28 (31 waist, 33 low waist, 38.5 hip/butt). they are comfortable and long enough for my 5' 9"" frame. i hope they don't shrink. the flower pattern on all the pairs in the store has the flowers running down the inside and outside of my legs. the dark part runs down the middle. i wish it was like the picture on the model, with the print running right down the front and backs of the legs, dark parts on inner and outer thigh.",4,1,0,General,Bottoms,Jeans +1111,56,Curves: yes,"This dress was exactly what i was looking for- a rich, luxurious fabric, a deep neckline, and a tightly cinched waist. i have a full bust and, while the snug waistband was a negative for some reviewers, for me it is a little miracle. this dress fit like a glove and was flattering in my usual size. thank you!",5,1,0,General,Dresses,Dresses +229,67,Warm but problems,"I recommend with reservations. these leggings are 100% wool, soft, not itchy, light weight, lovely knitted pattern. they run large. i sized down to a small. the first time i wore them they were fine. but the second time the waist stretched out and was useless: they were falling down as i walked. such a shame because everything else about them is perfect for cold winter days. they even fit under my silk skirt and would make other lighter garments wearable in winter. so what to do? at the price th",3,1,3,Initmates,Intimate,Legwear +821,43,Unique and adorable,"The photos don't do the top justice. the split back is very unique and adorable. i typically take a size 8 in tops, but ordered a 12 since a reviewer suggested it was narrow in the shoulders. the 12 shoulder fit perfectly, but the body is way too big -- i was swimming it in. i like it enough that i'm going to visit the tailor to take in the body. with the sale price, it is worth tailoring.",4,1,0,General,Tops,Blouses +1068,56,This was an almost keeper,"I really liked the fit and feel of these pants except the bottom of the pant leg was more bell shaped than i wanted (bought white pilcro culottes last year and they weren't like this), but it wasn't a deal breaker. when i got home, i tried to pair the chocolate pants with something to wear in the summer, but it wasn't working for me. i think the color was just too dark and fall-feeling. they do run big, so i'd think about sizing down ... definitely worth giving them a try if you're okay with the",4,1,0,General,Bottoms,Pants +1068,53,Love these pants!,"These pants are so cute and flattering. the linen is substantial and the quality of the tailoring is very good. i typically wear a 26p, but they were sold out in the gray color, so i tried the 25p and they fit perfectly. this tells me that they run just a little big, at least in the petite sizing. i wish the rose color was available in petite. i am considering ordering the chocolate as well.",5,1,6,General,Bottoms,Pants +1021,43,,"#childsize. not sure where this went wrong but it's going back immediately. always wear a 0-2 in retailerpologist skirts, this size 0 runs at least two sizes too small. the material is beautiful, but if i got the size i needed i would be entirely swallowed by fabric. so disappointing.",1,0,0,General,Bottoms,Skirts +821,31,"Great, versatile piece",A great addition to any wardrobe. can go with nice trousers and dressier shoes for work or jeans and trainers for a casual look. i didn't find it to run small and indeed thought it fit as i'd expect.,5,1,0,General,Tops,Blouses +1037,38,Great pants!,These pants are great. the pattern is beautiful and the fit is perfect. they pair well with a s front tucked shirt or fitted colwyn neck sweater. another great find from retailer!,5,1,0,General,Bottoms,Jeans +1037,40,Not as pictured,"I loved the look of these pants in the pictures online and i loved the way that they fit. however when i got my pair, the flower placement was completely different. the whole front was black and there were just flowers running out of the crotch seams. i ordered another pair hoping they were just cut wrong, but those were even worse. they looked obscene.",1,0,0,General,Bottoms,Jeans +229,36,,"I carry my weight on my lower half, usually a large in bottoms. this one in a large was too big throughout especially since it doesn't have a waste band. returned.",3,0,1,Initmates,Intimate,Legwear +1037,38,,Gorgeous!! get these while you can. tts. has a lot of stretch. these are so much fun and will sell out! so happy!,5,1,0,General,Bottoms,Jeans +229,32,"Warm and soft, but stretchy","I received these as a christmas gift. they are really cozy: warm, soft and super comfortable. however, they stretch out a lot, as there is no drawstring or elastic on the waist band. this leads them to poof out a lot and i have to keep pulling them up. this is fine for hanging out around the house, but not if you want to wear them out and about. i'm keeping them because they're so comfortable, but beware how much they stretch. (i am 5'6"", 130 lbs and the size small fits well).",3,1,2,Initmates,Intimate,Legwear +226,79,So flattering!,"I love this slip.. i am contemplating whether i can pass it off as a dress over the summer. the skirt is a subtle shinier grey than the top. it is flattering with or without a bra and i am not usually the type to go without. i am 5'3, 32c and the xs fits perfectly! also i think it looks better in person.",5,1,0,Initmates,Intimate,Sleep +229,37,Too big and baggy,"I love the fabric and design of these leggings, but unfortunately they ran way to big up top. they literally fall down.",3,0,1,Initmates,Intimate,Legwear +1068,50,Not for average height women,"I am 5' and 3/4"" tall. too ""tall"" for most petite pants and too short for regular pants. these ran a little big. i weigh @140 lbs. and have been wearing mostly 28s and 29s, which is what i ordered. the 29s were a tad too big around the waist. the 28 fit but were so long that they looked like clown pants on me. i am in the conundrum that i can never find cropped pants that fit because i am in between petite and regular height sizing. these were a perfect example. they both went back. loved the qu",4,0,0,General,Bottoms,Pants +1068,40,,"Loved the chocolate ones so much, i went back for the rose. my first thought when i tried them on was, ""i could live in these!"" honestly a very comfortable pant.",5,1,1,General,Bottoms,Pants +1037,39,"So small, so sad.","I have quite a few pairs of retailer pants and jeans. my favorites are the cords i got last year, similar to these, so when i saw this fun pair, i had to have them. i ordered both the 32 and the 33 to try on. + +they are even more beautiful in person than online. and they are so, so small. it wasn't like they were a tad snug--i couldn't even get the button across to meet the buttonhole. on the 33. + +i've never had a problem fitting into retailer pants before. this was an extra-depressing first time",1,0,3,General,Bottoms,Jeans +1021,48,Simply beautiful,"I purchased this skirt on a whim as an option for the up and coming hoiday party season and was plesantly surprised. it is very well made,a medium weight taffita material, and best of all, it has pockets! i just love the combination of colors in the skirt; navy blue, grey, and ecru stripe. i paired the skirt with a taylored white dress shirt and statement necklace for a classic look but also imagine it combined with a dressy t-shirt cut as well. buy it while you can!",5,1,0,General,Bottoms,Skirts +831,38,Goes with everything!,"I love this top. i got it thinking i'd wear it mostly with jeans but turns out i have worn it with a lot more. it pairs great with cut-off shorts, white jeans, denim jeans. i have worn it tucked in with high waisted jeans for a more polished look and also un-tucked for a more casual look. i get lots of compliments on this top when i wear it. i think it could be worn into fall with a jacket over it. very happy with it!",5,1,0,General,Tops,Blouses +831,34,Great summer top,This top is a great addition to your summer wardrobe! it looks great with jeans/jean shorts. it's relaxed and comfortable with a super flattering cut. the straps and low cut in the back add a touch of sexy as well.,5,1,0,General,Tops,Blouses +1068,49,Love the rose color!,"I really was uncertain when ordering these because linen can be difficult. these are actually very flowy and soft. i do think they run a bit large. the petite sizes sold out so i ordered a regular 27. it stretched out a bit too much by the end of the day. if that's the case, you need to be careful because the hook and tiny belt are going to struggle to keep up. you should consider ordering down if you are in between sizes. otherwise, the rose color is beautiful, accurate to the website, and work",4,1,0,General,Bottoms,Pants +226,20,Slip pass this one,"A truly unwearable slip: scratchy fabric, bunchy skirt, teeny bodice. it feels like you are wearing wrapping paper--the foil kind.",1,0,2,Initmates,Intimate,Sleep +1068,47,Amazing culottes,"I tried these on in store and purchased them in the chocolate brown as the fit was perfect! i am 5' 8"" and weigh 145 pounds with an approximate 10"" difference between hips and waist. the size 27 fit perfectly. i was surprised that they did not wrinkle terribly as they are linen. they withstood wear during a very active day and still looked great by evening. they wash well and only needed a quick touch up with the iron. i liked them so well that i ordered a second pair in grey!",5,1,7,General,Bottoms,Pants +1037,32,Comfy and unique with some minor design flaws,"This is my 4th pair of these printed cords and they are beautiful- the color says navy but these are definitely black with a grayish print. very stretchy all over except for the waist band which is a little uncomfortable but it might loosen up some. i wish the rise on these was a little higher. also worth noting is that the design on larger sizes won't look exactly like the picture- my size 33's have the floral scroll print up the front and the back, but also the cut has the scroll print running",4,1,0,General,Bottoms,Jeans +229,64,Poor fit!,"So wanted great pair of sweater leggings...great for running errands and keeping the outfit simple. these are not that. these fit very poorly...i ordered the small, which is more like a large one in the waistline...there is nothing to hold these up and i could fit two of me in them. unfortunately, i thought all would be fine and i discarded the receipt and have worn them a few times~",1,0,2,Initmates,Intimate,Legwear +229,36,Get these if you want to run around bare-bottomed!,"I am so sad i have to return these leggings. they're adorable--so much so that my fiancã© commented favorably on them--but as other reviewers have pointed out, there's no elastic or string in the waistband so you have to walk around holding them up with one hand or they'll fall down! why, sleeping on snow? whyyyyyyyyyyy? they're so great otherwise!",1,0,2,Initmates,Intimate,Legwear +949,42,Wanted to love,"This would have been a perfect jacket for a trip i'm taking, light weight and very stylish. however the jacket runs huge, the arms are long but it was the shoulders that were too big. i wear a size 8-10 mostly 10 in retailer clothes i ordered the large and the shoulder seam was about 2? past my natural shoulders. i won't return for a smaller size because the fabric being wool (i should have checked) its unbearably itchy esp around the neck, you could wear a long sleeve top and a scarf but then it",3,0,17,General,Tops,Sweaters +229,37,"Cute, but not the length advertised","I am 5' 10"" 135 lbs, normally a size 4l and ordered both a small in the navy and a medium in the beige. the elastic waist on both is not a tight/ muffin-top producing elastic like on some thinner banded leggings. in fact, the elastic is very loose, not very stretchy on either of the sizes. i think the s had been previously tried on, given the state of the packaging and the fact that the seat of the pant was already a bit stretched out. the m is definitely too large so i would say that these run",3,0,6,Initmates,Intimate,Legwear +1068,45,Great quality,I love these pants - they are very soft but the linen is thick and high-quality.,5,1,0,General,Bottoms,Pants +949,65,Talk about creature comforts!,"This is a beautifully designed jacket that everyone will love and won't want to take off! i went with the gray wool. i always worry about jackets that are too snug, as i am busty, but this fit is superb. the arms are unusually long (though maybe this is good for you). i had a dressmaker shorten my sleeves by one inch, so now it's perfect for me. i bought the regular medium, my usual size (size 8 or medium top, 34f). i tend to wear my blazers and jackets open, but it's nice to know that i can but",5,1,38,General,Tops,Sweaters +226,51,,,2,0,0,Initmates,Intimate,Sleep +829,48,Constricting,I tried on this top and it looked fine until i tried to move. you can't lift your arms. i tried on a larger size but still felt like the movement was limited in the back and arm areas.,2,0,1,General Petite,Tops,Blouses +907,27,Beautiful,"This sweater is gorgeous - the colors are beautiful and the piece itself is soft. i do think it is a bit shorter than i would prefer, and i tend to wear petites. the sweater is nice enough that i do not mind!",5,1,2,General Petite,Tops,Fine gauge +447,48,,,5,1,0,General,Bottoms,Shorts +223,56,Nice warm tights,"These tights have a nice pattern and color. they look just like the photograph. they are warm and because they are warm they have wool in them and they are a little itchy. but, that's the price you pay for warmth. i own several pairs of retailer tights and love the patterns (foxes, scotty dogs, and now trees). .",4,1,1,Initmates,Intimate,Legwear +829,33,Weird construction,"I liked the design and i didn't mind that is see through, but i couldn't put it on ! not size 8 what is my usual size , not size 10 or 12, even 14! my shoulders wouldn't go through the middle part and it is not stretchy , so disappointed. i really wanted to like it.",2,0,2,General Petite,Tops,Blouses +829,28,Great cut,"Love this blouse. it has great coverage but is very light (yes it is a bit sheer, but with a nude bra you can't tell at all), so it's great for needing to look professional on hot summer days. the structure at the bust/waist creates a very flattering shape, and i love the bronze gold buttons with the black pattern. i got a 2 (usually a 0 but every once in a while i need to size up) and could've possibly gone with a 0, but am happy with the freedom of movement i have with the arms with the 2. ove",4,1,2,General Petite,Tops,Blouses +907,22,"Soft, lovely colors, great vibe","Love this top! it has a great retro vibe, and the colors are great. it is very soft and great quality! i was in between a size xs and small. i went with the small, and wish i had gone with the xs. i would definitely recommend this top!",4,1,0,General Petite,Tops,Fine gauge +223,41,Warm and cozy,"Warm and cozy tights for my daughter, she loves them!",5,1,0,Initmates,Intimate,Legwear +828,32,Order a size down,I know what you're thinking- the review below this says 'runs small.' not true. i am a size 4 fitted top and ordered a size small at first. it arrived and was really boxy and so big it wasn't flattering in any way. i ordered the xsmall because i really wanted this top to work. the fabric quality is amazing. so soft and strong! the xsmall is definitely a better fit but the cut is still a little boxy by nature. it's an excellent high quality chambray shirt if you're in the market!,4,1,13,General,Tops,Blouses +817,34,,I love this unique shirt! the only thing is is is really wide like a babydoll top fit. i tucked mine into skinny jeans,5,1,0,General Petite,Tops,Blouses +907,39,"Pretty, comnfortable and loose-fit","I ordered the xx petite on this one, and unlike last year's version of a similar sweater, this one is a bit longer and looser. last year, i kept the xs p, but it was shorter too. the fit is loose, not snug or form-fitting, even as the smallest size available, it was loose but not large or unflattering. the length was also appropriate. love the colors, and pattern too. the material is soft, and the button detail in the back is fun. i am 30dd, 26.5 in waist, 115 lbs, for reference.",5,1,2,General Petite,Tops,Fine gauge +907,35,"Cute design, itchy material","Love the design with the buttons down the back but unfortunately this did not work for me. the colors were brighter than shown on the website which was my first disappointment, i prefer more muted colors. the second disappointment was the material. for me it was just too itchy. unfortunately, this one's going back.",3,0,0,General Petite,Tops,Fine gauge +829,29,Not flattering,"I felt like this shirt cut me in the strangest way. the waistband is very fitted, but there is so much extra fabric above and below it that it poofs out like crazy and made me look like a had a droopy chest and wider hips. it's also see through. + +fit is tts.",1,0,11,General Petite,Tops,Blouses +907,38,Love,Love everything about this sweater. i usually wear xs in most retailer tops but had to exchange for a s. hope this helps!,5,1,1,General Petite,Tops,Fine gauge +828,25,Favorite top!,"This is my favorite top! it is gorgeous, soft, & oh so comfortable. it's not too tight & works with leggings, jeans, or as an over-shirt. love it!",5,1,3,General,Tops,Blouses +829,46,Size up!,"According to the sizing chart i should be an 8 or 10. i ordered a 10, but i could not get the blouse zipped up around the ribcage, the one spot i don't keep any fat. i brought it to the store to exchange for a 12, but i couldn't breath with the 12 on. for reference i am 34ddd. it was the 34 part that didn't fit, the ddd would have fit fine, i think.",3,1,2,General Petite,Tops,Blouses +829,41,,"The reviews are accurate that have already been said about the material and size. i usually wear a size 2 and i bought a size 4. it fits perfectly. the blouse is very sheer, but if you wear a neutral colored bra, it should be fine. i like the flow and cut of this blouse",4,1,1,General Petite,Tops,Blouses +907,54,Adorable!!!,"This sweater came in just as expected . . . adorable. as others have said, it is soft and comfy. i will wear it everywhere (including work). i love it! :)",5,1,0,General Petite,Tops,Fine gauge +817,74,,This shirt looks nothing like the fit in the pictures. it is short and very wide. i had read the previous reviews and thought i could take it in on the sides some but it is literally the shape of a trapezoid.,1,0,0,General Petite,Tops,Blouses +817,38,Boxy and runs huge,"I bought this shirt immediately because of the pattern, when it arrived i was super confused. it's not a tee shirt like it looks like in the photos. it's made with cotton fabric with a tiny bit of stretch. i ordered the xl because i have brought shoulders and 36e bras size and it fits like a 2x or larger. i would say order two sizes down. also it hangs like a maternity shirt. i might order it once it's on sale, which it definitely will be, but even then am not positive i would keep it.",2,0,4,General Petite,Tops,Blouses +907,70,Great detail work,"The liatris floral top is a comfy sweater knit with floral accents on the front and sleeves. the back has a row of buttons though the top easily slips on over one's head. it contains wool but is not in the least itchy. in fact it has a silky feel to it in its finely knitted fabric . it would be cute with a patterned bottom, like a plaid or dotted pants as shown. doesn't seem to be easy to snag.",5,1,2,General Petite,Tops,Fine gauge +829,54,,I ordered this in a petite online and i usually wear petites. it isn't see thru in a way that shows a lot and i love the light weight fabric. i get a lot of compliments on it.,5,1,3,General Petite,Tops,Blouses +829,47,Great,"I love this. it is perfect. it is sheer, but i wear a black cami underneath and it looks great. so glad antro finally has something with a waist! the small metal buttons are a really nice added detail. i wish you would make more tops with a defined waist like this one!",5,1,2,General Petite,Tops,Blouses +817,43,Cute but not cute enough,"This blouse is a disappointment! it runs so large, it looks ridiculous. the cute is super wide and flared. they must have it pinned on the model. it is not flattering at all. i really thought this could be cute. not worth the money either! it's expensive and ill-fitting. for reference i am 5'3 and 123lbs and wear a 2 or 4.",1,0,4,General Petite,Tops,Blouses +907,63,Beautiful sweater,"I was excited to see this sweater in my local store. i have been coveting it online. it was just as pretty in person as i hoped it would be. +the color is vivid and beautiful. i loved the buttons down the back. +i usually wear a size small but they only had an extra small. i tried it on and liked the way it fit. i wanted a snugger look. i think the small would have worked too, just a looser feel. +the fabric is very soft. now just waiting for cooler weather so i can wear it.",5,1,1,General Petite,Tops,Fine gauge +829,43,Narrow in the middle,"I love the look of this blouse and i like the light weight material. it would require a camisole underneath but could be worn at the office or a night out. i purchased a size 4 and it fit perfect once i was able to get it on so i wouldn't want a larger size but because it doesn't button down all the way and it's so fitted in the waist it was nearly impossible to get it on and off over my shoulders, there's no give at all. sadly i'm going to have to return it.",4,1,6,General Petite,Tops,Blouses +1205,69,,Just received my second pair of pilcro in the red. i loved the color and needed a back up pair. perfect fabric for year round wear. length is great for my height. love every pair i own. this is my 12th pair. love love them.,5,1,0,General,Bottoms,Pants +817,31,Not for everyone,"The top looks like an oversized shirt in the model photo but as you can see it's not at all in person. made with what feels like hospital scrubs-meets-crisp-poplin, this shirt is stiff and does not lay flat against the body. the cut is almost triangular or bell shaped causing it to jut out - think of a flared wide leg pant - but as a shirt. the sleeves have a similar cut as well. i, too, am a 34c and found it made me look much wider as your bust will cause the shirt to move away from you. it's s",3,0,0,General Petite,Tops,Blouses +829,33,Pefect fit,"The structure makes this fit perfectly. the details are also lovely, and it is soft and well-made. it is a little sheer, but i felt comfortable enough to wear it with just a black bra underneath. if you are between sizes, i would probably size up.",5,1,5,General Petite,Tops,Blouses +907,34,Very lovely,"The color is more like bluish-green, very elegant! it's very soft and feels great on skin. i love the buttons on the back, it's such a great touch and brings this sweater to a whole new level. +i usually wear xs but because i'm going to wear this sweater with a button up shirt underneath, i ordered s. great investment! love to have it in my closet.",5,1,9,General Petite,Tops,Fine gauge +1103,42,Special,"I thought the design of this dress was distinctive, and it did not let me down. there is no zip so if your chesty like i am it may be a little difficult to get on, but i wouldn't sizes up because then it would be too big and balloony. i'm 5'5' and i got the petite which hit me about 2 inches above my knee. material is like jeans and consequently not see-through at all. even though it is quite expensive, there is something special about the dress.",5,1,9,General,Dresses,Dresses +835,36,Adorable but tuck in style for me,"Great top, for me it would be tuck in only as a little wide near waistline. i am 5'4 so can do it with top length, but not sure someone taller could. so depends on wardrobe needs what you plan on wearing it with. would probably look cute with skinny jeans, but i bought it for skirts. adorable detailing around neckline and sleeves. really love it, but more sheer than i expected. great with a nude bra, but probably would see other colors through it.",5,1,1,General,Tops,Blouses +907,41,Spectacular!,"Super soft and cute. the buttons add a nice touch. the color depicted online gave me pause, but when i saw it in the store it was more of a blue than that what you see in pic. great investment. beautiful sweater. 34c, 65"", 135 and the small is perfect.",5,1,1,General Petite,Tops,Fine gauge +828,25,,,4,1,0,General,Tops,Blouses +829,37,Totally sheer,"This is completely see-through and i think it would look awkward with a cami underneath because of the highly structured shape. fairly cute fit, but not as a layering piece.",3,0,13,General,Tops,Blouses +835,44,,"Sadly, this has to go back. i am 5'5"", 128 lbs and this shirt is super short on me. very short. and it's so wide it's almost a trapeze cut. the overall effect is 50s/60s style maternity shirt. which is disappointing because the fabric is beautiful, the detail is nice in person, even the sleeve cuffs are great. i am not very tall and i'm fairly thin on top so i can get away with a lot of styles, loose and tight. the combo of short and trapeze is just unflattering.",1,0,0,General,Tops,Blouses +912,53,"Boxy sweater, cute dots.",This a heavy cotton which is great for fall. design is cute and pockets are interesting. the fit is boxy and can look bulky. i only recommend if it's on sale.,3,1,1,General,Tops,Fine gauge +912,23,,Loved this top! it's an a-line shape which is very flattering. thick enough for winter with a coat but light enough for spring still.,5,1,0,General,Tops,Fine gauge +1205,34,Great fit,I'm normally a 12/14 and ordered my normal size 32 which fit perfect. i purchased both the red and beige. the quality fit and color are great. i'm 5'9 and the regular length was fine.,5,1,0,General,Bottoms,Pants +817,29,,It broke my heart to return this shirt. the pattern is just the kind of quirky that i crave from retailer. the quality is really great but in the end this shirt was just way to big. i don't think the xs would have made enough of a difference. sad face.,3,0,0,General Petite,Tops,Blouses +819,48,,,5,1,0,General Petite,Tops,Blouses +907,45,Too short,"This is a beautiful sweater and a nice medium weight. however, it is an awkward length. i am tall and have a long torso so it's just not cut right for me and was not flattering.",3,0,0,General Petite,Tops,Fine gauge +907,40,Pretty darn adorable..........................,I see many uses for this sweater. it is so whimsical. i love it!,5,1,0,General Petite,Tops,Fine gauge +907,42,Cute but short,"This sweater is super cute and i so wish it worked for me. i am but i must like sweaters a little longer than everyone else because this just hit me at the wrong place. if you're still trying to work off that last little bit of your baby bump, even 2 years removed, this hits right there and emphasizes your waist, at least on me and i'm 5'5"". it's so cute that i might have kept it to see if i could get it to work for me but it still has the ink tag on it so it has to be returned no matter what an",4,1,0,General Petite,Tops,Fine gauge +907,42,Unique add for fall/winter,I really like this sweater. i would suggest ordering a size up. i could had worn my normal size but a size up was much more comfortable. i have a burnt orange skirt that i wear with this and it makes the flowers pop.,4,1,1,General Petite,Tops,Fine gauge +829,54,,If i stopped eating for a couple of months or jumped into a time machine and set the dial for 1990 i would really enjoy this beautifully made delicate blouse. the problem area is evident looking at the photo --the tiny tight fitted gorgeous bodice. i will keep this piece becasue i love it so and the apocolypse is apparently imminent and i have hardly any food in the house.,2,1,4,General,Tops,Blouses +907,33,,"I ordered this sweater in a s and i am happy with the sizing. i am 5'6"" 130 and athletic build, it is not a long sweater and looks just like the sweater on the model. i typically like longer sweaters but this will look great with a pair of flare jeans and a nice belt.",5,1,0,General Petite,Tops,Fine gauge +829,43,,"Just a warning. i am always a 6 or 8 and even the 8 was so tight in the waist i could barely out this on. if you don't have a super tiny upper waist, this won't fit well. too bad, because it's super cute, if a bit sheer.",3,0,3,General,Tops,Blouses +447,47,Nice shorts - love the tie front!,"I purchased these shorts in a size 24. i'm on the petite side of things and the shorts are a little big. the tie-front allows you to tighten the short. i actually think the photo does a good job showing this item. the color is a washed out gray and the shorts are not too ""short."" the fabric is light and this will be great for hotter days. i like them.",5,1,1,General,Bottoms,Shorts +829,48,Runs very small,"First comment about this piece is that it runs unbelievably small, which is not in line with most retailer pieces. i had to size up two sizes to get the size to close, on top of being busty. the material is thin and mildly see thru, but i think the shape it cute and it had a unique look to it with the tiny gold buttons and non-collar top. i decided to keep it.",3,1,1,General,Tops,Blouses +1094,56,Beautiful dress!,"I tried this on in store after falling in love with it on the rack. the dress is beautifully designed and has elegant, subtle features. i am normally a 2-4 in retailer dresses, but the 0 was the closest fit on me. unfortunately, this dress fit very strangely. the waist on the dress was way above my actual waist, which was unusual given i have a very short torso. it also had a strange fold right around my belly button, which was very distracting. i'll put this all down to my extremely straight and",4,1,2,General,Dresses,Dresses +1094,48,Love it!,Tried this lovely navy dress on in the store in a size 6 and it was perfect. wish there had been a petite available to try since the hem fell below the knees on me and it would have to be hemmed. the crisscross on the front is very flattering to the waistline and i love the see through fabric along the shoulders and back. it's stretchy too!,5,1,3,General,Dresses,Dresses +1094,35,Super score,"This is such a great work wear piece for me. it's form flattering, well constructed, comfortable and truly elegant. this is probably my 5th or 6th dress from the moulinette soeurs line and i am consistently impressed with the quality and wearability of these clothes. + +5'7"" 127lbs 34b wearing a size 4",5,1,0,General,Dresses,Dresses +1094,28,Perfect cocktail dress,This dress is perfect. it's ridiculously soft (i felt like i was wearing pajamas) and it fits perfectly. the quality is great; well worth your purchase.,5,1,0,General,Dresses,Dresses +1094,35,So flattering,"This dress fits beautifully. the fabric is thick enough to feel significant and not flimsy, but the dress doesn't feel heavy at all. the detail is gorgeous, but still subtle. it's a little too nice for me to wear to work, but the perfect special occasion or party dress",5,1,0,General,Dresses,Dresses +1094,22,,"This dress is amazing! i bought this dress for my daughter for her college graduation. it fits like a dream. she normally wears a size 2 but i got the 4 which was perfect. with the slightly longer length, it is very professional but with the lace cut outs is great for a party, as well. it is very flattering and well made.",5,1,1,General,Dresses,Dresses +1094,33,Petite ladies avoid!,"I fell in love with this dress in the store and have been so excited to receive my size in the mail, but the proportions are all off! even the petite size is too long in the torso, and the regular is laughable for anyone that isn't an amazon princess. and i'm not even that short (5'4"")! + +curvy ladies, also keep in mind that though the rest of the dress stretches nicely, the grosgrain ribbon detailing in the midsection does not, and will cut into any extra flesh hiding out on those hips. i would",3,1,5,General,Dresses,Dresses +1094,44,Design great; fabric terrible,"I really wanted to like this dress. the color is perfect, the design and cut are cut (not always the case at retailer). however, the fabric quality was terrible - a shiny acrylic with cheap nylon lace. it looked like something from a discount store and had to go back.",1,0,1,General,Dresses,Dresses +1094,46,Better than i even thought!,"Boy is this a winner. the fabric has quite a bit of stretch, so it is form fitting but with enough structure that it doesn't make you bulge out in weird places. i can wear it with a blazer as a (admittedly dressy) day-to-evening look, and i can tell i'm going to get a lot of mileage out of it for the season's holiday parties. i am bigger on bottom than on top, and sometimes that can end up with weird bagginess around the bust for me, but not with this dress. i'm tall #5'8) and so the length is g",5,1,0,General,Dresses,Dresses +1094,47,,"Great dress. wonderful on hourglass and skinny straight shaped girls. +love the color combination and fit.",5,1,0,General,Dresses,Dresses +1094,45,Great dress,"Love the fabric and design of this dress, very unique and comfortable. it is not lined, which explains the lower price when compared to other well fashioned dresses. i wore it successfully with stockings and no slip and it did not ride up or cling strangely. the fabric is stretchy and form fitting without feeling tight. the ribbons that define the detail around the waist were a bit snug but we're not uncomfortable. they define the waist very well. i am 5'7'',127lbs, athletic build and the 4 fit",5,1,3,General,Dresses,Dresses +1094,33,Beautiful,"I can wear this to work or dress it up as a cocktail dress. the fit is great, and the quality is very high. am usually a 2 or a 4, depending on the dress, and the 2 worked better in this one, so if you are between sizes, i would size down.",5,1,4,General,Dresses,Dresses +1094,39,Versatile dress you will wear over and over again!,"I cannot say how much i love this dress. i purchased it in mid-november and i'm wearing it for the 4th time this evening, which prompted me to write a review. it fits tts. the stomach area is slightly unforgiving, but due to the dark color, it's not at all a deal breaker. plus, it's a great dress to wear with opaque tights, which solve the tummy issues as well. what i love most about this dress is its ability to go from day to night/less formal to more formal. it looks great with edgy black ankl",5,1,0,General,Dresses,Dresses +1094,28,Loved it so much i bought it in the wrong size,"So, when i first found this dress it was already on sale and sold out in petites. for reference i am 5'2"" and currently weighing in at about 108, and my bust is a 32d. the store near my work has a petite shop (thank goodness) so i headed there after my day. they didn't have it in my size but they did have the regular sizing in a 0, which i promptly purchased. + +the crossed part sits a little higher than my natural waist, but i think for someone with a slightly smaller chest it would hit spot on.",4,1,0,General,Dresses,Dresses +446,31,"Basic shorts, cute pattern!","Comfortable shorts. thinner fabric. pattern disguises underwear lines. love the exterior pockets, as i won't have to tuck them in when i zip up. as the previous reviewer said, the black and white pattern has blue accents. they're mid-rise and a longer length, which i appreciate.",5,1,0,General,Bottoms,Shorts +1094,54,,"I am very petite (5', 96-100 lbs) and find this to be pretty formfitting (not in a bad way) - a rare feat for petites! it is very comfortable - soft, sweater-like material and texture, which does make the dress feel slightly cheap to me, but it doesn't make it look cheap. it's also beautifully patterned in person, pretty true to the online photo, with the only difference being the dress is darker in person, so i don't feel the blue stands out as much as it does on the online photo. the length is",5,1,3,General,Dresses,Dresses +446,28,Summer time shorts,"These shipped fast!!! the fit is good. these shorts have some stretch to them, which is nice. there is a green/blue color in the fine detail making them versatile with a few different colors of tops. true to size. the length is perfect for my taste. i am 5'7"".",4,1,0,General,Bottoms,Shorts +829,45,Super cute,"If i saw this online i would never have glanced at the picture twice. instead, i came across it at the store and immediately snatched it up to try on. the green is very spring-y and rich while the raised little dots give it a lovely texture overall. really adorable on and fits fine in the regular although i am usually petite.",5,1,0,General,Tops,Blouses +1104,35,Welcome back 1994,"I thought this was so cute online, sweet and feminine, but when it arrived and i tried it on in my usual 12p i felt like i had just stepped back into freshman year of highschool - it is very early 90s - not the bohemian i was going for. it is also very high waisted, even for my little 5'1 frame. i truly felt like they pulled this out of someone's closet, dusted it off and said, ta da! as much as i love rachel and monica i have moved on from their clothing :)",3,0,43,General,Dresses,Dresses +864,34,Love it!,I am in love with this top. i was a little nervous because i'm on the bustier side (34d/dd) but it works for me so i say give it a shot--you never know. i'm hoping for more tops like this in the fall line.,5,1,0,General,Tops,Knits +974,53,Wait for a sale,"At first i was interested. i liked the color, the soft tencel fabric, the cut in the back. it was all good. they didn't have my size in the store so i had to order it. when it arrived in the mail it was folded up and wrinkled. i tried it on and it looked like a lifeless unstructured blazer. i sent it back. +all in all, it is cute and fun for warm weather. it is definitely a casual blazer. i'd probably wait for a sale on this one. +it does run tts.",3,1,3,General,Jackets,Jackets +1117,51,Perfect accent piece,Love this piece. it is warm and attractive and will set any outfit off from a dress to jeans and a t-shirt. i look forward to wearing it often.,5,1,0,General,Jackets,Outerwear +850,41,Cute top for all ages,"Fits true to size! looks great just wish it was a tad longer but i am 5'10"" so...",4,1,0,General,Tops,Blouses +974,27,"Really soft, great jacket. not navy blue","Tried it on in store, it's more of a cornflower blue instead of a true navy. if you zoom in you'll also notice there's a pattern to it. i think it gives it a little something extra. i may put gold buttons on it as the plain black buttons are a little boring. + + didn't buy it right away and came back with a survey coupon and it was out of stock. had them order and free-ship it to me from the store. + +fit is nice and relaxed. i like how it goes up in the back so it pairs well with dresses and",5,1,5,General,Jackets,Jackets +1072,33,Not for busty ladies,"I love vintage lace so i was very excited to try on this dress. unfortunately, it just didn't work for me. i'm a larger, busty lady (size 14) and i tried on the xl. it fit fine, but did absolutely nothing for my figure. it just kind of hung on me. even with the belt tie i still feel like it didn't accentuate my waist line. i think this is better for someone with a straighter figure.",3,0,2,General,Dresses,Dresses +864,59,,"Very fun shirt. is see through beyond lace so need to wear black tank or black bra. very comfy, flirty and feminine. tts. flowy fit like on model.",5,1,3,General,Tops,Knits +850,37,Island blue off the shoulder top,What a flattering top! great with jeans or shorts. i'm a sz12 and l was perfect for me. love the colors - got lots of comments.,5,1,1,General,Tops,Blouses +1072,40,I like it,Finally saw this dress online. i have to say that it looks better in person. the model might be too tall for this dress. i am 5'4''. it's right to my ankle. the color is in a nice off white. the material is a good quality. the overall cut is nice. it's a kind of classic feeling.you could wear it for a long time without going out of style.,5,1,12,General,Dresses,Dresses +864,45,Fun and easy,"I was going to re-turn this.top i was really on the fence. so glad i didn't, it is.comfortable and easy to wear. lace is a little restrictive, but willing to over look it because i look so cute",4,1,0,General,Tops,Knits +524,39,Print may not be symmetrical as pictured,I like these pants. they fit nice but they are sheer which is not a problem for me. my only issue was that the print is not symmetrical as shown in the picture. the print is what drew me to these pants. the pattern is all over the place in the ones i received. they are nice so i will keep them at the sale price but i don't think they would be worth it at full price.,4,1,1,Initmates,Intimate,Swim +836,42,,"This white blouse is absolutely stunning in person. i wore it with a nude strapless bra. note to self: remove makeup before blouse, otherwise it's all over your blouse.",5,1,0,General,Tops,Blouses +864,55,Nice top for flat chested,This top has nice quality lace but the layout is strange! it wouldn't stay under my boobs but kept creeping up and looked strange! not for girls with a chest!,3,0,39,General,Tops,Knits +524,39,See-through,"These are soft, silky, and super comfortable, the fit is very flattering, especially with muscular legs. beautiful pattern and colors, fit like a glove. however, unfortunately, they felt like pj pants, i know they are beach pants, but they were pretty see-through. for the price, i decided to return and wait for potential sale... +ps i needed heels as they are long if you usually get petite.",4,1,4,Initmates,Intimate,Swim +850,39,Cute and nice colors,"I tried this one and actually liked it more on me when the shoulders were slightly covered, so i decided to leave it back as it would bug me eventually... but the style is very feminine and the colors are gorgeous... if you like off the shoulder look, i say definitely worth it. the fabric was soft enough too. + +the xs (or 0) was great (regular size) for 115 lbs, 30 dd.",4,1,8,General,Tops,Blouses +97,29,,,4,1,0,Initmates,Intimate,Sleep +974,69,Great jacket!!!,"Cannot believe this is still available and on sale. am 5' 6 1/2"", 150lbs, size 12 is perfect. this jacket goes with everything i try it with. it is silky smooth but still has structure. is a softer blue than navy. i love it! this is an absolute steal on sale.",5,1,1,General,Jackets,Jackets +836,62,Beautiful blouse!,"This is a gorgeous blouse. the quality is on point. i was so disappointed because i had to return it. +the blouse was just a few inches too tight across the bust.",5,1,0,General,Tops,Blouses +850,59,Beautiful top,I loved this top from first sight and finally bought it this week. i am usually a six or a small. the small was so tight on the top that the ruffle rolled up across my chest. i ended up with a medium.,4,1,0,General,Tops,Blouses +864,46,Not for the busty of us!,"What a huge disappointment! i was really looking forward to wearing this top but it is very tight and awkward around the bust. if you have any semblance of a chest, this is not for you! i am a 38c and this was a no go. the quality of the top seems to be top notch but the fit was just no. it felt restrictive and it was hard to even move my arms and i have slender arms.",3,0,39,General,Tops,Knits +1077,31,Dress can't be cleaned,"Retailer has incredible service, and so they let me return this dress even after having worn it. however, this dress cannot be cleaned. i saw a stain on it after the first use, so i first tried hand washing it. however, the black part of the dress came off on the white part, making the stain worse. i then tried dry cleaning it (the care tag allows both) and that produced 3 or 4 new stains where the black rubbed off on the white. it's a beautiful, striking dress (that would be great maternit",1,0,2,General Petite,Dresses,Dresses +864,52,It really is true to size,"Beautiful blouse - my only complaint is that the lace is too open for my taste. i'm a size small or a 4 for the most part. in retailer i can sometimes wear an xs. i decided to keep the small. yes, it's slightly restricting but i don't notice it much - it's definitely not a straight jacket. i also ordered a medium and in a way it could have worked but there was a lot of extra fabric. i am not flat chested - i wear a 34c - 32d depending on the bra. if you are inbetween sizes like me go with the larg",4,1,0,General,Tops,Knits +850,42,Wow,"I was looking for a cute going out top that was age-appropriate (40yo). i read other reviews that it ran large so i got xxs regular (xs not available) for reference, i am 5'2"" and 95 pounds but semi-broad in the shoulders. + +i was wary of the poly fabric but it is surprisngly nice and drapes well- easy care for sure. doesn't look cheap at all. when worn on the shoulders, the elastic is tightish, but maybe i could have gone to xs if they had it but at least i know the xxs won't fall/slide. + +i",5,1,0,General,Tops,Blouses +836,36,,,5,1,0,General,Tops,Blouses +864,58,Beautiful!,I love this top! super soft fabric and beautiful with jeans. getting ready to retire and will make this a regular in my new wardrobe! thanks retailer for putting it on sale!,5,1,0,General,Tops,Knits +864,56,Beautiful but an usual fit,"This top is beautiful. the cutout portion extends below the bust, but is intricate enough to look good with a black bra or exciting with, say, a taupe or grey one. the fit across the shoulders is snug, but the rest of the top is very voluminous. don't expect to tuck this swamp thing in. it's a bit of an odd contrast, but if you're prepared to wear something that is itself a beautiful object, even if it doesn't really make sense for a human body... this is it.",4,1,1,General,Tops,Knits +1028,38,Excellent dark wash jean,"Color is very nice and dark, with just a little fading around the knee. i sized down to 25 from my usual 26-27 (5.4' 120 lb).",5,1,0,General,Bottoms,Jeans +1072,41,Strange shape,"I'm not really sure what the designer was trying to accomplish with this dress. the fabrics and details are pretty but the shape is really strange. for one thing, the dress has a very straight cut so there is not a lot of room for movement and the thin belt makes the shape even worse. i felt like i was wearing a really fancy garbage bag. also, the way the bottom flares out is just strange considering the cut and length. i really wanted to like this dress but unfortunately it was a complete miss",2,1,10,General,Dresses,Dresses +1117,30,Can't love enough,"This vest goes with literally everything. it is the perfect amount of added warmth - though it's a bit hard to fit under a coat. the only thing i will say negatively about it is that it seems to shed on the inside a bit... but otherwise the quality, color, and length are perfect. and i love the pockets!",5,1,0,General,Jackets,Outerwear +1104,36,Soft well done design,"Dress runs a little small, tight on top. so i had to exchange from a size 8 to a size 10. originally ordered a petite but petite wasnt available in the 10 so i will probably have to get altered for an extra expense. the material is light and soft, flowers are muted. maybe would of prefered a little sleeve but design is so cute.",5,1,8,General,Dresses,Dresses +864,46,Pretty lace detail,"I consider myself fairly busty (34 d), but i didn't have any problems wearing my normal size small/medium.....i actually went with the small. the lace inset doesn't give, but it wasn't tight at all. i love the flow of the blouse....it is going to be a great transitional piece into fall!",5,1,1,General,Tops,Knits +864,34,Love!!!,"Unlike other reviews i find this top to run true to size. for reference i'm 5'3, 117 lbs, 34 b cup, and took an xs. top fits comfortably, no tightness around the chest, and sleeves' fullness isn't overwhelming. the lace is see through, so a cami is a must. top is of excellent quality and craftsmanship. i have not laundered it yet, so i can't comment on that. so happy with my purchase! a keeper for sure!!",5,1,0,General,Tops,Knits +829,36,,,4,1,0,General,Tops,Blouses +850,64,"Wonderful top, very unique","Get this while you can. it will not last to hit the sales. it is a beautiful top, with very unique colors and pattern-reminds me of key west. it has a slight tent shape at the bottom, which is not how it appears to be, but the cut is very nice and well done. i wouldn't size down, as the armholes are not huge, and then it would be too tight. i will have to cut them about 1/2"" to not bug me, and i'm typically a med, which is the size i got. i could take the sides in about 1"" on each side, which is",5,1,5,General,Tops,Blouses +1077,35,Fits like a potato sack,"I bought a petite medium and the length was right, but it fit like a potato sack. it was quite comfortable, and didn't look completely terrible from the front, but from the side, it was terribly unflattering. when i tried it on my boyfriend saw it and said it looked like i was wearing a nightie. i don't do form-fitting clothing, but this was the exact opposite and flared out every which way. it's got to go back.",2,0,0,General Petite,Dresses,Dresses +831,24,Awful,"I have never written a review before, and i love retailer and shop here often. however, i am so unhappy with this shirt i wanted to share to save someone else money. it is such poor quality, it looks thick and flows in the photo, it is very thin and it itches so bad, i could hardly even stand to try it on when it came in the mail. i will deff be taking it back, and do not recommend it at all.",1,0,5,General,Tops,Blouses +864,33,Cute but....,"The top falls nicely, great quality, the lace is beautiful. however, the sleeves are too wide and puffy. the top is voluminous and i wished it had more form fitting sleeves to balance this out. the top does not look flattering on me so i will be returning it.",3,0,1,General,Tops,Knits +1077,46,Comfy,"The fabric is very comfortable and soft. +love it - great fit.(tts) +would recommend",5,1,0,General Petite,Dresses,Dresses +1070,32,Best dress pant ever!,"These pants are amazing! i usually have a hard time finding ones to fit me due to my small size (5'1"" 100 lbs) but the 0 fit me perfectly. they are not too tight, just slim enough without clinging to you like a second skin. love the length , hits just above the ankle bone. versatile and comfortable. however, if i were any heavier, i cannot say these pants would work. i am fairly thin, in most cases i would size up.",5,1,0,General,Bottoms,Pants +974,34,"Looks good, casual",Very interesting material. the very subtle/light window pane pattern is perfect.,4,1,0,General,Jackets,Jackets +864,34,Pretty color,This is an easy-going weekend piece. it wrinkles a bit easily but it's comfy and swingy. i was a little confused about how to wear the shirt due to the open lace pattern (nude bra or nude cami?) i'm still not sure if it's appropriate to wear without a cami,3,1,0,General,Tops,Knits +850,35,Perfect top,I love this top in peach! i usually wear a size 8 and ended up buying the large because that was all they had in store. it fits well but loose. i usually front tuck it in. what i love the most about this top is the perfect way it slouches off your shoulders. very effortless but doesn't feel like it is falling off. a few other off the shoulder tops i tried are either falling off or rising up (and you constantly have to pull them down over your shoulders) due to elastic in the shoulder. this top h,5,1,2,General,Tops,Blouses +829,36,Green perfection!,"I'm so glad i found this gem in the store, as the online pic does this shirt no justice! the green version is vibrant and adorable, and this shirt is lightweight, without being see-through. for sizing reference: i'm 5'4"", 135 lbs, 34c and a size 6 petite. i tried this in the store in a size 4 and an 8 (only sizes they had) and rushed home to order it online in a 6. perfect fit, so i believe its true to size. the little details...the buttons and stitching make this shirt such a winner!",5,1,0,General,Tops,Blouses +1077,45,Love it,"Classic dress with a twist with split colors. very comfortable without looking like a bag on. can be dressed up or down. i am 5'7"" 118 and bought th extra small. perfect fit for me. not form fitting but still has shape and style.",5,1,4,General Petite,Dresses,Dresses +1072,65,Elegant but relaxed,"I fell in love with this dress from the moment i saw it on various mother's day weekend insta posts by retailer stores. i was worried that it would not be a great cut for me, as it's pretty straight up and down, and i wasn't sure the waist would hit at the right place, because i'm super high waisted and this didn't appear to be so. in truth, it isn't, and i'll be tying the ribbon (or wearing a slim belt) at a higher point than where was originally intended. however, what struck me was the ability",5,1,13,General,Dresses,Dresses +1077,54,Cute but thin,"This is a cute dress, not real form fitting and made of a thin but comfortable jersey material. little see thru and kind of sexy though if you have cute lingerie.",3,1,0,General Petite,Dresses,Dresses +1072,59,Beautiful dress!,"This dress is stunning. i have been stopped in the street by people asking where the dress is from. my only complaint is that it was very wrinkled when i bought it. initially i thought it was supposed to be that way, but after seeing the stock photos i realized it needed to be ironed. it took a long time to iron all of the wrinkles out, but it is totally worth it.",5,1,3,General,Dresses,Dresses +850,65,Perfect summer top!,"I bought this top for my daughter. the colors are so vibrant and the design and feel of the top is flattering. this top can be worn with black pants for a night out with friends, or with jeans or shorts to hang out at the beach! my daughter loves it!",5,1,0,General,Tops,Blouses +864,60,Gorgeous,"This shirt is nothing like the online pictures. it's a stunner in person. ended up with the black one though i was torn between it and the white. i would agree with some other reviewers that it has little to no give across the chest so i bought a l due to broad shoulders. the m fit like a glove and i was afraid it might tear if i raised arms or reached for something. not sure if a large busted girl would be comfortable. though i sized up, it didn't affect the way it hangs and it hangs beautifull",5,1,0,General,Tops,Knits +850,64,Makes me feel pretty,"I love this off the shoulder top. it is so flattering and the colors are gorgeous. i normally wear a small or medium in retailer tops, i am wearing an extra small in this one, and it fits great. i am only 5 1"" tall so the length hits me perfectly.",5,1,0,General,Tops,Blouses +1072,58,"Beautiful, unique dress!","I was not sure about ordering this dress, but i'm glad i did! i love the cut and all the details...very unique! i am usually a 10 and the medium fits me perfectly. love, love! if you're on the fence about ordering this dress, i say go for it. for reference, i'm 5' 6"" and the hem hits me mid-calf.",5,1,0,General,Dresses,Dresses +836,35,Love it... but size up!,"I love this top and was so happy when it came out in black! i'm typically an 8 on top and sized up to a 10, and it still feels slightly small across the shoulders and arms. it also requires a under tank because it's very sheer, even with the lining. worth it though!",4,1,0,General,Tops,Blouses +1077,31,Very chic!,This dress looks very good on me! it's a cute way to appear dressy without the extra work to look the part.,5,1,0,General Petite,Dresses,Dresses +1070,61,Beautiful pants but runs small,"Unfortunately, i will need to exchange for a bigger size. i am 5""3"", 115 pounds. i normally wear a 2 or a 4. i ordered a 4 and they are a bit too tight. i am worried the 6 will be to big but love the pants enough to give that a try. excellent quality.",5,1,2,General,Bottoms,Pants +864,31,Buy!,"Very flattering fit. a little billowy but i'm okay with that because it hides my stomach. have to wear a camisole underneath as you can see through the lacey parts. overall i love the shirt design, fabric and fit.",4,1,0,General,Tops,Knits +864,38,Beautiful; blue looser than black.,"I bought this blouse in black in december of 2015. like other reviewers noted, it has a bit of an odd fit with the lace being a bit constrictive across the bust and raising arms. it wasn't a deal breaker because i loved the look of the blouse. however, i just purchased this blouse in the new color blue in july of 2016 and i'm happy to say the blue color is looser and i have no problems with the lace being constrictive around the bust or arms. +- +the blue blouse i just purchased is definitely l",5,1,2,General,Tops,Knits +1072,52,Love,"I love this dress so much, very detailed and comfortable. looks great with the pilcro vest.",5,1,0,General,Dresses,Dresses +829,36,Cute top,"Great top, cuter in person with details than looks in picture. i found it to be true to size though i was worried it might be too boxy and wide. it was great, very cute! i do mostly plan on tucking it in with skirts.",5,1,4,General,Tops,Blouses +850,70,Love love love,"Love, love, love this top. it is everything i hoped it would be. i liked that it could be worn up or off the shoulder. what made me fall in love were the colors. quality is excellent as usual. it is quite full in bodice, however it's only an xs. i do best with xxs tops.",4,1,0,General,Tops,Blouses +1077,68,Not quite as pictured,"The comfort of this fabric is terrific. the swing-y style is easy to wear. however, i expected a black and white dress, which is how it looked on line. in person, the light portion of the dress is a marled oatmeal color. it is fine - just not what i expected. + +if you are a fan of swing dresses, this is a great, casual choice.",4,1,10,General Petite,Dresses,Dresses +974,38,"Awesome, stylish blazer","I tied this on a whim, thinking it was a big 80s on the hanger, but it is so cute and hip, i fell instantly in love. the material is amazingly soft and generally doesn't wrinkle. i wore it for my thesis presentation and it went flawlessly! it has a very light light-grey window pane print on it that looks great with grey pixie pants, white pants, and the blue is light enough you could even pair it with black bottoms and jeans. a total catch, and the fun layover in the back is just an added pop of",5,1,1,General,Jackets,Jackets +1117,58,A wardrobe essential,"You must have this vest for your fall/winter wardrobe. the design is extremely flattering to the female curves. i love the feminine ruffles. the pockets are a bonus. the vest is vegan-friendly. a hundred percent polyester! i normally wear a medium, but the small size fits me better. as an artist, i like to wear with my red plaid retailer shirt. hurry and get this vest before they are sold out. i'm sick i missed out on the museum district vest. all the smalls were sold out. i hope my experie",5,1,0,General,Jackets,Outerwear +864,42,Very well made!,"Another keeper! this top is just beautiful, it is so well made. worn with a black cami, chunky necklace and skinny jeans-perfection. the back drapes longer in the back which i liked as well!",5,1,5,General,Tops,Knits +864,23,Stunning but has fit issues,"This top is beautiful, the lace is sturdy and intricate and the top drapes perfectly, slimming. but, a word to the wise, the lace does not stretch at all even though the rest of the material does and that coupled with where it is on the bust and back means very limited movement unless you are a size 0 with an narrow back/chest and shoulders. i can't imagine anyone with a cup size larger than a b wearing this. i am 5'5"", 145 lbs and a 34b and always a small or medium and a size 6 for reference. i",4,1,93,General,Tops,Knits +864,63,,Ditto to all of the reviews who state that this top is beautiful but runs small in the bust. i am a large or an xl so i ordered this in the xl. i'm a little broad and busty and it was too small/binding. this is a beautiful well made top for a certain body type.,3,0,0,General,Tops,Knits +1072,46,Elegant but runs big,Thank you to all of the reviewers who took the time to write a review. your reviews are what help me know exactly which size to order and how to know that i needed a regular instead of a petite. i'm 5'3 and typically wear a size 8 in retailer sizes. i went with a medium regular based on other reviews. thanks so much because the fit was perfect though still a little roomy.,5,1,2,General,Dresses,Dresses +831,32,Very itchy,"I had to return this blouse because it ended up been too small and super itchy. im kind of busty but medium usually works and this one was super tight across my chest. not comfortable at all and the fabric is kind of a sheer with the sparkly lines in silver. +wouldn't recommend it.",1,0,0,General,Tops,Blouses +1070,29,,Not what i expected. they ran very small and the fabric seemed cheap for the price. returned.,3,0,0,General,Bottoms,Pants +959,38,Debating if i should keep it,"Since i could not find this jacket in the store, i ordered it online, and received it today. i would say it runs true to size to me. for reference, i am 5'2"", 120lbs, and size small fits fine. the material is a little bit on the thin side, it is not as thick as a typical denim jacket. i also found the color of the buttons to be different from the online images. the online images showed that the buttons are bronze/golden color, but the one i received comes with gunmetal colored buttons. i don't k",4,1,2,General,Jackets,Jackets +1104,31,Comfortable and elegant dress,"This dress fits well and is comfortable. my only reflection is that i am 5'9"" and it hits at my mid shin, rather than where it appears on the model.",4,1,0,General,Dresses,Dresses +974,28,,,5,1,0,General,Jackets,Jackets +831,33,Poor quality,The material is so thin and so itchy..like other reviewers stated..it itches so bad and feels like sandpaper..i thought it would be ok to wear a tank top underneath but sleeves are still itchy. otherwise the design is great and the long peplum hem is very pretty and would look great with skinny pants or leggings and boots,1,0,0,General,Tops,Blouses +850,57,Gorgeous!!,"I paired this beauty with the beacheress necklace and the result was stunning. the colorway in this top just makes my summer tan pop! i am 5'3""/36b/108 lbs and the xs fit perfectly. since it does run short there is no way that i would suggest anyone go with a petite unless they are under 5' and/or very short waisted! the fabric in the top drapes beautifully and i felt super feminine all evening...and got tons of compliments as well!",5,1,3,General,Tops,Blouses +850,48,Love it so much i bought it twice!,"It's embarrassing to admit but i am buying this top for the second time because i've misplaced the first one and i fear that if i wait too long trying to recover it that it will be a sold out item and i'll never be able to have it again... hence the decision to repurchase. i just love it that much. i'm sure that now that i have the second top the first one will mysteriously show up, lol! + +anyway, this top is a very flattering off the shoulder style. one of the things i really like about it is",5,1,0,General,Tops,Blouses +1104,39,Wish i could keep,"I wish i could keep this dress based on the pretty orange print and style but the fabric and details make this a return, even on sale price :( agree with previous reviews: bodice too tight, neckline too high/chokes, fabric is rough, outer is poorly attached to liner so it poofs in weird areas. too bad...so sad!",3,0,0,General,Dresses,Dresses +1104,39,,"Way too much fabric; sticks out like jodhpurs but from the hip - eek! might be a great dress in rayon or a drapey fabric, but the extra fabric just piles up on itself... the outer layer also doesn't feel like it will breath. add the cotton lining, and i think it will feel miserable in the heat of the texas summer. returning.",2,0,1,General,Dresses,Dresses +850,46,Islander top,"A little boxy. a little short in the waist. a little overpriced. but, the shoulder ruffle and the color are so flattering and in the mirror it just says summertime casual chic and cute.",4,1,1,General,Tops,Blouses +864,43,"Great color, fit was not flattering",This shirt is such a pretty color i was so excited to get it... however i felt like the fit was not flattering. it sort of just hung on me. didn't do much for me. i actually ended up returning it.,3,1,0,General,Tops,Knits +829,47,Super cute blouse,I love this blouse. the color is very cheerful with it's small white polka dot design. i usually wear a medium but went with the large because the shirt is slightly sheer and i will likely wear a cami underneath.,4,1,1,General,Tops,Blouses +864,38,Beautiful top,"It's funny because i coveted this top online for weeks, but looking at the reviews i kept thinking that it would look ridiculous on me. i am very busty and do not like things to cling or be too tight. however when i went into the store today i tried on both the cream and the black in larges, and both fit beautifully. i decided to go with the black just because i thought that i would get more use out of it. i find that it fits well, though perhaps the sleeves because of the elastic are a tad bit",4,1,1,General,Tops,Knits +1028,64,Great jeans!,"The girls at the local retailer are big fans of coh, & i've been thinking maybe i shld try them out. i ordered these online in the size 29, as i am usually a 28/29 in skinnys. i am a little hard to please, or say hard to fit in skinny jeans. i like a snug good looking skinny but not so much if it's uncomfortable. paying full price it is expected for the look & fit to be perfect. even if on sale, i won't go it if i think something is not right for me. at 5'3"", 117#, slender legs, skinnys are either",5,1,1,General,Bottoms,Jeans +864,37,Lacy & flowy,"I love the desi blouse! i got it in white and it's a little more off white than pure white, but it is a great flowy top. the touch of lace across the bust is a nice accent. the only down fall is that the sleeves are a bit puffy, but the rest of the top makes up for that.",4,1,0,General,Tops,Knits +850,66,Love the turquoise graphic design,"I am usually a small sometimes medium. purchased a small and want to wear it off the shoulder but it is too tight and the fabric is scratchy. it is a crepe fabric and although beautiful the hand of the material is not for me. +confused if i should return or get a medium as the look is very cool. +i wish this had been linen or some more natural material but still recommend it as a good buy",4,1,5,General,Tops,Blouses +850,38,Feminine find,This is such a cute top. i like it both off and on the shoulder. easily tucked or left out depending how you want to style it.,5,1,0,General,Tops,Blouses +1072,37,Gorgeous and comfortable dress,"I tried this dress on in-store and fell in love with it as soon as i put it on. it's beautifully made, the fabric is soft, comfortable, and free-moving, and overall it has a lovely vintage, romantic look. i actually ended up wearing it for a family photo shoot the next week, and was pleased with how it looked in our photos as well, especially the lovely way the fabric draped. another reviewer said it seemed baggy and oddly-shaped; it does seem shapeless before you tie the waist tie, but once tha",5,1,7,General,Dresses,Dresses +836,32,Really cute top,This is a great looking top in person. i've worn this with jeans or skirts for different looks and it's cute both ways. i would order a size up though as it is not a flexible fabric so the shoulders/chest area need a little room to move comfortably.,5,1,0,General,Tops,Blouses +850,37,,,5,1,0,General,Tops,Blouses +864,47,"Beautiful , romantic","I was hesitant to buy this because some reviews said that if you were busty it would fit tight and awkward across the chest.. i'm petite, 32c, 5ft and purchased the xsp in white .it is gorgeous! it fits a tiny bit big and i think i could have gotten away with a xxsp, but i like the flowiness of this size i have so i'm keeping it. it does not feel tight across the chest at all and hangs beautifully. i love it! the material is gorgeous and it is well made.",5,1,0,General,Tops,Knits +1072,40,,"I am so glad i read the reviews for this before i purchased it. i am 5'5 and 135 pounds and normally wear a size 6 in dresses. i would normally buy a small, but sized down to an xs and it was perfect! it's a beautiful dress and very flattering!",5,1,0,General,Dresses,Dresses +850,47,Watermelon dream!,"This top is my new favorite. i thought it might have too much volume, but it does not. it is very flattering. the color looks just like the picture.",5,1,1,General,Tops,Blouses +868,53,"Cute top, but...","A very cute and comfy top that's lightweight and falls nicely... but, it does snag very easily. so far, i've worn this top once and found small snags in multiple areas. the snags might blend into the fabric texture if they did not create dark spots. the yarn/thread is a mixture of a celadon tone and black, which concentrates the black when snagged.",4,0,0,General,Tops,Knits +1059,37,,Had to send back for exchange. way too big. i'm very excited to get a smaller size because they are really beautifully made.,3,1,2,General Petite,Bottoms,Pants +825,34,Cute plaid top with a feminine cut,"I like the color and the plaid pattern on this top. the material is soft to the touch and despite being petite, i bought the regular length to pair with tights. it has the feel of a baby doll because of the longer length on me. i quite like the feminine cut of the top which makes it slightly unique as far as plaid tops go. the material also doesn't feel too flimsy or cheap and the top feels well made. it will not be hard to reach for this item as it is a versatile piece, as many reviewers have n",3,1,1,General,Tops,Blouses +653,34,So long!!,"I am of average height, but these pants are so long!! i considered altering them because i like the print, but i don't think it's worth the effort for workout attire so they're going back. shame!!",2,0,1,Initmates,Intimate,Lounge +1095,53,Gorgeous dress,"This dress is really beautiful. i plan on wearing it to my nephew's wedding in april. my only complaint would be is that it runs extremely small. i am 5 feet tall and 90 pounds, slim build, and normally wear a 00p or 0p. i ended up with the 2p, and it fits perfectly. my advice to anyone considering purchasing is to order several different sizes and return the ones that don't fit.",5,1,16,General,Dresses,Dresses +623,33,Fabric pulls very easily!,I bought these shorts last week in the cobalt blue color. they are super comfy and the color is beautiful however after wearing them for only a few hours i noticed a pull in the fabric that all the way down the front of the right leg. i'm extremely upset about this because they were relatively expensive for lounge shorts. i love the shorts otherwise.,3,0,5,Initmates,Intimate,Lounge +825,66,Great shirt!,"I love this shirt so much that i bought a second one even though they are exactly the same. the cut and the fit are free and easy, so comfortable and how many shirts are all cotton anymore? washes well, hang dry, easy to care for. i recommend this shirt for a casual look with style!",5,1,1,General,Tops,Blouses +1042,42,Beauttiful fabric,"I love these pants. the material is so nice and well made. i love the glittery threads within the pattern. the waistband is elastic which is good for me as my waistline fluctuates. these pants can be dressed up or down. the length was perfect and hit at my ankle (i'm 5'3). the only flaw is that i wish the pant leg was slimmer around the ankle. it would be a more flattering look. . + +one thing to note: if you have a big butt or do not like to emphasize that part of you, these are not the pants",4,1,0,General,Bottoms,Pants +861,59,Costs too much for low quality,"Not up to retailer standards! fabric quite thin(you could see nude-color bra through the white one) and thin fabric, wide bottom hung sloppy; no way i would feel ""well dressed"" in this top. i returned it.",3,0,4,General,Tops,Knits +623,27,Great shorts,"I love these shorts. they're really comfortable and versatile. i got them on sale, and for the price they were a steal! the material is nice, and you can dress them up or down.",5,1,0,Initmates,Intimate,Lounge +825,31,Favorite new plaid,"I purchased this top during the 20% off sale and i'm very pleased with it. i love how flowy it is without looking like a maternity top. for reference, i'm 5'4, 130# and purchased a small (my usual retailer size). if you have broad shoulders you may have to size up as i found the arms and shoulders to run a little small.",5,1,3,General,Tops,Blouses +861,30,Off,"I am not in love with this top and will be returning it. from the front it looks like a basic tee (which i expected) but the back ""x"" is too loose and slumps to the side so that it doesn't look like an ""x"" as the picture shows. so basically the focal point of the tee falls short.",1,0,1,General,Tops,Knits +866,23,Great hoodie!,"I loved this look! it's s great light hoodie to throw on. comfortable, nice color, and unique with the plaid later! i'm 5'3"" and the xs fit well.",5,1,0,General Petite,Tops,Knits +1059,52,So beautiful,"I love these pants! they really make you look and feel classy. i also bought the feather tank and absolutely love this outfit! it is flattering, beautiful and oh so comfy! true to size,",5,1,1,General Petite,Bottoms,Pants +825,34,Cute fall/holiday top,"Love this top! the quality is great and the pattern is even cuter in person. i'm 5'4"", 125 lbs and bought my normal size s which fits perfectly. it's pretty flouncy and roomy, which is nice because it hides my post-baby tummy. especially love how the back covers my bottom which means i can wear my skinny black leggings underneath. definitely recommend!",5,1,1,General,Tops,Blouses +872,52,Very cute,This top is so pretty and feminine. i love how the design and quality of this top.,5,1,1,General Petite,Tops,Knits +890,39,Nice but neck dind't work for me,"I tried on the xs in store (would need xxs i think, it is short enough to not need petite). anyway, the neck part was really bunching up on me (between neck and girls), it wasn't flattering. the rest of the tank is really pretty and flattering though, but the bunching was enough for me to leave it behind. the fabric is soft, and the color is nice warm neutral. i love the lace back with the subtle layer of satiny looking fabric. overall goo, perhaps i don't have the right shoulder shape fr this.",4,1,0,General,Tops,Fine gauge +861,39,Another sheer shirt,"The white is completely sheer. i am so tired of see through shirts!! even at the sale on top of sale prices, i wouldn't recommend this shirt. if the fabric weren't sheer it would be a very comfy shirt with a cute back. but it just looks silly with a tank top under it, the cotton just doesn't lay right.",3,0,0,General,Tops,Knits +1059,61,,Very comfy and really nice fabric. can see myself wearing these a lot. i'm a size 12 and the fit was perfect.,5,1,8,General Petite,Bottoms,Pants +868,23,Soft,This is so soft and really cute. would be a good bathing suit cover- must wear a cami under it.,5,1,7,General,Tops,Knits +872,37,Unique and pretty but kinda sheer,"I tried on this top in the ivory color in the store, but i didn't need another ivory-colored top, so i passed it up. however, i kept thinking about the pretty details, especially trim on the sleeves, so when i saw it online in the red color, i ordered it. i was surprised when it arrived with how thin and sheer the fabric is (the soft flowy mini-pleated body of the shirt; the other sections are flat cotton, which is more sturdy). i hadn't noticed this when i tried on the ivory version! but i'm ke",4,1,0,General Petite,Tops,Knits +861,39,Great top!,I bought this top in black and love it! the crossed straps in the back give it a stylish twist. i also tried it in white and found it to be a little see thru.,5,1,0,General,Tops,Knits +623,75,,These shorts are super comfy and the color is awesome!,5,1,1,Initmates,Intimate,Lounge +623,37,Cute and comfy,"Flattering fit and design, but the material is thin and they are semi-sheer. great for lounging and the beach! very comfy!",4,1,1,Initmates,Intimate,Lounge +1095,35,Cute style but poor quality,"I ordered this dress online. the previous reviews were accurate that it runs small, particularly in the waist. i normally wear a 0 or 2, but i ordered the 4. it fit my waist and hips but was slightly loose at the top even though i am a 34c. i liked the look, but it had a hole where the seams had come apart between the black stripe across the chest and the main fabric. additionally, the black squares were pulled in several places with threads sticking out. i returned it immediately.",2,0,4,General,Dresses,Dresses +1059,26,Love,"I bought these pants online in blue, and loved them so much that i bought them in the bronze two days later. very flattering fit, comfortable, great quality, and i look and feel like a class act wearing them. they're a bit of a looser taper style of fit, but that's just the style, and i've received so many compliments on them!",5,1,0,General Petite,Bottoms,Pants +1095,60,Beautiful dress,This dress looks amazing on. it fits your body like a glove and the zipper lies flat. the black out-lined neckline looks very sophisticated as does the pattern of the dress. my only issue is that the dress ran very small.,5,1,23,General,Dresses,Dresses +825,34,Cute and comfy,"This is a heavier weight shirt. it is fitted through the bust and shoulders and very loose below so, if you don't like loose fitting clothes, this is not for you. it is well made and looks cute with jeans.",5,1,1,General,Tops,Blouses +825,21,Perfect for everyday,"I absolutely love this shirt. it's so easily dressed up and is still really cute just on top of black pants and flats. great for the holiday season too! i am normally a size medium in all tops, i am 5'8'', 150 lbs, athletic-built and the medium is perfect. true to size, definitely recommend!!",5,1,1,General,Tops,Blouses +868,32,"Runs large, too much fabric","I thought this top would be a little more form fitting than it is. there is so much extra fabric near the bottom it is almost like a swing style top. the fabric will most definitely snag, as it is not a linen or cotton top material but rather a silky type and also very thin - not very good quality. i got the smallest size possible and it was absolutely huge, everywhere but the neck.",2,0,9,General,Tops,Knits +825,43,Love this top,Tried this top on in store in a small and it was a bit snug in the chest (32dd) but loved it otherwise. the sales associate had it shipped to me in a medium and it is perfect!! a great length over leggings or skinny jeans and is lightweight enough for warmer days or can be layered with a tank underneath and a cropped cardigan for colder ones.,5,1,0,General,Tops,Blouses +836,53,Beautiful top,"Nice top. you can dress it up or down. runs very large, i had to exchange sizes twice. my regular top size is 10 but end up buying size 6.",5,1,0,General,Tops,Blouses +861,43,Cute and comfy style,"I was hoping not to like this tee so that i can be $48 richer (lol). it's very cute. i would say runs true, but more on the smaller side. i usually wear xs and it's a good cut for me. it's not boxy at all. i love the strap detail on this tee. i hope the quality will hold up. for reference i am 5'3 and 123lbs (2/4).",4,1,8,General,Tops,Knits +1095,57,Several issues,I got this dress on line - i ordered several sizes after reading the reviews. it does run small. i usually wear a 2 in dresses and needed a 4. i love the fit and it is a beautiful dress - however the little black pin dots are easy to snag. i wore it once - didn't feel like i was wild that night - ha! - but when i took it off that night it had 3 places where it had snags - ugh!,4,1,3,General,Dresses,Dresses +1095,61,Great style,I loved the style and shape of the dress . it does run small. i had to return it because some of the black dots pulled and looked like it might be more of a problem as i wore it,3,0,1,General,Dresses,Dresses +1042,23,Beautiful but roomy,"These are lovely, dressy pants, but they act larger than they need to (even for the model above, see photos). i usually order size 8-10 in pants, and size 10 in these fit at the waist but felt bulky below, partly because of large pockets made of the same material. another detail to note: there is metallic thread running thru out the material, glinting more than the photos show. the golden vertical leaflets don't show as much, because of the overall shine. so i will return these lovelies, because",5,1,3,General,Bottoms,Pants +890,43,,,5,1,0,General,Tops,Fine gauge +825,76,Comfy and flattering,"Tis is a soft, soft cotton shirt that is comfortable and cute. it's a great top to use put on and go. i'm looking forward to wearing it often!",5,1,0,General,Tops,Blouses +868,40,Perfect,"This tee is versatile, soft, well made, and it washes/dries well. i love longer length and stripe pocket details. it runs true to size, and it is a beautiful dark navy blue. what more can i ask for?",5,1,3,General,Tops,Knits +825,68,Very cute!,"After reading other people's reviews, i was afraid it might be too long. i ordered the regular xs as all the petite a were sold out. i found the length to be perfect and i am only 5'2"".",4,1,1,General,Tops,Blouses +1042,62,Beautiful!,Love all things mes demoiselles and these do not disappoint! the gold does not show in the picture but they sure do sparkle...in a great way. the fabric is rich and can be worn all year as they are light weight for summer but carry a look perfect with sweaters. i love them and with the sale on sale they were a steal and happy to have them...they will be that one piece that i will grab again and again. i love the look of peasant blouses and shorter vests...in a contrast print would be incredible,5,1,1,General,Bottoms,Pants +236,40,"Gorgous design, poor fit",This suit is absolutely gorgeous but it really will only fit a very short waisted gal. it fit perfectly in the body and in the bust but just was not long enough for me to lift my arms up and my size c cup boobs to not pop out. i was very sad to return it :( i am a size 8 with c cup boobs and ordered it in a medium,2,0,0,Initmates,Intimate,Swim +623,53,,,4,1,0,Initmates,Intimate,Lounge +825,84,Love it!,Love this top. great twist on a traditional plaid. looks great with skinny jeans or leggings. i get compliments on it every time i wear it.,5,1,0,General,Tops,Blouses +1059,68,Nice looking but stiff material,"These pants are attractive but their material is stiff and feels like canvas. i like them, but am not sure that i ""love"" them. perhaps they will get softer with wear, but only time will tell.",4,1,1,General,Bottoms,Pants +868,55,"Nice, but too long","I loved the rich navy blue color with the accent pockets. the fabric was a nice weight, not too thin like lots of retailer tops. i liked the top from the front, however the back was way too long, especially with the looseness of the style. it would have been much better if it were not so much longer in the back and maybe a little more fitted. it might work on someone taller. i'm 5'3"" and 120 lbs. and i tried xs.",3,0,2,General,Tops,Knits +825,27,Super soft,"Super light and soft. haven't worn it out but expect to wear with jeans. it will be cute and comfy. i'm 5'2"", 130 lbs and bought a small, fits well.",5,1,1,General,Tops,Blouses +861,44,"Not too sheer, but it is too long","I bought this shirt in white and am happy with the fact that it's not too sheer. the back detail is great. my only complaint is that it is too long. i got the small and it fits nicely in the arms and top, but it is much longer on me than on the model. i'm 5'5"" tall. it doesn't look great when i do a half tuck, but it looks fine if i tuck it all the way in. maybe an xs would have been a better fit.",3,1,4,General,Tops,Knits +1047,36,Beautiful until washed,"I absolutely loved these pants the first several times i wore them. the fit is flattering, they are a perfect long length, and the colors are stunning. after several wears, it was time to wash them and i followed the directions provided to wash with cold water and line dry. i was initially horrified with the amount that these pants shrunk in fit and length and the colors ran together. after a lengthy ironing session, i was able to smooth out the material and restore much of the length and fit bu",3,0,3,General Petite,Bottoms,Pants +1059,50,Great skinny pants,"I really liked these pants! they are so audrey hepburn. i especially like how they come up high on my waist. i actually bought 3 different pairs of ""essential"" pants and kept all of them. (essential taper and essential slim). i stated that these run small but they just seem to run smaller than the other two. i'm 5'3"" and they are a touch longer than i'd like but that is an easy fix. for reference, i'm 110 lbs and bought size 2 in these and 0 in the others",5,1,0,General,Bottoms,Pants +1059,37,,,5,1,0,General,Bottoms,Pants +950,35,Cheesy...,"I agree with the other reviewer who stated this sweater is very ""80's""!! online it looks minorly fluffy with muted colors, but in person it's a bad overly-fuzzy christmas sweater with super bright 80's colors!! if you're going for kitschy / tacky / retro this may work for you, but if you are looking for the sweater in the photo you'll be disappointed... :( it looked to be true to size, but to be honest i hated it so much i didn't even try it on.",3,0,2,General,Tops,Sweaters +1059,47,Good pants,"I bought a pair in both black and green. i sized up one size because of previous reviews. i am happy with the fit. they are very comfortable, look good and keep their shape. the only negatives are after two washings, (following the directions-cold water, no dryer), the black has faded and the hook closure on one is difficult to close and the other was barely attached. overall, i would still recommend them.",4,1,0,General,Bottoms,Pants +1047,30,They shrink - but here's the fix!,"I love these pants - the color is great, the style is comfortable and easy but can be dressed up. like other reviewers, i washed these according to the care instructions and they shrunk horribly. however - after some googling, i was able to find a fix. soak the pants for 5-10 minutes in warm water mixed with 3-4 tsp hair conditioner. gently wring them out and start to (gently) stretch the fabric as much as possible. hang on a drying rack and continue to gently stretch the fabric as the pants dry",4,1,8,General Petite,Bottoms,Pants +1022,46,Fabulous fit & feel,So soft and comfortable ? i wish i'd bought the other colour too!,5,1,0,General,Bottoms,Jeans +1022,25,Obsessed w/ag stevies,"I love that these are a nice thin stretchy material (not in a bad or cheap way) because they are perfect for the warm weather as well. i got the color grey in a size 29. i usually wear a 29 in stevie's so they were tts. maybe a bit tight in the beginning but they do stretch a little with wear. i did try on the size 30 but they were a little big around the waist. for reference i am 5'6"", 145lbs, size 6/m. the fit of stevies are perfect and hugs in all the right places. i have wider calves and it",4,1,0,General,Bottoms,Jeans +1059,41,The perfect black pants,"Thank you retailer! these really are the perfect black pants. great fit and construction. the material doesn't wrinkle, they slim and shape the body and they are at a good price point. i did have to go up one size but i especially love the elastic in the waistband. my local store almost sold out of these in a day.",5,1,7,General,Bottoms,Pants +1022,60,Comfy yer dressy,Love these jeans.,5,1,0,General,Bottoms,Jeans +862,63,Basic tee,Love the sleeves - good length and fit. it's a basic tee that has added flare.,4,1,0,General,Tops,Knits +293,46,,"This is probably my new favorite bathing suit. the colors are a tad different than in the picture, but still really pretty",5,1,0,Initmates,Intimate,Swim +862,66,"Made poorly, but still kinda cute","I really wanted to like this top. in fact, i have put it on to wear several times then opted for something else. so i'm thinking it has to go back. for one thing, the yoke part is sewn onto the bottom so the stripes are crooked...that bothers me. i may get it in the white instead because i do like the style. i just wish it were in a solid color. but try it - it might work for you!",3,0,2,General,Tops,Knits +1059,61,,Runs a bit small. very slimming. love these. when will they be available in moss again?,5,1,0,General,Bottoms,Pants +1059,46,Fabric has a sheen,"These pants fit tts and are ask pictured in length on me (5'5""). i can go between a 4 and a 6, and tried the 6 and they were fine. that said, the fabric completed turned me off. it is that sort of stretch fabric with a sheen to it. i did not find them to be the wonderful wardrobe basic i thought they'd be- the fabric is just too stiff, and the sheen made them feel cheap, unfortunately.",1,0,5,General,Bottoms,Pants +293,29,Unique detailing / boho,"Love this suit. i ordered up a size on the bottoms, and am so glad i did. the style fits true to size, is beautiful, and vibrant. i thought it looked like ribbing vertically, but it is just part of the design. it is not padded at all, but is thick enough to be seamless.",5,1,0,Initmates,Intimate,Swim +1047,58,Beautiful pants,"Tried one at the store. love the look and feel of this pants. so soft and flowy! sizing runs large. for reference, i'm 5'4"" and 115 lbs. xxsp fits just right. highly recommended!",5,1,3,General Petite,Bottoms,Pants +1047,30,Poor quality - seams split,"I purchased these pants while on vacation because i thought they'd be the perfect addition to my comfy travel wardrobe. on my second wear, i happened to be on a long-haul flight when the entire side seam split about a food long on my upper, outer thigh. luckily i'd packed a back-up dress. the pants weren't tight at all, but the seams wren't strong enough to handle a little pressure from sitting i guess. poor construction. i would not recommend these.",1,0,1,General Petite,Bottoms,Pants +862,39,Adorable casual top,"Love this top for spring - great with athletic leggings, regular leggings or jeans. it is a lot longer in the back, which i like as it covers my butt and makes leggings work-appropriate. great quality. true to size - i am 5'9"" and 128 lbs - xs fits perfectly. fabric is a little wrinkly but that is intentional. lighter material so it is good for spring weather, but sturdy enough not to be see through at all.",5,1,1,General Petite,Tops,Knits +862,48,Cute flowy tunic,"I'm a tunic girl--have to admit that. for me this top is fab. i love roomy, swingy tops and this is exactly that. as others have mentioned, it is quite roomy at the bottom, however the weight of the fabric is so light it lays very nicely. i love how it fits in the arms. i hate when arms are too big. the sleeve fits snugly. for reference i am 5'5"" 140 lbs. the small fit perfectly. i have already worn several times to work. perfect in the a/c.",5,1,0,General Petite,Tops,Knits +1022,61,Love these cords!!,"I'm just ordering my 3rd pair!! i first got the grey,,,just about live in them! super comfy and flattering! then i got the off white and now i ordered the green which i cannot wait to get. great pant!",5,1,2,General,Bottoms,Jeans +1022,60,Love,"Perfect. +these cords are soo soft, but hold their shape +low rise is great for shorter people ! regular rise comes just between navel and bra !",5,1,0,General,Bottoms,Jeans +1059,35,Fades! falling apart.,"Within 2 washings the color faded to a not so black black, like a pair of pants that has been washed over a year's use. after 5 or so washes the hook and eye closure began to fall off. the pants fit well, albeit a bit short (i'm 5'9"") and they run small. i sized up to a 6, when i usually am between a 2 or 4. i let the hem out, sewed the hook and eye closure back on and redyed them, and now they are good to go, but for nearly $90 i don't expect to have to do this much work. these are not my first",2,0,0,General,Bottoms,Pants +1022,33,Cute skinny cords,I purchased these in white and love them! fit my muscular thighs fine.,5,1,0,General,Bottoms,Jeans +862,56,Great top!,"Love this top! it runs very true to size, is not too boxy, and looks great on my 5""1"" body (i bought a medium). i purchased the beige top first, then bought this one. great addition to my wardrobe.",5,1,0,General Petite,Tops,Knits +1022,52,Disappointing,"For some reason, the cream colored cords are sheer. the material is quite thin. you can see the pockets through them, as well as the seams. i have other ag cords and it seems the material they are using this go around is substandard. too bad.",3,0,5,General,Bottoms,Jeans +1047,32,A little big,I purchased these in large which is normally my size on bottom. they are a little roomy and the waist is so high on me that i am going to tack the waist down. they are ok. good quality but not the best pants in the world.,3,1,1,General Petite,Bottoms,Pants +1022,49,,"I loved these when i first got them. they fit perfectly and are the softest and most comfortable pair of cords i've ever owned. plus ag is the only brand of jeans i buy. unfortunately, they stretch out horribly within one wearing. for such a pricey pair of cords, i'm extremely disappointed. i'm not sure if i should've sized down, but now i'm wishing i had, although i'm not sure that would make a difference.",3,0,6,General,Bottoms,Jeans +1047,49,,"I loved these pants. the fit well and were flattering. unfortunately after three wears, they came apart at the seam. very disappointing and frustrating.",2,0,12,General Petite,Bottoms,Pants +1059,41,Fabric too stiff,"These ran true to size, but the fabric is very stiff and unforgiving. i'm athletic and have lean legs, but these seemed to cling to and roll on every dimple on my thigh. and sitting down was uncomfortable at the knees because of the stiff fabric. i loved how they fit at the waist, but the legs just didn't work for me. sadly returning these.",3,0,5,General,Bottoms,Pants +862,60,Great tunic!,This tunic is flowy without having too much material to make you look bigger. i love the way it fits. i'm 5'4 125 lbs and got a small.,5,1,0,General Petite,Tops,Knits +1059,48,Pass on this one...,"Like previous reviewers have said, these run a bit small and i'm surprised no one's mentioned that these are very high rise. for reference, i'm 5'7"", 130 lbs, 34-27-37, and am an retailer size 4 in tops and pants. i really wanted to love these pants, but even after ordering a size up and trying on a 6, i was still not in love. and the other reviewers are right ? the back zipper is kinda hard to zip up. the top of these pants are exactly the same as the essential flares, so if you're thinking of ge",2,0,0,General,Bottoms,Pants +1059,71,Loved at first but...,"I was so excited to finally find a work appropriate contemporary pant that i wore them about 3 times in the first week. needless to say they needed to be washed, and i followed the care instructions by washing in cold water and laying flat to dry. after just a single wash in cold water, the pants faded to the point that they looked like they were three years old. so sad, luckily retailer took them back without a problem. be warned, these may need to be dry cleaned which is a lot of maintena",3,0,0,General,Bottoms,Pants +551,58,"Beautiful, unique jacket","I was on the fence about ordering this jacket, but i'm so glad i did. i got my birthday discount to help afford it. as the first reviewer said, the weight is substantial, but not too heavy, and the embroidery is beautiful! i have not worn this jacket yet, but i expect to get many compliments when i do! i usually don't wear jackets in this style, so it's a fresh, new approach for me....the embroidery takes it to the next level! it fits true to size. i usually take a medium, and the medium fits pe",5,1,1,General,Trend,Trend +1059,37,Ick,"I look like a stuffed sausage in these pants and i even went up a size. for some reason, this fabric isn't working for me. i think it's the sheed combined with the stretch (or lack there of) of the fabric. i'll have to pass.",3,0,4,General,Bottoms,Pants +1059,60,New favorite pant,"I can't say enough about this pant! the fit is perfect, enough shape to hold you in but not so tight you think you're wearing leggings. this is my go to business casual. can't wait to get another color, my store had this in black",5,1,9,General,Bottoms,Pants +1059,53,Fatal design flaw... zipper in the back?,"These would have been the perfect black pants! great cut, love the wide band in the front, true to size, quality construction. but a zipper in the back?!!! i had to ask my husband to help me zip them up. perhaps they would be easier to put on if my bum were a little smaller, but the pants fit perfectly - they were just too hard to put on. sending them back, since i don't have an assistant to zip them up whenever i need.",2,0,0,General,Bottoms,Pants +1047,56,"""formal pajamas""",These are super comfy and so flattering. i feel like the picture doesn't do them any justice! they would also look cute paired with wedges!,5,1,2,General Petite,Bottoms,Pants +1022,42,"Super comfy , great fit","I like these pants a lot. got one pair in black +and one pair in holly. the green holly are just a perfect green, so nice for the season. they are very comfy and feel right all day without any sagging. +i highly recommend and would buy more if they weren't on the pricier side. +oh and great for causal but also dresses up nicely with some heels and a silk blouse",5,1,6,General,Bottoms,Jeans +862,51,Another big boxy top,I had high hopes for this top but once again it is just a big boxy too much material top. i get the style but if it adds 10lbs to your middle area its not for me. it is a thin material so it does hang nice.,2,0,7,General Petite,Tops,Knits +1059,51,Lightweight classy work trouser,"These trousers are not lined. there is a wide elastic band that runs along the inside of these slacks that is not tacked down, which is a little cheap and probably to keep the price down but doesn't affect the overall fit. and they do fit nice. when your putting them on the fabric bunches at the crotch but then slims out after you zip them (zips up the back.) the fabric has some spandex in it but the lyocell makes them a great choice for work. they hit my ankle a bit lower than on the model. i'm",4,1,11,General,Bottoms,Pants +1059,62,Great wardrobe basic,You can't go wrong with these pants. as other reviews point out when they say skinny they do mean that this is a skinny fit so order accordingly. i ordered a 4 when i have been wearing 2s in many other styles and was glad for the 4. i thought the fabric was all season so don't agree with some other reviewers regarding the stiffness of the fabric. i think it's perfect. everyone is different. these are pretty close to year-round wearable.,5,1,0,General,Bottoms,Pants +1059,63,,"Purchased these pants that i had quickly tried on. when i got home, i re-tried them and felt they were too snug and the material had an odd feel and did not lay right. i took them back and tried them in the next size. they fit much better but the material did not lay well on me. i think that they are a bit too stretchy and ended up not buying the larger ones either. i would definitely recommend trying these in a store rather then ordering online.",3,0,0,General,Bottoms,Pants +1060,44,Terrible,I'm 5 ft 7 125 lbs true size 4 and these pants made me look like i had boy parts. super disappointed!,1,0,13,General,Bottoms,Pants +862,33,,"I really love this top; i got the ivory and now i will probably get the black too. if you get it in your normal size (i'm almost always an xs and got this in xs), it's fitted and flattering. the seam across the sternum makes it feel like an empire top which always seems to look good on me. it is fitting in the chest and arms. it's really lightweight and has 1/2 sleeves so i will wear this even in summer.",5,1,4,General Petite,Tops,Knits +551,62,Treasure,"This jacket is a real treasure and i could never have seen how substantial the embroidery is from the photo. also from the pic the jacket looks like a thin cotton, but on the contrary it is a wonderful weight with a feel like denim. the embroidery is a wonderful texture like heavy string or thin rope so it really has dimension... . i loved it so much i got the sweatshirt also by the same designer. can't wait until cooler weather so i may live in it! also when you have it on for a bit it seems to",5,1,2,General,Trend,Trend +1022,46,Super soft but stretch,"I purchased the grey cords on sale. they are super soft and stretchy- the do run large, so you may want to size down. otherwise, nice fabric and cut.",4,1,0,General,Bottoms,Jeans +862,46,Love this top!,"Just bought this and am in love with it. it's a really nice weight - light for spring. the drape-y fit is very flattering. it's longer in the back than in the front and has a nice swing to it. can't wait to wear it! + +i tried on the tee in the lighter color and didn't care for it much - i liked the contrast of the black and silver stripes.",5,1,7,General Petite,Tops,Knits +1022,60,Great fit & flattering cords,"Love the cut on these cords as well as the fabric. it's a somewhat thin corduroy with a nice little stretch which makes them very comfortable and very flattering. they are true to size. i got the grey which is a pretty, light grey without the heavy blue undertone you often get in grey fabric. + +great cords!",5,1,0,General,Bottoms,Jeans +293,46,Maaji patchwork top,"I'm a 0/2 on top with 32d's and i purchased this top in a medium and it fit perfectly. pretty colors go with a mix of bottoms. design is both functional and attractive, which usually isn't the case with swimwear. love the underwire cups, adjustable ties and straps. and the fabric is really soft and comfortable.",5,1,0,Initmates,Intimate,Swim +1047,34,Great look.,"I just bought these in store. so great looking. however, i bought the petites and they are still incredibly long. like 6 inches too long. so, i'll hem them, though based on the review that mentions shrinking, i might wash them first to see what happens. great for summer in the city.",4,1,1,General Petite,Bottoms,Pants +1059,62,Not for my body type,"I own the essential slims and love them, so i figured i could order these in my normal size and they'd fit great. i was way off. they were uncomfortably tight in the calves (which is understandable - i'm a runner so my calves are disproportionately large) and uncomfortable in the waist. i decided to order one size bigger and pretty much had the same problem in the calves. the high waist was also still unflattering and uncomfortable. these might be great for hour glass shape with skinny calves. t",3,0,0,General,Bottoms,Pants +1059,36,Great pants!,"These pants are a great addition to my work wardrobe. i needed to size up more so for my legs vs my waist, but nothing a little tailoring won't fix.",5,1,3,General,Bottoms,Pants +1059,47,,Cute fit but... split in the thigh after two weeks. and i'm not a big gal. poor quality.,3,0,0,General,Bottoms,Pants +820,36,Cute but runs small and short,"I love this top, the beading and detail is wonderful, i actually liked it even more when i saw it in person. but when i tried it on it is really small in the neck and arm openings and seems short, definitely a different fit than how it appears on the model. i'm trading in for a size up and hoping that does the trick!",4,1,0,General Petite,Tops,Blouses +912,51,Lint magnet,"So sad becuase i like the design. i would not recomend the lack to anyone that does not live and work and shop in a completely immaculate environment. i wore this to work the day after purchasing and within three hours i honestly looked like i had slept in this sweater for three monthe straight. i had to take the sweater off and work in a t-shirt. +the marigold color may be better than the black abut showing lint but something intrinsic to the fabric really attracts lint like nothing i have eve",2,0,2,General,Tops,Fine gauge +1042,42,Very cute and fun at the same time,"I ordered online and got it home tried it on and loved it. it is too cute i plan to wear it with bright colored belt and shoes probably red, yellow, or pink plus i bought a polka dot tote same color cream and black and a blazer can't wait to wear it. i love the fact that i can wear it spring, summer, fall as well winter with my blazer. i'm keeping it.",5,1,0,General,Bottoms,Pants +927,36,Soft and substantial,"I'm 5'5"" 120 lbs and bought this in size medium because i have long arms and was afraid that the cashmere would shrink even if i hand-wash and dry flat (because let's be honest--i doubt i'll ever send it to the dry cleaner). it's loose through the body and arms, but the sleeves are the perfect length. the term ""bell sleeve"" is no exaggeration. the sleeves are billowy and voluminous and i can see them getting in the way while washing my hands or doing dishes. i guess i will have to reserve this s",5,1,6,General,Tops,Sweaters +869,29,"Beautiful print, but runs very large","This print is beautiful and the design is unique and great for work. my only complaint is that it runs huge and the torso fit is extremely boxy. i'm normally in between a size xs and s at retailer, bought the xs in this shirt and it still almost too big.",4,1,2,General,Tops,Knits +860,26,This shirt is a great everyday shirt!,"It is very comfortable and the fabric is amazing. it runs a little short on me because i have a long torso, but it works great with a tank underneath. love it!",5,1,3,General Petite,Tops,Knits +1068,65,Love these pants,"Love these pants . very flattering and comfortable and cool. perfect for the hot summer days. + +they have washed well. need ironing. the charcoal ran a little bigger and too long but the hot dryer shrank them . the orange were perfect, still a little longish so i cold wash them and hang to dry to keep from shrinking + +5.5' size 8",5,1,2,General,Bottoms,Pants +860,59,Beautiful top,So flattering on my curvy (and busty) body. so many swing style tops have too much fabric and make you look larger than you actually are. not the case with this top - the fabric and cut make the bottom half flow beautifully; so flattering imo. i usually wear a small or medium in meadow rue and went with the small. the shoulders and arms fit my small bone structure perfectly; the burn out pattern and color are gorgeous. can?t wait to wear!,5,1,0,General Petite,Tops,Knits +1049,31,Looking forward to wearing these fancy pants!,"These pants are awesome! very light weight and will be great for spring/summer. now if only the sunshine will get here and melt away all of this snow! + +i also purchased the top pictured on the model, it is super cute with this outfit and can work with so many different looks. check it out! + +they run big, i would definitely consider sizing down or ordering two sizes to try on.",5,1,1,General Petite,Bottoms,Pants +869,36,Excellent quality,"Love this top and the fit is very true to size. i am 5'3 and 144 and ordered a medium. the fabric weight is just right and not see through, the top did not gap and the length falls just over tummy without being too tent-like too snug or too long so can be worn inside or out. wish there were more color choices to order from. it was touted as red motif but i would call it more red-orange. i cannot wear orange but it is ""red-enough"" to pull off on my skin tone with the white background. the sleeves",5,1,1,General,Tops,Knits +1068,46,Favorite linen pants,I love these pants so much i had to write a review! purchased the carbon color recently in regular length - the length stated is pretty true and there was minimal shrinkage for me. size was also tts (typically wear size 2 and got 26). i've been wearing them often! they look great right out of the dryer and drape nicely. i've been purchasing the pilcro linen trousers for years but these are my favorites this season --- i also think the quality is much better. i will be getting them in more colors,5,1,9,General,Bottoms,Pants +1068,39,Big!,"Run large and leg is very wide. even sizing down, they seemed too floppy.",3,0,0,General,Bottoms,Pants +860,62,Bummer!,"Ugh, i hate that this didn't work! the top shoulder/sleeve portion is so pretty and unique, but the fabric is overall this and cheap feeling, the length is too short for how flowy the shirt is (the sides go way up on me). the fabric feels like something that would fall apart after one wash. back it goes!",2,0,4,General Petite,Tops,Knits +912,23,Comfy chic,I got the black in an xs and it fits wells. its a bit warmer than i expected. i love the design of this sweater! perfect with leggings.,5,1,2,General,Tops,Fine gauge +927,42,Chunky cashmere,"I bough a green, size s (140lbs., 34b, 5'8). the sweater is true to size: it hits at my low hip and, although it is cut generously, it is cut close to the body. the ""green"" color is very pretty and true to the monitor depiction of a bright turquoise. the material is very soft and definitely high-quality cashmere with no itch factor. however, the knit of the yarn is very chunky, which means that this is not a slimming garment. moreover, since i have long arms, the bell sleeves do not reach my wri",3,1,11,General,Tops,Sweaters +696,46,Cute romper,"I just received this in the mail today, it is very cute however it will be going back, if you look at the picture of the back it look like there is only one opening however below the knot there is another opening,",4,1,3,Initmates,Intimate,Lounge +863,63,Perfect shirt,"This shirt is so cute alone with jeans or dressed up with nice jewelry, a scarf or cardi. its just the right weight, true to size, drapes nicely and its very flattering. i""m sorry i didn't order more when i had the chance. its already sold out in the colors and sizes i wanted. excellent quality as usual -- thanks again retailer!",5,1,0,General,Tops,Knits +869,34,Perfect,"I love how soft, and substantial the fabric is. the fabric has a nice weight and drapes beautifully. the ruffle detail is very flattering. i have broad shoulders and this top looks great.",5,1,3,General,Tops,Knits +863,33,Good tee but not the same as past version,"Loved the version of this loc top that retailer carried two years ago (or was it three?). was thrilled to see what looked like the same top and was called the same name ... but it's just not the same. length is too short, body is too wide, and even the fabric seems to be lower quality. disappointing, but i still bought more than one color.",4,1,0,General,Tops,Knits +1068,39,I want all the colors,"These are fantastic, great fit, super comfortable material and perfect length (petite). i ordered the carbon to have a neutral pair, but i also want the other colors! 0p fit 26.5 in waist, 115 lbs. length on petite is enough to have a small heel) i have short legs).",5,1,4,General,Bottoms,Pants +1042,37,Really cute!,"What a great, easy to wear jumpsuit! i love that the sleeves are a relaxed fit...sometimes they make these jumpsuits so unforgiving who wants to wrangle your way in and out? anyway i totally agree with the other reviewers that this is very stylish, comfortable and it looks amazing on.",5,1,1,General,Bottoms,Pants +912,40,Great transitional piece!,It was love at first sight. the only problem was that it didn't come in my size. i took a chance and order a size smaller and it worked out great. its a great item that can be worn in the spring and fall. exactly what i was looking for.,5,1,1,General,Tops,Fine gauge +912,55,Very flattering,"Love, love, love. i have both colors and wear with leggings. it's not a heavy sweater and has a great drape, super flattering. i'm usually a medium and it runs true to size - not supposed to be tight. i find it a little low in the front,but a tank underneath takes of it. washes well.",5,1,1,General,Tops,Fine gauge +912,63,,"Great style and quality. however sizing runs smaller than anticipated. +i gave it as a gift to a friend who wears a smaller size than me.",5,1,0,General,Tops,Fine gauge +1042,21,Buy this jumpsuit!,"I went back and forth about buying this jumpsuit. very glad that i decided to make the purchase. i wore the jumpsuit to a holiday party and look forward to pairing it with a blazer for work. the material is very soft, yet durable. i wore with flats, but it would be cute with a colorful pair of heels.",5,1,1,General,Bottoms,Pants +869,46,Floral print is gorgeous in person,"I ordered the red motif in size xl. for me, the fit matches the model so i think it's true-to-size. the only larger area on me is for the armholes. i use a cami so my bra won't show when raising my arms. since it's made of rayon/spandex and is a longer length, it's a little clingy along my hipline for my pear-shape. but, overall, it's so soft and comfortable. the colors in the floral pattern are beautiful. prettier in person. there's no problem with pattern placement either. a great top for summ",4,1,2,General,Tops,Knits +1068,52,Must have linen pant!!!!!!,I love the coral color! allows me to add color to my neutral wardrobe! very flattering!!! i get a lot of compliments on them!,5,1,1,General,Bottoms,Pants +1068,46,Amazing comfortable pants!,"I really didn't expect to like these pants as much as i do. i ordered a pair of the pilcro linen wide legs and really loved the cute added lace details on them. i thought i would exchange these for another pair of those, but after trying both pairs on, i realized how much softer and heavier these are. i will keep the one pair of the pilcro, but they did feel a little scratchy. these have a very nice drape to them and they do make your bum look nice. i ordered a size 8, which is what i seem to we",5,1,0,General,Bottoms,Pants +1068,42,Love!,"It takes perfection for me to pay this much for a pair of pants, and these delivered! i bought these pants love-at-first-sight in the carbon color. i have not washed them yet, so i can't comment on durability, but they fit like a dream. i carry extra weight in my thighs and rear, and these pants are very flattering and slimming, and don't pull and crease in the crotch area like so many other pants do on my body. my usual size fit perfectly, and the length is great on my 5'5"" frame. i can almost",5,1,3,General,Bottoms,Pants +860,44,Cute cut but a little thin,The cut of this top is cute. it's a great basic t with a little flare. it's pretty pricey given that the fabric is so thin.,4,1,2,General Petite,Tops,Knits +820,50,Even more beautiful than pictured,"This top is unique and gorgeous! i'm a singer and i knew i had to have it for an upcoming performance. it's got a really great ethnic/bohemian beauty and femininity to it. i saw the top on-line, then i went to the store to try it on. it is delicate- it has beading, embroidery and mesh, so one has to be careful putting on jackets, brushing up against things, etc. but it's well worth it. please note that due to the lining, it does run small, i had to go up a size. depending on how you'd like it to",5,1,7,General,Tops,Blouses +912,75,Lovely and warm,"""does this sweater make my hips look big?"" my wife asked. this sweater was one of my christmas gifts to this fair maiden. +. +""no, love, it does not,"" i said, but i looked, to make sure my reflex was also correct. it's a beautiful sweater for my dear bride, mother of our three children, and no, it does not make her hips look big. + +in fact, it draws out all her lovely lines and curves, just so. and she is a modest girl, so she wears a little undershirt so that her cleavage is somewhat...um...suppre",5,1,23,General,Tops,Fine gauge +869,36,Great casual pretty shirt!,"I ordered this shirt online without seeing it in person, and it is great! it is true to size (if not slightly loose fitting) and a thick cottony-material with a pretty design. could be nice for spring, summer, or even fall with a cardigan.",5,1,0,General,Tops,Knits +1068,45,Not for tall people,"Lovely pants, incredibly comfy fabric, but too short for 5'11'' people. stated inseam of 31.5 is a bit understated, but it is clearly not 34"" that i need. had to take it back to the store.",4,1,2,General,Bottoms,Pants +863,58,Great fit!,I love this top!! very comfortable. wear it alone or under a sweater. i have the black also.,5,1,1,General,Tops,Knits +1068,33,Absolutely beautiful!,"For reference, i'm currently hovering in the 14 range for pants (called ""curvy"" on the lower half, hahaha), but purchased these in a 12. they are so flattering and comfortable, i returned to purchase a pair to keep stashed for when i wear out a pair and actually bought two pairs in a size 10 for when i loose weight. they look perfectly tailored! the fabric is substantial (more of a spring weight than summer), so you don't have to worry about showing skin beneath the unlined pant, and it drapes e",5,1,11,General,Bottoms,Pants +869,72,,"Ordered this blouse in a small but it was too big, returned it for an xs. i weigh 123 lbs , i'm 5'3 1/2"". +i find sizing of clothing at retailer to be unreliable, i have had to return many items because of sizing issues. unfortunately i live too far away from a regular store so have to rely on shopping on line. +i will complement retailer on the unique designs of the clothing they offer.",5,1,4,General,Tops,Knits +820,27,Gorgeous and flattering!,I love this top. the quality is topnotch and it's true to size. it's not skintight but it's also not so roomy that you look pregnant! one thing that surprised me is that it's a silk material. i thought it was linen or something like that. but i love it!,5,1,0,General Petite,Tops,Blouses +912,47,Just ok...,"I believe that this sweater is by moth and not knitted and knotted as noted in the description. for me, this tunic was just ok. i didn't think that the quality was great and it just didn't wow me, especially at this price point.",3,0,5,General,Tops,Fine gauge +1081,83,Spectacular!,"The pics online for this dress are horrible in comparison how stunning this dress is in person. +just received it and far exceeded my wildest expectations! +it is elegant, classy, and an understated sexy! +the colors are rich and vibrant.......gorgeous shades of plum and blue....a unique color combination that is gorgeous! +the open mess dress with the solid under layer is a wow! +beautiful and flattering fit. +it is a 10 !!!! +i ordered my usual size and i would say it is true to size, but slig",5,1,8,General,Dresses,Dresses +1042,37,Whimsical,Looks so fun and whimsical on. love love love this for photos especially,5,1,0,General,Bottoms,Pants +860,46,Gorgeous jewel tone color,"The other reviews stated this was a shapeless top, but i sized down and it is very flattering and cute! the green is a bright, gorgeous jewel tone. it has an overall flowy, bohemian look to it.......the bell sleeves add just the right touch of boho! overall, i am very pleased with this top... it will be a great transitional piece into fall!",4,1,3,General Petite,Tops,Knits +832,24,Only for smaller types,I agree with the other reviewer the concept of this is fantastic. but sadly did not work for me. first of all it runs so small i normally wear a 6/8 and ordered a 10 and i still had a hard time closing over my 34ddd chest. but i am abnormal. anyways the peplum i wish was a little more subdued like in the photo. maybe its because im so curvy but it just didn't work for me. sadly its going back.,4,1,0,General,Tops,Blouses +820,55,Absolutely gorgeous!,"When i walked into my retailer store i was immediately drawn to this top. the online photo really does not do it justice. in person, it is stunning. i'm petite and usually a size 4, but the only sizes available were a 0 and a 6. it looked large so i tried the 0. it actually fit much better than i expected, considering i have a 32dd bust, but the seam across the chest was too tight. however i did not have a problem with the armholes, even going down two sizes. i have narrow shoulders, so maybe that",5,1,3,General Petite,Tops,Blouses +860,55,Absolutely gorgeous,"I happened to see someone purchasing this top in the green at my local retailer store, and the sales associate told me they had just gotten then in and they were already almost gone. they only had one left, in size s. it fit, but was a bit too long for me so they ordered the sp for me. it's perfect! the color says turquoise, but it's actually more of an emerald green. it's a bright saturated color, much more beautiful than the online photo. i have green eyes and love the way it brings them out. it",5,1,2,General Petite,Tops,Knits +863,24,,,4,1,0,General,Tops,Knits +1049,56,Not for me,"I ordered these with high hopes. i have 2 other pairs of joggers by a different brand that i adore. i was disappointed. the fabric isn't soft as i expected. the pants pucker out strangely under the waist band, but this might be due to folding while packaged. i tried these on several times - wanting to like them but just couldn't. i am returning them. the colors are beautiful - especially the bands on the bottom. they seem made well. it might just be that i am between sizes. i am 5'4"", 115. i tri",3,1,1,General Petite,Bottoms,Pants +869,47,Adorable and comfortable!,Just bought this in black at my local store and it is adorable! and very comfortable. almost like your favorite t-shirt stepped up one notch! it ran true to size for me!,5,1,4,General,Tops,Knits +1068,41,So soft,"These pants are so soft and super comfy. +they look great with heels and sandals. +they will be my go to this summer for sure. +would love them in black or navy.",5,1,2,General Petite,Bottoms,Pants +863,53,"Cute top, poor quality","I loved the style of this shirt so much that i bought two of them. unfortunately after washing the turquoise one, it sprang several holes. the same thing happened to the second one after one wash! i purchased several of these shirts in the tank style over this past summer, and they have washed and worn great. i think the fabric quality and craftsmanship has gone way downhill at retailer lately. very disappointed.",2,0,1,General,Tops,Knits +863,89,The perfect t!,"This is my go-to shirt. perfect for layering, perfect for around the house or perfect for topping an outfit with a scarf. the white is a little sheer but it's fine for me.",5,1,1,General,Tops,Knits +860,38,Gorgeous blouse; there is a lot of fabric,"I'm a curvy person, so my review might not be suited to everyone. my standard size in retailer tops is xl, and it is the same for this blouse. +- +overall: +overall gorgeous, well made blouse but i wish there was less fabric involved and the burnt out design didn't make a horizontal stripe across the back and biceps. this blouse just might not work out as well if you are a full figured person. +- +pros: +gorgeous blouse +high quality +unique +- +cons: +i wish the burnt out design didn't make a hor",4,1,21,General Petite,Tops,Knits +869,41,Little something different for a t-shirt,Nice shirt that's a little different from the typical. flirty sleeves that move in the wind which is a great look :),4,1,2,General,Tops,Knits +1068,41,Perfect not too wide - wide legs,"These are the perfect wide legs. they aren't overly wide (a common problem for petite women like myself, who cannot pull off the really wide styles), and they are nicely fitted in the top. the fabric is a great weight, neither too heavy nor too light so they lay nicely. (the similar level 99 linen wide legs with the waist ties have a much lighter fabric that doesn't lay right, and i like these hei hei pants much better.). i said they run large because i tend the fluctuate between 00p and 0p, a",5,1,1,General,Bottoms,Pants +869,31,Great top,This top is cute love the ruffle sleeves. the store i got these had both colors so ended getting both colors because the top is cute. does run a little large i ended up going a size down.,5,1,10,General,Tops,Knits +860,56,An elegant top,"I thought this top was purely elegant. i'm 5'4"", and 135 lbs. i ordered a small and it fits perfectly. i thought the fabric was soft, but somewhat sheer on the top. it goes great with just about any pant.",5,1,1,General Petite,Tops,Knits +820,34,,Love this top! i get compliments on it every time i put it on! it dresses up a pair of jeans perfectly!,5,1,0,General Petite,Tops,Blouses +1042,34,,,5,1,0,General,Bottoms,Pants +927,59,Warm & cozy!,This sweater is thicker than some of the other cashmere sweaters i purchased at retailer this year. it is made with high quality cashmere as it is extremely soft. i wouldn't describe it as chunky or bulky though. it's probably made of at least 2 or maybe even 3 ply cashmere. the sleeves do run slightly short. i purchased the xs and it fits my petite frame perfectly! grab it while you can! it's so luxurious & super warm for the winter.,5,1,1,General Petite,Tops,Sweaters +820,56,Too short waisted!,"I ordered this top in a 14, my usual size, and it fits fine, but it is way too short-waisted! it looks nothing like what the model is wearing. her top comes low on her waist, almost to her crotch area. mine was just about 2 inches below my belly button! it was almost as if they accidentally cut off the lower half of the top at the factory! very strange.",1,0,11,General Petite,Tops,Blouses +696,30,Adorable and comfortable!,"I received this romper last week and have already worn it twice. it is soooo comfortable and the material is really soft. the romper is loose, yet fitted and very cute. i love the open back and the shorts are just the right length. i wish there were other patterns or colors available, too. i would definitely buy again!",5,1,0,Initmates,Intimate,Lounge +860,63,Gorgeous top,"I purchased this top in the purple. it is much prettier in person then in the picture. the color is rich and vibrant. i am usually a large or xl but only needed the large in this top. +the combination of fabrics is what makes this top special and the sheer bell sleeve really sets it off. +i felt that it flowed perfectly, not as full as some of the fall retailer tops. (which are too full for me.) +i am around 5'6"" and a little on the broad side, so perhaps on someone smaller it might be overbeari",5,1,1,General Petite,Tops,Knits +820,48,Wonderful shirt!,I love this shirt! the pictures do not do it justice. intricate detail. lovely.,5,1,11,General Petite,Tops,Blouses +1068,46,Make a girl's shape look wow!,"If you're a girl with no junk in the trunk buy these pants! they make you look like you are working with something! i love them. i am 5'3"" and always struggle to find pants that aren't too long and that will help me not look like an ironing board. these are great. not too long in regular and like another reviewer said, you'll have a booty. great lightweight pants.",5,1,1,General,Bottoms,Pants +832,34,Nice concept,"Conceptually, this top is great. love the design and the bright crisp color and most of all the cut outs. the material is a little stiff but can see it softening up a bit with a wash or two. it does run very small. i am 145 pounds, 5'6: with a full 34c bust and a curvy hourglass figure 34, 28, 41. while it fits everywhere else, the bust is really small. i wear a size 6 but had to go up to a size 10. the size 8 fit but the chest would only close without a bra. so, i had to go up 2 sizes.. so when",4,1,2,General,Tops,Blouses +820,78,"Beautiful top, but....","I wanted to love this top. i wanted to love it so badly i bought it twice. the design and beading are beautiful, but the sizing is off. as another person mentioned it does run short, but that was not the issue for me. i ordered my usual size in this brand and the arm holes were too tight. because i really love it, i decided to exchange it for a larger size. i did not try it on in the store because i never wear that size, and just assumed the arm holes would be larger. sadly they were not. still",3,0,13,General Petite,Tops,Blouses +869,36,"Sadly, too big and boxy","This top may be right for some, but it did not work for me. i've been looking for a nice black top and loved the flutter sleeves on this one. however, it didn't do much to flatter my body. i ordered the xl, but it was huge. i'm not sure a l would have solved my problems if it had been available. i found it looked boxy and and agree that the arm holes are too big. + +the quality is great and style so pretty, though. i wish it had worked for me!",3,0,2,General,Tops,Knits +1068,48,Great pants,"These pants are as dreamy as linen but much more forgiving when worn all day. they fit true to size and are very flattering. i have 5 pair. they are my go to work pant that can be dressed up with an elegant tank if i have to run to dinner after work! +love them",5,1,0,General,Bottoms,Pants +860,59,Fancy and fun,"I love it!!! i can wear out to dinner or just out to lunch with +friends!",5,1,0,General Petite,Tops,Knits +1042,34,"Great concept, too roomy, elastic band looks meh","I really wanted to love this, but it was just too voluminous to be flattering. i am typically a size 10 or 12 in dresses and jumpsuits, and the medium was billowing around me. also,the elastic waist hit me low and bunched in an unflattering way. it had to go back.",2,0,1,General,Bottoms,Pants +869,37,Gorgeous print!,I love everything about this top! the fit and style are beautiful and the fabric high quality. it does run about a half size large (i'm usually a size 4 and needed an xs in this top). this is so versatile--i have worn it with a tangerine midi skirt and denim shorts and it looks great however i pair it. i highly recommend this!,5,1,2,General,Tops,Knits +832,53,Runs small,"Adorable top, but it runs very small. i usually take a 4, but thought it may shrink up so i ordered a 6. it was a bit tight through the bust (34a), so i sent it back for an 8.",4,1,24,General,Tops,Blouses +1042,34,Sheik and stylish,"I saw a photographer wearing this at a wedding i went to in october. i absolutely fell in love. it is beautiful. i can't wait to wear it for the holidays! i got the small petite and i am 5'2"", 125 lbs. fit great. enjoy!",5,1,0,General,Bottoms,Pants +869,42,Frumpy and huge,"I was debating getting a large in this top but went for the medium, boy is it huge, the jersey fabric is quite thick which makes the sleeves bulky and uncomfortable, even the small would be giant! +for reference i normally wear a size 8/10 my chest is 34 e and this was just so so huge, it hung so badly of my chest that it looked frumpy and made me look bigger than i am. +the colours are true and nice and vibrant... definitely size down with this one",2,0,0,General,Tops,Knits +1042,59,Versatile and then some,"I thought this was a fun piece to have, but didn't realize how versatile it was until i got home and started mixing it with either casual shoes, or dressing it up with fancier accessories. +i love this jumpsuit! +it is well made, and the fabric is of a quality that lends itself to both casual and dressy",5,1,1,General,Bottoms,Pants +1042,38,Cute but a little overwhelming,"I bought a size small (5'6"" & 130lbs). it was baggy everywhere so i added a belt similar to the model and it did help some but the pockets stuck out too much. i ended up looking ""hippy"" with no butt. the material is nice and it is a nice quality. i just didn't have enough to fill it out anywhere and i felt if i got a xs it would have been too short in the crotch area.",4,1,0,General,Bottoms,Pants +1075,34,Stunning!!!,"Just beautiful dress! it dits perfectly, tts and i feel like princess in it! highly recommend girls!",5,1,1,General Petite,Dresses,Dresses +820,34,Beautiful but fit is off,This top is gorgeous and i exchanged it 3 times hoping it would work. i originally got the size a would normally wear (a 6).and the arm holes and top were extremely tight and the top was short so i sized up and still had the same problem. i then went all the way up to a size 14 in order to get the length of the shirt log enough but now it is quite large around my hips. i love the detailing of the shirt but unfortunately if you have any chest at all it will not fit,2,0,2,General Petite,Tops,Blouses +860,64,Lovely but...,"I found both colors and jumped on this shirt. then i got it home and realized that it was pretty much useless. there is no way to put a sweater or jacket over it, it is too hot to wear in the summer, putting a tee under ruins the look. +i am very flat chested so it hung well, but there is lots of shirt. both went back in exchange for two wearable items.",3,0,2,General Petite,Tops,Knits +1068,30,,,4,1,0,General,Bottoms,Pants +863,39,Has holes after first wear!,"I love cotton fabric, so i was very excited to find this shirt in gorgeous fall colors. i have the dark red/burnt orange color, and it is pretty. but i have worn the thing once, and today when i put it on again, i found 2 holes on the front of the shirt. so disappointed.",1,0,1,General,Tops,Knits +938,52,,Very cute top but it seems like it won't hold it's shape very long. cheaply constructed.,4,1,0,General,Tops,Sweaters +869,24,Soft and flattering,"This top is the perfect staple! the fabric is soft and comfortable. i generally wear medium tops, but the small fits perfectly. took the chance ordering online and i am very happy!",5,1,2,General,Tops,Knits +869,37,Another fantastic top by meadow rue,"Fantastic and comfortable top. i had to buy in black and white, because it was too cute to buy just one. love it. great staple for your wardrobe.",5,1,2,General,Tops,Knits +820,35,,"This is a beautiful shirt. dressy, imo. it's tts, i would not size down in this shirt. can wear w/ black, white, moss, khaki, jeans, etc... love it.",5,1,0,General Petite,Tops,Blouses +964,53,,,3,0,0,General,Jackets,Jackets +836,29,Beware of washing,"Absolutely beautiful top, worn once...hand washed and that's all she wrote..ruined!! the black trim bled all over the top!! i tried everything you could imagine to get this back to normal! do not recommend!! :(",1,0,1,General,Tops,Blouses +1030,41,Cute jeans,Love my mother jeans and these are super cute for spring! they fit tts. i'm 5'7 and i bought my normal 25.,5,1,2,General,Bottoms,Jeans +941,39,Large with no shape,"This is huge. i thought it would be oversize but with a bit of shape. there is no shape to this and is a lot of material. i ordered an xs and typically wear an xs or s in blouses, sometimes medium in sweaters. +it seamed like 2 sizes too big. the material is very soft and the collar is nice. there is a ribbon tie at the waist. the tie is wimpy and could be nicer. when tied, there is so much fabric the is gathers and looks like i have no waist.",2,0,1,General Petite,Tops,Sweaters +964,59,Disappointed in quality and runs small,"I have been looking for an off-white vest and thought this one would be perfect, except it is going back. i am 5'9"" 150 lbs. medium is my normal top size, but this medium was tight even though the design looks relaxed in the picture. no buttons, so no way to close it. unlined and the design and fabric look more casual than the photo. not worth the price.",2,0,7,General,Jackets,Jackets +1030,36,Too short,"Love the fit of the jeans just wish there was a couple more inches at the bottom:) these jeans have a 23 inch inseam not 26, so they hit at a very odd place on my calf- return. for reference i'm 5'8,",2,0,4,General,Bottoms,Jeans +941,29,Perfect for fall,"Great addition to my cold weather wardrobe! comfortable and has the slouchy look, but still nice enough to wear to work.",4,1,1,General Petite,Tops,Sweaters +862,57,,"I was a bit concerned that the top would be too small on top, (ordered an xl) but the a line design is very flattering and it fit well. it is a biit see through, so i'll be wearing another layer underneath - personal preference.",4,1,1,General,Tops,Knits +833,46,"Looks good in person, shrunk a lot","I bought this in size xl and it initially fit me similarly to the model. but, once i washed it (in cold in my machine, reshaped and air-dried), it was so much smaller/shorter. i loved the embroidery on the top. the mix of pattern colors is great too. i like when blues and blacks are mixed together. i don't know how i could have prevented the shrinking. i now throw on a shrug or jacket over to hide the shorter length. still stylish and fun.",4,1,0,General Petite,Tops,Blouses +836,55,,,1,0,0,General,Tops,Blouses +941,38,New wardrobe staple,"I can tell already that this sweater is going to be in heavy rotation in my closet. it's a bit oversized and cozy, but the ribbon tie makes it neat and not sloppy. great with skinny jeans, flares or leggings. super cute with a cami underneath.",5,1,0,General Petite,Tops,Sweaters +276,36,So comfortable,"I love this jacket. it is great for lounging because it is loose and comfortable, and it's great to have pockets to stash stuff in as i shuffle cozily around my house on cold, lazy days. it's not the world's most flattering fit (it's kind of boxy) but i bought it for comfort and i am delighted.",5,1,0,Initmates,Intimate,Lounge +1119,38,Great idea..poor execution,"I tried on an xs and it was boxy/roomy in the torso and the pocket on the wrist/forearm area made my arm look too bulky when i rolled the sleeves up like the model pictured. i love the idea of a relaxed fit cropped leather jacket in a versatile taupe color but when i tried this one on in person, it took me back to my childhood. i used to help my dad wash his cars when i was a kid and he used a leather chamois (""shammy"" for short) that was awesome for soaking up water. and that's what it felt lik",1,0,0,General,Jackets,Outerwear +936,40,Cute but cropped sweater,"This sweater is so cute and seems high quality. i would love to keep it but it is way too cropped for my taste, going down just below my mid section. i wish it had been cut longer- i would have kept it.",2,0,0,General Petite,Tops,Sweaters +836,35,Awkward fit,"I don't have a large head but i could barely squeeze this blouse over mine. i also ordered the xs even though i'm usually a small and it was still blousier than i would have liked. already returned it. on the plus side, it's gorgeous.",2,0,10,General,Tops,Blouses +862,32,Simple but overpriced,"This knit shirt is too thin, as most knit shirts i find are. i got this in the white, and was excited to try it on due to the fitted cut and cap sleeves. the upper part was great but the waist was too large for me, and was actually too long. had to return, especially for the cost. i purchased the xxs , which normally fits me.",3,0,10,General,Tops,Knits +389,41,White/palm color is slightly see-through,"The suit is beautiful, however the white it is slightly see-through on the bottom front. even though it is slight, to me that is inappropriate...so i returned it. regarding sizing, i ordered a medium, i usually wear a size 6 (135lbs) and my body is evenly proportioned throughout. the medium was not tight at all but the back bottom region seemed cut just slightly less than ""full coverage"". i feel that i would be in-between sizes small and medium but did not try a small due to the slightly transpa",3,0,0,Initmates,Intimate,Swim +1077,40,,,5,1,0,General,Dresses,Dresses +862,42,Lovely structured top hides flaws,"I bought this in a beautiful cornflower blue at my retailer store. i don't see that color for sale online. the blue material was not thin or see through, but perhaps the white is. the fit is very structured, which helps me cover my mom belly. i have never said this before, but i think it looks better on me than it does on the model wearing white. on sale, i got this for about $20. i got it for a steal. i like the different directions of line patterns and the length is nice too. one thing you can't",5,1,0,General,Tops,Knits +1077,37,"Beautiful color, poor design in the back","I was so excited when i saw this dress! i love this color, and the poplin sleeves. i was so sad when i tried it on though, the back poofed out in such a weird and unflattering way. i think it is because there is a pleat high up in the back, but then it seems like it gets narrow again around the hips. strange. also the material is kind of stiff and seems poor quality. i do love the way the top and the sleeves look on me though, so i am actually considering keeping it and just making it into a top",3,0,0,General,Dresses,Dresses +320,37,"Cute pattern, but i don't live this shirt","This shirt is cute, nice cut, but i don't love it. best as a sleeping tank.",3,0,0,Initmates,Intimate,Sleep +389,50,"Beautiful fabric, no cup room","Got the coral reef color in a size medium. for reference, i say i am 5' 4"" because its easier than explaining that i am really 5' 3 and 3/4"", 138-140 lbs., 36c bra. size-wise, i am all over the place. recently i lost weight and have been buying smalls and mediums and anywhere from an 8 to a 12 from retailer. i so wanted to love this suit and am still in love with the fabric and colors. everything in the medium fit except for the bra cups. i am not especially big but there was zero cup room.",2,0,3,Initmates,Intimate,Swim +320,28,Definitely not just a sleep top!,"I would not wear this to bed - it's almost too pretty! i've been wearing this top under sweaters and shells as the weather is moving from winter to spring - i think it transitions the comfort of plaid into warmer weather perfectly! it dips a little low on me in the front (34b/c), so it's probably not for more professional settings. i like to wear it with a lacy bra-type top peeking out underneath.",4,1,2,Initmates,Intimate,Sleep +937,43,,,5,1,0,General,Tops,Sweaters +941,40,Cozy sweater,"I absolutely love cozy sweaters and this is my new fave. i love that it ties and it feels elegant. so much fun with jeans and one of my fun tees underneath. or with a skirt, boots and hat. love it. i wear it as i'm sipping my tea in front of my fire place writing my book. yes i'm writing a book. its a cozy writing a book sweater-that is it!! its perfect for that. on my white sheep skin cozy rug and my animal print chairs. i'm in heaven sipping my coffee in my cozy room with my cozy sweater.",5,1,1,General Petite,Tops,Sweaters +941,37,Nope!,Weird fit and the tie just add to the problems. i think i'd like this a lot more if it were just an open cardigan without the tie. the tie seems like an after thought. it's flimsy and it just makes anyone wearing this look like a house -- no matter there size. i ordered a medium black and it's already in the mail!,2,0,2,General Petite,Tops,Sweaters +836,63,Black bleeds on cream!,"This top really is lovely. i had high hopes of it looking smashing with black jeans. i wash everything before i wear it. though this garment says it needs to be dry cleaned, there was nothing so delicate about the fabric that it had to be dry cleaned. so i hand washed it with delicate soap. when the lighter colors came into contact with the black, the black immediately stained the light color. i tried putting some stain remover on the black stains, rinsed and hung it above my bath tub. it is cur",1,0,2,General,Tops,Blouses +1083,56,Beautiful unique dress,Wore this to my sons wedding. found it last minute when i had changed my mind about another byron lars dress. i felt awesome in it and got many compliments,5,1,1,General Petite,Dresses,Dresses +1113,63,Great find!,I love this vest! it's perfect for day and dress up for the evening. very comfy!,5,1,1,General,Jackets,Outerwear +1008,39,,,3,0,0,General,Bottoms,Skirts +1008,66,Great skirt,"This skirt sparkles when you wear it- beautiful in winter. it is made well, great design and fit, true to size. it is a beautiful fabric with deep blue flowers stitched in, as well as soft silvery gold thread sewn into the background. great length too. fabulous.",5,1,1,General,Bottoms,Skirts +1081,44,Simply perfect!,This rich color is so flattering! i also love that it has pockets and can be worn to dressy events or can be worn in more casual settings. the side stripes give it a young and interesting touch. the elastic waste makes it comfortable so i know i will get lots of use out of this. i knocked off one star because of the price. i plan on paring this with tan sandals and a dark denim blazer to start off with.,4,1,0,General,Dresses,Dresses +1081,41,Love it,Love this dress. sooo comfortable and flattering. i typically wear a 4-6 in dresses or can be between small and medium depending on style and cut. i went with xs on this dress and it's still very comfortable and loose fitting. the small size fit fine but seemed like too much fabric on the skirt.,5,1,0,General,Dresses,Dresses +868,62,I really want to love this top...,"I want to love this shirt, i really do, but it's huge! the top is tent-like, which would be adorable with skinny jeans, however the length of the back dips so low, the top kind of reminds me of pajamas. the color is beautiful, more like a light grey heather, and the white piping is like a shimmery ribbon material. overall, the top is cute, but it dips too low in the back and the bow weighs down the back of the shirt, so it makes it hard to adjust it in the front. sadly, it's a return.",2,0,7,General,Tops,Knits +1086,45,Feels like a dream,"This dress is so soft, flowy and comfortable! the material is very smooth and silky. i'm hoping it holds up well over time with washing. i am 5""5, 120lbs and i ordered a xs. the elastic waist is a tad tight but otherwise it fits perfectly - just as shown on the model in terms of length and how the top fits. i said it runs a large because normally i would order a s but i think if i did, it would be too long and the arm holes might be too big.",5,1,1,General,Dresses,Dresses +1075,68,,"Like another reviewer said, the pictures do not do this fabric justice. it's lightly textured but still soft! i love the fit of this--just the right amount of oversized/flowy.",5,1,0,General Petite,Dresses,Dresses +831,48,Just what my closet needed,A sweet tunic with the distinctive lace hemline. the length is great - just right to wear with skinny jeans or over leggings. not too long but long enough for comfort over leggings! more of a boxy fit (just as expected). wore it with my skinny jeans and short boots and got many compliments.,4,1,1,General,Tops,Blouses +1081,26,True love,"I saw this in the retailer catalogue and knew i had to own this dress. everything about it speaks to me on a cellular level. the colour, the shape, the drape, the hem, !!!! and the little side stripes. be still my heart. i went into my local store and picked up the dress in xl and l to try on. i'm.... currently a new body shape because of too many burgers, a sports injury, and not enough cardio, so i figured i should size up for a moment. uh no. the xl was like a tent. fabric everywhere. i pulled",5,1,7,General,Dresses,Dresses +1081,53,Comfortable summer dress,"I tried this dress on in the orange and loved it on me and felt it ran tts in my regular size small. i'm a 34d but very petite body type otherwise and didn't feel like this billowed out as much as some other reviewers described. it does have a loose feel on top which i actually like and inside there is a comfortable striped strapless top part that holds me in at the same time. i liked the feel, colors and lenth of the fabric plus i love anything with an elastic waist so i definitely plan on buyi",5,1,4,General,Dresses,Dresses +895,41,Super cute!,Love this sweater so much that i'm going to order another when it goes on sale! the material is not thick but it's a nice thin weight that i still feel cozy in. i love that it's not long in the back too. so cute and soft.,5,1,1,General,Tops,Fine gauge +974,38,,This jacket is a great buy at the sale price. drape is wonderful and the weight is nice; lightweight and will transition well from summer to fall. the adjustable ties at the waist make it very flattering on a curvy figure. i purchased the white and am going to purchase the black as well. definitely recommend.,5,1,0,General,Jackets,Jackets +974,33,Cute lightweight jacket,"This jacket is pretty cute in person. it is a nice thick gauzy material. the black is more like a dark washed gray color. while i do like the jacket, i feel like it is cut a little wide... maybe i should have ordered a size down. i usually wear a combination of 6s and 8s and am usually between a small and medium. i ordered this in a medium, but there was quite a bit of extra fabric at the sides and in the shoulder area. i'm returning the jacket for now, but might reorder in a small another time.",5,1,15,General,Jackets,Jackets +1086,33,Great throw on dress!!,"Oh my!! this dress is so cute! it fits me exactly like the pictures. i usually wear a 6 or 8 and ordered a medium. i maybe could have worn a small as well though. there is a lot of fabric to this dress, so if you're under 5'6"", it might overwhelm you! i'm 5'6"" and the medium was barely sleepy the floor in a low heel! this is s dress you can dress up or down. i also appreciated the neckline not being too revealing. and pockets!! that was a nice surprise! the fabric is a little thicker, so it's no",5,1,0,General,Dresses,Dresses +1083,48,Too busy,"So this is a gorgeous dress, but it seems to have too many elements. i wish they had left off the white lacy decoration at the neckline because it seems to make the dress more ""girly"" than ""sleek."" i am short, so perhaps the multiple design features would be better on a tall woman than on me.",3,1,4,General Petite,Dresses,Dresses +1081,39,Not great if you're tall,"Comfortable and soft material, cute design and nice longer length..however, i'm long waisted and this looked ridiculous on my me, elastic came up right under my bra and not at my waist. would be cute for someone shorter.",3,0,1,General,Dresses,Dresses +974,39,Fun and classic,"I ordered the xs p and xxs p in the black one. i thought this would be a fairly classic piece to wear any season (cold offices in the summer, southern california in the winter). the xxs p was a bit better fitted, not too small, but the xs p was ok too, if you prefer a baggier look, so based on that i call it large as i would usually purchase the xs p not xxsp. (115 lbs, 30 dd, 26.5in waist, muscular arms) + +the material is airy and light, but i am a little worried about wrinkling, we shall see.",4,1,1,General,Jackets,Jackets +1081,39,I like this one,"I tried on the xs in the store and decided to size down (and get xxs petite). it looked much better. the length was flattering, and as others mentioned, the bottom is nice and flowy. it is comfortable, and the orange color is flattering and i love the striped detail on the sides. good casual dress, but i can dress it up with a bejeweled belt. i am 115 lbs 30dd chest for xxs petite...",5,1,5,General,Dresses,Dresses +903,41,Great design!,"Just purchased this lovely sweater over the weekend during the 25% off sale. i went in to buy the rona sweater in grey (which i think is the same style with different name) but it was all sold out! the sa pointed me to a rack of these sweaters and i am happy with this choice! the back print is really cute and the sweater design and color is very flattering. it goes well with pants or skirt, and the front is not as short as i had imagined the rona sweater to be.",5,1,2,General,Tops,Fine gauge +903,49,Love it!,"Great quality, fit and fashion! retailer went back to the days of old with this piece and i am so glad! the piece is classic yet modern - real statement without going overboard!",5,1,0,General,Tops,Fine gauge +1083,62,Love byron lars,"This dress, like all byron lars dresses is a work of art. it has true quality of workmanship. and fits like a glove. i always get compliments when i wear any of his dresses and i have 5!. this one is somewhere between casual and dressy. perfect for a dinner out on a saturday night!. order a petite if you are under 5 5""",5,1,1,General Petite,Dresses,Dresses +829,35,This is green and runs large,Just tried this on in store. the color in the photo is wayyyyy off. it's a hunter green and dark navy zigzag. for maeve it runs large. i am usually a medium or a 10 and a s worked best. i'm a 36d and there was no pull at the bust. will pick up when on sale (bc a hundo for rayon is laughable).,4,1,0,General Petite,Tops,Blouses +1081,24,"Almost perfect, but the top is unflattering.","The dress had great potential, but the top sagged and made the dress look unflattering on me. unfortunately, i had to return it. the length was great, and the back and sides of the dress were nicely tailored and flattering. perhaps this would fit someone else better - i have a 34b/34c bust, and it didn't work for me.",3,0,0,General Petite,Dresses,Dresses +1081,28,Unexpectedly amazing,"I didn't give this dress a second look for the longest time. when the summer tag sale came about, i decided to pop in and see if i could find a versatile summer dress. i was in need of a piece i could easily dress up or down. the burnt orange color variation caught my eye first, though i also tried on the neutral and it is also fabulous. this dress is amazing on! i am an hourglass shape, 5'8, size 6/8, 34 d chest, and i tried on both the small and medium. the small fit much better on me, and i r",5,1,1,General Petite,Dresses,Dresses +1008,30,"Beautiful fabric, less than beautiful fit","I wanted to love this skirt. i love high-waisted skirts and the length seemed flattering on the model; it was not so flattering on me. the fabric is so lovely--truly the photos online don't do it justice. it's heavy and luxurious, wonderful for fall or winter, and the gold, gray, and navy floral pattern is not too flashy or bold. plus, pockets! however, the midi length did not work for me, despite the product's suggestion that it was a universally flattering length, just above the knee. i'm not",3,0,5,General Petite,Bottoms,Skirts +1081,24,,Added this dress to my summer wardrobe in the rust color. it's a very relaxed dress. easy to throw on. as others have suggested in going to add a belt to this to add a little more flair. but i love this designer. but it does run large. sizing down helps immensely.,5,1,0,General Petite,Dresses,Dresses +1081,56,,"The fabric has a beautiful drape; the skirt is a nice length, and it blows, moves, and swings in a most flattering way. the gray is a an elegant color, and one could definitely wear the dress at both casual and more formal events. the top, however, sags, and overwhelms the more fitted lining. too bad!",3,1,9,General Petite,Dresses,Dresses +1081,35,Ewwww!!!,"I thought this dress looked so cute and comfortable and was excited to try it on, and i was majorly disappointed. it was incredibly unflattering, in every way. as a few of the other reviewers mentioned, if you have any sort of bust the dress will not hang nicely, the waist band was too high up and made me look pregnant. i'm 5'2 and curvy and usually take a lg in retailer, but this...ewww! i will say the color and material are gorgeous, but i'm guessing this is the type of dress that would look bes",1,0,7,General Petite,Dresses,Dresses +1081,33,Nice dress but,Lovely dress and looks great on me but with just my second time wearing this dress and reaching across my desk to pick something up i feel the elastic waistband snap. this dress is definitely my size and i have felt no tightness or discomfort in the midsection. i have bought cheaper clothes with better elastic waistbands and had them for years. now i will spend the rest of my day looking like i'm wearing an orange sack. i'm not pleased.,3,0,1,General Petite,Dresses,Dresses +450,35,Great lace shorts.,"I got these in black and i had tried on the gray in the store, they run small at the waist. i usually wear xs or small, but i ordered a medium. they are very comfortable on a warm day. they look great with a loose, tucked in blouse or tee. the down side is they catch and the lace pulls and gets fuzzy when rubbing against things. i realized this after a day of wear. i haven't washed yet, but plan to hand wash.",4,1,3,General,Bottoms,Shorts +903,50,"Business in the front, party in the back","Great, light weight sweater. very simple and soft from the front and the back is adorable.",5,1,4,General,Tops,Fine gauge +1072,49,,There are darts that are not shown in this picture that make the dress ill fitted. not sure why they are not in the picture and on the dress. i wish the pictures shown were more accurate.,1,0,1,General,Dresses,Dresses +1008,63,Absolutely beautiful!,"This skirt is absolutely beautiful in person! the metallic thread is a subtle, stunning addition to this elegant piece. like the last person mentioned, it is thick, but i think it makes it look full rather than like a bag. i think the extra fabric/weight adds a more classic/traditional look to it, making it look more like a wool skirt from the 50s, 60s, or 70s. if you're not a fan of that look, you probably won't like the way this falls. like the description says, this is a piece that would neve",5,1,7,General Petite,Bottoms,Skirts +1086,26,Love!,"I love this dress. i'm 6' so it's a tad bit shorter than what shows on the model. it stops right at my ankles, which i'm okay with. it's a heavier fabric so it's maybe not good for those really hot, humid days. all-in-all it is super flattering on my hourglass figure. for reference, i'm a 38dd and normally wear a large in dresses at retailer. i ordered the large.",4,1,1,General,Dresses,Dresses +1081,35,Perfect summer dress,"This dress is perfect for the summer, very lightweight, has pockets and not to short lounging around. it is loose fitting, so i normally wear a size 10 or m and 5'6"" tall, but had to order this dress in a s. the small fits me perfectly.",4,1,0,General Petite,Dresses,Dresses +1008,49,"Gorgeous skirt, but very puffy.","This fabric and quality of the skirt are superb- there is a pretty metallic thread detail in the fabric that isn't easy to see online. however, the skirt is quite puffy, which i suppose could be good for someone with a boyish figure looking to add curves. but for many of us the extra puff might not be welcome. one would want to wear it with a tight fitting top and emphasize a small waist in order to counterbalance the volume of the skirt. could be a nice buy for the right person, just be aware o",4,1,6,General Petite,Bottoms,Skirts +1081,47,"Beautiful color, too full in the top","The length is lovely, the color is nice, the fabric feels like silk but isn't (so you can wash it), and the cut is flattering if you're a b cup or below. for me, the pleats on top made my chestiness look like fattiness.",4,1,5,General Petite,Dresses,Dresses +1083,35,My favorite dress ever!,"Many internet reviews note that byron lars dresses run large and suggest that women 5'5"" and under should size down and go petite. i am 5'3"" and 101 pounds and the 0 petite size was too snug across my back and too short when i sat down. when i stood up i had to pull the dress down, as it would bunch up around the hips. therefore, the size 2 regular ended up being a perfect fit, no alterations needed. i was searching for a dress for an upcoming wedding and for vacation and kept coming back to thi",5,1,0,General Petite,Dresses,Dresses +1075,24,Buy at your own risk...,I really wanted to love it but it was way too maternity on me. i love flowy but the flow on this dress hit me in all the wrong places. but i must say i have a 34ddd bust and wear a medium regularly. well i sized down and ordered a small and it just didn't work. it just flowed right off my chest to what looked like a dress concealing a baby bump. overall its cute just not for me.,3,0,0,General Petite,Dresses,Dresses +974,62,White is not white,"This is a very nice jacket in a pretty textured fabric. it seems to fit tts, and the cut is very flattering. however - the ""white"" is actually ivory. not a big deal, unless you were trying to match an outfit with pure white in it. still on the fence about whether to keep it or not.",4,1,13,General,Jackets,Jackets +974,23,Just okay,I didn't fall in love with this jacket but it was comfortable and seems like it has potential to be flattering on many body types. for reference i tried on a medium and my measurements are 38-30-40.,3,1,9,General,Jackets,Jackets +1081,35,,,5,1,0,General Petite,Dresses,Dresses +1081,38,"Perfect, comfy, feminine summer dress!","Admittedly, i ignored this dress on a few trips to my local retailer and then it went on sale, practically begging me to give it attention. i tried it on and fell in love! so feminine, light, and comfortable. +it has a sort of roman/boho goddess vibe due to the billowy top, especially in the lighter greige with some sea-hued accessories added but not so much it feels like cosplay or something. i have a full bust (dd) and didn't find this dress to be unflattering. after wearing it to a party, i ac",5,1,4,General Petite,Dresses,Dresses +1083,22,Cute without the belt!,A lot of reviewers have been saying that this dress is simply too busy to be wearable and they're right! i love the cut and fit of this dress but don't love the style. the awesome stylist at my retailer told me to take off the belt and then try it on with a ribbon ( like the one on the charisma sheath) and it was so much more cute. it completely changed the look of the dress and made it look more classy. the belt looks very cheap in person and a little hoochie mamma if you wear it with the dress i,3,1,0,General Petite,Dresses,Dresses +868,53,,"Absolutely love this top, it falls perfect in all the right places. i've gotten so many compliments especially from the bow design on the back.",5,1,2,General,Tops,Knits +450,36,Soooo disappointed!,"I was hoping these would be like some of the lace shorts i bought from retailer last year that i loved so much. sadly, no. first of all they run small. i am between a s and xs in most brands, bought a s in these because i like my shorts on the looser side. these felt a little snug and short, but i decided to keep them. the first time i washed them, they were ruined. i followed the directions exactly and even put them in a lingerie bag in the washer, plus a delicate cycle, no dryer. the lace is man",1,0,11,General,Bottoms,Shorts +1083,34,Runs very large,Lovely dress but runs at least a full size too big.,4,1,1,General Petite,Dresses,Dresses +974,35,Great summer jacket,I bought this jacket in white specifically for summer. it is the perfect weight for the office air conditioning coolness. i wore this jacket with a sleeveless silk blouse and summer skirt. it just looked perfect for a dressier summer outfit. i take a m/l in retailer jackets and went with the large in this because i have a large bust (36d). the medium fit but was just a tad snug through my upper back/front area. the large gave me a little wiggle room so i could wear a little heavier blouse undernea,5,1,16,General,Jackets,Jackets +1081,34,Greek goddess-style not for all!,"If you have any curves, avoid! it is not flattering. +the striped side panels look odd with the flow of the dress.",1,0,0,General Petite,Dresses,Dresses +1081,35,Runs big,"Beautiful dress, but works best with a belt where the dress cinches at the high waist. it runs huge: i'm 5'6 and a m/l but the small petite is what looks and fits the best. there is a lot of unnecessary fabric and stretch at the waist. i received a lot of compliments on this dress! glad i kept trying on smaller sizes.",4,1,0,General Petite,Dresses,Dresses +903,33,Much cuter than the picture,"This sweater is so much cuter than the online picture makes it look! i think the model is wearing it too large. anyway, this runs kind of big, so size down. it's kind of short in the front, but it hits at a nice, flattering spot. love it.",5,1,5,General,Tops,Fine gauge +1081,62,,"Well made, versatile dress. have already worn it to a wedding and work - could definitely be dressed down for a more casual look. i'm 5,7 and typically wear a medium in dresses and the small was definitely the right fit with some room to spare.",5,1,1,General Petite,Dresses,Dresses +1081,45,Dry clean?!,"Has anyone tried to hand wash this dress instead of dryclean? +runs a little large. i am 5'5 135# 34dd and purchased xs. i was really surprised that xs fits well. i initially tried small but the armholes were too big. the waist is a little too high but i plan to wear it with a belt.",5,1,0,General Petite,Dresses,Dresses +1083,45,Beautiful design,"I bought this dress online after a long search for the perfect dress to wear to my daughter's fall wedding. i did not want something full length or too formal. after modeling several dresses for my boys this one got the thumbs up. i do love the design and that it is different enough from all the other mother-of-bride dresses out there. i will wear this with black nylons and wedges (since this wedding is in a meadow). i'm completely satisfied! for reference i am 45 years old, 5'10"", 160 lbs with",5,1,3,General Petite,Dresses,Dresses +1085,58,Easy breezy,I love this dress it is a little sheer so nothing that spanx won't cover. i have worn it a couple of times and have gotten many compliments.,4,1,0,General Petite,Dresses,Dresses +868,62,,"I wasn't expecting to like this tank as much as i do because of the other reviews...i thought i would send it back if i didn't like it, i appreciate the design, fabric, and construction! i plan on wearing it out to dinner with some friends coming in from out of town tomorrow night...can't wait!",5,1,3,General,Tops,Knits +1081,36,,"The dress didn't look like much on the hanger but the rust color caught my attention so i tried. the dress fits beautifully. i did have to size down to a small because the medium was too large on my frame. i have a longer torso and the elastic waist did not quite fall on my natural waist, but corrected by pairing with an obi belt, which looks fantastic. the bottom is lined and flows rather nicely. the dress has a modified hi/low thing going where the front and back are longer than the sides, but",5,1,8,General Petite,Dresses,Dresses +1086,38,Comfy!,"This dress is super comfortable. it's s bit long, but i'm 5'3"", so that's to be expected. i wanted an everyday dress and i can't decide if the full skirt makes it too formal looking.",5,1,0,General,Dresses,Dresses +1086,31,Color not as expected,Still can't decide if i want to keep this. it's super comfortable but much thinner than expected and the color seems more navy blue than black.,3,1,0,General,Dresses,Dresses +1081,57,Gorgeous feminine flutter dress,"Wearing this to a weeding in july. its so feminine and pretty. runs a little big on top at the arm holes, but having it tailored - love!!!!",5,1,3,General Petite,Dresses,Dresses +1008,48,Wanted to love this skirt for the holidays...,"I am a size 2 and the skirt fit however it is so thick and voluminous, it looked like a pirate sack. it's unfortunately going back.",1,0,6,General Petite,Bottoms,Skirts +1119,39,Darling style ok fit,"I love the style of this coat and the way it fits on the model. in reality, the cut is more straight. i was hoping for some darting and a slimmer silhouette. cinching the belt makes the coat bunch unattractively. if i sized down, i think it would look better but i'm concerned that my shoulders will not fit. the fabric is 60% poly/40% wool and a bit itchy where it's not lined. the lining is a jersey poly blend. the belt has flimsy ugly string loops that cheapens look of the coat. other than the b",4,1,1,General,Jackets,Outerwear +1081,39,Not flattering on *me*,"I recommend this dress for people who do not have my body type. the dress is very comfortable and nicely designed. my torso is a bit barrel chested with a large bust so the fabric both wrapped and billowed out unattractively, causing the waistband to ride up and the skirt to pouf out over my tummy. if your body is more like the model, this is a flattering dress. for reference i am 5'3"" 36dd 140# and ordered the medium petite. perhaps if i bought the non-petite version or sized down maybe it will",4,1,22,General Petite,Dresses,Dresses +1081,46,"Comfortable, long, cool","The dark orange is a beautiful color. this is a very comfortable dress, lightweight, long enough so you can sit down in it without any concerns. unfortunately, it's dry clean only, and you may want a belt to cover the elastic waist. the top part is very loose, so this might work better for full-figured gals.",4,1,27,General Petite,Dresses,Dresses +1081,28,Gorgeous color - weird fit!,"I liked this dress so much in the store - but didn't have it in my size - so had it shipped (and yes, paid shipping costs...) but it just didn't work on my body. the top is sort of poofy for lack of a better word - it made me look kind of poofy all over and really - i am not poofy! +it's a lovely color - and might look terrific on a tall woman - but at 5'3"" - not so good - had to return, sadly.",3,0,0,General Petite,Dresses,Dresses +1086,38,,"This is my new favorite dress! it's super soft, comfortable, and flattering! i have worn it twice and each time have received multiple compliments. i love, love, love it!",5,1,0,General,Dresses,Dresses +1081,24,Gorgeous dress,"This dress is beautiful. i ordered this in the mail and literally said ""wow"" when i took it out of the packaging. the color looks more like champagne in person and the flowers look fantastic on it. i was worried that it might look a little awkward with so many things hanging off, but instead the flowers really compliment the entire ensemble. it really just looks like a work of art. i'm usually a small in retailer clothes and that size fits me very well. i absolutely love this dress.",5,1,1,General Petite,Dresses,Dresses +831,28,Be careful of sizing,"This top is beautiful aesthetically, and i liked the tunic length. the bottom lace is cut out, so make sure things are adequately covered if you wear this with leggings. the fit is flattering. + +however, i had some issues with the sizing. i usually wear an xs or a s in tops. the body of both sizes yielded a boxy fit for me, which is seen on the model.. i tried the top with a belt, which looked nice. however, the thing that stopped me from keeping the top was the shoulder/armpit/sleeve area. the s",3,0,4,General,Tops,Blouses +1081,62,,"I wasn't overly impressed or drawn to this dress at first, even after i bought it, but after wearing it, i am sold! i paired the orange version with caramel colored sandals and gold jewelry. i thought it was necessary to wear a long necklace to bring some interest to the otherwise plain top. the dress is super comfortable - fabric, fit and length. it billows in such a pretty way when you walk! the color also made my skin look extra tan, which i loved! the waist is short and rides up now and then",4,1,0,General Petite,Dresses,Dresses +903,39,Adorable,"Truly. adorable. as other reviewers have mentioned, much better in person than as pictured. the ivory has black, khaki and light pink polka dots. it is great with a pencil skirt or pants.",5,1,0,General,Tops,Fine gauge +974,35,Just ok,"I ordered two of these, the grey and ivory. i have had great luck with jackets and blazers from retailer. these were the exception. i just could not pull them off. the quality was great but they had little shape except being a bit boxy. i do have wider hips. maybe these would look better on someone tall and thin? for reference, i am 5'6 and about 138lbs. i ordered smalls and the sizing was perfect for me, the style was just off. i had to return both.",3,0,1,General,Jackets,Jackets +1110,33,Almost perfect dress,"I was desperate to find a dress for an upcoming wedding. i basically tired on every dress in the store. this one was by far the best dress i tried on. the outer layer is delicate, and has great stitching and embroidery. the only problem is that the slip is skin tight and too small. this dress is so awesome i'm willing to overlook that and find my own slip. when i came out of the dressing room another couple stopped to tell me how amazing the dress looked. this dress is beautiful!",5,1,1,General,Dresses,Dresses +1103,64,So comfortable!!,"I ordered this online, having never seen it in person. i loved it as soon as i touched the soft material. it fits me perfectly...i almost invariably wear a size 6 in retailer dresses and tops, which gave me the confidence to order online, and this dress is true to size. the detailing at the bosom is so flattering. the fabric is supple and hangs gracefully without clinging to my not-so-perfect waistline. i have worn this twice already, having received it only a week ago. the blue/black combi",5,1,7,General,Dresses,Dresses +901,68,,I love this sweater! timeless--classical with an edge! i will have it until the end.,5,1,0,General,Tops,Fine gauge +1110,51,,I'm writing because i ordered this dress and live it. i'm usually a medium but bc so many said it ran small i ordered a large...it was huge and i wear a 34d. it was huge everywhere. so now hoping the medium fits.,5,1,3,General,Dresses,Dresses +1110,27,,,4,1,0,General,Dresses,Dresses +824,46,Cut does not flatter,"Lovely palette and and fabric but the cut did not flatter my shape. the flowy cut broadened my silhouette and hit at my waist making me look bigger than i actually am. the overall effect was quite frumpy in spite of the flamboyant pattern. perhaps a better choice for someone built exactly like the model. +i will be returning it.",3,0,0,General,Tops,Blouses +1027,47,Perfect !,"J brand is by far the best premium denim line retailer sells! the fit on these jeans is amazing..worth every penny..also, considering it is a crop jean - warm weather wear - the denim weight is light and not too thick...the color is different from ordinary regular denim blue..lighter wash for spring/summer!",5,1,1,General,Bottoms,Jeans +901,39,Love love love,"Quality, length, size, design are all perfect! i'm sometimes a picky person, but i can't say one thing less about this cardigan. it's all wool, but it feels so soft and comfortable. and it doesn't wrinkle. i put it in my purse for a couple of hours, still great when taken out. thin, but don't you plan to wear something underneath? it goes with everything!",5,1,0,General,Tops,Fine gauge +986,26,My favorite kimono - very versatile!,"This kimono is absolutely wonderful. i originally purchased it for an upcoming beach vacation, but have also found it to be a great piece for my wardrobe in both hot and cold weather! goes with pretty much everything. highly recommend.",5,1,0,General,Jackets,Jackets +29,26,Perfect fit an flare,"I actually saw angela from the tv show bones wearing this dress and decided i loved it so much i had to find out where it was from! after ordering this dress i couldn't be happier, i love it! it is a very flattering shape and a thick material so it falls nicely.",5,1,0,General Petite,Dresses,Dresses +1110,48,If only it fit!,"I usually follow the boho look, and this dress appealed to me immediately and it was in the color i wanted black. so excited to receive this as i knew i could wear it both as a dress and a tunic but that was not to be. +the outfit consists of 2 elements: a tight fitting slip that fits awkwardly and does not give enough room in the bust nor waist areas, and an overlay dress that is really quite pretty. but it too was too tight across the bust area which made the entire upper torso ill fitting. +i n",3,0,1,General,Dresses,Dresses +1030,37,Runs large,"I really liked these cords. i ordered both colors. they are very lush corduroy material and the color is very rich. since i am short, i wear them as ankle length (i am 5'1""). my only issue is that they run very large. i am normally a 25-26 and the 25 was still a bit large. unfortunately, they are all sold out of size 24 :(",4,1,0,General,Bottoms,Jeans +1110,57,Love!,"I found this dress to run true to size. i'm 5'4"" and 115 lbs and the xs fits great. perfect length and i like the thicker fabric so it's not see through. the raw edges lend a cool laid back and the final embroidery is a perfect bohemian touch. wearing mine with a turquoise choker. awesome dress!",5,1,0,General,Dresses,Dresses +1110,69,Petite sizing is more of tunic,"Our store only had one petite dress in my size in stock. i'm 5'4"" and so can sometimes pull of petite sizing. no in this case. it was a tunic on me. however the dress fit beautifully everywhere else and the quality was beautiful so i'll probably order my size in regular to give it a try.",4,1,6,General,Dresses,Dresses +515,61,Beautiful swimsuit,"This swimsuit is beautiful. the quality is excellent. controls without being too thick. the colors are bright and the pattern is gorgeous. i am curvy , 34dd and the top fit perfect. good bottom coverage. very happy with this purchase.",5,1,0,Initmates,Intimate,Swim +1110,56,Not a swing dress,"Not sure who named this dress, but it isn't a swing dress. it's a beautiful dress out of very soft fabric, with elegant embroidery design and pretty fringe detail. and pockets! i've worn this dress with tennis shoes, leather flip flops, and heels and been complimented each time. love this dress!",5,1,0,General,Dresses,Dresses +901,39,Fun and different,"I love this cardigan, it is very soft, and unique (i am a sucker for polka dots). i tried on my usual size (xs) and it fit. i wish they did have it in petite, however. added this one to my wish list :-) + +soft, versatile.",5,1,6,General,Tops,Fine gauge +1110,39,Slip is too small...,"Dress is pretty, i was disappointed by the slip which is too small like previous customer. i am an inch taller than the model and i feel more comfortable it being a tunic with leggings. nice but not nice enough to keep, i am returning. :(",2,0,0,General,Dresses,Dresses +1103,23,40s styling,Nice work dress. flirty style for spring.,4,1,1,General,Dresses,Dresses +824,42,"Did not like the fit, but beautiful colors","I really wanted to love this shirt! the colors are gorgeous, very vibrant and just as shown. the fit was all wrong on me. i ordered the petite xxs and it was still too boxy. and, it kept shifting so the front collar of the shirt would ride up into my neck. it looked like a sack on me. for reference- i am 5'2"", 112lbs...with a small frame.",2,0,0,General,Tops,Blouses +1110,59,Disappointed,"I couldn't wait to get this dress from the online order. the fabric looked so interesting to me - linen, appliquã©, pockets, raw neckline. the dress looks sort of straight up and down on the model but in my opinion it's like a little a line tent. the top runs very narrow and i could barely get it over my head. i'm going to return it and try for a medium, for reference i am 5'4"" 135 and usually wear a six or a small.",3,0,1,General,Dresses,Dresses +1110,47,"Beautiful embroidery, poor execution",I loved this dress. the details in the embroidery are gorgeous and reminds me of another holding horses dress i own. what didn't work out is its a swing design but the fabric is thick and doesn't swing well. it's white and makes one look a bit heavier because of the generous cut. this could work on a tall person but on my short frame it didn't work.,4,0,51,General,Dresses,Dresses +1030,63,Bought 2 pairs,When these cords went on sale i bought a 2nd pair. they are great work week pants (i teach) - comfortable and machine washable. the fit is relaxed-trouser,5,1,0,General,Bottoms,Jeans +1030,38,,"These are a beautiful color, but run large. i ordered my usual size and they are falling off of me. they are very low rise so i don't think i'll be trying the smaller size, can't even imagine them being lower. also, they are cropped, that's hard to tell in the picture.",2,0,1,General,Bottoms,Jeans +1110,34,Had great potential,"I tried this dress on in a 6 and a 4 (a 4 is a little small for me but it looked so loose and flowy i thought sizing down would be a good idea). the 4 fit in the outer layer, however as the previous poster mentioned, the lining is super tight. i couldn't even pull the 4 lining down over my hips. the 6 was far too big in the shoulders and arms and still too tight in the lining. not sure what when wrong here but it's a shame because it's a really cute dress.",2,0,8,General,Dresses,Dresses +1103,29,Very cute dress...for a different body type,"This is a lovely, well-made piece by maeve, a longtime favorite of mine. the material is great weight and won't wrinkle, colors are vibrant, and design of the dress is cute, if a bit on the short side. + +however, i, like some of the other reviewers, didn't love this this on me. the waist hit slightly above my natural waist (and i'm very short-waisted) and this particular sweetheart neckline did nothing to flatter my bust (i'm a 34dd for reference). the end result was a bit too dowdy on top with",3,1,0,General,Dresses,Dresses +1030,29,"Soft, stylish and simple","These pants pair well with anything - dress up or down, boots or sandals....but beware, they run big and rear end stretches out when sitting at work all day. if you have a booty these pants will be perfect buy one size down tho. if you have a flat rear like me, then buy two sizes down. length is good to leave uncured, just above ankle or roll up to perfect height. great color - fabric is amazing.",4,1,2,General,Bottoms,Jeans +1110,37,Super cute!,I'm not sure why the other reviewers think that this runs small. in my opinion it runs pretty large. i am normally a medium and i ended up returning the medium to get the small. i do have a small bust (36b) and skinny arms so maybe that's why? regardless it is super cute and i think it can be dressed up or down. it looks awesome with the pilcro jean jacket!,5,1,6,General,Dresses,Dresses +901,49,Very cute cardigan,"I tried this on in the store and came online for the petite size. the length was fine on me, it's only the sleeves that would be better for me in petite. this cardigan is very cute. the dots are a bit more arty-looking in ""person"" than you can see here - more like watercolor or ink spots, which is a nice subtle touch. i put ""runs small"" just because i think you might want to size up if you plan on wearing much in the way of layers underneath. the merino wool is not itchy, it is nice and soft. i",5,1,8,General,Tops,Fine gauge +1110,49,Fun swingy black dress,This is a pretty basic black dress with a swingy silhouette. the slip that comes with it is much tighter than the dress. the transparent sleeves and open-work details help it look a bit airier even though the shape is loose. the neckline has a flattering v-opening. i was able to try on a petite size at my local store (i suppose it was a returned item). the petite was still a bit long for me; it did not hit me above the knee but rather at or slightly below the knee. the dress was cute and comfort,4,1,0,General,Dresses,Dresses +901,49,Pure love,"I absolutely love this light, soft cardigan. i don't think the pic does it justice. the black longer blouse takes away from it. i wore it to work with a white button down and received so many compliments. only wish it came in additional colors.",5,1,0,General,Tops,Fine gauge +901,93,Very pretty & soft,Great quality. very versatile design and super cute. runs small - i ordered up a size which was perfect.,4,1,0,General,Tops,Fine gauge +824,41,So unflattering,"I'm sure there's someone out there who will look good in this but it certainly wasn't me. admittedly, i'm a less than ideal body type at a curvy 5' tall. still for a taller person this shirt runs short, for a curvy person this does nothing to accentuate a waist, for a short person this pattern is very busy even if the colors are beautiful, for a busty person the gathers around the chest make for a very frumpy look, and even for a short and thin person this shirt runs too big to get a good fit. c",1,0,0,General Petite,Tops,Blouses +1110,44,Needed a petite for sure and probably to size down,"I was too late to find my size in petite. boo. i tried the regular sizing and it was huge...a total tent. i am 5'4"" about 118#. i tried an xs. it was gigantic to say the least. huge everywhere. i love that the fabric is thick but yet doesn't feel heavy or hot. i think it would be the perfect summer dress...could wear casually or dress it up. don't need a slip (what a plus for a white dress!) i definitely needed a petite size and most likely from the size of the xs a pxxs. really? i know i have w",4,1,0,General,Dresses,Dresses +901,55,,Couldn't resist the polka dots! very cute and stylish cardi. since i'm short waisted this cropped style is perfect for me. i tried on the xs and small and while there wasn't a huge difference i went with the small since it had a bit more room. it's pricey so i waited for a sale to purchase!,5,1,2,General,Tops,Fine gauge +824,42,Great fall colors,This tops is super cute and great transitional shirt for the fall. a little short in the front but still a great shirt.,5,1,0,General Petite,Tops,Blouses +1110,35,Caz wedding ensemble,"I bought this dress to wear to one of the upcoming events leading up to my wedding in mexico. it's the perfect mix of casual yet refined. as another reviewer mentioned, it is a bit tight through the bust, but luckily i wasn't blessed in that area. i would caution that there is absolutely no stretch to this dress. it's a true, straight shift. i'm going to rock it with turquoise and flats in mexico.",4,1,6,General,Dresses,Dresses +1110,37,Beautiful dress...just didn't work for me.,"I wanted so badly for this dress to work on me. the design is amazing. the detail is so pretty and delicate. its my version of the perfect little black dress! however i have very big arms...and while i could have easily sized down for the body of the dress, the arms and chest in my normal size did not fit at all. i'm usually a 14-16 in dresses. i tried the 16 and it just didn't work. the arms were way too tight. however i've seen this dress on many other women with smaller arms than me, and they",3,1,1,General,Dresses,Dresses +1110,41,Cute but not for anyone bigger than a b cup,I was so excited to get this dress and could tell right away it was beautiful. the fabric and detail are perfect and seem great for summer. then i tried it on ....to say the bust area is tight and not proportioned correctly would be putting it very nicely. it was a total joke. this dress is for very small chested only.,3,0,30,General,Dresses,Dresses +1110,26,"Adorable dress, tiny slip","The dress immediately caught my eye in the store. upon trying it on, i discovered that the slip runs extremely small (and unnecessarily so considering the looseness of the shift). the skirt is a tad long--i'm 5'6"" and it hits mid-knee. it's a shame the slip was so tight--i loved the dress otherwise.",3,0,0,General,Dresses,Dresses +860,53,Cute and comfy.,Great fitting longer tee. comfortable and light. longer short sleeve a nice change from cap sleeves.,5,1,1,General Petite,Tops,Knits +1110,41,Perfect winter lbd,"I have been looking for a black dress for a few events i have coming up this winter and have not been able to find anything suitable! i have tried a few things from free people but being 5'8"", everything there is just too short for these particular events. when i saw this dress, i had to have it! it has the same feel as some of the free people dresses but the length is so much better! the dress itself is sheer and not intended for extended outdoor wear, but really beautiful on. dress up with som",5,1,1,General,Dresses,Dresses +824,36,Gooooorgeous,"These colors!!! my cup of tea! i love everything about this top, from the fit, to the raw edge of the neck trim. it does seem like it will wrinkle easily but i can manage that for its sheer beauty!",5,1,1,General Petite,Tops,Blouses +1110,28,Not for wide rib cage,"This dress is the perfect combination of bohemian chic. however, the slip below the dress runs a tad bit small. i have a wide rib cage and normally wear between a 04-06. the dress would have been just perfect if the slip was a bit larger.",3,1,0,General,Dresses,Dresses +1110,33,Slip issues are surmountable,"I loved this dress and wanted to use it for work. i read the reviews and saw all the issues with the slip and was nervous, but i tried it anyway and figured i could use another plain black slip i have if the one with the dress didn't fit. i'm really happy i did because it's a gorgeous dress. you just may need to wear a different black slip with it (i did). if you already have one, it's no additional hassle or cost and the dress is really unique. it's the perfect comfortable but stylish dress for",5,1,1,General,Dresses,Dresses +901,52,Cute and classy,Very nice polka-dot pattern. i so think it is versatile and can go with a lot of different colors. i am worn it was different colors underneath and both a skirt and jeans. it is a timeless classic!!,5,1,0,General,Tops,Fine gauge +901,54,"Cute cardigan, fun piece","This is a cute, fun addition to my wardrobe, especially since i am a polka dot fan! it is alittle short for me and i think it runs just a bit small, particularly if you want to wear like the model with longer shirt under it. overall, it was worth the sale price and will look good with casual pants, jeans and with dressier black pants for work.",4,1,2,General,Tops,Fine gauge +1110,67,"Super cute, horrible slip","Super cute dress online on the model. what you can't tell from the picture is the slip underneath is not true to size of the dress and the outside layer of the dress is more sheer than the picture shows so you can tell the slip underneath is very tight. it might be my body type. otherwise, it's super cute in person and i wish it would've fit better!",2,0,17,General,Dresses,Dresses +1110,33,In love,"I love this dress. so simple yet beautiful. very excited to wear this spring and summer, perfect for easter.",5,1,7,General,Dresses,Dresses +1110,61,Sandscape dress,"The overall color of this dress is more buttery white and the pale golden embroidery almost blends in.therefore i think the dress benefits from being styled . i tried bold colored scarves with fringes and big statement jewelry. this dress is more casual with its fringes , the jeans like material ( although softer than cotton) as well as the loose pullover style. it is easy to dress down with a blue jean jacket, casual sandals or even sneakers. +i have a 38 c chest and the l fits almost too loos",4,1,0,General,Dresses,Dresses +824,52,Busty? curvy? no problem!,"I adore this blouse. the colors are vibrant (see my photo below). this is one of my favorite purchases from retailer. the top is light weight. true to size. i ordered a petite small and am 5 feet tall 120 lbs. and curvy. i left it untucked and loose like in the photo and it was very flattering. i disagree about it being frumpy. i wore it with kelly green retailer brand slacks paired with the retailer yellow sweater coat with white piping, and the retailer moss suede cross bag and neutral color (nude) fl",5,1,0,General Petite,Tops,Blouses +1086,42,This dress is not like in the photo irl,"I really like this dress but after looking at the photo, it doesn't look like this, well at least on me. granted, i am 36dd so that might be part of the reason, but this dress is definitely trapeze style. i love the look but am cringing at the thought that someone is going to think i am pregnant. because of this, a belt is a must. plus it is the only way to achieve the look in the photos because it is a lot fuller in real life. + +another nice touch to this dress is that versatility with the ru",3,1,2,General,Dresses,Dresses +889,41,Disappointing,"I assumed at the price point this would be a high quality t-shirt/sweater. unfortunately, it is made of cheap looking material that is 50% acrylic and see-through.",2,0,10,General,Tops,Fine gauge +1047,64,So comfy and soft,"These pants are perfect for any casual occasion. they can be worn to run errands, hang around the house, or even go out with friends. i love how versatile they are and they are so roomy for those times when you don't want to wear jeans or anything tight. they are a bit pricy, but i'm very happy with how they fit.",5,1,2,General Petite,Bottoms,Pants +854,26,Very pretty cardigan,"I love this cardigan. i purchased it in the cream color. however, it did fray a bit after washing it. other than that, i think it was a great buy though!",5,1,0,General,Tops,Knits +1047,63,More than a jogger,So comfortable-so versatile-so perfect,5,1,0,General Petite,Bottoms,Pants +616,39,Love this airy top,"This top is light and airy, but substantial enough to wear with shorts away from the beach. its definitely not too sheer to wear without a bathing suit. i was actually pleasantly surprised at the flattering fit. it runs slightly big, but the top is fitted enough that its not shapeless. the colors are beautiful and the embroidery makes it special.",5,1,10,Initmates,Intimate,Lounge +616,37,Runs large,"I wanted to love this. the fabric and design are very nice. unfortunately - on my petite frame it looked like a lampshade. this would be very pretty on taller girls. for reference, i am 5'3 117 34b.",3,1,5,Initmates,Intimate,Lounge +1047,21,,"I absolutely love these pants! they are super comfortable, lightweight, have big pockets, and are so cute. can wear them anywhere- i'm taking mine to india next week!",5,1,1,General Petite,Bottoms,Pants +616,46,Awesome top - stunner,"This is much prettier and beautiful in person. +the fabric is light - but it's perfect for the summer",5,1,1,Initmates,Intimate,Lounge +966,33,Deba vest,"First, this vest is made by elevenses. i love this menswear inspired vest. it's simple and structured, however, it's long on my 5'2 frame. the price is also a little steep, but it will add a nice touch to a simple outfit. i plan on taking this to a tailor to take an inch or two off the bottom.",4,1,6,General,Jackets,Jackets +616,51,Disco-ball-summer-cover!,"I've been desperate for a swim cover that covers my arms & back. this one fits nicely--just a pretty, feminine, happy summer top that still lets me be leggy. i can't see them in the photos, but the embroidery detail at the upper part of this top has little mirrors sewn among the dots. very fun! i'm 5'5"" and when i paired this with jean shorts, everything below the crotch was visible--so perhaps slightly shorter than it appears in the pics.",5,1,2,Initmates,Intimate,Lounge +1047,36,Love these pants,"I just bought these last week and have had a hard time wearing anything else! they are super comfortable, with great pockets. very flattering and wash up great. wish they made more colors...",5,1,3,General Petite,Bottoms,Pants +1191,59,Not really a honey,"I was excited to see these on sale in the honey color i wanted. unfortunately, they were really more of a yellow than the golden color in the photo. also, they were so baggy in the rear that i looked silly, which was surprising since i don't have a small behind. unfortunately all the smaller sizes were sold out. had to send them back.",4,1,0,General,Bottoms,Pants +966,81,,"Unique vest: modern, chic. i especially like the color block one the collar part. i know it will become a staple in my working clothes, and i can also see it blend in to my weekend clothes. i don't think the back of this vest is of bad quality, like another reviewer said. overall it's a hight-quality piece.",5,1,1,General,Jackets,Jackets +616,50,,"While the fabric, embroidery and sizing are dead on, i just couldn't deal with the shiny little mirrors that the designer embellished this shirt with. that detail is not apparent in the photographs and i felt lessened the versatility of this blouse. so, it must go back to retailer.",3,0,8,Initmates,Intimate,Lounge +966,26,Love and hate.,"This is a beautiful vest. i love the color-blocking, the modern and structured style, and its versatility. i bought it with a defective item discount because there were some stains. i promptly took it to the dry cleaners and was informed that the black would bleed onto the white paneling if they did a full wash. they spot-cleaned it, and it did bleed. although the tag says to dry clean this baby, the black dye will bleed to the white fabric. i'll be taking it back into the store today for a ref",2,0,0,General,Jackets,Jackets +1021,43,Great skirt but bad craftmanship,"Already got a lot of compliments on the first day i wore this skirt. great fun shape, very flattering. however, the 2 panels were sewn using some type of hard/plastic thread which becomes very itchy when you sit down (you can literally feel it through the liner and i'm concerned that over time it might actually rip it). very poor attention to details...",3,1,0,General,Bottoms,Skirts +862,34,Dressed up tee,"This top wasn't an eye catcher off the bat but i love nothing more than a dressed up tee, so it's why it made it to the dressing room with me. it has elbow length sleeves, a slub texture, super soft, awesome texture and detail. the slight v-neck is perfect and the overall fit is great. i'm typically a lover of black but the wine color was gorgeous too so i took both into the fitting room with me (the other colors weren't available). surprisingly, the black was not even close to a favorite, but t",5,1,2,General,Tops,Knits +862,41,Great shirt,"I bought the green, and it is a dark teal. the fabric is so soft and it can be dressed up or down. the detail truly sets it apart from your boring tee. great purchase, especially at the sale price.",5,1,0,General,Tops,Knits +840,33,,I normally wear a medium in about everything and i bet an xs would've maybe fit me in this top. it's so billowy and not fitted at all.,3,0,0,General Petite,Tops,Blouses +862,30,Comfort & style,"The shirt fits loosely, but not baggy. beautiful detail on the back and shoulders. very soft and lovely material.",5,1,0,General,Tops,Knits +862,27,Not for all body types,"I tried this on at the store in black. the lace on the back is gorgeous and the fabric is very soft, but i would disagree with the previous reviews - i don't think this is flattering on all body types. i've got an hourglass figure and the top absolutely robs you of a waist. it drapes straight down on the front, so if you have a larger chest, you end up looking like a football player. + +i think for a narrow frame or a smaller chest, this would be very flattering.",3,1,0,General,Tops,Knits +862,37,Great shirt,"Love the fit - doesn't cling to my midsection and detail on sleeves is very pretty. fits true to size. +i got the black but want to order it in other colors as well. can be dressed up or down.",5,1,0,General,Tops,Knits +862,32,Flattering fit,I love this tee! i bought the teal in store. rich colors. little details are perfect. the loose got was very flattering on me. i'm not busty at all and it hung so well. wore it to brunch and the flight home later!,5,1,3,General,Tops,Knits +1080,55,Relly cute,"I couldn't decide between the black and the red. this is a really cute dress that could be dressed up or down. just be aware of the high, somewhat tight neck.",5,1,0,General,Dresses,Dresses +862,32,Great casual top,Love this top - it's flattering and perfect for a casual dinner out or running around on a saturday afternoon. super comfortable and very cute.,5,1,0,General,Tops,Knits +862,40,Great top,"This top is perfect for a weekend casual look. you will love this, it fits true to size.",5,1,0,General,Tops,Knits +862,53,"Pretty fabric, soft, but very low cut","I am 5'6"" and the neckline barely covers my bra -- would have to wear a cami with it. the fabric is soft, and the colors are very pretty. but the neckline is too low for me for a casual top.",3,0,1,General,Tops,Knits +840,52,,"Looks like a pregnancy top. a lot gathers in front and back. added 10 pounds to me. not flattering on, much longer than on the model. and the color is not white. it's white with a weird tan/ taupe stripe. +i returned it same day i received it, which was disappointing.",2,0,0,General,Tops,Blouses +1080,56,Adorable dress!,"This dress is adorable! i purchased it in black and white to wear to my daughter' s bridal shower. i received so many compliments. it was comfortable, stylish and best of all wrinkle free. i actually ordered it online and when i got it, the dress required no ironing of any kind. love it! i think i may have to get in in the red also.",5,1,4,General,Dresses,Dresses +918,53,Unique sweater!,"I just purchased this adorable, unique looking sweater at my local retailer store and absolutely love it. as soon as i saw it, i knew i had to have it! it is super soft, tts so i purchased it in my regular size small and it has the cutest pockets ever. the little black buttons also add to the look but the black snails on the pockets are what's really so sweet on this one. though i'm not a fan of snails in my garden, i'll make an exception for a couple of them making a guest appearance on this swea",5,1,10,General,Tops,Fine gauge +918,33,Perfect,This is a nicely made and comfortable sweater that is fun to wear. i have worn it with jeans and a t shirt and have received compliments on it.,5,1,0,General,Tops,Fine gauge +92,64,,,5,1,0,Initmates,Intimate,Intimates +1080,62,Beautifullllll!,"I was looking for something for a spring wedding that wasn't too billowy, but not overly fitted either as i try to hide leftover postpartum pounds. this offered the perfect solution with the slip underneath the looser netted overlay (i got the black). the overlay is not delicate, but not stiff either - just good quality that falls beautifully. so happy with this dress - comfortable, attractive, unique...and versatile! can easily see wearing this to work as well as a wedding :)",5,1,2,General,Dresses,Dresses +1131,20,,"It's a very light material, so you can wear it early spring or early fall when it's still fairly warm. such a cute jacket, has no zipper or buttons though, so definitely more for style/look than for a crazy rainy day use! love it!",5,1,1,General,Jackets,Outerwear +1080,46,Black not red,"I got this in the red and the black.i returned the red,for it doesn't compare to the black one.i would have loved it,if it was a red dress with white flowers.i didn't like it being a white dress with red flowers.the black one is the one to pick!",4,1,1,General,Dresses,Dresses +862,34,Love it,"I love this top. the fabric is soft and a silky lightweight - perfect for summer. i feel it runs a size large. i'm 5'4"", 130lbs, with broad shoulders. i usually wear a medium, but a small fit perfectly.",5,1,5,General Petite,Tops,Knits +918,31,Adorable,"Cozy, soft fabric. love the snails on the pockets and the cute buttons. size down if you want a more tailored fit.",5,1,0,General,Tops,Fine gauge +840,37,Cute...on someone else,This top is very cute...on other people. i ordered my normal size (xs) and just did not work out. it's very billowy on the bottom (too much for me) and the top portion did not lay right. the material is thin so you will need to wear a cami underneath it. perhaps if i got the petite xs that right have been a better fit...not sure. in the end the top went back.,4,1,12,General,Tops,Blouses +862,77,Petite proportions way off,"Sizing is just getting unreasonable, and nothing fits unless it's a crew neck nowadays. this v-neckline would have been perfect if pictured as on the model, but on my 5' 4"" 115 lb frame, the xxs petite neckline came down so low my bra was exposed along the eyelet trim. additionally, the shirt looked like it shrunk in length, and wouldn't have covered a belt on my pants. it also did not match the product description and measured 22"" from the hps to hem. i'm unsure of how when pattern grading an i",2,0,2,General Petite,Tops,Knits +862,46,"Very comfortable fabric, great color/details","I ordered the green/teal in size xl. the fit on me doesn't match the model. it looks looser on her. i think it runs small, at least in size xl. it still is a comfortable fit since the material has stretch. the pleat at the top helps the drape of the shirt. it's a beautiful color of green too. i think the v-neck is too low so i wear a tank underneath. this also helps with the transparent panels at the shoulders/back. my other dolan tops have held up well and retained their color through washing s",5,1,0,General Petite,Tops,Knits +1179,46,Pretty but runs long,"I bought a size xl in the white with brighter small florals. i paid full-price as a splurge for summer. the details on the top are just as nice in person as shown in the photos. it's a sweet top. i love the upper portion. however, it runs long. i need to belt it/tuck it or it looks strangely like a long-tunic. the floral material is slippery and a little heavy. not the softest but it's washed well. i love the mix of laces at the top. it's pretty. not worth full-price but on sale, it's worth tryi",4,1,0,General Petite,Tops,Blouses +840,26,Perfect seasonal transition top,"I fell in love with this top as soon as i tried it on; it's the perfect spring-to-summer top. the fabric is light and airy, and the brown stripes give it a lackadaisical vibe. the little buttons on the back are a cute detail that really give something extra to an otherwise simple top, and the v-neck did not reveal any cleavage. i bought this in a large, and i'd say it runs a little on the larger side, but i like that because it adds to the comfortable, flowy nature of the design. for reference,",5,1,1,General,Tops,Blouses +840,53,,"I ordered this top in the white and cream color combo and love it so much. the buttons in the back add a sweet touch - easy top for fall, spring (easy to throw a cardigan over), and summer. i ordered a medium, but probably could have done a small. classic retailer!",5,1,0,General,Tops,Blouses +918,58,Snail cardigan,"I love quirky and unique sweaters/ cardigans, and this is no exception. it's not obvious in the photo (at least it wasn't for me), but the cardigan does have buttons all the way down, and not just at the top, something i appreciated. those buttons, however, are not easy to un-button. the snails are adorable without being childish. i'm 5'4 130lbs, often between a small and medium when it comes to cardigans. i chose the medium for this one, which fit exactly how i wanted it to (a.k.a. sleeves were",5,1,6,General,Tops,Fine gauge +862,25,"Pretty, but not for me","I purchased this on one of retailer's 40% off sales, and got it for a great price. if you're looking for a pretty, comfortable t-shirt that's a little beyond the basic, this fits the bill. unfortunately the neckline was just a tad wide for me in the xs. i felt like it might show a peek of my bra, and when i adjusted it higher, the soft, stretchy material showed bra lines underneath. that issue, and the fact that the shirt is on the flowy side made it less-than-flattering for my small frame, but i",4,1,1,General,Tops,Knits +932,40,Wanted to love it!,"Well, i wanted to love it and it was just too much. i think it is a bit wider and weirdly baggier than it should be. i also feel it should be fully lined. it was not. the exterior wool and pattern is very nice. maybe if it was lined, a smaller size would have worked better, but for the price, i needed more. i also would have liked some sort of option for tightening the waist a bit when zipped up. i realize this isn't in the picture, so no expectation, but upon trying it on and seeing its boxines",2,0,11,General,Tops,Sweaters +918,64,,"I like this sweater for its classic shape and grosgrain ribbon finish on the placket. it does have buttons all the way down and they are a little hard to open but the style is fun and fresh. it will dress up or down as shown with jeans and tee shirt. fit is like on the model for me in a large as i usually wear a 10-12 on top. the arms are quite long even for me at 5'9"".",5,1,2,General,Tops,Fine gauge +714,25,Great slip but runs small,"This sleep is super flattering on but it runs quite small (and short). it has a lot of stretch to the fabric and my normal size felt like i had a large spanx slip on. like i said, great slip but i'd recommend ordering up a size if you want it to look like the model.",5,1,2,Initmates,Intimate,Intimates +1146,45,Wanted to love this...but,"This dress runs so large, why did they not make an extra small. the material and detail are great the flow in the back is different but is flattering. i wish wish that they made this in the extra small, i was swimming in it, there was no way to fix it so it went back",2,1,0,General Petite,Trend,Trend +862,43,A good tee,"I'm not usually a fan of tees as i'm a little but busty, and don't like material that clings. the color of this tee is gorgeous, though. the neckline is feminine, and it has it enough weight that it moves. +not sure how it'll wash, but will try to keep it out of the dryer.",5,1,1,General,Tops,Knits +918,53,Picture a tad misleading....,"If you look closely at the photos, the buttons are only shown as applied halfway down the placket but the buttons run the entire length of this fabulous sweater by moth. the sweater fits tts; i am 5'5"" 142 lbs and the m is just perfect with room to wear more than an average tight fitting tee underneath. it is a mid-weight nylon-viscose-cashmere knit with understated black cotton 'rope' snails on the pockets. there's nothing boring about it as is often the case with long-sleeved, navy blue cardig",5,1,2,General,Tops,Fine gauge +1080,66,Pretty,"Very pretty dress, perfect style for my build, bigger busted, muffin top. the material/pattern is really pretty.",5,1,0,General,Dresses,Dresses +862,51,You can dress the stop up or down..,This is my go to top during the not so cold winter days.. can't be dressed up or down..,5,1,2,General,Tops,Knits +1131,61,Cute and fun!,"I have been looking for a cute raincoat forever. they are usually ""just a raincoat"". when this raincoat arrived - i was happy to finally have something that was fun to wear. only issue is a little tightness across the shoulder area - hoping this will just slightly stretch over time. the rest of the raincoat fit perfect and i wouldn't go up a size because of the shoulder issue. i purchased a light pink tie belt to use with it so i can keep the front closed when it is raining. it looks really cute",4,1,0,General,Jackets,Outerwear +862,49,Basic with a twist,"This is a nice basic solid top with the extra appeal of textured detail around the shoulders and back. the v-neck is flattering. this top can work with many different outfits. i only wish my store carried the petite length, as the regular was too long for me.",4,1,0,General,Tops,Knits +918,49,"Long on sleeves, short in the torso. and - snails.","Well, it's the snails that really make this cardigan special. the buttons and the open work stitching are nice too, and the fabric is soft and warm. a note on the sizing though - the style runs short in the torso and long on sleeves. so if you are petite like me and considering buying the regular size because the petite is sold out - you'll be fine with the torso length but will have to roll or scrunch up the sleeves. that's not too bad because the fabric is soft and easy to push up at the sleev",4,1,0,General,Tops,Fine gauge +918,49,"Cute, but not best quality","First, i love moth clothing and own many, many of their pieces. this is very cute and i purchased it to go with the jules tank. the other reviewers are spot on with the cute factor and that it runs a little larger than the cropped sweaters. the snails are very cute, buttons run all the way down... +caveat: it began to pill after only a having it on a few hours - and i wasn't doing anything to cause extra friction- just sitting and lounging mostly. i noticed pilling on the inside of the arms when",3,0,5,General,Tops,Fine gauge +862,49,,"The green is terrific, and the pleat in the back makes the top flows nicely. great if you have some muffin top to hide (like me). and the details across the shoulders and back makes it more interesting than just a t. i'm concern about the quality of fabric. lately there's much rayon mix and they tend to pill or wear out and get holes after washing.",4,1,1,General Petite,Tops,Knits +840,38,Simply adorable!,This top is just adorable! so comfy and cute. i love the cut and how it goes a little longer in the back. i will be wearing this a lot!,5,1,0,General,Tops,Blouses +58,41,Thank goodness!,"I have been having the worst trouble lately finding cute, comfortable cotton undies...until i found these. these fit like a charm, are incredibly soft, and don't ride up at all. (sizing in spot on.) plus they have the adorable lace trim that makes one feel nice and girly. last summer there was a nyt article saying that comforable underwear was coming back in style -- yay!!",5,1,2,Initmates,Intimate,Intimates +862,56,,"I tried this on in the burgundy color in the store, and hoping it goes on sale soon! the fabric is not too thin like some of their tops. i run the gamut in retailer sizes , but lean towards mediums. this top fit beautifully in a small! it drapes nicely and doesn't hug the body, nor is it too flowy, looking maternity-ish. i am 5'4"" 140 and 34dd for reference . it looks like it will hold up well and the bit of lace makes it dressy casual. if it doesn't go on sale soon i might have to get it anyway b",5,1,2,General Petite,Tops,Knits +840,57,,"This is adorable! light and breezy. i felt it fit true to size leaning on the smaller size of a true fit. i am normally an xs/s and went with the small, fitting as it does on the model. it's a lightweight 100% cotton. not a lot of give. the v has a tendency to pull and probably will need a securing stitch. which was obvious when it arrived from another store. :(. i think wearing it with a cami is a great option considering it is flowy on the bottom and it is a thin cotton. overall great summer t",5,1,1,General,Tops,Blouses +862,39,Flattering top for all types,"Lovely top that seems to flatter all body types. fit is great, fabric is soft, style is lovely...great to dress up or throw on with jeans.",5,1,7,General Petite,Tops,Knits +978,35,,"Runs extremely large. i got an xs and am 5'4"" 115lbs and this would have fit someone who typically wears a size 10-14 and is 5'6"" and above. very disappointed with the size. the quality of the fabric wasn't great either. i wanted it to work so bad but just didn't!",2,0,6,General Petite,Jackets,Jackets +862,72,Odd fit,"I ordered this attractive top in my usual size and tried it on with great anticipation. it fit perfectly except across the shoulders, a problem i haven't encountered before. i've tried it on twice more (do i hope my shoulders will shrink?), only to see that it pulls across the top of the back as before. otherwise, it is so pretty and flattering that i'll be truly sad to send it back.",3,1,1,General Petite,Tops,Knits +840,21,Cute!,"The shirt is a very cute cut. it ""poofed"" out a little more than i thought and kind of looked like a tutu. but, i wore it with white jeans to work and got a lot of compliments!",4,1,1,General,Tops,Blouses +841,43,This blouse has lovely features,"The blouse is lightweight and is double layered, meaning a light layer over a lower layer. it's not bulky and not super flowy...just enough. i'm 5'1, a bit busty, and generally wear a m in retailer and this blouse fit great. it's figure flattering and not boxy. may be a tad short for taller women.",5,1,2,General,Tops,Blouses +1080,62,Fabulous retro style!,"The print and style of this dress is pure 60's. so fun! the black and white is especially striking. normally, i would wait a bit until the weather warmed up a bit more, but this dress is so cute and flattering, i just couldn't wait. the outer layer is actually sort of an open mesh. it's not extremely delicate, but could snag if you're not a bit careful. however, its the fabric that really makes it stand out so it's well worth it. i'd say the fit is true to size except if you're busty. i normally",5,1,8,General Petite,Dresses,Dresses +1080,57,Nice fit!,"I do love sheath dresses and this one is very adorable! +true to size and nice length. +the black and white is kind of a throwback to the 60s flower power era and really cute. +nice weight so feels substantial not the flimsy wrinkly type material; more like a crepe. +very nice!",5,1,0,General Petite,Dresses,Dresses +840,35,"Wide, not as expected, or pictured","Wow this is huge! i'm all for the tent-look with the right style, but this was absurd. i could have fit two of me into the width, and with the peplum style, extra width doesn't flatter anyone. the fabric is also so thin that it doesn't hang nicely, it kind of floats around the body. if you want a wide top, then this is perfect, but if you wanted something that hangs nicely, look elsewhere. i purchased a petite s, my typical size.",1,0,0,General,Tops,Blouses +1080,54,,This is a classic! not only is it reminiscent of a fun 60's swing dress but the perforated outer layer over a solid shift creates this modern edge to a reto style!!! love it!,5,1,0,General Petite,Dresses,Dresses +862,45,Great top,"I liked this top so much that i purchased it in two colors: green and wine. the top and colors are exactly as pictured online, the material feels great, and they fit nicely. the fit was true to size.",5,1,1,General Petite,Tops,Knits +1080,28,Fun and comfy,"I originally eyed this dress online - the lovely and comfortable weight of it can only be appreciated in person, however. it's a dress i'd be able to wear for hours on end.",4,1,6,General Petite,Dresses,Dresses +862,65,Love this tunic,"This tunic is wonderful, wash & wear - comfortable and classic - love the trim. + +many compliments on this top.",5,1,2,General Petite,Tops,Knits +840,60,So sad to send it back but...,"Wow was this top huge on me! i am usually a large, but lean towards xl when things don't have stretch. i sized up out of fear that my bust couldn't squeeze into a large (36dd) and i didn't want the buttons in the back to gape. when i took this out of the package (i purchased the blue) i knew right away it was way too big. looked like it could fit my husband. the sides poofed out so far, i looked ridiculous (if you look at the photos, the model is trying very hard to control the poofiness with he",3,1,0,General,Tops,Blouses +862,25,Cute top,"This top is cute and comfortable. i did order a size larger than i would normally wear. i usually wear a size small but i had to buy a medium (5'7"", 145lbs, 34b).",5,1,0,General Petite,Tops,Knits +918,36,Stinkin cute,Love this sweater! i almost passed it up on-line because i didn't notice the snails. the sweater is navy and the snails are black. they are so cute and such a fun and unique little accent. the material is a moderate to light-weight sweater. the length was perfect. i have inadvertently purchased a bunch of cropped sweaters this year - this one is not cropped - yay!! the sleeves are actually a bit on the long side. i sized up a little with the idea of wearing it over long sleeved tops. i am typica,5,1,3,General,Tops,Fine gauge +862,26,Okay top,"I ordered this top online in two colors, and kept the berry color. i liked it while trying it on. when i wore it an entire day, the top just didn't look that good. it wasn't flattering, and it focused on the bad areas despite being loose fitting. it didn't seem very flattering. i wore it for one day and am not happy with my purchase. i wish i could send it back but i already wore it. the fit just isn't very flattering. it is loose but focuses on the curves not in a good way if you are curvy.",3,0,7,General Petite,Tops,Knits +918,50,Better in person,"This sweater is way cuter in person. the picture online does not really show the adorable contrast of the snails to the rest of the sweater. also, it looks like they photoshopped out the fact that the buttons run the whole length of the front. really cute and soft (not itchy). highly recommend",5,1,4,General,Tops,Fine gauge +918,55,Too bad,"I just got this in the mail the other day. i was really excited and then crushed. one, buttons go all the way down and not what is in the photo. it takes it from hip whimsy to granny old lady sweater and then the minute i put it on it started pilling. it looked old and i wore it about 6 hours. i also used the roller lint remover on it and it pulled off one of the eyes on the snail. it is soft and felt comfy but look raggy and therefore it is going back. too bad but not what i bought and then not",2,0,0,General,Tops,Fine gauge +66,22,,"It runs large but thats okay, its great quality and super super soft! i love the way it makes you feel so comfortable. very disappointed the clip fell off.",5,1,0,Initmates,Intimate,Sleep +1114,35,"Unexpected color, fantastic coat","I bought this during a 20% off sale which made it even more worth the price. i would have purchased and kept it regardless, but just got lucky. + +looking at the pictures online, i thought the coat was going to be red. however; when it showed up it is more purple. i still like the color and did end up keeping the coat. + +i do think the buttons are sewn on well, but i was surprised it did not come with additional buttons in case one gets lost. these are very unique buttons so i can't imagine it woul",5,1,6,General,Jackets,Outerwear +240,48,Adorable one piece,Seafolly is my favorite brand in swimwear. i've collected a few over the years. i was so happy to find this print. the little umbrellas are so cute and fun. i am normally a size 8 in seafolly and this one ran true to size.,5,1,0,Initmates,Intimate,Swim +66,30,So pretty,This robe is such a pretty design. very flowy- runs slightly large in my opinion but was so cute i decided to keep it!,4,1,0,Initmates,Intimate,Sleep +1092,37,,I love this dress! i wore it to my friends bridal shower and got so many compliments! i can't wait to wear it again!,5,1,0,General,Dresses,Dresses +1095,46,Petite runs small/short,"I ordered this dress in the black p8. i am 5' 3-1/2"", 140lbs, 34dd. i am average length in the torso area.. when i tried it on i wasn't able to button the button at my chest and the belt came slightly above my natural waist line. the length of the dress hit above mid thigh. way to short for my comfort level. it almost looked like a babydoll dress or a tunic to wear over jeans! the material is good quality and has a nice slip lining underneath. another nice thing is that it has a hook and eye clo",4,1,30,General,Dresses,Dresses +1092,53,Absolutely adorable,"I purchased this pretty printed dress as soon as i spotted it on-line and ordered it in my usual size petite 6 (i'm 5'4"" 34d-27-35) and found it fit me tts and looks just perfect on. i immediately adored all the different prints on this one, the length, the sweet sleeves and waist band and think this will look so adorable with a jean jacket paired with a cute pair of boots this coming fall amd winter. it's a great transition piece that also looks really cute with sandals or clogs as well. also,",5,1,4,General,Dresses,Dresses +1095,48,Runs at least two sizes small,"This is one of the best potential dresses i've seen from retailer, but it needs a do-over. i'm usually a 12 in this style of dress, but i sized up to a 16 (the largest size) and couldn't even button the top. even if i had been able to do so, i would have worn it as a tunic. i am 5'5'' and the largest size would have been a racy mini skirt at best on me if worn as a dress. this dress is fit for only the tiniest and most small-breasted of people. that said, if the company were to try again ne",3,0,0,General,Dresses,Dresses +1114,36,I expected color to be different.,"This coat is beautifully made and for $800 i expect no less. however, i should have checked other resources prior to buying. the color on this website is nothing like actual color of coat. i was expecting a nice dark red/wine as depicted on these photos. however, it is a bright magenta/dark fuscia more on the purpleish side that does not go so much with my wardrobe (even though i am a pink-loving person haha). i had hoped to pair it with the same skirt shown here and the peony sweater that was i",4,1,4,General,Jackets,Outerwear +836,46,Love pattern,I love this top.the only thing negative is how thin and cheap the material feels.,4,1,0,General,Tops,Blouses +240,37,Love *almost* everything about it,"This suit is well made, and is so darn cute. i usually wear a 6, but i am a size 8 in this (8 us size, although the main tag is australian size. they send out based on the us size ordered). the only issue i have is that i have a long-ish torso compared to my size, so it's ever so slightly tight in the crotch, but not enough to make me send it back. i have small boobs, so the extra padding is nice. i'm and athletic 5'6"" and 130 lbs.",4,1,1,Initmates,Intimate,Swim +836,23,Elegant top,"I was very excited when this top arrived in the mail! it is so, so beautiful. i love the material and the brightness of the colors. it will be a perfect top this holiday season.",5,1,0,General,Tops,Blouses +1095,33,"Great idea, mediocre execution","I really wanted to love this dress, but i think the proportions are very weird. i'm 5'7"" and usually go for an eight in unstructured dresses and a 10 in more structured dresses. +it runs small throughout, and is too short for me to feel comfortable wearing to work. the front is nicely detailed, but the back looks weirdly forgotten and could use more detailing. i tried on three different sizes (8,10,and 12) and they all pulled weirdly at the chest. there's a little slip that goes with the dress, w",2,0,9,General,Dresses,Dresses +1092,35,Lovely dress,"This dress will be very useful. it fits loose, but it is suppose to. i plan to wear this to casual parties, out to dinner, and possibly a wedding at a winery. i weigh am 5' 6"", weigh 145 lbs, and ordered a medium.",4,1,5,General,Dresses,Dresses +895,56,Pretty and flowy,"A successful first date sweater. the cut is flowy so don't expect snug. the quality is average for retailer sweaters, i guess nothing will ever be pill-free? the detailing at the bust reveals a little of what lies beneath, which in my case was just a bra but in more conservative environs might have to be a camisole.",4,1,0,General,Tops,Fine gauge +1095,32,Had to buy it.,"I tried this dress at a store today and ended up ordering it online. i tried the red which is a beautiful, vibrant color. i wasn't sure how it looked on my skin tone though (pale like death), so i ordered the black. i do believe it runs small in the chest and shoulders. i am normally a size 4 in shirts, but the buttons were straining over my chest and my shoulders felt constricted. i tried the 6 and it was plenty roomy. for reference, i am a 32c with athletic shoulders. overall... + +pros: +-an",5,1,0,General,Dresses,Dresses +1092,24,Lovely dress,"This is such a cute dress, and i don't know why know one has reviewed it yet. its different and fun, i have worn it to work once and have gotten several compliments on it. i found that it does run a bit short so i wore it with leggings.",5,1,12,General,Dresses,Dresses +1095,35,Adorable dress,This dress is so cute and unique. i got many compliments when i wore it to an event recently and i know it will be a great summer dress. it definitely runs small and short on me. i am usually a 2/4 and needed a 6 in this dress.,4,1,0,General,Dresses,Dresses +1095,21,All-season perfection,"I bought this dress after eyeing it up for weeks - it's really stunning. the red is incredibly vibrant, especially for linen, and the construction is very high-quality. since it's linen, it feels crisp and light, and you can layer it up nicely with a pullover or roll up the sleeves for flat-out hot days. the rayon slip is a really nice touch, too, since the linen is fairly transparent. it really drove home the sense of quality for me. i bought mine in size 0-regular, which i found slightly big i",5,1,0,General,Dresses,Dresses +1095,34,Classy!,"So i tried this on in the store and ended up with the size 8 (almost could have gone with a size 6) even though i'm 135lbs 5'6"" and 34 c. the dress is beautiful! the color is exactly as pictured - brilliant red. the linen is nice and summery. it does make it billow just a tad in the back because of the fabric but not anything to complain about. if i could change just one thing on this dress it would be the length. it just feels a little short for being such a classic and classy dress; just needs",5,1,0,General,Dresses,Dresses +240,43,,,4,1,0,Initmates,Intimate,Swim +1095,29,Too short for work,This dress looked really nice on the hanger but when i put it on it was shorter than expected. i am 5'9 and it hit way above the knees. too short to be a work dress which was what i was hoping. might work better on someone shorter.,3,0,0,General,Dresses,Dresses +240,25,"Cute print, but didn't fit quite right","This was such an adorable print that even though it was a bit pricey i decided to splurge! alas, the fit just wasn't good. it didn't look good on me and bunched up in all the wrong places. sadly, i had to return it. i've bought swimsuits from seafolly before and recommend the brand due to the high quality, unfortunately this particular style just didn't look that good on me.",4,0,1,Initmates,Intimate,Swim +240,24,,"Love the suit! i ordered two sizes, and this 6 ended up being too small. i'm 35x27x36 and 34d, and there wasn't enough support in the bust. read a lot of mixed reviews regarding sizing on the seafolly suits, so i'm glad i got two. suit is flattering and i love the coverage in the bottom. some boyshort suits are ""cheeky,"" but these are not like that. only complaint is that while there is a pocket for the cups, they are sewn on top.",5,1,2,Initmates,Intimate,Swim +1095,49,Lovely dress,"Dress is made from a light-weight linen and is lined with a separate slip. high quality with nice details and tts. sleeves are average length. length of dress feels appropriate on my 5'8"" frame. hook-and-eye closure at chest area to keep buttons aligned is a quality detail. i think this is a lovely dress that can go from work to play.",5,1,11,General,Dresses,Dresses +1092,57,Cute style!,"Dress is darling and well made. however, it runs very large. i tried to size down but then it became a little short in xsp. would be great for taller slim women. the style is so cute. the online picture does not do it justice.",4,1,0,General,Dresses,Dresses +1092,46,"Gorgeous print, but unflattering fit","The model makes this dress look amazing, but it didn't translate that way on me. the print is really beautiful, i loved that, but the waist is huge and the skirt part is a-line and full, not streamlined like it looks on the model. if it was more like that this dress would be a hit. but, sadly, it's a miss. this is something your mom would love on you, but few others.",3,0,0,General,Dresses,Dresses +240,33,Confidence builder,I am 9 months post baby and still have some body self-confidence issues. i am just not ready nor do i think i want to ever wear a two piece again so i was looking for something that was still made me feel attractive. this swimsuit does the trick. makes me chest looks awesome and my tummy super flat. love this suit!!!,5,1,9,Initmates,Intimate,Swim +1094,28,Not at all like picture,"This dress is a potato sack! from the picture i thought it was going to be a cute drop waist dress but the tailoring is so weird!! and it's huge on me, so maybe it would be better if i sized down but again based on the tailoring i think not. also the fabric is strange, not at all what i expected. i'm so sad :( i was really excited about this dress.",1,0,10,General,Dresses,Dresses +1092,65,In love,I am 5'3 and tried this dress on in both a large and medium petite. the dress is supposed to be a lose fit but i found that i was swimming in the large but the medium was perfect. i bought it in a petite which is shorter for my comfort to wear alone but looks great with leggings and sandals for spring or with boots in the winter. the embroidery is beautiful plus it has pockets. first time i wore it i received tons of compliments.,5,1,0,General,Dresses,Dresses +1094,38,,"I think the description and image might be slightly misleading and is giving this dress a bad name...it's not a drop waist dress as indicated in the description. it's a swingy a line silhouette- more fitted in the bodice and swingy as it its bells at the hem- which i find flattering. another discrepancy is that the brand is hd in paris, not glamorous. however i happened to find an online return at my local store and liked the print so i tried it on and fell in love with the 60s retro vibe and pr",4,1,1,General,Dresses,Dresses +240,33,So flattering!,"I've been stalking this suit online for months and i saw it in store yesterday. i never knew what size to order because of the australian sizing. i went with my pants size (8) and it looks great. i carry my weight in my butt and thighs and the boy legs are flattering! i found the size up (10) was loose in the bust for me. go for it, it's the cutest suit ever.",5,1,3,Initmates,Intimate,Swim +1092,35,,This dress runs a bit small in my opinion. for reference i'm a 36/38 c and usually a 10. the medium is tight at the bust. the material is beautiful but it looks like a petite cut on me. the sleeve and overall length are too short and i'm going to return it.,5,1,0,General,Dresses,Dresses +240,35,Flattering,"I had the seafolly garden suit last year (same cut) and loved it. i decided the light blue color didn't look great on me so i decided to get this one. i found that the garden suit was cut smaller than this umbrella print one. right now i'm a 10 m and got the 12 in this, just like last time. i probably could've gotten the 10 but i'll keep the 12 for comfort. note: the leg holes are not tight and do not make upper thighs/butt squish out like you might imagine. try this suit!",5,1,10,Initmates,Intimate,Swim +1009,48,Unique fox skirt,"Love this gorgeous fox skirt. i typically wear either a size 4 or 6 depending on cut. i bought the small and it fit perfectly. i wore it with a black turtleneck sweater and black tights/boots. other colored tops would work, as well, due to the various flower colors around the fox - pink, yellow, blue, white or brick red. i'd prefer it to be a little warmer/lined.",5,1,1,General,Bottoms,Skirts +872,48,,"I love this tee, the fabric is very comfortable and the v-neck is not too deep for petites!",5,1,0,General Petite,Tops,Knits +1077,49,Favorite summer dress!,"I wore this dress yesterday and was complemented wherever i went and asked where i purchased the dress. i love the linen and the back of the dress is so flattering. i ordered a medium and could have gone with a small, which i usually never wear, so i would order a size smaller.",5,1,3,General Petite,Dresses,Dresses +1077,39,"Perfect, unless you're busty","This dress is incredible on - better than the photos. the only problem is i am too busty to wear it bra-less or with a bandeau. if you don't have that problem, this is the perfect spring dress.",4,1,15,General Petite,Dresses,Dresses +1077,34,Best purchase in a long time!,"I love everything about this dress. it is comfortable, classic, good quality and fits really well. there are two layers to the material so nothing is see through.the styling on the back is to die for. there is a subtle gold line that runs through the blue and white stripes. the first day i wore this i received 5 compliments while shopping in a single store! + +it is a bit loose in the middle, but i paired it with a skinny belt and it was the perfect fix. i can usually wear petite or regular. i p",5,1,16,General Petite,Dresses,Dresses +1006,33,Beautiful but not exactly as pictured,"This is a beautiful, well made skirt that flows over curves beautifully. my only complaint is that the picture shows the purple lining showing through the tulle and the waistband having a purplish hue. the skirt i received is completely black and the lining doesn't show through purple at all.",4,1,9,General,Bottoms,Skirts +1077,48,Perfect summer dress,"I purchased this dress in my regular size xs. i'd come across it several times at my local store but never thought much of it to try it on. . when i saw it was on sale i decided to take a chance. boy was i surprised. the dress is really beautiful.. the hints of gold reflect nicely.. the dress is comfortable and loose yet flattering. i received so many compliments on it. i am 5'1"" and the regular length worked for me.",5,1,0,General Petite,Dresses,Dresses +1110,48,Both my teen daughter and i love this dress,I was using my daughter's dress and ended up buying myself one as well. it is a versatile casual dress... very flattering. (and my daughter and i have different builds) i actually wish that they sold this in more colors.,5,1,0,General,Dresses,Dresses +1077,48,Delightful dress!,I've gotten many compliments with this delightful dress. colors ar light and just right for a summer day. so comfortable and has a nice inner lining. very light and comfortable.,5,1,0,General Petite,Dresses,Dresses +1077,40,Great for weekend,"I saw this dress several times and never try it. then i finally put it on. omg, i love it! it does run large. i am usually medium. but the small size is perfect on me i visually like the blue color. but the orange one is cuter on me. the length is great. i am 5'4''. it's right to my lower ankle. so i don't need to wear heel. the quality is very good. it's a great weekend dress.",5,1,1,General Petite,Dresses,Dresses +1110,65,"Beautiful, comfortable, flattering dress","I am petite and curvy and usually need a dress with a seamed waistline, so i was a bit hesitant in ordering this when it went on sale, but i trusted the other reviewers who said it was flattering to women with curves. they were right! the way it's seamed vertically at the waist makes up for the lack of horizontal seaming and the result is that it's incredibly flattering. the fabric is light enough for warm weather, though it may be too heavy for hot weather. it's soft and has a very flattering n",5,1,1,General,Dresses,Dresses +819,42,Gorgeous print,"It's the print that attracted me when i was in the store. it is beautiful, but i fear it demands darker skin and hair. if you have problems with yellow, then don't buy. i don't mind the transparency of the fabric because it is not noticeable if you wear a flesh colored cami underneath. because the fabric is light and the shape boxy, it is meant to be flowing, so i purchased my regular size. if you have small breasts you would probably prefer a smaller size. i only wish the blouse had been a litt",4,1,5,General,Tops,Blouses +1077,30,Perfect for summer nights,"I was very impressed upon receiving this dress. i'm 5'3, 102lbs and ordered xs. fit perfect. i am also a 32dd, so if you are smaller than a d or big c, the top portion might be a little big for you. love how it is lined so you could technically wear without a bra. i bought the tangerine and have gotten many complements.",5,1,0,General Petite,Dresses,Dresses +1060,53,Basic everyday joggers,"I just purchased these joggers on-line during the sale and bought them in my usual size small and they fit me tts. i'm 5""4"" and just bought the regular and the length on me is perfect. these aren't super thick or anything so i think they'll do just fine during the spring and summer months when i just need a pair of pants to put on really quick or just to lounge around in. i find these quite comfortable and like that they have pockets too.",4,1,1,General,Bottoms,Pants +1077,32,Mango is mine!!!,I love the cut of this dress! i have to be honest and say that i initially bought the blue color at the store and after falling in love i decided that i deserved to have the mango colored one as well after seeing my sister in it! the sizing is just a tab big but it works for the design. so i would say stick with your usual size. amazing pop of color especially for summer. the back design is gorgeous and the gold streaks running through it are wonderful. do yourselves a favor and just try it on!,5,1,2,General Petite,Dresses,Dresses +1077,39,Love - loose fit,"The back of this dress is stunning. i am usually a petite but could get away with regular. tried on xs (115 lbs, 30dd chest) and it was good length and not too low cut. colors are really fun, the mango one has a tiny bit of sparkle in one of the lines. flory and airy.",5,1,17,General Petite,Dresses,Dresses +1060,61,Great!,"I love these pants so much and have worn them so many times in a week! they are comfy and causal, but still chic and presentable. these pants run true to size and are great for so many things- running errands, working out, lounging around, being casual and cool, etc., etc, etc! after buying these on sale, and loving them, i knew i needed more and purchased two more pairs. i definitely recommend these for anyone who wants both comfort and style.",5,1,4,General,Bottoms,Pants +819,70,Runs big,"Thin rayon material. see-through and unlined. size down as this runs large. for reference, i'm 5'4, 124lbs size 26 in jeans. in retailer clothing, i wear sz small or size 4-6. i ordered this in small, but the body and shoulders are too wide and unflattering especially with the shorter length of this top. that is why sizing is key. i know it is meant to fit loosely, but you will have to order a size down otherwise you will look larger and the dark piping details on this top will not fall in the rig",3,1,16,General,Tops,Blouses +1060,39,Showstopper,"I wore these pants for the first time yesterday to two parties. before anyone asked for my name, they complimented me on the pants. my husband loved it, my friends loved it, and people i didn't know loved it. it's worth every penny i paid for it. i bought these pant to bring on my trip to italy later this summer.",5,1,8,General,Bottoms,Pants +1060,54,White openwork wide-legs,"Absolutely love the cut and design of these pants! fit so well and unique pattern at the ankle however, as is the case with many white pants, so disappointed when i tried them on at home and could see my underwear (nude color!) the pants are beautiful in every way except that they need to be lined! going back - may order the black since they're not likely to be ""see through!"" disappointing! was hoping to wear them to a dinner party!",3,1,6,General,Bottoms,Pants +1060,46,,Pretty white pants with nice design at the bottom of the legs. had to have them hemmed a little.,4,1,0,General,Bottoms,Pants +839,33,Wide ruffled pinstripe buttondown,"I did not have the issue that a previous reviewer did, there were ruffles on my shirt. the one thing i didn't know was how wide the top ran. i ordered my usual size 8 and it fit with no problems. i'm a 36b. the only thing is that in the model shot, the shirt is tucked into the pants and you don't get to see the full volume of it. even the model shot of the shirt from the back doesn't show the wide sleeves and body of the shirt. its not a big problem, since the shirt can be tucked but i will have",5,1,1,General,Tops,Blouses +872,64,Love this top,"Great, flattering fit, lovely light fabric, classy with an edge. getting another one the other color! stripes on the taupe one are navy -",5,1,0,General,Tops,Knits +1077,44,"Lovely, perfect","I am a shorter woman (5'3"") and typically a size large. i purchased this dress in a large. it is flattering and fits well. good length as well.",5,1,0,General Petite,Dresses,Dresses +872,42,One of my favorites!!,"I absolutely love everything about this top! i got compliments the first time i wore it. i do not find the fabric to be sheer at all, but perfectly lightweight for the heat of summer. the neckline and sleeves seem tailor-fitted for my body. i don't often think much about sleeves but these sleeves are the perfect length/shape to be incredibly flattering. they're in a sweet spot somewhere in between a cap sleeve and regular-length. the neckline is equally perfect and hugs my curves beautifully wit",5,1,0,General,Tops,Knits +872,44,Really cute but runs large,I'd wish i'd gotten this in a small.. i'm a true medium and its pretty big on me. that being said i still love it and will continue to wear it. the v part of the neck lays kind of funny after washing. i might try to sew it down.,4,1,0,General,Tops,Knits +1077,43,"Beautiful dress, not for me","I hated to send this dress back, but my busty and curvy figure looked bigger and rounder in this dress. sent it back. it is meant for taller and more slender women.",4,0,1,General Petite,Dresses,Dresses +872,44,"More petites & asymmetrical stripes, please!","This is already sold out in petites and the reason for this is asymmetrical stripes: this is the most flattering design for tops. horizontal stripes only look good on people trying to look bigger and heavier. do you know anyone like that, b/c i don't! vertical stripes, while slimming, generally look a little severe, modern, weird (occasionally great), while asymmetrical stripes knock 5lbs off a person. stock more asymmetrical striped tops, please!",4,1,0,General,Tops,Knits +1110,57,Many compliments about this dress!,"This is a great dress that looks better in reality than it shows on the website. the style is very flattering, fitting snug at the waist with just the right amount of flare. i am 132 pounds, 34dd and i bought a size 8 and it fit great. the material is soft and flowing and the cut was true to size for me. the first time i wore it a woman walked across the restaurant to tell me how much she loved my dress. this one is a keeper.",5,1,1,General,Dresses,Dresses +1060,56,Lightweight and pretty summer pants,"I bought these in white (not a harsh white, more soft-looking), and am very pleased with them. they are true to the manufacturer's sizing (i own another pair of pants from elevenses in the same size), which runs somewhat large (i'm 5' 5"" tall, weigh 135 pounds, and the size 6 fit perfectly). the back of the waistband is elasticized, so there's some give. they're long enough on me that they hit the floor; with heels, they're perfect. they look as pictured, but what you can't tell from the photo i",5,1,0,General,Bottoms,Pants +1110,21,,"This dress fit perfectly and as i am a bit curvy the style compliments my figure. it is a bit fuller in the bottom than the photo looks. also, i am 5'4"" and it is a right to the bottom of my knees which is also very complimentary.",5,1,2,General,Dresses,Dresses +1110,50,Bulky,I am 5 '5 and 119 pounds with an athletic cury body type. the dress wore bulky and ran large at size 2.,2,0,1,General,Dresses,Dresses +1110,46,Size down,"I first tried this dress in my usual size 4, and thought it was a pretty fabric but boring and not particularly flattering. i later read the positive reviews and the next time i was in the store i tried it in a 2, and it was so much better! very pretty shape. uiu might want to size down because the shoulders were set a little wide apart and bodice was gapping in my usual size. for reference, i'm 5'6"", 125 lbs.",5,1,2,General,Dresses,Dresses +1110,44,,"Twirly full skirt! +me: 5'6"", 130lbs, 34/35a-28-36. tried and pictured the size 6, a perfect fit with a bit of give in the bust for a larger cup size. +i'm not particularly curvy and i felt this added a waistline to me, i think this is an almost universally flattering cut. +material was soft and an easy wear. +simple enough that i think it will wear for quite a few years.",5,1,12,General,Dresses,Dresses +872,43,Fun tee!,"I love this tee. i am long waisted and so many tops right now that are on the shorter side look silly on me so i was happy to find this. i'm 5' 5"" 118, 34b and bought and xs. it fits perfectly. the asymmetry is darling and the stripes are perfect for spring. it is a nice weight and i felt totally worth the money. it looks great so far after three washes and hang dries.",5,1,1,General,Tops,Knits +1077,39,,"This dress is nice colors and well made but it's just not the style for me. it almost fits frumpy. i'm not sure that a belt would even make it look good. also being 5'8, it is shorter than i'd wear. i like at least touching top of the foot for a maxi.",3,0,0,General Petite,Dresses,Dresses +1110,68,,"So versatile +i tried this on in my usual regular 0, but it was way too long at the shoulders, large in the bust(i am 32b), and a tad too long overall. i ordered the 0p and it fits perfectly! can wear this year round and looks great with or without a belt. pockets would have made it even better, but still love it.",5,1,5,General,Dresses,Dresses +872,48,Cute top,"This top runs a little large. i should probably return for a smaller size but figure after i wash it, it'll shrink a bit. it's very flattering on and i really like the asymmetrical design. the only thing i don't like about it is that the fabric is a little itching without wearing a tank top underneath.",4,1,1,General,Tops,Knits +1110,42,Adorable dress,"The picture does not do it justice. this dress is beautiful on. it is fitted on the top and flares on the bottom. it is also a very soft denim. the person helping me at the store brought a sparkly belt that made it even more spectacular. truth is it looks great with or without the belt. it fits true to size (5'4"", 135 lbs and 34c and my usual size 2 was great).",5,1,6,General,Dresses,Dresses +878,61,,"Product is sheer, but definitely adorable w/ any jean product! wouldn't pay full price but so glad i got it on sale w/ extra savings!!!",4,1,0,General,Tops,Knits +1077,40,Gorgeous summer dress,"I bought this on sale and absolutely love it. i bought the xs, i'm 5'10, 145 lbs and a b/c cup and it fit well. i am considering sewing in cups, since i don't like using stick-on bras as much and none of my other bras work with the back. that really is my only complaint about the dress, everything else is great!",5,1,0,General Petite,Dresses,Dresses +1110,67,Cute..some considerations,"I like this dress. i did have to return one for a regular from a petite size 8. normally i wear a size 6 in retailer dresses but since i have a large bust (34dd) i wanted to account for the needed room. with the petite the bust was not so much a problem as the ribcage, which was too tight. it is still fitted in the regular size 8, but doable. the 6 would have been impossible. i am aware that i have a slightly larger ribcage so i was not completely surprised. the other reason that i did not give th",4,1,16,General,Dresses,Dresses +819,61,Flattering and feminine,"I was on the fence about another patchwork design peasant inspired blouse, but once i tried this on i fell in love. it drapes beautifullly, is not too short, and just feels pretty. for reference i am 5 feet 6 inches, 140 lbs. 36b and usually wear a medium in tops. the medium fits and flows perfectly, hiding all my mature woman problem areas. +i purchased quite a few items on the 40% off sale, and this is one of my top favorites. i love the versatility, just gorgeous for casual wear or dressy.",5,1,0,General,Tops,Blouses +1060,31,Classy with a twist.,Love these pants. very flattering. not much stretch. the rear waist band is elastic with minimal stretch and not visible to others. they are long but wearable with the right heels.,5,1,3,General,Bottoms,Pants +1060,36,Comfortable wardrobe staple,I just wore these and they were comfortable and didn't stretch our or become baggy throughout the day. i have three kids and am constantly moving. they're a nice in between weight and held up nicely. i have some from j.crew that stretch out and become baggy in the knees and backside and these didn't do that. i usually wear an 8/10 and i purchased a medium and they fit well. i would say that run a little big though.,5,1,8,General,Bottoms,Pants +679,52,Sexy,"This is a very sexy suit. it took some time to figure out how to put it on. it needs instructions, but it is well worth it.",4,1,0,Initmates,Intimate,Swim +1077,53,At last!,"I picked this maxi up in navy to go with my summertime capsule wardrobe that i will be doing extensive travel with this summer. this dress is well made and fits my frame in a size m perfectly (5'4, 125lbs, 34c). it is substantial enough to disguise any backside indiscretions and the halter style front does not expose the girls. i do wear petals with this dress to ensure that i don't put on a show especially in air conditioned rooms. this launders easily and doesn't look rumpled and wilted after",5,1,0,General Petite,Dresses,Dresses +872,43,New go to tee,Not tissue thin like most tees and easily can be dressed up to wear to work in a casual setting. i find myself reaching for this tee weekly! have every color! i usually avoid stripes however this tee seems to flatter and slim! love!,5,1,0,General,Tops,Knits +1009,32,Foxy!!!,I absolutely loooove this skirt! its just as depicted. super comfy and warm. got tons of compliments wearing it. its just adorable. the colors are really rich and the design if the skirt made it avery flexible to wear with different styles of tops and sweaters. highly recommend!!,5,1,0,General Petite,Bottoms,Skirts +819,55,Unusual and gorgeous,"This print combination is like an arts and crafts wallpaper sampler, and is simply beautiful. size down and tuck it in for the best look, but wear a high-waist bottom with it, since it runs a bit short.in the torso.i didn't find the same transparency problem of which other reviewers complain.",5,1,0,General,Tops,Blouses +1110,70,"Wow, a flattering shape for my young 70 yr self!","I am 70 years old and enjoy retailer so much for uniqueness. +this dress is not flattering in the photo..but..... +it is great on a curvy figure and i plan to wear it anywhere/everywhere i can....so flattering +from the bust to the smaller waist (though mine is definitely not small) but the skirt then +flares deligthfully. the fabric is not heavy, not too light ...just great. +easy going length...wear as is or add a crop, belt, etc.... + +again, the photo does not do this dress justice!!!!",5,1,17,General,Dresses,Dresses +1009,48,What i expect retailer to sell! amazing!,"Gorgeous skirt. received so many compliments. the colors are perfect to match with many tops/jackets/sweaters....as well as different shoes/boots, bringing out the colors. i unfortunately ordered a large thinking it ran small and the large is too big in the waist so i will try to have it tailored. i like my skirts fuller in the hip area. i hope retailer offers more of this type of item. just adore it! for size i am a 8/10 in bottoms but since the skirt looked slim with out lining i ordered a large",5,1,2,General Petite,Bottoms,Skirts +1110,38,Well made daily dress,I love love love this dress..it's a quality well fitting jean dress..that you can dress up or down..the top portion dies run small..so of you are busy you might want to stay away from this dress..,5,1,0,General,Dresses,Dresses +1060,40,Amazing!,"These pants are elegant and chic. great for tall women. wearing to a yacht cruise, can't wait! would have loved to wait for the sale, but i had to have them and i am very pleased.",5,1,15,General,Bottoms,Pants +971,27,What happened!,"I have never had a purchase go wrong at retailer, which is why i am was not hesitant to spend this much money on the blazer. however, the quality is very poor - it feels like it might fall apart after one clean. also, the buttons where not sewn on properly. i wear an xs and the size was a good fit, but the overall quality was not worth the price (or even close to it).",1,0,3,General Petite,Jackets,Jackets +1060,52,Love these but too long for petite,"Love these pants. ordered in petite .,love style, great fit but so long . +keeping but have to get hemmed 2 1/2 inches. +decided to order the black & green as well.",3,1,3,General,Bottoms,Pants +819,60,,"Size down as the top looks too big at the shoulders of you get your normal size. i don't find the material too see through. it's light, flowy and pretty. not your average boring looking top. unique.",4,1,5,General,Tops,Blouses +1060,40,White needs lining,"These pants are so adorable and fit perfectly (long enough even on my 5'10 frame) but i was forced to return because the white color is completely see through, even with nude panties. you can still clearly see them. so disappointed.",3,0,2,General,Bottoms,Pants +1060,45,Unhappy with purchase,I ordered this pants in white and black. i read the reviews and weren't that bad. i am 5'6 and 125 lbs. i got them in size small. they are way too big. the small size seems to be xl and they are way too long for someone who is maybe 5'8 or 5'9. i have to returned them. quality is ok looking on my opinion.,3,0,0,General,Bottoms,Pants +36,20,,,5,1,0,General,Bottoms,Shorts +819,67,,"Loved the fit and colors, but the fabric is very thin and see-thru. i tried a nude cami underneath and the cami was completely visible. it did not look appropriate for anything that i wanted to wear the top to.",2,0,18,General,Tops,Blouses +1110,39,Flattering all around,This dress has all the hallmarks of a classic. the fit of the bodice is form enhancing but modest and the flare is very feminine and swingy. i love the soft denim fabric though it smelled funny out of the package and i had to air it out. i am 140# 36dd and bought the size 8.,5,1,3,General,Dresses,Dresses +1009,45,,,5,1,0,General Petite,Bottoms,Skirts +819,50,Short but great with high rise pants,This shirt was a little shorter than i hoped but definitely too boxy if i had ordered up in size. i ordered xs based on reviews i usually wear a s. it looks great with higher rise jeans or dress pants.,4,1,1,General,Tops,Blouses +971,64,Your classic plaid blazer w/ patch elbows,"I have always liked this look so ordered my usual size s. fit is good & looks pretty much on me as in the pic - even the arm length works - not too long. i don't care for the placement of the top buttons which are just cosmetic. they dangle downwards showing more of the loop than the button itself. placement is not directly over the bottom buttons, which puts it in the lower breast area. mmmmm... not the look i want. looks unattractive. if i keep this, i will have to move the buttons more in lin",5,1,4,General Petite,Jackets,Jackets +1110,35,Maybe not great for a petite,"Was excited to receive this dress, as it had some great reviews. however, of the love was coming from the 5'5""+ set. as a petite, this didn't work well for me, and the fabric flattened me out in the bust in an awkward way. returned.",2,0,1,General,Dresses,Dresses +1110,38,"Comfortable, flattering dress","If you are curvy, this dress is for you. every details is flattering, from the seams to the fit-and-flare cut. true to size. this dress will easily cross seasons. love it!",5,1,2,General,Dresses,Dresses +1110,57,Great dress!,This dress is gorgeous. it is a perfect fit and very flattering.,5,1,0,General,Dresses,Dresses +1060,58,"Smart, stylish, can go dressy or casual","Love these pants! thank you retailer for making ""tall"" really tall! i am 6 feet and have to wear heals keep the pants from dragging- love it! i got the black- not 'shear.' they run just a tad small. i am a 4/6 in pants and the 6t just fit me. +i wear with a tank for casual, beach look; colorful silk top for a dressier look- very versatile. + +i just may have to buy this in the green. (i would get the white, but some reviews say they are pretty shear.",5,1,2,General,Bottoms,Pants +872,37,Great top!,Fits perfectly! i don't think this is too long and i'm a shorty. great style -- wish it came in more colors - i would definitely buy again!,5,1,0,General,Tops,Knits +872,42,Wash carefull,I love this shirt. i wore it once and it is so cute on - the problem came from washing. i washed once and made sure i washed on gentle. i took it out of the washer and hung it to dry and noticed that there was now a tiny hole in the body of the shirt. i am planning to exchange this and hoping it doesn't happen again!,3,1,0,General,Tops,Knits +861,33,Love this shirt!,"I ordered this shirt in both white and coral. i absolutely love the design and coral color. the white was a bit see through, so i returned it. it would be cute with a cami under, but i just wanted something that did not require an extra layer. overall, it is a flattering fit and i love the detail on the back.",5,1,0,General,Tops,Knits +159,63,So close...,"This is a fantastic sweater--really soft, great details. but it's huge. i'm generally between an xs and a s at retailer, and most always an xs with pure + good. but this time even the xs is huge! i wish they offered this one in an xxs. i love it so much that i may keep it anyway? it's really comfortable and i love the style. looks decent with my arms down (like the model's pose), but when my arms are lifted out to either side, it really looks huge. i'll have to think on this one.",3,1,0,Initmates,Intimate,Lounge +861,64,Classic tee with flirty details,"This shirt is incredibly soft! i was drawn to the style based on the feel of the material and the cute tie up detailing in the back. definitely size down. the sleeves were a little snug, but sizing down will help with the length and the bust. my only problem with this shirt is that if you bend over, anyone can see down your top. so be aware! otherwise, the top is great and perfect for summer.",4,1,0,General,Tops,Knits +1028,55,The perfect jeans!,"I am obsessed with these jeans! i have them in 3 washes and hardly ever wear any of the other jeans in my closet now. they are truly the perfect skinny jeans. you can dress them up with heels and a cute top, or down with a slouchy sweater and boots, or even throw on with a simple tee and flats. i love that they are low rise, as i am short waisted, and often find the front rise too long on many styles. the backside is also super flattering, and the back pockets are the perfect size and shape...no",5,1,4,General,Bottoms,Jeans +975,36,Nice wardrobe staple,The material is soft and the length is great. you can wear it with short or skinny jeans. the only drawback is the color because it is so light. it is pastel so if you like pastels it will be great for you.,4,1,0,General Petite,Jackets,Jackets +819,33,"Looks like pajamas, tight in the underarms","I really liked the look of this top online, but when it came i had a couple of issues with it. first, when i tried it on i found the underarms to be a little snug (i normally wear a 10/m, and that's what i ordered). it makes raising my arms tough, and as a teacher, i need to be able to lift my arms above my waist. secondly, my husband's first reaction was that it ""looks like pajamas."" the abstract floral/stripe gets a little lost. + +on the other hand, the color palette is very pretty and the qual",3,1,0,General,Tops,Blouses +936,69,Soft & warm,"Beautiful medium weight duster; it looks just like on line photos! +my store did not have this duster so i ordered on line. i usually wear a medium top, but sometimes a large. +i'm 5'7"", 140 lbs, and i don't like my tops tight. +i ordered this duster in xl because i like room in my cardigans; i could have gone with a large. +i have to roll up the cuffs of the sleeves, but i like to do that anyway. +this sweater duster is soooo soft and warm! so comfy! very stretchy with no closures on the front.",5,1,0,General Petite,Tops,Sweaters +844,49,Cute but...,"I ordered this top because i liked the look in the back, however, the top i received looks nothing like the back. online it shows that the back has elastic & is gathered. also online it shows thin straps (that look like a bra strap) but my top has no thin straps & no elastic~ extremely odd!! i called customer service but the lady i spoke to didn't have any information or complaints about the top. i'm holding on to the top because it is cute from the front, but i was really wanting the back to lo",3,1,9,General,Tops,Blouses +855,26,Love this but there are some flaws,"I absolutely adore this top. the design on the front is super bright and beautifully done, so beware if you do not like bright colored patterns. i normally wear a size medium and bought a large in this shirt because of reading other reviews, i am glad i did so. i have broad shoulders and muscular arms, and i believe a medium would not have fit my arms and shoulders. however, it is a little boxy in the torso area because of the extra material. therefore, i feel a large feels like a medium in the",5,1,0,General,Tops,Knits +877,34,New favorite wardrobe staple!,"Yes, $48 may feel like a lot to pay for a tshirt, but this is one is worth it -- i can wear this with *everything*! i bought this in grey, and the quality and style are just right to pair with a high waisted skirt or black skinny pants to wear out at night, or wear with regular jeans and a cardigan during the day. one of the best retailer purchases i've made in a while!",5,1,10,General,Tops,Knits +844,19,"Cute design, poor quality","For starters, the back pictured on the website is not true to the actual back of the shirt. the small traps are not there and it isn't gathered in the exact same way. the big bow is adjustable and overall i really loved the fit of the top, but the difference in design is not something i would expect from retailer. my shirt also got a hole in it along the seam in the back after washing once. although i liked the look of the top, the quality is not what i'm used to from retailer.",3,0,4,General,Tops,Blouses +862,35,Great top,"Love this top, the flutter sleeves are really pretty and give the top a bit more pizzazz than just being a regular tee. it makes it easy to dress up or down. the length is great, not super long but not too short. i ordered a medium and it fits well, not tight and isn't baggy, the material allows it to float away from the body a bit and doesn't feel stretched over my belly :) or anything. nice silky weight.",5,1,28,General Petite,Tops,Knits +278,29,Love the design,"Love the design of these pants and they are super comfortable. perfect for running errands but managing not to look like you just rolled out of bed. bought the regular m size (usually i want petite because i'm 5'1"") and while they are a little long they still fit relatively well",4,1,0,Initmates,Intimate,Lounge +862,57,"Colors not great on me.,..","I bought three of these tees. i kept the turquoise one only though. the color was pretty - a little drab but not too bad. + + i love the style., the fabric is so soft and the one i wore was super comfy. the sleeves are cute without being too dramatic (like the ruffle sleeve tee - the sleeves were kind of ridiculous on me) + +now - the cons - the colors are pretty drab. i normally look better in more vibrant colors. the ""red"" i bought made me look like a corpse. it's not pretty at all. can't re",3,1,0,General Petite,Tops,Knits +862,30,"Very soft, comfortable top","I just got this top in store today. all the colors were ""heathered "", pretty casual colors. the top is extremely soft and i would say true to size. love the flutter sleeves that give nice feminine details. i hope it doesn't shrink in the wash and wears well! also, i found that the purple color seemed to run slightly smaller than the others? kind of odd, but i thought worth mentioning:)",4,1,9,General Petite,Tops,Knits +844,39,Cute but,"It was a little on the thinner side (fabric), a little more sheer that i would have liked. i actually prefer that it doesn't have the straps in the back, i didn't order it before until i read the reviews. fit loosely. the shirt is comfortable, and the back is beautiful (love bows), tbu the front was just ordinary. for the price, even on sale, i didn't feel i absolutely needed it, but if you are looking for a hite tank, it is pretty cute. (ivory, not pure white). + +xs: 115 lbs, 60 dd.",4,1,2,General,Tops,Blouses +861,39,Cute enough,"As far as t-shirts go, this one is fun, i love the lace up detail in the back. the xs regular fit nicely (115 lbs, 30dd), the shirt flares out (swing), so it can be a little much on the smaller gals, but it was ok enough on me that the stylist decided to try it on too. the orange color was pretty, but i decided to pass as i have a lot of orange tops... and that is the color that was most flattering on my skin. amterial is on the thinner side and a little tiny sheer, must be the trend...",4,1,10,General,Tops,Knits +861,47,Doesn't fit well sized down,"This tee was meant to be loose and swishy, but as it runs large, sizing down means the sides come up really high, as they curve a good 3-4"" higher up. so your waistband is exposed, and it just doesn't look nice:( returned an xs and small.",3,0,0,General,Tops,Knits +862,32,Cute shoulders and pretty color,I bought the mauve color and it's very pretty. i felt as though sizing up was a better choice. i'm usually an xs or a small and i went with the small. i liked the length of the small better. the shoulders add a cute look to it.,5,1,0,General Petite,Tops,Knits +278,48,,"Cure pants --- just bought them --- +they look black but the description says ""blue motif"" - does anyone else have them and know +if they are black or blue?",5,1,0,Initmates,Intimate,Lounge +862,74,Great tee!,"I bought the lavender in my normal large. the fabric drapes wonderfully and does not cling to my midsection. the texture of the fabric is much more interesting than the photos online show. there is beautiful shimmer tot he heather in the color. in my lavender shirt there is pink/gray/lavendar/white/silver depth to the fabric. i plan on getting at least two more colors. + +i recommend washing all shirts like this in a nylon bag in the machine, then line drying. i have done this for years with al",5,1,1,General Petite,Tops,Knits +936,61,Expectations met!,"Wow, this sweater is, as other reviewers have said, perfect weight and the colors are vibrant and will work well with fall colors! i'm 5'11"" so i'm always hoping the length works and in this case it does! i am very happy with this!",5,1,0,General Petite,Tops,Sweaters +855,43,Great piece!,"Agreed that the pictures do not do this top justice. it's got shiny threads woven in the fabric and gives off an iridescent, colorful sheen. it can be dressed up or down, worn with a number of various styles - jeans, dress pants, skirts. the back adn arms are a tweed sweater knit, the front is an unforgiving acetate - dry clean only - hand wash will ruin this piece! i normally wear a small, but it was tight in the chest (34c) so i went with a medium and it worked fine.) no stretch in the acetate",5,1,1,General,Tops,Knits +975,57,"Fun, versatile piece","Very well made and comfortable with nice finishing touches and fabric. looking forward to wearing it many different ways either with jeans, pants or long dresses. i'm 5'1 and petite sizes were out of stock so i chose small regular which looks great, not too long so i won't have to shorten.",5,1,0,General Petite,Jackets,Jackets +861,46,Very poor quality,"I ordered this top in white along with the meadow rue lace sleeve top. while they are the same price, they aren't even close in quality. this top is one of the sheerest tops that i have seen. the trim, pocket and the lace-up tie are made from sheer type material that was twisted and didn't lay right, and the tag sewn inside, was sewn with red thread and showed through, very visible. i don' t think it would hold up after many washes. i returned this one and ordered another color in the lace sleev",2,0,1,General,Tops,Knits +861,42,Perfect tee but beware of blue!!,"I purchased this tee last week in white and love it! as soon as i saw that it was on sale i ran to get a price adjustment and to pick up a few more colors! i had every intention to grab up the blue today however i tried on four larges and all were cut way shorter than the other colors. i ended up purchasing the red which fits exactly as my white one does. perfect light weight, easy, but adorable tee for summer!",5,1,1,General,Tops,Knits +1003,29,"Pretty fabric, ok fit","This skirt is a really beautiful print and made of a lovely silky fabric. i didn't have the ""see-through"" issue that the other reviewer mentioned, my main concerns were the length (i'm 5'1 and it almost goes to my ankles) and that it poofs out a little right below the waist band. i'm between a small and a medium and went with the small. it fits but i wonder if it would lie flatter and be more flattering if i had gone with a medium instead.",4,1,0,General,Bottoms,Skirts +936,40,,"Perfection. effortless cool, and the colors are much more vibrant and gorgeous in person. endless options. you know a sweater must be a dream if you end up buying it when it's still 90 degrees outside. runs true to size---the medium fit with room to layer underneath.",5,1,9,General Petite,Tops,Sweaters +855,31,Really unique top,"Really interesting, beautiful colors. i found it to be short, even in the regular size (and i'm 5'1 with a short torso). wish the fit was slimmer, but i could see it working with jeans, or being stunning with a black ball skirt.",4,1,0,General,Tops,Knits +877,53,,Bought all colors and each one is unique in its beauty. material is thicker than most thin tops today but not too thick for the summer. i wear size 12/14 and the xl fit with room to spare. i bought larger in case of shrinkage.,5,1,4,General,Tops,Knits +861,41,Cute spin on a basic tee,"It's thin, very. but i were a cute scrappy athletic type bra underneath and it's so cute! +it's a stink top, i pick a spot to tuck in around the from and let the rest flow. +aside from being a swing top, it runs large. i have 2 in xs and i'm a 34dd and i still have room. +i have it in faded red/pink and white and am buying blue too, love it!",5,1,5,General,Tops,Knits +862,49,Grabbed it in the store!,"I didn't pay much attention to this shirt on the website...when i was in the store yesterday though, i grabbed the green color because it's so pretty! i went back home to see which shirt this was on the website and was surprised. the picture here really doesn't do it justice. it's very soft, has a beautiful and flattering necklace and the flutter sleeves hang nicely rather than puffing out (like snow white...which isn't my goal!). also, because the sleeves drape nicely, you could wear it under s",5,1,12,General Petite,Tops,Knits +855,35,Not as expected,"I ordered this in a l online, and wasn't a fan when i received it. the colors are pretty bright, but they also look cheap in my opinion. it also had an awkward fit, because of the material there is no give at all, it was really tight on my chest (36d) for reference. and it was also pretty short, and i'm short! it barely hit the top of my pants...and i'm 5'2! back it went.",2,0,0,General,Tops,Knits +861,69,,"I absolutely love this top. it can be worn with shorts or jeans, dressed up or down. it fits perfectly, i am broad on top so i ordered a large. i bought it in white..i wish they had more colors. love it.",5,1,0,General,Tops,Knits +936,53,Colors are very pretty...,"This duster is very nicely put together and is mid-weight. i'm not sure it's worth this price point but it's not cheaply made, either. the colors are as shown on the website to a 't'. the length is also as shown. i am 5'5 142 lbs and 34d and the small is perfect. i think if one is considering multiple layers underneath a medium would serve the purpose nicely but the small will accommodate a blouse or tee underneath and is just perfect. colors are dark teal, salmon and gold. this is a three seaso",4,1,0,General Petite,Tops,Sweaters +861,45,Stylish and comfortable,I bought this top in every color. the fit is so flattering and just flows so nicely - not too big. love!,5,1,0,General,Tops,Knits +278,36,Love these leggings!,"I saw these in the store and was smitten. ordered online and have not been disappointed. love the pattern, the feel, and the fit. comfortable, fun and interesting. the regular length ones are definitely full-length on me but not too long. i might have gone with the petite length except that they didn't seem available, but am perfectly happy with the regular length.",5,1,1,Initmates,Intimate,Lounge +862,66,Sleeves a plus,If you are self conscious about your arms and want a tee that has style then this is the one. soft fabric with a flutter sleeve makes this top so flattering. i purchased the turquoise and will purchase other colors. it's flowy comfortable and a must have!,5,1,3,General Petite,Tops,Knits +278,32,Very cute,"These pants are great, super cute and comfy. the price is too high but i do love them.",4,1,2,Initmates,Intimate,Lounge +855,49,"Pretty color and pattern combination, boyish style","The colors and textures on this top are fun. however, the boxy shape isn't very flattering and poofs out a bit around the belly. maybe it would look a bit more feminine on someone with a curvier chest. i would size up if between sizes because the top part around the arms is not very roomy. i tried it on at the store but decided to pass because the xs was a little tight around the arms but the s billowed around the belly too much. still a cute piece if it works for you fit-wise.",4,1,0,General,Tops,Knits +278,27,Original workout leggings,"These leggings were everything i expected them to be. they are well made, and the material is thick enough that i can wear them outside in the colder months of the year. the pattern on the website is accurate, and the waistband is comfortable and flattering. would definitely buy again!",5,1,0,Initmates,Intimate,Lounge +907,31,Easy to wear,"This top is very easy to wear. it's a great, versatile, and unique piece. the textile is really soft and i found, quite special. it is pretty lightweight and the sleeves have some great stripes of more sheer fabric.",5,1,0,General Petite,Tops,Fine gauge +861,41,,,5,1,0,General,Tops,Knits +936,70,Beautiful duster,I was fortunate to buy one of the last petite mediums in this style! the knit is soft and comfortable and doesn't seem likely to snag. there are a variety of stitches through the upper areas which add subtle differences. the colors are fantastic. this will be great for the cooler months. it looks fabulous with denim.,5,1,4,General Petite,Tops,Sweaters +861,41,Short and wide,"I ordered this in the blue, it's a beautiful shade of blue. love the lace up detail in the back, but the size small was just short and very wide. i understand it is a swing top, but this was not flattering on me. i'm short waisted, 34-d, 5'3, 125 lbs. i'm sure it would be cute on a very thin person.",3,1,5,General,Tops,Knits +862,56,Soft and stylish,"This tee fits true to size, not oversized. the material is super soft and the colors are delicate. the armholes don't show your bra which is hard to find. nothing bad to say about this top except that my size was sold out in every color but lavender (which was lovely!).",5,1,0,General Petite,Tops,Knits +278,27,Statement leggings,"I am in love with theses! they are incredibly comfortable and flattering. i have an hourglass figure, and they hug my hips perfectly. they perfect for the gym, but also look great with a tunic and booties for fun weekend wear. good + pure are my new go to legging brand. i'm going to order the solid black and other patterns retailer has.",5,1,0,Initmates,Intimate,Lounge +830,47,Retailer at its best!,"On any given day, i can usually find tons of stuff i like at retailer, but every once in a while comes an item that is extra special. + +it has adorable details, lovely print, fits beautifully and can't be found anywhere else. oh, and the quality is good. + +this top is it for me! + +i love the print, and the sleeves remind me a bit of a kimono except that this top's fabric is smooth and flowy. + +i tried the top in the store in a small, and i felt lost in the fabric (i am 5'4"", 115# and small on",5,1,4,General,Tops,Blouses +975,32,,Just purchased this on sale. will be perfect for summer on those days you wear dresses and don't want your skin to touch the subway bench! love it!,5,1,0,General Petite,Jackets,Jackets +855,36,Unique statement sweater,"This sweater is so unique. not for the faint of heart but it's beautiful. hubby thought pattern looked southeast asian inspired. the colors are saturated, vibrant. love the raglan sleeves and the tweed on the sleeves and in the back. the front material is slightly stiffer. i feel like i have a little bit more bulk in the stomach area than i want but i'm willing to overlook it. will be a great sweater for the holiday season. wear it with a skirt, jeans, skinny cargos. endless possibilities.",5,1,0,General,Tops,Knits +278,47,Pretty print!,Adorable print! just picked these up in the store yesterday! the print is so pretty and it caught my eye! surprisingly they fit in my usual size for workout pants!,5,1,1,Initmates,Intimate,Lounge +862,31,Just okay,"The sleeve detail is cute and well done. the fabric is nice quality, but the body of the shirt really doesn't have any shape.",3,0,13,General Petite,Tops,Knits +861,63,Very sheer,"Super flattering, a great length for me (5'9"") but very sheer.",4,1,2,General,Tops,Knits +877,32,"Love style, need different color","I love this tshirt, but the speckled grey looks more like roof shingles in person. i'm going to try to exchange it for a different color.",4,1,5,General,Tops,Knits +861,47,Second time's a charm,"While shopping with my daughters, i bought this tee in white. i immediately felt guilty for spending too much on a white tee that was thin and see-through enough that i'd need to wear something underneath. i returned the white, but then retailer had a sale weekend, so i ordered the blue with a discount, so less guilt and the color is beautiful. i don't need to worry about wearing anything underneath - the fabric is very thin and super soft and feels so nice.",4,1,0,General,Tops,Knits +844,51,What a disappointment,"I should have read the reviews first before ordering this top/!. ***buyers beware**: you will not get the same top delivered to you, as is shown in this picture. the top i got delivered does not have the little straps at all, and while there is a bow in the back, the back sides do not come together the same to form the bow. i hate to write a bad review, but come on retailer! i'd never expect this from you. it looks like any other peplum white top, not something special like the picture is o",1,0,0,General,Tops,Blouses +830,41,,,5,1,0,General,Tops,Blouses +862,34,Best t-tshirt ever!,"I don't normally write reviews, but i love this shirt! it's sooo soft and hangs perfectly. not to mention it takes what could be a boring t-shirt and makes it anything but that with the cute flutter sleeves. it's beyond comfortable. i purchased one and went back immediately to get another! i can tell these will be some of my go-to tees. plus, they are a steal on sale! i am 5'5, 135 and medium is perfect.",5,1,0,General Petite,Tops,Knits +830,38,Very pretty blouse; sleeves impractical,"I normally wear an xl, but could only find this instore in size large. the blouse fits nicely, but i think it would come down a bit lower and also be a longer blouse if i would have purchased it in my usual size. the blouse itself has a nice drape to it. the black 'railroad tracks' look very pretty in person, and add a nice detail. the only complaint i have with this blouse is the sleeves. the enormous bell sleeve feels like a costume. but for a nominal fee i had the sleeves shortened to a ruffl",4,1,0,General,Tops,Blouses +278,56,Leggings,"These are very well constructed, medium weight, besutiful leggings.",3,1,0,Initmates,Intimate,Lounge +877,26,Best basic tee,I bought this shirt in blue (because the store was out of gray and i had to have it right then) and it is my favorite. it is comfortable and durable. i also appreciate the length of the shirt. it is long enough for me to not worry about putting my arms up. it is an overall great buy. i want one in every color.,5,1,3,General,Tops,Knits +862,36,Cute - don't size down!,Cute shirt. i thought from the model that it would be big so sized down. it's more snug than i expected so will send back and re-order in normal size. might order 1 size up and compare.,5,1,20,General Petite,Tops,Knits +877,36,,"Really fantastic shirt. ordered multiple colors and will keep them all. the gray especially looks a bit boring online, but is gorgeous in real life. it has different shades mixed together and is really pretty. neckline is interesting. wish the front was a tad shorter, (i'm 5'4) but don't think petite will work. really, really great shirt.",5,1,7,General,Tops,Knits +868,36,Top still too low on me,"Like the idea of this shirt so much. but the neckline was still way too low- the top of my bra was visible. wishing the under layer really covered as no way i'm going to another layer to an already layered shirt. might just be my body type, so might work for someone else, but sending back.",3,0,1,General Petite,Tops,Knits +1022,41,Like butter,These leggings are so comfortable and luxurious. when i opened the package i knew i was in trouble. they are comfortable and beautiful. a perfect piece for any wardrobe.,5,1,0,General,Bottoms,Jeans +861,37,Lovely simple staple,"I adore a well made and well fit tshirt. t.la always delivers! this one is no exception. fun, swingy and light. the tie on back is a fun little addition and the length is perfect. i'm 5'9 and always prefer longer tops. the swing in this one gives it a great length. love the colors but decided to stick with basic white. i'd love this in black too! highly recommend!",5,1,0,General,Tops,Knits +844,66,Nice top,"Like the other reviewers experienced, i received my top in the mail, and it does not have the straps as shown in the online pictures. not to say that the top is not attractive, though, and i'll be keeping it. very comfortable and cool in the triple-digit heat in my community.",4,1,0,General,Tops,Blouses +278,33,Worth the wait!,"I first saw these in store, but decided to risk waiting for them to go on sale and no regrets! they are a great high quality and the print is exactly what i hoped it to be!",5,1,0,Initmates,Intimate,Lounge +855,30,Even more beautiful in real life,"The colors are really lovely--bright and vibrant. the sleeve and back fabric is comfortable and breathable. it is dry-clean only because of the brocade, but definitely worth it! i'm usually s but preferred the xs fit.",5,1,0,General,Tops,Knits +877,28,Disappointing,I loved this t-shirt when i first tried it on: a good cut--not too drapey or fitted. but then i washed it (laid flat to dry) and it shrunk so much that it's unwearable now. so disappointing.,1,0,0,General,Tops,Knits +862,40,Fabric too delicate,"I bought this shirt in 3 colors. soft, comfortable fabric, as other reviewers have mentioned, and nice detailed sleeve. i am gravely disappointed in the fabric quality since after wearing this one time with a necklace (as shown in the picture) it developed tiny pulls. i should mention that it was a very plain necklace, nothing sharp, pointy etc. i will most likely return all 3 shirts.",3,0,5,General Petite,Tops,Knits +861,32,"Cute, breezy, comfy","Great summer shirt, loose and casual. it's pretty flowy and not form-fitted at all. i almost always wear a petite xs in retailer, and that is what i got (i'm 5'4 and 125 pounds). fits great- loose and swingy, but is big (i like this). retailer, please get/restock petites for the pink color!",4,1,5,General,Tops,Knits +278,76,Feminine & perfect for spring,"My favorite leggings. they are feminine and perfect with a long tee. the colors are vibrant, the material is high quality, plus they're comfy! i ordered an xs. i'm 5'4"" and 115 lbs.",5,1,0,Initmates,Intimate,Lounge +975,35,,,5,1,0,General Petite,Jackets,Jackets +877,25,,One wash wonder...i'm a s to m and went with a m but could have gone with a s with ease. after washing it was way shorter. it shrunk more than a whole size in cold water! i assumed everything came preshrunk but sadly disappointed. great for one wear.,3,0,1,General,Tops,Knits +855,46,Colorful sweater,Great sweater for any occasion. may be dressed up and/or worn with jeans. very versatile. love that it is short sleeves. size is true to fit.,5,1,0,General,Tops,Knits +1110,39,Forgot to review,I don't know why i never reviewed this beauty. i love the colors and pleats and contrasting embroidery. i'm busty,5,1,0,General Petite,Dresses,Dresses +855,29,Great statement piece,"This is a beautiful and comfortable top. the brocade front panel is a nice take on a traditional pattern but in bright colors with a metallic sheen. the knit sleeves and back are a stretchy, nubby complement. overall, a great piece and perfect for the holidays.",5,1,0,General,Tops,Knits +936,64,Great sweater & color!,"This appealed to me online & it came in petite. during the promo in july i decided i shld order the petite small while they lasted although way too hot to even consider wearing until fall. glad i did. i am short & the regular length wld be a bit too long. great color & quality. not too thick or weighty. like that it's a cotton blend. will go well with the many skinny jeans/cords/leggings i have. love the blue. now i have to wait a few months to wear it! 5'3"", 117# & usually wear a size small in",5,1,1,General Petite,Tops,Sweaters +278,55,Great fit,"The colors on these leggings are very nice and the fit was fabulous. the waist is high enough to hold in a slight ""muffin"" top and the control in the fabric is just right. i received several compliments on them and hubby really liked them.",5,1,0,Initmates,Intimate,Lounge +861,47,Great top!,Love this top...bought in 2 colors...white and the orange. fun change to regular t-shirts....sized down because its flowy.,5,1,0,General,Tops,Knits +278,36,Just what i wanted,"These pants are just what i wanted to work out in- something bright, cheery, and feminine. they're super comfortable and fit perfectly. i'm typically a 2, so i ordered the xs, and they are just right.",5,1,1,Initmates,Intimate,Lounge +936,41,Quality sweater,"This is a beautiful sweater with vibrant colors. it is versatile and can be worn throughout the year, it runs true to size and has become one of my favorite sweaters.",5,1,5,General Petite,Tops,Sweaters +855,26,Love it but runs small,"I love the print and design, the photo does not do it justice. i fell in love with it in the store but could not find my size. i ordered my size online but it was still small and short. it came up to my waist, and was tight in the shoulders and waist. i really wish it wasn't so small. i love love this top, the colors are vibrant and shiny, totally my style. i highly recommend it if it fits.",4,1,0,General,Tops,Knits +862,37,Great summer staple,"Love this top! i have it in the green and i am tempted to go and buy it in the other colors! it is a simple, but cute top that is easy and comfortable to wear. a little dressier than a plain tee.",5,1,1,General,Tops,Knits +830,47,Perfect peasant top,"This caught my eye in the store because of the beautiful bell sleeves so i had to try it on. i tried on an xs and small to see what fit better. for me, i am 5""3' and about 120 lbs, the xs fit better. i usually do take an xs in tops. i wore it out recently with a pair of distressed jeans and it looked great. as with most of the items you see online it is always better to see it in person as the pictures do not do it justice. the material was nice and flowy. i did not feel the neckline was too low",5,1,2,General,Tops,Blouses +862,48,"Lovely, buttery-soft and oh-so flattering","I purchased the blue (a bluish gray), size medium. + +the entire top, including the fluttery sleeves, drapes wonderfully and is sooo soft. i wish i could wear this top/this silhouette every day! it's versatile enough to do so, if only the other colors were flattering to my coloring. + +sleeves: i'm thrilled to find a shirt that fits/flatters my proportional curves and sports sleeves that don't grip my biceps. often, i must choose to fit my arms or fit my torso, unless i want the additional step",5,1,1,General,Tops,Knits +1003,61,Feminine skirt,"I really like this skirt but unfortunately there is no lining, so it's a bit see through under the light. also there is no hook at the top of the zipper to secure the skirt. i just think that with this kind of price, the skirt should come at least with the lining. otherwise, it's beautiful skirt, flowy and very feminine.",3,1,6,General,Bottoms,Skirts +938,23,,"This tunic is amazing. i'm not usually one for turtlenecks but it's not too tight around the neck and very comfortable. i love the versatility, it can be worn with pants/leggings or a skirt, you can layer it with a shirt or blouse underneath or throw a jacket over it.",5,1,1,General,Tops,Sweaters +861,59,Perfect top,"I was thrilled when this shirt arrived. it is as cute in person as in the catalog. it's soft, it fit perfect, and it looks great with shorts and pants. it will be my ""go to"" shirt this summer.",5,1,2,General,Tops,Knits +861,24,Perfect flowy top,I would describe as an upgraded t-shirt. a perfect flowy top that you can dress up or down. comfortable and soft material.,5,1,0,General,Tops,Knits +861,54,Cute !!,Super cute t-shirt keep in mind to is fairly long,4,1,0,General,Tops,Knits +861,48,Shrunk to toddler size,"I washed and dried this in my dryer after one wear and it shrunk to the size of a toddler shirt. i dried it on medium. i can not really wear it unless i want to show off my belly. i loved the color (lilac). fit, and style when i received it and immediately put it on. so sad about the shrinkage. for a $58 shirt i expected a bit more. retailer should suggest air drying the shirt. so bummed and disappointed!!!! i would not recommend this shirt unless you can remember to air dry it every time.",2,0,8,General,Tops,Knits +850,26,Very cute!,I ordered this top despite the other reviews and i'm very glad i did. it is adorable. well made and very flattering. i am usually a size xs or 00 but based on the reviews sized up to a 0. fits perfectly. not snug at all. highly recommend!,5,1,0,General,Tops,Blouses +419,46,Dreamy pajama pants,"These pajama pants are dreamy in all ways! incredibly soft, with a soft and not binding elastic waist. plus, the print is evocative. + +i am 5'8"" and a size 2/4. i bought these in the store. the only size left was one pair of xs. sure enough they fit. + +the length is perfect. + +i just ordered a pair for my sister.",5,1,1,General Petite,Intimate,Lounge +1016,60,Great casual skirt,Skirt has lots of stretch and comes up to waistline so i am not sure yet how i will wear it but tucked in or out it looks very stylish and the dark denim is of course slimming.,5,1,0,General,Bottoms,Skirts +419,53,Nice light weight pajamas,"I just purchased these pajamas on-line and they are very pretty in person. i found them to be tts in my usual size small though a bit on the long side as i'm only 5'4"". i don't mind a little extra length though because these are just to lounge/sleep in. i think these soft pj's will be great during the warmer months as they are very light weight and comfortable. you'll absolutely love the print on them and wish there was a matching top!",5,1,5,General Petite,Intimate,Lounge +861,21,Great top,"Love this, it's a great update your basic tee!",5,1,0,General,Tops,Knits +1104,28,Great everyday dress,"I love this dress! it is amazingly comfortable and flattering (i would think to many body types). i have a more athletic, petite body build and this dress gives me great curves. i have already received so many compliments while wearing it out! the best part is, i can wear it to work (i'm a teacher), and then wear it out by easily dressing it up.",4,1,0,General Petite,Dresses,Dresses +861,32,Cute t shirt,"Love this t-shirt, its comfortable and very cute. it runs a little large i am 5'0 110 pounds and got a xs. +the color is a little brighter than the picture.",5,1,3,General,Tops,Knits +861,42,Terrible!,The back of the shirt has a tag stitched in with red thread that goes through to the outside of the shirt. it is very visible and looks terrible - especially since the back is the focal point of the shirt. do not recommend,1,0,0,General,Tops,Knits +861,39,Poor fit,The shirt is very soft but it felt very large and unflattering. the back felt bulky and looked awkward. definitely returning.,2,0,2,General,Tops,Knits +938,38,Versatile,"I originally took a liking on the pink one, but my complexion indicated i'm better off with the gray one. this piece is so versatile that i am still able to wear it during my pregnancy (and post too!). this is a good investment.",5,1,3,General,Tops,Sweaters +1104,31,"Casual, curve hugging, but crooked seam","I wanted to love this dress... and i did until i turned around. the back seam didn't hang right. it pulled towards the knotted side, across my behind. i tried on two different xs that they has in store and both had the same issue. one of the dresses hung much looser, i had to recheck the tag because i didn't believe it was the same size! disappointing because it really is pretty and showcases curves nicely.",3,1,4,General Petite,Dresses,Dresses +1104,29,,"I got a small (5'9, 135lbs) and it fits great! it is super comfortable and also looks really good on.",5,1,3,General Petite,Dresses,Dresses +861,40,Felt too maternity,"I was bummed about this top. detail on back is pretty, even so, not worth it. i'm usually an xs i'm 120 lbs and it fit true to size. guess i had higher expectations. i'm feel consistently let down with what the pictures convey and the actual item when it arrives in person...",2,0,4,General,Tops,Knits +861,67,Cute!,"This tunic is just adorable. material is very soft and slightly stretchy and drapes so nicely with just the right amount of fullness without spilling into maternity territory. i got it in the pink color which is really a very beautiful rose color, perfect for spring. the tie back detail is so cute and adds a feminine touch. +fit is tts. i'm 5' 103 lbs 32b and i got it in an xxs regular which fits me perfectly. i was afraid it would be too long on me since there was no option for petite sizes in",5,1,12,General,Tops,Knits +861,31,Great material,"Love the lilac purple color, breathable yet not see through material is soft on your skin. i like the small detail cut out in the back, and a high bonus point for not showing your bra. one minor thing i would change is the length of the string in the back, but not a big deal.",5,1,0,General,Tops,Knits +286,40,Wowser,"Made by dawn suits are the bomb. the bottom is a tiny bit cheeky, but not thong territory- just enough side leg to be seriously sexy. the quality is fantastic, soft with nude lining. love the retro feel to the high neck top- enough support even for my 36d's. so comfy, i forgot i was wearing it at lunch. the normal triangle tops cut into my shoulders/neck, and this style does not. amazing quality and well worth the price. +fyi- large top fit perfectly, but i needed a medium bottom.",5,1,1,Initmates,Intimate,Swim +1104,38,Great for a saturday afternoon,"I purchased this product online so wasn't able to try it on before purchase. it fits perfect. i am 5'7 and 160 lbs. the only thing i did not like was the fabric, it is very thin. you can see undergarment lines in the back.",4,1,1,General Petite,Dresses,Dresses +861,23,Not worth the money!,"I brought this shirt for a vacation, it fitted well and was flattering. totally a comfortable wear, however, after 1 wash on delicate & hang dry small holes appeared near the bottom. i am hoping i can return it. not worth the money.",2,0,3,General,Tops,Knits +861,42,,"Very cute, but i would not call it pink. it's more of a melon color.",4,1,12,General,Tops,Knits +933,46,"Love, love!!!","I just need to write a review on this sweater because it's the best!!! i currently own the cream/blue stripe sweater and have recieved many compliments. what i was most happy about it was the fact that i have washed it several times and the sweater looks like new and has held it's shape. i have ordered the gold one as well and it's still on backorder, waiting for it to arrive :) don't procrastinate, it's worth the price.",5,1,2,General Petite,Tops,Sweaters +861,42,Too boxy,"I ordered a regular size s and it was way too boxy for my body type and shorter than the stated length. i don't know if the length stated is from a size m, but the small was definitely shorter (in the front at least). if you're petite with curves like me, it's not a flattering cut.",2,0,1,General,Tops,Knits +419,31,Lightweight and well made,"The material on these is super lightweight but still strong, perfect for summer. so hard to find great lounge-sleep clothing in summer for a house without ac. + +illustrations are beautiful in person. i wish they still had more in stock, i want to buy for my mom! + +also, i am tall and i like that they are long.",5,1,0,General Petite,Intimate,Lounge +861,53,Tie back tunic,"I usually love tops like this, i bought this is the store because if was so soft. got it home and was so disappointed because it is not very flattering at all.would be a great house top though because it is soft enough to sleep in.",1,0,0,General,Tops,Knits +861,47,Complimentary color,"After seeing this top in the catalog i also spotted it in the retailer store. the peach color is even more perfect in person and compliments my skin tone perfectly. the style of the top is unique and flattering. now that i see even more colors, i'll need to buy more. my one reservation is that the material is super soft but very thin, so i hope it doesn't get holes - i want to wear this one all summer!",5,1,1,General,Tops,Knits +933,49,Great boyfriend sweater!,"Love this sweater! warm, cozy and and not ordinary!!! fits great too! no surprises!",5,1,0,General Petite,Tops,Sweaters +861,64,,This is a great everyday top that is very versatile.,5,1,0,General,Tops,Knits +1104,51,Not impressed,"I'm 5'4"" 120# , 34d. this dress did nothing for me. the seem on the side with the knot doesn't look right. it's almost on the side but not really. there's a seem down the center of the butt from the waist. it looks weird from the back because it's such a fine striped print. not flattering at all. the dress is comfortable due to the stretchy knit and it has a stretchy knit lining. hit me just a bit lower than on the model.",2,0,13,General Petite,Dresses,Dresses +861,39,,"Yes, this top is not of the best quality but i bought it on sale with an additional 25% off. it has a very cute design on the back and will be cute on while running errands on a hot day. it's true to size: i'm 5'6"", 150 lbs and m fit well.",3,1,0,General,Tops,Knits +850,34,Great piece,"Ok so this top is as cute in person as it is online. runs very small as theres no stretch or give in fabric. i normally wear 12 and i couldnt even halfway get this on lol. i may consider a 14-16 but the stores didnt have this yet to try on. the ladies at the counter were crushing on this top though! +if you can find your fit this top is great for layering!",3,1,7,General Petite,Tops,Blouses +861,64,Pretty blue,"That was the only color i liked. it's great if you have a tummy like me and is long enough in the back to cover your butt. back detail is cute, but annoying. sometimes it shifts around and my bra shows, and the string is at least 3 feet too long. +not bad, i wear it with white gauze pants, looks nice. good with leggings too.",3,1,0,General,Tops,Knits +1104,55,,This dress is made very well and can be dressed up or down! it can be worn with open toe wedges in spring and summer and cute booties in the fall.,5,1,2,General Petite,Dresses,Dresses +1103,32,Lovely,"The dress is lovely. my only knock on it is i didn't really feel like the top and the skirt matched in terms of level of dress. i guess the top just wasn't ""fancy"" enough for me. but it is a very beautiful skirt. i wish it was in a tea length. the fit was spot on.",4,1,4,General,Dresses,Dresses +861,43,Fit off,"I got a medium as i usually wear that in everything. i am a 36d and this pulled a bit across my chest and back. it is a cute idea, but the fit is off for my body. i am 5'6 and hits me shorter than shown on the model, so hits at an odd length. i may try to order a large and see if it is better on me, because i am so hopeful for this to look cute on me! the teal blue color is beautiful, the pink is more a blush and washed me out, the grey is just grey. i bought three thinking this would be my go t",3,1,9,General,Tops,Knits +1025,66,***please restock size 32 in other washes***,"The perfect fit and style of any jean ever. i order one size up in petites. i love these jeans and want them in every color/wash. they have wonderful stretch that does not sag. i wear them with cuffs folded up in hot weather but can also wear them down thanks to petite styling. love, love.",5,1,4,General,Bottoms,Jeans +938,39,Falling for fringe,Simply lovely to look at because of the fringe detail and it's a joy to wear because it does not cling to my trouble spots. very versatile as it can be worn and layered in many different ways. i was lucky enough to buy this in petite but i'm sure the regular would've been fine. looking forward to outfitting this because i got so much inspiration from instagram.,5,1,0,General,Tops,Sweaters +419,46,Wanderlust sleep pants,Cozy and beautiful - everything dreamy sleep pants should be. great for gifting. make bedtime feel a little more pampered.,5,1,0,General Petite,Intimate,Lounge +938,39,"Unique, beautiful, and romantic","This tunic is overall very pretty with soft material and very comfy- not itching. the color is more like a taupe than what's shown on picture. i love it very much as the design is unique, romantic but also classic. it goes well with skinny jeans or black leggings.",5,1,4,General,Tops,Sweaters +933,39,Love!,"Bought this cardigan on a whim as a birthday treat pre myself! love it! i get a compliment everyone i wear it! the quality is great, fits great (with a roomy feel).",5,1,0,General Petite,Tops,Sweaters +861,52,Disappointing,"I was so disappointed when i received this top. the color is some washed-out faded version of the picture shown and the cut is much fuller than it looks in the picture. the back is cute but not worth the awful, drab actual color.",3,0,3,General,Tops,Knits +933,26,No closure,"The sweater is very very warm. it looks okay, not the best but not bad. i had high expectations so was disappointed to see no closure, i don't wear sweaters and jackets without closures. i like having the option of closing buttons if it gets any colder. so i am sending it back.",3,1,1,General Petite,Tops,Sweaters +933,33,Soft and thick without the bulk,"I got so many compliments on this the first day i wore it. i think of this more like a sweater coat than a regular sweater. it is extremely soft and warm, but not bulky at all. it lays really neatly, which is why i think of it more like a coat. this will definitely be a staple moving into the winter and then into spring. keep in mind though that this does not button - they're just for show.",4,1,0,General Petite,Tops,Sweaters +936,75,Much better in person.,"This is a beautiful sweater. the photo doesn't do it justice. the model is wearing too large a size. i wear a l in moth and definitely looked better in the medium. the price is too high but the 25% savings thanksgiving weekend helps to blunt the pain. the lining is soft but was wrinkled on all the sweaters. the coloring is very flattering and, with care, this should be able to be worn for years. it can be used as a dressy coat sweater or fabulous over casual clothes. i wasn' particularly impress",5,1,20,General Petite,Tops,Sweaters +1110,59,,,5,1,0,General Petite,Dresses,Dresses +43,31,Pretty,"Bra s great, but it has a lot of push-up padding. this might be nice for smaller cup sizes, but for a 34dd, it was a little overkill/unnecessary.",5,1,0,Initmates,Intimate,Intimates +474,62,,"Just received these this morning and so happy. cartonnier always makes a substantial quality product. might run a little large,depends how roomy you want them, lovely colors and perfect length. wish they came in other colors.",5,1,0,General,Bottoms,Shorts +936,45,Love it,It does run large. i got it on sale and it is a great sweater / coat for $200.00. i would not have paid the full price of 450.00 but i do love it. every time i wear it someone complements me.,5,1,2,General Petite,Tops,Sweaters +936,31,Big bold and beautiful but not for me,"Lovely print and colors. interior lining was so super soft, but it did lay right on me, felt very big and bulkly and i wasn't a fan of the single snap closure, esp being so low, so i decided it was not for me at that price and returned. 5'5"", 135lbs, 34c and the s was too big. it is beautiful and i will consider the xs if the price is cut further.",4,1,7,General Petite,Tops,Sweaters +936,39,I call this green carpet,"But i do love it, i jsut can't pull it off as i am simply too ""petite"" (short, i look lost in it, and sold out in petites). my taller friend, however, tried it on and we both loved it. the colors are really fun, and it is warm.",4,1,3,General Petite,Tops,Sweaters +339,52,Very flattering!,"Love this jumpsuit, i was rather apprehensive as i didn't think it would look as good on me as on the model but i am totally smitten with it. very flattering, especially if you have some bumps and rolls. i ordered in a medium (5.7 and 145 lbs and it fits perfectly. definitely recommend to order down. +as i'm wearing it to yoga i wear a sports bra underneath, that also helps with the very deep and open back to cover up a bit more. highly recommend, the top hits in all the right spots to make one",5,1,2,Initmates,Intimate,Lounge +936,46,Enveloping cacoon of warmth,"I first saw this sweater coat in the retailer catalog that i got in the mail. i thought it was beautiful. so ethereal! i never thought that i would own it, though because of the initial price. i never thought it would make it to clearance. to my surprise, it did, and then went the extra 30% off! i took the plunge. i followed the advice of the other reviewers, and ordered a size down, a small. i am glad that i did. i still feel like i get the oversized, wrapped in warmth feel. it is not a figure fl",5,1,2,General Petite,Tops,Sweaters +909,41,On the fence,"The blue color is beautiful and what attracted me to this sweater. the draped front is very flattering and the fit is true to size. unfortunately the banded hem creates a pouching effect that is very unflattering. i really wanted to love this sweater, but just can't figure out how to wear it without poofing. i think this is the reason it is tucked in in many of the model shots. it is still a pretty sweater and it may work with for some.",4,1,0,General,Tops,Fine gauge +1104,63,Cute dress,"I just received this today by mail, i am going to keep it as the reddish color is really pretty, it is very lightweight and will travel well for my summer vacations. however my first observation is the same as was noted in a previous review - not quite sure how to keep this dress in place - as soon as you move your arms around the dress goes out of place - and it slips back onto your shoulders . hopefully it will work out, will try a couple more times before i make a final decision i think.",4,1,0,General Petite,Dresses,Dresses +1104,42,"Very pretty, but...","I agree with a prior reviewer who stated this seems overpriced - it is. it's very lightweight and not quite the quality i would expect for the price (the washing instructions tag was sewn in all crooked - really?). i ordered the black as i was hoping to wear this to a dressy (though not formal) event but i am not sure it works on me. i think it would be a really fun summer dress option in either of the 2 colors (the blue looks really pretty online). + +it is very cute but definitely runs large.",4,1,20,General Petite,Dresses,Dresses +909,34,,Like the crossover design of this sweater. the v-neck is not low cut and can be worn without cami. sweater is thin but not find it to be see through although i always were tank tops under my shirts. did not find it to be itchy.,5,1,3,General,Tops,Fine gauge +936,48,Love!,"I saw this sweater coat in store and thought it was gorgeous! i was turned off by the price so i waited for it to go on sale. luckily, i snatched it up right away. as other reviewers have stated, it is meant to be worn as a coat/jaclket and for me the medium ( i am usually a size 8 or medium in retailer) fit was slighly oversized on my 5'9 145lb frame. i admit that this not an item that i would usually have in my wardrobe and was not sure how the sweater and the fit looked on me. i was afraid it w",4,1,4,General Petite,Tops,Sweaters +1110,38,My new fave!,"This is my new favorite summer dress, seriously. i purchased this dress while there were no reviews at the time but i'm so glad a took a chance. the colors are pretty close to the picture shown; maybe more of a lilac hue than mauve. i normally wear a 6 petite or a 4 regular in dresses, so i went with a 6p. as other reviewers have mentioned, this dress seems to run a little bigger so i could have easily gotten a 4 petite (for the shorter length) and it still would've been flowy. i have chosen to",5,1,8,General Petite,Dresses,Dresses +1110,52,,Dress really pretty and great quality. slip is small if large breasted.,5,1,7,General Petite,Dresses,Dresses +1104,31,Shrunk!,"I loved the fit and vibrant color of this dress. it's loose and flows but doesn't look like a potato sack. i wore it once and got a ton of compliments. that said, i hand washed it, as the tag states, then let it line dry, and it shrunk to half its size! i re-checked the tag and noticed that under the hand wash instructions it then states ""dry clean recommended."" boo. so disappointed that i spend over $100 for a dress i wore once.",1,0,0,General Petite,Dresses,Dresses +1104,47,Very chic,"I found this at my retailer store--the only dress left. i bought this in black in my usual size small (4-6). this dress was so pretty on and fabulous in hot weather. the material is gauzy and so the look is casual. i'm not sure i would wear it in the evening but the fit was great. i am tall, (5' 9"") and the dress is long enough for me. i would say it is the same length as on the model. it is a bit pricey for what it is but i bought it as a birthday gift to myself.",5,1,1,General Petite,Dresses,Dresses +936,41,,"Ok. so this coat is amazing! it's high quality, soft, great pattern. the knit lining helps to make this more of a light weight coat than a sweater type coat. it's been warmer this season so i've worn it as a coat and received many compliments. it might not be warm enough for january in new england but i bought a size up so i could wear it over a sweater and still use it as a coat. this was purchased on sale w 25% off sale code, so for me, that was a steal. so happy it went on sale! give it a try",5,1,2,General Petite,Tops,Sweaters +909,25,Black is see-through up close,"I'm usually a small (5'5"", 116 lbs, long torso), but the x-small fit well. the black does look see-through in the pictures, but i figured i could wear a cami with it. it is see-through in person if you are up close, mainly in the back and arms since the front has extra fabric in places. however, it is rather short, possibly because it is an x-small, and i'll need a short cami to fit under it or will have to have a cami hanging out of the bottom, which drapes nicely and a cami may mar that effect",3,0,0,General,Tops,Fine gauge +936,40,Retailer classic,This sweater coat is a keeper. yes it runs large but if you wear it as a coat and not a sweater it works well. plus it is very warm. for size i normally wear a large 12/14 and i ordered a medium. great for layering soft winter whites. i wore this christmas shopping and everyone asked about it all day. this will for sure go into my retailer classic closet.,5,1,2,General Petite,Tops,Sweaters +936,67,Lovely unique,"Loved this sweater coat the first time i saw it online......then the price....yikes! the style, color and fabric design is beautiful. waited for it to sale and then hurray an extra 30%. off to my local store for a try on as i would not have wanted to even try it at the regular price. it is wonderful! it runs very large. i went down two sizes to achieve the fit i was looking for from a large to a small. in my opinion the product shot model is wearing a size too large. even sizing down it is not t",5,1,3,General Petite,Tops,Sweaters +1082,38,Get a slip!,"Beautiful dress...appropriate for sunday, and special occasions. grab a 'honey slip' to compensate for the sheerness, and you're set! one star off for static cling. otherwise, no regrets with this purchase.",4,1,1,General Petite,Dresses,Dresses +909,38,"Beautiful blue color, great design, snags easily","This pullover is a beautiful deep blue color with a unique, relaxed design. when i first bought it, i found a snag on it and had to exchange it. the new pullover didn't have any snags, but did have a hole along the seam. i really like the pullover's relaxed fit and unique design, but the fabric doesn't seem very durable and is prone to snagging. time will tell how well the fabric holds up.",4,1,0,General,Tops,Fine gauge +1110,35,,Runs a tad big but not enough to say it runs large if that makes sense - but just beautiful!,5,1,19,General Petite,Dresses,Dresses +909,31,Awkward sweater,"I wanted this sweater to work but sadly it failed. first, the pink was way to sheer for my liking. the sheerness caused a weird color overlap on the stomach area. then the band at the bottom was too tight causing a weird ballooning affect. a shirt underneath could work but it takes away from the beauty of the knit. the soft pink is gorgeous but not good for medium to light skinned folks.",2,0,0,General,Tops,Fine gauge +1110,20,Beautiful dress!,"My mother, who is not a dress person, ordered this dress for a summer wedding in the black hills. we'd spend 20+ hours searching for the perfect dress, and she'd returned three other options (different stores). after admiring this dress for awhile, she decided to try it, and is so happy she did! the color is just a slightly darker shade of purple than what is pictured in most of the images, but that's what she was hoping for. it fits wonderfully, and looks extremely elegant.",5,1,0,General Petite,Dresses,Dresses +1030,44,Perfect,"Great jeans, great cut, great fit & i love the distressed look. the rise was higher than i thought but not a deal-breaker. i typically wear 26 in most brand of jeans & got these in 26.",5,1,0,General,Bottoms,Jeans +909,63,One for the girls with some curves!,"Clothes generally tend to look great when you're svelte. hence thin models. i've recently put on a few pounds (normally a 4-6, xs, small in retailer, 5'6"" and i have boobs) and when i get lazy and eat a little too much i get it around the middle. i already have a chest so that makes finding clothes to look flattering harder bc the boobs create the apple effect. all that said just to make the point that this is a flattering sweater. i grabbed it last minute on the way to the dressing room, but i ne",5,1,28,General,Tops,Fine gauge +936,23,Cocoony fit,"I agree with the other reviewer-- this is classic retailer old-style quality. the lining inside is soft to the touch and the colors are vividly magical. the only reason i am not pining for it is the odd balloon-fit of the waist. i usually choose s/m in cardigans (for ref, 5'8"", 135 lbs, 34-b), but even the small of this sweater-coat dwarfed me. i think it just depends what you are looking for. unique it is, and certainly lovely.",5,1,11,General Petite,Tops,Sweaters +936,37,"Vibrant colors, beautiful","This coat is really beautiful, and pictures don't do it justice. it runs very large. i'm normally an xl or l in sweaters, but because of the balloony shape, i actually took a medium - even then it looks like i'm being enveloped, so i prefer to wear it unsnapped.",5,1,2,General Petite,Tops,Sweaters +1110,24,,Yes! this dress is so lovely. i wear a size 6. a size 6 in this was perfect. under slip over a delicate overlay. heading to italy and this will be so perfect. drape is so flattering. colors are feminine. cut is lovely. effortlessly elegant and reads much more expensive. don't hesitate. a special one.,5,1,0,General Petite,Dresses,Dresses +936,56,Retailer catog cover coat,"So many retailer coats have gotten away from me. sold out before i could purchase. i bought this during the holidays when it went on sale. i did not want this the be the one that got away. so glad i did. the colors are beautiful, the sweater is really a coat. so it justifies the price. what a gorgeous piece to wear with all of my retailer clothes. length of arms was fine on me. i bought a large. i am 5 foot six.",5,1,2,General Petite,Tops,Sweaters +936,49,Not for me...,"I'm surprised to be unhappy with this... reading all the rave reviews. but, i had a different experience with it. the cut is funky... and seemed much more tapered on me than on the model in the picture. i think if you're very slim, this may work well, but for any curves or hips... not so flattering... imo. i think it's a pretty jacket... but not for me... it's going back. and ps... i paid $448 for it and see it's on sale for about 1/2 that just a week later. the discounted price may be a good de",3,1,3,General Petite,Tops,Sweaters +936,37,Knock out!,"I'll admit, i had a lot of sticker shock when i saw this was a moth sweater coat at this price point. but i was immediately drawn to it. this is a one of a kind piece for sure. the colors are vibrant, the design is stylish and it is beautifully unstructured. it has a cocoon shape, wool on the outside and a soft knit on the inside. its a bit heavier (as you would expect a wool coat to be.) my absolute favorite part is the print. very classic on top, and very boho on bottom. it is gorgeous. i woul",5,1,45,General Petite,Tops,Sweaters +984,37,Omg yes!,"Alright ladies...this jacket!! its even better than it appears online. the green anorak fabric has a little stretch to it and is super comfortable. because of the stretch, i was able to do a large instead of my normal xl. but the real show stopper is the fringed sweater. it is gorgeous. it lays beautifully open or closed and is so soft and warm. the design has so much detail to it. there is also this amazing tie in back so you can cinch the waist if you want. this jacket will look amazing with a",5,1,1,General,Jackets,Jackets +1110,24,See through,"When i received this dress in the mail, i was thrilled. i loved the color and the style, although a bit too much material but comfortable. when i went to show my husband the dress, his first comment was very sexy. i can see your underwear and your skin!!! i don't understand why no one mentioned this in any of the comments on this dress. when i went into the light i saw that the dress was see through and i sadly had to return it.",2,0,0,General Petite,Dresses,Dresses +936,38,"Warm, love and classic wardrobe piece",This jacket is beautiful in colors and warm enough to wear in the fall or layer it with a sweater in the winter. it is more taylored at the bottom at the legs and would be great with leggings or jeans. i originally ordered a large but found myself swimming in it so happy it was still available in medium so i re-ordered it. definitely order it in a size smaller. sadly it was after the sale had ended but great customer service they issued it for me at the price i originally paid. (ps i'm 8 months,5,1,3,General Petite,Tops,Sweaters +936,62,,"This is such a lovely piece. i usually wear a medium in moth. i am 135 pounds and 5'4"". the quality is exceptional. i highly recommend this sweater coat.",5,1,2,General Petite,Tops,Sweaters +1110,39,Whispering wisteria,"Light and delicate and certainly not a color i would usually pick for myself but at sale price this was a lucky steal for me! if i had known how much i would love this dress i would've paid full price. as for sizing, i am top heavy but picked the smaller end of my size range instead of my usual. the slip is just about tts and the silk outer is larger and flowy. for fit reference: 5'3"", 36dd, 140#, barrel chested, large upper arms and i purchased size 8.",5,1,0,General,Dresses,Dresses +1110,50,Perfect dress,"This dress is so beautiful. i am 50 5'8"" and smaller on top larger on bottom. size 6 is perfect! was worried that it would hit me in all the wrong places. happy to say it does not. wore it for the first time yesterday and no lie i received no less than 15 compliments from strangers. just walked up to tell me how great the dress was. colors are so soft and beautiful. would buy in other colors if they had it. i can see myself wearing it to a casual dinner, to a wedding our just to feel special on",5,1,3,General,Dresses,Dresses +1110,42,"Soft, feminine and perfect for summer",Like my title suggests this is lovely and perfect for summer. the lining however is not silk it's rayon and sat weird on me. it offered no coverage on my top and actually is quite useless (i do have a large bust). i have a free people slip that will work and because of that will i'm keeping the dress. the outer shell is silk and really lovely and the colours are true to the picture.,5,1,6,General,Dresses,Dresses +936,38,,"I ordered this coat online without trying it on in person. the pictures on the models are stunning. i have a long, mostly rectangular physique with long legs and a little extra love around the middle. i like wearing long sweaters and drapey things that accentuate the positive. i thought this was right up my alley. but, it person it has a weird bunchiness around my middle due to the hidden pockets. the sleeves are a bit too long and the lapels and shoulders make me look beefier than i am up top.",4,1,0,General Petite,Tops,Sweaters +909,50,Simple but pretty,Love this sweater! it is very simple but pretty! it has a very flattering fit and is comfortable.,5,1,0,General,Tops,Fine gauge +936,46,,"The print, colors and fabric of this sweater are lovely. the design is quirky to say the least. i ordered a small, as i usually do. i am 5'2"" and weigh 120lbs. this sweater somewhat gathers or balloons out at the hip area and is so huge that it looked like i was wearing a giant table cloth or stadium blanket. it looked like i had a pillow stuffed in my backside because of how the sweater gathers up at the waist. it's not flattering at all.",2,0,1,General Petite,Tops,Sweaters +1110,24,Beautiful and flowy,"I was a little apprehensive about getting this dress without any reviews, but i am really glad i did. first, it looks exactly as pictured, maybe even more beautiful. the material is nice and flowing, and very light, so it's going to make a fantastic summer dress. there are two layers- an under layer which can be completely detached from the pink silk top layer. the reason why i say true to size is that even though the pink silk layer is pretty loose, the bottom layer conforms more your body. i'",5,1,31,General,Dresses,Dresses +909,60,Pretty but very thin,"This sweater is very pretty but the material is extremely thin. the blue was ok but the white is nearly see-through. the design is unique but unless it fits really well, the bottom hem where it criss-crosses can bunch out in a weird way. i got my usual s and it was rather loose, causing this to happen. i suggest you size down if you want it to look smooth like it does on the model.",4,1,0,General,Tops,Fine gauge +1110,30,"Cute dress, narrow fit of the slip",I really like the color and flow of this dress. the dress itself fit well however the slip was extremely tight through the bust. i have a large bust at 34d however most dresses are still wearable especially flowy dresses. unfortunately i had to return this one because of the slip.,3,0,0,General,Dresses,Dresses +1111,40,Love,"This dress is a beautiful classic ! i am 5""3 113 size 0 fits perfectly !",5,1,0,General Petite,Dresses,Dresses +927,32,Shorter than expected,I ordered this in hopes of wearing as a tunic with leggings for my rehearsal dinner. it is much shorter than expected and wouldn't have looked right with leggings. it also was more gray than ivory and in the short time i had it on was shedding lint like crazy. beautiful in photos but didn't work for me.,3,0,0,General,Tops,Sweaters +53,29,,"Very cute shorts. sadly, after one wash they became a lint magnet so had to be returned. disappointing quality.",5,0,0,General,Bottoms,Shorts +831,46,Favorite royal blue feminine top,"I treated myself to get this at full-price at the start of summer. my size is xl and it fits me like the model photos. i have gotten such good use out of this blouse. it washes well without shrinking. it's vintage-looking. so comfortable. i love the arm coverage, interesting neckline that covers bra straps, good length. the cami it came with is flimsy so i threw it away. i use another tank underneath. i'd love any of the colors. the blus was more my color but all of them are gorgeous because of",5,1,0,General Petite,Tops,Blouses +831,53,Better in person...,"I expected this to be a pretty basic peasant top but was pleasantly surprised with all aspects of my purchase. fabric is soft and flowing with a perfect feminine vibe. it has a nice liner and the length and fit are perfect. can be dressed up or down as you like it. does run a bit large but it's due to the style, not the sizing. i ordered my usual size and cannot be happier with it. go ahead-press the button!",5,1,0,General Petite,Tops,Blouses +1146,44,Too much material,"I was very excited to get this dress in the mail. i wasn't sure about the sizing because there weren't any reviews written yet. i got the m which fit across my chest area and fit fine, but there was just so much fabric below the bust. i love that it's different, but i think you'd have to be a stick figure for this shape to work for you. it does not flatter your body at all.",3,0,4,General Petite,Trend,Trend +860,44,Nice fabric,"I really like this shirt. it runs somewhat big but i love the oversized effect as seen on the model. i normally wear a m in shirts and the s was spot on. the only quality issue is with the buttons..they are a bit flimsy when you unbutton them. other than that, this is a great shirt and the price with the promo is just right.",4,1,1,General,Tops,Knits +831,43,Lovely top,"Purchased in white. very pretty top. i thought it would be more lace - but non the less, it is lovely.",4,1,0,General Petite,Tops,Blouses +1036,38,,"Buttons were broken off when i opened the package, stretchy at waist, not good quality for the price.",2,0,0,General,Bottoms,Jeans +1111,36,Love this dress,"This dress is beautiful. i love the collar and tie neck detail. i decided to order up a size and am very glad i did (i normally wear a 0 or 2 petite and ordered this in a 4 petite). it fits perfect with a little room...not snug at all, which i like. the description says its a slimmer fit so i'm happy i ordered the size i did. i'm excited to wear it and add it to my wardrobe.",5,1,0,General Petite,Dresses,Dresses +1111,57,Adorable-timeless,"Beautiful, timeless dress. runs small, straight fit. can't wait to wear it to work or a function,",5,1,0,General Petite,Dresses,Dresses +831,48,Fabric not comfortable,A pretty blouse but the polyester fabric makes it incredibly warm and uncomfortable on after a while. had to return it.,3,0,0,General Petite,Tops,Blouses +996,42,Feminine and fresh,Well made gorgeous skirt that can be worn with heels and lace top or tee shirt and big jewelry. true to size. i am a 2/4 and the extra small was great. poofs out a bit but not like you're a fairy. i would say the blue (which i ordered) is more of a seafoam / mint green which is also lovely and spring time.,5,1,1,General,Bottoms,Skirts +873,20,Perfect pocket tee,"Omg! where have you been all my life? this t-shirt is the best....not see-through, perfect length, perfect v-neck (no cami required), amazing colors, perfect shape, not tight (body skimming), doesn't poof out or look weird on larger busts and goes with everything from jeans to dress pants. i want every color, but for now i ordered the moss and blue which goes perfectly with my fair skin and long silver hair. oh and did i mention the sleeves are perfect to wear with or without a cardigan! no slee",5,1,1,General,Tops,Knits +504,34,Beautiful and comfortable,These are the perfect combination of comfort and beauty. i highly recommend.,5,1,1,Initmates,Intimate,Sleep +1056,47,Flattering and comfortable.,I love wide-leg pants and i'm so glad they're back. i bought this pair in the navy and cream colors as soon as i saw them online. i bought my usual size 28 in retailer and they fit just fine. the navy color is more like a dark blue but still perfect for spring/summer. comfortable material and overall good quality. i just wish they came in more colors.,5,1,0,General,Bottoms,Pants +1094,43,,"I love this dress. so cute and easy to wear. with sandals, flip flops or tennis shoes. the material is a bit thicker than what i prefer for warmer weather, but very comfortable. this is my new favorite weekend/errand/summer out and about dress. can't wait to take it on vacation!",4,1,0,General,Dresses,Dresses +1056,74,Not for me,"These pants are so comfortable and i love the color, but they did not work for me.",4,1,0,General,Bottoms,Pants +873,39,Basic but not boring,"Great basic tee with just the right amount of extra detail. the length is perfect--not too long, not too short. fit is relaxed and comfortable without looking sloppy. i'm coming back for more colors!",5,1,0,General,Tops,Knits +873,50,"Ok shirt, white is off white","As with many of retailer's tops these days, there is a lot of fabric on this tee. it hangs fairly well, though. the white color is cream, which didn't work for me but isn't bad. a little sheer but wearable with a nude bra. if you have a thinnish upper body, order down a size!",3,1,0,General,Tops,Knits +1059,46,Funky but not over the top,"I generally like this style of pants- and these are particularly interesting, flattering and perfect for the season. love them. + +the style can be bohemian and chic or more conservative. the color is also a dark navy, and there is black leather piping on the 'pockets' making them a neutral- navy or black. i've worn with a long sleeveless hi-low hemmed button down top and neutral (saddle) heels for work with a cream jacket- and with a t'shirt and flats for the weekend. + +they have a bit of str",4,1,0,General Petite,Bottoms,Pants +1094,30,Omg the best dress,"This is the best dress. i received it last week and have already worn it three times. perfect fit. casual and so easy but the length and front details make it so fun. thicker than many other ""tshirt"" dresses... but light enough that i wasn't overly hot on super warm days. def recommend!!!!",5,1,2,General,Dresses,Dresses +1094,30,Comfy and cute,"I tried this on in the store and was pleasantly surprised at how cute it was! i'm 5'4"" and the large fits me loosely but is still shapely. because it's a little longer on me, it's great to wear both to work and on the weekends. just wish it came in more colors! you can't see the color in the photo, but there's a sea green lining which is a cute touch!",5,1,5,General,Dresses,Dresses +996,59,One of my most favorite purchases ever,"This is one of the best purchases i've ever made... i have had the black for over a year, and every time i wear it, i receive so many complements. i've dressed it up with a striped scooped back shirt, or a fitted sweater, and paired it with flannel with a belt... i love it. i'm 6' ft and slender, and the xs it hits me at the perfect length just below the knee. i recently ordered the silver in a small (it's a little big in the waist- but nothing a corset belt can't help) for nye. love this dress!",5,1,1,General Petite,Bottoms,Skirts +1056,39,Love the fit - so comfy,"The picture onlin does not do these pant jsutice, it makes them look wide and short. well, that might be why these are percect for me, but on my body type (muscular bottom), they are awesome. the material is stretchy, soft, and thick enough to keep shape and not show dimples. lvoe the blue and green color, so rich. i am keeping the green as they are more unique. at 115 lbs, i ordered 25p. the yfit perfectly, but my styllsit keeps insiting that they wil lstretch and made me order the 24p. we shal",5,1,4,General,Bottoms,Pants +996,39,Odd fit for me,"I recommen only becuase i like it on other people, but not on me. the pull on style didn't work, i need xs petite to fit lenght and waist, but the waist wasn't elastic enough to ""pull up"" (i have let's say a booty#. i kept hearing hte stiching give... it also looked a little too poooofffy on my frmae, i am 5'1.5"" and it stuck more out than on the model. nice idea, btu not for me. #i am 115 lbs#",3,1,0,General Petite,Bottoms,Skirts +1059,43,"Comfortable, flattering, and funky","These pants are super funky. the colors have a 70's vibe. retailer do the pants a disservice styling them like the image on the website. they are playfully chic. besides the look, they are super comfy and have a nice stretch. perfect for my job as an art teacher. give them a shot!",5,1,3,General Petite,Bottoms,Pants +1048,40,Beautiful??,"I love the way these pants feel on. they are so comfortable and breezy. i love that i can feel cool in the summer without showing a lot of skin. i purchased both colors; both are very nice looking. that said, i'm not sure if i will keep them. they wrinkle something terrible. i'm pretty casual person and it even bothers me. it probably wouldn't be so bad if there weren't pleats in the front. after sitting for just a few minutes the pants look like a disaster in front. my husband said it's not ext",4,1,1,General Petite,Bottoms,Pants +1056,38,Comfortable,"I love these pants! typically, i have a difficult time finding pants that fit my smaller waist and curvier hips and legs, but these fit well enough. all i need to do it have the waist tailored and they will be perfect. the pants are also soft. the only downside, and it is not a deal breaker for me, is that they run a little large and seem to stretch out a bit with wear. considering this, i would downsize one size.",4,1,0,General,Bottoms,Pants +902,40,A win!,"This shirt is everything i wanted it to be! lightweight, easy style without being shapeless. it is sheer, but perfect with a tank underneath. i'm an extra small, and it fit perfectly - not tight, not too loose...honestly, if it came in more colors i'd buy it in every one. definitely going to be a fall staple!",5,1,0,General,Tops,Fine gauge +895,32,Mixed review,"Loved it on the hanger and when i tried it on. it's a gorgeous shade of blue (denim, not navy) with some light tie-dye streaking along the top and sides which add interest. the ""bat wing"" feature is a little limiting; i won't be able to reach anything high without the whole top coming up with me. as for the material, it's an interesting blend bc it isn't soft or rough. some may say it's itchy and some may say it's soft, to me it isn't either. it's merely smooth enough. which sounds terrible, ""it",4,1,0,General,Tops,Fine gauge +1056,52,Finally!,"I am so glad that wide leg pants are coming back! i love this style - so flattering! the color on these (blue) is rich and unique and the fit is exactly what i was hoping for. i wanted them loose and low waisted and they are perfect. i am 5'4"" 122 lbs and ordered 27 petite. the length (listed at 30"") is spot-on with flats, no tailoring needed. i previously ordered these in white in 27 r. they also are good but a little too loose and will need hemming. def. recommend and hope retailer keeps this st",5,1,0,General,Bottoms,Pants +1089,30,Fancy or casual,"Love this dress. i'm wearing it as a bridesmaid in a fall, casual outdoor wedding. i think it's fancy enough and can also be dressed down later. + +i'm 6' tall and skinny, with large breasts and this dress fits. beautiful! not too much cleavage. :) + +it's not real lace but no one could tell. great quality and nice weight to dress. great for dancing and spinning!",5,1,0,General,Dresses,Dresses +1056,48,,Great casual weekend pants and super comfy and great color.,5,1,0,General,Bottoms,Pants +1048,47,Unique,"These culottes are fun. i bought the neutral color with the black stripes in xs. in my opinion, they run big. i am usually a small (4-6), 31"" waist, 38"" hips. pleats at the hip and low waist area are not always my friend, but with a longer tank or shirt, they looked fine. the fabric moves in a graceful way and these culottes can be dressed up or down. so far, wrinkling isn't a huge problem but we'll see. i am 5' 9"" tall and these fall about the same place on the model--mid calf. they looked grea",4,1,1,General Petite,Bottoms,Pants +1056,49,So glad i got these!,"I knew i would love these pants because of the cute sailor styling, but the unusual green color. i am 5'5"" and thought i would be stepping on them, but i am fine. they are longer than the picture with the model on the website which i expected, but they are fine. the fabric is beautiful and i can't wait to wear them with my white-on-white sneakers. i will also mix it up with sandals. i wrote below that my style is bohemian, but truthfully i dress in all the ways listed below...classic, romantic,",5,1,1,General,Bottoms,Pants +1056,35,,"I love these pants! i got the blue ones. i got a petite 25 and i am 115lbs 5.1.5' - they sit low on waste and hug curves just right. they are little bit long, maybe 1 inch too long. will wear with platform or thick squared heel.",4,1,0,General,Bottoms,Pants +1048,23,Awesome lounge pants,"These pants are so comfortable. they're very flowy, and provide so much airflow to keep you cool during hot days. i actually bought these pants for work (i'm a teacher). i like to pair them with a white top and a cardigan. the waist band is elastic, which is super nice. the only thing i would like better is if the waist line was higher. the pants come up right below my natural waist, so they're not quite as high waisted as i would like. but other than that, their silky material give them the ill",5,1,9,General Petite,Bottoms,Pants +1048,36,,"These pants are great! they are comfortable, light and flowy. they are perfect for summer!",5,1,0,General Petite,Bottoms,Pants +873,32,Fabulous,"This tee is very comfortable and the colors are amazing! i initially purchased in the marigold yellow as i was instantly drawn to the color in store. it's a beautiful shade that will transition nicely into fall. i've since purchased the green which i liked on even more so than on the rack. overall, a nice quality everyday tee. the pocket and embroidered neck make it something retailer!!",5,1,1,General,Tops,Knits +998,50,Cute but not sure about fit,"Very cute. love the animals on it, especially the bunnies! however not sure about fit. fits perfectly at waist but fabric expands a bit further down; it seems to billow/puff/bag in lower part, not at bottom but in the stomach area, like there is too much fabric. so it fits, but also looks like there's something slightly off. interested in hearing other's opinions about this. also i am slightly und 5 ft. there'no petite option but the standard stops slightly above my knees so length seems ok.",4,1,0,General,Bottoms,Skirts +895,38,Nice staple to have for leggings,"I have a sillier style sweater from moth that i got last year and love. this is not as great, but i like the style so i will keep it. i knew the sleeves would be shorter, but wish they were made full length with a little less ""bat wing"". the color is close to as shown- maybe a little lighter. i was hoping for more of a navy since that is what they are calling it- but this is more of a denim blue.",4,1,2,General,Tops,Fine gauge +1056,32,Beautiful color,I love these pants. they are a beautiful color and very well made. i like the fit and the style very much.,5,1,0,General,Bottoms,Pants +1059,59,Colorful fun slim pant,"If i hadn't seen the description online, i would never have known these pants were navy! +i bought them today and tried them on with a black tunic which looked fantastic. the style is very similar to cartonnier slim pant but the fabric is lighter weight and stretchier. +since i'm heavy around the stomach, i will wear the pant with a long tunic top (to avoid the drumstick look) which is a shame since the pockets are so cute. the colors in the pants mean that you can match and contrast with a wid",4,1,0,General Petite,Bottoms,Pants +996,35,Fabulous skirt!!!,"I love this skirt... i have it in black, and when i saw this color i was so excited to add another one to my wardrobe. these skirts are made well... it's not flimsy at a all. the actually color is more of a light aqua blue, so if you are wanting a baby blue might not be for you...",5,1,1,General Petite,Bottoms,Skirts +1094,28,Great dress for taller ones,"Overall: a super comfy dress that you can wear anywhere. short, petite ladies beware though; the dress does not hang at your natural waist like it shows in the model's photos. in order for me to have it sit at my waist, the dress was folded over and did not flatter.",4,1,0,General,Dresses,Dresses +873,44,Very comfortable staple tee,"I just bought this tee in red. i have worn it and washed it once. i noticed that there is a hole already by the top of the pocket. considering the price, i would hope that it lasts for more than one season.",4,1,1,General,Tops,Knits +822,52,,,5,1,0,General,Tops,Blouses +76,65,Cute and fun,Sweet leg warmers that are fun and cute too! kept me warm when out in this frosty morning!,5,1,0,Initmates,Intimate,Legwear +1059,44,"Fun prints, fun pants",Great pants! great fall colors. great for day or night. super fun and funky. love them!,5,1,0,General Petite,Bottoms,Pants +898,29,I like it!,"Fit was very tts. it looks more lightweight in the photo than it is in person, it's a fairly medium weight sweater. i'm 5'8 and curvy, and it is nowhere near as long on me in the front as it is on the model. i still liked the look, mostly because of the look from the back of the shirt.",4,1,0,General,Tops,Fine gauge +902,66,Beautiful but decided to return,"This looks exactly as shown in the photo. you can tell that it's a really thin, lightweight knit that's almost transparent. i ordered a large and it fits the way it does on the model. am returning because i have a large 34 g bust and this top really emphasized my chest. it also grabs a bit under the arms. the color looks just like it does in the photos. it hangs nicely and isn't oversized, which i liked. the texture and ribbing on the sleeves, hem and pocket take this a step up from the ordinar",4,1,3,General,Tops,Fine gauge +1056,71,,"It's not them it's me. so sad. ordered two sizes 25 r and 24 p. nothing about them worked for me. i loved the colors (blue and green). i loved"" the fabric (heavy washed soft cotton). i loved the style. ah but there is the rub. i am so small that the width of the legs just swallowed me up. whereas the 24s fit around the waist and the length, while longer than i'd have liked was doable, there was just so much fabric around my skinny legs i felt as though i was wearing huge balloons on each leg. (t",4,1,0,General,Bottoms,Pants +1048,46,Flattering and simply perfect,"I tried these on in the store and instantly fell in love with them - they have an elastic waist which for my shape (pear) can sometimes be bad, but these pants don't cut me off or accentuate the ""fluffy"" parts, but lay nice over my belly and legs in a flattering way. they do have a slit that goes the whole way up the leg, that the picture doesn't show, but the underneath piece of fabric wraps around your legs, so i think it would be hard to show too much. i bought a medium and they hit lower on",5,1,0,General Petite,Bottoms,Pants +1089,31,"Beautiful dress, but size up!","I am usually a 00 or 0 in dresses, and i ended up with a 4 in this one. i could barley zip up the 0, and while i could have gotten away with the 2, there is no elasticity in the waistband. the 4 is very slightly roomy, but more comfortable than the smaller sizes on me. for reference, i'm 109-111 lbs, 5'4, and a 30b. + +when i was finally able to wear the dress, i got compliments galore. it really is a beautiful dress! just be sure to size up!",5,1,0,General,Dresses,Dresses +902,43,Just eh,It's just ok. very thin and feel like it might say and stretch. color is very nice but much thinner and sheer we than what i wanted.,3,0,0,General,Tops,Fine gauge +1094,32,Great basic dress!,This dress is very versatile and flattering on-- i've already worn it out to casual cocktails with friends twice since i've gotten it. i'm 5'3 and 125 lbs and the 4 petite worked perfectly on me.,5,1,4,General,Dresses,Dresses +1094,41,Great summer dress,Super comfortable summer dress. just bought it yesterday and i don't want to take it off. soft lightweight fabric.,5,1,4,General,Dresses,Dresses +1056,35,Versatile,"I just love all pilcro pants. they are great for any occasion, any type of weather. i am 5'5"" 125 lb. and i wear a 27 in all pilcro pants and they fit perfectly. only bummer is that i have to iron them, but they iron easily. length of these pants is just a tad long, but i can wear wedges with them and that solves the problem.",5,1,0,General,Bottoms,Pants +504,52,Love love love,"This top is super cute and colorful. admittedly, i have not used it just as a pajama top because i think the world deserves to see this piece of art. super comfy and i recommend this for everyone in most shapes and sizes!",5,1,1,Initmates,Intimate,Sleep +1056,57,Not flattering.,"1. i've been waiting forever for these to finally arrive. i was a bit disappointed. + +2. i'm 5'5"" tall, 145 lbs, and 38-32-40. my normal size 30's fit me perfectly, if a bit loose. they fit a lot like the hyphens. + +3. the legs are short and wide. they hit me at the ankle, which made them look like high waters on me. + +4. the legs are very, very wide, and i didn't think that was flattering on me. + +5. same comfy fabric and fit as the hyphens, except the front seemed to dip low at the waist i",4,1,14,General,Bottoms,Pants +504,26,Perfect pjs,I love these pjs! the sale price finally made the set affordable and i could not be happier! so soft and comfy!,5,1,0,Initmates,Intimate,Sleep +873,48,"Beautiful color, frumpy fit","Great color but frumpy fit. if you have any bust, it looks a bit like maternity",2,0,1,General Petite,Tops,Knits +1048,49,Cute but fabric has strong odor,"These are very cute and i bought both colors. they are accurately pictured. however, right out of the bag they had an especially strong chemical-type odor. must be the dye. i have been airing them outside in the sun trying to decide if i will keep them. they seem to be ""calming down"" a bit but it's been two days!! they are not jersey but are a non-stretchy type fabric with a slight sheen. dress up or down. i'm a 00 or 24 and the xs fit well.",4,1,1,General Petite,Bottoms,Pants +504,43,Summer perfection,Purchased the daisy sleep top to go with the matching shorts. i had been eyeing them for awhile in the store and so glad i took the plunge to get the set. i feel feminine and sexy as another reviewer noted while not being revealing (helpful for visitors and children :). i purchased a s as it does run a bit large.,5,1,0,Initmates,Intimate,Sleep +1094,36,Comfy dress but...,"I'm being eyeballing this dress for quite a while, finally i decided to jump on it and i was so ansy to receive it in the mail, finally arrived and some how wasn't what i was expecting, the front part has 2 pieces of fabric attached to the sides of the dress that wrap around your waist making that effect you see on the model. to be honest i didn't like that at all, i think they ruined the dress with that, the dress is very comfortable feeling, the fabric is super soft i can imagine wearing this",4,1,0,General,Dresses,Dresses +873,48,Cute top,Nice non clingy cut. has details so more than a basic t-shirt.,5,1,0,General Petite,Tops,Knits +836,48,Strange!,"I purchase this top of ""what i thought to be a beautiful denim tunic/top"" in a small on the sale rack with additional promo with beautiful details , but what is going on with the mid-section where there is at least 6 inches of space where there is no button or way to close the lower placket! and the lower bottom of placket is sewn shut so it makes the mid section bubble out, but why no buttons to close what would be a button down top???? you can slide your hand through this open space and it ope",1,0,0,General Petite,Tops,Blouses +996,29,Perfect wedding skirt!,Made my wedding outfit perfect!,5,1,9,General,Bottoms,Skirts +1048,66,Fabulous summer wide legs that flow like a skirt!,"Love, love, love these pants! i have yet to remove the tags and wear them, but that shall happen over this weekend. the fit is comfortable, and while the pants are not oversized, they are very generous in the m +that i purchased. the colour that seems to confuse more than is few is really a great combination of a black or navy stripe (depends on your lighting and opinion here...!) with tobacco/khaki on a white ground. the pleats at the top +just add to the great design, and i like that they sit",5,1,0,General Petite,Bottoms,Pants +1094,94,,Dress just did not fit will around the hips. also the string belt was defective - basically about to come off. looks like someone may have wore it and returned it. was not flattering at all.,1,0,0,General,Dresses,Dresses +1056,61,Color change in wash shocker!,"These pants are a heavier twill than the pilcro chinos i bought from retailer earlier this year. these weightier wide leg trousers have a perfect drape. my size is between a petite 26 and a petite 27. the size petite 26 fit me well so i judge them to be a 1/2 size large. +if i had written the review before washing them i would have given an overall rating of 5 stars. after washing once in cold water detergent and regular wash, the color lost a lot of blue. the color went from a wonderful fresh/sp",4,1,2,General,Bottoms,Pants +1094,37,Great for pregnancy,"I'm 7 months pregnant and bought this dress yesterday, it is perfect! the wrap design makes it possible to expand the skirt and still look cute. i'm 5'3"" bought the small and look forward to wearing this after i deliver as well.",5,1,2,General,Dresses,Dresses +996,56,Perfection!,"I am wearing a bodysuit and long skirt from bhldn for my wedding, and i bought this skirt to change in to for my reception. it is perfectly elegant, yet simple. i cannot wait to wear it on my big day! it can be dressed up or down so easily! love it!",5,1,0,General,Bottoms,Skirts +1056,25,"Great pants, too long for short people","I love the look and design of these pants. i'm 5'1, 110lbs and i ordered a 25p and still had to get them hemmed to even fit like pants. on the model, these look cropped but mine were even too long to be pants when i got them. i love the pant but if you are a petite, be ready to need alterations to the length!!",4,1,2,General,Bottoms,Pants +504,46,Ruffled daisy sleep top,The floral print and colors are so pretty for summer that it's tempting to layer this over a seamless tank and wear it out!,5,1,0,Initmates,Intimate,Sleep +873,65,Lightweight & comfortable,"I bought this in xl and it fits just as shown. i could size down to a l and it would still fit because there is a lot of flow to this top. so, if you want a more tailored, but loose fit, then size down. + + but, it isn't boxy. and, the deep v is sexy, but not immodest. and the pocket looks like silk, but it's just polyester. the pleating in the back gives this movement or move-ability, like when you drive. there isn't much pull. + +it's a thin light material and very cool for hot, humid summer",5,1,1,General Petite,Tops,Knits +873,43,Love,"This is such a beautiful top, so flattering, soft and comfortable. it is great as a layering piece. the colors are vibrant. the blue is a gorgeous blue, a deep cobalt blue. i got one in every color.",5,1,0,General Petite,Tops,Knits +895,38,"Beautiful top, but a little itchy","This top looks as pictured on the model. the color is great and true to the pictures with the light faded spots, which i really like and make it more interesting. however, i am on the fence about keeping it due to the itchiness of the fabric. the itching is mainly on the arm holes as it is tight to the skin. i wanted this top for when i'm feeling a comfy casual look. however, i'm not sure how comfy i'll be if i'm itching. i may over look the scratchy fabric as the color and fit of the top are gr",4,1,0,General,Tops,Fine gauge +873,41,Adore! but the white *is* sheer,"I own this in the dark blue and adore it. i read reviews later as i was pondering buying the white (why is it so hard to find a white shirt anymore that isn't see-through?!). one of the first reviewers raved that it wasn't see-through. i ordered it and ... nope, it's totally see-through. i tried it on and immediately saw the entire outline of my nude bra, and worse still - my belly button. back it went. i got the green instead. bummer about the white - fabric's different than the others.",4,1,0,General Petite,Tops,Knits +1089,33,Love this dress!,Beautiful dress that is very flattering! wearing it to my bridal shower. more appropriate for spring or summer!,5,1,0,General,Dresses,Dresses +873,65,Beautiful basic! a find!,"This is a very appealing and flattering tee! the details really make this quite lovely: the back pleat makes the fit fabulous and motion ideal, the stitching at the neckline is attractive and artistically pleasing, the proportions are balanced, nothing too full or tight. although the tee is 100% cotton, the pocket is 100% polyester, quite silky and a nice accent. i bought the ""white"", which is more of an ivory and gorgeous, with complementary deeper ivory stitching. my usual medium fits great (s",5,1,22,General Petite,Tops,Knits +1048,45,Pretty pant,"These are very pretty and comfy. the split in the leg runs a little high for me, so i will probably have to tack it. i ordered a medium (i'm 5'9"" 145 lbs usually wear an 8) but these were a bit big on me, so i've reordered a small. also, the 'blue' looks more like black with tan stripes.",4,1,0,General Petite,Bottoms,Pants +1056,56,Super soft & comfy,"Love these chinos, super soft and amazingly comfy.....and quite flattering for wide-leg pants!",5,1,0,General,Bottoms,Pants +1022,58,Best jeans on the market,"Ags are the only brand of jeans i wear. they fit beautifully and last forever. i like the slightly higher waist of these angels... very comfortable and flattering, with the perfect amount of stretch. be warned, unless you're 7 feet tall, you'll probably need to shorten these. typically i buy the angelinas, but they're hard to find nowadays. ag, please don't stop making petites! one more thing... try them on before you cut off the tags. i bought 3 identical pairs and returned one, as the fit was",4,1,0,General,Bottoms,Jeans +1008,60,Beautiful runs very small,Size up i was surprised that the fit was small i always seem to wear a 6 in retailer pencil skirts this was tight!,3,1,0,General,Bottoms,Skirts +1095,56,Elegant!,"I purchased this in london, early april, and i wore it to a summer wedding. it was perfect and hangs very nicely. the colors are rich and the deep blue flowers have texture. the front slit goes up to about the knee but doesn't split apart when walking which i appreciated. the only thing that i felt was a little off was the circumference of the sleeves. i have to keep them unbuttoned but thankfully it looks like just an interesting detail and not so much like an unbuttoned sleeve. a definite keep",5,1,6,General Petite,Dresses,Dresses +765,29,Not for the price,Very orange. the slits in the back are larger than pictured and not at the cutest part of anyone's anatomy... shorter in front and i have a short torso. the fabric is nice and lightweight.,3,0,1,Initmates,Intimate,Lounge +867,42,Just as pictured!!,"This top fits tts. the sweater part is cream, eyelet material is white. love it!",5,1,0,General,Tops,Knits +867,66,Off fit,"I actually had no problem with the neck hole of this shirt, even with the xs size. however, i had a huge issue with the bottom eyelet section. it's so tight! it stretches across my thighs and looks so funny, as the top part is still loose. i tried moving up to a size small and still had this problem. maybe just not for girls with thighs ... very strange fit.",2,0,0,General,Tops,Knits +867,50,"Cool, funky too",I love this top. i wish i had more like this to cycle into my wardrobe,5,1,0,General,Tops,Knits +1008,39,Classic with a twist,"I have been on the hunt for a black pencil skirt. so i decided to give this one a try based on the previous review. i love it! i didn't size up, went with 0p (26.5 in waist, 115lbs, 36 ish inches hips). the waist is fitted. the stylist said when she tried it on, it pooched, but i didn't feel that way on me. i had a simple t-shirt on and it looked so cute. the petite length was also perfectly on point. the lace part hit me above the knee, and the lining a little over that - perfect and flattering",5,1,0,General,Bottoms,Skirts +867,48,Love layers,I loved the layered look without all the bulk. the different textures make it so interesting.,5,1,0,General,Tops,Knits +867,46,Great top,"I like the casual look of this top. +like previous review - it doesn't have buttons or zipper, so a little difficult to fit into - pullover your head.",4,1,0,General,Tops,Knits +1095,51,Gorgeous!,"Just gorgeous, the dress makes a nice transition piece for early fall! perfect in every way!",5,1,0,General Petite,Dresses,Dresses +1095,33,Great colors,"I loved this dress after seeing it online.it is a pullover dress, and is easy to get on. my major problem with the dress is that the waist is extremely high (about 3 inches over my natural waist), and i usually have no problem with the placement of the waist in dresses. i'm going to keep the dress because i like everything else about it: the fit is flattering and the dress will be seasonless here in california. i""ll search for a wide belt to cover the waistline, or perhaps skip a belt altogether",5,1,0,General Petite,Dresses,Dresses +867,70,Super cute,"Can't say how much i love this top - ordered on a whim and when it arrived i was so pleasantly surprised. the sweatshirt fabric is thick, the under layers are high quality sheers. super easy to dress up or down - i wore it to a (casual) company holiday party and got tons of compliments. bonus that i just had a baby and the top seemed to hide my not-quite-prepregnancy body, but will also look great when i am back in shape. a definite keeper!",5,1,0,General,Tops,Knits +1095,36,Mixed feelings,"The print on this dress is gorgeous---but the material does not stretch whatsoever, and there are not zippers or buttons to ease in the fit. i always, always, always wear a size zero. it was a massive struggle to even get the dress over my head and on to my body. i felt like i was getting crushed! once on, although awfully small, the dress is just beautiful in every way. so chic! i just returned it and ordered two sizes up---here's hoping it fits!",4,1,2,General Petite,Dresses,Dresses +1095,53,Size up!,"The only reason i gave 4 stars instead of 5 is that it is way too small in the chest if you have anything up there.i usually always wear size 4 dresses. not in this dress! this beauty is a full size too small. trust me it is gorgeous but there is no stretch. it needs a zipper . that said, i exchanged it for the size 6 and all the flaws that i've read in reviews disappear. the sleeves are better and it falls nicely and is comfortable. also, there is no lining. just good to know.once you get it ov",4,1,0,General Petite,Dresses,Dresses +19,21,Should've gotten a larger size,"I purchased this jacket in my usual size s, but wish i would've chosen the m. the small works, but the sweater sleeves are tighter than i would've liked, making it hard to layer other clothes underneath. the sleeves are also just a little too short.",4,1,0,General,Jackets,Outerwear +932,53,Cosy and roomy,"This is a very nice top, but it is very loose and swingy indeed. i sized down one size, and it still is very relaxes. the material is soft, the colors are nice.",4,1,0,General,Tops,Sweaters +1095,33,In love with this dress!,"I really love the colors of this dress - very unique and classy combo. little bit of a retro look to it. even though there is no zipper it's somehow fitted and flattering. i plan to wear it to a wedding this summer in the mountains where it gets chilly in the evening so i'm thrilled to find a summer dress with sleeves. it will work well for plenty of other occasions too. only problem is the buttons on the sleeves are nearly impossible to button. just too tight. for reference i'm 5'9"", 140 lbs an",5,1,2,General Petite,Dresses,Dresses +834,59,Calia tunic,"It's still a bit cool here in minnesota. however, it won't be long before i can wear this lightweight, drapey but figure-flattering blouse. i am 5ft 3in and the 0 petite, fits well.",5,1,6,General,Tops,Blouses +1038,49,Super cute,"These are super cute and i love the ties on the legs. fit is true to size. i bought them on sale and they had some black marks on the front when received. i called retailer and their great customer service guaranteed that i could return them if the black did not come out when washed. it did, so i'm stoked.",5,1,0,General,Bottoms,Jeans +834,39,Whimsical,This is a cute blouse. i get lots of compliments. i bought the natural color. super flattering. i bought my normal size in most retailer stuff and had to return for bigger. the chest area is a bit snug. had to send back for a larger size.,3,1,1,General,Tops,Blouses +834,69,Everywhere top,"Super comfortable top. easily washable, 2 options with the sleeves, and a nice drape to the fabric. truly a go-anywhere top.",5,1,0,General,Tops,Blouses +1038,59,,I love these jeans. the fit is much better than the white pilcro hyphen slit jean which is cuts lower. nice weight. not to heavy and not too light in weight. these look terrific with the vanja peasant top in the yellow print. a darling outfit. the lace give them flair and dress them up so i can wear them to work. highly recommend!!,5,1,4,General,Bottoms,Jeans +1038,46,The lace up makes it!,Such a cute jean! got these specifically for the tie up lace ankle (and price)! also love the shade of gray i bought.,5,1,1,General,Bottoms,Jeans +834,53,Cozy,You know how you look in your closet and things just say i'm perfect for today. this top is like that. i got it a few weeks ago and have worn it often because it is so easy and hangs really nice. i bought the black one and am considering the off white one.,5,1,0,General,Tops,Blouses +834,41,Flattering top,Im normally an xs and i bought size 2 and it fit great. very slimming and looks great with white capris.,5,1,1,General,Tops,Blouses +834,47,"Calia tunic, yes and no","I bought the calia tunic in blk/wht and in red motif. i love the black and white one. the cut is flattering and stylish. comfortable. you can dress it up or down. all good. +the red motif is cut differently. the neckline is very low. the shape is different from the black and white one. i am not sure why but i returned it. +neither shirt is as long as the one pictured on the model. i would recommend the black and white one though.",4,1,1,General,Tops,Blouses +834,37,Great shirt!!,Love the shirt and style. shirt looks better in person than online picture. i would get a size down because it runs a little big.,5,1,0,General,Tops,Blouses +862,28,Very cute print!,Very cute print but runs large. it is really long too.,4,1,0,General,Tops,Knits +834,39,,I love this top and the relaxed fit. can be dressed up or down. i bought the bird print and liked it so much i purchased the umbrella print. now i'm contemplating getting the mixed dot! easy to just throw on with anything and the mix of colors keeps it versatile too!,5,1,0,General,Tops,Blouses +1079,39,So fun,"I love bows, +this dress is very cute and flattering, while being comfortable. it may be sleeveless, but i think with the right boots and cardigan, it can be brought into fall easily. color is a nice green. i tried on both the 00p and 0p, and though i loved the fit of the 00p better (width), i preferred the length of the 0p - otherwise, not much difference there... i think it is well worth keeping it, even though i don't need yet another dress... material is pretty comfortable too. back is lower",5,1,0,General Petite,Dresses,Dresses +862,66,So cool,Really adorable and very retro looking.. fits true to size but i got it a size larger because i wanted to tie up the bottom.. have had it 3 days & have worn it twice already!!!,5,1,1,General,Tops,Knits +834,52,,,5,1,0,General,Tops,Blouses +862,54,Unique t,"I love this unique t-shirt. the fall colors and ranchers theme are perfect with skinny jeans and boots. a western look that's feminine. the shirt is very soft, ordered my usual size small, a little long but good for tucking in.",5,1,0,General,Tops,Knits +834,55,Confortable,"This top is so nice i bought it in 2 colors. washes well but does need to be ironed. +fits true to size.",5,1,1,General,Tops,Blouses +862,56,Unique & colorful graphics/stitching; runs large,"I picked up this t-shirt at my local retailer today, immediately drawn to the super cute, colorful graphics, and the unique stitching at the collar, saying ""giddy up!"" to go with the cowboys, horses, cacti, and movie camera, (unusually!). the graphics are way cuter in person, as compared to the weirdly wavy-distorted and unclear photos shown online. if all i had seen was these photos, i would never have even noticed or recognized the design. go to your local store to see this in person, and you wi",3,1,2,General,Tops,Knits +834,53,This is a great blouse,"I ordered a size 10 in the neutral motif and it fits perfectly and it looks great. i am 5'9"" 145lbs with 38"" bust. the sleeves are the perfect length. i couldn't be happier with this purchase.",5,1,0,General,Tops,Blouses +862,66,Unique tee,Ditto on the oversized comments. am generally a large in tees and sized down to a petite large and probably could fit nicely in a petite medium. the stitching on the neck and front design are adorable. a bit long but great potential for layering to showcase the writing on the collar or cute design on the front. think it's a keeper!,4,1,0,General,Tops,Knits +862,53,,The tshirt is comfy and has a little curve on the tail which is fun!,5,1,0,General,Tops,Knits +834,29,"Excellent, comfortable, dressy or casual","I'm in love with this top! i usually wear a s/m or 6, and the size 6 fits perfectly. the cut is very flattering and i love that the sleeves can be worn rolled up and buttoned or down (and when they're down they hit right at the wrist, not too long or short). it's lightweight and comfy, but looks really pulled together. i can see myself wearing this both with ripped boyfriend jeans and sneakers and with dress pants and a blazer. a great transitional piece. + +i only wish this came in solid white (o",5,1,28,General,Tops,Blouses +834,32,Beige blah,"The fit was fine, but the fabric (the beige option) was bland. it washed me out. granted, i'm fair skinned, but it reminded me of sour milk. it's getting returned.",3,0,1,General,Tops,Blouses +1038,48,Great buy!,"I bought these for next year. ordered both 27 & 28 and kept the 27, which i would say is a pretty true 6.",5,1,0,General,Bottoms,Jeans +84,79,,"Runs large, but very beautiful and sexy! the straps are elastic so better to size down.",4,1,0,Initmates,Intimate,Intimates +1038,52,Love pilcros!,"Love white jeans and these meet expectations. i'm 5'9"" and 145lbs and usually wear size 29 in pilcros but these run a little roomier than others i've bought. going to dry them to see if i can shrink them a bit, but still fine and super comfy. ties on the bottom are fun.",4,1,0,General,Bottoms,Jeans +1038,37,Not white...,The design of these is adorable with the lace up ties however they are a dingy looking off white color. they are also pretty see through. returned.,3,0,0,General,Bottoms,Jeans +834,58,Very cute shirt,This shirt is very comfortable and i received a lot of compliments when i wore it. i bought the neutral print and everyone wants to get close to see what it is . i would buy another if it came in this type of pattern.,5,1,2,General,Tops,Blouses +834,36,Love this blouse!,This is a comfortable pretty blouse. i purchased the neutral print and am very pleased with it.,5,1,0,General,Tops,Blouses +1079,58,Grass green,"We always hope that the dress looks just like it is pictured i would say that this dress is more of an emerald green rather then a paler mint green . that said it is very forgiving stylewise because it does not cling and show your lumps and bumps . however the material is very thin like a sheet. length is good it is right to the knee on my 5'3"" frame. armholes are well positioned and not too big as to show bra or undergarments . + not so sure how it would hold up over an evening or afternoon wea",4,1,8,General Petite,Dresses,Dresses +895,38,,I bought this top in the stripe and i'm ordering the black now. it's a nice top to transition from summer to fall (even though the temp. doesn't change much in texas...#. it does run a bit large so size down. held up nicely when washed #hand wash cycle).,5,1,0,General Petite,Tops,Fine gauge +994,34,"Great skirt, but size up a lot if you're curvy","I understand this is a pencil skirt, so it's gonna be more body hugging. however, this really did seem to run small. i only tried it on because it was on sale and there was a promotion. my thoughts below: +___________ +pros: +- great design that will match with a lot of things. +- very soft and comfortable overall due to being part modal. lots of stretch. +- no dry cleaning here. hand wash, which is a plus for me. +- it's a thicker knit, but it's breathable, too. no issues with being see-through. +- re",4,1,1,General Petite,Bottoms,Skirts +834,28,Love love love,I got two of the shirt am totally in love with them. i didn't get the one in black only because i have too many things in black. the shirts look awesome with leggings or skinny jeans. i'm very happy with this purchase!!!,5,1,0,General,Tops,Blouses +1038,36,Adorable capri jean!,"I tried these on in in a 27/4 in the store and they were a bit snug. they graciously offered to look online and found the 28/6. they arrived in less than a week and are perfect. a note was enclosed saying they actually ran out of this size but another store was able to find them and ship...i love that retailer did not even call and worry me over it, they just fixed the problem. thank you!",5,1,1,General,Bottoms,Jeans +834,56,The perfect top,"This top is very flattering, the fabric flows and moves. it fits perfectly (slim cut), but hides tummy bulges and other imperfections. and it's slimming too. can be dressed up or down, goes with everything. i ended up buying all three colors, and if there were more, i would buy more!",5,1,7,General,Tops,Blouses +1038,47,Perfect summer jean,"They fit snug and accentuate all the right curves. they could be shorter. the lace up sides are interesting, but i might sacrifice the lace ups for making them shorter. actually they are cuter on in person than in this photo.",4,1,0,General,Bottoms,Jeans +834,65,Sweet!,"I bought this in the black and white and like it a lot. i typically wear an xs or s, and purchased the small. glad i did because i think the xs would have been too snug. i like the tunic length and the fabric feels soft and smooth. it's a little low cut for me, but i'll wear a cami under it.",5,1,16,General,Tops,Blouses +834,54,,"I love this top, but i washed it once, in cold water, and hung it dry. it shrunk just enough that it's now too tight around the bust and gaps open up between buttons there. so disappointing! i will have to send it back.",3,1,16,General,Tops,Blouses +834,28,Great tunic,I love this! i pair it with jeans or leggings and it works wonderfully. it's comfortable and stylish and a necessary addition to my wardrobe. it's a staple piece that i know i'll be able to use for years.,5,1,0,General,Tops,Blouses +1064,37,,"Love everything about these pants. a little sheer, but super beautiful and comfortable.",5,1,2,General,Bottoms,Pants +1008,25,Love this shirt,I wasn't sure how the fabric would be since i ordered it online but i wasn't disappointed. its got a lot of movement which makes it really comfortable while still being cute. it's a little longer than i anticipated but i don't mind that. it just gives it a little more versatility. also it has pockets!! i love pockets so maybe i'm a little biased.,5,1,0,General Petite,Bottoms,Skirts +862,44,Great stable manner,"I saw a sales associate (sa) wearing it at my local retailer and totally loved it. this t-shirt runs very large, so it depends on how one wants to wear it. the sa wore it oversized and tied to the side, super cute. i tried on a regular small and it was still 2 sizes too big and too long on me. i ordered the xs petite and it fits perfectly, not too fitted and not too loose (i'm 5'2"", 34b, 26 waist, 36 hips). my mother was a great embroider and the ""giddy up"" embroidery work at the neckline and the",5,1,0,General,Tops,Knits +1038,47,Fun and stylish,"These are a different take on the white jean. thick enough that you don't see undies. cool lace detail on the ankles. i have very long legs, so they hit me a little higher than described. i did undo the laces a bit to give them a little kick at the bottom. i love the fit of the plico jean. i own a few pairs and they sit just high enough on my waist so when you bend over your bottom doesn't peek out. i usually wear a 27, and they aren't too tight and have a bit of stretch, but don't loose their s",5,1,0,General,Bottoms,Jeans +834,30,Perfect for work and going out!,"Love this top! you can definitely wear this out with jeans or with dress pants for work. it can be dressed up or down, so it's very versatile. the red motif is a gorgeous color for spring and summer. received lots of compliments!",5,1,0,General,Tops,Blouses +1008,32,A little hippy but beautiful design,"I got the orange motif skirt in s. i'm 5'3"" and 130 so it fits snugly but doesn't need hemming, which is great when you're petite. i love the design and that it has pockets, but it's a very full skirt and seems to visually add a couple of pounds to your middle if you have a shirt untucked over it. but it's beautiful worn with a tighter shirt tucked in. the color is more red than orange to me as well which is a plus!",4,1,0,General Petite,Bottoms,Skirts +850,41,,Beautiful top! the body flows nicely and the colors are wonderfully vivid. it goes with everything and looks great for work or going out. my only gripe is the sleeves are really tight. i struggle a little to get on and off but once on it looks awesome.,4,1,7,General Petite,Tops,Blouses +872,46,Beautiful draping & dark green color,I bought this in size xl in the moss color. it fits true to size. it's very comfortable--the fabric is soft. i love the draping of this top. i'm a pear-shape and this type of cut is my favorite. the moss color looks black online but is really a dark forest green. i'd love to see this top made in other colors.,5,1,2,General Petite,Tops,Knits +895,56,So elegant,"Received today, the fit is true to size quality fabric beautiful color. will go with so many things!",5,1,1,General Petite,Tops,Fine gauge +1030,53,Nice jean but righter green than shown,"First of all, this jean fits really well, but i usually wear a 31 in mother jeans and i had to go up to a 32 in these (ugh!) because they just ran smaller or whatever. i am curvy on the bottom but the 31's just felt too tight and pulled everywhere. + +second, the color is not quite right in this picture; it looks more military green. it is not - it is a much brighter military green vs a moss green. that is throwing me a bit. not quite as versatile or neutral to me. + +meanwhile, the styling with the",4,1,4,General,Bottoms,Jeans +850,59,Tight armholes,"I loved this shirt and attempted to buy it - however the armhole is so small i couldn't barely get the shirt off and almost had to call someone into the dressing room to pull it off of me. i'm usually a 6 and i tried on the 6 and 8, and both shirts had the same problem. it wasn't exactly the sleeve that was too tight, but the arm hole that was not big enough. it pulled across the top of my chest and was not roomy enough to slip in and out of. which was odd because the rest of shirt was fine. i d",2,0,1,General Petite,Tops,Blouses +895,55,Perfect!,"Could not say enough great things about this jacket. nice quality and drape and such a wearable, comfortable option as opposed to a more structured blazer. nice, true to size fit (petite small was perfect on my 5'2"" 115 lbs frame--not too tight and not baggy, sleeves still 3/4.) will order an petite xs for my daughter, too. retailer, i would definitely buy other colors if you decide to order them.",5,1,12,General Petite,Tops,Fine gauge +1087,64,Huge and shapeless,"I have a pair of mih jeans that are the only jeans i own that i absolutely love. everything about them. this jumper looked versatile, useful and fun, so i splurged during the 25% off dress sale. + +my experience with mih is that the sizing runs true, or european, and thus small. i ordered this in a medium and it is gargantuan as well as virtually shapeless. it looked horrible from every angle: front, back and sides. i cannot imagine it having more fit even in a smaller size. + +the fabric is nice, p",2,0,2,General,Dresses,Dresses +617,39,Wow!!!,"I hesitated to order this for a long time but am glad i did. i was concerned that it would have trouble staying on the shoulders, and would be unflattering to my large chest (34f). however, it is surprisingly comfortable and secure (has some kind of rubbery grips on the shoulders that keep it in place). very well-designed, and actually supportive to the chest. it offers the sun-protection i am looking for (i am also very pale and tired of getting odd burns on my stomach and chest), and as i head",5,1,4,Initmates,Intimate,Swim +1036,35,Perfect !,"These jeans are my new favorites! very flattering cut and color, and very high quality. i've worn them a ton since i got them, and they haven't stretched out or lost their shape at all. only thing i would caution is that they run small... for reference, i wear a 26 in paige denim, a 27 in citizens, and 28 was perfect in these.",5,1,0,General,Bottoms,Jeans +617,25,Love!love!love this suit,"I was really intrigued by this swimsuit when i saw it online but i wasn't sure how it would look on me but the reviews convinced me i should get it and figured if i didn't like it i could just return it. i love this suit, the color is beautiful and the high neckline is off-set by the open back. for anyone who has a large chest, which i do (32g), this is one of the most secure/supportive swimsuit i have ever tried on. do not hesitate to buy this suit, though i would go a size up if you have a lar",5,1,0,Initmates,Intimate,Swim +895,43,A must have closet staple,"This was my favorite piece in my order. it fit so well that i immediately went online to see if they had other colors. they don't. i voice the other reviewers opinion: get more colors in of this style. i would order in a heartbeat. i plan on wearing this to work (it's freezing in my office) but it is versatile enough to pair with jeans for a casual look. the material was soft, woven tightly (a good thing) and well made. good one retailer! definitely a keeper.",5,1,4,General Petite,Tops,Fine gauge +617,28,,This was surprisingly more complimentary and easier to wear than i though it would be. i love vix bathing suits and the quality is exceptional!,5,1,2,Initmates,Intimate,Swim +1036,40,"Great quality, perfect jeans!!","These jeans fit so well and are made of really high quality denim. soft and comfortable but not too much stretch...just enough. i'm short so i have to cuff them. i kinda wish they came in petite or ankle length, but they look cute cuffed too.",5,1,2,General,Bottoms,Jeans +850,58,Light and flowy,This shirt is very flattering on. it's perfect to wear to work and also in a casual setting. it is rather short so it would be best to pair it with high rise pants!,4,1,0,General Petite,Tops,Blouses +617,54,Sleek and well made,"This is a very well made swimsuit with soft foam cups and fully lined. the shoulders stay put with thin strips of foam that are sewn in. very comfortable and easy to move in; my arms have full range. the color is like the online photo, and to the teal close-up i posted of the shoulder area. +. +the size 'm' that i ordered fit my bust very well with smooth lines and decent support. i'm 5'2"", currently 33-25-37, 30d / 32c bra, with a average to long torso with a full bottom and thighs. i think the",5,1,4,Initmates,Intimate,Swim +1089,34,Gorgeous lace!,"I was so pleased to receive this dress after purchasing it online -- the color is vibrant, the lace is beautiful, and it is fully lined! fit is true to size, and its a fit and flare dress so flattering for most body types. i could dress it up or down for lunches or weddings so overall, i think its a great dress for a great price!",5,1,3,General,Dresses,Dresses +391,30,"Very cute, very small","Despite other reviewers comments on size - i really wanted this one to work so i ordered it. i'm typically a size xs and d chest and instead i ordered a small. the body of the sit for well but the cups of the suit i'd said for more for a b. (if i lifted my arms i would literally come out of it) a final comment on this suit - it looked like there were these little sticky spots all over the suit like stickers had been removed. it was reticketed and it didn't really feel ""brand new"" when it arrived",3,0,0,Initmates,Intimate,Swim +391,36,Too big in the chest,"I'm a 14 bottom and a 10/12 on top, so i'm curvy, which makes one-piece swimsuits hard to shop for. i ordered a m & l, and while the m overall fit me better, the cup size was still way too big on me. i'm a 34d, and i need another set of my 'girls' to fit into the cups. otherwise this swimsuit is so beautiful!",3,1,5,Initmates,Intimate,Swim +391,29,Gorgeous suit with unique detailing,"I love this suit, and have gotten so many compliments on it. i weigh 106-108 lbs. and ordered a s. typically i order xs but am glad i went with the size up. the coloring is beautiful. the legs are high cut / flattering. the top has no padding, and shows a seamless result. highly recommend!",5,1,8,Initmates,Intimate,Swim +1089,30,More gorgeous in person,"This dress is even prettier in person. i'm 5'5"" and usually a 4 in fit and flare dresses and got this in a 4. fits like a glove and hits right above my knee. the hook and eye closure does get caught on the delicate lace, so be careful of that. otherwise, this dress is perfect for summer weddings!",5,1,1,General,Dresses,Dresses +1001,46,A little bit tough.......and comfortable,"I have a number of mother denim items (jeans, skirts, etc) in a variety of sizes and, unfortunately, i find mother sizing very inconsistent. this skirt is no exception! it is, as expected, high quality: primarily cotton with a fair amount of stretch; very soft; frayed at both the hem and the waistband; and, it runs a little small, i have another mother pencil skirt in a size smaller that is actually wider than this skirt; still not sure if i'lll keep it.",4,1,3,General,Bottoms,Skirts +1089,31,Beautiful dress,"Love this dress! very feminine and flattering. i would say that it runs true to size, or a little big. size down for a snug fit at the waist.",5,1,1,General,Dresses,Dresses +1028,43,Tight in the waist,"These were perfect in the legs, nice and stretchy, but problematic in the waist. i'm generally a 31/size 12, but i had to squeeze to get them to close. +they've already gone back. if you have a tinier waist they'd probably be fine.",2,0,0,General,Bottoms,Jeans +81,29,My favorite socks,I am so happy i decided to purchase these. they are the only invisible socks i've found that actually stay on my feet. all others always slip off my heel... these are great!,5,1,0,Initmates,Intimate,Legwear +650,34,Stunning,"These are really stunning. they look exactly like the picture with the pattern matching up perfectly at the seams. i love the mirror image pattern. they're just a bit snug where at first i thought i might not be able to get them on, but once on, they actually fit perfectly. so, i think that's actually how yoga pants are supposed to fit. i'm 115, 5'6"" and i got the xs.",5,1,0,Initmates,Intimate,Lounge +391,34,Cups size too big!,"Loved the design and quality of this suit but the cups seemed huge. i weight 135lbs 5'6"" and wear a 34c. i bought a large in this suit because other reviews said it ran small (normally i wear a size medium) i did like how it fit everywhere expect the chest. i'm wondering if the medium will still be too large in the chest and hoping the rest would still fit okay. not sure i want to go through the hassle to exchange and it not fit again! it's so cute otherwise and would be perfect if you have a la",2,0,4,Initmates,Intimate,Swim +391,38,Adorable! very flattering!,"This suit is better than i expected. i'm a large d cup and with this type of top style, i typically size up. i'm a 4 bottom but would normally would order a large top because this type of top runs small...not here. i ordered the large and, much to my suprise, it's too big. i'm sending back. i may order a small and medium just to be safe, but the cups are definitely not cut too small here. the bodice is very flattering with the black and white contrast. so pretty!",5,1,2,Initmates,Intimate,Swim +391,25,Unique and flattering swimsuit,"I purchased this for a recent trip with my friends and thought it was worth the price. the swimsuit is comfortable, yet flattering and all the patterns are really unique. i received a lot of compliments about the swimsuit! the one downside was that the fabric hook for one of the straps broke so i had to sew it back on. other than that, this was a great purchase! i recommend this to anyone who wants a very whimsical, but comfy swimsuit!",5,1,1,Initmates,Intimate,Swim +192,44,Boxy moo moo,"Disappointed :-( +this top has a boxy shape and looked like a mini moo moo on me. i have a similar shape as the model and it looked nothing like that on me. bummer! i liked the quality and weight (not too heavy nor too light) but shape is unflattering. it's going back.",2,0,0,Initmates,Intimate,Lounge +650,43,Flattering!,"The colors on these leggings are just beautiful! the material is very soft and has a nice thickness to it. no issues with see thru material. i am 5'8"", 145, and i ordered my usual medium.",5,1,0,Initmates,Intimate,Lounge +1094,35,Great for work,My local store offered this dress in a navy colorway with sky blue and pink embroidery. tried it on and fell in love! it fits well while being comfortable. my favorite part is the skirt - perfect flirty a-line. already bought matching cardigans and can't wait to wear this to work. so perfect for spring!,5,1,40,General,Dresses,Dresses +1094,47,"Beautiful dress, imperfect fit for me","I went to the store specifically to try this dress on, because i was captivated by the photos online but worried about the fit. it was just as pretty or even prettier in real life, but unfortunately i couldn't fill out the top. there was gaping even when i went down to a size 0, even though i mostly wear a 4 and sometimes a 2 in retailer dresses. (the 0 fit me everywhere else, which is why i'm saying this dress runs small.) would it have worked with a padded bra, or for someone with more cup size?",4,1,9,General,Dresses,Dresses +996,44,Very comfortable!!,"I love this skirt! so soft and comfortable, i wore it casual with black nike sneakers, a black loose turtleneck top and a moto leather jacket. i tried on the m and l and went with the m, so i would say it is true to size because that is what i usually wear. i'm 5'9', 145 lbs, +nice thick fabric, but not heavy, good for cool weather.",5,1,2,General,Bottoms,Skirts +1094,46,Great for a special occasion,"I just purchased this dress yesterday in the navy for my anniversary next month. i have to say its totally stunning on. the embroidery is beautiful, extremely figure flattering and the dress is very well constructed. i have to disagree with other reviews who say it doesn't or won't work for bustier women. i am a 34 d, 5'8"" tall and normally wear a size 4. the 4 fits perfectly and the deep v-like neckline creates a very nice bit of cleavage. maybe too much for some at the office i would say, but",5,1,3,General,Dresses,Dresses +1079,56,That's not a wrap,"I chose this dress to try to flatter an hourglass figure, but was disappointed. the fabric is a beautiful soft, fine silk, but unforgiving. the cut is not truly a wrap, and, with a fixed thin elastic waistband, was too short waisted for me. while the model looks elongated, the thin line under my bust created two poofy sections... not flattering at all. while i was drawn to the shape for my body type, it may be better suited to another. happy hunting!",3,0,0,General Petite,Dresses,Dresses +1094,45,Great fit and style!,"Loved this dress. i am 5'5"", 34c, normally wear a 2 in most. the 0 fit (a 2 wasn't available in-store), but i will say showed more cleavage on me than in the shown picture. + +gorgeous dress- wish it were just a little less costly, but would be a great purchase for easter, weddings, etc.",5,1,3,General,Dresses,Dresses +1094,49,Exceeds expectation,The dress looks better than the pictures online. it also arrives quite quickly after i placed my order. i am about 126 lbs and 4p fits me perfectly. the embroidery is so radiant in multiple colors against the navy blue dress. i am very please with this purchase.,5,1,0,General,Dresses,Dresses +1094,41,,"Very pretty dress, the blue is a little lighter than navy but is still really nice. the embroidered flowers are lovely as well. the a-line cut is very flattering on. i can't wait to wear this dress this spring!",5,1,2,General,Dresses,Dresses +996,40,Love it,This skirt is so cozy and comfortable. it is form fitting but has a lot of give/stretch. the material feels high quality and heavy without being overly hot. i am sure this will be a go to skirt.,5,1,0,General,Bottoms,Skirts +996,34,Cute and versatile,Great quality and works in many ways! highly recommend.,5,1,0,General,Bottoms,Skirts +1094,27,Perfect floral dress,"I wore this to a gala and i plan on wearing it over and over again. the dress is very comfortable and looks polished. i wore this dress for 12 hours and did not want to take it off. the embroidery is beautiful and appears to be well done. i am 5'5 and the dress hit me 2 inches above my knee. i highly recommend this dress, i received so many compliments.",5,1,4,General,Dresses,Dresses +1094,44,Beautiful dress,The stitching on this dress is absolutely beautiful and very detailed.,5,1,14,General,Dresses,Dresses +1094,59,,Love this dress so beautiful embroidery is lovely....well worth the price!!!,5,1,0,General,Dresses,Dresses +1094,60,Love!,"One of my new absolute favs! so elegant and flattering. the dress is as appears online and it is true to size. i purchased my usual size 4 with 27"" waist, chest 34 b/c. note, that there is not a lot of give to the fabric, so busty women may need to size up. purchased with the minuet necklace!",5,1,8,General,Dresses,Dresses +1094,57,Beautiful dress,"This is a beautiful dress. lovely fit. unfortunately, the fabric wrinkles easily. i had to return it because it did not accommodate my slumpy posture, and it was too much to maintain for me since i don't iron.",4,1,29,General,Dresses,Dresses +1094,26,Beautiful dress but not for large chests,"This dress is gorgeous, but if you have a larger bust size, i would not recommend it. unfortunately, it was not available in any nearby stores and i had to order online. the low cut looks cute on the model but realistically with a chest it ends up looking a bit too revealing. i am bummed because the dress really is beautiful!!",4,1,1,General,Dresses,Dresses +996,37,Flairs out at bottom,"I loved almost everything about this skirt. thick and lined and love the buttons. comfortable. the only problem was that the two sides flared out at the bottom, presumably from the buttons. i was torn, but in the end it just looked too silly and it was sent back.",3,0,2,General,Bottoms,Skirts +996,33,Really nice all around,"I'm 5'3"" and 160 pounds with short legs and got a large petite. it fits really well (a tiny bit too short but could just be my proportions) and the quality seems very high. definitely can be dressed up or down (good for a business casual work environment).",5,1,0,General,Bottoms,Skirts +1030,37,"First time, but not last time, customer","This is the first time that i have tried mother jeans, and i am a fan. these jeans fit tts, and the high waist is flattering and stays put. i personally am a big fan of the distressing - it's just enough, but not too much - and it's lined on the inside so it won't get worse. i know some people won't like that, but i did. also, they hit right below my ankle (i'm 5'5"") instead of being a few inches too long -- a major bonus. thus, they look great rolled or not. but perhaps most importantly, these",5,1,2,General,Bottoms,Jeans +1094,41,So pretty! petites will need petite sizing,"I'm 5'2"" 110, 32-24.5-32.5. i tried both the regular 0 and petite 0. the difference was quite substantial. sometimes if an item runs shorter or smaller, i can get away with regular sizing. the regular 0 was all wrong, and the petite 0 was perfect in every way the regular 0 was wrong! the petite sizing was perfect for top coverage, tamed the flare to just the right amount, and the length hit right at the perfect spot where it is supposed to above the knee. gorgeous embroidered detailing and versa",5,1,13,General,Dresses,Dresses +1094,31,Great fit,"This dress is well made, great fit, perfect a-line. the bust was lower cut than shown in the picture, but it fits well even with a large chest. completely flattering and i would highly recommend!",5,1,1,General,Dresses,Dresses +1037,21,Great pants,"These pants are my favorite! not only is the fit slimming and perfect, but i get compliments on the design every single time i wear them. i absolutely love these, well worth the money.",5,1,0,General,Bottoms,Jeans +1094,24,Love this,"This is a great dress, i feel like it hides any imperfect spots including some armpit fat or belly fat. i have gotten several compliments on this dress because the stitching for the flowers is very high quality!",5,1,2,General,Dresses,Dresses +33,19,"Pretty, but not the most comfortable","I got the burgundy color and i do have to say that the color looks a little better online than it does in person, but it's not too much of a difference. this is a really cute thong, and if you're just trying to be sexy/romantic, then i think it would be fine and there's nothing at all wrong with it. however, i like to wear thongs just in general because i think they're comfortable and i like not having to worry about panty lines, and this is definitely not the most comfortable. the front pattern",4,1,0,Initmates,Intimate,Intimates +1079,60,Beautiful colors - but it's short!,"This is a beautifully designed and made sweater dress. really love it. however, there's no way that model is 5' 10"" in the photo because i'm 4 inches shorter than that, and the dress is 2 inches shorter on me. it's really not a dress, it's a tunic. i'm happy with it because it's so pretty, but i did think i was buying a dress. i just wore it with leggings and i'm happy with a beautiful tunic!",5,1,0,General Petite,Dresses,Dresses +1094,46,"Beautiful, flattering high-quality dress","This dress is a home run on all accounts. the embroidery is gorgeous, the fabric is high-quality, and the a-line cut is slimming. i found this dress to run true to size. i am 5'11"" and the length hits above the knee--so it could be longer on shorter heights. i purchased the white dress initially and now have also ordered the navy.",5,1,3,General,Dresses,Dresses +868,65,Boxier than it appears,"Interesting, slightly transparent fabric. neckline is not so open as pictured. body is boxier than pictured. +would recommend as a maybe.",3,1,6,General,Tops,Knits +819,36,,,5,1,0,General,Tops,Blouses +1094,44,Black and white is adorable,"I got this version in the black and white and can't wait to wear it. it is very flattering on and will look great for those spring/summer events. the only thing that could have made this dress better would be side pockets like the fall/winter navy dress by the same designer had, but don't let that minor detail hold you back.",5,1,1,General,Dresses,Dresses +996,31,,,5,1,0,General,Bottoms,Skirts +921,26,Looks good but for specific sizes,"I am curvy and this top, while stylish and i love the pockets, just didn't do it for me. it made my shoulders look wider than they are, which is a big no no. it would probably look better on someone with smaller shoulders or slimmer. the wool was also a tad itchy - not too itchy, just a bit. in general i don't wear wool without cashmere, i also don't wear non-italian wool because it is a bit rough and my skin reacts to it. so i stick to wool cashmere blend or loro piana soft wool. this sweater s",3,0,1,General,Tops,Sweaters +1094,54,Classic retailer quality and details,"Finally a dress that ticks all the right boxes: mostly natural fibers, lovely details, fantastic pattern placement, and an easy fit that doesn't require alterations. +. +the dark blue cotton is similar to my embroidered floreat 'sunless skies shift' from around 2008 which looks like new after so many years (but required alterations even in petite). +. +i'm 5'2"", currently 33-25-37 (30d/32c bra). the size 0 regular fit me and ended just below my knees. a bit low cut, and a tiny bit below my nat",5,1,4,General,Dresses,Dresses +1094,61,Pretty in person,"This dress is much prettier in person. the embroidery is very beautiful and the slight sheen to the material gives it a dressier look than i expected. the lines are simple, flattering without clinging or choking. it is a nice versatile dress that can be casual or fit for party.",4,1,1,General,Dresses,Dresses +996,41,,The fit and design quality was grea! i love the fact that xxs petite is available online.,5,1,0,General,Bottoms,Skirts +996,25,I love this skirt,I love this skirt so much. it's so comfortable and flattering. the button design along the sides is adorable. it's got a liner inside the skirt that ensures that it's not see-through in anyway. it's a great buy.,5,1,0,General,Bottoms,Skirts +835,46,Not for the big busted,"I took a chance on this top because i loved the color and print. it is mostly as pictured, but because i have a larger chest, the peplum didn't hit me in the right place. it would probably work fine for someone thinner with a smaller chest. i was surprised that it was also somewhat sheer, which was disappointing considering the price. i returned it.",3,0,0,General,Tops,Blouses +483,21,,This product fit well and was soft and beautifully made.,5,1,0,Initmates,Intimate,Sleep +1076,40,Design flawed,"I ordered this online, and took it back the day i got it. i could not fit the neck hole over my head, therefore i couldn't even see how it truly fit. i had high hopes for this dress.",2,0,2,General,Dresses,Dresses +812,25,Sizing runs very large,"I am petite and ordered size small, and it came looking like gym sweat pants. the material was very nice, but in terms of the waist and length size, both run incredibly large. the cuff of the joggers are also not elastic at all, and hangs loose widely. will have to return this item, unfortunately.",1,0,0,Initmates,Intimate,Lounge +1099,68,Pretty but sheer,"This dress is black and white as pictured (as opposed to actually being cream), and it fits true to size. i've found that this particular brand runs tight in the shoulders for me, but that isn't the case here. the cut is very flattering, and it's great that this has functional pockets. + +i was excited that the skirt is fully lined, but the top is ridiculously sheer. even with a nude bra, this dress needs a camisole underneath it. it's so flattering, but i'm not sure if i'll keep it.",4,1,1,General,Dresses,Dresses +1076,41,Great. simple yet different black dress.,"This is my third velvet by graham and spencer dress and i was not disappointed in the least... i love the fabric, how it can be dressed up or down, worn with a wide variety of footwear and is comfortable at the same time. the fabric is breathable and i can definitely see this becoming something i will throw on with a simple necklace, leather jacket and sneakers or boots on the weekend for errands around town, then be able to switch out my shoes for drinks in the evening. it's a simple back dress",4,1,0,General,Dresses,Dresses +815,24,,Runs a little small in the shoulders/bust,3,1,1,General,Tops,Blouses +1087,27,Large in bust,"This dress is lovely in person- light rose color and quality fabric. i'm a 32c and had to go down from my usual 2 to a 00 to get a proper fit in the bust and bodice. the full skirt leaves plenty of room to size down if necessary. this would work best on someone with a larger bust and small waist, but because of the cut i recommend trying on before buying. if you are smaller busted, the front tie can be adjusted slightly to get a better fit. the skirt portion is unlined, though, the fabric is thi",4,1,4,General,Dresses,Dresses +1076,49,Sexy and comfortable,I love this dress. i didn't think that i would feel at ease as it is very form-fitting. but it is so comfortable! and warm. it is dressy yet casual. i have received many compliments.,5,1,0,General,Dresses,Dresses +1087,65,Disappointing,"I really wanted to love this dress. i thought i might be able to dress it up for a wedding i'm attending, but it was kind of a serious no go. first off, i ordered a petite size, but it was still longer than on the model--i'm 5'5', so not even technically petite, but i thought it might be a better length for me that way. it was not a great length, and the pleats and pockets (which would be great in theory) make the skirt fully (and pouffier at the waist) than i would have liked. i love the way th",3,0,6,General,Dresses,Dresses +1099,44,True black & white staple,"I have ordered many black and white dresses and end up getting cream and black. not this one! this is truly b&w! i love the stripes, the length (at the knee, 5'5"") and the pockets! time will tell in terms of fabric as rayon is not the most durable. the collar seems to stay down which makes it look 70's but fabric tape easily fixed it. overall, i love it!",5,1,2,General,Dresses,Dresses +1106,31,,"I tried this dress on in an xs petite. the dress runs slightly bigger, it sort of looked like a tent on me, whereas other xs p dresses at retailer fit tts. the other thing is that the dress just doesn't look like an almost $200 dress. the band that runs across the bust goes under the arms too. it isn't sewn in though, and it was folding down under the arms, making it look like its ripping off. the collar too seemed to pull down right in the center, as if the material was too heavy to stand it's we",1,0,4,General Petite,Dresses,Dresses +1045,41,Yuck,"I love jumpsuits - except for this one. the fabric is blah. it's between plastic and the material that they make flags out of. the print is adorable and the buttons up the front are super cute. the tie thing that's just hanging there? it's a tie thing that just hangs there. it doesn't look good hanging, and it doesn't look good tied. this jumpsuit had so much potential. i'm definitely disappointed. for sizing reference, i am 5'5"", 135, 34c and a small was perfect.",2,0,0,General,Bottoms,Pants +835,50,Gorgeous print,"I fell in love with the print, it is much prettier in real life. more teal burgundy on yellow and more vivid than it shows here. the waist elastic is too tight and high for me....would prefer it looser and not on natural waist. but i still bought it and am ordering a second one in hopes that the elastic tightness is varied.",4,1,2,General,Tops,Blouses +954,52,Beautifully made accessory piece,"I am short waisted, and generally a petite on the top, so a lot of these sweater vest toppers i find to be too long in the torso for me. this one, however, is the perfect exception. it is soft, but with some structure, comfortable, and not too hot for warmer weather climates during the spring. i bought it in seattle, though i live in dallas, and found it to be a perfect layering piece with a 3/4 white t-shirt and a jean jacket, while walking around the rainy city. +fyi: 5'2"", short waist, broad",5,1,10,General,Tops,Sweaters +878,56,Disappointed,"I ordered this tee despite the price. the fabric is very thin and the quality was poor. nice concept for a tee, but failed in quality and value. it was returned.",1,0,2,General Petite,Tops,Knits +350,43,Worked for me!,"I ordered down a size based on other reviews. i am 5' tall, 110 lbs and a size 26 is a great fit. i ordered both the navy and turquoise colors. my only complaint is the turquoise color is not the vibrant blue in the photo but more of a green tone.",4,1,0,General,Bottoms,Shorts +1096,53,Beautiful dress!!,I had been waiting for this dress to go on sale and when it did it was only available in a petite xs. the only reason i said it ran big is because it was a petite and i usually wear a regular. i am 5'4 size 2. the length is perfect and i have really narrow shoulders so the petite fit perfect. the details on this dress are just beautiful and extremely comfortable.,5,1,0,General,Dresses,Dresses +1096,48,Sunny cheerful dress,I love this dress. it is beautiful and the quality is superb.. i too found it tight in the neck area. i had to untie it as other reviewers have mentioned. nice casual dress.. very comfortable and perfect for vacation this summer.,4,1,0,General,Dresses,Dresses +350,37,,"I love these shorts!!!! i usually have a really hard time finding shorts that fit my pear-shape, but these are great. i bought in a few different colors and i definitely will get a lot of use out of them this summer!",5,1,0,General,Bottoms,Shorts +1096,35,Lovely dress,"I love this dress. length falls as shown on model. i'm not sure if this fits true to size or not. i am normally a medium and kinda wished i would have ordered a large. i find that the neck is too tight and have to loosely tie it. also, the lining is smaller inside and it ends up causing the arm hole areas to roll inwards. so i feel like the back end up being sort of cape like. it's rather weird. the large may have too much material though. but overall, i still love this dress minus those few fla",4,1,0,General,Dresses,Dresses +1096,61,So pretty!,"Dress is wonderfully made. the fabric is soft and the print is beautiful.wonderful detail,especially the ties. nice lining...not see thru at all. +mid calf length looks good with heels or flats. +lovely dress for a sunny day or an evening out!!",5,1,17,General,Dresses,Dresses +1096,63,Size way down,"I'm 5'8"" usually a size 2/xs and i bought this in a petite xs. never would i have imagined i'd want a petite size but i accidentally took it into the fitting room. the shorter length and less billowy effect is much more flattering. that said it still hit just below the knee and is very loose and flowing, but in a good way. :)",4,1,0,General,Dresses,Dresses +290,62,Yes yes yes!,"I'm always looking for easy casual items that will withstand being washed a million times, and i think this one will fall into that category. it's a nice thick knit - durable yet soft and sooo cozy. length is fantastic for leggings. i'll basically live in this on weekends!",5,1,1,Initmates,Intimate,Lounge +1009,35,Cute skirt!,Great detailing in how it's made. may look best on someone who's slender. it runs small and will show if you have even slight curves.,4,1,0,General,Bottoms,Skirts +1009,39,Very whimsical,"I tried on the xs in store i typically need petite) and it was a great length for me, i think petite would be too short for me to wear to work. the xs was a little snug on the waist, but the rest of the skirt fit perfectly, so though it was snug, i think i would still buy the xs. (stretchy band). the cream color/ivory is a nice summery color, not see-through unless you have dark unders. flirty and overall nice and airy for warm summer days. 115 lbs, 26-27 inches waist)",4,1,1,General,Bottoms,Skirts +290,48,Warm and comfortable,"Although true to size, i sized up to improve pocket placement and for a longer and slouchier fit like on the model. the pockets in my regular size were almost too high up and made my midsection look bunchy.",4,1,0,Initmates,Intimate,Lounge +350,30,Nice bermuda shorts,"I thought these were very nice bermuda shorts. i have skinnier legs and i didn't see a problem with them being too baggy there. the olive color was nice, very comfortable material.",4,1,0,General,Bottoms,Shorts +1096,30,Muumuu,"I thought it was the perfect dress by the picture but it ended up looking like a grandma muumuu. the color is nice, the neck is cute, but the form unflattering. i'm trying to decide if i want to taylor it or take it back.",3,0,1,General,Dresses,Dresses +325,69,Love!,I would buy these pajamas in every color if offered. they feel wonderful to the touch and even better on!,5,1,0,Initmates,Intimate,Sleep +350,53,"Runs large, not the most flattering fit","I was so excited that retailer finally had some bermuda shorts for those of us that are 1) older and don't want to show off that much leg anymore, and 2) are ""curvy on the bottom"" and really cannot wear the shorter shorts. i ordered these immediately in the navy. i usually wear a 31 in pilcro jeans, and like the other reviewer observed as well, i was floating in these - not only in the waist but everywhere. the legs are big - but it's supposed to be a boyfriend cut so i get that, but they just are",2,0,12,General,Bottoms,Shorts +350,46,"Not good if you sweat ""down there""","I bought these for a trip to the caribbean. i sweat a lot. if you have ever been humiliated by having a ring of sweat around your crotch area, then i do not recommend these shorts in the moss color. this color and fabric do not camouflage sweat. i will spare you the photos.",3,0,0,General,Bottoms,Shorts +1009,62,Use as a top!,"I decided to go shopping at my local co store and as soon as i walked in, i saw this skirt but it was used as a top with green cropped summery pants on a mannequin. one of the lovely salesgirls decided she liked it better that way after she tried it as a top herself. i tried it as well and love it as a top! she was small framed and my height and told me she sized up for comfort and she was correct. if used with a strapless bra, your regular size ( mine is a small) will be uncomfortable. howeve",5,1,13,General,Bottoms,Skirts +1059,47,Perfect for work or play,"Joggers are my new style this spring/summer i think. i love the simplicity of this style. the cut is perfect, very true to size. i like the longer length - perfect to wear with kitten heels, flats, or slip on canvas. this color especially is really versatile and make them my go to pants once a week for a perfectly put together outfit.",5,1,0,General Petite,Bottoms,Pants +607,40,Awkward on top,"Wanted to love this.. love rompers, but the opening between your chest was oddly designed, it was gapping and certainly couldn't bend over without showing lots.. fabric seemed heavy for the summer. all in all it was too full, made me feel frumpy..",3,0,1,General,Bottoms,Shorts +607,33,This is my new summer go to!,"This jumper is so cute, it is soft, and you can dress it up or down depending on where your going.",5,1,1,General,Bottoms,Shorts +290,35,"Great top, but adds volume to the midsection","I loved this top on the mannequin, so i had to try it on... i am a 36c and normally wear an 8-10, i tried on the medium and it fit great. i have to agree with the other review that the pockets make you appear curvier.. but you can always take to a tailor to have them removed..i just folded the bottom part over for a slouchier look.. i've already received tons of compliments and plan on ordering the blue as well..",5,1,5,Initmates,Intimate,Lounge +350,47,Just as soft and stylish as the pants,"I was very happy to see these longer length shorts (i have 2 pair of the shorter ones and loved them last summer) so i ordered them immediately. i am curvy and wear a 29 in pilcro and ordered the navy, which is a lovely color and will go with everything. i think they fit great and i like the fact that they are a looser style. i will buy more when they go on sale.",4,1,0,General,Bottoms,Shorts +607,40,,,3,0,0,General,Bottoms,Shorts +290,47,Great fall sweater,I saw this sweater at the store and instantly love it. it run large. i am 5'8 and 120 pounds and usually a size s in most retailer tops. i had to go with xxs on this one so def size down.,5,1,0,Initmates,Intimate,Lounge +290,41,New favorite sweater,"Great, easy to wear addition to the wardrobe. i wore it all day today and no pilling! plus the pockets are really convenient...they are a good depth for car keys or a small wallet. i'm pretty busty (32ddd) and have a curvy body...with that said, the small fit well. i prefer wearing it with the zippers opened because my behind and hips look odd with the sweater fully zipped...(for ref 36 inch hips). give this one a shot...it's a nice surprise.",5,1,1,Initmates,Intimate,Lounge +290,38,,Love this top! it's great for wearing with leggings. the material is soft and not too heavy. love the variation the zippers give you! i have in the moss and love it!,5,1,1,Initmates,Intimate,Lounge +290,39,Would it be wrong for me to just live in this?,"This is so ridiculously soft and conformable. it can be worn over workout clothes, or with skinnies or leggings. it looks fabulous either way. i wear mine the way the customer photo #2 is shown: meaning, folded over. but it looks great either way. the green is such a nice neutral: it looks great with black or shades of brown, tan, or even grey. the functional pockets are such a nice touch. +---------- +my only ""criticism"" is this is a dolman-style/drop hem sleeve, which i am not a huge fan of - bu",5,1,27,Initmates,Intimate,Lounge +290,39,Love the texture and color,"Love the texture and color of this tunic. it does seem to run large - i could have probably sized down to a pl without an issue. i do agree with other reviewers that the pockets are strangely placed and add bulk. i'm going to have them removed. overall, i really like it and have already worn it multiple times.",4,1,0,Initmates,Intimate,Lounge +825,53,,"I am very petite, however, fuller on top (34ddd). this top looks fabulous! it is cut in such a way that every part of your body looks slimmer. goes with jeans, dress pants of skirt. i highly recommend.",5,1,1,General,Tops,Blouses +825,49,,"This top is very cute. it is a high low top that i wasn't expecting, but love it. the picture doesn't do it justice it fits closer to the body than on model. fits true to size usually a small and this one fits well in small. got at a ridiculous price which is an added bonus. will get a lot of wear out of this top.",5,1,2,General,Tops,Blouses +350,33,Man shorts,"I was so excited to try these, it's hard to find cute bermuda shorts. the legs were so wide. my husband asked if i was wearing his shorts. they don't look that wide in the picture. i am 5'4"" and 130 lbs i bought my regular size 28 but the waist was huge i could have sized down one or two sizes. unrolled they came to my knee.",1,0,9,General,Bottoms,Shorts +1096,41,So baggy,"I grabbed this dress to try on in my usual size, because i needed to see what the hype was about this style of dress, and it left me puzzled. the print was pretty, but no amount of tailoring could save it for me. it was wearing me. maybe it could wear three of me. i feel like this is a way for clothing manufacturers to cut corners, by making a garment without details (no installing more time consuming zippers, buttons or snaps, and making something that fits a wide range of sizes because it",2,0,1,General,Dresses,Dresses +1096,48,Girly yet sophisticated,"Lovely, airy fabric and colors true to the pictures online. i am 5'3"" and 118lb. i ordered a regular s, and it fits fine. yes, it is midi length, coming to about 3"" below my knee. i would have preferred the 39"" length if it had been available, but it was not. still, i will compensate by wearing higher heels :-) the embroidered embellishment along the neck and sides stands out more than in the pic, and really makes this dress special. the cutaway shoulders give it sophistication. if you want to a",5,1,4,General,Dresses,Dresses +1096,49,Looked too much like a nightgown,"The minute i put this on i knew it was wrong. firstly, the neck was quite tight and i had to untie the side tie. secondly, as i stood looking in the mirror, the dress simply read ""nightgown"". it was frumpy and too long on me. so back it went.",3,0,7,General,Dresses,Dresses +1009,34,,"This is a beautiful skirt. i'm very pleased with the quality. it runs small though, i'm usually size small and went for the medium. i'm 5' 2 and got the regular vs petit, which would have been too short for me to wear at work.",5,1,1,General,Bottoms,Skirts +1009,36,,"I would say the skirt runs two sizes too small. i usually wear a size medium and based on other reviews, i purchased a large. i could barely get the skirt over my hips. even if it fit in the waist, it was much too short on me and i'm 5'2"". it's a cute skirt but it is fit for a tween.",1,0,1,General,Bottoms,Skirts +290,49,Stylish tunic,"This tunic is so stylish and pretty. the fit is close but not clingy (5'4, 116 lbs., size xs) and the rear coverage is just right to wear with skinny jeans or leggings. the fit is flattering whether the zippers are up or down, without riding up around the waist. the cowled collar falls around the neck evenly without the bulky look that similar styles can sometimes lend. the moss color is pretty, the fabric is soft and warm yet still fairly lightweight. if the pockets are properly tucked and layi",5,1,3,Initmates,Intimate,Lounge +607,45,Cute romper,This is by far my favorite romper. it is very flattering and the material feels wonderful against the skin.,5,1,1,General,Bottoms,Shorts +836,42,"Gorgeous, but it runs a little big.","Beautifully made, incredible beadwork and detail. sleeves are extra long and a bit heavy (and cinched in multiple places, which feels strange), but the blouse is *gorgeous* and absolutely perfect for autumn. i'm gonna return and buy the size down.",4,1,2,General Petite,Tops,Blouses +836,54,,"While overall it's a pretty top, there were a few surprises. the biggest one not listed is that the bottom has a thin elastic band! without it, the top would be wide, longer and flow. in the picture to get it to the length shown, the elastic is pulled up toward the waist. which could work for some, as you can adjust the length into a tucked in look. it could be cut off, and sewn, making a normal flowy top. i am a normal size 6 and the shoulders are off, and the sleeve length is long with elastic",4,1,2,General Petite,Tops,Blouses +1089,33,Beautiful on,"I waited so long for a small petite to come back in stock and finally it did...received the dress last week and it's beautiful it was a perfect fit for me not to big not too small (my size 5'3""/122lb). if you're petite or very thin probably size down. i gave it 4 stars because of the quality...some of the eyelets looked a little weathered. it is lined and there's no see through. agree with other reviewers though - this dress is not worth $228 price tag.",4,1,0,General,Dresses,Dresses +1007,43,,"Yikes. there is a whole lot of skirt here. i am 5""4, weigh around 120 lb, and usually wear anywhere between a four and six in retailer clothing, depending on the designer. this skirt balloons out from the waist. on the website it seems to flow more naturally from the waist. i think that the flowers are cute but the material is cheap looking. the skirt is very long- hitting way below mid-calf. there is also tons of material - creating a parachute effect. definitely returning.",1,0,2,General Petite,Bottoms,Skirts +872,48,Gray washed scoop tee,"Product was exactly what i wanted. very soft, but very wrinkled upon arrival. will wear it with skinny jeans or even leggings.",4,1,0,General,Tops,Knits +1072,48,Cute summer dress,I purchased this adorable dress to wear on vacation. it's such a cute fun print. i purchased my regular size xs and it's a good fit. the material is a little stiff but the print makes up for it. got it during the 25 percent promo ..,4,1,0,General Petite,Dresses,Dresses +1094,54,Beautifully made but snug on top,"This sheath is extremely well-made, and the fabric is even more vibrant and beautiful than it looks in the photos. my only complaint: it does run a little small in the bodice. my usual size 4 fit like a dream everywhere but the top, which borders on uncomfortably snug. for reference, i'm a full 34b.",4,1,1,General,Dresses,Dresses +862,35,Beautiful details,The details on this are beautiful. i love the gold thread and white beads. i thought the medium fit too large and got the small. it seems to fit really well. so you might want to size down one size. the only thing that seems a bit off it the length. it's pretty long.,4,1,0,General,Tops,Knits +1072,35,Wanted to like it so bad,"I love love love this print and had to have it when retailer had their 25% off sale. i think regular price is way too much for this dress as the dress isn't even silk or a better material. but once i got this i was so disappointed, i ordered my usual size and it was just a balloon/tent on me. i felt like i was wearing a maternity dress. plus the ruffle at the top which i thought was a sweet feature felt really awkward and like it was grazing my neck and chin in an annoying way. i don't even want t",2,0,2,General Petite,Dresses,Dresses +1094,39,Hot mod mom,This is so pretty and 60s like. i tried on a return size 2 and it really fit. i am usually a zero so i was surprised. the regular size fit me really well. length was perfect. pretty heavy and substantial though. love the 3 d effect. 115 lbs. 30 dd. 26.5 in waist,5,1,0,General,Dresses,Dresses +872,35,,This shirt is very swingy but true to size. when i tried to size down the shoulders were too tight. the green color has great texture.,5,1,0,General,Tops,Knits +361,36,,,4,1,0,Initmates,Intimate,Intimates +1076,57,Not great on me,"I thought the dress was ok, but was surprised by the cut away triangles of material right under bra band on the sides of dress. i will send back, also a bit too high waisted for me. other than that, the dress is as it appears.",2,0,3,General,Dresses,Dresses +231,31,,,5,1,0,Initmates,Intimate,Sleep +862,53,Pretty...,"Probably should have returned this but it's just so pretty. i got complements from strangers the very first time i wore it but it's extremely long. tucking it in will be tough-where do you put all that length? aside from that it is beautiful. the embroidery is soft and delicate light blues, gold, neutrals. hard to see in the pic but there are textured polka dots all over the shirt. great buy-i just wonder how i'll wear it or if the length will be too much and it will become a 'closet sitter'.",3,1,0,General,Tops,Knits +1076,45,Wowsa!!,"Love this dress. i think i scored the deal of the year with this one. found it in my local retailer store. it had been in my ""save for later"" forever but i couldn't bring myself to pay full price... then it sold out in my size online. i was in my local store browsing the new items on sale with the additional 40% off, and there it was 1, and only 1. and my size.... i picked it up, noticed the cut outs that are not very apparent in the online photos, but it back, picked it back up, put it back.....",5,1,2,General,Dresses,Dresses +1089,46,Pretty doily,"At 5'4"", i guess i am just too short to pull this dress off! the colors are so pretty for summer, but there is just too much fabric... i felt like i was wearing a giant doily! however, there is not a doubt in my mind that taller girls would look fabulous in this!",2,0,0,General,Dresses,Dresses +1094,36,,"Really beautiful dress, too special for me as a guest at a wedding. i think this can be used as a wedding dress in an informal intimate wedding. it is shift dress, so not accentuate your body which is to be expected. it is running small. with my athletic body especially up top, the chest/arms are tight. i could have gone a size up but the body might be too big. i unto lately returned.",4,1,3,General,Dresses,Dresses +1094,48,,Beautiful dress. i just wore this dress for my wedding. it was a beautiful wedding dress and i got many compliments on the uniqueness and the beading detail. there was one really big problem. the beads and the flowers kept falling off. i sat down and stood up leaving a pile of little flowers and beads. i could be standing still and they would periodically drop off. it was kind of embarrassing and everyone remarked that i was my own flower girl. i am still finding pieces of the dress everywhere.,5,1,5,General,Dresses,Dresses +862,45,Easy to wear not so much to take care,I would never had bought this top if i hadn't seen it previously in the store. the look in the picture is not flattering at all (too frumpy with the wide pants). the many details work well with pastel tones. very bohemian look so make sure you balance that with modern bottoms and edgy shoes. might be a problem washing it because all of the details: mini pearls and golden thread but you got to do what you got to do...,4,1,0,General,Tops,Knits +836,45,Beautiful top!,"When i received this top, i thought it was even prettier than the online picture. the colors and beading are more vibrant in person. it is a full cut and does have an elastic band at the bottom but i liked the way it looked on. i ordered my usual size m and it fit me the same as it did the model in the picture. it is pretty shear. if you wear it to work or during the daytime, it will need a cami. however, in evening lighting, i don't find it to be that see through and i feel comfortable wearing",5,1,1,General,Tops,Blouses +1095,34,Really hoped this would be my go-to winter dress,"When i saw this online, i wondered why this dress cost so much. i have been keeping my eye on it for some time. loved what i saw, the design and colors and details at the neckline and waist along with pockets but was skeptical. i was waiting for a sale to take a dive and here are my thoughts when i got it: +___________ +pros: +- the colors you see online are exactly the same in person. +- the jeweled neckline is lovely. it's one thing that drew me to it. this dress had a very sophisticated appeal wh",2,0,11,General Petite,Dresses,Dresses +231,57,True luxury,"I'm 119 and small frame, but took a chance and ordered the m. so glad...the fit was perfect. the robe is soft and beautiful!",5,1,0,Initmates,Intimate,Sleep +361,22,Cannot get enough of this!,"This is beautiful and fits perfect. it's even prettier in person, and extremely comfortable and high quality. i'm 5'3"" and it hits right above the knee. the straps are adjustable and fits true to size. i bought an xs and it fits perfect. must buy for a sweet little night gown!",5,1,0,Initmates,Intimate,Intimates +1072,67,"A ""slice"" of heaven!","I ordered this dress with the 25% off everything code as it is a bit expensive. i will say it is well worth the price. from the material, to the design, and fit, i was truly pleased. i am usually a 4p in retailer dresses so i went with the xs-p and it fits perfectly. it is super cute and unique, and i love, love, love the pockets, which is always an added bonus. it is so fun and flattering, as i am sure people will be asking where this one is from. a definite summer must have. obsessed with this w",5,1,4,General Petite,Dresses,Dresses +1089,50,,"Haven't decided if i'm going to keep this dress yet. it arrived torn at the seams, but was able to use two sided tape to fix and straps were sewn on twisted. in my opinion it is not worth full price. i would say it runs tts. i'm between and 4 and a 6 and the size sp fit perfect, however, the petite size runs pretty long. it says 47 inches from shoulder but i need to wear it with 5 inch heels. mine may have been a wrong size marked issue. +dress looks exactly as in the picture.",3,1,1,General,Dresses,Dresses +1022,43,Awesome high waisted skinny,"These are the perfect higher waisted skinny jeans. high enough that there is no muffin top, but not so high they look like mom jeans. typical ag super soft fabric. they are like wearing sweat pants. so worth the extra money for the ag jeans. love the length too.",5,1,0,General,Bottoms,Jeans +1106,34,Add your own touches!,"I'm on the fence about this dress but overall i like it. the material, design and all is great! it's a light seersucker type fabric and short sleeves are perfect for summer. now the bad thing about this dress is partly the print combined with the swing/large cut. if you aren't too careful it can look like a housedress or hospital gown. i find i definitely need a belt to define my waist to avoid this.",4,1,2,General Petite,Dresses,Dresses +860,38,,"This top came down to my hip bones, but i am short-waisted. the shirt definitely fits shorter than in the photo. the measurements listed for ""regular"" seem to be a bit shorter than the 26"" l measurement i got when i measured it. i think the quality is nice, and though it could likely easily snag if you're not one who is used to wearing delicate clothing, i didn't find this top to be flimsy at all. for reference i purchased a l and the fit is more form-fitting on me than it is on the model, but n",3,1,0,General,Tops,Knits +860,62,Great summer top,"I don't know what it is about this top but i was so drawn to it when i saw it in the store. it's totally see through, that's the design and i think it's great. i wear a cami underneath but if you're more daring or you spend a lot of time by the beach, you can get away with a nude bra or bikini top. this definitely runs small. i'm 5'5"" 120 and usually wear xs/s but felt most comfortable in a medium. the body isn't tight or anything, it's just on the shorter side, especially if you have a longer t",4,1,3,General,Tops,Knits +595,57,Adorable,"Very soft and comfortable, great for girls who don't usually like shorts because of bigger/muscular thighs. i would say these run large, but not drastically. for reference, i'm usually a size 6 on the bottom and i got a small. the girl at the checkout counter called them pajama shorts but i think these can definitely be worn out of the house.",5,1,1,Initmates,Intimate,Lounge +854,60,Beautiful top,"I love this top! it flows nicely and fits perfectly. i'm 5' 4 1/2"", 125 lbs. and ordered the small. i love the little bit of sparkle in the blouse, too.",5,1,0,General,Tops,Knits +1081,56,Beautiful dress,"This is a very beautiful dress, with the detail of the inside lining, with a very beautiful fabric as well, creating a double layer effect, it creates a great flow. i am not sure i would use it with the belt (which is beautiful, a part of it is crochet), but if i don't, the dress would be too long. i am a size xl and 5'6"", so if you are shorter than that, i would try it before buying it. since it's getting cold here in colorado, i'll have to wait for next year to really experience going out with",5,1,1,General,Dresses,Dresses +1053,35,,,4,1,0,General,Bottoms,Pants +854,49,Beautiful top,"This is a gorgeous flowy top. i paired it with a pair of army green pants and have received a ton of compliments. you can dress this top up for a night out or for work, or style it for a fun evening out. you will be very pleased with this top.",5,1,0,General,Tops,Knits +1094,32,Great dress,"This is a great dress - it definitely runs true to size and is on the border of running a little small. if you're on the fence about which size to order go with the larger size. +the fabric moves nicely but wrinkles easily when packed. love the color. +got a ton of compliments :)",5,1,2,General,Dresses,Dresses +835,49,Adorable top,"I loved this top from the first time i saw it online. i ordered a size 10 ~i'm slim with broad shoulder & 36c~ the top fit perfect. when i opened the pkg i thought it would be too big since it looked wide but that was not the case at all. its a little longer in the back & a little shorter in the front. on me~it looks exactly like it does in the picture.its really a cute top & it looks lovely over shorts. makes a cute, casual summer outfit. i cant wait to wear it.",5,1,0,General,Tops,Blouses +1134,59,Gorgeous fall colors,"I really wish this had fit me so i could keep the vest. beautiful colors and construction. i am 5'9"" with a 36c chest. the medium was quite a bit too small across the chest (i could not close the hook) but it fit perfectly around the hips. i did not want to order a large because i felt the boxy style would be too large around the hips even if the chest fit better.",4,1,0,General,Jackets,Outerwear +854,36,Pretty and girly,I bought this top in navy and am so happy with my purchase. it's pretty and feminine. it looks great with jeans as well dressing it up for work. very happy with this purchase.,5,1,2,General,Tops,Knits +1053,44,,,5,1,0,General,Bottoms,Pants +860,32,Runs very small,"This is a very lovely looking sweater. unfortunately, it runs incredibly small. i'm only 5'3"" and the size small hit me above my mid-rise jeans. it doesn't fit at all how it's shown on the model. it's also a very delicate fabric. seems like it would snag easily. i was really hoping it would work as i used my birthday discount to purchase it, but i'm sending it back.",2,0,7,General,Tops,Knits +854,54,Gorgeous top,"This is a beautiful shirt. i purchased the top in navy, the silver touch is pretty. i usually wear a size 8 or 10 and m was perfect, tts. great for work or casual party.",5,1,0,General,Tops,Knits +1134,39,So soft,"The pattern is pretty subtle, almost looks like one color, so it is more versatile as i would have originally thought. the fabric is so soft, the collar is removable, but i love the look with it on. the way it closes is 3 lobster-like clasps, so you can wear it closed or open. sizing is a bit big, as in the xxs p fit me perfectly (didn't even try on the xs p. this will keep me warm, and looked nice with a pant outfit i tried on as well as a dress... recommend (sizing reference: 115 lbs, 30dd, 26",5,1,1,General,Jackets,Outerwear +940,46,Great fall sweater!,"This sweater looks great with chambray colored denim. i wear it with jeans, shift dresses and even leggings. definitely one of my go to sweaters for the fall.",5,1,0,General,Tops,Sweaters +835,49,Weird fit,"I loved the look of this blouse online. i really wanted a cute eyelet top for summer. the blouse looked great out of the package but the fit was not good. i am a 00p and 32 b bra size, this top was too tight across my chest but billowed out in the back. its as if the armholes were too far forward. it is fairly short but i am short waisted. i really wanted this top to work but i had to return it. if i went up one size the back of the blouse would have been ridiculously large and the top was too e",1,0,1,General,Tops,Blouses +854,39,Love it!,"I bought a size s in the navy, and m in the neutral, and both fit. i usually wear a small, but they only had the size m left in the neutral. the m is a little big, but the extra room fits the flowy, bohemian style of the blouse, so it works. i love this top and am glad i purchased it in both colors. definitely recommend it.",5,1,0,General,Tops,Knits +854,58,,"Bought both colors - nice quality top, but they do run large. for reference, i'm 5'4"", 115lbs and xs is still kind of big on me. wish they have xxs.",5,1,1,General,Tops,Knits +1033,21,Super cute but disappointing,"Loved these when i tried them on they fit well and were so flattering. i am a size 0/2 and 5' tall and have a 'bubble butt' and thicker thighs with a narrow waist i tried on a 24 they we a little tight on my bum and thighs but the waist was perfect, tried on a 25 and they were much more comfortable on my legs and worked on my waist as well. i thought all was good but after wearing them out for not even ten minutes they started slipping down constantly and loosed up around all areas especially my",2,0,3,General,Bottoms,Jeans +854,45,Beautiful!,"I love that this top is dressy, yet comfy. it is perfect for work and relaxing with friends after. i recommend purchasing this blouse.",5,1,0,General,Tops,Knits +1025,30,Favorite flar denim,These are my favorite flare jeans! they have that lovely 70's style and go with everything and look great all year round. the fit is perfect. my all time favorite jeans.,5,1,0,General Petite,Bottoms,Jeans +1106,43,"Love, love, love!","I love this dress! the pattern is unusual along with the mesh cutouts. i'm a sucker for mesh cutouts. it does look a little bit like a maternity dress, but eh, who cares. let them think what they want. i recently wore it to a casual outdoor wedding and received many compliments. i knocked off one star for quality because the back of the dress where the zipper stops needed to be reinforced by hand to keep it from ripping. this is a common problem i have with retailer dresses, and no i'm not trying",5,1,0,General Petite,Dresses,Dresses +1134,66,Beautiful vest!,"Love this vest! since i am 66 years old i was hesitant to try on this vest because it was out of my comfort zone as to style, but my daughter convinced me to try it on. it is absolutely darling and looked so chic on. my 27 year old daughter bought it, too, so it is stylish for any age. the fur collar is fun and the fabric is very nice and the vest is well made. it can elevate jeans to a dressier look but still have a casual vibe. having a coupon the day we shopped made the decision to buy this e",5,1,6,General,Jackets,Outerwear +1106,52,Warm weather favorite,"The fabric is very light weight, more of a shirting material. this surprised me because the dark flowers almost looked like flocked velvet in the picture. the flowers are actually printed on cotton that has woven stripes. it is so soft and light! there is also a little webbing detail in the front yoke but nothing shows because there is a simple sewn in lining. the skirt is not lined but the hem is weighted with a trim so that the skirt will hang right. very flattering. it does run big tho",5,1,3,General Petite,Dresses,Dresses +1081,45,Great boho chic dress,"I bought this dress for the summer, but it will transition nicely into the fall with a sweater, leggings, and boots. the color and pattern are pretty and without being washed out. the macrame belt is absolutely beautiful. it doesn't show up well in the picture, but is intricate and artistic. seems sturdy as well. i can't wait to wear it out!",5,1,0,General,Dresses,Dresses +1081,48,Love this dress,I love that the dress slip got a different pattern. very easy fun for summer but you can also layer it in fall,5,1,0,General,Dresses,Dresses +854,51,,"Beautiful just like the photo. i love it. the length is fine, as i got the l. the quality is very good.",4,1,0,General,Tops,Knits +835,35,"Cute, but wide","I'm. 5'2 and based on other reviewer's input, i went with a regular rather than petite and the length works well. the top is cute, but it billows out around the waist which isn't apparent on the model. other reviews mentioned that so i bought it anyway with that information and it's fine if you expect that. i'm a 34dd and find it to be a bit tight in the bust.",4,1,0,General,Tops,Blouses +854,65,Casual type dressy,"This blouse is perfect for semi dressy occasions silver ribbon adds a nice, subdued sparkle accent and no need to add a camisole due to the nice lining.",4,1,0,General,Tops,Knits +1081,62,Just love this dress,This maxi dress is exactly what i had in mind! the fabric is very comfortable. the print is very nice. perfect find!,5,1,1,General,Dresses,Dresses +1053,36,Elastic too tight for me,I'm 10mths post partum so my belly is still flabby. the elastic is too tight on my waist. i wish this was looser with a drawstring to tighten. i have to return it.,4,1,0,General,Bottoms,Pants +1081,45,Sized down - fits perfectly,"I most often fit into a size medium. based on prior reviews, i ordered this dress in a small and it fits perfectly. it drapes nicely. the fabric is soft and flows well. the under layer has a nice little stretch to it. the dress looks good with and without the belt. my favorite and most-slimming look is to just tie cinch and tie it in the back, such that it does not wrap around the front at all. the dress is so comfortable and the neckline is very flattering. no bra needed for my small bust.",5,1,0,General,Dresses,Dresses +1094,49,Nice work dress,"Very comfortable to wear, love the overall look of this dress.",4,1,1,General,Dresses,Dresses +835,33,,"Beautiful in pictures and i loved it before i tried it on. as the other reviews state, it is short and wide. i like the top so much, i am going to try to add some gathering across the back to offer some shape. otherwise it is an unflattering shapeless box :(",2,0,0,General,Tops,Blouses +595,33,,I own another pair of this brand and these are just as cute and fit the same. i wish the fabric was a bit nice but they still are super cute. they have wider leg holes which are flattering on my muscular build. nice and lightweight and sooooo comfy!,5,1,1,Initmates,Intimate,Lounge +1053,35,Love this soft pant,These pants lived up to expectations. the fabric is very soft and did not wrinkle in the dryer. i am normally not a big fan of cropped styles but love that these have the gathered leg and can be styled dressier or casual. i thought the cargo pockets might stick out too much but they lay nicely. i feel i will get a lot of use from these and the best part is they are not constrictive and they are super comfy.,5,1,0,General,Bottoms,Pants +1090,38,Just ok,"In my opinion, for this amount of money, the dress needs to be something really different. and this one isn't. it has several structural issues and it seems to have a split personality (summery material, dark color, flirty and fun...but overly conservative up top.) + +initially, the top portion is extremely sheer. you're saved (a bit) by the extra fabric at the front, but it still seemed odd that the top isn't lined - particularly for a dress meant for winter. + +there's too much going on up top. th",3,0,4,General Petite,Dresses,Dresses +1081,38,Beautiful print but huge!,"This dress has a beautiful purple paisley print and reminds me of classic retailer from years ago. i wanted to love the dress but it runs extremely large. i usually wear a 00p or xxsp and got this in an xxsp but was still way too big. while the intent is to be flowy, i was overwhelmed by the bagginess and it changes the style from flowy to bag-like. while the belt helps cinch the waist, i had too much bunching in the waist area making it unattractive. very disappointed as its such a pretty",3,0,2,General,Dresses,Dresses +854,70,Lovely embroidery,This garment has the most beautiful and detailed embroidery on the front and across the top of the back. i purchased this blouse in pale pink in a xs for my daughter-in-law who is an retailer fanatic. i am sure she will look stunning in it. my only negative would be the silver accent thread across the front is overkill.,5,1,0,General,Tops,Knits +835,43,"Gorgeous, well-made blouse - fits perfectly","This top is drop-dead adorable, very well made, and a flattering fit. i noticed other reviewers saying it is wide and short, but that was not my experience. it's a slight ""swing"" or ""trapeze"" shape, but fitted through the shoulders. so, if you are small-shouldered and small in the chest - this is a very, very cute top. for reference, i am 5'4"" and a 32c - and i took a size 2. perfect when paired with dark skinnies or capris. it's also delightfully well made with excellent detailing - the cute vi",5,1,2,General,Tops,Blouses +1106,37,Lovely dress!,"This dress is absolutely lovely, from the neckline to the fabric. really feels like a well made dress. i will say that it ran larger than i thought though, so keep that in mind. it is more of a shift dress than the pictures suggest. still gorgeous though!",5,1,1,General Petite,Dresses,Dresses +1134,48,"Impressed, but...","As a long standing retailer shopper, i have seen the beginnings of retailer great quality and detail and somewhat over the years disappointed of quality going down; this vest is so my style and executed very well as being fully lined and sewn well, hooks to close are substantial; the fact the faux fur collar can be removed is a real plus, but though the colors are delish, the fabric is a bit questionable. the one i ordered on line and sent to me is fresh and not petted, but looking at the same vest",4,1,0,General,Jackets,Outerwear +854,31,Gorgeous in person,"I'm so glad i saw this in the store, as the online photo does not do it justice. it's elegant, detailed, and a beautiful shade of pink. it has a little silver sparkle which makes it perfect for a casual party when you want to opt out of the traditional holiday colors.",5,1,2,General,Tops,Knits +595,35,Adorable and comfy,"These are so comfortable, it's like wearing jammies outside. i love the pattern and you really can't be the comfort.",5,1,0,Initmates,Intimate,Lounge +1022,55,Great fit!,These jeans are very comfortable. i really like the high waist. just what i was looking for!,5,1,0,General,Bottoms,Jeans +860,50,Totally see-through!,"I just got this in the mail and was so excited to try this cute top.....but it's completely see-through! unlike the photo shows, the lining is not included. quite a disappointment top is well made though no give in the fabric.",3,0,5,General,Tops,Knits +1053,34,Cute but fit not right,These are cute and light weight however the fit is off. i ordered my normal size large (i'm a 12/14.). the waist was large but fit ok. they were really tight across the theighs. the crop length is fine with my 5'9 height. if i hadn't got such a good sale of probably return them. they will be good lounge pants.,3,1,0,General,Bottoms,Pants +1081,39,Size down and fall in love,"Call my corny but this dress inspires me to run barefoot through the lavender fields in provence. the flowy layers and dreamy prints are mesmerizing. fit is ideal for my body type as long as you size down. i had no weird sagging, bagging or poofiness. and i love the macrame belt! i tied it offset to the side but the dress looks good unbelted too. i purchased the small petite. + +my stats for fit reference: 5'3"" tall, 140#, 36dd, 28"" waist, 35"" hips, wide rib cage, size m/l tops, size s/m",5,1,2,General,Dresses,Dresses +854,65,Pretty much beautiful,"I adore the tiny brand blouses! this one is lovely, and i feel new and beautiful in the navy with the sheer sleeves and bumpy, embroidered material, very pretty indeed. this probably is equally stunning in the nude color, but it doesn't show well somehow online. the navy is certainly amazing, and i was so proud to wear this blouse today for work with jeans. i always find the tiny sizing to be one size off. the large fits me perfectly, although i am a medium in most all other tops. 5.1"", 130 #, 3",5,1,11,General,Tops,Knits +1081,50,Runs large,Gorgeous dress but fits really large. ordered a petite large. going to send it back and try the petite medium. wish it was available at my store to try on and not have to wait for it to be reshipped.,4,1,8,General,Dresses,Dresses +1081,68,Prettier in person!,"Love this dress! the colors are a smidgen darker than the photo shows, which i like even better. super comfortable, nice flow, great fit. definitely will be a favorite of mine for this summers",5,1,3,General,Dresses,Dresses +835,39,Top,This is a wonderful top. it looks great with jeans and shorts. feminine and clever design. many compliments.,5,1,0,General,Tops,Blouses +1022,48,Love these jeans!,"These jeans not only fit well, i love the way the fabric feels. for denim the fabric feels soft on the skin. i am 5'8 and the inseam of 30 inches was perfect. they call them ""hi-rise"", but them seem more like a ""mid-rise"" to me which i prefer. i am going to buy another pair in a different wash.",5,1,0,General,Bottoms,Jeans +1150,58,Love the dres,"Originally bought the plaid version and retuned it to order this one in the store to get free shipping. the fit is completely different. i am a consistent small, particularly in dresses of this style. will be exchanging this for a medium, which i hope will fit. love the color and pattern.",3,1,16,General,Dresses,Dresses +1112,36,Not like picture,"I really wanted to love this coat. it is well made and unique. i usually buy the petite versions but they were sold out. +however i went ahead and purchased a regular size because i wanted a second winter coat. +sadly, it looked more like a cocoon coat on me. it stuck out at the back. probably because it was not a petite. it pulled across my chest, like shoulders were too short. for reference, i am 5 feet, 109lbs, and a 32d. +i didn't mind the fluffiness of the top portion and the tie is useful for",4,0,0,General,Jackets,Outerwear +828,54,Coolest shirt ever,The print is awesome !,5,1,1,General Petite,Tops,Blouses +1077,25,"Fun color, interesting fit","I'm tall and small chested so the dress didn't fit me perfectly. i adore the color and pattern, but wish it was less revealing in the chest area. i definitely have to wear something under. otherwise high quality and unique dress!",3,1,0,General Petite,Dresses,Dresses +1150,53,Cute drop waist cotton dress,"I just purchased this adorable drop waist dress on-line and personally found it to fit tts in my regular size small (34d-27-35). the length in the front hits right to the top of my knees, perhaps a tad longer so it's not too short for me (i'm only 5'4"") and the back is longer in length. there is also a detachable matching cotton slip that snaps on or off the dress that has adjustable straps that hit just above my knees. i love that this dress was made from cotton and the color is just as picture",5,1,8,General,Dresses,Dresses +1150,40,Big difference between sizes,"I am typically a small at retailer, but always order a small and medium to try since i'm tall. the color of the green is really pretty, and i can see wearing it on the weekend with casual sandals, and dressing it up with a cropped jacket for work. the sizing is way off on this dress, though. the small is too short for me (personally). i'm 5'8"" and the waist doesn't sit low enough for a drop-waisted style. so i tried a medium. the medium is not sized correctly at all. i tried it on and it fits 3 si",3,1,2,General,Dresses,Dresses +830,67,Odd style,"I should have paid closer attention to the other reviews. i could barely get this blouse over my head! after getting it on, the armholes too are very small. the blouse other than that is pretty and very girlie. i love the pleating and dolman sleeves but i was strangled around my neck. i tried the small but think a medium wouldn't have been much better. it needs a button opening on neck and sleeves. i would have to put this on before makeup or doing my hair. +if you have a tiny head and pencil a",1,0,0,General,Tops,Blouses +1077,23,Perfect for summer,"This dress got my attention in the store due to the bright color. it's like a tangerine orange that absolutely shouts summer. loved the asymmetrical hem and another plus was the pockets! they look completely hidden so the dress does fall flat. i thought this ran a little big in the chest area, which doesn't happen often. a size 8 worked for me, can't wait to wear this!",5,1,0,General Petite,Dresses,Dresses +1150,38,,"Fit is ""breezy"" which is what i expected. a little on the loose side but comfortable and still cute. the slip that accompanies the dress is of decent quality as well. the back of the dress is not that much longer than the front, as in the picture, but i still liked the dress enough to keep it.",4,1,0,General,Dresses,Dresses +1150,33,Overpriced,"I decided to take advantage of the free shipping despite seeing no reviews yet. i received the dress today and it is exactly as pictured, only about 3 inches shorter. i am usually between an xs and s but chose the xs because of late, everything i seem to order is huge. this was an exception and i could have ordered the s. color was as pictured, a nice green. fabric was a gauzy cotton. the dress was just ""alright"". nothing special to warrant the price tag. it felt like a little girl's dress on me",3,0,37,General,Dresses,Dresses +1077,39,Very flattering,"The orange version is very nice, bright but not tacky. the fit is super flattering, and i love the crisscrossed hem. the top part is also flattering on the shoulders (halter), but need a strapless bra. the 0 fit me well, no need for petite on that one, might be too short for me. + +(03dd, 26.5 in waist, 115 lbs). + +pattern is also gorgeous. recommend...",5,1,4,General Petite,Dresses,Dresses +819,32,Not worth it,"This top is very pretty, but it fits funny. it's boxy and doesn't hang well. i feel like you could almost wear it as a 2nd-trimester-pregnancy-blouse. i tried the small & the small petite. they both fit the same (too big and too boxy), but the petite was shorter. i am 5'2"", 125lbs, 34b. i preferred the regular length, but if you like your tops to end at your waistband, then the petite would fit too. i still really like the top, so i may try it in a smaller size when it goes on sale.",3,0,2,General Petite,Tops,Blouses +1077,23,Perfect dress for wedding!,"I have an hourglass shape and a large chest, so it's difficult to find dresses that don't like i'm wearing a sack or are too form-fitting to be appropriate. this dress is prefect for accentuating my waist, while still looking appropriate for weddings and other nice events! the color is perfect",5,1,0,General Petite,Dresses,Dresses +1132,50,Perfect poncho!,This will be my favorite fall acquisition! looks better in person. very flattering. does run large. love the combo of tan and grey.,5,1,0,General Petite,Jackets,Outerwear +1077,36,Cute cute cute,"This dress is so cute, and i received so many compliments on it! i wore it on a gameday, and it was so comfortable. i love the skirt of the dress because of the trendy v's. the top was too loose for me, so i had to get it taken in. this is surprising because i have a decent sized chest and broad shoulders. other than that, this dress is a real winner!",4,1,0,General Petite,Dresses,Dresses +830,35,Sad top.,"I wanted to love this top. but, it looks like an ambitious 12 year old made it with rumpled fabric and lace found in her grandmothers attic. re: hopeful, but not good. the quality is not good and it hangs strangely on. sadly it is going back.",2,0,4,General,Tops,Blouses +1092,27,Great summer dress,"I love this dress. it's a lightweight soft fabric. the blue layer is a bit thin, so you can see the stripped layer underneath which keeps this from being just an ordinary blue dress. usually i'm a size 0xs but got a 2 because i was worried it would be too tight in the shoulders (based on another similar dress from holding horses). the two fits great, the top and waist fit perfect and the bottom is nice and flowy without being too much fabric.",5,1,0,General Petite,Dresses,Dresses +1092,47,,I tried this dress on in hawaii before it even hit the website. i am guessing retailer tests out their spring line in always summer hawaii. i was impressed but wanted to wait for a promo. there is a lining that fluffs up the skirt part of dress and makes it fun and girly. i sized up to 4p from my usual 2p in holding horses due to the tailored upper part of the dress and my shoulders a wee bit wide.,4,1,19,General Petite,Dresses,Dresses +1112,37,Nice,"I did like this coat, however the material was just not what i expected. i was hoping for more of a traditional wool material, but this had a fuzziness to it. not fitted in the waist either, which might just be the style but not what i was hoping for.",4,1,3,General,Jackets,Outerwear +1150,53,Tried on few dresses to find right size!,"Like other reviewers, i tried on a medium and a large as i usually take either size in retailer dresses. the large was huge on me - i had an extra 6 inches or so on each side. the next medium that i tried on could barely fit over my head! i looked at the tag to see if i had picked up an extra small but it stated medium. got another medium and it fit perfectly. however, the cami underneath one medium was again teeny tiny. the other medium was ok. you may have to try on a few dresses to get the righ",4,1,2,General,Dresses,Dresses +1150,31,Seems that size is variable,"I am a true size small and i ordered this dress and it was way big. it's meant to be a relaxed fit, but it sagged under the arm-holes because the bust was way too big. some folks are saying it ran small and they are essentially the same measurements as me, so it makes me think there is possibly some variation in each size. i got on here to reorder in a smaller size, but now am not sure what to do as i need a dress with in the next three days!",3,0,2,General,Dresses,Dresses +1150,66,Great casual summer dress (with pockets!),"I don't love this dress but i really like it a lot, hence the four stars. i opted for the light blue. the embroidery is a rich, vibrant blue and quite beautifully done. i am 5' 6"" and 125 lbs. and the xs fits perfectly. it's intended to be a looser cut but it isn't at all frumpy and it hangs nicely. and it has pockets! all around a good summer staple.",4,1,2,General,Dresses,Dresses +1150,48,Pretty boho like,"This green dress seemed more fitted and tailored on the model. i ordered a small and medium in the green and mint (even though it says mint, it's a grayish blue). usually i'm a medium but even the small seems a bit big. it fits more like a loose boho dress rather than how the model wears it. the colors are vibrant and the embroidery is nice. i will be keeping both colors in small and just have to accept that the fit is similar to a looser casual summer dress. if you look at the pics that other c",4,1,0,General,Dresses,Dresses +1077,42,Disappointed,I found the fit of this dress odd. i typically wear a 6 or 8 in dresses. the 6 fit across the chest but the armholes were large so wearing a bra would be a challenge. i am a 34c so i need some type of support. i also thought the fabric was a bit flimsy for the price. i am a huge retailer fan and usually leave glowing reviews but sadly i left this one in the store.,2,0,6,General Petite,Dresses,Dresses +1092,27,Smock dress,"I love this dress. however, it's not what i expected based off the pictures. + +the modeled photo indicates that it's a shirtdress with a drop waist. no. it's a smock dress with more of an a-line silhouette that begins at the shoulders. the waistline is more of a detail, like the button placket, than a structural quality. it's very youthful and whimsical. + +that said, it is quite beautiful. the fabric does not wrinkle easily, as another reviewer guessed. my daughter wrinkled it sitting on my",5,1,1,General Petite,Dresses,Dresses +1077,46,Too bright for me,"I tried this dress on in the store. it fit okay, but the orange is so bright, i couldn't bring myself to buy it.",3,1,0,General Petite,Dresses,Dresses +1077,50,"""go to"" please offer a maxi for mature customers.",Silhouette transcends many occasions.,5,1,1,General Petite,Dresses,Dresses +1077,29,,"Beautiful summery dress with bright fun print. i think this was well worth the sale price i paid. it lays nicely and is flattering. i went down a size from my normal 8 to a 6. however as other reviewers have said, the arm holes/halter top is too blousy and no matter how tight i tied it or type of bra i wore, you can see bra on the sides. i'm going to get this tailored and then it will be perfect. can't wait to wear this on my vacation!",4,1,0,General Petite,Dresses,Dresses +1092,43,"Light weight, pockets, great for summer","I run 170lbs., 36 d, 5'4"" and ordered a regular 14. probably could get away with a 12. i didn't order a petite because i wanted the length. however i ordered the 14 because it is cotton hand wash and thinking there might be some shrinkage. it fits to perfection everywhere - but the waist. it's very loose. they must have clipped it in at the waist in the back of this shot on the model. the picture doesn't clearly show the hi-low concept of the hem. i like that so it isn't a problem. very unique a",5,1,13,General Petite,Dresses,Dresses +1087,48,Jackie oh my gosh this is cute!,"Well, i just love this dress. great material. beautiful coloring! perfect length! true to size. +i love the pleated neckline! i feel like an old hollywood beauty in this dress. great one retailer!",5,1,0,General,Dresses,Dresses +1150,35,I wanted to love this dress ...,"But, it just doesn't measure up. first, the slip/lining comes unattached if pulled slightly and it is very difficult to actually get it on - either stepping into it or pulling it over your head. and, once on, the top was a big snug and there was too much material at the bottom which made it look really bulky. unfortunately, i am finding this to be the case with so many of the items i buy from retailer lately. the material is really cute, but the dress isn't worth the price / effort.",2,0,3,General,Dresses,Dresses +830,35,,"This top was just not flattering. i'm 5'8"" and medium build, and the m was very bulky and the fabric didn't fall in the right places. made me look very round and i'm not, so it's definitely going back!",2,0,9,General,Tops,Blouses +1092,30,Misleading,"I sized down as other reviewers suggested (usually an 8, went down to 6) and the dress fit fine--but it was not attractive. the cut was like a tent with an empire waist. really just not attractive. maybe it has to do with my body type, but compared to the model, this dress was so unflattering in-person. returned.",1,0,0,General Petite,Dresses,Dresses +1077,38,Cute dress size down,"I'm usually a 6 in dresses and the 6 here fit okay. loose but still flattering a little long for a sundress. i was unhappy with it looking a little frumpy and being so loose under the arms all my bras showed . i took it back to the store and after reading the reviews here decided to try the smaller sizes...well multiple dresses later i ended up buying a size 2 petite!!! and i'm 5'9"". the 2 reg and petite still had the loose gathering look to the top but both fit much better under the arms so tha",3,1,6,General Petite,Dresses,Dresses +1150,37,Love,"I never ever buy anything full price when it comes to retailer shopping, love their stuff but way over priced so i patiently watch and wait. this dress though i couldn't do it, i had to have it. i think it is a fabulous addition to my summer collection and i look forward to wearing it in a few weeks to a july 4th get away. get it while you can.",5,1,2,General,Dresses,Dresses +1150,30,"Pretty dress, runs large","I just received this dress in the mail today. i ordered an xs and it was huge! there is no way that i could wear a bra without it showing due to the size of the arm holes. i'm 5'2"" and 117 lbs with an athletic build for reference. i love free flowing dresses, but this was over the top. i ordered the plaid version in an xs petite and that fit much truer to size. i reordered this in an xs petite to see if that will work better. the dress itself is lovely. the green color is vibrant and the embroid",3,1,0,General,Dresses,Dresses +830,46,Fit is unflattering,"I wish i had read more of the reviews....but thought i would give it a try. the shirt doesn't seem as long as on the model but the armpits are sewn to hit mid shirt. this would be ok if it was the length pictured, but since it isn't it makes you look very boxy. i don't know if i ordered a size too big or if it is just the way the shirt was made. wanted to love for fall.....unfortunately, i am taking back.",2,0,0,General,Tops,Blouses +1094,56,"Alas, the pockets!","Beautiful fabric and beautifully made, but the pockets ruin it... and i love pockets. you cannot see from the photos, but they protrude from the sides a few inches beyond the skirt, and look strange and unflattering, especially from the back. they are unfortunately placed right below the hips, and the effect is like those french bicycle baskets, ""panniers."" if they were smaller and in the front, the dress would work. i am usually a size 4 and both the 2 and the 4 fit me well ? not too snug or to",3,0,0,General,Dresses,Dresses +1092,42,,"This dress is adorable, but fit a bit large through the waist. i ordered the 6 and am exchanging for the 4, so hopefully it will work better for me. for reference, i am 5'7, 135 lbs curvy. the fabric is soft and swingy and the striped under-layer is feminine and adorable. love.",4,1,1,General Petite,Dresses,Dresses +1150,47,,"Love this dress, it's comfortable +and it can be worn casualties or formally.",5,1,0,General,Dresses,Dresses +1079,33,Wanted to love this but couldn't,"I saw this dress online and really wanted to love it... unfortunately it wasn't at all as expected in person. + +as the previous reviewer mentioned it is extremely itchy material, which was already pilling on many of the dresses displayed in the store. the neck was extremely tight; a problem i've never encountered with any retailer dress. additionally it seems to have a kangaroo pocket located right underneath the bust line, which protruded in an unflattering way. the pocket is not at all not",2,0,6,General Petite,Dresses,Dresses +819,36,Pretty print but didn't work.,"Wanted to like this type. cute print. something about the width and length of this top didn't work on me. was a little boxy. i'm 5'4, 135lbs, size xs-s. might be cuter on different body type, i'm hourglass and athletic.",2,0,5,General Petite,Tops,Blouses +1150,51,Great summer dress,"I saw this dress on sale online and it was available at my local retailer. i tried it on and went with the xs, i'm 5'4 130lbs, 34c and it fit great with some room. tts the material is fabulous and it comes with a matching green slip which is great.",5,1,0,General,Dresses,Dresses +1150,39,Great dress!,"Beautiful color, great quality! on sale too. a must have!",5,1,0,General,Dresses,Dresses +1077,42,New favorite lbd,"Love this dress. in fact, i loved it enough to get it altered so it would fit. purchased the black dress in a size 6, but the top was too big. and i'm not small chested, i am a 32d! i had to get the seam under my underarms taken in for the top of the dress to fit properly. but, now that it is altered...i love it.",4,1,1,General Petite,Dresses,Dresses +819,43,Love!,"This blouse is beautiful and true to size. i was so happy it fit after ordering it online. i'm a bit busty and broad but generally wear a m in most retailer tops and the m fit perfectly. length was perfect on me...not too long and not short. i'm 5'1"" for reference. definitely a top that can be worn dressed up with slacks and heels or skinny jeans and flats. love it!",5,1,5,General Petite,Tops,Blouses +1150,38,Looks just as good in person!,"I love the lacy details on the skirt. this dress is perfectly simple, yet can be dressed up too. as the evenings get cooler, it pairs up nicely with a cropped denim jacket or a cardigan.",5,1,0,General,Dresses,Dresses +1077,50,Pretty but flawed,I was so excited to get this dress...i even paid expedited shipping! i read the reviews and thought that i ordered properly but i sadly disappointed. it was just too big. i'm a size 6-8 petite and the size 8 was overwhelming. the side of the dress were down to my stomach and i just can't wear the dress. not sure what to do but buyers be careful. pretty color and design but not well-designed.,1,0,0,General Petite,Dresses,Dresses +1092,32,,"I ordered my usual size 8 but this run huge, i had to exchange for 6 or even size 4. the fabric is nice and airy. it seems to easily wrinkle though. just have to either iron everytime or dry clean i suppose. unique design.",3,1,4,General Petite,Dresses,Dresses +1077,45,Great dress,This dress fits incredibly well. i loved the color and it will transition through the fall nicely.,4,1,0,General,Dresses,Dresses +1132,40,Fall essential!,I ordered xs/s. i usually wear medium in tops and coats. the next size up would've been too big so this cape does run large.,5,1,10,General Petite,Jackets,Outerwear +1077,30,,,5,1,0,General,Dresses,Dresses +1077,49,"Great, but...","Loved the dress. loved the pattern and the cut. unfortunately it did not work for me. it is cut too low under the arm pits and therefore, showed too much breast. it is not made to wear a bra with either so that is not a solution. sticky boobs will not work either because it is the ""side breast"" that shows. i hated to have to send back but.....still looking for something similar and great!",4,0,0,General,Dresses,Dresses +1150,62,Heavy fabric,"I ordered this dress, expecting a cool lightweight summer dress. i believe it says cotton in the description.however the material is a very heavy cotton-linen blend.would have much preferred a better quality fabric.the color is a nice green and is well made.it runs large, except in the bust which fit well.",2,0,2,General,Dresses,Dresses +1077,34,Bright and beautiful,I didn't notice this online but it caught my eye in the store. the colors are bright and beautiful. i wear a 10/12 or m/l. i tried the 12 but the bust was too big (i wear a 36c). i ordered the size 10 and it fits perfect. i'm so glad i saw it in the store. i think it makes much more of an impact in person than online.,5,1,0,General,Dresses,Dresses +1150,39,Sweet,"I have the pink plaid pippa and this mint one is nothing like it, but in a good way. shorter, sweet embroidery but the same swing silhouette and drop waist style. this dress is a little oversized so if you want more fitted look, you can size down. stay tts if your busty like me. imo, the mint looks more sky blue than green. i got the medium regular and i'm 5'3"" 140# 36dd and ends at my knees.",5,1,1,General,Dresses,Dresses +1150,68,Cool ohio,"Just got this dress and am very pleased. fell in love with the bright color in the store and then came home ordered it at a great sale price!! color is as shown...beautiful lace trim at the bottom.....back longer than front as described and pockets!! i am 5'2"" and length on a large comes to just below the knees..in front....i may wear leggings under it...dont like the slip as it is far too tight...will wear a tee or turtle under it.. quality heavier fabric. roomy... linen and cotton.",5,1,0,General,Dresses,Dresses +1092,64,Simple closet staple,"This dress is so simple, but gorgeous on. the top runs a bit small in the shoulders/bust. the top button gapes a bit in the bust area. the cuffs and collar insides are a different coordinating print and provides a cute option to roll or unbutton and press open to style.",4,1,0,General Petite,Dresses,Dresses +1092,47,"Great every day, just needs a tuck...","Ok, the material is great, light & airy. the thing they don't show you is the waist line is tucked in the photo, that's why you cant see the bi level hem line. the hem line is fantastic. the waist is the problem, the whole dress just hangs huge from bust down. the material is so light i would caution against darting the dress. i created a button loop cinch under the outside corer of the pockets, on the seem of the waist. this worked for me.",4,1,2,General Petite,Dresses,Dresses +1150,67,This is a keeper,"I just got this dress in the mail, and i have to disagree with the previous reviewer.. the embroidery on the dress is so well done and thick. the material is high quality and although breathable, holds up perfectly to the embroidery.. i usually order an extra small in loose fitting dresses, and ordered the extra small in this one. i'm 5'4"", 117 pounds, with a curvy build. the xs was more fitted, which i wanted. i can belt it or wear it loose. did i mention the color? vibrant rich green. can't wa",5,1,16,General,Dresses,Dresses +1077,43,,"I love the color, which is eye popping without being gaudy. i am 142lbs, 5' 4"" and got size 4. it goes beautifully on my slightly brown skin. the length is just above the knee and the fold of the dress in the front adds that extra touch of oomph. it does have wide arm holes so a bra, even a strapless one, could be tricky, although it wasn't a gaping hole for me. i think i could wear it over a green bikini-like halter bra and take care of the arm issue.",4,1,1,General,Dresses,Dresses +1112,34,Cut is off,It seems this coat could have been manufactured under a smaller spec size because the size large looses shape and where it hits on the waistline is unflattering. quality is high however,3,0,0,General,Jackets,Outerwear +1150,30,"Great summer, country dress",I loved this dress when i saw it mostly for its emerald color. i am tan with brown hair and features so green is a good color for me. the quality is very high with detailed embroidery and thick fabric. the dress comes with a slip which fits well but i don't think you'd have to wear based on the opaqueness of the fabric. the dress fits true to size but the cut is gracious through the hips. this is a relaxed fitting. drop waist dress.,4,1,1,General,Dresses,Dresses +1150,35,"Pretty, but not good enough for full price",I thought this dress was lovely on. i'm an 8/10 and tried the med which i believe was the right fit. it may have fit a little large but i liked the way it hung. it has pockets and the color is absolutely beautiful. definitely buying if it makes it to sale.,5,1,1,General,Dresses,Dresses +1132,52,"Fabulous, petites rejoice","I ordered xs petite. which they are sold out of. but in case you are a different size i wanted to write a review. i'm 5 feet tall and 120 lbs. i am 34 d so busty. the petite did not overwhelm me. the pockets do open. you're supposed to cut the little threads out. ask a dry cleaner or an retailer stylist for help. i like that there is a little ""stiffness"" to the cape. it has holes for your arms. not a poncho. your lucky if they have your size!",5,1,1,General Petite,Jackets,Outerwear +1094,50,,I love this dress. i wish i had ordered a size bigger because now its out of stock. if you are between sizes order a size up. i'm in between a 4 and a 6 petite and ordered the size 4 and the dress is too tight in the bust. the dress has no give so it has to fit perfect. it is so lovely i don't want to return it. i will try to find a seamstress to help with the fit. my favorite part of the dress are the side pockets. they're big and adorable.,5,1,5,General,Dresses,Dresses +933,39,,"Great sweater. long and warm, but not too thick. i am 5'4"" and ordered a medium. fits and hangs nicely.",5,1,0,General Petite,Tops,Sweaters +1077,22,,"Beautiful in person! highly recommend: great quality, beautiful design, flattering!",5,1,8,General,Dresses,Dresses +876,37,,"Gorgeous shirt! the detail on this shirt is impeccable! even with its boxy shape, it was very flattering on my petite, curvy frame. i'd say this shirt runs just a tad big. i'm 5' 118lbs and the xs fit perfectly.",5,1,3,General,Tops,Knits +850,60,Great top,I bought this late in the season and love the way it fits and looks.,5,1,0,General,Tops,Blouses +850,25,Must have denim,"Perfect denim top! the fabric/material is great and of good quality. there is a structure to the top, but it really makes the looks. the quality is amazing and the top can be styled in so many ways. for the quality, a definite must buy!",5,1,2,General,Tops,Blouses +850,43,Nice basic - for layering,"I know it's for warm weather, but i am more excited to use as a layering piece for fall/ winter. i bought 2 sizes a 4 & 6, because i wasn't sure on size. the 6 was way big on me, but the boxy cut of the 4 left enough room for a shirt or light sweater underneath.",5,1,0,General,Tops,Blouses +830,58,Very versatile,I love how feminine and interesting this top is. what i especially like is that you can layer different colored camis underneath to get a completely different look. the weight of the material makes it appropriate for all seasons. it is very well made and is something you can wear to work and also wear if you are going out afterward.,5,1,0,General,Tops,Blouses +850,63,Almost,So much right but then....too short.,2,0,7,General,Tops,Blouses +850,36,Fantastic tank!,"I ordered this because i can't resist denim shirts. i love the unusual shape for a tank top and the full-length, bronze zipper in the back is to die for. it looks great with everything!",5,1,0,General,Tops,Blouses +995,67,Gorgeous,"This skirt is gorgeous. i love the dots, the heavy fabric, the slight metallic in the weave. it also has two exposed zippers, one on either side of the waist, which gives it an edgy vibe. a perfect counter balance to the 50s circle skirt cuteness. however, not knowing my size in tracy reese, i ordered my usual retailer size 4. i cannot even zip it. i measured it and the size 4 has a 24 inch waist. there is about an inch of give in the band, but the elastic is so heavy it would not be flattering to",5,1,0,General,Bottoms,Skirts +850,37,Lovely drape in your regular size,"I originally purchased this in my usual retailer size 6 (vanity size lol), and was nervous that the neck would be tight, based on the other reviews. however, once i tried it on i realized that in my usual size the body was a little too wide and didn't create any shape. i ended up exchanging for and keeping a size 4 and it fits much better in the body and i did not have a problem with any tightness in the neck in either size. for reference i'm 5'7"", 36dd 135lbs. + +i would say this items runs true",4,1,15,General,Tops,Blouses +850,30,Flattering denim,"I love the look of this top. my original order was returned because of a defect but the customer service was wonderful. they took it back at the store and sent out another one right away. +the style is very flattering and the quality of the denim is excellent. +love the back zipper as well.",5,1,0,General,Tops,Blouses +996,39,Love fox head print,"This skirt is really pretty in person. my store had jsut gotten it in when i was in the dressing room and my stylist askedher coworker to bring it for me to try on. i tried on the regular 0 (my sotre dones't carry petite :-( # and it was perfect, length was actually nice. i can't compare to petite, maybe i will order it jsut to see. #i am 115 lbs, 5'1.5"") + +two things to consider: first, the image online ahs a balck lining at the hem of the skirt. nonte of the skirts in sotre ahd that, the hem",4,1,7,General,Bottoms,Skirts +850,39,Stiff and sturdy,"I am not quite sure what to think about this top... color is nice, cut iis pretty but the material is denim denim....it would probably soften with wear but the deal breaker for me is that i have a vein in my neck that pops out like crazy when i wear the top. if i release the neck it goes back to normal. not that it is tight but apparently it blocks flow somehow. so i passed. + +i tried on regulat 0 and it was fine at 115 lbs. 30 dd chest",4,1,0,General,Tops,Blouses +876,43,"Great concept, but snags easily!","This top is adorable in style and fit. which is why it breaks my heart that i can't recommend it. the embroidery snags so easily, when i wore it, i ended up with several tears in the threads, leaving the pattern a bit of a mess. it snagged on my rings, my watch and my purse. i returned it because of this. it's really too bad, and i wish the design were printed on instead of sewn, simply because it would last a lot longer.",3,0,1,General,Tops,Knits +862,74,Beautiful halter to show off shoulders!,"I found this top in my local store. there were two colors available, this coral color and a deep teal color. i purchased the teal in a m, which is one size down from my normal size. it drapes beautifully. it is a tunic length, but not too long. i love the way it makes my shoulders look. i have athletic shoulders, and halter styles are best in the summer for me. this tank will require a strapless bra, i plan to wear a bandeau but i am not very big up top. anyhow, love this top. if it gets release",5,1,16,General Petite,Tops,Knits +876,28,,,5,1,0,General,Tops,Knits +835,39,Great top to span the seasons,"I think the orange top will look great in the fall as well as spring. i'm 5' 7.5"" and it's a great tunic length on me. it's really pretty and i love it. snap it up on sale!",5,1,0,General,Tops,Blouses +876,44,Versatile top,I love this top. i purchased it in an xs and feels it is tts. it can be dressed up or down. i recently paired this with the cloth and stone chambray drawstring shorts and it was the perfect summer outfit. the button details in the back are such a nice touch. i got many compliments on this top.,5,1,0,General,Tops,Knits +876,43,Stunning blouse,"This blouse is gorgeous. first of all, it's cotton! so, it is extremely comfortable. it isn't tighter in some areas more than others, but fits evenly throughout, which although a rarity, is wonderful. finally, a blouse that fits perfectly! i am 5'3"" and 108 pounds. i ordered the regular xs and it hits right at my hips. i have a longer torso, however, so although i am not tall, the petite would have been too short for me. it is beautifully made and the red is a beautiful crimson on white. grab th",5,1,1,General,Tops,Knits +876,45,"Stunning light, airy top!","This piece is just gorgeous. you will almost never catch me paying full price for a clothing item, but today i did! i've been admiring it online, and when i noticed it had sold out (the red version) online, i stopped by a store to see if they had it in stock. well, it looks even more gorgeous in person, and i snapped it up right away. i envision myself wearing this all summer long and beyond.",5,1,1,General,Tops,Knits +830,38,Back pleats are never a good idea,"This shirt is gorgeous at first glance. the quality is there and it has a beautiful design...from the front, that is. but it is huge and billowy with back pleats. i cannot imagine this being flattering on anyone. it just adds so much volume to the top. i am thin and petite so maybe that was the issue, but i just can't see adding so much volume. this was a total miss for me. such a shame. would have been great without all the extra volume in back.",3,0,2,General,Tops,Blouses +876,35,,"Normally i like to purchase from the store so i can try things on first, but this top wasn't available locally. i guessed on a medium. i'm 5'5"" and very curvy and the medium fits just like the picture on the model. just a hint of a sleeve and nice and drapey-loose over the body. the embroidery is just beautiful. the only reason i'm not giving 5 stars for quality is that i had to sew two buttons onto the back, my top came without them.",5,1,1,General,Tops,Knits +835,47,Really cute but didn't work,"I bought this thinking it would be a great summer tunic, but it was really huge on me. i normally wear a medium but ordered down a size and it was still quite large. it was very long as well and i am 6' tall. i am normally a size 8, to give you an idea. i would recommend it, but it is going back for me.",3,1,1,General,Tops,Blouses +876,37,,,5,1,0,General,Tops,Knits +835,30,Worth a look,"I noticed this top on the sale rack and loved the color palette. it would be a nice top through spring, summer and into fall. the colors in it will go with lots of things in most wardrobes. the cut and style of the top are flattering and it feels good on my skin. i can see wearing a shawl with it is cooler weather or perhaps a cropped sweater. the cap at the top of the sleeve is cute, although i wish it extended just a bit longer. i tried a xs and an s. probably could have purchased the xs, but",4,1,3,General,Tops,Blouses +830,49,Lovely if you don't have curves!,"The lace detail on this blouse is beautiful. i love that it is cotton and it has a detachable camisole which is a nice touch. unfortunately, this didn't work for me as i found it extremely unflattering. the gathered material just doesn't work if you have a large bust. it made me look enormous, which is never a good feeling. i recommend, but only for tall, slim types with a small bust.",4,1,4,General,Tops,Blouses +830,25,"Loved this blouse, just not on me","I so wanted this blouse to work. the lacework is beautiful, and it is a substantial and well made top. the neck fits well, which is not a given for this style top, and i really like the 3/4 length sleeves. but the top billows out like a tent on me in all directions, and it was an awkward length on me (not quite hip length, not quite tunic). wish this were cut a little straighter and longer. i'm 5'4"", 120 lbs and tried a size s.",3,1,0,General,Tops,Blouses +872,27,,,5,1,0,General Petite,Tops,Knits +996,46,Very cute!,This skirt is so cute. the fix print is really nice. it's a great piece to add to the fall wardrobe.,5,1,1,General,Bottoms,Skirts +876,69,Love!,"I love how unique this top is, especially the buttons that run on the back. +it is cut boxy, but i think it works because there is so much other detail going on. the fabric is comfortable, and the stitching on the inside is not irritating.",5,1,0,General,Tops,Knits +876,29,Unique and perfect,Such great detail great beautiful in red and white.,5,1,0,General,Tops,Knits +876,69,"Love, love, love","This top is so cute and so comfy. i love the details, especially in the back. this embodies what i love about retailer clothing- the little unique touches that you find anywhere else. very pleased.",5,1,0,General,Tops,Knits +876,45,Disappointed,"I initially saw this top a few months ago, and fell in love. it ended up selling out in stores, so i ordered it online, where it was back-ordered by a couple of months. i received it this past week, and was sadly disappointed. the design is pretty, but overall the quality is sorely lacking. i wonder if maybe the first batch was good, but when they realized they were so popular, and had more made, the newer batches weren't as good? not sure. the one i got had inconsistent red embroidery, and ther",1,0,5,General,Tops,Knits +850,44,Recommend but with a caveat...,"I tried the 4 and felt it ran a bit big, i'm 34a-28-26, 5'6"" about 130lbs and expected to take a 6. the 4 was ideal. +love the concept but thought the material was too stiff to be a 'swing' tank. the pleats in the back poke up when you move or bend as if you've got little horns coming out of your back. i think a chambray, like cloth and stone produces might have rendered this super cute design better (imo). +it has a trapeze shape, i wouldn't plan on tucking it in. +finally, you mightn't want to",4,1,2,General Petite,Tops,Blouses +835,56,This top is way to long.,Hate i have to return it - way too long-almost more mid thigh/almost dress length.,2,0,5,General,Tops,Blouses +850,39,,,5,1,0,General Petite,Tops,Blouses +872,52,,"Cute top. a little delicate. my top arrived with a rip in the sleeve. fortunately, my tailor was able to fix it.",5,1,0,General Petite,Tops,Knits +876,48,,"Luckily i found this in the store though it is on backorder online, so if you really want it - go to/call the store. it's effortless, fun, beautiful, and nicely detailed. love this top. i'm 5'5"" and usually wear size 6, and i bought a small. really worth the price b/c you can just throw it on and look fabulous. layers well. so happy i got this.",5,1,2,General,Tops,Knits +876,46,Pretty top,Very pretty. love the design both front and back,5,1,0,General,Tops,Knits +876,49,This one is a winner!,"This is a beautiful top, the pattern reminds me very much of mola designs stitched in panama. i love the contrast of the red stitching against the white background. i'm not as crazy about the buttons on the back sides- not sure what that detail adds to the piece. it is a boxy shape, so be aware it's not going to hug the figure. the cotton is soft and medium weight. overall, it's a stand-out!",5,1,1,General,Tops,Knits +876,31,Can't wait for summer!!,"Absolutely in love with this top. the embroidery and back button detail make for a unique and fun look. light and airy material will be perfect in warmer weather with a cute pair of shorts. i got a size small and it fits perfectly. measurements: 5'4, 135lbs, 32e",5,1,18,General,Tops,Knits +876,64,Boxy but pretty,"Bought this in xs petite - i'm 5'2"", 102, it was too big, so took it to a tailor. altered it so that horizontal stitching at the bottom sits gently on my hips, rather than floating way out all around. it's now nice and flattering; i get tons of compliments. note that the fabric is more off white, than bright white; i bought it online thinking it would look good with white jeans - it actually looks best with blue jeans or navy shorts/pants. drapes nicely and doesn't wrinkle. a win!",4,1,1,General,Tops,Knits +876,66,,Most often complimented item of this spring's wardrobe,5,1,0,General,Tops,Knits +876,30,Runs a bit large,"I wound up returning this shirt, because i ordered the wrong size! so sad. i should have sized down. i'm tall, and long waisted, but slight on top. + +the shirt is gorgeous, and the detailing is perfectly done. i'd definitely recommend trying this one. just choose your size carefully..",5,1,0,General,Tops,Knits +876,39,Love!,"This shirt feels so special. it is mainly t shirt material so i will be dry cleaning to make sure it keeps +it's shape and delicate feel. the stitching is so beautiful! i'll wear this with jeans and even my navy pencil skirt for work. so cute!",5,1,0,General,Tops,Knits +850,53,,It's a cute top. i agree with the other poster that the neck in the front feels a little restrictive.,4,1,2,General Petite,Tops,Blouses +876,28,Gorgeous top! perfect for summer!,"Absolutely love this top! i've been on the lookout for a cute cotton top, something that'd be ideal for summertime. this beautiful piece doesn't disappoint. the color pairing - white cotton base and lovely red thread embroidery - looks stunning. not the mention the unique back detailing makes it a must-have. highly recommend.",5,1,1,General,Tops,Knits +862,29,,"This has lovely embroidery of good quality, and it is nicely lined in the embroidered section too. it is a very loose swingy shape, so size down.",5,1,0,General Petite,Tops,Knits +1077,42,"Beautiful, flattering, comfortable","I love this dress. it's beautiful and flattering. not to mention that it is also comfortable with a bit of stretch. i couldn't see it in the picture, but the black parts on the shoulders in front and on the back is sheer, so you have to be careful with underwear choice. i have an apple shape and yet this was flattering and the perfect length. i am short and apple-shaped and it was a great choice.",5,1,3,General,Dresses,Dresses +1077,48,Front black mesh at top pokes out at sides,"I agree the light colored portion of dress is not vanilla; it is more beige color. i liked the dress a lot, it had a flattering fit on me, extremely comfortable and then i noticed the black mesh portion at top of dress. it did not lay flat at the outer sides between the mesh and floral fabrics like the picture. it poked out on both sides at least 1"" which suddenly made the dress look cheap and ill fitting. i can guess either the mesh pattern piece was not cut correctly or it was not sewn correct",3,1,1,General,Dresses,Dresses +1022,45,My favorite jeans,"These are my favorite jeans. the fabric is soft but has a good amount of weight to them. all the details reflect a high quality jean. i usually have a very hard time finding jeans that fit my backside and thighs well without a huge gap at the waist. these sit lower on my hips, no gap, and plenty of space for my butt. they do run a bit large though. i have a 29"" natural waist and think a 28 would have been even more perfect.",5,1,0,General Petite,Bottoms,Jeans +830,38,Beautiful blouse; not good for full figures,"I purchased this blouse in my usual size xl. the wine color is very nice, sort of a rusty cranberry. i so badly wanted to love this blouse but i have to return it. there is so much fabric in the back that it makes me look like a giant cranberry. it is not flattering at all on my full figure. maybe if i was very slender, the massive volume of fabric wouldn't matter but sadly it needs to go back. on a side note, this is a cotton blouse and i believe it is going to require ironing since i badly wri",3,1,11,General,Tops,Blouses +850,26,Summer chambray!,"I love this top!! i got lucky and found it returned at a store (always always check the ""found and collected racks ladies!) it was a 6 and i was a little worried it would be much to large, but it fit great! i like that i can wear something under it or on its own. i didn't fit it too short, but i'm a little under 5'7"" and roughly 127 lbs, 32/34a. highly recommend!",5,1,11,General Petite,Tops,Blouses +996,36,High waist and seemed to run small on me,"Cute skirt and print, but high waisted. also was more snug so think it runs a tad small. i wanted to tuck in a shirt like shown in picture, but it looks goofy because the waist is so high. also there is no flexibility there so size up if you want to wear it lower. the model's arms are covering her waist so hard to tell what proportion looks like on her. i'm 5'4 so might work better on a taller person. sending back.",4,1,4,General,Bottoms,Skirts +850,44,Odd fit,"Based on previous reviews, i sized up to size 4 - i typically wear xs or s. while the length was okay, the body was way too wide! the neck was almost like a mock neck & higher than i expected which made it very uncomfortable for me! overall, i didn't find it flattering or anything special.",3,1,1,General Petite,Tops,Blouses +876,26,"Pretty, didn't work for me",The embroidery on this was beautiful but didn't hang well on my athletic/small chested upper body.,4,0,0,General,Tops,Knits +1016,49,Perfect fit,Fits great and super flattering,4,1,2,General,Bottoms,Skirts +876,39,Simple but beautiful,This shirt is really cute. i love the color and design. i like wearing it with jeans and sneakers.,5,1,0,General,Tops,Knits +996,43,Foxy print,"The fox print is super cute and the reason i ordered the skirt. sizing was true to me, i'm usually an 8 and the 8 fit fine. the waist is high and if you try to wear it low the side zipper puckers out in a weird way. skirt length is above knee (i'm 5' 6""). skirt is lined but the lining is dark brown/black same as the waist band in the photo of the model wearing it. the lining does not show at the hem, it's concealed. overall a fun a-line swingy skirt for late summer that will go into fall",4,1,2,General,Bottoms,Skirts +850,53,,"Loved this from the minute i saw it! great quality, very heavy denim, which i like. does run small. went up a size to be safe. happy with the purchase!",4,1,0,General Petite,Tops,Blouses +862,41,Gorgeous and unique!,"Gorgeous color, flowy fabric, unique design - this top is a winner. i don't even mind that i'll have to wear a strapless bra with it! a little bit on the larger size, but not too big in my opinion.",5,1,0,General Petite,Tops,Knits +876,46,Order this before it sells out again!,"Love this! saw online, didn't place the order and when i came back it was gone. retailer restocked so i got it second time around. ordered the red option. this shirt is beautiful! sometimes the online photos don't do the piece justice, but this time, it's even better in person. the embroidered detail is gorgeous, the fabric is light weight, and the back of the shirt has button down panels that are almost linen-like in look and feel. the fit is just as pictured imo. bringing this on vacation with m",5,1,0,General,Tops,Knits +876,66,,"I recently bought this blouse, the soft fabric drapes nicely and the stitching is wonderful. love it!",5,1,2,General,Tops,Knits +850,34,"Great quality, high neck","A wonderfully heavy weight piece, opposed to all the swingy chambray of summer, this piece will transition wonderfully into fall. the only disadvantage is a relatively high neck, which looks lovely but can be a little restrictive at times. highly recommend!",4,1,0,General Petite,Tops,Blouses +850,34,,,5,1,0,General Petite,Tops,Blouses +862,39,Perfect,"Gorgeous embroidery, soft fabric, great drape, hides tummy--overall perfect. size down. i bought the small and i am 36dd.",5,1,1,General Petite,Tops,Knits +862,47,Perfect fit!,Love the fit and color of this top. i love that it is somewhat fitted around the arm holes which doesn't allow for extra skin to show. it drapes nicely over my hips and tummy. got rave reviews from my husband!!,5,1,0,General Petite,Tops,Knits +876,39,,"This is such a unique and beautiful top. it will be a go-to in my closet all year round. the red embroidery is amazing. meant to be a loose fit. i'm 5'7"" and 120 lbs and ordered the xs. fits perfectly.",5,1,0,General,Tops,Knits +830,44,,"Beautiful,lightweight and well tailored +more dressy than what it appears in photo",5,1,0,General,Tops,Blouses +1077,39,Excellent dress,"Form fitting, hugs in the right spots, and love the pattern. it's a little shorter than i expected and too formal to wear to work. however, an excellent evening dress.",5,1,10,General,Dresses,Dresses +1028,51,,Love these jeans!!! they are the perfect fit from waist to ankles. their first wear was like i'd been wearing them for years. i paired them with the pintuck button-down tunic.,5,1,1,General,Bottoms,Jeans +850,33,,,4,1,0,General Petite,Tops,Blouses +850,64,A really cute top,"I am normally an xs or s in tanks, so ordered the size 6. looks pretty much on me as in the pic. love that it's a cotton denim but it doesn't have any stretch. love the look & the fabric, but the neck area feels slightly restrictive in the front & i think it wld creep up & pull on me when wearing. fabric is slightly stiff & the flared bottom just sticks out. armholes do cover the bra & length hits at the top of the hips on me. going to return the 6, but will try the 8 if the local store has it.",4,1,31,General Petite,Tops,Blouses +660,23,Glad to find a swimsuit with full coverage,"Really gorgeous print! i purchased these to go with the top (also recommend it as well) and i love these! i have a larger behind, and it's nowadays it seems to find swimsuits with full coverage without feeling like a diaper - these are it. there is elastic at the leg openings, so that may be uncomfortable for some, but i found no problem with it. for reference, i am usually a 6/8 28/29 in pants, and i purchased a medium.",5,1,0,Initmates,Intimate,Swim +871,62,Super soft,"It might look a bit stiff from the photo, but this fabric is so soft and really is a fashionable sweatshirt!",5,1,3,General,Tops,Knits +876,65,"Seriously, the perfect summer top!","This blouse is perfect in so many ways: it's cotton, the fit is super flattering, the design is gorgeous. i never, and i mean never, wear red, but i made an exception here due to the exceptionally stunning embroidery. i know this will be comfortable this summer; the fit is slightly loose, so the air can flow. the cotton is light but not thin, no cami needed. a medium size fits me very well; i am size 8/medium top, 34f, 130#. i love that the armholes are high and hide any flaws. the button design",5,1,1,General,Tops,Knits +850,26,Love this!,This is a unique take on a denim shirt! i have about five other denim shirts but love this style.,5,1,0,General Petite,Tops,Blouses +830,40,,"This is such a lovely top, but so very big and billowy. makes me wish i were taller, then i think it could work. there is just too much extra fabric all around. so sad because it seems well made, and is very beautiful. too bad it doesn't come in petites or even an xxs. even with my hips, it was just too much.",4,1,2,General,Tops,Blouses +850,54,"Cute top, comfy, great going in to fall.","Love this top, runs true to size. looks cute with in style army green cargo pants. great buy at sale price.",5,1,0,General Petite,Tops,Blouses +876,60,Unique front and back,"The back of this top is very unique and the embroidery looked like it would hold up. +it does have a boxy shape, but it really works with this piece. i found it to run true to size compared to other pieces i have from retailer. for some reference, i'm 5'5"" and weigh 148lbs.",5,1,23,General,Tops,Knits +876,35,Wow! so unique,What a cute shirt! i got the red and white and it's definitely a summer shirt although i'm sure you could make it look cute under a cardigan. i'm a 10 m and the m fit well. tts.,5,1,13,General,Tops,Knits +862,21,,"I love this top! usually i prefer neutral colors, but i looked at every one of the colors, and fell in love with the pink. i think it looks the best with the embroidery at the top. i too love this cut on my shoulders for summer. i would definitely recommend this top. i bought an xs and it's perfect. this shirt made me feel like twirling, i love it.",5,1,3,General Petite,Tops,Knits +440,62,Sooo soft!!,"Soft and stylish - my usual large seems a bit too large, so i will try a medium.",5,1,3,Initmates,Intimate,Lounge +1080,31,Underwhelmed,"Was really excited for this dress but should have paid more attention to the material it was made with. for the price of the dress, it felt very cheap. i didn't even end up trying it on after i opened the packaging. the colors were not as vibrant as the picture. as another reviewer mentioned, it was more similar to something you would purchase off a boardwalk. very disappointed and will be returning.",1,0,1,General,Dresses,Dresses +440,45,Soooooo soft!,"These pants are amazingly soft and comfortable. they can be worn with cute flats and a dressier top/accessories to work or with a simple tee or tank with tennies for running errands or lounging around. these are great for multiple seasons. i'm 5'2 so they are a little long but the ruched ankle makes that look by ""by design"".",5,1,2,Initmates,Intimate,Lounge +222,24,Beautiful design,"This is a really great bathing suit top. i haven't purchased a bikini in about 4 years so i'm glad this is the one i finally purchased. the floral pattern is dainty and gorgeous. the fabric itself is soft and comfortable. i listed it as a 'true to size' fit, but if you're on the larger end of your size spectrum i would get the size up for better coverage. i'm a size 8 through and through, and so ordered a m per their size standards. the size m was comfortable and fit but the size l covered bette",5,1,3,Initmates,Intimate,Swim +941,59,Love style,Really nice green blend of colors. fun style but not especially figure flattering as it is a very wide peplum. i still love it and goes with many outfits and as a fall jacket. is a bit itchy. need to wear sleeved top or dress underneath.,5,1,0,General Petite,Tops,Sweaters +822,48,Very pretty,"Love the shirt. exteemely comfortable, simple and nice.",5,1,1,General,Tops,Blouses +297,33,Love these!,My new favorite piece of loungewear. super cute and comfortable.,5,1,2,Initmates,Intimate,Legwear +440,53,Soft but,"These are extremely soft but do run about one size too big with one exception; the opening to pull your feet through that bag nicely around your ankles is soooooo small that you have to work to pull the heel of your foot out. for me, these are dual duty pants; casual wear like to the grocery store or coffee shop trip and second as great soft pj bottoms. though the ankles are small, they do not feel tight at all because the fabric is really that soft. they work well with both my sneakers and clas",4,1,1,Initmates,Intimate,Lounge +440,49,The coolest pants,"When i tried them on, i didn't want to take them off! they are so soft, so stylish, they drape your body just the right way, they are stretchy, so even though i am wearing 30 in jeans, i took s regular! run hone and tried it on with moss cowled side-zip tunic, 2 different booties and aquaflora reversible vest, all variations and combos looked really cool and great! i even tried with high heeled booties and dressier sweater top (warm-up pullover in charcoal), looked like high couture! the color i",5,1,13,Initmates,Intimate,Lounge +892,39,So soft and figure-flattering,"I ordered the black 2 months ago, it was on back order, and i jsut received it finally. the fabric is super soft, itried on both xxs and xs and could keeo either one. the ""v"" in front where it crosses is low, so most people do need a cami underneath, but you could probably do without for ultra sexy look (not my style, but could be done). i plan on wearing this with skirts, deresses and slacks... i saw a commet on the lighter color, not sure, but love this one in black for sure@",5,1,0,General,Tops,Fine gauge +892,27,Wonderful wrap cardigan,"I've been looking for a wrap cardigan for a while and this totally fit the bill. it fits well, is soft, and made of good materials. i love the versatility of using it with all my dresses. this is a great staple piece.",5,1,0,General,Tops,Fine gauge +1080,32,Bohemian chic,"I loved this dress in the photos and couldn't wait to try it on in person. the print varies from dress to dress and mine had noticeably much more cream color in it. i didn't mind too much but it didn't look like the dress the model is wearing. i bought the xxs petite which fit true to size. the v neck is a bit low for petite sizing but the length was perfect on my 5'2"" frame which was a plus. i agree with the other reviewers the fabric is cheap and feels cheap. not something i would expect from",3,1,0,General,Dresses,Dresses +1080,53,Lovely dress,I love this dress! it is equally pretty in person too. sometimes i will order things and when i get them the colors are totally different than what i anticipated. not with this dress. i love it and will get a lot of use out of it over the spring/summer.,5,1,16,General,Dresses,Dresses +822,41,More blue than grey and way too big,"Sometimes i order things online that i can hardly wait to arrive, and then once they do, i wonder if i made a mistake when ordering it. this is one of those times, and it was not my mistake. the shirt i received is not like this one. it is an xs, but it is quite large falling inches below where this one hits on the model. everyone i have shown the shirt to says that it is a denim blue color, not grey at all. it is a pretty color, but not what i thought i was ordering. i hate it when this happens",2,0,1,General,Tops,Blouses +1080,33,Love but fabric easily pulled,"Love the fit and style of this maxi. have gotten many compliments! however, my toddler grabbed the dress when she was falling over and it pulled a bunch of threads out and made the fabric look puckered and worn in that spot!!! for a toddler to do that makes me feel like the quality isn't amazing. also, the waist part itches me.",4,1,2,General,Dresses,Dresses +822,46,Grey not color as pictured on website,"I wanted to love this top, but when i received the picture on the website is a dark charcoal almost black and the ""grey"" that you order is much, much lighter grey. in addition, this shirt is super boxy... thus why the model probably is pinning her elbows to her side to bring the top in. going back disappointed.",2,0,10,General,Tops,Blouses +1080,35,Easy and stylish,"This dress is so pretty; can be worn casually or with heels to dress up! i get so many compliments on it, and it's so comfortable, it's like wearing pajamas! i highly reccomend it.",5,1,1,General,Dresses,Dresses +941,45,Horribly scratchy,"And the bottom looks like a tutu. first, i have high tolerance for scratchy fabric but this one i could feel it even through long sleeves. there is no way i could wear something that makes my skin itch so badly. second, the peplum part is huge and looks like an exaggerated skirt. finally, the color on the ""green one"" is darker than in the picture and it does have more of a green than blue tint. back it goes.",1,0,0,General Petite,Tops,Sweaters +941,28,Scratchy,Cute but too thick and rough,3,0,0,General Petite,Tops,Sweaters +1080,65,"Silky drape, super pretty design","This is a lovely dress with a soft fabric that drapes over the body. the pattern is soft and feminine, very much like the picture. my only issue, which is why i didn't give it 5 stars for my overall rating, is it's a bit snug around the bodice. this could be because i'm a lifelong swimmer however, my bra size is 34 b or c depending, so this shouldn't be an issue for this dress. + +other stats: 5'7"" 117 lbs and i got this in an extra small per recommendations of other reviewers. the small would b",4,1,0,General,Dresses,Dresses +1080,29,"Nice dress, but cheaply made","Given the price, i was pretty disappointed by the quality of the fabric. the dress falls nicely and fits well, but the fabric is cheap... i have another maxi dress that i bought for like 20 bucks at store on the boardwalk and it has the same fit and fabric. + +i expect a lot more from a dress with this price. i'd recommend only buying on super-sale.",3,0,3,General,Dresses,Dresses +1080,39,Gorgeous print,"I was thinking this was another maeve winner but this is actually plenty by tracy reese dress. i love the flowy fabric, the soft but vibrant colors and the gorgeous print. i wanted a size mp but that sold out so i purchased a regular m (with the intention to hem) and i find it too large in the bust. i'm going to order the sp instead too see if that fits better. for reference i am 5'3"" 36dd 140#.",5,1,7,General,Dresses,Dresses +941,65,Simply lovely and so cozy!,"Knitted and knotted makes such gorgeous sweaters: this is bathed in lovely, almost impresssionistic color, and the deep ruffle at the bottom is feminine and flattering. i adored the way there's enough wrap-around to get cozy in it, as i wore it through my day. i went with the green in a regular medium, which is my normal size: size 8, 34f. the 27% mohair enhances the soft feeling and lush look. as i wore this piece today, i felt that i was wearing something very special.",5,1,0,General Petite,Tops,Sweaters +1080,22,This dress is everything,"I can't get enough of this dress! this dress is everything. from the flattering fit, to the colors and pattern, to the design, and to the quality.. this dress really has it all. this is worth every penny and in my opinion, a great price for a versatile, high quality dress. the material is that super comfy, stretchy material which is perfect for everyday! it is a no brainer and easy to throw on. i'm so happy it comes in petite as the xsp length fits me perfect! it hits at the perfect length for a",5,1,3,General,Dresses,Dresses +1081,35,,,5,1,0,General,Dresses,Dresses +1072,34,Not what i expected at all,"I probably should have gone with petite. this dress was just awful on. the waist was nowhere near where it was supposed to be. it hits me about thigh level. it's very unforgiving, clingy, and shows every bump. i found the material tolerable but if worn for long periods of time, i have a suspicion that it would begin to irritate my skin and be scratchy. it's going back.",2,0,4,General Petite,Dresses,Dresses +936,35,Absolutely perfect,"If you are going for a ridiculously high priced ugly sweater contest, this is the one for you. i normally like clothing with some character and juxtaposition, but this one did not do it for me. i cannot imagine the collar fitting right or flattering anyone, and the mixed layers end up making it look cheap rather than trendy.",2,0,9,General,Tops,Sweaters +936,31,So pretty but...,"I love this sweater so much and wanted it to be my new favorite, but unfortunately it was a bit short for my longer torso. when i raised my arms up, it bunched up all wrong because it's a very thick sweater.",3,0,5,General,Tops,Sweaters +936,45,Fairisle sweater color,This sweater is gorgeous in print but in person the colors are murkier. the yellow dots are really a dusty mustard yellow and the navy is a smokey navy. the white background reads more oatmeal in person.,3,1,5,General,Tops,Sweaters +936,69,Gorgeous fair isle beauty,"This sweater is stunning. it is extremely well made. tons of tiny little embellishments that get noticed even by the most discerning eye! i've received so many compliments on it. if you want it to fit generously or with extra roominess, i recommend ordering one size up. it fits true to size.",5,1,3,General,Tops,Sweaters +1081,39,Would have loved in summer,"I had this in my wish list a long time, ten when sale came along, my size was sold out. however, someone returned it at my local store. i purchased it then tried it on later... why i ended returning it: + +fabric was gorgeous, and light, but fall is coming, and i won't wear it until next summer. may get over it by then +the shape is really nice, but the hem hit me in a weird spot on my short muscular legs +as others mentioned, there are spots where the sewing is not ""perfect"" and bulges a little",4,1,0,General,Dresses,Dresses +1081,52,,"I also returned this dress after waiting weeks to received it. i had high hopes for this dress as i really loved it online but what a disappointment when i got it. the fabric is made of cheap poly that's shiny, thin, and clingy. it shows every lump and bump you have. the zipper at the back won't lay flat and keeps bunching up creating an ugly bump. the sewing and hemline is uneven. there wasn't a lot of thought put in in the print placement where the seams was sewn together in the midline",1,0,43,General,Dresses,Dresses +1050,29,"Bright, classic, and all around lovely","These culottes are beautiful! really pretty cerise shade with a nice eyelet pattern. they are only partially lined. the size small, my normal size, was falling off of me so i sized down to extra small which fit perfectly.",5,1,0,General,Bottoms,Pants +1081,63,Super comfy,I've read the previous reviews about this dress and was hesitant to order it but i'm so happy i did! i can definitely understand why certain reviews are saying that the fabric is cheap. it is an extremely thin material as well as a thin lining. however i think it depends on the person. because neither of those things actually bother me. i get hot very easily so i appreciate the fact that this dress is very thin and flowy. i think it's extremely comfortable and looks very cute on. the zipper d,5,1,0,General,Dresses,Dresses +828,31,,"The top is indeed a bit boxier than i was expecting, as the other reviewer found. it still looks good tucked in if you're concerned about it. the fact that it's sustainably produced in ghana was a big part of my desire to keep it too. really great to see designers producing clothing responsibly! i wish that how a garment is manufactured is highlighted more on this site because it definitely contributes to my purchases.",4,1,0,General Petite,Tops,Blouses +936,50,Cozy fairisle with visual interest,"The texture, mixed yarn, and beading make for a lovely variation on the fairisle. as other reviewers have said, the length is not as long as it appears in the picture. the color is a very dark navy, almost black. the neck opening is larger than a standard crew sweater but lays mostly flat. the overall look is boxy. i'm 5'7 and normally wear a medium in retailer sweaters. i changed to a large so it would be longer and have a roomy drapy feel.",4,1,3,General,Tops,Sweaters +984,38,Great vest,"Perfection. fits like other pilcto jackets and vests. tapers in slightly at waist for flattering fit weight is light for summer but substantial and good quality. silver buttons, not bronze or copper. slight stretch, super comfy. no regret!",5,1,2,General Petite,Jackets,Jackets +1081,32,,,5,1,0,General,Dresses,Dresses +868,29,Shapeless,"I really wanted to like this because the color is beautiful and the knit is obviously good quality. but the shape is impossible to work with. it doesn't just run big, it just hangs there. really disappointing. it'll have to go back.",2,0,1,General,Tops,Knits +1081,57,Complete mess,"I love eva franco +this is a very poor version ! bias seams are puckery... zipper is bubbled +felt great looked like fun but too much if a mess to be fixed.",1,0,0,General,Dresses,Dresses +936,32,,The sweater is as cute in person as it is online.,5,1,0,General,Tops,Sweaters +825,47,Sad :(,"I love this top so much online. i received it yesterday in the mail and unfortunately i am very disappointed. there is nothing wrong with the quality but i do think it looks more appealing online. also, this top is probably not for anyone with a large chest. it looks nice and drapey on the model. when i put it on it just makes me look fat and the top (thanks to my 38dds) looks more like a swing top. i'm sure it's a lovely top on very thin people with a smaller chest.",2,0,0,General,Tops,Blouses +936,40,Love this sweater,Such a festive sweater and i've received many compliments anytime i wear it. unique and fun to wear!,5,1,0,General,Tops,Sweaters +1081,40,Cheap material -- poorly made,"Do not buy this dress for full price. the design looks great but after receiving the dress, the material is made of extremely cheap slinky-ish polyester that you would find at a f21 store. the stitching is horrific and created an uneven ""hump"" on the back seam. just absolutely poor poor quality.",1,0,48,General,Dresses,Dresses +936,38,Beautiful sweater,"I really love the look of this sweater and it seems to be of great quality. i will say the fit is a bit odd. the sweater is on the short side but is very roomy through the neck and shoulders. i ordered a small (5'6""; 120lbs) and would change for an xs but i'm afraid it would be cropped. i'm keeping it but wish it had a more uniform fit. +really beautify workmanship though.",4,1,12,General,Tops,Sweaters +936,30,,"This sweater is absolutely gorgeous. the design and structure might make your shoulders look a little bigger, but i absolutely love it. it has a little boxy shape but i feel like it goes with te style. love it! get tons of compliments every time i wear it.",5,1,0,General,Tops,Sweaters +1081,55,Ready for a cruise!,"I'm going on a cruise to the bahamas and when i saw this dress, i had to have it! i love it! it's soft to the touch and super fun to twirl around in! the seams are a bit awkward and that's due to the bottom part's shape. i have a slender navy blue belt that i pair it with to hide the waist seam and to accent my waist more. a navy blue sash/scarf/ribbon around the waist can do the trick too!",4,1,0,General,Dresses,Dresses +936,72,"Boxy, navy color looks darker than pictured","I tried this sweater on in the store. i love the design and was hoping it would look as good on me as it does on the model. first off i should point out that the navy color in the featured photo looks much lighter than the sweater does in person. some of the photos accurately represent how dark the blue is (it almost looks black) but the featured photo shows it more like a medium navy. secondly, anyone looking to purchase should know it is very warm. if you are buying to wear mostly indoors you",3,0,15,General,Tops,Sweaters +936,44,"Beautiful, but...","Picked this up in the store today, but didn't try it on first. it is even more gorgeous in person than the photo, but sadly this did not work for me when i got it home to try on. there is wonderful detailing, but somehow the bulky knit fit was just not flattering on. i think it is the thick knit and slightly shorter length. the knit was bulking up in all the wrong places and visually added about 10l bs to my frame. such a shame---really wanted to keep this beautiful sweater but it just did not l",3,0,7,General,Tops,Sweaters +936,47,Humongous,I found this as a return in the store. i tried the xxs. i was so excited because it looked really cute on the hanger. it was so huge- looked like i was wearing an xl.,2,0,3,General,Tops,Sweaters +1095,20,Fabulous dress!,Fits well and appropriate for work or going out! love the pop of red in the beads! could easily be worn with a jacket well into fall! i typically wear a 6 and a small fit perfectly. not too short- but hits above the knee! this will get lots of wear!,5,1,0,General Petite,Dresses,Dresses +1095,41,This dress is very versitile,This is a great dress that can be dressed up or worn with flip flops. i also love that it has pockets :),5,1,0,General Petite,Dresses,Dresses +1095,29,Beautifully made casual dress,I tried this dress on in the store and loved it. i am not a aize 2 (usually a 6) but the dress's a-line shape allowed me to get a size 2. the dress is well made and the orange beaded work is lovely. a very pretty dress that i will wear a lot.,5,1,0,General Petite,Dresses,Dresses +1080,56,Great dress,The color and fit of this dress is fabulous. i can't wait to wear it out.. casual with flats or dressy with heels. love it!,5,1,13,General,Dresses,Dresses +820,47,,"Really like the style/aesthetics of the top. it is very unique, and works with a variety of pants. the only downsides are that it flares out a bit more than it appears on the model, and it arrived somewhat wrinkled. i am 5' 6"" 125 pounds and i got a size 4. looking forward to wearing this a lot in the fall.",4,1,2,General Petite,Tops,Blouses +24,27,"Fun and gorgeous suit, but not for me","This was the first suit i've ever ordered online and the first one piece i've tried since i was a very young girl, so i was a little skeptical going into this. i'm 5'9"", ~145 lbs, 34b, with a pear shape and short torso. i was pleasantly surprised by the overall fit--the length was right, the bottoms fit really well (i was nervous about the boy short/hip hugger design), and the suit was just very comfortable and cute. however, something about the cups just didn't work with my chest; my breasts di",4,1,0,Initmates,Intimate,Swim +820,34,Beautiful top!,Im so glad this shirt came to me just as pictured and described. color and fit was spot on! thank you!,5,1,0,General Petite,Tops,Blouses +1080,62,A dress for everyone,"This dress is just beautiful - color, fit, length, style, stretchy fabric...everything about it seems to flatter all body types. it also passes the armhole test - no issues there! the back closure detail adds a little something special to it. i tried it on with black leggings and a black leather jacket just for fun, and it looks surprisingly cute for multi-season wear. is it overpriced? absolutely, but so is 99% of the stuff at retailer. i will be keeping it anyway though because i think it's a tr",5,1,3,General,Dresses,Dresses +1094,39,Fun everyday dress,"I did like the dress, but don't love it. i think it would have been better for me if it were snugger. the xxs petite was still loose and i found that there are so many dresses with the similar fit, i decided to pass... i also do like both colors, the brown is a better choice for me on my skin tone (warmer), but both are nice. i am 115 lbs, 30dd, 26.5 in waist.",4,1,4,General,Dresses,Dresses +1080,39,Surprised,"I don't usually go for swing style dresses as i am petite, but this one was totally cute. i like the color a lot, wasn't sure it would work as i am rather pale, but it is nice. the xs p was returned at my store, why i tried it on... winner. 115 lbs, 26.5 in waist, 30dd chest. i can see myself wearing this in summer, spring or fall (with boots).",5,1,1,General,Dresses,Dresses +24,39,Worth it!,This suit is great for curvy and slightly flawed figures. the vintage look delivers full coverage that still looks sexy. not your mother's one-piece.,5,1,0,Initmates,Intimate,Swim +24,36,,"Love it! this suit is high quality and comfortable. it's a little tricky to get on but once it's on, it's perfect. i have a small chest and the fit of the cups and twisted fabric makes me feel totally comfortable. i usually wear two pieces, in fact this is my first one piece since i was ten, and i love it.",5,1,0,Initmates,Intimate,Swim +1095,52,Easy to wear!,Love this dress...light and comfortable and fits true to size. i have larger shoulders and the halter design is really flattering. you can dress up or dress down which is a huge plus for me!,5,1,0,General Petite,Dresses,Dresses +820,37,Pretty - but tight arms!,"This is a very pretty top - flowy w/o making you look larger, a nice blue, and a good transition piece. but, the upper arms are so tight on me! i'd say i have pretty average arms - definitely not super thin, but not large either. i keep staring at it and hoping the fabric will give a bit so i can keep it, but sadly, i just don't think the material will be very forgiving. if you have truly thin arms, i think it would be a great top. maybe sizing up would also work, but for me at least, i think it",3,1,0,General Petite,Tops,Blouses +1094,46,"Pretty, but very big","I am not one to complain about things being cut too big as i generally don't mind lose and flowing. however, this dress is very ""bell"" shaped and the fabric is just thick enough that it doesn't really lay well, at least not like it does in the photo. i bought the earth-tone color way and i felt like i was wearing a macrame version of the liberty bell. it is also a lot shorter than i was expecting. if it weren't so short, i would try sizing down. it is very good quality and the slip is super soft",4,1,1,General,Dresses,Dresses +24,37,Love this swimsuit!,"This swimsuit is super cute and retro. the ruching on the stomach is very flattering and the shaping on the padded cups makes for a very nice hourglass 1950s-inspired look. great for us ladies without a lot up top. i felt very marilyn monroe in this suit! i love the back coverage, too -- your butt doesn't hang out of the suit and the boyshort style offers a good amount of coverage without being dowdy. + +i was worried about sizing when i first ordered it. based on what everyone said, i went with a",5,1,0,Initmates,Intimate,Swim +1094,48,Luv this dress!,"I saw this dress in the window at the roc center nyc store and knew i had to have it. the one i chose has muted earth-tone colors of tan, green, gold. looks stunning with my complexion. the blue one was nice too, but the earth tones were more flattering on me. the fit is loose and flowy, very comfortable, but not baggy. i'm 5'5, 34c, 115ish and i took my usual xs. i plan to pair it with a muted green leather jacket and brown boots for the fall. can't wait!",5,1,10,General,Dresses,Dresses +820,55,Beautiful!,"Love this top. fits true to size. not to boxy,, sleeves are so cute! looks very rich. a must have in your wardrobe!",5,1,7,General Petite,Tops,Blouses +820,69,So sorry i had to return,"I ordered in blue. so excited at arrival; it looked gorgeous...then i tried it on! i'm 5', 106#, 34d and my upper arms are a little muscular. i normally order 2p (sometimes 0p)...and never a problem. this top was sooo tight under the arms and at the upper arms...if i tried any movement would have probably ripped out the seams! maybe i just received a product that was mis-sized, or defective. all i can say, if you have skinny arms, you'll love it.",1,0,5,General Petite,Tops,Blouses +1094,39,Great for transitioning into fall,"Very cute dress, just way too big. i ordered it online, wish i would have gone a size smaller.",3,1,0,General,Dresses,Dresses +820,58,Flowing comfort,I love love this top. it is so pretty! i am stopped by strangers complimenting me on it. it is so flattering. i wear a cami under it and find it perfect! it hits at the perfect length below the waist on my jeans. it's easy to throw on and go. casual but dressy. the sleeves do bell out so you may need to watch them when you eat. i've accidentally caught them on my plate. the shirts washes well.,5,1,0,General Petite,Tops,Blouses +820,64,Love the sleeves!,"I ordered this in the lavender and love the rich color! looks great with my blonde hair. the bell sleeves, which are all the rage right now, add to the feminine look. i wore it with jeans and espadrilles for a fab boho look!",5,1,1,General Petite,Tops,Blouses +24,29,Super unflattering,"I'm 5' 5"", 150 lbs, 32dd, normally a 28p or 29p in pants. i ordered an 8 and probably should have gone with a 10. it was super unflattering?the print was overwhelming for my pale skin, it made my thin waist look larger than it really was, and rode up the inside of my thighs. i have a similar bathing suit from modcloth that's 1/3 of the price and 20x as flattering. if you have thick legs, this may not be the suit for you. i returned it--so fast.",2,0,0,Initmates,Intimate,Swim +820,31,,I wasn't sure i'd like the sleeves but they are very cute and just the right length. i really like how the top fits and is very flattering,4,1,0,General Petite,Tops,Blouses +24,37,Great for bigger busts,"I absolutely love the retro look of this swimsuit. i first saw it on blogger amber fillerup-clark (barefoot blonde) and i knew i had to have it. this is the first one piece suit i've purchased in about six years. i've avoided one pieces because most of the ones i tried made me feel frumpy, and the mono-kini look just looked odd on me. i have a smaller frame and a larger bust (32ddd), so finding swimsuits that fit properly is a challenge. i am a size 4 but i ordered a size 6 after reading reviews",5,1,0,Initmates,Intimate,Swim +1074,37,White tent,"First off, this runs very large. i'm normally an 8 and sized down to the 6 but probably could have done a 4. it looked like a tent on me. the top part is lovely, i just think the bottom is way to large and not flattering. this one is definitely going back especially with all the white dress options they have out now.",2,0,9,General,Dresses,Dresses +1033,56,,Love the fit of pilcro jeans. it's always a struggle to find a white jean that is flattering around the thighs and doesn't show off lumps and bumps! these are terrific quality indeed.,5,1,2,General,Bottoms,Jeans +809,70,,"Very nice basic tee shirt, soft and comfortable, well cut.",4,1,2,Initmates,Intimate,Lounge +820,56,Flattering and stylish,"I got this top in white/rust and it is darling. the lining keeps it from being too see through. the bell sleeves add style without getting in the way thanks to the shorter length. i get many compliments each time i wear it. i am 5'1"", 103 lbs and take xs- fit was true to size.",5,1,0,General Petite,Tops,Blouses +712,66,Soft and cozy,"I sized up to an xl and although they have everything you want in a yoga/lounge pant, they just didn't thrill me enough to keep them. they're soft, warm and comfy but i didn't care for the bulk or fit of the foldover waistband. and they were too long so i returned. if you're built like the model, you'll love these.",4,1,0,Initmates,Intimate,Lounge +24,49,Great coverage,"I ordered the correct size due to reading other reviews who gave their height , weight, and chest size. thank you all for that! i am 5 feet 5 3/4 inches tall and fluctuate between 135 lbs and 139 lbs. i wear 36b in bras. i ordered an 8. fits great! the coverage is adequate on my backside. the rouching is very nice in the mid section for self conscious women like me. the color is fun and beautiful. the quality is excellent! i love the bra support! there are real bra cups sewn in! it was pricey bu",5,1,0,Initmates,Intimate,Swim +1094,53,Great go to dress!,"Love this dress.fabric is very soft and flattering. i paired it with wine suede boots. great material, i will be able to wear it most of the year with different accessories. i am fairly busty so i sometimes order an xl but read the reviews and ordered a large and was just fine. great go to dress!",5,1,0,General,Dresses,Dresses +1080,54,,I love the color and style of this dress. and i wanted to love it too? sadly the fabric is truly inferior to the retailer brand and definitely not worth the price of the dress. checked it out in store and so glad i did as it would have been returned for sure.,2,0,3,General,Dresses,Dresses +820,43,Bohemian bliss,Saw this in my local retailer and thought it was stunning. i usually wear a size 8 because of my broad shoulders but ended up taking a 6 in this top. it was not tight in the arms (don't have super skinny arms) and the fabric flows nicely (not too much). the embroidery is amazing and am sure this top will be in rotation quite a bit!,5,1,4,General Petite,Tops,Blouses +1080,33,,"The color and fit is amazing on this dress. i am 5""7 and went with the small and the length wasn't too short either.",5,1,7,General,Dresses,Dresses +1028,42,,"I am in love with these jeans!! i can't say enough about them. they are so forgiving yet keep their shape great. they are soft, comfortable and are a great color. these jeans have the perfect amount of stretch while being substantial and durable.",5,1,0,General,Bottoms,Jeans +1094,46,Quite flattering!,"I ordered this last week and received it yesterday and have to say it is a lovely dress. the fabric is light but looks quite rich, making one want to touch the textile. the dress pattern reminds me of a missoni. oh, the dress is lined. i purchased the blue pattern, and am planning on wearing it to work on friday.",5,1,0,General,Dresses,Dresses +1074,45,Beautiful!,"Dress it up or go casual - this dress has it all. well made and comfortable where other ""lace"" rubs the wrong way under arms - this is super soft. cant wait to pair different shoe colors and jewelry.",5,1,0,General,Dresses,Dresses +1094,38,Very pretty on,"I saw this dress in the store, there are actually two different colors for this dress: one is blue/purple/silver, the other one is orange/tan/gold. both of them look very nice in person, especially with the shimmery thread. i tried on the blue/purple/silver one and i found it runs large. for reference, i am 5'2"", 34b, 120 lbs, usually wearing a size s or sp in retailer dresses, i found size xs fits me better in this design. the material of this dress drapes nicely, but it is kind of itchy,",4,1,23,General,Dresses,Dresses +1095,54,Perfect summer dress,"The cut of this dress is what drew me to order it, but it is so much more! first, the fabric is more of a raw silk, which is more like a soft linen than silk.. it's also got a very soft lining that feels great on the skin, and it has pockets! love a dress with pockets! i also love that the design is on the front and back. i am 5' 4"", 133 lbs and a 36c, and ordered a size 6. it's a little big on the sides, so i probably should've returned it for a 4, but it wasn't big enough to make it annoying o",5,1,2,General Petite,Dresses,Dresses +1094,34,Cute and easy,Beautiful dress that is easy to just throw on and go. i bought both colors. though it is loose it is still flattering. it has a good length and movement. i'm normally a m/l or 10/12. i took a medium as it is pretty loose fit.,5,1,0,General,Dresses,Dresses +820,35,Beautiful top!,"This top is so perfect for the fall... flowy, beautiful embroidery and paired with jeans and brown boots,gorgeous! wore it once and got a lot of compliments! i'm 5'2"" 125 and ordered a size 4. 2 worked too but just a tad tight in the arms. :)",5,1,0,General Petite,Tops,Blouses +24,39,,,5,1,0,Initmates,Intimate,Swim +1094,39,Fall in love/spring into style,"This sweet dress is perfect for fall and spring because the knit is not too thick, the drape allows layers and the colors are very versatile. the style is loose if you stay tts but will be a slimmer fit if you size down. if your body habitus is super slender, definitely size down. the liner slip is soft and the back side of the knit is a bit scratchy. i think this dress is beautiful and best of all, forgiving. i'm happy to have tried both colors--the problem is picking which one to keep! m",5,1,4,General,Dresses,Dresses +1094,42,,,4,1,0,General,Dresses,Dresses +1095,46,Sava silk halter dress,I wish summer was longer so i could have the opportunity to wear this more. much more eye-catching and unique in person than the photo. 5 stars.,5,1,3,General Petite,Dresses,Dresses +1080,38,So many compliments,Love this dress. i wore it with black boots and got so many compliments super comfortable. i feel like this dress will never go out style.,5,1,1,General,Dresses,Dresses +1033,64,Great fitting jeans,"I saw these on the freshly cut + promo discount & decided to order my usual size 28 reg in pilcro. a great fit & appreciate the midrise. not too snug or baggy. look pretty much on me as in the model pic except they fall abt 1"" below my ankles. i am only 5'3"" so not a surprise they are a little longer on me but it's really ok. fyi - the front button & back pocket tacks are gold which gives a classy look to these jeans. just love.. & love the price too! 5'3"", 117#",5,1,4,General,Bottoms,Jeans +1080,44,Super modern and chic,"I am a huge fan of tracy reese because her dresses are works of art, great quality, and super wearable for both work and play, and this is no exception. i purchased this dress in regular xs (i'm 5'2"", 34b, 26 waist, 36 hips) and it falls right above my knees. for the office or more conservative setting, i add a belt and a sweater. otherwise, i wear it alone for a carefree look. i chose the regular size because the dress is voluminous and it gets about an inch shorter when i belt it, and it looks",5,1,8,General,Dresses,Dresses +1095,44,This product has great features,"I like this dress. the floral pattern and little red beads. others may think it is baggy, however, i like this type of the style.",5,1,0,General Petite,Dresses,Dresses +1094,94,Great dress!,"This dress is very comfortable, not itchy at all and looks great. runs on the large side and is a tiny bit unflattering in the middle but it's still a worthwhile buy!",5,1,1,General,Dresses,Dresses +1080,32,Disappointed!,"I wanted to love this dress because the color is so amazing, but the arm holes are huge! i am petite and tried this on and it just sadly didn't work.",3,0,2,General,Dresses,Dresses +1095,58,Very cute dress,The dress runs large so if you go down a size you will be fine. looks awesome on. love it. would definitely recommend,5,1,0,General Petite,Dresses,Dresses +809,52,"White tee with a ""detail""on back",I ordered a small. i'm usually a petite small. i like my tees not fitted. i will exchange it for an xs. soft. it has like the look of a seam down the middle of the back. i barely noticed it. i think it makes a plain tee shirt a little unique. good quality. 100 percent cotton. it's a white tee. soft.,5,1,0,Initmates,Intimate,Lounge +1034,24,Stop reading this and just buy them!,"Let me start by saying i am incredibly picky about pants. i hate probably 99% of the pants i try on. pilcro is the consistent exception, and these are probably my favorites of all my pilcros (perhaps tied with the cords). runs true to pilcro size, which i find to be a bit large--most of my other pants are a 30, and a 29 is quite comfortable in these. despite being leggings, they're thick/structured enough to wear to work.",5,1,2,General Petite,Bottoms,Jeans +1049,45,Summer time lovin',"Flattering, flirty, bright, beautiful romper. i wish it come in other colors because i want more!!!!",5,1,1,General,Bottoms,Pants +1034,59,A must buy!,"Just received my second pair of pilcro legging jeans; having bought them last year as well. great for work, girls night out, date night. so comfortable, with lots of stretch; fortunately they hold their shape and don't stretch out. they feel like pjs, but are nice enough for work. my pair from last year have held up well (color-wise), however some of the leg seam stitching unraveled-- hence the reason for 4 stars in quality. hopefully, these will fare better. + +regardless, i highly recommend!",5,1,2,General Petite,Bottoms,Jeans +829,52,Great top,"Great top. i bought it for my daughter and it is well made and the fabric is very nice. she is 5'4"" and it reaches just the top of her jeans.",5,1,1,General,Tops,Blouses +829,42,Great going-out top!,"Love this top! however, i'm biased bc i love hd, such originality in their clothing, even in something as simple as a black tank top. also comes with the bra strap snaps, but i find my straps still show in the back, need to wear a strapless or criss cross. please note that the sides sort of rise up to meet the laces. so the more you tighten the laces, the more it comes up (hard to explain!). if you are at all even a little sensitive about a muffin top, again with low rise, it would show! still l",5,1,3,General,Tops,Blouses +604,39,Pricey for shorts but like,"I tried these on as i needed bottoms to try on some tops (and i was wearing a dress), but ended up liking them. the fit is snug but comfortable, they didn't ride up and the denim is supple. color is nice too, looked really nice with a swing tank that i half tucked. i have muscular thighs, so shorts are not an easy thing for me... anyway, recommend (tried on 25: 115 lbs, 26-27 inch waist)",4,1,5,General,Bottoms,Shorts +604,32,Love these! exactly what i was looking for,I love these shorts. i don't understand why they aren't sold out yet! they are buttery soft and fit great. i usually wear a size 26 and these are true to size. they are my go to run around shorts but because they are a dark wash so i feel like i can wear them out with a cute top to dinner even. love!!,5,1,1,General,Bottoms,Shorts +586,58,"Lovely material, a miss otherwise","I love the material on these shorts. unfortunately, that's all i love. the fit is awkward and i'm an easy fit. they're boxy in the body / legs and a bit tight in the waist, causing me to not be sure whether to place the elastic waist higher or lower and neither one works well. sadly, couldn't keep these just for the pretty fabric.",2,0,0,General,Bottoms,Shorts +1063,51,Beautiful piece.,"I am 5'8"" 135 lbs, broad shoulders and normal waste to hip ratio. this jumper fits beautifully and material flows just enough to be forgiving but flattering. love love love, definitely happy with myself for the splurge. can't wait to wear it out!!!",5,1,0,General,Bottoms,Pants +586,56,,"I loved these shorts; however, they seemed to be doomed! i received these on july 2nd & wore them at for a party we had on july 3rd, with the top shown. the fit was true to size, style & quality were nice. during the day i first ripped them on a low arbor gate latch, then later they were splashed with red wine when my husband startled me & i threw my red wine in the air. typically, i am very careful and do no have an issue with ruining my clothes. he felt so bad he asked me to get a new pair. i",4,1,0,General,Bottoms,Shorts +604,33,I love stevie everything,Stevie styled ags are my favorite! love the waist! love the length of the short! not to long and not too short,5,1,0,General,Bottoms,Shorts +586,58,Short shorts!,"I am 5'0"" tall and i have decent legs. these shorts are pretty short! i am sending them back for a small to see if they'll give a little more coverage. i should mention that they are absolutely darling and i bought the top that is shown with them. it's going to be a great little summer outfit. the quality of this brand is always very good.",4,1,4,General,Bottoms,Shorts +1063,55,Great style!,"This jumpsuit is gorgeous...on the right body. if you have a tiny rib cage and a flat stomach and an average to short torso, this may fit you beautifully. on me, the defined gathered area you see in the photo was very tight and hit me in an odd place. the fabric is a great weight and it is a beautiful and rich looking. i really wanted this to work out for me. as for size, i found it just a little tight in the hips, waist and rib cage.",3,1,19,General,Bottoms,Pants +1034,63,Pilling after one day,I love the pilcro serif legging jeans but these were a big disappointment. if you have any thigh at all don't bother.,2,0,2,General Petite,Bottoms,Jeans +876,36,,This one didn't work for me. ordered this and the riverdeck tee as similar vein. riverdeck was cute and flattering cut. this one was boxy on me and didn't work. a bit too wide so sending back.,2,0,4,General,Tops,Knits +829,57,Love,"I tried this top on in the store today and had to have it! i love the laces up the sides and the zipper in back. it is short - i found a really cute pair of ""baggy"" pants with a black pattern to pair with it. +in retailer shirts i wear an xs or s - or a 0 or 2. i got this in a 0 and it fit perfectly.",5,1,1,General,Tops,Blouses +958,24,,"I love this jacket. i'm 6' tall, 160lbs, 30"" waist and a 34d. i normally go for an 8/medium and i bought a medium. i love it! slightly cropped, barely snug fit but i can still snap it closed. totally warm enough for california fall/winter. i like that the sleeves don't have sherpa in them... make it easier to layer! i bought the ""silver"" corduroy and it's less white than the photos, but it still fits the bill perfectly. love that it's machine washable, too. it also has pockets!",5,1,0,General,Jackets,Jackets +1034,66,Black leggings,This is one of my favorite pair of pants. they don't stretch out while wearing and wash well. no pilling or shrinking. they can either be worn like leggings or pants. i wear a size 2 pants but got these in a 27 because i don't like them super fitted.,5,1,0,General Petite,Bottoms,Jeans +1049,33,This is happiness (for my postpartum body!),"Ok, so this is true to size-- i recently had a baby (i gained a lot of weight), am in the process of losing it and took the risk of buying a jumpsuit online. i am 5'3 with a long torso, short legs, and a big fat butt so buying pants (especially rompers) are almost impossible. lengthwise, this fits me like pants. the draping is so flattering and the color combination is splashy but not loud. i had to review this as soon as i realized it fit. i don't think i've ever been so happy with an retailer pu",5,1,11,General,Bottoms,Pants +829,46,"Beautiful, stylish, goes with everything","This is a cute,somewhat dressy top-- it has a bit of a sheen, ties on the sides, and a zipper down the back. it'll go great with pants or skirts. the fit, though, is huge-- i'm normally an 8, but i got this in a 4! machine-washable even though it says ""dry clean."" if it doesn't say ""dry clean only,"" you can wash it.",5,1,6,General,Tops,Blouses +1063,38,"Pretty, but not at this price","I was very excited to find this jumper in a store to try on. the small was huge (im 5'8, 130lbs), the xs was better but perhaps a bit short in the upper body, making it feel tight/stretched against my shoulders. i love the print and style, and would have bought it if it was $100 less. however, at the current price, it needs to fit perfectly, which sadly it did not.",3,0,0,General,Bottoms,Pants +829,52,,Awesome top. slightly cropped. great to dress up jeans or wear with pants or skirt for evening out.,5,1,0,General,Tops,Blouses +1049,48,Pretty jumpsuit.,"This is a pretty jump suit, true to size, looked flattering on me, lovely soft tencel like fabric and pretty design fabric. however, the sides are cut too deep and it's impossible to wear a strapless bra or any kind of bra without the bra showing. i tried without one and that definitely doesn't work, so back it went to the store.",3,1,10,General,Bottoms,Pants +44,29,Classic and comfortable,Great bra. fits well. works under tighter t-shirts. just be aware that the straps do clearly read calvin klein. more mauve than pink.,5,1,0,Initmates,Intimate,Intimates +526,28,,Loved this romper! wish it was offered in petite... arm sleeves are too long once it's off shoulders.,4,1,0,General,Bottoms,Shorts +995,36,Perfect sweater skirt,Love this sweater skirt by tracy reese. i'm a huge fan of tracy reese clothing and this skirt doesn't disappoint. super comfortable. the colors in the skirt are amazing too. many different colors to pull from. i can see myself dressing this up or dressing it down with flat boots and a denim jacket. i felt it fit tts. i usually wear a small in retailer skirts that aren't numeric sizes. got this one in small.,5,1,1,General,Bottoms,Skirts +952,36,Dreamy,"I can't say enough about this sweater! it light, delicate, soft, vintage chic........i could go on and on! buy it already!!!",5,1,0,General Petite,Tops,Sweaters +952,48,Perfect!,"I am 5'3"" and 34c and bought the regular xs. it fits exactly as on the model. soft and light and comfortable, but very sheer. cami required (have to try this with both a tucked in cami and a cami bra). great with midi skirts and culottes and maxi skirts and palazzo and flared pants. love!",5,1,3,General Petite,Tops,Sweaters +995,30,"Beautiful skirt, does run small","I ordered this skirt in my usual xs. when it arrived it looked tiny. the xs was almost impossible to get on. i ended up returning the xs for a medium, which fit perfectly (and is work appropriate). my measurements are 5'6"" and 125. my recommendation would size up two sizes.",5,1,1,General,Bottoms,Skirts +1078,36,"Gorgeous look, weird lining. i'm on the fence.","I don't know that i'll keep this, although i really want to. i love the style and the fabric, and the length is perfect for me (i'm 5'3"" and i ordered the petite length - it hits me below the knee). as another reviewer mentioned, this dress runs small in the chest area and does not provide any stretch. luckily for me, that wasn't an issue. + +my trouble is this: the liner stops just above the slits on the side, and it's way more noticeable in person than in the photo. the liner is sewn in and yo",3,1,12,General,Dresses,Dresses +995,33,,"The skirt is comfortable and as pictured. it also ran tts. i'm 5'5"" tall and weigh 140 lbs. i had the medium and didn't need to size up to a large. when you put the skirt on a normal body, it looks like you are wearing an easter egg... and not in a good way.",2,0,0,General,Bottoms,Skirts +952,42,Adorable pom details,"Wow, i wish this would have worked for me. the pom details are truly adorable and give the sweater that extra added touch. i agree with the other reviewer that the ""crop"" style is almost too much and gives an awkward fit. i am short, 5'2"" so it cut me off in the wrong area (i bought a petite xs). the material is delicate but that is part of the charm so i didn't have a problem with that at al. my problem was the fit-- a bit too boxy for my build. wish it would have worked but i'll have to admire",4,1,1,General Petite,Tops,Sweaters +1133,49,"Huge jacket, wash color is not as pictured","Like one of the previous reviewers, when my jacket arrived, it was not in the great dark wash pictured online. it was in a basic, medium denim wash. i like the wash pictured online; i did not like the wash the jacket came in. additionally, know that it is just huge. i ordered my usual size (medium) and understood that the jacket was meant to be roomy and swingy, but there is no way that one size down would be enough to compensate for how swimmingly large it was. i never tried an xs, but it was s",1,0,0,General Petite,Jackets,Outerwear +309,35,Great strappy back,"I absolutely love this bra-it is the most comfortable, aesthetically pleasing sports bra i have ever owned. i love the straps! they take some patience to get aligned properly once the bra is one, but afterward it looks amazing. the bra itself is soft and the padded inserts actually stay in place without much manipulation so they are aligned properly. when moving, i do not have any areas that rub or get irritated uncomfortably. i absolutely love this bra. it gives me the support i need for a high",5,1,2,Initmates,Intimate,Lounge +895,60,Love the style,"I was very happy to receive this as a birthday gift. i usually wear an xs or s in clothes i buy from retailer. i was given this in a s, but it wasn't even close to meeting in the front, so i returned it for a m. it doesn't button anyway, but i didn't want it to look like it wouldn't meet at all. i tried on a size s sweater in this brand while i was in the store, and it fit perfectly, so this one is just running small. overall, i love the lace detail on the front and the softness of the sweater.",5,1,0,General,Tops,Fine gauge +872,26,Pretty in front,I like everything about this shirt except i wish the embroidery was on the back too. gives it a cheaper look by only having it on the front. you will look prettier coming than going for sure!,3,1,2,General,Tops,Knits +838,38,This is another ubiquitous swing top,"Yes, it's a swing top, just like many of the other swing tops retailer is offering this season. i find this silhouette unflattering on me, being top heavy, so i was frustrated to discover the swing-ness only after i ordered it and it arrived at my house. it also runs huge, with big gaping arm holes. the sleeves are cute and fluttered. the black panels on the sides are semi-sheer. it is a pretty boxy top, which the photo doesn't seem to capture. order at least a size smaller than usual.",3,1,3,General,Tops,Blouses +840,36,Love this pattern,"This top has a great pattern that could be worn with many different things. it was a bit short for me, as i have a long torso, but i wish it had fit right!",3,1,1,General Petite,Tops,Blouses +975,36,Great vest!,"I joked with my husband that if i were with the resistance (star wars), this is what i would wear! i actually really like it. it will look best with a girly skirt and blouse. the quilting is lightweight and the fit is slim. well made too.",5,1,1,General,Jackets,Jackets +840,38,,,5,1,0,General Petite,Tops,Blouses +867,68,The best basic tee,"If you like a slightly heavier, non/clingy basic tee, this is it. i wore the long sleeved version all fall and winter, rotating colors, and i've been wearing these with shorts and leggings since i got them. the colors are great, fabric is quality, and the ribbon detail in the back gives these a little flare.",5,1,0,General,Tops,Knits +1081,33,,"I got this dress in the mail today and really thought i was going to love it. the color is a beautiful rich red, which was a nice surprise. i was expecting more of a dusty red from the picture. love the fabric - soft and appears to be good quality. the length is perfect - hit right at my knees (size small). the flow of the dress is great as well. the ultimate flaw would be the arm and neck holes. the neck hole was choking me but yet a little loose at the back of the neck - almost like it was on",2,0,4,General,Dresses,Dresses +1095,33,"Beautiful print, bad design","When i ordered this dress, i thought to myself ""hmm, it seems a little close to showing some side boob, but maybe that's just the angle of the photo."" flash forward to me trying it on in my home - ""yep, that's some side boob."" it is very low cut under the arms. if you're super slim, this might be a good look, but on a curvy gal with some boobs, it was obscene. also, i'm a solid 12 in most retailer brands, so i ordered a l and an xl just in case. the xl wouldn't even zip up. returning.",2,0,0,General Petite,Dresses,Dresses +1081,62,Bummer!,"This dress makes me so sad...the textured stretchy fabric, color, length, and overall swingy fit are spot on. as another reviewer noted though, the armholes and neck totally ruin the dress. the neck is tiny, which i could have gotten over once it was on, but the arm holes were just awful - too big all around (too tall of a cut plus too wide of a cut). basically, you could see my bra plus from the front there was unflattering exposure near the armholes. it could have been so good, but alas, but t",2,0,2,General,Dresses,Dresses +872,50,Wide bodied tee,"There is simply a ton of fabric on this tee. i am a size 8 on top, with a fairly thin upper body but still an 8. at retailer i often order small for swingy tees, medium for more slim-cut. this tee in the small was huge. the shoulders fit well, but the body was so big and was a weirdly long length. just odd, especially for $78...",3,0,3,General,Tops,Knits +826,51,Pretty blouse,"This is a very nice blouse. usually i am size 12-14, bought size l and it fits very well. would not size up. the fit is very forgiving (hides tummy); i like the v-neck. fabric does not look like polyester and of good quality. the blouse is versatile, looks good with skinny dark or white jeans. recommend!",4,1,12,General,Tops,Blouses +872,61,,Loved this tee but embroidery started to unravel even before being washed. i paid full price for this top and wasn't disappointed but needed to return due to the embroidery problem. this tee is a mustard color.,4,1,0,General,Tops,Knits +895,57,Pretty details,"This is a lightweight sweater...good for the office and summer evenings. here in so. cal it's a good weight sweater year round. love the lace trim. runs a bit large but not too bad. color is a light cornflower blue, not lavender. this works for me but if you're looking for a lavender sweater, you might want to think twice.",5,1,4,General,Tops,Fine gauge +867,38,The perfect spring/summer staple,"I have this tee in every single color and love it. this shirt is so soft, airy, and comfortable, and the ribbon embellishment on the back dresses it up a little. i love wearing leggings or skinny jeans with it and accessorizing with an infinity scarf. i normally wear a size small, but i sized up to a medium this time. there is very little difference in the two sizes, but i liked the modest increase in length. i'm glad that i did this, because the tees shrunk ever so slightly after being in the d",5,1,2,General,Tops,Knits +996,38,Such a fun skirt!,"This skirt is very comfortable and moves well. i'm 5'4"" and ordered a 2p, which fits perfectly. the length hits just above the top of my feet. the patterned chiffon is sheer and the skirt has a short black slip underneath that ends just above my knees. i have a small waist and wider hips, but found the inner slip to fit loosely enough so that it doesn't ride up when i walk or sit. the two slits on either side were a great length and make this skirt both flirty and quirky. you'll get tons of comp",5,1,3,General,Bottoms,Skirts +840,39,Love,This top is fun. loose but still flattering. the colors are nice and the fabric soft. can fit well. (115lbs 30 dd),5,1,0,General Petite,Tops,Blouses +835,39,"Very nice, but also very flowey","I was surprised when my friend tried this on (they dind't have my size in store so she did), how ,uch materil there is on this top. it is very beautiful, but might be too much on a petite frame. the back is almost like a mini train, which is pretty ocol in my opinion. great colros in person too, yes, a tiny bit of shimmer :-)",4,1,0,General,Tops,Blouses +835,39,"Really wanted to like it, but...","This top is so pretty in the photos, but it just did not work out for me. it is more of a pale pink color than off-white like in the photo and it just hung on me weird. i felt like it was true to size, but made me feel very boxy. i can say it was very well made, so maybe i'm just not the right body type for it. for reference, i'm 5'5"" and 135lbs. the small fit perfectly, but was a bit too wide at the bottom for my taste. i was willing to spend the money if it would have been perfect, but i'll sa",3,0,1,General,Tops,Blouses +975,22,,"This vest is perfect! i live in florida aka where it is hot almost every day of the year. it makes a great layer piece, but isn't too warm!",5,1,0,General,Jackets,Jackets +867,53,,,5,0,0,General,Tops,Knits +1133,59,"Runs huge,could work for someone taller?","First of all, mine arrived in a regular denim shade, not the dark wash shown. also, the style is more like a blazer, and it was huge. i am 5'2"" and ordered the petite xs but even xxs would have looked like a baggy blazer. as well, the sleeves came barely past my wrists, they are designed to cuff as the model has done? perhaps on someone taller and younger it would look edgy and chic! the quality is excellent with some nice details. this might be one to try in person, if you can.",2,1,7,General Petite,Jackets,Outerwear +872,31,Nice top,"I would give this top a 4.5. it is a very pretty top, i love the embroidery, but runs a little short for my taste. it still meets past the top of my pants, but barely. this is why i didn't give this top a 5. i am 5'9"" so i think for a petite person the length would be perfect.",4,1,7,General,Tops,Knits +835,52,So disappointed,I saw this online and went to the store to try it on. so glad i did! it did not work on me at all! it is so wide - just did not look right. it was also not flattering at the neckline either. i thought it was beautiful until i had it on! too bad - wanted to love it!,2,0,0,General,Tops,Blouses +867,59,Shirt looked emerald green in the store!,"Just bought this today in xl and i like it a lot. i am very busty so if i see an xl in most things i will try it on. i probably could have fit into a large though. this will look cute with leggings as it is long enough to cover your butt. i didn't know about the emerald color as it looked in store lights, but it is more blue-green at home. i like it even better. well worth $48!",5,1,13,General,Tops,Knits +184,34,Nubby footless tights,"These are amazing quality. i agree, size up to not have such a sheer effect. i would not wear them as just leggings without a long shirt covering the butt. + +they are warm. i wore them under some ski stuff. kept me warm. + +i also washed them on handwash cycle. seemed to be ok.",5,1,5,,, +1027,30,Love these skinny jeans!,These are the perfect high-waisted skinny jeans. they fit tts and don't stretch out. are the perfect length for cute falls or tucked into boots. i adore them!,5,1,0,General,Bottoms,Jeans +838,63,I love denim,"I love this top. of course i love most things that are denim, or look like denim. this is a fun twist on a denim shirt, the flutter sleeves and side panels make it different and eye catching. i have gotten so many compliments on it when i wear it! pairing this top with white or black pants or a skirt allows me to wear denim to work and still look professional.",5,1,1,General,Tops,Blouses +1081,37,Snag rag!,"The dress is beautiful in pictures, but all the reviews are dead on...it was full of snags when it arrived! 8 snags to be exact. and the fabric was heavier than i expected. sadly, had to return.",1,0,1,General,Dresses,Dresses +975,48,The horror,"This vest looked so cute online but it's a disaster. the quilting is so bulky that the drawstring doesn't work properly and it just hangs. itlooks like something out of a costume closet that could be used for a peasant farmhand or a zombie movie. seriously, it's bad.",1,0,15,General,Jackets,Jackets +840,57,Comfortable,"A nice rayon peasant shirt - like the sleeve length. good for a fuller figure, covers all the bad sports and very comfortable.",5,1,6,General Petite,Tops,Blouses +840,51,Purple motif,"I like the look and fit of this shirt. can be dressed up or more casual. i got the purple motif, although i also like the brown and think that with all of the black in there (on the brown one) it would give a dressier look. i usually wear small from retailer, although this is my first blouse from this brand -- ended up getting an xs regular. i wanted the sleeves to fit at 3/4 as shown in the pics, but still be loose. i had a ton of extra room in the small, and the sleeves hit at wrist bone",5,1,14,General Petite,Tops,Blouses +861,38,Too short,"I love the look and feel of the material, but it was way too short - i don't even have a long torso! sadly, it's going back to the store.",2,0,10,General,Tops,Knits +1072,36,Shape odd,"The shape was not as nice on model, seemed like a lot of extra material.",3,0,1,General,Dresses,Dresses +835,53,Swanky fun!,This elegant tank made me feel as if i had been transported to downton abbey. the velvet trim and the lovely embellishments of sparkle have an art deco delight. the swing of the fabric was playful and flattering. it's easy to dress up and dress down. fantastic top!,5,1,0,General,Tops,Blouses +840,63,"Pretty, but try on before you buy!","This shirt is much more flattering in person. if i hadn't seen it in store, i don't think it would have caught my eye. i like the mix of casual and dressy this top has (i got it specifically for teaching). the one thing i noticed, however, was that the first xs i tried on looked very big on me. i tried a second on and the fit was much more flattering! i highly recommend that you try on the specific blouse you plan to purchase before you actually buy it. i'm glad i tried a second on, because i th",4,1,4,General Petite,Tops,Blouses +1025,34,"Good green, runs big","The fabric of these pants isn't like regular denim, rather it's soft and velvety in texture more like a chino. i love the dark saturated olive green. the pocket placement is very flattering on the rear. normally i wear a size 31 in premium denim and size 30 in paige jimmy jimmy jeans, however in this particular pair i needed a size 29. i definitely recommend sizing down!",4,1,1,General,Bottoms,Jeans +723,59,Looks better on the model,"I wanted to give this a try but unfortunately disappointed with the fit and styling. i'm 5'6"", petite build and it consumed my slim figure. i loved the soft and coziness and the color is sweet too. i just felt like an awkward butterfly with the sleeves. pinning them back would have been alright but the execution didn't fit my frame. i would have liked it to be a tad longer too. i really hope they use this same material throughout the fall season because it's so cozy.",3,1,16,Initmates,Intimate,Lounge +1000,55,Really nice sweater skirt,"This is a really nice fitting sweater knit skirt. the knit is soft and comfortable, heavy enough to smooth out some bumps but definitely shows your curves. i got medium and it's a little snug at the waist (i'm about 29-1/2"") but not so much to return it, and it fits the rest of me great. the only thing i wish was that they'd made the slip full length, it only goes about mid-thigh and sometimes when i get up the slip stays up while the skirt falls right, but not a big negative.",4,1,1,General,Bottoms,Skirts +1081,41,Undecided on this one,"I thought this was love at first sight. the color and design are both stunning. and it drapes just perfectly over the body without looking like a tent. and the fabric feels nice, but the very first time i put it on, it snagged on my fingernail (and my nails are kept short and neat). this wouldn't have been a problem, except that the snag is very obvious. this material seems like it's going to snag on every single thing. i didn't dare even try on a necklace for this reason. i'm really undecided o",4,1,5,General Petite,Dresses,Dresses +838,59,Huge and shortedr than appears in picture,This top is very wide and shorter than in appears in the picture. it also has a strong chemical smell. i've had a couple pieces with that smell in the past and the smell never washed out.,2,0,4,General Petite,Tops,Blouses +867,41,Hot pink,"I ordered the medium pink in a size small. the color is more of a hot pink. it runs small through the shoulders and bust (i'm 34-d). i like that it covers your bum and the detail down the back. but it is going back, i may try a medium petite in a different color.",4,1,0,General Petite,Tops,Knits +867,36,Perfect shirt for leggings!,"This shirt is soft, long and is the perfect pair for leggings. i am only 5 ft. tall so this is extra long on me in the front and back! i bought it in 3 colors and hope to get more. i bought a large and love how it covers/hides my trouble areas!",5,1,3,General Petite,Tops,Knits +867,27,"Love it, not my color","This shirt feels amazing, it is the perfect length for leggings. i have it in long sleeves also. i don't love the pink color i bought, it looks very different from the color pictured.",4,1,0,General Petite,Tops,Knits +867,42,Perfect leggings top,"I bought a few of these tops in the long sleeved version during the fall/winter, so i was super excited to see the short sleeved version come out! in this brand, i can wear an xs or s - i typically wear a s in retailer tops. if you need a tee that covers your lady parts when wearing leggings, this is it! it perfectly covers my rump and looks great. it's a nice weight, too. the detailing down the back is a nice touch.",5,1,1,General Petite,Tops,Knits +826,66,Not for the well endowed,"I ordered the medium, my usual size for flowing tops. it fits nicely, looks amazing from the front and looks slimming. then i turned to the side and oh my...my boobs protruded like two big balloons. i looked like wonder woman. there was plenty of fabric and it was billowy so it wasn't the size just the cut. i do have 34 g's but what the heck? the color is glorious but it has to go back.",5,1,1,General,Tops,Blouses +867,35,Great basic tee,"This tee is a great everyday staple. it is comfortable and it also drapes very well. i am 5ft 2in, 100lbs, 34b and i got this in xxs regular. the length is perfect for leggings/skinny jeans, and it also looks really cute with a side knot in front. i have this is navy, green and black. the navy color is brighter in person and in my opinion, looks better. you can't go wrong. planning on getting the grey and pink one as well.",5,1,2,General Petite,Tops,Knits +867,37,Perfect,"Great tee! i usually wear an xs, but ended up getting this in xxsp. it is very long but the petite worked perfect on my 5'9"" frame.",5,1,1,General Petite,Tops,Knits +101,79,So cute!,"It is an expensive panty, but so worth the money! it is so unique and flattering!",5,1,0,Initmates,Intimate,Intimates +872,57,Really cute top!,"I bought this top in both colors. the fit is perfect, the styling is very cute and it also is very comfortable!! +the only bad thing is that it snags on my jewelry !! :(. if it weren't for that i would rate it a 5!!",4,1,1,General Petite,Tops,Knits +840,34,Pretty design. awful neckline,"I wanted to love this top. the neckline made it look strange on me. if i untied it, it looked sloppy. so, it went back. i love the print though.",3,0,0,General Petite,Tops,Blouses +895,59,Well.....,I feel like a pessimist but then again nothings perfect. the only thing wrong with this stunning sweater is no button or snap so it just bags open. love it tho,5,1,0,General,Tops,Fine gauge +895,47,Lovely sweater,"This sweater is beautiful! it fits/drapes nicely, is a gorgeous color, feels soft, and is comfortable to wear. i'm generally a s or m in this brand and opted for the medium. the sleeves are pretty long--i have to role them up a bit or they cover half my hand, but that's all right--they look fine rolled. i highly recommend!",5,1,1,General,Tops,Fine gauge +867,34,"Not quite an every day staple, but nice top","I wanted a nice, well-fitting top that would work with trousers, jeans, and skirts alike, and be a nice wardrobe staple. i got two of these tops - one size s (black) and one m (turquoise). the size m is gigantic and i have to return it. the size s is also a whole lotta shirt. the top is really long and has a multi-level bottom, as well as the pocket, making it not just a simple top but a rather ""loud"" top. nevertheless, i'm keeping the size s (black) as a versatile shirt that i can hopefully tuc",4,1,0,General Petite,Tops,Knits +872,47,Love,Love this t-shirt. i rarely pay full price but love this and it's already out of stock. fits perfect. i tend to be short waisted so the length is perfect.,5,1,5,General Petite,Tops,Knits +861,43,Cropped,"I would have loved this top if it were the length pictured on the model, but it was a cropped length on me :(",2,0,4,General,Tops,Knits +835,49,Odd color...,"I wanted to love this top... it's gorgeous w/the beading and velvet. however, it really goes with nothing. i'm tall and slender... the top felt a bit cropped when i tried it on. very wide flare shape... but that wouldn't make me return it. what is making me send it back is the color. the grey is gorgeous, but the fabric is a buttery yellow color. i think i was picturing it more cream. i don't know what in the world you could wear this with... grey pants?! a grey pencil skirt?! it looks terrible",4,1,5,General,Tops,Blouses +867,42,"Cute, very long in person","I'm one of those people who is juuuust right between being regular and petite sized, so i have a hard time with some longer tunic styles. this tee is pretty fitted though the shoulders and bust, which makes the rest of the top kind of skim over the body. i like that, especially for those days where i feel a little bloated or like i want to hide out a bit. + +the fabric is very comfortable and not sheer. the little stripe down the back is a cute detail and it's in a slightly contrasting fabric w",4,1,2,General Petite,Tops,Knits +1025,51,Paige jimmy skinny jeans,The color and quality of these jeans is great. they were too large in my normal size. more of a boyfriend fit so size down.,4,1,0,General,Bottoms,Jeans +1133,55,Great shape,I loved the shape of this basic jacket. it's perfect to through on to go to yoga or over a dress with heals.,4,1,0,General Petite,Jackets,Outerwear +838,41,Oversized,"This shirt fit really really big! i ordered an xl but think i could get away with a l, if not a medium. sadly, it's going back :( otherwise, it's high quality and a beautiful design.",3,1,7,General Petite,Tops,Blouses +835,29,Gorgeous but pricey,"I tried this on in the store to see if it would be my go to party top and splurge this season. i love the colors, textures, and embellishments. so lovely! ultimately the price and the very flowy fit (particularly in the back) made me put it back. another great item from moulinette soeurs, though!",4,1,0,General,Tops,Blouses +835,38,Sparkle with delight,"I am an hourglass figure with a d cup. i rarely wear trapeze tops, as they make me appear larger. this is a very lovely top! fits nice (i was a medium) and hits nicely around hips (i'm 5'4). perfect for a special night out.",5,1,10,General,Tops,Blouses +1081,45,Snaggariffic,"Sadly, this dress was trashed after wearing it for an hour. it snagged on everything -- my watch, my purse, my necklace. i had to go home, change, and return the dress later. impractical fabric ruined an otherwise lovely dress.",2,0,0,General Petite,Dresses,Dresses +835,34,Beautiful but maternity feel and look,"I had a feeling this might not work for me, so i decided to try it on in the store just to verify. i was quite right. i'm a tall gal with a size 36c, and it just billowed out and made me look wider. i normally wear a size m in tops and even this was a tad loose. + +if you're petite/smaller framed, this will probably work for you. if you're tall and busty, this doesn't do us gals any favors, in my opinion. + +it is a lovely top, and i loved the velvet trim at the bottom, the inner lining was decent,",3,1,0,General,Tops,Blouses +861,53,"Nice tee, but i was not aware how cropped it is","The tee looks longer on the model. i am 5 feet 9 and this tee is showing of my belly which surprise me a bit. i thought it would hit the waist line. still, very nice tee, i love cotton, it simply is the best. colors are nice too.",5,1,0,General,Tops,Knits +835,46,Love the art deco detail on this versatile top!,Can't wait to wear this out for the holidays! very comfortable and versatile - looks great with the vegan leather moto pilcro pants or any black skinny jeans for a more dressed up look -- i was originally going to pair with dark gray pilcro but the black moto with black heels looked really great in the store dressing room. beading is gorgeous and well done. velvet trim makes it luxe in my opinion. love that you don't need to pile on anything else to look polished -- top speaks volumes in and of,5,1,6,General,Tops,Blouses +1025,60,Runs large.,"Nothing ""skinny"" about these pants. they're very cute. great quality. but they run a good one size large. size down!",5,1,0,General,Bottoms,Jeans +872,51,"Cute, runs large, less yellow!!!","This shirt is really cute and runs large. i am a true s and this shirt came as big as what i would call an l. + +i get that its a boyfriend t-shirt feel but it was still surprising. if you're an s i suggest xxs and so forth. + +the color is yellow but not as yellow as the picture shows.",3,1,10,General Petite,Tops,Knits +840,53,Perfect top,I love the pattern and shape of this top. i can dress it up a bit with white pants and heels or dress it down with shorts and sandals. nice fabric and fit.,5,1,0,General Petite,Tops,Blouses +184,54,New workhorse,"These tights are amazing! if i care for them well, i know they will last me seasons upon seasons.",5,1,0,,, +1079,34,Looks like a dream,This dress was a gamble for a nautical them wedding next year. could not be happier. fabric was surprisingly stretchy which made it move like butter. the dress was stunning on and very comfortable which cannot be said for many gowns. i am so glad i took the gamble.,5,1,0,General Petite,Dresses,Dresses +840,48,Wide wide wide,Too wide! the design is cute but the wideness of the overall piece and arms made me lose my shape. you can't see your figure underneath at all. i don't like pieces like that. this went back.,2,0,0,General Petite,Tops,Blouses +835,56,Gorgeous top!,I'm obsessed with this top! i got it for christmas and wore it to dinner with black pants and flats and got lots of compliments. the fit is cute and fun and the detail is about even prettier in person.,5,1,0,General,Tops,Blouses +1068,65,Love the style - hate the dye left on my skin,"I recommend this product, but with the following reservations. + +the dye from the product colors my skin every time i wear this outfit. i love the fit and make of the jumper, but i hate that my skin looks blue by the end of the day. this is still happening after several washes, which makes me feel disappointed. it will dye your undergarments so choose wisely.",2,1,0,General Petite,Bottoms,Pants +1104,55,,"This is a cute dress, but not for me. 1. i think it runs very small, 2. it is super textured so if you don't want to add bulk (aka pounds) to your frame, this probably isn't for you. it's too bad it's online only because i would have benefitted from trying this on first. i'm sure it's probably adorable on smaller, thinner people. unfortunately, mine is going back.",1,1,3,General,Dresses,Dresses +1068,55,,Flattering to the figure. i'm bustier and slightly thicker waisted but this jumpsuit hugs and drapes in all the right places. normally i wear a medium petite but the regular small fit better (win!) i'm disappointed in the dye quality- my hands were blue from trying on the different sizes and i'm now on my second wash before wearing.,4,1,1,General Petite,Bottoms,Pants +1094,39,Bof (blah),"I ordered this on sale, after reading the review, but i was disappointed when i tried it on. the color is darker in person, which is better for me, but it looked dull on my skin tone (pale). also, teh sleeves poofed in a weird way on the top where the seam meets the neck. the overall cut is almost flattering, a little long still for me in petite, i felt like i was trying on a regular size. so not for me. for reference, i ordered the 0p (or xsp, not sure right now). i am 115 lbs, 30dd chest, 26.5",3,1,1,General,Dresses,Dresses +1068,42,,"I'm really pleased with this jumpsuit. it has great detailing not visible in the online image and the fabric is so soft and comfortable. the navy is lovely. i'm normally a medium or size 4-6. i ordered the medium online and it was far too baggy, especially on top. i tried on the small and x small in store and the x small fit exactly how i wanted (as worn by the model) and the pants were still long enough. i'm glad i didn't give up on it.",5,1,7,General Petite,Bottoms,Pants +1068,40,So pleased!,"I needed an outfit for my son's christening 10 weeks after he was born. one thing i have to keep in mind with purchasing items now is how well they work for easy breastfeeding. this jumpsuit was perfect 'dressed up' with a cropped tuxedo jacket, cute shoes and jewelry. i felt so chic and not only did it fit my new post-baby shape, but was awesome for nursing him when needed. i felt comfortable all day and look forward to 'dressing it down' for less formal occasions. the material is so soft and i",5,1,1,General Petite,Bottoms,Pants +1094,23,Feminine & clean,"Size 8 always, 36c and i have broad shoulders...i found this true to size. the colors pop more and there is a cleavage alert, just letting you girls know. this is very figure flattering, especially with my body frame, it accentuates the right spots.",5,1,0,General,Dresses,Dresses +1094,31,Lovely. size up...maybe twice.,"This dress is so lovely in person, with more muted colors than pictured which will transition nicely into fall. the overall cut of the dress is really flattering, especially for hourglass/ pear figures. sadly, i had to return the dress because the arms were insanely small. i after putting the dress on, i was worried i wouldn't be able to actually get it off. if you have teeny, tiny arms...you'll probably be okay with your regular size. if you have any kind of muscle (or squish :)), size up.",4,1,0,General,Dresses,Dresses +1080,60,Returning,"I thought that this dress would be perfect for my 60th birthday, however i was disappointed when i received it. it is extremely heavy from the beading and i just did not find it pretty in person. it did nothing for me. also, it runs small and was tight.",2,0,8,General,Dresses,Dresses +1094,33,Fun way to floral up the closet!,Looks cute on! not super form fitting... more of a flow fit. love the detailed stitching! so cute! floral pattern is fun not too busy! i loved the pockets... there is a bit of extra material but if you expect a flowy fit it's still totally lovely! i was worried about tightness in the arms but not a problem at all!!! i love this dress! lining makes it feel really well made!,4,1,0,General,Dresses,Dresses +838,30,Weird arms!,The shirt is great except for the arms!! the band around the arms are tight and it makes the arm holes gape weirdly unless you are standing with your arms straight down by your side.,3,0,0,General Petite,Tops,Blouses +838,47,Arm candy!,"I have long arms and they are not really small and the small fit me well. i think the fact that i have broad shoulders made this top work for me. definitely a keeper! i am surprised that the arms fit me though, because i often experience sleeves that are too tight when trying on tops. i'm glad that wasn't the case this time around. i'm 5'4"" 130-135lbs, depending on my appetite!",5,1,6,General Petite,Tops,Blouses +1094,62,Just beautiful!,"Gorgeous dress and very flattering but it does run quite small in the bust (i'm 32 dd) and even the shoulder area (i rarely have problems there). i also find the side zipper a pain. sized up from a 2p to a 4p. the lace detail is especially beautiful and the color is more peachy than pink, the print quite saturated and not too pastel for early fall. i can see wearing it for 3 seasons, at least in ca.",5,1,6,General,Dresses,Dresses +1068,37,Too baggy in the top,"Like another reviewer said this was too baggy up top. the bottom length was good but arm holes were big and top was just too large. i'm 5'5"" 110 lbs and got xs. returned.",4,0,0,General,Bottoms,Pants +838,29,Long arms,This shirt is nice in theory but you need to have pretty long arms to make it work. you also need to be average to tall in height.,3,1,8,General Petite,Tops,Blouses +838,50,,"Beautiful - ordered a s, i wear a 2 in most retailer items. hand washed in cold water, shrunk inches, yes inches! love maeve clothing, this shirt is gorgeous. before hand washing in the sink, it was large and flowy. now it barely fits.",3,0,0,General Petite,Tops,Blouses +965,64,Horrible fabric!,The fabric of this vest is identical to a old white dish cloth! the cut of this vest is also bad! will be sent back!,1,0,2,General Petite,Jackets,Jackets +1094,32,Beautiful dress!,"Very lovely print and fabric, there is more gray to the print's background than the photo shows. the shape is feminine and flattering, although the sleeves are more fitted on my arms. i bought this to wear to an early fall rehearsal dinner. very happy with the purchase!",5,1,0,General,Dresses,Dresses +1068,54,Love/hate,"I love this jump suit.. sorta. looks great on but the dye rubs off on your skin. i washed it and its still happening. when you put your hand in your pockets, they come out blue, knees are blue, thighs, etc. i looked dirty by the end of the day. wish i could return it. fit and look great... not great after wear.",2,0,1,General,Bottoms,Pants +163,35,Feel these socks!,"These socks feel amazing-i have them in both colors. + +you would be surprised at the softness of these socks, yet they are slightly thicker than normal dress socks. i have weird toenails that tend to pierce through the tops of socks so a thicker sock is something that is very attractive to me. i feel like these would last a long time, with the bonus of making my feet feel like they are at the spa-these socks are soft? + +these socks do not stay on my thigh so i have to use a garter and wear them li",5,1,17,Initmates,Intimate,Legwear +899,44,I love this sweater,The medium fits perfectly. it's not too long or too short. the feel of the fabric is soft and not heavy at all. i love the detail in the bird too. it bright and colorful. overall a great buy!,5,1,0,General,Tops,Fine gauge +1086,42,Beautiful,This dress was absolutely gorgeous and beautifully made. i ordered a size down as the other reviews stated the dress ran large. however it was massive. i wanted this dress so badly and mourn that i had to take it back to the store.,5,1,0,General Petite,Dresses,Dresses +864,46,Disappointing!,"The cut is too long and shapeless. if it was cropped, i would have kept it. the beads are delicate as another reviewer has said but i was prepared for that. too bad the fit just wasn't flattering. it's going back.",3,0,17,General,Tops,Knits +864,39,"Baggy yes, but meant to be","I ordered: +xsp +xxs +xxsp + +xxsp was the better fit, some people loved it some didn't like as much (thought it was baggy and are not used to seeing me in baggy clothing. but that being said, ti was comfortable, the cutouts fell right on spot on my shoulders, and it is a nice casual embellished look half tucked in some boyfriend jeans. i reordered mine as it had something stuck on it and it bothered me (like sticky white) i will re-evaluate when i get the new order only because there are sooo m",4,1,1,General,Tops,Knits +1077,28,Muted colors but comfortable and slip-on,"This dress came with two pieces, a black sheath slip and a sheer pattern top-piece (pictured). it's pull-on and comfortable and flows well. i ordered online but wish i could have selected the pattern, as the fabric differs a little from front to back both in the pattern and intensity of color. overall though, a comfortable, light summer dress.",4,1,1,General,Dresses,Dresses +864,37,Adorable but wide,"This was a near miss for me. i love the concept of the asymmetrical shoulder cutouts and the contrast of the beadwork to the simple gray crewneck, however, with some of the beads bulging out about 1/4 inch from the shirt, i have to say it almost bordered on gawdy christmas sweater status... but still cool. i actually thought this piece felt fairly sturdy and well-made, but the thing that got me and led me to return it was that even in an xs it was indeed cut wide. if it were a little shorter it",4,0,10,General,Tops,Knits +1077,49,,"Customers beware, there is no lining on this dress. i love the pattern however it would be a nightmare trying to find a slip to match the dress! i ordered it on line but i'll take it back to the shop.",3,0,1,General,Dresses,Dresses +872,29,Love this shirt!,"Great fit, very soft fabric, and the sleeves are long enough!! great length in the body too.",5,1,0,General,Tops,Knits +872,51,Love this sweater,"I saw this duster and immediately ordered it in cream. i have worn it every chance i get. it goes well with dresses as well as shorts or jeans. the length is perfect, the design is flattering, and the material is soft and comfortable. the sleeves are snug- but i like this feature, especially for light weight summer use over a tank top or sleeveless blouse. this will be a go to item. thanks retailer- another gem!",5,1,0,General,Tops,Knits +1086,38,,I am normally a straightforward 10 - since i saw the other review i ordered down to an 8 - i am still swimming in it.i would say i have about 4 inches of extra fabric in the waist/hips. this is sized way too large. i love the softness of the checkers but i suspect this could get itchy fast on the arms where it touches the wool - but i won't find out cause i'm returning it?on the bright side i might fit a 6 which would be pretty nice.,1,0,2,General Petite,Dresses,Dresses +1003,37,So many compliments!,"This skirt looks just like it does on the model. it is the prefect maxi skirt with lots of movement. i actually bought the off the shoulder top it is paired with. you can't tell on the model but the slit has buttons up it so you can undo or do as many of the buttons as you want to show off as much leg as you want. it is a little pricey,but well worth it.",5,1,4,General Petite,Bottoms,Skirts +163,50,,"Love these socks!!! i need to get more colors, they look so good on with boots with the lace showing!",5,1,0,Initmates,Intimate,Legwear +872,33,Not your grandmas cardigan,"Love this!!! 115 lbs thin arms, the xs fits perfect. it's very flattering and has a boho vibe bc of its length. the arms are a little snug but in a very flattering way. haven't worn it enough yet to experience any pilling, but crossing my fingers. the cream is a really pretty pale oatmeal color imo. the grey is a black/grey speckled look.",5,1,0,General,Tops,Knits +872,27,Perfect light weight sweater,"I ordered the cream colored duster after purchasing the grey one in store. i loved the grey one so much i had to get the other color. i love the length of the item. i am 5'9"" and don't feel like it is too short for me to get the look. it is light weight so i did not get too warm in it and will be able to wear it much of the year. i did wear it open as i feel that it runs a tad tight on the arms and torso when buttoned. however, i prefer the look of it worn open so that was not a problem for me.",5,1,0,General,Tops,Knits +864,34,Love!,"I wore this for the first time today and got so many compliments! i'm a personal stylist and went to an event for the company i work for..which means i was in a room filled with stylish people, and i got nothing but compliments about my top. it is so comfy and i did worry at first about the beading and if it was too fragile, but it was fine. i sized down for this top but can't wait to wear it all fall and winter!",5,1,0,General,Tops,Knits +161,36,Dress up or down,"I love these pants! first, they are super flattering. for a new mom, the waist comes up high and tucks everything in without rolling over. second, they are versatile. you can pair them with pointed flats, boots or casual with sneakers. i am wearing mine with cream flats and the cream moth boucle colorblocked pullover sweater. also - normally i am an xl (especially for length!) but the large fit perfectly. i didn't want to say that they ran large, because they aren't too loose.",5,1,1,Initmates,Intimate,Legwear +1059,48,Stylish and very warm,"It's like a coat for your legs, and lined with some silky fabric. the only flaw is a slight bulkiness where the fly hooks up. i am a little sad that they don't have a petites, because i think this is proportioned for women 5'5"" and over, and i am only 5""3"". also not recommended for anyone with a tummy pooch. so tall women with somewhat flat abs - snap it up. it's a fabulous look for you.",5,1,0,General,Bottoms,Pants +922,31,,"This is a great alternative to a vest. it does have some blue in it, as the other review mentions. i gave it less of a rating due to the potential for snags. i am keeping it though for the sale price!",5,1,0,General,Tops,Sweaters +1092,46,"Gorgeous!! please bring this back, pretty please",I absolutely love this dress... tried it on one size down from my usual...it fit but my size would be perfect and 8 and 10 are out of stock. it's stunning and i love it... i badly have to have it... please bring it back retailer:),5,1,1,General,Dresses,Dresses +1077,42,,Great dress. fitted but flowing. i like the colors and think it will easily grams iron to fall. i am 5 ft 32 d 27 waist.,5,1,1,General,Dresses,Dresses +872,35,I love the fit and length of this sweater!,"This is a gorgeous sweater with a great proportion in terms of length and fit. i am petite, so i worried that such a long sweater might look weird on me, but it actually makes me look slim and taller. i get so many compliments when i wear it. i ordered the xxs petite.",5,1,7,General Petite,Tops,Knits +872,51,Tts apart from snug arms,"Bought this in cream in my usual xs/0, (5'7"", 32b, 115lbs). it is a very flattering summer weight cardi which will work well with jeans and maxi dresses this summer. i would point out however that the sleeves are very snug - if you don't have thin arms then you may have to consider sizing up. i stuck with the xs even though i had to carefully pull the arms on because the s was just a little looser in the back. the sleeves are meant to be form fitting but i think they have been designed a little",4,1,7,General Petite,Tops,Knits +829,28,If you have red hair you have to get this in kelly,"This top is soft feeling and i appreciate that it's lined. it's light weight and feminine, but no camisole is needed. when you take it off the shoulder area feels tight, so you need to be a little gentle but it's gorgeous and you should get it. i'm a 32c and i got a 2.",5,1,0,General,Tops,Blouses +1030,33,Low quality denim!,"They ripped on the inside upper thighs of both legs less than two months after purchase. i've washed them once, and wear them a few times a week, so they're certainly not worn out. i've never had a pair give out even close to this early. i loved the cut of the jeans and the softness, and they hold their shape well after multiple wearings. the color is lighter than pictured. i paid full price (the most i've ever paid for jeans) because i'd heard good things about jean shop quality. even at sale p",1,0,6,General,Bottoms,Jeans +1068,44,Soft but requires ironing,"Sporty, comfortable and good option to replace jeans, however material needs to be ironed. i bought these as a nice (dressier) alternative to jeans on my trip to europe but didn't end up wearing them b/c an iron wasn't readily available and the height of my ankle boots made the style look choppy. best to wear these with shoes that don't come above ankle.",4,1,0,General,Bottoms,Pants +1077,55,Unflattering,"I purchased the blue with white dots. the shape was awful, but looked like a sack - returned",2,0,0,General,Dresses,Dresses +1077,44,,"Tried this on in the red because the pattern is so eye catching and beautiful. i couldn't get it off fast enough. picture this: tight in the best, tight in the hips, extra billowy in the middle. so confused and can't see how this would be flattering on anyone. unless you're planning to repurpose the gorgeous fabric, skip.",1,0,3,General,Dresses,Dresses +829,42,Nice blouse,Really like this blouse but am returning for a larger size. much too tight in the upper arms and somewhat tight in the chest - overall i like it.,4,1,0,General,Tops,Blouses +1077,49,Frustrating dress,"This dress has so much potential but doesn't make it. +i read all the reviews and very few were favorable and still took my chances. fabric color and textures is great but the design is really off. +with the little folds on the shoulder and since the fabric is more on the thick side, all this make it to accumulate the ""extra"" weight on the front of the body and as result ""not flattering"" for the majority of ladies including me +it is a shame since it has may great features, the style: flowy, low",3,0,0,General,Dresses,Dresses +1077,68,,"I was in love with the green print, so i ordered this despite the reviews. i wish i'd listened. the fit is incredibly weird--huge at the top but tapering in at the hips. so sad this didn't work.",3,0,0,General,Dresses,Dresses +1025,60,Comfy,I love all paige denim. i have the flared which i purchased in july and now the skinny. i got the zara ones last year which are a copy obviously and they are just not the same. the ones last year the paige sierra sold out fast but luckily these are here. i actually like these more because they are more worn looking. you can even wear a pretty top underneath to enhance them.,5,1,0,General,Bottoms,Jeans +1077,29,Better with a belt!,"The colors of this dress really caught my eye. i was hesitant to try it in the store because they only had a size 4 and i'm normally a size 6. when i tried it on i was pleasantly surprised that the dress fit around my hips. success! but like the other women that commented, there was something funky going on in the midriff area. the dress didn't accentuate my curves. the stylist was available at the store i was at, so she recommended that i belt it to add that extra ""umph"". the belt definitely di",4,1,0,General,Dresses,Dresses +859,44,Good just not great.,Nice shirt seems well made. good just not a great fit for me.,4,1,0,General Petite,Tops,Knits +1077,38,Terrible fit,"The quality of the fabric is good, but the fit is horrible. unflattering and strange. definitely a pass.",2,0,0,General,Dresses,Dresses +1077,31,"Sadly, it did not fit me right","I loved the design and material of the test, but unfortunately it just did not fit me right. it was tight in the hips and did not have the relaxed look i was hoping for. +also the pattern did not look good on me. +unfortunately i had to return.",2,1,0,General,Dresses,Dresses +1077,37,Busty? wear with a belt,"I agree with the other reviewer that the green is brighter in person, which was a happy mishap. the 8p makes this look just like depicted on me in terms of proportion, so beware that this borders on too long for petites. my not small chest made me look pregnant, but it fit well regardless. adding a wide belt made this dress look amazing on me and shortens it to a more flattering length. this is a miracle as-is because i'm very short-waisted. keeper!",5,1,2,General,Dresses,Dresses +1077,29,Sizing out of proportion,"I love the pattern (red motif) but the sizing of this dress is way off. the top fit fine but the hip area was so tight when standing with my legs hip-width apart. the only way it looked normal was if i stood with my feet together and thighs touching. i ordered my usual size 10 - for reference i am 5'9"", 170# bra size 34f and 40-41"" hips.",3,0,0,General,Dresses,Dresses +826,38,Depends on your figure,"For fuller busted folks, this top may not work as it's unstructured and results in a tent from the boobs down. it's a shame--i found the gold embellishment beautiful.",3,0,3,General,Tops,Blouses +1077,48,,"I'm glad they put up some pix of non-models looking cute in this dress, as it's taken a beating in the reviews! i measure 34(a)-27-35 and have no problems with the size s fit at all. it's drapey but not voluminous, with no pulling at the hips. the ""folded"" detail up at the top does call attention to the shoulders, but not in a bad way. the pleated neckline is cute on a small chest, and the red pattern/palette is awesome. love the length too -- i am 5'4"" & the size s hits me just above the knee.",4,1,4,General,Dresses,Dresses +829,36,Gorgeous but tight on muscular arms.,"I bought this in both the navy (a more saturated blue in person - gorgeous!) and green, but both are going back. it fit everywhere but in the upper arms, even across my chest, and i usually encounter the opposite. i think it might just be the way it's cut across the shoulders that don't allow for much movement. so, while beautiful and so incredibly soft, it has to go back. (if you have slender arms, i think it would be a great fit.)",4,1,19,General,Tops,Blouses +975,43,Cute but itchy,"This is a cute item at a good price point, though the lack of lining in cartonnier items drives me batty. unfortunately, the wool is so itchy i could not tolerate it more than a second.",2,0,0,General Petite,Jackets,Jackets +1077,33,Perfect for bump :),I bought this dress to wear to work in my second trimester. the shape is perfect to accommodate a baby bump while still flattering the top. definitely recommend for any pregnant women trying to avoid true maternity clothes!,4,1,0,General,Dresses,Dresses +828,65,,,5,1,0,General Petite,Tops,Blouses +828,32,Love this top!,"This shirt is so comfortable! the fabric is amazingly soft and it is very well made. i liked the top so well that i bought one in grey and one in blue, and both in different sizes so that the smaller (xs) is a little closer fitting and the larger (s) is more blouse and casual. i had originally purchased both in m (which also looked fine, just larger and even more roomy), but exchanged for the smaller sizes. this is a wonderful casual weekend top to pair with skinny jeans, flats, leather boots, o",5,1,1,General Petite,Tops,Blouses +850,42,Cute blouse,"This cute blouse runs a little bit small, particularly for large busted ladies. i found the silk fabric to be less luxurious and more utilitarian. it's still a beautiful blouse. due to sizing issues, mine is going back.",4,1,0,General Petite,Tops,Blouses +1086,37,Disappointed,"Quality was not what you expect from retailer, especially for the price. top is lined but skirt is not. material is tissue paper thin and see thru. there is a point at the bottom of the sweetheart neckline that does not lay flat, it keeps popping up. however the back is very cute and for that i wanted to love it but too many negatives. was returned.",1,0,0,General,Dresses,Dresses +1077,34,Perfect as maternity,"I read other reviews that there was extra fabric in the stomach area and knew it'd be perfect for me to wear to a wedding at 20 weeks pregnant. and it was! i got tons of compliments. it accented my baby bump perfectly, fitted but not too tight. the pleats at the top create a nice shape for the bump. very comfortable for an outdoor wedding. my only complaint is that the armholes are rather tight. after pregnancy i will try belting the dress.",4,1,0,General,Dresses,Dresses +828,40,Unbelievably soft,"This has been my go to top for cooler days, so comfortable and soft. i would say it runs tts with a little bit of a lose fit. i am 5'10, 36c and usually wear s and the s fit me well. i could have gone down in size, but liked this to be a bit loser to wear over skinny jeans and leggings.",5,1,0,General Petite,Tops,Blouses +1077,24,Careful curvy girls!!!!,So after ordering this dress and trying it on myself i was able to make sense of the previous reviews. this dress is constructed very oddly. the top seems to have no room for any hips. it is a straight construct so if you are like me that has an hourglass shape but has a pair of hips i would size up. i bought this in a 6p and in all colors. first off the colors/ patterns are amazing in person very adorable. this fit my 34ddd bust without any problems and no problems in torso either. it was reall,4,1,2,General,Dresses,Dresses +1068,64,Great pants but huge,"So, i bought these in 31 --my regular size in hei-hei and they were huge. so, now i am not sure if i should go for a 30 or 29? i guess i will try the 30. they are really soft and very cute pants. just the sizing is difficult.",4,1,0,General,Bottoms,Pants +1077,49,"Cute patterns, potato-sack fit","I found the dot print in the store and though the pattern was cute, but when i tried it on i just had to wonder - who actually looks good in this style? it fits like a sack, big and puffy in the middle but tapered at the hem. it creates the exact opposite on an hourglass shape. genuinely puzzled that anyone would look good in this style. to bad, i hope they use these cute colors and prints on a style with some waist-definition next time.",3,0,1,General,Dresses,Dresses +829,40,Disappointed,I'm usually a maeve fan. i found this top to look cheap and fit poorly. it is also very thin material and showed everything.,1,0,1,General Petite,Tops,Blouses +828,46,,,5,1,0,General Petite,Tops,Blouses +829,40,Close to perfect,"This is one of my favorite new retailer buys. originally got the green for a family holiday party and went back for the sapphire. the cut and design are great. for reference i'm 5'3"", 115lbs and a 34a. the light weight fabric is perfect for so cal winter, but the real winning feature(s) is the detail. so, so cute. only complaint is it wrinkled fairly easily, but i'll deal with that for a cute form-fitting (but not too fitting!) top. .",5,1,1,General Petite,Tops,Blouses +828,42,Disappointing for the price,"The cut of this piece is great, the quality of the fabric is terrible. i used it under another layer the first day i wore it and it pilled across the bust. after hand washing in cold water and hanging to dry it shrank in length- so much that i can no longer even wear it. i always happily pay a premium for quality staple wardrobe pieces. this didn't hold up to one wearing, let alone one season. i recommend strongly against it.",1,0,8,General Petite,Tops,Blouses +829,39,Cute blouse that runs small,The design is very cute. i'm glad i listened to reviews b/c this blouse definitely runs at least 2 sizes small maybe 3. i bought the blue and it's more of a navy blue instead of royal blue. at the sale price and additional 40% off (my daughter is an employee) i didn't mind paying $24 :).,4,1,0,General Petite,Tops,Blouses +1077,32,A little off,"I want to love this dress. the colors and pattern are gorgeous, and i love the hemline. but something seems off in the chest and shoulders area. it almost feels a little slouch-y.",3,1,1,General,Dresses,Dresses +1068,61,"Super soft, great fit","These are very soft and fit well. at first i was a bit put off on the stone wash of the fabric; each pair is different. but it adds character and given the color and the soft fabric, it's a nice difference. i love the pockets, they are deep enough for anything you want to put into them. i love good deep pockets and my cell fits nice into my back pocket. take notice makers of woman's pants, there are some of us who *like* deep pockets! + +only one negative... i have noticed hei-hei is not sewing",5,1,5,General,Bottoms,Pants +1077,32,Size up and you'll love it,"I was eyeing this one for a while. based on the style and other reviews, i did order one size up. i think it would have been too small [catch on the hips] in my regular size. i do wish it was a little longer, too. the back is fine because it's longer. it's definitely wearable though. i wouldn't recommend it for a work function if you're a bit taller. despite all of that, i really do like dress. it's a new favorite. i ordered the blue --- love the dot pattern. i wore it with brown booties and it",4,1,0,General,Dresses,Dresses +1077,68,Didn't look on me the way it looks on the model,"I saw this dress in the store and absolutely fell in love with the fabric and just had to have it. i ordered it on line in my size and when it arrived, i tried it on (or tried to try it on) and it didn't fit some parts of my bday (mainly in the bust). i ordered the largest size, so there was no where to go from there except to send it back. others here have complained about a strange fit in the tummy area (i.e., too much material). i never got to find out because i really couldn't get the dress",3,0,0,General,Dresses,Dresses +1077,39,No fupa for me,"This dress was built for my body to disguise it's flaws. i did have to size up because i am broad shouldered, busty, with a tummy pooch and no hips. this dress skims along all that mess and makes me look slimmer. received the package today and am wearing it right now, i'm so happy! i ordered size 10, my stats are 5'3"" 145# 36dd.",5,1,0,General,Dresses,Dresses +1077,35,,This dress comes with a built in fupa. literally there is extra material at the lower abdomen that sticks out and is very unflattering.,1,0,28,General,Dresses,Dresses +828,38,A sad disappointment,"The first time i wore it, felt wonderful. had it cleaned and then the back end stated pilling. very disappointed with the price and quality. wish i could return for my money back. sad",2,0,1,General Petite,Tops,Blouses +829,39,Pretty blouse that runs small,"The breast and arm area is too tight. best to size up two sizes. the blouse runs too small overall. the color is a darker blue than pictures in the photo. it's a pretty blouse, and great quality.",3,1,0,General Petite,Tops,Blouses +829,44,,,3,0,0,General Petite,Tops,Blouses +1077,29,Not for me,"This is a beautiful dress, but the fit was strange. i have a small waist and larger hips. i generally wear a 0-2 in a fit & flare style, but styles like this i generally wear a 2-4 for my hips. even in a 4 this was catching on my hips and looked kind of dumpy on my top half. + +i really think this dress would be great on a frame that had wider shoulders and smaller hips. it really is pretty.",2,0,7,General,Dresses,Dresses +1077,33,Wanted to love it,"I saw this dress in the store months ago and never forgot it, so when i saw it on sale i nabbed it online. so sad to see how this dress fits: just right up top, just right along the hem, and then it's a hot, potato-sack-frump mess in the middle. it's a shame because the fabric is beautiful.",3,0,0,General,Dresses,Dresses +1077,39,Meh,"As other reviews stated, this dress runs very large. it was a big potatoe sack on me. added to the fact that the green is much brighter than the online photos, it is going back!",3,0,1,General,Dresses,Dresses +829,42,Very pretty!,"I purchased this blouse in the kelly green the other day and i love it. the color is beautiful and i like how it hangs/flows- especially the sleeves. it's not warm enough to wear by itself when it's really cold but would be beautiful layered with a cardigan in the winter months and by its own when it's warmer. looks great with skinny jeans, flares and just about anything including the right skirt. i'm so happy i purchased this!!",5,1,1,General Petite,Tops,Blouses +1077,27,Cute but tight in hips,"I am 135 and went with a size zero. it was very cute on but a little tight on my hips when sitting. the fabric is beautiful, and very soft and silky. the length was great, comes to just barely above my knees and is long in the back. great work outfit.",4,1,0,General,Dresses,Dresses +1077,35,"Pattern is excellent, fit is not","I ordered the red motif online in my current size 10. the fabric is so beautiful, even prettier than the online photo. the fit is not great on me. it made me look wider at my chest area and almost catches at my hips (i'm sure shapewear would take care of this). the dress looks really good with a jacket or vest but just weird by itself. i agree with the other reviewer who said it was a little short - i'm 5'9"". it looks good standing up but is very short when i sit. there's no real stretch to the",4,1,9,General,Dresses,Dresses +1077,36,Going back...,"I purchased this dress in the green, and while the print and material were lovely, the extra folds in the neckline made the dress look frumpy up top. the billowly bottom made it look like a bag. i am 5ft, 36d and 29"" waist and the size 2 fit, which makes me think this runs large! i'll be returning this dress.",2,0,0,General,Dresses,Dresses +907,69,Beautiful,"I really like this top. bought it in ""purple"" but i would not call it that. it is more maroon or burgundy. color is exactly what it shows in the online photo. really like the green also. crocheted arms are super. i found it ran slightly small, so if you are between sizes, order up. one slight personal problem for me is that there is cashmere in it and i live in florida. even though we do get cooler weather here, i am not sure i will have that much chance to wear it; it will be too warm for me. t",5,1,1,General,Tops,Fine gauge +868,39,Eek!,Do not buy! i used my 15% discount on this. what a waste. my usual sizes range from s to l depending on what brand. i should have gotten a small. i don't think that would've helped. it was so awkward looking. nothing like the model. it made me look as if i had gained 15 pounds. it was waaay longer in the back-like a mullet. the material was really thick. it is more appropriate for fall. i had high hopes for this-to dress up or down. it was just so ridiculous.,1,0,4,General,Tops,Knits +907,52,,"I absolutely love this sweater, very comfortable and flattering!!! i'm thinking of buying it in another color!!!",5,1,0,General,Tops,Fine gauge +868,54,Just a blah top,"I ordered this since it looked so cute on the model . when i it arrived, i was excited to try it on, but when i did...blah. the color is murky and the top runs large, not to mention that the material is too heavy for a short sleeved top (plus it's lined). i really wanted to like it and debated wetting it and then putting it in the dryer to shrink it a bit. in the end, i decided that it wasn't worth it. too bad, as the concept was a good one. it just failed in the execution.",2,0,2,General,Tops,Knits +1094,29,"Beautiful, but runs small in the chest, i guess?","I tried on the red xs in the store and the v-neck was way too low. showed at least an inch of my bra strap in the back, which was unfortunate because i really loved the dress otherwise. i decided to purchase the xxs online hoping the v would not be so deep and would cover my bra. it did, but the xxs was significantly smaller! it still fit, but took this from an elegantly flowy and loose dress to one that looked more empire cut and tight in the chest. maybe the xs i tried in the store was just st",4,1,2,General Petite,Dresses,Dresses +868,45,Love,I love this top it is easy to wear fun and very comfortable. i was thinking about it for weeks and kept coming back to it after i read a review about going up a size i decided to go for it and i am very happy i did!!! my new favorite!!!,5,1,3,General,Tops,Knits +1094,61,Comfortable and classic,"I got the orange dress and find it super comfortable and flattering. i dress it up with a one-inch taupe belt and taupe wedge shoes. it moves beautifully, i can wear a regular bra and it doesn't show. i got an xs regular and the hemline hits 6"" above my ankles. i'm 5' 3"", 33-26-35 and normally take a size 2 or 0. i'm long waisted, so often a petite will be short-waisted on me. the seam actually comes just below the bust line on me, unlike on the model. on days when i'm a bit bloated, i can wear",5,1,0,General Petite,Dresses,Dresses +755,31,Perfect summer to fall transition piece!,"I am petite and curvy and was apprehensive about the cropped length of this jumpsuit. however, the petite looks great and the length is perfect. it is light enough weight to keep you cool during the day but provides some coverage for cool evenings. i ordered the xs petite and it was still a little loose. i am 5'3"" and 125lbs. this will be my go to for fall! looks great styled with ankle boots or clogs and will carry me into fall with a chunky sweater!",5,1,0,Initmates,Intimate,Lounge +868,60,Weird,The way the back came down so much made the top look weird. i do like some tops that hang longer in the back but this one was just too much. also the material was kind of blah it was thick polyester which would not be very cool during the summer and the color looked better in the picture. so to me it was just a over priced odd top.,3,0,1,General,Tops,Knits +1047,62,Yes yes yes,"I promised myself only one pair of joggers this year, and these were the ones i went with (in the blue motif). for me the tipping point was the quality and fit of these were far superior than the others i tried, while still being machine washable. the fabric has aa little substance, yet is still lightweight and comfortable. the fit has a perfect bit of tailoring/tapering to be ultra-flattering while having the comfort of pajama pants. the blue motif is adorable too - love the geometric shapes. l",5,1,1,General,Bottoms,Pants +907,39,Perfect!,I can't believe i waited so long to get this. it is truly soft and well fitted. the deails in the sleeves and neck are just great. kuddos again angel of the north!,5,1,0,General,Tops,Fine gauge +857,32,Nice for summer,I bought these in both colors. i'm usually an xs or a small and i went with the small for the length. they are a comfy shirt great for the hot summer days.,5,1,1,General Petite,Tops,Knits +873,54,,"This is super cute. i bought it in the gray and white lace in a size s and it's quite roomy. i probably could have sized down to an xs, but i like the relaxed look. there are a few edges of lace that are not sewn down all the way and i will have to fix them as i can see them start to pull away and eventually unravel but otherwise it's a beautiful and unique top.",4,1,0,General,Tops,Knits +862,32,Just ok.,"I found the color to be a bit blah, and the sweater is chunky and is a tad too short for wear it lands. also, because of its ""chunkiness,"" it doesn't tuck in as nicely to a pair of jeans as it appears to on the model.",3,0,0,General Petite,Tops,Knits +857,36,,"I loved the look of this shirt, but when i put it on it was entirely too billowy under the chest. it just ended up making me look larger and pregnant.",3,0,0,General Petite,Tops,Knits +1083,28,Raglan sleeve style did not work with larger bust,"I saw the photo of the young woman wearing this dress in the reviews and she looked beautiful, i on the other hand looked awful. the fabric of the entire dress is quite stiff, so the dress didn't move with me; it sort of felt as if i was wearing a paper cut out. then to contribute to the volume, the sleeve is not set in, it is a raglan style, that on me looked more like a bat suit, than what i was hoping for, a beautiful distinctive dress for an important affair. also the belt didn't enhance the",1,0,0,General,Dresses,Dresses +1094,33,Love!,"This dress is so cute and comfortable! it can be dressed up or down, super versatile. love it!",5,1,0,General Petite,Dresses,Dresses +857,37,,"Love this top! has a beautiful shape, and it wasn't too long on my 5'3"" frame. puella always makes items with lovely, soft cotton, and this is no exception! awesome piece for summer!",5,1,8,General Petite,Tops,Knits +862,64,Cute and classy,"I ordered this tank, and was very pleased with the quality. each of the stripe colors has a different knit, adding an unusual and interesting look. it has a trim fit. i wear s and sometimes xs, but this fit perfectly in the s. i agree with the other reviewers that that armholes are the correct size- so nice not to worry about a bra showing in the armholes!",5,1,0,General Petite,Tops,Knits +1047,41,,"I purchased these pants in blue, they fit great - only problem is that one leg is about 1/2 inch longer than the other. i got them on sale with a discount so i will keep them and take them to a tailor to fix. bummer.",3,1,0,General,Bottoms,Pants +862,42,"Sweater-like, loose-fitting tank.","Beautifully constructed tank--but the bodice isn't fitted and hangs straight down on me--perhaps better for a full-figured individual (i'm 5' 8"", 34b, 120lbs and the xs had no shape on sides). could've been longer too. size of armholes is perfect though (often they gap/show bra).",4,1,6,General Petite,Tops,Knits +1094,51,Ribbing at neck and sleeve ruins the look for me,"This dress didn't work for me for several reasons, but i knew i wouldn't keep it as soon as i saw the ribbing on the neck and arms, which makes an otherwise flexibly styled dress (dress up/dress down) into super casual only (plus it looks cheap). it is also not for the long waisted or tall. + +on the plus side, the fabric feels great, and it hangs well.",3,0,23,General Petite,Dresses,Dresses +907,35,,"Love! adds texture and femininity to a basic sweater. ordered a small so i could layer. if you're busty or between a s and m, you may want to size up.",5,1,0,General,Tops,Fine gauge +755,38,I love this jumpsuit,"I love this jumpsuit! i'm 5'3, 122 lbs and the x-s was to big on me. i had to return and order the x-s in petite and the fit was perfect. you can wear it with heels or with slides. i wore it with a thick brown wide belt and some tan open toe shoes. i wore gold earrings and necklace. i got some many compliments and my girl friends asked where i had purchased it. and if. purse i told them retailer;)",5,1,0,Initmates,Intimate,Lounge +862,51,Reminds me of the 1970's,"I think this is adorable and am so excited to have bought it. it is really flattering. i love how it hangs-- it's loose enough without being unflattering at all. it's a little retro. it feels really soft! i hope it holds up well. +i'm 5'1 and and 103. i got an xs and it fits perfectly.",5,1,8,General Petite,Tops,Knits +779,58,Never too old,Lovely dress! i&amp;#39;m wearing it with a blue denim jacket and brown suede boots. it is most certainly purple - a little more so than the picture. still love it.,5,1,0,Initmates,Intimate,Lounge +1025,39,Love these pants!,Beautiful white denim pants. the fit is perfect. fitted on the top with a nice flare on the bottom. very classy and versatile cut. paige denim runs long for me and these are no exception. will be getting them hemmed but i don't mind because they are perfect!,5,1,0,General,Bottoms,Jeans +857,35,,,4,1,0,General Petite,Tops,Knits +825,31,Love how it looks but doesn't hold up,"I love this shirt, love love love it. i am a curvy girl and it accents all the right features and hides the ones that need to be hidden. +but i've owned it for 6 months and there are already 4 holes in the shirt. and not holes in the fabric but holes on the seam lines. the stitching is not sturdy enough for the shirt to not fall apart. the whole point is to be able to wear it. but now i have to bust out my sewing machine to reinforce the seams that split so that i can wear it again. :(",2,1,0,General Petite,Tops,Blouses +857,34,,"I hoped, from the picture, that this would be more of a ""straight down"" sort of fit. retailer is usually really great at selling tops that flatter hips without having an obvious bell shape to them. however, the top had too much of a ""flare out"" bell-shaped vibe. i need to be able to wear this with maxi skirts in the summer, but this top would be too sack-like and billowy with those. i think it would only work with jeans/trousers. my final objection was the arm holes - the way they are cut,",3,0,0,General Petite,Tops,Knits +550,25,,"Mine came smelling like gasoline. not sure why, but i would have kept it otherwise. it's a smell that will be really hard to get out. looks like the picture.",2,0,1,General,Trend,Trend +907,35,Fun arm detail,"Really enjoy this pullover's arm detail. i got the ""purple"" which was somewhere between aubergine and garnet. i think this will easily go with black pants to wear to work or a fun skirt/jeans.",4,1,0,General,Tops,Fine gauge +1094,43,Perfect summer dress!,I had eyed this simple yet stylish dress for awhile but hadn't tried it on yet. i managed to snag the orange version during the tag sale - $40 for maeve?? it is super flattering and will be a wardrobe staple for years.,5,1,0,General Petite,Dresses,Dresses +1047,53,,"Purchased these in the blue motif. love the hei hei brand. . they run true to size. they are very comfortable and wear well. you can wear them to the office,dress them up or go casual with a tee. versatility and comfort, what more could you ask for.",5,1,0,General,Bottoms,Pants +1047,63,,"Purchased these in the blue motif. love the hei hei silky pull on pants. i got hooked on them last summer and was thrilled to see them for the upcoming spring. they run true to size. they are beyond comfortable and wear well. everyone should have at least one pair of these comfy pants in their closet. dress them up, down or wear them to the office. versatility and comfort, what more could you ask for.",5,1,9,General,Bottoms,Pants +862,34,A pop of color and style,"Pros: +- fits tts. i tried on a size m and it fit well for my 36c and hourglass frame. +- the cowl neck gives it a nice touch of class. +- love the pop of yellow. not too showy and yet cute and fun. +- fabric has a great feel and stretch to it. forgiving fit. +- will go with many outfits. +-wore a nude bra and had no see-through issues. +______________ +cons: +- does seem a tad delicate, easy to snag due to being a knit, but otherwise solid construction. +- unlined. +______________________ +rea",4,1,11,General Petite,Tops,Knits +550,62,Substantial!,I love this sweatshirt! i truly did not pay much attention to it on line but while in my local store one was returned and it caught my eye immediately as the flowers are embroidered in a nice substantial rope type yarn to give it a more demential effect. the torn holes here and there give the appearance of being the most loved garment in your closet...and it has become mine along with the jacket with the same embroidery...funny how 2 pieces i did not give a second thought about have become my li,5,1,0,General,Trend,Trend +857,36,,,5,1,0,General Petite,Tops,Knits +862,59,Poor quality fabric,"I purchased this top in the black and tan color, loved the fit, style and fabric. however, it is a loose weave and after just one wearing a hole opened up on the front, which could not be repaired. it was covered by the cowl neck collar but as the day wore on the hole got bagger and it can no longer be hidden. i was very disappointed in the quality of this top- i purchased it at full price and was only able to wear it once. i just didn't have the time to return it to the store.",2,0,0,General Petite,Tops,Knits +31,48,,,5,1,0,Initmates,Intimate,Swim +1094,46,Abroad dress,"This is a heavy dress - it's surprising when you lift up the hanger how much it weighs because it looks like a light sundress. and on my frame, which is pretty thin, it hits my shoulders and then my hips and just falls... so the heft of it means there's no waistline... it's an odd fit. the color is gorgeous, but the lack of shape made this a no.",3,0,2,General Petite,Dresses,Dresses +1094,38,"Nice, simple summer dress","I ordered this online in red. i would definitely say this color is more of an orange-red. i like the weight and the cut. i keep wishing the material was a soft modal vs what it is. the ribbing up top does not bother me but it definitely does make it a casual dress. (which is what i wanted so i'm happy with it) + +it fits me nicely, the straps (for me) could be a hare shorter to fit perfectly. that being said, i'm 5'5"" and have a thin build. small bust. i would say there is a some leeway for 1 s",4,1,1,General Petite,Dresses,Dresses +1094,41,"Great dress, very happy, recommended!","I was immediately drawn to the ochre yellow color of this dress and it's stitch and pleat details and was happy to score it early enough in the season still in my size and preferred color option. unlike other reviewers, i was not turned off by the ribbing at the neck and arm lines. i received the dress yesterday, am wearing it today, and have already received compliments from even the most sour-faced co-workers who can't give a compliment or share casual conversation in the hallway. the sunny ye",5,1,1,General Petite,Dresses,Dresses +1094,45,Can't wait for warm weather to wear this,"Just bought this today and i love it. so simple, and at the same time it's not. the fabric makes it casual to dress up or down, but the shape of it is incredible and what takes it above simple. the straps felt a little long, so i will likely get it altered to be shortened in the straps. got the red and it's gorgeous.",4,1,36,General Petite,Dresses,Dresses +1047,35,Great fit - and a win for petites,"Really like the cut - it's tough for petites to find good joggers and these hit the mark. light, easy, comfy - great with heels for work or sandals on the weekend.",5,1,0,General,Bottoms,Pants +862,35,Classy cowlneck,Absolutely love this sweater! it is a tad bit large. i bought it in a medium but because i like the loose fit i will keep it. it is very light and great for the summer. i've only worn it once so far and received many compliments on it. great quality as well!,5,1,0,General Petite,Tops,Knits +822,26,It is a crop top,"This top is very nice, very pretty. i thought the design on the top is more shiny but it is embroidery-like threads. it looks quite nice but is very very short, like a crop top. it came just down to the top of my tummy. i wish it were longer, i would have kept it. but it is a nice top, flattering for curvy figures.",4,1,2,General,Tops,Blouses +868,37,Too billowy,"I like the color blocking of this top, but it was too large and billowy on the bottom. it felt like a pregnancy top so i had to return it as it gave me no shape.",2,0,1,General,Tops,Knits +1049,38,,"I love these! i adore tracy reese, and these are my favorites. they feel like pjs, fit true to size and are just perfect for work (i'm a teacher) or for going casual. very lightweight and not too hot for texas summers.",5,1,3,General,Bottoms,Pants +1047,58,Beige and black,"First things first: these are not black and white as the photos suggest, they are beige and black, which was a disappointment when they arrived. i can still wear white shirts with them, but had they actually been b/w, i think they'd be more versatile in terms of possible shirt colors. that said, they are well-made, and the waistband and pocket detailing is nicely done. i love loose-fitting rayon pants and these are just that (mine fit a little looser than the model's fit). i ordered a small and",4,1,4,General,Bottoms,Pants +1047,35,,"These were not tts, imo. i am a 10 and ordered the m. they did not look bad, but b/c these have no stretch, they were not comfy, like joggers are supposed to be. i ordered the lg when they went on sale and while they are baggy, the comfort is spot on in the larger size. i got the navy after seeing the irl pics. happy with this sale purchase !",5,1,0,General,Bottoms,Pants +857,39,This top runs both small and true to size,"This top has a lot of potential (comfortable, easy to wear) but it's cut too small in the area above the bust. i tried the top in small, medium and large (i usually wear s or m in retailer tops) and couldn't get that area to not look tight or like it was pulling. you can see it on the model, too -- that space right above the bra near the armhole. i think you'd need to order a size up to get that space to work but then the top will start to look too big on the bottom. +i tried the green in the sto",3,0,12,General Petite,Tops,Knits +830,67,,"The neckline is beautiful! it's super soft and comfy. sadly, my normal large looked very boxy. i am hoping the medium will fit better.",4,1,1,General,Tops,Blouses +1033,37,Comfy but see through,These jeans fit well and the stretch makes them comfortable. i can't recommemd them though because they're see through. wish white jeans were better lined so that this isn't usually a problem!,3,0,1,General,Bottoms,Jeans +830,43,,I love the muted coloring! this top is generously sized. i have a small bust and it is roomy under the arms. i wish it was less full around the waist area.,4,1,1,General,Tops,Blouses +850,37,Way too big on the bottom,"I thought this top was so cute but when i tried it on, it is so big on the bottom, it looks like a tent. i normally wear a l or xl and took it back to the store to try on a medium and that one fit better but the bottom was still too big. sad.",1,0,0,General Petite,Tops,Blouses +830,23,Great features but too boxy,I loved the color of the top and the faded look but unfortunately had to return it because it was too boxy and just looked frumpy,4,0,0,General,Tops,Blouses +156,44,Great under dresses,These truly are tights and not leggings. they could not be worn alone but definitely great under skirts or dresses. they are thick and warm. i thought they ran a little big.,5,1,0,Initmates,Intimate,Legwear +830,45,One of the cutest tops i have for this summer!,I love this top! it fits perfect and is of great quality! i ordered the pink and love it so much i'm getting the navy one! colors are so trendy as well. this top is so much cuter in person. hard to tell the detail online. definitely recommend to others!,5,1,3,General,Tops,Blouses +830,34,So much fabric...,"The picture of this top is misleading. it's more like a tent/ super short dress. i ordered my usual size (l) and could easily get away with a small in this top, if the arm holes were not too tight. i def. need to go down to a medium, and maybe even a petite medium since i'm 5/3. the top is 100% cotton, but there is so much fabric there is no way a little shrinkage would offset the amount of extra fabric. it looks like a tent on. plus, the picture and description make it seem like a normal top le",3,1,1,General,Tops,Blouses +1081,55,Online photos don't do this dress justice!,"I saw this dress in a store the other day. it is so cute in real life. i don't think the pictures online even begin to show how cute it is on. the dress is well-made and it fit perfectly. in fact, it is quite flattering. i am so happy i saw it in the store. even though i am big online shopper i would have passed on this dress if i only saw it online, but don't because it is worth every penny.",5,1,3,General,Dresses,Dresses +850,36,I really wanted to love this top!,"I read the previous reviews and ordered down a size knowing that the shirt runs big. i really wanted to love the shirt however it was a tent. with all of the extra material in the back, it billowed out in all the wrong places. the material is comfy and it's a very cute concept, just didn't work for me.",2,0,0,General Petite,Tops,Blouses +1033,53,Cute but not for me,Fit is just like stet in my opinion.,3,1,0,General,Bottoms,Jeans +1033,37,,"I had been on a white jeans hunt for some time. pilcro is one of my favorite brands, and i can buy online with confidence knowing they will fit. if petite had been available, that would have been better in length, but it was not so i had them hemmed.",5,1,0,General,Bottoms,Jeans +1095,34,Terrible fabric,"The good: the sloths are cute because sloths are always cute. + +now the bad: the material is wretched. it feels damp even when it's not... it's see through and unlined... it's scratchy and wrinkly... and though the cut of the dress would be fine, the fabric is so limp that the high-low hem looks more like a tail. + +i wanted to like this, but charging nearly 200 dollars for a see through piece of awful fabric with a passable cut was simple not acceptable. i returned it as fast as i possibly c",1,0,5,General,Dresses,Dresses +1069,46,In love!!!,"I have been stalking these pants since they first showed up on retailer's site. i have never even tried on anything like this before though, so have been waiting patiently for a review to get an idea of what they might look like, fit like...etc sale plus 30% off was incentive to take the plunge without a review though. i am wearing them right now and they are so comfortable and pretty and just...everything summer. perfect!!!! i am not a ""shorts"" person, generally wear skirts and dresses. these are",5,1,0,General,Bottoms,Pants +1028,35,Best pair of jeans i have purchased in years.,"I cannot speak more highly of these jeans! i am a standard size 2, 5'3"" and have never been able to purchase a pair of jeans and wear them right away. i *always* have to hem them by massive amounts. these jeans are so flattering, the wash is amazing. i have worn them with cute ballet flats and tall boots so far, but i think the possibilities are endless. i am petite but in a curvy way and i haven't felt these great in a pair of jeans in so long. the wash is great for dress up/dress down. i have",5,1,0,General,Bottoms,Jeans +830,58,Love but a little too much flow,"I love the details and design of this top- my only issue is the top is a bit too ""flowy"".",3,1,0,General,Tops,Blouses +850,57,,Seen it online so i ordered it is so cute great fit patchwork is so pretty very vintage looking runs large would be cute with some skinny jeans and some booties,5,1,0,General Petite,Tops,Blouses +1081,39,Amazing!,"This dress is much cuter in person than it looks on the model online. it's so flattering, it fits like a dream, and i love the fabric. i love that the skirt is a true a-line, not poofy, so it's sleek, slimming and flattering. the neckline is feminine and gorgeous and is a bit sexy, while still being classy. oh, and the length, perfection! not too long, not too short. i never ever pay full price and for this dress i had to. i am a curvy size 4 and it fits perfectly true to size. i couldn't be hap",5,1,6,General Petite,Dresses,Dresses +830,48,Great top!,Saw this in the store but didn't have my size. ordered online- wore it twice already and got so many compliments! very current and flattering!,5,1,0,General,Tops,Blouses +830,51,Fun top!,I got the blue and love the color. it's bigger than it looks here! almost like the model has it pinned in the back...but it's swingy and super cute and fun!!,5,1,0,General,Tops,Blouses +850,41,Picture doesn't do it justice!,"This is a super cute top that is a fit and flare design. i think the stylists wanted it to look more straight hence the odd model shots, but this definitely has a flare to it. it also has pockets. it feels a bit artsy to me which isn't normally my style, but the pink and white is just very feminine and pretty. i would say it probably runs a little large because of the style, but i have larger arms, so, the arms were a bit snug in my normal size, but i didn't want to go up in size as the rest fit",4,1,5,General Petite,Tops,Blouses +830,47,,,4,1,0,General,Tops,Blouses +1081,46,Gorgeous dress!,I loved this dress when i tried it on. the plaid is darling and the plunge is sexy. i so wish it would work for my body type. the waist came a bit too high on me (almost a line) and it made me look kind of frumpy in the midline.,5,1,0,General Petite,Dresses,Dresses +830,39,"Well made, long and flowing","This elegant-with-a-slight-edge top has a lovely neckline and is very comfortable. i chose the denim/blue version, which i wouldn't wear with jeans, but it's great with crops. i imagine it will be a good layering piece in the fall. it's long, but not long enough to be a dress. overall, it's flattering and slightly structured up top with tiny buttons at the back of the neck?generous and full below.",5,1,3,General,Tops,Blouses +1081,49,Beautiful dress,The stylist at my local retailer recommended i try this dress and it did not disappoint! the material is fabulous and it looks exactly as pictured on the model. it also has pockets which is a bonus to me. i normally wear a 4 but bought a 6 in this dress - i am a 34c and i felt the 4 was a little tight across the chest - otherwise i feel the dress is pretty much true to size.,5,1,9,General Petite,Dresses,Dresses +99,44,Sizing is off,"The bra is comfortable and the design is good. however, the sizing is way off. i am a 34c and the small fits well with minimal support. not sure about quality. this one might have to go back :(",2,1,1,Initmates,Intimate,Intimates +1081,65,,"Really gorgeous dress...great fabric/weight, great color & style. runs one size small. i ordered my regular 6 but had to return...hope the 8 works!!!",4,1,0,General Petite,Dresses,Dresses +830,51,,,4,1,0,General,Tops,Blouses +830,64,Way too long!,This top was supposed to be 23 1/4 inches long in petite. it's actually 28 1/2 inches long. it's also large in width. hard to believe it's an extra small petite.,2,0,3,General,Tops,Blouses +188,63,Beautiful tights,These are more than what i had expected! they're beautiful and fit like a glove. i'm thrilled that i purchased them.,5,1,1,Initmates,Intimate,Legwear +830,26,Love this top,I paired this top with pants and cardi from retailer and have really enjoyed wearing this outfit. i usually wear a large but due to how much material there is and how flowy it is i sized down to a m and it fits perfectly. only down side is getting the buttons buttoned behind your neck.,4,1,1,General,Tops,Blouses +1081,56,,Wide fit. usually an 8-10 at retailer. got a large for online order and was large for sure - great for summer or winter with long sleeve and tights,5,1,0,General Petite,Dresses,Dresses +156,31,Tights,"The color is great, a nice alternative to all my black tights. good quality.",5,1,0,Initmates,Intimate,Legwear +830,52,Well made and pretty!,"I bought this in blue and have worn it with jeans, khaki shorts, and camo pedal pushers. added just a perfect amount of feminine detail without being over the top. i'm loving that it shows off my shoulders (they're tan from my vacation and i've been working like a fiend on my arms in the gym). it's well made too!",5,1,3,General,Tops,Blouses +1081,38,Lovely plaid halter,I live abroad where there is no retailer. so i rely heavily on reviews.i took the advice from others and ordered a size up. glad i did because the top portion of the dress runs very small. if you have larger breasts this dress may not work for you. luckily for me..it fits wonderfully..i love the fabric and the fact that it has pockets. it's lined..but not too bulky.its a lovely summer halter where you can show a little skin.,5,1,1,General Petite,Dresses,Dresses +839,48,Short top,"This looks really cute online. i was super excited to get it and i ordered my regular size in maeve. i got a size 0 (i am 5'4, 114#). the top is very pretty and the fabric is nice but it is very short, it didn't even cover my stomach and didn't come to the top of my jeans. i'm sending it back. maeve usually runs big but you can't tell from the photo and the size chart that it's more of a crop top. disappointing since almost every size is sold out.",4,1,2,General,Tops,Blouses +839,36,Elegant and feminine,"This is really a gorgeous blouse. the design is very feminine and elegant, and fits true to size. i didn't think it ran short and the material is light and airy. it sold out so quickly so i had to wait awhile and managed to get my hands on a 4 when it was available for a quick second. it was def. worth the wait. a gorgeous top.",5,1,0,General,Tops,Blouses +1081,38,Disappointed,"This dress has been in my inbox for a long time and when it went on sale i purchased it right away. i am a size 4 petite in everything retailer and have not had a problem with fit, if anything i might have to size down. i purchased a 4 petite in this dress and i couldn't zip it all the way up. it was as if i was trying to get into a 0 petite. i don't even think a size 6 would fit. there is something not right with the make of this particular dress i received. even if the fit was perfect i didn't",1,0,1,General Petite,Dresses,Dresses +830,35,Too flowy and too washed out,This shirt is way too flowy and the pink color is extremely washed out- will definitely be returning!,2,0,0,General,Tops,Blouses +1081,26,Just what i was looking for!,"I needed a summer party dress for a few casual special occasions this summer and this dress fit the bill perfectly. fits tts (5'8"", 160lb - sz 8) and is really flattering. it is quite open in the front but i was able to keep everything situated w/ the right bra. purchased it on sale and am so pleased!",5,1,0,General Petite,Dresses,Dresses +1033,39,Great jeans for tall ladies,These white jeans are super cute. the longer length is perfect for tall ladies who can still roll them up. you can also adjust the height of the cuff since it is not pre-attached to the jeans. i will wear them all the time.,5,1,0,General,Bottoms,Jeans +830,40,So pretty!,"I get compliments on this top every single time i wear it. the pattern is so pretty, and while it's very lightweight, it still drapes nicely. i would caution that someone with a larger chest may find that the shape is not quite right - i am a 34d and just on the cusp of having it be too balloon-y on top.",5,1,0,General,Tops,Blouses +188,40,,,5,1,0,Initmates,Intimate,Legwear +850,43,Mavis patchwork buttondown,"The prints are subtle, the fabric is soft, and the mismatched buttons are cute. unfortunately, even in an xs, it was huge all over. i love flowy shirts and swing styles, but this just stuck way out from my body and was unflattering.",4,1,1,General Petite,Tops,Blouses +1081,39,,"Super cute! got a marilyn vibe that i like. although i can tie the halter to make the chest area tighter, i will have to get a tailor to adjust the chest area and under the arms a bit.",4,1,0,General Petite,Dresses,Dresses +1081,66,Good fit and great style,"This is just the cutest dress on. i love the way the plaid comes together in the seams and the fullness of the skirt. i almost didn't order it, but then i left something in my cart too long and it was gone. this was my next choice. i haven't had the chance to wear it yet. but the wrinkles pressed out beautifully and it is hanging in my closet waiting for an event. i will wear it without a bra since even with my strapless, the bra shows in the front. i think if you want to wear a bra it would be",4,1,0,General Petite,Dresses,Dresses +830,51,Sweet briar tank,The color is great. the fit is accurate and it is a great transitional piece.,5,1,0,General,Tops,Blouses +830,34,Love!,This top is perfect!! i am small chested and it actually makes me look like i have a chest! plus for me!! it's also great for work and casual.,5,1,1,General,Tops,Blouses +839,40,Almost,"Beautiful top, the silk was good quality, not thin. ordered a 6 because it was selling out so quickly, wished i could have ordered the 4. will definitely try if they come back in stock.",3,1,1,General,Tops,Blouses +830,45,"Cute tank, great details","This tank is great - goes well with black pants of skirt. it's a nice texture that doesn't show too many wrinkles so will travel well. it's a bit hard to get the buttons done in the back of the neck, but i assume that will get easier with time.",4,1,0,General,Tops,Blouses +830,35,Recommend with one comment,"I usually wear a medium but in this top probably could have pulled off a small however i was afraid the neck would be too tight. was considering the small because the arm holes were a bit baggier than i would like. no issue with my bra showing though. i wasn't able to try on the small to test my theory since i purchased online. overall i love the color (blue), the fabric is comfortable, definitely loose but i'm okay with that on a hot sunny day.",4,1,0,General,Tops,Blouses +1074,36,,Love this dress but wish the lining was full length - will be removing this liner and using a different slip underneath!,4,1,4,General Petite,Dresses,Dresses +830,38,,,3,0,0,General,Tops,Blouses +850,40,Large on bottom,"Another lovely, billowy top. i tried on the xsp and the bottom was just huge. and i have a huge bottom - haha! it flowed out so far in the back that it looked silly. it's too bad, because from the waist up, it looks great!",4,1,1,General Petite,Tops,Blouses +1081,27,,"Cutest dress i own. very flattering, makes your waist look tiny.",5,1,0,General Petite,Dresses,Dresses +140,34,"Cute, slightly uncomfortable",I am keeping these because the style is just cute as a button! ;) the button details on the ankle are so adorable. i would normally wear a size small but like the other reviews said they run small - i purchased the ml and they fit great. i wore them all day to work and they are slightly itchy....and during the day they would fall down and i would have to keep pulling them up. reminded me of when i was a little girl and my mom made me wear tights. however....they are too cute to not have. i will,4,1,1,Initmates,Intimate,Legwear +1086,48,Super cool!,"Love the luxury feel, so soft. perfect for day out. i'm 5'6 and the fit is just right. not too long or short. dalls right at the shoulders too.",5,1,0,General,Dresses,Dresses +1086,23,Great spring staple,"I purchased this dress in blue and paired it with the seychelles forward platform wedges in cognac. the fit is amazing, the length is great (i'm 5'5"" and it hits me a couple inches above the knee), and it is a great spring staple. my only issue with this dress is that is wrinkles so easily. easily fixed with a quick steam or low iron.",4,1,3,General,Dresses,Dresses +202,39,,"This bra is so soft and comfortable i feel like i'm not wearing a bra at all, except i have the gentle support i need. the material is very thin and the pink color is see through, so not recommended under a white or see through shirt. perfect for sleeping or lounging in!",5,1,0,Initmates,Intimate,Intimates +1147,35,Unexpectedly wonderful,"So, i really like the plaid designs by siyu. i saw these pants and questioned whether they would be tight and scratchy and ill fitting, but they were so cute, i had to find out. i'm really glad i did. the wool is soft and actually a little stretchy. it has an elastic waist, which is a plus, because sometimes, even if the legs fit, the waist is too small, or vice versa. i am a large, and very curvy on the bottom, and these are perfect and flattering, and the elastic waist is just right. as on the",5,1,3,General,Trend,Trend +674,36,Fun,These pants are so fun! i use them to sleep in as they are see through. i had to size up as the waist band gave me muffin top. i normally wear a small and ended up getting the large.,5,1,0,General Petite,Intimate,Lounge +1094,32,Runs large,"This is a nice dress made with high quality fabric. unfortunately i'll need to make a return as it was quite big. i bought this dress in an xs and it was too large all around. i am about 5'3"" and 112 lbs and would have taken the petite, but there were none available. i'm not sure the petite would have even been small enough. the dress was a bit too long for short ladies and definitely too large in the waist and the bust (i'm small on top). it's too bad a this was a cute, and versatile dress that",3,0,0,General,Dresses,Dresses +1086,26,Awesome casual dress,"I loved this dress immediately. it is soft to the touch and super comfortable. i will be wearing this so much this summer! the arms are true to size and the body is flowy and roomy, but it is still flattering! highly recommend!",5,1,1,General,Dresses,Dresses +851,39,So cute,"This top is truly adorable. it runs a little shorter so better with higher waisted pants. the bow is nice. it did come with the folded pleats showing. we'll see if they come out when i iron? i ordered 0 and am 5'1.5"" and 115 lbs. the top is structured and zips all the way in the back.",5,1,1,General,Tops,Blouses +674,61,Cute !,"These are very fun and breezy pants. i first ordered a medium, but the waist was too low. i exchanged for a large and i love the fit now. i like them loose and airy. for reference i am usually a 10-12 petite and the l regular is super cute ;0) i hope they wash well. they are perfect for the hot and humid northern va summer.",5,1,1,General Petite,Intimate,Lounge +1094,23,Versatile,Versatile and comfy. can be worn with shirts underneath for multi-seasonal wear.,4,1,0,General,Dresses,Dresses +1028,47,Love the fit...the color runs! run washer 2nd time,"I love the relaxed flattering fit of these pants but the navy die runs..a lot. the first time i washed them t did so per instructions on the label. i did my next load of laundry and everything turned blue/ grey! i tried washing them again with vinegar to set the color and hopefully that will help. lots of color running still though, so to be safe wash and then run washer with nothing in it to clean it before doing more laundry. i'm keeping them because i like the pants, but wanted to let you kno",3,1,8,General,Bottoms,Jeans +1086,44,Comfy cute!,Love the material and how the back is longer than the front! adds style!,5,1,0,General,Dresses,Dresses +1086,54,,Great purchase. true to size. so flattering. love it simplicity.. buy it if you enjoy compliments!,5,1,2,General,Dresses,Dresses +674,53,Too cute!,"I agree with another reviewer who said to get these while you can. the fish print is adorable! and you can't beat the style and uniqueness for this price. i am 5'6"", 145 lbs with long legs and a thicker waist. normally wear size 8 in pants and purchased these in size small. i would definitely recommend sizing down. the mediums fit me ok but the small was more flattering overall while still being roomy and having lots of flow. can't wait to wear these!!",5,1,10,General Petite,Intimate,Lounge +674,49,Flattering & versatile,"Love this product; got them in the coral and they are comfortable, easy, flattering & versatile. +dressed up or down, they always look good, they hang beautifully, and their ease & comfort make them my go to staple in this southern heat!",5,1,1,General Petite,Intimate,Lounge +1094,24,So cute,"I admit i have a soft spot for a most anything from maeve. this dress is no exception. i had overlooked it online due to the white shirt they show with it online. but the material, design tex are great. the colors are very me and i can see this being a great fall, winter and early spring dress. the material is very soft ( i have sensitive skin) and i love the little pop of color that the front piece adds. the only draw back for me is the lack of pockets and it runs big. i got this on sale so siz",5,1,0,General,Dresses,Dresses +202,60,So comfortable,"Great style and cut, love the deep v. the fabric is soft and its very comfortable. it gives some support. i don't wear it with light blouses or shirts, unless i'm hanging around the house. i have this is pink and black.",5,1,0,Initmates,Intimate,Intimates +1111,38,Pretty dress but cheap fabric,"This dress fit me like a glove and it's very pretty on, but the fabric looks and feels very cheap in person. it didn't look like a dress i spent this much money on. the lining is a very silky thick polyester that doesn't seem like it would be comfortable in any sort of heat. the lace overlay has this strange fusing kind of material between the pattern that looks so cheap. i love the idea of this dress, but it just isn't worth the money (in my opinion) so i returned it.",3,0,4,General Petite,Dresses,Dresses +1086,47,Love!! want more colors!,This dress is perfection and i bought the blue one. please make this in black or other dark colors.,5,1,3,General,Dresses,Dresses +921,83,Gorgeous!,"This sweater is beautiful! +the lace is gorgeous and the sweater is soft and cozy.....rare to find a top that is stunning and comfortable at the same time! +the lace is very high quality, and enhances the sweater in a very sophisticated way.....adding that little something special. +the color keeps the overall look elegant and appropriate for any age. +runs true to size.",5,1,10,General,Tops,Sweaters +1086,63,Sheer lab coat,I purchased the sand color (beige/) one size up from my usual xs to allow for extra room around the hips. the dress fit a little large so the extra room wasn't necessary. the fabric was much thinner than i expected for the price point. the dress was sheer and on my lighter skin tone looked more like a lab coat than a dress. this may be stunning on someone a bit taller. at 5'4 it just hung on my frame and didn't do much for me. the pockets are a nice touch but overall the cut was unflattering and,3,0,15,General,Dresses,Dresses +829,50,Revealing,This blouse is so cute...casual but still stylish. the problem was that is is a little short for someone with a long torso and it is almost too revealing...the v is so plunging you would have to either pin it our wear a cami. the beads on the ties on the sleeves are also rather heavy and they swing and roll around on your arm...maybe wouldn't bother some but it was a return for me.,3,0,0,General,Tops,Blouses +1086,41,Love it!,"So comfortable! i wore it during my last airline travel day, and a complete stranger complimented me on it.",5,1,1,General,Dresses,Dresses +1086,26,So soft !,"I love this jess. i got it in the blue gray color, and i think it's going to be great for spring and will work into summer as well. cloth and stone is always one of my favorite brands and this dress is so soft. i'm thinking that i'm going to belt it to give it some more shape but i like how it looks unbelted as well",4,1,3,General,Dresses,Dresses +1086,47,Great summer dress or shirt,"This shirt dress will make a great piece for the summer to throw on. the length is perfect for either a dress or throw on some tights as a shirt. i bought the beige color one and it's a little see through. would def need to wear a slip on. + +i am 5'8 120 pounds and the xs fit perfectly.",5,1,4,General,Dresses,Dresses +1086,58,My birthday dress!,"I saw this dress in the retailer store and fell in love with it. tried it on, and even though i was wearing jeans and desert boots, the dress looked terrific! it's great, can obviously be dressed up or down, a wonderful addition to my wardrobe! thanks retailer!",5,1,0,General,Dresses,Dresses +1028,44,Love these pants but they run large!,"Since these are high waist pants, i think the size given is more for a lower waist measurement where most pants these days typically sit. i'm 5'10"", 150 lbs and ordered a size 31 but it was much too large. i love the style of these pants a lot. they look great if you have long legs, the size 31 ran about 5"" above my ankle, higher than is shown in the photos but it looks great.",4,1,3,General,Bottoms,Jeans +921,53,Unique,"This sweater is very comfortable and soft. unlike other reviewer, i did not find the lace to be itchy. i'm 5'4"", usually size 6; decided to order medium to give it a nice and relaxing feel. this way i find it to be not too short nor fitted. it's easy and relaxing but the lace makes it a little more dressy. not sure how it's going to handle the wash.",4,1,0,General,Tops,Sweaters +674,65,"Such a fun,casual and comfy item","I bought this in a medium at the store (usually a size 8 -10) and bought one for my daughter who was with me ,in the coral color. (she's 7 months pregnant , and bought her a small. it fits fine below the belly. she loves how comfy it is.) my other daughter saw them and i had to buy her a pair as well. :>) so, we were hanging out at the hotel on a girls weekend and wore them at the pool and even to sleep in. i think you can actually dress it up and wear it out and about as well. i did see that a",5,1,0,General Petite,Intimate,Lounge +674,42,Perfect for the beach or pool,"I ordered these in the pinkish color, and i love them! i'm 5'8"" 140 lbs. and the size small fits perfectly. they are definitely sheer, but they're advertised as a cover-up so that was expected. these will be super cute paired with a bathing suit top - bikini, bandeau, or even tankini. the price is great, especially for the type of pant and detailing with the pom poms. no pockets is the only negative.",5,1,9,General Petite,Intimate,Lounge +23,41,,"I get more compliments on the stress. it is perfect for work, perfect for summer night concert, perfect date night. love this dress!",5,1,0,General Petite,Dresses,Dresses +674,44,Adorable,Loved these beach pants! i purchased the size medium in the coral. i loved the accents on the ties and the little pom pom details. i did get many compliments on them. the only thing i don't love about them is the material is very thin. i know they are beach pants but i personally would have liked slightly more weight to them. i wore them once with a pair of cropped leggings underneath and i thought it was a very cute way to wear them with some additional substance underneath.,4,1,0,General Petite,Intimate,Lounge +878,57,Fabric is very thin,"This is more of a sleep shirt. the fabric is too thin and see through. a camisole would not look good under it. +will be returning it.",2,0,3,General Petite,Tops,Knits +1086,43,Easy to wear,"I tried this on in the store, but almost didn't because i thought it would look like a sack. the dress looks so good. it fits nicely in the shoulders which gives structure and then the rest of the dress is roomy, but no so much it looks stupid. im 5'5"" and it hit above my knees by an inch or two.",5,1,15,General,Dresses,Dresses +674,35,Super cute pants!,"These are adorable pants!!! i ordered them in both colors because i couldn't decide which was cuter. they are light and airy, but not see through. they will be perfect to use as a swim coverup, pajamas, dress them up, anything. very comfortable and versatile! i am a size 8 and ordered a medium and they fit perfect. the elastic doesn't pinch, but probably would have if i would have went with a small.",5,1,1,General Petite,Intimate,Lounge +1086,29,,"Super soft, light fabric. this dress is perfect for work or the weekends. this brand is new to me but i'll definitely be checking out their stuff more in the future.",5,1,0,General,Dresses,Dresses +829,52,"Cute, flattering top","It's navy and red--the photo looked black to me. so i couldn't use with black skirt that i had planned to pair it with, but it's cute with jeans and maybe white shorts next summer. the front gapes open when you sit down, so i'll either have to pin it or sew a snap there unless i want the world to see my bra. also a little short waited for me--i'm 5""11"", so i wish the wrap hit a little lower, but not enough that i didn't keep it. it is flattering blouse. the shoulder ties add a little extra flair",4,1,0,General,Tops,Blouses +1086,36,Disappointing fabric,"The fabric wrinkles so easily and any slight moisture or liquid immediately turns into a dark spot on the blue grey...condensation drips from a glass, gel deodorant, etc. i tried the cream but it's very sheer. i had to return this dress-- not practical!",1,0,3,General,Dresses,Dresses +829,25,Loved but... horrible quality,"I loved this shirt when it first arrived and i couldn't wait to wear it. after one day of wear, i went to hang the shirt back up and it was ripping on both sides of the middle back seem. this shirt was not tight on me at all. very disappointed.",2,0,0,General,Tops,Blouses +1086,62,Even cute belted!,"Love the soft fabric and easy fit of this dress. i'm pleased that it does give a hint of one's figure and doesn't just hang like a sack. i found the blue to be most flattering and was playing with styling at home and found that the wider retailer ""tabby"" leather belt gave it a whole new look.",5,1,0,General,Dresses,Dresses +674,44,Perfect for traveling,"So cute, great for over a swim suit or walking around town. got these on sale. xxs fit perfectly! fabric is very soft, pom poms add fun styling.",5,1,0,General Petite,Intimate,Lounge +1086,39,,"I went into the store to buy this in white after seeing it on the website. i ended up with the blue/gray color. the white was completely see thru. could have worked as a swim cover- but not at this price for me. the blue on the other hand is fine. the fabric is soft and hangs nicely. you can definitely dress it up with some booties and a belt, or keep it laid back with flip flops. i'm sure i'll wear this a bunch this summer. the color is versatile enough that i will pair with leggings and boots",5,1,2,General,Dresses,Dresses +1094,28,Cute design,The dress has some cute features. the little belt motif hits too high on me and the drop waist is a little awkward. but it is comfortable and looks best with some kind of shirt worn underneath,4,1,0,General,Dresses,Dresses +674,34,,"I looooove these. the styling makes me wonder if i could even wear them to work on casual fridays with the right top they are so great. i am a little concerned about how they will hold up over time since some of the stitching looks a little shoddy, but they are still worth it at this price. i am going to order another pair just in case they don't hold up, i love them that much.",5,1,1,General Petite,Intimate,Lounge +829,36,Cute,Cute top. not sure about the tassels at the sleeves. very flattering in the waist area.,4,1,0,General,Tops,Blouses +674,65,Light and breezie soft to touch,This product is the best if not the most excellent garment i have purchased in years i feel like a model even though i am full body lady what gorgeous piece of clothing,5,1,1,General Petite,Intimate,Lounge +1147,45,Disappointed,"I was so in love with these when i saw them online. they arrived today, and while the fit was great, i was disappointed. the colors are definitely more drab in person than what's pictured in the photo. the material is very thick. it's soft and they'd be warm in cold weather, i'm sure. i liked them, but they were underwhelming. if they were less expensive, i would probably keep them because i liked the fit and they'd be a quirky alternative to what i usually wear to work, but sadly, back they go.",3,0,1,General,Trend,Trend +674,58,Comfy,These are very comfy and can be worn casual or dressed up. love the pom poms.,5,1,0,General Petite,Intimate,Lounge +1077,37,Cute dress...akward fit,Cute dress...but akward fit. sleeves are a bit sung but the rest of the dress is a little large for its size.,3,0,0,General,Dresses,Dresses +674,49,Maybe....,"I'm still on the fence about these. i realize they got great reviews but i thought they would be a bit thicker. they just feel too flimsy and too much like i'm ready for bed. i was looking for more lounge pants that i felt like if i needed to run up to the store on a saturday afternoon that i wasn't wearing pjs. i just can't get past that. they are totally cute but i was definitely looking for more summer lounge-wear. + +i ordered the small which fit fine. i wear 4-6 in retailer pants. i got the p",3,1,1,General Petite,Intimate,Lounge +907,54,All wrong,I thought it would be heavier than it is. it's thin and more delicate than what i would expect for a winter sweater (it contains wool so not really suitable for spring/summer). it's also shorter than it appears on the model and a little wider/boxier too.,1,0,1,General,Tops,Fine gauge +674,41,So cute!,"These are *almost* perfect. the fabric feels great, and it's a super cute print. the only downside is that the rise is really long and high. i wish they'd stocked more petities, because the petites are all sold out, and only the super long regulars are left at this time. if you are above 5'7"", they'll be awesome on you. if you are below 5'4"", you may be getting them altered.",4,1,2,General Petite,Intimate,Lounge +1094,39,Love the dress but it doesn't love me!,"I'm a maeve fan and i really like the design, fabric and details of this dress. unfortunately, the skirt flares out too much and ends in an odd area on my legs. i'm not sure why the silhouette doesn't drape on me as it does on the model. it's like a cut-off a-line flare. have to agree that this dress runs large. i usually wear a m, ordered the s and it's still too big.",4,1,0,General,Dresses,Dresses +921,46,Ribbed lace hem pullover,"The front and back of this square sweater are the same, and the pattern of the stitching makes it look like it's on backwards.the lace would be nice, but it's itchy. and the sweater is cropped, so i think the layered lace look is odd because the whole thing is so short on the body. the 3/4 sleeves make it look small and fitted, but the body shape is bulky. just couldn't get it to work.",3,0,10,General,Tops,Sweaters +1028,32,Great in theory,"1. the wide leg/crop is a cool trend. but not great on me. i'm pretty standard in size/build: 5'6"", 135 lbs,, size 4. i felt like i just looked oddly shaped with them on. +2. and maybe this is the issue: the size 27 (my normal size in every citizen pant i own) was about 2 whole sizes too big for me. i mean, i felt great about myself. but...wowza. +3. when i took them to the store to try on/exchange, they don't even carry them in the store! so i just returned and will try something else.",3,0,2,General,Bottoms,Jeans +674,56,So cute!,"These are not only comfortable, but so cute. they are something you don't see on everyone else, and people always comment. i get so many compliments or inquiries every time i have them on. the materiel is lightweight and flowing. i love these casual, beautiful beach pants. i got a small, my usual size and they fit great. 5'3'"", 130 lb.s. i wear tee shirts, bathing tops, coobies, any kind of top looks swell. get them while you can. i got the peach and black color.",5,1,3,General Petite,Intimate,Lounge +878,39,Very thin,"The fabric is very thin. i have seen this comment on several sundry reviews, but its hard to imagine how thin the fabric is until you see it in person. i could put a cami under it - but it was also rather short on me. i don't usually have trouble with shirts running short and can even sometimes wear petite sizes since i am only 5'4"".",3,0,2,General Petite,Tops,Knits +1104,39,Did not love the fabric...,"I have a dress very like this from retailer's fall line. i love it, so i decided to try this one. the fabric is thinner than the other dress, which is good for spring, but it also seemed not such a great quality. i also didn't care for the texture. if this doesn't bother you, the pattern is very cute and the style is flattering. it is cute with a blazer.",3,0,5,General Petite,Dresses,Dresses +1086,35,Comfy cute.,I just got this dress in the beige color and i absolutely love it. the fit is perfect and i feel that it is just the right length. i got a small and i am 5'9''. the pockets are a great touch and really are the key for tunic style dresses for me. i love the soft material and could live in this dress. such a great staple for my closet!,5,1,2,General,Dresses,Dresses +69,34,Go to going out tank,I buy everything that retailer sells in chambray. this top did not disappoint. it is so comfortable and the back the way it is slightly lower than normal is very sexy without being revealing. the straps fall off of your shoulders a bit but i do not find it annoying. i am not big busted so i didn't have the sizing issue that others seemed to have.,5,1,0,Initmates,Intimate,Layering +820,34,Beautiful,This is a very flattering top and the details are spectacular. it is very comfortable to wear and the the appliquã©s and embroidery make this very slimming. as the other reviews noted the side slits go up quite high. i won't be raising my arms much wearing this. the small rhinestones in the center of the black flowers go around the entire sleeve and they catch on the rest of the shirt sometimes. i have to be aware of it and more careful not to make very fast movements until i'm sure i'm not tangl,5,1,0,General,Tops,Blouses +1049,35,Gorgeous,This was an impulse purchase for me. a year ago i would have never considered a jumpsuit but they are growing on me. i had yet to find one that fit without too much need for tailoring. this one did the trick! i like that the cut is in such a way that you can wear a normal bra underneath it without it showing. the fabric itself is very lightweight so i would recommend a bra for some support. i like that the fabric is incredibly lightweight so you can wear it on a hot summer day. the jumpsuit is l,5,1,11,General,Bottoms,Pants +673,38,Paper thin,"Great print, terrible quality. the material is paper thin. not at all what i look for in a robe. it's going back.",3,0,1,General Petite,Intimate,Lounge +1084,60,I was really disappointed,I was really hoping this dress would work because it looks adorable on the model. i ordered my usual size 0 but when i put it on the cross part in the front was way too high on my neck and was super uncomfortable. i also had a lot of room in the back of the dress so it wasn't as form fitting as i would have liked. i ended up returning this dress.,2,0,7,General,Dresses,Dresses +863,38,Love the ruffle detail,This is not your basic white tee. the ruffle and seam down the front add visual interest. cute alone or paired with a sweater and statement necklace.,5,1,0,General Petite,Tops,Knits +1078,35,,,5,1,0,General Petite,Dresses,Dresses +960,30,Beautiful vest!,I got this vest on sale in the navy color and love it! the quality of the fabric is great and the draped design of it is so chic! really adds a stylish touch to almost any outfit.,5,1,1,General,Jackets,Jackets +820,59,,"I was looking for a dressy shirt i could wear more than a few times. i have a reunion tomorrow that i wanted to wear this to. i went into a store and saw this, i immediately thought this was the perfect shirt. i saw the price tag, and decided not to get it. i looked several other places and i kept coming back to this shirt. i think if it wasn't displayed in the store, i wouldn't have wanted it so much. it is so much more beautiful in real life. the photo doesn't do it justice. i ended up orderin",4,1,0,General,Tops,Blouses +960,34,,"This vest is much silkier than the pictures online show, which was a great surprise. the cut of this vest is beautiful and it can be worn so many ways!",5,1,1,General,Jackets,Jackets +820,62,Gorgeous details!,"This shirt is amazing! the soft fabric, detailed embroidery, and gorgeous little beads/sequins..all fabulous quality and make this piece worth the price. i love the length and cut of this too - not boxy, yet not too tight or fitted; just covers my bum. can be dressed up or down.",5,1,0,General,Tops,Blouses +960,25,"The best ""instant upgrade"" vest",This vest is awesome. it can take any dress/outfit and instantly make it more fancy and formal. the way it drapes is very forgiving and the back bow can be modified and switched out for different colors depending on outfit color. .,5,1,1,General,Jackets,Jackets +820,46,Bravo!,"I hope you can get this top.this is a great classic,that will be in my closet for a long time.",5,1,0,General,Tops,Blouses +820,63,Unique top,"This top is beautifully detailed , it is flattering and i am very happy with my purchase!",5,1,0,General,Tops,Blouses +945,34,"Classic, modern, aesthetically-pleasing piece","I picked this up at my nearest retailer this afternoon after placing my order a few days ago. i purchased the off-white version in size small. i actually tried this on in the dressing room to make sure i was satisfied with the product. when i came out, i asked the retailer customer service rep if she could cut the tag off so that i could wear it out today. she not only helped me out but also commented on how much she liked this sweater while also wondering why she hasn't seen it in store; i informed",5,1,1,General Petite,Tops,Sweaters +1049,50,Perfect jumpsuit,I found this jumpsuit at my local retailer it must have been a web order return i love it the fit is true size the colors are perfect it's very comfortable and gorgeous on and at the sale price i could not pass it up,5,1,0,General,Bottoms,Pants +1078,44,Beautiful dress,This dress is really stunning - can be dressed up or down with a jean jacket really easily. runs quite a bit small in the bust (i ordered a 16 to accommodate) but it is really very pretty. i love this brand- they always have such lovely pieces.,4,1,3,General Petite,Dresses,Dresses +863,40,Beautiful color and style,"I'm a big fan of left of center as a brand, and this top is definitely a winner! the deep green is gorgeous and looks fantastic with denim. the shirt is true to size and is flatteringly loose without looking too tent-like. highly recommend!",5,1,0,General Petite,Tops,Knits +1078,30,Beautiful! careful with the sizing though,"This dress is gorgeous! i absolutely love the embroidery. a note about the sizing- while the top portion fits snugly, the hip section runs slightly big. i was surprised to find that the 4 i ordered looked baggy, so i went into the store to try a 2, but the 0 was the best fit! however i'm small-chested (and 5'6"" 113lbs), so i was able to go with the 0 as it fit the hips much better. if you're a bustier type though, the top may be tight. other than the tricky sizing, it's perfect.",5,1,0,General Petite,Dresses,Dresses +1085,50,Runs very small,"Purchased this dress to wear to new orleans in may...perfect with sandals for casual and dinner. so sad that it was not as i had hoped. the fabric is a bit heavy, and the sleeves are very tight (i have thin arms). the color is a bit ""off,"" as the background color is a gray, which doesn't flatter the yellow design. i purchased the large, as this size usually fits me with a bit of flow, but it was very tight all around, especially around the bust area. going to have to return this...",3,0,2,General,Dresses,Dresses +960,25,Elegant modern,"I bought this vest to add more versatility to my wardrobe. i love it! i got it in navy, and since it is one color, it goes with a lot of different things - tanks, long sleeves, short sleeves, pants/skirts, etc. i like the bow in the back and the vest makes a plain outfit look much more elegant and exciting! the vest itself is a little longer than i would have liked.",4,1,1,General,Jackets,Jackets +42,23,Lovely,"Makes me feel like a sexy ice skater. true to size, i am 5'0 and 120 lb and both the small and medium fit. i kept the medium. love it!",5,1,1,Initmates,Intimate,Intimates +820,55,,"This top is so beautiful! looks even better in person. i was hesitant because of the price, but i am so happy i bit the bullet and ordered. i am a 36c and the bust is slightly snug.",5,1,0,General,Tops,Blouses +820,36,,"I love the design of this blouse. lots of pretty details. the slits on the side are high, but with a tank underneath, it's perfect. love the length of the sleeves and the modest, flattering neckline. the only problems so far are that the rhinestones are prone to falling out and snagging other parts of the top, so you have to be careful with movements and you can't wear a sweater with it because the rhinestones would snag it a lot. even if it loses the rhinestones, it's still a beautiful blouse,",4,1,2,General,Tops,Blouses +1078,57,Just enough bling!,Bought this dress for an indian wedding- it was perfect!,5,1,0,General Petite,Dresses,Dresses +820,41,Absolutely gorgeous top,"This top is beauitiful. gorgeous detailing with the eyelet lace, black flower appliquã©s, silver beads and tiny rose gold sequins down the front. true to size. i'm 5'2"", 130 lbs, 34b and took my usual size 4. the slits do come up a bit far on the sides like another reviewer noted but not really enough to be a problem. i didn't find it necessary to get the petite size in this top. i was going to wait until further markdown since the top is still pricey even with a 20% discount but couldn't resist",5,1,0,General,Tops,Blouses +820,38,Retailer from the days of yore and yesteryear,"Like other reviewers, when i saw this top in person i was struck by it. i would never have even looked twice at it online. i hardly ever buy things at full price from retailer but i treated myself to this one. the only thing i'd disagree with is that it runs true to size. at my store, there was only 1 left (in a size 10). i'm usually a 4/6 but i figured i'd try it on since the style is loose anyway. and the 10 fit very nicely. i did try a 6 in another store and found the slits came too high and th",5,1,1,General,Tops,Blouses +820,25,Gorgeous detail,"The top is just as shown in the picture and it is tts. lots of detailing with beads and lace. i'm 5'1, 92lbs and purchased a petite 00. just as the other reviewers noted, the side slits do come high. high waisted jeans or leggings works perfectly.",5,1,0,General,Tops,Blouses +820,46,,"Absolutely gorgeous top! i have purchased so many retailer tops and this is the 1st review i have ever written. this top is just that deserving for a review. stunning in so many ways. i am 5' 2"", 118 lbs and purchased a size 4. fits perfectly. maybe runs a tad small. can not wait to wear!",5,1,1,General,Tops,Blouses +1078,83,A perfect 10 !,"I have looked at this dress a dozen times online and passed. after reading other reviews felt compelled to see why everyone is in love with this dress. when i opened the box i was blown away. this dress is so beautiful and the crystals, which look like sequence online are high quality, as is the fabric and craftsmanship. +a perfect 10!!!!!!!!!!!! +you must have this dress in your closet!!!!!!! +ordered my usual size and fits perfect.",5,1,0,General Petite,Dresses,Dresses +945,74,Tunic,I loved the look of this tunic. it is made well and very pretty. it was so big and heavy i had to return it. i think the small in this would be too big.,3,1,0,General Petite,Tops,Sweaters +945,28,Georgeous sweater,This sweater is very pretty. i had my concerns being that i don't normally pay $300.00 for a sweater but i found the material to be extremely high quality and the details really make it a beautiful piece. i literally got a little tired of people telling me all day how pretty it was. this is definitely a piece of clothing i will cherish for years to come.,5,1,0,General Petite,Tops,Sweaters +960,30,Love it!,"I saw this vest the week it came in the store. i was hesitant, thinking, ""what do i have to go with this?"" i left the store and had to go back and purchase it. i'm so happy i did! it really does go well simple tops (dressy or casual). it is also perfect for the ""winter white"" trend happening this year!",5,1,1,General,Jackets,Jackets +995,24,Simple little wow piece,This skirt is amazing! it has the right amount of sparkle and the right amount of shape. i bought this in a size six which i can really switch between 6 and 8 depending but the six fits perfectly. i also bought the regular length even though i could probably be considered petite but it ended up being perfect. but the skirt is so lovely in person and has just enough wow that you can wear this thing with a simple tee and still look amazing. i wore this to a party with a black high neck tank and re,5,1,0,General,Bottoms,Skirts +1084,39,Interesting,"This dress is unusual. it can be dressed up with wedges and dressed down with cool sneakers. if you have any under arm excess fat it will show...but you can hide it with a cropped cardigan. i am 5' 1"", 105 pounds, lean athletic frame with a 32b bust and it fit well and snug.i bought an xxs. i am relatively lean under the under arm but this dress does show any flaw in this area and it does not look good. minus point. super cute and made well. i wear it with a cardigan.",4,1,4,General,Dresses,Dresses +1084,46,Needs pockets! runs large,"Even though this is an online exclusive, i was able to try on a one off in the store. i have been looking for a cross front dress and the other option currently at retailer (the black and white striped top version) in a similar length) looked awkward. this dress looks great on but i needed the xs. i usually wear a 2. it was cute and i came online to see if the xs was available but it is sold out. the dress would be perfect if it had pockets!",4,1,1,General,Dresses,Dresses +825,44,Great design but execution is meh.....,"I loved the look of this shirt but full price was a little steep so i waited for it to go on sale and am glad i waited because only a l was left and it was perfect fit since i originally was thinkng of getting a small or medium which i usually do at retailer but this one was running really small compared to retailer other shirts. the fabric is great but when i looked at it carefully, the zipper construction is sewn poorly as well as the sewing at the buttons area...also, there were a lot of thread h",3,0,0,General Petite,Tops,Blouses +1078,35,Buy this dress,"Pictures do not do justice to this beautiful piece of art. the embroidery and jewel detail is exquisite. just don't plan on holding any kids or pets, you won't want to snag it or them.",5,1,2,General,Dresses,Dresses +820,44,Wearing this to my reunion!,"I had been to the retailer store several times in hopes in finding the perfect top for my upcoming reunion. as soon as i saw this, i knew it was perfect for the occasion. i'm sure i'll get a lot of use out of this top as you can dress it up or down.",5,1,0,General,Tops,Blouses +1078,38,Beautiful dress!,The details and colors are exquisite. stop hesitating and get this dress,5,1,0,General,Dresses,Dresses +820,36,Gorgeous top despite some flaws,"I saw this top online, but i didn't fall in love with it until i tried it on in the store. the retailer salesperson told me that she owned this top and that she always received many compliments when wearing it, but she also warned me that the rhinestones on the sleeves were a problem as they kept getting snagged in the fabric on the body. i decided to purchase the top in the end because it is so beautiful and one of a kind, but i ended up removing all of the rhinestones on the sleeves and i haven'",5,1,1,General,Tops,Blouses +810,38,Perfect pant,"Comfortable, flattering, one step up in formality from jammies, what more could you want?",5,1,2,Initmates,Intimate,Lounge +820,69,Beautiful design,"My daughter tried on this shirt in new york & loved it so i ordered it for her for christmas1 i am thrilled, & she will be thrilled! love my purchase!",5,1,0,General,Tops,Blouses +820,37,Beautiful top,Very intricate detail with stitching. love the contrast of black on cream. has slits on each side. bought it for holiday parties! just what i had hoped it would be.,5,1,0,General,Tops,Blouses +960,29,Haven't worn yet but ...,"Just, you know, in front of my mirror and around the house. i bought this piece because i found it to be a bit funky - so you can wear it with jeans for a night out - yet with classic elements so it could be worn to work with a skirt. also, i live in florida, where it is hot hot hot, but i still like to layer my look. it has an excellent weight to it without being to heavy, so it flows well and can be worn even on the warm days instead of a suit jacket. + +i am usually between a small and mediu",4,1,1,General,Jackets,Jackets +820,34,A true beauty,"Such a gorgeous top, the detail and fit are amazing. however, after wearing the top for about 8 hours, 7 of the center rinestones fell off. the beads on the sleeves also snagged the embroidery where the sleeve touches the body. but, i love the top so much, i exchanged it for another and hoping i have better luck with quality this time around.",5,1,1,General,Tops,Blouses +1078,22,,"Absolutely adore this dress and plan onwearing it to a wedding. it is so well made and luxurious, i feel amazing in it! even more gorgeous in person",5,1,2,General,Dresses,Dresses +1049,38,,"Beautiful piece that i loved from the day i received it in the mail. lots of compliments, just a fun, pretty outfit.",5,1,0,General,Bottoms,Pants +820,49,In love!,"The details on this top are absolutely gorgeous, from the lace, to the sequins, to the rhinestones! that said, the details are not overpowering, yet more subtle. can't wait to wear this over the holiday season. sure to get tons of compliments!!",5,1,0,General,Tops,Blouses +1049,40,Amazing and surprisingly tts,"I think of tracy reese as running small, and usually size up, but the 8 was the only size left so i grabbed it and it fits perfectly. i got a million compliments on it and got rid of my other jumpsuits because this one is perfection. please note that if you are busty it will show cleavage, so you need the right bra.",5,1,0,General,Bottoms,Pants +863,67,Super cute and comfy,"I love this t-shirt - the moss green color is just what i wanted, cute fit and true to size. purchased the medium b/c i like t-shirts to be a little loose.",5,1,0,General Petite,Tops,Knits +1085,56,Impressive dress,"I was quite surprised to find the background color of this dress was grey,not the stone/linen that i was expecting. it still works beautifully against the citrus. fits true to size; the 3/4 sleeves are slightly narrow around the forearm but not tight. i'm 5'4, fairly slim, 132 and i'm in the process of exchanging the petite m for a regular medium as it was just a bit too short for me. i'm very short waisted/long legs, so the straight design is perfect for eliminating the issue. i also found no p",5,1,6,General,Dresses,Dresses +820,26,Gorgeous detail,This shirt is gorgeous. i bought it for my engagement party and got lots of compliments. the only thing negative was that the particular shirt i bought had one of the stones on the sleeve that the prongs were bent so it snagged the beautiful embroidery on the front of the shirt.. of course my local retailer exchanged it for a perfect new one without hassle. it's an expensive shirt but perfect for a special occasion.,5,1,0,General,Tops,Blouses +820,43,Exquisite top!,"Saw this in the store, looked at the price tag and decided to wait for a sale. got it this weekend with the 20% off and love it! (thanks retailer) wore it for my birthday dinner and received a ton of compliments. as someone else noted, it does catch on itself so take care when wearing. also, the slits on the side are semi-high but as my husband noted, this makes it a touch sexy instead of just a tunic. i went with an 8 for this reason(you could also wear a tank underneath). and yes, even on sale,",5,1,1,General,Tops,Blouses +42,25,Love this!,I was so excited to receive this in the mail. it fits true to size and is extremely flattering. so glad that i made this purchase,5,1,1,Initmates,Intimate,Intimates +960,56,Instant style,"I love the weight and drape of this vest; it adds a finished touch to even the simplest t shirts. i plan on wearing it into the cooler months of fall. however, it runs a week bit small across the bust. i normally wear a medium at retailer but large would have been a better fit. sadly the large vest in the dark blue was sold out.",4,1,0,General,Jackets,Jackets +903,68,Light for the south,"Weather changes during a day to extremes in nela. lightweight cardigan for when little is needed that's pretty and practical, if you take a close look at photo you will see the weave is open, so could snag. nothing hidden. it is what it is-pretty, lacy, feminine.",5,1,3,General Petite,Tops,Fine gauge +903,56,"Unique cut and print, whisper soft","I give this sweater a five star review. i am always thrilled to be able to add a cardigan or caccoon sweater that is a color that is different than black or white.this pairs beautifully with so many of the shells and sleeveless shirts that i have from retailer.yes this sweater is extremely delicate, it didn't pull at all while i was trying it on. this will be a great transition sweater.",5,1,1,General Petite,Tops,Fine gauge +820,46,Retailer amazing,"I received this top by mail yesterday and opened it this morning. all i can say is wow. it's gorgeous. the detailing is stunning, classic retailer amazing. a true standout piece. can't wait to wear.",5,1,0,General,Tops,Blouses +903,55,Think accessory,"I ordered size medium. the fit is true to size. the color and pattern work beautifully with the delicate yarns and design of this sweater. as other reviewers have stated, it is very thin and lightweight. in my opinion, it serves more as an accessory rather than it being functional as a cardigan worn for warmth. when i tried it on, i considered whether it would provide any warmth at all...summertime air conditioning, etc. the answer is no... if i decide to keep it, it will be for its aesthetic...",4,1,2,General Petite,Tops,Fine gauge +863,35,"Strange sizing, but fabulous color","The fit is a bit loose in the body (more than you can tell on the model) - more like a true swing style top. i feel the arms are a good fit, but i ordered one size up from my normal since i'm planning to wear this as a maternity top. arms are definitely a size smaller than the body. the ruffles at the bottom are a bit odd, but overall i still like it. the cutout notch at the collar is super cute! plus, the green color of this top is lovely and i love that it's made in the usa so i'll be keeping",3,1,2,General Petite,Tops,Knits +1078,39,Quality issues,"This is a truly beautiful dress, and yes, so much better in person. upon examining the dress, however, i saw some problems. the embroidery above the waistline was loose in places, there were some frayed ends, and even some 'fuzzy' spots where it looked like the stitching had rubbed against something. the dress is over $250, and for that price i expect the embroidery to be top-notch. returning and hope the replacement is in better shape. if so, it will be a keeper!",3,1,0,General,Dresses,Dresses +945,38,Definitely a star!,A must have sweater with great details. it can be a star piece with leather tights or very long flare jeans. i recommend platform booties for perfect body proportion.,5,1,0,General Petite,Tops,Sweaters +863,62,Cute fall casual top,This top fits a bit trimmer than the summer version of this top did. the lavender color is muted and a nice fall transition color.,4,1,0,General Petite,Tops,Knits +820,66,Veille peasant top,"I was able to get this on sale. when it arrived, it was missing half of the rhinestones. i am very surprised that this top would be sent out this way. it also was missing the little bag with extra stones. i'm reaching out and wondering if anyone else has experienced this and is there a store that sells rhinestones like the one on the blouse? any help from anyone would be appreciated. i hate to part with this, but where was quality control?",1,0,0,General,Tops,Blouses +820,55,Beautiful!,I love this blouse! the details are beautiful and and it is so versatile! i can where it with jeans and boots or slim black pants and strappy sandals and get tons of compliments every time. one of my favorite retailer purchases ever!,5,1,0,General,Tops,Blouses +863,32,Like a tent,"I ordered my usually size, xs, and it's just so wide and unflattering. looks like i'm wearing a tent. i don't understand why tops anymore are either huge or skin tight. why not something in between?! the pink color is really pretty and the details are nice but it's just blah in terms of the fit.",3,0,0,General Petite,Tops,Knits +42,27,,,5,1,0,Initmates,Intimate,Intimates +1052,43,Not for me,"High quality, yummy soft fabric, gorgeous color. even with those three pros, this jumpsuit is not for me. i am 5'2"" and 150 lbs, size 10-12 m/l in the lines that retailer carries. i own one of their jumpers and it is very flattering! this one, however has capri pants, hits awkwardly at the midsection and makes my torso look even more square. on a tall, thin woman, it probably works!",3,0,0,General Petite,Bottoms,Pants +1052,42,Boxy,Great color and quality but very boxy. even with the drawstring there is no shape going on here.,3,0,0,General Petite,Bottoms,Pants +1078,39,Slipped on the slip,"I love designs that are flowy/drapey in the front, so this hits the mark when tied in the back. has lots of visual interest. but i agree with the other reviewers.. the slip is super small. dress fits true to size, if not a bit large but the slip is one full size smaller. and you must wear a slip. overall, i'm pleased with the look.",4,1,4,General,Dresses,Dresses +182,20,Motif over-the-knee socks,"This product is awesome! i'm a tall lady with wide calves and thighs and these socks look and feel fantastic on me; they are tight enough that they don't wind up sliding down around my ankles, but not so snug that they make my legs look like sausages. i would recommend this product to all of my girlfriends.",5,1,6,Initmates,Intimate,Legwear +1078,33,Interesting,"This dress did end up working out for me. however i am very narrow in my chest and shoulders and i can see how it would be too tight on anyone with a med-lrg chest and/or broad shoulders. the fabric is light weight, nice for summer. it will need to be ironed and will wrinkle easily but it still looks well made to me. the slip is smaller than the dress but i feel that the dress is supposed to be ""drapey"". i kept it.",4,0,3,General,Dresses,Dresses +1052,35,Jumpsuit fever,"I'm liking this jumpsuit, it's not love but it's definitely a like. i typically avoid the elevenses brand since it never seems to fit right but i gave this a try. i usually take a l in other retailer brands but sized up to xl in this and it was a good choice. first off, the material is awesome, super soft and drapey. but i agree with another reviewer who mentioned the zipper being short and it being tough to get into. i found that to be right on, makes it a little hard to get your arms through the",4,1,2,General Petite,Bottoms,Pants +1052,29,Staple!,"I was considering this online for days before a ladies lunch date meandered into a brick & mortar location. i had been thinking of sizing up, if i ordered online, just to be sure it wouldn't be too tight or awkward, and when i had looked for it in stores nearby, it was out of stock, but i hadn't thought to look for my tts, which happened to be available in the store where i went. i tried it on, because i was so curious, and it worked!! i love it. it is so easy-breezy. it will be perfect to layer",5,1,0,General Petite,Bottoms,Pants +975,57,Adorable,"This jacket is totally adorable. i wore it with a man tailored shirt with the color up and the sleeves poking out. +it has a great swing to it and is very comfortable! it is sized perfectly. and i got it on sale!!!",5,1,0,General Petite,Jackets,Jackets +909,47,,"I just purchased this cardigan, it is better in person than the picture. the fit is fabulous, it is very versatile. it can be worn with many different options, definitively be wearing often.",5,1,1,General,Tops,Fine gauge +909,44,Lovely sweater,"Great sweater. looks and fits as shown. if you're between sizes, size down as the shoulders are relatively broad.",5,1,2,General,Tops,Fine gauge +949,53,Odd fit,"I love the idea of this top. i had reservations when i ordered it d/t the large armholes but i envisioned wearing my cute cropped pilcro jean jacket with it. it turned out to be a disappointment. the armholes are gigantic and the sweater itself did not fit as on the model. the front was much shorter and wider and basically stuck out from my body. for reference, i ordered the xxsp. sizing up might have lengthened the front but would have exacerbated the armhole problem.",3,0,0,General,Tops,Sweaters +976,43,Disappointed with the fit,"This is a beautiful lined jacket, with a much more structured fit than a typical kimono. it hit me at the high hip, not low hip as shown on the model. given how structured it is, i don't think the ""one size"" will work for anyone larger than a small if you want a drapey kimono fit.",3,1,9,General Petite,Jackets,Jackets +990,49,Lovely skirt,This skirt is stunning. the red is so vibrant. this will be a staple in my wardrobe for years to come. it can be dressed up or down. love it!,5,1,0,General,Bottoms,Skirts +1078,72,,"This dress is perfect for my florida lifestyle because of the fabric and the design. it is not the color pictured on the web page which was a disappointment. the color is a lot duller. i tried it on in the store and found it to be tight across the chest, another lady who also tried it had the same problem. i went home and ordered a larger size. that dress was baggy and not as cute in the back. i realized because of the under slip it could be left open to the waist and work just fine. i ended up",4,1,1,General,Dresses,Dresses +949,55,Versatile; size down,"Much nicer in person -- the chunky knit reads more gray with black accents than ""blue"" as described here. there are lovely flecks of rust, blue, goldenrod, green throughout. super soft, stretchy; it's fine sizing down...otherwise the arm holes dip down very low. i'm usually a size 4/small and xs was best for me (33"" bust, long torso, broad shoulders). i can see wearing another layer underneath when cold weather sets in.",5,1,0,General,Tops,Sweaters +975,31,,"I'm sad i was unable to get an xs, as the small is somewhat big on my 125-lb 5'6 frame. i'm keeping it for the sale price though! when i put it on in the store i got so many compliments from other customers who went to find it! i think it is meant to run large, and honestly i still think even with it looking big it still looked better in person than the model. i would recommend ordering it if you can and don't mind pieces that drape like this!",4,1,0,General Petite,Jackets,Jackets +1052,34,Great jumpsuit,"I bought this in the olive green and blue a while ago, both in the small. great jumpsuit and true to size. i accidentally washed the blue one in the washing machine (in cold) but caught it before the dryer. it still fits, although it seems a bit shorter in the legs.",5,1,0,General Petite,Bottoms,Pants +467,54,Great bikini top if you cna find the right fit,"I ordered this top in a size 'm' as i heard mara hoffman runs small. the size chart on her site would have me order a size 's' as i have a 33"" bust (33-25-~37). however, my bra size is a 30d or 32c and the size m is what fit. therefore a m might also fit a 34b and a 36a as the back is adjustable. it even stays up without the halter which is highly unusual for me. + +the only negative that really disappointed me is that the patterns are not quite symmetrical as i expect from this brand and from t",5,1,0,Initmates,Intimate,Swim +976,52,Great for smaller women,"This is a well-made kimono style jacket, in a great color choice that is versatile and well constructed. being short and with narrow shoulders, most kimono-style jackets don't work on me; they are simply too big & too long. this jacket's shorter length and more streamlined styling make it perfect for me. a keeper, and a real steal on sale.",4,1,0,General Petite,Jackets,Jackets +844,26,"Beautiful top, but very thin","This top has a beautiful pattern, and the color is gorgeous - just like the photo. it is very thin, but under a sweater or blazer in the fall/winter would be perfect. it is a little big! i would order a size down.",4,1,0,General,Tops,Blouses +905,47,,"This is adorable and unique. i've tried shawls and ponchos before, they usually swallow me up, this sweater has that type of feel but isn't so much fabric. goes with everything.",5,1,1,General,Tops,Fine gauge +326,25,Flattering and attractive!!!!,"Love these shorts! not too tight and not too short! they match so many tops! tts for my hard to fit figure! great for weekends, vacations, and just to be adorable in!",5,1,3,General,Bottoms,Shorts +905,29,Delicate and adorable,"This is such a great top - it can be easily dressed up or down. i love my tops flowy, and this is just that! i have a larger chest (34d) and the flowy nature of it keeps it from being too short up front. even though it has eyelits in it, it can be worn without a cami underneath as long as you wear a good nude bra. it'll be a great sweater for all seasons. i'm even able to wear it to work. highly highly recommend.",5,1,1,General,Tops,Fine gauge +905,52,Unique and pretty,"I wore this sweater last weekend and received so many compliments. not only is this a very pretty style, the poncho is comfortable. i really glad i purchased.",5,1,2,General,Tops,Fine gauge +326,39,"Notfor ""squat"" thighs","I love these shorts, very pretty and well made, but if you have any kind of muscle in your thighs, beware, not as flattering as on the model a9dn probably previous reviewer). shorts hit at hte widest part of my leg, creating a weird tent effect around the area. waist was true to sizw and i can only imagine how beautiful they would be on ""skinny"" legs.",3,1,6,General,Bottoms,Shorts +905,36,Pretty,"I thought this sweater was pretty and soft and would be comfortable to wear. i really liked the high collar and the interesting poncho-like design. but the sleeves were a bit short on me. and i thought it was a little pricy. i decided against it for those reasons. but if you don't mind those things, then you might like it. it's definitely worth the try.",4,1,1,General,Tops,Fine gauge +905,55,So cute but not for petite customers,"This is the cutest poncho style sweater (but the arms aren't attached like a true poncho. it doesn't work for a petite customer, unfortunately, but on average sized it's gorgeous. so pretty.",5,1,9,General,Tops,Fine gauge +1079,38,Poor patterning yet super fit,"The navy blue lines on my dress on the very top of the interior layer can be seen through the upper layer at the very top and it looks cheap. for this price, i would expect more thoughtful patterning. the fit is amazing, so i am debating whether i should keep or return.",3,0,4,General,Dresses,Dresses +748,45,,"Adorable! great for yoga or everyday use. can even fit a strapless bra under with no showing(i purchased the black). i'm 5'4"", usually a 6-8 and it fit great.",5,1,1,Initmates,Intimate,Intimates +905,48,A cutie,I absolutely love this sweater. it will take me into spring and right on in to summer beach bonfire nights. a great staple!,5,1,5,General,Tops,Fine gauge +980,26,Lovely piece,"The look, quality, and feel of this jacket is perfect. it does run a large so i would order a size down. i definitely worth every penny.",5,1,3,General,Jackets,Jackets +1095,49,Confusing design,"This dress has a unique watercolor-like pattern and design and is silk, but as another reviewer mentioned it is unlined so you probably would want to add your own slip. the side slits come up high, almost to the hip. i am 5'1"" and bought the petite xs and it comes all the way down to my toes if i don't wear a belt. if i belt it, the length is more like one would expect from a maxi dress. i am a little puzzled as to where i would wear this because the length and fancy sleeves make it seem more fo",3,1,0,General Petite,Dresses,Dresses +918,21,,"Loved this top, but had to return it. the collar is gorgeous but terrible quality",3,0,0,General,Tops,Fine gauge +905,24,Beautiful sweater!,"Beautiful, detailed sweater. when i tried it on, i felt it made me look a tad bit boxy, but once i pushed the sleeves up about six inches, i loved the way it looked! i'm wearing it tomorrow and know i will get lots of compliments!",5,1,1,General,Tops,Fine gauge +905,34,Beautiful design and feel but...,"- this really is lovely. the overall design from the arms, front, and back makes this poncho unique. it's not too thick, either, making it a nice everyday sort of thing. however, it just didn't work for me. even though i'm 5'9"", ponchos have a tendency to",4,1,9,General,Tops,Fine gauge +871,34,Unique and comfortable!,"I was able to grab two of these in grey and navy during one of their awesome sales. it doesn't look like much on the hanger, but it's lovely on the body. +____________ +pros: +- lots of stretch. +- comfortable and roomy without looking frumpy. +- lovely color and texture. +- can size up or down depending on how you want it to look. +- minimizes bust size nicely. +____________ +cons: +- if you have curves like me, it won't be as roomy as the model, unless you size up. i actually bought a size down and it b",5,1,0,General Petite,Tops,Knits +872,33,"Easy to wear, casual-elegant","I ordered this in xs and it fits loosely (i am 5'3"" and about 120 lbs). this looks great with skinny jeans or leggings and shows off the long necklaces that are in style right now. the chiffon doesn't lie perfectly along the side seam, but i'm sure only i notice.",4,1,0,General,Tops,Knits +905,46,Super cute!,"This is such a cute sweater! i wouldn't really call it a poncho since it has standard sweater sleeves. it has a wide circle hem which is very flattering. i would have loved this even more if it were available in other colors besides white.... red, black, or navy would have been perfect!",5,1,0,General,Tops,Fine gauge +905,40,Gorgeous and approachable,"This sweater has instantly become a favorite. it is incredibly soft, the detailing is delicate and feminine, and the fit is cozy and flattering. the body has a definitive swing cut while the arms are slim - though not tight. i find the loose body, slim arm combination to be very flattering and forgiving. run out and buy this now if you love anywhere where it gets cold, foggy or dark -- it's a guaranteed go-to!",5,1,0,General,Tops,Fine gauge +326,47,Phenomenal find!,I happened upon a pair of these shorts that someone had returned. they are the perfect length. they are very well made. i have worn them to my son's baseball game and the sec tournament. they are tailored and have an interesting design. they make me look as though i have lost ten pounds. i am thrilled with them.,5,1,2,General,Bottoms,Shorts +952,46,Beautiful piece!,This is so beautiful and looks hand made but in a really good professional way. this will be a perfect fall wardrobe addition and i can't wait to wear it with a long sleeve top and jeans and boots. it's not too long and it is very flattering and soft and drapes well. love it.,5,1,2,General Petite,Tops,Sweaters +952,45,Timeless,"Beautiful and flattering, i am a 6 across the board but felt the small was too small. ordering a medium cause i need this beauty for fall.",5,1,2,General Petite,Tops,Sweaters +878,32,Overpriced but couldn't pass up,"Living in florida, i thought the design of this sweatshirt was to die for. i was so pleased with the quality when i received the top; however i was nervous to see that it recommended washing before wearing due to the dying process. i washed cold gentle cycle and tumble dried low. turned out perfect and did not shrink! it's adorable. plan to wear it with white denim shorts. i ordered a size 1 and i normally wear a size small.",5,1,5,General Petite,Tops,Knits +967,33,Fantastic fabric,"Love this piece. can be worn casual or fancy. runs slightly big, but that seems to be the style. size down if you are in between sizes. the color is unique and organic. really comfortable and fun fabric.",5,1,0,General,Jackets,Jackets +1077,24,Comfortable and classy,"Hack: wrap the sash around waist twice and tie in back!! agreed with other reviewers it is a bit sack like when the sash tied in front as seen on model. but wrap twice, and it makes the silhouette pop. fabric is rediculously lush, and pattern is very sophisticated. stunning dress, will be wearing all summer -- with flats for work, with heels for evening. oop, my usual size, fits perfectly (5'4, 110 lbs).",4,1,4,General,Dresses,Dresses +850,29,Beautiful blouse- does run large,Saw this in the store yesterday and had my daughter try it on. it was really cute on her and she loved it. in fairness to the other reviewers she tried on a size 0 which was perfect for her petite frame and i can see how this blouse would run really big in the larger sizes. but the fabric and detail is so pretty and it was on sale.,5,1,0,General,Tops,Blouses +1077,62,Sizing issues,"This immediately caught my eye in the neutral pattern, and the fabric is actually quite nice. the fit is at least a size or two too large though, with the bust being way too large for me even sizing down. my normal 4 was big everywhere, and the 2 was still big in the chest, but fit everywhere else. the belt is handy for cinching in some of the loose areas, but the top section just didn't work for me. maybe better for someone better endowed?",3,0,0,General,Dresses,Dresses +1077,44,Not flattering unless you are tall and willowy,"I was on the fence about this dress because even on the model, it's a little bit frumpy, but it was so pretty that i tried it. however, on my short frame, it's even frumpier. the quality is very good, the fabric is soft and it's lined. the pattern is really pretty and delicate and i wish it was more flattering. i think the only way this dress will look good is if you are quite tall and thin. i am 5'4"", 110 lbs with large-ish hips and i ordered a 2p, but even the petite was too saggy. i needed a",3,0,2,General,Dresses,Dresses +878,57,Snap this up! you won't be sorry.,"Love this! only wish it wasn't so seasonal so i could wear it more often. this is the softest shirt in my wardrobe. can't believe how nice it feels on. a little bit slouchy and over-sized. i usually wear a m and bought a m and it feels perfect. like the other reviewer, i was a bit worried about shrinkage but washed it in cold and hung it up and and it cam out fine. did wash first before i wore because the dye smelled a bit strong.",5,1,0,General Petite,Tops,Knits +850,40,,I had hoped this blouse would be white - but it is cream in color. it was also more boxy than i thought it would be. i am usually a 4 or a 6 and went with the 6. a size 4 would be a better fit.,2,0,18,General,Tops,Blouses +1077,32,,"This dress is easy and attractive. it's very soft and just slips on, but looks very put together. on my shorter frame, it's a bit long, more midi length, but it's so comfortable and pretty, that i'm fine with it; it looks a little bit 20's that way. recommended.",4,1,20,General,Dresses,Dresses +1077,58,"Nice, classy, comfortable dress","I tried the b&w one in the store. liked the look and feel of it. fabric is soft and comfortable. for reference, i'm 5'4"" and 115 lbs. this dress runs large. size 0 was too big on me - armhole, waist, length, etc. i'm ordering 0p online, hoping it will fit better. not a huge fan of the black belt, otherwise very happy with the dress.",4,1,0,General,Dresses,Dresses +1077,40,Obsessed,"This dress is very soft and ultra comfortable. i got a size 10 and probably could have gotten away with an 8 but due to being busty on top stuck with the 10. i love the length ,even though i got the regular and not the petite.",5,1,0,General,Dresses,Dresses +952,56,This sweater was better than i expected.,I was pleasantly surprised when i tried on this sweater. it is well made and fit perfect. the will really enjoy weather this in the fall.,4,1,0,General Petite,Tops,Sweaters +850,42,Sweet and airy,"This blouse was just right for me. 5'3' and in my late fifties. not too frilly so still age appropriate yet feminine and fun. i have largish arms from working out and the sleeves fit with give. and at this stage of life, the boxy look that falls just below the waist is flattering. i took a 10 regular (i'm usually a medium r or m-petite) and the fit was comfortable and right. both colors are unusual and it works nicely with pants and skirts.",5,1,10,General,Tops,Blouses +952,40,Must have!,Love this vest! just got it in the mail last week and i have already worn it twice with two different looks. it's timeless and can be worn in so many fun ways!,5,1,0,General Petite,Tops,Sweaters +1094,53,Beautiful summer dress!,I ordered a sp which is normally the size i wear from retailer i'm 5ft and 129lbs. and there is so much extra material on the bottom part of the dress. it would make a beautiful summer dress if it was at least 2inches narrower on the bottom. unfortunately they are out of the xsp which would be perfect. still contemplating whether to keep or return.,4,1,0,General,Dresses,Dresses +1077,47,Gorgeous print,"I sized down in this dress from a 6 to a 4 (32d-31-38). the 6 was too blousy in the bust and it did feel ""sack-like"". i sized down and suddenly it looked great--fitted enough through the bust and hips. be warned--this dress has to be pulled over your head. the fit in the bust will determine a lot. i am tall--almost 5' 9"" and the length was great--similar to the model in the photo. the cream and black print is gorgeous.",4,1,2,General,Dresses,Dresses +1077,46,Can't wait to wear it!,"I just bought this dress yesterday in the store and love it. i'm 5'1"", 110#, 34b and purchased the 0p, which fits perfectly. + +it's made of a cool material and is lined which adds to the quality of the dress. i love the neutral print and the square v-neck makes it a little different than just an average dress. this dress can be dressed up or down, depending on accessories. it also makes a great work dress if you add a little cardigan or blazer. very versatile and a great buy, especially a the s",5,1,1,General,Dresses,Dresses +1086,29,Comfortable and fits all body types,"This dress looks better in person. the shape is pretty much straight, but fits nicely even if you are curvier. it doesn't show your imperfections. the type blue and white color is nice, but a bit see through on the bottom and the slip is a little short. came to about mid thigh for me so i would wear leggings underneath. i don't think a belt would look good with this because of the shape and if you have curves. very cool summer style.",5,1,0,General,Dresses,Dresses +1077,53,Too wide,"I wanted to love this dress. i am not comfortable wearing dresses much above the knee and i liked the length and the way this looks on the model. however, in person this dress is cut like a sack. it is not tapered at all in the waist and there is just too much fabric when you cinch the belt, at least on me. it was oddly shapeless, even with the belt. it seemed a size too large. i ordered the xxsp. for reference i am 5'1"" and 107 lbs. i ordered the neutral dress and i really like the fabric and c",3,0,2,General,Dresses,Dresses +850,55,"Pretty, soft and comfortable","I honestly don't understand whey this top isn't sold out. i have it in both colors and love it! it's a cool, gauzy woven fabric, super soft and perfect for warm weather. the white fabric is doubled so it's not see-through, the pink (more of a pale terracotta) is doubled halfway up, so it's slightly sheer on top but your pants/skirt waistband will not show through. it is a loose-fitting top, so you may be able to size down. i usually wear size 4p, but it was sold out so i got regular size 2 and i",5,1,2,General,Tops,Blouses +1077,30,Not for those with hips,"This dress (i ordered the ivory) is stunning. it is fully lined, the belt adds a needed accent, and the print on the fabric is gorgeous. the fit, though, is another issue. i typically wear a 2-4 depending on the cut and fabric of dresses, and am pretty proportionate with my hips/bust. i ordered a 2 in this dress. it was enormous on the top and painfully tight on my hips and thighs. the fabric has absolutely no give - it needs to drape perfect or it looks awful. if you have any type of hip, thigh",3,0,5,General,Dresses,Dresses +952,44,Perfect,This is the perfect duster! transitions you perfectly from summer to fall without being an overly heavy piece. simple and classic! i know i will get a lot of wear out of this item!,5,1,2,General Petite,Tops,Sweaters +452,43,Perfect summer robe,"I'm fussy about robes. i'm fairly small (size 2 or 4) and a lot of robes swamp me. in the smaller size, this robe fit well and was flattering. the material is soft but absorbent. the pattern is lovely and feminine without being dowdy. the wrap is generous--i wear this robe just out of the shower and don't feel exposed.",5,1,11,Initmates,Intimate,Sleep +850,51,,"Ordered this in white, thought would be really cute. but didn't like, and returned it. i am big busted and it was unflattering teh way it draped.",3,0,0,General,Tops,Blouses +850,58,So pretty!,I love this top! nice lightweight material but not too sheer. runs a little big and may be slightly too boxy for some people; for me it was perfect.,5,1,0,General,Tops,Blouses +818,38,So pretty,"This top is so pretty and festive. i am purchasing it for a holiday party. i debated between a m and l, but went with the m, and i'm glad i did. it is generously sized. finding bottoms for it has been a little tricky. i'm thinking i will try the velvet pants as shown.",5,1,0,General,Tops,Blouses +1077,48,Summery 20s dress,"I love the cut of this dress, and i'm rather short. i don't think you need to be tall. it's a nice, light fabric that will work well for warm weather. it did wrinkle quite a bit during the day, but never looked messy. i certainly wouldn't describe it as frumpy. it has a nice, loose, 1920s feel, and you can tighten the belt to make it more fitted through the waist. the belt is sewn on in the back, so you can't take it off without quite a bit of tailoring. i had no trouble with the bust being too",4,1,5,General,Dresses,Dresses +967,26,Perfect jacket for cool summer nights,I love this jacket! it is stylish and is ideal for a casual night out,5,1,1,General,Jackets,Jackets +39,31,Sexy and classic,This is my first time purchasing a bra from this brand and i am in love. the style and quality are amazing. it is the most comfortable bra i owned to date and i will be buying more from this line. it provides a lift without all of the uncomfortable padding which requires continuous adjusting. i am saying goodbye to vs forever. i got this in red and the bra looks more expensive than it actually is and the fit is simply amazing.it is sexy and classic at the same time.,5,1,2,Initmates,Intimate,Intimates +850,43,Huge blouse,"I tried this blouse on in the store. i'm generally an 8 or 10 in this brand. i got down to a size 4 and gave up. this blouse is huge all the way around. the detail on the blouse is pretty, but the tent like cut made it impossible for me to buy it. i know retailers blouses can be swingy and flows but this went way beyond. perhaps on a tall person the swing would work but on a short person like myself...i looked ridiculous.",2,0,10,General,Tops,Blouses +39,26,Lovely!,"Well-made, gorgeous bra! the 'red' is more wine in person, which is great. this bra runs quite small--go up at least 1 band and 1 cup size. i got a 36c and it fits great! (i'm a 34b across brands like vs, etc.) +you'll feel extra saucy and a bit mischievous knowing you're wearing something this sexy.",5,1,0,Initmates,Intimate,Intimates +1086,38,Simple and comfortable,"Love this dress. wear it with sneakers or boots. can add a belt, or the right accessories to dress it up.",4,1,1,General,Dresses,Dresses +878,66,Cozy lounger,"In the on-line picture this lightweight sweatshirt looked so inviting that i decided to order it. when it arrived, i could not believe how soft and comfortable it felt! it was equally comfortable on. the rayon, tencel and cotton content of the fabric created such a comfy feel, that this top is sure to be a favorite for a relaxing week-end or evening. i ordered the size 3 even though i usually order a small in most tops. this one seems to lend itself to the oversized look, and i was right about t",5,1,2,General Petite,Tops,Knits +452,62,Terrace robe,"Absolutely perfect for summer. great weight, lovely soft lining. love pockets in any robe. sleeve length is perfect. actually flattering, if you consider robes such a thing. i love it!",5,1,1,Initmates,Intimate,Sleep +850,58,Boxy,This top is too boxy and has too much going on. it should have no buttons or different ones.,2,0,0,General,Tops,Blouses +1139,43,Beautiful but not for my body,"The color and fabric of this item are so appealing and i think this is a great piece for the right person. the fabric is beautiful but also much thicker than i'd imagined from the photos. it has a quilted quality so doesn't drape very well and is just too much fabric for me around the arms. i typically wear a size 12 and ordered the large. i think a medium might have been better. haven't decided yet whether to exchange for m or just plain return. has an artsy, cool professor vibe that i like.",3,1,4,General,Trend,Trend +1077,42,An easy and polished dress!,"This is such an easy dress to wear and it looks very polished! it is not a ""cheap polyester"" fabric as one reviewer wrote. it is a rayon and nylon blend. it does wrinkle easily. i love that the belt is actually sewn into the dress at the back. i don't typically gravitate toward warm color palette, but the burnt orange color is really lovely. it can be dressed up or down very easily. and it has pockets! i typically wear xs in retailer brands, and the size 0 fit me well.",5,1,0,General,Dresses,Dresses +850,28,Beautiful blouse!,I found this while shopping at my local retailer and loved it. i was able to size down from my normal 10 to a 6. i got the warm white and it's lovely - couldn't wait to wear it. the detail is so pretty and love the buttons and 3/4 length sleeves - i am thrilled! i couldn't be happier!,5,1,0,General,Tops,Blouses +1077,51,"Soft, pretty, tts, but sack-like","The material is soft and the pattern is pretty, but it fits like a sack. it's too bad that this wasn't more form-fitting, with some stretch and a zipper, because its fit is just not beautiful. for tall, very slender ladies, this will be pretty, as it is in the photo. it fit me just fine (with a little extra room on top), but it went right back into the bag without a thought.",3,0,0,General,Dresses,Dresses +952,64,Adorable!,"I chose the petite small for the shorter length & fits perfectly. it falls abt 3"" below my knees. normally i am a small in tops. waiting for some cooler weather to wear with some of my swing style turtlenecks i have & jeans. 5'3"", 115#, 3c. looks pretty much on me as in the pic.",5,1,0,General Petite,Tops,Sweaters +867,27,Ehh not a fan :/,"My personal opinion is that i am not a fan of this top, the material of the fabric doesn't seem as nice as delettas other tops and it had a really boxy fit on me. i wanted to love this top but i did not.",2,0,0,General,Tops,Knits +1094,74,Darling swing dress,"Cute and comfy. seems to fit true to size. flattering and roomy on top for my 34ddd shape, but doesn't make me look pregnant or fat overall, which sometimes happens without a waist to define shape. super cute!",5,1,0,General,Dresses,Dresses +1094,24,A bit more fabric than expected,"Overall, the dress is beautiful, easy, and great quality. but the bottom part has more fabric than it appears in the photo, if that makes sense. it's not poofy or super-layered, but i had to pinch fabric on a part of the dress in order for it to have that more straight/shift shape that you see online here. besides that bottom part, the fit is true to size. but as a petit, the extra fabric isn't what i'm looking for. +i think it works depending on what you're looking for. beautiful though!",3,1,1,General,Dresses,Dresses +1121,37,Love love love....but,"I, too, saw this jacket on the recent retailer email teaser and instantly i was in love. i put it in my cart and was contemplating buying it but was unsure on size etc since there was only one review. i came back to find it was no longer available and i was devastated. i was at my local mall today and decided to pop in. much to my delight, they had a rack full of this coveted jacket. it's very cute, stylish, not very thick and the quality was ...just ok. there was a slightly worn look, that perhap",4,1,81,General,Jackets,Outerwear +1121,60,Too small!,"Not as cute as photos, and too small in chest. i am 5'5'', 125 lbs, and the small was too tight in the chest, and i am not large here at all. shoulders and sleeve length fit well. will return. not comfortable, and will need to be able to button it on rainy days.",2,0,1,General,Jackets,Outerwear +879,62,,"First of all, this top runs big. i'm 5'5"" 120 and there was still plenty of room to spare in an extra small. this is a cute top but i returned it because it was too stiff and boxy for me. the fabric is thicker than your average tee, and there's not much give, so it may not hang well on all body types. i might revisit it if it goes on sale because i like the design with the small details at the sides but this was an easy pass for me at the regular price.",3,1,0,General,Tops,Knits +1015,30,,"Oh this skirt is gorgeous but i feel it runs small in the waist!! +i'm sending it back and ordered up- i'm happy i did as today it's sold out. +beautiful and vibrant colors, very well made- just wish some of the retailer sizes wouldn't run on the smaller side!!!",5,1,1,General,Bottoms,Skirts +1025,34,,"These are my favorite jeans i've bought in the past year! they're the perfect length for booties, i love the rise, and the denim feels amazing- so soft. mine haven't stretched more than a normal jean (in fact they may have stretched less than others i've had), and i can wear then multiple times before washing with their shape being in tact.",5,1,1,General,Bottoms,Jeans +879,32,,"Love this top! so soft, fits perfect.",5,1,1,General,Tops,Knits +1071,48,In love,"This dress is absolutely adorable. runs true to size, i am five foot nine and a medium fit perfect. the denim has a lot of stretch. i can't wait to wear it in the winter with tights and boots! don't wait too long before this one sells out.",5,1,1,General Petite,Dresses,Dresses +1121,35,A navy trench-yes!,"I am a big fan of trench coats and i love that this one is navy. i typically gravitate toward blues because it brings out my eyes and my wardrobe tends to fall in a blue-ish category. i love that the color of this coat will compliment other pieces of clothing in my closet wonderfully. + +i especially love the design of the trench with the wider, pleated bottom which allows for fluffier dresses but also creates an illusion that is slimming for anyone's figure. this is a fantastic, unique design for",5,1,99,General,Jackets,Outerwear +1025,24,These jeans are amazing!,"I love, love, love these jeans! they fit like a dream and the fabric is so soft and giving. the waist comes up higher and stays snug, which means no muffin top. plus they look awesome! i truly hope paige comes out with more like this!!",5,1,1,General,Bottoms,Jeans +1078,31,Cute but . . .,"This dress is adorable. the color is on the red orange side and is nice for the summer. the cotton is also nice and light. however, the bust is cut short and the skirt is unforgiving to girls with hips. if you have b/c cup or less and do not have an hour glass figure then this dress may be for you.",3,1,0,General Petite,Dresses,Dresses +1078,28,Faulty zipper problem,"I ordered not one but two sizes of this dress to try on and was hoping to ultimately wear to an event - one 00 petite, one 00. the style, color and cut are all perfect. one not so minor downfall, however. the zippers on both dresses were faulty - they both broke in the same spot, both during the first time just trying them on. i can't get either of them to even budge now - will either need to take back or get fixed. very sad about this.",2,0,22,General Petite,Dresses,Dresses +426,29,So excited but then this,I love the pants and it's so soft and they're great. today was the first day i wore them for more than just a try on and i noticed a hole. that's super disappointing but i'm hoping it was just bad luck ;(,4,1,0,Initmates,Intimate,Lounge +453,34,Please stop going down in fabric quality,"I've been wearing these shorts for years, i work outside and it was great to have comfortable jean shorts that were just the perfect length. the fabric quality on these shorts (and many many other retailer items) has gone down. sure, they're great when you try them on in the store..soft, comfortable, flattering, but when these are worn for a day they get so stretched out that i feel like i need a belt to keep them on. i wore these several times, sat down on a relatively smooth concrete wall, and a",2,0,3,General,Bottoms,Shorts +906,30,Comfy and cute,Very comfortable sweater. the material is very soft and not itchy at all. i had the hardest time deciding between sizes. the medium was slightly longer and loose through the arms. a bit of a boxy shape. the small was slightly more fitted through the arms and instead of hanging straight had a slight fit and flare look to it but still loose. ended up going with a small since it was less boxy. it's a sweater that can look more put together or more laid back just depending on sizing but overall love,5,1,0,General,Tops,Fine gauge +1015,48,Gorgeous skirt,Absolutely love this skirt. it is well made and fits as normal. i love the fact that it can be dressed up or down.,5,1,0,General,Bottoms,Skirts +1121,39,So pretty,"This coat is fun, flirty, & flattering. i bought it strictly for how good it looks on - it's not a coat for warmth. the top is tailored and fitted, but the bottom is very full and swings. (there is a lot of fabric on the bottom). i'm not sure why some people had a hard time with the sleeves - i do not have the smallest arms and this was not an issue for me. however, i had a very thin shirt underneath the coat and that is all you can fit under it, so keep that in mind. the small fit me perfect. v",5,1,1,General,Jackets,Outerwear +993,44,"Beautiful, but....","This skirt is beautiful. fabric is gorgeous,with perfect amount of shine and luxury to it. there is a ""life ""in this skirt; it is well made and follows the body lines in a perfect way. or,i better say, it did fit me perfectly first ten minutes of wearing it. unfortunately, it stretched more than a full size, and generally lost its shape. now, the skirt is two sizes too large and not really wearable anymore.",1,0,5,General,Bottoms,Skirts +1121,55,"Beautiful coat, but runs small","I love this coat, and wanted it to fit so badly! a 12-14 always fits well, but i can't even start to button up the large in this coat. so sad!!!",4,1,2,General,Jackets,Outerwear +997,53,The skirt has a pretty stained glass look,"Pretty cut out design. it is a great length for work but it is also unique enough to get compliments. the skirt seems true to size but the waist does not have a lot of ""give."" in this regard it may seem a little small.",5,1,0,General Petite,Bottoms,Skirts +1121,50,Too much of a goodthing,"Too much of a good thing is...still too much. there's too much flounce on this jacket for me--the waist sits slightly high, and the incredible amount of fabric beneath it (when you twill around, it's basically a full circle) makes my hips look huge. if there were about 1/3rd (not 1/2, but 1/3) the amount of fabric to the skirt, i'd be totally in love. +as it is, i'll be returning it.",3,0,4,General,Jackets,Outerwear +1121,39,"Like, almost love","I finally was able to order the xs petite (my typical size), adn received it. i had previously tried on the xs regular, but that was too much fabric. (i am 5 foot 1.5 inches, adn 115 lbs) + +so the petite fit, but i still felt like the swing was a lot of fabric for me. classic cut, snug on the chest,so i wouldn't be able to wear a sweater underneath. overal, i did like,but decided to returrn it",4,1,0,General,Jackets,Outerwear +1121,27,Disappointed,"I had been eyeing this coat for a few weeks after it appeared in the email, and i finally decided to purchase it to treat myself. i was very excited to get it, as it is a beautiful coat online. however, once i received it i was very disappointed. the material is much thinner than i would expect for something that cost $168, and when i went to button it the button slipped right off the thread it was sewn onto the coat with. i checked the other buttons and all of them were loose as well. + +perso",2,0,1,General,Jackets,Outerwear +1121,61,Timeless & classy trench,"I saw this in an email and loved it but by the time i tried to order it that evening, some sizes were already gone. the medium was back-ordered but didn't have to wait too long to receive it.. i especially like the design with the full skirt. the material is light weight, which is prefect for my florida climate. the design and fit were beautiful!!! i love it and will get years of use out of it. my only complaint is the material wrinkles very easily. i tried to get them out myself but ended up se",5,1,0,General,Jackets,Outerwear +1121,20,Lovely light jacket,"I had to size up to a medium because otherwise my boobs would not get along well with that button down front, but once that was taken care of i really loved the silhouette this created. the belted waist flatters an hourglass shape nicely. perfect for sipping tea and eating finger pastries like a fancy little lady. i have no idea what i'm going to do when the time comes to wash it though... we'll cross that road when we come to it, i guess. also - the interior seams are a bright, electric blue -",5,1,1,General,Jackets,Outerwear +997,50,Fun skirt,"The pictures do not do this skirt justice! it is reminiscent of the vintage mexican circle skirts with a pretty lace design. the fabric is nice and light and it is a lot of fun to wear. + +it is definitely one to consider washing by hand. i put mine in a lingerie bag and washed it on the gentle cycle, but the bottom edge of the lace frayed a bit. it is nothing a pair of scissors can't fix, but to avoid any further damage, i will be washing it by hand in the future!",4,1,0,General Petite,Bottoms,Skirts +1015,50,"Lovely, substantial skirt","This skirt is great for anyone who wants to highlight a defined waistline, but may want to skim over a few lumps and bumps. the skirt has a nice, wide waistband that hugs tight at the middle and pleats that give a little flare without being too much. + +the fabric is nice and thick and the skirt is lined. + +i am looking forward to wearing it to the office with a fitted dark top and heels.",5,1,2,General,Bottoms,Skirts +1121,43,Gorgeous but fitted,"This was sold out in an xs when i first saw the email. i ended up seeing in my local retailer store and tried on my usual xs. i am 5'3"" with a longer torso and about 108 pounds. my chest size is 32c and the xs was just too tight. it buttoned up beautifully and the length was as it is on the model, even though i am much shorter. however, when i tried to move my arms, the jacket constricted all movement. this is a huge disappointment and i imagine going to be an issue for many girls who order online",5,1,5,General,Jackets,Outerwear +1121,42,I'm sure it looks great on the right body type,"I loved this trench on the web site, i couldn't wait until it arrived and was even happy to pay full-price to get it! it unfortunately just didn't complement my 5'2"" 135 lb curvy figure as i had hoped. it was definitely much fuller on the bottom which added unnecessary bulk. i have narrow shoulders and it was snug and uncomfortable with a simple tank top on. i hung it in my closet for a few weeks, tags intact, continuing to try it and each time it just wasn't working. it also had many stray thre",3,1,1,General,Jackets,Outerwear +1088,42,Avant garde-ish dress,"Love the way this dress looks online. sadly, it doesn't look great on me. i'm 5'4"", athletic build. the small fit perfectly, but the extra fabric in the hip/pocket area just seemed to drag me down. i really wished this worked for me, but i think you've gotta be a little bit taller to pull this one off.",3,0,3,General,Dresses,Dresses +1096,67,Feminine professional look,"I was looking for a dress for an upcoming interview. this fit the bill. when i took it out of the packaging i was worried it would be boxy, but it hit in all the right places. it was loose enough allowing for movement, but accentuated my waist. it hangs to just above my knee in an xl (i typically wear a 14-16). i was very impressed with the material. it feels very soft and luxurious.",5,1,5,General,Dresses,Dresses +1121,40,Very kate middleton,"The photos do an amazing job of selling this coat. in person it is just a little bit less than what i was hoping for. the navy blue color is lovely and elegant and fits the sophisticated femininity of this style. black or khaki would be too boring. + +the fabric is soft and drapes and flows beautifully, but it is quite thin. if you hold the coat up to the light you can almost see through it! the thinness probably helps the flattering fit of the coat, but i don't know how effective that makes it at",4,1,15,General,Jackets,Outerwear +1078,32,Literally unwearable.,"I purchased this in-store in a vivid red color, but didn't try it on until i got home. big mistake! literally the first time i tried to zip the dress, the cheap, horrible zipper noted in previous reviews just...broke. midway up, right under the waist tie. i was trapped in the dress for a good 15 minutes and was scared i'd have to rip or cut the fabric to get out of it; eventually i pulled the zipper apart to escape. can't wait to return this asap.",1,0,6,General Petite,Dresses,Dresses +453,55,Quality changed,"Pilcro stet roll ups are my fave! i have about 5 or 6 pairs and i needed a replacement for my light wash so i went in the store and tried these on. wow has the quality changed. the denim is a lot lighter in material, now, the wash isn't as real, almost like i'm wearing jegging shorts. these were my favorite but now i'll have to look for light wash denim shorts elsewhere because these new ones just wont cut it anymore! why, pilcro?? the sizing is about the same, they run a little large due to the",2,0,7,General,Bottoms,Shorts +1121,56,Weird fit,"I fell in love with this trench when i first saw it online but ended up returning it once i tried it on. i'm 5'9, 140 lbs and the m fit true to size. but the belt hit above my natural waistline and the skirt of the coat was much fuller than i expected, making me look heavier. the material also wrinkles easily and the stitching was poor quality with lots of loose threads. disappointed, as the color and concept were great.",3,0,0,General,Jackets,Outerwear +1121,31,"Beautiful, dramatic trench, but impractical upkeep","This trench is beautiful, with a lovely, swinging skirt that adds a romantic sense of drama and movement - you'll feel as though you are starring in your very own film noir movie. i wish i could have kept it, but i couldn't justify paying full price on a coat that had to be hand-washed (the label specifies no dry cleaning!).there is a lot of fabric on this trench, and i imagine that all those little pleats will have to be ironed too. i don't have the time for that, and for this much money, i wou",3,0,5,General,Jackets,Outerwear +1088,35,"Unusual, stylish, comfy","I like the edge of this dress and it balances my narrower hips well. i'm usually between 0p and 00p in retailer dresses and xxsp definitely fit better on my 5'1"" frame (armpits and knee-length where it should be) + +love that it's machine washable and unusual. super soft and beautiful color even though i normally gravitate to cooler colors. + +bring it on everleigh!",5,1,0,General,Dresses,Dresses +1078,46,Cute dress!,"I love the bright red color and also the texture of fabric. it's light, soft and crisp, which is perfect for summer days. the dress is definitely designed for people with a short torso. the waste line is a bit high for me, but overall it didn't feel weird or look funny. there is just something about this dress that made me very difficult to part with. once i tried it on, i had to bring it home with me!",5,1,3,General Petite,Dresses,Dresses +1096,36,A classic piece!,"This dress is beautiful! the concept looked really striking online and it really delivered in person. the material is a good weight for winter but soft and really quite luxurious. the collar is subtle and adds a lot of elegance.there's not a lot of stretch though. i'm 5'5"", 130lbs, and usually btw xs, xsp, s, and sp and will probably go with the s on this one. you have to try this on!",4,1,8,General,Dresses,Dresses +1121,49,Too much fabric for a petite,"I just loved this when i saw it in store. beautiful fabric, lovely color. i ordered a small petite because petite xs was sold out. i imagine it might be a little better if it were a size smaller, but there is sooo much fabric in the pleated bottom, unless you are blessed with exceptionally long legs, it might end up looking like a witches coat. at least that is what i was told by my daughter.",3,0,1,General,Jackets,Outerwear +865,30,Great top for a great price!,"I was a little worried this top wouldn't look quite as nice as it does online due to the price, but it is super cute in person too. tank underneath is attached but does not get in the way. great top! cannot wait to wear it!",5,1,2,General Petite,Tops,Knits +1078,35,Cheaply made,"The cut and color of the dress is awesome. however, the biggest flaw is the zipper. i only got to wear this dress once until the zipper broke..sad day especially at the price. there also were a number of loose threads. i recommend waiting until it goes on sale. you'll want the extra money for a tailor to fix that zipper.",1,0,2,General Petite,Dresses,Dresses +1121,61,Very nicely made,"Great feeling trench. can dress it up or down. +just be prepared to take a steamer with you. it comes wrinkled and will wrinkle very easy.",4,1,1,General,Jackets,Outerwear +1121,38,Perfect!,"My only complaint is that there is no lining. it also came very wrinkly and i need to figure out how to steam it. + +however the fit is perfect (tts) and it is so very flattering!",5,1,1,General,Jackets,Outerwear +1121,34,Worth it for me,"I rarely write reviews on here, but this coat deserves a mention. + +i have wanted a trench coat for a long time, but my build and coloring are not flattered by the traditional beige/khaki coat or cut. i leapt when i saw this one and immediately ran to my local store to try it on. + +it is not *really* a rain coat, but more like a charming layer in the style of a coat. it's lightweight, soft fabric that swings really well - but also gets slightly wrinkly. the color is lovely and the buttons are",4,1,2,General,Jackets,Outerwear +1121,57,Gorgeous and timeless trench!,"First of all, i'm not a ""navy"" person at all. i much prefer black or other bright colors. i received an e'mail showing this trench last saturday and i pulled it up online and noticed how darling it looked. i didn't order it, but i went back the following day to check it out again. it was nowhere on the website. then a few days ago, back it popped up online again. i noticed it wasn't in my local store so i thought i'd go in and look this weekend. i just had to see it. i actually made it to the st",5,1,14,General,Jackets,Outerwear +1121,40,Multi-functional piece,"Saw this on the retailer emails as a cover and knew i had to try it on. went into the store following day and tried it. to my delight the tencel fabric is light enough for southern california weather and can be worn as a trench coat over skinny jeans, leggings or dresses or act as a dress in itself! love the navy color as it is has more of a washed looked and not too bold. what attracted me to this piece in the first place was the ruffled bottom and the rounded flaps on the back that is different",5,1,8,General,Jackets,Outerwear +1121,56,Lots of pros; one small frustration,"I'm tall with long legs, long arms, and a small chest, and the medium fits me almost perfectly. i love the long sleeves (sleeve length is always a challenge for me) and how the coat accommodates my broad shoulders. my only problem is that the belt wraps around my lower ribs and looks odd. if i can get the belt loops lowered 1.5-2 inches, it will be perfect. if i can't, i'll return it because the coat looks much better with the belt tied if it's buttoned up. one small point: the coat arrived incr",4,1,0,General,Jackets,Outerwear +906,40,"My ""go-to"" sweater","This sweet little number in the mustard yellow has become my fall and winter ""go-to"" sweater. so easy to wear, understated and a bit retro. looks great tucked into skirts or high-waisted jeans, or out, and the subtle shift in textures is a nice detail. highly recommend, and a great price point!",5,1,0,General,Tops,Fine gauge +1121,34,Not for busty gals,"I'm usually a 12, or size l in retailer and when i tried this on, buttoning it up from the bottom, i was so excited...until i reached the chest. it was way too tight in the bust and i am not that big in that area - it was painfully tight on my 38d chest. it's also unlined, which makes it not very useful for anything other than the warmest times of year. it's a shame because the skirt is swishy, and a good length - many trenches are too short, or not wide enough on the bottom for a fuller figure. i",3,0,2,General,Jackets,Outerwear +1104,63,,"Nice material, hits high waisted, mine was a return that was not repacked and was just balled in the bag and was so wrinkled that even if it looked good, you couldn't tell. very disappointed to have it arrive in that condition-so not typical of retailer.",3,0,5,General Petite,Dresses,Dresses +1121,42,Beautiful but odd sizing,"I agree with other reviewers. it is beautiful but too tight around the chest. i am usually an xsmall and the xsmall was tight in the chest. i bought the small and it was still uncomfortable. sadly i had to return it. i am 5'4"", 134 lbs and a 34c, by no means i am considered big chested so this is highly unusual.",2,0,3,General,Jackets,Outerwear +1121,30,Wonderful coat,"I love this coat. it's everything i've been looking for in a trench: navy blue, cut for dresses, with a vintage flair. and the medium fits like a glove (i'm a size 8). all that being said, be forewarned that this coat in unlined, so it won't be that warm a layer. the seams are covered in a bright turquoise bias tape so it doesn't seem especially unfinished. still worth the price on sale.",4,1,1,General,Jackets,Outerwear +879,36,"Cute, but too boxy","This shirt is adorable, love the lace detail on the sides, but way too boxy for me. it's a great lighter weight for spring, but it doesn't feel flimsy. sadly, there isn't any shape to help make this flattering. it will be returned.",3,0,0,General,Tops,Knits +453,22,Shorts aren't what they were,Shorts don't fit me like they did the first time and i've only worn them twice! the material isn't what is use to be. it stretches out to fast. i don't think i will be buying these again. wish i could take them back.,2,0,1,General,Bottoms,Shorts +1121,48,Fabulous feminine trench!,"The skirt on this trench has tons of fabric. it goes on and on, and drapes and twirls beautifully. as a trench, it fits well and does the trick. i believe the skirt is heavy enough not to blow around too much, but i haven't been out in extremely strong winds yet. it fits true to size, at the knee (i'm 5'5""). i sized up because i assumed i would be layering it over clothes. my regular size fit fine over a lightweight cardigan.",5,1,0,General,Jackets,Outerwear +906,50,Just as expected.,"The green is vibrant and beautiful, and the sweater is very soft.",5,1,0,General,Tops,Fine gauge +997,57,Classically contemporary,"Love this skirt! i enjoy being trendy, but i love the retro vibe. can be dressed up, or worn to work.",5,1,0,General Petite,Bottoms,Skirts +1078,30,Horrible quality,"I love maeve dresses and have always gotten a lot of wear out of them while still looking great. this dress does not meet those standards. on the 2nd wear of this dress the zipper completely broke. i had to take it to a dry cleaner to get replaced at a pricey cost for a pricey dress, i'm dissapointed.",2,0,2,General,Dresses,Dresses +1121,25,Jolly arms =/= jolly jacket,"I remember seeing this great jackets online and knowing that i would have to have it! so i traveled to the store to try it on. the ruffle on the bottom was beautiful and fluffy and just like the pictures. the color was perfect and it was lightweight enough i could get more uses out of it that most of my coats in the texas heat. so i tried on the small. the didn't quite button over my bust, and i did an arm wiggle that made the arms too tight near where they met my body. no problem, medium it is.",3,1,5,General,Jackets,Outerwear +997,49,Beautiful!,"Very pretty skirt, makes me feel very feminine and makes my waist look smaller than it is.",5,1,0,General Petite,Bottoms,Skirts +1121,31,Worth the price,This coat is absolutely beautiful. the fabric is soft and almost silky and the style is timeless. i ordered an xs and it fits true to size and has excellent quality.,5,1,3,General,Jackets,Outerwear +1078,31,Disappointed,"I love maeve dresses but there are several issues with this one (for my taste). 1) the fabric and color closely resembles my medical scrubs, 2) the zipper is cheap and barely goes up or down, even when it's just on the hanger. 3) the bow is really cute but doesn't make up for the other shortcomings.",3,0,9,General,Dresses,Dresses +1121,37,S petite is oversized,"I usually wear a s petite so that's what i initially got in this. i'm 5'2"", 32c-27-36. the shoulders were about an inch too wide on either side, the sides along the top had tons of extra fabric (almost like batwings or a dolman cut) and the waist was at least 6"" too big! i'm re-ordering in petite xs and hoping for the best, because this is a gorgeous coat.",5,1,1,General,Jackets,Outerwear +906,41,Fun sweater,"This sweater is flattering, fun, and practical. i wear to work and out at night to dressier functions. i bought both the green and black. both are cute on and super soft.",5,1,0,General,Tops,Fine gauge +1025,48,Love these jeans!,"After being tentative to splurge on skinny jeans (i've always been a small flare jean-girl), i am thrilled to say i love these jeans. the rise is perfect in that it ""holds in"" anything you want ""held in"" and makes a slim shirt look even better. i have worn them with booties and regular boots alike and have no complaints. i was unsure of the jean's claim to not stretch out but have been pleasantly surprised at how they have kept their shape...even after sitting for many hours at a time. wash cold",5,1,3,General,Bottoms,Jeans +1121,48,"Cute, swingy skirted trench coat","I'm 5'1, 100lb and tried on pxs, ps and xs. the portions on the petite are perfect for petite sizes however if you are a d cup, keep in mind that you cannot wear anything thick underneath it if you go with the fitted size. the sleeves are pretty slim in the petite xs too. i'm keeping the pxs skirted trench because it looks like a dress from the fifties (fitted and flared) and looks so cute unbuttoned (like on the model). also, unlike some trenches there are minimum details (like epaulets, contra",4,1,3,General,Jackets,Outerwear +1121,30,Perfect trench,"Can't say enough about the style of this trench, the material is soft and the shape is amazing for all body types. the color is great and there's some pretty aqua colored piping in the inside of the coat. + +the sizing is a little hmmm. i ordered a large. i'm usually a 12 on top or a large, mostly to accommodate a larger chest (ddd i think). proportion wise i'm more a medium through the shoulders and in length, so sometimes i can size down to a medium or large petite depending on the shape. + +with",5,1,10,General,Jackets,Outerwear +1121,40,Runs small!,"Wow, this runs small! i'm thinking the accidentally sent me an xxs?!?",3,0,0,General,Jackets,Outerwear +1015,52,,,5,1,0,General,Bottoms,Skirts +453,37,Love these,"I've been buying and returning several denim shorts lately searching for the right pair. these are fantastic. they are so so soft and comfy. i'd say they run slightly big but not to the point where i needed to size down like i do with the hyphen chinos. love that they are not so short but not too long either and can be adjusted by how you roll them. these are a nice medium wash and i am 5'5"" 110 lbs and went w my normal size 26. seems like they may stretch out a little but that's ok bc then they",5,1,5,General,Bottoms,Shorts +865,48,Classic and elegant,"I purchased this online without seeing in person and was pleasantly surprised. i have purchased clothing made from netting with embroidered damask design in the past and found them to be stiff and scratchy, however, this is soft with some stretch that makes it very comfortable to wear. the fit in person is more form fitting than pictured and is quite flattering. another nice design element is while the shell appears to be see through, there is a built in strapless nude cami attached inside. over",4,1,2,General Petite,Tops,Knits +1015,34,Beautiful skirt!,I am very pleased with this skirt! you can tell it is very well made and is just beautiful! very true to size!,5,1,0,General,Bottoms,Skirts +1078,34,Terrible zipper!,This product has a terrible zipper that ultimately caused me to return the dress. it's pretty bad when it won't even zip up on the hanger. such a beautiful dress; it broke my heart!,1,0,0,General,Dresses,Dresses +1121,38,Non-stuffy trench,"This trench coat solves my eternal problem with trench coats - which is that when i see one on a model in an ad they look effortless and casual, but then when i try one on it looks rigid and stuffy somehow. this trench coat drapes beautifully. that said, it's not the same kind of fabric as a traditional trench coat so it probably isn't water resistant. i'm fine with that, it looks amazing.",5,1,0,General,Jackets,Outerwear +1121,25,Flirty trench!,So happy this came back into stock! beautiful trench! love the flared skirt. the coat is perfect for the warming weather here on the east coast. it adds elegance and sophistication to any outfit. a must!,5,1,2,General,Jackets,Outerwear +1104,35,Cute but not worth the cost,"It's a perfectly cute simple summer dress, but the only reason i'm even considering keeping it is because it was a gift. the material is fine but for this price, i expect something more exciting than what is, really, just a modified t-shirt dress. at least more exciting colors or a print or something. the top piece is 2 full layers which could get warm in the summer, and the ribbing is tight enough that you have to wear a bra even if you're small-chested (i'm a 32b and super thin and still neede",3,0,20,General Petite,Dresses,Dresses +1096,34,Simple and classic,"As you can see from all the reviews, this dress is such a classic piece. my two cents below: +____________ +pros: +- fits tts. i'm either a 10 or 12 in most clothes and bought the l and it fit really well on my 5'9. 36c bust and hourglass frame. it wasn't boxy at all and still left enough for movement and still held a nice shape to my frame without being clingy. +- fabric is soft. it does seem a tad fuzzy, so just be careful what you wear. but the material overall is nice. i'm not sure how thick",4,1,1,General,Dresses,Dresses +1071,62,Cute & simple,"Tried it on in store and found it cute and comfortable, it might run a little big since i was expecting to fit into small but found the xs fit and looked better. i will consider when on sale. i felt that it was way over priced.however if money is no issue i would buy it.",4,1,4,General Petite,Dresses,Dresses +1121,35,Discrepency between regular and petite,"So a bit of a bone to pick with retailer. i am normally a petite xs (32b chest). however the petite sizing was not available online so i ordered a regular xs thinking i could always have it altered. i could barely button across the chest. huh?! when i went to return it at the store, i noticed they had xs petite on the rack so decided to try it. it fits perfect - like how it should! i can button fine across the chest and there is a little extra room. + +i have no idea why the sizing is so off between",4,1,3,General,Jackets,Outerwear +1121,25,"Beautiful design, poor execution","I knew i needed to buy this trench from the moment i saw it on my computer screen, but something prompted me to stop by my local retailer and try it on first. thank goodness for that. + +at first glance, i knew i wouldn't be buying this. the construction leaves much to be desired. from the flimsy, single layer of unlined, unstructured fabric, to the thin strip of fabric serving as a belt, i could easily see this being sold at a cheap store for teenage girls where throwaway clothes are a dim",1,0,4,General,Jackets,Outerwear +1121,51,,I agree with the other reviews that the sleeves can be tight even for those with slim arms. life would be great in this coat if my arms were always down by my sides. but when i lift my arms that's another story. i also agree that the material wrinkles easily. this is a high-maintenance item as far as pressing and ironing goes. it is a very pretty feminine coat but i would reconsider this only if it goes on sale.,3,1,3,General,Jackets,Outerwear +997,51,,"Cute skirt! i bought it to go with boots (tall and short) and looks great. if you pair it with the right top, it reminds me of the funky eclectic retailer look that this retailer is famous for! i usually wear a size 2 or 4 and i went with the 2 because it didn't hang so low. but that's just me.",5,1,0,General Petite,Bottoms,Skirts +1121,37,"This coat is good quality, runs small","It is a beautiful coat, runs small. arms feel tight, i am typically xs, i can't even button it up. bottom is skirted, and falls beautifully. it is light weight coat, not really fit for cold weather.",3,1,3,General,Jackets,Outerwear +1121,66,Hand wash?,"Darling jacket/coat, similar styling as the beige with big flowers and lace-up back that i bought a few years ago and still love. i was considering this one, but the description says to hand wash. seriously? a coat? that's simply not practical. not sure if i will buy this one.",2,0,0,General,Jackets,Outerwear +906,39,Classic and elegant,"Got this style in both black and green. the fabric is soft and the neck design is very elegant! i am 5'3, 120lbs, 34dd bra and take this in size small.",5,1,0,General,Tops,Fine gauge +1025,24,,,5,1,0,General,Bottoms,Jeans +1121,49,Cute! but not a coat,"Once i saw this trench coat i thought it was so cute! i'm usually a small in retailer tops but can be a little broad so i decided to go with the medium (based on other reviews). when i received the coat, it was a little tight in the shoulders but still doable. i was surprised how thin it was (just a single sheet of cloth) and how full the skirt bottom was (however, there is a cute light blue seem lining inside). overall this trench coat is not really a warm coat, but more of a fun piece to dress u",4,1,3,General,Jackets,Outerwear +906,25,Wanted to love it but...,I really wanted to love this sweater after reading the reviews but when i received it i was sadly disappointed. it is pretty boxy and not much shape. could be cute for casual outfits but i was looking for some dressier sweaters.,3,0,0,General,Tops,Fine gauge +868,45,Huge,This is a beautiful top but the xs was literally 4-6 inches too wide. very disappointing! i am thin and tall but this was a maternity top on me. i don't usually wear xxs. it is much more voluminous than it appears in the picture and it is definitely gray and blue not white.,2,0,10,General,Tops,Knits +997,28,Love love love this skirt!,"I want to wear this skirt every day - it's so much fun to wear and versatile and i just feel great wearing it! +can dress it up or down - it's pretty darn fabulous! +i highly recommend it - you'll be grateful and feel pretty!",5,1,0,General Petite,Bottoms,Skirts +1121,28,Cannot wait for spring!,I saw this trench in an email a couple weeks back and instantly fell in love. i bought it for myself for my birthday and got it just the other day and it is just as beautiful in person as it is online. fits true to size and is so flattering. i love the true navy color and cannot wait to wear this on cool spring nights!!,5,1,1,General,Jackets,Outerwear +1121,35,Must be tall & lean,"I wanted to love this coat so bad. the material is lovely and it's beautiful on the hanger but being tall and skinny is a must to pull it off. if you have any hips forget it (my hips are 38"")- you end up looking incredibly bottom heavy. the jacket also ran funny across the shoulders....like the underarm was sewn low down the arm so arm movement was restricted, it was weird. but it buttoned nicely without any pulling so it wasn't a size thing. i bought a size medium, at 5'5"" and 140 pounds.",2,0,0,General,Jackets,Outerwear +1121,82,Navy femininity,"It goes without saying that trenches are timeless. but this one broke the mold with its femininity in the flare and the (finally!) different color. i saw this and put it in my cart, debated, and went back a few days later (as i always end up doing, because i could not live without it) and it was no longer available! i was devastated and could have kicked myself. but i waited a bit longer, went back on the website and thank god - retailer had ordered more from the designer and had replenished stock",5,1,1,General,Jackets,Outerwear +993,52,Poofy not good for heavy legs,"The color is as pictured. good quality. it's lined. the zipper in the back makes it look updated. i ordered my usual size. small petite size 6. it fit perfectly. i'm 5 feet and 120 lbs. hourglass figure. i had high hopes. i have hips and short, heavy legs. the skirt only emphasized my flaws. if you've got great legs you will do well with this. i do own other short skirts. but the fact that is less tailored in look makes it better suited for a younger gal. if you're on the fence give it a try. it",2,0,6,General,Bottoms,Skirts +1080,41,True to size,"This dress looks better when wearing, i am 5.8 regular size s or 6. cup 34 d and fits perfect. length and width. in the front is shorter while the back has that pretty extra length. the video that is showing here is pretty much the full length. but in case you need to adjust you can shorten easily. i wish the slip is the same length as the dress. i want this dress for a wedding anniversary by the beach so i will need to add some extra fabric. i hope it helps.",5,1,0,General Petite,Dresses,Dresses +1089,34,Shimmering green classic cocktail dress,I love this dress because it is everything i have been looking for. it is flattering because of the details and it gives the illusion of an hourglass figure if you don't have one. i love that it has sleeves because sometimes i just don't feel like finding a shawl or bolero or whatever in case i get suddenly anxious about my arms. the green is dark and shimmering almost like lace over jewel tone emerald. love.,5,1,23,General,Dresses,Dresses +1149,35,I am a big fan of bailey 44 brand,"I feel like this brand is very good at coming up with dresses that are flattering and i feel like they tend to fit my body well. i like the design of the dress a lot because it makes me feel like i am walking along with beach-it gets me in the mood for summer, and it is the perfect casual everyday dress for the summer. i love that the color scheme is understated which reinforces that this could be warn anywhere-even for everyday use. the strips are perfect for the look of this dress, and i don't",5,1,2,General Petite,Dresses,Dresses +1078,29,Disappointed--will return,"I ordered this dress online in order to get a petite size and am very disappointed. as other reviewers have mentioned, the fabric overlay is very different in person than it appears in the online pictures. the dress is much more casual and looks cheaply made in person. +as for sizing, i ordered the 2p based on other reviewers' comments about it running small. the 2p fit me fine, although it was very fitted in the chest and i am very small chested #32b#. i can definitely see that being an issue",3,0,1,General,Dresses,Dresses +865,53,Will be your favorite tee,"This tee is super comfortable. it feels and looks like a well worn favorite right off the rack. although it only comes in s-m-l sizes and i wear an xs ( 32a/b, 105 lbs) the small fits well. no gaping armhoes to worry about. the pics don't show that the tee does trapeze out somewhat but it is not to worry about. i purchased the reddish color which is a wonderful faded maroon shade. i will be getting the black one as well.",5,1,29,General Petite,Tops,Knits +1020,36,Summer perfection!,I'm so in love with this skirt. i sized up to a 4 (i'm typically a 2 in maeve) and it's pure perfection. i had to steam it after getting home from the store because it wrinkled up pretty quickly. wore it with my copper birks and a chambray top but i can see this being dressed up for work as well. took off a star due to his easily it wrinkled.,4,1,1,General,Bottoms,Skirts +865,47,,"I love this shirt. it's different than other summer tops. it's pretty much as pictured in terms of color and size, and runs true to size. on a windy day the front will come open, but only to your stomach.",5,1,1,General Petite,Tops,Knits +1142,54,Neck,"The dress is pretty, i ordered a 4 and 6 not knowing how it ran, i took both back the neck is too tight!",1,0,1,General Petite,Trend,Trend +1079,35,,,5,1,0,General,Dresses,Dresses +1080,36,,"I just received this dress in petite extra small. for reference, i am 5""7 and 118 pounds. to answer the previous reviewer's question, the regular size of this dress runs long. if you want it to look like the one in the video, then order it in petite. i personally love the style and the material. however, the inside slip is very short with the petite given my height but this can be solved by adding a half slip underneath it.",5,1,1,General Petite,Dresses,Dresses +865,39,On the fence,"I'm just not sure about this top... it's very short. i'm short-waisted, and it could stand to be at least an inch longer in front for me. and as another reviewer pointed out, there's no closure in front. i can't imagine wearing it without a tank underneath... one good stiff breeze and everyone would get a peep show. it really seems more like a vest than a shirt. it's cute enough with a tank underneath, but that sort of defeats the purpose of an easy summer top... it's too hot for layers in the s",3,1,0,General Petite,Tops,Knits +1020,42,Sweet summer patterns,"Love the pattern play on this skirt! i had to size up to a 6 (i usually take a 2 or 4 in skirts) as it was too snug in the hips/waist. going up a size worked well and the hem hit me at the knee (i'm 5' 6""). thought it looked cute with the cloth & stone chambray tank :)",5,1,3,General,Bottoms,Skirts +1078,41,Looooove!!,"I normally don't write reviews for clothing but this dress warrants an exception. + +i am a little over six months pregnant and have a shotgun wedding at city hall in a couple of weeks. with a limited amount of time to plan, i bought a bunch of pregnant wedding dresses online and rented the runway, to arrive just before the actual ceremony. out of curiosity, i walked into retailer today to see if they had any white or ivory dresses that would look cute and city hall wedding-ish. they did! so i too",5,1,3,General,Dresses,Dresses +1078,39,I liked it but didn't keep,"I love all of these dresses, ordered the ivory in 00p on accident, meant to order 0p. was too small, but 0p would have fit. it is flattering, the pattern of lace is great, but i didn't like the color as much in person. i think i would like the blue better.",4,1,1,General,Dresses,Dresses +1149,39,Flattering,"This dress is made with stretchy cottony fabric, yet, very forgiving. it fits like a glove but doesn't show bulges. fit is perfect, i had originally purchased the white and grey, but the petite length is better. too bad as i do love me some red. oh well.",5,1,0,General Petite,Dresses,Dresses +1078,27,Surprised by other comments about size/bust,"5""5', 130, 32dd. i saw this dress online and thought it was beautiful, but considered not buying it because of other comments that the bust was too small for women with more curves. fortunately, the lovely blue dress was in my local retailer store and i decided to try it on in a size 4. i think the dress fits perfectly and i have gotten many compliments, including from random strangers. i have had no problem with a tight zipper or a low back, which is perfectly able to cover my bra in the back. th",5,1,3,General,Dresses,Dresses +1078,37,Small in bust,I ordered this dress in the blue color. it is lovely in person - but the petite seemed to run smaller than most petite dresses i buy from retailer. i ordered a 2p - and it was tight in the bust on me. i imagine a 4p would be perfect. i am 117 5'3 34b.,4,1,1,General,Dresses,Dresses +1080,51,Gorgeous dress,"Online this dress caught my eye but the reviews seemed to indicate there was something weird with the length so i did not want to order it online and have to send it back etc...because i am 5'5"" and did not know weather to get the petite or the regular! my local store had it and i bought a regular small and it is not too long. it comes just to the ground in the back like any other maxi. it is super comfortable and gorgeous! i am not sure where i am going in it yet....but it was just too pretty o",5,1,1,General Petite,Dresses,Dresses +1078,25,This is a gorgeous dress. the blue is beautiful,"The fitted top and flared skirt are really nice on this piece. i am 5'6"" 125lb and i took a 6. a 4 might have been ok, but i felt more comfortable in the 6, and it had a really nice fit. + +the quality is good, but there were some areas that were starting to pull and the floral details come a little frayed around the cutout edges, so i'm not sure how it will wear.",5,1,3,General,Dresses,Dresses +1080,35,,"The length of this dress is bizarre. i can't decide if it's supposed to lay on the floor or not touch it at all - i'm not sure if i like it either way. also- at this price point, i would have hoped to have the included under layer to not be so transparent. if you buy this dress, be prepared to invest in a slip and then have the slip tailored to match the high low hem line so that people cannot see your underwear. the netting and details in this dress are beautiful but delicate- the one i pur",2,0,1,General Petite,Dresses,Dresses +1020,43,Vibrant colors,Skirt is made well and beautiful colors. runs a tad small. i am typically a 4/6 and i ordered the 8 (based on other reviews) and it fit well.,4,1,0,General,Bottoms,Skirts +1078,37,Beautiful dress!,"I specifically bought this dress for my bridal shower and loved it! i'm small on top and have hips that don't lie. i purchased the size 2 petite. the waist portion of the dress came up a little higher which was ok since it fell at a small part of my waist. the length was just above my knee, which i prefer. the dress has a nude lining which compliments my tan skin tone. i wore a regular nude bra that didn't show beneath the liner. i received many compliments and would highly recommend it. + +the",5,1,6,General,Dresses,Dresses +1149,33,Makes me feel feminine,"I feel in love with the dress when i saw it hanging at the store. usually, i feel bailey 44 dresses make my body look really round and short. i've passed up a few because i didn't find them too flattering. i almost even just passed this one up because of my past experiences, but i tried it on and felt like i had the body of another person! it hugged my body very nicely and i felt like it gave me a shape! i also saw all the possibilities it had. the store had it styled with a denim jacket. i can",5,1,2,General Petite,Dresses,Dresses +1020,39,Great skirt,This skirt is adorable. there is no give to it though. i usually wear a 4/6 and got the 4 and i can't gain a pound or it won't zip. it is perfect for spring and summer. i'm 5'8 135.,5,1,0,General,Bottoms,Skirts +1078,45,Flattering but not for work,"This dress was as pretty in real life as the picture. flattering also. unfortunately it is definitely not appropriate for office work. even though it appears so in the picture, the back is very low cut and there is no way not for bra to show (unless you don't need one) also it was much tighter on top than the model picture, even though the rest fit perfectly.",3,1,8,General,Dresses,Dresses +1080,38,What's with the length?,"So i haven't actually tried this and i'm sorry for the misleading star rating. i just wanted to get someone's attention on the length. the photos show the dress draping with almost a train even with the model in platform heels but in the video, the dress is about 2 inches off the floor. is it the model in the video that is extra tall? someone help me out. this looks gorgeous but since it's an online exclusive, i won't be able to try it on at the store.",3,1,11,General Petite,Dresses,Dresses +829,43,,,5,1,0,General,Tops,Blouses +1020,36,Fun summer skirt,This skirt caught my eyes right away in the clearance section. i would have tried size 2 but it wasn't available. however size 4 fitted just fine. the print has bright summery feel to it. the lines on skirt are more carrot orange than it is to red. fabric is soft.,5,1,2,General,Bottoms,Skirts +828,36,,"I love this designer so i grabbed at this shirt immediately. unlike their other items, this shirt is linen. it's a great cut and very flattering once you iron it. the only problem i found was that as i wore it throughout the day, she shirt became wrinkled and misshapen to the point where it ballooned out around my stomach.",4,1,2,General Petite,Tops,Blouses +1089,31,Elegant & unique fabric,"I find it very difficult to find office friendly yet unique designs and feel this one fits the bill and also has the ability to be dressed up for the evening. i am ""curvy on bottom"" so i sized up from my normal retailer 4 to a 6 and surprisingly the dress fit my hips just fine. i'm 5'8"" 140 about 36-27-36 if it helps as i know it's hard to determine sometimes if this style will fit a more curvy figure...my advice is to go up a size if you are. the fabric i found true to the photo and the emerald i",5,1,8,General,Dresses,Dresses +1089,25,"Beautiful dress, cheap components","This dress is stunning, no doubt - a shimmering forest green under a black teardrop motif, thick material, nicely cut, with pocket panels that are forgiving to a belly. however, the fact that this dress has zero stretch (which is fine, if that's what you're looking for), coupled with what is quite possibly the cheapest zipper ever manufactured, make this dress exhausting to put on. i'm normally a 14/16 at retailer, and i ordered the 16 just to be safe, and the waist is exactly the size of my waist",3,1,22,General,Dresses,Dresses +1089,43,,,5,1,0,General,Dresses,Dresses +1020,44,Beautiful skirt,"I read the other reviews on this skirt and tried the 4 and the 6 (i'm between the two sizes, typically) in case it ran small. technically it does. the 4 is tighter, but it looks better sitting higher on my waist. the 6 is looser, but doesn't look as good. likely sticking with the 4. the colors are gorgeous and the fabric is light and high quality. it can be dressed up or down.",5,1,1,General,Bottoms,Skirts +1078,34,Delicate and beautiful,"I've been looking for a dress to wear to wedding this summer, and this is it. the blue color is lovely and the lace overlay is feminine and pretty. i'm small busted (34aa) with an athletic lower body (think, 120-lb marathoner), and the flare of this dress is perfect. i ordered this in a 0 and a 0 petite. the petite size looked little-girl short; the regular size hit just at my knee and was much more sophisticated. the waistband also fell at a more flattering place in the regular dress. i'm on th",5,1,3,General,Dresses,Dresses +1020,38,Fun skirt with a little twist,"I bought this skirt for an end of summer ""caribbean"" party. the floral detail is even more fun in person. it looks great with a red top or black tank.",5,1,0,General,Bottoms,Skirts +1078,51,Runs small,"I ordered this dress to possibly wear to my wedding rehearsal dinner. i an adding this review to give some guidance on sizing. i am size 34a and own two other dresses by this designer in size 2. for this dress, however, i had to size up to a 4 in order to close the side zip. i'm 5'7"" and the dress hit me just above the knee. (in my opinion, it would have been more elegant if it was a little longer.) the color combo with the taupe and off white is unique, but wasn't particularly flattering on my",4,1,2,General,Dresses,Dresses +832,36,"Pretty, delicate top","Cute top. definitely sheer so need an undershirt. really love details on it, especially back and fringe at bottom. 5'4, 135 lbs, ordered s.",4,1,7,General Petite,Tops,Blouses +1078,35,Beautiful lace dress - size up,I love this dress's gentle blue lace. the silhouette is just as seen in the pictures. i found the dress tight in the chest and had to size up one size (6 to 8).,5,1,0,General,Dresses,Dresses +1078,45,Awesome fit and texture,The dress looks even better in person. the fabric is very delicate though but worth the extra care it needs. the fit was perfect and the color is just as in the picture.,5,1,0,General,Dresses,Dresses +829,53,Very elegant!,"I wore this top right out of the package i loved it so much. i am 5'8"" small busted and size 4 was great. the sleeves hit me perfectly. the pleated detail in the back is flattering as well. my daughter now wants her own top. it would be nice to have a second color option.",5,1,2,General,Tops,Blouses +865,62,Nice to look at,Top opens in the middle right in front. should have some sort of closure inside to prevent this top from flying open will return,1,0,3,General Petite,Tops,Knits +1078,43,"Great concept, poor execution","The dress at first glance is pretty, feminine, and a timeless shape. sadly the quality just isn't there. i ordered online and was excited trying it on (dress fit true to size for me, all be it a little snug in the chest). the zipper is super cheap, hard to get up or down on or off the hanger. the appliquã©s are sewn onto a super flimsy netting, already coming detached without even having worn it. i could see this dress catching on ""everything"" and tearing easily. given the quality i'm return",3,0,0,General,Dresses,Dresses +1142,37,Beautiful,Flattering fitted form. flowing fabric. well made. colors are true to pictures.,4,1,4,General Petite,Trend,Trend +1080,35,Love it!,Very pretty dress! wearing it for a family beach portrait. it may run a little big but not terribly. it is also not super long as pictured. i'm 5'6 and it's perfect with a flat.,5,1,0,General Petite,Dresses,Dresses +1078,36,Stunning,"This one is a beauty! my store is not carrying the white - they had a lovely blue (periwinkle-ish) that immediately caught my eye. the ivory model shot makes the details of the lace and top layer really pop - more so than the blue variety but both are stunning. the details and layers on this dress are lovely and intricate without feeling overly delicate. quality most definitely in line with the price. + +fit: 130lbs/34c/5'6"" high waist. i'm a 4 or 6 at retailer depending on the brand. in most mou",5,1,50,General,Dresses,Dresses +828,53,,"I love this top. i'm not one to iron, so i wash (and hang dry) and wear it. great with skinny jeans.",5,1,2,General Petite,Tops,Blouses +1078,64,Great idea poorly executed,"I wanted to love this dress, but it has too many flaws. first, the ""waistband"" falls right under the bust and the skirt flares out from there. not a flattering silhouette.. second, the fabric is a sickly yellow-beige netting that looks like burlap. third, i can't imagine what kind of bra you can wear under it. on the plus side, the fabric isn't scratchy.",2,0,2,General,Dresses,Dresses +443,32,Great cover up,"This cover up is precious. i ordered both sizes because i was unsure of how either would fit since there was only a s/m and m/l. there is not a whole lot of variation between the two. i wear a size 10 pants and the s/m fit, but i may still keep the m/l instead for fear that it may shrink when washed. the garment is hand wash only which i will do because of the delicacy of the tassels. that's a little high maintenance for a cover up but i am willing to do it because it really is a cute cover up.",4,1,2,Initmates,Intimate,Swim +1080,53,Tracy reese $$$ - if want to splurge,"I'm 5'6"", 34b/32c, apprx 125#, & lift weights so i have bigger/muscular lats, back, arms. my lower half i wear sz 25 mother, ag, or 7 mankind jeans, but upper is more med (4-6 sz). hips apprx 35"", waist 28"". my tops: i don't like things tight. i ordered medium, top fits perfect, but waist/hips i have take in as more like a rigid/stiff, gunny sax cottony type fabric, not super light chiffon as photos appear. the under lining super short in front and top of calf in back, but lining follows the she",3,1,5,General Petite,Dresses,Dresses +865,65,"So soft, thin knit","In the photo, this looks like a heavy knit top, but it's not. the fabric is very light, thin, and soft. it's like a knit nightgown material. i said this runs big b ecause i'm normally a size xl and i can wear this. it actually fits me a little less flowy than on the model and i think looks better. so, to me, you can size down if you want this not to have so much flowing fabric. + +the front criss-crosses over and it will stay together at the top area with movement. the two fabric pieces sort of",5,1,2,General Petite,Tops,Knits +1080,32,,"This dress is so short! i double checked to make sure i didn't get a petite by mistake. i'm 5'10 and ordered an extra small because of the deep v neck. it fit well on top, but you could see my underwear in the front. seriously, i dont even think miley cirus would wear it that short. the lace was really beautiful so i was disappointed that it didn't work out.",1,0,3,General Petite,Dresses,Dresses +1078,33,,"Really cute dress. i bought the white. i am usually a size 2 in retailer dresses but i could not even zip this! side zip was also slightly awkward. had to return, waiting for the 4.",5,1,1,General,Dresses,Dresses +1078,43,Simply timeless and feminine,"I bough this dress in blue and i cannot tell you the compliments and the looks i get on the street! no kidding! this is a beautiful dress which has a very feminine/romantic quality to it. i bought size 4 and it sits perfectly on my waist i completely fell in love with that dress and especially with the lace work and the design. this is a classic piece, that is always going to be timeless in my opinion. no regret at all to have bought it!",5,1,7,General,Dresses,Dresses +865,50,High hopes are dashed!,I wanted to love this top -- looks so comfy and cute. but hangs like a bag. going back!,1,0,3,General Petite,Tops,Knits +1078,32,Nice summer dress,"I knew the ivory color was online only so i tried the blue one for size and i couldn't believe how nice the blue one is. i ended up buying it. i purchased a size bigger because mine wasn't available but because of lace and side zip, it still doesn't look huge. if i find my size in another store i can always exchange, but i couldn't leave the dress behind.",5,1,4,General,Dresses,Dresses +933,48,Oh so soft!,"This cozy sweater has the feel of cashmere. it fits loose and has a similar look as a wrap or poncho. looks better over sleeveless or short sleeve tops. i'm surprised it isn't one size fits all b/c it is very generous in the xs/s, which i got and i'm a 6. i can see wearing this all year long, even summer cool nights. very classic style. the picture on website looks frumpy to me, but on it is very flattering.",5,1,4,General Petite,Tops,Sweaters +862,45,Everyone needs this top!,"I am a short frame with broad shoulders and a large chest which means peplum tops typically look horribly unflattering on my frame. not this top! the cut is very flattering due to the lower peplum. not too much fabric to add to the waistline, truly a perfect fit. if this top came in any other colors, i would buy them all.",5,1,0,General,Tops,Knits +829,59,,Wonderful colors and fit tts. love the style. can were on or off the shoulders . love it!!!,5,1,5,General Petite,Tops,Blouses +829,42,Amazing everything !!!,"First i found the picture of this blouse stunning because the colors caught my attention . with that said, i found myself thinking of all the many events this could worn to, dressed up or down. so.... i found myself ordering it asap, paranoid that others were thinking i was thinking the same thing. well , i received it in the mail , and it was better than i thought!!! the colors and cut of this blouse is just as in the picture. i personally love this article/pattern of art, as i see it as an exp",5,1,3,General Petite,Tops,Blouses +900,36,,I love the way this fits and feels on. it is a beautiful piece and makes me happy to wear. i ordered my usual size medium and it fits well. the only con is that it is dry clean only.,5,1,0,General Petite,Tops,Fine gauge +900,49,Great look all in one,"I love everything about this sweater. it is very well made, beautiful material and such an effortless way to pull it all together. it runs large which was unfortunate for me as i bought the xs petite and i really need xxs in this one, but none are left. i am 5 ft. tall and weigh about 96 pounds. i can wear a 0 but not in this sweater. it runs very well and i highly recommend it. hope they make more in this style. it is so fresh looking and so comfortable.",5,1,4,General Petite,Tops,Fine gauge +862,34,Love!,I love everything bordeaux so when i saw this one i knew i needed to try it and it's my favorite top from this brand ever. i hope they keep the style and offer it in all of the colors going forward. it's a very flattering style for anyone - accentuates shape without being tight or clingy and the stripes are lovely. also the material is so soft. i have not washed it yet so i hope it stands up to wash and wear well. overall this is an amazing top. it runs slightly large. i'm usually an xs in tops,5,1,1,General,Tops,Knits +829,48,So much prettier than pictured!,"I agree with the previous review, i too would not have purchased it if i had not tried it in the store (which is 2 hrs from my house!). the colors are much more saturated but not gaudy. the caveat, it is quite short. i am 5'10"", 135 lbs. i purchased a medium as it gave me the length i needed.",5,1,2,General Petite,Tops,Blouses +542,68,,"I'm so thrilled with these! the fabric is a little heavier, and they just fit really well when similar styles tend to be baggy.",5,1,0,General,Bottoms,Shorts +829,34,Flirty and fun,"I am 5'5"", 145 lbs, a cup. depending on the style of the shirt i am between a medium and a small at retailer, in this case i purchased a small. even in the small the body has ample space which adds to the relax look without appearing sloppy. and because the shirt is wider i would say you can easily size down. the shirt is definitely flirty and fun with a great print, and easy to wear off of the shoulders. i invested in another retailer top that is also an ""off of the shoulder"" design but it does not",4,1,6,General Petite,Tops,Blouses +829,39,Didn't try petite,"The heart version is very pretty, i can't speak for the striped one as i have not seen that one in person. i ordered the xxs after trying on the xs, as i felt the petite would be perhaps too short. the xs was a little big on me. the only problem with xxs regular is the sleeves are longer on me, like 3/4 length, not to elbow as shown on model. but i don't want the shirt to be too short so sticking with that size. + +for reference, i am 115 lbs, 30dd chest, 26.5 in waist, and short.",5,1,0,General Petite,Tops,Blouses +900,39,Long sleeves,"Very soft, first thing i have to say, but runs a little big, especially in the sleeves, i ordered the xxs p and the sleeves still bunch a lot at the wrists. also, other bummer is how sheer the ivory fabric is, i wish it had more substance for the price. but, i like the style and color combo. classic look, effortless, and can be paired with so many things. the regular size neckline was too low for me. the length on the petite was fine, not too short. so i say it runs big. + +for reference, i am 1",4,1,2,General Petite,Tops,Fine gauge +542,26,"Attractive and good quality, but runs large","I love the look and feel of these shorts - typically my issue with any sort of cotton or linen shorts these days is that they're practically made of nothing, but these are comfortable and made of decent fabric. however, they run very large. being 100 lbs and about 5', i typically buy size 0 or xs, but these looked a bit ridiculous on me, with how big they are. i tried shrinking them in the wash, since they're 100% cotton, and that helped some, along with getting rid of the creases from shipping",3,1,2,General,Bottoms,Shorts +829,35,Surprisingly sweet,"Truthfully, i wouldn't have looked twice at this shirt online. i came across it at my local retailer store and i'm so glad i did. the colors are more vivid and beautiful in person. i purchased the small (my normal size) and it hits at the waist.",5,1,7,General Petite,Tops,Blouses +829,25,So pretty in person!,"I agree completely with the previous reviews suggesting that this top is much prettier in person! i failed to notice this top online, but was drawn to it in the store (the green color). it is perfect for early fall weather. although i could probably wear the xs, i ordered the xxs online after trying on the xs because i wanted it to be a bit shorter and have less extra fabric in hopes that it would be just that much more flattering.",5,1,0,General,Tops,Blouses +996,39,,This is the second tulle skirt by bailey 44 that i have bought. the color is a little more grey blue than the picture online but the quality is excellent. i am normally a size 6 and i purchased this skirt in medium and fits fine. it is a pull-on skirt but the waistband doesn't have a lot of stretch to it.,5,1,2,General,Bottoms,Skirts +900,23,Great style!,"I love any bow tie tops but most have the bow too high up which looks dowdy. i love the layered look and the contrasting colors. i am 100 lbs, 5'3"" and got the regular xs. i wanted the petite xs but it was sold out unfortunately. the regular was a little too big but it still works! looks great with jeans or dress pants....even a skirt! very versatile and classy and creative styling.",5,1,1,General Petite,Tops,Fine gauge +903,40,Fun retro fabric,"The sweater is comfortable and has a little 70s fabric flair...not quite as classically modern as it looks on the model. i am keeping it because it is a true fall/spring item. not a fabric weight for summer wear in california. the peach color is pretty muted, so it is not a show-stopping going-out piece.",4,1,4,General,Tops,Fine gauge +900,45,,"Looks great on the model, but if you're curvy it looks very frumpy.",3,0,4,General Petite,Tops,Fine gauge +1083,47,"Great dress, but better if you are not busty","I love this dress, but i am 5'7"" and a size 12, so am a bit curvy. this dress was great on the bottom, but the way that he did the top of it made me look even more busty than i am. i returned it for that reason. however, if he would make that ""skirt"" as a stand alone, i would buy in a second.",4,1,0,General,Dresses,Dresses +996,49,A girl and a pretty skirt...,"This skirt is perfect. i'm a size 10 and i'm 48 years old. i've really been wanting a tulle skirt, but didn't want to look like baby huey in it a bip puffy tutu above my knees. this skirt is indicative of the quality that is bailley 44. the fit is great, the length is perfect. i plan to wear it with a chambray shirt and the burgundy colored obi belt.",5,1,1,General,Bottoms,Skirts +1089,83,Elegant!,"It was love at first sight when i saw this dress online. the color, cut and delicate details are perfectly balanced with a moderately sexy neckline! ladylike with a little attitude. the fabric is gorgeous and is a stunning shade of midnight blue. this dress is perfect for a summer beach party or to attend a wedding. cut is extremely flattering, and the halter tie top allows for adjustment for a perfect fit. +i just received it today, and it is a must have for any closet. +tried it on with a be",5,1,13,General,Dresses,Dresses +1083,49,Love it!,"This is a beautiful dress with so many interesting textures and colors. it is form-fitting yet modest enough to wear for so many occasions - i plan to wear it for my son's graduation, but i think there are many potential uses for this dress. be aware that, like many byron lars sheath dresses, the bottom part is very tight- makes it hard to fit for more pear-shaped people. the top is a tad loose on me while the bottom is quite snug. however if i go up or down a size it will be too big on top or t",5,1,0,General,Dresses,Dresses +829,66,Pretty and comfortable,"Goes well with lots of skirts and pants, including the culottes shown. only downside, and not a big one, the sleeves are finished with elastic instead of a fabric band, which looks a little cheap",4,1,0,General,Tops,Blouses +1083,44,Beautiful classic,"Could not let it pass at a sale price. got the 0p and its a bit snug on the waist (25 waist, 34a, 102lbs) otherwise its perfect. will keep the size. dress hits me just above knee like in the picture. its beautiful in person. the details, the quality, the flattering fit...perfect",5,1,1,General,Dresses,Dresses +195,48,Just buy it,"Soft, comfortable, flattering, versatile--what more can you ask for? just wish it came in a long-sleeved version.",5,1,0,Initmates,Intimate,Lounge +542,38,Great for junk in the trunk,"I am 5'7 and 125lbs w a muscular bubble butt from climbing and biking. usually have trouble w shorts fitting right because my legs and waist don't match my butt. these shorts run large , i got a medium which should have been okay but they stretched out quite a bit after one wear so am returning for a small. it's crazy for my butt to be in a ""small""anything. so- if you are a skinny minny, or have a flat butt, these may not work for you in that you don't have anything to hold these up besides the",5,1,1,General,Bottoms,Shorts +351,37,,,3,1,0,Initmates,Intimate,Sleep +862,28,Beyond basic,"Love, love, love this top. i want to wear it every day! not only is it striped, which is super chic, but also, the peplum hits lower so it really accentuates your waistline (in a good way!). plus, its soft, like so many wonderul bordeaux tops are. i wish they had this is solid colors because i'd buy them all. for reference, i bounce between an xs and s at retailer, more along the lines of s...and i got the xs in this and it still has room (5'7, 135 lbs, 34a/b chest).",5,1,6,General Petite,Tops,Knits +1083,39,This dress make me laugh,"I always chuckle when i see this dress because it looks so busy and so crazy with all the mixed prints, i think it's a lot of fun. not so fun to put on, but it's worth the trouble. i swear my shoulders are sore after manipulating this on myself. i also own the mona dress in 8p, but i had to size down to a 6 for the melodist because the hips were not fitted enough and the back bloused out too much.",5,1,1,General,Dresses,Dresses +829,28,Love this shirt,I love this top. it looks as great in person as it does on-line. it does require some adjustment while wearing because it slips up onto the shoulders more than i prefer. the quality is nice and it is very pretty. it is great with skinny jeans and heels for a fall look.,5,1,0,General,Tops,Blouses +829,52,Quirky & stylish silk shirt,"I must admit that i was a little hesitant to try this top on, largely due to my shape. +fyi: broad shoulders/back, 36c, short waist, 5'3"" +typical size: dress or button-down shirt 12, knit or not fitted top, m +i purchased the heart design in a size m, since the upper part of the shirt is oversized a little bit (not too big and baggy, though) and then narrowis to the waist. think ""upside-down triangle"", as the shape of the top. since this is also my shape on top (6 on bottom), i worried that th",5,1,8,General,Tops,Blouses +829,41,Feminine & fun,"Bypassed this blouse online, but it's striking colors caught my eye at the store. bought the olive green color and it's gorgeous! the color is great for both spring and fall. i'm normally a petite xs at 5'0 feet and 104 pounds, the regular xs is a great fit for me. not too boxy and the length hits right at my waist. material is lighweight and flowey. don't hesitate to buy, it's a great piece to add some pop of color and goes great with skinny jeans..",5,1,0,General,Tops,Blouses +829,45,Fall must have,"Beautiful fall colors, perfect with work pants or jeans. i'm tall and was a little worried it would be too short, but it was a good fit.",5,1,1,General,Tops,Blouses +842,57,Adorable,"This is a really cute top. it's boxy but it's cotton eyelet so you shouldn't expect form fitting. if you are in between sizes order a size down. i'm a 36 ddd and usually have to wear large with retailer brands, however, the medium fit fine, it doesn't pull in the back or shoulders. the cotton material is thick enough that you don't have to wear a cami underneath if you don't want to. it's also long enough that your stomach won't show through the bottom eyelet band.",4,1,4,General Petite,Tops,Blouses +868,39,Cute go to for fall,"Really like this shirt. easy to throw on with jeans (black if you don't like the denim on denim). flattering without making you look boxy. arms are roomy too, unlike the what the picture shows.",5,1,11,General,Tops,Knits +842,34,Baggy and shapeless,"This shirt is not awful but not anything pretty. there's a reason the main photo has the model with her arms crossed over the waist! it runs good on top and then you get to the body of the garment and it runs straight down yet the pleats even make it manage to expand a little but then you get to the lovely detailed hem which reins them in. so now you are left with a bit of a poof effect making you rounder in all the wrong ways. it's one of those, ""i'm too lazy to send it back it's not that awful",3,0,1,General Petite,Tops,Blouses +868,37,So cozy,"This swing tee is amazing! i bought the blue one and the color is true to what it looks like online. the material is so soft and cozy. i am typically an xs and bought an xs, however it runs ever so slightly big. if i had purchased the xxs, it seems like the arms would have been to tight and i'm definitely not a fan of that. whatever the case, i highly recommend this tshirt and love its versatility and that i can wear this all year long.",5,1,0,General,Tops,Knits +868,39,,"Love this top!! i bought it for school and im dying to wear it. i could see how other people could dislike it bc of the loose frame, but if you like flowy shirts this top is for you! i like how the shirt is made of a really soft and sturdy cotton and the top part is more fitted so the fabric doesnt completely drown you out. also, this top looks super cute paired w/ a bralette and espadrilles!",4,1,4,General,Tops,Knits +818,45,Disappointing blouse,"This looked like a simple, chic blouse, but the fabric felt cheap to me, like thin lining fabric. the neckline is too deep and wide as well and so not flattering.",1,0,2,General,Tops,Blouses +835,63,,Beautiful shirt but runs huge! usually between a large or xl and i sized down to a medium. the fabric has a nice sheen and it's a flowy shirt but seriously size down.,4,1,6,General Petite,Tops,Blouses +868,36,Comfy and pretty,I bought this in red and wear it a lot. it is so soft and comfortable! i love all the fabric and the design. the longer sleeve length is amazing! it is a perfect tee! you can tell from the pics there's a lot a fabric and it's supposed to be loose and drape like that. it fits like in the pics and is true to size. wear a tank underneath in case there's a strong wind.,5,1,0,General,Tops,Knits +842,52,"Huge, long and baggy","This blouse is quite stiff. i wouldn't mind the boxiness if this blouse weren't so long. even if you size down, because of the eyelet and the cute hem, it would be difficult to shorten this blouse to fit.",2,0,0,General Petite,Tops,Blouses +868,37,Yes yes a million times yes!,"I am a sucker for a good swing top. i own many styles from retailer and similar retailers. i carry my weight in my stomach butt and hips, so this style is always good for me. as soon as i saw this online i fell hard and waited patiently for it to arrive at my store. finally it did! i love this top. its very swingy. almost cut like a circle so there is tons of room in the body. the sleeve is more fitted, but my arms are larger so it might just be fitted for me. there is a bit of stretch to it. the",5,1,4,General,Tops,Knits +868,32,,I get that it's a swing style top and supposed to be loose but it looked so much bigger on me than on the model and just not flattering at all.,3,0,14,General,Tops,Knits +818,57,Simple and pretty,"I love this blouse, it looks great under a blazer dressed up and great with boyfriend jeans. +it is loose and flowy, the neck line is low. i bought a medium and it is a little large but fits with the style of the top. +i happen to love the fabric, it is soft and feels great on the skin. one of my favorite fabric combinations is rayon (viscose) and cotton.",5,1,1,General,Tops,Blouses +835,47,,Awesome shirt...great transition into fall. somewhat sheer. extremely comfortable!,5,1,0,General Petite,Tops,Blouses +818,65,What a mess!,"This top is crazy in the front and just way-off when it comes to a cross-over drape. the top did not lay flat and the drape over has one snap which seemed to ""bloop"" open constantly. the bottom in the front is a strange combination of layers that i couldn't get to look good. + +i'm busty, but this isn't the reason this blouse is just a disaster of a fit on me. the blouse fits tts and everything was covered, so it's not like it was too small and tugged. that's not the case. this blouse just didn't",1,0,0,General,Tops,Blouses +868,33,Comfortably free in beautiful hues.,"This is the second top i have purchased in this design, the first being in the navy blue color. i loved the effortless swing of this shirt and the comfortable cotton texture, that i chose to purchase it in wine and have since received many compliments on both the shape and color. this is an easy top for me to put on and feel good within.",5,1,0,General,Tops,Knits +818,35,Runs small,"Normally wear a medium in most retailer tops (5'9"", 150lbs). would probably need an xl to fit more like a tunic. right now, in the medium, fits more like a tiny shirt, but more for fitting. arms are also tighter than i expected. will be returning.",4,0,3,General,Tops,Blouses +868,54,Great swing top,"Love this top. yes it is a swing top so you have to be prepared for the extra fabric. fits true to size thru the shoulders and chest. body of the top then flares for the ""swing"" effect. great top. plan on ordering it in the other colors.",5,1,3,General,Tops,Knits +868,64,This is huge!,"If you're pregnant, congratulations. this shirt is for you. if you've ever dreamed of being an xxs, this shirt is also for you. i'm a 34d, normally a small or medium, but often size down to xs in swing tops. the xs is ginormous on me, although it fits through the shoulders. i can hold onto the bottom and stretch my arms straight out at the sides, it's that wide. think flying squirrel. what doesn't show in the pictures is that it also has a slight dolman sleeve, which makes it look wide at the to",2,0,3,General,Tops,Knits +1078,39,Not flattering,Didn't like the dress. look pregnant in it. this dress is going back.,1,0,0,General Petite,Dresses,Dresses +1190,42,Vegan leather,Love these vegan leather pants. the fit is great for my petite frame. i bought them in regular size because the petite sold out so fast. i just got them hemmed of course. i love the fit but i also loved the color. the green was a just a little bit different and took me away from the basic black,5,1,0,General Petite,Bottoms,Jeans +862,74,"Cute shirt, runs small","I ordered my regular size l in black. i loved the fabric and finish on the neckline. i feel that in order to have the loose look as on the model, i would have to size up to xl. i might reorder it in xl, but really, it is a hassle and will most likely wait until another free shipping promotion. + +runs a bit short in my opinion too. maybe the larger size will have a bit more length.",4,1,11,General Petite,Tops,Knits +1078,36,Will get you noticed!,The first day i wore this dress to work i was amazed by how many people commented on it! i knew i liked it but apparently so does everyone else!,5,1,0,General Petite,Dresses,Dresses +863,24,Cool weather comfort,"This is the perfect cool day, cozy, teacher sort of sweater or if you're having a mr rogers sort of day. the material is soft and comfortable and the color is just as it appears in the photo. looks great with a button down shirt underneath.",5,1,0,General,Tops,Knits +1022,25,"Look like ""mom jeans""","Maybe i just have the wrong body type for these jeans, but even though they technically fit, i felt like they looked like ""mom jeans"" on me. i was fine with the high waist, which actually made them very comfortable, but the ankles were loose and long on me, where most ag ankle jeans are a perfect length. the quality is good though--the fabric is substantial and a bit stiffer than most of my other ag's, and the color is a nice saturated black. i tried on a size 27, and i'm 5'4"", 120 lbs.",3,0,0,General,Bottoms,Jeans +1092,27,Fits like a bag :(,"I was stoked to get this dress, and it is truly beautiful, but the fit is so awful. it was like being swallowed up by a bag. i ordered my usual size 6; i'm 5'7"" 140 lbs, and a bra size 34dd, but the dress just fell on me like a sack. i was so disappointed!! had to return.",4,0,0,General Petite,Dresses,Dresses +863,56,Boxy,"The fit of this top on me was much more boxy than on the model, maybe the fault of my fuller bust. my usual small definitely didn't reach my hips as it does hers, and appears wider. i'm not even sure the v is as deep! again, could be me. but i'm keeping the top because it is just so darn comfortable. as for not looking too top-heavy, ill just have to make it work.",3,0,0,General,Tops,Knits +862,49,,"I love this t-shirt. i fabric is soft yet has a nice weight to it. it is comfortable, yet sexy.",5,1,4,General Petite,Tops,Knits +1078,49,Cute and comfy casual dress.,I like the red color and the border detail at the neckline. i'm not crazy about the way the zipper on the back is emphasized. i'd rather have a less visible zipper. overall it is a cute and comfortable dress. the fabric is soft and substantial and has a nice texture to it. the shape is basic so it can be dressed up or down.,4,1,0,General Petite,Dresses,Dresses +844,49,"Nice style, but had some issues...","I love the contemporary style of this piece, but i returned it because the side slits were too high even for a short person like me (5'1""). but if you don't mind showing a little skin at the waist when you raise your arms, it might work for you. the fabric has a nice texture and the muted colors would mix well with other pieces.",4,1,0,General Petite,Tops,Blouses +566,38,,Beautiful dress. when you look at it on the hanger you think this could be really good or really bad. but it is absolutely beautiful. would highly recommend it - can dress it up or down.,5,1,4,General,Trend,Trend +1078,54,Love this dress!,"I bought this dress in the red option. was a little concerned when i read other reviews that said it looked like a maternity dress, but it didn't look like that on me at all. it falls nicely and fits me well - i am 5 ft, 107 lbs - in size xs. love the details at the neckline and hem. will be looking out for other dresses by maeve!",5,1,0,General Petite,Dresses,Dresses +1078,45,Great dress for the right body type.,"There is so much i love about this dress. like many of the other reviewers i simply love the fabric. it's soft and comfy but has texture and interest at the same time. there's beautiful detail to it as well. the edging at the neckline and hemline are unfinished and beautifully so. having said all that, i like many other reviewers i just don't have the body type to pull it off. there wasn't one angle that didn't make me look even bigger than i am. the pleating in the front, while very cute, gave",4,1,0,General Petite,Dresses,Dresses +1078,56,Comfortable,"Very comfy with cotton and lots of stretch. can be dressed up or down. i wear it with blue denim jacket and also with cream cardi. 5'4"" 135# and the small is perfect.",5,1,0,General Petite,Dresses,Dresses +1078,48,Cute and modern,"I like this dress because it's the perfect shape on me and i think the design is modern and cute. i got the red and i really like the pattern and the subtle tulle edging. the material is a little stretchy and substantial and there's also a lining. i wore it with little booties like the model and tights and a cropped moto jacket and loved the outfit. i am short, small chest, but somewhat broad shouldered, the empire waist would not work on larger chested women with hourglass figures.",4,1,0,General Petite,Dresses,Dresses +1103,91,I don't understand this dress,"I have been continually disappointed in retailer's clothing for the past year. i feel like their prices have soared and the quality has remained so-so, but dresses like these somehow make the cut. it does not make sense. since when did retailer exclusively market to older women? no, retailer's market has always been young adults. this dress is extremely matronly. although the bottom print is nice, the hot pink belt?? is completely mismatched and gaudy. i really hope retailer starts curating better dress",1,0,3,General,Dresses,Dresses +1078,51,Comfortable and classy,"Can't say enough about this cute dress....i bought it in red/ which is more of a burgundy, and paired it with a pair of over the knee burgundy boots. i can see wearing this in the spring, summer; heck, all year round! quality is nice and the gold zipper down the top of the back is a classy touch. don't pass this one up!",5,1,0,General Petite,Dresses,Dresses +1078,43,Simple beauty,"Purchased this in the wine color and love it! the detail at the neck at the bottom hem gives it an extra flair. i went with a small so that it was more fitted. love that it is stylish and comfortable. paired with knee high boots given it length but could also work well with short boots, like the photo.",5,1,1,General Petite,Dresses,Dresses +872,38,Comfy and versatile,I ordered this in black and in the print and i am super happy with both. the fabric is very soft. i've worn it with denim and khaki shorts as well as with a cute skirt for work. very versatile.,5,1,0,General,Tops,Knits +1190,32,Awesome pants!,I tried these on when they were full price and waited for them to go on sale and was very excited when they did! i'm not the type to buy leather pants but these look like i can dress them up or down and dress them like jeans. i'm a size 26 in pants but i bought size 25. i highly recommend!,5,1,1,General Petite,Bottoms,Jeans +1092,51,Had high hopes,"This dress was a disappointment. not black, but brown. and it was very oddly made, with a weird, seam right across the belly. on its way back...",1,0,0,General Petite,Dresses,Dresses +871,46,Freestyle crop tank,"I had to keep rechecking the price tag on this one to be sure i saw it correctly. price aside though, it's really awesome. fit is flattering, stripes are cute, colors are nice, and you can wear it all summer long. if you can get over the dollar signs, it's a keeper!",4,1,3,General,Tops,Knits +1025,47,,Beautiful embroidery and good quality jeans. you can really dress up with these for special occassion.,5,1,0,General,Bottoms,Jeans +1190,48,"Love, love, love!!!!!","These are great pants, have them in the green holly color",5,1,2,General Petite,Bottoms,Jeans +1022,30,Must get,"These jeans are pricey and worth every dollar. fits in the right area and makes your butt look perfect. ladies, if you have thick legs...these jean are meant for you.",5,1,0,General,Bottoms,Jeans +1078,52,Great dress to dress up or down - runs big,"I usually find maeve to run tts, but i sized down in this. i am normally a 6p and got an xs regular (to make the length more work-appropriate). i think a larger size emphasized the extra room at the front tucks - making it look a little maternity-like. + +it is very flattering on - drapes nicely. i got the cranberry color for the holidays and will wear in with wine tights and light taupe over the knee suede boots!",4,1,1,General Petite,Dresses,Dresses +1078,49,,,5,1,0,General Petite,Dresses,Dresses +1092,38,Ehhhh....,Looks so beautiful.... on a hanger. does not really do anything on a person. beautiful beading but the dress on is very sack-like. i will be returning it,3,0,4,General Petite,Dresses,Dresses +1081,27,Great dress!,The photos do not do this dress justice. i loved it as soon as i tried it on! it is good quality and the fabric is not too thin. definitely recommend!,5,1,1,General Petite,Dresses,Dresses +895,51,Short torso and static cling problem,"This top is pretty and i'm sad it didn't work out for me. i'm 5'9, 145 lbs and i found it to be short and boxy in the torso (tried on a s, m and l). also material in the front is super staticky - i hate that feeling.",3,0,0,General,Tops,Fine gauge +1081,44,Love this dress!,"I love dolan dresses! the fabrics are always beautiful, and the colors are always unique. i usually wear an xs petite in dolan, but i ordered both the xs and the xs petite, and i think i'm going to keep the xs. i had a hard time deciding which to keep, but the xs petite was just a hair too short. i think this is a versatile dress for all seasons. you could pair it with tights in fall/winter, but it is great for spring/summer, too...",5,1,2,General Petite,Dresses,Dresses +1030,42,I like,"These are thicker and don't have as much stretch, needed to go up from my usual 26 to a 27. good for late summer to fall transition due to the wash.",4,1,0,General,Bottoms,Jeans +1081,33,My kind of dress,I like dresses with sleeves as those are more appropriate for work for me. this dress is a smooth material and the asymmetrical bottom adds just a little extra something. i got it in my normal size and i do find it looser/not meant to be body hugging again making it work appropriate.,4,1,8,General Petite,Dresses,Dresses +1008,43,Gorgeous!,"I love this skirt!! it slips seamlessly from day to night, and looks great on those of us who happen to be on the taller side. it's super warm, so it's perfect with tights and boots on those colder winter evenings out.",5,1,0,General Petite,Bottoms,Skirts +1008,29,Love this skirt!,"Great length, very comfortable, very pretty. perfect dressy winter skirt!",5,1,0,General Petite,Bottoms,Skirts +1081,60,Cute and comfy!,"I ordered a medium as the large in the store was a bit too big. i wore this dress to a casual dinner at the grill in the country club and felt so cute, but also comfortable. i think it is a flattering dress shape and fabric. looks just like pictured on your website.",5,1,1,General Petite,Dresses,Dresses +1081,31,"Lovely material, bit boxy","I really love this dress. the material has a lovely feel to the skin, silky. i typically wear a large (occasionally a medium). if i wanted this dress to look like the model it would be the large. i ended up going with a medium because i wanted to accentuate the smallest part of me (rib cage area). this made the black portion a tad snug around the bum, but it eased a bit with wear (but still tighter than model picture) +size down if you want it snug, normal size for a looser, boxier fit. either w",5,1,14,General Petite,Dresses,Dresses +1008,28,"Love the look, not the fit!","I love the look and fabric of this skirt. it also falls at a very nice, flattering length around the knee. what did not work for me was the waist. the stretchy waist looked cheap, and i do not have a flat stomach, so it made me look like i have a muffin top! i bet it would look great if you have a flat stomach.",3,0,16,General Petite,Bottoms,Skirts +1081,59,The it dress,"This dress by dolan is my go to favorite for work. it gives a polished look with a pair of booties.i purchased it in an xs. i'm 5'1 and c-d cup. fit me perfectly. i can't wait to team it up with a sweater for chillier fall days. you will get a ton of compliments with this dress. love, love , love.",5,1,0,General Petite,Dresses,Dresses +1081,53,Great dress!,"I immediatley bought this adorable dress after trying it on at my local retailer and absolutely love it! it fits tts for me in my regular size small (34d-27-35) and it's incredibly soft and comfortable to wear. the top portion is so great as it has nice short sleeves, the color is a nice deep, rich orange which looks great now in the summer but will look especially cute in the fall with tall boots and a light denim jacket plus the bottom half is cut in such an interesting way. the material is amaz",5,1,0,General Petite,Dresses,Dresses +867,62,The perfect white shirt,"I have been needing a perfect go-to white tee for layering purposes and this one met and exceeded my expectations. it's the perfect weight for year-round use, love that it's 3/4 sleeves (again great for year round), and the slight front v adds a nice special touch. fell in love with the first one i bought online, so ordered a second for backup. it's a winner (and great price)!",5,1,0,General Petite,Tops,Knits +1081,42,Easy to wear,"Very comfortable dress and cool for our hot summers. i ordered in my normal size medium. neckline is cut a little low, but not enough to change my mind on the purchase.",5,1,1,General Petite,Dresses,Dresses +867,36,Cute but no,This shirt ran small and was more sheer than i expected. had to send it back.,2,0,1,General Petite,Tops,Knits +871,47,Like the idea,"Like the idea of this longer tee/tunic to wear with leggings but i found it not flowly enough in my regular retailer size ( small). fit on top but not really on the bottom with the side slits. unflattering how the slits hit me. maybe for some one taller ( i am 5'3"").",3,0,1,General,Tops,Knits +1081,29,Versatile and comfortable dress,I loved this dress so much i got it in two colors. the colors match the picture online. it's very soft and will work for summer and fall.,5,1,0,General Petite,Dresses,Dresses +1008,33,Comfortable and sexy,"I have an hourglass shape, so this skirt is winner for me. classic a-line fit but with a modern hem. it's subtly shiny, very stylish, and comfortable. paired with a tight shirt and heels it looks extremely sexy. a sale price makes it all the sweeter.",5,1,1,General Petite,Bottoms,Skirts +1081,31,Perfect fall dress!,I love this dress! it's so comfortable and perfect for the summer fall transition. it fits true to size and isn't to boxy or tight. i love the colors as well!,5,1,0,General Petite,Dresses,Dresses +1081,23,Love this dress!!!,"I bought this dress tonight and i love it! the fit is perfect and the color is perfect! the dress runs true to size, as all dolan products do. i ill wear this dress to an interview with tall heel boots. love this dress and think everyone should give it a try!",5,1,30,General Petite,Dresses,Dresses +1081,34,Super cute,I loved this dress so much i got it in 2 colors. i had to send it back twice to get the size right. i ended up with a medium. the fabric was pretty wrinkly on arrival. it is dryclean only. overall it is an easy and relaxed dress appropriate for work but still very cute.,5,1,0,General Petite,Dresses,Dresses +1094,35,So super small,"I can't believe how small this thing runs. beyond small. it's almost insulting because the dress is just so gorgeous you really want it to work, but there's no way it's going to when the l is actually a s. so sad to return this beauty.",2,0,1,General Petite,Dresses,Dresses +996,58,,"Was excited to try this interesting skirt, as a mega bailey 44 fan. however, this skirt didn't fit well. the waist was fine but it then was boxy and shapeless on me in an xs/size 0. my piece also had a wrinkle from folding and i'm not sure how it would easily come out but the main thing is that the lines weren't flattering to the body. the ""vegan"" quilting isn't luxurious. i thought the diagonal zipper style was cool but it doesn't lay to advantage when worn and i'm an easy fit. length is so-so,",2,0,5,General,Bottoms,Skirts +1008,44,Wonky,This skirt fits in a strange way. there is one pleated area but it is on the side so it is not flattering and i kept feeling as if i wanted to straighten the skirt.. the elastic looks frumpy. unflattering.,1,0,0,General Petite,Bottoms,Skirts +1008,32,Nice quality,"Fits pretty true to size, thick material, sits nicely.",4,1,0,General Petite,Bottoms,Skirts +1081,36,Absolutely adorable,"I'm in love ... with this super cute dress!!! the material feels so good on my skin and it has more 'body' than it appears on the pic ! i'm 5'2"" 115 lbs - i bought the s petite and it's perfect for me - slightly loose - i could have probably fit in an xs but i like the freedom that the s gives me! it my official spring dress !",5,1,6,General Petite,Dresses,Dresses +1030,45,Super cute. a wee bit small.,"I'm loving these, even if they are a wee bit tight. i'm 5'6"" 130 lbs and they hit well above my ankle, as in the photo. ordered a 29 (i vacillate between a 28 and 29) and am finding a little muffin top spillage even after wearing a couple of times. the good news? these babies stay pretty well exactly as they come - as opposed to stretching out a ton. the denim is durable and stretchy and i would totally recommend them.",4,1,0,General,Bottoms,Jeans +1081,57,Great,"Bought this in navy in the spring and this fall in green. i am 5'10"" and 57 with very long legs and they are too short to be work appropriate as a dress, at least for me. i wear both with leggings, short boots and a variety of jackets and love them. they feel like butter against the skin and are incredible comfortable. recommend. for reference i'm about 157# and an athletic/straight build and bought m in the blue and l in the green. go figure.",5,1,0,General Petite,Dresses,Dresses +1081,56,Versatile spring dress,"Spied this dress in my local retailer and figured i would try it on for overall fit before ordering the petite on line. for some reason retailer has eliminated in-store petite items (so disappointing). i was pleasantly surprised the xs regular fit well and was soon in my checkout pile. the dress is very soft although i suspect it will wrinkle when packed in a suitcase. the color blocking is great and makes this dress so versatile for spring, summer and fall. the xs regular fit my 5'1"" 115 lb",5,1,2,General Petite,Dresses,Dresses +1081,29,So in love,"I love this dress so much i bought it in 2 colors, it's so soft and cozy, i want to live in it!",4,1,0,General Petite,Dresses,Dresses +867,63,Cute and comfy,"As t-shirts go, this one has a flattering fit...shapely waist yet not so tight that unwanted curves show. i bought the striped one in my usual medium and it fits perfect now, so will have to be careful when washing. if it were available, i would have tried the large, so if you're a tad senitive about tight clothes i suggest upsizing. it's a nice weight fabric and the details around the v neck are great....the v dips just like the photo - approprialty sexy and age appropriate (i'm 62, 5'3"" at 125",5,1,0,General Petite,Tops,Knits +867,58,This tee is flattering and comfortable.,"I love this tee. it has a very flattering fit and the fabric is very soft. it runs small, especially in the arms. i suggest sizing up. the tee looks great on. it is slimming and super comfortable.",5,1,2,General Petite,Tops,Knits +1008,40,Beautiful & classic,"Love this skirt, i ordered a small, i'm 5'1, about 120, still losing some baby weight, so the elastic band is really nice because it will still fit once i get down to 110. really love the cut, it falls just above my knees in the front, longer in back. i wore it to church with a cream top with victorian lace around neck, tucked in, and added a belt for a nicer finish, although the band looks good without the belt too. i got tons of compliments from everyone. definitely a score. +(p.s. shoes are fr",5,1,5,General Petite,Bottoms,Skirts +867,71,Great t shirt!,I love this simple but stylish t shirt - the fabric is soft and it fits true to size and i knew i would love it even before it was delivered. i recommend it!!,5,1,1,General Petite,Tops,Knits +1081,60,Easy style,"This is such a lovely dress -- and it looks great on! like other customers, i like the petal hem and the top part, which is stretchy, is soft and not clingy. + +i think the only drawback is that the color isn't as rich a green as it looks in the pic. i've attached a pic for comparison and contrast purposes. + +i'll be wearing this way into the fall!",5,1,3,General Petite,Dresses,Dresses +1081,41,Great dress!,"This dress is great! the fit is perfect and very flattering. the two colors and asymmetrical hem on the front make it different than you average sundress. looks great with flip flops, sandals, wedges or booties. will be a great piece for summer but the darker colors also make it the perfect transition to fall dress.",5,1,1,General Petite,Dresses,Dresses +1081,29,Did not fit,"I'm a pretty solid 10 these days (and had no trouble fitting into other size 10 dresses at the store). the large was so tight around my hips. i barely got it on. they didn't have an xl to try on, but i can't imagine i would have fit in it. so, if you have wide hips, this is not the dress for you. it fit fine on top in the l, it was just so tight in the hips that it did not lay nicely.",3,0,1,General Petite,Dresses,Dresses +867,42,,"For the price, this top holds up. the colors make this top more interesting, but the white is rather plain and sheer. i tried on my usual size small and it fit well - 5'8"", 135 lbs, 32d.",4,1,8,General Petite,Tops,Knits +1008,26,"Shinier than expected, hi-lo hem","This is a lot shinier in person, and the elastic band is really tight but i still selected true to size. +there is a hi-lo hem going on that doesn't flatter my legs but it looks fantastic from the side. +due to the stiffness of the material and the tightness of the band, it can get crumply on the side if you don't get the right size. the material feels a little thin and scratchy.",3,1,0,General Petite,Bottoms,Skirts +1081,45,Not for the short-waisted,"This dress is sort of a mixed-media dress. the top colored portion is a slinky knit that dolan uses all the time. i like it a lot. the bottom, is a tight silky twill-like weave. the silhouette is straight, which is what attracted me to it, but when i put it on, i realized that the waist wasn't going to work for me. the split came at a point too high for me to belt and the sleeves made my wide shoulders look dowdy. i am not a person that wants to put on a dress and have to style the heck out of i",3,0,0,General Petite,Dresses,Dresses +1081,46,"The perfect, effortless dress!","I love the color combo, look and feel to this dress. 5'4, 120lbs and the xs fits as pictured.",5,1,0,General Petite,Dresses,Dresses +867,49,Perfect fitting white top,It is the cutest detailed little white top. i recommend this because you can wear it anywhere and dress it up with a scarf.,5,1,0,General Petite,Tops,Knits +1081,51,Need to style this one,"This dress is just as it looks in the pictures. shapeless. the trick is to add some styling to it. add the pilcro dark denim jacket and the headwaters scarf, and your all set. i had on black seychelle loafers but would pair it with a black d'orsay flat. the top blue of the dress is a faded sun washed looking navy and it goes well with the black of the skirt. i usually wear a 4 in dresses and the xs in this dress fit well. i'm 5'3ish"", 118#, 34d-dd. this is going to be a nice winter to spring dre",4,1,25,General Petite,Dresses,Dresses +1081,36,Perfect,"Everything about this dress is perfect...the material, style, and fit. flattering and comfortable. i'm 5'9"" and the length was just above the knee. you can dress it up or down. comfortable. i definitely recommend.",5,1,2,General Petite,Dresses,Dresses +871,60,Perfect!,I purchased this for my 20-something daughter. it is so complimentary and cute and stylish!,5,1,0,General,Tops,Knits +1103,29,Gorgeous but...,"I ordered this dress in a 12 which is my usual size and it was tight around the waist and across the back. i am 5'7 170lbs, small chest but broader shoulders and back and curvy butt. this dress is beautiful quality and well made but was too snug. it was very long, to the point where i would only be able to wear heels. the belt is cheap looking, i would recommend replacing it with something nicer. the waist drops slightly below the natural waist and the top puckers over it in the front and back.",4,1,0,General,Dresses,Dresses +1094,57,Cute but not practical,"This dress runs waaaay small. i would have too size up at least 2 sizes. while it is a beautiful color, it is an extremely stiff dress. returning!",4,0,5,General Petite,Dresses,Dresses +1081,26,Lovely autumn/winter dress,"I saw the colorblock horizon dress in my local store (which sadly no longer carries petites) in the red/black color combination and loved it - the colorsblocking, the fabric, the length. after ordering a few petite sizes online the only xsp was the green/black. although not what i would normally where colorwise, i love this dress and the xsp is the only one that fits. this dress runs large and on a smaller frame, the sp looked shapeless and unattractive. perfect length and attractive v-neck that",5,1,0,General Petite,Dresses,Dresses +1008,36,A little sparkle goes a long way,I love this skirt. it fits perfectly. great to transition from work to after-work event. very comfy. got lots of complements.,5,1,0,General Petite,Bottoms,Skirts +1008,38,Center pleat off center,I ordered this skirt because it looked cute and versatile. when it arrived the pleat in front (shown in the center) was far to the right so the overall look was crooked. not sure if it was a quality control issue or if that's the true design but it will have to go back. too bad because i had high hopes!,1,0,0,General Petite,Bottoms,Skirts +1081,60,Versatile dress,I am petite but chesty and this dress is flattering. it is a loose fit but not tight across the bust line. i tried it on with nude shoes and it dresses it up. i ended up buying this dress in a regular cut (s) because i wanted it to not be so short which made it look more like a casual dress to wear with the ocean behind you. i think it is a perfect day dress to go anywhere and by changing your shoes or adding a thin sweater or short jacket you can go out to dinner or theatre. the picture is a tr,5,1,5,General Petite,Dresses,Dresses +556,46,L space estella bottom,"I wear a 25/26 jean and the size s in this bikini bottom was just too small. in photos it looks so cute, but on me it just didn't look like anything special. hopefully the larger size has more pizzazz.",4,1,1,Initmates,Intimate,Swim +1081,42,Fabulous dress,My favorite new dress. i love the feel and slight weight of the fabric. it's very flattering and easy to wear.,5,1,0,General Petite,Dresses,Dresses +867,45,,Love this shirt! got it in white and it will be perfect for spring! very flattering fit!,5,1,0,General Petite,Tops,Knits +896,35,"Great, versatile cardigan","I really like this piece; the fit is great, the double zipper falters and cinched waist and 3/4 sleeves flatter. i will say, it's pricey for what it is (a cardigan) - but it's a great, versatile closet staple.",5,1,0,General,Tops,Fine gauge +1008,58,"Had potential, better suited for someone taller","I was really excited about this skirt because i love the color. however when i tried it on, it was too much of a high/low. i am not very tall but this would look a lot better on a tall person.",2,0,0,General Petite,Bottoms,Skirts +1094,47,Has potential,"Its just ok. the bodice is fitted and this dress runs tts. it does have a little more poof on the skirt part of the dress than it looks on the model. at this point in my life when i buy a dress i have to say right away ""i love it"" and i just didn't. my husband looked and said it is just a ""blah"" color on me. so that maybe part of it. the fabric is nice, doesn't seem inexpensive and the lining is soft and falls nicely underneath the lace. i am 5'("" and the dress does fall exactly as it is shown o",3,1,0,General Petite,Dresses,Dresses +1008,39,Comfy and stylish,"This skirt fits true to size and sits on the natural waist nicely. i've paired it with black, and the contrast is very nice. the material is thick enough for winter, but will also work for the fall months, too.",4,1,0,General Petite,Bottoms,Skirts +1008,36,Great after washing,"At first i didn't like the way this skirt hung -- the fabric seemed stiff and it stuck out at the sides where the straight front seam meets the dipped back. but i ran it through a wash and dry, and it softened up and hangs much better! you have to love a polished looking skirt that you can launder with all your other clothes. i am also very pleased that although it looks bulky in the pictures here, it isn't at all, and it doesn't wrinkle - perfect for traveling light. note also that the front pl",5,1,1,General Petite,Bottoms,Skirts +829,50,,"Loved this top from the moment i saw it. i was bummed that this top wasn't available in petite sizes, but since it was my birthday i thought i would treat myself. i purchased the xs. after receiving it and trying it on, it was big under the arms and waist area, i kind of expected that since i am always a 00p in most retailer clothes. i had the top altered at a local tailor and now it fits me perfect.",4,1,3,General,Tops,Blouses +829,46,Great quality,"I was a bit dubious of the top because online the video of it made the top look frumpy - wide and wrinkled looking. the top seemed shorter in the video than in the pictures. so i wondered if the images were massaged a bit in photoshop. i got it today and it's fully lined and the material is pretty thick which gives it a rich look and feel. i like the top even though it highlights my hips a bit and being pear-shaped i don't normally like that, but being thin helps. the best part of the top is the",4,1,8,General,Tops,Blouses +823,47,"Too boxy, pretty material","I really wanted to like this top. in person though, the fit was too large and boxy. i did order a smaller size based on other reviews but it was still too sacklike. i got the grey motif pattern which i thought was quite pretty and interesting. the material was nice and lightweight. perhaps it would look better on someone with a straight figure and small bust.",2,0,1,General,Tops,Blouses +863,37,Great staple tank!,Ordered two of these and they fit great and will be perfect for layering. true to size fit. cute detail in the back for a racer tank!,5,1,0,General,Tops,Knits +1080,38,Haute rock ~ rocking sexy!,"I completely disagree with the previous review. i purchased this dress and i absolutely love it! i went out for a couple occasions (one being special and the other not so special) and both times i received compliments all night! my husband loves it and that really says a lot. i feel the dress runs true to size, and the quality is right where it should be... runway worthy... absolutely!.... worth $3000's + ?....probably not, but i personally can't afford that anyway. i'm so happy to have found th",5,1,0,General Petite,Dresses,Dresses +819,36,A classic with a twist,"I am 4ft 11and 114 lbs. and i tried on the regular 0 and 2. the 2 fit better but there was too much extra material in the back so i order the 2 petite. the 2 petite fit perfectly, very classic in the front with the right amount of flow in the back. i can't wait to wear this to work or out to dinner with the girls.",5,1,10,General Petite,Tops,Blouses +823,53,Better in person,"I am going to have to disagree with the first reviewer. this is not the most beautiful top i have ever purchased from retailer, but i like it. it is a nice change from the swing silhouette that tendd to look like maternity wear on me. the key to this is to tighten the drawstring a bit. it is a working drawstring all the way around, and i find that the top is much cuter with the drawstring cinched a bit. i actually like the flowing arms, too. the fabric is lightweight - nice for the very warm midwe",4,1,9,General,Tops,Blouses +819,42,,"I love this tunic. the fit is just lovely for me--i'm a large busted, muscular shouldered woman who wears a 4-6 on the bottom. the 8 fit perfectly across my chest (34ddd) without horrid, gaping armpits. and the gathered back gives just enough extra fabric so that the buttons do not pull at all in front--not easy to achieve in a button down for a big chested girl! i also love the cut and flow--it is fabulous and hip with skinny jeans and platform heels, but also cute with flat sandals for a day o",5,1,8,General Petite,Tops,Blouses +933,66,Not a good look,Pretty disappointed in this sweater. should have sized down because it's quite wide. i also didn't like the stair step. the back clung to my rear. not attractive. the colors seemed to be striking online but in reality are not. returning mine.,3,0,0,General Petite,Tops,Sweaters +831,37,Very cute top,"I really liked the top once i saw it, but it needs to be worn with a cami underneath. the fabric is a little stiff. it runs true to size and it fits like a peplum top with extra space around the waist. the top is not really crocheted by hand it was done by machine, but it is a nice top.",3,1,0,General,Tops,Blouses +819,44,Regular size too voluminous...,"When i ordered this all the petite sizes were no longer available. i tried the xs. it was actually a nice length for me (5'4"") and even the arm openings were not too large which is a plus. i expected all the extra flow and material on the back of the tunic but there was too much fabric on the front too...very unflattering. if it had been a closer fit on the front i probably would have kept it. the color is very nice but the fabric is pretty standard...nothing that makes it stand out. it is very",3,1,5,General Petite,Tops,Blouses +1080,37,Cheap,"This dress looks nothing like the photo. the sequins are dull, no sheen at all. the faux leather panels and straps look and feel like cheap, shiny plastic. i didn't even try it on, because it was so hideous, when i pulled it out of the box. not remotely worth the price and wouldn't buy it on sale for $20 either. skip.",1,0,26,General Petite,Dresses,Dresses +863,27,Good white tank,"Basic ribbed white tank with a little character in the back. could easily be dressed up or down, material is soft and light and has a slight stretch. i will be getting a lot of use out of this piece.",4,1,0,General Petite,Tops,Knits +829,34,Beautiful fabric great for spring,I was very impressed with the quality of the satin. this top can easily be dressed up or down. i purchased the white and love it! the almost full zip back makes for easy on and off. i ordered a medium and think it runs a little big.,4,1,4,General,Tops,Blouses +931,36,Warm and cozy,"Perfect for the change in weather, this sweater is very thick and a tad big. i would say it is true to size, but if you're like me and usually order up in sweaters and outerwear, don't. there is ample room for layering underneath without being too cumbersome. the color is a bit different than that shown; it is more of a blush heather with light gray threads intertwined. just a note, the pin does not come with the sweater; the closeup made me think it did, but it really doesn't matter. the color",5,1,1,General,Tops,Sweaters +823,70,Had high hopes but...,"Gals, if you absolutely must have this top wait for it to go on sale (don't worry, it will). between the poor fit and the polyester, i have no good things to report about it. this is very much below retailer's usual quality and style.",1,0,3,General,Tops,Blouses +863,38,,I ordered this for my honeymoon and it's perfect! true to size and great with cute shorts!,5,1,0,General Petite,Tops,Knits +995,69,Cute hemline,"The hemline on this is somewhat see through and that makes this denim skirt really stylish. the waist runs small so i had to return my size for the next size up which was still a bit snug. but the skirt is so far beyond the normal, ho-hum denim skirt i just have to keep it. at 5'3"" it hits just right, slightly above the knee.",4,1,2,General,Bottoms,Skirts +929,35,,,5,1,0,General,Tops,Sweaters +929,62,Exactly as shown,"This vest is beautiful and exactly as shown in the model shot. it is soft, warm, and drapes beautifully...perfect length on my 5'7"" frame. the leather detail along the edge is a nice high-quality touch. i will say that it is pretty itchy especially around the neck, but wearing a shirt with a collar like it is shown seems to help that issue. the dark color is navy in the print (not black)...overall i think this is gorgeous, but the full price feels a little ludicrous...i think i may wait until sa",4,1,4,General,Tops,Sweaters +865,57,Feminine appeal,"I ordered this online which is always a gamble when it comes to fit. i was pleasantly surprised. color is true white and lace is not flimsy which i appreciate. good coverage of the girls so i don't have to layer over a tank. also arm holes don't gap and they're not too tight. beautiful with trousers, jeans or a skirt. i've already worn it twice to work. i know i'll be wearing it a lot. fit seems true to size. i usually order a medium and i ordered a medium which fits me perfectly.",5,1,0,General Petite,Tops,Knits +995,22,Love it!,"I just got this skirt in the mail, and i'm absolutely delighted with it. i'd ordered both my normal size and one size up, taking a tip from the reviewer who'd found it snug, but my usual retailer size fit beautifully. (i do have narrow hips, though, so maybe it's snug on more curvaceous figures?) the fabric is so soft and supple. and i've already tried the skirt with several widely varying shoe styles, so i can confirm its versatility: it looks feminine with heeled sandals (as in the pictur",5,1,3,General,Bottoms,Skirts +942,42,Itchy scratchy,"Cute sweater, i really like the grey color. unfortunately, it was boxy and a little short on me. almost worth keeping, but even with a t-shirt underneath, i wanted to scratch my skin off. it's very itchy. mine is going back.",3,0,1,General Petite,Tops,Sweaters +995,64,,"I have two tracy reese skirts from a few years back that i still wear. so i am favorably disposed to this designer's style and quality. this is a slim fitting skirt, though i ordered it in a 6 and my two others are 8s. so i don't agree with previous review that this skirt runs large. it is nicely fitted and flattering. it does not ride up when sitting, which is almost amazing. i wish the pockets laid a bit flatter. also, on my skirt there is no sewn-in fabric or laundering instructions. none! th",4,1,5,General,Bottoms,Skirts +1095,35,Wanted to love..,"Loved it online for its modern cut and print. however, when i received the item i was disappointed. i ordered my usual size 4 and i was swimming in it. i like oversized things and understand that this dress is made that way; however, this was not flattering. i would say i would have needed to size down to a 0 and perhaps it would work but i didn't want to take another chance. the material seemed almost crepey, which i wasn't neccissarily expecting either. bummer that it didn't work out.",2,0,3,General Petite,Dresses,Dresses +995,36,Cute- runs a little snug on me,"Adorable skirt. the eyelet part on the bottom is cut-out so see through but cute and subtle. found it fit a little snug on me- could just be my build, but i ordered it in normal size and 1 size up. the size up fit best.",5,1,8,General,Bottoms,Skirts +9,34,Okay leggings,"The velvet isn't as soft or plush as i thought it would be but these are comfy pants. i won't wear them until next winter, which is fine.",4,1,0,General,Bottoms,Jeans +835,48,Perfect summer tank,This is such a cute and unique top. the fabric is substantial linen but a little rough.. i went with my regular size but the straps are a little loose. i am thinking of having them altered. planning on wearing this with a bandeau. perfect for summer,4,1,0,General,Tops,Blouses +834,59,,"Beautiful blouse. i bought this in cream. runs tts. can wear with jeans, skirts etc. love front and back! very flattering arms.",5,1,9,General Petite,Tops,Blouses +1059,31,Perfectly long,"I love these pants! the pattern is polished and the flowy style is perfect for warm weather. i ordered a small and was worried they would be too short (i'm 5'10""), but they are just right when i wear them just slightly lower than my true waist. my new favorite summer pants.",5,1,0,General,Bottoms,Pants +873,55,Comfy and pretty!,Saw this tee on line and thought i'd give it a shot - the fit is very complimentary and the material is heavenly! i get lots of raves about the casual yet pretty style too. great shirt!,5,1,0,General Petite,Tops,Knits +873,68,,"Like another reviewer, i recently had a baby and ordered this to hide my belly. the m fits perfectly without looking too large, and the sleeves fit me just fine. i love the thicker fabric, and his is he perfect length for leggings.",5,1,0,General Petite,Tops,Knits +834,42,Perfect all occasion top,"Absolutely love! wear it with suits, jeans...anything. the orange color is super unique and the lace is so pretty and seems like it will hold up over time. so glad i purchased!!!!",4,1,0,General Petite,Tops,Blouses +835,38,Had me at first glance,"I saw this top online and had to buy it immediate (which is rare for me). it looked loose and forgiving but had a polished look. it didn't disappoint when i tried it on. however, the straps are a bit loose and will need to be altered. the linen fabric can be rough or itchy, but still a gorgeous top!",3,1,9,General,Tops,Blouses +835,39,Pretty and kind of unique,"I am not sure why so many gave only 3 stars, yes, this top is for a strapless bra, my bra top (where the strap starts +0 was showing, but so nice... shape was ok for me, it does go in at the hem, givinng a bubble-like shape, but it's part of the charm. i dnd't experience the loose straps, but didn't pay attention to that when i tried it on. also didn't notice the stitching was red in the store, but checked, and yes, that's true... love it. + +not an online exclusive, as it was in my store, i pur",5,1,4,General,Tops,Blouses +834,31,Maeve delivers again!,"Like all maeve tops of this nature, i am absolutely in love! maeve always has a cute spin on an otherwise basic top. this top looks great with jeans, shorts, skirts, etc. i purchased it in all 3 colors. the blue is more of a robins egg blue, the orange is a great tangerine color (perfect for us tennessee fans!), and the ivory is a wonderful brownish-white. the ivory is my favorite because it's a very unique color.. i have a ton of white and ivory tops, but i do not have one in a color like this",5,1,1,General Petite,Tops,Blouses +834,46,"Orange color was pretty, poor quality fabric",I ordered a size 16 in the orange. it ran a size smaller than normal size 16 maeve tops. the quality of the material was terrible. it wrinkled and was also so thin that you need to wear a tank underneath. that messes with the look of the lace on the top. the color of the orange was gorgeous.,1,0,0,General Petite,Tops,Blouses +873,61,Best fall tee!,"Works great on my 5'11"" frame. is pretty and feminine. great with skinny jeans and booties!",5,1,0,General Petite,Tops,Knits +873,36,,"Very cute shirt, well made, nice detail, but a little long for my taste but i did keep it",3,1,6,General Petite,Tops,Knits +1059,39,,Super cute and comfy. bottom of the legs have about a 8in slit that is not shown in pictures. also the hem came unraveled after the first wear. worth the money on sale! received many compliments. not see through!,5,1,0,General,Bottoms,Pants +1059,56,,"I've been anticipating the arrival of these pants and was literally at the doorstep with ups. i have a birthday celebration visiting wineries and thought this would be the perfect outfit.it did not disappoint. fits like a glove....very flattering and comfy! i am 5""4 and ordered a small petite. not too short, but still have the option of wearing sandals. i hesitated because of the price - but so worth it!!",5,1,0,General,Bottoms,Pants +835,70,Straps are too long,"This top has a nice print and material. being a full figure, it helps when a material stays put instead of being too flowy. not very keen about the straps. they're a bit longer for me, so they don't stay on my shoulders. i'll keep it and adjust the straps.",4,1,0,General,Tops,Blouses +835,42,Not exactly what i hoped for,"First of all, this top is brown and light beige. i was expecting more of a dark grey and cream. it also has very noticeable stitching that is a very reddish brown. cute, but a little different from what i imagined. the fabric is a casual linen. regarding the fit, i am 5'6"", 123lbs. 27 inch waist, 32d. i ordered the 4 and it fit well. as other reviews have mentioned, the straps are long so the top of the shirt hangs fairly low. i did not find this to be flattering. it made my bust look low and my",3,1,5,General,Tops,Blouses +873,39,Love this top!,"I wore it for the first time this week and received so many compliments. i bought the white one and it's a tiny bit see through, but still love it.",5,1,0,General,Tops,Knits +873,25,Cute details and good cut,"I'm a sucker for lace details that dress up an otherwise plain white shirt. the shoulder and sleeve lace is well done on this top, and the cut is flattering, skimming over the body. i appreciated that the product notes included the length, as i ordered a petite s (i'm 5'4"", 120 lbs) and the fit was perfect. a regular s would have been too long for me. the fabric is soft and fluid. i wish it were a little more substantial, but that's a minor quibble.",4,1,0,General,Tops,Knits +835,46,Super cute!,"Love this top- great for summer- unique in the print. feels great on, a little loose but great for a hot texas summer.",4,1,0,General,Tops,Blouses +873,27,Flattering shirt,"Although i was worried it wouldn't live up to its sticker price, i'm glad i bought this shirt. it is extremely flattering in the way it drapes. the lace details make it seem dressy and special. the fabric feels luxurious. sleeves are almost too short for my long arms, but they are good enough.",5,1,0,General,Tops,Knits +873,41,Great top!,"I wore this for the first time this weekend and loved it. it is long and lean but not baggy or tent like. i'm 6'0"" so i appreciate the length and fit. +will get a lot of use out of this. good w/ skinny jeans and i can't seem to have enough black tops.",5,1,1,General,Tops,Knits +770,49,Cute!,"Was not expecting to like this - tried on and super cute, comfy relaxed fit. looked good with leggings i had on but color will be great with jeans too. will wear both unzipped and zipped.",5,1,3,Initmates,Intimate,Lounge +873,46,Love the jade green,"I love the greenish option, beautiful color. the fabric super soft, and like the peek thru openings on the arms - they call it lace, but it's not really. i'm 5'9 and 140 lbs, medium was good. it is long, but it is what i wanted so works for me.",5,1,0,General,Tops,Knits +873,47,,I love this top! it is long enough for my torso and arms. i am thinking of ordering in another color.,5,1,0,General,Tops,Knits +873,34,Super slimming,"I ordered a size large. i recently had a baby and was looking for a top to hide my baby belly until i lose it. this shirt fits amazingly. i don't find the sleeves to be snug at all. if the shirt wasn't so distinctive, i'd order in several colors. the quality is fantastic for a tee and has a nubbed appearance you can't see in the photos.",5,1,6,General,Tops,Knits +873,53,Can easily size down,"I ordered one size down and it's still plenty roomy. as others have said, the sleeves are a tighter fit, but there is a tiny bit of stretch to the fabric. i'm smaller busted and didn't want the v-neck to get too low, so i sized down one. very cute tucked into jeans or paired with leggings.",4,1,1,General,Tops,Knits +835,65,,"Great fabric, details, construction...but, it is not grey!! definitely shades of brown!! i do like the look & style of this top.",4,1,0,General,Tops,Blouses +1059,59,Fabulous pilazzo pants!,"These are amazing! wide slits on out seam show off your cute shoes! runs large! i'm 5'7"", 140, size 6, hourglass. small was quite loose at waist. xs fits my actual waist and makes length right for flatter shoe <3"" heel. or small petite sits on my hips and makes length right for flatter shoe. both fit. there is ease through entire pant leg. beyond comfortable! doesn't wrinkle. looks great with the roll-neck sweater in ivory and a silver wedge shoe!",5,1,1,General,Bottoms,Pants +835,60,Black muted camisole,Excellent quality! i love this camisole with it's muted shades of black. based on other reviews i sized down from my usual 4 to a size 2 and the fit was perfect and no problems with the straps being to long. a keeper!,5,1,4,General,Tops,Blouses +770,59,,Love this hoodie. i bought a large to fit bigger on me and it works well. love the color and embroidery.,5,1,2,Initmates,Intimate,Lounge +873,50,Spruced up t shirt!,"I bought this in the white in both the sp and the mp. i am 5'2"". i ended up keeping the mp (my usually size at 36c, broad shoulders). i found that the top of the sleeves to be a bit snug and i have normal size arms. if you look at the model shots, you can see that they are tight on top. i also found this shirt to be very long, even in the petite sizing. overall, i kept it as it was slimming, quality made, and the tight sleeve hopefully won't bother me (or shrink!)",4,1,6,General,Tops,Knits +835,33,Cute and flowy,"I'm happy i bought this top. it's very cute and almost a little immature/childish, but with the right bottoms it looks classy. i found it to run large so i sized down one size and it fits good, though the straps can feel a little tight if it rides up. it washes beautifully. will probably not work on large chested women.",4,1,0,General,Tops,Blouses +873,52,,,5,1,0,General,Tops,Knits +834,58,Cute top,I saw this in the store in a display and tried it on. i got it in the sky color which is a lavender blue color. the front and back are both cute. this top can be dressed up or worn with jeans.,5,1,0,General Petite,Tops,Blouses +835,29,,"Very cute top. does require a strapless bra as the straps are further out than most tops, and they also tend to fall down. also, while the top fit well, the top button gaps are far apart and tended to separate to show my chest. easy fix with a snap sewed in.",4,1,0,General,Tops,Blouses +873,33,,"This top runs a bit small, but it's very pretty. i got the ivory and it's beautiful, very form fitting. it is a bit see thru so i will probably wear a tank under it. it's simple tshirt material, so i feel like it should be a bit less $.",4,1,1,General,Tops,Knits +1059,28,,,5,1,0,General,Bottoms,Pants +353,54,Amazing,Hands down most comfortable bra ever!,5,1,0,Initmates,Intimate,Intimates +873,21,,,5,1,0,General,Tops,Knits +835,35,"Gorgeous fabric, but fit is loose","I absolutely love the print on this fabric, and the linen blend is perfect for warmer weather. i do wish this top was more fitted overall--it seems like the silhouette is a bit looser than is ideal. however, i'm keeping this and wearing it! +i'm 5'2"", 95 lbs, and ordered the 00 petite.",4,1,5,General,Tops,Blouses +835,53,Well made detailed,"My size is 4 but because they did not have it i ordered 6. a little big but i can fix it. +the price was very nice. +i thought it said gray but what i got is more brown.",4,1,0,General,Tops,Blouses +873,66,Extremely long!,"Lovely fabric, color and embellishment but this shirt was so long i can't even imagine wearing it over leggings. i felt like i was wearing a dress. there are too many cute tops on the market to bother having this one tailored (i don't buy sewing or ironing). +disappointed.",3,0,0,General,Tops,Knits +1059,51,Sizing off,"These are really cute pants. nice flowy fabric - perfect for dressing up or down from spring to fall. the only problem for me was the sizing. i tried my usual xs/0, (5'7"", 115lbs) but they were huge - as in, pulled them on without realizing there was actually a zipper opening! i then decided to try the petitie in the xs and those fit perfectly but unfortunately they were too short. the regular length were too long and would have needed hemming but that would not have bothered me as it would have",4,1,2,General,Bottoms,Pants +873,36,Cute easy tshirt,"I have been eyeballing this shirt online. during my visit yesterday an associate just happened to bring one out for me to try on as my store had just gotten it in. happy coincidence! + +the fabric is very soft and comfortable with some give/stretch. the sleeves seem sturdy like they will hold up in the wash. i thought the shoulder area was fitted but not too snug, however i have smallish shoulders. the v neck wasn't too low (no cami needed) but low enough to be a little sexy/not dowdy. it's fai",5,1,3,General,Tops,Knits +834,40,Lovely top,"This top is lovely and flowy! it fits true to size, and the lace detail at the neck is perfect to make this top stand out. i felt like it was a little sheer, but it wasn't problematic enough for me to take away a star :-)",5,1,0,General Petite,Tops,Blouses +834,38,Beautiful and feminine,"I bought this blouse in two different colors -- the orange and ivory -- and kept the orange. the style and fit were very flattering. the drape of the fabric, along with length (hitting right below waist) and sleeves are very flattering. i am 5'4'' and 118lbs and the 0 fit me perfectly. i have muscular arms and the capped sleeves are perfect. i returned the ivory due to the sheerness of the fabric. it is quite sheer, which is a problem if i wanted to wear this for work. also, you can see the dark",4,1,0,General Petite,Tops,Blouses +1068,47,Relaxed fit,I think these are a cute pant. they run large in the waist/seat area but not in the length. i'm 5'4 and this gathered at my ankle. i like them even though i have to keep hoisting them up. keep in mind the tie to tighten the waist does not stay,4,1,1,General,Bottoms,Pants +1081,35,Perfect everyday dress,"I agree with one of the reviewers that the armholes on this dress are big; however, the garment is tight around my chest area (even though i am not chesty) and lays next to my body perfectly so this is not problematic. i don't feel like they are gaping holes, there is just more area there than i would be used to. i like the fabric this is made out of. it is not quite as soft as i had hoped, but it is comfortable. i would say it is a medium weight-a little more than i was expecting. the flare is",5,1,3,General Petite,Dresses,Dresses +895,20,Great peplum,"I can't believe how much i paid for this top~got free shipping special; so worth it. i ordered the blue and i love it! size small fits perfectly. i am into peplum tops lately, they are so flattering with highwaisted jeans. i usually wear a size 4-6 in retailer.",5,1,7,General,Tops,Fine gauge +1076,61,Beautiful dress,Fits true to size. i am a size 4 and it fit perfectly. nice quality. fits like a glove.,5,1,1,General,Dresses,Dresses +876,44,Cute top,This is a cute top but a little pricey for cotton t shirt material. the arms and shoulders/armpit feel a little tight but is loose and flowy below the bust. it is not as dressy in person as it appears in the photos. a cute top for jeans or leggings as the length falls below the hip.,4,1,1,General,Tops,Knits +1110,36,,"Easy to wear! cute, comfy...will be a go to for summer.",4,1,3,General,Dresses,Dresses +862,35,,"A flattering soft basic! i'm 5'2"" 120 lbs and purchased the small on sale.",4,1,0,General,Tops,Knits +1081,31,Had higher hopes,"I had higher hopes for this dress and perhaps should have sized up, but it was not very forgiving in the stomach area on me. i still love the dress and the look of it on the model, but was less than thrilled with it on myself. i am 5'5"", 135lbs, 34c, and ordered a size small.",4,1,15,General Petite,Dresses,Dresses +1110,63,Beautiful summer shift,Art on a dress- belt on the back makes it interesting,4,1,2,General,Dresses,Dresses +876,43,,"I just got this and couldn't wait to wear it to work today. it is such a pretty designed top. unfortunately, it is falling apart as i write this review. one sleeve is unraveling. there are strings hanging off all over the lacy arms. am so disappointed in the quality. i'll be sending it back when i get home.",2,0,1,General,Tops,Knits +1110,39,"Beautiful colors, fun back","I tried on the xs in the store, and i don't need a petite in this, but perhaps a xxs. it is on the shorter side, so no great on my muscular thighs (if petite) whereas the regular size hit me just above the knee. the cut is away from the body, a bit ""a-line"", but not fitted. the colors are gorgeous, but i think this is more of a casual dress, like brunch with the girlfriends, for example. love it... it is now in my wish list for alter :-)",4,1,5,General,Dresses,Dresses +1081,39,"Comfy, big armholes , ok","I tried in the usual xs but the arm holes were big, and the dress just looked too big for me. i am not sure bout ordering petite as it also may be too short. so i decided to leave this one behind. material is really soft though, and the cut flattering if it fits which is why i recommended. i do have a lot of grey dresses however. for reference i am 5'1.5"" and 115 lbs...",4,1,4,General Petite,Dresses,Dresses +895,73,Loving it!,I bought this in both yellow and green. what a gorgeous and flatttering top that fits beautifully. i love this top!,5,1,0,General,Tops,Fine gauge +1110,22,,"I bought this dress for my college graduation, and it's truly gorgeous! i love the loose, breezy fit, but it did feel just a little bit sack-like on me, definitely more-so than i expected from looking at the product picture, even after sizing down to a small (which was comfortable, and i'm usually a medium). i ended up pairing it with a small belt. + +really pretty dress, just be advised - leaves a *lot* of room around the waist!",5,1,0,General,Dresses,Dresses +1110,29,Beautiful summer dress,"I tried this on yesterday in the store because i was drawn by the rich purple color and pretty print. i took my usual size 2 (5'2"", 110 lbs) and while it fit well, it did leave too much room in the bust and around the shoulders/arms. i had the store order me a 2 petite, and am confident that this will help. the shape of the dress is a bit straighter than it appears in the picture and it didn't gather in the waist at all, but i still found it flattering. i'm sure i will get great use out of this",4,1,0,General,Dresses,Dresses +1068,42,Love these pants!,I love these pants! i ordered mine in green and retailer definitely offers vanity sizing. but i love them super cute and comfortable. i wish they had more colors available. these were a great buy!,5,1,0,General,Bottoms,Pants +1110,29,So cute!,"Super cute dress - swingy, flattering, easy to wear. the pattern is great, and i felt like it was the perfect length for me - though i'm short, so it may be too short for someone taller. the dress runs big. i'm usually a 6, but i got this is a 4. only complaint is that the pockets add unnecessary bulk.",5,1,10,General,Dresses,Dresses +895,64,,Top is well made. runs large the arm holes were too big and sagged under my arms showing my bra. go a size smaller than your normal size.,3,1,0,General,Tops,Fine gauge +1081,42,"Beautiful drape, not too short, runs large","I have a racetrack bra that works with the arm holes (a bit large - like you see on the model), so i am not concerned about them. i may or may not have my tailor tack them in. length was good, knee length (some of retailer dresses are a tad short for my 40-yr old self). shape was flattering. i've some weight on my bum and things, even though i'm small. the back of the dress hung well, not clinging to the derriã¨re. the swing shape didn't overly accentuate my hips. i really love the dress. it's a kn",5,1,3,General Petite,Dresses,Dresses +1068,49,Love these pants,Bought these in 28 had to return for a 27p . love them!! i order the 2 other colors,4,1,0,General,Bottoms,Pants +1110,27,Pretty but big.,This dress is very pretty and we'll made. it runs pretty big though and i would suggest going a size down.,3,1,0,General,Dresses,Dresses +895,83,Very cute top but runs large,"I ordered this top in all 3 colors, love the peplum.look.. +returned the green, which is actually my fav color but it wasn't a pretty shade of green and i don't think that it was a flattering contrast with the cream,, especially going into spring/summer.. +kept the yellow and the navy and love.. +the navy is classic and the yellow is soft and flattering. +it's a very cute top, runs a little large, but is very pretty.",4,1,12,General,Tops,Fine gauge +1075,40,Nice fit but runs small,"I typically wear a small or x-small in most brands from retailer, but decided to order a small and medium in this dress since it's a non-stretchy fabric. i'm glad i did because the medium was a good fit and the small would have been very snug. so i would agree with the previous reviewer and say that this dress runs at least a size small. otherwise i really like the fit the fabric.",5,1,5,General Petite,Dresses,Dresses +895,67,Too cute!,"Just as pictured, this little top is just too cute! the fit is exceptional, and quite flattering. another very feminine top, and the yellow color is perfect! i love pairing yellow with black, of course...but also with reds, blues...and it looks great with white 'pedal pushers'!!! i think they call them 'cropped' now a days! at any rate...this is a first rate top that i highly recommend!",5,1,5,General,Tops,Fine gauge +559,73,"Great fabric, but runs small","Love the look of this and the fabric, but runs way small. i usually wear a 0. ordered the 0, then 2. just got the 4 and it's still too small. will be returning all 3.",2,0,14,General,Trend,Trend +735,39,,"I was really disappointed when this arrived and i discovered that it's basically see-through. it's well constructed, it's just a really thin material.",3,0,12,General Petite,Intimate,Lounge +1075,53,Nice summer piece,"This is a cute dress. the quality is very good for a dress of this type. the fabric is not too thin and the stitching is perfect. i do think it runs a little small. i typically wear an xxsp or a 0p and i purchased this in the regular xs. regular xs is typically way too big, but i took a chance on this one because i really liked it and i also like my dresses a little bit longer than shown on the models. surprisingly, it fit well in the chest and the armholes were not too big, as is often the case",5,1,8,General Petite,Dresses,Dresses +1078,34,Perfect summer into fall dress,"Love this dress. the fringe makes it so special! it's a little shorter than i anticpated - it hits me right about where it shows on the model and i am 5 2"". i love the length. can't wait to wear this.",5,1,3,General,Dresses,Dresses +1078,77,Beware,"I just got this dress in the mail and tried it on. i loved it the fit was perfect tts, and it is very soft and comfortable. however, it appears that the black striped area has bled onto the off white portion and there are stripes of gray across the chest and blotches on the sides of the dress. i am sending it back and ordering another and hoping for the best. i am very concerned that when it is cleaned it will bleed again. i love the dress so much i am willing to risk it, but i am doubtful. so b",3,0,1,General,Dresses,Dresses +1081,29,Great dress!,"Love this dress! i agree with some of the other reviewers, the arm holes are a little low but not a deal breaker. i'm 5'8"" 120lbs. and ordered the xs and it fits perfect. would definitely recommend!",5,1,1,General Petite,Dresses,Dresses +876,42,Beautiful detail,I purchased this in black. as in the other reviews the lace detail is a little snug in the arms but it did stretch. i did not have a problem with any fraying or quality issues. the shape is very flattering. i've been asked where i bought this several times.,5,1,0,General,Tops,Knits +982,26,Beautiful color but strange texture,"I wanted to love this kimono...it is such a beautiful color and would work well with so many things in my wardrobe, but alas it went back due to the strange feel of the fabric...not a soft touch and because it runs small. i bought the m/l and usually wear a 12/14 but i couldn't bring the kimono together in the front (for a belting option).",2,0,2,General,Jackets,Jackets +876,45,Don't waste your money,"As other reviews have mentioned, this top has serious craftsman ship flaws. strings hanging off embellishments on sleeves and they begin unravelling as you try the top on. i wanted to love but sadly, returned asap.",2,0,2,General,Tops,Knits +1110,35,"Breezy silk, rayon lining = breathable","So often you find dresses in a cool, breathable material like rayon or silk, but the manufacturer lines it in hot, non-breathable polyester. which leaves you sweating on a hot summer day (or night). thankfully, someone at antropologie knows what they're doing and this gorgeous silk dress is lined in rayon. thank you to that person. + +yes, this dress is a bit on the short side. with it's modest neckline, it looks like it could be great for work, but it does hit a bit above the knee, so if you wo",5,1,6,General,Dresses,Dresses +1078,28,"Beautiful color, great quality",Just received this dress and i am in love! the colors are beautiful- perfect for both summer and fall. the fabric is very soft and the fringe detail adds a nice feminine touch. i was disappointed when i missed out on the first fringe stripe shift dress from holding horses at the beginning of this summer. it was completely sold out in my size 0. however when i saw they restocked the dress in a new color (and now lined yay!) i had to buy it. would defin recommend!!,5,1,4,General,Dresses,Dresses +1110,43,Definitely cuter on,"This dress didn't do much for me on the hanger but it was on sale and thought i would try it on in the store. so glad i did, definitely cuter on than just hanging there. the back has a belt feature that adds a little structure. the colors are nice and bright. will be good for our hot austin summers.",5,1,0,General Petite,Dresses,Dresses +1110,53,Great summer dress,"Very comfortable. love the built-in lining. it fits loosely, but i don't like anything binding so it works for me. length is fine, i could easily wear it to work.",5,1,0,General Petite,Dresses,Dresses +895,32,Beautiful color,"The shirt fits very nicely, a little large but very confortable. amazing color (i got it in green)",5,1,0,General,Tops,Fine gauge +1076,56,Great dress!,This looks beautiful and fits true-to-size. the material has enough weight so that it hangs well. this is a very form-fitting dress - i wouldn't recommend it to someone uncomfortable with a close fitting style.,5,1,0,General,Dresses,Dresses +1110,32,Pretty color and design. odd fit.,"I tried a regular 0 in-store and it was more billowy than i would like. i'm usually a size 2/4 and 5ft tall. i ordered a petite 00 and i'm hoping the fit will be more snug and that the length will be more proportional to me (the reg 0 hit just above my knee, but it might be cuter mid-thigh). it's a cute dress that can be dressed up or down and i hope it will work out.",4,1,0,General Petite,Dresses,Dresses +895,52,Cute but large,"I tried this on in the navy/white combination and loved it, except it is cut rather full or large through the waist especially. if you can size it down so it fits you, you will love it. it is very soft; an easy top to throw on, feel comfy, and look fantastic! i sure wish it was smaller :/",4,1,1,General,Tops,Fine gauge +1068,35,,,5,1,0,General Petite,Bottoms,Pants +895,41,Detailed + cute,"I love this top! although it is a tad big, i expected this because the moth brand usually does run a tad big. however, i am still able to wear it without any nerves that it's too big.... hope that makes sense! the navy was more lovely with my skin + hair, but the yellow was so pretty too!",5,1,2,General,Tops,Fine gauge +1110,32,Wish i liked it,"I wanted to like this but it just didn't have much of a shape, not flattering at all. maybe if i was taller?",2,0,0,General Petite,Dresses,Dresses +1081,38,Big arm holes,"I tried this dress on in the store today, and the armholes were so wide, it showed my bra under the arm almost to the bottom, and it showed part of the side cup of my bra at the front. while the dress seems like it will be really comfy, the arm cuts are so unnatural, i had to pass. i did try going down in size, and petite, and neither of those options worked to fix the situation.",3,0,3,General Petite,Dresses,Dresses +1078,31,,"Love the colors on this adorable, flattering style!",5,1,0,General,Dresses,Dresses +1078,39,,"When this dress first came out i thought it was weird. then i started seeing people on instagram wearing outfits that look super cute and i wanted it, but sold out. so when this version came out i snatched it up right away. it's different from anything else i own, very quirky and in style details and has a bit of a man repeller vibe, that is why i love it.",5,1,0,General,Dresses,Dresses +930,44,Matter of opinion,"I have been a big fan of this canadian designer so when i saw the sweater on the web, i immediately ordered it. on the website, it looks very modern and edgy chic. i was heartbroken when i saw it in person. when i opened the bag and put on the sweater, i noticed a lot of little black marks on the bathroom floor. it came from the sweater. size small was swimming on me and the holes on the shoulders, which supposed to look modern...well, the thin cheap material the sweater looks like it's ripped.",3,1,1,General Petite,Tops,Sweaters +1110,31,Feels amazing,"It's a casual dress with a luxurious feel. very flowy, but the back panel gives it a bit more structure. i like that it graces my body without showing any lumps. i will very much appreciate it on hot days! i'm anticipating a big of headache when ironing it, but i appreciate that it's not dry clean only. i'm on the shorter side of average height and it hits me mid-thigh.",5,1,0,General Petite,Dresses,Dresses +1110,36,"Cute print, but lacking in shape","The print was what attracted me to this dress. and the material is soft and comfortable. however, the fit was all wrong for me. it had a great belt in the back, but hung very loosely in the front. it reminded me a little of some of my maternity dresses. maybe sizing down would have helped, but then i feared it wouldn't fit my hips right. this dress may look better on someone who isn't as curvy. it really looks great on the model, but not on me.",4,0,1,General Petite,Dresses,Dresses +895,43,Low maintenance,"I love the top for its minimal fuss - no ironing, yay! definitely go 1 size smaller than your regular size. i got my usual small size but was swimming in it at the waist. the pattern and material are great! i bought the navy blue and might also get the yellow. i would have liked it to be slightly longer, since i have a curvy bottom. i am 140lbs and got the small.",4,1,0,General Petite,Tops,Fine gauge +822,65,"Beautiful option with ""stand out"" detail!","This is my first tracy reese piece, and i love it already. the somewhat edgy, unique, grommet and navy embroidery on the neckline and upper arms is very flattering on the body. the silky cotton texture surprised me; it's 60% cotton/40% viscose. it drapes well and feels good on. i will definitely enjoy wearing this for work or nice casual. i love that it is regular bra friendly. and that i don't need to stress about a low neckline. i am size 8/medium, 34f, and the medium is terrific. i got the an",5,1,2,General,Tops,Blouses +949,65,Angel of the north 100% wool beauty!,"What attracted me to this beautiful piece is the lure of angel of the north quality and design. i know that this sweater/jacket will be worn and enjoyed this fall / winter and years to come; it's a classic beauty. when i put it on, it has a comfortable vibe, high quality, medium weight, dark black wool, and beautiful lines. i love the deep collar, slightly lower back hem, and inverted pleat at back waist to give a slight flare to the drape .it accents a feminine look and will be an invaluable st",5,1,5,General,Tops,Sweaters +383,35,Really soft fabric,"The fabric is super soft and comfortable and the look is cute, however the drape on the front crossover is not great and doesn't flatter well. the shorts will probably run a little on the short side for some - i'm very short (5') and the length is great for me but i'm guessing not for the average height.",3,0,0,General,Bottoms,Shorts +875,27,Perfect spring top,"This is a great piece, it fits really well and the fabric is nice and soft. it is a good thickness so you don't have to wear a shirt underneath.",5,1,1,General,Tops,Knits +875,57,,"Love this tee! the fit is true to size, and very flattering shaping. not too tight, not too baggy, good length. i love the stitching detail on the top. the material is thick enough that you are not forced to wear a cami under it. my only concern is that it says to hand wash, dry clean acceptable. i have had some bad luck with retailer tops shrinking. i'm not going to risk it and dry clean it. normally i would not want that expense or hassle.",4,1,8,General,Tops,Knits +1094,39,,Looks great on. i am 5'11 and the length is perfect hits above the knee but not too short. also room in the chest area.,5,1,0,General,Dresses,Dresses +992,44,Circa 1970 peasant style skirt,"I just revieved this skirt and like it a lot. they did not have my size in petite so i ordered the regular length . it is very long. i am 5'4 1/2 and tried it with 4 inch heels and still had about 2 inches dragging on the floor and will need to be hemmed. in this picture, the stitching around the flowers appear white but it is actuallly a shiny, delicate gold thread in person. hopefulluy it will not fray with wear. i initially got a white top to go with it and it works, but i think a red or navy",4,1,7,General Petite,Bottoms,Skirts +841,24,Cute and versatile top,"As soon as i saw this blouse in the store, i fell in love with it. i thought it was a little too expensive for what it was, but, hey, that's antho for you. i luckily had a gift card and a 15% off bday promo, so i got it at a good discount. i love the fit of it. sometimes button-down tops like this are too tight in the arms or pulls too much around the chest, and this one doesn't. when i do wear it, i have to be conscious of the buttons because it can be a little gappy in between the buttons when",4,1,0,General,Tops,Blouses +383,31,Better than the photos,"Ok, so first things first. i'm 5'4"", 125#, 4/27, 32g and i took a small in this. it's your typical cloth/stone fabric and feel sooo good! +i do agree that this romper is on the shorter side but i liked that about it. it is far more flattering than the modeling photos online. it doesn't look that ""oversized"". i can see where taller ladies won't go for the shortness but at 5'4"" that's just not an issue for me. the bottom is very flattering and doesn't do that ""long grandma butt"" that some rompers",5,1,2,General,Bottoms,Shorts +841,39,Cute,"I actually like this better on the instagram picture than on the model... anyway, i ordered the xs petite (for 115 lbs, 5'1.5"") and it fits really nicely. not too short. the material is nice and soft, nad looks like it may not wrinkles, which would be a bonus... the little gold buttons are super cute, but you can't really wear this untied, so it is pretty much a strictly tied short. sleeves are flattering... i think i may keep it :-)",5,1,3,General,Tops,Blouses +875,46,"Ran small, pretty top & good quality","I ordered a size xl. it ran small, especially compared to other retailer xl tops. the quality of the material was great as was the embroidery. i wish it fit because i definitely would have kept it. very pretty tee.",4,1,0,General,Tops,Knits +841,53,Dry clean only!,"I saw this in my local retailer store and thought it was super cute. tried it on and was delighted. the top fits nice and looks crisp and nice - a great nautical look. the brass buttons add a pop to the shirt that is very nice. i usually wear between a medium and large in retailer shirts and the large fit perfectly. i am a 34d for reference and usually a size 12 on top. + +i bought the top and didn't notice until i got home that it is dry clean only! yikes. i hate that. this is a casual top to me.",3,1,6,General,Tops,Blouses +875,44,Beautiful shirt,"I tried this on in the store. the embroidery is very nice and the shirt is very flattering. however, because of all the stitching, the shirt is a bit stiff on top. there is not much give. i am also concerned that after washing it, it will look terrible, so i passed.",5,1,1,General,Tops,Knits +866,48,,,5,1,0,General,Tops,Knits +828,67,,"Cute shirt but no worth full price for sure. runs small in the bust. and i am not busty at all. definitely order up a size. i am returning mine, however, because of size and price.",3,1,3,General,Tops,Blouses +841,59,Love it!,"Ok, so the shirt is ""dry clean only"", however, i like it so much that i'm not going to knock out a star in the rating. the quality is really nice and it was not too short for me ------ i could reach up without worrying my stomach would be exposed. i'm 5'6"", 36c and 125 lbs, and the size 6 was perfect. wonderful for work and also great with jeans. i know it's a little pricy, but it's cute and unique --- plus right now it's 25% cheaper.",5,1,3,General,Tops,Blouses +1094,41,,,4,1,0,General Petite,Dresses,Dresses +862,54,Looks like shapeless lingerie,"This product was very disappointing. fabric was thin, it has no shape and hangs like a pajama top. so it's not flattering at all. at $78, it's really overpriced for what it is. it might look good on someone who has the perfect body shape (what wouldn't?), but they would probably still look like they went out in their pjs. i'm 5'9"" and not well-endowed (a b), so it did nothing for me.. + +also, the online picture of the moss version looks like it's a grey/black combo. it's not... it is really green",1,0,4,General Petite,Tops,Knits +941,65,Nice and versatile,"Just received this and know i will get a lot of enjoyment from it. cute fit and since i have had something similar in the past, i know how versatile it is. nice soft material too!",4,1,1,General Petite,Tops,Sweaters +1094,40,Beautiful fun dress,This is a great fun dress! it's very unique and well built. my only complaint is that the colors are not the same in the photo. the real colors are black on top and a bright red with shiny torquoise thread running through it. it's still gorgeous!,5,1,0,General Petite,Dresses,Dresses +875,64,"A little boxy, a little tight but great embroidery","This top is really cute and the cap sleeves are perfect -- what i didn't notice from the online photos is that the back of the neckline is also scalloped which is a really sweet detail! however, i thought this t was a little tight through the chest (and i'm only a b cup!) and the fit was a little too boxy. the length was also just a bit wrong for my waistline/hips and in general, reminded me of the tops i used to buy from a popular british clothing catalog. overall, the quality is beautiful and",4,1,0,General,Tops,Knits +383,40,Do i dare??,Lovely! feels like you are wearing silk and hits for comfort in all the right places. still mulling whether the short length is appropriate and if my athletic/full lower body is complimented by this cutie...needed a second opinion to push me over the top and take this home as a summer staple,4,1,2,General,Bottoms,Shorts +862,37,Great 3 season top,"This top will be great in 3 seasons. i can wear it alone in summer to dress up and with a blazer or sweater in fall and winter. the velvet is beautiful and luxurious without being excessive or too much. it's very soft and comfortable on the skin, although a little larger than i expected. i ordered my usual size small and probably should have gone down a size.",5,1,0,General,Tops,Knits +921,35,"Well made, but doesn't always like to stay put","This is well made and beautiful, but it sometimes slides off so i feel like i'm adjusting it somewhat regularly.",4,1,1,General,Tops,Sweaters +1094,48,Love this dress,"I ordered this online and love it. the fabric feels nice and it if fitted on the top then the bottom flows. i ordered a 4 which is my normal dress size and it fit perfect. comes a little above my knees. i'm 5'6"".",5,1,1,General Petite,Dresses,Dresses +822,50,Surprised how much i likee this!,"I ordered this on a whim and didn't expect to like it as much as i do. it is very flattering on and seems like you could dress it up or wear it more casual. the back is all lace, in the photo she must be wearing a cami because it is see through in person. some people may be able to pull off a black bra but i am wearing a cami, which also helps with the low cut in the front. it has sort of a flirty a line shape to it, my top is a bit shorter on me than the model photo. the top is also well made,",5,1,1,General,Tops,Blouses +875,30,Nice casual top,"Very pleased with the fabric and design of this. it is thick, but not heavy, and the cutouts in front fall so that you don't really have to wear anything underneath (there is one cut out pretty low in the middle that i didn't initially notice, but wasn't really a problem). i'm 5""4/b cup and i bought the small but would have been better with a medium as the small kinda pulled through the chest. i couldn't wear anything over it without it pulling the whole top up. it's also a bit shorter than i th",5,1,0,General,Tops,Knits +941,66,Darling,Wasn't sure what to expect but i like it. ordered size large and it's a perfect fit. the color is a blush beige. it falls at the top of my hips. i don't think you need a camo under it because the holes are small. it's a sweater type knit that's substantial but not heavy. love that it ties at the shoulder to adjust the fit and length.,5,1,0,General Petite,Tops,Sweaters +828,39,Soft flannel top,Love this top. so soft and it fits true to size. i am a 36b and always wear a large. i am a size 12 in most tops and dresses. this top is flowy and comfortable.love the purple color. wish there was a large in blue left so i could order that too. love it!,5,1,0,General,Tops,Blouses +841,26,Summer plaid,"I love dark colors and i loved the summer touch to this top that i feel like i can wear it year round! the little anchors on the buttons are such a cute touch (very retailer). it does run slightly smaller, but not in an extreme way. i'd love to see more styling options for this top because i'm a little stumped at how to wear it outside of my white high waisted shorts, haha.",5,1,1,General,Tops,Blouses +1008,29,So bulky,These fit around the waist but there is so much fabric and it poofs out and looks awful and bulky. no way.,1,0,1,General Petite,Bottoms,Skirts +841,57,,"I tried this shirt at my local retailer and absolutely loved it ...until i read dry clean only!!! +really retailer? i know you can do better than that...",1,0,2,General,Tops,Blouses +1008,43,"Classic, retro culotte style","Love these.they are a lovely gauzey cotton so they actually feel light. they do have volume however i don't believe they make you look bulkier though i suppose that depends on body type and how they are styled on top (i first wore with a form-fitting sleeveless chambray button down). that said, i sized down which meant the waistband was really too snug and so i sewed the button over to allow more room, which is why i gave them four stars. they have an elegant retro feel, versatile for spring and",4,1,2,General Petite,Bottoms,Skirts +1094,26,Fall fun,"This dress is amazing! love the fit, quality and design. so unique and is perfect for dressing up or down. wore it to a wedding and plan on wearing it to work. also, i'm a tall girl (5' 11"") and this dress was such a good length for me. no one likes a dress that's too short. i ordered a size 8 and it fit perfectly around the waist and chest.",5,1,3,General Petite,Dresses,Dresses +1008,48,"Good concept, poor execution","I loved these on the hanger when i saw them in the store. i liked the fabric, but found the full cut of the pant added a ton of bulk to my hips (and i don't have big hips). i also thought the waist was a bit snug while the rest of the pant ran tts. they went back.",3,0,2,General Petite,Bottoms,Skirts +875,41,Gorgeous tee!,"This is such a gorgeous tee with beautiful embroidery. the colors are exactly as shown and while i take petite sizes at 5""1, i like the length of the regular for myself. i'm 104 pounds and tried the xxs but found it to be too fitted and went with the xs in the end. i do feel that it fits tts and that is just a personal preference.",5,1,3,General,Tops,Knits +383,42,Super short shorts...,"Looked really cute on the hanger, so i took it with me into the dressing room. the fabric is super soft, and the top is very flattering however the bottom is way too short! you can't tell from the picture but the sides are rounded and go up higher on your leg. the model has the waist band pulled lower than i think you'd most likely be wearing it making the outfit appear longer. i wish i could pull this off...maybe i'm just too old for it.",2,0,1,General,Bottoms,Shorts +383,50,Easy to dress up or dress down,"I absolutely love this romper. the chambray material is super comfy and easy to wear. i ordered a size up (l ), and i'm happy i did bc it would have been a little too tight in the arm area to squeeze into and gave a little extra wiggle room in the belly area. for reference i usually wear size 8/m and i'm a 34c",5,1,0,General,Bottoms,Shorts +936,34,Cute layering option for fall,Color and style was pretty but the sleeves were so long i had to return it. cuffing the sleeves wasn't an option because you would lose the cute piping detail and see the inside seam.,4,1,3,General,Tops,Sweaters +941,48,Unique sweater like summer top!,"I fell in love with this piece the moment i saw it. unfort they were out of the s, so i went with a medium. fortunately for me, this piece runs true to size and so while slightly large, i will still keep it. the material is sturdy and of good quality, the buttons are large and noticeable and the ties by the shoulder are not flimsy. great piece!",4,1,0,General Petite,Tops,Sweaters +780,44,Great tee,"Picked this up yesterday in the muted teal. great shape, great color. the pink one is way brighter in person and the green, i think, is more of a forest green. each one was a little different. super cute. good price.",5,1,3,Initmates,Intimate,Lounge +1059,41,Odd fit,"I thought the photo of these pants was so cute. when i got them in the mail i opened the package and just began to laugh over how long they were. i held the waist up to my chest, just below my shoulders and the pants still hit the ground. i am not a short woman! i ordered a 14, i am 5' 6"". i also found the waistband a little small in relation to the size.",2,0,3,General,Bottoms,Pants +780,33,Yes yes yes,"This top immediately caught my eye in the store. not only that, it was the pink color and i don't usually gravitate towards pink. i live in a warm weather area so i can get good use of these tops year round. i say tops because i bought a second top in the green a couple days later. you can definitely see your bra when you raise your arms but this top is just so soft and breezy.",5,1,0,Initmates,Intimate,Lounge +1078,35,Beautiful pattern,"This dress is true to size and great for the winter months. it's very comfortable and not scratchy at all. i love the colors and patterns on this dress. the buttons are a nice detail, but after wearing this dress twice, one of the buttons has already fallen off. they don't seem to be sewn securely. i am tall and this dress falls as shown on the model.",4,1,0,General Petite,Dresses,Dresses +1198,68,Cute and comfy,"This is a great every day dress. the buttons in the back make it very figure flattering, and i love the long sleeves. the fabric is light, so i'll definitely be wearing with leggings. + +it's a little tight in the shoulders, which is pretty standard for this brand for me.",5,1,0,General,Dresses,Dresses +1059,36,Love love love,"I've been searching for wide leg trousers for what seems like years. and finally, i have found them--and on sale!! +i agree that these trousers are long for ladies of average height. i am fairly tall (5'8"") and the length is perfect for me. i don't anticipate that i will have them hemmed. +i really love the detail of the tie waist. one could wear these with or without the ribbon belt. i would say that the button closures are a bit less than substantial for the quality and weight of the fabric. +i s",5,1,3,General,Bottoms,Pants +1078,35,Stunning design; beautiful winter dress,"This dress is even better in person than in the photos online. the colors are vibrant, the material has a nice, warm weight to it, and the buttons give the whole dress that something extra to make it special. i only wish the dress came with a couple of extra buttons, as the first time i wore it one of the buttons came loose and i had to sew it back on to make sure it didn't fall off. + +the dress does run a little small, i think - i normally am an extra small, but the small fit me very well.",5,1,1,General Petite,Dresses,Dresses +1157,23,Summer ready,I got the blue print and i love it. easy to match with any bottom really. i like that it can be made strapless.,5,1,1,Initmates,Intimate,Swim +1078,33,Beautiful!,"This sweater dress is very beautiful in person. the colors are very ""fall"", i actually decided against it only because i felt it was too busy for my personality. as for the fit, it runs fairly true to size, maybe slightly small. i tried on my usual medium, but i think i would have sized up for a more relaxed look. for reference, i'm 5'6"", 135 lbs, and wear a size 6. this could be quite a stunning piece on the right person!",5,1,0,General Petite,Dresses,Dresses +1059,39,Why so darn long?,"I don'tr even know why they btohered making a tall size for this, i would need a 6-7 inch heel for the petite version, which means regualr sized people should get petite. +also, bigger, as in loose, i tried 0 and 2 and both ewre biggish (thopugh i could honestly not tell the difference). sales person told me to try 00, so we shall see... i will need to hem them if i kleep them though. + +bronze color is very nice, so is balck, i ordered both for comparison. + +lastly, cut is very flattering,especiall",4,1,8,General,Bottoms,Pants +1078,32,Fabric stretches throughout the day,"This dress is beautiful. very vibrant and rich looking...however, after wearing it to work the back of the dress was completely stretched out from sitting in my office chair. when i stood up a little bubble remained around my butt. not attractive. i wanted to love it but it's going back.",3,0,2,General Petite,Dresses,Dresses +1078,38,So disappointed!,The armholes on this dress are totally bizarre. i can't believe no one else has commented on them yet. i am a size s on top and m on the bottom so i usually try on both in dresses. i tend to be a small/ size 6 in retailer. the armholes are so long that the dress doesn't lay right on top. i showed it to on of the clerks in the store and she agreed with me. we looked at all the others and they were the same. going up a size made it way worse. this dress might work for someone with really broad shoul,1,0,6,General Petite,Dresses,Dresses +1080,54,A disappointment,"This dress looked gorgeous, light and lacy in the picture, but when it arrived, the ""lace"" that appeared gold and black in the photo was more a solid brown pattern against the black which was not attractive. the inner sheath was made of a heavy, sequined material. it was uncomfortable, scratchy and felt like i was searing chain mail. it also added bulk to the dress, so that i looked ten pounds heavier. i can't imagine why they would design this delicate dress with such a heavy inner slip. the si",2,0,2,General Petite,Dresses,Dresses +1078,33,This dress is why i love retailer,"Everything about the dress is worth it. it's true the buttons are loosely sewn on, but that's easily fixed. i'm a slim person but broad in the shoulders, so i had to exchange the small for a medium because it has a narrow, fitted construction. large-chested ladies or athletic types should size up.",5,1,1,General Petite,Dresses,Dresses +1078,48,,"This is a beautiful dress! i love the patterns, the beading and the texture. however, i have returned it (size medium - my usual size) and asked for an exchange up to a large (fingers crossed it will be available!) because the shoulders are very narrow. i am fairly tall (5'8"") with an athletic build. the body fit was a bit tighter than i expected also but not really an issue. however, the shoulders were obviously tight making it look too small and uncomfortable. yikes! i sooooo love this dress a",4,1,5,General Petite,Dresses,Dresses +872,50,,"One of the most comfortable tops i own. fits loose, such a soft fabric. looks cute. love it!",5,1,0,General,Tops,Knits +1078,23,That dress,"This dress is perfect for any occasion, it looks great with every shoe and is flattering on.",4,1,0,General Petite,Dresses,Dresses +866,43,Quality,"Great peplum top, beautiful whine color. very thick material. i'm hourglass figure, 36d top so it was very flattering",5,1,3,General,Tops,Knits +1078,41,Best dress ever!,"Omg i am absolutely in love with this dress, i saw it on line and knew immediately that i had to have it! i decided to go into the store to try it and it looks even better on than it did on the website. the a-line shape is very flattering and the retro pattern and colors are amazing! the only down side if there even is on is that it is a little tight across the chest but i am a 36ddd so sometimes that happens, i just took a large rather than my usual medium. other than that, this dress is my fav",5,1,0,General Petite,Dresses,Dresses +1059,33,,"Like other reviewers have said, this item runs extremely long and large. i could have fit my body in one pant leg they were so wide--much wider than any standard wide leg pant i've owned. sadly had to return.",2,0,1,General,Bottoms,Pants +1080,33,Less delicate in person,"I coveted this dress for so long, but this was a case of the photo giving me a different visual impression than seeing it in real life. the ""gold"" patterns on top aren't shiny and delicate in person as i had imagined, and they actually make a very strong impression up close (and are painted on, it seems). the mesh they lay on is also more coarse than i had hoped. the coolest part about this dress, though, is the shiny, sequined black underlay. the photo doesn't do that component justice. i was s",3,0,1,General Petite,Dresses,Dresses +841,38,Weird unflattering shape,"I think this blouse would work for petites. it is super short and boxy. looked nothing like the fit on the model. sad to return it, love the print.",3,0,7,General,Tops,Blouses +1078,48,"Cute, casual knit dress.","I like this dress very much. the colors are great and the style cute and casual. its perfect with a pair of cognac riding boots and tights. +it really is depicted well in the model photo, although i think it may be cut somewhat shorter than it appears in the photo. i am 5'9"" and its shorter on me than on the model who, i imagine, is taller than me. +the dress is made of a substantial, tight knit material. i found it to be a bit boxy so i washed and tumble dried it, hoping to tighten it up a bit. t",4,1,2,General Petite,Dresses,Dresses +1078,40,"Beautiful dress, odd fit","I wanted to love this warm dress because the colors and the material are beautiful. unfortunately, i couldn't make the fit work. for reference, i am 5'3, 110 pounds and usually wear an xs in retailer clothing. like other reviewers, i found the xs to be a bit tight around the arms, and i don't have particularly large arms, so i ordered the sp, hoping it would be roomier and shorter (the regular length came down to mid-knee). unfortunately, the sp was enormous; it was in no way a petite. it was as l",3,0,0,General Petite,Dresses,Dresses +1198,25,Comfy and casual,"I wanted to love this dress so much! but unfortunately it fell a little short of my expectations. the overall quality of the dress is great! it's very light, flowy, and super comfortable to wear. i just wish it was a bit more flattering. i debated on returning it since it didn't really give me any shape but the material was so darn comfortable and such an easy outfit to thrown on that i couldn't part with it.",3,1,0,General,Dresses,Dresses +866,47,,,4,1,0,General,Tops,Knits +1078,54,"Overall great dress, runs small","This dress is beautiful with gorgeous coloring, nice thick, stretchy fabric and wonderful detailing including buttons. the only issue i had with it is that it's does run small, especially in the bust. i'm normally a medium to large, depending on cut so after reading the previous reviews, i ordered a large and it's pretty snug. still deciding whether i will keep or try for an xl, which is doubtful in availability at this point. i ordered it with two other pieces, both of those a medium fit fine.",4,1,0,General Petite,Dresses,Dresses +1078,38,Yes to the dress,"Sweater dresses are my fall/winter uniform and the patterns on this one are particularly unique and lovely. i'm 5'2'' with a small bust, this fit nicely and moves well, it's not baggy or bulky and not tight. good for work and play. i would usually wait to see if an item at this price goes on sale, but this one is the kind of piece that i expect to be snapped up swiftly and i don't regret getting it at full price.",4,1,4,General Petite,Dresses,Dresses +780,66,Almost good,"I ordered the geranium and teal. geranium is an awkward pink, but i loved the teal. beautiful color. ordered large, hoping for some length. they're very lightweight and almost too short. if you hold this up its just a big rectangle, but it flows nicely over the body and has the appearance of being longer on the sides. unfortunately you can see all of my bra and to my stomach when my arms are even slightly raised. i decided to return both.",3,1,0,Initmates,Intimate,Lounge +1078,39,Love it,This is a really great dress - especially for the holiday season - you can do work and post work events with it easily. i ordered a large but it fit me more like a medium. it is very comfortable and the quality feels great. boots give it the day look and a nice set of beige high heels gave it a great evening look.,5,1,1,General Petite,Dresses,Dresses +590,60,Nice flow,"I think 4-5"" shorts are the best length if you want to show off your legs, but still feel comfortable running errands, and these fit the bill. they are short, but they are loose, the pattern ( i got the grey) is nice, wore them with a black top that flowed over the waistband and felt they were perfect. memorial day, wore them 2 days in a row, all day, everywhere, got lots of compliments, comfortable, washed and air dried, ready to go again. i am typically a 12, ordered the large, could probably",5,1,4,General Petite,Bottoms,Pants +1078,26,Missing two large buttons,"The dress arrived with two large buttons missing from the front complete with unraveling threads. the rest of the buttons are sewn on loosely, and in general, it's poor quality. ridiculous considering the price, very disappointed.",3,0,0,General Petite,Dresses,Dresses +1078,44,Had potential but it doesn't deliver,"So, i bought 2 of these. first in xsp. it was actually the regular length not the petite one. it did have the problem mentioned by others regarding the arms, armpit, thighness issue. i thought maybe the dress was mislabeled and i got a regular xs by mistake. so i returned and order another xsp hoping i would get one with the right length, but no. the one i got has same issues as the first one. why 2 petite dresses with regular length/? i think the dresses are defective. the print is gorgeous and",3,0,2,General Petite,Dresses,Dresses +1078,45,Unique,Love this tunic dress but i ordered a petite instead of regular because of length. fits a bit snug. i have gotten sp from retailer before and they have fit. just depends on the brand i guess. great holiday wear.,4,1,0,General,Dresses,Dresses +1078,36,There's something wrong with the arm hole,"There's something majorly wrong with the way the armholes are cut. i can't move my arms in this dress. otherwise the fit was fine. the a line cut of the dress is great if ur trying to hide a few pounds. other than that the does nothing for your figure. i found this dress to be true to size in an xsp im 107lbs and 5'1"". +don't buy it. i know it's tempting with the sale price.",2,0,0,General,Dresses,Dresses +1078,48,Snug in arms and chest,"I love this dress. colors are great, but a little tight in the chest and arms. i am 5' 8"" and usually wear a size 6. i bought the medium because i like a little looser fit on top. the arm holes are a little large which makes reaching up for things awkward.",5,1,0,General,Dresses,Dresses +1078,44,Lanka sweater dress tunic,"Beautiful sweater dress. nice texture gorgeous pattern. however not for my body type! i'm 5'5"", a size 12-14 and i carry my weight in hips butt & tummy area. this dress is only slightly a line, almost straight and even the xl didn't look flattering on me. and the arms are definitely smaller and weird too-there is bunching in the pit area. i tried on a large for comparison and it was too tight all over and there was a button missing too. this def. runs small and i think will be flattering on the",3,1,8,General,Dresses,Dresses +1059,40,My favorite pants,"I love these pants. a dry cleaner lost my favorite black pair ten years ago. i have not used them since. +if you wait long enough, everything comes back in style. i bought black and rust. these pants are comfortable, the perfect length, can dress up or down and are very, very cute.",5,1,1,General,Bottoms,Pants +1078,43,Perfect in every way!,"I loved this dress as soon as i saw it online. but the price was high, and i was nervous about taking a chance on a knit dress. would it be too clingy, too stretchy, too scratchy, too...wrong? i took a chance on it after reading other reviews, and as soon as i tried it on, i knew i had found the perfect dress for winter. it is super comfortable, and the quality of the knit is very good. the material is soft and warn. the dress looks fabulous with bright tights and high boots. in the two weeks i",5,1,1,General,Dresses,Dresses +1078,36,,This dress is beautiful and unique. an eye-catching piece with a bohemian flare. you will not be disappointed. tts.,4,1,0,General,Dresses,Dresses +1078,31,,"If you look closely at the pattern it is a giant triangle running across the front of your body. this doesn't do great things really if you have more of an hourglass shape or small waist. it completely removed the idea that you have a small waist and draws attention to the area of the triangle that is the largest. also, i agree with another reviewer about being cautious about buttons, as several were off some of the dresses.",3,0,0,General,Dresses,Dresses +1078,56,Gorgeous dress with european flaiir,"The colors and design of this dress is stunning. i am usually a large in retailer clothes, this dress is true to size.this can be worn as a dress with boots or flats or even as a tunic. i purchased a scarf to also wear it with. this is one of my all time favorite retailer pieces!! don't hesitate.",5,1,0,General,Dresses,Dresses +872,51,,"This top looks so much better on than it does in the pictures! very flattering cut and the fabric is amazingly comfortable. runs true to size, i got my normal xs.",5,1,2,General,Tops,Knits +1080,26,Not what i expected,"I loved the look of this dress online, so i was excited to order it, but when it arrived i found it was not at all how i expected it to be. i thought the material would be more lacy, but it seemed pretty cheap. there was also some boning at the waist which is nice in theory, but it made the material poof out just under the waist, making me look like i had a belly. no matter what i did i could not get it to lay flat. returned to the store and bought the embroidered perennial dress instead, which",1,0,1,General Petite,Dresses,Dresses +1078,56,"Lovely, but needs better sizing","As most have already commented, runs small in upper body. i'm always a 2 or 4 petite (5'1"", 120# max, 36aa, athletic build). the petite s was exceptionally small in upper body and no chance of it stretching enough to be comfortable. since i read other reviews before purchasing i also ordered the petite m. pm was too big under arms. i exchanged both and purchased a regular s in store. fits great, though would have liked it a mere 1"" shorter. +the sizing should have been 2,4, 6 etc. +i'm keeping the",4,1,1,General,Dresses,Dresses +1059,34,,These pants are beautiful. the color is a nice deep red. pretty color for fall and the wide legs are very complimentary for athletic thigh women like myself. my only regret is listening to the other reviewer. these pants run true to size. i am normally a 0p in elevenses and should of stayed with that but went for a 00 because of the review claiming they run small. the waist is accurate sizing. the only thing running big on these pants are the width of the legs and that should be expected from th,5,1,4,General,Bottoms,Pants +1078,39,Sweet dress naughty buttons,"Knitted & knotted are my new bff. their sweater dresses are amazing and i'm now tracking down sold out versions of their apparel to enhance my closet and have a party. i adore (and drool...just a lil bit) this dress. the colors and styling and warmth make me happy. i sized up to a l because of my linebacker shoulders/broad bust (thanks retailer user reviewers!) i am comfy as long as i don't flail or flap. my one teeny tiny little complaint is right out of the factory cellophane bag, i had a loose",5,1,0,General,Dresses,Dresses +1078,44,"Beautiful dress, just wish it worked on me","Tried this dress in two different sizes and just couldn't get a god fit for me. i found the upper arms a little snug and unforgiving if you don't have slim arms. it is a beautiful dress in person, probably more so than in the photos, and a nice thick quality feel. it didn't work on my frame, but i definitely recommend you give it a try.",4,1,5,General,Dresses,Dresses +1078,47,Disappointed in the fit,"This dress is so pretty and the fabric is tightly woven so that it won't stretch as much as other sweater dresses. i am disappointed in the sleeves though. the cut is way below the armpit so that when you raise your arms, it pulls tight and is uncomfortable. for the price, and the amount of time i wanted to wear it, it's not worth keeping. another thing is that the fabric is tightly woven so if you are cold natured and ok with the sleeve issue, this is the dress for you. however, if you are hot",4,0,4,General,Dresses,Dresses +849,26,Very pretty but very small,"This top is very pretty and looks so good with the blue flower skirt. unfortunately it runs very small. it fit my bust but would not go down. i imagine it would look better on a much slender frame, but since it fit my bust i wonder if the armholes are too big or it maybe a bit loose at the top. i like the style and design a lot, very dressy, but the buttons at the top are a bit hard to put on and remove. since this is turtleneck, every time you wear it the buttons have to come on and off. the bu",4,1,1,General Petite,Tops,Blouses +1075,50,Perfect petite size,"I love this dress. i was afraid it would be too long because it said petite was 56"" but it was perfect. i am 5'0 and ordered the size xsp and the length is perfect. however, in the picture the lining is shorter than the outer layer, but on my dress the lining in longer than the dress in some areas. the dress is very modest in the front and the back has a nice plunge but not too low.",5,1,3,General,Dresses,Dresses +879,38,Comfortable brilliantly colored tank,"Comfortable tank, i'm short but it's a long tank, even in a taller frame. i like that it covers my mid section. beautiful blue color.",4,1,0,General,Tops,Knits +879,62,,Great tank! i really like the black and white striped one! very versatile .,5,1,0,General,Tops,Knits +993,35,Great transition piece from summer to fall,"For me, this skirt runs a little large. my waist is smaller than my hips so i was able to order a small, which fits perfectly. i'm 5'5"" and the length hits at the right spot, too, so there is no need for hemming. i have yet to wear the skirt, but i anticipate that it will be a great piece to transition from summer to fall with an easy switch of the shirt and shoes. can't wait to get a lot of use out of this one!",5,1,2,General Petite,Bottoms,Skirts +1094,33,Gathered on only one side of waist,"This dress has so much potential- loved the pattern and the neckline. however, only one side of the waist was gathered with a fake sash leaving the other side plain. the gathered side was super flattering while the other side showed any little lump or bump. needless to say, i'm returning it.",3,0,7,General,Dresses,Dresses +993,48,Beautiful maxi,"Great maxi skirt that flows as you walk. i can see myself wearing this year round. i'm 5'7"" and it's still pretty long on me. i would have gotten the petite if it were available. i usually wear a 10 or 12 in pants and the medium skirt was perfect for me. so you may want to size down unless you have bigger hips. i'm not usually a fan of the drawstring waist but this one doesn't add bulk like most do. overall great skirt!",5,1,11,General Petite,Bottoms,Skirts +879,32,,"This is a great summer staple tank! i first ordered it in black + white, and i'm now ordering the coral + navy. i'm usually a petite xs (i have a short torso), but seeing the length on this tank, i went with the regular and glad i did. also, i had previously bought the filigree lace tank (same brand), and the length of the petite on that tank is the same as this tank's regular length, so i knew it'd fit perfectly.",5,1,5,General,Tops,Knits +993,35,,,5,1,0,General Petite,Bottoms,Skirts +993,47,Meh,"I so wanted this skirt to work, love the design! but, it's way, way too long... i am 5, 5, 116lb, and the small is 1 inch on the floor. i step on the skirt as i walk.",1,0,3,General Petite,Bottoms,Skirts +993,26,Super chic skirt..perfect for fall!,"Runs a little large. i'm 5'9'', 150 lbs and ordered the medium. probably could have gone with the small. still, it has a tie waste so it works! love the length and print. can't wait to wear it this fall with a jean jacket!",4,1,0,General Petite,Bottoms,Skirts +479,47,Perfect fit and color,"These shorts are comfortable but so stylish. even though, i love many of retailer shorts, these are one of my favorites.",4,1,0,General,Bottoms,Shorts +993,46,Easy odering,I found my experience odering the moon lake maxi skirt very easy. i received the skirt in a timely manner and am very happy with my purchase.,5,1,0,General Petite,Bottoms,Skirts +1037,65,Cool cords!,"These cords are a great, skinny fit. they seem true to size for me and look great on. only issue i would have is the color says navy, but they are more of a deep purple-ish color. i had to recheck my order because they definitely aren't navy....but i'm keeping them because the fit is awesome.",4,1,2,General Petite,Bottoms,Jeans +535,34,"So cute, but so small!","The top for this suit is great - i'm pretty small up top so it's rare that i find a suit that doesn't gap. however, the bottoms run so small. for reference, i'm a size 0 in dresses and 2/4 in pants. i ordered the xs and s to start, both were too small. with high hopes that i could keep this adorable suit (and well made otherwise!), i ordered a size m bottom. they were still small. sadly, i'm giving up and returning. +only order this suit if you're super, super tiny on the bottom.",3,1,12,Initmates,Intimate,Swim +479,39,Great shorts,These are a comfortable and fashionable pair of shorts! they run true to size and look great!,5,1,0,General,Bottoms,Shorts +479,69,Ironing - ugh!,"I am somewhere between a 24 and a 25 (i have narrow hips but an average waist), so i was happy to find that these worked for me in me in a 0. i loved the blue color as an interesting neutral. they did stretch out a little with wear, but i still felt like i looked good by the end of the day. i typically really like cotton/linen blends as i can usually wear them out of the dryer if i'm going for a casual look - a few wrinkles with linen doesn't bother me. but these. oh my. when i pulled them out o",3,1,2,General,Bottoms,Shorts +879,37,Too bulky,I like the quality of material of this top but it's too long and wide for my frame. the high neck feels odd for my broad shoulders. too bad as i really wanted to love this.,3,0,1,General,Tops,Knits +535,30,Runs very small,Tried small and medium and both were quite tight on the bottom. top is perfect. will return the bottoms and try the large.,3,1,5,Initmates,Intimate,Swim +993,53,Nice addition to everyday wardrobe...,"This skirt was too big so i returned it but did like it well enough to re-order. quality seems average; my only complaint is the lining seems too short for the skirt. why, on a maxi, is the slip lining a mini? the first thing my husband said was that it needed a slip. he didn't think it had one as he could see through the skirt to my knees. this is very lightweight fabric but could be worn all year around depending on the leg wear that is worn with it. it is a very versatile piece which is why i",4,1,1,General Petite,Bottoms,Skirts +1037,38,Petite leg is tight,"First, i noticed that the ""grey"" was more like a blue-grey/navy which i don't mind because it's still a nice, unique color. i ordered petite size 26 and although these are very well made/sturdy cords and fit at the ankle like the model pictured, the thigh/calves were surprisingly a bit too tight for me (and my calves are s c r a w n y). this cord version doesn't seem as stretchy as some of their other styles so, i'm going back for the standard 26's!",4,1,0,General Petite,Bottoms,Jeans +879,39,Striped tanl,This tank was much needed for my wardrobe. i love the vivid colors and forgiving cut. i am 130lbs and purchased an xs .,5,1,2,General,Tops,Knits +1037,44,Short but adorable!,"I ordered these without reading the previous reviews and i would have to agree with everything everyone has already said. these are the cutest cords i've seen in a long time! they're definitely skinny, bridging on way too skinny through the calves but i'm willing to stick it out. the thing that bugs me about them is how stinking short they are?? the description doesn't really mention that they're crops but at this length any ankle bootie is going to be too short. also, they aren't navy. they're",4,1,1,General Petite,Bottoms,Jeans +836,50,Lovely,"I love this tunic, i wore it with black leggings and boots. it is well made and flowy. i wish it came in more colors.",5,1,1,General,Tops,Blouses +479,40,,Love these shorts! fit true to size and the material is so amazing.,5,1,0,General,Bottoms,Shorts +903,36,Comfy and cute,This cardigan is so fun to wear. you can wear it like as it is shown on this model or turn bottom up and wear upside down as tag suggestion.,5,1,0,General,Tops,Fine gauge +993,26,Perfect transitional piece,"I've been eyeing this piece for a while and gave in when there was a sale. admittedly, i was first drawn away when i read that it was a pull on style, which always seemed cheap to me; however, it worked in my favor since the small was a tad big but the draw string helped cinch it (the store currently didn't have xs). the skirt, as shown on the model, seems like it'll be great as a transitional piece for autumn and winter (and when i tried it in the fitting room, i paired it with a cardigan and a",5,1,1,General Petite,Bottoms,Skirts +993,44,Lovely transition piece,"I think i will really love this skirt. it is comfortable and has a lovely sheerness to it. it does have a bit of a weird, long drop waist, but it is very comfortable and still manages to be flattering. i think this will be a great piece for transitioning to the fall and winter seasons. i can wear it with short sleeves now and sweaters soon. i am happy with my purchase.",4,1,6,General Petite,Bottoms,Skirts +479,56,"Super cute, stylish, versatile shorts!","Around 5 years ago, i bought 4 pairs of ""daughters of the liberation"" brand (very similar style) shorts at retailer, and have been repairing any and all frayed fabric in the first two pair, in a lighter material than the second two pair, ever since, in order to preserve my #1 favorite shorts. thank goodness pilcro - another longtime fave brand of pants available at retailer - came through this year with these very similar, but perhaps even nicer, shorts. i bought the yellow striped pai",5,1,4,General,Bottoms,Shorts +879,51,Poly-tank,"The cut on this is fantastic, every color way is vibrant and appealing. length just skims over where my hips broaden, which is nice, and my shoulders look strong and tan. however. i prefer cotton, or at least a cotton blend. this fabric is appealing in that the sweat wicks, the colors will never fade, and the shape won't change. i find the man made fabric very very hot, though.",4,1,2,General,Tops,Knits +535,30,Cute but runs small!,These bottoms run very small! i'm 5ft 3in and 100 pounds with a 25 inch waist and both the xsmall and small were too small. i think i'll need a size medium.,4,1,6,Initmates,Intimate,Swim +1037,42,Super cute,"Ok ladies, i love the whole idea behind these pants..cargo, corduroy, what!!!!?? and in a cool different navy color, had to have them. i got my usual size but in petite (i'm 5'5.5"" with shorter legs longer torso, usually don't get petite in skinniest, but for some reason did this time) and i have to say the calves of these pants are like compression stockings! the waist and boodie are perfect, but the calves, yikes! but you know how when you want something to work so bad....i ordered my usual si",4,1,5,General Petite,Bottoms,Jeans +479,29,Nice summer shorts,"These shorts were exactly as expected. they are nice thin shorts perfect for a hot summer in texas. i have just worn a few times out running errands in high 90 degree weather and they were perfect. i bought the grey and they are a nice change from jean shorts, but still match just about any top. i typically wear a size 0, but after reading the reviews purchased a size 2, so i would say they run a little small. they are slightly snug in the waist, but i ordered online and liked them enough to kee",4,1,2,General,Bottoms,Shorts +993,66,Size down,I ordered a size large and it's so big i couldn't tell how it would look in a smaller size. the waist cinched but there's too much fabric in the hips to be slimming. the floral pattern is beautiful with light blue and lavender flowers that are generic enough to match with a variety of colors on top. it's too long for my frame. the slip falls above knee so it's sheer from there down. i decided not to try a smaller size but recommend going down one or even two sizes.,4,1,1,General Petite,Bottoms,Skirts +903,36,Perfect sweater,"I love these. the white actually has a more pronounced look between the top and bottom with a little but of shading. since they look a bit different because of that i got both white and black. perfect wait and not to giant, and perfect for year round work. the shawl color is a tad flimsy in how it sits but overall these are fabulous.",5,1,1,General,Tops,Fine gauge +879,31,"Adorable shirt, questionable quality","I saw this shirt online first and immediately knew i wanted to purchase at least two colors. i went to my local store for the mother's day sale and tried it on in the black/white and the coral/navy. i purchased both colors. i actually wanted to get all three but had some other items i prioritized over the teal/white. it fits great and is super comfortable. i have been wearing the black and white all day today and sadly, it is already pilling and doesn't seem to be holding up very well (photo giv",3,0,21,General,Tops,Knits +993,25,Cute print but cut misses the mark,"I had been waiting for this skirt to go on sale as i fell in love with the style and print on the website. however, after receiving it in the mail i was disappointed to find that the cut was all wrong for my body type. i am 5'6"", size 4, hourglass/athletic. the xs was too big and made me look like i had no shape. would be cute on a girl with no hips/booty but unflattering on hourglass figure.",2,0,0,General Petite,Bottoms,Skirts +879,48,Great tee!,This is adorable! lots of compliments on color. great fit!,5,1,0,General,Tops,Knits +1094,51,Love!,"Besides the beautiful print, i found the fit to be extremely flattering. i'm typically a medium, but the small was a better fit. this dress hangs beautifully and the unusual waist ""band"" gives the dress (and me) a great shape. i felt so wonderful wearing this dress!",5,1,4,General Petite,Dresses,Dresses +1094,58,Put-together and comfortable,"I feel both confident and comfortable in this dress. it runs true to size, though maybe just a little bit large. i enjoyed wearing it from the get-go!",5,1,3,General Petite,Dresses,Dresses +1111,33,Great idea but the fabric doesn't work,"I waited for this dress to go on sale and when it did i bought it right away. i am disappointed!!! the lace fabric is very stiff. i should have listened to the previous reviewer. i feel like it is poking out on my arms and neck. although i appreciate the careful placements of flowers on the dress, had the fabric been different, i think it would be a great dress.",2,0,0,General,Dresses,Dresses +479,23,Absolutely love,I just bought these shorts in the gold color. the fit is just right and the material / quality matches up to the price you pay. totally worth every penny.,5,1,1,General,Bottoms,Shorts +479,35,Love these but run small,"I followed the other reviewers who said these fit true to size. i have to disagree. i normally wear an 8 in shorts, which is what i ordered, and the fit is too tight in the waist and butt. i'm exchanging for 10. i really like the color and fun accents. i really hope i can get these in 10!",4,1,0,General,Bottoms,Shorts +879,33,"Comfortable, soft and stretchy","This is a fairly high quality tank which i purchased in blue-green. it's narrower at the top, more voluminous at the bottom and a heavier knit than i expected, so i'm a little concerned about stretching over time, but i'll be careful washing it and enjoy it till that day does (or doesn't) come.",4,1,0,General,Tops,Knits +993,45,Why?,"Why does the lining stop at mid thigh when the skirt is long? makes product look cheap while wearing. love the color, the fabric, and the fit, but cant get past this less than quality feature - will be returning.",3,0,0,General Petite,Bottoms,Skirts +879,25,I really wanted to like this,"I really wanted to like this, but like other reviews say, the knit fabric pills easily and i don't think the tank feels or looks as good as it would were it cotton. a good deal on sale, but i don't think it will hold up very long. i got the teal/white, as black/white and coral/navy were sold out.",3,0,0,General,Tops,Knits +1111,56,Stunning white lace dress,"This dress hits all of the high notes for me. it is crisp, elegant, and it looks like something a european coutour designer would create. i am so glad i have this dress in my wrardrobe. it hits me just above the knee which is super flattering. wear this to a fancy party when you want to look feminine and classy. it is a dress that will serve you for a lifetime.",5,1,0,General,Dresses,Dresses +1094,48,Pretty and easy,"Really love the pattern and color combination. the dress has an attached lining to around the knee. i would say this is tts or a little big. i'm 5'8"" and around 135 and size s fits well with a bit of extra room around the waist. print and fabric cover any perceived flaws and create a long, lean look. i love the feeling of effortlessness--with cute sandals this is an outfit.",5,1,36,General Petite,Dresses,Dresses +1037,40,,"While you can't count on the photo on your monitor to portray the exact color of an item, these photos are way off. instead of the warm charcoal i see online, the pants are more of a dusty blue. the material has very little stretch and i couldn't get into the size 24s. the 25s were tight in the entire leg but huge in the waist. for reference i usually wear a size 24 in brands like 7 for all mankind and citizens of humanity.",2,0,0,General Petite,Bottoms,Jeans +903,53,Very strange fit,I'm returning this cardigan. it doesn't fit me at all. it's shapeless and loose.,1,0,1,General,Tops,Fine gauge +879,41,Simple summer staple,I love the cut and style of this simple striped tank! it's good fabric,5,1,1,General,Tops,Knits +479,52,Cute but disappointing,"Beware. white is not white. white is more cream, off-white, light beige. i was really looking forward to these shorts but was immediately disappointed when i saw the color. they are cute, but not white. i bought them to wear with the nautical look tops for this summer, but unfortunately, creamy colored shorts don't do much for navy/white tops.also, the button is very difficult to open/close.otherwise they are ok.",2,1,5,General,Bottoms,Shorts +1037,30,Please make more pants like these!,"These pants are uh-mazing!! i love that they have a seam in the front of the leg and in the back of the leg. i didn't notice it in the photo online but in person it stands out more and anything vertical on my petite frame is a+. way to go! these are my new favorite pants...i wish pilcro would make this style in more colors, and fabrics. + +i wear a 25p or a 24p and i'm glad i got the 25p because it's true these are tight in the leg but i think that's a good thing since cords look awful when the",5,1,3,General Petite,Bottoms,Jeans +479,35,,Cute everyday shorts. run tts to maybe just slightly small. not too short for this mid 30s mom.,5,1,5,General,Bottoms,Shorts +836,34,,"Gorgeous top/tunic. runs true to size. i paired it with jeans, but i love the look of the white pants in the picture. beautiful and flows nicely.",5,1,1,General,Tops,Blouses +877,67,Best t-shirt,Love this t-shirt....i will be wearing this until it wears out. very soft; great fit; and very comfortable....,5,1,2,General,Tops,Knits +999,33,,"Love this skirt. i wore it to work after purchasing this, and i had at least 20+ people comment on how beautiful it is. many office ladies asked where i purchased it and one (who asked the cost) said it was worth the steep price. the green in this skirt really pops out, as do the gorgeous golden flowers. the pockets are a nice addition as well.",5,1,2,General Petite,Bottoms,Skirts +831,37,Beautiful blouse,"I'm going through a blouse phase, and this was exactly what i wanted. i'm not svelte, and blouses rarely hang off my frame in a flowy flattering manner, but this one is perfect! it is just loose enough and just form accentuating enough that it looks amazing! i am petite with broad shoulders and a large ribcage/short torso, so flowy is a tough one for me.",5,1,0,General,Tops,Blouses +1094,28,Arms way too small..,"I was very excited about this dress having seen someone where it on the street months ago. i got my usual size 6 and could not button it up for the life of me. i get it, i'm busty and sometimes button downs are a tricky. however, the arms were impossibly tight. my boyfriend starting cracking up when he saw my arms busting out of the sleeves.",1,0,1,General,Dresses,Dresses +237,38,Beautiful suit,Very flattering suit. embroidery is unique and the cut flatters.,5,1,0,Initmates,Intimate,Swim +877,32,,"I love the design on this top. it's a little thin, but it's held up great with a few washes.",5,1,0,General,Tops,Knits +1083,51,Wearing an art piece!,"Completely in love with this dress! i'm a huge fan of byron lars, and this one by far is my favorite. everything about this dress is perfect. it's very well made too. i usually wear a size 4, but kept the size 6 instead. the waist felt a bit too tight with the 4. btw: the belt is adjustable.",5,1,0,General,Dresses,Dresses +1038,45,Nice style,"Great style but not so great quality:( +stone fell off right away. +but they still look great",3,1,0,General Petite,Bottoms,Jeans +825,59,,This blouse is a disappointment . fabric is cheap looking and the cut is very off. just odd. sleeves awkward . the back of the white shirt on the on-line model is not the same as the white shirt i received. mine was plain in the back like the blue shirt on line even though my shirt was white. no ruffle. returned.,1,0,9,General,Tops,Blouses +237,59,,"Very flattering suit. runs large. i stumbled into this in my local store. must have been a return. i tried it on even though it was a size small not my usual medium. fit like a glove!! covered my 36c chest. i have tried many suits and this is best on my curvy shape. flattering to tummy. i am 5'6"" 127lb. not very toned at 59 years of age. this suit is amazing. highly recommend!!!!",5,1,2,Initmates,Intimate,Swim +831,44,,"Fun pattern, great colors and super comfy and versatile! great pickup at the sale price!",5,1,0,General,Tops,Blouses +862,46,Horrible front closure,Gorgeous color! salmon not pink though! lovely soft drape fabric but the itty bity thread and hook in the center is awful! i am a size 2/4 d cup and ordered a small and the closure is not adequate at all! it looks terrible closed and is too revealing without a cami underneath. does not fit like the model!,3,0,0,General,Tops,Knits +1083,64,Breathtaking,This dress is like a piece of art. absolutely beautiful on. i wore it to a charity event and received several compliments. it's just so gorgeously different!,5,1,0,General,Dresses,Dresses +877,34,,Beautiful shirt. the color is more navy than pictured. the middle of the moon is stitched embroiderer - very original and a fun texture. my only qualms with this shirt is the trapezoid cut - it flairs out slightly but enough to notice from shoulders to the bottom hem.,4,1,1,General,Tops,Knits +999,39,Love it!,"I ordered the skirt on friday and it arrived on monday. my expectations were exceeded. the fabric is great quality and there are subtle flecks of gold throughout. the fabric is substantial but not stiff at all - for this type of skirt, you need a thicker fabric. i'm about 5'4"", 123lbs and i ordered a 2 regular. the fit - everything from the length to how it fell on the hips, is perfect. can't wait to wear this skirt!",5,1,0,General Petite,Bottoms,Skirts +1009,42,Could have been perfect...,"I am 5'8"", 140lbs, pear-shaped. i ordered the s and it fit perfectly, just skimming the floor. the material is a beautiful gauzy metallic material that is lightweight with a beautiful drape and wonderful sorbet-inspired colors. the waistband is elasticized but not elastic, and there is no unflattering poofing, which can happen with skirts like this. the flaw, however, is in the decision to only half-line this skirt with an off-white jersey material. the half-lining isn't horrible but i found it",2,0,2,General,Bottoms,Skirts +999,36,So pretty,Love love this skirt! such a pretty green color and a great quality. this will be a staple in my closet for years to come. and i love a skirt with pockets.,5,1,1,General Petite,Bottoms,Skirts +1083,41,Worth every dime,"Bought this dress for easter and the compliments were relentless. the quality of this is superior, hence the price. the fact that it can be worn year round, i will get my money's worth out of it. my only ""complaint"" is the belt. that little sucker was way confusing to me so i just went without it. i needed directions to figure it out or a phd. ; )",5,1,1,General,Dresses,Dresses +1038,39,Ok,"I thought these would be nice, and they are but then i started thinking that the bejewels will eventually be out of style and these can't be as much of a classic... also, the jewels make the jeans feel heavier. +fit is like most boyfriend/girlfriend jeans, slightly loose (not as much on me due to muscles) and length on petite was close to what is shown here (typical for me that it is still a bit longer, as not only am i short, but i have short legs for my shortness!) + +so if you want that styl",3,1,0,General Petite,Bottoms,Jeans +862,39,Nice and flattering,"Soft fabric, the blue is a nice color, rich. the drape effect is very flattering on the body. the length of the regular xs was fine on me, i often get petite but would not need it in this case. could wear this with jeans or dress it up with a nice skirt. good basic.",5,1,6,General Petite,Tops,Knits +1008,39,Really red,"The skirt looked orange online, but is more of a nice red (i do like orange too though). +i had orginially palced this in my basket as a to order later to see, but my store had it. glad because i would have ordered petite, adn i do think that would have been too short for me (not appropirate for work or (in my opinion0, my age). the skirt (size 0 regular), fit my waste, and fell about one inch above my knee. i am 5'1.5"" (115 lbs if it helps#... so petite would have been short. + +the only thing tha",5,1,6,General,Bottoms,Skirts +1104,39,"Cozy, casual, can dress up, worsk on petite","So i ordered this because i like amadi dreses in general, and was curious how hte long one would fit. i do love it, it is really comfortable. color is pretty neitral, material is thick enough for fall, california winters and cold spring days. can be dressed up a little with nice heeled booties. i am less than 5'2"" (115 lbs if curious# and this worked on me #petite, xs). i say go for it!",5,1,2,General,Dresses,Dresses +999,32,,"I wanted to love this skirt and i agree with the other reviewers. the color of the skirt is beautiful. i've never seen anything quite like it at retailer! the quality is superb and the material is fairly substantial given the brocade design. however, the skirt made my hips look a lot bigger than they are because the shape of the skirt is more of a tulip-design. i purchased an 0 petite (because my normal size 00 petite was sold out) and while the waist part fit the hip part was disproportionately l",4,1,4,General Petite,Bottoms,Skirts +825,46,"Xl fits small, light blue is pretty","I ordered the white and the light blue in size xl. both are cut much smaller than is typical for my other retailer xl blouses. everything the first reviewer wrote is true. the photos of the white top show a detailed back when it is plain (like the blue). the back is just a solid, kind of slippery material. it's strange because it's not see-through in the back but you need to wear a tank/cami for the front. so, it makes the shirt that much tighter since you need to have the extra layer. + +i would",2,0,3,General,Tops,Blouses +862,36,,Beautiful color and soft material but runs a little big so size down. i loved that it was complementing to my figure without making me look larger,4,1,0,General Petite,Tops,Knits +1008,41,Adorable skirt for spring,"I fell in love with this skirt at the store, but was concerned i wouldn't have enough to wear with it. i ended up purchasing it online and when it arrived found that it goes with so many things. black turtleneck as pictured, navy blue blouse with bird print, white t-shirt, white blouse, the options are endless. fits true to size. too short to wear to work but will be perfect for spring and summer weekends. can't wait for the weather to warm up.",5,1,1,General,Bottoms,Skirts +877,48,Cute shirt,I agree with the other reviewers. this shirt is cuter in person. it is a flattering cut and the design is even prettier than in the photos. the color is more navy--not the charcoal color it looks in the photos. the stitching is also more colorful in real life.,5,1,1,General,Tops,Knits +862,53,Great top but...,"This top would be perfect if not for the large gap in the front where it wraps. the hook and loop just do not work to keep the top closed. love the pink color and the fit otherwise. i am almost always a medium but the small was perfect for me. for reference: 5'6"", 145 lbs, 34dd.",4,0,1,General Petite,Tops,Knits +1104,29,"Really, cute, but....","This was adorable, but looks much better on the lean, flat chested model. i am only 110 lbs and 5'4"" but i am curvy and it just didn't do me any justice so i will be returning. i think this would look better on someone more flat chested, because it really accentuates the bust.",4,1,1,General,Dresses,Dresses +862,41,Pretty wrap top,"I bought this top to match a maxi skirt and it was pretty close to perfect. i got the blue color, which is more of a brighter blue than a navy. i'm 6ft and wear a 10 top, but got this in a large hoping to gain some length in the torso out of the of a large and could have gone a size down. the top was definitely long enough and i didn't have the problems with the gaping at the hook that other reviewers had. this is probably because i went a little larger in the sizing and i have a very small",4,1,0,General Petite,Tops,Knits +1083,36,Seriously wonderful dress!,"Just got this in a 2 petite (5'4"" 120lbs 34b) and it fits perfectly. the length is right at the bottom of the knee. it is fitted tight at the waist and the belt is even more beautiful in person. this dress has some weight and the quality seems excellent. there is a scalloped nude lining that is attached to the dress and the dress can be unzipped from the bottom as well. +there is a darker lace fabric under the armpit which i like since it hides your armpits much better than the sheer red lace fab",5,1,11,General,Dresses,Dresses +1083,36,,This dress is absolutely stunning and well made. it can be worn throughout the seasons. i love this designer and this dress is a masterpiece.,5,1,0,General,Dresses,Dresses +1022,27,Soft and sexy,"These pants are gorgeous! they are not a denim material, more like the softest khakis you've ever felt. they're very flattering and hug all the right places. i am a 4-6 in pants and the 27 feels great. a worthy investment!",5,1,3,General Petite,Bottoms,Jeans +825,42,Wanted to love it,"Purchased this in white specifically because i loved the back detail-- (i don't know why most designers overlook the back??). huge disappointment-- the back is totally plain, not at all like the picture of the white top on here and the fabric in the back isn't even the same material as the front. it's almost as if the back is made out of leftover lining from another garment. it was a very sad return! i usually love this brand, this was just a quality control oversight i guess.",2,0,2,General,Tops,Blouses +1008,53,"Not red, not orange...","Yes, as much as i'd have liked this to be a true red, it's kind of red-orange; i am relieved, however that it is not as orange as it looks on my monitor! that is my only slight-and i mean slight-disappointment in this cute-as-all-get-out skirt! i am 5""5"" 140 lbs and the six is perfect, leading me to believe that this is tts. it is a polyester mix with a same-color liner, large buttons followed by smaller, silver colored buttons at the apron. the larger buttonholes are red and white striped and t",5,1,0,General,Bottoms,Skirts +1083,34,Beautiful,This dress is stunning! the quality is impeccable and the craftsmanship is stunning. i ordered my typical size and it was snug but sizing up would not have worked. this may be the most beautiful high quality piece i've ever seen at retailer!,5,1,8,General,Dresses,Dresses +877,36,Wider cut,"I ordered a medium, as i like my shirts a bit loose. it is a beautiful shirt, and looks great in person. however, this shirt is cut more wide and short than it is long and lean. exchanged for a small!",5,1,0,General,Tops,Knits +840,37,Adorable but poor fit,"I really wanted to love this, but it had so much fabric around the waist i looked like i was about to deliver twins. for ref, i'm 5'3"" 105 lbs. the top area fit fine (had a little extra room on either side under armpit area, but not so much it would've deterred me from keeping it). i adore peplum and flouncy tops--it wasn't that i didn't realize that was the intended style here. it was very cute from the front and back, but when i turned sideways it was just omg huge. like tent huge. i kept look",3,0,9,General,Tops,Blouses +999,40,,"Very very boxy design/cut. try on first or buy knowing you are 90% likely to return. beautiful skirt but if you don't have the right body type/measurements, will not flatter you at all.",2,0,1,General Petite,Bottoms,Skirts +927,57,Terrifically chic,"It took a minute, but once i figured out how to wear this, i loved it. it is meant to be oversized, and for me looks best with leggings and ankle boots (too much bulk to be worn with even a slim skirt). i'm 5'9"", curvy and long limbed. the fabric has a thick, high quality feel; i find it quite soft and comfy. the unexpected design of the ribbing gives it a subtle chic; it's fashion forward without trying too hard. the ""cowl"" is really closer to a boatneck with an extra fold, which works well for",5,1,1,General,Tops,Sweaters +1009,31,Lovely skirt,"I love the beautiful flowy material and design. definitely runs a bit large. i ordered an xs and it needs to be taken in as well as taken up. i would have ordered the petite if it wasn't out of stock, so the length is probably fine for most. shimmery detail is beautiful.",4,1,2,General,Bottoms,Skirts +1022,51,Not what i expected,Ag jeans have been a main stay for me. they are the most comfortable and best looking jeans on my body. however this pair was too tight and shorter then i liked. the fabric and color is beautiful. i wear the same size for ag no matter the design. but this one ran too small. i have to return it. i will try the next size up if they still have them.,1,0,0,General Petite,Bottoms,Jeans +1008,48,Vintage,This skirt is a keeper. great quality. beautiful color. great fit!,5,1,2,General,Bottoms,Skirts +999,23,So classy!,"I really love this skirt. when i first tried it on, i felt as if it was too thick and bulky for my frame (i'm very slim), but my mom convinced me to get it. well, mother knows best! i wore it to church with boots and a blouse, and it looked great. i received endless compliments! it's also a modest, yet fashionable length.",4,1,0,General Petite,Bottoms,Skirts +999,36,Stunning emerald color - great holiday party skirt,The colors in this skirt are gorgeous. a super pretty emerald/green color with graphic silver and black flowers. this skirt can be dressed up or dressed down. i'm loving the idea of wearing black tights and flat boots with it to make it casual or wearing it with tights and heels for a holiday party. the weight of the skirt isn't heavy so i think with the right colors can wear it in spring too.,5,1,2,General Petite,Bottoms,Skirts +1008,25,Pretty in persimmon,"Versatile and flattering. i don't order many clothes online because i'm a tough fit and need to try on first, but this was one of the rare times it was worth the risk. i love the high waisted, vintage style and the length is perfect. the bold color is fun. the little details are even better- navy blue piping, the buttons and the ribbon laced on the back. great skirt.",5,1,1,General,Bottoms,Skirts +277,49,"Great swimsuit, but only if you have a small bust.","I loved the swimsuit when i saw it online and it looks just a cool in person. however, i had to return it because the size large top was very very small. i wear a 34d bra. this top seemed like it would only work for an a or b cup size, even in the size large. cute suit for the right body, though!",4,1,0,Initmates,Intimate,Swim +862,34,Love this!,"Currently wearing right now :) +purchased during the first days of the tag sale. runs large (i.e. i typically wear m-l, and ended up going with a small!). definitely need a tank underneath, as the hook does not close the top of fully. like the blue color; the pink is more of a peach and made me look incredibly washed out. +a must at the tag sale price!",5,1,0,General Petite,Tops,Knits +927,47,"Runs large, pic doesn't accurately reflect color","I ordered this sweater in a medium with high hopes. i'm 5'8"" and slender, but with a 36' bust, and the medium was too loose and long (sleeves fell past my wrists). i would exchange this for a small for a better fit, but the color is not the white or cream color i was expecting. the color of this sweat is more of an oatmeal - not flattering on a far-skinned blonde. i think the color would look fantastic on someone with dark hair (as it does on the girl in the photo). the texture is great and i re",3,1,1,General,Tops,Sweaters +1009,44,Petite sizing?,This is a beautiful skirt. i wanted to make sure that i received a size that fit so i ordered two different sizes (pxs and ps). i typically wear a pxs but since the description mentions a side zip and it looked as if the skirt was to fit higher on the waist i thought i should also try a size up. as i mentioned it is lovely. light airy. i just wanted something easy to throw on and look put together with flat sandals and a tank for the hot weather that is coming and for an upcoming vacation to the,4,1,39,General,Bottoms,Skirts +1008,25,,"I love this skirt! i feel in love with it in-store and when i couldn't stop thinking about it a few weeks later i knew i had to get it. beautifully made with high quality materials and so flattering! fits very well for my figure (big butt and hips w small waist, sits just below my belly button and accentuates my waist and slims my hips. must have!",5,1,0,General,Bottoms,Skirts +877,50,Great t-shirt!,"This t-shirt is great! it fits really well and is very flattering. the colors are nice, including the t-shirt color itself. the fit is perfect, including the sleeves. and it's very comfortable. my only concern is how well it will do after you wash it a few times.",5,1,4,General,Tops,Knits +1009,41,Wish it was for me,"It's such a beautiful skirt, i kept it around and tried it on with every top i own but i could not get the right look. the waist ""poofs"" out right below the waistband so any shirt worn over it makes you look frumpy. tucking a shirt in didn't look right because of the poof. it doesn't do anything to flatter a figure. the skirt itself is gorgeous. for the price, i need to make sure my clothes make me look good too! reluctantly i had to return it. i was hoping it would be my summer go-to skirt.",3,1,5,General,Bottoms,Skirts +862,31,"Lovely, but...","This shirt is comfy, fits well, the color (pink or dusty rose) works well with most outfits, but the front hook is ill-placed and often visible. it could be tucked under better so as not to show, but it isn't and does show. i feel that i frequently need to fluff it up to hide the hook. otherwise, i like it, but i wouldn't have bought it unless it was on discount, which it was.",4,1,0,General,Tops,Knits +840,37,Lovely lightweight button-up,"This arrived in white at my store and it was so airy and dreamy i had to try it on. this is the epitome of the effortless tank. its a simple throw on with enough style that all it needs is your favorite pair of jeans and a cute necklace. unfortunately it didn't quite work for me. if you have any kind of tummy or chest, size up. i tried on my typical large but it was too tight and ended up looking like a maternity shirt on me. however, my coworker who is much more of a slimmer shape tried this on",5,1,14,General,Tops,Blouses +871,36,Didn't quite work,"The shirt is quite beautiful, the lace is thick and high quality. however, i have a short-ish torso and hourglass figure and this shirt added 20 lbs. the peplum fabric below the waist hung awkwardly and poofed out. maybe this would work better for a taller person, or one who has a straighter build.",3,1,3,General,Tops,Knits +1009,48,Too long,"I love this skirt and wish i could keep it. but it is not for the vertically challenged. i am 5'0"" 130 lbs and the medium petite was about 4 in too long, even with wedges. my intent was to wear this with sandals so i have to return. boo.",3,1,21,General,Bottoms,Skirts +862,25,Strange draping,"I'm not sure if the top i received was damaged or if the design didn't consider gravity but this is not what i expected. i really want to like this top, but i don't see how i can wear it.",2,0,0,General,Tops,Knits +862,34,Lovely material and style,"I love this shirt except that the hook that keeps it close doesn't work a lot, outside of that i love it. i typically wear a small or extra small and with this shirt the extra small was perfect.",4,1,2,General,Tops,Knits +1009,43,Undecided,"The skirt is very pretty, but it's not as dark as the street pictures which i like those colors better. it's also super long. it will have to be hemmed if i decide to keep it. for reference, i'm 5'7"" and it was sweeping the floor (size medium). given the price, i'm not certain i will keep it. i'll try it on a few times, then decide.",3,1,9,General,Bottoms,Skirts +1008,18,Stunning,"This skirt is absolutely beautiful and is a gorgeous vintage red which is more pigmented than i'm used to in my closet, but that's not necessarily a good thing or a bad thing. it runs a little large in the waist. also, the skirt comes up higher on the torso than pictured. mine comes up to slightly above my waistline and ends at about mid thigh. however, i love this skirt and its timeless design assures me it will stay in my wardrobe for years to come.",5,1,1,General,Bottoms,Skirts +999,48,Ugh,"Not sure who this is for but its not for me. skirt was long, stiff and puffy on my hips. i could not get it to lie correctly. maybe you have to be 6' to pull this off...",1,0,0,General Petite,Bottoms,Skirts +840,32,,"I can't often turn down a white blouse, so this caught my eye online and then in person. i love the concept but found the top to be rather large despite it being an xs. i would have to size down to an xxs, which i'm not certain would be long enough on my 5'7"" frame. there was extra space in the armholes and space around the waist, even factoring in its flowy style. it's not worth it to me to order an xxs online since my store doesn't carry it.",4,0,2,General,Tops,Blouses +1009,24,Daybreak maxi skirt,I absolutely love this skirt! the picture does not do it justice. it is absolutely beautiful and fits perfectly. i received so many compliments when i wore it!,5,1,0,General,Bottoms,Skirts +871,48,Beautiful detail,Beautiful well fitting top. you can't tell from the picture but the entire top is sheer so you need a tank or camisole underneath.,4,1,2,General,Tops,Knits +862,29,Satisfactory,"I bought this shirt with the intentions of using it as a nursing top. to that effect, i'm happy with the purchase, and will get a lot of use out of it. i bought two on blush and one blue at the same time. however, i was surprised that the shirt was so open and loose. i thought it was just a deep v-neck, but the design actually really opens up once the hook and eye is undone at the top. you are then very exposed, there is nothing but an opened front shirt. this is convenient for a nursing mother,",3,0,0,General,Tops,Knits +831,48,Another great retailer top!,"Nice modern print, vibrant colors, and not sheer (no need to add an extra layer which is nice for those of us who run hot!)",5,1,5,General,Tops,Blouses +877,77,Very cool shirt,"This t is so pretty in person. the gold is metallic with embroidered detail. this is my first purchase of this brand, so my usual size medium fit just fine. i am excited to put this under one of my blazers for a casula friday. it is quite unusual and great quality.",5,1,5,General,Tops,Knits +237,55,Classy bathing suit,I love this suit. the color is stunning and the quality of the material is excellent. a one piece never looked so good!,4,1,1,Initmates,Intimate,Swim +877,39,Worth full price,"I went with my instincts and grabbed a size l as opposed to my usual medium. fits great and flatters the girls while hiding my meaty back! such a great artistic design, i will love wearing it this weekend. i am scared to wash it, i may just have to dip it in lingerie powder and drip dry. for fit reference: 140#, 36dd, i hold my weight in my neck, shoulders, back, upper arms, tummy (i'm not a gorilla.)",5,1,4,General,Tops,Knits +825,47,Item is not as shown.,"Very disappointed the back of this blouse is plain, not as displayed.",1,0,0,General,Tops,Blouses +1008,48,Leifsdottir never disappoints!,"Love this brand, wish there was more available. always a perfect fit and excellent quality! great color, more rich and red than what you see in pic.",5,1,0,General,Bottoms,Skirts +999,34,Great skirt!,This skirt is beautiful! the green really pops and makes the skirt stand out. it runs true to size. definitely a great addition to your wardrobe.,5,1,0,General Petite,Bottoms,Skirts +1038,38,Fun jeans!!,Loved the idea of these as soon as i saw them! great mid weight jean. a little large in the waist. the rhinestones sparkle and i received tons of complements when i wore these jeans! great dressed up or down!,4,1,3,General Petite,Bottoms,Jeans +1038,53,Cool and fun!,"I honestly, have to give these jeans 5stars. i loved them when i saw them in the store and had to have them and when i wore them, i got tons of compliments. they are super comfortable too! i read some of the other reviews and thought that their comments were a little strange. these jeans are obviously not classic and they will go of style but, if you run a little outside of the style box you will welcome them in your wardrobe.",5,1,0,General Petite,Bottoms,Jeans +862,37,Pretty & comfortable,"I purchased this when it was on sale and it is a great, comfortable, and forgiving top. this top again runs a bit large, so i ordered a size down and it fits great. i think that they are off a bit on their description of the color. i ordered ?pink? but i would consider it more of an orangish red color. not my favorite but not terrible either. overall it is a great shirt.",4,1,0,General,Tops,Knits +470,54,"Vibrant & comfortable, what else could i ask for?","This basketweave bikini top in fractals red by mara hoffman is my favorite right now. soft, fully lined, and reversible to pale pink as are the matching basketweave bikini bottoms. the pattern looks like a vibrant watercolor painting with some fuzzy edges. +. +i got the size 's' according to the size guide on the mara hoffman site. i'm 5'2"" currently 33-25-37ish without a bra on (bra size 30d, 32c, even a 28dd if i can find it). the front coverage is perfect. it also fits around the back, but i",5,1,0,Initmates,Intimate,Swim +1104,24,Stunning dress,I am 125lbs and purchased the petiite small. the dress is very flattering and can easily be dressed up or down. the fabric is a medium weight and does not cling to trouble areas.,5,1,12,General Petite,Dresses,Dresses +1038,55,Too much bling for me,"I am a pilcro hyphen fan and have bought nearly every embellished jean they've made in the last few years. these, however, are just not for me. i love the faded wash, and i thought the embellishment would be fun for the fall and holidays. however, there's just so much of it! it's beautifully done, but the jeans actually feel bulky and stiff in the pocket and upper thigh area. i've had other ""beaded"" jeans, but they didn't feel quite so ""crunchy"" when i wore them. one other note: these seem to ru",4,0,10,General Petite,Bottoms,Jeans +1008,40,This skirt is so beautiful,"I was returning something to the store. before i stepped out of the store when this skirt caught my eyes. it's such a nice skirt, with the gorgeous red color, beautiful buttons and material that is heavy and thick but soft. i paired it with a white shirt that is currently on sale and fell in love with both matching together. it is tts, i'm 5'5 and 120lb and i usually get 0-2 in size. size 0 was sold out in the store so i tried size 2 and it fits me very well. the length is great, it falls 2-3 in",5,1,5,General,Bottoms,Skirts +927,63,"Pretty, but heavy and thick","Gorgeous design, but it was just so heavy. i felt overwhelmed by the amount of fabric, although this is my fault for thinking i could get by in regular sizing as petite was sold out. will be returning",3,0,1,General,Tops,Sweaters +840,22,,"Ok so this top runs extremely large. for reference,i am a typical medium but i ended up purchasing an extra-small!!! besides the sizing issue, the style is super cute and perfect for any summer occasion whether casual or more formal. i definitely recommend! (ps. beware it does wrinkle easily lol...)",4,1,1,General,Tops,Blouses +877,52,Soft unique graphic tee,Soft! sleeve is cuffed! different. called moonscape. cool vibe. tiny threads on front of moon.,5,1,7,General,Tops,Knits +1083,29,,Omg!! i just received this dress and it is absolutely gorgeous!! fits me like a glove. lovely rich reds and quality..... for reference i'm 5'2 and 99 lb and the 00 petite was perfect i could have even gone with the 00 regular. if it's within your means i highly recommend. :d,5,1,0,General Petite,Dresses,Dresses +1094,36,"Great, but...","I love this dress! the print and the fabric make it a fun, uncomplicated outfit choice that can be dressed up or down very easily. that being said, there are two issues i wish i had known about, although i probably would have purchased anyway. 1) it has pockets -yay!!! but also, the pockets create a bulge where they hit my hips and it's not a flattering spot on me to have an extra bulge. 2) i washed before wearing because it was super wrinkled and me and the iron aren't friends anymore. so i thr",3,1,0,General,Dresses,Dresses +842,38,Go to summer tank,"This tank i am in love with. the color is great to go with jeans or any color i have in my wardrobe. it works with skinny jeans, culottes or a skirt and perfectly compliments the current shoe styles. my gladiators, summer booties, and my espadrilles are all equally cute with this outfit topper. it is made out of the most beautiful lightweight material and will be great for the 100 degree plus summers that we have here in texas. the bra thing is a bit of a problem because a strapless bra dose not",5,1,6,General Petite,Tops,Blouses +990,59,,Really cute and comfy and casual skirt. i am looking forward to travelling in this skirt and running around for the summer. i did size down one size. highly recommend. will get lots of wear.,5,1,3,General,Bottoms,Skirts +830,28,Fits very small,"I loved the design of the top! it looks great in person too. i am typically a size 12 top, and i ordered a size l. i could barely get the top on, and once on, it was super tight around my armpit area and waist. i am going to exchange it for an xl and hope that that will fit. the fabric has no give or stretch; it is tight fitting. underneath the ruffles the top looks like a halterneck tank top style.",3,1,9,General,Tops,Blouses +842,57,"Great fit, perfect for summer","I bought this cute ruffled tank in ivory to go with a silk wrap skirt i've had. it arrived today and it fits perfect. i am 5'5"", 125 lbs and small busted 34b. i bought size small after reading the reviews and glad i did because it fits perfect. the straps are not too long (a common problem for me), it's a nice length, nipped a bit a bit at the waist with slight flare below. also it does not gap under the arms which is much appreciated. a lot of thought went into this little top. i can wear it to",5,1,1,General Petite,Tops,Blouses +830,39,A tad thin and see through,"I tried on xs petites as someone had returned it . i didn't find that it ran small, it was ok on me. i am not sure if the regular size would work but i didn't end up purchasing this today as the color was jsut so-so on my skin tone. + +likes: contrast and detail in ruffle, romantic + +dislikes: the tag pulled on the fabric a bit and you could tell, so the fabric seemed fragile.",4,1,1,General,Tops,Blouses +533,44,Softest shorts on the planet,"These shorts are a must. they are so soft and go with every top imaginable. i bought these in an xs and feel they run tts. for reference i am 5'1"" and normally wear a 24,25, or 0. you will not regret this purchase.",5,1,4,General,Bottoms,Shorts +490,42,Love this romper,"Bought the blue romper and love it to bits! definitely a summer staple. i'm 5'4"", 105 lbs and generally consider myself proportioned, but curvy on the bottom, and the xs fit perfectly. many rompers have really short inseams, but this one is a relatively conservative 4-5"" so i feel comfortable and can dress it up or down. i've worn it a few times and received tons of compliments. it's super comfortable, forgiving, and flattering. i originally purchased it in black in pxs and ps, because at the ti",5,1,2,General Petite,Bottoms,Pants +1094,27,Easy to wear,"This dress is extremely comfortable and the material is very soft. i was worried it would be too clingy but it hangs nicely. the length is just right, although the pockets hit below my hips. i was a little unsure of the bold pattern but i liked it better in person. i bought it to wear on an upcoming beach vacation but now i plan to pair it with flats and sweaters for the fall.",4,1,0,General,Dresses,Dresses +269,60,So very odd,"The fit on this is so strange. the middle string is definitely too long and the thin halter top offers hardly any lift. the print is lovely and the quality nice for the price. the cups are padded, which is nice i suppose, but would barely cover anything bigger than a c cup i'm guessing. i'm a 32dd, size 8 in pants, and size 4/6 in dresses and i ordered a medium. i also have a long torso, which probably didn't help.",1,0,1,Initmates,Intimate,Swim +533,36,,"Love, love, love. like another chambray item i have, they feel stuff and rough after washing, but once you put them on, they soften up and look great.",5,1,1,General,Bottoms,Shorts +877,29,Too short and too wide,"I'm taller (5'8), so it's not uncommon for things to be too short on me, but this was really short for the style. it was very wide and loose all over in my usual size - both up top and in the wavy part below. the style really just did not work with the length. it looked very odd.",2,0,0,General,Tops,Knits +877,33,Short and wide,"I was very disappointed by the fit of this top. it is quite short (especially in the back) and very wide. i did not find it flattering. on a positive note, the fabric is nice and thick - very warm layering piece for fall. for sizing reference, i'm 5'5'', 122 lbs, and took my usual size xs.",2,0,0,General,Tops,Knits +1094,61,Perfect easy breezy dress,"I love unstructured pull on dresses in the summer and this maeve is better than photo. i wear a medium and fit is spot on. i also purchased the earlier version of this dress, same style and maker, different pattern and have gotten a lot of wear out of it this past summer. i expected this dress to be identical, but it's even better, it's fully lined and is a slightly different and more substantial fabric. +and did i mention pockets! i plan to wear it into the fall with a short cardi to dress it u",5,1,5,General,Dresses,Dresses +830,36,Beautiful top - runs large,"I ordered a m and l based on the reviews - and both were too big. this is a drapey top with large arm(pit) openings. +i have since ordered a small and hope this fits well. +in general, this top is beautiful. +i usually wear a 4/6 or s/m top/blouse and am 5'8"" with a slim build. the m should have fit better than it did.",4,1,0,General,Tops,Blouses +830,54,Strangly clingy,"I'm not sure if it was my undergarments or not, but the top clung to me in a strange way. the colors are rich but in addition to the odd fabric, the sleeves did not flatter my upper arms.",3,0,0,General,Tops,Blouses +1094,56,,I purchased this dress in 4 colors...beautiful and so comfortable. highly recommend,5,1,1,General,Dresses,Dresses +1094,39,Easy to wear and go,"Love this dress! runs big though, size down",5,1,0,General,Dresses,Dresses +490,39,Fun romper,Love this! i sized up to xl from large.. great pattern. very soft. i am thick legged and big booty. this romper is the perfect length. the only issue is when i need to use the bathroom. hard to unzip from the back in a hurry. i had my husband unzip for me in order to pull down.,5,1,9,General Petite,Bottoms,Pants +1094,35,Versatile!,"I didn't expect to love this dress.. i assumed it would be something i'd return. this dress is so cute on! i love how well it fit me and that i could dress it up for work with booties, or pumps and a cardigan or dress it down for happy hour or a baby shower. i ordered a small ( i am 5'4 and 130 lbs) and it fit me like a glove....good job maeve you did it again!",4,1,1,General,Dresses,Dresses +1094,32,Loved the colors,Love the dress. runs a little big. i ordered a size down than i normally wear and it fit. versatile too--i even wore it to the office with a black blazer over it and got lots of compliments!,5,1,0,General,Dresses,Dresses +459,28,,,5,1,0,Initmates,Intimate,Swim +1028,36,Great jeans...with tailoring,"Having recently purchased a pair of citizen jeans from retailer in my normal size, i went ahead and ordered these because i needed a skinnier fit (my stevies finally ripped). they fit sort of big in the seat, but improved upon washing and are a bit more snug. i took them to the tailors and had the length taken up (i always have to do this, but these were particularly long). they are not as skinny as on the model, but will still working for going to work. not really what i was looking for (an every",4,1,0,General,Bottoms,Jeans +829,59,Skylar buttondown,"The fit is slightly loose, but figure flattering, the fabric is semi sheer and the light, coral color is very pretty. however, after one, short wear i discovered fabric torn from both sides of the back seam. unfortunately, i need to return this blouse asap.",3,0,7,General Petite,Tops,Blouses +307,35,It's okay,"I've noticed this sports bra several times in my store-along with a whole line of products that share this fabric and didn't feel necessarily compelled to try it on but i finally did this last time at retailer. i pretty much predicted what i was going to think of it. i like the back with the extra strappy open section, but that is where it ends. the fabric is not particularly flattering, and i didn't think the bra accentuated my chest. i do have a small bust size, but i have a lot of sports",3,0,9,Initmates,Intimate,Lounge +988,58,Unique and different skirt -- work of art!,"I love an item of clothing that i am able to justify its purchase by knowing it is unlike any other piece in my closet. this skirt definitely fits that desire.the material looks almost like the colors were ""felted"" onto the dark background creating a wearable art piece! very vibrant colors. the material itself is somewhat stiff and maintains its structure when on. i needed to wear a size 6 (i'm sometimes a 4; sometimes a 6 with a waist measurement of 28"") and the skirt sits at the smallest part",5,1,2,General Petite,Bottoms,Skirts +1096,31,Well quality,This dress is made well. love the design and the colors. i ordered a size 2 and it was smaller than i expected. but overall quality of this dress is so worth the price.,4,1,0,General,Dresses,Dresses +965,26,Perfect for california winters,"This sweater/coat is great. it super comfortable. it's perfect for my california winters! it could be layered for colder areas. this piece definitely runs large- like really large. i went with an xs instead of my usual small or medium. it is meant to be boxy, and still is but sizing down allowed for it to be more flattering. i'd definitely say go in store and try it on, you'll love it!",5,1,3,General Petite,Jackets,Jackets +965,47,Too much piling,Loved the design but jacket looked like 20 years old because of a lot of piling even brand new jacket at store. i wish they use better quality fabric so i would have purchased it.,2,0,0,General Petite,Jackets,Jackets +1095,32,Confidence-booster!,"I'm pear-shaped so my inclination is to always grab an a-line/fit-n-flare style dress or skirt. but for some reason this stood out to me and i'm glad i tried it on. i love this dress! i'm 5'9 with a longer torso and this still went down to my knees so it definitely works for taller girls. the cut is so flattering and, along with the thicker material, it gives me more of an hourglass shape that enhances my curves instead of making me want to camouflage them. i got my dress in a size 6 and it's tt",5,1,4,General,Dresses,Dresses +1096,56,Runs small through bodice,"I recommend this dress for women wth a small bust. this is an absolutely gorgeous dress, but it runs very small through the bodice and is almost empire waisted. if you remember the coral dress from spring by the same designer, it fits the same but this one has a tiered skirt. so sad- i love this dress-the colors and design are beautiful.",5,1,1,General,Dresses,Dresses +868,52,Perfect with jeans,"I ordered the cream. the fabric is unique. similar to a waffle but with a dressy quality. you definitely need a cami or tank underneath. its form fitting without being too snug. i like to wear it with distressed jeans, front tucked in and kind of ruched to hide my middle, (my trouble spot) with chunky accessories, belt, necklace and a block heel. it's a little pricey but decided worth it.",5,1,1,General Petite,Tops,Knits +46,52,It's a no,"Got this in the sky color. returned it because the top is way too sheer for me, if you know what i mean. i wanted a pretty gown i can wear without a robe in front of my kids. no can do. also, for the price, material just felt flimsy & cheap. it does run small ~ the medium was good on me and i'm 5'2"", 114#, 34b",2,0,0,Initmates,Intimate,Intimates +388,54,Great! but delicate,"These are great, the colors are a little different in real life. they are really great but i think they are a bit delicate and i hope they hold up.",4,1,0,Initmates,Intimate,Intimates +307,39,Nice and soft fabric,"I tried this on, the fit was true to size, as far as no cup size goes (32dd, got xs, was ok). the pattern i like, and was totally fine on my pale skin, but think of it, i would not likely wear this without a tank or shirt... support seemed ok too, i do like the criss-cross detail in the abck. thinking about keeping it, but i jsut don't ""need"" it right this second... dilemma. + +caveat: not been tested in a workout, obviously, since i am not sure i will keep it (may chance it on sale).",4,1,2,Initmates,Intimate,Lounge +988,45,Really pretty - runs small,"Don't size down, as one reviewer recommended. you'll wind up trying to exchange. the colors are beautiful and the front panel has a lot of texture. it's a great find.",4,1,1,General Petite,Bottoms,Skirts +829,36,"Beautiful, poor quality","I love this blouse, i've received so many compliments on it. unfortunately i just got it back from the dry cleaners and the color completely changed to a pale yellow! it also ate away some of the fabric, so now it's completely transparent... and i go to an organic cleaners! + +retailer: if you can fix the fabric quality this blouse would be a classic.",3,1,2,General Petite,Tops,Blouses +965,32,Looks cheap,I didn't realize that the grey sleeves are attached (i assumed that was just an undershirt on the model). needless to say it looks cheap and poorly made. will be returning,1,0,0,General Petite,Jackets,Jackets +965,32,Not for me,"I was searching for the perfect large comfy sweater for the cold winter weather ahead and i thought this would be it. it looks so cute in the pictures but when i received in by mail it wasn't what i was searching for. this sweater, like on the model, is quite large. although i wanted a large sweater, the fit of this one didn't fit well on me. it has more of a boxy feel to it. i usually wear a medium, but went with a small because i expected this to fit a little large and it still engulfed me. i",3,0,0,General Petite,Jackets,Jackets +1062,50,Unique beautiful pants,First thing i would say these pants run large i'm a size 6 the size 4 fit perfect i love the style and look of the cascade fabric on leg of these pants but these pants are a little heavy still a beautiful pant,5,1,0,General Petite,Bottoms,Pants +988,78,Lovely skirt!!!!!,"This skirt is absolutely lovely!! +i'm usually a perfect size 8 in all retailer clothes. +i am curvy on the bottom and the skirt pulls slightly, so i will be sizing up. +can't wait to get my new size!!!",4,1,0,General Petite,Bottoms,Skirts +818,38,Tight sleeves,"I ordered this item when it was first advertised, fell in love with the unique pattern in the top and could hardly wait for it to get here. however when i received the top i was very disappointed, the fabric is cheap, the sleeves are tight and the overall product is of poor quality and poorly constructed. needless to say i returned it.",3,0,4,General,Tops,Blouses +965,44,,"Tried the navy in store. boy does it run big! i'm normally a size 6 / small (ish). 5'6"", 34a-28-36. the xs was still quite boxy on me while the sleeves were well fitted. i understand this is the style and i like the design with the different sleeves. +it was a no buy as the main fabric was already pilling in store and looked a bit cheap - sorry!",3,1,14,General Petite,Jackets,Jackets +818,42,Lovely flowing top with detail,"Contrary to the first review, i find this top to be gorgeous. the fabric has a silkiness to it (with a slightly heavier weight). the lace thru neckline is beautifully done (the eyelets are high-quality). the fit has flow, like on the model, but still a bit of shape (not the formless fit that some blouses like this have). i love the open sleeves. i am 5' 8"" 120lbs 34b and am happy with the xs.",5,1,2,General,Tops,Blouses +1096,35,"Beautiful, runs big","The dress is lovely. the beadwork creates a nice accent. it runs big. i got a size 0, which should work out just fine for me, but oddly it is big and i wish i got a 00. now there aren't any in that size and i will either have to return the dress or tailor it. i would recommend this dress, just consider ordering a size down from your usual.",4,1,0,General,Dresses,Dresses +46,54,Truly a fine gown for the feminine!,A finely laced sheer bustier along with a gown split along the sides makes for a lovely sleeping garment. the material is cooling and the lace is not itchy.,5,1,0,Initmates,Intimate,Intimates +829,46,,"I ordered this in the peach color and it is a beautiful pale color. the underside of the cuff has a pretty pattern on it, so if you roll it up once it adds a little something extra! it is extremely see through though so you might want to wear a tank under!",5,1,13,General Petite,Tops,Blouses +988,58,,"I absolutely loved the patterns and colors of this skirt, if only the cut wasn't so odd. the sides of the skirt ""wing out"" for a very distracting and unflattering look. the stiff, felt-like quality of the material only makes matters worse. in that respect, the model photos are not at all accurate. it also runs large. i had to go down one full size.",2,0,1,General Petite,Bottoms,Skirts +1096,56,A funny thing happens as women's figures fill out,"I am a true size xl. in my 20s i wore a small and then medium, so i know whereof i am speaking here. i tried this dress on in my local retailer store. this designer, as a handful of retailer designers seem to do, simply enlarges the fabric measurement outward as they add another size. the problem is... a funny thing happens to women's breasts as they gain weight. is this so difficult to understand? as a size small i was an a cup, as a medium i was a b cup. now, years later, as a size 16 i am a d cup",3,0,3,General,Dresses,Dresses +965,32,,"I bought this online in the grey and blue and had high hopes. it runs big so size down at least 1-2 sizes. i didn't realize that the sweater looking part on the forearms was part of the coat. that part of the coat is really nice and comfy. unfortunately, the rest of the coat (the wool part) is very itchy. it would've been awesome if it was lined on the inside, but it's not...so i'm taking them back.",2,0,0,General Petite,Jackets,Jackets +1096,42,Beautiful special occasion dress!,"This dress is beautiful! +i am on the short side so i ordered in regular and petite and due to the length the petite is better. +the material is soft and comfortable to wear.",5,1,0,General,Dresses,Dresses +1096,22,,"There'd a reason this dress is all over instagram and like. it's stunning and beautiful, perfect for a wedding or event. the beading is beautiful and the tiers on the dress are more flattering than you'd expect , especially since it does have a bit of pouff to it. love it, 5 stats! i sized up so that it would be longer",5,1,0,General,Dresses,Dresses +1096,34,,"This dress is way prettier in person than online. fits like a glove. a little tight up top as are most side zips. i did not have to size up, however.",5,1,0,General,Dresses,Dresses +871,47,Great piece to own!,"I love wide neck & off-shoulder tops. i think they are very flattering. at first i thought the fabric was too thin but then realized since i want to wear this with a fuller party skirt, its nice that ir is not too bulky. +i actually think it will be really cute with white jeans in the summer and great way to dress up a casual outfit.",4,1,10,General,Tops,Knits +825,31,,Loved this top when i received it. unfortunately it runs very big. i ordered a small because it had come up but in reality i need an x small and maybe even that would be too big. im 130 pounds and 34dd. its a nice shirt just a little expensive.,4,1,5,General,Tops,Blouses +1096,21,,"Lovelier in person! fit tts; i tried this on, walked away without it and returned to my store to purchase because i couldn't stop thinking about this dress. most definitely can be worn now, but will layer well through the winter - dress it up with heels and accessories or make it casual with a denim jacket and booties :) perfect floor length at 5'3.5"" in the regular 0; tiny bit of room in the bust for a 32b",5,1,1,General,Dresses,Dresses +965,45,Great coat!,"Great coat! lightweight, oversized, yet warm. just enough structure to flatter most body types. i wear an xl/14, but got medium as it's very oversized. light enough to wear with layers. got a million compliments!",4,1,0,General Petite,Jackets,Jackets +965,41,Cozy and stylish,"This arrived just in time for the winter snow storm. + +i was glad i had read previous reviews advising that it ran large, and that the gray sleeves are surprisingly attached to the sweater, and do not represent a separate top beneath the sweater. + +i got a size small, and it fits perfectly. it's big and boxy but doesn't make feel like i look fat. with slim-fitting trousers - it's super stylish.",4,1,0,General Petite,Jackets,Jackets +988,54,Gorgeous skirt,Absolutely gorgeous shirt. the quality is outstanding! only problem is that it is too small. i am usually a perfect size 6 and this will not zip. returning for a size 8. you won't regret buying it!,4,1,0,General Petite,Bottoms,Skirts +836,57,Classy shell.,"1. i'm 5'5"" tall, 145 lbs, and 38 (36d) -32-40, and a solid size 10. the size 10 fit me perfectly, but if it shrank it would be too tight across the bust. the size 12 also fit me well but was an inch looser all around. the darts on the 12 hit me in exactly the right place, so i decided to go with the 12, even though it looks a little big. it makes me look smaller. + +2. the fabric is a soft ivory color, and the fabric is soft but thick. it's not see through at all. + +3. the lace on the sides a",5,1,13,General,Tops,Blouses +1096,28,Stunning but not tts,Absolutely stinning dress! statement piece for sure however i will agree with other reviews that the bust is small and has no give or wiggle room with the side zipper...one if those dreaded side zippers that you always fear breaking as you dress. sizing up would help but the waist then appears too big or bulky.. i am on the fence about whether or not it's a keeper ...definitely perfect for the smaller chested. i usually wear xs size 2/4 the 6 zipped the 4 nearly did but would've smashed. neverth,3,1,0,General,Dresses,Dresses +1095,34,Love this dress!,"I'm 5 ft 3 inches, 130 lbs. this dress fits perfect! i bought a 4r. the petite 4 probably would have fit and been a inch or two shorter but i don't the regular looked bad. it hits an inch or two below my knee. medium thickness of fabric is forgiving even though the dress hugs in all the right places. beautiful dress!!",5,1,0,General,Dresses,Dresses +307,33,Love the floral pattern,"I love this sports bra. i do various exercises and it works great for all of them from yoga to running. the floral pattern is what really drew me to get this, but the quality of this bra is the best i've ever gotten. i wear a 34b bra and the medium fits perfect!!",5,1,3,Initmates,Intimate,Lounge +1095,35,,"This is a really nice dress for the money. i definitely had to size down. i've always taken a 4 in hd in paris tops, so i initially ordered a 4. but it was a little too big in the chest area. (i wear a 32dd so normally this isn't my issue.) i replaced it with a 2 and it fits great. i also have a long torso, which can be an issue for me with dresses. but this one works on me! this is definitely a good dress for taller girls. the material is high quality too. i'm going to wear it to my friend's we",5,1,6,General,Dresses,Dresses +1096,48,Missed the mark!,"Very disappointed: runs small in chest and too long. the fabric is cheap but the print is pretty with the bead and flower detail. i don't think this dress is worth the price, it is not even silk and the underlay feels like cheap gauze. i have been in the fashion industry for over 30 years and this is a miss mark in my opinion. put it back on the rack, and save your $ for something better at sweet retailer!",2,0,0,General,Dresses,Dresses +1096,56,Bhanuni is sloppy with its construction,"I had fallen in love with the coral dress that was somewhat like this one and came out a few months ago. but the problem i'm having with this one is the same problem i had with the coral one. they are all flawed in their construction! i had eventually tried 3 size 16s in the coral because each one was flawed. on one, one side hung longer than the other, and on all 3, the top design did not line up with the bottom design. this blue one is the same way! the top design does not line up with the bot",2,0,3,General,Dresses,Dresses +868,48,Really cute and comfortable top,"I knew i had a winner when my husband said ""cute top"" the first time i put this on. the style, quality and sizing are all excellent. i love the lace detailing in addition to the open shoulder style. i am always looking for long sleeve tops that go great with jeans and are right on trend. this a great addition to my all wardrobe.",5,1,0,General,Tops,Knits +46,42,Love,"I love this gown so much, i would wear it everyday if i could. it is cozy, beautiful, and feels special like an heirloom. the top is perfect coverage and the skirt is so soft. color is much prettier than the photo picks up!!! i love this gown. my favorite, hands down.",5,1,7,Initmates,Intimate,Intimates +829,63,"Adorable and comfortable, poor fabric quality","I tried this blouse on and loved the style, comfort and color of the peach so much that i was preparing to buy it. when i pulled the sleeve the fabric came away from the cuff. i tested another spot pulling only gently and the same thing happened. too bad since the color would have been a great addition for me. + +but--i also tried the blue and it gets 4 stars, as the fabric is much better. it too is adorable, soft and did not tear on gentle testing. the two blouse colors are made from different",1,0,13,General Petite,Tops,Blouses +1096,43,Gorgeous!,Oh i simply can't say enough about this dress... it's just so pretty! i've sometimes had trouble with beaded pieces from retailer but not this dress. it's a very flattering piece and the material is comfortable and soft. really flattering. you can dress it up or down as well - i'm glad i'll be able to wear this into fall with a leather jacket.,5,1,0,General,Dresses,Dresses +943,49,Gorgeous sweater... but not so flattering.,"I have to say, this sweater is gorgeous!!! i bought it in the green motif and absolutely loved the variety of colors used. i just didn't like the fit. it was so... blah. i felt like an old lady wearing it... it really had no flare to it... it was pretty boxy and boring :( so, very unfortunately, this one went back. way too much $$$ to not be in love w/it!",4,1,2,General,Tops,Sweaters +1096,63,Gorgeous dress!,"Just had to review this dress because it is so beautiful. the fabric is light and soft, and is really perfect for this flowy tiered design. the colors are really pretty, not too bright, and it fit perfectly. i would say that it is much more dressy than it appeared in photos. the bodice has some beading, and it was much longer on me than on the model, though still a perfect maxi length. it would be perfect to wear to a wedding or formal affair.",5,1,25,General,Dresses,Dresses +965,34,,"I love this sweater. i didn't buy it the first time when i tried it at the store because the buttoned look created a bulk on one side and i thought that this was very weird. it might have been what i was wearing underneath that day or that particular sweater. but then at 40% off i decided to give it another try and i'm happy that i did. i bought the navy and i love the feel of the material. sizing down makes all the difference, too. i wasn't fan of the attached sleeves at first as they are made",4,1,1,General Petite,Jackets,Jackets +1096,62,Heartbroken,"I just received this beautiful dress in the mail after ordering my usual size petite 12. words can't describe how beautiful the fabric and embroidery appeared as i pulled the dress from the box. i quickly tried it on. the length was perfect. but when i attempted to zip the side zipper, i realized that i would never be able to zip it up over my size 38c chest. the bodice is simply too small. sadly, i have to return the dress. this is my biggest disappointment from retailer so far. if you have a ver",3,1,4,General,Dresses,Dresses +1011,51,,This skirt has no closure along the slit. i can't begin to understand how it could be worn as shown in the photo-you would be completely exposed. it completely baffled me,1,0,0,General,Bottoms,Skirts +1096,40,Pretty dress - not for me,The dress is very pretty! i ordered for a wedding and thought it was a little casual for that. in the end i returned because it wasn't very flattering for my figure.,4,1,0,General,Dresses,Dresses +965,26,Perfect winter coat,Love this coat! super soft and cozy!! did not realize the sleeves are built in to the jacket. wasn't too excited at first but once i tried it on i fell in love. great quality!,5,1,0,General Petite,Jackets,Jackets +868,31,Nice but a little snug in the stomach,"Love the design of this top. wish i could have gotten it in white but was sold out. it fits nicely overall, but is a little snug in the stomach area. still kept it though, because the shirt is just so pretty!",4,1,0,General,Tops,Knits +1096,39,Trusted my instincts,"My wardrobe craves lush detail-rich dresses like this beautiful maxi. knowing that the dress is expensive and made of all synthetic fabric, i took the plunge and purchased the largest of my size range. i've noticed that most indian labels commissioned by retailer fit tighter in my chest/shoulders, so i'm glad i trusted my instincts and bought the 12p as it fits perfectly on my 36dd chest and wide shoulders. this is not a casual dress--there are sequins, beads and rosettes decorating the bodice.",4,1,31,General,Dresses,Dresses +1028,50,,"The denim is soft and very comfortable, the color also is very dark and goes well with most anything. the style is 'oversized' for baggy look and for that reason the sides of the over-alls gape open requiring a long top. i usually wear a size 4 in citizen jeans, and ordered small in the overalls and had to return for an xs. i do recommend for comfort and fun. they look great with booties or flats and hit just at the ankle.",4,1,0,General,Bottoms,Jeans +965,44,Should have read reviews,Has i read the reviews would have realized the t-shirt looking sleeves in the pic are attached to the sweater. based on the pic and site description i didnt realize they were attached. i thought it was part of the styling of the undershirt. i think this very much limits the versatility of the sweater. i ordered the white which is a beautiful color and very soft. i am returning it cause i do not like the t-shirt sleeve. would rather have the flexibility to layer whatever shirt i wanted,3,0,0,General Petite,Jackets,Jackets +965,37,,Beautiful sweater coat! love that is easy to pop on & head out. i did have to go to a seamstress and have the button moved as it was to large and boxy around my waist area.,3,1,0,General Petite,Jackets,Jackets +1096,39,"Lovely concept, lack of attention to detail","Lovely colors and print. my problem with this dress was that the bust was on the smaller side (it will fit those with a smaller chest nicely!), and worse, the beading on the bodice was attached with black thread, which showed through the sheer netting layer on top. + +for the price, this particular detail should have been addressed.",1,0,15,General,Dresses,Dresses +868,29,,"The design of this shirt is stunning. i can't even tell you how many people complimented me on the shirt. the only thing is it does run a bit long. with it being long, it can go nicely with leggings and boots. + +material is a bit thin and should be hand-washed or dry cleaned. i do wish there were more sizes in petite.",5,1,0,General,Tops,Knits +864,22,Very feminine top,Great item and very feminine. can be dressed up or down and fits true to size.,3,1,0,General,Tops,Knits +1080,34,Love!,"This dress is so flattering! i absolutely love it! it hides a multitude of flaws. the sleeves are just the perfect length for me, as is the length of the hem. the waist also sits right where i want it in the regular sizes. the material is comfortable and has a little give to be a little clingy on top but flares perfectly on the bottom not too far out that it makes your bottom half look huge. just perfect!",5,1,0,General Petite,Dresses,Dresses +864,54,,"It's hard to tell how you will like this top unless you try it on first. 1. yes, it runs big and wide but not long, which i like. 2. yes it it is fairly sheer, but the design allows for a fitted tank. 3. i found it adorable once those first two issues were corrected. it's a cute late summer top, easy breathing for humidity. +i like this top as well because it allows for a normal bra strap, so you feel covered but the sexy shoulders peek out. it also is a bit longer in the back than the front wh",5,1,3,General,Tops,Knits +875,42,Beautiful summer too!,"This is a really pretty top. the yellow underneath is a very pretty shade and the tank itself is very soft and comfortable and just loose enough to hide any bit of tummy. the armholes are large, however, so they are low and make the front look almost like a halter with the way they come in. i would order down a size as a result. you'll be able to wear most bras with it but be aware that anything that spills out under your arms will be visible.",4,1,1,General,Tops,Knits +1080,39,Very well made but waistline sits high,"After seeing how this looked on model in the picture i had a feeling it might be not only a bit short but also high waisted. so i took a chance and ordered a regular size 2. i am 5'1 115lbs, so i typically order a petite 2. received this today and am very happy i made that choice. the waistline hits where it should and the skirt hit right at my knees. the fabric is perfect for winter. i was actually surprised at the weight of the dress when i pulled it from the box - it was very heavy. the lace",5,1,2,General Petite,Dresses,Dresses +822,59,Breath of fresh air,"This looks great with the pilcro lace bottom white jeans. i bought the yellow and blue and it is flattering on. longer in the back. i love the style of the sleeves. very flattering style and fun, flirty and feminine. slightly see through. depending on your modesty level a nude bra may be just fine or else a nude cami. a really fresh look for summer. i do not think it looks cheap. i do think it is overpriced but i have a hard time finding tops that hit me at the right length in front and are not",5,1,1,General,Tops,Blouses +875,32,Staple summer tank!,"I just received this in my normal petite xs and it fits perfectly! it's gorgeous in person, and i know this will be one of my most worn tops this summer.",5,1,12,General,Tops,Knits +1080,34,My favorite dress,"This is probably my current favorite dress. it is beautiful, comfortable, and flattering. i wear it with swept up hair and delicate earnings.",5,1,0,General Petite,Dresses,Dresses +875,32,Beautiful,Beautiful overlay runs large had to return for a smaller size,5,1,2,General,Tops,Knits +875,39,Soft and bright,"What i like about this is the yellow color peeking through the white, it makes the tank look sunny/happy. +soft tank, fabric is really comfortable, fit is loose and casual, i was undecided but thought i have so many nice pieces, i don't need this one,. xsp was a good fit. i am 115 lbs, 30 dd.",4,1,3,General,Tops,Knits +864,28,Order down a size!,"This top is very cute! however, it runs quite large. i ordered my usual size - xs but it looked rather heavy on me. the construction of the top was boxy and didn't produce the same feminine look as it does on the modeled picture. it's a very cute design but i would order a size down for a better fit.",4,1,1,General,Tops,Knits +875,58,Good summer datetop,"This is the sort of top i love to find at retailer. it's versatile because the fabric is comfortable enough to wear everyday and the lace gives it a dressy, feminine feel. i love the navy because the white behind it shows up the lace beautifully. the yellow behind the white is also very pretty. it's fuller than it looks in the product shots. even in an xxs, it's long on me at 5'4"" but it's fine. not sure i can wear with shorts because of the length but good with a mini. the neck is also a little h",5,1,0,General,Tops,Knits +1080,24,Love it!,This dress is everything i wanted it to be. i bought it to wear to a winter wedding and the material is perfect for that! i initially ordered it in a 0 regular and ended up having to exchange it for a 0 petite and it fits absolutely perfectly! the detailing on the shoulder is beautiful.,5,1,0,General Petite,Dresses,Dresses +1083,47,Cute dress for younger women,"First, i must say that this dress fits beautifully in my usual xs (5' 4"", 119 lbs) and the geometric pattern is adorable. i often have a fit problem with dresses (i think due to a long waist) where the fabric bunches up by my lower back. not so with this dress. it shows off my curves without being super tight and the fabric has a little stretch so the dress isn't binding. for my age, however (mid-40s), this dress is just a little too short for the office so i'm sending it back. also, i felt that",4,1,4,General,Dresses,Dresses +1075,37,Too boxy for me,"It didn't work with my frame at all, but is very nice!",3,0,0,General Petite,Dresses,Dresses +875,24,Love the fabric!,I am obsessed with the quality of the fabric on this top. i am giving it as a gift and can't wait!!!!,5,1,0,General,Tops,Knits +875,41,Great tank if....,The detail and design is gorgeous on the tank. my issue however is that the yellow is pretty bright. the website makes it look like a butter yellow but it is actually a lemon yellow. i do not care for that shade and would definitely limit what i paired it with. bummer!,4,1,2,General,Tops,Knits +1039,39,Not the same jean,As another reviewer wrote.. this is not the same jean featured on the website. same cut and style but it's a light denim wash with wiskering and worn look at the knees. i called customer service to see if this was a mistake and they said there was not really a way to check it unless i exchanged them. i didnt want the same wrong jeans again so i opted out ... too bad they are cure.,2,0,0,General,Bottoms,Jeans +829,55,Love this blouse,This blouse is wonderful. i just got and wore the wine colored blouse today. i received so many compliments. i love it and with the sale price it is so worth it.,5,1,0,General,Tops,Blouses +875,33,Really beautiful material,"The material is very soft and the lace has a beautiful design. it looks very elegant and romantic. you will need a racer back bra to wear with it though, because of the design of the straps. it is very flowing and i think the cut is flattering. the material in the back is slightly transparent so you might want to wear a tank underneath. overall, very pretty and i would highly recommend. (i purchased the white and yellow version.)",5,1,0,General,Tops,Knits +822,57,,Love! accurate sizing feminine details my new favorite top,4,1,4,General,Tops,Blouses +1083,41,Wonderful summer dress,"Such an easy to wear and nicely cut summer dress. it does not wrinkle, has pretty colors and fits very well. i haven't washed it yet, but i like the idea that it can be machine washed. highly recommend. the fabric is good quality, a little bit thick for hot days though.",5,1,2,General,Dresses,Dresses +875,63,,"This piece is almost what i want... i tried on the white version in an xs and it felt a little too large for me, even though it's meant to be a looser fit. the buttercup yellow behind the lace is very pretty - i especially love that part of this tank. it provides a nice contrast and allows the detail to stand out. the navy is also nice (it was on display next to the white and looks better in person than online). what i didn't like was the texture of the spandex on the back portion. it looks like",4,1,38,General,Tops,Knits +1080,33,Simply fantastic,"To sum up my review at the beginning: i walked out to my best friend and two retailer employees and all 3 of them stopped and said, ""whoa."" it's an understated stunner. +i tried this dress on a whim: and boy am i glad i did. i'm 5'4"", 140lb, 34b with weight carried on the bottom, usually wear a size 4 in fit and flare dresses: the size 2 fit like a glove here. +i'm shocked at just how incredible the lace is: thick, well laid on the base dress fabric, gorgeous without being too 'lacy'. the base fabri",5,1,0,General Petite,Dresses,Dresses +875,33,Very pretty.,Lovely. my only issue is that the arm holes are rather large. i needed to wear a tank under so that my bra wouldn't show. very pretty.,4,1,0,General,Tops,Knits +875,40,Comfortable & stylish,Love this tank. fits true to size & looks great with jeans or shorts. a bit disappointing that the back does not have the lace like the front (only on the top back).,4,1,0,General,Tops,Knits +1080,34,Beautiful dress,"I purchased this dress in our retailer store. i usually wear either a 0 or 2 petite (5'1"", 115 lbs.). i was able to wear a 0r in this and it fit perfectly. i paired it with a sparkly belt from retailer for a cocktail party and received lots of compliments.",5,1,0,General Petite,Dresses,Dresses +875,34,Cute and comfy top,"I got this top in a petite xs and it fit just as expected (i'm 5'2"", 112lbs). the material wears like a tee, so it's comfortable, but the front details give it a special look. this is going to be on my go-to list all summer.",5,1,4,General,Tops,Knits +881,25,Bummed,"I was so excited to wear this shirt, even after reading the review that it curls up i decided to give this shirt a shot, and i found that the same thing happened to me. it also clings tightly to the body. i would not recommend this shirt for anyone with broad shoulders.",2,0,2,General,Tops,Knits +875,36,,Beautiful top for summer. love the yellow under the thin white fabric. the photo is good representation. running big.,4,1,1,General,Tops,Knits +881,25,Itchy!,"I have somewhat sensitive skin and this fabric is awful! in addition to it having no give, feeling like it will stretch out, and being slightly see-through, it is super scratchy!! it has little bits of what look to be tree material in the fabric.. awful!",2,0,1,General,Tops,Knits +742,66,Nice pants but size down,"So hard to guess fit and size so because i carry my weight in my tummy i ordered an xl. they were too big. the waistband is a nice, very wide, comfy elastic but fit loose. the legs were a bit baggy too and too long for my frame. the fabric is soft and has a bit of a contrast down the sides of the leg. due to the length, i decided not to reorder a smaller size. i think you'd be safe to size down in these.",4,1,3,Initmates,Intimate,Lounge +856,66,Decent little tee,"You won't break the bank with this cute tee. loved that it's not a thin fabric. the variation in the stripes adds interest, too. i ordered a large, my regular size, and it fit well. i returned because it was a bit on the long side on my short frame, the colors didn't suit me and i need long sleeve tees now that we're heading into the colder months.",4,1,0,General,Tops,Knits +829,26,Black and white shirt,This shirt is even prettier in person. it's really flowy but still very flattering.,5,1,0,General,Tops,Blouses +1080,29,,,5,1,0,General Petite,Dresses,Dresses +1080,29,Loved the dress but didn't fit me right,"This dress was absolutely beautiful in person, but it didn't end up working out for me. i wear a 10, the 10 fit, but i have a 34g chest and because of that the waistline didn't sit low enough - it was just below my bust instead of at my natural waist. i really wanted this to work and think it would be great for the right person. seemed tts. love the detailing!",4,1,7,General Petite,Dresses,Dresses +875,21,For that perfect outfit,"Love this shirt- i got the white/yellow one and with a pair of dark jeans and booties i was ready for anything. i have an hourglass type figure, and sometimes with flowy shirts that is hidden. but this shirt somehow subtly emphasized that in an attractive way!",5,1,0,General,Tops,Knits +742,48,Very comfy,"These are a bit oversized, order a size down. they are a nice weight and look great under tunics.",4,1,1,Initmates,Intimate,Lounge +1039,39,I like them but...,"First off: kudos to the other reviewers for setting the expectation re: the color on these! they are not a dark rinse at all - not even close. they're a light-to-medium hue with fading down the front of the thighs. with that in mind, i do like the color - especially for spring - but would have been very miffed had i ordered these and they arrived so starkly different from the online photo. +---------- +i typically wear a 27-29, depending on the brand and waist rise. these were an online return t",3,1,5,General,Bottoms,Jeans +875,37,"Super cute, try on in store","I would suggest trying this on in store. the xs would've worked (that's my normal size), but i ended up preferring the s. it does have low armholes. the s in the yellow was just right for me, but the s in the navy was too low in the armholes and the shirt was cut a little crooked. still, a very cute and classic top that i know i'll get a lot of use out of.",5,1,5,General,Tops,Knits +875,53,Very feminine & soft!,"I really love this top! fits true to size, romantic lace detail. also love the white underlay panel for contrast. extremely comfortable soft fabric. so many ways to dress this top up or down.",5,1,0,General,Tops,Knits +250,39,Adorable as a regular top not sleep,I bought this cuz i wanted a plaid shirt that didnt have too much plaid..this is true to size and adorable! i will be wearing it out and not to bed or for lounge. adorable detailing on back and on shoulders...its a keeper!,5,1,15,Initmates,Intimate,Sleep +875,32,Wanted to love it but i don't,"I am very into the lace tops! purchased this but it's a very exaggerated swing top and on someone who is 5'3, it feels almost like a tunic. lots of extra material in the back. love the look and if you're tall enough, it should work for you!",3,0,0,General,Tops,Knits +1039,36,Not the right color,"I ordered these twice just to be sure there wasn't a glitch. the color is so off! the picture shows a dark blue denim, but they are not they are a light blue - with whiskering! retailer you need to have a better image of the color because this is so misleading.",1,0,8,General,Bottoms,Jeans +875,41,Armholes too large,"With a rather large chest, i am always having to size up in tops like this. the l fit well all over but the arm holes were just too low. even if i wore a navy bra (i got the navy version) it would still be cut too low. it's too bad because it is a beautiful and unique piece",4,0,4,General,Tops,Knits +1080,48,"Very special, but zipper could be better","I picked this dress up in a size 8 - fits tts. i have a 34dd chest; 145 lbs. and 5 ft. 4 inches in height. i have an hourglass figure and the size 10 was too big and the 8 fit just right. the skirt is lined and the upper bodice part is not, it says on the tag hand wash which is a plus because dry cleaning is not a plus. hits me just about 2 inches above the knee. the thick lace detailing is very special and price point with the dress promo made me feel this would be a great dress for the holiday",5,1,6,General Petite,Dresses,Dresses +875,43,Could have been great but just ok,"Love the detail of the white with yellow underneath but agree with the other reviewer that the material is very thin in the back. also, it is a flowly top so you will need to size down. however, because of the shape it will fit snuggly around the chest/arms. this didn't work for me as it accentuated my normal body type (as in not the model type). i am not overweight but it definitely didn't flatter my chest area. seems like the top worked for others so i suggest trying on first.",3,0,4,General,Tops,Knits +881,41,Not so bad!,"I actually like this top, but i am wearing it as a cowl neck rather than off-the-shoulder. i found it at the store, so i didn't even know it was supposed to be that way. i have the ivory color, and it it does have some tan/beige specks in it, but i don't mind this at all, it adds some texture and warmth. i think it is a great neutral top for work. it has a double layer of fabric, so not sheer at all, and this keeps it smooth over my middle without a tank or cami. + +i am an xs in most retailer to",4,1,5,General,Tops,Knits +881,19,,"It's a very cute design. it looks great tucked into a cute pair of jeans, if can even be dressed up. however, i agree with the previous comments about the top not staying folded down. it likes to ride up and is difficult to keep the style like the model in the picture has. it's a very cute design, it just needs to be worked with and adjusted time and time again as its worn. when it does cooperate, i've gotten many compliments on it! order a size up, i am normally a small but the medium worked be",3,1,2,General,Tops,Knits +881,30,Love this top!,"I ordered this top online. i had been wanting an off-the-shoulder top in a neutral color and when i found this one, i had to have it! i thought the price was great. when i received it, i was impressed with the quality of material. it fit me a little more tightly than some of my other tops, but was very satisfied with how it looked on my body! i got it in a size small. i do agree with others on here, the shoulders were a little more difficult to keep folded down...but overall...i am truly satisfi",4,1,1,General,Tops,Knits +881,56,,"I wanted this this top when i saw it online but was hesitant when i read the review however i went to the store and was able to try it on, good thing. i'm not a fan of the off white/beige material but really like the black style. i had no problem with the shoulders staying down. idid get it in a small a size up for me.",4,1,19,General,Tops,Knits +1080,36,Classic,"Beautiful, well made and styled dress. perfect for company christmas parties where you want to look nice but not show too much cleavage. i wear it with a cameo brooch.",5,1,0,General Petite,Dresses,Dresses +881,28,Disappointing - shoulders don't stay down,I love off the shoulder looks and had high hopes for this top. unfortunately the folded top portion doesn't stay down at all. i found myself pulling at it all day and eventually gave up. the material is also not the best.,2,0,25,General,Tops,Knits +829,60,A little on the short side,"I purchased this top in the wine color and found it to be cute and comfortable. the sleeves are not tight which is nice, but it is very short and moving your arms away from our sides make this shirt look a little bit like a tent. the color is pretty and the button detail is nice. +overall good purchase, but i'm glad i got it on sale!",4,1,0,General,Tops,Blouses +875,37,Nice flowy summer tank,"I just got this tank and love it. it has the perfect amount of swing, but does run a little large. the underlay was more yellow than i expected, but i think it adds a nice amount of brightness to the top. this will be a summer staple.",4,1,0,General,Tops,Knits +864,38,Flattering!,This top is the epitome of late summer and getting into fall mood. it's soft fabric falls nicely on top of skinny jeans. the open shoulders are trendy and flattering!,5,1,1,General,Tops,Knits +864,57,Love love love ??,"Love this top. tried it on in the store and had to have it. did not find it too sheer and could wear my regular bra with it, as the shoulders fit where the straps are. got tons of compliments on it. would have bought in more colors if offered i loved it that much. the perfect bohemian hippie chic top, if there is such a style!",5,1,0,General,Tops,Knits +250,35,Unflattering,Fight a bit snug over the bust then widens like a bell. not as cute as it looks in the photo. returned.,1,0,0,Initmates,Intimate,Sleep +829,35,Overall a great shirt,"I noted that this runs large- i should say it runs wide. it is supposed to be flowy like in the picture, but i am really swimming in the l. that being said, i worry that if i returned for a m that it would be too short in the front. i am 5'10 for reference, and i would say the length in front is a little shorter than i would like, but it still works. the black and white print is beautiful- i paired it today with dark skinny jeans and received compliments. other reviews about the batwing sleeves",4,1,0,General,Tops,Blouses +1083,55,Great easy to wear machine washable!!!,This is a great easy to wear summer dress. a denim jacket would look adorable to wear on a cooler night. it runs a bit small in the waist and i bought the petite because i wanted it to be above the knee summer casual. it is very flattering because of the pattern detail by the waist. it is the perfect summer dress and best of all it is machine washable!,5,1,12,General Petite,Dresses,Dresses +875,37,Odd fit,"I really wanted to like this top, but unfortunately it is not as pretty or flattering in person. the yellow looks dirty in real life, not pretty like the picture. it is also a strange fit/shape when it is on. i tried it on in the store and did not like it at all.",2,0,2,General,Tops,Knits +875,39,Nice summer top,Runs large under arms i am typically a size medium but bought size small.,4,1,31,General,Tops,Knits +1039,24,,"I fell in love with these online. i thought they would be such a nice piece of statement denim. unfortunately they did not work for me. i am 5'2"" and the waist of these paints was four inches away from my breasts. it didn't look bad from the back but from the front it was comical. the denim itself is nice and heavy but, like the previous reviewer stated, not a dark wash. the pair i received was a medium whiskered wash. if i was taller these would have been a yes, despite the wash discrepancy.",3,0,2,General,Bottoms,Jeans +833,58,Beautiful details,Love this top. the beautiful and delicate details are wonderful. the cut is a loose fit which is great. it works with tailored trousers and jeans,5,1,1,General Petite,Tops,Blouses +872,54,,"I love this top! shows off the shoulders but a normal bra works. no tank needed. not too boxy looking, all these things i have had a problem in some of the currant tops an retailer. i felt it was flattering and comfortable with some country chic. i found the colors to be a bit more rich than online. there was a tiny bit of puffy fabric around the back upper shoulder, but nothing to worry about. the neckline is a stretchy and close fitting, and that's the part of the top that i don't usually wear i",5,1,3,General Petite,Tops,Knits +964,54,Versatile jacket,"I purchased the grey jacket first and it seems to work with a lot of things and create different looks. so i purchased the tan jacket. i found it to less tan as an olive color. not my favorite color for me. but the fit is awesome and hopefully the color will prove to be versatile too. the blouse shown with it does not go with it as i had hoped. +the jacket seems very green with the golden brown in the blouse. so a black or ivory blouse with some great necklace should work. recommend. pretty true",4,1,2,General Petite,Jackets,Jackets +857,20,Perfect for almost any weather,"I love this top. i bought it in the blue but loved all the colors. i fell in love with it on-line and hesitated ordering it only because i was afraid that the arm holes would be too large (based on what i saw in the picture). fortunately they had it at my local retailer, so i was able to try it on. my usual xs fit perfectly. great flow, soft and casual. perfect for those cool nights in the summer or layered with a cardigan in the winter.",5,1,0,General Petite,Tops,Knits +868,67,,,5,1,0,General,Tops,Knits +1080,49,Beautiful dress,Love the colors of this dress. it did run a little large. i ordered a large and medium and went with the medium.,5,1,1,General Petite,Dresses,Dresses +857,41,Great buy!,"36dd, 10/12 in tops, 12/14 in bottoms + +this tank is amazing! the flowing a-line shape is very flattering. the armholes are perfect - all too often i see a good tank top ruined by large, gaping armholes. no bra peek-a-boo here! fabric is a stretch micro-rib knit that doesn't cling too tightly, just enough to give the top good definition. i took the size large for the length - just past the hips on me. the side slits keep the look flowy. the light blue contrast color is light grey, while the brigh",5,1,0,General Petite,Tops,Knits +862,45,Love this top!!,"I purchased this in the blue motif. i am 5'4, 118 pounds and got an xs. i love everything about this tee. it looks great with jeans and i love it with my white denim shorts! i haven't worn it off the shoulder yet. i think it looks great as a regular tee. i get compliments whenever i wear it. so happy with this purchase!",5,1,2,General,Tops,Knits +964,56,Cool military jacket,"This is such a cool military jacket. when i saw it displayed on a table at my local retailer, i knew it was going home with me. this is my 4th marrakech jacket, i love their style. i bought the black in my usual size large, and i agree with the previous reviewer, if you have a chest this is a very flattering jacket. i usually wear my jackets open, and i discovered that if you button back the lapels at the second button down it looks amazing and not so sloppy. it kind of bothered me the way",5,1,2,General Petite,Jackets,Jackets +985,54,Love this vest,"I am normally not a vest person, however i saw this and had to try it. it is awesome and on sale. i am 5' 3"" and 128 pounds and the small fit perfectly.",5,1,0,General Petite,Jackets,Jackets +1080,39,Not my favorite,"Not in love with this one. the fabric is thin and seems cheap... it seems overpriced even on sale. and it runs a bit small along the bust. i could maybe get away with it without a bra, but after 3 kids, braless isn't my best look. and i don't think the print is a pretty in person as it is online - can't quite put my finger on why... maybe a little darker in person. that said, the fit is flattering. the cinched waist is lovely, and the skirt is nice and flowy. even so, this one is going back.",3,0,0,General Petite,Dresses,Dresses +964,46,Great staple piece,"Love, love, love this jacket! i'm able to dress it up or casual. the hint from a review i read to button the lapels back worked awesome. good quality, has a bit of stretch for bulky shirt to wear underneath. would definitely recommend if like the military jacket style.",5,1,0,General Petite,Jackets,Jackets +862,46,Purchased two - had problems with one.,"I purchased this top in the blue stripe and red. after washing the red top, it lost color in little spots and also has little holes along the seams. the blue washed fine. overall, it is a very cute top and great for summer.",4,1,0,General,Tops,Knits +1086,46,Classic winter,"I am so glad that i got this one.i wish i got the bigger size,but got it on sale.i am glad,that i have it for next winter.",5,1,0,General Petite,Dresses,Dresses +872,62,Love this,I'm obsessed with this top. i actually love that the sides are a bit higher than the front and back. i feel like that gives it shape. i bought jeans similar to the pic here and they look so good together. love!,5,1,8,General Petite,Tops,Knits +872,55,"Pretty, colorful top",Saw this top online and hoped for the best. my hopes were rewarded! lovely lightweight summery top but i think with a cardigan it could be worn in the fall also. i asked 4 friends if they liked it and they all agreed it was very flattering so i decided it was a keeper. have worn it three times since purchasing and have received lots of compliments.,5,1,0,General Petite,Tops,Knits +862,77,Will not stay down,I ordered a med petite. usually this fits but this shirt was long and the sleeves wouldnt stay down. as a regular shirt it was not cute.,1,0,0,General,Tops,Knits +1054,58,Tiny pant!,"I am a 4, so i ordered the s. slipped these pants on and i couldn't get them zipped up. i thought perhaps i ordered a 0, nope, a s. i'm not even sure a m would fit! these unfortunately are going back tomorrow. the material and color were beautiful (bronze), but the sizing is very strange!",4,1,0,General,Bottoms,Pants +964,34,Cute style,I love this jacket. it's easy to dress up or be casual. the black is more like a very dark grey.,5,1,0,General Petite,Jackets,Jackets +241,28,Super cute and flattering,"I am in love with this bathing suit. it is super cute and flattering and i love the pattern on this specific style. it is also seems to be very well made. i haven't worn it in the water yet so i can't really speak to that. i would say that i believe it is true to size, which means that it is a little tight since bathing suits need to be tight to stay on in the water! for reference i am a bra size 32dd, around 130 pounds, and 5'5"" and a size 6 fits perfectly.",5,1,10,Initmates,Intimate,Swim +1082,40,Hidden tailoring faux pas,"The image does not show but the front of the dress has a heavy 24"" utility zipper hidden with 5 snaps. the zipper pull, when closed, sat right on my collarbone, which was he height of discomfort. it felt heavy and awkward. the dress was very high waisted for me (i'm 5'6"" and it was 3"" inches above the navel)) also to the point of discomfort. + +an invisible side zipper would have made the difference for me if the proportions were better suited for a non-petite sizing. + +the fabric is quite beautifu",1,0,2,General Petite,Dresses,Dresses +872,50,Cute top,"The lining is shorter than the top, so i keep pulling it down. also the finishing of the edges looks like a child cut it with some scissors. it is not evenly cut. i do like the color and style of the shirt, just not the quality.",3,1,1,General Petite,Tops,Knits +862,33,Love the length,One of my favorites for comfy cute this summer! the color is a beautiful berry color! also love the length... it feels a little longer than a typical top which i love! 5'9,5,1,0,General,Tops,Knits +872,35,Not quite right,"I tend to size up when ordering tops online as i find a lot of retailer stuff to be inconsistent. a little big is better than something way to small. well that was a mistake with this top. i sized up and it was much too large everywhere, more so than i thought it would be. but the neck, there's no button or hook and i could barely get the top over my head! if i had gotten a size smaller i wonder if it would have ripped as i pulled it on. cute top, material is so-so.",3,1,0,General Petite,Tops,Knits +872,67,"Beautiful top, wrong execution","This is such a beautiful top with pretty, vivid colors and soft fabric but the execution is wrong. the front is fine, the smocked upper portion is very flattering but then you turn around and the back fits like a cape. there is a ton of fabric especially in the upper portion of the shoulders and upper back, with pleats that begin under the ruffled neck and billow out. i got an xxsp (5' 103 lbs) so couldn't size down. please retailer no more billowy tops!! +so sad to have to return this one.",3,0,0,General Petite,Tops,Knits +964,38,Awesome!,"Love marrakech for their jackets! this piece is wonderful! i usually wear an xs or s in this brand in jackets. i went with an xs as the sleeve are a little loose. the body still fits buttoned up- nice and tailored. the stretch keeps in comfy with the tailored fit in the trunk. looks great worn open too. i think the best part is the cut and material. i am 5 '4 and 125 lbs, curvy.",5,1,1,General Petite,Jackets,Jackets +872,33,High hopes that were dashed...,"I was so excited about this top, as the picture of the model it looks beautiful and drapey in just the right way. unfortunately, this top feels like an old grandma's polyester suit, the sides are much shorter than the front & back and the combo of the inner lining and the outer fabric feels awkward with the inner piece being significantly shorter the the outer. it also puffed out a bit at the top of the shoulders in a strange way, due to the layered fabric. + +sadly, going back.",2,0,26,General Petite,Tops,Knits +862,51,Breezy and sexy,"I received this top in my normal xxsp size and it fits perfect. it's roomy so i'm glad i went with the smallest size. the color states pink but it's really between a red and raspberry so it's better looking than pictured. as with most off the shoulder tops, if you raise your hands it slips up, but it actually looks good that way too and forms a square around the neck that appears like that's the natural design. overall, great value, light and flowy, plus the fabric is a soft linen so it breathes",5,1,12,General,Tops,Knits +1082,24,Unflattering,This dress was really odd. i loved the quirky mixture of the blue stripe and the floral but that's about it. the shape was unflattering but honestly that could be because this dress ran large. i was just very underwhelmed with this dress. also the hidden button zipper at the front was an amazing idea but not the best execution. overall its okay just hated it on me.,2,0,1,General Petite,Dresses,Dresses +872,66,Not so much,"I carefully read the reviews and decided to order a medium since that size works for me generally with floaty styles. the neck was a bit small but once over my head it fit and looked nice. the deal breaker for me is the huge droopy armholes that showed half my bra. the colors are deeper than shown. but the pattern and length overwhelmed my shape feeling a lot like a maternity top. i liked that the sides are shorter but overall it's just not my style. better suited i think for taller, slimmer bod",3,1,2,General Petite,Tops,Knits +862,66,Too itchy,"I ordered the blue stripe and white in size large. i didn't like it worn off shoulder but it does stay in place, which is a good thing. and it looks okay worn on the shoulders. i find the fabric so uncomfortable and itchy that i couldn't wait to take it off, immediately. i tried them on again a second time, still hopeful, with the same outcome. sadly, returning.",3,1,0,General,Tops,Knits +862,36,Perfect top,"Everything about this top is perfect! quality is great which is number one in my book. color is awesome! perfect color for fall, summer and spring! a must have!!",5,1,0,General,Tops,Knits +985,51,Waiting for summer days,"I love linen i know it's a pain with the wrinkles but it's just a very nice crisp clean feel. this vest is wonderful it fits very nice, once you size down, and can work as a bathing suit cover up. i'm using it with my linen pants and skirts and everyone has asked me where did you get that...i think they're all gone by now but if they aren't grab it while you can it's a must have for any woman's closet.",5,1,0,General Petite,Jackets,Jackets +241,36,Good for d cups,This suit is so flattering on! great support and slimming for my post-three times baby body. i ordered this suit and the skirted maillot by swim by retailer in the white floral. i loved the pattern of the floral more but don't think any chest size larger than a c cup would be supported in that suit.,5,1,10,Initmates,Intimate,Swim +862,40,Great top,Was looking for a cute off the shoulder top and this is a fun one. can be worn both on or off the shoulders. nice length and the pink is a beautiful raspberry color. love the linen blend too. i'm a size 2 and i ordered the xs. flows away from body - -it's a bit big but i like the style.,5,1,0,General,Tops,Knits +857,26,Great top!,This top is great. it hangs in the perfect way to hide imperfections. the orange/red is a great accent and i received compliments when i wore it.,5,1,0,General Petite,Tops,Knits +1102,44,Cool and comfy tunic,"Really like this tunic a lot. it is comfortable and easy to throw on and look put together. i'm always a fan of pockets too! i ordered the xs -- i'm 5'4"" about 118#. it fits loose but not in a bad way. the fabric allows it to fall well over the body. if you are tall it will probably be too short for you as it was a few inches above my knees. glad to have snagged this right away! more tunics like this please!",5,1,0,General,Dresses,Dresses +872,48,Top of the season,"If all the tops i ordered from retailer this summer, this top is my fav. it is a crowd pleaser! my friend called it my ""art shirt."" the fabric is nice and the cut hangs nice on my 5 ft 5 170 pound frame. the armholes are a little big, so i just wear a red bra with it and it's great.",4,1,0,General Petite,Tops,Knits +964,35,Love,"I'm about 5'5"" and normally about 120 lbs so i purchased the small. i'm currently 9 months prego, but i couldn't resist this jacket! i purchased anyway and although it doesn't fit over my belly right now, i'm looking forward to being able to wear it soon! it will be perfect for the chilly office or a casual day. the fabric is beautiful with just the right amount of stretch. like others have said, it has a bit of a navy-ish tint to to it, so it's not truly black. thanks retailer for offering anothe",5,1,0,General Petite,Jackets,Jackets +1082,30,Runs big and short,"This dress is shorter than it looks on the model. i'm 5'8"" and it hits about 1 inch above my knee. it also runs a little big in my opinion.",4,1,1,General Petite,Dresses,Dresses +1086,78,,I love purchasing these tunic/ruffle dresses because they can be worn anywhere.....this dress is definitely a little on the heavy side for winter wear...the color is beautiful...i am 5'4''. 138 pounds and always purchase a large for a relaxed fit....i plan to wear it out to dinner for my birthday and to a house party on new years day....,5,1,0,General Petite,Dresses,Dresses +862,42,Pretty off the shoulder top,"I was looking for an off-the-shoulder top and chose this one. it is pretty. the bottom of the shirt is fairly billowy, so i can only wear with skinny pants. takes a little getting use, somewhat restricting my arm movement so the shirt pops off my upper arms.",4,1,0,General,Tops,Knits +862,35,,,4,1,0,General,Tops,Knits +872,36,,Loves it!! this is my new favorite top. it's pretty...it's perfect:-) cannot find any bad to say about it.,5,1,2,General Petite,Tops,Knits +872,55,,This top is well made for the price! the colors are beautiful and will work well with jeans and a leather jacket if it is cooler.,4,1,0,General Petite,Tops,Knits +872,63,,Just gorgeous . this is one beautiful top. the colors are pretty and vibrant. i wear either a large or xl and the large was great in this top. dress it up or down.this top flows and it drapes beautifully in the back. it looks fantastic with jeans. as a bonus it is lined so no need for any type of piece under it. it's an all year round top. throw a cardigan or wrap over it when the weather cools down and you are set to go. a great top for your wardrobe . i would not hesitant to buy it.,5,1,2,General Petite,Tops,Knits +862,36,,"For me, at 5'9"", the top was not long enough...it appeared longer in the photo. i'll be returning it. other than length, it is cute.",3,1,0,General,Tops,Knits +862,37,"Cute off the shoulders, meh in reality","Pros: soft, quality top, true to size, and would look great (a little tucked in) and off the shoulder + +reality: it will be hard to keep the shoulders from sliding up, and (on me at least) it looked really meh...kind of dumpy. + +i'm 5'6"", normally a medium/8, and i bought the medium here...fit was good. it's billowy and accurately displayed in the pictures, so as an hour-glass shaped gal, i'd need to tuck in the front (or all) or accessorize to give it a little shape. i really liked the feel a",3,0,0,General,Tops,Knits +1086,34,Great top for taller gals,"Tried this one because the ruffled detailing at the collar and sleeves appealed to me, as well at the cute button details along the back and the overall color and look of it. +_____________ +pros: +- love the ruffle trim along the collar, bottom, and wrists. it gives it a really romantic feel to it. +- a definite winter piece. it's extremely warm and very thick and heavy, which i found covered any lumps and bumps nicely. +- ran tts. i'm 5'9"", 36c, hourglass, and 170 lbs and tried on the medium and fo",4,1,0,General Petite,Dresses,Dresses +964,44,Great casual jacket,"I'm glad i took a chance and ordered this jacket. i love military inspired jackets and this one is very cute. +it runs a little big, so i'm glad i ordered a size down. i like that it can be worn open or buttoned. it looks great with jeans and boots but i can wear it to work as well. it's definitely more on the casual side, but still a very versatile piece in my closet. love it.",5,1,0,General Petite,Jackets,Jackets +1086,44,Cute idea but so big and long even in petite,This truly is a dress and not a tunic. i normally wear a medium but they were sold out so i thought i would try a l petite. i am only 5'4 and the large p was really long. i could definitely wear as a dress with tights. i am hoping it comes back in stock so i can try a medium p. unfortunately it is going back. cute sweater as pictured on the model!,3,1,5,General Petite,Dresses,Dresses +828,52,Soft halter top for longer waist,"This chambray halter top is a good summer staple from cloth and stone, but, it is better for longer waists than mine (and, smaller busts). +fyi: 36c, broad shoulders/back, short waist - normally i wear a m in c&s, and that is what i tried in this halter top. +oddly the overall length was okay, but the armholes were very low. in the m, the bust area was tighter than it should have been for a easy summer top. i think that this is due to the overall length of the bodice. in other words, the top ha",4,1,7,General Petite,Tops,Blouses +1019,41,"High quality, size up","This skirt is a beautiful fabric, heavy and soft, and fully lined. it has two sets of snaps on the inside so you can adjust the waist size. i purchased a medium, but found that there wasn't enough of an overlap in the split to be decent (it flaps open when i walk, revealing nearly everything!), so i will be exchanging for a large. for reference, i typically wear a size 10 or 12 in pants and skirts. the color is true to the photos, with a matte finish. i am 5'8"" and length hit me below the knee.",5,1,0,General,Bottoms,Skirts +964,30,,,5,1,0,General Petite,Jackets,Jackets +857,59,Soft & pretty,Bought the blue/gray - love the color. just the right amount of cling. adorable alone or under cardigan. super deal on sale.,5,1,0,General Petite,Tops,Knits +899,34,Versatile and cute!,"This cardigan is very cute and versatile. the knit is medium weight and will work well for moderate weather. i would say that the sizing is pretty true to size, but maybe runs just a bit large. thus, if you are in between sizes, order the smaller size.",5,1,1,General,Tops,Fine gauge +165,23,,"I loved the actual design on the fabric. the flowers are gorgeous and i was really looking forward to wearing them, but the fabric was much too thin for me. i was surprised because another review said they were thick. to me, it felt like tights material, almost. however, they were not see through, which is great. overall, they just didn't look great on my body. 5'9"" size 6/8 curves, medium was a bit too loose.",3,0,0,Initmates,Intimate,Lounge +873,51,Beautiful relaxed sweatshirt,"Love this sweatshirt! i'm 5'2"" 110lbs and ordered the x-small. it's a little boxy but very comfy. it's definitely light peach in color and not pink, as shown. very happy with this purchase!",5,1,3,General,Tops,Knits +1022,30,,"I wanted these jeans so badly! i originally ordered them in my regular size -a 27. they were too big even for a tomboy fit, so i ordered a 26. the size 26 order was backordered and then cancelled. i am so sad! i would absolutely buy these if i could get them in my size. they are so soft and beautiful. i love ag's quality.",5,1,0,General Petite,Bottoms,Jeans +854,32,Beautiful,"I bought one of these as a gift for a friend and i loved it so much i had to get one for myself! it's beautiful material and has lovely detail, a little sheer so best worn with a cami underneath. probably better for those with not too ample busts as it doesn't have a lot of stretch.",5,1,0,General Petite,Tops,Knits +873,39,,Even more beautiful in person. runs large as i'm usually a medium and bought a small. great for summer/fall transition.,5,1,4,General,Tops,Knits +873,37,Dressy casual,Great sweater with gorgeous detail. fits tts. works best in someone with smaller bust like me. pink is peachy pink like other reviewers have commented. pairing it with gray ag jeans! will work great for fall/winter in louisiana.,5,1,0,General,Tops,Knits +854,49,Delicate and dress up top,"Very pretty and delicate top. it is fresh and with a delicate embroidered ""bib"" style. the fabric on the front is silky and the back is a blend of silk and cotton, just that part (the back) could be a little thicker so more durability. still as it is, it's a niece piece and good quality. +i find it you can wear it with dress pants for office or formal gathering and to dress up jeans and either to leave it our or tuck in. since the bib is focal point you can skip any necklace and war dainty earrin",5,1,0,General Petite,Tops,Knits +833,40,"Pretty, but...","When i first saw this top online, i thought it is very common beach like cover up, give or take. the main point of attraction for me was the cobalt blue silk trim. very vibrant looking color and very attractive. cough my eye for sure. however, when it arrived i was really surprised, how the top turned out to be. 1. much larger than expected, very roomy. 2. cobalt blue turned out to be not so bright, in fact, not even that interesting as it stands out in the photo. not too bad, but unexpected, i",4,1,5,General Petite,Tops,Blouses +1141,56,Beautiful dress for fall,"This is a beautiful dress for fall. the fabric is gorgeous and drapey and the skirt is swingy. i ordered this in an xl because that size always sells out first. i think a l might fit a bit better, so i will see if any more come in and order another to compare. it poofs out in the back above the elastic and the waist slides down a bit. it is also very long, i need to hem it about 3-4"". i never know which size to order with this brand, i vary between l and xl.",5,1,6,General,Trend,Trend +854,39,,"Nice thin tank. back half is a jersey knit (different fabric than the front). good layering piece. at 5'4"" 140 lbs, the medium is a nice length, reaching my hip flexors in front ...although, i'm rather short waisted...",4,1,0,General Petite,Tops,Knits +836,38,Silly short,This top was very cute but super short- and i am a short waisted petitie person-the waistline hits above your belly button- looks very silly.,1,0,1,General Petite,Tops,Blouses +899,39,Love,This sweater is really fun and even cuter in person.,5,1,1,General,Tops,Fine gauge +899,39,Great sweater,"Colors are much brighter in person, fits well (not frumpy like a lot of open-front sweaters). colors make it perfect for neutrals but maybe hard to mix with other colors. pricey, so still considering whether to keep it.",5,1,0,General,Tops,Fine gauge +536,44,"So cute, but not for me","This suit is so adorable! i love the retro style and the two patterns and i really wish it worked for me. the suit is comfy, seems well made and fit nicely. but, although it fit technically, i don't like the way it cuts me off at the thigh. it's not flattering for me at all. + +the suit is kind of a neoprene material, so it's thicker than a normal bathing suit, so i think even though it isn't lined, it might not be see-through, but i didn't get it wet to test it out. in terms of fit, i think it",3,1,3,Initmates,Intimate,Swim +514,46,"Cute design, impossible fit","I tried this on in my regular size and was able to get it on fine, but the cup portion of the suit was just crazy! with the straps tied tightly around my neck, it was like the cups just flipped out and open. i am a regular b cup, and i don;t think it was sizing (though i did not have the opportunity to try multiple sizes). the cup did not right and, for this reason, would make this absolutely impossible to wear. unfortunate, because the design is so pretty.",2,0,9,Initmates,Intimate,Swim +830,39,Short mumu,"On me, thsi was ginormous, looked like a mu mu. it is pretty, but there was just too much fabric, even in the smallest size. the quality seems nice, and it looks pretty, but overwhelming. i will say, i think it would work on tail lean people, i have pretty muscular shoulders, so the off shoulder look with that much fabric made me look 30 pounds heavier, no joke. fabric is soft though. give it a try, just not for me... + +ref: 115 lbs, 30dd, 26.5 in waist.",2,0,4,General Petite,Tops,Blouses +165,47,Love these,I love the unique design and the fit. they are very flattering. they might be a little too thick to wear in the summer but the rest of the year they will work out great.,5,1,2,Initmates,Intimate,Lounge +848,51,Runs small,"This is a well made and nice looking top.the gathering around the neck adds to the overall look of the shirt, but it also affects the way it fits. i got my usual size medium and it was tight in the shoulders and arm holes. i regret that i had to send it back.",4,1,2,General,Tops,Blouses +873,55,,,5,1,0,General,Tops,Knits +873,46,,,5,1,0,General,Tops,Knits +514,34,Cups too big,This suit itself is adorable. i usually have to get a size large for length but in this case the cups are way too big. it says light padding but there is no padding. just a giant empty cup. i'm going to order the size medium.,3,1,0,Initmates,Intimate,Swim +1141,31,Lovely for late summer/early fall,"This dress is just lovely. beautiful drape, comfortable material. it is a print that looks like embroidery. i am usually an xs or s, and i'm glad i got the xs as i can tell the s would have been too large. the back waistband is elastic and it is easy to move in. beautiful neutral colors. i think it can be dressed up or down easily with the right shoes and jewelry. only negative comments- there is only a half slip and i wish it was lined more, although that will make it easier to wear during the",4,1,3,General,Trend,Trend +873,36,,"I was surprised how much i like this shirt. the fit is really pleasing. at first i thought it would be a ""whatever"" shirt, but i think i will actually wear it a lot more. it will look cute dressed up with a cute necklace and flats. the price is a bit high for this top, but i felt it was worth it since it is so hard finding a casual shirt thats not your basic tee.",5,1,3,General,Tops,Knits +836,33,So cutest,Ok. love this top. i'm 5'4 106 34b and the 0 reg fits perfect on the top half. i am going to have the waist taken in because i love the top. it is very short. i usually need a petite but the regular is just barely long enough. i thought it was red and white but it is red and beige. great with jeans or navy for work.,4,1,1,General Petite,Tops,Blouses +899,51,Great fall piece,"The colors in this cardigan are not what they look like on line. the top is navy and the lower arms are grey. the sweater overall has more punch than pictured. this is a cotton sweater and a great fall layering piece. it will look great with a tee shirt and jeans. it is a long sweater, but not too long as to swallow a smaller person up. i also really like that the front is not too flowy. i am looking forward to wearing this all fall.",5,1,2,General,Tops,Fine gauge +873,41,Pretty piece,"This is a pretty everyday piece to add to your wardrobe. the color is a little less pink and more peach than depicted in the photo and the top is just a bit on the short side but i was afraid that if i sized up, it wouldn't give me more length but maybe look boxy instead. i'm 5'7"", 140lbs, 32dd with an athletic build and ordered the small.",4,1,9,General,Tops,Knits +912,56,Comfy & casual,"This sweater is super cute. it has nice weight to it and is just a nice casual but attractive piece to wear with jeans or white pants. love that it zips and just a really cute pattern of marigold, mint/teal and grey/dark gray.",5,1,8,General,Tops,Fine gauge +514,34,So cute but design failure,I am usually a size o and ordered and xs ...due to the band in the center (not much give) it was a little difficult to shimmy over my hips but the body fit perfectly when i got passed that part. that being said the cup design is a hot mess. i am a b/c cup size and the top on this could not handle it. i felt fully exposed. i thought maybe if i went a size up i could get a little more coverage. the body felt ok on the small but the cups were still just too small. i still felt to exposed. they are,2,0,14,Initmates,Intimate,Swim +873,58,Love this top,Loved this top when i first saw it online and when it arrived it didn't disappoint at all. dress it up or down.,5,1,1,General,Tops,Knits +1141,53,Beautiful dress,"This dress is so beautiful! i ordered it online and when i received it i was so pleased with how it was even better in person. the fit, the embroidery, the lovely fall colors - makes this a perfect dress all the way around!",5,1,1,General,Trend,Trend +514,33,Runs very small,"Am typically a size 0 and could barely get the extra small on, which is a first. was very cute in theory, but i'd suggest sizing up (maybe 2x).",3,0,19,Initmates,Intimate,Swim +873,31,Cute weekend top,"Not as pink as pictured online, definitely more of a pale peach. fits loose, so i'm glad i went with my normal size, or would seem boxy. cute top, and will wear it around town running errands..instead of my activewear!",5,1,0,General,Tops,Knits +899,49,Great sweater,"The photos really doesn't do this sweater justice. when i saw it in store ii was really drawn to the colors which are a bit brighter than they appear in the photos. this will be great over jeans or slim pants. i usually wear a l or xl and i went with the l which is still roomy enough to layer but not too big. at 5'5"" it drapes nicely and covers my rear end. the arms are a bit long on me but it is a common issue for me as i have short arms. others have mentioned the arms being big but i think the",5,1,2,General,Tops,Fine gauge +514,32,Super cute * runs small,"I love the design of the suit and decided to take a chance and order despite the mixed reviews. i'm so happy i did! i couldn't be happier with the fit, quality and design. for reference, i am 5'8, size 4 and smaller chested (small b cup) and went with a medium. i could see that this suit might not work for everyone but i love it!",5,1,3,Initmates,Intimate,Swim +514,32,Bad cups!,"The cups on this suit are ridiculous. unless you are going to a nudist beach i do not recommend. the construction of the suit itself was also vey poor. seams were messed up, a big pull right on the front-- i brought it back. sad because the design was adorable- just poor execution.",1,0,0,Initmates,Intimate,Swim +830,21,,"I just purchased this blouse in store! the fabric has a nice weight and drape, feels nice to the touch and is opaque. i'll be wearing this one as a dress and a top. i'm 5'2"" and this fell a couple inches above my knee. i typically wear an xs at retailer and opted to go with a small for the extra length and because i hate when off the shoulder silhouettes pop up and become not so off the shoulder. i laid the xs and small out to compare sizing and didn't notice a major difference width wise. i typi",5,1,4,General Petite,Tops,Blouses +836,45,Cute but hits a little short,"I really wanted to love this top! it's cute and fitted- fits well, but just hit me a tad higher than i wanted. i tried a size 2 and it fit perfectly--but with no extra room. i'm 5'5""-34c. normally wear a 2.",4,1,4,General Petite,Tops,Blouses +873,32,Updated basic,"Loving this top! feels comfy and casual like a sweatshirt, but pairs great with a pencil skirt or dress pants to wear to work. easy to dress up and down and i get so many compliments on it! it's fraying a tiny bit on the front, but i think that adds to the not-so-precious vibe. i'm 5'10"" 160# and the m works great!",5,1,0,General,Tops,Knits +873,36,Great shirt,"I love this top. the fit is great for me. i ordered a small. the color is a bit more peach than the pink in the picture, but still very cute.",5,1,3,General,Tops,Knits +830,57,Fabulously comfortable and stylish,Love this gorgeous off the shoulder top! very comfortable and stylish. you can wear it either off the shoulder or not!,5,1,0,General Petite,Tops,Blouses +848,40,,,4,1,0,General,Tops,Blouses +836,46,Pretty top,"This top is really cute for the right body shape. +it is tight around the bust area if you select your size and sizing - you lose the shape.",4,1,2,General Petite,Tops,Blouses +873,43,Beautiful lace,"I loved this blouses when i saw it on-line, but when i saw it in on me it looked totally different. it runs really large and i didn't like the material of blouse.",5,1,3,General,Tops,Knits +1030,44,New fave pants!,Love the look of these- casual or dressy depending on what you pair with them. they are so comfortable! edgy but relaxed - joggers with a leather look- what more could you ask for?,5,1,0,General,Bottoms,Jeans +912,43,Wonderful quality,Received a lot of compliments when i wore this sweater. quality is wonderful. only thing i noticed is that it's a little shorter in length then what i was expecting.,5,1,5,General,Tops,Fine gauge +999,35,Size down!,"I ordered this item before seeing the july 25th review. i ordered in a s and need an xs. now the xs is sold out unfortunately. my waist measures 27"", hips 32"", and i am 5'4"". the material very nice, has elastic for movement and comfort. i would wear this all the time if i had the correct size. it would be cute dressed down or up.",5,1,1,General Petite,Bottoms,Skirts +999,45,Disappointing,"The skirt in person is not like the picture. baggy and runs large. i wear jean size 25 and the xs is two size too loose. there's no pocket which is surprising on a denim. the slit in front makes the skirt look even loose , no shape near what's in the picture. and there's no petite sizes. i am going to return it.",3,0,1,General Petite,Bottoms,Skirts +536,24,Great suit!,"This suit is the most flattering suit i have owned in a while, as well as the most comfortable! though the suit is not lined, the light wetsuit material holds me in and is supportive, despite the open back and the slight looseness of it. if you do any water sports, i think this is a perfect suit. i did purchase some silicone covers for myself, however, to avoid looking like a farrah fawcett throwback.",4,1,2,Initmates,Intimate,Swim +1186,34,A perfect short sleeve top,"I've been scouting retailer's store, looking for short sleeved tops at a reasonable price point. +this fit the bill. the flouncy sleeves are a bit much for my typical wardrobe, but a fun addition. i love the fact that there's extra fabric built in to make the armholes smaller, therefore no need for a cami underneath. +i purchased the black and white in medium (typically medium to large, 5'4"", 34g).",4,1,5,General,Tops,Knits +830,45,Bettors off the shoulder top is a must!,"I fell in love with this top online and was even more pleased when it arrived. it's pure romance in a top. i went to the store and they didn't have it in yet, so i ordered it at the store. free shipping if ordered from store. i was extremely thrilled with everything about this purchase.",5,1,2,General Petite,Tops,Blouses +873,43,Adorable top with cute details,"This is a charming sweatshirt top with extra details to make it stand out! the front panel has lovely art nouveau style embroidery and cut outs. i'm going to enjoy wearing this with jeans - it looks great with gray or black denim. the colors are fabulous for someone with ""spring"" coloring - the front panel is a very pale peach / peche. i'm 5'4"", 128lbs, with small shoulders and 32c chest, i'm typically a size 2-4 or size xs-s, and ordered an xs. it fits well, a little tighter than on the model -",5,1,4,General,Tops,Knits +873,45,Unique top,"I love, love, love this top! the cutout pattern in front is such a unique look and is a great way to add some fun to your usual t-shirt and jeans look. it's well made and the fit is great. i got it in petite s which worked great length-wise.",5,1,3,General,Tops,Knits +854,45,Too small,"Love the top, but very small to the size. ordered a medium and had to send back in exchange for x-large.",2,1,0,General Petite,Tops,Knits +899,33,,,5,1,0,General,Tops,Fine gauge +836,33,Short,I also wanted to love this top but sadly had to return it because it is very short and the peplum piece is very wide. it was not flattering at all.,3,0,13,General Petite,Tops,Blouses +899,41,Great staple for fall,"In the fall and winter, i live in my uniform of skinny jeans, boots and a long sweater. this cardigan will be perfect! the fabric is very nice quality and the colors are gorgeous. i can see myself wearing it over and over!",5,1,1,General,Tops,Fine gauge +873,33,,Love this shirt it has a femine look with a casual style.,4,1,0,General,Tops,Knits +899,29,Bright stripes/ rich material,"My local retailer store didn't have this item in stock so i ordered it online. maybe it's my perception of color, but in the photo the top block of color seems to be more of a muted blue/purple while in person the color is navy and the other stripes are far bolder than the muted colors of the photo. i still really like the look overall (even though i usually go for more neutral tones) and it running a little large made the sleeves of the size small long enough for my 5'10'"" frame so i may end up k",4,1,2,General,Tops,Fine gauge +873,47,,,5,1,0,General,Tops,Knits +1030,63,"Great cut, gorgeous material","This is the weirdest, greatest material. it feels as soft and as buttery as leather, but doesn't look like leather. it looks more like coated denim. only lighter. and stretchy. so you don't get the vibe you get from the vast majority of vegan leather--thick, rubbery junk trying to masquerade as the real thing. + +also gorgeous: the cut. it's straight and slim, but with pleats so hip-less ladies like me look like we have some shape. + +i got my regular size, and they fit beautifully, but they are not",5,1,0,General,Bottoms,Jeans +1030,53,"Comfy, elegant, slimming","I got compliments the moment i walked into the office with those. they look like leather so much, that i had to ensure some people that only some polyester had to ""die"" so i could wear them ;). i am slim, but i think those pants are cut so well and hang so nicely, they make everybody look slimmer, they are also super soft, very comjfortable and the pockets are big enough to hold my beloved smart phone securely without showing a bulge. the pants look very elegant when paired with the right shoes",5,1,1,General,Bottoms,Jeans +873,49,,,5,1,0,General,Tops,Knits +1141,39,Glad i got this in time,"Gorgeous flowy dress that's great for three seasons. thank you to the previous reviewers for the fit advice. size small was only available and it fits perfectly on me (i'm an m/l on top). i'm short and will have to hem because even with 3"" heels i kept stepping on the back skirt. bodice opening is wide and gapes too much so i will wear a cami bra or fashion tape or have an additional fastener sewn in. there are bright little balls of red trim and unexpected pops of violet embroidery, adding to t",5,1,1,General,Trend,Trend +514,38,Fits true to size - high quality,"I ordered the floral version of this swimsuit - what you can't really tell from the images is the darling, lavender stripe design that is in set opposite the floral. it's truly a darling suit, and very well made. the fit is very flattering, with oddly enough a conservative yet sexy appeal. i ordered a medium after reading the ""size up"" recommendations from other consumers - but, i've exchanged it for a small. the cup size was over-exaggerated in the medium - and, i had plenty of breathing room i",5,1,0,Initmates,Intimate,Swim +830,34,Cute but....,"I purchased this top online, love the off the shoulder trend and this looked like it would be perfect for fall. nice fabric and lace detail but the top definitely runs big! i ordered an xl and it was beyond swimming on me. definitely order a size or two down! also, it is very long / tunic length. i love a tunic but it almost wore more as a dress than a top! overall, cute item and fabric but definitely order down!!",4,1,0,General Petite,Tops,Blouses +873,54,,,5,1,0,General,Tops,Knits +899,45,Great fall cardigan,"Very comfortable, well made, great with leggings or skinny jeans.",5,1,1,General,Tops,Fine gauge +912,64,Cute sweater,"This is a very well made sweater. it is a nice weight, great for cool mornings and evenings. i don't think you can dress this up but it is perfect with casual pants and jeans. i found it runs large but that makes it suitable for layering over other tops.",5,1,0,General,Tops,Fine gauge +830,45,Love!,"Love the lightweight fabric! looks great with skinny jeans. it is flowy, but flattering. +wearing it on my shoulders for work -",5,1,1,General Petite,Tops,Blouses +999,31,"Cute, but feels cheaper than asking price","I purchased this skirt on super-sale but i'm hesitant to keep it. it's not poorly made, just not as sturdy as i would expect a skirt of its price. that said, it's cute and comfortable. i wish it came in numbered sizes because the m is snug but i expect the l would be too big. has a good amount of stretch. shows underwear lines. love the style!",4,1,2,General Petite,Bottoms,Skirts +873,39,Cute but not comfortable,"I was wondering whether to purchase this top and decided last weekend during the 20% off event, i would splurge!!! i got the m as i'm tall (5'10"") and it does look a little strange on the arms atleast on my body. the sleeve is cut too high for me. i wish it was longer or even a long-sleeved item! the peach-apricot- nude colored fabric is a little uncomfortable and the fabric close to the neck is a different grey from the other sweatshirt pieces. the sweatshirt pieces aren't particularly soft eit",3,0,1,General,Tops,Knits +836,31,"Cute idea, bad cut",I wanted to love this top to go with a pair of red flats i also bought at retailer. but it's almost like a peplum crop top because the cut is short. the peplum piece also flares out rather dramatically. had to return it even though i love other tops from maeve.,3,0,14,General Petite,Tops,Blouses +514,29,This product is deceiving,"This product looks great on the model, but for anyone with a normal body type, the band in the center is way too tight. i'm a 34a and wear a 27 pants and it was huge in the bust and too small in the waist and hips. the violet one looks much more blue in the photograph, it is truly lavender and purple. i really wanted to love this swimsuit, but instead i had to return it, pay for return shipping, and i am out about $20 now. very disappointed.",2,0,0,Initmates,Intimate,Swim +275,34,Like wearing a hug,"This wrap is awesome. soft material, perfect length sleeves with thumb holes (!), and warm, great for layering.",5,1,0,Initmates,Intimate,Lounge +828,46,Beautiful tank,"When you order online, you can't always be sure of the quality or sizing you will get. like the other reviewers, i found this piece to be beautiful and well made. it's made from rayon and not sheer. the coral, cream, green, and light gray flowers really pop against the black fabric. this piece is meant to be swingy and loose. however, i started with a large but exchanged for a medium. it still feels a little loose so if you're undecided about sizes, order down.",5,1,3,General,Tops,Blouses +927,33,,"Cute and comfortable. not sure i'd say it's worth the full price as it's not a very heavy jacket. it did suit my needs though and was otherwise what i was looking for, so i kept it and have enjoyed wearing it.",5,1,6,General Petite,Tops,Sweaters +828,53,A sweet embroidered top,"I just purchased this adorable tank on-line and already received it in my regular size small (34d-27-35) and it fits me tts. the material is actually made with 100% rayon, not polyester as it describes above which makes it even better. the embroidery very beautiful in person as well and the arm openings are just right, not too large for a nice change. if you need a cute tank in black with a little something special, this is the top for you!",5,1,7,General,Tops,Blouses +853,45,Very cute online,I bought this because i loved it online but in person there is another level to the shirt that i did notice in another picture. i didn't like the second level on me since i am a shorter person. just didn't fit my body quite right.,3,0,1,General,Tops,Blouses +893,47,"It's a big, beautiful sweater","Without seeing the 'online exclusive' notation, i went into my local retailer store to try on this sweater because sometimes i wear small and sometimes a medium. once the very helpful retailer employee looked it up and advised they don't carry it in stores, i ordered it at the check-out desk in a size medium. i was so excited with anticipation because i love stripes and i love the color gray... this sweater was right up my alley. i was very disappointed when i decided to return it. first of all, i d",3,1,5,General,Tops,Fine gauge +1180,33,"Gorgeous top, perfect for summer","To be honest, i bought this as a pregnancy top since i can't bring myself to buy actual maternity wear. it is gorgeously made of lovely light material, and i can actually see myself wearing it even after baby. i find the asymmetrical hemline to be really chic - overall a fave.",5,1,1,General,Tops,Blouses +927,56,Baggy,"I loved the lines in this jacket, but ended up returning it because they didn't show up how i expected. the jacket had a surprisingly baggy fit (s on my usual s/4/6) and wasn't quite what i was looking for.",3,0,3,General Petite,Tops,Sweaters +1088,29,Super soft,"I saw this online and loved it, then when it was on sale i went into the store and tried it on and i couldn't resist. the only size that was left in stores was an xs petit and i didn't think that it would fit me because i am usually a regular s/m but it was super comfortable and very stylish. it wasn't too big or too small, it fit me just right without any awkwardness.",5,1,1,General,Dresses,Dresses +853,34,"Yup, no ruffle.","Sooo this adorable blouse is indeed different than pictured. no ruffle, such a bummer, sleeves are much longer, and yes it's teared in the front and back. also the button opening on the back is much longer/larger, in my opinion. i'll most likely keep it, but consider the mentioned if buying.",3,1,1,General,Tops,Blouses +1046,61,Everything about these joggers is positive!,"The fit, the length, the color, the fabric... cannot say anything negative at all! the sales associates at the store where i tried them on said they had just gotten them in, and she could not wait to see how they looked on. they were just as awed as i was! the pants can easily be dressed up or down.. the brown color is so, so, beautiful! i would expect these to be twice the price for such a high quality pant. i consider it a timeless cut and can worn for seasons to come.",5,1,0,General,Bottoms,Pants +1088,41,,"Cute, comfortable dress. great for work and more casual events. the neckline is more mock style than i was expecting.",4,1,0,General,Dresses,Dresses +828,27,Beautiful detail,"I am in love with this top! i saw it online, and i was a bit nervous to order it because it's a little pricy for a tank top, and i was worried it was going to be too short on me. i was so wrong! the detail on the top is so beautiful, and looks even better in person! it hit me right at mid hip, and looks so cute with jeans and sandals. i sometimes get frustrated with the cut of the arms with retailer clothes because they are cut so low that you see your bra when you lift your arms, but this top is",5,1,11,General,Tops,Blouses +893,58,So comfy and cozy!,"I love to layer and this is a great layering piece. it is wonderful for cool crisp mornings . this cardigan looks great with skinny jeans and a cute tee. the model in the photo shows a super way to look great for a casual day. so soft and comfortable, i did not want to take it off on the cloudy day it was worn. very happy with this purchase and delighted i was able to get it on sale.",5,1,0,General,Tops,Fine gauge +95,24,Pretty but runs way too small,"I really was looking forward to this piece but unfortunately it was too small to even pass through my head nevertheless i couldn't even get both arms in. i got a size small and probably needed a large; but as far as the quality and color, it's really pretty! just go up a size or two if anything and try it out.",3,0,0,Initmates,Intimate,Intimates +1075,43,Meh,"This dress has very pretty colors on the embroidery, there is nothing wrong with the dress, other than the fact that there is nothing special about it. very blah fit. the fabric feels very polyester. no real shape to it. the embroidery on the dress i tried was lined up like the photo, so no problems there, just nothing about the dress made me want to wear it. perhaps at a much lower price point, but at this price point, its disappointing. size 2 fit perfectly, and i am 5'2"" 112. in general, just",3,0,1,General Petite,Dresses,Dresses +853,49,Cute but not as pictured,"So this is still a pretty cute shirt, but my xs is missing the ruffle in the front and has layers on the bottom front of shirt. it doesn't seem to be defective, just a different version of the shirt. i'm curious to find out from others if they have gotten the same shirt as i have. still deciding whether to keep or not. no more left in xs to place another order and see what's up. i do wish it had the ruffle in front, as that is what caught my eye.",3,1,6,General,Tops,Blouses +893,46,Another greatcsweater,"So, i really like this sweater, as you'd expect for this price point, it's stylish in a very single way. so glad i read the review before mine to size down. the xs is great and i wouldn't want bigger. i love the length: how it goes long and cones in a little at the bottom, and the pockets are higher(i always need pockets for my phone). the stripes are well draped as the sweater transitions from shoulder to arm. the cuffs are fun, too. +bottom line: i'm really glad this came on sale and i snatc",5,1,1,General,Tops,Fine gauge +865,54,Feminine and pretty,Beautiful top that will go with anything. looking forward to wearing it.,5,1,0,General Petite,Tops,Knits +853,27,No ruffle but cute,"I was very disappointed to receive this and to note that the blouse has no ruffle down the front as pictured. there is no ruffle anywhere on the blouse. i am likely still going to keep it because i like the pattern, but the ruffle was what interested me for a cute work blouse and i want other shoppers to know that the blouse actually includes no ruffle when you order it.",3,0,7,General,Tops,Blouses +1009,45,,"This caught my eye, purely by accident as i was in the dressing room. immediately attracted to the pattern, the color, the quality and the shape of the skirt. lo and behold, it turned out to be maeve, one of my favorite designers at retailer. this skirt does not disappoint at all. i normally try to wait for sales to make a purchase, but this is well worth the full retail price. the skirt is very well made. the material is structured but not stiff. i also don't normally like high waisted ski",5,1,0,General Petite,Bottoms,Skirts +893,29,Best cardigan,This is quite long on my 5'1 frame but it's wool and will be amazing in the fall and winter. so happy i finally ordered this,5,1,0,General,Tops,Fine gauge +1009,25,Classic and feminine,"I bought this skirt in the store a few months ago, because i anticipated that retailer would sell out of my size considering how great the fit/look of this skirt is. sure enough, they've sold out of the size 2. normally i wear a size 4, sometimes 6, in skirts depending on the cut and where it's from; just last year i bought a skirt from retailer in a size 10! for me, this was a skirt i needed to try on to get the perfect size, but it's absolutely adorable and a great deal at the sale price! it's mod",5,1,0,General Petite,Bottoms,Skirts +1180,54,I would keep it if it was not asymmetrical,"I wish there were be fewer asymmetrical tops in the store. i see many tops i like until i discover they have an asymmetrical hem and are longer in the back, which i do not prefer.",4,0,2,General,Tops,Blouses +1081,47,It is versitle and sleek design.,"I personally like light garment and simple design for my daily dresses. it meets my needs. +i personally recommend it to customers.",5,1,1,General Petite,Dresses,Dresses +1122,37,Unflattering,"Even in my usual petite small size, this looked bulky and made me look stumpy. disappointing because the style looks so good in the picture and the material looks to be good quality. i don't even know if going down a size would have helped. as others have mentioned it looks like a frumpy house robe.",2,0,8,General Petite,Jackets,Outerwear +868,32,Eh.,"There's just nothing special about it. it runs small and the fabric is itchy. the design with button caught my eye, but i didn't like it well enough to keep it.",2,0,0,General,Tops,Knits +1037,28,Love pilcro,Always love getting pilcro pants and these are just as good as previously purchased ones. i got the grey in 32 and i'm glad i did - i've ranged from a size 30-34 so i wasn't super sure which size would be be best.,5,1,5,General,Bottoms,Jeans +1075,34,Almost perfect,"The cut and print of this dress is beautiful. however, the armhole is way too low, which is a reoccurring problem with anything sleeveless from retailer these days. please don't drop the armholes so low, most women do not want their bra completely showing every time you lift your arm!",3,1,0,General Petite,Dresses,Dresses +895,32,Love it,Wish they had more colors avail in my size when i bought this one. you can easily dress it up or down.,5,1,0,General,Tops,Fine gauge +895,71,Great top!!,Bought the gray and peach in the store and loved it so much ordered the other colors online. this top is very comfortable and stylish. it stands out from the crowd as just enough different to be very unique and trendy but still a classic look. the sweater front is very soft and the back has a bit of a silk feel but not sheer. i also like that the back is a bit longer than the front.,5,1,1,General,Tops,Fine gauge +1037,35,Tts but smaller than the pilcro high rises,"It's true to size but as an fyi for fellow pilcro high rise wearers, don't size down like you might with them. i had my regular and my high rise pilcro sizes and my regular size fit in these. the down side for these is they are clingy and a bit prone to a camel toe effect until they stretch out during the day",4,1,6,General,Bottoms,Jeans +1037,44,Not petite,"I ordered two colors of these in 25p. i am keeping them because they feel wonderful on, but they definitely have to be hemmed! i measured the inseam on both pairs to be closer to 29 inches. 29 inches is not a petite length.",4,1,0,General,Bottoms,Jeans +1037,62,Great cords,"Corduroy fabric is historically difficult to fit well....even with stretch added. so imagine my surprise when i tried on the pilcro serif mid-rise corduroy pants in the saffron yellow shade and they fit great! they were long enough as well. i loved them so much that i ordered the aqua shade as well and when that pair arrived, it fit just a nicely as the yellow ones. how wonderful that there is finally a corduroy pant that truly fits well. these are not old lady pants either...how nice!",5,1,0,General,Bottoms,Jeans +895,36,,"This sweater is so lovely, i bought it first in navy and then came back for it in grey. very soft and comfortable. the back doesn't wrinkle the way you might think it would from the pics alone. very flattering. i highly recommend it!",5,1,0,General,Tops,Fine gauge +1037,57,So sad! this year's pant is sooo much shorter!,"I ordered first the green, then the grey (in case the green was mismarked.) +so short!! +is this to be in keeping with the ankle pant trend?? +anyone who wants a shorter pant could easily hem them. but there is no way to lengthen them. +i held the new pants up to an older pair from previous years. they are a full 2 1/2 inches shorter! wow! +note how in the photo of the golden color pants they barely skim the model's ankle. that's how they are in real life. +i wear these pants in a tall, and live",2,0,12,General,Bottoms,Jeans +868,42,Fabric was itchy for me,"The blouse looked better on the model. i liked the way it fit, just not how it looks. the fabric made me itch, which was one of the other reasons i returned it. i wished it had looked good and the fabric didn't make me itch. i really liked the unique look to the shirt.",3,1,0,General,Tops,Knits +1122,51,More like a bathrobe,"Big pockets make it look more like a bathrobe than a coat. there are no internal pockets and the loops for the belt are pretty skimpy - just a bit of string. the color is great, but the quality leaves something to be desired.",2,0,11,General Petite,Jackets,Outerwear +1075,41,Midi dress,"I ordered this in large since it was the last one available. i normally wear a med, but i do enjoy the oversize look in silhouettes like this one. the armholes are very low, but since i have hyperhidrosis (excessive sweating) this does not bother me one bit. i'll just wear a super lightweight tank underneath for coverage/protection. also, the oversize fit allows me to wear a long sleeve for layering if i desire. i love the flow and fluidity of the material and will be wearing this one a lot.",5,1,0,General Petite,Dresses,Dresses +872,83,Fantastic & fun,"I saw this top online and fell in love with the overall casual look. +i ordered all 3 colors, and they just arrived........love love love !!! +they are soft, comfortable and a have a very flattering casual fit. +the understated ruffled details add the special ""something"" that is so retailer. +they are sophisticated yet pretty. +the orange is more vibrant in person and is a beautiful shade. +the plum/purple is a rich, unique and pretty color. +the navy is a perfect ""denim"" color. +a fantastic basic",5,1,0,General Petite,Tops,Knits +895,47,,"Very boxy top, not flattering on. i will be returning.",3,0,0,General,Tops,Fine gauge +1081,31,Great peasant dress!,"Good dress to wear with heels, flats, tights. versatille!",5,1,0,General Petite,Dresses,Dresses +1037,39,The perfect skinny cord,"These got me so excited for fall. the teal is a color i'm really into right now and was the real reason i decided to order these. when they arrived though, i was delighted to find that they are light weight and have the perfect amount of stretch. the fit is snug, but hugs all the right places and are so comfortable! these will be a staple in my wardrobe. i want to order more colors!",5,1,0,General,Bottoms,Jeans +1037,34,Perfect cords! they do run short!,"I am in love with these. bought the regular length last year and loved them despite the shortness (hit right above the ankle). that length looks good with ballet flats or tucked into boots. this year i bought the burgundy and the teal in the long length. i am 5'7"" and the long fit perfectly! they come to the bottom of my ankle without extra fabric. +please restock the ""carbon"" in the long length! i want to buy my 4th pair!",5,1,0,General,Bottoms,Jeans +1037,22,Great pants,I love these pants the only thing i would say is that they don't run small! i read reviews saying they are small in the waist so i ordered a size up and ended up regretting it. other then that i love them,5,1,0,General,Bottoms,Jeans +1037,24,Great cords!,"At 6' tall, it's hard to find pants that fit my inseam (35"") and these fit the bill. i normally wear a 30 or 31 tall in pants (from brands like ag or paige), but i bought these in a 29 tall as i find pilcro tends to run large. they are soft and comfortable and don't stretch out 3 sizes by the end of the day, which is great. they feel like leggings! the wine color looks just like the images. for those who find measurements helpful, i'm 6' tall, 160lbs with about 42"" hips and a 35"" inseam.",5,1,0,General,Bottoms,Jeans +1037,43,Love these pants!,"Bought my 3rd pair of pilcro cords in the dark turquoise. the other 2 are from previous seasons. love these pants for fall because they are extremely comfortable and stylish. the dark turquoise was paired with the poppy tunic (in blue) at my local store. i liked the pairing and ended up buying both! i find these to fit true to size vs other items at retailer that fit larger. i am a 29 (8) while in most other pants at retailer, i am a 6. i am 5'7 and 135 lbs.",5,1,0,General,Bottoms,Jeans +895,35,,,2,0,0,General,Tops,Fine gauge +1075,65,Perfect,"I love this dress, is perfect in every way. no complaints. very pretty colors. will wear it with a belt.",5,1,0,General Petite,Dresses,Dresses +1037,23,Softest pants,These pants are so soft and comfortable!! the colors are great too. can't wait to buy more in other colors!,5,1,0,General,Bottoms,Jeans +872,40,Peplum top,"The picture is accurate. i got the plum version. the color and effect are really unique. the fit is tts. i wear an 8 in tops and the medium is fine. the sleeves are flattering- belled but not ridiculous. the fabric is soft. if the body of the top was a little less wide it would be a 5 star item. with flare legs, i think it will balance out the volume of the cut.",4,1,0,General Petite,Tops,Knits +1037,60,Fabulous cords,These tight cords are perfect for fall.,5,1,0,General,Bottoms,Jeans +1122,49,,"Unfortunately, does not look anything like in the picture. looks like an oversized house robe. i expected much more but was disappointed. i am definitely returning it.",1,0,12,General Petite,Jackets,Outerwear +868,38,Nice top!,"I really like this top. it is made of cotton and linen blend, so the fabric is not as soft as i would have expected. however, it did not bother me at all, and i am really liking it. +the fabric is on a sheer side, so it is a bit see through. nothing too revealing, however it is a thin fabric. +overall, i am happy with this top!",5,1,1,General,Tops,Knits +862,48,,,5,1,0,General Petite,Tops,Knits +868,65,"Lots of stretch, nice 4 layering","Although this isn't a soft top, i didn't find it that scratchy or bothersome at all. it's 55% linen! and, for linen it's soft. it's also got tons of stretch which makes it very comfortable as far as movement. + +i bought the black, and i do not find this sheer or see-thru. it's a light thickness which makes it perfect for layering under a jacket or sweater for a cool spring or warm fall day. i found it running tts, with the sleeves and length a little long (i'm petite) making perfect for the av",5,1,0,General,Tops,Knits +1081,60,Seriously?,"I am a sucker for a peasant dress. i love anything i can toss with a pair flats and head out the door, but this dress is ridiculous. i look like a schoolmarm. the white bib collar takes this dress into costume territory. i love one september and have many items from the brand that i wear regularly, so i'm bummed that this wasn't what i expected. i knew it would have flow, but it's more billowy than i wanted. stay away unless you want to look like a little girl on the first day of school.",2,0,5,General Petite,Dresses,Dresses +1037,36,Fall cords,More of a legging than a true pant. fits really well. grey color is great and will go with lots of things.,5,1,0,General,Bottoms,Jeans +895,34,A+++,"I fell in love with this top in the store and ordered another online. it is very soft and comfortable. the petite tend to run a little short in the front, but the regular is perfect. it's oversized without being frumpy or boxy on my petite frame.",5,1,0,General,Tops,Fine gauge +1081,65,,,3,1,0,General Petite,Dresses,Dresses +1037,58,,"These cords are great, the fit, the style, everything! my new favorite fall pants!",5,1,0,General,Bottoms,Jeans +895,24,Easy,"I first bought this top in the dark grey, loved it so much that i ordered the navy too! the quality is amazing as always, and fit is perfect (some may say it runs large, but i'm pretty sure it is meant to have a looser fit). i love the material of the lighter color blocked back. it's so versatile and easy to throw on. i've worn it simply with jeans, and i've also paired it with a pencil skirt and overlapping skinny belt and heels for a great work outfit (received compliments!).",5,1,0,General,Tops,Fine gauge +49,27,Love this piece!!!,"This piece fits true to size and is very flattering on. sometimes i worry about my stomach not being perfectly flat, but this wasn't an issue at all, probably because of the intricate lace details. the fabric is substantial enough that i don't feel like it'll get a hole in it after multiple wears.",5,1,2,Initmates,Intimate,Intimates +833,41,Not for a 34g,"This tank is lovely: understated but well-made of nice fabric. i love viscose because it drapes nicely on my curves. but this is a swing shaped tank. shoulda known better. and it's cropped so... giant fabric tent hanging from the biggest part of me. if i put in big french darts, it'd be too too short. no way to make it work so it's going back. (p.s. i clicked ""true-to-size"" but what does that mean?? sizes vary from brand to brand, from decade to decade... i don't understand how anyone could thin",4,1,0,General Petite,Tops,Blouses +992,40,Pretty print!,"This print/color combination is really pretty. i think it's a little muted compared to the picture, but still very pretty. it is definitely longer than expected - i'm 5'-5"" and it almost touches the floor. will definitely need to wear with heels. colors will actually work in the fall with boots and in spring with heeled sandals. it actually has a shorter underskirt, so there's no accidental show. i really like the dark blue wrap #extra fabric at top# - sits below the waist and will help hide imp",5,1,4,General Petite,Bottoms,Skirts +823,60,Lovely summer into fall top!,"Such an adorable top. very flattering despite it's rather full style. just be sure you get the correct size since it does indeed run quite large. i normally wear a small, sometimes medium. i ordered both sizes to be sure but they were both too large! i sized down to xs and that fit perfectly.",5,1,3,General,Tops,Blouses +823,27,"Gorgeous, unique top","I purchased this top in the store, intending only to go in and return two tops i purchased on sale that did not fit. i had been looking for a red top to wear with navy, and this one couldn't have looked more perfect on the hanger. from the front, it looks pretty traditional, but the back is just gorgeous! the multi-colors and the pleating give the top a lot of interest and depth. the fabric is also super soft and comfortable. the top does run quite large, though, as i purchased an xs and still h",4,1,0,General,Tops,Blouses +936,23,Long and wonderful,I am six feet tall and this sweater is a perfect fit for tunic length over skinny jeans. if you are shorter i assume it would be longer. i bought the green color which is a beautiful dark hunter green. the bodice is fitted and doesn't show any bra straps and the bottom is slightly loose and forgiving . love this sweater!,5,1,1,General Petite,Tops,Sweaters +1094,36,"I never write reviews, but...","This dress is amazing! the fit, style, quality of fabric is just perfect. just the right amount of ""v"" in the front and back to be flattering and sexy without being too exposed! will be looking for more styles from this designer!",5,1,2,General,Dresses,Dresses +833,53,,,5,1,0,General Petite,Tops,Blouses +823,36,Dressy or casual,"I love this top!! it is flattering in all the right places. i struggle with shirts the are too flowy however this is forgiving yet looks more fitted and flattering. i bought the shirt in blue and am buying it now in red! i typically buy a large or xl, in this shirt a large is perfect!",5,1,0,General,Tops,Blouses +778,42,"Beautiful print, so comfy!",Love these - the colors are perfect for fall. originally ordered a small which fit fine (i'm a 6-8) but felt the black color would look better if i sized up and the material wasn't as stretched - i'm glad i exchanged for a medium for that reason.,5,1,0,Initmates,Intimate,Lounge +1094,26,Gorgeous dress,"I am truly heartbroken that this dress is sold out in my size -- it's is incredibly flattering, glamorous, and interesting. and it has sleeves! this is such a hard combo to find and i wish more than anything i can find my size to wear to a wedding. retailer, please please make more dresses like this one that flatter all figures and are classics.",5,1,0,General,Dresses,Dresses +824,83,Gorgeous!,"I saw this dress online and i ordered immediately! +it has everything i love: my fav color, a peplum and feminine cut out details. +i ordered my usual size medium, and it was too tight in the chest, and i am just average... 34c. +loved it so reordered in a size large. +if you are thinking of purchasing this beauty i would suggest going up a size if you are on the upper end +of your size (medium 8/10 and i am usually a 10 so needed to go up) +the reason i gave the quality a lower rating is that the med",5,1,6,General,Tops,Blouses +833,53,So beautifully done...,"This is a lovely, well-fitting, embroidered, navy tank, i cannot find a flaw in this. i am 5'5, 142 lbs., 34d and the size 6 is a fantastic fit. one of those tops that is so well-cut that it feels as if one is wearing nothing. the lining is impeccably done and is cut perfectly for the blouse. it has a small cut-out in the back at the v. it fits just as the photo shows and is so versatile-it can be worn with everything from jeans to a formal skirt. six stars!",5,1,0,General Petite,Tops,Blouses +823,39,So comfortable,This is such a cute top. it runs large...i bought an xs and usually wear a small or medium. it's flowy and comfy. looks great with dark jeans.,5,1,0,General,Tops,Blouses +824,31,"Love style, not quality","The color of this top is lovely. however, i felt the quality was lacking for the price. the fabric is thin and the top i tried on in the store had some loose threads already. fit was tts for me.",3,0,3,General,Tops,Blouses +1094,24,A head turner!,"Bought this dress for my daughter to wear to a rehearsal dinner and i couldn't believe how beautifully it fit. fitted through the top, falling to a gorgeous flare. hit her at knee (she's 5""6'). classic, elegant, femme fatale look that will work for a range of occasions.",5,1,0,General,Dresses,Dresses +823,70,Party in the back,I saw this top on a store mannikin and was drawn to it by it's color and print. it looked great with blue jeans on display and a lariat necklace. then i noticed the different design on the back below the yoke. the surprise was its being pleated into very fine pleats. i liked the funky quality this added. the design is a good transitional piece to wear early fall or under a jacket. it is machine washable and that finalized the purchase of it. i bought the necklace too. i often wear a small but go,5,1,12,General,Tops,Blouses +866,37,,Adorable with black pants or jeans. covers the part of your arm you might want covered :-),5,1,2,General,Tops,Knits +967,32,,"The fabric is incredibly soft and has a good weight to it. this is also pretty warm. it's not a down jacket, but it's as least as warm as a sweatshirt. it fits close to the body in typical bomber jacket fashion. i'm 5'6 155 lbs and went with the large, which fits well. i always find myself wishing bomber jackets were just a tad longer and this is no exception, but i can't really fault the jacket for that, it's true to the style.",5,1,4,General,Jackets,Jackets +936,50,Weird arm holes,The arm holes are just weird .. a little too big for me was just 'off'... back it goes.,3,0,0,General Petite,Tops,Sweaters +1094,32,Ripped after one wear,"I have purchased many dresses from retailer for weddings and events. this is the first time i have been disappointed with the quality. however, the sleeve on this dress ripped after lifting up my toddler son in the middle of a wedding. the size 4 seemed to fit perfectly, but the fabric had no give. it was not overly tight in the bust as i am bra size 34aa. for the price, i expected better. the color and style of the dress is gorgeous, so perhaps ordering one size up is the answer. . .",2,0,0,General,Dresses,Dresses +824,26,Lumpy on the sides,"Usually wear s and xs, tried this in s at store but the sides were still lumpy after zipping the size zipper up. if i tried xs it would have looked better but may be bit too tight. the sides of the arm holes were also cut very low. it also has a dusty grey sheen to it that makes it look like old velvet in a bad way. two layers, green on outside, and a polyester beige layer underneath. + +but definitely a showpiece that can be paired with a short jacket.",2,0,1,General,Tops,Blouses +772,50,Comfy sweatshirt!,"This sweatshirt is really nice! it's oversized so best worn with leggings or skinny jeans. it's very warm, without being too thick. it looks almost exactly like the picture. the quality seems pretty good, but we'll see how it holds up after it's washed.",5,1,0,,, +1068,49,Love these pin stripe chinos,"I am in love with the pilcro brand. this pair is gorgeous. i love the how versatile these will be in my wardrobe. i can dress them up with a nice blazer, sweater or dress them down with t-shirts or tanks. these will be a staple in my wardrobe. they are a nice navy blue.",5,1,0,General,Bottoms,Pants +866,24,,Very cute top! even prettier in person! i ordered it by mistake but i am definitely keeping it! the regular xs size fits perfectly (i was concerned about my twin sisters!),5,1,2,General,Tops,Knits +1079,57,Beautiful silk dress,A beautiful silk dress - light and cute but not worth the price. this dress is extremely thin and no lined at all. it's very light and i'm afraid would be completely see through.,4,0,21,General Petite,Dresses,Dresses +1094,32,Beautiful dress - sleeve problems,"This dress is stunning. it is a great classic, that i wished had worked out for me. i went through 3 different dresses, and each time, the cap sleeve would tear. there is not much room, if at any for arm movement without the fabric tearing. i am so disappointed. it wasn' even tearing on a seam (so there was no way to repair it). if you do not intent to dance in this dress and are wearing it for a low key night or dinner, it would most likely work....it is not for a wedding with dancing!",3,1,0,General,Dresses,Dresses +967,32,,,5,1,0,General,Jackets,Jackets +967,46,"Great bomber for cool, not freezing, weather","This bomber does have a partial double layer with 2 zippers, one for the partial inner sweatshirt, and another for the jacket itself. the material is soft and cozy and the color is exactly what i was looking for, true to the picture. i find it very good for colder west coast nights, and the hood is cute, but not as functional in rain since it's made out of sweatshirt material. i am a curvier size l to xl and the large fit me very well and gives a nice shape zipped.",4,1,3,General,Jackets,Jackets +1094,29,,,5,1,0,General,Dresses,Dresses +1094,26,Beautiful and simple dress,"I bought this dress for my bridesmaids and it fit all 6 different body types wonderfully! it is a very classic look. the material is very nice, a little heavier and more formal.",5,1,1,General,Dresses,Dresses +823,37,Best pick for the fall !,"Super cute blouse- great with a jean jacket, - sleeved or sleeveless. pleating is neat and a nice unique detail, without getting to full. usually a 4 or small in blouses, bought the xs. made this decision based on the arm hole openings, seemed a little large and set low on the small. .",5,1,4,General,Tops,Blouses +1079,46,Only looks good in photos,"Dress was a disappoint. very thin and cheaply made, not worth the money at all. pictures make it look much better than in real life. top area is also made small so if you are busty, this is not the dress for you.",1,0,3,General Petite,Dresses,Dresses +823,26,Nice but large,"I love this top. the design is very good, i love the pleats at the back, and i tried both colors. i prefer blue even though both look good. the fit is very loose mainly due to the pleats at the back. i usually wear xl but bought this in an l, which was also very loose. i think an m would be too tight across the shoulders but loose lower because of the pleats. i am keeping the blue because i like this style, with fitted pants it would work well.",4,1,2,General,Tops,Blouses +823,48,Lovely tank for fall,This tank caught my eye in the store yesterday. i was taken by the design contrast of the front and back. the colors are beautiful and rich. i see this as the perfect tank to transition into the fall season. the top does run a little big. i sized down to a medium. i am just under 5'5 and am a 36g.,5,1,1,General,Tops,Blouses +823,50,Totally cute and unique,Saw this hanging in the store. it is cute front and back. it is flattering as well. i plan to wear under a jacket for work and without a jacket at night. looks amazing with a denim jacket,5,1,2,General,Tops,Blouses +868,20,Favorite new top,"I love this top!!! i usually wear a medium but all that was left were larges, so i figured i'd take a chance. it is gorgeous, and not too big! the quality is fabulous, and the color is very soft and complimentary. i am so glad i ordered this. can't wait to wear it!!!",5,1,0,General,Tops,Knits +883,38,Pretty but not enough for the price,"I don't have a lot of pink or lavender in my wardrobe, but any time i do try a shade like this on i always think it compliments my skin tone and hair color. i generally wear a mauve-ish or coppery eye shadow and the color of this shirt looks beautiful against that makeup too. unfortunately, i just don't find the shape of the top to be flattering. it's really long, so the way the model has it partially tucked looks best but i'm not really thin like her and i have a larger chest... it just doesn't",3,0,3,General Petite,Tops,Knits +508,37,Cool beach pants,"I was looking for the full legged pants with a slit, light enough for the beach. they have my size finally! i'm a regular 12 and m worked well for me. can't wait to wear these with a nice top.",5,1,0,Initmates,Intimate,Sleep +520,41,Cute tank,I love this style of tank top with the wider straps. very flattering but yes the armholes are big and i noticed the sizing is different with each color. i normally wear an xs but in the gray and blue i bought s to have a little room. i also bought the black color but the s was huge! i exchanged for an xs so hopefully it will fit better. it had to be ordered. it definitely stretches out as you wear it though.,4,1,2,Initmates,Intimate,Layering +883,65,Not sure,"I purchased this to wear on the same day. it did have a strong smell ! i tried airing but didn't help much so didn't wear. tags are cut so will probably give a try after washing (by hand, my fault for not checking this part). it is a bit over my price range for a casual top, so hoping i'll end up loving it!",2,0,1,General Petite,Tops,Knits +823,47,Petite frames will love this!,"The shirt is beautiful, but fits much too small. the stitching limits the space in your shoulders, and the hem too short. a petite frame would be able to pull this off- but i am a 5.10"" medium, and the shirt didn't work in every direction.",1,0,0,General,Tops,Blouses +883,37,,"Cute top, good color, fabric is a little rough and scratchy",4,1,0,General Petite,Tops,Knits +520,39,Love!!,"I'm in love with these tanks. so in love that i bought four of them (black, grey, blue, and the black motif). they are so flattering on. i love the low scoop neck and the wide straps. the cut is interesting enough to wear the shirt on its own, but also perfect for under a cardigan. i purchased a nearly identical one from retailer (which was made by velvet) several months ago and it was much more pricey. these are a much more affordable option.",5,1,1,Initmates,Intimate,Layering +883,25,Not for curves,"This top is very pretty on the hanger. however, i have a curvy bust, and it was incredibly unflattering on my body. boxy, too high of a neckline, unattractive. the plus sides to it are that crochet detailing is lovely, and the color is nice as well. maybe if you have a 1920's frame it would work.",3,0,1,General Petite,Tops,Knits +520,36,,"I love the wide straps but it runs small and is short. still great for layering. great, soft material. i hate that it is so tight and short but if i size up them the arm holes would be way too big.",3,0,0,Initmates,Intimate,Layering +1008,33,Surpassed expectations !,"Wow! this skirt blew me away out of the package! i almost had to wonder if i received the right skirt i had ordered! i thought the skirt was mostly an oatmeal isth color , but irl the skirt is predominantly purple with real and beige colors weaved in! the skirt itself is also a fine sweater knit which makes it look more luxurious! i'm thinking this skirt will look awesome in the fall, but might be a bit heavy for some in the summer weather. the skirt is also longer than expected... i'm 5'6"" and",5,1,0,General,Bottoms,Skirts +824,44,,,4,1,0,General,Tops,Blouses +868,46,Summer love,"I wish it was a little bigger.i kept this,for it will be wonderful for summer.",5,1,0,General,Tops,Knits +883,52,Fun top...pretty color...pinkish lavender,I ordered this cutie before i read any reviews and i am so glad i did. mine does not have any weird smell at all. i ordered a medium and i wear a size 8. it fits perfectly and is long enough to wear with leggings ...with coverage. the detailing on the yoke is so pretty. i bought it with a discount promotion so it made the price better. i am really glad to add it to my wardrobe!!,5,1,2,General Petite,Tops,Knits +883,40,,,4,1,0,General Petite,Tops,Knits +520,37,,"This tank top runs big. i?m usually a xs and i ordered the xs and pxs due to reviews and the pxs is still big. i kept the pxs because it?s very cute and i love the color (ordered the canton). i?ve been taping the tank to my bra so it does not slip too far down. however, not sure if i will order this again.",4,1,0,Initmates,Intimate,Layering +520,39,Ok for the price,"I ordered the black (not yet available ) through my store, as the xs was too big, and we tried ordering xs petite but it was not yet available. so we ordered xxs. (i am 115lbs). it fits nicely, but - as mentioned in previous review - it is thin. not see through in black, but thin. cut is nice though, i still think petite would fit me better i n length, but xxs was good... got a think if i will keep or not as htis is a nice summer basic...",4,1,7,Initmates,Intimate,Layering +520,32,White tank,I bought the white tank and the small fits me but it's very low cut for me. the white is sheer as well. i usually wear an xs or a small and i would be curious to see what the xs would fit like in the sense of how low cut it is.,4,1,0,Initmates,Intimate,Layering +1059,30,Perfect romper,I always look at jumpsuits but they never seem to work for me because of my height (5'1) and petite stature. i ordered the xxsp and it fits perfectly! so comfortable and made of high quality silk which you can really feel is well made. love that there is no zipper- just a hidden elastic tube top and a hook and eye below the nape of the neck. plan on wearing this for my 30th birthday with heels or booties and a cropped leather jacket!,5,1,1,General,Bottoms,Pants +1094,45,Great dress,"This dress is adorable and professional at the same time. i was worried that the print would overpower me but it's a nice fabric. i'm 5'2"" and the petite small is perfect. i don't like to wear form fitting clothing for work and this fits right for me. plus it's hand washable. i haven't worn or washed it yet but i'll easily wear it to my ""creative professional"" workplace.",5,1,2,General,Dresses,Dresses +883,20,Lovely top,"I was in the store looking specifically for long sleeved tops that are cute and found this! pretty color pinky purple and my usual xs is perfect. i'm 5'6"", 127 lbs, 34b. love this--definitely unique and feminine. and--no--nary a smell in the mix!",5,1,0,General Petite,Tops,Knits +824,46,"Strange cut, pretty idea","I bought this in size xl and it ran small along the waist & bottom hemline. i'm pear-shaped so it's an awkward fit. i'll wear it tucked in or belted. they used a lot of material in the sleeves & through the top portion. i wish they hadn't made it such a narrow cut along the bottom. + +the sleeves are very pretty. the embroidery they used for the cutouts is a little rough & scratchy. since i got it on sale & like the color, i'm keeping it. i recommend trying this on if you can.",4,0,2,General,Tops,Blouses +824,66,Beautiful blouse,"This is a beautiful lightweight sheer blouse. the front has a liner and the arms and back are sheer. i usually wear a s or xs - the xs was plenty roomy. i'll wear a cami due to the sheerness of the back .the cutouts in the long sleeves are quite pretty. overall this is a classy blouse that can be worn with any number of jeans, slacks or skirts. thanks retailer!",5,1,4,General,Tops,Blouses +520,44,Hit or miss,"I tried this in the black and white in the store. the material is very thin. you cannot wear the white without a cami which defeats the purpose of wearing this tank in the summery. the arm holes are cut very inconsistently. some are very big which creates a very unflattering gap under the armpit. others are cut fine. i tried on 3 different smalls in the black and found one that was cut just right. this does fit snuggly, but is more flattering that way.",4,1,2,Initmates,Intimate,Layering +520,36,Please bring back more!!!,"Love this tank! prettier shade of yellow in person. love the strap width and length. wish they'd bring back more in lots of colors. i sized up one from my usual size and will have to shorten the length of the strap myself, but it's an easy alteration and is totally worth it! especially good at sale price. i really hope they make more in the style in lots of colors. great find!",5,1,0,Initmates,Intimate,Layering +883,41,Love the detail!,"I bought this top in my usual size large and it is slightly big, but not so much that i would want to size down. the material is slightly itchy, but i think that it's worth it because it's such a pretty top. i absolutely love the detail at the top. it is beautiful! if you wear a nude bra, you can't see the strap lines through the material. i also love the coloring of this top. this is a great top that i can see myself wearing with dress pants for work or with jeans for a more casual look.",5,1,2,General Petite,Tops,Knits +1059,35,Nope,"I'd been waiting to snatch up this jumpsuit as it looks so cute online, so when it went on sale i ordered it right away. well i was thoroughly disappointed. i agree with some of the other reviewers, the fit is odd, huge on top and too snug on the bottom. being made of flimsy silk it has no give and didn't hang well on my curvy body, being too loose in some areas and too snug in others. also the top is embroidered while the bottom isn't. the material is thin and and it definitely isn't high enoug",1,0,0,General Petite,Bottoms,Pants +508,46,Perfect for hot summer nights!,The picture doesn't do these justice! they are beautiful and a must-have for summer date nights. i am 5'2 and hover between 115-120. i tried on the regular size in-store and they were way too long. so i ordered the xs petite and they fit perfectly! i like to pair them with a flowy top that hangs over the waist band. (not styled like the pic). they literally feel like you are wearing nothing. you'll receive so many compliments - trust me!,5,1,7,Initmates,Intimate,Sleep +520,39,Awesome basic tee,"I bought a similar tee by velvet by graham and spencer a couple years ago and have been searching for another one ever since. the wide straps are flattering on me because of my broad shoulders. i love the price too, very reasonable. i want one in every color.",5,1,0,Initmates,Intimate,Layering +520,30,Great fit,I bought the fuschia colored tank to wear under a sweater for the fall. great color. fits well.,4,1,0,Initmates,Intimate,Layering +520,39,Awesome tank or layering piece!,I really like this top. perfect underneath cardigans or on its own. the fabric is a bit thin so light colors may be see through. love the wider style so there is no bra show. versatile. i see myself purchasing more of these!,4,1,0,Initmates,Intimate,Layering +1059,30,"Pretty, but extremely thin","This item is pretty, the print on the fabric is nice and reminiscent of embroidery, but only the top portion has a few embroidered accents. my issue with it is it's very impractical. the fabric is extremely thin, and you wouldn't want to wear it in any weather below 75 degrees. it's ridiculous to advertise this product for a fall/winter season. the tube top underneath doesn't work very hard to stay up, and isn't a very practical way to hold up the jumpsuit (why wouldnt they just stitch a lining",2,0,0,General Petite,Bottoms,Pants +1088,50,Gorgeous maxi dress,"This dress is absolutely stunning! the colors are vibrant and it flows very nicely touching the floor. + it runs very small, i ordered size medium and i could not even zip the dress, i normally wear size 10. i had to return it and order again in size large. i love the fit this time!! but be aware if your normal size is higher than 10 this dress will not fit and larger sizes are not available for this dress. it is nice addition to my wardrobe and i am planning to wear it to the multiple occasion",5,1,4,General,Dresses,Dresses +520,52,Could be great,"I have bought 4 of these, but after 1st wash on 2 of them and they were in a lingere bag, there are little holes on the front of each, now they are bum around shirts. if they go on sale i will purchase, but the material needs to be better.",4,1,1,Initmates,Intimate,Layering +508,43,,,5,1,0,Initmates,Intimate,Sleep +883,32,,,5,1,0,General Petite,Tops,Knits +818,38,,Very sheer inexpensive material. even on sale i'm returning it,1,0,0,General,Tops,Blouses +520,39,,Great tank top! loved it so much that i ordered 3!,5,1,0,Initmates,Intimate,Layering +883,53,,"The color was a little darker than it looks online, but i like it!",4,1,0,General Petite,Tops,Knits +823,66,Beautiful but small,"I made the mistake of ordering a medium instead of large and have the same fit issues as other reviewers. it is tight in the back through the shoulders, so if you're considering it i would stick with your larger of your size range. the print is beautiful as is the fabric. it looked okay on me from the side but i am short waisted. it fell at the perfect length on me too. there's just something about the fit that didn't wow me so i don't plan to reorder, but i do think it would be lovely on thinne",4,1,0,General,Tops,Blouses +520,39,Nice tank,"Like the look of this tank, ran a bit larger than expected at the neck but overall happy with the purchase",4,1,0,Initmates,Intimate,Layering +883,44,Chemical smell,"This shirt smelled so bad when i received it (and i am not at all sensitive to smells). is it from the dye? +i tried it on anyway. it is shapeless and nothing special. at almost 80 bucks it is so over priced.",1,0,13,General Petite,Tops,Knits +883,33,Pretty top!!!!,"Lovely top with details and a unique color. i have read some other reviews and i honestly don't know why it is getting bad reviews. it is linen but not scratchy by any means, like linen it does give with wear, so i recommend sizing down as it does run a little large. with a nude bra you won't see your straps and i would dryel this, no washing of any kind, linen shrinks! overall great top and i was glad i snatched one up.",5,1,3,General Petite,Tops,Knits +823,57,"My recommendation is a ""maybe""","This top is for someone flat chested and skinny. i really like the styling, color, fabric and everything except that it's not for my body type. i am a 36dd and have a little bit of a stomach... so it makes me look fat from the sides. +the pictures taken on the model are from the front and back - but i will bet she would still look good in it from the sides! will be returning it.",3,0,4,General,Tops,Blouses +520,35,Great spin on a basic tank,"This is a super flattering, cute tank! i've purchased it in several colors because it's such a great fit. somewhat thin material and slightly sheer (especially the white). i like that it has good coverage on the sleeves so that bra straps nor 'side boob/armpit' fat shows. looks great with pilcro capris for a cute, casual summer look! i wish they would come out with even more colors!",5,1,0,Initmates,Intimate,Layering +883,47,Dye stains everything!,"The turqoise color is pretty, however, it did smell bad out of the package. i wore it once and it transferred the dye to my skin and white pants, bra and cami! hope it all comes out in the wash. i tried to hand wash the shirt and now have blue hands and a blue tub.",2,0,3,General Petite,Tops,Knits +868,50,Unflattering fit,"This is a rare review for me, i usually love my retailer purchases, even at times when other reviewers aren't fans, but this top is terrible. 5'4"" 103, 32 b for reference, small frame, athletic, bought the xs in black. the length could have been longer, but i could have lived with the length. the arm hole area, however, a different story. because it's boxy, and the fabric is stiffer bc of the large flowers, the top sticks out on the sides under the arm holes leaving a gape, it did not fit snuggly",1,0,0,General,Tops,Knits +520,46,Great basic tank,"The wide strap style is very flattering. this tank is fitted in my normal size small, it fits like the model in the cobalt blue color. i'm 5'7"" 120lbs. if you want more room, i'd size up. it is low cut, but not inappropriately so. fits like the picture shows.",4,1,0,Initmates,Intimate,Layering +1008,48,Heavenly,"Looks just like it does on the model. i am 5'130lbs and the ps fits perfectly. i wore mine with a t and wedges. adorable and more importantly, comfortable! flows nicely without being distracting. got lots of compliments.",5,1,4,General,Bottoms,Skirts +520,30,,,5,1,0,Initmates,Intimate,Layering +520,27,Prefect little tank,"Great soft basic. low scoop neck makes this tank flirty while the thicker strap keeps it modest. i absolutely love this top, easily dress up and down!",4,1,0,Initmates,Intimate,Layering +1008,54,Perfect spring skirt,"Knitted midi skirts are part of my daily uniform so i was drawn to this one. its high quality showcases intricate details: the pattern on the front is different from that on the back, the hem is asymmetric and is reverse high-low, the flat waist means the skirt is not too voluminous. the colors and pattern are reminiscent of missoni. it should be easy to coordinate with solid tops. wonderful quality and machine washable. i'm 5'5"" and the petite medium fits me as pictured. since i want the back t",5,1,9,General,Bottoms,Skirts +883,44,Cute styling but...,"This shirt had an overpowering vinegar odor when i took it out of the packaging. + +the mint green color was appealing but the styling did not look good and the smell was too much.",1,0,0,General Petite,Tops,Knits +520,42,Good basic but runs a bi big,"I love this tee, and am a picky tee person. it runs big, the striped colors are even bigger but i washed in warm and dried them and they are great. super soft and sexy for a tee! i bought the xxs and i am 115 lbs and 5'2"". i like the longer length -- cute with leggings. not 5 stars due to stretched out arm holes.",4,1,4,Initmates,Intimate,Layering +1094,65,"So cute, runs large!!!","Love the material, pockets, length (i wear petitie - i'm 5'3) etc. i usually wear a medium, but this dress runs incredibly large. i was drowning in it and sadly had to return it. size one or two sizes down if you want to purchase!!",5,1,3,General,Dresses,Dresses +520,35,,Awesome basic top for your wardrobe. it's a little sheer but not too much.,5,1,0,Initmates,Intimate,Layering +520,73,Sexiest t eva!!!,I love this tank! basic but super sexy! i'm an a cub and this tee makes them look a lil bigger so i'll take it!! i bought the dark grey in small and went back for the striped grey and purchased small. i bought the black one too but i feel like the small in black is too big and the xsmall is too small. i'm torn because i want the black to tuck in a pencil skirt.,5,1,0,Initmates,Intimate,Layering +883,44,Nice surprise,"I took a risk on this one. i wasn't sure if the shirt was more green or more blue. i look better in blue. it turns out that the shirt is a bit more green, but i think it still looks good! i'm 5'3' and 125 lbs. i got a medium. i could have maybe gotten a small, but i like the medium. the shirt has a bit of a vintage look to it, which i like. all in all good.",4,1,0,General Petite,Tops,Knits +1088,29,Stunning but small,"This dress is stunning. i loved the cut and seam detailing. it is very flattering...if it fits. i have a curvy athletic build and usually wear a size 10/12. i am also smaller busted and this dress was too tight around my ribs, back and tummy. i bought the large and it doesn't' come in a bigger size :( it is very well made and completely lines. i highly recommend this dress but again only it if fits you.",4,1,12,General,Dresses,Dresses +883,43,Lovely color,"Lovely color and sweet top, but the fabric was so itchy i couldn't wear it.",3,0,14,General Petite,Tops,Knits +520,38,Sheer but great fit,"I wish there were 100 colors, i'd buy them all. the white is super sheer, but i'll use it as a bottom layer for something.",4,1,0,Initmates,Intimate,Layering +862,37,Runs large...until you wash it,"I bought 3 shirts in gold, black and red. they arrived larger than expected. after the first wash and air dry they shrunk. i would have been thrilled but they shrunk to be shorter while staying too wide. also my black shirt faded a lot with one wash.",2,0,0,General,Tops,Knits +883,29,Comfy and cute,"Love this shirt, it's so comfy for fall/ winter, but has the really cute detail at the top. love the color too!",4,1,0,General Petite,Tops,Knits +520,49,"Great tank, love the wider straps",I saw the tank at the store and was so glad to try it on. i got the small?i'm in between xs and s (34b) and try to get petites when i can but the small fit great with a longer cut. i bought the green and did not find it sheer. i actually thought it was thicker than most tanks and tees these days. i found the arm holes were fine. i usually need to go with a petite just for this reason but no need to this time. planning on getting a couple of more colors!,5,1,0,Initmates,Intimate,Layering +1008,28,,,5,1,0,General,Bottoms,Skirts +1008,38,Great comfy skirt,"First of all, the photo online doesn't really do the colors of this skirt justice. it is a heathered knit, with colors of white, gold (deep yellow), raspberry (or almost maroon), and teal. i have never seen a color combo like this before, and its really fun. i am wearing it today with a burgundy color sweater, but i anticipate being able to match it for summer with any of those colors i just mentioned, or even navy or tan. the skirt has a lining in it, and the wide ribbed knit runs at varying an",5,1,11,General,Bottoms,Skirts +520,54,Fun tshirt design,"Actually you would think just another tshirt but actually with the wide straps it changes it up enough to really be cute. i like the look it adds. i really want to get more colors. i normally wear everything from retailer in small , and even though this fit it was small for a small. i will keep it but i think i will buy others in medium.",4,1,10,Initmates,Intimate,Layering +520,27,Love this simple tank!,I tried this on in-store in white and in grey. it is so super comfy and really cute. i love the wide straps! i ended up getting it in white and black. the grey looked a tad bit more casual than the white and black tanks.,5,1,1,Initmates,Intimate,Layering +16,39,Gorgeous,"This gorgeous dress really does bloom before your eyes. the silk is light, airy and very delicate. the bodice runs large and the length runs long (i have to wear my highest platforms) but i would not return because it's an exquisite piece of art.",5,1,0,General,Dresses,Dresses +883,35,Love this shirt,This is a great fall shirt. great for dressing up casual wear!!!,5,1,0,General Petite,Tops,Knits +520,46,Wide-strap tank,"The size s arm holes are a little too over-sized and i find i keep adjusting the shoulders so the sides of my bra won't show (and sizing down to an xs made the body too tight). it's a bit pricey for a basic, thin tank, but it's a good every day, wear all the time staple.",4,1,4,Initmates,Intimate,Layering +883,35,Beautiful color!,"I bough the blue color and love it. the neckline detail is fun and make you take a double take when looking at what is otherwise a relatively simple top. it drapes nicely, and paired nicely with dark skinny jeans and ballet flats for work (i'm at a tech company, so casual to business casual). the ombre color is gorgeous! (the lavender is pretty too but seemed to wash me out and not fall as nicely). +regarding what other reviewers said: yes, it has a slightly vinegar smell when it came shipped, b",4,1,1,General Petite,Tops,Knits +520,19,,"I ordered the red motif in size m based on reviews this top runs small and it is too big. i'm 5'7""/ 34c /132 lbs and usually a size s in this brand. this top was large through the body and the arm openings were huge. i washed it and dried it but it still fits a bit large, it did wash up well though, no pilling.",5,1,3,Initmates,Intimate,Layering +520,33,"Perfect cut, very thin",Love love love the cut of this tank top. it's is super thin and see thru however. wish it was made a bit thicker. i got it in white and you can see right thru it. however the cut is so fabulous i can over look that.,4,1,0,Initmates,Intimate,Layering +1008,56,Great skirt!,"Just purchased this skirt. it is absolutely the most comfortable skirt for every season......every color imaginable will go with this skirt. great with denim shirt too. lightweight cotton knit makes the skirt comfy with any temperature. waistband is wide and slimming to the tummy. i stand 5 foot 10 inches, 174 lbs and it is perfect in length. platform or flats, dress up or down. my favorite is a v neck tee with a couple necklaces and your good to go......",5,1,16,General,Bottoms,Skirts +520,45,Special tee,"There's something special about this tank that makes it uber-flattering. the fabric is perfect, the colors (green and fuchsia) are spot-on gorgeous and brightening, and the cut (length, wide straps, and scooped neckline) make this the perfect staple. it flattered my figure, skin color, and really hid my flaws. i wish i could get away with wearing this every day...",5,1,0,Initmates,Intimate,Layering +520,29,Great summer top!,"I purchased the turquoise in a petite- xs. normally items at retailer run on the larger side and this shirt fit just right (i am 4ft 11inches and 100lbs). the material was a little on the lite side which makes a great summer fit, but it is a bit weak (so it can tear easily). it looks great with all types of skirts and jeans. i just wish retailer would sell more of the petite sizes. i went back in to buy more in other colors and they are sold out already!",5,1,0,Initmates,Intimate,Layering +883,42,Not worth the price,"Fits large, wrinkles easily and not what i expected for the price.",2,0,0,General Petite,Tops,Knits +883,33,Very cute top!,It definitely smells like vinegar but it went away after a few hours. i don't think its itchy. its kind of baggy and kind of has an ombrã© look to it fading down to darker. it looks casual in the pic but i can wear it out at night with cute earrings,5,1,12,General Petite,Tops,Knits +883,32,,,4,1,0,General Petite,Tops,Knits +883,46,Color transferred to my skin,This is a cute top but i wore it for around 5 hours and lo and behold i had smurf skin. i did not sweat in it but the color transferred to my underarm area and bra and it did not come off in the shower!! i guess it's going to have to wear off. thank goodness it was not a hot day!! i hope that i can return it.,1,0,3,General Petite,Tops,Knits +883,37,Cute but too long,"I like this top but unfortunately i will be returning. it's way too long. the color is pretty as is the design minus the length. it makes it look frumpy. maybe if they offered it in petite or if you're taller, it would work for you.",3,0,0,General Petite,Tops,Knits +999,27,Work-appropriate and classy,"This is a very flattering pencil skirt. i found it in the store and bought an xs, and have been wearing it to work. it is not too short, and the wrap fit looks great.",5,1,0,General Petite,Bottoms,Skirts +881,44,Fall luxury,"Its a pleasure to wear this sweater! it feels like you are wearing a hug! it's that cozy! yet, it's almost weightless, which is nice for me because i get overheated easily. the only slight downfall is that it is dry clean only. i got this in charcoal but both color options are so pretty and you will be pleased how dressed up and flattering they look without giving up comfort!",4,1,1,General,Tops,Knits +881,53,,"Super soft and comfy, with stylish look",5,1,0,General,Tops,Knits +873,56,Super huge top,"I have to return this top. the armholes are huge. the material is on the thin side and not what i expected. i can't size down. i got an xxs. maybe if i had been able to order a petite, it would have fit better. i ordered the red and i liked the color.",2,0,0,General Petite,Tops,Knits +881,39,Sad but true,"I too will be returning this sweater. love the style, shape and fabric, but after one wearing it has pilled terribly and now looks old and cheap.",2,0,0,General,Tops,Knits +898,56,Warm wool,"Thank goodness i packed this on a recent trip to adirondacks because it kept me warm in the cool mountain weather. i love gray so i was drawn to this open stitch sweater. it is a boxy bulky look but a great layering piece. most bulk is in front, so it can camouflage areas. i wore this over a gray and black flannel plaid shirt. perfect!",5,1,0,General Petite,Tops,Fine gauge +881,52,Nice fit,"I was surprised at how much i liked this sweater. i was watching it for awhile and when it went on sale i decided to give it a try. i couldn't decided on the rose or black so i ordered both since they were such a good price, figuring i would return the color i didn't want. boy was i happy i ordered both. the rose is very flattering and the fit is so much better than i expected. i am 5'9' and usually take a large in size. i could have gone down one size, but the front drapes against your body it",5,1,0,General,Tops,Knits +1126,35,Special pattern unique design,Runs a bit tight around upper arms. love the collar.,5,1,0,General,Jackets,Outerwear +872,33,Not for me...,"This vest is a really cute idea for layering, so i ordered my usual size medium. and while it fit, it just added about 5-10 pounds onto my frame! ehhh the front just has this extra fabric that you are supposed to bunch up and then tie down, but it just made me look so bulky! sizing down wouldn't have helped as the back would have been squeezed in a small. it's a shame because it seems pretty well made and comfortable too. i'm 5'6"", 140, and usually wear a 6 or 8.",4,1,3,General,Tops,Knits +1078,43,"Easy, beautiful and different","I stumbled upon the blue version in the store. i immediately liked that it was easy, chic, and just different-enough. after wearing it for a birthday dinner, i saw it online and realized that i had styled it almost exactly the same way the blue one is shown. black sandal wedges, silver cuff, silver earrings. it is flattering in an unexpected way, which may be partially because i am really small-chested. the front v is deep compared to what i usually wear, but double-sided tape easily kept my bra",5,1,0,General,Dresses,Dresses +1004,31,Pretty but not perfect,"This is a thick jacquard fabric and the colors are stunning. this would be best for very thin petties or tall women. i'm 5'4"", 125#, 27/4, and it was just too much fabric so my waist looked thick. the length was great though. sad it didn't work out",3,1,5,General,Bottoms,Skirts +881,39,Jury out for pilling (from previous commets),"I saw the xxs petite in green in my store, adn decided to try this on only becasue it was a petite and in the store. i don't see green as an option nline anymore, so it must have been a old return... it is extremely soft, as others mentioned, and the fit is really flaterring. i bought it then read abou the rebviews, so will see... the fact that i bought the xxs, means it must run big!",4,1,0,General,Tops,Knits +1004,39,Pretty colors more for fall though,This was returned in store in an xs. i tried it on and it fit. shorter so it was probably meant to be a mini. i will hold on to it for now. on sale so worth the price. colors are nice and bright,4,1,0,General,Bottoms,Skirts +1004,50,"Amazing quality, beautiful design","I absolutely loved this the minute i saw it. the quality is impeccable, and the fit is amazing. i will agree with the other reviewer in that the fabric is very thick (back to the quality of this piece, amazing!!) and some women may not like the extra ""bulk"" to that part of the body. however i'm still on the hunt now for the perfect white top to go with it. thank you retailer for always providing unique, quality pieces :)",5,1,5,General,Bottoms,Skirts +1078,43,Get this now!,"This dress may not be worth the full price of $138 but on sale it is one huge bargain! so easy to wear and so incredibly flattering! seriously, i don't know why it's not sold out at this price! it hides all flaws without looking oversized or bulky. i totally disagree with the reviewer who called this dress ""sack"" like. found this tts. looks great with pumps or flats.",5,1,0,General,Dresses,Dresses +706,41,Adorable but overpriced,"The print of this dress is what enticed me, and it did not disappoint. the fabric is a nice shade of medium grey with cream printing. however, the fabric is very thin. thankfully the top part is lined, but the bottom is not and it should be. this lightweight dress great for hot summer days, but for the price it really should be lined on the bottom as well. +the dress is more a-line than pictured, which i liked. the bust is fitted and there is elastic in back. the skirt is fairly loose and flare",4,1,1,Initmates,Intimate,Lounge +1078,29,Way better in person,I was not expecting to like this. i tried it on in the store on a whim. it happened to drape beautifully. this will be a great work dress for the summer with something underneath the bring up the neckline. the blue color is soft and pretty.,4,1,0,General,Dresses,Dresses +1126,58,So in love,"I have been looking for a long jacket with personality for a while now. i got one from retailer 5 years ago and i've been looking for something just as great. walked into the store and fell absolutely in love. the fit is true to size, i prefer my jackets pretty fitted. the color seemed a bit rosey in the store, but now that i'm home seems more tan and brown. it's not going to be super warm, perfect for fall in colorado and warmer winter days. it's soft, so soft, not bulky at all. if this is your s",5,1,0,General,Jackets,Outerwear +873,25,Perf for casual outing,"I saw this shirt in store a while ago, but could not believe the price and was not about to spend my money on it. however, when it went on sale and there was an extra 40%, i decided to get it. i like the top, it's cute and fun. however, it does poof out a little in the midline. this top goes great with jeans or shorts, and it is cute, but definitely not worth full price for this.",4,1,0,General Petite,Tops,Knits +1078,44,Sack dress,"Unfortunately, this dress is shaped like a sack and has no shape to speak of. i have sent it back for a refund :( too big, too shapeless.",2,0,5,General,Dresses,Dresses +834,56,Very pretty,"This top is very pretty. it's a bit more voluminous than the picture would let on, but otherwise as expected. you can adjust the ties at the shoulder.",4,1,2,General Petite,Tops,Blouses +881,47,,"Love the silhouette and coziness of the fabric. for the first few wearings, i was in love. then it began to pill horribly . . . would not recommend. my mother said, ""that's going to pill up."" and i ignored her. and she was right.",2,0,0,General,Tops,Knits +1111,34,Stunning,"This is stunning. it's almost snug for a 2 (i'm 5'6, 123 lb) but that might be because it's strapless. it's constructed with a bra inside so you can get away without wearing one. i can't wait to wear this and i'm going to have to find an event good enough to deserve this dress. i feel like audrey hepburn in this.",5,1,0,General Petite,Dresses,Dresses +873,33,Basic top with frills!,"The pattern attracted me to this top in store and when i tried it on, i was pleasantly surprised it has a slight swing shape to it which i love. i'm a 36c/d and normally wear an 8 or 10 and bought this in a large. the front buttons don't peek open and actually lays flat which is unusual for me with button up tops. i'm actually wearing it today with some printed green shorts. the stripes on this top make it easy to mix patterns, too :)",5,1,27,General Petite,Tops,Knits +355,30,So cute in person!,"The material of this swimsuit is amazing. the swimsuit is expensive, but it is high quality in person. definitely one i'd recommend buying!",5,1,2,Initmates,Intimate,Swim +685,26,Sexy and comfy,"This robe is exactly what i was looking for. it's perfect for lounging around while getting ready and also good for post-shower while i'm still drying off. it is a little shorter than it looks on the model, but that's fine for me. only downside is that it has to be hand washed.",5,1,0,Initmates,Intimate,Sleep +881,51,Love it,"I bought the deep maroon which is beautiful. absolutely love the softness, length and the casual look. you can dress it up and dress it down. it does run big. i got the medium but could wear the small easily enough. since i am 6 feet tall, i wanted to length to be where it is. the only part i did not like is the 3/4 length sleeves as it is tough when wearing a jacket over it.",4,1,0,General,Tops,Knits +1004,24,Not recommended for girls with curves,The fabric is soooo thick. the pattern is very spring/summer but the heavy thick and lined fabric says otherwise. the pockets are great and the fit was true to size but that fabric killed it for me,2,0,0,General,Bottoms,Skirts +881,41,So soft!,Love this sweater! i have it in the raspberry and the charcoal color. it's so soft and comfortable. looks great with jeans or leggings. it's casual but you can dress it up a bit and you still looked polished. it's a little oversized. only downfall is that it piles easily.,4,1,1,General,Tops,Knits +873,51,Cute top,"I think this shirt is so cute. it is well-made. it's a flattering fit, and it's unusual. it still is a neutral though so you can wear it with lots of things. i'm really happy i bought it.",5,1,10,General Petite,Tops,Knits +881,59,Pull over sweater,"Looks beautiful in the photo and the color in person is beautiful but it runs so so large that i think even an extra small would be too large for me. just for comparison, and i wish all reviewers would include this, i am 5'5"" and weigh 120 pounds. i ordered a medium which a small to medium is my usual size but i ordered the medium because i wanted to have room to wear something under it. i could have worn two sweatshirts under this sweater. unfortunately i have returned it.",2,0,2,General,Tops,Knits +1126,57,Very pretty--runs very long though!,"This is long--as it is shown in the picture. i am five 8, and it's actually too long for me. it looks a bit matronly on as it's just so long. i loved the fabric--it's not heavy and it's super soft. i think it runs one size big. it's made very well, and as i stated, it is a nice fabric with a soft hand. it would be nice for a crisp fall day. that being said, the length just isn't right and does nothing for me. i'm five 8 and slender . i definitely do not think a petite woman would like this or be",4,1,0,General,Jackets,Outerwear +881,64,Pilling problem,"Soft, cozy, and cute, but pilled badly after 1st wearing and now will be relegated to wearing at home only. +for this reason i cannot recommend. felt like i wasted my money. +i purchased the xs petite ( i'm 5'1"". 95 lbs) and i could have gone down to xxs, but i was ok with it being looser.",3,0,1,General,Tops,Knits +1078,48,"Cute, but...","Wanted to love this dress, bit it wasn't to be. strange fit, and doesn't drape nicely, as in the photo. also, the blue color was much darker in person. wouldn't recommend.",2,0,0,General,Dresses,Dresses +706,47,Easy-fitting dress for casual summer days,"I ordered this dress online and didn't really know what to expect. but to my surprise, it's exactly what i had hoped it would be. the dress is a fantastic fit and has a modern, interesting print. the fabric does seem thin for the price. but i am not returning it. it's a casual summer dress that kicks up my look a notch on weekends. i wear it with beige sandals, and the gray and beige look good together too.",5,1,1,Initmates,Intimate,Lounge +872,39,Super soft way to change up a basic outfit!,"Like the other reviewers said, it has a lot of bulky fabric if you wear it as pictured. i tried it on and tied the string around the back so it's an open vest. i love if!",5,1,0,General,Tops,Knits +706,35,Love this dress!,"I really love the fit of this dress. i said it runs true to size, and it really does--even with the stretch fabric around the back and adjustable straps, i would not recommend sizing down as i normally do at retailer--there is no stretch to the actual fabric on the dress. i'd never bought anything by this brand before, and i would say that the fabric is quite thin for the price of the dress, and it is not lined (i'm still hoping it's not see through). however, for me, the style makes up for",4,1,0,Initmates,Intimate,Lounge +862,21,Runs very large,"The shirt is great, aside from the fact that it runs very large. i ordered an xs when i usually wear a s and it is still very big on me. the color is great though, and the fabric is more comfortable than i expected. i still wear it occasionally with pants or skirts that i can easily tuck it in to.",4,1,0,General,Tops,Knits +1078,37,At once matronly and sexy?,"So the dress is interesting. has an asymmetrical wrap look, short, sexy length (i'm 5'3"" and the petite barely covers my assets), and a neckline that implies sexy without actually displaying the girls- it crosses over and stays closed, but looks sexy and plunging. but the shoulders are what make it look matronly. they're wide- from neck out to the outer edge of my shoulder/upper arm. they show no shoulder at all, which is really an odd design when the rest of the dress is sexy-ish. i looked back",3,0,0,General,Dresses,Dresses +1078,38,Lovely dress and fit,"This dress is extremely flattering on and looks a lot better when worn than on the hanger. the cut drapes very nicely and is true to size. i am 5 feet tall / 95lbs and the xxsp fit perfectly. it is a bit short however, so i would caution that it may not be work ""office"" appropriate if you are taller. like most hd in paris dresses, it is also quite thin although lined. this dress would look lovely with a either delicate jewelry or a bold statement piece and is casual enough for a lunch outing or",5,1,12,General,Dresses,Dresses +873,62,I own this top in 3 colors!,"I bought the gray and white to take on a trip. i wore it nearly every other day. looks good layered with a cami or short sleeved t-shirt. also threw on a blazer one chilly night and it looked nice enough to have a dinner out.came home and bought it in red and white and solid white. true to size. not clingy, not baggy and comes down just long enough to cover the tummy.",5,1,0,General Petite,Tops,Knits +706,32,Nope,I was looking for a casual dress for quick errands that was trendy but comfy. this dress had a lot of potential [i was drawn to the print] but the material is awful. so thin and scratchy! immediately went back.,1,0,0,Initmates,Intimate,Lounge +1078,41,Cute but not right for me,"I really, really wanted to love this dress. the v-neck plunge is way too deep. i needed to pin it to keep it closed. the blue color was pretty, and the front was flattering, but the back was not. it was super clingy in the back and didn't hang in a flattering way. sadly, i sent it back.",3,0,0,General,Dresses,Dresses +881,45,So soft and cozy,"I love wearing this sweater, it is unbelievably soft and cozy. usually a sweater like this sits like an unflattering sack on me, so i was pleasantly surprised by how flattering it was on my petite frame. i purchased a grey xs regular in store and i am 5'3"" 120 lbs and it was long, but not at all overwhelming. it sat very flattering on my figure and kept me warm at work on this rainy cold day. i wore mine with skinny capri jeans and purple suede kitten heels. would look great with leggings and bo",5,1,4,General,Tops,Knits +898,22,,,5,1,0,General Petite,Tops,Fine gauge +881,48,So comfortable!,"I bought this sweater in the gray color and love it! it is so very comfortable, very soft. it looks great with jeans or leggings.",5,1,2,General,Tops,Knits +700,67,,"I ordered this bra in my normal size 32d, and it fits me perfectly. this bra is beautiful. the material seems to be very high quality, and the comfort of this bra is amazing. it's definitely a keeper.",5,1,1,Initmates,Intimate,Intimates +881,58,So comfortable,"I love this sweater. i bought it on sale in maroon and it is the most comfortable sweater ever. i like to wear it with leggings. it has a nice, oversize fit and is perfect for ""fat"" days. or any day.",5,1,0,General,Tops,Knits +881,47,,I was looking for a top to go with leggings that didn't look like a sack and this is perfect. the v-neck and unusual cut on the bottom makes it more interesting than a typical tunic and the fabric is so snuggly. love it.,5,1,4,General,Tops,Knits +872,48,Gorgeous gorgeous gorgeous,"Beautiful piece! the model actually doesn't do this piece justice. it is stunning. a light, yet quality fabric that drapes effortlessly and ties comfortably. great with a white tee and sllm jeans. runs ever so slighty large, but i took my normal size (xs) and for the type of piece it is, it works.",5,1,0,General,Tops,Knits +1070,43,Awesome,"Wonderful, slimming leggings. snappy and a great accessory for any professional outfit.",5,1,0,General Petite,Bottoms,Pants +895,35,Detailing is amazing,"I have tried this on several times now and have yet to pull the trigger. i like the coral color the best for its versatility. the detailing on this cardigan is fantastic. i especially like the back, the stitching is already very flattering, but then the pleats really add an extra touch. the only reason i have not bought it yet is that i wish it was slightly longer-especially with it being a cashmere piece. i am slightly worried about it shrinking in any way, which would make it much too short an",5,1,8,General,Tops,Fine gauge +831,56,Gorgeous versatile velvet top,"I love this top-it fits true to size, hits at the low hip so its not too short, and can be worn casually or dressed up. i wore it with ripped ag stevie ankle jeans, freebird by stevie worn brown buckled ankle boots, and a glittery silver necklace, but it would have also looked good with turquoise jewelry. i also plan to pair it with the cabernet-turquoise cecelia prado sparkly skirt, tights and boots, and a jean jacket or black moto jacket. this top would also look amazing with the sanctuary arm",5,1,7,General Petite,Tops,Blouses +985,50,Cute style,This jacket is cute and comfy!,5,1,0,General Petite,Jackets,Jackets +614,31,Love this romper,"I had never tried on a romper or jumper. the print of this changed my mind and i'm glad for it. it looks amazing on is easy to wear. i kind of wish it were lined but it's probably better unlined to keep it light and cool for the summer. + +i did end up using double stick take bc the front was so low but it was worth it.",5,1,4,General,Bottoms,Shorts +873,58,Great versatile top,"Pictures do not do this top justice. looks much cuter in person ! +it caught my eye right away in the store. +perfect top for when the weather starts getting a little cooler.",5,1,2,General Petite,Tops,Knits +868,30,No,"Just a ginormous, shapeless shirt. runs extremely large. i am normally a medium to large in shirts and the medium was huge. i can only imagine an xs would work and i am no xtra small!",1,0,5,General,Tops,Knits +985,25,Perfect light jacket for fall/spring,"This jacket is exactly what i was looking for! it is a lightweight and comfortable material that will be perfect for fall/spring (and for layering during a mild winter!). i am 5'3, 128 lbs, and generally wear a small - but i ordered a medium in this jacket and am happy i sized up. the jacket is roomy, but the cinched waist makes it flattering rather than shapeless. i'd definitely recommend this anorak to anyone!",5,1,0,General Petite,Jackets,Jackets +897,30,Perfection,I loved the contrasting design of this sweater. i loved it even more when it arrived. its soft and true to size. i received so many compliments which sealed the deal.,5,1,0,General,Tops,Fine gauge +927,48,Sweet sweater,It's maybe a bit longer than i'd like but cute-great with slacks or dresses!,5,1,1,General,Tops,Sweaters +895,33,So soft,"I happened upon this one in store in my xs size. online it would not catch my eye, but in person i love it. it fits like a glove and is so soft and elegant with the knit detailing, pleats, and length in the back. i couldn't pass this one up. i also agree with the other reviewers about colors:/",5,1,0,General,Tops,Fine gauge +895,39,,,5,1,0,General,Tops,Fine gauge +985,59,Love,"I'm usually a small or medium in retailer tops, however, jackets i tend to wear a small......liking a more fitted look. this jacket i also purchased a small, but there is plenty of room, so might have even worn an xs. anyway, the material is great, is well made, wonderful pocketsi, super comfy, but maybe a little too warm for summer nights. i cuffed up the sleeves......had no issue with the length. i'm 5'6"", 36c and i couldn't be happier with this purchase. happy mother's day to me!",5,1,9,General Petite,Jackets,Jackets +831,50,Gorgeous!,Can't wait to wear this during the holidays. beautiful embroidery and detailing.,5,1,0,General Petite,Tops,Blouses +927,41,Perfect for summer evenings,I love love this sweater it's beautiful on and super comfy. my only complaint is that it had a snag and a hole in the back. so i can't say it's good quality.,5,1,0,General,Tops,Sweaters +985,36,Very nice,"This coat is very soft and flattering in design. good quality and very comfortable. i usually wear a small which is what i got and it fits well. if anything, it is a little snug across the shoulders when i reach forward, so if you plan on wearing a heavier layer underneath, go up a size.",5,1,0,General Petite,Jackets,Jackets +1051,40,Sorry i returned these,"Pants were super comfortable. a little too large. and the fabric was a little too heavy. i sent them back, and i'm regretting it now that they're completely unavailable.",4,1,0,General,Bottoms,Pants +927,68,Great piece,"I bought the ivory in my usual size xs and the fit is flattering and quality is good. it is a good weight for spring, summer and fall. i love that it is a natural cotton/linen blend. the turquoise was not available in my size initially but when it restocked for a short time i ordered it, also! i know i won't be disappointed. beautiful sweater with great details.",5,1,1,General,Tops,Sweaters +1082,57,,"The fabric is very nice and it is completely lined, except for the sleeves, which are sheer. i expected the dress to be lighter, so wearing this on a hot day won't work. i ordered an xs because of the former reviews it said it ran large and it does. it's roomy, straight, and quite flowy. i wanted a casual non clinging dress and it's just like the picture. it hits below the knee.",5,1,2,General Petite,Dresses,Dresses +831,50,Timeless black velvet top,"This is a classic, well made, velvet top. it fits true to size, is very flattering ,the on- line photos don't do it justice. very pretty in real life. 34a 123 lbs ordered the xs.",5,1,2,General Petite,Tops,Blouses +824,65,Not for the full figured,This would be a great blouse for flat chested person. i am a size 12 and busty. i ordered an xl and it was ridiculously tight across the chest and the fabric is see through. you would need to wear a cami under it.,1,0,3,General,Tops,Blouses +985,62,Beautiful jacket,This is a really lovely jacket - silky soft fabric in a pretty color and quality construction throughout. i am so sad that it runs very small - especially in the arms and across the chest. i will be returning it .,4,1,13,General Petite,Jackets,Jackets +1082,30,,,5,1,0,General Petite,Dresses,Dresses +831,62,,"This top is exactly as described. it can be casual with jeans or dressed up for evening wear. i would have kept it but it was slightly tight across the chest. i am 5' 1 1/2"" tall, 112 lbs & purchased a petite small. my bra size is a 34a.",4,1,0,General Petite,Tops,Blouses +927,46,,,4,1,0,General,Tops,Sweaters +927,33,,"Love it! cute, flattering, and even though the material is thin - it is still very cozy. i have no complains about the quality; i haven't found any loose threads or other issues. + +the cardigan runs tts. i got m instead of my usual s (because s was out of stock), and it's a little loose in the armpits. but i still like the cardigan and i'm keeping it.",5,1,3,General,Tops,Sweaters +614,32,Has potentail,"I was really excited about this romper and when it arrived it looks just like the picture. the torso was abnormally long and i get this is supposed to be a relaxed fit but it sagged way too much for my liking. i'm 5'9"", 32c and i wear 28 size pants, usually i struggle with too short of a torso in romper/jumpsuits but not this one. i ordered a medium and felt like it was way too big. i probably could have gone down a size but i wasn't loving it enough to try. the fabric is nice but the tiny clasp",3,0,1,General,Bottoms,Shorts +927,38,Great spring/summer cardigan,Was looking for something lighter as we go into warmer temperatures and this one is greatz looks just like pictured and ha a flattering fit.,5,1,7,General,Tops,Sweaters +985,63,Just what i was looking for.,"I had been looking for a green jacket with a hood just like this one and was thrilled to find it. i found the fit to be true to size. i am 5'4, 107 pounds and i bought the xs, which is my usual size in retailer jackets. i love the material and the way it hangs so casually.",5,1,0,General Petite,Jackets,Jackets +927,65,This is a wow!!!,Went to the local store today for something else and left with this in the cream color. it is just simply awesome. i could have worn the s but felt that the m would be a little better. i'm between a s and m most of the time. can't say enough good things about the quality and versatility of this sweater. great piece for cooler summer nights and for a cover up for pilates/yoga. can't wait to wear it and now i'm tempted by the teal.,5,1,2,General,Tops,Sweaters +1051,45,Fun pattern,"These pants are a fun way to mix it up from the usual dark, solid colored pants. the print is a perfect balance between subtle and bold. the fabric is soft and stretchy and i love that these pants are washable. i i'm petite (5'2"") but my petite size was sold out so i bought these pants in the regular length. they are soooo long that i think even the petite size wouldn't have ended up cropped on me. having said that, i like them enough that i plan to keep them and have them shortened. i usually s",4,1,1,General,Bottoms,Pants +985,33,,Just bought this weekend and had to size down. i'm usually a small in jackets and went with the xs. retailer has had this style for the last few years and i've missed out so finally was able to buy before they sold out!! well worth the price point. i think it will be a very versatile jacket. for sizing reference i'm 5'7 and 135lbs.,4,1,4,General Petite,Jackets,Jackets +895,68,Intricate knit stitches,"Cashmere is soft as a feather, yet warm, easy to wear and the pointelle stitches are lovely. i feel lovely wearing this and i'm really not that kind of ""lady"". so, if you imagine a side of yourself wanting to try out feeling lovely, bite the bullet and buy this cardigan. it does run small in my bust area, but all the rest fits well.",4,1,0,General Petite,Tops,Fine gauge +985,22,Cute and comfy,"This jacket is so comfortable and high quality fabric. i love the color and style and easiness of just throwing it on. the only thing that i wasn't completely satisfied with is that it is a little bit bulky around the hips with the pockets. however, i am 5'0"" so that may be more of a length issue for me. overall, this jacket is really nice.",4,1,0,General Petite,Jackets,Jackets +831,27,Lovely and comfortable,"I finally bought this top after eyeing it in the store for sometime. the design adds a bit of edge to a top that could get matronly very quickly. it goes great with a nice pair of jeans and some pumps - you're ready for a night out! my only critique is that i'm a bit busty (38c) so in the center of the top where the v of the neckline meets the shirt, there is some pulling. it's not completely noticeable, and doesn't make it uncomfortable in the least. love this shirt and so happy i finally indul",4,1,0,General Petite,Tops,Blouses +614,35,My first romper,"This is the first romper i've ever purchased and i'm instantly in love. it's flows, the colors are vibrant and the pockets are practical. looking forward to wearing it for the rest of the season as well as next year.",5,1,0,General,Bottoms,Shorts +927,55,Super cute,"Was excited to find an retailer pkg awaiting in my mailbox. ripped open the package and immediately tried on the sweater. it did not disappoint. i bought turquoise in size medium. my regular retailer cardigan size. i am 5'3"" medium build and i find the regular size fits me true to size. it isn't too long on me at all. i think the way the sweater drapes in a curve shape as it flows downs to the length of sweater makes it very accommodating for various heights, figures and is a flattering style for cu",5,1,8,General,Tops,Sweaters +985,32,Buy it!,I love this jacket and can't get enough of it. it has side pockets as well as the buttoned-pockets. i love the cinched waist option for a more fitted look.,5,1,0,General Petite,Jackets,Jackets +1051,34,Great pants; run large,"I am 5'5. 125 pounds, size 4-ish (sometimes a 4, sometimes a 6), athletic build. these pants fit great except they are pretty large around the waist, about 2 extra inches of space. i don't think the problem would be fixed by sizing down since only the waist was large. i will need to get them tailored.",4,1,4,General,Bottoms,Pants +895,36,Nice cardi,"I wish i had sized up on this one. you can't tell from the photo, but has kind of a weird taper thing where the sides are shorter than the back. the back is extremely flatteringly, but the front... not so much. the shorter sides are a little awkward. there is no attached way to fasten this cardigan, and it lays kind of strange. the material is a medium thickness and i think will be very versatile. very soft, of course. i got the blue/ teal color. i found the color to be true to the color on-line",4,1,3,General Petite,Tops,Fine gauge +1051,20,Great print,"I'm 5'5"" 120 lbs and i bought these in a 0. they fit great. i wore them for upwards of 12 hours and i was very comfortable. i received compliments on the print and cut. very flattering.",4,1,0,General,Bottoms,Pants +1103,31,,,5,1,0,General,Dresses,Dresses +1082,61,Great dress,"The detailing on this dress is beautiful. the cotton fabric is good quality and has a nice weight to it. i love the print. +as for the fit, i sized down one size because of the reviews, and the s fit perfectly. i am a 34 d, and the dress is slightly snug in the bust and perfectly fitted in the waist. i line dried the dress because of that. the zipper does stick a little at the waist when zipping. i can't wait to wear it.",4,1,0,General Petite,Dresses,Dresses +242,35,Runs super small,"Holy cow does this run small-like really small. i ordered the normal size i would wear and couldn't even get it passed my legs-until i supplied the most amount of effort i could (against my better judgment) and managed to get it on-but it was definitely too small. i would classify myself as petite and my normal size was way too short on my torso. it, of course, was a mistake to force it on because it was just as hard to get it off. + +that said, i love the suit and am going to try in one and 2 siz",4,1,13,Initmates,Intimate,Swim +242,46,Stunning one piece suit,"I just received this beautiful suit. i have purchased a boyleg from seafolly before and loved it! +this color way is totally different. it is a white background with a floral pattern that is not over the top. +i am a 32 dd and wear a clothing size 4. i purchased the 6. this suit definitely will accommodate small bust too. +my sister is a 34 b size 4 clothing and it fit as well. +way to go retailer with another winner!!!!",5,1,12,Initmates,Intimate,Swim +1035,25,Perfect jeans,"I am 5'6"", 130lbs, size 27, short-legged, and these jeans fit perfectly. i've learned that pilcro's serif fit is my go to, and these did not disappoint. not only are they a flattering fit, they are the ideal medium blue denim, and they aren't covered in excessive whiskering, which seems to plague most jeans.",5,1,1,General Petite,Bottoms,Jeans +1095,48,"Easy, breezy style","Good quality dress, except the lining is very sheer and thin. the inner strap of the lining ripped when i tried it on, so be careful putting it on. once on, it fits true to size, the lining is nice to have, so i kept it even though the strap ripped. if you are on the fence between sizes i would recommend going smaller to avoid having this style of dress look maternity on you.",4,1,4,General Petite,Dresses,Dresses +1033,48,Great fitting jean.,"I could live in these jeans, they are so comfortable. they are have the perfect amount of stretch and the fabric is so soft. i was skeptical because that usually means they lose their shape and i'm yanking on them all day, however, i have worn them 3 days now and on the third day they may have stretched a little in the waist. i am normally a 28, but can get away with 27 sometimes; i chose the 28 and felt the fit was perfect. by the way, i'm wearing the jeans with the cubanas ciara glitter boots,",5,1,0,General,Bottoms,Jeans +1035,32,Comfort and style,I love these jeans! the perfect amount of stretch. very figure flattering. perfect for lounging around or a night out.,5,1,0,General Petite,Bottoms,Jeans +1082,38,Wish this worked for me...,"I absolutely fell in love with this dress when i saw it online, but unfortunately, it just didn't fit right. the bust and bodice not designed for curves, and the dress just didn't fit correctly, i think it would work better on very slim figures.",3,0,0,General Petite,Dresses,Dresses +242,37,Great suit for many body types,"I felt compelled to write a review to tell everyone to size up. i am 5'4"", 130 lbs, 34d and normally wear a size 4 (give or take). i debated between the 6 & 8 after reading the reviews and went with the 8 and so glad i did! if you're in doubt between sizes even after sizing up, go up one more, especially if you're bigger up top. mine fit *okay* in them but probably could have even done better with a larger cup. what's weird is that they sew in liner cups so you can't remove them without cutting",4,1,0,Initmates,Intimate,Swim +828,33,,"Love this top! so soft and sweet! only complaint is that it's a bit short and a tad boxy for my 5'9"" 140# frame (i also have boobs, so that doesn't help the fit of this piece). going to tuck in the front into high waisted jeans! keeping it!",4,1,0,General,Tops,Blouses +828,61,Great purchase,"I adore this top! the tencel fabric feels like a nicely worn out denim shirt that's been worn for years. it is a versatile piece that can be worn year round. even if the sleeves are pulled onto the shoulders, it still works and looks just fine. i'm broad in the shoulders, and we'll endowed, but the large was perfect.",5,1,3,General,Tops,Blouses +1095,39,Odd fit,"Agree with previous reviewer. i am usually an xs p in this brand (5'3"" 115 lbs) but i could not get the internal slip over my head. the chest area was fitted (i am a 32b) but then the skirt was very full and loose. i could have cut out the slip, but worried it would be see through and just not worth it at full price.",1,0,5,General Petite,Dresses,Dresses +1089,27,"Beautiful dress, runs large","I bought this dress to wear to my low-key backyard rehearsal dinner. the dress it's self is beautiful, good quality, and a perfect summer maxi. however, it was way too big. i'm 5'6, 118 lbs, i typically wear an xs/0 and felt like i was swimming in fabric. i loved the style and make of the dress, so i choose to get it tailored.",3,1,0,General,Dresses,Dresses +1035,37,They look great but are poorly made,"I purchased these in january and today i am going back to retailer to request a refund; the fabric on the inner thighs are absolutely thread bare. i am 5'6 and wear a size 28. they fit comfortably with great stretch, but apparently the fabric is so cheap that if your thighs should happen to touch, you will wear holes through the thighs in very short order. + +first they started piling, which i had never a pair of pilcro pants do before, and within 2 washes i could actually see through the f",1,0,1,General Petite,Bottoms,Jeans +1035,52,,,5,1,0,General Petite,Bottoms,Jeans +1033,39,Soft and fabulous,"I love these jeans, but they do stretch out! i was surprised at how loose they were right after washing/air drying the first time.",4,1,0,General,Bottoms,Jeans +1095,47,Too small and too large at the same time,"Quality piece except the fit is way off. i have a 32 c bust and long narrow torso, larger on the bottom. i ordered the small. i frequently wear a small/extra small on top and i was busting out of this in the chest area. however, the fit then flares way out from the torso and it just looked dumpy and overpowered my 6 foot frame. i marked it as running small, which it does on top, but then it runs very large on bottom. wanted it to work, but didn't.",2,0,12,General Petite,Dresses,Dresses +1035,39,Great jeans!,The jeans are even better in person. great fit and the color is nice. my new fave!,5,1,0,General Petite,Bottoms,Jeans +242,59,Love love love!!,"Hesitant at first to spend so much on a swimsuit. definitely worth the money, quality all around..style..fit. appreciated the review i read prior to purchase, to size up! so happy i was able to get it on sale as well! $120.00 roughly but can see why it cost so much!",5,1,0,Initmates,Intimate,Swim +828,27,Versatile off the shoulder,"Cloth & stone has to be one of the best brands at retailer! they consistently produce versatile, comfortable and quality pieces time and again. off the shoulder is back and here to stay, and without a doubt, this is one of the best i've tried on. the denim is a perfect, summery shade, but will transition well into fall with some darker denim or black jeans. i am 5'7, shoulders that are neither narrow nor broad, and a little busty - i got a size m and it fits great. i absolutely love my shir",5,1,20,General,Tops,Blouses +1035,37,Perfect fit!,"These jeans are perfect in every way. the rise is perfect, the stretch is perfect. we need more washes in this exact fit. i wish there was more consistency between pilcro denim washes of the same style!",5,1,0,General Petite,Bottoms,Jeans +828,51,A great off the shoulder top that ......wait...,"It stays on .... i mean off the shoulders. the price is shocking, love the low price, but by no means id cheap. really love this little beauty",5,1,6,General,Tops,Blouses +1095,66,,"I purchased this dress while vacationing in florida and cannot wait for the midwest weather to warm up so i can wear it. i am tall (5'8"") and love how this dress fits me. i found the slip to work well with the dress and that it was not too sheer. the length was perfect, not too short in the front and just enough drape in the back. i love that the slip is attached so it lines up perfectly.",5,1,0,General Petite,Dresses,Dresses +1089,35,Wanted to love,"I've been looking for the perfect white eyelet maxi, feels like a perfect summer staple...but sadly this was not it. quality isn't great which is surprise on a $168 price tag. top of dress is lined but cheaply so it's somewhat see through. the dress was returned.",2,0,5,General,Dresses,Dresses +1035,29,Best jeans,"I am short and curvy and pilcro has the best fitting, most comfortable and most cute jeans around. i buy exclusively pilcro now. these jeans were excellent.",5,1,3,General Petite,Bottoms,Jeans +1035,26,Not truly legging jeans,"I really wanted to love these, i bought them in a rush because i needed to replace my skinny jeans asap. they were a little long and didn't quite hug my calves but i figured with hemming they would be fine. i was told they wouldn't stretch out much. well, they fit great at the waist but the legs are now huge on me and i can't get them to shrink. wish i spent a little more on a different skinny jean. too late to return, so my hoping to be going out jeans are now lazy day jeans.",2,0,2,General Petite,Bottoms,Jeans +242,41,Great vintage inspired bathing suit,"I love seafolly boyleg bathing suits. i find them very flattering and just universally appealing. this one has beautiful summery design as well. i found it to be running slightly smaller than plain colored editions of this suit. i normally wear size 6 (us size) of this suit, but this particular design 6 was too small and had to exchange for 8(us) which fits perfect.",5,1,3,Initmates,Intimate,Swim +1035,42,The denim god's answered my prayers!,"I have been wearing joe's jean's for years and have a hefty stable of varieties in my wardrobe. recently, 3 pairs of their skinny leggings have worn out much quicker than expected which has caused me to question their construction and overall durability. i have had my eye on these pilco legging jeans for a while but every time i have gone to pull the trigger, my size has been sold out. finally, all the stars aligned just as i bid my final pair of joe's skinny's ""adieu"" and i was able to purchase",5,1,2,General Petite,Bottoms,Jeans +1035,40,Love these jeans!,I love these jeans. they can be dressed up or dresses down. super cute with tall boots or loafers. i wear them all the time.,5,1,0,General Petite,Bottoms,Jeans +1035,34,I think i'll just live in these permanently!,"Ok, so to be honest i just bought these two days ago so as far as wear and tear i'll have to get back to you on that but i seriously think i will just live in these. first they are so so comfortable, soft material, stretchy but not so thin that they accentuate every little curve but also very flattering. i'm 5'4"" 127 lbs, curvy in the bottom with a smallish waist and purchased size 28. there is a little bit of room, which i'm happy with, so they don't squeeze the love handle area or make it unco",5,1,1,General Petite,Bottoms,Jeans +1035,23,Perfect one size down,"These jeans are really soft, comfortable, and flattering, but only after you go a size down. all the other pilcro jeans i've bought have been a consistent 30, but when i got these they were baggy. i exchanged them for a 29, and they were just the ticket.",5,1,1,General Petite,Bottoms,Jeans +1035,38,,"I liked the jeans, but exchanges them for ag's stevie ankle jeans due to the difference in length. i love pilcro, but these were just a bit too long on me.",4,1,0,General Petite,Bottoms,Jeans +1035,36,My new favorite jeans!,"I cannot say enough excellent things about these jeans...they fit beautifully, have just enough stretch and sit high enough on my waist to cover any unsightly rolls. this was my first pilcro purchase, and i will definitely be adding other styles to my closet in the near future. typically, i'm a size 32 or 14 in denim, but i sized down to a 31 in these after the sales associate made that suggestion. i'm so glad i did...they are a perfect fit!",5,1,4,General Petite,Bottoms,Jeans +1035,53,Great fit,These are form fitting and have a great wash. the size runs large so i would say consider to go down one size than you usually wear. the bottom tapers so they are great to wear wtih flats or can easily fit into boots.,4,1,0,General Petite,Bottoms,Jeans +945,68,Disappointing,Ordered this vest on line and returned it due too poor quality .,1,0,1,General,Tops,Sweaters +909,33,"Great sweater, but color is inaccurate","This sweater is really cute, and comfortable - but the color is a tad off from the picture. it's a deeper blue than i was expecting, and the pocket is not a ""rust"" color as depicted online. it's definitely closer to red. other than that, i still do like it - the speckles are a nice touch, and it is true to size, and not too short.",4,1,1,General Petite,Tops,Fine gauge +1074,33,,This dress is so pretty. the tulle underskirt was a fun surprise and the subtle striping in the dress so classy. the dress is true to size. my main concern was making sure the top part would fit around my chest. it fits perfectly.,5,1,1,General,Dresses,Dresses +1078,33,Petite fits great!,I received this as a gift for my birthday in the navy blue and it fits great. i'm 5'2 and the petite medium was the perfect length.,5,1,1,General,Dresses,Dresses +1078,61,Flattering style,I purchased this dress in the store and then realized i could get a petite size. i ordered it in a pm but had to return it. i reordered it in ps and it's perfect. i love it for a casual evening out of wearing around town in the summer. it's supper figure flattering.,5,1,1,General,Dresses,Dresses +1078,33,,"Gorgeous! this dress fit so well and it super flattering. i got it in green and the colors are just lovely. i had to get it hemmed because i'm short and i couldn't find it in petite, but definitely worth the extra cost. i love, love love it.",5,1,1,General,Dresses,Dresses +872,53,"Runs large, esp. in black!","Just received two, the red and the black. the black is a great print, very versatile. both run large, but the black most significantly so. the red is close enough to fitting to keep. the black shows my bra b/c it is so large and the armholes cut far too deeply. (the red also shows a fair amount of the armpit area, but (barely) covers my bra. + +the material is somewhat thinner than expected, but not so sheer that a skin-toned bra wouldn't be sufficient.",3,1,2,General,Tops,Knits +1078,68,,"The print on this is gorgeous, and it's incredibly comfortable. ultimately, i didn't buy it because the length was weird for me (i'm 5'7""); it just looked strange, like it was cutting me off at a weird point.",5,1,1,General,Dresses,Dresses +872,53,A sweet top,"I just purchased this adorable top at my local retailer store, not really expecting to find anything, i saw this one so i tried it on in my usual size small and it fit me perfectly (34d-27-35). i bought the black with the colorful print and think it's even prettier in person. it looks cute with the ties either open or closed and the material is nice and soft. also, the arm holes aren't too large which is always a nice plus:)",5,1,11,General,Tops,Knits +1078,25,Dress perfection,"I don't think it's possible to say enough good things about this dress! the fit is beautiful (i'm 5'6"", 130lbs, and am a 32h,) the material is soft and swishes around your legs in a delightful way, and the length has all the positives of a maxi dress without dragging on the ground. it doesn't show bra straps. it looks good with either heels or a trusty pair of birkenstocks. the pattern is fun. essentially, it's the perfect summer dress.",5,1,0,General,Dresses,Dresses +857,33,Love it!!!,"I bought this item in store, in the loden green color. i absolutely love it as a light winter dress or tunic. the material is thin, but provides a nice coverage nonetheless. it is super duper comfy, and very figure flattering! i wear it mainly as a dress, and looks great with tights and ankle boots. so pleased ordering the other color.",4,1,2,General Petite,Tops,Knits +872,50,Nice addition to spring pieces,"I like this top. it provides a nice pop to the fall/winter dark wardrobe pieces. the picture gives off a blue hue, but the top is black, kind of a dusty black. the picture also gives the impression that the leaves are turquoise, but they're actually more green. at any rate, it is nice addition to my very dark winter wardrobe. i cannot wait to wear it with white denim like the model and something in the green family. i definitely recommend it.",5,1,11,General,Tops,Knits +857,67,,"I ordered this pullover in green, size large. the color is lovely and the fabric feels great. however, it was tight (even though i often wear a medium). unfortunately it will be going back.",4,1,0,General Petite,Tops,Knits +1078,33,Love!! more colors please!!,"I love this dress! it is beyond flattering! i tried the south shore dress on earlier this year but found it too short for my taste. this however.. is the same cut on top, but longer in the skirt! yes, please! i purchased the turquoise, which is exactly as pictured! just beautiful! hits at my shins. for reference, i'm 5'6"", 136 lbs and ordered a size small.",5,1,8,General,Dresses,Dresses +871,27,Cute but...,"Cute top in theory...ended up looking a little sloppy. the sleeves are a bit too ""blousey"" for my taste and i really wanted the lace-up to be cuter, somehow. still a cute top, received several compliments, but not for me.",4,0,0,General Petite,Tops,Knits +1022,56,Great fit and so comfortable lightweight jean!,"These jeans are great for the summer, they have a great high waist fit and stretch with you. very very comfortable. rinse is light making them a little casual but they can be dressed up with heels. love them!",5,1,3,General,Bottoms,Jeans +857,29,Tighter than expected,"I ordered this in green when it was on sale and was so excited to get it. i thought the color would compliment my complexion perfectly. i read the other reviews who mentioned this item fit closer to the body than what is shown on the model - i wish i would have listened. while it is a very comfortable piece and stretches, it is a lot tighter than i wanted and because of that it is a bit see through. i didn't want to have to wear a cami underneath and i am pretty curvy. this top does show many of",4,0,0,General Petite,Tops,Knits +823,51,,I normally don't care for rayon clothing but the fabric feels nice and it is flattering in the way it fits. i got my usual medium and it fits well. it has a nice drape and is not see through.,5,1,4,General,Tops,Blouses +1078,26,Beautiful fit!,"As a teacher, it's so great to be able to find dresses that are modest and beautiful, that i can wear to work, as well as on the weekends.",5,1,23,General,Dresses,Dresses +872,46,Comfy top,"I bought the black and love it. i bought both the medium and large but am going to keep the medium. it was plenty roomy. i'm 5'2"" and about fluctuate between 125-130 lbs. i usually wear a medium or large in retailer-wear but i like things roomy. have to hide a little extra these days!",5,1,0,General,Tops,Knits +836,46,Easy breezy summer top,"I absolutely love this blouse! it's easily one of my favorite retailer finds in several seasons. it is quite roomy, so anyone hoping for a more form fitting cut won't find it here. this is the type of fit i prefer for summer though, as missouri is just disgustingly humid and i can't stand to wear anything clingy once it heats up. it's sheer, so a cami is required. it's also wrinkle prone, but the fabric is almost like a gauze and is not meant to be perfectly pressed and crisp. it's perfect to thro",5,1,4,General,Tops,Blouses +1049,38,,"I would not recommend these pants if you have a curvy or athletic figure. these pants seem to be cut straight up and down. the fabric is not soft, the color is slightly more muted in person, and they are not as relaxed as they appear to be on the model.",2,0,3,General,Bottoms,Pants +872,44,Pretty but a bit shapeless,"I got this top in the black floral print. the print is very pretty and so is the neckline, but the body is very loose and shapeless. it's not flattering. i think the shirt is a little too short as well. it would be nicer if it was longer. nevertheless, it is a pretty top.",4,1,1,General,Tops,Knits +372,52,,Very flattering cut. only con is that is seems to snag easily. extremely comfortable and don;t need to wear a cami under it like i originally thought i would.,5,1,0,Initmates,Intimate,Lounge +1049,55,,Pants fit great. true to size. did not stretch like some of the retailer pants that you need to buy in a smaller size. love that the calf is bigger than most of their pants which are usually too narrow for my bigger calves. very comfy look great with a white shirt and tie die is subtle. they will be a staple summer pair of pants.,4,1,0,General,Bottoms,Pants +1078,40,Flattering fit!,"Wow this dress is very flattering! i have a fairly small waist and not-so-small hips and this dress is slimming. it is also soft, light, airy, gorgeous! exactly what you need on a beautiful spring day! i wore this dress yesterday and have not felt that beautiful in a very long time! thank you so much retailer for the brilliant design:)",5,1,3,General,Dresses,Dresses +1078,56,Perfect fit!,"Purchased this maxi dress in blue print, size petite xxsmall. even in that size i have some difficulty finding dresses that fit. but this one does perfectly. no complaints at all. length is a bit longer than pictured on model, but that's fine for a maxi summer easy style dress. i am quite short besides being petite so this fits the bill. am sure it will be worn quite often for many different occasions.",5,1,1,General,Dresses,Dresses +1078,31,Meh,"It just isn't that flattering on me. it looks kind of old and dingy, even though it's brand new. it fits fine, but doesn't do much to highlight my curves. it just kind of hangs there. the length is somewhat awkward (i bought the petite version). maybe it would look good on someone tall and skinny, like the model. it's gathered around the stomach area and longer in the front, which reminded me of maternity wear. it does appear to be pretty well made; top part is lined. overall it's not terrible,",2,0,1,General,Dresses,Dresses +872,52,,,4,1,0,General,Tops,Knits +1074,35,Darling dress!,"This is such a darling velvet dress. understated, yet eye catching, i am very fond of it. the cut is flattering to all and the gathered fabric does not add bulk to the waist. there is a fun tulle underskirt to give just the right amount of volume. the straps creep ever so slightly toward being off shoulder, but fear not because there are loops and fasteners to hold your bra in place. + +i am very thrilled to have found my holiday party dress so early and can't wait to wear it!",5,1,2,General,Dresses,Dresses +1078,48,"Elegant, graceful, lovely","This dress has a really elegant neckline combined with the wide fitted waist and under-the-bust gathers which really flatter the body. i have a fairly straight body and this dress gives me shape. i usually wear xspetite but the turquoise didn't come in petite and that was my preferred color. so i tried the xxs which i could barely get on and off but once on, it fit fine (34aa, 26"" waist, 34"" hips). i'd probably be better off with the xs. the length of the regular on me was fine, like a normal ma",5,1,26,General,Dresses,Dresses +1078,26,Perfect dress!,"This dress is the perfect length and so comfortable! it's conservative enough to wear to work as a teacher but also so cute! i'm 5'6"" and the large hits right above my ankle. medium fit as well but i wanted a little extra room in the torso.",5,1,2,General,Dresses,Dresses +872,35,Love this top,"I desperately needed some new work clothes, so i ordered this and a few other shirts online. this was the only one that fit me really well and that i really liked! it's a bit pricey for a tanktop, but it feels really well made. the material is soft and comfortable and the ruffle details and the print are beautiful. the small fits me perfectly (5'7"", 150 lbs, 36a) and it's not short like a lot of other shirts i try on, (which my coworkers probably appreciate since no one wants to see me flashing",5,1,0,General,Tops,Knits +857,34,Unimpressed,This top was much more fitted than expected and was not flattering. i would not recommend.,2,0,2,General Petite,Tops,Knits +872,54,Wrong for me,"This is really a cute top, nice fabric, the print (the version i bought) is lovely though the colors are different than pictured. the problem for me is that i am 5'8"", 36b with a longer torso and the proportions were just wrong on my body. the blouse does not have much shape at all and fell a bit too short for my liking, especially in the front. it hit at hip level, as in photo, but would look so much better if it had been a couple inches longer. looking at the other reviews i see that most of t",3,0,2,General,Tops,Knits +872,30,Lovely tank,"This was a bit of an impulse purchase but i'm glad i added it! it's a pretty standard tank, but is thoughtfully and well made. for example, the arm holes are not enormous like they are on some tops. i wish everything fit like this. the cut at the neckline isn't too modest or too low and the fold over of the drawstrings are structured enough that they don't flop over.",5,1,0,General,Tops,Knits +872,47,Perfect summer tank!,"I just received this in the mail and i was so surprised how flattering it is! i ordered the print and i can see wearing this to work, out with friends or for date night! perfect summer tank! comfortable and flattering! a great addition to my wardrobe! it fit true to size for me!",5,1,1,General,Tops,Knits +823,66,Print looks just like the photo,This is a really pretty print on a decent top. the only reason i returned is because it didn't look good with my skin tone and the fabric is thin. i'd planned to use it as a later under cardigans.,4,1,0,General,Tops,Blouses +1078,23,Love this dress,"This dress is gorgeous. flattering, comfortable, and machine washable! + +for reference i am 5'5 145lbs, 38-30-40 and 34dd. i got the medium and it fits great! only flaw is that the armholes are a little large, but not enough that my bra shows so i am okay with it.",5,1,4,General,Dresses,Dresses +1078,39,,This dress is very comfortable. the fabric is really nice and the dress flows when you move. classic and pretty. i ordered a xs and i'm 5'3 135lbs 34b and the fit was great.,5,1,1,General,Dresses,Dresses +871,50,Stylish top,"I really liked the lace up details and embroidery. the sleeves were too long for me and i was not a fan of the elastic on the sleeve...made it tough to push sleeves up. i took to my seamstress and her cut elastic out and hem the sleeve. +now its perfect!",4,1,4,General Petite,Tops,Knits +857,54,Not as expected,"The material was thin, showed every lump you'd rather hide and clung to the body. even the sleeves were tight. looked inexpensive.",2,0,13,General Petite,Tops,Knits +1078,41,Easy elegance,"I wanted this dress in the turquoise motif, but it sold out so quickly! i tried on about 10 dresses in my local store and this was the clear winner. i got the blue and white motif, which has enough visual interest with the way the pattern flows across the dress. i found the dress to be slimming and very comfortable. you can throw it on and not think about flashing anything when you bend over, or the skirt flying up in the breeze, or needing a strapless bra. the skirt flows really nicely and over",5,1,5,General,Dresses,Dresses +872,44,Cute & comfy,"Really cute top, comfy, with just enough flare that it can be dressed up a bit, or worn just casual. not clingy at all...in fact, maybe just a tad too flowy around the middle, but not so much that it kept me from going back to buy it immediately in a second color! i typically wear a large, but suspect the arms on the medium might be a tad small if i sized down.",4,1,0,General,Tops,Knits +872,36,Casual comfort chic,I saw this top and loved the pattern. meadow rue is one of my favorite brands for tops at retailer. the pattern is lovely and the fit it tts. this top is comfortable for running errands and can be dressed up too. very versatile for spring.,5,1,3,General,Tops,Knits +836,52,,,3,1,0,General,Tops,Blouses +1078,36,Must have summer dress for any occasion!,"This dress looks way better on you than sitting on the hanger! the design really flatters your body and the waist area, makes you look very skinny! highly recommend! the length is also perfect, just the right length for a maxi dress, long enough but short enough to show off your shoes as well!",5,1,3,General,Dresses,Dresses +872,65,Loved it and wanted it but...,No size fit me. i'm normally a s to m. the small had huge armholes on me and the xs was just a wee bit off somehow. perhaps in length. so i ended up without it sadly. it's really a very nice top and great quality. i was unhappy to leave it behind.,5,1,0,General,Tops,Knits +836,48,Lovely interesting white top,"I bought this in my usual size small, and love it. looks great with skinnies or pencil skirts. not sheer enough to need a cami, but enough to look cottony and breezy. very elegant. it falls flatteringly on my shape - 34c, 28-38, 5'3"". it has an elegant, arty vibe. if you have a long torso or big chest, i would say try it on in the store to make sure the chest area falls well for you.",5,1,6,General,Tops,Blouses +1078,24,My new favorite dress,"Got this dress in the blue and cream and it's gorgeous. i love that it's work and date night appropriate, but so comfy. i am 5'4"" but have very short legs, so it's hard to find a maxi dress or skirt that doesn't drag on the ground. this floats beautifully above my ankles - a little lower than on the model, but still high enough that i am totally comfortable wearing the dress without heels. i got the small and it fits great. the print is lovely - the cream fabric is speckled in gray dots in some",5,1,1,General Petite,Dresses,Dresses +1078,32,Bring back the turquoise please!!,"I have this in darker blue and it is my favorite dress of the season. i didn't realize that there was one in turquoise until it was already sold out. please bring back or be so kind to contact me if an xs comes in as a return, etc. +i love this so much!",5,1,0,General Petite,Dresses,Dresses +872,37,,,5,1,0,General,Tops,Knits +1078,39,So in love,"The turquoise print is absolutely stunning. i love the feel of the fabric, the drape",5,1,0,General Petite,Dresses,Dresses +909,58,"Love the feel, love the fit!","I hesitated to spend the money on this sweater but somehow knew it would be my go-to sweater for the season. when i tried it on, i knew i made the right decision - it feels luxurious and fits like a dream. the pop of color on the pocket is perfect to make a statement and to add something different from all those other sweaters! the fit is tts.",5,1,0,General Petite,Tops,Fine gauge +1078,47,Fit is spectacular!,This dress is more adorable on then sitting on the hanger. the material clings to all the right places and feels really good. i must say this is one of the most comfortable dresses i have ever put on. would never tell from the photo that this dress is so adorable. if you like a fitted dress in the waist and bust that subtly accentuates your curves - try it. adorable!,5,1,1,General Petite,Dresses,Dresses +1079,43,Amazing,Sticker price was a shock but it is so worth it. it is the best little black dress i have ever owned. the lace is so soft and the dress is flattering. it is fun and flirty. this is a closet staple piece for sure!!! love this dress so much!,5,1,1,General Petite,Dresses,Dresses +322,33,Not true to size,"These run really small..almost 2 sizes up. so if you order these, i would order a few sizes to cover your basis. otherwise, good quality, good coverage. hopefully sizing up will fit me.",4,1,3,Initmates,Intimate,Swim +818,47,Beautiful color and texture; fun shape,"This top is flowy and feminine. the pink is slightly more vivid than pictured online but is still a beautiful, soft pink (definitely not red). i was afraid the shape would be unflattering on my not-so-skinny figure but it's not. it's baggy all over, and there's plenty of room in the arms. note that dark pants/skirts will show through the fabric, so i like the shirt better with an untucked cami/tank top underneath it (so the gorgeous neckline isn't disturbed but the pink color runs true throughou",4,1,0,General,Tops,Blouses +862,43,,I really love this shirt and bought it in several colors. i wish it came in white and in black because it's a great basic. i think it also works well for business casual attire.,5,1,0,General,Tops,Knits +1059,57,My new favorite work pants,Great trouser pants for summer with pretty jacquard print and neat denim detail at hem and waist band. usually wear a 6 in retailer but went up a size to 8 with these for looser trouser fit. fits my backend nicely which is always a plus. can't wait to wear them!,5,1,1,General,Bottoms,Pants +1059,65,Great design,"I spotted these on the sale rack and loved the design, the almost regal fabric toned down to casual by the cropped denim cuffs. they weren't my size, but, to my surprise they could be ordered in my size, still at the sale price. +the fit was perfect. they will surely make a statement wherever i choose to wear them.",5,1,1,General,Bottoms,Pants +975,40,My carrie bradshaw jacket,"I'm always on the lookout for pieces that look polished, but aren't fussy. this is *that* blazer. i'm rather petite and bought the xs, though wish they had the petite in store to try on as xs is not very fitted on my frame. the perfect weight for 65 degree summer days.",5,1,1,General Petite,Jackets,Jackets +1059,69,Love these pants!,"So so cute. i am 5' 7"" 150-155lbs and the 10 fit me perfectly. i expected the m or 10 to be too small. wore them the first day i received them. i have a large waist 34"". hips about 39"" and the 10 fits great, not tight. love the material and the workmanship is tops. i think they are a great buy especially on sale. wore them with a hei hei jacket also on sale, can't get much better.",5,1,0,General,Bottoms,Pants +322,43,Definitely runs small,I bought the blue and it is beautiful. it definitely runs small and i agree with the other reviewer who stated to order 2 sizes up.,5,1,1,Initmates,Intimate,Swim +1059,56,,"These are simply the best of everything i love about charlie trousers. great fit, classic styling with the pop of the unexpected. the fabric is thinner than it appears--perfect for spring and summer. the pattern of the damask is not overwhelming, but it works very well as a neutral if you want to mix patterns (which i do a lot), or if you want to pair it with an ivory blouse and a simple blue sweater or jacket.. roll down the pants for a more professional look during the day, roll them up for ca",5,1,4,General,Bottoms,Pants +1059,42,Absolutely fabulous,"Wearing these for the first time today. the way the pants are made is the way a pair of quality pants should be. the fabric is gorgeous; the fit is excellent. the tone on tone flower is subtle but visible and creates a lovely pattern. the denim treatment at the ankle and waistband is a nice added touch. true to size, too. these are not your run of the mill above the ankle pants - they're something special and worth the money...the fact that i did get them on sale makes it an even better purchase",5,1,0,General,Bottoms,Pants +718,26,"Nice material , but runs large","This top looks real cute on the model! wish it looked like that on me! way too big, so not flattering on my petite frame. sadly going back!",3,1,0,Initmates,Intimate,Lounge +862,56,So soft,Love this t. i now have all the colors. it is so soft and comfortable. great with jeans or dressed up with leggings and boots. and when i feeling lazy i just keep it on and use it as a night shirt to sleep in. it's that comfortable! i found the size to be spot on.,5,1,0,General Petite,Tops,Knits +862,29,So soft and flattering,"The deep v doesn't gape, and flatters the neckline, while the waist-high side slits reveal enough to keep this drapey shirt from looking shapeless. the material is so lovely and soft and comfy, but clings in the right places to really flatter, while problem areas get draped in the most perfect way.",5,1,0,General Petite,Tops,Knits +1025,61,Comfortable and cute,"Love these jeans as they look great with dress shoes, running shoes or boots. fit well and true to size.",5,1,0,General,Bottoms,Jeans +975,33,Full sigourney weaver,"This jacket doesn't look all that special in the photos provided. i found it at my local store and i knew it was mine the moment i tried it on. it has that boxy shoulder look i associate with 80s power suits. i call this look: ""full sigourney weaver"" and it is marvelous! perfect for a lunch date with harrison ford circa 1988. so happy with this purchase. highly recommend!",5,1,1,General Petite,Jackets,Jackets +1059,37,Excellent pair of trousers,"I received the pants and they are really nice. you can dress them up or down. i ordered a size 0 in regular and they did not fit me well around my thighs, as they were loose. i will have to return them as they do not have my size in petites. i am a size 0 in petites and ordered the size 0 in regular. the only downside to the pants was it was hard to undo the buttons and found it rather difficult.",5,1,0,General,Bottoms,Pants +862,22,,I just picked this up in store the other day! i absolutely love it! it is so easy to throw on real quick for a cute outfit.,5,1,0,General Petite,Tops,Knits +1025,40,Perfect for petites,"My first review and first full price designer denim purchase.... + +i recently lost weight and in need to replace all my pants and in search of a dark wash high rise jeans (preferably in black), finally decided to buy this at full price online coz of all the fab reviews. i decided to purchase the 25p, thinking that i may return after receiving it in the mail since i wasn't able to try at the store and not sure if i got the right size, also it's not the high rise denim that i was looking for. but t",5,1,6,General,Bottoms,Jeans +936,67,Nice sweater.,This was a very nice sweater but i had to return because it came too late for a birthday gift i was giving. it also was not the sweater i had originally thought i had ordered. my mistake. it was very soft and would be suitable for any type of figure.,4,1,0,General,Tops,Sweaters +1025,62,Perfect size!,"I was looking for a pair of ankle jeans to wear with booties. i love my regular length paige hoxton jeans but they are too long me (5'4"" 120) if i want to wear booties. i decided to try the petite size and.... perfecto!!! just the right length and the rest of the fit was just like my other paige jeans. i love when you can count on sizing to stay true across styles.",5,1,0,General,Bottoms,Jeans +1059,25,,,4,1,0,General,Bottoms,Pants +975,57,Clown jacket.,"1. this looks so cute on the model, doesn't it? i have no idea where you wear a suit with hot pants, but it looks cute. + +2. that said, keep in mind the model is probably 6 feet 10 inches tall. i'm 5 feet 6 inches tall, and this jacket came down to my knees. i'm not kidding. the 3/4 length sleeves were at my wrist, so more like 7/8 sleeves. + +3. i'm normally a size 12 in cartonnier jackets, but this only comes s, m or l. the medium is really a size 10, which was too tight across the shoulders and",1,0,17,General Petite,Jackets,Jackets +862,67,Pretty top,Ordered the nude color for my daughter. love the color and the style. it's a.comfortable looking top. i pressed it before giving it to her. seemed to wrinkle easily. that's why i gave it three stars. probably wrinkle less if it had some polyester in it.,4,1,0,General Petite,Tops,Knits +818,36,Order down,"Cute shirt, it looked big so i ordered a size smaller. worked fine. would have liked the option to go even smaller so i would suggest ordering down. ultimately too baggy on my frame so sending back. fun shirt though!",5,1,1,General,Tops,Blouses +818,60,"Exactly as pictured, adorable spring top","Love this top. it is exactly as pictured online. it's a beautiful coral pink color - perfect for summer (i think the description says ""red"" but it is definitely pink). i love the swiss dot material, the bell sleeves, the ruffled bottom. they all work perfectly together to make for an adorable top. it almost seems as if it can be worn off the shoulder, due to the elastic neckline, but i prefer it on, as pictured on the model. + +the fit is tts. i ordered an xs and that is what i usually wear fro",5,1,3,General,Tops,Blouses +975,23,Size it smartly,"I loved this jacket when i tried it on in the store, and brought home a size med. it's a nice weight of material, lined, and very classy. i liked the idea of adding it to my collection of suit-jackets for business meetings. but when i tried it on again using actual outfits from my closet, i realized how much it looked like a lab-coat. i am not giving up-- if it goes on sale, i'll order a small, to see if it is more flattering. but at this point, it's a no-go.",5,1,6,General Petite,Jackets,Jackets +862,26,Comfortable,Hands-down one of the more comfortable shirts i've purchased from retailer.,5,1,0,General Petite,Tops,Knits +862,30,Length is far too short,"I ordered an xxs and it is extremely short in length. another customer had a similar review, but i still took a chance that it would fit well. the sides of the shirt have slits, and because the shirt is too short, it shows the skin on my hips. the rest of the shirt fit fairly well, but i'll still need to return this top.",2,0,0,General Petite,Tops,Knits +1074,44,"Pretty, comfortable, functional","Feels great, flows nicely, and love the pockets that hide pretty much everything from a lipstick container to a phone.",5,1,1,General,Dresses,Dresses +862,51,"Cute colors, cute tee","I was really looking forward to these tees working, after reading the reviews. unfortunately, they had slits on the sides that came up higher than i was comfortable showing my sides just above my jeans. trying to keep it age appropriate.",2,0,0,General Petite,Tops,Knits +1059,64,Love these!,"When i spotted these online i knew i had to try them out! in the past charlie pants have always been too baggy in the legs for me when trying the regular sizes on in the store. well, these are described as 'slim, tailored' in details, so decided to order my usual size 6 regular. upon arrival, they were baggy in the thigh area, the rise was fine but the crotch area -pardon me- was a little on the short side. buttons were difficult to slip into the buttonhole & unbuttoning was a job! guess the hol",5,1,17,General,Bottoms,Pants +1059,34,Pretty and unique,"Always get compliments when i wear these pants (my mom has the exact same pants and loves them too). they are great for work and transitioning to go out after. i like my pants tight, but these run a little small.",5,1,0,General,Bottoms,Pants +1095,24,"Casual, cute, easy","Excellent dress. usually i wear a oop, and this did fit great. a little snug in the chest (im a 32c), but the buttons are covered by material so it doesnt show. the waist hits perfectly. there is the right amount of skirt material to make a dramatic silhouette without looking silly. awesome dress! wish the blue or white with icecream were still available! the hot pink is a wonderful summer color though.",5,1,0,General,Dresses,Dresses +830,49,Pretty and casual top,"I got this i n regular xs (i am xsp or xxsp), so it fit fine considering is boxy. it is very cute and delicate so despite being casual, it gives a nice ""dress-up"" kick to any jeans, shorts, capris. im very happy with this top and like it very much and definitely recommend it to everybody. just be careful since is delicate +:-)",5,1,0,General,Tops,Blouses +1095,55,,"This dress is very versatile. it is comfortable and very flattering. the armholes were not too big. you do need to wear a bra that crosses in the back if you do not want the straps to show. i purchased the red/pink color and it is very vibrant and not see through at all. the length is great as it is above the knee by a few inches, it accentuates the best part of the leg. it also can be dressed up with heels and jewelry or more casual with flatter shoes. it is a classic style, not trendy so it wi",5,1,4,General,Dresses,Dresses +1095,42,,"I love my blue dress, i'm a pear shape to the top fit fine on me. i know reviewers complained that the top was too tight, not so on me. it was also not sheer on me because it has a cotton lining underneath. got a lot of compliments!",4,1,1,General,Dresses,Dresses +1095,30,,"I ordered this dress in raspberry, the color is beautiful in person. i am usually a petite size 2, and it fits perfectly. the only thing about this dress that might drive me crazy is that it seems to wrinkle easily. other than that, i think it's a great dress for summer!",4,1,1,General,Dresses,Dresses +1065,32,"Cute, bad fit!",I so wanted to love this jumpsuit but unfortunately the fit is so off. it runs small and the crotch is to high. the color is beautiful and the design is great. it's really sad i waited two months for this and it was definitely not worth the wait.,3,0,1,General,Bottoms,Pants +1095,44,Nice fit but there are issues,"I am 5'2"" and i typically wear a 2 or a 2p. lately i've been finding that petite is just a little too short to wear with wedges so i often order a 2 as i did in this dress. it fits well and it's flattering. my two complaints are that it gets wrinkly fast and looks sloppy. yes, linen is a wrinkly look and that's normal for linen but somehow this dress just looks sloppy to me. more importantly, while wearing for the first time, i realized that the seams on the side were very lightly sewn and there",3,0,1,General,Dresses,Dresses +1095,33,Sizing is off,"I have to agree that the fit is unfortunate. i am using a size 2 in retailer and most dresses. i knew to size up based on reviews here. i tried the size 4 and i could barely button the top. the waist fit fine and the underarms was fitted nicely to the body. i sized up to a size 6 and the dress was oversized in the top, with gaping armholes. too bad because the color is beautiful and the style is adorable.",2,0,0,General,Dresses,Dresses +1095,70,Pretty but sizing and cut is way off,"Runs small. i'm usually a size sm for retailer clothing (for reference, i'm 5'4, 129lbs, 36b). the tie around the waist of this dress is not a functional tie that you can relax a bit to give yourself more room around the waist. i could not fasten the buttons to close the dress on the size 8. the size 10 fit enough to fasten the buttons but there was a lot of extra fabric and the arm holes were very large. pretty, vibrant colors but size up and be warned of the large armholes.",2,0,42,General,Dresses,Dresses +862,21,"Flattering, but odd feeling","This shirt is thin and probably not worth full price, but it was flattering to my figure. covered my post baby tummy and complimented/minimized my g size chest, but the cut was off. the seams for the arms were almost in the front at the chest, so when i moved my arms i had limited movement forward and it pushed the embroidered panel out and was just irritating. an entire day of readjusting my shirt would drive me crazy. i tried the m and the l.",3,1,1,General Petite,Tops,Knits +1065,29,"Great design, unfortunate zipper","I loved the jumpsuit the moment i saw it in the catalogue and luckily there was one returned to the store near me! i am 5'10"" and 140 pounds. the small fit perfectly, but the zipper on the top section was so difficult to use that i would need help every morning to get dressed. the zipper was missing a couple prongs and i had to make the return.",4,1,4,General,Bottoms,Pants +862,37,Perfection,This top looks great and feels great. got lots of compliments when i wore it for thanksgiving. i pretty plan to wear this for every holiday event this year and will layer it with sweaters and scarves to mix it up.,5,1,0,General Petite,Tops,Knits +830,40,Better in person; size up,"This is a really adorable top!normally i shop online, but ended up in a store today. i bought it instantly, but never would have purchased this based upon the pictures. as all the other reviewers have said, this does run small and you need to size up, especially if you are busty for your size. i am a 4 or a small (34c) in just about everything, but had to go to a medium. the sleeves attach too far out on the front of the top, restricting arm movement. thankfully, i didn't see a significant size",4,1,1,General,Tops,Blouses +1095,30,Size up,"This dress is everything i imagined it would be. lightweight, flattering on my hourglass shape, and comfortable. i am a true 4p in retailer dresses (5'4"" 32d, 27 inch waist, 28 denim size) and purchased this dress in a 6 regular. i imagine the petite size would be way too short, as the regular size hit about 3 inches above my knee. might be a problem for taller girls. definitely size up on this one to avoid button gaping.",5,1,0,General,Dresses,Dresses +830,29,Too boxy,"This top has a really pretty pattern and is good quality, but was just too boxy for me. i also felt like the sleeves were a little odd/big. + +the fit is tts, though slightly shorter then it looks on the model.",3,1,2,General,Tops,Blouses +858,83,Classic,"Love this top. +the fit is perfection! +the fabric is wonderfully soft. +i ordered the green, love this color. +will be ordering it in the grey also.. +fits very true to size.",5,1,3,General Petite,Tops,Knits +946,30,Darling but disappointing,"I bought this sweater the minute i saw it, and waited for over six weeks for it to come off of back order (it was further delayed from even what i was told when i first ordered it). +i was beyond excited when it finally arrived and wore the sweater the day after i received it... i had a long flight and thought it was the perfect option for keeping comfy on a plane. +i was so disappointed that by the time i got off my flight four hours later, the sweater had not one, not two, but three differen",3,0,5,General,Tops,Sweaters +830,35,Tight in the chest,"I'm 5'2 and based on some other reviews i opted for the regular rather than petite and am glad i did. even the regular is kind of short. if i raise my arm(s) all the way up, skin is typically exposed. i originally ordered a medium and i liked the fit everywhere except for the chest. i'm a 34dd and i felt like i couldn't move my arms. i exchanged it for a large to sacrifice some of the fit for some more arm movement. the cut is already a bit boxy so having it a bit boxier with more arm movement w",4,1,2,General,Tops,Blouses +1082,58,,Gorgeous colors and great shape for a mini dress. stunning on. the only con is how low the back goes. a bra alone underneath is not possible. will need to wear with a finer shirt underneath.,4,1,1,General Petite,Dresses,Dresses +830,49,"So cute, but tricky fit","This top is adorable and looked pretty on, but when i raised my arms the top wanted to rise up and then stay there above the breast level. it didn't settle back into place when i lowered my arms. maybe a larger size would have helped, but then it would have been a boxy fit. i also found it hard to take off, even with the button on the back of the neckline. the length is cropped, so you would want to wear it with a high-waisted skirt or pants. i like the details in the fabric a lot, but i didn't",4,1,2,General,Tops,Blouses +1095,30,Almost perfect,I wanted to love this dress because the fit is so flattering and the color is so great however i could not get the button along my bust to lay flat. normally this can happen if the fit is too tight around the bust but i promise there was still plenty of room. the fabric just bent in a way that left a gaping hole at my bust. unfortunately it's going to have to go back.,3,0,20,General,Dresses,Dresses +858,28,Runs small,"This top is beautiful in the model shot, but average in person. it ran really small, i usually take a medium in retailer tops and ordered this in a medium. it barely fit over my chest, and was pretty short (i am 5'7""). also, the material is very thin, not so much that you can see your undergarment, but if you get cold everyone will know it. also, for the price, i expected a sturdier fabric. i would recommend holding out for sale, if you are interested in this top.",3,0,11,General Petite,Tops,Knits +1095,63,Darling well made dress,"After reading the reviews, i was a little afraid of the fit before the dress arrived, having ordered it online. it is a darling dress. i am big busted (36d) and it fit just fine. also, it has an cute attached slip, so i didn't find it see through. the color is gorgeous, i chose the blue, and it will be perfect for summer. no problem at all with the armholes!",5,1,6,General,Dresses,Dresses +859,39,Very pretty and comfortable,"A very beautiful, flattering, and breathable/comfortable mock neck turtleneck that's great for layering. for those unfamiliar with weston, this top - like many of their others - is essentially made of panty hose nylon. it makes for a super comfy and stretchy top, albeit a delicate one. be mindful with your hair accessories and jewelery when wearing this! +------ +i wish the arms were lined - i have a large tattoo on my arm and you can see it through this, and it just looks a little odd when mixe",4,1,1,General Petite,Tops,Knits +461,23,Perfect cover-up,This cover-up is perfect for the beach or the pool. it is see through.,5,1,0,Initmates,Intimate,Swim +1095,34,Unusually poor design by hd in paris,"Normally, hd in paris brand is spot on for their dresses. this dress is a big thumbs down. as most of these reviewer's and myself point out, the large arm holes do not allow you to wear a regular bra because you don't just get a peak of your bra, you get to see the whole side of it. secondly, the bust of the dress would work only for an a-cup bra, too small for the average woman. the only bright spot with this dress is the brilliant colors available and the quality of the fabric itself - excelle",1,0,2,General,Dresses,Dresses +1095,22,So charming!,"This dress fulfills a gap in my wardrobe that i've long wanted to fill: that of the perfect springtime dress. i got the sky blue color in a size 4 (for reference, i am 120 lbs and 34-26-37) and it fits like a glove. the color is vivid and the overall effect of the dress is simple and romantic. i'll be wearing it with casual cognac sandals, a floppy straw hat, and minimal makeup.",5,1,2,General,Dresses,Dresses +1095,31,Perfect summer dress,"I wore this dress to an outdoor farm wedding and it was perfect. it runs small (i'm 5'5"" 125lbs with 34c bust) and i got a size 6. i tried on blue and pink, both were great but the blue won me over. it wrinkles easily so i had to use an iron on low to medium beforehand. will wear many more times!",5,1,0,General,Dresses,Dresses +1095,29,"Armholes too big, gap","This dress is lovely fabric, generaly nicely tailored, but weirdly large around armholes, which gap. i'm sending it back. also this 'red' is more like a fuschia. + dress was generally a a bit too big on top, oddly both too long in the torso, and the shoulders cut too far in--they didn't cover bra straps--as well as unattractively large armholes. you can even see it on the model. i i'm a size 10 to 12, fairly busty but not extremely, and with a slightly short torso, which is party the problem (th",3,0,0,General,Dresses,Dresses +830,51,Short wasted and fun,"Fyi the neck does have a hook and eye closure so there is room to get it on and off. the fabric is not stretchy. the lining is a nice navy. however, the sleeves are not lined. the cut outs have a beautiful blue lace behind it. it hit me at my waist. i'm 5' 3"" , 118#. i loved this top. worked with a pair of the new essential skinny trouser by retailer, and the nansen pointelle cardigan in yellow. this also paired well with a pair of rust colored skinny pilcro with a long necklace.",4,1,4,General,Tops,Blouses +1065,41,Xs fits like 00p,"First off, i adore this jumpsuit. i love the mixed stripes and i love that the fabric is structured, textured and substantial. and for me, the xs fits perfectly, however the sizing is way off from standard sizing. i'm 5'2"", 110, 24.5 waist, 32.5 hips, and usually 00p-0p, and this is fitted on me. the wide legs aren't too wide like most wide legs (which wear me instead of vice versa) and the structure of the fabric make this piece so flattering for petite ladies. if you are petite, this jumps",4,1,3,General,Bottoms,Pants +867,48,Super cute!,I had bought the pull over in the same fabric and now this zipper jacket style. so fun and love the texture. i waited for markdown plus promo and it was worth waiting.,5,1,0,General Petite,Tops,Knits +1095,56,Perfect little classic summer dress,"Tried this on just for fun today and ended up taking it home in the glorious blue. many have commented on the sizing issue. for reference i am 5'5, 120 lbs, 32a, slender athletic build. i bought a size 2 and it fits like a dream. no large arm holes, no gaping buttons and the length is perfect. yes it will wrinkle, it's linen. that's part of the look. i feel this will fill a void in my closet that was missing. i was wearing flat ankle wrap espadrilles when i tried it on and it looked super cute.",5,1,0,General,Dresses,Dresses +1081,30,Lauzet t-shirt dress,Very comfy dress that you can wear in the summer if it's not too hot and in the fall/winter with boots (tall or ankle).,4,1,0,General,Dresses,Dresses +830,38,Adorable but runs small,"I agree with others that this top runs small. i am usually a 2/4 in retailer tops and the small was very tight around the chest area. however, it looked so cute on! i wanted to buy it so badly, but it just didn't work for me. the design is absolutely adorable but i could not lift my arms without the whole top riding up. they did not have a medium in the store so i couldn't see if a larger size would work. overall, such a cute top, just not appropriate for someone my age or practical for someone ch",4,0,1,General,Tops,Blouses +1095,34,"Tight in bust, sheer, and babydoll look","I pretty much am in agreement with the first, original reviewer on here. big disappointment, especially if you have hips and are busty. +_____________ +pros: +- great breathable fabric. +- cute look overall. +- sash in front brings it all together. +- buttons are hidden under a panel of fabric, which is a nice touch. +____________ +cons: +- runs very small in the bust. normally, i can wear a 10 or 12 with most of retailer's stuff. i tried on a 12 and it fit everywhere with entirely too much room i",2,0,19,General,Dresses,Dresses +1065,43,Beautiful but not quite right,"I was very excited to get this piece, but it wasn't quite right for me. very well constructed and nice material, but the open sides were a bit too open toward the front. the top zipper was tough to do on your own.",4,1,1,General,Bottoms,Pants +1095,57,Loved the color and fabric but fit was not great,I really loved this dress in the store when i tried it on the color and fabric were perfect for summer but once i got this home i noticed the placket wouldn't lay flat across the bust like shown in pictures. when i went up a size it was too large under the arms so this one will sadly have to go back to the store.,2,0,0,General,Dresses,Dresses +830,51,,"Adorable top! sweet but not too sweet, can go either casual or dressy depending on what it is paired with. i was looking for cropped tops as that silhouette works better for my proportions with the plethora of cropped bottoms that are in stores. as another reviewer mentioned, it is lined so no cami is necessary. the label says dry clean only however, i have washed it in a mesh bag on gentle in cold water and hung to dry without any issues. the dry cleaning warning may be because of the lace on t",5,1,2,General,Tops,Blouses +1081,53,Not what i had hoped for,"On a positive note the dress was very well made, great quality as usual from retailer. however. this dress looked like a sack, i believe it may have been the combination of the drab color and the sack like shape. very plain and unflattering. for reference i am 5 5 140lbs 34c ...so i do have a shape it just did nothing for me. it had to go back.",2,0,1,General,Dresses,Dresses +1065,38,Runs small and short waisted,"Thick material and cute design. i am typically a size 2 and the small in this fit but was snug in the crotch and just zipped at the waist there is not much if any stretch. i am 5'6"" with a 26 1/2 in waist so that was unexpected. it does have cinchers at the waits but they are more for aesthetics than functionality. it is a very cute design and the fabric is nice as well as the direction of the stripes.",3,1,7,General,Bottoms,Pants +461,36,Perfect summer coverup,"I have to be honest, i wear this away from the pool more than to the pool. it is extremely lightweight and comfortable, making it the perfect loungewear to tackle this california heat, and the style is fabulous- love the hassles and beads on the ties.",5,1,0,Initmates,Intimate,Swim +1095,55,Loved!,"Great fit, easy to dress up or down, lovely shade of blue--this will be my default dress this summer.",5,1,0,General,Dresses,Dresses +946,34,Beautiful surpise backless sweater,"Always looking for sweaters that are wearable in south florida, stumbled upon this gem. from the front gorgeous silvery gray, soft sweater and stunning open back with romantic silky black bow details. bows will hide bra easily underneath. so comfortable, classy and sexy.",5,1,0,General,Tops,Sweaters +1095,26,"Perfect in theory, good in reality","I needed this dress as soon as i saw it on a mannequin in the store. unfortunately, when i tried on my usual size (4 regular), the armholes were so big that you'd be able to see my bra no matter what. i purchased a 4 petite online later that day. it fits perfectly! i received so many compliments on this dress. a few issues though: (1) this dress wrinkles like crazy. i know it's linen, but i looked like a mess after wearing it for just a few hours. definitely don't wear it to work and expect to l",4,1,1,General,Dresses,Dresses +1089,29,Not exactly as pictured,"I received this dress in the mail yesterday. right away, i noticed the coloring wasn't quite the same as it appears in the images online. in person, the hints of brown appear more bronzy and shiny, as opposed to more muted. i was willing to look past that, but then i tried it on. i ordered a small, which is my typical size in retailer dresses. it ran quite large and was way to long for me (i am 5' 4''). overall, between the coloring and sizing, this dress wasn't a hit for me.",2,0,2,General,Dresses,Dresses +1094,51,,My friend and i bought the same dress we love it so much we get so many compliments great purchase,5,1,1,General Petite,Dresses,Dresses +1089,22,So so lovely!,"I have had my little eye on this dress since it came out! lucky me i found it sitting pretty in my local retailer lost found! it runs a tad big, when i first tried it on with the sleeves off-the-shoulder i was disappointed in the length (past my knees); but i tried it on again with the sleeves sitting on my shoulders ... so so darling",5,1,0,General,Dresses,Dresses +829,59,,This is a beautiful blue color and a fun swing design. it is very short so will be limited with what you can wear it with. looks very cute with higher waisted jeans and pencil skirts. it is wide but has a lovely flow/swing to it. love the fabric and it is a nice change to everyday style in wardrobe. so if you want something fun and flirty and feminine and you do not mind short this is your top.,5,1,10,General Petite,Tops,Blouses +829,49,,"The reviews i read scared me a little about this top being super cropped. it is on the short side, but will be adorable with shorts and pants that aren't low cut. the multi-textured fabric is gorgeous!",4,1,1,General Petite,Tops,Blouses +1059,53,Great pants that go with everything,"I purchased these pants on-line in my usual size petite 4 and they were a perfect fit for me. i have a 27"" waist, 35"" hips and i'm 5'4"" and found them to be a little long but not so much that i want to hem them as i'll be wearing these with my clogs and platforms anyway. if i want to be able to wear them with flats, i'll need to hem them but i bought them to go with my higher shoes so it's no bother. these are very slimming pants and zip up at the back. they are a tad difficult to zip up but not",5,1,9,General,Bottoms,Pants +1091,33,"Absolutely beautiful, great quality","I bought this for an event, and when it arrived, i realized it was probably too dressy for my event. there are some large sparkly clusters of ""stones"" that are beautiful, but do make the dress more cocktail attire than i needed. if i had something to wear it to, i would keep it in a heartbeat. the fit is flattering and the quality is reminiscent of old school retailer pieces. there are cups already in the bodice, which is a huge plus imo. it's unique and beautiful!",5,1,0,General,Dresses,Dresses +1095,33,It's still too short....,"I was so pumped to see a slightly different version of last years, military swing shirtdress, because i loved the idea of it, but it was just was too voluminous and short for me... well, this year, i ordered a size up, remembering that last years dress ran right in the chest and shoulders. i guessed right! this time, in a size up, i had breathing room and was much more comfortable. this dress is also a lot less billowy. there is sting definitely a swing but a much less dramatic version! my issue",4,1,9,General,Dresses,Dresses +829,39,"Beautiful design; but, disappointing quality","It's a beautiful lace designed tank top in a vibrant navy blue; however, the lace on the hemlines were snagged. the top was much shorter than i had anticipated. i'm returning it to the store, unfortunately.",2,0,0,General Petite,Tops,Blouses +829,39,Bof. (aka meh),"As the other reviewer said, this top is pretty short. nice design but i wish it was a little longer, and i am short... i tried on xxs regular, xs petite and xs regular. + +xxs was closest to flattering around the top part (shoulders, cehst), but stil la bit short. the petite was jsut too short and xs regular, a bit longer, but a little loose... os hte fit jsut ddind't work. i may wait for sale on this, but probably something beter wil lcome along. + +great for those who want to show their assets",3,0,8,General Petite,Tops,Blouses +1095,39,Wide and comfy,"Fabric is the nice comfortable hh fabric they have been using to make dresses and shirts. it wrinkles a little though. also feel ""heavy"" though not too warm. i like the collar not being a fold over. teh dress wasn't too short on me (00p) in front, and does go longer in the back (high low) - not an issue for me. i ordered the navy + +i decided not to keep it only because i don't really need it and they make a similar version every year. but if you don't have it yet, good to have. + +i am 115 lbs,",4,1,0,General,Dresses,Dresses +1091,40,Lovely dress,"This is dress is great for an occasion - such as a wedding. + +i wanted to keep this dress for such occasion - but there were 2 drawbacks. i ordered the dress online and when i opened the package, there it had some sort of oil/petroleum based product smell. the other drawback is the hips - it just flared out more than i wanted. i think that a belt would have solved that, but i usually don't find belts in my size. + +as for the fit, it is true to size. i'm a true petite and the 00p fit great!",4,1,0,General,Dresses,Dresses +829,43,Pretty,"This is a full swing top. because the top is so full, it should hit at or slightly above the waist (and it does on me) so that a pant or skirt waistline can be seen and balance out the proportions. will look great with a pencil skirt or any pant that as a mid or high rise fitted waist and flat front (no pleats or draw string, for example). the fabric has weight and hangs nicely. color is true to photos. easy way to look a little dressier during summer. 5'3"" 120lb 34b - small regular fit me perfe",5,1,2,General Petite,Tops,Blouses +1094,36,Nod to mod,"I love the weight of this dress, the mod color blocking, the pockets, the detail down the side of the skirt, the cable knit, everything! i wear it with a caramel cardigan and brown booties, it's perfect. it's a sin to pass it up, especially for this price.",5,1,0,General Petite,Dresses,Dresses +1094,54,Classy,"Maeve once again created another beauty! love, love, love. i purchased the crocheted cape in cream and have received numerous compliments on the dress. get it while it lasts! i typically wear a 4-6 in maeve and got the 6 in this one.",5,1,0,General Petite,Dresses,Dresses +1094,24,Cuter than i expected,I didn't really pay this dress much attention online or even in store. an associate suggested i try it on. it's so much cuter on than it appears online. the button detail is great and i love the pockets. it does bunch up a little but not too bad. i tried on my normal size 2 or 4 and the 4 fit me perfectly. it was a tad long and maybe the petite will be better. i have fairly sensitive skin and the wool pieces were a bit itchy so i had to take it back. but if you aren't sensitive then this is for,4,1,0,General Petite,Dresses,Dresses +1094,69,Lovely...not on me,"I saw this dress worn on the street and thought it was lovely, the perfect work dress. i then found it in the store and my size was already sold out, so i visited another retailer, and another to find it. unfortunately the color blocking on the chest was not very flattering for me, it seemed to overly accentuate it. i am 5'9"" a 36 dd size 12. +the colors, the fabric are all wonderful. but this dress is not for me.",2,0,0,General Petite,Dresses,Dresses +1091,83,Paris runway dress!,"I have a closet full of dresses and very few have the quality and attention to detail as this gorgeous dress! +often times when ordering online the dress that you actually receive will have a different fabric placement than the online photos.......and it can detract from the overall look.....but the one that i received is exactly as pictured. the gold details hit in all the right places. +the quality is shocking! looks like a $2000 dress. +true to size however, the chest/bust runs a little big.",5,1,0,General,Dresses,Dresses +1095,46,You need to try this one on!,"From the online pics, i would never think to try this on, but i was looking for a shirtdress with pockets, so glad i did! i purchased in green and navy... i love the neck line when buttoned up, almost military jacket'ish and i like the idea of wearing over jeans and a shirt and leaving unbuttoned almost like a light layer or jacket. super soft material... i purchased a size 6 and i am 5'9 and 140 lbs.",5,1,0,General,Dresses,Dresses +945,21,"Love the design, hate the itchiness!","My title perfectly describes my attitude toward this sweater. the print is super cute and the price point is great, but this sweater was so itchy that i couldn't even keep it on for longer than a minute. it may be okay with a long sleeve underneath, but don't even think about wearing it by itself!",3,0,0,General,Tops,Sweaters +1095,30,,Unless you have the body of the model - tall and very thin and wear a really small size - don't even think about getting this dress! it's literally a heavy sack. it hit right above my knee in the front and basically mid-calf in the back. the material is nice but it's an awful shape!,2,0,7,General,Dresses,Dresses +1095,72,So much to like,"This dress will take you through fall, winter and spring. i love all the stitching and design detail. it has a nice swingy skirt that is quite a bit longer in the back.",4,1,2,General,Dresses,Dresses +945,48,,,2,0,0,General,Tops,Sweaters +945,38,"Cute, but...","I loved the dog on this sweater, and i rushed into the store to buy it. once i tried it on, like others, i did find it to be itchy, but that i could deal with using a tank or something. what bothered me the most was the way the arms were cut. my arms looked much bigger than they are, so sadly i left it at the store. it really is a cute sweater though...",3,1,0,General,Tops,Sweaters +829,38,Very flattering fit,I love this top. the design is beautiful and the fit is flattering. it's so pretty. the top has great movement and pairs well with so many things. the top hits somewhere around my waist but wasn't too short. i highly recommend this top.,5,1,2,General Petite,Tops,Blouses +1059,50,Very unflattering!,"Given that i am petite with thighs (take a size 6p or 28p) these were not for me! the run small, are really tight from the thigh up, run longer that a petite should and are fairly thin. on top of that the zipper and hook in the back are really inconvenient. i was looking for something i could wear to work, and these were not the right style for that. plus they seemed cheaply made, like they wouldn't stand the test of time. i imagine if you are tall and skinny like the model, they would look good",2,0,1,General,Bottoms,Pants +1094,47,Has pockets,I love this dress! it has pockets in front. timeless. fun. dress up or down.,5,1,1,General,Dresses,Dresses +1095,50,More of an a-line than straight,"There were no reviews when i purchased this dress. from the picture with the model, the dress looks to be a straight shift dress. i received mine yesterday and the dress flairs out and isn't straight. it is also pretty large. i ordered a medium as the smalls were sold out and i'm not sure i will keep it. still on the fence. dress is shorter than pictured as well. sleeves are shorter than shown. now, after having seen the dress and looking at the online picture, i think the model is holding her a",2,0,3,General,Dresses,Dresses +1095,66,Perfect fall/winter,Material is heavy enough to provide warmth on a crisp day or evening. add poncho or large warm scarf to keep colder temps @ bay. sure wish this came in blk. i bought mauve & just love it!,5,1,1,General,Dresses,Dresses +1095,30,Wardrobe staple,"I'm 5'10"", 140lbs and this dress fits exactly like shown on the model. hits right above my knees in front and an inch or so below my knees in the back. i didn't find it to be too blousey at all. i'm more pear shaped so i like that this is flowey around my hips and bum. purchased a size 6 and it fits well over my chest and arms. if you're busty or have muscular arms i can see how this might feel more restrictive. great staple to my wardrobe!",5,1,0,General,Dresses,Dresses +945,44,Unique design,"I really wanted to like this sweater. it was featured in the dressing room and i am a sucker for animal prints. the dog print is unique, a ""mossy"" fuzzy print, and the grey really shows off the dog print. i like regular xs because i like the fitted look (i am 5ft2in, 34b, 26 waist, 36 hips), the hem falls at my upper hip and the sleeves fall a bit pass my wrists. but, if you do not wear a turtleneck under it, you will scratch all day long. the designer should try on the fabric before selling it!",3,1,0,General,Tops,Sweaters +945,26,Too itchy,"I was excited to order this sweater. when it arrived, the green didn't stand out as much as the picture here. it also felt too itchy. i usually wear either very soft wool or wool with cashmere because i can't stand plain thick heavy wool. this one was just too itchy for me, it is going back.",3,0,0,General,Tops,Sweaters +1059,53,,Awesome flares and very flattering! a wardrobe staple!,5,1,0,General,Bottoms,Pants +1059,52,For long slender legs,"I ordered a six 6 petite. the pant leg was still very long. and if i have it tailored it will not preserve the whole point of these pants having a flare. this is a slim fit. i have heavy thighs and this was not for me. i'm 5' 120 lbs. also the tag warns that the fabric may leave color on lighter clothing. which i don't get, because it's spandex blend. also wasn't too hip in the zipper on the back.",3,0,23,General,Bottoms,Pants +870,34,"Really, really bad","Okay, so this top has its redeeming qualities, i promise! which is why i gave it 3 stars when i really wanted to give it two. but it's just not worth 2 because i'm sure it works for some people and the quality is just impeccable. for people who purchase this, it will last forever. it's sturdy cotton, not thin like many retailer tee materials. the lace detail and texture is on point and the neckline is very nice. it's a great looking top. my issue though, wasn't with the bust as other reviewers hav",3,0,0,General,Tops,Knits +1078,35,Perfect for wedding season,"I just scored this dress the other day and i don't regret it for a second. the bodice is beaded with some sea-foam green beads and they are sewn on really well, so i am not worried about dropping them all night. from the pictures, i couldn't tell if this was going to look like a cotton skirt or i fit would be chiffon looking-it is neither. it has a shimmer to it which makes this a more dressy looking dress than i was originally anticipating-i thought it was going to be an everyday wear type of d",5,1,8,General Petite,Dresses,Dresses +860,44,Cute style,"This is a really cute style of t-sihrt. i totally disagree with the reviewers who thought this was too short in the torso and/or overwhelming. i'm 5'8"" and about 145 pounds and this fits just fine. (i ordered a size small.) beautiful drape and (i thought) relatively slim cut. the only reason i'm not giving this 5 stars across the board is that the fabric is a little too thin (not sheer or see-through, but not as substantial as i would expect for the price.",4,1,3,General Petite,Tops,Knits +941,31,My new favorite top!,This is my new favorite top! it's so comfortable and looks great. i wish i could order it in more colors!,5,1,0,General Petite,Tops,Sweaters +860,37,The perfect summer tee!,"I love this top! its so comfortable and light weight! it drapes beautifully, with an overall loose fit but a little slimmer at the bottom. so flattering! i only wish i bought them in every color before they ran out!",5,1,0,General Petite,Tops,Knits +954,25,,,5,1,0,General,Tops,Sweaters +834,40,Different than pictured,"I really wanted to like this top, just got it in mail today, but unfortunately it did not work well for me because i'm 6 ft tall and the blouse was too short. i like the look and how it feels and i haven't completely decided whether to return it, but here are the issues i have encountered with this top. the blouse is very pretty and has a nice refreshing style with good print and color, very soft too, unusual for rayon of this type, feels more like thin delicate cotton. i got my top in red, size",2,1,2,General,Tops,Blouses +870,56,Runs small,"I loved this top when i first saw it. i tried on my usual size l, and there is no stretch through the bust, so it totally flattened my chest. a few weeks ago i noticed there were some xl's that must have been returned. i tried them on and they fit perfectly! i suggest sizing up if you have a chest, this is a very flattering top and it looks great paired with scarves as a wrap, skinny jeans and boots.",5,1,1,General,Tops,Knits +877,43,Fun embellishment!,"Now this is a summer staple! love the design of the bib of this tee. super soft, great neutral charcoal color and can be dressed up or down. it is loose, i'd recommend sizing down.",4,1,1,General Petite,Tops,Knits +860,43,,Got this shirt in black so i can wear it to work. more personality than a plain t-shirt but still comfortable. got lots of compliments.,5,1,2,General Petite,Tops,Knits +834,31,Perfect button down,"Button down shirts usually aren't my thing, but the soft fabric of this top makes it feminine and comfortable while still keeping that classic look. it's also easy to dress up or down, which is great! i am 5'4"" and small-framed, and the size 0 fits just right.",5,1,0,General,Tops,Blouses +872,37,Great top,"This top is super comfy and easy to wear. i found it to be a bit darker tan than it looks online, but still quite cute. it's flowy but still gives you shape, overall it was a great buy.",5,1,0,General Petite,Tops,Knits +834,23,Darling,"I ordered the ""london, paris, milan"" print red top in a size 4. i go back and forth with ordering 2's and 4's but i figured that with long sleeves, i'd rather have a little room than it be fitted. my boyfriend asked if i bought it for valentine's day- the red print and the cities struck him as romantic. anyway, lovely top. lightweight material will be nice for layering during winter, and wearing on it's own in spring and next fall.",5,1,1,General,Tops,Blouses +877,41,,"The perfect tee. this is exactly what i have been looking for. flattering fit,looks great dressed up or down and has just a touch of unique detail without being over the top, the top is just slightly thin but can definitely be worn without a cami underneath. this reminds me of old retailer tops from several years ago that i just loved and wore to death.",5,1,14,General Petite,Tops,Knits +850,60,Beautiful basic for mild fall weather,"Unfortunately, i am not toned enough to truly show off this beautiful blouse. armholes are cut in a bit too far for my 60 year old arms. was hoping for a pop of color as a basic sleeveless top to layer under sweaters and jackets for traveling, but the neckline wasn't layering as i had hoped. i am only 5'2"" but want a bit more length. +i think this blouse is best worn uncovered as shown, on a toned body that does not require the longer length i prefer. seems to be well made, sadly i must return.",4,1,0,General Petite,Tops,Blouses +850,47,,,5,1,0,General Petite,Tops,Blouses +872,42,Loved it,"The photo doesn't do it justice. the detail on the neckline is adorable and looks fantastic with jeans. texture is light and gauze-y, but i don't find it too see-though. sizing was tough- i'm 5'10 but thin on top- usually between xs & s, and went with the xs on this (ordered both to try), sacrificing some length for a more flattering width. great for the sale price!!!",5,1,1,General Petite,Tops,Knits +877,47,Looks like maternity wear,"First, it's huge. i'm not big busted but it's so roomy that i looked like i was pregnant. not exactly what i was going for. nice color and soft fabric but would only work if you plan to tuck it in--and i'm short waisted so no tucking for me. back it went.",2,0,0,General Petite,Tops,Knits +877,59,Not that great,"This top is on the boxy side but the design is cute and i love the pink color. the problem i had with this shirt is the huge arm holes. one side you could see the top of my bra, the other side was below the side of my bra. you could also see the inside back of the shirt through this arm hole, it was that big. this went back, will not re-order. i usually order xs or xsp, this was an xsp.",2,0,0,General Petite,Tops,Knits +850,45,Great for all shapes,This is a great blouse for all shapes! you can wear it under a suit or with jeans!,5,1,0,General Petite,Tops,Blouses +936,55,Soft versatile=heaven,"Super soft and super chic! this sweater wrap looks great at the mall, at church, and even just curling up with a hot drink on a cold day at home. i'm still in love with this after a year!",5,1,0,General Petite,Tops,Sweaters +870,53,Terrible fit,"This blouse was so cute, i really wanted to love it. as others mentioned, there is something wrong with the fit. i'm not a large person, but the top was tight even though i ordered a medium and a small.",2,0,7,General,Tops,Knits +877,59,"A good, all purpose summer shirt","True to size, and adorable. very lightweight, will be great for the long, hot summer ahead!",4,1,1,General Petite,Tops,Knits +834,35,Maybe i have a long torso,"I wanted to love this shirt. i like the style, the material is soft but it was so short on me. perhaps i just have a long torso but it fit everywhere else. i wasn't even able to tuck it in because the sides just were so short.",3,1,0,General,Tops,Blouses +860,48,Little overwhelming on me,"I had high hopes for this cool top. i ordered it in xxs because no petites were available at the time, and i think the size is just right (i'm +/- 105 lbs, 34aa). i just suspect it looks better on people with broad shoulders, like the models'; mine are kind of narrow. plus, crew necks aren't the most flattering neckline on me. i would say it's fairly short, just barely covering my belt, so on taller people it may be cropped, and the waist is kind of fitted, as shown. i love that it's cotton, mad",4,1,31,General Petite,Tops,Knits +870,61,,Received this product with a gaping hole in it. very disappointed in the quality and the quality control at the warehouse,1,0,1,General,Tops,Knits +870,35,Top has a broad neckline.,"I liked this top (in black), but it didn't fit me well. had to return.",3,0,0,General,Tops,Knits +954,39,,,5,1,0,General,Tops,Sweaters +834,48,Fun work shirt,I wear a lot of solid dark colors for work so i liked this was dark blue but had more pop than the basic navy. able to pay it up with other colors too. the sides are a little shorter so have to watch throughout the day so belly isn't showing. not a bid deal overall.,4,1,2,General,Tops,Blouses +870,40,,So unflattering! really disappointed. made me look 6 month pregnant and i'm a petite size 2.,1,0,0,General,Tops,Knits +834,49,Nice blouse,"Got this on sale, in three colors! love the look of the blouses, great for work. only con is that the sides are shorter than i would like.",4,1,0,General,Tops,Blouses +872,58,Versatile and pretty,I love this top! it does run big and maybe some won't like it with the elastic waist. i think it's the perfect weight and very comfortable. i love the detail around the neck line.,5,1,0,General Petite,Tops,Knits +834,43,Lovely fabric,Soft fabric and hangs nicely. washes well. purchased in the orange /red and love with jeans.,5,1,0,General,Tops,Blouses +872,45,,,5,1,0,General Petite,Tops,Knits +872,56,Tts! thin fabric! just ok!,"Lost some extra weight, and decided to venture into styling territory i haven't tried in years. bubble hems will never flatter my thick midsection, but the drawstring with tassel ties make the hemline easily adjustable. + +size: i'm currently between a small, and xs. the armholes appeared to be on the small side, so i ordered a small. i'm 5'5"" tall, ~130 lbs, 34d, 35-29-37, long torso and narrow across the shoulders. + +fit: the top is tts. the length hits slightly above hips. i didn't need to",4,1,26,General Petite,Tops,Knits +870,60,Something's wrong,"I really loved this top. however, i couldn't get it on. i tried on a medium (my usual size.) it's not that it was too small. something else is wrong with it. the large was way too big. too bad, i really wanted this look.",1,0,1,General,Tops,Knits +870,35,Horrible fit,"This shirt looked cute until i tried it on... worst fit ever. im thin, and this style of top is usually quite flattering, but this one missed the mark big time.",1,0,8,General,Tops,Knits +834,40,"Great button down, runs small","I purchased this in the red & love the fabric and overall design of the top. i have returned it for a larger size. it is very small through the chest. hopefully, a larger size will give me more room though the chest without being too large in the rest of the shirt. i'm a 34 c and ordered a size 6 for reference.",4,1,0,General,Tops,Blouses +870,27,No stretch,"I love this top! the color is quite unique (a reddish color), but the cut really makes it stand out. i love the square neckline. i feel it accentuates my bust without showing too must breast. i notice a number of other reviewers had an issue with the tightness around the bust: this top looks like it would have ample stretch in the photograph; however, in person you can see that the embroidered area does not have any stretch. for me, this was not an issue, as the top suited my body type well rega",4,1,2,General,Tops,Knits +834,37,Black and white is navy?,"I love this top and find it flattering, but the black and white polka-dotted motif that i purchased definitely has navy blue in it -- not black. kind of disappointing that the color description was so inaccurate.",4,1,2,General,Tops,Blouses +877,53,,Very very cute. bought in store yesterday. put it on today to wear and it is huge. i normally buy a large in tshirts. i will return for either a small or medium but will try on in the store. oh well.,3,1,15,General Petite,Tops,Knits +860,36,,"This top was too big for me. 5'4, 135lbs and ordered xxs. fit was fine and wanted it too work, but too overwhelming on me as well. will be going back.",2,0,8,General Petite,Tops,Knits +941,26,Perfect beachside sweater,"This is not your traditional moth sweater, in that, it is not soft and cozy. this sweater is great for upcoming summer nights at the beach while fireside or out on the boat! i haven't been the biggest fan of the lace up trend but this one is more traditional nautical feeling than others which i did like. it's pretty true to size, so i wouldnt size up or down for any reason. they paired it with a cloth + stone white button down underneath at our store and it looks great layered too!",5,1,12,General Petite,Tops,Sweaters +834,31,Very comfortable and cute,"This shirt is very comfortable to wear, mostly because the buttons are well placed. many button down shirts bother me because they gape open at the bust area, but the buttons on this one are placed at just the right spot.",5,1,0,General,Tops,Blouses +860,73,,"Fabric is soft,cool and comfortable. love the sleeves as air circulates. this is perfect for new wide legs i purchased. many compliments and purchase inquiry when worn. purchased in two colors.",5,1,1,General Petite,Tops,Knits +877,27,Lovely top,Love the detailing around the neck of this top looks great under cardigan or by itself. i sized down to an xs. seems to be of good quality although to lengthen its life i don't plan on putting it in the dryer :),5,1,0,General Petite,Tops,Knits +877,56,Nothing special,"I thought this would look great with skirts, but all my skirts are too dressy for this t-shirt. that's really all it is -- a nothing-special t-shirt. and it runs so big! i'm usually a large or xl in tops, but for this one i bought a medium, and it's still too big. i think a small would have been fine. but, as i mentioned, it doesn't go with any of my skirts, so it's not worth looking for a small.",2,0,0,General Petite,Tops,Knits +870,56,"One size is too big, the other too small!","I didn't know what to put for ""runs small, true to size, or runs large,"" but it required me to put something...i first ordered the xl, and it was ridiculously gianormous. the next time, i ordered a large. i thought the large would either be a perfect fit or still too large, based on how the xl had fit. the large was too tight! i could not believe it! it is too bad, for i love the design and color of this top! i ordered it in the muted red color. if you can find a size that works for you, go for",3,0,2,General,Tops,Knits +834,34,,"Bought this size small and orange. needed something to where home, beautiful, comfortable, light and airy, paired it with retailer's manella stack pendant necklace, even better. received alot of compliments, the color stood out.",5,1,0,General,Tops,Blouses +834,52,Great piece!,"I love this blouse! i get so many compliments when i wear it. i can't wait for warmer weather to pair it with my coral short skirt from retailer. currently, i wear it with a pair of slim cream colored pants, and flats. it works great! it is a little on the short side, but it just adds to the tailored look of the cut. however, if you're taller than 5'5"" or 5'6"", i would expect it to be much shorter on you (you've been warned ;) +overall, this is a great addition to your wardrobe, and it washes nicel",5,1,0,General,Tops,Blouses +850,36,Perfect top for going out or work,"I bought this top for work and going out. it is a beautiful top that goes with many items in my closet like my red blazer, grey blazer, red cardigan etc. it is very flattering. the arm holes weren't too big. fit tts.",5,1,0,General Petite,Tops,Blouses +834,43,00 petite is way too short on the sides,"I ordered the black & white, 00 petite. i'm 5' 2"", 96 lbs. and i order petite sizes all the time. the length for the size i ordered is about 23"" (on the back, from neckline) which is great for me; however, the length on the sides is way too short. the distance between the armpit on the blouse and the side hem is only 9.25"", so my skin shows on the sides all the time when wearing regular jeans. not at all the way it shows on the model. i would order 00, regular length, but then the sleeves will b",2,0,2,General,Tops,Blouses +870,48,Poor quality,"I loved the look of this top the moment i saw it in the store, particularly the muted red color. the crochet detail is very pretty and i found the fit to be quite flattering on me. however, part of the crochet detail on the one i received has a hole that needs to be repaired. since i purchased during the sale, i'm going to try and mend myself, but this may end up having to go back. if you see this in store and find one that is not damaged, i would recommend it!",3,1,0,General,Tops,Knits +954,41,Odd fit,I wanted to love this sweater but the fit is just awkward. it is very short and box and ends up being very short in the back. i am going to return this item.,2,0,3,General,Tops,Sweaters +834,36,So soft! and blue-er in person,"I wasnt expecting this top to be so soft and comfortable and breezy! i am usually an xs petite, but based on reviews i got the regular small. it is a little loose, but the length is perfect. i am short for reference (5'2, 107 lb, 32c). the buttons gaped a very tiny bit, like a centimeter, but not to the point where any skin or bra was visible. had i got the xsp, i think the gaping would have been an issue. the arms are too baggy for my taste (length is ok though), but i fold the sleeves up at th",4,1,2,General,Tops,Blouses +834,33,Love it,Great top. i got the size 4 but i ordered a 6 and plan to return the 4 depending on how the 6 fits. the top is really cute but it fits just right and i would like a little more room. when i raise my hands the entire shirt raises up. otherwise cannot wait to wear it and this is a great purchase.,4,1,1,General,Tops,Blouses +834,28,Gorgeous red shirt!!,"I love this shirt so much i bought it (nearly) full price with my birthday month discount! +get it! i purchased the red and also like the black/white polka dots - hangs beautifully, +feels heavenly and polished and fun at the same time. i bought the medium am generally +a medium.",5,1,0,General,Tops,Blouses +877,65,Cute shirt but runs large,This shirt runs very large. i will be returning for a smaller size.,2,1,0,General Petite,Tops,Knits +850,58,Silk blouse,"This blouse is exactly what i wanted and the fit is great. silk is always light, and can go with jeans or dress up with a skirt. i'm wearing mine to a baby shower in a few weeks.",5,1,1,General Petite,Tops,Blouses +872,43,,"So beautiful! fabric hangs great, lovely detail, fits well and feels great",5,1,0,General Petite,Tops,Knits +877,26,Nice top,"I bought this top in slate. it is very nice, looks so flattering and good with a light pant. it runs large though and is loose fitting, like a swing top. i like the design at the top. i will try the mauve in the store. i really like this top and recommend it for casual wear. very comfortable and soft.",4,1,0,General Petite,Tops,Knits +877,37,Closet staple,"Cute, basic top. it has really great detail at the top and it is a good length (it is not super long/too short). it does billow out a bit at the bottom, so i would size down (this is what i did after reading the previous reviews). i do not think i would have paid full price for this top, but on sale, it is a great deal and a nice addition to your wardrobe.",4,1,0,General Petite,Tops,Knits +1059,75,Invites compliments,"These pants are adorable. i am a petite lady with a small waist and have a hard time finding pants that fit and look good, but these do. they are both cute and elegant. and they have pockets. i have had many compliments. the one drawback is they need dry cleaning.",5,1,10,General Petite,Bottoms,Pants +1055,24,Good quality - poor design,"Quality jumpsuit but poor design. the green made me look a bit like ""gumby the cartoon character""",2,0,4,General,Bottoms,Pants +1146,52,Happy addition to fall wardrobe,"This dress us high quality and feels great, however i am 5'5"" and it is too long for me. will definitely need to shorten but love it, not above knee as pictured for a non supermodel!",4,1,4,General,Trend,Trend +1053,38,Live in these,I could live in these. they are so comfy. i typically wear a 6 and got the medium. they are a little roomy. probably could have gotten a small..but i like them kinda loose and baggy. i will probably purchase another color!,5,1,2,General Petite,Bottoms,Pants +499,35,Love it,This body suit is super flattering and super comfortable. i'll probably order it in the other color.,5,1,1,Initmates,Intimate,Layering +855,46,Prettier in person,I love this! the contrast in much prettier in person.,5,1,0,General,Tops,Knits +489,39,Cool for the summer,"I was skeptical about buying a romper. i was also unsure what size would fit me (i'm 5'5"" and 150 lbs.) to my delight, the romper fit perfectly! it's a gorgeous and flattering fit. i love the design and fabric! it's stunning!",5,1,0,General Petite,Bottoms,Pants +1053,62,So comfy,"Bought the tan/taupe joggers today in asheville. so soft and comfy, will probably go back for navy ones. i found them true to size. will be a great, cute addition to my summer wardrobe.",5,1,1,General Petite,Bottoms,Pants +1053,66,Great fit,"I have these pants in the blue/grey color and like them so much i got them in olive. wash well, fit perfectly... easy to throw on and look great!!",5,1,0,General Petite,Bottoms,Pants +867,64,,,5,1,0,General Petite,Tops,Knits +945,25,Way too big and bulky,"The quality of the garment is high--a nice substantial yarn and a pretty crochet pattern, but the cut was totally off for me. i'm usually an xs/s, and was swimming in the xs. the arms in particular were huge and drapey, and the whole thing just hung on me (for reference, i'm 5'4"", 120 lbs).",2,0,0,General,Tops,Sweaters +867,54,Pretty tee,"I purchased the blue and it's a wonderful deep blueish purple. i like the chiffon detail which makes it a bit more stylish than a normal tee. fits nicely, a bit big but not enough to go down a size. the material is not sheer and a nice light weight.",4,1,0,General Petite,Tops,Knits +867,30,,"The shirt can be a little boxy, so make sure to order your size! the peplum is a great length in the back.",5,1,0,General Petite,Tops,Knits +867,31,Go to shirt for this busy mom,I am always looking for a shirt that's a little different yet as comfortable as a normal t-shirt (running after a 1 year old i need comfort). i bought two colors and love the vibrant pink/salmon and the dark purple (which i think it said was blue for some reason). the material is nice and the cut is feminine.,5,1,0,General Petite,Tops,Knits +867,25,Cute and comfy,"I love this shirt. i ordered a large because i am taller, and i wanted the length to be right. while it's a little baggy, it's still very flattering and i've received lots of compliments on it. the color is exactly what is show in the image. it's a versatile shirt; depending on what you pair it with it can be appropriate for work, dinner, or a night out. i'd definitely recommend this shirt to a friend.",4,1,0,General Petite,Tops,Knits +1017,41,Nice basic,"Nice basic pencil skirt to have in the closet. i think the fit is right on and did not have any problems with billowing like in the other review. quality is nice, but could be even better.",4,1,0,General,Bottoms,Skirts +1025,29,By the end of the day these jeans shimmy down =(,"Bummer, i fell in absolute love with these gems until i realized how weak the stretch is by the end of the day. i purchased them on the 13th of feb and can't bare to wear them anymore.",2,0,0,General,Bottoms,Jeans +489,24,Size down ladies!,This is a very unique piece. it seems to be easy to wear and it is very comfy. but i normally wear a medium/size 8 and it was too big. i might size down to a petite medium of just go for small. it seems this might be a trial and error type of outfit.,4,1,0,General Petite,Bottoms,Pants +756,56,,Free and easy but the fabric seems cheap.,4,1,1,General Petite,Intimate,Lounge +855,38,Hospital white lace on top of taupe sweatshirt,"The fit of the top is true to size, but i really don't like the taupe terrycloth-like sweatshirt under the white lace. the white lace is bright white and seems very sturdy, but it makes the sweatshirt underneath look very dirty and very noticeably taupe. it is terrible paired together. i also didn't like the feel of the terrycloth-like fabric against my skin. even though this is a good quality piece with a lot of interesting detail, i'm absolutely sending it back.",2,0,1,General,Tops,Knits +1059,34,Silhouette not as great as pictured,"The straight-leg silhouette is ruined for me by the immediate bulge beneath the elastic waistband, mostly caused by the pockets. their openings protrude out right below the waistband. it's not flattering and while the trousers are not too tight for my hips, they give the impression of extra hips. if not for that silhouette issue, i would keep the trousers, as they are comfortable and pretty, and unlike my other trouser options. not see-through, as i feared.",3,0,3,General Petite,Bottoms,Pants +867,24,Great piece for layering,"The melon color is soft and flattering. it is a little on the long side in the back, but i paired it with a lightweight, flowy sweater, and received compliments.",4,1,0,General Petite,Tops,Knits +198,28,Runs small,"I'm 5'7"", 125 lbs and i ordered these in a size small. i just got them in the mail and the print is really pretty and they seem very well-made. unfortunately, they were a little too small, particularly around my butt. after i ordered them, i read reviews on other merchants' websites and saw that many other stores recommend sizing up, as the brand is known to run small. i wish i had known before i ordered, but i'm exchanging them for a medium and i hope those fit better, because this suit is ador",4,1,1,Initmates,Intimate,Swim +1087,31,Fantastic,"This dress is an absolute attention getter. it's incredibly unique, and fits beautifully. i'm very short, and often have problems pulling off this much pattern, but this dress was just right.",5,1,0,General,Dresses,Dresses +1055,40,"Soooo cute, but short rise.","I saw this at the store today. very excited about it but i had no idea how to get it on! there is a side zipper so i attempted to step into the jumper through the collar but could never get my arms through! from what i could see on my body, it would have been too short in the crotch. i decided not to fight with it to put on entirely. i gave up. cute shade of green though.",1,0,3,General,Bottoms,Pants +867,39,,,4,1,0,General Petite,Tops,Knits +855,44,"Pretty, yet boxy","While this top is pretty, it's very unflattering. it just looks so boxy on me that it makes me look heavier. too bad, because i really wanted to like it.",3,0,17,General,Tops,Knits +1008,28,,"Oh dear. the elastic waistband just ruined this skirt for me--it made it look so cheap. i assumed from the photograph that the skirt was a knit over a structured lining with a real waistband with a zip. instead, it's a sweatshirt knit with no lining and elastic. it looked cheap and hung a bit baggy from the elastic waist, making it a no-go for me.",2,0,0,General,Bottoms,Skirts +867,27,This top looks amazing on the model- not me,I wanted to love this shirt. the fit was a little off and i wish it had come in a little at the waist to be more figure flattering before it flared out. the fabric is nice but wrinkles easily and in the white is see through.. sadly i will be returning.,2,0,3,General Petite,Tops,Knits +867,25,,,4,1,0,General Petite,Tops,Knits +867,32,Dressed up dressed down,Love this dressed up casual tshirt. perfect casual friday shirt or going out for happy hour with the girls.,5,1,0,General Petite,Tops,Knits +1059,59,Didn't work for me,"They look nice on the page, but they didn't work on my body. made me look big and boxy. maybe if you're super-skinny, they'll be fine.",2,0,7,General Petite,Bottoms,Pants +198,46,L space estella hipsters,The fit on these is frustrating. with l space you almost have to try everything on first because the sizing is different from one cut to the other. i wear a 25/26 jean and a medium in this bottom still felt and looked too small.,3,0,1,Initmates,Intimate,Swim +1053,40,Great buy!,Super flattering and lovely material. dress-up or down. they run true to size.,5,1,0,General Petite,Bottoms,Pants +1025,65,Truly worth every penny!,"I was lucky to get these on sale with free shipping(my major lucky shopping moment of the year); however, they are worth every penny of the full price. i've waited years before shelling out this much for a pair of nice jeans, but now my skeptical opinion has done a 180 turn. these paige verdugo ultra skinny jeans are superior to any denim i've ever tried. they look and feel fabulous on me. i bought my usual 29/size 6 and am 5'1"", 130#.",5,1,0,General,Bottoms,Jeans +1053,61,Runs very small,"These pants run small by two sizes or so. nice material, color true to picture.",4,1,18,General Petite,Bottoms,Pants +106,31,Not great quality :(,"I loved these pants - super soft and cozy and perfect for winter. i've worn them a handful of times and have washed them maybe twice max and they already have 2 holes! they don't say handwash and my washer/dryer is brand new and pretty gentle on my clothes. maybe i just ended up with a bad pair, but i found the quality to be disappointing :(",2,0,0,Initmates,Intimate,Sleep +1053,34,Great casual staple,"Saw on my way out of the store and had to try them on. they are very comfortable and surprisingly cute. the jogger style usually doesn't flatter my curvier body but these have a drape to the fabric that made them look so much nicer. i took in two sizes, my usual small and a medium since i just had my second child and still have some post baby weight. i still went with the small after trying on both though. the medium was a bit too big and shapeless. the small was comfortable and looked better. t",5,1,2,General Petite,Bottoms,Pants +1059,42,Best linen pants,Today i happened to walk into my favorite store with an already reduced 30percent off sale sign. i tried on this pants and let me tell you-wow!! they are super comfy and made my behind look great!! i will definitely start wearing these asap!!,5,1,0,General Petite,Bottoms,Pants +1059,36,"Cute, but...","These pants are cute. they seem, to me, to have a wider leg than appears on the model. they do run big, so i would recommend sizing down if in doubt. these are cute pants that can be dressed up or down, but unfortunately, look pretty sloppy by the end of the day, as they stretch and wrinkle very quickly. since they already run a bit big, this is a major negative. i wore them to church, and they were quite wrinkled by time i got home. by late afternoon, they looked like a different pair of pants.",3,1,29,General Petite,Bottoms,Pants +1059,39,Long,"I tried on the blue in store and ordered the red in petite, and they are both too long (which means i will have to hem). i am not sure if i want to spend the extra money on hemming so hanging on to them for now as i love hte cut and color. they fit like a glove otherwise (i do have muscular thighs). the 0p is good for me (115 lbs). can't go wrong for a nice pant, i can see wearing these out or for work...",4,1,0,General,Bottoms,Pants +924,46,Pretty but scratchy,"The color of this is beautiful. i'm 5'8"" and had to order the s because they were out of the m, so it's not as dramatically long on me as on the model, but otherwise fit - sleeves a little shorter too. the m would have been better. but it is a little scratchy wherever it touches my skin, so it's not worth the $$$ to me. going back :(",3,1,1,General,Tops,Sweaters +1059,38,Not got us curvy girls,"I really like these pants - great color and design. they are even lined! unfortunately, they do not work on my curvy frame - all the usual problems: waist too large, hips too small. sadly, i am taking them back.",4,1,1,General,Bottoms,Pants +1055,56,I'm not there yet,"This was about to be my first retailer splurge item, but i think i'm not there yet. for the rich price tag, these pants weren't going to be versatile enough for me. they're very light weight and even translucent in sunlight. perfect for a small subset of my days but not going to make the cut for casual friday. that light patch near the r knee is also a pocket- tended to flap open and look about as nonsensical as it is. if you're already on this level good for you! i had to send these back.",4,0,3,General Petite,Bottoms,Pants +1059,39,Beautiful color (red/orange) and drape!,"Very long, so may need to hem if your inseam is under ~34"". beautiful trousers!",4,1,1,General,Bottoms,Pants +1059,32,Ok pants,They were ok pants but too small. the texture and shape were not what i expected either.,3,1,0,General,Bottoms,Pants +67,52,,"Velvet always has made quality clothing and i had purchased the same shirt in another color and i wanted to see if they had other colors, they did and i got 2 more. i received in expected time and they were wrapped nicely. thank you for great choices of unique clothing.",5,1,0,Initmates,Intimate,Layering +814,66,Runs very small,"Ordered the biggest size available, the large. the arms are so tight, i couldn't get it on. looked like it may have fit in the body so i don't understand why so constricting in the arms. i don't have big arms, either. fabric is thin but the color is pretty. can't recommend. i'd pass on this one.",1,0,0,Initmates,Intimate,Sleep +835,43,Great tunic!,"I was looking for something to wear on jeans fridays. this tunic is super cute and looks great with jeggings. i did find the sizing small for me, but i am busty.",5,1,0,General,Tops,Blouses +1118,63,Truly beautiful!,This jacket is high quality leather and will bring you years of wear! i made sure to add a little room to accommodate thick sweaters!,5,0,1,General,Jackets,Outerwear +984,48,Very impressed!,"Received this jacket today and i am so very impressed with the details. initially when i ordered this jacket i first thought the navy blue waffle fabric was a corduroy or velvet, but it is a plain cotton blended fabric with unfinished edges that has the denim attached to it. the plus is the inside breast pocket that is trimmed so nicely and lined, and fits a nice sized phone. the inside is lined and even the sleeves are lined . there is pretty cream lace trim on the inside bottom of the lining i",5,1,1,General,Jackets,Jackets +1059,36,Perfect so far...,"These pants are very cute for spring/summer, and i enjoy having the option of a looser silhouette with a bit of length (nearly all of my pants are a cropped skinny these days!). i agree with the other reviews that have described the leg as being less straight-legged than they are pictured. on me, they have a subtle flare -- nothing major, but just enough to break perfectly over my shoe. they fit tts on me, but i did need to have the hem taken up. i'm 100 lbs, 5'0 and the 0p fits perfectly. i hav",5,1,5,General,Bottoms,Pants +1100,25,Such an easy dress to wear!,"Bought this dress to wear for my engagement brunch! it does run big, but it's a laid back dress to wear?i never had to adjust the dress of myself while wearing it.",5,1,3,General Petite,Dresses,Dresses +1100,40,Beautiful pattern,Beautiful dress! flowers and material look even better in person. loose fit.,4,1,0,General Petite,Dresses,Dresses +1100,66,Exquisite print makes the dress even more fabulous,"First, let me say that the photo does not do this exquisite print justice! the fabric is worth framing! on a white ground, the tones of rose, pink, purple and touches of blue make it even more fabulous! the fit is a tad large, as i am 5' 3"" and usually an size 6, but must size up to 8 or m because of my chest. even zipped, it is a tad big, but nothing that i cannot deal with. i don't really see the swing in the dress, as it does not flare out in any way, but is certainly is loose and flowing, bu",5,1,1,General Petite,Dresses,Dresses +1059,45,,"Like other reviewers, found leg more flared/straight than pictured. i wore all day at work (desk job) and didn't see any wrinkling.",5,1,1,General,Bottoms,Pants +1059,20,"Great, comfortable pants","The pants were true to size in the waist but they were a touch long for my 5'5"" 120 lbs frame (i got a size 0). they did stretch out a little during the day (i wore them about 10 hours), but not nearly as much as the other reviews led me to believe. however, they were a little loose on my legs when i first put them on, which i liked.",4,1,0,General,Bottoms,Pants +1059,30,Love these pants,"I bought these pants on a whim while i was at my local retailer. i was so delighted after trying them on because i've never tried on a pair of linen pants that i actually liked. they definitely have more of a flair leg rather than straight leg like the picture suggests. i wore them for several hours at a party and they didn't stretch that much on me. i agree with the other review in that they do get a little wrinkly but not much more than what i would expect from linen fabric. i'm 5'3"" so t",5,1,5,General,Bottoms,Pants +1030,45,On trend,"These jeans fit pretty well on my petite frame, although wish they were more cropped. for reference i am 5'4"" 110 lbs. i was looking for frayed jeans for this fall and these jeans are on trend. i may look at petite options which would be truly cropped. overall they are very stretchy skinny jeans and have a nice dark wash.",4,1,0,General,Bottoms,Jeans +860,32,Ugly design,"So i bought this, even after seeing the other reviews. because i love the designer and their things are normally cute and different. this fits just as others describe. it was not flattering to me at all, 5""2. had to go back.",1,0,2,General,Tops,Knits +228,53,Great for around the house!,"I understand what the previous reviewer meant when she says these are great for around the house. the yarn is thick but the weave is open so they are nicely springy but not very warm. + +they look perfect with my birkenstocks so i'm getting then in all colors.",4,1,2,Initmates,Intimate,Legwear +666,35,,"Very cute and comfortable!does run big, i used the size chart and it's very generous-would order down a size next time.",5,1,0,Initmates,Intimate,Sleep +860,32,The taupe is to die for,"I immediately picked out this in the taupe color at the store. the black was pretty basic looking, but this color is gorgeous. it's quite flowy on me (i wear an xs/s most places but usually small in tops here) the sleeves stretched out a bit after a day of teaching too. one of my favorite tops at retailer right now!",5,1,3,General,Tops,Knits +1112,40,Snow bunny coat!,"This jacket is amazing! i at first bought the medium because that is what i usually wear on top. when it arrived in the mail i put it on asap. it fit but was definitely too form fitting to wear a sweater or long sleeve shirt underneath. so i called the store and asked them to reserve a large and that one fit perfectly! it's loose enough to wear something underneath but not so loose that it looks to big. it is so soft and cozy, and the hood is my favorite part!",5,1,0,General,Jackets,Outerwear +920,42,"Overpriced, even on sale","I purchased the blue s (140lbs, 5'8"", 34b) and this was very large and boxy on me. not altogether unflattering but not so flattering that it justifies the price. the blue color is very pretty in person--darker and slightly marled. however, although this sweater is certainly cashmere (and very soft because of it), it is very thin--to the point that i consider this a ""top"" rather than a ""sweater."" the silk panel in back is pretty but, again, thin and unlined. i think that, even on sale, this is ov",2,0,3,General,Tops,Fine gauge +1086,39,This is better in person,I tossed this in my bag (online) at the last minute thinking i'd give it a shot. so glad i did. this is dress is so simple and so much more flattering then i expected. you can dress it up or down. i wish it was about 1/2 inch longer but still a good length for me (things are always too short for me). the material could be a little thicker but then i suppose it would lose the bounce that is so key to the flow of thing with this dress.,5,1,13,General Petite,Dresses,Dresses +1066,57,Best pants ever,"I love these pants! super comfy - fit well and a great color. i knew immediately when i put them on that i would love them. and the button fly? to die for. +wore them and they did stretch out a bit by the end of the day but they didn't look awful and super baggy. i bought the other color in a size smaller so they might be better. a great pant for summer!",5,1,0,General Petite,Bottoms,Pants +860,48,Give it a pass,"Pretty shirt on the hanger, but there's a goof in the design. when i tried it on my 3d self, there became this weird ruffle right beside/below the bust that you can barely see in the right of the photo, now that i know it's there. the tulip nature of the shirt is pretty in concept, but where the top layer starts makes the fabric stick out right by your bust and it's not flattering, and i'm just a 34 b.",2,0,0,General,Tops,Knits +416,37,No support = lots of side boob,"This suit is so beautiful, and the quality is great. i wanted it to work out, but unfortunately my chest size is not compatible with this bathing suit. i am a 36c and there is zero support (which i assumed when i ordered it, but it was so lovely in the photo i had to give it a try). for those who have a smaller bust, or are more comfortable with a little sexy side profile, this may be perfect. i ordered the large, and the bottoms were a good fit. i am also very petite and the length was good one",4,1,1,Initmates,Intimate,Swim +1066,64,Great crops,"Just got these and love them. the blue color is a great bright shade without being too crazy and they fit well. i'm 5'7"" 138# straight build and ordered 27 (true to size for me.) they have loosened up throughout the day and the waist and hips are a bit baggy now but i like that they're not ultra-tight. nice light fabric for the summer.",4,1,1,General Petite,Bottoms,Pants +938,34,Nice basic with details,"This sweater feels good and not itchy at all. i'm long waisted and the small hit right at my hip bone/top of my low-waisted jeans, so it's kinda on the shorter side. i liked it that way, bc it's not baggy at the bottom and is figure flattering. i tied the tie twice and thought it looked better. i have long arms and was excited the sleeves go down to the middle of my hands. it has little hole detailing down the middle, but not so much that you'd have to wear a shirt underneath.",5,1,5,General,Tops,Sweaters +228,25,Love!,I love these socks! they are super thick and comfy. the quality feels great and they were cheap!,5,1,0,Initmates,Intimate,Legwear +228,37,Great for around the house but nothing else,"These are just some classic ""around the house"" type socks. they're not comfortable enough to wear with some boots or anything. just super snuggly and soft for lounging purposes only. i love them and am contemplating buying the other pair. i got the blue and white ones to go with the farrier tee in blue and white. i'm kind of bummed that i can't wear these anywhere but no worries. they'll be great with some joggers and a sweatshirt while i work the crossword over a cup of coffee. would recommend",4,1,5,Initmates,Intimate,Legwear +1030,39,So cozy,"These jeans are super cozy! the material is so soft, they feel like i'm wearing yoga pants. the color has a little more depth than in the photo, not just straight navy as it appears. my only issue is because they are so soft, they lose a little shape after worn all day. love mother jeans!",4,1,1,General,Bottoms,Jeans +666,53,Great design and comfort,This is s very comfortable cami with comfortable and nicely designed straps in back.,5,1,0,Initmates,Intimate,Sleep +228,57,,This socks are very comfortable however they do feel a little big around the top so for people with a small lower calf might find them a bit big. that being said they are very comfortable.,4,1,0,Initmates,Intimate,Legwear +921,38,Boho brilliance for below freezing temperatures,"If you're like me and wish you could carry on downtown boho dressing when the time to take out your puffer comes to pass, this tunic is essential. though the silky alpaca-wool knit is thicker than gauzy cotton, it drapes just as well and keeps one's self warm and cozy without the bulk of a sweater. i was concerned with the elastic banding at the bottom of the tunic because i'm only 5'4"", but high-waisted, and banded hems tends to always hit me at the wrong spot. luckily, it's not very binding, s",5,1,4,General,Tops,Sweaters +1112,44,"Beautiful, elegant and soooo soft","I can't stop rubbing the faux fur. faux fur can be cheap and tacky but this looks and feels beautiful. it has two hook and eyes and comes with a third which i used to add another hook on top, above my bust. its roomy so size down if you want it fitted. i'm 5'1"" and 120 with a 34 c bust and a short torso and i got a small. i could have worn the xs but i like the fact that the small allows for a good weight cashmere sweater underneath without feeling tight. the hood is the best part. it's so drama",5,1,0,General,Jackets,Outerwear +1030,40,Best jeans!!!!,This was my first mother denim purchase and i've already gotten another color. love the feel of this denim. it's heavy enough to smooth out any imperfections and manages to stay tight (not stretch out) while being comfortable. this color is perfect too. so flattering. love!!,5,1,2,General,Bottoms,Jeans +1086,36,,"Simple, classic, figure flattering, and reasonably priced!",5,1,5,General Petite,Dresses,Dresses +860,33,Costume material,"I ordered a small from the online shop knowing it would be drapey, but it's much more than drapey. and the front draping looks like halloween costume material - not chic or sophisticated. sadly, i will be returning this top.",2,0,2,General,Tops,Knits +1086,36,Poor quality,Dress is much different in person. thin ribbed cotton. a little tight for xl. it looks like a throw back dress from contempos. returned and would not recommend,1,0,6,General Petite,Dresses,Dresses +860,73,Cool for every figure,"This is a great top, not cheap but funky! it would look nice on any figure. the two blacks on my top are more alike than the picture shows. great value for a pretty party top - but it can go anywhere!",5,1,1,General,Tops,Knits +860,43,"Comfy, flattering and beautiful!","Love this top! it is almost universally flattering, and washes beautifully. it is as easy as throwing on a sweatshirt with leggings, but soooo much better! if you are on the fence on this one, i highly recommend you give it a try.",5,1,3,General,Tops,Knits +1066,40,Everyone needs a little blue pants,"I love everything about these pants- the color, the fit, the detail. oh, and these have a button fly. i didn't realize that when i ordered them, but i love it. i haven't had a pair of button fly pants in so long. these have a nice stretch to them as well. hei hei knows what they're doing. and i got them on sale. thank you retailer!!",5,1,0,General Petite,Bottoms,Pants +1112,42,Beyond lovely,"This actually might be my favorite thing that i have ever owned. the jacket is so beautiful and so cozy jacket. i agree that the pics do not do this amazing piece justice. for reference, i am 5'7 140 lbs and bought the large to allow a bit of room for layering.",5,1,0,General,Jackets,Outerwear +1112,36,Amazing soft jacket,This jacket is so adorable on! i have no idea why retailer styled it with a chunky cream turtleneck under it considering the jacket is also cream and it's hard to tell what it even looks like?! i've been searching for a coat like this to give my leather jacket a break. in my opinion a lot of the faux coats look like they have cheap itchy material. this definitely does not! it is super soft and the faux fur is of high quality. the inside is also lined and feels like a very thick soft jersey sweater,5,1,2,General,Jackets,Outerwear +860,34,,"I tried this shirt on in store, and loved it! it has a flattering fit and is very comfortable. i read some other reviews about the quality not being good, i don't feel that way at all. the knit and the silky/satiny materials both feel like quality to me. the one concern i have is that it may wrinkle easily. i'm 5'4'' and 125lbs and the xs fits well. i plan to pair it with skinny jeans.",5,1,4,General,Tops,Knits +666,36,Cute and comfortable,Very comfortable to sleep in. doesn't bunch up or twist. love this.,5,1,0,Initmates,Intimate,Sleep +860,42,"Good idea, poor execution","This tunic is a perfect length for leggings. the mauve color got rave reviews on my first wearing. and the mixed media and asymmetrical styling gave the garment a unique appeal and made it quite flattering. however, when i wore it a second time, i noticed two micro holes in the sleeve. one near my wrist and the other at the shoulder. since i take extreme care when laundering my clothes, it seems this will have to be a return as the jersey knit is not strong enough to hold up in the delicate cycl",2,0,0,General,Tops,Knits +416,27,,Very cute!! true to size,5,1,0,Initmates,Intimate,Swim +1112,52,Amazing coat/jacket,Have kept my eyes out for a jacket like this for several years now. and this one is more than i had hoped for. in the store i was between a l and m. so went with the large. after getting home and trying on a couple more times i decided to order the petite large. jacket is roomy warm and so so soft. added bonus w the hood.,5,1,0,General,Jackets,Outerwear +1066,35,,Got them on sale in blue and love the color! they are flattering and i like the waist and pocketed area bc it is also comfy- waistband and hips are loose but not too loose. tts. i'm 8/10 and took a 29.,5,1,5,General Petite,Bottoms,Pants +168,35,I wanted to fit to work!,"I tried this top on today because i was really hoping i could get the shorts and robe set. the shirt was softer than i was expecting, but when i tried it on it was an uncomfortable fit. there was some tightness in the armpit area, which is not where i would have expected it to be tight. the rest of it was comfortable and reasonable looseness so i don't think a size up would have been a good option for me. i like the design a lot so i was really disappointed it didn't fit. it is between a lightwe",4,0,2,Initmates,Intimate,Sleep +1070,59,Perfect pants,"Love these pants. very figure flattering and fabric stretch holds up well. no sag at end of day. i am 5'6.5"" and size 6 hits ankle bone. i love these so much i went to order a second pair and size 6 sold out so i ordered an 8 . will see how a size bigger works. i think may give a looser look but be comfy. so happy to have these. wear with booties and my tunics, peasant blouses and much more. highly recommend.",5,1,1,General Petite,Bottoms,Pants +1084,54,Love love love!,"I love this dress! i was so excited when i saw this hanging in my local retailer, just one in my size (it must have been a return). i tried it on and fell in love with it! i am 34b bra size, 130 pounds, 5'9 tall and an xs fits me great! i didn't find it to be tight on top for me, as other reviewers have said, and the skirt is very flowy. i have worn this dress so many times since i bought it and have gotten compliments on it each time. i bought the green color-- its a beautiful print, and usually",4,1,0,General,Dresses,Dresses +984,39,Versatile jacket,Great color and shape for all seasons. i was so elated to get this piece on sale! love it!,5,1,0,General,Jackets,Jackets +1084,37,Love but runs small in the shoulders and bust,"This is a heartbreaker! love this dress's colors, length, flow, beading, and style but its extremely tight in the shoulders and bust. hate to see it go back....",4,1,0,General,Dresses,Dresses +1070,32,,"How has nobody reviewed these pants yet?! love them! they're more like really nice, structured leggings, but thick enough to be substantial pants. they're stretchy, hold their shape, flattering on my big hips and thighs, and have no distracting elements like belt loops or protruding pockets like some of my other pants, which makes it hard to keep a smooth silhouette under a longer shirt. the only bad--and it wasn't even really that bad--is that these are longer than the 27"" advertised. i'm 5'5"",",5,1,6,General Petite,Bottoms,Pants +830,51,Very femenine and pretty!,"Well, i totally disagree with the previous reviewer on this one! i think this top is very pretty. yes, it does hide any flaws in the tummy, but it is not wide nor does it make you look pregnant (side or front view). i am 5 ft, 2 inches, broad shouldered, 36c and the small fit nicely (i usually wear a small to medium in retailer tops). i am thinking of purchasing the xs as there is still plenty of room around the chest/arm area. the lace is pretty, looks good worn with a dark colored pant. the only",4,1,9,General,Tops,Blouses +996,39,Skirt version of column dress,"Just as nice and comfortable, except this one ahs the bonus of being able to pair wit different tops...too bad i ahve the dress in the same color! + +soft, stretchy, stays in place (lining dind't crwal up when walked, but dind't try the petite...# + +fit: true to size, if you usually need petites, you will #otherwise it fals in an awkwards pot on your calves#. + +my usual xs was comfrtable and flattering, not clingy. i would get it if i dind't have hte dress# plus of dress is i don't have to thi",5,1,2,General Petite,Bottoms,Skirts +927,48,Beautiful!,"Maybe the softest sweater that i own. buy it, and you won't regret it!",5,1,0,General Petite,Tops,Sweaters +893,53,Dry clean only in casual top. no way!,"Tried this on in the ""onsie"" area of retailer store. i usually am between a medium and a large. the medium fit fine. the material in this top is substantial - very thick and soft but it is very thick as a warning. more for a pretty cool spring evening vs the heat of the summer in chicago. not sure how much the material would stretch out either. as it seems like it could be the type. also, it is dry clean only, and on such a casual top, that is a real deal killer for me. + +regarding the style of",3,0,6,General,Tops,Fine gauge +1084,49,Best foot forward,"I was recently asked to be a speaker at an important fundraising event for homeless & abused women in our city. i wanted to appeal to the affluent crowd by my physical presentation, and let my words follow with a heartfelt presentation of the value & worth of these precious ladies. + +retailer has continually helped me present polished & professional, yet still show my personal style & inclusive nature. + +it gives me that extra edge of authenticity & encouragement to do the most w/what has",5,1,0,General,Dresses,Dresses +1084,32,Great holiday dress!,"I highly recommend this dress!!!!!! i was a little nervous about purchasing this dress online because previous reviewers were saying that it creates static, but nothing that a little static guard couldn't prevent! :) i purchased a medium petite and i am about 5 feet tall, usually a size 8 in dresses and it fit perfect! (wore for thanksgiving) the fabric and style are very forgiving and the dress sort of flows with you when you walk, which i love!!",5,1,1,General,Dresses,Dresses +984,32,"Too wide, too short",This jacket was too wide and the length in the arms too short. i wear a medium in almost any article of clothing and felt like i was swimming in a short little jacket. the ratio of how wide it is to the length is not for me but might work well with other body types. the arms were definitely too short.,3,0,5,General,Jackets,Jackets +984,29,"Great, easy to wear jacket","I was so pleasantly surprised when i received this in the mail, because it's much more substantial than i thought it would be. it's perfect for fall and spring and the lining is very soft. i thought it'd be more difficult to wear but it goes well with everything! i ordered my usual size small and am happy with the fit.",5,1,0,General,Jackets,Jackets +984,41,Looks great on the photo but was too big for me,"I wanted this jacket to fit on me like in the photo, but i guess my frame was still to petite. the fabric was also on the cheap end",1,0,0,General,Jackets,Jackets +1084,58,Perfect dress!,"This dress is very flattering on and can easily be dressed up or down. i was nervous it might be too flowy, but it lays very nice and is so pretty on!",5,1,0,General,Dresses,Dresses +996,32,"Beautiful design, poor quality","I almost bought this skirt yesterday in store, but decided against it because the fabric was subpar. the skirt i tried on was snagged and unraveled. i selected another skirt, which i purchased. as the sales associate was folding the skirt, i noticed that this one was also snagged and unraveling. despite loving the style and fit, i had to be realistic with my lifestyle and decided to return it then and there. if there were two severe snags on two skirts before even leaving the store, how would th",3,0,3,General Petite,Bottoms,Skirts +830,64,,,1,1,0,General,Tops,Blouses +168,63,Checkerboard sleep top,I only say that this sleep top runs small because it shrinks a whole size after you wash it. i'd recommend that you order up a size for that reason. otherwise it is cute. i am ordering the shorts to go with it.,4,1,0,Initmates,Intimate,Sleep +1084,34,"Had high hopes & really wanted to love it, but...","It just didn't work for me. i don't know if it is my fair complexion and untanned legs, but this dress was a strike out. the orange floral design and beading is beautiful and the fitting i would say is pretty tts. for reference, i am 5'7"" and 145lbs with 36"" 30"" 40"" measurements and i purchased a medium. the chest and arms were not too tight like other reviews stated. the length is about the length in the picture and a lot of fabric to make it very flowy. overall, very good quality and beautiful",2,0,0,General,Dresses,Dresses +949,71,So cute and stylish!!,"Was in my local retailer today and just had to try this on! it appeared to be a structured jacket, but it is actually a sweater-jacket! gives a very ""chanel"" vibe and looks so chic. i plan on wearing it with just about everything. i would probably wear it open most times, but i love the closure with the button detail. i am large busted, but petite, 119 lbs., 5'2"", and this was way more flattering on me than most jackets. normally, the sleeves are too long, but these were just right! i am sure i wi",5,1,1,General,Tops,Sweaters +984,31,Awesome jacket/blazer,"I own the green version of this jacket and ordered the ivory as well because of the sale price and because i loved the green one so much. i highly recommend this jacket to wear over dresses, with jeans or skirts all year round!",4,1,0,General,Jackets,Jackets +984,57,Simple and clean,"Lightweight and casual, i picked this jacket up on sale. i usually don't like sale items aggressively priced- there is usually a reason why it was a difficult sell to begin with, but this was a pleasant surprise- as in no surprise! picture depicts color and material well. great throw-on for running errands. clean lines, nice simple detail. only thing that is slightly annoying is that the off-center zipper makes the wider side flap over when not zipped, but this is true with almost any top cut th",4,1,0,General,Jackets,Jackets +984,40,Cropped jacket,"I ordered this to go over a dress. i wanted the jacket short, to not cover the waist of the dress. on sale, i think it is a great bargain. the sleeves are long on me, but i rolled them, which i thought was intended since they are lined. the medium fit me. i am usually an 8 in tops. the ivory color is almost a pure white.",4,1,5,General,Jackets,Jackets +949,49,Perfect jacket,"I love my new blazer! the material is very soft and comfortable, and very nice quality, but not too ""wooly"" to wear into spring. the cut is very flattering, and the patterns and fringe details are very eye-catching. i am 5'6"" and usually wear a size s in retailer and this small fit perfectly. they grey/cream color combo is gorgeous and looks very versatile, and can be dressed up or down. + +the one alteration i suggest is moving the button; at the shoulder it gives a wide boxy shape. my tailor wil",5,1,1,General,Tops,Sweaters +949,58,,"I wear size 8 , ordered a medium, fits great. nice quality, like that you can wear open or buttoned at the shoulder.",5,1,1,General,Tops,Sweaters +830,39,Lampshade,If you like to wear lampshades this is the shirt for you. beyond unflattering. boxy and seriously looks like lace was stitched to the bottom of a lampshade,1,0,8,General,Tops,Blouses +1070,34,Hugs in the wrong places,"I was very excited to receive these pants and wished they had worked out as the fabric is structured and yet comfortable. however, while stretchy they looked very tight on the thigh and yet were too big in the waist. i will acknowledge i'm a runner with somewhat muscular legs, but was hopeful these pants wouldn't cling to them. for reference, i'm 125 lbs and usually wear a size 25-26 in pants.",2,0,1,General Petite,Bottoms,Pants +873,21,Terrific turtleneck tanktop,This shirt is super comfortable and super chic. it looks great and feels great.,4,1,0,General,Tops,Knits +921,38,Amazing find!,"I can?t describe my love for this sweater! simple, to go outfit paired with jeans and boots, it?s an easy go-to sweater in a pinch on a cold day. i have sensitive skin, so i wore a tank underneath and was fine. loved getting this sweater with the extra 40% sale price! i purchased the medium (2) and it was tts.",5,1,0,General,Tops,Sweaters +726,48,Love,"I absolutely love this pullover and am so glad i purchased it. it is the perfect weight for fall/winter, super soft, true to size. the diamond shape opening in back looks great with my strappy yoga bras, i have received compliments every time i wear it. i am 6', 144lb, slim/athletic build and often have trouble with sleeve length. this however is perfect & i can use the thumb holes as designed without stretching the sleeves in an awkward way. wish it came in more colors!",5,1,1,Initmates,Intimate,Lounge +726,29,Love!,So great! soft and a great sweater but still gives you a shape to your body.,5,1,0,Initmates,Intimate,Lounge +862,37,"Very comfy, cute, light top!","This is the perfect top. it is adorable, and the fit and cut of it is forgiving.",5,1,0,General Petite,Tops,Knits +833,59,Extremely delicate top,"I so wanted to buy this top - especially during the 30% off tops sale this past weekend - so it would have been just about $100. but while it was well made, i could see it easily snagging or getting caught on jewelry. if it was on sale even more, i might have considered it. it could be extremely versatile, with jeans, black skinny pants or leggings. really loved it, but couldn't see spending that much money on it.",4,1,0,General,Tops,Blouses +864,31,Too fitted at bottom,"Perhaps i have gotten too used to flowy shirts, or the cut of this was not right for me, but it felt too fitted around the rear end and the shoulders didn't lay right on me. sizing up would have only made it too big in the shoulders so i returned. i am 5'5"", 135lbs, 34c, curvy/muscular frame and ordered a size small.",2,0,7,General,Tops,Knits +864,32,Love this!,"Although it was a bit of a battle with my bra straps, it was completely worth it for date night. hot shirt! very comfy and quality fabric. next time, i may just pin or tape my straps...",4,1,3,General,Tops,Knits +833,39,I like it enough,"But runs large. i tried on the regular 0 in the store and it was very pretty but baggy. would definitely need a tank if i were to wear this to work. lace is romantic and i do like the button details. i would give it a try but for me i will take my chance and wait for sale if it makes it there in my sie. i need 00. petite already gone sadly. + +reference 115 lbs 30dd and 26.5 on waist.",4,1,6,General,Tops,Blouses +945,39,Torn,"I ordered the xxs p, but the actual cardigan is a xs p. i was bummed as the xxs p are sold out. well, it fits ok anyway. (115 lbs, 30dd, 26.5 in waist) +beautiful sweater but oh so itchy. i think wool should be listed first (like ingredients) it is really itchy. why i so torn. i want to keep it because it is nice, but it is itchy. i will have to try it with a long sleeve shirt underneath, i don't think i can hang with ah short sleeve or sleeveless. colors and pattern are warm neutral, not red.",3,1,0,General,Tops,Sweaters +927,46,"Shorter than pictured, sheds a lot","I ordered this in size xl. the ivory was as pictured. the lace details were well-done. but, the length was much shorter than on the model. i'm 5 ft. 5 1/2 in. for reference. even the sleeves were on the short side, above my wrists. the main problem is how much it shed. just in trying it on, there was fuzz everywhere so i returned it. i love when retailer mixes lace into the knit of sweaters. this one just didn't work out.",2,0,0,General Petite,Tops,Sweaters +927,28,Love this top,"I have received so many compliments on this top from both men and women. it is so comfortable and cute, i never want to take it off. :p",5,1,0,General Petite,Tops,Sweaters +945,53,Beautiful but itchy and tends to run.,"This sweater has beautiful colors & cute fur collar which can removed (nice). i bought it impulsively. when home i tried it on with a tee as sweater is warm. i had to take it off immediately as it is scratchy & itchy. i could not wear this without a long sleeve tee underneath, but i would be too warm. in the store, several sweaters had thread runs in them and from the weight of the sweater. given the itchiness and potential to run, i am returning the sweater.",4,1,0,General,Tops,Sweaters +862,45,Stuck!,"I was so excited when i ordered this, i love comfy clothing this looked perfect! when i received it, there was a weird smell with the top. convinced that this could be from storage or something, i washed it. the smell did not go away. i have washed it 3 times now and the smell will not disappear! i have not yet worn but as i have washed it, not able to return it. the top looks and feels great - just the weird smell. now i am 'stuck'!!",1,0,1,General Petite,Tops,Knits +873,52,Love it!!,I purchased this in the red (really more of a brick color) and wore it so much that i went back to get it in black too! i received a ton of compliments when i wore it! the fabric is a nice weight and it hangs beaufully. looks great over skinny jeans or leggings. i plan on wearing it year round!!,5,1,1,General,Tops,Knits +862,37,Simple & structured,"I love this tank. i got it in the turquoise and just ordered the blue. this tank is indeed linen and does not wrinkle. it's fitted without being too tight. i have a somewhat shorter torso and narrow waist and athletic build and this looks great! i'm not a fan of flowy tops in general so thrilled to find this easy, casual piece. i ordered an xs but am usually either xs or s in retailer.",5,1,3,General Petite,Tops,Knits +921,42,Cropped and boxy,"It is a beautiful sweater, but it is cropped and boxy.",2,0,0,General,Tops,Sweaters +873,59,Comfy,Love this top! red color is a bit orangey for my taste but overall a fabulous piece.,4,1,0,General,Tops,Knits +862,49,Great top,So glad i purchased this top! it has great style and can be matched with just about everything. the material is very soft and it seems really durable.,5,1,1,General Petite,Tops,Knits +862,40,Great shirt but runs large,This is a nice shirt and very flattering. the ivory is actually more of a tan/brown- i would not call it ivory or off white. the material has a nice texture to it as well. it does run big and long so keep that in mind when purchasing.,5,1,7,General Petite,Tops,Knits +699,37,So flattering!,"I love these cozy, fashionable leggings. they are super flattering and thick enough to wear to yoga or out and about in the real world. i will definitely be getting another pair! they seem true to size. i am tall (5'11) and usually wear a lg.",5,1,2,Initmates,Intimate,Legwear +945,50,Stiff and itchy,Loved the look of this sweater online. was disappointed when i took it out of the package i was surprised at how stiff and itchy it was. i ordered my usual medium and though at first they shipped the wrong size it was small all over. it felt cheep definelty not worth the high price. knew it was definitely going back,1,0,0,General,Tops,Sweaters +1025,32,"Great, comfortable jeans","I love these jeans. they're incredibly soft, super comfortable and hold their shape. i can wear them for hours on end and i don't get that droopy, snagging look jeans can get when they stretch out. + + +fit: i am normally a 29/30 depending on the jean. i took these in the 30 - i usually have a difficult time finding skinny jeans that fit my legs and don't fall off my waist. these have enough give to accommodate my larger legs, but the material holds well, so i don't need a belt to keep them up",5,1,0,General,Bottoms,Jeans +833,44,Pretty top but too delicate,The top is gorgeous and bohemian like with a loose fit. the top arrived with a small black stain and some of the lace already ripped. it might be too delicate for me to even exchange for another and wear. i am going to have to return it.,3,0,3,General,Tops,Blouses +927,41,Great versatile piece!,I bought this tunic for my mom as a birthday gift. it is very good quality and will look cute for fall too.,5,1,6,General Petite,Tops,Sweaters +476,53,Definitely size up,"If your looking for a nice quality basic tee, this is it. nothing special, but the fabric is a nice soft cotton with a little stretch. the cut is long and lean so i would highly recommend sizing up. i sized up from my usual medium to a large and it's still quite form fitting. i'm 5'2"", 35a/b bust, 28 waist, 39 hips.",4,1,4,Initmates,Intimate,Layering +638,70,Siamese cat pattern,"For cat lovers in particular, these socks will grab your attention. they are fine quality ankle socks. the kittens are really more moss green than beige.",5,1,0,Initmates,Intimate,Legwear +833,28,Lovelove!,"Retailer has done it again! i love this top. i purchased it for our engagement photos. i am typically a small or medium, and decided to size down for this one. i purchased a small and it fit perfectly! its not near as long as it is in the photo, which pleased me. i did read about busty ladies having a problem with the fit - and i can definitely see how that would be an issue.",5,1,0,General,Tops,Blouses +927,54,A little boxy,"I love this tunic, the detail the weight, the fringe. but it runs big. i would have done better to have ordered one size smaller. i think it would have looked more tailored if i had gotten the medium.",4,1,2,General Petite,Tops,Sweaters +864,39,Slouchy soft tee with one problem....,"I ordered these in both colors. the red is much deeper in person, more like a burgundy than pictured here. these tees are very slouchy. if you wanted a more fitted look, size down. these are very soft and very comfy and will pair well with ponte leggings and skinny jeans. the overall quality seems very good, although they are thinner than i thought they would be (they seemed like they would be thick and stiff to me based on the photos). +---------- +overall these are very nice. but there is one is",2,1,42,General,Tops,Knits +873,26,Better than it looks on the model,"This top was surprisingly very flattering. it hugged my curves in just the right way and the slits on the side are a nice touch. i'm 5'2"" and about a 34c and the xs was tight (in a good way) around my chest and then more flowy after. soft material and the red color is beautiful!",5,1,1,General,Tops,Knits +833,36,Still not sure about this,"After seeing the picture online, i was coveting this top for a while and then retailer days happened! i immediately ordered it, but i'm still not sure if i'm going to keep it. i ordered a 2p (0p was sold out) and i was assuming it was going to be a little big, but i like flowy. the sleeves and chest are perfect but the top is cut so generously in the back (and it's a bit longer in the back as well) i feel like it looks like i'm wearing a wedding dress. i love it from the front. i'm going to try to",3,0,1,General,Tops,Blouses +864,60,As pictured,"I ordered the red and am watching for my size in the green to come back into stock. i was already expecting my bra straps to be exposed, not a big deal as with shoulder length hair it covers them so i found this top to be exactly as pictured/described. it fits like it looks on the model and i thought the color to be spot on. i have washed it once in the washer on cold and dried only for a few minutes on low as i like to do with delicate knits to regain shape and i think it looks as good as it di",5,1,0,General,Tops,Knits +927,22,Falll in love,"Fell in love with this sweater the minute i saw it. the crocheted front is stunning. the small fit perfectly, 5'5"", 36c. i am usually between a small and medium so if a small is usually roomy you may want to size down. it's a medium weight, soft and comfortable, not at all itchy. perfect for dressing up or down. look forward to many years of use from this fun, classic style cardigan.",5,1,9,General Petite,Tops,Sweaters +927,22,,"This sweater is beautiful! not only is the lace front gorgeous, but it is incredibly comfortable and so well crafted. definitely my favorite cardigan now.",5,1,0,General Petite,Tops,Sweaters +921,47,Cool sweater,"This sweater is really pretty in person, and well-made. every time i wear it someone stops what they are doing to compliment it; one person asked if it was home-made( in a good way) i will admit that i would not have paid full price and did get it on sale, and in that case it's worth it. the sweater does have an unusual cut. the waist is boxy and the back is a bit shorter, but somehow it works. for me i see it as a cool style and not a mistake. it's super warm and i love it.",4,1,1,General,Tops,Sweaters +945,39,Fun and gorgeous,"This is a really elegant sweater coat--the faux fur trim adds a lot of flair and the ""mismatching"" color blocks on each side keeps things playful. the material is soft and cozy, but my one concern is that the threads can get snagged. otherwise, though, it's a winner!",5,1,0,General,Tops,Sweaters +873,54,Nice slimming look,"Love this top. makes me look slimmer, comfortable as well",5,1,0,General,Tops,Knits +873,26,Warm weather winter,"This top is perfect for wanting that fall/winter look in warmer climates. the slits on the sides allow for a lot of movement and turtleneck is just right. i love wearing it with my paige bell canyon flairs and some clogs! my only thing i wish was that it was cut in so much at the top, as how you can see at the model's armpit, wish that part was a little wider it would be a bit more flattering. otherwise great top, i have it in black and been thinking about getting it in the orange color too!",5,1,0,General,Tops,Knits +1025,45,,Soft and stretchy denim. beautiful color. i do wish they had a tiny bit higher rise but they fit like my other paige skinnies.,4,1,0,General,Bottoms,Jeans +833,56,Very large; lace is kinda coarse,"Thought i'd love this top; i'm a sucker for lace anything from retailer. but i found the lace, while pretty, to be quite rough, which to me indicates a lower quality. and i guess i should've known that it would be very swingy (photos show that) but it really overwhelmed me. for reference, 5'5"", 125 lbs, 34d. sad, but this went back.",3,0,0,General,Tops,Blouses +921,54,Cute but chunky,"While i love the design, this sweater even in the small is too over-sized for me and was unflattering. it was returned.",3,0,0,General,Tops,Sweaters +862,52,Great for casual work wardrobe,"I work with children and have a casual dress environment, this top gives me much needed style to my work wardrobe.",5,1,0,General Petite,Tops,Knits +833,35,,Super large and a very weird cut. the sides were much shorter than the front and back and this just looked awful on me.,3,0,6,General,Tops,Blouses +862,38,A nice transition top,"I tried this top in the store and i really like it. i am 5'2"", 34b with wide shoulder, tried on my usual size s in both colors and they both fit fine. however, i found that the ivory one fits a little bit loser compared to the blue one (by the way, the blue looked more like dark grey in person). the length of the ivory one seems to be a little bit longer than the blue one as well. since it is a drapery top, i like it to be roomy, so i purchased the loser/longer ivory one. it looks great with a j",4,1,12,General Petite,Tops,Knits +945,35,Perfect fall sweater,"I adore this sweater! is it a bit itchy? yes. do i care? certainly not enough to send it back. great length, hangs nicely. unique without being gaudy. great purchase.",5,1,0,General,Tops,Sweaters +833,54,Love,Finally got cold enough to wear this shirt. i love it...got lots and lots of compliments. great quality,5,1,0,General,Tops,Blouses +369,36,Not comfortable because of itchy tags,3 tags - one quite huge (about 2'' by 3'') - very itchy. so i cut out the tags and they are sewn with some kind of hard poky plasticy thread - now even more itchy! i will have to wear these inside out.,1,0,1,Initmates,Intimate,Intimates +927,39,,"Soft knit, perfectly finished, comfortable and looks great on the model and the previous reviewers' mom. it just looks too 'empty-nester' for my style (and i won't be until 2035!) this is a nice base for a creative dresser/accessorizer, which i'm not. i'm also messy so it's hard to keep ivory clothing coffee free. i'm glad i tried it on because it proves how great a label knitted & knotted is for quality garments. just had to pass on this for personal style reasons.",5,1,2,General Petite,Tops,Sweaters +945,39,Wish i could keep,"Beautiful sweater, unique knit mix and i love the color, but the fabric is too itchy. i was wearing a long sleeve dress underneath but the yarn was prickling my arms, bum and thighs. colorblock patchwork arrangement made me look extra top hefty and emphasized my trouble spots (upper back/arms). i ordered lp but it was too large so would recommend staying tts.",4,1,0,General,Tops,Sweaters +927,39,*another* grey cardigan? oh yes...,"I have too many grey cardigans. i also have a lot of oversized cardis. but i had to have this one because the stitch pattern is so nice and the yarns are so soft and snuggly. how could i resist? the weave is a bit open work but it still keeps me warm & happy. it also lays in a way that doesn't make me look bulky and top heavy, which my body type already is. i feel sorry for the first reviewer who kept getting subpar sweaters. mine arrived brand new in factory cellophane. i would advise that this",5,1,0,General Petite,Tops,Sweaters +945,64,Love but itchy for me,"Adorable & unique swtr & wld go w/ many things. note that 1 front pocket is slightly higher than the other. looks that way in the pic too. it's the ""retailer unique touch"". i don't mind abt that. it's too itchy for me. i ordered the sp to have shorter arms-fell just above my knuckles which is fine. i have many t-necks to wear under it but i decided i really didn't need another itchy swtr, so returned. no worry, retailer has plenty of other items of interest!",5,1,0,General,Tops,Sweaters +927,64,Just love mine!,"Surprised abt the prev review. i had picked mine up at the store a few months back. purchased my usual size s. it's a little oversized & soft. the front pockets really do appeal to me as always w/ a cardi. i wear the light grey cowled t-neck top w/ it called the ""carra turtleneck"" w/ paige black skinnys. i have the other colors in the t-neck as well which go well w/ it also. worn a few times when cool but lately it's been warm again. it's abt to be cool again & look forward to wearing. very comf",5,1,0,General Petite,Tops,Sweaters +945,30,Itchy!,"I tried this on in the store and i couldn't keep it on my body for more then 30 seconds. it's extremely itchy, which is a pity, because i do appreciate the design. :(",1,0,0,General,Tops,Sweaters +927,53,Fringed knit tunic,"The stitched v-neck tunic is a very charming piece to your wardrobe. it is soft and feminine, and has added charm with the fringed bottom. +it is a comfortable piece that looks great with leggings or skinny/straight jeans. +it is a loose fitting design, so it is a bit large. opt for a smaller size if you prefer a closer fit to your curves.",5,1,0,General Petite,Tops,Sweaters +828,37,"Cute, but boxy","I really loved the pattern on this shirt and the colors were nice too. something a little different than a plain white shirt. however, it was a little boxy on me and the material was kind of stiff (i am realizing that i am a sucker for soft material?). if this goes on sale, i may purchase it again, but i did end up returning the shirt.",3,0,1,General,Tops,Blouses +862,37,Perfect for a cool summer night,"Cute and comfortable top. very cute top that i will have to wait a few months to wear (until it is cooler out), but a great piece to pick up for a nice price! it is soft and comfortable with a generous amount of room, but not where you look too big. i ordered it in the blue, but really it is like a dark gray ? which does not bother me.",4,1,0,General Petite,Tops,Knits +833,32,Great top - beautiful details,Highly recommend this top. received lots of compliments on the day that i wore. recommend wearing with a tank top.,5,1,1,General,Tops,Blouses +873,48,Too long and shapeless,"I bought the orange color. i had a hard time styling it as it is so long. since it is a turtleneck and short sleeve, you'll need a jacket or sweater on top. nothing looked right. it has a relatively high and tight neck, so sweaters looked weird. short jackets didn't work either. i'm 5'4"" and bought the small. returned it for the charente cowl neck which worked much better",3,0,0,General,Tops,Knits +862,30,Love this top,"I sized up to a medium from a small and was glad i did. the top drapes nicely and the fabric is soft. + +5'7"" 140 lb 32 b, usually a small on top.",5,1,2,General Petite,Tops,Knits +1100,47,Beautiful summer dress,"This is a very beautiful summer dress with plenty of lightweight fabric. i loved the colors and the design. i know that some other reviewer complained that this is polyester, and it is, but it feels like chiffon. the only two complaints i have are- 1. the dress is large, so go a size smaller than you would normally, and 2. this is dry clean only! if this is polyester, why would they suggest that it should be dry cleaned only? that is going to take a chunk out of the budget to get it cleaned. oth",4,1,0,General Petite,Dresses,Dresses +883,48,,"I love this to throw over leggings, covers your butt. great fabric and quality. i bought white and gray, after they arrived i knew i needed a black one, but, sadly, it doesn't come in black :( +i ordered xs, and it's roomy. size down for sure.",5,1,0,General,Tops,Knits +883,52,Great staple tank!,"I ordered two colors and was happy with them both. i wear tanks under many tops in the warm weather as so many are sheer. i like a layered look, and having layers to peel as needed. these tops are great on their own as well! i recommend them to anyone wanting swing and extra length. really love the fabric too!",5,1,1,General,Tops,Knits +995,36,Beautiful,As beautiful as in the picture. couldn't go wrong with it. excellent quality and gorgeous color.,5,1,0,General,Bottoms,Skirts +1078,58,Perfect fun white dress,"I saw this dress in the store tried it on and , love! it is so hard to find a white dress that is not too fancy or frilly. this dress fits great and flatters my full figure (size 12 to 14), plus it has pockets! the woven material with the big fun flowers is accented by the plain band at the bottom which falls just above the knee. the center of the flower adds a nice three dimensional touch. i brought it in a large and i will wear this lovely feminine flirty beauty all spring and summer. from fun",5,1,15,General Petite,Dresses,Dresses +883,46,A bit too swingy,"I wanted to like this top, as the fabric was nice and thick, but found that it dipped too low beneath the armpits, which would be ok if your lats are in perfect shape, but i've always found that cut made mine look a bit saggy (and i'm not heavy). not great enough to keep in my opinion.",2,0,0,General,Tops,Knits +883,42,Summer staple,I bought this in white at my local store. great staple to wear in the heat of the summer or as a layering piece. i bought my normal size medium and it fits loose and flowy. i wore a nude racer back bra and felt comfortable without a cami. great basic addition to my closet.,5,1,0,General,Tops,Knits +1037,61,Polished versatility,"Missed these last year in black, so snatched them up when i saw them this season! great,versatile wardrobe piece - dress them up or down with knee-hi boots, booties, or great heeled pump with silk blouse or sweater. love something that i can wear so many ways, and look and feel polished and put together.",5,1,0,General Petite,Bottoms,Jeans +1059,23,More than a legging,These are as comfortable as any other leggings. they are thick enough that they are not see through (such a pet peeve when i see people with see through leggings). the front panel is so soft and i feel like it gives more of a professional vibe. they are a bit cropped/short but i'm tall so i'm used to this.,5,1,1,General Petite,Bottoms,Pants +883,38,Modern basic tee,"Quality fabric, nice fit and style. it's not sheer, which is ideal for such a lightweight tank for summer. i like the flowiness of the top, makes it comfortable, and super cute with fitted jeans",4,1,0,General,Tops,Knits +883,59,Wanted to love it,This is a great top and it fit me very nicely but it's much longer than it appear to be in the picture. i'm 5'2 and it was more like a tunic than a tank on me. if it were shorter it would be one of my favorite staples i'm sure. if you're very tall i think you will love it.,4,1,26,General,Tops,Knits +824,47,,"This is a beautiful top. the detail in the pattern of the fabric is gorgeous and the color goes great with jeans. love the design of arm holes, they don't show your bra! the only con is price, but it's a keeper.",4,1,0,General,Tops,Blouses +883,74,Lovely basic for summer,"I bought the white in a m, one size down from my normal. i could have gone with a s, given the swingy shape and forgiving nature of the linen. it is very light and comfortable. the length is a tunic on me, at 5'6"", so keep that in mind. if you dry it in the dryer it will shrink for sure. i never recommend drying linen knits in the dryer because they will likely develop holes. i love this tank and will probably buy another color or two. if they get black or grey i will def. buy another one.",5,1,10,General,Tops,Knits +883,36,,,4,1,0,General,Tops,Knits +824,39,,"I'm so excited that retailer is bringing back some of the gorgeous fabrics and details they used to have. the all over embroidary is beautiful, the cotton/silk blend is delicious, and there's enough shaping that the top doesn't look too boxy. i did end up sizing down for a slightly more fitted loo and for a smaller armhole. i also picked through a couple of tops to find the one i wanted, since the embroidery pattern wasn't centered on some of them.",5,1,0,General,Tops,Blouses +883,25,Not worth the price,"I got this shirt in stores because it went on sale! i was excited to wear it, but it felt a little long on me. i decided that after a regular wash, it would help it. after washing, it shrunk way more than my other retailer clothes! now the arm straps feel really tight and the fabric lost its flowy-ness. it's a classic shirt, but it may not be worth the price for the quality of the fabric. be careful when washing.",3,0,0,General,Tops,Knits +1037,19,Awesome!,"I love these pants. they are very flattering and comfy, and look like real leather. they are also machine washable which is great. i've worn mine 5 times already.",5,1,0,General Petite,Bottoms,Jeans +883,21,Bought in 4 colors!,"This is one of my favorite tanks i have ever worn. the swing style means you can wear it with any pants, and the straps are wide enough to accommodate a serious bra. i usually wear an l/xl but am wearing a m in these, so definitely size down at least once. you will love this!",5,1,0,General,Tops,Knits +883,37,Great if cut right,"I purchased this top in white and lavender. the white is very nice, soft and semi-sheer but not completely see-thru (fine with a nude bra). it is a swingy fit and slightly longer in back than front, but i expected that. i purchased a medium and it's plenty roomy. i am usually between a medium and large in retailer tops so i would consider it tts for a very relaxed fit. +the lavender fits slightly looser and the hem is really uneven. it looks in some of the photos like this might be intentional, b",3,1,1,General,Tops,Knits +1100,45,Perfect summer dress,"Simple style with a great fit. love the pink, mustard, and cream colors together. fits true to size.",5,1,0,General Petite,Dresses,Dresses +883,22,Great basic- but long!,I'm fairly petite and was not expecting this to be as long as it was on me- it's actually great for leggings or skinny jeans though- good quality material too!,5,1,0,General,Tops,Knits +883,31,Perfect,Love this tank! so easy to throw on quickly and still look out together!,5,1,1,General,Tops,Knits +883,26,Overall great look,"This top is overall very flattering! i am petite but large chested and the small fits great in the front, although it bunches a little bit in the back where the tag is - i think because of the crossing straps but nothing that will gender me from wearing it. i got the pink and i do wish it were a little more pink - it's so light that it almost looks white. overall i am happy with this sale purchase!",4,1,0,General,Tops,Knits +883,40,Love this top,"This tank fit perfectly and goes with everything, will be purchasing in more colors!",5,1,0,General,Tops,Knits +1078,27,My new favorite summer dress,"This dress is so much more stunning in person than in the photos. it's incredibly flattering, and i like how it pans out at the bottom. it also has pockets! although it has a built-in slip, it is a little see-through, so keep that in mind, otherwise, i can't wear it enough.",5,1,1,General Petite,Dresses,Dresses +995,51,Beautiful skirt,"This skirt is classic, very high quality and even better in person. it runs true to size. the material is slightly thick and will be great for fall, winter and early spring. my only complaint is, i wish it had pockets. i love tracy reese designs. i can't wait to wear this for thanksgiving.",4,1,6,General,Bottoms,Skirts +883,26,"Really thick, quality top. very swingy bottom","I bought the red and white. both tank tops were a nice, thick material- definitely high quality. i was hoping there would just be a little bit of swing at the bottom, just enough to be loose and flattering. but there is a ton of extra fabric at the end, which with a larger bust wound up edging into looking a little maternity. but i think it'd be great on you if you tend to do well with very drapey or swingy tops. it runs a touch big- im normally between a small and an xs, and the xs was not even",3,0,0,General,Tops,Knits +1037,33,Really nice,"I have been looking for leather or faux leather pants for a while, and these look great. they are more expensive than other faux leather pants, but the quality is much higher. i'm glad i didn't buy the cheap ""leather look"" pants i keep seeing. the only caveat is that they do run small, like the other reviewers said. i am a 27 pretty consistently in this brand, but i got the 28. they fit perfectly. because of the material on the back, they do not lose their shape, either. highly recommended.",5,1,0,General Petite,Bottoms,Jeans +824,38,Love!,"This top is so beautiful! really well made with solid embroidery - not the thin lightweight type. i thought it ran rather large but i don't have the bust to fill in the top area. i'm usually a small in tops (sometimes medium due to my height 5'8"") but went down to an xs so the arm holes didn't show too much. length was still great. a steal at the sale price!",5,1,0,General,Tops,Blouses +867,29,Fancy sweatshirt,"This is a beautiful long midi blazer that happens to feel like a sweatshirt. buy it! you'll look super classy and put together. i wear to work and going out. i've been noted to also curl up in bed wearing this because it's so comfortable and i forgot to switch into a sweatshirt. + +note i'm on the short side so the ""blazer"" ends up being a little longer for me. i happen to like it because it gives it a little more formalness of a longer coat while still being spring weight (jersey/terry on the",5,1,3,General Petite,Tops,Knits +1100,67,Another synthetic fabric...,"So disappointed in the abundance of polyester fabrics that retailer carries these days. especially at this price point. the pattern and style of this dress is beautiful, but i will never spend two hundred dollars (or even half that) on a poly dress. please add more linen, cotton, and silk!",2,0,25,General Petite,Dresses,Dresses +995,34,40's fun skirt,"I love tracy reese. this skirt did not disappoint. i saw it originally in store & fell in love. i waited to see if it would go on sale... and it did! + +i put on the size 12 & it fit gorgeously. the fabric is a bit stiff and bulky- but i think that's so it holds its shape. first thing i went into my living room & began twirling around. + +i am 5'5"" 150lbs. athletic build. the sizing is true to tracy reese. i'll need to get the skirt hemmed as it's quite long on me. but- this little gem will be worn",5,1,0,General,Bottoms,Skirts +1078,72,Very roomy,For me this had too much material and was a little too tent like. a beautiful dress but not my style. i prefer more a line with not so much material.if you are looking for something roomy this is a good choice.,4,0,1,General Petite,Dresses,Dresses +317,29,Unexpected find,"I was at my local retailer this weekend, needing a bathing suit for an upcoming trip and this set was sitting in the ""get it while it lasts"" section, in my size. i tried it on (top in two different sizes 32c and 34b and a bottom), and it was literally the only time in my life i've ever tried on a bathing suit and been happy with the results! great material, the design is retro but with a modern twist with the fabric, supportive top without squishing (went with the 32c...same as my regular bras), t",5,1,1,Initmates,Intimate,Swim +1037,29,Runs small,The front of these is the leather looking material. the back is just a stretchy material. they are comfortable but they run very small. i consistently wear a 27 in this brand. i purchased that size but could barely get them up. definitely size up. i had to exchange. they are cute but i'm not sure they are worth full price. the quality is mediocre and i think you can buy faux leather pants for less at another store.,4,1,1,General Petite,Bottoms,Jeans +1028,42,Great pair of jeans!!,"I was hesitant to buy these jeans online because citizens are generally not very forgiving, being that they don't have much stretch. they are always in the stack that i try on but haven't bought a pair of citizens in several years. these are totally different! the have enough stretch to be sculpting without being uncomfortable while keeping the substantial feeling that comes with denim versus leggings. i looooooove these jeans!!!",5,1,0,General,Bottoms,Jeans +883,26,I like the feel of the fabric but...,It feels soft and like a good quality. however it really does run large and long. i was looking for a loose tank but this one was almost a tunic on my short height and even with a cardigan to give it a shape didn't work out. i also thought it would shrink in the dryer but it didn't. also wrinkles easily.,3,0,0,General,Tops,Knits +1078,53,,,1,0,0,General Petite,Dresses,Dresses +1037,39,Love these!!,These pants look great on and i love the ponte fabric on the back of the pants. i usually wear a 28 in pilcro but i went with a 29 for these. great length and my only criticism would be the price. a little expensive for vegan leather.,5,1,3,General Petite,Bottoms,Jeans +1100,34,Absolutely beautiful.,"I somehow overlooked this online and saw it in the store. i am a 10/12 or m/l. i tried on the medium and it was tight in the bust but fit great in the waist. i ended up ordering the large online. the large felt good but a tad big in the waist. it hit my true waist though and looked good. i then noticed the straps were agustable. i wonder if i tried the medium and loosened the straps if it would have worked. either way i love the dress, so pretty and flowy. i wasn't bothered by the fabric and did",5,1,0,General Petite,Dresses,Dresses +1104,34,,"Love at first sight (via the internet); upon arrival, i was on the fence. +. +the fabric is slinky and loose; so much so that i should have ordered a medium instead of a large +(perhaps then the dress would have then been more of an a-line fit vs. an over sized dress with no body). +the lower section of the sleeves is attached intricately to the upper arms; +every slight movement of the body is followed by a slight tug at the sleeve/arm cloth; +otherwise, when the arms are extended, the sleeves do hav",3,0,9,General,Dresses,Dresses +1037,63,Super sexy,Love these pants. they look great with a pair of mid calf boots and a loose t-shirt. i usually wear a size 26 or 27 but went with a 27 on these. they are very flattering and edgy. love them!,5,1,0,General Petite,Bottoms,Jeans +1059,39,Stylish l comfortable l versatile,"These leggings are great because they are comfortable, stylish and can be dressed down or up. great pair of fun leggings to wear. i'm 5""3' and 180 and so i'm not a skinny girl, but they are flattering on me. i love them!",5,1,0,General,Bottoms,Pants +841,39,Pretty l flowy l comfortable,"Comfort is very important to me. as someone who is not a skinny girl, slimming clothing is important to me. this top is very pretty, comfortable, and can be dressed up or down. it does require dry cleaning, which might be a con for some people.",5,1,0,General Petite,Tops,Blouses +1059,57,Super cute!,"I tried these on in the store in the small and needed to xs, so i ordered them online. they are perfect! i wore them last night and got so many compliments. for reference, i am 5'2"" and 125 lbs.",5,1,1,General,Bottoms,Pants +1100,27,Beautiful but runs big!,"This dress is lovely- exactly as pictured on the site. love the colors/pattern and received so many compliments when i wore it to a brunch party. could easily be dressed up for an outdoor wedding. it definitely runs big- i am usually an 8/10 and originally ordered in a large. was way too big, so had to exchange for a m and there was still some room. make sure you size down!",5,1,4,General Petite,Dresses,Dresses +1078,31,Beautiful and flattering,"This dress is very comfortable, very flattering and just lovely. my only critique is that the skirt is more rust colored in real life, where on the website it looks more red. and the bodice looked a bit more peach/pink in the picture. still a beautiful, interesting, well made and extremely comfortable dress. thanks retailer! i am 5'9, 155# and the m is great.",4,1,0,General,Dresses,Dresses +1110,24,Velvet maxi dress for the win,"This velvet maxi dress is what fall dreams are made of. it fits very true to size and is the perfect length, about to ankles. the material is soft and had so much subtle details in it... gorgeous! once the weather cools a bit it will also pair nicely with tall boots, and an undershirt. i plan on rocking this all fall and winter!",5,1,12,General,Dresses,Dresses +1094,53,Sizing is odd,I love the look of this dress on the hanger in the store and in the pics on the model. but i purchased my usual size 0 in petite ( i am 5 ft 2 in.). it was very form fitting-too much for me- and had little gaps near the waist that i attributed to it being tight the hips. i exchanged it for a 2 petite and that was too large and gaped in the top and waist. for reference my measurements are 32-26-35. so i am going to deduce from my experience and the other reviews that this dress might be best sizi,4,1,5,General,Dresses,Dresses +1094,72,Amazing dress!!!,"This dress is gorgeous in person, but its very, very, very fitted. i wear a size 8 in most retailer dresses. i ordered the 8 and its not an option, not even with control undergarments. i sent the 8 back and re-ordered in a size 10. i wouldn't be surprised if i need the size 12. i hope it works because this is a beautiful dress. the pattern is stunning. the red is a deep brick shade. the fabric is thick, but not too thick to prevent transitioning from season to season. as other reviewers said, i am",4,1,4,General,Dresses,Dresses +1078,37,Not impressed,"After reading the glowing reviews i was excited to buy this on sale. i'm tall and lean, but found the dress looked slightly awkward and off on me compared to the model pictures. firstly, the top has a strange transition to the skirt, with extra fabric you have to either blouse over the skirt or bunch together. if you blouse it and lay flat, it invariably gets bunched as you wear it. this bunching changes the aesthetics of the color blocks, creating less clean lines. i also found the blue, black",2,0,0,General,Dresses,Dresses +1078,48,Wonderful comfy maxi,"This is a super cute, adorable and flattering maxi. it's very comfortable and soft. i stayed tts in this dress... the length hit just right .. ...perfect for summer",5,1,0,General,Dresses,Dresses +656,41,Love them!,"They are exactly as picture. i have a lot of extra skin on my midsection, due to pregnancies. they are a little high waist so they grab all the midsection perfectly. the fabric is good quality, the tones are just beautiful... it is a little bit see through on your bum. i always try to hide my bum so no issue for me.",5,1,0,Initmates,Intimate,Lounge +1094,55,,,4,0,0,General,Dresses,Dresses +1110,68,You will feel so elegant!,"As part of the over 60 crowd, i rarely wear dresses any more - but this called out to me.. and it didn't disappoint! i ordered the plum - true to size and and color. i usually wear a medium and it fit perfectly. i liked the previous review suggestion and i will also wear this with boots and t-shirt to get more use out of it as well as dressing up.it's a real keeper.",5,1,0,General,Dresses,Dresses +1094,35,Beautiful material,"I debating this dress for a long time. i just was hesitant because it is very form fitting. i think this dress runs true to size. after reading other reviews, i was debating ordering a 6 (i'm normally an 8). and i am glad i went with the 8. it is form fitting. the material is just absolutely beautiful and not stiff. it is a bit thicker, which will be nice in the fall. colors are true to the pictures shown and length falls as shown on model.",5,1,0,General,Dresses,Dresses +862,28,Great staple,"So versatile and comfortable. i plan adding this into my rotation year round under a jacket or cardigan during the colder months. if you prefer baggier fit, i would suggest going up a size.",5,1,2,General,Tops,Knits +1117,35,Beautifully made jacket,"This really is a gorgeous jacket! i would give it 4.5 stars just because sometimes it can be a bit unflattering in the tummy area (poofs out a bit) at certain times, but i had to remind myself that is the style of the coat. i am petite and curvy on bottom, so this could just be me. tried wearing with a skinny belt and it looked cute, i think i will try both ways. seems very warm. beautful colors and the material is soft and not itchy at all! excited because versatile for everyday wear but also l",5,1,5,General Petite,Jackets,Outerwear +1056,42,Perfect fit!,"I got the moss and love the color. the style and size in 31p is perfect for my short self. very comfy for work. now, i need more colors...",5,1,0,General Petite,Bottoms,Pants +1094,51,Wanted to love,This dress is really attractive in terms of the pattern and the neckline. but the dealbreaker for me was the lack of darts in the back hip area--so that the stretch fabric really hugs the full curve of your booty. a size larger gave me bagginess in the top and a still snug fit in back that i just didn't feel comfortable about. some darts could have made a nicer fit here. but this is a a great dress if you don't mind a super body con fit.,3,0,3,General,Dresses,Dresses +1094,56,,"I ordered this dress with great expectations after coveting one in a store, but unfortunately it did not work for me. the fabric is a stretch cotton jacquard which is absolutely beautiful, and the colors are gorgeous. i do not think it runs big, i sized up and it still fit me like a sausage casing. if you are tall and thin with no bulges, this dress is for you.",5,1,1,General,Dresses,Dresses +1078,29,Eh,"I love the colors of the teal dress, but i wish that the top only had one color. the design is cute but the construction is a little off. the transition from the top to the skirt seems to lay wrong or have a bit of extra fabric. sizing up or down didn't help. the top is lined but the bottom is very thin. the bottom should be lined too. not the best.",3,0,8,General Petite,Dresses,Dresses +166,65,Love`,"I love the pure and good short sleeve tees. they feel beautiful, and wash beautifully! i just hang them to dry and they are perfect for the next time, i buy a size medium as i like them to flow nicely at the hips!",5,1,1,Initmates,Intimate,Layering +1078,67,Simple yet stunning,"I ordered this dress in the orange and it is a perfect addition for my closet. its comfortable yet classy. i did order a size up and went with the medium because i am a dd. so glad i did because the top part of me stays secured. if i went with the small, i am afraid i would be falling out. it is long but i will take to a tailor and have them make some adjustments. its a versatile dress and can be worn at events or just for hanging out in.",5,1,0,General Petite,Dresses,Dresses +1078,33,Love the colors,"This dress first caught my eye because of the beautiful color combination. and when i tried it on, i was sold. it's super soft and comfy and just the right amount of coverage.",5,1,1,General Petite,Dresses,Dresses +1078,42,Looks exactly like the picture,I bought the black version of this dress. looks exactly like the picture and is true to size.,4,1,0,General Petite,Dresses,Dresses +862,53,Sweet top!,"I just bought this adorable top in the black motif and was surprised by how good it looked! it runs tts (34d-27-35) and got it in my usual size small. it's very soft, the print is so cute, the arm openings aren't too big and the length is just like on the model, not too long or short. i think it's even cuter in person and i like the price point. a very sweet top so worth a try!",5,1,10,General Petite,Tops,Knits +862,56,Soooooo cute,"I really like this. it's not too baggy and not tight. it drapes nicely. and the pattern is a bit dainty without being frilly. +i love this blouse.",5,1,0,General Petite,Tops,Knits +1022,29,A lot of give in these,"I bought these in my standard 27 (on sale, woop). they are super comfortable with a bit of stretch for those days when you need a little extra room. the ankles are easily cuffed and look great with ankle boots. my only qualm is that they run a bit big and tend to gape in the back. i love a higher rise jean and these are a great option but i'd lean towards sizing down.",4,1,0,General,Bottoms,Jeans +862,33,Cute shirt for work or play,"I really like the red version of this shirt. it will add a pop of color under a blazer for work or it can be easily accessorized with a necklace, for the weekend. i am 137 lbs, a 34d chest and the small fit me perfectly.",5,1,8,General Petite,Tops,Knits +1078,62,Buy it,"I want this in every color! fits tts...so comfortable, flattering, and fabric feels like it will hold up well (fingers crossed). love love love.",5,1,2,General Petite,Dresses,Dresses +1022,50,Ag farrah,Usually wear stevie jeans from ag but wanted to try something different. now i love farrah!,5,1,0,General,Bottoms,Jeans +1079,55,So wanted to love it,"I so wanted to love this dress, despite the reviews. when i opened the package i fell in love with the fabric. the print is absolutely beautiful and the fabric feels luxurious. the dress fit perfectly but there was just too much fabric (even though i absolutely loved the fabric). the flowing overlay was just too much. i am returning it.",3,0,2,General,Dresses,Dresses +1094,33,Beautiful!!,"This dress is gorgeous! i sized up from my usual 6 to an 8, cause i'm not much for form fitted dresses. however, it was still pretty body con for me. i passed in it for now, but in the future i might try a 10 petite?? the color is a nice brick red with a textured whitish pattern. and it is soft ... like i wanted to snuggle up on the couch in it, but i had to refrain! i've been having bad luck with zippers from retailer dresses recently, but this one was smooth sailing and pretty too! the length wa",5,1,16,General,Dresses,Dresses +862,41,Great quality top!,"This top is beautiful in both colors, it was a difficult decision at the store. i went with the black, and my usual size s fit well with a little room, but in no way overly baggy. i tried on the xs which also fit but was a little constricting. the quality is excellent and i highly recommend this top. 1 question i have however, is that the online description says machine wash, however my tag states dry clean only. just curious if anyone has hand washed this yet? otherwise, it is a beautiful, comf",5,1,3,General Petite,Tops,Knits +1110,39,Not as short on me (petite),"I ordered the xxs p as this dress is not a fitted dress, and that was the right size for me. only thing is the length is a bit linger still 9lower on calf for me), the straps are almost tight, so i would say the dress is a reversed taper shape. color is beautiful, i ordered green as the other color (plum) doesn't have petite available. green is rich, and classy, the fabric is surprisingly soft. i love the little details in the velvet. definitely need a strapless bra for this one. + +115 lbsm 30d",5,1,0,General,Dresses,Dresses +1094,39,"Stretchy, soft","If i had to describe on two words, that would be it. the material is not a stiff no-give material, nbut rahter a soft stretchy material, with some depth (the design has ""grooves"", not sure how to explain it#. if you are short, i would definitely go with petite though, it was a little too long on regular size and hit in the ""wrong"" spot on my calves. very flattering, and nice cut. i dind't order yet as it is new and i jsut bought a few dresses... but in my basket forh te next ""sale"" :) #if they s",5,1,29,General,Dresses,Dresses +1094,33,Too long,Nice cut but 6 inches too long and no petite sizes available.,3,0,1,General,Dresses,Dresses +1078,39,Amazing dress,The pictures don't do this dress justice. it is fantastic! the fit is perfect and it is super comfortable while still looking polished. a must have dress!,5,1,0,General Petite,Dresses,Dresses +862,38,Perfect top!,I love this top so much! the fit is super flattering and forgiving in the tummy area-win.,5,1,2,General Petite,Tops,Knits +1078,29,Pretty dress. fit was not for me.,"I love this maxi dress. it is fitted up top and very maxi like on the bottom. it was to much fabric for me, the dress made me look heavier than i am. i am 5'9' and 160. i fit in the medium. the dress just didn't do anything for my body type - curvy. i think you need to be fairly lean to look nice in this dress. sadly, i had to return. maeve makes great maxi's, unfortunately they don't fit me correctly.",4,0,3,General Petite,Dresses,Dresses +1078,58,Beautiful,"This dress is simply gorgeous. the slit is just right, the colors are great, and most of all the fabric is very comfy! i highly recommend!",5,1,29,General Petite,Dresses,Dresses +1056,44,Love pilcro!,I love all the pilcro chinos. they fit great and the material is so soft. they also wash very well.,5,1,0,General Petite,Bottoms,Pants +1078,28,Beautiful maxi!,"I ordered this in the neutral motif and the colors and design are more beautiful in person. unfortunately, there were no ""petites"" available when i ordered so i will have to have the length and slit tailored.",4,1,0,General Petite,Dresses,Dresses +1110,24,Obsessed,"This dress is stunning - the cut, the color (mine is a dark green, not purple as pictured) and the material are all super unique and gorgeous. i first tried on a medium but it was a little too large - the small fit perfectly and still has the loose romantic look intended. i can't wait to wear this piece with a suede moto jacket, or even denim for a casual funky look. love!",5,1,8,General,Dresses,Dresses +1097,51,Easy summer dress,I love white for summer and by august i am tired of wearing sleeveless...so this caught my eye. it is very easy to wear and pretty on. i wore it with black tie up shoes and accessories. super comfy & stylish.,4,1,0,General,Dresses,Dresses +862,27,The perfect top for all seasons,"Love this top so much that i bought it in both colors. the fabric is wonderful and the pleated front is a nice feature. i also like the fabric covered buttons. you can button this top all the way or leave the top few buttons undone. either way, it looks cute. i especially like that it looks great under a blazer or cardigan and will look good uncovered when the weather heats up. great quality and features for the price.",5,1,5,General Petite,Tops,Knits +1094,54,Fabric is a little stiff and did not drape well,"I ordered this online and really loved the picture. when i received the dress, it was lovely, but the color was more purplish-plum than red, and the fabric was super thick and a little too stiff. i was still hopeful, but when i tried it on, it wasn't flattering. the lines of the dress are very sculpted -- for example, the waist nips in, which would be good, but the place it nipped in was not at my waist (i am very short-waisted with longer legs and often have this problem with dresses). often wi",4,1,1,General,Dresses,Dresses +1078,35,,"Love this dress. i bought is for a tropic vacation my husband and i went on and it was great. i got so many compliments while wearing it, and it was comfortable! dress is a little roomy in the top, but not enough to prevent me from wearing it. i ordered a medium.",5,1,0,General Petite,Dresses,Dresses +1075,75,Super cute!!,"I was nervous about this dress, as when i ordered it there were no reviews yet...and shortly after they, they started coming in and were only negative. yes it runs pretty big (i'm usually a large/12 but could tell from the model it would run big) but it's supposed to be loose. i wouldn't say it's the most flattering - but you can tell it's shapeless from the picture! it's a great casual dress, perfect for hot days when i don't want my clothing touching my skin.",5,1,0,General,Dresses,Dresses +1117,51,Cool but has it's flaws,"I bought the extra small and although i love the style and unique color combo, it's pretty large in the collar area and without the right blouse/shirt underneath it makes my neck look really skinny. the rest of the coat is true to size, longer and straight. the design just doesn't have the right balance for me so i'm sending it back.",4,1,2,General Petite,Jackets,Outerwear +1078,29,Great fit but odd construction,"This is a beautiful, flattering dress, however i can't decide whether to keep it or not! as a few other reviewers has mentioned, the transition between the ""top"" and the ""skirt"" is a bit off - it's like there is some extra fabric there, and the weight of the skirt pulls it down, making it a little awkward/bunchy. i thought it may have been showing up because i am larger chested (36d), but you can kind of see this on the teal dress image, under the chest where there is an extra fold. i ordered th",4,1,0,General Petite,Dresses,Dresses +1094,56,Love,"This dress is stretchy and soft, a great length, and an out of this world pattern. it will probably be flattering on every body, but it certain flattered mine.",5,1,0,General Petite,Dresses,Dresses +1078,28,Works for maternity,"I bought this to wear for my baby shower at 34 weeks. i was able to buy it in my size and still get a great fit, and the skirt hits right at my bump with the band just above it. great option for expecting mothers that can be worn after baby, the top is also snug enough to feel like it covers properly (could be too snug if you are large chested though).",5,1,12,General Petite,Dresses,Dresses +166,39,Favorite tee,"These t-shirts by pure + good are buttery soft and so flattering. they are just loose enough to drape beautifully and the detailing at the neckline takes them just a step above basic tee. i have 2 from last year, machine washed many many times (on delicate cycle) and they still look almost new. i was hoping to pick up a couple more but they're gone! please retailer, bring these tees back!! i would kill for that beautiful dark blue...",5,1,0,Initmates,Intimate,Layering +1094,38,Just not for me,"I really love this dress, just not on me! i am very curvy, with a rounder stomach. i normally wear a 10 (5'8, 160lbs), and the 10 fit, but it is so fitted that i didn't like how it showed everything. if i had a flatter stomach, i would have kept it, but it just doesn't work on my body style unless i wanted to constantly be pulling it down (it was riding up a bit). the fabric is great, the color and pattern are so lovely i almost ignored my instinct and kept it anyway (my boyfriend, who is picky,",4,1,0,General Petite,Dresses,Dresses +166,56,Soft basic tee,"I ordered the black and white shirt thinking it was polka dots, but turned out to be stars instead which was even cuter. fits true to size and is very soft and comfortable. my first thought after trying it on was that i should have ordered another one!",5,1,0,Initmates,Intimate,Layering +1094,47,Picotage sheath,"I really loved the uniqueness of this dress, and i was hoping to be able to wear it to work, but it was just a little too fitted for the office!",4,1,1,General Petite,Dresses,Dresses +1078,39,,"After reading the reviews, i had high hopes for this dress but was disappointed that it wasn't flattering on me. +i'm 5'4"", 126 pounds and generally wear a size small, but the small of this dress looked more like a maternity outfit on me. it squeezed the bust a bit too much, and left open some of the areas just under the arms that could probably have used a teensy bit more coverage to be truly flattering.",2,0,0,General Petite,Dresses,Dresses +1078,53,Elysian maxi dress,I was disappointed with the style and quality of this dress. it poofs out funny in the waste and it just looks very unflattering. i'm sending it back.,1,0,0,General Petite,Dresses,Dresses +1094,42,Elegant and comfortable!,"Just as breathtaking in person . . . and in a totally comfortable, soft, stretch fabric. i'm 5' 8"" 120 lbs. 34b; purchased the size 0 and 2 for comparison; decided on size 2 as the size 0 was really tight in the chest area--meant only for the tiniest! the dress is long on me and i'll likely get it hemmed up a bit so it hits just above the knees--but i'm grateful it's too long (something i can fix) rather than being too short.",5,1,3,General Petite,Dresses,Dresses +1075,35,Too much material,"This dress pattern and material are great - it's just way too big. i even tried an xs and it looked like a huge sack on me. too bad, it had some real potential.",3,0,3,General,Dresses,Dresses +1078,36,Beautiful dress!,This dress is gorgeous! i bought the patterned dress and it has the perfect colors for the season. the pictures just do not do it justice. plus it is incredibly comfortable. this dress could easily be dressed it up or down and is perfect for someone who is curvy on top. i can't wait to wear this on a date!,4,1,1,General,Dresses,Dresses +537,28,,"I've always had great difficulty finding a pair of shorts that i like the fit of - most are either too short, too thin, too low, or too tight. i have athletic legs that ""mainstream"" fit doesn't work well with, for the most part. + +fortunately, that was not the case with the neda shorts. i was first drawn to them because of the striking but subtle pattern - and they also fit well, with a good length and a structured fit. they have a medium-high waistband and a slight stretchiness, and the fabric",5,1,0,General,Bottoms,Shorts +1094,45,Fabulous!,"This dress is so gorgeous! it fits perfectly, is stretchy, wonderful, comfortable, and the fabric is nice and thick with beautiful texture. i absolutely love it! i'm 5'6"", 125 lbs, with a pretty athletic build, and it fits like a dream! i love the color, the fabric, the fit, the stretch, the comfort, the sexyness of it..... it's my new favorite! highly recommended!",5,1,0,General Petite,Dresses,Dresses +1078,46,Summer dress,"I bought this dress to wear as a casual summer staple. i like classic things with a twist, and this fits the bill. it is nice quality, and the colors are vivid. it is slightly tight in the bust line for me, but it is not retailer's fault that i am a bit too busty for this dress. i'll deal with it. otherwise, the dress is nice quality, and will come in handy throughout summer. the price is right, so grab it!!",5,1,0,General,Dresses,Dresses +1097,44,Huge - swallowed me whole,"I had high hopes for this tunic for an upcoming ny trip - to look stylish and beat the heat. it is huge. the tunic swallowed my whole. it came down nearly to my knees (i'm 5' 6) and it was gigantic - shapeless and did not look stylish at all. on the model it looks like it hits mid-thigh. i am a size 10 - and the l was like a giant trash bag on me. if i had time, i would try the medium,...",2,0,2,General,Dresses,Dresses +1056,46,Soft comfortable quality,"These pants look nice and they are comfortable too! the relaxed fit isn't sloppy, and the colors are great.",5,1,0,General Petite,Bottoms,Pants +1078,36,Unflattering cut,"This was a nice dress, but it wasn't quite was i was looking for. the cut made me look too ""hippy"". maybe for someone that has no hips at all?",4,0,0,General,Dresses,Dresses +1094,41,Great for the right figure,"This dress is beautiful and classy, well made, the fabric is thick and substantial, soft and stretchy. unfortunately it did not work for me at all, i'm somewhat thick in the middle with a few ""lumps and bumps"", and this dress was not forgiving despite the thick material. i normally wear size 12 or large, i actually ordered a 12 online which i didn't receive yet, but i tried on a size 14 during an unexpected trip to the store (12 was not in stock) and it was just not flattering, showing all my mi",4,1,7,General Petite,Dresses,Dresses +1078,37,Great length,"This dress is nicely made , fits well and is the right length.",4,1,2,General,Dresses,Dresses +1078,23,Not right for me,"The colors are beautiful and the fabric is very soft and comfortable. i will be returning because of issues with length and being low cut. + +for reference i am 5'5 145lbs, 38-30-40, 34ddd. the dress was low cut and showed too much cleavage for my comfort, but this may not be an issue for women with smaller breasts (or if you don't mind some cleavage showing). this length was also a bit too long, so if you are 5'5 or shorter you may want to order the petite size.",3,1,6,General,Dresses,Dresses +844,49,,"Frumpy is the word i would use to describe this top. i look good in empire waist shirts and seek them out. but this one made me look pregnant and frumpy. and it has an attached camisole, but the sheerness of the top still showed my nude-colored bra strap. so i don't even know what to wear under it. it's going back, even with the sale price.",3,0,2,General,Tops,Blouses +1075,65,Lovely dress,"You can't exactly tell from the picture, but this dress has a skirt that bubbles a little at the bottom, and it really adds interest to the whole piece. i think my favorite part about this dress, though, is the weightiness of the skirt--it's not so heavy that it's hot or uncomfortable, but enough that it feels more quality, more special.",4,1,0,General,Dresses,Dresses +1078,29,"Great quality, easy to wear dress!",This dress fits true to size and is great to wear around on a warm day. you can dress it up or down so there are many uses for it. this brand has always provided great quality too. i'm excited for warmer weather!,5,1,1,General,Dresses,Dresses +863,67,,"Love the red color. bought the small because left of center usually runs big. however, i could use m in this style.",4,1,7,General,Tops,Knits +1078,42,Beautiful,"This dress is the perfect combo of flattering, comfort, and quality. i purchased the turquoise color, which is vibrant! this will be my go to dress for spring. the material is super soft, flowy and medium weight. i ordered petite s, probably could have got xs. i love, love, love this dress!",5,1,0,General,Dresses,Dresses +1078,33,,Beautiful dress! vibrant colors. fabric has a nice weight and drapes perfectly. 36 dd up top and the girls have plenty of space.,5,1,0,General,Dresses,Dresses +1110,22,"Beautiful dress, not right for everyone",I love the design and aesthetic of this dress but when i tried it on it was less than flattering on me and looked almost night gown ish:( really sad because the material is gorgeous! i bought it for my sister instead because i know it will flatter her body type more than mine. i'm rather full on bottom and top and it seems to look better on slender women. the only complaint is have is that the straps seem delicate. the actual material and fabric is crazy beautiful though!,3,0,3,General,Dresses,Dresses +1078,23,Great maxi dress,"I love this dress. as a petite woman, it's hard for my to find maxi-dresses that aren't terribly long and that cut in the right places. this dress fits perfectly! i love the slits in the side that allow for a flowy look and make it easy to walk around. there is also an elastic band that helps the materials over the bust stay in place along your torso. if you a bustier person like myself, it will likely cut in just under your bust line as opposed to as your waist like on the model. since i am bus",4,1,0,General,Dresses,Dresses +1110,30,Fabulous material....,"I ordered this dress in a petite but it arrived in a regular, the rest fit and in the meantime the petites ran out in my size. the dress is too long but it is so beautiful i will get it shortened. the fabric is lovely. i am blonde and the green is so nice with my hair... which is a good thing since the other colour was totally sold out. try not to miss out on this lovely purchase.....",5,1,0,General,Dresses,Dresses +1056,58,,Loved the shorts version of these so ordered the pants but not quite the right fit for my legs. no fault of the pants just too skinny in the legs.,3,1,0,General Petite,Bottoms,Pants +1078,32,Love this,"I purchased this in the ping/orange color. i am 5""8 and 155lbs, the medium fit perfectly. very soft texture with a nice flow. will be purchasing in other colors.",5,1,1,General,Dresses,Dresses +1075,32,Awkward fit,"Beautiful dress, but has an unflattering fit. i purchased an xs and it's past my knees and the bottom of the dress is so heavy! would be a perfect maternity dress though!",2,0,0,General,Dresses,Dresses +1097,65,A great transitional piece,"Love it ! ...although i had to purchase it in 3 sizes before finding the right one. it does run large. i normally take a l or el ... but a medium in this had the perfect drape ! i am 5'11"" and 185 lbs and it is very flattering ! a perfect piece to be worn as a dress or as a tunic over skinny pants ... can be as sophisticated or casual as you choose to make it with accessories !",5,1,1,General,Dresses,Dresses +940,50,Much prettier and more flattering than pictured!,"This sweater is really lovely. it doesn't look like it does in the picture. i got the xsmall as i was worried it would run big. it's much shorter than i though, fits more like a petite size. the sleeves are 3/4 length, which i wasn't thrill with but accepted. the color combo is really lovely! it's very comfortable and well made and it was perfect for work but lovely with a pair of jeans too!",4,1,0,General,Tops,Sweaters +1056,64,My dream chinos!,"They have all the features i've been searching for: +the leg is straight, not tapered or fitted. the fabric is soft, with an authentic worn-in look. the overall look is casual, relaxed and cool. i love these chinos and definitely plan to buy more.",5,1,0,General,Bottoms,Pants +1078,37,Loved his dress!,"I'm 4 11"" 120 and my usual small fit. as with everything....way too long. story of my life and i keel a tailor on call.",5,1,7,General,Dresses,Dresses +1078,21,Love,"I bought the one with blue and white top and black bottom. absolutely loved it! i am 5""2 so the dress is part is a bit long for me---ended up wearing my 4.5 inch heels to make it fit. the fabric is more heavy than what it seems in the pictures. but that makes it more formal. it's great!",5,1,0,General,Dresses,Dresses +1094,36,Lovely,"The cut is lovely and the fabric is wonderful-it's a little thicker than you might think so it felt a little warm. +i am sending back as i have a little belly and it doesn't hide much-but it did make my boobs look awesome:)",4,1,1,General Petite,Dresses,Dresses +1075,37,So unique and lovely!!,"This dress was returned to our store and i was intrigued the second i saw it. the dress is definitely oversized. so much so that you could probably size down a size or two. but what i love about this dress is the style. its meant to be oversized...and with the print, the asymmetric cut and the oversized look...its very unique! the color is exactly as it appears and the material is wonderful. thin but soft and comfortable...really easy to wear! you could do this as a dress, or with leggings and b",5,1,0,General,Dresses,Dresses +862,23,New favorite shirt,I love how pretty and soft this shirt is. it falls well. i want to wear it everyday.,5,1,1,General,Tops,Knits +1078,33,Classy and comfy,I love this dress! it was a tad long ( i'm a shorty) but i loved the cut and versatility of the material/ design that i took it to the tailor. now it is perfect! i wore it to an engagement party but i could see it going very casual or very high end depending on styling. love.,5,1,0,General,Dresses,Dresses +1094,43,Looked a bit like drapes,"Beautiful shape and colors but the fabric felt heavier than i imagined. sort of like heavy drapes. also, the length (as others mentioned) was too long. i am not normally a petite but the regular was too long. unfortunately, it has to go back.",2,0,2,General Petite,Dresses,Dresses +1094,24,Wonderful,"I love this dress! picked one up in store at 20% off--even better. i'm 6', 160lbs and 40-29-41, and i did find the waist runs a bit wide. because i'm tall, i think the length was a plus, but a shorter person would definitely want to go with a petite. i usually wear an 8-10 but bought a 6 in this dress, so i think it runs a tad large. the fabric is weighty enough to hide minor lumps and bumps, but i'll be wearing shapewear anyway. the pattern is perfectly aligned (just like the online images) and",5,1,33,General Petite,Dresses,Dresses +166,33,Flattering but bad quality,"I loved this when i got it. it has such a flattering fit! slightly loose in the body, but not flowy. nice weight of fabric. comfortable fabric. perfect scoop neck that doesn't show too much cleavage. but i washed it once on delicate and line dried (which i do with most of my shirts) and it came out riddled in holes.",3,0,5,Initmates,Intimate,Layering +1022,43,These jeans rock!,"These ultra-slimming jeans are so comfy. the rise is a little higher than i am used to but it covers those little muffin tops perfectly. the color is very dark - almost black which adds to the slimming effect. i have really long legs and these have a little extra at the bottom, which is great. you could wear with flats, booties, boots - just about any type of shoes. these are my new favorite jeans.",5,1,0,General,Bottoms,Jeans +1099,48,"Soft, comfy, and a very casual","This just arrived today. the material is very soft and i love the olive color. it has a zipper in the back but i was able to easily slip this over my head, making me think it runs a bit large. because it is loose the fact that the drop waist hits right at the hip doesn't bother me, though i thought it would fall a little lower. i am only 5'2"" and i consider this to be a short dress. with thick leggings i think it will be great winter dress. the bodice is fully lined (the skirt is not) and the ne",4,1,14,General Petite,Dresses,Dresses +1078,24,Best dress i've ever found,"I loved this dress so much i bought in the cream/pink as well as the blue/teal. it is so light and easy to throw on. the slits are higher on me (i am 5'2) but not in a risquã© way. it's very flattering and gives it a little sassiness. + +i wish they had even more colors to choose from. that is how obsessed i am with it!",5,1,0,General,Dresses,Dresses +1078,36,,"This dress is versatile and cute! i purchased the xxs at 5'4"" 115lbs and it fit perfect. a steal at the sale price!",5,1,0,General,Dresses,Dresses +1075,47,Way too big,"This is such a great dress, i hate to return it. it's pretty, a nice material, and an interesting cut. but like other reviewers have said, it is just enormous. if there were a size smaller than xs, or if it came in petite, i would exchange it in a second. but since there's not, it has to go back.",3,0,0,General,Dresses,Dresses +1078,30,Cute but arrived dirty,"Cute dress- flattering and seems to be well made. however, when i received it it seemed that it had been worn. the bottom was all dirty and it had a white mark at the top. called and rep said they would send new dress if i send first back, so hopefully that gets here quickly and in good shape. the other dress i place with my order hasn't even shipped and the rep couldn't tell me when/if it would.",3,1,0,General,Dresses,Dresses +1094,27,Beautiful dress!,"This is instantly one of my favorite dresses but please note it runs large, size down! i am 5'10"" and regularly a size 8-10. i tried both of those sizes on in store and picked the 8. it was perfectly form fitted and the perfect length. when i got home i realized i had been reading the uk sizes on the tag and really bought a size 4. no idea how it fit me, i have never purchased a size 4 in my life! i am adding a photo so potential customers can see what it looks like on an average sized person :)",5,1,20,General Petite,Dresses,Dresses +1078,32,,,5,1,0,General,Dresses,Dresses +166,44,,,5,1,0,Initmates,Intimate,Layering +166,38,Best tee ever,"It drapes perfect and washes well. i own all the colors, they do not disappoint. i'm a medium.",5,1,0,Initmates,Intimate,Layering +1056,71,Staple,"My favorite pants, casual and a bit dressier by changing my top. comfortable, classic, well made",5,1,0,General,Bottoms,Pants +1056,30,Love these,"I bought these pants in red after trying them on in store. they are soft and company. they have a loose fit, which is typical for chinos, so they pair best with a fitted top. i'm 5'2"""" and these were the perfect length when rolled. they run a bit big and stretch out though and eventually were too baggy. i loved them though so i ordered them in a size down. i'd definitely buy them in other colors too if they become available in my size!",5,1,0,General,Bottoms,Pants +1078,36,Good quality for the price,"I purchased this dress in the red/orange color and was impressed by the quality of the fabric. the waist sat a bit higher on me that in does in the picture, so it looks much more like an empire waist on me.",4,1,0,General,Dresses,Dresses +1078,57,,"I love this dress! i purchased the neutral motif in a large and it fits wonderfully. i have a double d chest and the top of this fits almost perfectly. it's just a bit snug on top but still comfortable because of the fabric. i'm 5""3 and the dress isn't too long like most maxi's are on me. i always have great luck with maeve and plan on purchasing another right now!",4,1,1,General,Dresses,Dresses +166,61,Soft & slinky,"It's lightweight, soft, & slinky, unike the average t-shirt. the slinkiness makes it skim the body nicely.",5,1,0,Initmates,Intimate,Layering +1094,54,Great dress,"The photos on the website do not do the dress justice. i am into texture, pattern and contrasting fabrics, this dress is gorgeous in person; not only has pattern, but the pattern is woven, so there is this wonderful texture as well that i had to try. some of the reviews said the dress runs large, others that this is a bodycon dress. i ordered a size 8 and my usual 10. both were figure hugging but the size 10 allowed this to be office wear while still being flattering. i am fairly straight, small",5,1,2,General Petite,Dresses,Dresses +1094,41,,"This dress is so pretty and i instantly fell in love with it when i tried it on. i generally wear size 0 or 2 and opted for the 2 for more room. i know some reviewers felt that the dress ran too long at the bottom, but for me, i was sold on it because this dress is form fitting, i like a more conservative look for work. wouldn't want form-fitting and short dress. my favorite kind of dress is form-fitting and falls at or below my knees a little.",5,1,1,General Petite,Dresses,Dresses +1094,34,Not for my big shoulders,"I'm petite, short waisted and slim hipped but with broad shoulders. the byron lars pencil dresses fit me perfectly so i was hoping this pencil dress would too (though with this brand my sizing fluctuates). + +unfortunately, the cut of the shoulders made me look like i had hammy arms. it was a little tight around the waist area and i could have probably gone up a size for a better fit width wise. length wise, however, it would have been too long for my torso, which i run into a lot. + +too bad.",4,1,1,General Petite,Dresses,Dresses +1079,59,Too much fabric,"Alas, i so wanted to love this. the photos of the models wearing it look gorgeous -- flowy, drapey, ultimate grecian goddess. but it just doesn't work unless you're super-skinny. too much material. almost bulky; strange looking. the print is so beautiful -- i love the pink floral, and i love the whole idea of the dress. but it just doesn't work. have to send it back. + +(i'm 5'6"", 135 pounds, 38-30-38, and i ordered a 10.)",2,0,23,General,Dresses,Dresses +1078,31,Comfy and flattering,"Perfect fit. this dress is super flattering, the criss-crossing fabric at the bust looks awesome on. the fabric is a little bit thicker through there which is nice for coverage. the skirt is light and airy and the pattern is so pretty! the perfect spring to summer dress!",5,1,0,General,Dresses,Dresses +1078,39,Nice vacation dress,"I bought each color in three different sizes because the one i want was sold out. the lavender tile motif is the one i got in my ideal size medium petite and it fits the best. what i don't like is that the inside of the skirt is white, which features prominently because of the high side slits. makes the dress look low quality. my favorite dresses were the solid teal and solid black. however the small was too small on my bust and the large petite was too large on my bust. i'm wondering if wash th",4,1,4,General,Dresses,Dresses +1110,39,Stayed true,I'm so glad i trusted my instincts and decided not to size down on this luxurious dress since my body type is so different from the previous reviewers. size small would have surely cut off my circulation around my shoulders. i bought mp since i have thick arms/shoulders/back and i'm short 135# 38-27-35. my only gripe is how skinny and insubstantial the straps are so maybe i'll get those changed. i'm tempted to buy the other color since this dress is so beautiful but i really don't nred it!,5,1,0,General,Dresses,Dresses +1094,39,Body con,"This dress is extremely body conscious. so if you want to make an impression, wear this dress. the fabric is thick and best worn on a cooler night. the pattern is gorgeously done, pieced together like a garment three times the cost. the cut of the armholes might not be flattering on those with broad shoulders or chubby upper arms (like myself). for me this dress is tts but way too long, so i will have to hem.",5,1,0,General Petite,Dresses,Dresses +1078,46,Great style | not so great construction,"Bought this on a whim. i had been wanting a new maxi dress and the bodice looked really cool online. ordered it in black. it fits true to size however the material is a bit on the thin side and where the fabric crosses over on the lower waist line...it leaves a love handle lump. without the bulk it would be great as overall look is kind of cool. however, i am on the fence on this one. for the money there are better maxis out there.",3,0,2,General,Dresses,Dresses +1078,35,Gorgeous dress,I purchased this in the black in an xl. i am typically a 14-16 dress size and i would say this runs tts with a flowing fit on the bottom. the top is fitted but has some stretch to it. absolutely gorgeous fit and quality. i love this so much i want to purchase the teal color. a spring must have!!!,5,1,34,General,Dresses,Dresses +1056,52,Closet staple!,I have 3 pairs of these chinos i love them so much. they come soft like a well-worn favorite but are high quality at a great price. i'm typically a size 4. i bought the 26 size but think i could have gone down to a 25. otherwise very happy with this purchase!,5,1,0,General,Bottoms,Pants +166,58,Nice staple t-shirt,"I purchased the pink top and really like it. it will be a ""go-to"". the material is light but not skimpy, and it has a nice drape to it. the length is good for me (5'4"") and it fits tts.",4,1,1,Initmates,Intimate,Layering +1094,46,Picotage sheath,"On me this was not good at all. couldn't get it off fast enough. the thick, stretchy fabric instantly added bulk to my frame and the leaf pattern over my mid section emphasized my belly (and i'm a size 2). also, the color is a dark, brick red and i think if it had been a true red it would have been much more attractive.",3,0,2,General Petite,Dresses,Dresses +1117,56,Unique & cosy coat/jacket,"Very happy i purchased this jacket - although to me it is really a coat. it fits wonderfully and is so soft. i appreciate the uniqueness - not the usual dull winter shades of black/gray/navy. although i live in minneapolis much of the winter & it will not be warm enough once the temps drop beyond 20 degrees, it is perfect for the in-between 21- 50 degree days. i am a size 6 (5'5"", 135 lbs). tried the small & medium. the s was a bit snug in the hips so chose the m and it is just right.",5,1,0,General Petite,Jackets,Outerwear +1099,60,Cute and comfy dress,"This dress is very cute and super comfortable. as soon as i walked into work, i received a compliment. the fabric is not heavy, but actually on the thin side. if i knew this dress was maeve, i would have sized down. i'm always a large at retailer, but with some maeve items i need a medium. for reference, i'm 5'9"", 175, l/12. i love the look of a drop-waist, but because of my big bust i usually look silly, but this works.",4,1,1,General Petite,Dresses,Dresses +1110,28,,"I adore this dress. i wanted/needed to add a few velvet pieces to my wardrobe and when i saw this online i decided this had to be one of them. i'm 5'9 and ~128 pounds and ordered the x-small and it fits me perfectly. the color is so rich and the details are delicate, understated, and yet striking. i intend to wear this for a variety of occasions.",5,1,0,General,Dresses,Dresses +1094,37,Unique!,"I got this new dress for a work meeting and instantly received compliments. it has a very unique pattern that is perfect for the office or date night. it is a little long and falls below the knee, but otherwise the dress fits and feels great. the fabric has a nice weight, so it covers any imperfections you might want to hide.",5,1,0,General Petite,Dresses,Dresses +656,48,Like them.....but.....,"I really loved the look of these color blocked leggings online, but when i received mine, they're nothing like the ones in the pictures....the front of the legs on mine are mostly orange with a thin strip of white between the orange, then more orange!!! i like orange, but really was expecting the pretty color blocking like in the pictures not, mostly orange on both front legs, the back of the legs have more color blocking, but barely any of the light lavender color",3,1,1,Initmates,Intimate,Lounge +1078,49,,There's just the right amount of billowy grace in this dress. the fit is perfect and the material moves and breathes with you. cute with a jean jacket on chillier days too.,5,1,0,General,Dresses,Dresses +1110,44,Work of art,"Wow, wow, wow! this is so retailer! the dress is more breathtaking in person, it is a beautiful work of art from top to bottom. the fabric is super soft and flows perfectly. the lining is super soft as well, and it doesn't fall all the way down to the hem so that the burnout detail would show through on the bottom. i don't like spaghetti straps but the straps are very sturdy and high quality, very comfortable. fyi, the color is much richer (a shade darker) in person, like an eggplant color. i orde",5,1,24,General,Dresses,Dresses +862,32,New favorite!,"Looove this so much. the color in person is a rich wine. the pintuck and button details are hard to see in the photo, but there are three buttons so you can chose to open a couple.",5,1,0,General,Tops,Knits +1079,57,Dream dress,"I bought this unique beauty in a size 0. the fit was superb and without compromise. the ascetics are incomparable, as well as the quality. the most stunning dress i have purchased from retailer in quite a while!",5,1,1,General,Dresses,Dresses +1075,35,Didn't meet expectations,"This ran a bit small; i'm normally a 2, this was a 4 and 'just' fit. the pattern was very 'digi,' the length was shorter than i hoped (i'm 5'1""), and the fabric, while structured, was just cheap and acrylic-feeling. pass.",2,0,0,General,Dresses,Dresses +1079,39,,,5,1,0,General,Dresses,Dresses +1117,42,,,4,1,0,General Petite,Jackets,Outerwear +862,26,Love love love,"I love love this top, it look so much better than expected. i bought black because red wasn't available in my size. the style, print, and fit are perfect. the shirt-style hides flaws, and the top looks very good and stylish. it can be worn for formal or casual occasions. i keep looking to see if the red one is available in my size, i would buy it in every color. perfect!!",4,1,0,General,Tops,Knits +537,54,Great quality; on the warmer side,"The attention to detail in aligning the pattern is excellent as always with this brand. +. +i tried a size 2 and it fit fine, just above my long waist ( 5'2"", currently 33-25-37.5 with narrow hips and fuller thighs). i have several other cartonnier shorts in sizes 0 and 2, depending on my weight, and these fit similarly. i think the size 2 petite would be a bit lower but it's sold out now. +. +the only reason i passed was that the fabric has a polyester fusible interfacing so that it keeps its s",4,1,3,General,Bottoms,Shorts +1075,38,Huge!!!!,"This could seriously fit a large and it's an xs. so frustrating!! this is the fourth retailer dress that is ordered that is just enormous. i get the whole ""loose fit"" style, but seriously??? you've taken it to a whole new level, retailer!!! another trip to the store to return another item. a complete waste of my time. ugh.",1,0,2,General,Dresses,Dresses +862,50,Cute and versatile,Picked this up at the local retailer in both colors. the red version was styled in the store with the adorable blue snail cardigan - which i also bought. highly recommend.,5,1,0,General,Tops,Knits +1078,48,Casual maxi,"I didn't hate it, but i don't love it. i purchased it in 2 colors b/c i thought i'd fall in love. it is just ok. maybe it's b/c i have a larger chest, but i felt like it was too small in the chest area and too loose elsewhere. not the maxi fit i normally go for. however, the material is great and it's a simple sunday dress to lounge around in and run errands comfortably.",3,1,0,General,Dresses,Dresses +844,48,Didn't work,"This didn't work for me. the piece looked cheap, rode very high...needed to be longer. the piece looks incomplete for some reason to my eyes. it also does not seem quality for an retailer piece. this went back.",2,0,0,General,Tops,Blouses +1078,35,Pretty dress!,"Tts. i'm 38c, 8-10 and m fits just right. nice and fitted at the top, flowy skirt. i got the cream and love the skirt pattern.",5,1,0,General,Dresses,Dresses +862,44,Cute and versatile,"Just bought this top in the black at my local retailer and i love it. it fits well, not too large and ""tenty"". it actually fit me under the arms, too. usually, retailer tops tend to run huge, not this one. i love that it is easy to layer with a long boyfriend cardi or a more structured jacket. i'm 5'3"" 110 pounds and took the xs. i would definitely recommend this top!",5,1,14,General,Tops,Knits +890,51,Adorable sweater!,"This sweater fits perfect and the pink trim makes it stunning! i was pleasantly surprised when i tried this on. i don't usually pay this much for a cardigan, but the quality and feel are better than usual.",5,1,3,General,Tops,Fine gauge +722,40,Dreamy cozy pants,These pants are the perfect weight and comfort. they are cozy enough to wear around the house and sleep in as well. i highly recommend these dreamy pants.,5,1,0,Initmates,Intimate,Sleep +1009,36,Great color,The picture is not a good depiction of what the skirt actually looks like. the colors are more varied and green is the dominant color. it looks great on and the colors compliment each other. i would definitely recommend it as a daily go to item for your wardrobe.,5,1,1,General,Bottoms,Skirts +868,34,,,3,1,0,General,Tops,Knits +854,54,,"Very unique, cute top. i had to order up a size as i thought it ran a little on the small size.",5,1,1,General,Tops,Knits +868,29,"Super cute, really poor quality","I really loved the way this shirt looked on me. it's forgiving and flattering, and really lightweight. the fabric, however, couldn't even withstand half a day's wear without snagging 3 times and developing a hole right in the center. i have no idea how this happened, as i wasn't wearing or near anything that could have pulled at it. + +such a shame. this could have been a staple wardrobe piece for me.",1,0,0,General,Tops,Knits +1044,46,Great pants,"Good quality, fit and length! love them:)",5,1,4,General,Bottoms,Pants +825,48,,"Beautiful blouse in theory, however, on my 5'9"" frame it came off like a costume. i truly had a nice chuckle as i looked at myself in the mirror. had to sadly return it",3,0,0,General,Tops,Blouses +861,20,,The only complaint i would have about this pullover is that it runs a little big. i ordered a small and it is a little big for my taste but it is not something worth returning it for. i wouldn't say to size down but be aware it is larger than what you would expect. still love it!,4,1,0,General Petite,Tops,Knits +1044,52,,"I have these pants in the brown & red colors, and i love them both equally! they are stretchy, and stretch out a very little bit as you wear them, but retain their shape & neatness.",5,1,0,General,Bottoms,Pants +868,36,Awesome shirt but doesn't hold up well after washi,"I got this shirt and loved it so much the first time i wore it. it swings well and is an easy basic that looks great. however, after i washed it the first time, it became clingy and stuck to me and doesn't lie right. it's such a shame because i was thrilled with this as an addition to my wardrobe!",3,0,13,General,Tops,Knits +854,34,Classic!,This fit great. i am 5'8 and 130 lbs. i ordered a size medium and it fit perfect. i wore a black tank/cami underneath for warmth in the office.,5,1,1,General,Tops,Knits +1089,34,Nice dress to hide flaws,This dress is great for hiding any insecurities. it's also very comfy.,5,1,5,General,Dresses,Dresses +854,44,Cute but tight in the chest,I have several tiny tunics in m. i received this one today and it is very cute but too tight in the chest. i'm returning it for a large.,4,1,1,General,Tops,Knits +868,28,Lovely,"Love the top, it fits wonderfully, and it's lightweight. my only complaint is that it has little loops that are prone to getting caught on things. other than that, it's a great spring top.",4,1,0,General,Tops,Knits +868,30,Too sheer for me,"I loved the material's texture and drape, but it was too sheer for me. i am 100% against having to wear a tank under white tees. (which means i have a lot of trouble finding any white tees, but...) + +other than the see-through nature, i loved this shirt!",3,1,0,General,Tops,Knits +861,33,,,5,1,0,General Petite,Tops,Knits +873,28,Not sure who this would flatter,"Definitely agree with the other reviewers. this top looks great on the model, but pretty bad in real life. super boxy and has no give so everything just hangs. if you plan on ordering, i'd recommend sizing down.",2,0,0,General,Tops,Knits +873,38,Not as pictured,I received this top in the mail today not what i expected at all! it is a great fabric just way too much of it. it is proportionally incorrect width wise. unfortunately this one will be going back.,1,0,1,General,Tops,Knits +854,40,Disappointed,I love tiny button down tops. this one didn't work at all for me. i was excited about the mix prints but on it looked like i was wearing a vest over a striped shirt. also the arm was frayed on the shirt i tried on.,1,0,2,General Petite,Tops,Knits +1089,43,Beautiful and comfy!,"I have been thinking about getting this dress for a while, but was holding out because i was concerned it would look like a sack! but i am so glad i got it, and so glad my usual size was not available! typically i'm a m or a m petite but i ordered this in a s petite. while still flowy, i think it would have been overwhelming in my usual size. i think it will be great for many occasions as the solid black can be dressed up or down. i can't wait to wear it! definitely consider sizing down.",5,1,2,General,Dresses,Dresses +854,35,Can be dressed up or down,This shirt is as cute on as it looks in the pictures. i love the fit and felt great in it on a mom's night out with jeans and heals. i also think it could be dressed up for work or further down for a day out and about! love it!,5,1,0,General Petite,Tops,Knits +1009,49,,"It's difficult to tell, but the skirt is 3 colors. the pockets are dark brown and the hem or bottom part is army green. skirt fits pretty well but not great. , i'm almost 5 ft 6 in and it hits close to where it hits on model. i would have liked it better slightly longer. i'm 135 lbs and size 6 fits but is slightly on tight side. +material is high quality and thick cotton.",4,1,2,General,Bottoms,Skirts +1089,40,,This is my new favorite dress!,5,1,0,General,Dresses,Dresses +868,62,Unique lightweight knit,"I think this is going to be a love or hate top. i love it. it is see through, requiring an under top. however, the fabric is extremely light weight and the style is floaty so a simple lightweight tank/cami will look pretty showing through in a number of colors. i bought the off-white. it is meant to be a full fit but i think going down one size will help especially since the photos don't show just how full the back really is. the fabric will probably snag easily. still i just really like the sty",4,1,10,General,Tops,Knits +1009,35,Boyfriend adores it. but runs small,I agree with the previous review that this skirt definitely runs small. i am normally a size 4 with rooms but this size 4 was very tight. i decided not to go through the trouble of exchanging and to keep it. my boyfriend seems to like the style more than i do so that's a good thing :),4,0,3,General,Bottoms,Skirts +868,60,Cute very oversized t-shirt,"This is a cute waffle t-shirt material is very thin and see-through it's a cute shape and style but it runs absolutely huge + is not a shirt for petite people + the extra extra small was huge",4,1,2,General,Tops,Knits +1009,66,Runs small,"I am so in love with this skirt, but unfortunately it runs at least one size small...since i am a 16 there is no sizing up. the color, quality, and style are perfection but i would say this runs as more true to junior's sizing than a regular women's size. so sad because it will be going back.",3,1,5,General,Bottoms,Skirts +861,72,Quality fabric,"Color was a perfect match for the linen slacks i wanted to pair it with, however the top was way, say too big so i'll be sending it back.",5,1,2,General Petite,Tops,Knits +875,46,"Big, baggy, boxy","The fit of this top is nothing like in the photo. the blouse on the model must be pinned back to achieve that fitted silhouette. in reality this top is baggy and boxy and runs at least one size large. the embroidery, details, and soft material are great, but the fit is off entirely. this item is going back.",2,0,14,General,Tops,Knits +854,26,Like it a lot but...,"I like this top a lot, very nice. i love the design, style, and fabric. but it runs too small. i have a curvy figure, and it pulls in the front so you can see between the buttons, and pulls at the bottom as well. i usually wear l or xl, in xl this one was still a bit fitted especially around the bust. i am still keeping it - hoping to lose a few pounds. but it is a very nice top with the fabric, design, and style. very stylish! it looks casual on the model but can be dressy.",4,1,3,General Petite,Tops,Knits +1008,60,,"Great skirt, can be dressy, work or casual, love it!",5,1,5,General Petite,Bottoms,Skirts +819,50,Slim fitted silouett,"I purchased this lovely blouse to go with slim cropped stretchy pants. good for bum coverage while still looking sleek and tailored. i purchased the medium instead of small as this is a true fitted button up style and i wanted to avoid the gaping at bust. the arm holes are fitted nicely as well, no bra exposure. looks very nice on. on point for sure?. + (for reference i'm 5'5"",34dd, ruler shaped figure,narrow shoulders and usually a small or medium at retailer.)",5,1,4,General Petite,Tops,Blouses +860,27,"Love this top, with a slight modification","I saw this top in my local store and almost didn't try it on solely because i hate split-sleeve/cold-shoulder tops. but, the peplum style and pattern were so cute that i took it into the dressing room anyway. after trying on probably 6-8 items, i wound up buying this top and one other. i really like the fit, as i am high-waisted, and it defines my waist really well . the wide neck is also super flattering. and i love the pattern. i went ahead and purchased, despite the fact that i wasn't thrille",4,1,6,General Petite,Tops,Knits +844,39,,I love this shirt! i received many compliments on it when i wore it to work with a skirt.,5,1,0,General,Tops,Blouses +860,38,,"This top is way cuter in real life. it looks a little frumpy on the model but t is very flattering on. the sleeves are split so not a warm top, but this will be a nice transitional piece. i am always looking for interesting but classy tops to war to work and this fits the bill.",5,1,9,General Petite,Tops,Knits +961,63,This vest will work in the warmer winter in texas,"The sherpa vest i received from retailer was the color the model is wearing.. the same hue and shade of both the faux shearliing and faux leather. i'm very satisfied with the vest. i believe it runs a bit large. i usually wear a large, sometimes an extra large yet the m/l fit me fine. shearling is very in this year and this will complete your look-wearing either pants or skirts.",5,1,1,General,Jackets,Jackets +1008,46,This skirt was a great purchase.,"I love the style, easy to wear to work or out for an evening. great quality.",5,1,0,General Petite,Bottoms,Skirts +961,29,Misleading,The color is completely off! i loved the way this vest looks in the picture! i was excited to have that vest but unfortunately what i received in the mail was a huge disappointment. it came wrinkled and the brown is not as rich as it is in the picture. very pale. horrible.,1,0,1,General,Jackets,Jackets +1008,31,Not for those curvy on bottom,"Love the material and style - a very versitile skirt. however, doesn't fit well for those who don't look good in the slimmer looking pencil skirts.",4,1,7,General Petite,Bottoms,Skirts +1008,54,Off-kilter design has pizazz,"This is an intriguing looking skirt, with it's sharp diagonal and the ""quilted"" optic pattern front panel. it's a nice twist on a black pencil skirt. i've been wearing it with a longer, wrap sweater in the cold, but imagine that i'll be able to wear it into the spring and maybe even year round with lighter weight tops. the fabric is a little thin in the back and the diagonal doesn't lie as straight or look as sharp as i'd like but for the sale price i paid, i really shouldn't complain. it's also",4,1,0,General Petite,Bottoms,Skirts +860,25,Easy interesting top,"This top is really comfortable, and the details make it easy to add interest to an outfit. i was worried all the details together would be a bit overwhelming, but it works. i wish the design was on the back as well, but it's fine. the material is a nice light weight, but the pleats do fold up a little after washing, so ironing is required.",4,1,0,General Petite,Tops,Knits +1008,27,Amazing skirt for every occassion!,"Retailer does it again! i'm constantly looking for pieces that will work for a day at the office and then a night out, and this skirt is perfect! you can't really tell in the pictures, but there is a larger slit that separates the grey material from the black, which makes the skirt have more of a statement. it runs true to size and the material is thick enough that it will do great in winter!",5,1,9,General Petite,Bottoms,Skirts +1008,33,Nice classic look,"This skirt is great and you can't beat it for the price. it fits more like a pencil skirt on me, and looks sort of a-line on the model. very nice work appropriate skirt. though the slit comes higher than i expected. my thighs are tattooed so i put on some black tights and it looks great with a blouse and cardigan!",5,1,1,General Petite,Bottoms,Skirts +860,36,Split sleeves -- you can't tell from pics online!,"Tried this on and loved it except for one thing -- the sleeves are split, so any movement reveals most of your arm, shoulders. which also makes it fairly impractical for winter/the office (yes, i could wear a sweater or blazer with it, but that defeats the purpose of having an all-purpose cute top.) why, retailer? this is a perfectly cute top and looks great with jeans etc., but the split sleeves make it a no-go.",3,0,9,General Petite,Tops,Knits +1008,56,I love this skirt!,It fits great. it is super comfortable. have gotten many compliments on how this skirt looks on me!,5,1,0,General Petite,Bottoms,Skirts +860,25,Elegant and creative,"This blouse is a great transitional piece. as other reviewers have noted, the sleeves are split and that's the only reason why it gets four stars instead of five. i wore it with a 3/4 sleeve black top underneath to eliminate this issue for the cooler months. overall design is good and the print is classy and creative. this will be a lovelyt go-to blouse to wear with denim. fits the budget too.",4,1,2,General Petite,Tops,Knits +860,35,Better in person,"This top is prettier in person than on the picture. the picture kind of makes the material look really cheap - it actually looks nice in person. it's very comfy and feminine, showing just the right amount of skin on the arms. the elastic on the waist also makes me look 3 lbs. lighter. it goes good with jeans or skirts.",5,1,0,General Petite,Tops,Knits +819,32,,"This blouse is just so beautiful! but i do love white blouses, so that may influence my enthusiasm. however, once i buttoned it up, it was just dreamy. i have a long torso and am tall for a typical xs, so it's often hard to find something that's the right length. this is perfect! it may overwhelm some ladies who are on the petite side of height, but it's a rare find for me. paired with a pair of cropped pants because i'd come in a dress, it looks delightfully vintage in the best of ways. i'm sti",5,1,4,General Petite,Tops,Blouses +1008,27,Super cute!!!!,Very flatttering skirt ! super cute ! highly recommend !,5,1,0,General Petite,Bottoms,Skirts +469,54,Two for one,"This is a high-quality swimsuit that can be worn inside out. easy to wear colors, fantastic pattern placement. the other side is an intense blue. i would suggest going by the size chart on the mara hoffman site. +. + i think this should look great on athletic figures. the back is low-cut and the bottom has medium coverage, not as skimpy as brazilian cut bottoms. not ideal for hour-glass figures as there is no bust support, and you will show quite a bit from the side (it is cut in at the front w",5,1,1,Initmates,Intimate,Swim +860,40,Gorgeous top!,Wearing this today! it fits true is size & is machine washable. the slits make it unique. don't hesitate to purchase this one.,5,1,0,General,Tops,Knits +835,27,"Pretty, but boxy","I really liked this top, but it was very expensive even when on sale, and it ended up being boxy. i am flat-chested (32a), 5'7'. if i remember correctly, i tried on the xs. it was cute, but it wasn't flattering because it was so boxy on my frame. perhaps it'd be more flattering on other body shapes. i think it would be cuter if it was a bit more fitted. otherwise, the quality seemed great, though i'd be worried about all the beading falling off eventually.",4,1,0,General,Tops,Blouses +1078,31,Perfect winter dress,"This is the perfect sweater dress for any occasion. i dressed it up with a belt and necklace for a christmas party and wore it with boots to just kick around the house. it's a really warm dress too, so great for colder weather. probably would not want to wear this dress in warm temps. + +it's so comfortable and it's made with high quality material. i'm curvy on the bottom and my only wish is that this dress had less material around my waist- it's a pretty straight cut.",5,1,2,General,Dresses,Dresses +895,72,,,5,1,0,General Petite,Tops,Fine gauge +895,28,Sweater,I loved the way this sweater was made. my arms are really short so the sleeves were way too long and looked silly rolled.,5,1,0,General Petite,Tops,Fine gauge +829,20,Simply floaty,"I purchased the white in the store in a size 6. 34d. i ordered the black online in a 6 and the lining was a bit snug. (i can maybe remove the black lining) however, i really like how the peplum looks. the v neck and bra friendly design are a perfect marriage. i see wearing these through the fall with a denim jacket or cardigan. for now i am enjoying how floaty and feminine i feel. i think this is a perfect top for women with a larger chest as it gives a nice shape but doesn't look maternity or b",4,1,1,General Petite,Tops,Blouses +1078,48,Comfortable and cute,I had been looking for this dress in xs. the small ran large on me and xs had sold out online. i'd been searching for it calling every store around and not having any luck.. when allison called me from store 428 highland village in houston.. she had found the dress for me in the woodlands.. i was able to purchase it and i can't wait to get it.. it will be perfect for the hot summer here in texas. thank you allison for such great customer service and retailer for employing such great staff.,5,1,0,General,Dresses,Dresses +1092,41,Too peasanty,"I read the online reviews and thought this dress would be a winner. it is tight in the chest (i am not busty) and i would have exchanged it for a larger size but i just didn't like the style. the material is beautiful but between the neutral colors and the style, i felt it was too ""little house on the prairie"". pretty but not the look i was going for.",3,0,0,General,Dresses,Dresses +1078,41,Easy to throw on summer dress,This dress has the perfect amount of swing to it that it hides a stomach - which i looooove! the blue chambray color is beautiful and it is lined partially. so here's what i don't like - this dress would have been so much better fully lined. now it could just be that i am extra sensitive to fabric and find it to be a bit itchy where the ruching is on the upper back of the dress. but i somehow can't get myself to take it off the hanger to wear it....i may just be returning this dress.,4,1,3,General,Dresses,Dresses +1078,68,,"I tried this on in store in blue, and it's so comfortable. it's just the right level of loose to be flattering. for me, the cap sleeves were a little strange. they just didn't sit in a way that was flattering or seemed purposeful--not sure if that was the design or my body.",5,1,3,General,Dresses,Dresses +1078,42,Easy & fun summer dress,"I just bought this dress today, and it is absolutely stunning. it looks so much better in person than on the model. i think it runs true to size, however it does have relaxed fit. overall, the dress has nice quality fabric and nice flow, without adding bulk. great buy!",5,1,5,General,Dresses,Dresses +895,47,Great detail,This is a perfect outer layer for chilly mornings or nights. the detail on the back and sleeves is definitely retailer quality. the sleeves do run a little long though.,4,1,0,General Petite,Tops,Fine gauge +1078,62,"Lovely, but big","I adore this dress! as a mom of two under 2, i need things that are cute, but no-fuss. this is exactly that piece! beautifully lined, breezy linen fabric, machine-washable, and flattering. the catch is finding the right size to flatter. i'm 5'7 and 128...found my normal size small to be really big everywhere. i went with the xs to avoid issues in the shoulders, but i maybe could have gone even smaller. fabric doesn't have a lot of give, so if you are large in the chest, my guess would be a possi",5,1,15,General,Dresses,Dresses +1078,42,"Great concept, but fell short","I normally wear a medium in retailer dresses, but ordered a small due to the reviews that stated how large this dress is. they weren't exaggerating!!!! the small was way too big for me, and the xxs and xs are already sold out. beware that you will have to size down at least 2 sizes to make the dress fit similar to the model pictured. it is going back for me!",2,0,0,General,Dresses,Dresses +1092,23,Love the dress just not on,"I loved this dress online, however i did not love it on me. it was a bit snug in the waist and bust (i usually order a 2 or 4 but got the dress in a 4). i thought i would love the mid length but it felt awkward on me (i'm 5'10""). i think its a beautiful dress just didn't work for me.",4,1,1,General,Dresses,Dresses +895,61,,Nice quality. too big for my taste. really liked the style but sleeves were very long.,4,1,0,General Petite,Tops,Fine gauge +895,38,,"This cardigan is so much more beautiful in person. i thought it would be very lightweight, but it has a nice weight to it. this will go with absolutely everything and looks lovely on!",5,1,9,General Petite,Tops,Fine gauge +1078,36,,"Such a cute dress but it runs large. i'm 5'4"" 130 lbs and am typically a size 4 can wear a size 2 in certain clothes. i tried on the xs and it was still too big. i would of bought it in an xxs but they are sold out. really a comfy laid back dress that would be comfortable in summer. if they get more xxs i'll buy it.",3,1,0,General,Dresses,Dresses +895,51,Very satisfied!,I love this sweater! it does run a little large though. fits beautifully. great for cool summer nights and early fall. dress up or down.,5,1,0,General Petite,Tops,Fine gauge +895,49,Great light sweater,I got the brown one and i'm very please with the softness of the thread and the light weight feel of the fabric.,5,1,0,General Petite,Tops,Fine gauge +1078,56,,"This is the perfect day dress--loose fit, comfortable fabric. i usually wear a m or l in most dresses of this type, but the s actually was the best fit. i have worn it all summer and it's perfect for hot weather. just order smaller.",3,1,0,General,Dresses,Dresses +493,40,Love the top and the message!,"Love this tank!! the cotton is very soft which also allows some flow. i've worn this to yoga, and to teach barre and cardio dance and it's a hit! as a life-long dancer, this was a must have. my only negative is since the sizing is either xs/s or m/l, it may run too big or too small for some. i tyically wear a m or 6 in retailer tops and this is a little large in m/l; however, not to the point of being distracted with straps falling or the like. highly recommend.",5,1,0,Initmates,Intimate,Lounge +1078,61,Great dress!,"I am a size 14, and tall. i was afraid that it would be too short. the sales clerk grabbed a large, and it fit! it's airy and lightweight and hugs nicely around the back. the big surprise? pockets! love it!",5,1,4,General,Dresses,Dresses +895,47,Soft and sweet,"I thought this sweater was cute online but turns out it is even cuter in person! the cotton linen blend makes it easy to layer over a tee shirt or blouse, and the neutral color goes with everything! +as a side note, included with my sweater was a signed postcard informing me that this item was not on hand at their distribution center. so they ""sounded the horns"", and their spokane, wa store ""saved the day"". thank you spokane, wa store and thank you meredith for packing with care! +i love it!",5,1,0,General Petite,Tops,Fine gauge +1070,46,,Really great pair of pants/leggings. considering a second pair. great flattering fit. i ordered the petite as well because i was concerned about the length but the stride on the petite a was to short and the regular was not too long after all.,5,1,0,General,Bottoms,Pants +895,24,,"I have a mixed feeling about this cardigan. +on one hand, i like it; on the other hand, there are some minor things i do not like. +first, i love its knit pattern; especially the pattern on the back. +second, i like a soft color of this cardigan. +on website pictures, two motifs look almost the same. +in reality, brown motif is light pink-ish while blue motif is light blue-green-ish. +third, texture. +this cardigan is made of linen and cotton, so it feels comfortable to wear. +if there are flaws",3,1,3,General Petite,Tops,Fine gauge +1078,53,Beautiful shade of blue!,"I saw this online, visited my local retailer, found it! it is the most beautiful shade of blue, nicely textured material! i am 5'7"" and 148 pds, i bought the xs and it fits perfect! definately designed for us smaller busted gals!",5,1,0,General,Dresses,Dresses +1078,25,I love this dress!!,"I bought this in the blue and you should definitely size down. it runs very large. it's amazingly comfortable and high quality. great length as well (not too short and not too long). it has a partial lining so it's not necessary to wear a slip which i love. i get compliments every time i wear it, even one of the saleswomen in retailer asked me where i got the dress. she was surprised when i told her it was from retailer from online. i liked it so much i just ordered the red plaid.",5,1,0,General,Dresses,Dresses +895,48,"Cute, yellow is darker","This is a cute sweater, i agree that it's slightly boxy partly because of the side pockets which i think are cute. the yellow is darker than it appears on my screen, more like a mustardy-gold which is not great on my skin tone. i think it's true to size, i got my usual retailer size: xspetite (i'm 34aa, 26"" waist) and it fits just right. it's soft and a nice medium weight. on the packaging it was called a bomber, so i'd say it is cut a little like a bomber jacket.",4,1,7,General Petite,Tops,Fine gauge +1092,49,Not for anyone with a large chest!!,"I'm a 36ddd and although that's pretty large, i don't generally have trouble fitting into most retailer clothing. (the tracy reese amoret dress, for example, fits just fine in my regular size.) so, i ordered this dress in my regular size. well, i tried it on, and the right and left sides of the front closure on top were literally about 10 inches apart. there was *no way* this would fit, even if i went up 3 sizes. it's crazy! +this is a terrible shame because it's really a lovely dress and it fits j",4,1,3,General,Dresses,Dresses +1078,26,Don't bother,"This dress really was huge, and not at all flattering. i don't know how they got it to look good on the model in the picture. material was nice and soft, but i really don't see how anyone could look good in this, no matter what your body shape is.",1,0,0,General,Dresses,Dresses +1070,45,So soft,"These pants are so soft and comfortable. i'm almost 5'6"" and the hem completely covers my ankles but does stop short of bunching. the only thing i'm not crazy about is the waist. it's pretty high and a bit loose so every time i get up from sitting i'm having to pull my pants back up. other than that, love that it's something that can be dressed up or down.",4,1,0,General,Bottoms,Pants +895,44,Soft,This is a nice sweater. runs a little larger than size.,4,1,0,General Petite,Tops,Fine gauge +1078,51,Soft and comfortable,"Cute dress. i say true to size - but keep in mind it is loose and flowy and i purchased in my usual size medium and it fits perfectly. it's lined so there is no need for a slip. very comfortable and cool. i am 5'6"" and it is 3"" above knee. i paired it with the gemline lariat turquoise necklace and have already received several compliments and my day is only 1/2 over! +a great priced dress which holds true to retailer's quality and uniqueness of items offered.",5,1,0,General,Dresses,Dresses +895,37,Short and shapeless,"Even on my 5'1"", short-waisted, 100 lb body, this was super short. it was also super boxy. not flattering at all. the blue was a good color but this is going back.",1,0,15,General Petite,Tops,Fine gauge +895,32,Better in person!,"I was swayed to buy this via the reviews on the site -- and they are all correct! it is a beautiful piece. i got the ""brown"" colored one, but it is pretty much exactly the color in the picture, more of a khaki. + +it is a gorgeous sweater. the sleeves are very long, but easy to push up if they're too much for you. it is also very long, which i prefer but on shorter gals it may be overwhelming. it's a perfect shell for cooler summer nights and it dresses up a basic outfit.",4,1,0,General Petite,Tops,Fine gauge +1078,35,Effortless for summer,"Caught my eye at checkout, and had to run back to the dressing room for a quick try-on, which ended up being a great call! the dress is super easy and flattering, as the lining keeps it skimming over my hourglass shape. the fabric has a sweet floral texture, and the gathering takes a basic shape and makes it interesting. i'm 5'4"" and it came just above the knee in front, while the back was a bit longer (another flattering feature). this is going to be a summer go-to!",5,1,3,General,Dresses,Dresses +829,51,Scratchy gauze,"I am ever in search of a light, white, summer top. this is not quite it. there are two distinct layers, and each of them is the scratchy, starchy type of gauze. it would just roast me in the summer sun--but i run fairly hot in general.",3,0,4,General,Tops,Blouses +913,74,Runs short,"I really wanted to love this sweater however it fell much shorter on my 5'10"" frame than it falls on the model, between my belly button and hip, and the sleeves ended just below my elbow and were much more voluminous than they appear in the product shot. i do have long monkey arms though, so on someone more petite it would probably fit more like the model shot. +the quality of the knit seems nice, however the zipper used is very slim and light weight and got stuck twice just while i was trying i",2,0,2,General,Tops,Fine gauge +829,59,,"Loved the grey color and the design but the shirt ran huge. i ordered a 2 and it fit me like an extra large. i am 5'2"" about 110 pounds and not flat chested.",3,1,6,General,Tops,Blouses +1009,61,"Love the style, runs a bit small","I usually wear a 6 for skirts and dresses, but when i got this in the mail, it ended up fitting a bit snug on my hips. other than that its super cute and has a great liner underneath!",4,1,4,General,Bottoms,Skirts +1049,54,Nice length,"These are a nice option if you want crops that are shorter than the typical mid-calf length, but you don't want short-shorts. they hit right at the knee, so the length makes them cool and comfortable for summer. i wanted them to run errands, walk my dogs, and generally to just hang out. they'll be nice when traveling too. +they run large. i usually wear a 28 but bought the 27 in these. ( 5'5"", 124 lb.) they also definitely stretch out while being worn, so you may be able to size down even furthe",4,1,11,General,Bottoms,Pants +895,28,Pretty good staple,"The sweater feels nice, but not as luxurious as some cashmere. for the sale price, it is worth it. found it a bit small, but still wearable. hopefully it will hold up well, as the zipper seems a bit delicate. overall it is a good basic piece.",4,1,9,General Petite,Tops,Fine gauge +872,50,Great top!,This top fits exactly as it does on the model! it's flattering and comfortable. i wore it to work with dress slacks and got a lot of complements. it's easy to pair with pants or jeans. my only complaint is the material it's made of is a bit rougher and thicker than i thought it would be. but that's minor. i am a petite but this fit me well even though i got it in a regular size.,4,1,5,General,Tops,Knits +1070,53,"Super cute, but...","I decided on these last minute for a date last night and let me say...i looked hot. :) they are super cute and flattering (im slender, but hey, im also 53) and could be dressed up or down easily. the but is because when i got home i realized that i had ruined my new gel manicure from the black die! it comes off so easily that you should be cautious of your car seats, sofa, etc. i made the mistake of not washing first, but do! hopefully thats enough to help because these are great leggings.",4,1,0,General,Bottoms,Pants +1070,52,Great leggings,"I had purchased other sanctuary black petite leggings in the store and found these on -line. they are very flattering and well-made. runs a little small, i am 5'0 and 97 lbs; small fit more loosely which i prefer so i can wear them to work. thanks retailer for carrying great petite selection!",4,1,1,General,Bottoms,Pants +1078,51,Beautiful dress but....,I wanted to love this dress but it was too large... and once i washed it (which is recommended) it shrank so i had to return it.,4,0,1,General,Dresses,Dresses +1070,45,Flattering and comfy,"I love these leggings! the material is a bit thicker than your typical leggings material so it hugs without being too clingy like spandex. the fit i's somewhere between leggings and skinny pants. the suede fabric feels soft and looks to be of good quality. the petite fit works perfectly for me as well, no bunching at the ankles. i can see these being a staple in the upcoming months.",5,0,1,General,Bottoms,Pants +895,23,Gorgeous,"I recently purchased this cardigan and got so many compliments the first day i wore it. the detail is so exquisite, it will be worth every penny.",5,1,0,General Petite,Tops,Fine gauge +895,55,Flexible sweatering,"Love this sweater! it is easy to wear and goes well with multiple outfits. it is a great, flexible add to my wardrobe. it fits well, even in the sleeves!",5,1,0,General Petite,Tops,Fine gauge +895,50,Favorite sweater this season,"I got this in navy and love it. the overall shape is sleek and classic - body skimming but not tight - with subtle detail in the knit design that make it entirely unique. the quality and weight of the cashmere is perfect - not to heavy or light. xs fit perfect on my 5'5"" petite frame. but busty or longer-torsoed people may find the length a bit short - it hits me right at the top of regular low-rise jeans. this may be my favorite retailer buy of the season.",5,1,11,General Petite,Tops,Fine gauge +912,53,Love it sadly has to go back,This sweater is one of a kind just like many pieces from retailer. the design is super cute the color is perfect and others dont like the sheer material however for me since it's not see through i really like it. the reason for a return is they sent me the wrong size..ordered a small (i checked my order) and i got a xs petite. so sad since large is the only size left.,5,1,0,General,Tops,Fine gauge +1078,64,,I love love love this dress for everyday running around or you can dress it up with jewelry or a scarf. so boho and so comfortable. buying the other color now.,5,1,3,General,Dresses,Dresses +895,19,Comfortable cardigan,I loved the color (it is different than in the picture) and texture of this cardigan. it was very soft and comfortable to wear.,4,1,0,General Petite,Tops,Fine gauge +895,34,,,5,1,0,General Petite,Tops,Fine gauge +1078,68,Runs big!,"This dress was huge!! i'm normally an extra small and i was swimming in it. the xxs was sold out, but i think it would of been huge as well.",4,1,0,General,Dresses,Dresses +895,52,Nice sweater,"This sweater runs large and long in the arms. i am 5'5"" and often wear petite in pants but not tops. the medium petite is perfect, the sweater is a beautiful open gauge knit and will be great this fall/winter for work over a tank and nice pants. the blue color is more of a mint green/blue, very pretty and different than anything i have in my closet. great addition.",4,1,1,General Petite,Tops,Fine gauge +895,63,,"Purchased this in the blue color in the store today. honestly, if i had just seen it online i would not have given it a second look. it really is beautiful in person. the bell sleeves are delicate as well as the pattern throughout the sweater. it fits true to size. i would wear it open with a colorful tank underneath. perhaps if you are very tall and very thin you may opt to hook it closed. the sizing is perfect, it flows and i really have to say you must see this in person to really appreciate",5,1,12,General Petite,Tops,Fine gauge +895,49,"Great casual sweater, runs big","I originally saw the sweater in one of the stores. it really is much nicer in person than online. i decided to try it on while there but was looking for other items, not sweaters then. i normally wear between xs and s depending on the brand. well, even the xs was too big. i thought i'd order it in a petite size since i am short but forgot about it once i got home with some other retailer items. i eventually did search it out but the xs petite was already sold out. i ordered the xxs?this fits but i",4,1,3,General Petite,Tops,Fine gauge +1078,54,Disappointed with fit,This is one of those dresses that looks so cute on the model but doesn't look anything like that in reality. it has no shape and it fits weirdly all over. i am normally a m and i ordered the s and it is massive.,1,0,0,General,Dresses,Dresses +895,53,"Nice cardigan, odd colors","I ordered this for my mom in color ""blue motif"". i could not see a difference online between the colors ""brown motif"" and ""blue motif"" - both looked grey to me. in real life blue motif looks grey with a very light bluish tinge to it. it looks like grey wool and light grey-bluish fiber was interwoven, but you have to look very closely to see that. i guess i would have prefered a pure white or cream color but that is a matter ot your pesonal taste i guess. the cardigan style is an oversized one. t",4,1,29,General Petite,Tops,Fine gauge +1078,41,Gorgeous!!,Easy breezy summer dress!!! love the detailing under the arms!!!,5,1,6,General,Dresses,Dresses +895,36,,Comfy and lightweight - beautiful blue color. sleeves are a bit long but not a bother to me.,4,1,0,General Petite,Tops,Fine gauge +1028,33,Wear for years to come,"I love hess overalls. they are true to size and have a great vintage look to them but done in a classic way. i am 5'6"" 125lbs and a 34b. i bought the xs and it fit great! they are fitted and not sloppy like a lot of overalls. you can easily dress them up or down. soft and stretchy material is a plus",5,1,3,General,Bottoms,Jeans +895,48,,,5,1,0,General Petite,Tops,Fine gauge +1092,34,Tight in chest area,My bra size is a 36 c. i got the medium and the dress buttoned looked nothing like the model... the top button barely buttoned....,5,1,1,General,Dresses,Dresses +1078,52,"Comfortable tunic, yet fashionable and edgy",This is a a great piece. i tried it on in denim and went out and ordered the red checked print. this was so cute! i loved it in the red checked and then ordered the denim. it can be dressed up or down. it is comfortable and there is an edgy quality to the look. you can wear heals and a statement necklace and it really is dressed up. order a size down and it works well. thank you retailer!!,5,1,0,General,Dresses,Dresses +1070,50,,"These leggings are gorgeous. soft suede feel, perfect fit, great look, especially for dressing up and going out. love them.",5,1,0,General,Bottoms,Pants +895,64,Surprise!,I just received this in the green color. it is a true medium jade green. my monitor shows a blue color and that is what i expected. the green is pretty but i would have preferred the blue that was shown. i found this to fit large . the pockets that are barely visible in any of the photos gape open and don't lie flat. i do like this sweater as a very casual jacket alternative on cooler days. the cashmere is a nice weight and is not too precious to wear every day with jeans.,4,1,5,General Petite,Tops,Fine gauge +895,64,"Pretty,pretty","I never noticed this sweater online but when i saw it in the store, it was love at first sight. i agree with other reviewers that the color description is odd. the brown is a very pale gray and the blue is a light mint green. the sweater is very delicate looking and fits true to size. the sleeves are very long, covering my hands, and i have long arms. it does have enough body to make a large roll at the cuff. i do have a couple of issues that aren't related specifically to this sweater: even tho",5,1,9,General Petite,Tops,Fine gauge +1092,78,Amazingly amazing,"This dress is gorgeous. it looks exactly as it appears on model. the model must be wearing a petite because the regular size dress is maxi length on anyone 5'8. the petite is midi length and is perfect every where else. i am not petite, but this petite worked perfect on me for midi length. +pros of dress +the dress has nice light float fabric, with colorblind on bottom for a touch of modern. +the dress looks very dowton abby and the vintage look is hard to find now days in dress. +the dress looks fa",5,1,16,General,Dresses,Dresses +829,24,"Flowwy, comfortable, feminine","I love this tank! its something you can dress up with a skirt, or wear over jeans. i like loose fitting tops, although i have a slender frame. this is also so comfortable. i went with a size medium, and it fits perfect.",5,1,0,General,Tops,Blouses +895,34,Beautiful and bright,I love the color of this cardigan and the cashmere is very soft. i love the detail in the stitching and how the zipper is covered. i do wish it were a bit longer but it's definitely a keeper.,5,1,0,General Petite,Tops,Fine gauge +829,55,Simply gorgeous!!,"Just bought this top today at our local store. it's just gorgeous on. i'm a 34dd and bought the size small and it fits perfectly. if you're small chested, you can probably size down as it runs nice and full for a larger bust. it's so feminine and pretty on. a must for any wardrobe.",5,1,10,General,Tops,Blouses +895,36,Just what i needed!,"I recently noticed that my trusty black cardigan, that i've had for years, was getting thin in the elbows and just kind of ragged, so out i went on the long journey to find the perfect cardigan with detail. this cardigan fit the bill, with a perfect fit and lovely texture, making it not just your average sweater, to go with my style. can't say anything bad about it!",5,1,1,General,Tops,Fine gauge +1078,26,This dress is perfect for summer!,"This dress was love at first sight. i did have to size down from my normal size but the dress is so comfortable and cool. as another reviewer said, it does shrink after first wash but perfect now since i am 5'2"". it shrank about one inch in length only. i got many compliments and my husband said it was beautiful- that's a plus! i was comfortable and cool all day. get it before it is out of stock. this dress will not make it to sale.",5,1,0,General,Dresses,Dresses +1083,35,"Gorgeous dress, recommend for slimmer individuals","I love this dress! my bra straps do not show in the back. you can slightly see them in the front but wearing black or nude gets you around this problem. i love the slim design-it is very flattering. i tried this is my normal size 4 but also the 4 petite. the petite did not work for me since there is a larger fabric cutout for the butt area-this was too high and above my natural waste. because of this, i opted for the slightly longer option where the extra fabric was surrounding my bum. this does",4,1,2,General Petite,Dresses,Dresses +936,57,,The most amazingly versatile cardi you'll ever own! it goes with everything from boyfriend jeans and booties to black chiffon pleated skirt. it's soft and feminine and makes you feel like you look like a million dollars! definitely worth the price.,5,1,4,General,Tops,Sweaters +850,59,Perfect fit,This is a beautiful top which runs tts and armholes are not too big for once. i typically struggle with armholes being way too big on me and have to size down in most tops and this top runs tts and armholes are perfect. no bra showing beneath. yay! it is a beautiful color and design. just love it. i am a typical size 4/6 and size 6 was perfect. i am 36c and no problems in bust area. works well with my short torso. highly recommend. i think it will look great on all body types.,5,1,15,General Petite,Tops,Blouses +819,39,Adorable for work or weekend,"The color pattern in this material pops a lot more in person than on the website. fits perfectly, very versatile regardless of the occasion or the season (at least in california!). love it.",5,1,1,General Petite,Tops,Blouses +1083,37,,"This is the most beautiful dress! so many beautiful patterns, the zipper across the front and belt across the front is so flattering and sexy. beautiful flower applique on the hips. everything about this dress is magnificent!",5,1,0,General Petite,Dresses,Dresses +1083,29,"Beautiful dress, strange fit","I have to agree with people who are saying this dress runs small in the hips. even a size 0 is typically roomy on me when it comes to dresses at retailer, but a size 4 in this would have been best on my hips. the size 2 was just a smidge too tight looking and loose on the upper half of my body, which made my waist look thicker than it is, i thought. my boyfriend disagreed and thought it looked nice, but i still didn't buy because my life would not give me many opportunities to wear this thing anyw",3,1,0,General Petite,Dresses,Dresses +936,57,,,5,1,0,General,Tops,Sweaters +1027,57,Classic,Loving this jumpsuit! i normally a medium top small bottom i bought the medium it fits right. soft fabric and nice color.,5,1,0,General,Bottoms,Jeans +936,44,Too boxy,It's not as form fitting & hour-glass shaped in real life as on the model. i think they must have clipped it in the small of her back so it does not look so boxy. otherwise it's nice.,3,0,0,General,Tops,Sweaters +1083,40,Disappointed,"When i wore this the two times i did, i got a ton of compliments. it runs small, and is a bit tight when sized correctly but its really stunning. after the second wear, the fabric under the arms frayed and its now unwearable. i have to return it and am so disappointed. sadly, i would not recommend buying it for that reason.",2,0,1,General Petite,Dresses,Dresses +1083,47,,I ordered 2 dressed in 2 different sizes. neither fit... both were very tight... runs very small.,3,0,0,General Petite,Dresses,Dresses +863,39,,I love the design of this shirt - very flattering fit. very soft and great as a layering piece.,4,1,0,General Petite,Tops,Knits +936,30,Very vintage!,"This sweater caught my eye months ago, and i recently picked it up on sale at a great price. it reminds me of something betty draper would wear on mad men; it has a fabulous 1960s feel to it. and, everyone loves pockets! i love the combination of peachy pink and cream, and the sweater it quite warm. the fit is good, although on me, the buttons gap slightly (this is easily remedied by wearing a shirt underneath, as shown on the model). i'm already dreaming up lots of fun outfit combinations!",5,1,0,General,Tops,Sweaters +1084,39,Beautiful color and fit,"This dress fits very nicely, i didn't keep it as i have too many dresses, but loved the fit. hip was a little looser compared to the top, you can almost see it on the model if you look closely, the dies poke out a bit. the teal color is very flattering on my pale skin tone. love the back, you can actually zip it all the way (mid back) with the tie in the neck, leaving a nice cutout... 0p fit me (115 lbs, 26.5 in waist) 30 dd).",5,1,8,General,Dresses,Dresses +996,48,Lovely coins in a fountain,This precious skirt is a treasure chest of soft bronze fabric circles scattered like coins at the bottom of a fountain. the circles are a bronze color and cannot be felt through the skirt net. it's finely finished and simply a nice piece for dinner out or a day in the office. i received many compliments on my first wearing.,5,1,1,General Petite,Bottoms,Skirts +1084,57,Runs big on top,"Beautiful dress but the fit was off for me. overall this is good quality with beautiful lace detail. as the other reviewer mentioned the cutout in the back is very cute. i wanted to love this dress but i found it to run large in the top. i'm 5'6 130lb with 34c and i ordered the small, the top just hung off of me. perhaps it would have been better with an xs.",3,1,5,General,Dresses,Dresses +1083,43,Lovely holiday dress!,"I can't say enough good things about this piece. high quality in structure and design. when i initially put it on i worried that i might have ordered a size too small. so i was pleasantly surprised to realize this dress fits like a glove but has enough give in all of the right places to let you eat, dance, breath, etc. i received tons of compliments. +of note, i am 128 lbs and 5/5 - i wore a size 4. +wanting another event that i can wear this to as i wore it to a work xmas party.",5,1,0,General Petite,Dresses,Dresses +996,69,Lovely!,"This has a wonderful texture and feel to it. the leather dots are supple, and the tulle is soft and flowey. it's long, more like a midi skirt, and the color is more towards taupe than ivory. +with a shimmer, this skirt is very fun to wear.",5,1,2,General Petite,Bottoms,Skirts +850,24,Great shirt,"I love this shirt and although it is see through a tank works great under it to wear to work. the buttons on the back are sewn on really well and it comes down far enough/ is not too short. i am about 5'4"" and 100 pounds. the 00 was tight on my neck so i kept a 0. otherwise the 00 would have fit fine since its a blousy shirt and would not have been too tight in the shoulders or armpits.",5,1,2,General Petite,Tops,Blouses +863,65,Great top,I bought this top in taupe and love the style. it's not too boxy or long. cotton is always a plus and i just wish there were more colors.,5,1,0,General Petite,Tops,Knits +996,46,Darling!,"This is beautiful and the leather metallic circles are sewn on really well, i checked a bunch of them because initially that was my concern that one would get caught on someone's clothes. the 6 fits perfect (5'9 and 140 lbs). goes really well with the dark denim shirt that they displayed in store. definitely a fun piece for the holiday season.",4,1,14,General Petite,Bottoms,Skirts +996,49,Love it!,"I adore this skirt - it is so soft and flowy. i was not sure if the mesh would be a bit stiff, but it's not at all. the dots are soft as is the main fabric. i could wear this all day long and be very comfy. the underlying fabric is a bit more taupe than gold in color. i am between sizes to i sized up and was glad i did- no pinch at the waist. i love that it's feminine yet funky and could be worn formally or in fun. it is midi-length, as you see on the model. absolutely a great buy!",5,1,10,General Petite,Bottoms,Skirts +1083,55,Pretty but tight in rear,"Pretty fabric, nice style, took it back.",2,0,1,General Petite,Dresses,Dresses +1083,31,Weird fit,"Dress looks beautiful, but the fitting is very off. i ordered a size 2 which is the dress size i usually wear ( i'm 5;4 and 115lbs). the chest area fits perfectly, but the hip area is extremely tight and the lower back area was lose. i exchanged it for a 4, the hip area was a bit tight and the shoulders were too lose. if i ordered the 4p, i have a feeling it would be too tight. it feels like, it's meant for someone with very small hips and a large abdomen. also, this dress is very stiff, can't d",1,0,1,General Petite,Dresses,Dresses +996,45,Love the look,Overall construction/craftmanship of skirt is poor- the dots were sewn in on the seam- some dots didn't lay flat on side by seam- looked like some dots were missing around the top part of skirt in back- ( very disappointed in the quality from retailer- my last 3 or so orders have been similar complaints with their items- sad!!!),3,0,1,General Petite,Bottoms,Skirts +936,38,Beautiful sweater,"This sweater looks alot better in person. the picture online doesn't do it justice. this can be used both as a sweater or even like a lightweight jacket. a very versatile piece added to the wardrobe. definitely worth the markdown price! +only con, is that it has some fluffy pieces in the yarn that comes loose on wearing and sticks to other fabric. so wearing it with black pants might cause a problem.",4,1,1,General,Tops,Sweaters +1083,33,Finally on sale!,"I had four weddings this fall and tried this dress on but ended up not purchasing because i already had dresses to wear. but, i told myself i would purchase the dress if it ever went on sale. i don't have an occasion to wear it yet but i can't wait! the dress is so lovely and the details are beautiful. the only thing i'm worried about is the possibility for some of the embroidered parts to pill. it looks very flattering and hugs all my curves beautifully.",5,1,0,General Petite,Dresses,Dresses +1083,27,,"This is a beautiful dress. the detail is amazing, but it runs a little small. i'm usually size 0, but i had to go up a size in this dress. its cut a little too tight, and there is no give in the fabric. otherwise its stunning!",4,1,1,General Petite,Dresses,Dresses +1083,40,Gorgeous dress!!,"I bought this for a wedding i will attend 10 months from now. when i saw this dress on sale, i just need to get it! it was simply gorgeous!!! it fitted so well. it makes one feel so special. i like the addition of the belt.",5,1,0,General Petite,Dresses,Dresses +863,39,So cute!,"Most casual tops are so sloppy now - not this one! great cut, wish there were more color options.",5,1,0,General Petite,Tops,Knits +996,32,Lovely,"This skirt manages to be both sophisticated and whimsical. it's well-made, classy, feminine, and timeless. love it!",5,1,1,General Petite,Bottoms,Skirts +863,26,Awesome,"I have absolutely nothing negative to say about this shirt. it's comfortable, the fit is excellent and flattering, and it can be dressed up or down depending on the occasion. i bought it in the brown and the black and have no regrets.",5,1,1,General Petite,Tops,Knits +1083,31,Beautiful dress and design,"The dress is very beautiful and looks expensive. it will make a nice wedding dress. it does run quite small though. i am 5'2"" and 90-95lbs with a straight figure, but the 00p was too constricting.",5,1,0,General Petite,Dresses,Dresses +1083,52,Stunning: a timeless piece of artistry!,"Wow, this dress is so incredibly designed and made! the style is a subtle showstopper - classic and beautiful like they don't make anymore. +the inside of the dress is so well constructed, it has its own beauty! + +i read that it ran a little large, so i tried the 0 and the 00, since i usually wear a 0. well the 00 looked like a lingerie commercial with the dress unable to zip above the waist!! the 0 fit and zipped, but i could not sit down comfortably. yikes! +the 2 was a winner. i'm 5'4 1/2"", 110",5,1,0,General Petite,Dresses,Dresses +996,56,Awesome,"I love this skirt. unfortunately, no petite sizing was available when it was affordable (on sale). i purchased the 6 regular (based on ""small waist"" reviews) thinking i'll just have it shortened. did not realize there are 4 layers and tailoring would have cost $60+. was considering anyway, but when pinned up, the skirt lost its fullness and i didn't care for that look. if anyone has a 6 petite they want to off-load or exchange with me for a 6 regular, am very happy to do so. this is one skirt i",5,1,1,General Petite,Bottoms,Skirts +996,34,"Beautifully subtle, charming, & tad small waist","You've probably read through the other reviews, so i'll try not to repeat too much: +__________ +pros: +- it is lightweight and flows beautifully, flattering every sort of shape and frame. +- the leather circles throughout are darling and seem to be fairly secure (some of mine were a bit bent upon receipt). +- the color is subtle yet not understated. it just works. not sheer, lining throughout that isn't itchy and some tulle on top of the lining to give it a bounce and fuller shape. +- color is more t",5,1,7,General Petite,Bottoms,Skirts +1027,62,,"These coveralls are not cut long enough, i am long in the body and it is very hard for me to find coveralls overalls that are long enough and these unfortunately are the same. i have large breast so that adds to the problem so when i stand sideways and look at the waistband the front you can see is pulled up where the back is hanging lower. they really are nice, my first thought when i put them kn was wow i look a tad like michael myers in them but they're really very cool.....wish i could keep",5,1,3,General,Bottoms,Jeans +1083,39,Stunning dress odd fit,"I did not have to size up or down because of my body type (broad padded back, wide rib cage, narrow hips, small bum.) however, it fits a little odd on me. the back darts that start at the waist and are supposed to curve for your behind settle too high and wrinkle. the waist is also too high. the shoulders are a bit tight. i am confused because i bought the exact same size pieced brocade (the colorful version of this dress) and that one actually fits spot on. i have a feeling if i go to the store",5,1,0,General Petite,Dresses,Dresses +936,38,,"What a huge dissippointment when this arrived home..... + +the sleeves are very long and very boxy... +i have no idea the condition of this on store, but came with damages on sleeves also, we can tell that was something wrong and i was surprise that retailer sent me something like that, i'm a customer here for a very long time!!!! + +dissipointed!!!! ;(",3,0,2,General,Tops,Sweaters +996,46,Shimmer spot skirt,"I'm 5'6"" about 120 and usually a 0/2 in retailer... the size 2 in this skirt fit at my natural waist perfectly with enough room to move comfortably. on the hanger and from the photo i didn't think i'd like it, but once on it's really pretty and the fabric looks so nice, it has great movement, and is really flattering.",4,1,2,General Petite,Bottoms,Skirts +1083,36,"Love, love, love!","Unique and stylish dress, looks much better on than in the pictures.",5,1,0,General Petite,Dresses,Dresses +1084,29,,"I bought this dress to wear at a bridal shower and absolutely love it! the color was perfect and the petite-xs was true to its size. the top was a bit on the tight side with my arms but overall incredibly comfortable. i would buy more in this style and size, but not having enough occasions to wear the style. it's great for wedding guests, cocktail hours, or even work.",5,1,1,General,Dresses,Dresses +1084,49,Color,"This is a classic pencil dress that would be becoming on most straight figures. i always wear a 6 (or medium) in hd, and this dress is a little large everywhere. i love it so much, i paid full price and i will probably have it taken in on the sides if possible. the lacework is gorgeous and sturdy - it doesn't catch on stuff. there is a lot of give to sit and move in, unlike most pencil dresses, and i cannot say enough about the color. wow, heads turn when you walk into a room in this gorgeous de",4,1,0,General,Dresses,Dresses +996,68,Beautiful!,"Saw this skirt in the store, but the size was wrong. i am normally a 0 or 2 at retailer, but i was afraid that the 2 would be just too much material, so i ordered the 0, and boy, am i glad. +elegant, can go from day to night with the right shoes and accessories. +anticipating many compliments.",5,1,1,General Petite,Bottoms,Skirts +872,48,Perfect spring top,"This is such a cute little top that can be easily worn off the shoulder or on the shoulders. it is comfortable, soft and quite flattering. it hangs nicely and is a pretty white top that will come in handy this spring and summer. i stayed tts on this one but could have sized down.",5,1,0,General,Tops,Knits +872,63,Lovely....,"Wonderful summer blouse!. prefect with jeans or shorts. very flattering on my older, curvy body.",5,1,5,General,Tops,Knits +1008,44,,"The most important thing to note about this skirt is that it is a true blue color- not black! it's also perfect for spring , summer and early fall. super comfy, casual yet elegant. size runs a tiny bit small as the waist is not elasticized. a staple of a cozy chic wardrobe.",5,1,0,General Petite,Bottoms,Skirts +872,39,In love,I am so in love with this top. can be worn on or off the shoulders. the color is amazing!,5,1,0,General,Tops,Knits +872,67,,,4,1,0,General,Tops,Knits +863,50,Great shirt,I'm always on the search for a comfortable shirt with style. this does not disappoint. super comfy and flattering. love.,5,1,0,General,Tops,Knits +872,63,Quality questionable,The purple/cobalt is a beautiful color. i feel the t shirt material is entirely too thin for the price.,3,0,0,General,Tops,Knits +1049,39,Like but flaws for me,"I saw the ""blue"" version in my store (a return) in size 0. i decided to try it on and i loved it. it fit nicely, was comfortable and soft and the colors were flattering (and cut). (115 lbs, 30 dd, 26.5 in waist), i contemplated purchasing, as i thought it was a bit pricey, but usually i order petite versions. and it wasn't available in that size, until it was. and i ordered it. it came and the fit of that one was great in the legs, much nicer than regular, but the top part was a bit small. the a",4,1,1,General,Bottoms,Pants +863,44,Perfect tee,"I had been looking for a tee to wear under a kimono i bought last year at retailer. the cut out slub tee was the perfect tee. the slate color goes well with the colors in the kimono, along with being a good neutral. this is also a good tee to wear alone with a pair of jeans as it hangs nicely.",4,1,0,General,Tops,Knits +877,47,Can dress up or down,"Very soft, comfortable piece that can be worn casually with jeans and a tee or over a blouse or sheath dress for work. i like the 3/4 length sleeves and pockets",4,1,1,General,Tops,Knits +213,36,Super cute,"Very comfortable and super cute. the top sold out, which i'm bummed about, but matched it with a funky black top.",5,1,0,Initmates,Intimate,Swim +863,33,,Like most retailer clothes this runs large. nice design & comfort.,4,1,0,General,Tops,Knits +877,32,,Kinda a boxy looking sweater. it definitely made me look really large and just couldn't see myself wearing it very often. ended up returning it.,3,0,0,General,Tops,Knits +863,41,The tee that goes with everything,"I have worn this to work, errands, yoga. it's a great tee. love it!",5,1,0,General,Tops,Knits +1008,32,"Didn't work for me, but it is beautiful","This skirt didn't fit me right--i'm 5'6"" and the hem hit too low, making for a frumpy rather than classic look. the fabric and color are lovely, however, and on a taller person this could be beautiful. the draping is beautiful and slimming.",4,1,1,General Petite,Bottoms,Skirts +863,70,Cute tees,"I first saw this tees paired with a skirt (blue and white stripes on the website). i immediately like the unique shape around the shoulder, v-neck line with a gap to the sleeves. even the color is white, it looks very appealing to me, simple yet unique. i bought the tees in white and black colors. i expected the white one to be sheer, but not the black one. even with a nude bra, i can slightly see the bra shape inside the tees. the size is running large. i usually wear size s with retailer. i got",4,1,0,General,Tops,Knits +872,63,Love this top,"I love this top, beautiful soft fabric , much prettier than picture, can be worn on or off shoulders. extremely flattering, falls to a perfect length , great with shorts, pants or a long skirt.",5,1,14,General,Tops,Knits +213,47,Great top- bottoms run super small - order up,"Great fun pattern. sexy styling. the other reviewers commented on how the trim is white and the body is ivory- i actually liked that. i am 5'4"" and 120 lbs. i usually wear a 4 and ordered a medium in this suit. bottom was super small and is sold out in large so i had to return it",4,1,0,Initmates,Intimate,Swim +863,28,Nice shirt,"Love the style of this shirt. its flattering and light material, good for all weather and layering.",4,1,0,General,Tops,Knits +1030,52,Most flattering jeans!,"Most flattering and perfect dark skinny jean! obsessed is an understatement. i am becoming a big fan of mother denim! just enough stretch to be comfortable all day, sit a little bit higher on my waist, which is wonderful (post babies) and sometimes hard to find in jeans. if you are in between sizes, be sure to size down! these jeans are stretchy to begin with and will stretch out a whole size. i have never been happier with a pair of jeans!",5,1,6,General,Bottoms,Jeans +1111,57,,"The colors are vibrant and the beading is beautifully simple and nicely done. i waited quite a few months for this dress but it was worth the wait! it's loose fitting, but still gives you some shape without looking like you are wearing a potato sack!",5,1,0,General,Dresses,Dresses +863,65,Indecisive,"I haven't worn the top yet nor have i returned it. still not sure if i want to keep it! i bought the slate color and it is a bland color. also, not sure if i like the fabric because the material feels like it could be a pajama top! however, it is a comfortable loose fitting top so for that reason, i may keep it.",4,1,0,General,Tops,Knits +872,42,Fun summer top,This top is too cute and shows just the right amount of skin without being overt. it can be worn on or off the shoulder and is just enough to cover a tummy without looking maternity. i can't wait for the warmer weather to get here and stay so i can wear this top more often!,5,1,2,General,Tops,Knits +863,68,,,5,1,0,General,Tops,Knits +872,36,Trendy simplicity,This shirt is a great way to rock the off the shoulder trend. you can dress it up or down bi would definitely recommend it.,5,1,0,General,Tops,Knits +871,56,Happy,"I'm happy with the sweater. while one reviewer reports returning it for being too small, i agree with another who found the sweater- especially the arms- too roomy.",4,1,0,General Petite,Tops,Knits +863,60,,Great tee! flows well and very soft. true to size!,5,1,0,General,Tops,Knits +1111,33,Beautiful dress,This dress is a bit longer than photographed but i was totally ok with that. the skirt is also a bit fuller which makes the dress more formal. it's really well made and great material. i'm 5'6 123lb and bought a size 4.,5,1,0,General,Dresses,Dresses +872,36,,"Love this shirt! i have it in both colors. you can wear it off the shoulder or on. it's baggy enough it looks great with skinny jeans, i recently had a double mastectomy and wore this shirt a lot as it is baggy enough, you couldn't see i had drains underneath my tank top. i am really grateful for this shirt! super soft, super cute!",5,1,2,General,Tops,Knits +877,33,Boxy and billowy,"Ordered this in xl- i usually am between l and xl. i'm 5'9"" and thought it was cropped, boxy, and billowy around the midsection that was not flattering. the fabric is light and is less like a blazer, more like a cardigan.",3,0,6,General,Tops,Knits +1111,28,,"I was looking for a simplistic dress because i am graduating in a few weeks but did not really want to purchase anything. i strolled in the store and this immediately caught my eye. i tried it on and fell in love!! it fits perfectly and it is the right length. i love the bust line and the detailing of the straps in the back. i don't think i feel as though i am going to a wedding,but i will feel beautiful especially since this is really big deal and accomplishment. i am an older adult - so i want",5,1,0,General,Dresses,Dresses +863,31,,I love this shirt. i have it in red. i found the fit tts and looks great casually with a scarf or dressed up with a nice necklace. you can't go wrong with a cute shirt that is soft. i like the length goes just past my bottom in the back but not overwhelming.,5,1,0,General,Tops,Knits +872,44,Great summer shirt!,"I purchased the blue color and it's gorgeous. i'm 5'7"" and the length is perfect, not too billowy and not too tight. the fabric is a nice gauzy, summer weight.",5,1,1,General,Tops,Knits +1111,47,Lovely but very full,"This dress is really beautiful, but the fullness of the skirt made it a bit too precious for me. i liked that the neckline isn't too low, i could wear a bra with straps with it, the knee-length hem is perfect and the back is beautiful. but the skirt is really princessy. might work for a bridesmaid or an evening occasion but i found it too shiny and girly for less formal events.",4,1,7,General,Dresses,Dresses +532,45,"Give me more art dept, please...","I just adore these shorts from art dept. they are casual, yet slightly structured. the length is just perfect (for me), no ride up, no wrinkles (i can't stand wrinkled shorts), and the fringe gives these shorts a fun and playful look just perfect for a stroll on the beach or shopping with your girlfriends. i know these shorts are going to be a staple in my summer wardrobe for years. can i have these in more colors and patterns too????",5,1,4,Initmates,Intimate,Lounge +1059,28,"Colorful, comfy pants","Ordered these pants in an xs (5'5, 110lbs) -- they fit well in the waist, but are quite long so i roll the waist band down once. they are super fun & funky - i mainly plan to wear them around my house so i don't mind rolling the waist band. if i were going to wear them out, i'd probably have to pair with heels as they are a few inches too long. light & airy material perfect for summer, & cute detail on the pocket seams too.",4,1,0,General,Bottoms,Pants +1056,36,Don't let the stock photo deter you!,"I saw this in the store and fell in love with it! i normally wear between a 29 and 30 in pants and the medium fit great. it is a very generous cut in the leg and the waist has an elastic band in the back. i'm 5'5"" and the pants almost graze the top of my foot, perfect for sandals. if i had seen this stock photo first i would have been totally off-put by the culotte length, but i guess that's what it looks like on a model! there are cute buttons that run down the outside length of the pants and t",5,1,0,General,Bottoms,Pants +872,47,Wonderful spring/summer addition!,"I first saw this shirt online and decided to see it in person. so happy i did! i never would have picked it up in the store. it looks much better on than on the hanger. it is so flattering! you can wear it on or off the shoulders and although it is a boxy shirt, it somehow makes you look slim! wow! i took my usual medium. highly recommend!",5,1,4,General,Tops,Knits +532,49,,These shorts are really cute but i felt like they were a little too short for me so i ended up returning them and i purchased the dress by the same brand instead.,4,1,0,Initmates,Intimate,Lounge +858,38,Disappointing,"I was expecting a tunic with a bit of structure and weight to layer over leggings, with boots, etc. + +this is just an oversized turtleneck - there's nothing special about it. it's thin material. nothing to justify the price. + +the sizing seems odd. i'm normally a 2 on the top and 4 on the bottom. the xs was huge up top (i was swimming in it - much larger than it appears in pictures on the model) and spanned across my hips (more than the model). + +even if i could find a size that worked, there was n",3,0,4,General Petite,Tops,Knits +863,39,,Fits loose good material. will buy in other colors.,4,1,0,General,Tops,Knits +872,71,So pretty!!,"I bought this top in the purple color but i believe it to be more of a cobalt. it is a beautiful color! i wore it to dinner the same night i purchased it. my husband said he loved the color and style. i wear either a s or m in retailer tops, depending on the brand. with this one i chose a small and it's fits perfectly. i have a petite frame; 5'2"", 123 lbs., but with a 32f bust. it is very flattering, as with most off the shoulder tops. they say your shoulders never age :) the length is just right",5,1,0,General,Tops,Knits +831,35,Sleek and chic!,"I l o v e this sleeveless blouse for is soft tranquil print, wearability from day to night, comfort and fit! the design is flirty yet sophisticated-i wear it with skirts for work and jeans by night. can't say enough good things! everyone should have this beautiful piece in their wardrobe!",5,1,2,General,Tops,Blouses +1111,53,Love,"I ordered this dress to wear to a mid summer evening wedding. i love it. i think it will be fun, and it is unexpected for me. i will need to order a smaller size.i am 5'-5"" and almost always wear a 4 in retailer wear. this ran a little big on the top, i will be ordering a 2 and sending one back",5,1,1,General,Dresses,Dresses +863,42,"Great, fun t-shirt",Love these basic t's because there is always a unique cut out which makes them more interesting. fit and wash well.,5,1,0,General,Tops,Knits +872,40,Beautiful color,"I purchased this in the ""purple"" which is more blue than purple, but you can definitely see the purplish hue depending on the light. it's a beautiful, rich indigo color. it's very comfortable. i usually go for more fitted styles, but i was pleasantly surprised at how flattering this top is even though the body of the shirt is more loose fitting. i'm very excited to wear this top this summer. i haven't worn and washed it yet, so i am hoping the color and material will hold up after washing. i am",5,1,0,General,Tops,Knits +872,46,,"I think the fabric is very nice and soft. i find this top runs very large. i am 5'2"" 130l. normally wear a small in a shirt. i should have ordered xs it is very large. i actually looked to see if they sent me the wrong size. the shoulder area fits fine. i may try tucking it in. other than size a nice top.",4,1,1,General,Tops,Knits +1008,34,"Misnomer in color, stunning on any figure","I'm not sure why they call this ""black"" because what you see in this pictures depicted is pretty much the shade in person. the fabric itself is lovely. it made my wider hips look smaller! :) + +___________ +pros: +- drapes beautifully on the body, especially for curvier gals. +- not black but a deep navy/velvet look and feel. +- very forgiving and stretchy. +- perfect length in front and back. +- hides imperfections wonderfully. +- soft, flows well, and unique! + +cons: +- material is thin, not for winter a",5,1,23,General Petite,Bottoms,Skirts +1056,42,,"Best jumpsuit ever! so soft and always gets compliments! get one now before they're gone. also it is supposed to be tied in front! i'm 5'3"" and the small petite is just perfect!",5,1,0,General,Bottoms,Pants +872,53,,"Great little spring top. the fabric is soft and the drape is of the fabric is just right. it is very loose without making it look like a maternity top and the length hits me right at the top of the hipbone. for reference i am in my 50's, 5'1"" and weigh in the150's. i normally wear medium size and this one was no exception. the blue is a beautiful cobalt color.",5,1,14,General,Tops,Knits +863,42,Great staple,I am super happy with the t-shirt....it fits true to size and the cut outs are a great detail!! i'm thinking about buying another!!,5,1,0,General,Tops,Knits +877,68,The pleats in this jacket are unruly,"Despite the fact that this jacket is made from a gorgeous ottoman looking knit fabric, and has perfect fit, nice arm length, looks good on the hanger, the jacket did me no justice at all. it arrived folded, in the mail, so i had to press down the unruly pleats before i could try it on (you have to do this with nearly every item you buy online that comes folded flat and stuck in a cellophane bag.). so i pressed the jacket, tried to neaten the pleats but to no avail. the pleats would not stay put",3,1,2,General,Tops,Knits +872,21,"Not true to size, but beautiful","This shirt looked so perfect on the model, and i was so excited to get it! when i received it, it was so soft and the color was so vibrant. the only thing is, it's too big. it kind of looks like a maternity shirt. it will definitely have to be taken in on the sides for me, but i'm happy with it other than that. i'm normally a l/xl but m would have been perfect this time.",5,1,0,General,Tops,Knits +831,25,Stunning blouse,"Even on sale i was hesitant about paying so much for a blouse, but i'm so happy i did! the fabric looks as high quality in-person as it does in the picture, and it isn't see-through. the main color of the top is less powder pink and more nude in my opinion, but the color is lovely and the various purples and grays of the arrow details really pop. the buttons down the back are a fun, cute detail, and tone down the more professional look of this blouse in order to wear it with jeans for going out.",5,1,0,General,Tops,Blouses +871,29,Great style; runs small,"Love the pattern on this lightweight cardigan and it is super flattering. i tried ordering the xs/s first because the next size up just sounded too big, but i ultimately had to order up for more room in shoulders and length in arms, though. i'm hoping the m/l fits without too much spare fabric because it really is a great piece.",4,1,4,General Petite,Tops,Knits +863,35,,"So this is a great tee, problem is the white you can see through. i an not looking for a layering tee so not what i was looking for.",3,0,0,General,Tops,Knits +872,40,Too sheer,"I loved the way this shirt looked when i tried it on in the store buto when i got home i realized it's extremely sheer. you can't wear a white bra with it, for example because it will show through. taking it back.",2,0,2,General,Tops,Knits +1061,20,Great jumper!,Picked this up at the store in my usual size small. it fit perfectly. i am a 34d and the buttons closed with no gap. the length was just above the ankle and the fit is slim. so comfy. my guess is this is going to sell out because everyone including the sa's wanted to buy one. loved the color too~very versatile.,5,1,2,General,Bottoms,Pants +1061,57,"Amazing, versatile piece for spring and summer","I picked this up unexpectedly and whisked it into the dressing room a long with a handful of other things today. +i noticed right away how soft it was! so comfy! i have never owned a romper before so i wasn't expecting to like it--- i was so wrong, i'm sorry romper! i love you! +i plan on debuting this little number with a cropped cream cardigan jacket and taupe booties and some layered necklaces for my brother in law's casual weddingrehearsal dinner. +living in las vegas though, i can definite",5,1,18,General,Bottoms,Pants +1044,56,Very comfortable and flattering,"These pants are extremely comfortable and flattering. i bought them in coral, and wore with a black peasant top, sandals and a long necklace. they do stretch out a lot though, so i would recommend sizing down. i bought mine to look like they fit on the model, and after a few hours they were hanging off of me, so buy them a little bit tighter than you like. the drawstring is purely decorative and does not tighten the waist.",5,1,21,General,Bottoms,Pants +1094,68,,"The is a cute dress with a great pattern and nice material. it would look great on the right kind of figure. i'm 5'7"" and slim, but at thirteen weeks pregnant and not showing, the skirt made me look about thirty weeks pregnant, but the top fit just fine.",4,1,0,General Petite,Dresses,Dresses +870,51,,,5,1,0,General Petite,Tops,Knits +1044,51,Great fitting pants!,"Love these pants i bought them in two colors! flattering fitting!! im 5'4 120lbs 36"" hip. i bought these in size 25. sometimes i don't like petit sizing but these petite at 30"" long inseam still gave me enough length to wear with heals. there is the usual good and bad with linen - after you wear them once you need to iron because they look too wrinkled and worn. the linen is light and washed - unfortunately i don't think these pants will hold up for more than a two years. i'll love them while i",5,1,2,General,Bottoms,Pants +266,52,Kind of blah,"Got this in the moss color. i throw on a hoodie almost every day to walk my dog so i justified the high price. returned it because it was not cute on. the waffle fabric didn't stand out, and the bottom just hung straight. i thought it would be more ruffle-like. even on sale i won't buy it ~ it's just that blah",3,0,5,Initmates,Intimate,Lounge +599,37,Awesome beach dress/coverup,"Just received this dress today. i bought it for a vacation we are taking to mexico. i wanted a nice coverup. +this is beautiful. fits nicely without looking like a tent. +i would highly recommend. +this is one size fits all.",5,1,0,Initmates,Intimate,Swim +1044,75,,"Is it just me? i love these pants i bought them in 2 sizes. first my normal size and then down one size because although they fit perfect in the store, with in a hour of wearing them around the house, they had stretched out so much that i could not keep them up. so i purchased the smaller size (same color) and they stretched out just like the first pair. so disappointing. i took them to my seamstress and she took them in 2 inches in the waist and now at least i can wear them all day. not sure if",4,1,0,General,Bottoms,Pants +862,47,,"Love this sweater.. fits perfect, flattering and soft. i got it in both colors. it is a true staple!",5,1,0,General,Tops,Knits +1061,60,Comfy,"This jumpsuit is very comfortable. the material is soft the waist is elasticised, it is not drawstring as it seems in the photos.",5,1,1,General,Bottoms,Pants +858,48,So flattering,"A perfect go-to top. looks great with jeans - dark , faded or bright white. top it with a cardigan or wear it bare - it offers a flattering fit with its high-quality, textured fabric. i normally wear a small or medium top. an extra-small fits me perfectly.",5,1,3,General Petite,Tops,Knits +1094,34,Dotted fleur dress - black,"Absolutely love this dress. maeve dresses have always been constructed with great care and quality. i am and always have been a size med in maeve dresses. the dress is soft and flowing. the fabric is very forgiving and moves with you. i recommend trying on a dress by this maker . . . their cuts are consistent, so i feel extremely confident in buying their clothes online. this is a keeper and can be worn year round.",5,1,0,General Petite,Dresses,Dresses +1002,54,My favorite new piece!,"The photos do not do this skirt justice! i'm so glad i picked it up in the store, as i would not have given it a second look online. it is soft, stretchy, forgiving, and one of the most versatile pieces in my closet! i dressed it up for an evening event and can't wait to throw it on with a tee and jean jacket! love it!",5,1,2,General,Bottoms,Skirts +1044,32,I really want to love these...,"I see all the amazing reviews and on one hand, i agree with them. but these pants do run huge and they don't fit tailored like on the model. on me, they fit loose around the legs and thighs and they're super wrinkly. you'll have to iron these after every wear and every wash. i'm surprised to see the comment saying they're wrinkle resistant. they aren't. also, the kahki is more grey which i don't love. i got these on sale, but even at $50 i just can't justify keeping them. they're super comfy but",2,0,0,General,Bottoms,Pants +1061,47,Not for the tall...,"This is a super cute romper--very casual, very comfortable. i feel it runs a bit big because i tried on an xs (i'm usually a small 4-6). it fit perfectly except for the inseam on the legs. i am 5' 8.5"" tall but mostly legs (as opposed to being long waisted). i wear a 33"" inseam with flats. if the bottom of the legs were not elasticized, i could have just gone with a cropped look or rolled them, etc. but the elastic was digging into my calves after just five minutes. i think it might be very unco",4,1,1,General,Bottoms,Pants +870,44,This shirt looks amazing,"When i first saw the bees embroidered pullover in the store, it instantly caught my attention. since it was pricey, i didn't get it. when it went on sale, it ran out in my size. so recently i was fortunate enough to get the same style embroidered birds pullover in the store for 20% off the sale price. this shirt looks so adorable on and is different than the typical sweatshirt.",5,1,0,General Petite,Tops,Knits +858,48,"So flattering, no need for petite","I just tried this top on in xs regular even though i generally wear xspetite in retailer and it fit great (34aa - 26 - 34). i think it's flattering on my fairly straight body with the halter neck, fitted waist and peplum. i would guess it would be flattering on many body types; it highlights shoulders beautifully. it was very hard to get my head through the small, not-too-stretchy opening so you may want to try it on without makeup. i knocked off one star because the neck band wasn't symmetrical,",4,1,6,General Petite,Tops,Knits +1061,30,Like fancy pjs,"I love everything about this jumper - it's so comfortable without being too warm. it's easy to dress up with booties and a hat. i suppose the only possible downside is that it's slightly tight at the ankles, but honestly - this is like a dream.",5,1,0,General,Bottoms,Pants +1061,37,Nice romper,"This is adorable! i got it to wear on the plane for an upcoming vacation. this is definitely tts. i am normally a medium and got the medium. i am long wasted and this fit just fine. looks like it does on the model. +the material is super soft too. it is also easy to get on and off which is sometimes difficult with rompers. +plan on wearing it with gladiator sandals and a jean jacket.",5,1,9,General,Bottoms,Pants +1061,38,Comfortable!,This jumpsuit is so so comfy i can't wait to wear it! def runs on the large size.,5,1,0,General,Bottoms,Pants +1002,55,Great fit and weight,"This skirt fits great. the thick material helps it lay nicely and smooth the curves. i'm 5-4"" about 130lbs, athletic build with a bottom and the med fit well.",4,1,0,General,Bottoms,Skirts +870,64,,"I loved this top so much, i ended up buying both of the designs. they are so cute and eye catching, and the layered look is really fun. it fit me very well.",5,1,0,General Petite,Tops,Knits +1002,62,"Cute skirt, bad quality","I ordered this skirt in a size small and when i received it, not only was it too long, but there was also a hole in it. so i returned it. when a small petite became available, i ordered it thinking it would fit better. i just received it and there is a hole in this skirt as well. both skirts also looked as if they had been worn; there was fuzz and lint all over the skirts. i like the skirt but i either have extremely bad luck or it's really bad quality.",1,0,0,General,Bottoms,Skirts +1061,27,Summer staple,"I am so happy with this jumpsuit! it is the perfect comfortable and casual summer outfit. the fabric is super soft. i was unsure about the length at first because it's shorter than my other jumpsuits, but if you scrunch up the bottom of the legs and add some sandals, it's a great look. +highly recommend!",4,1,0,General,Bottoms,Pants +1094,43,"Cute and good quality, but fit issues","Pros: material is amazing, super soft and quality thickness (but not like uber this, just enough, it will last). also seems like it won't wrinkle much which would make it a great dress to throw in a bag for a trip. fits well in the shoulders, chest and the length is good. + +cons: the ""waist"" line is really tight and really really high. i'm 5'8"", 150lbs and my usual medium is pretty tight. of course it hits me on the rib cage too, which is so weird. it's way higher than it should be. + +i'll pro",3,1,0,General,Dresses,Dresses +1002,48,Great style and fit,"I finally broke down and went on a christmas shopping spree at retailer for myself with hubby in tow as they are gifts from him. +the skirt is a beautiful dark navy, super soft knit. very long with a texture pattern. i am 5'9"" and have put on a few pounds lately but typical wear and 8/10 and bought the large because i didn't want to try it on. it works for me because i don't like skirts to cling to much. even my pencil skirts i like a more loose fit. normally id say a medium would probably f",4,1,1,General,Bottoms,Skirts +1094,23,Great summer dress,"I adore this dress. it has a fairly thick material, which helps the skirt stay full and is very flattering if, like me, your thighs or tummy can be a problem area in dresses! the only downside for me is the fact that i have fairly narrow shoulders, so the seam for the sleeves tends to stick out a bit! i get lots of compliments on this one!",4,1,0,General,Dresses,Dresses +1061,26,Love it so much!,"This jumpsuit is so, so cute. i tried it on in an xs in store but needed a petite. i ordered the xsp online, received it, but honestly it's still a little big. the xxsp is sold out, but i love the piece so much i think i'm going to have it taken in. trust me, it's just as cute as it looks, if not cuter!",4,1,0,General,Bottoms,Pants +1044,50,Not flattering if you have thighs!,I am not particularly large but i have thighs! this pair of pants was totally unflattering! my butt looked fine but everything else looked bigger and my legs looked like stumps. i now understand why it's on sale. you may like these pants if you are tall and thin legged. but otherwise skip them. plus the material seems like it would discolor or stain easily. i had a pair from retailer in the same material last year that developed an odd discoloration the first time i wore them.,2,0,1,General,Bottoms,Pants +870,35,Great casual weekend or sahm shirt,"I'm a stay at home mom, always on the lookout for something casual, interesting, yet put together. it's preppy yet quirky with the embroidery. i love this shirt. great with jeans, can take you from shopping to playground and lunch without feeling under or overdressed anywhere. the sparkle from the embroidered birds gives it spunk to not make it look too boring and predictable. at the same time, it isn't something that screams, look at me! a perfect mix.",4,1,0,General Petite,Tops,Knits +1044,33,Great summer pant,"I don't have anything like these pants so was thrilled to purchase the coral. i found the pants ran slightly large, though i stuck with my regular 28"" and they are very comfortable.",4,1,0,General,Bottoms,Pants +1044,47,"Beautiful, flattering pants","I tried these on in the store today and fell in love. they fit/drape beautifully and are incredibly comfortable while looking stylish. i'm 5'7"" and 128 lbs. and the 27 (a 4, i guess) fit perfectly. sadly, i can't afford them full price so will keep my eye on them in case they go on sale.",5,1,7,General,Bottoms,Pants +1002,38,Cozy and comfortable!,Great elastic fit...might size down. i'm usually a size 2 in bottoms or a 26 in jeans and i bought the xs. it's perfect and goes great with boots!,5,1,0,General,Bottoms,Skirts +862,22,"Soft,and feminine","I love this sweater!! love the length, it's a bit loose and delicate compared to what i usually wear, but looks great with boots and leggings. love the sheer fabric across the bottom of the back, the loose bows on the sides and the drape of the fabric. all combine to make a great sweater. runs true to size, has a loose fit but you don't feel like you are drowning in fabric like some loose fitting cardigans.",5,1,0,General,Tops,Knits +1061,34,,Love! love! love! i got this jumper right before it started getting hot and it has been my go to all summer! fun night out with the girls.. perfect! walking around the mall... awesome! at work with a green vest... super! every time i wear this i get tons of compliments! did i mention it feels like you're wearing pajamas which in my book is everything! get it!,5,1,0,General,Bottoms,Pants +862,59,Great piece!,"I purchased both colors offered and love this light weight full of neat detail piece to layer with other tops. the material is very soft and stretchy making it easy to wear over another item. i love the little shirt tail detail in back along with the drawstring trim in front. another piece that i am sure i will wear for years to come and the fit is true to size. +thanks antro!",5,1,0,General,Tops,Knits +1002,52,Nice fit for cool weather,"I'm 5'9"" and this is a nice pencil-fit sweater skirt that is soft (not scratchy) and long enough. fun bias cut sweater pattern and pretty dark blue and black color.",4,1,0,General,Bottoms,Skirts +1061,48,I wish,"I wanted this romper so bad, after buying (and loving) a shirt from madewell made with the same fabric earlier this year. i wish this romper was just a little bit longer and roomier. i normally wear a size 10 or 12 and bought the large. it fit me ok but i felt like i wanted it to be just a little bit more oversized around my hips and definitely wanted it to be longer in the legs. (retailer please stop with the capri lengths! it's tired!!) if you are narrow-hipped you will fare much better. the fab",2,1,0,General,Bottoms,Pants +1094,57,Cute,"This dress is flattering, but size up. tight through chest in my normal size.",4,1,2,General,Dresses,Dresses +870,30,,I love this sweater!!! it's so fun and quirky and shakes up a regular sweater. a little large but it fits the style.,5,1,0,General Petite,Tops,Knits +1094,36,Cute dress,"The prints are very cute and flattering and the material is thick. i'm 5'2 107lb and 32c and got the xsp, my usual size. the shoulders and sleeves fit perfectly, the neckline is a little low (questionable for work). the fit however is off on the waist -- which is not as pictured. it is more of an empire waist ad barely even clears my boobs, so i doubt even a regular xs will change this much. it isnt a flattering look on my frame altho the prints hide it somewhat, except from the side view. also,",4,1,15,General,Dresses,Dresses +1061,28,Pills very quickly,"I wore this immediately after receiving it as a gift. after wearing it for almost 2 hours the fabric started to pill between my legs where it rubs. sucks!! i actually really love this jumper and it's very soft and comfortable. just wish it would last longer :( i'm going to be wearing this all the time this summer but i'm pretty sure it will rub to the point where there will be holes in my pants... between my legs.. + +only complaint about sizing is that the top is too big. i'm 5'2"", 135lbs, 34a",4,1,0,General,Bottoms,Pants +865,64,Really like this cape,"Just love sweatshirts & ponchos, so what an unusual twist of style! ordered my usual size s during the promo. looks pretty much as in the pic. oversized arm openings are created by a string attached to the sides of the garment. it's ok but may eventually break off. maybe i'll secure w/ snaps or just sew it on by hand. wore it yesterday w/ just a tank underneath to lounge around. later wore for casual dining. it turned cooler & changed to a grey t-shirt underneath along w/ dark blue denim skinnys",5,1,3,General Petite,Tops,Knits +1002,54,Beautiful but....,"I loved this skirt. so flattering and such a beautiful fabric. unfortunately after only 2 wears, the waistband stretched out so much that it was falling off me (literally). i bought the right size and it was not too tight. the waist band material simply lost its stretch very quickly. very disappointing.",2,0,2,General,Bottoms,Skirts +1061,51,Cute,"This is a cute, casual romper but i'm on the fence about keeping it. i hate when there is a pattern mismatch - especially across the butt and that's why i'm on the fence. i bought my usual xs/0, (5'7"", 115lbs, 32b). i would say that it is a little roomy around the bust - if i keep it i might have to have it altered slightly to stop my bra from showing. this is the first jumpsuit that i have tried that actually accommodates my longer torso - so many seem to ride up and that is not flattering! +wi",4,1,0,General,Bottoms,Pants +870,58,Cute and casual,I purchased the bird design top for my 17 year old daughter. the fit was true to size and it's a very unique item for casual wear. it looks nicer in person than in the photo.,5,1,0,General Petite,Tops,Knits +1061,30,Comfy but...,"The top is huge! i wear an xs and am not the bustiest of women, but the top part of this romper felt like it belonged on a medium or large, even though the bottoms and waist fit perfectly. i was really disappointed, as i loved it in every other way.",3,1,0,General,Bottoms,Pants +1044,45,Great pants!,"I'm a big fan of level 99 jeans and linen pants. these are great-- good quality, flattering fit, lovely color. i got the coral in size 26/petite, and that works for me. they do start out just a bit snug in the seat when i first put them on, but they'll pretty quickly stretch out just enough to maintain shape without becoming baggy, like my other level 99 linens-- something to keep in mind when trying to find your right fit. i was a little worried that the drawstring meant there wouldn't be much",5,1,0,General,Bottoms,Pants +858,40,Beautiful classic shirt!,"This shirt runs a little big, i bought it for my niece who usually wears a medium , but the small fit her. she is tall and this was a nice length on her.it's very comfortable and is a a perfect staple to send her off to college with. i paired it with the nouveau belt in silver- as an option for her to wear it with- great buy! +my niece is 5' 11"" with an athletic build.",4,1,0,General Petite,Tops,Knits +870,61,"Great shirt, poor initial impression","I do love this shirt, but when it arrived, it had makeup around the collar, apparently from someone else who had tried it on. i was able to clean it up with just soap and water so no big problem, but it did make for a poor first impression!",5,1,0,General Petite,Tops,Knits +862,35,Gorgeous sweater,"I love this sweater! it is very lightweight- the knit is a wider weave, so if you are cold natured be sure to layer and bring a jacket. the fit is great, it is very flattering on. the back is lined and has the gray fabric that shows past the sweater hemline which adds to the uniqueness. this could be dressed up or down- i paired with a white tee and dark jeans and flats but will wear it next with nice pants and maybe a white collared blouse. very happy with my purchase!",5,1,0,General,Tops,Knits +1044,40,Stretch out a lot,"Purchased these recently and loved the fit and feel upon trying them on. i was hoping that unlike linen pants, they'd keep their shape. no such luck. after an hour or two in them they were hanging and sagging. this is after being a (good) snug fit. i purchased my usual size and i'd say they stretched at least a size or two bigger. the color and feel of these is very nice and i see them being perfect for a very casual or slightly dressier outfit so i do recommend them. however, buy them small bec",4,1,0,General,Bottoms,Pants +870,31,Large? small? just right? a goldilocks review.,"I vacillate betwixt saying this shirt runs large and small. i usually wear a small in retailer items, but the xs was all that was left in the charming bee print. the fit is flattering even though it's smaller than my usual size. conclusion: runs large. however, when i went to put my head through the top of the shirt, it was like being birthed. conclusion: runs small. bottom line: i'm in love with this shirt and so i'll just have to get used to the faux birthing feeling every time i put it o",4,1,0,General Petite,Tops,Knits +858,48,Carpet fabric,"The fabric is really itchy, i felt like i was wearing a carpet, and it reminded me of the 70's fabric crimplene. this will not be comfy in humid weather. the top also had a strange synthetic odor.it was returned.",3,0,0,General Petite,Tops,Knits +1002,32,"Cute length, fabric and aesthetic",Love this skirt. very comfy. looks like it's very expensive material but feels comfortable.,5,1,0,General,Bottoms,Skirts +1061,53,Not proportioned,I ordered a small and the top part was huge yet the bottom a little snug. you need a big chest and small legs and bottom. too bad. it's very cute.,2,0,3,General,Bottoms,Pants +289,41,,"I was really excited to receive this caftan, but it looked very strange on my body. i have small shoulders and the xs was still very big on me. there's also a seam along the sides that made me look boxy. the quality is really great, but i thought that the color seemed a tad bit darker/muted than pictured.",3,0,0,Initmates,Intimate,Swim +1081,39,Classic romantic feminine dress,Love this dress. the color is beautiful. runs large so size down,5,1,0,General,Dresses,Dresses +289,35,Oh-my-gosh,"The pictures are not showing how absolutely spectacular this caftan is. it is very delicate (even says so on the tag) and lightweight so that you won't dread wearing it in the heat of the day. by what doesn't show up is that this caftan shimmers-there is gold string woven throughout the entire garment which gives it a slight sheen. it adds significantly to the impact of the garment, and i love this detail. i love the way this caftan drapes, and i love that it is longer than a normal caftan. the",5,1,4,Initmates,Intimate,Swim +873,55,,I bought this top for work but i can also wear it out with friends. it is made well and has a lining that is comfortable and makes it flow nicely. it will be nice for summer. you can tie the neck or just leave the ties down so it has options.,4,1,1,General Petite,Tops,Knits +1081,48,,,5,1,0,General,Dresses,Dresses +820,29,Versatile and gorgeous,"I was a bit hesitant to purchase because of the other reviews but so glad i did! i usually wear a 4-6 and the 6 fit great. it feels like high quality and i think the shirt will work well for both work and casual events. i have a long torso and don't find it too short at all. it is a tad tight across the shoulders, so if you are broad in that area, it might not work for you. overall, love!",5,1,2,General,Tops,Blouses +1143,61,Skylark caftan dress,"Wonderful print and color. dress style is very boxy and oversized, fabric is great but has no drape.",4,1,0,General,Trend,Trend +314,21,,This is the most beautiful bathing suit ive ever owned. it is so unique and comfortable. the fit and everything is just amazing. so happy with this purchase.,5,1,0,Initmates,Intimate,Swim +820,42,Perfect,"I love this blouse. i debated because of the cost. but this is a top i will wear forever. i have not found any of the issues other reviewers have. fit fine in the arms and the length was perfect and i have a long torso. i wear it with a nude bra and i don't have any problems with its being see through. i wore it to a party the other day and received several compliments. i was also stopped in the store and asked where i got it. it looks expensive and special. i worn it with jean, black jeans and",5,1,4,General,Tops,Blouses +820,39,Old retailer,"Ok, so yes, it is true that the top part where the sleeves are can be snug a little, especially if you work out, but overall i found the top to run true to my regular size (i only tried on the 0, didn't try bigger). the length was great for me being short, i didn't think i need the petite (i usually do for pants and skirts/dresses, tops on and off). the look of the shirt is also classic, flowy and it looked great with e half tuck. the embroidery is also nice though one part of it seemed loose. a",4,1,6,General,Tops,Blouses +873,39,Fun summer top,"I tried on the pink version, really nice, the fit is loose, but flattering. opening at the neck looks nice either tied or not. fabric is airy. it looked nice tucked in or with a wide leg pant. i passed only because the color wasn't as bright as i need for my pale skin. overall, very nice. + +xs fit at 115 lbs, 30 dd, 26.5 in waist",4,1,1,General Petite,Tops,Knits +854,31,,This really is a beautiful blouse. it's much prettier in person than in the photo. the embroidery is delicate and the blouse is feminine. is has a nice drape that isn't boxy or flowy. my only complaint is that it gaps widely right at the bust. and i am not busty at all. there is no pulling it together and smoothing it out. it is just too tight and it has to be returned. boooo,4,1,9,General Petite,Tops,Knits +820,41,Wanted to love it but way too short!!!,"I was so excited to receive this top!!! the material and design is gorgeous but it is way way way too short!!! i'm 5'7"" with an hourglass shape/average build and it barely hit the top of my pants! it otherwise fit true to size. so disappointed!!!! and for the price, it really should be cut better.",2,0,11,General,Tops,Blouses +1055,29,,,5,1,0,General Petite,Bottoms,Pants +854,36,Very cute!!,"I love this shirt, bought it at the store. i have a few shirts from this brand so i knew how it would fit. i love the colors in this short, it's very spring and light weight! love it very much!",5,1,3,General Petite,Tops,Knits +854,37,Even better than pictured!,"This shirt is so beautiful and fits perfectly. it is so soft too, i didn't expect it to be so soft!",5,1,1,General Petite,Tops,Knits +120,37,Love!,"Love this swimsuit. runs true to size. definitely recommend. very flattering. for reference i have a straight/athletic build, i'm 5'11"", 150, 34c, and size 8 was great for top and bottom.",5,1,3,Initmates,Intimate,Swim +820,60,"It is not white color, it looks beige indoors","The tops looks fitted on the model because she pressed her arms against the clothes. to my surprise, +the tops actually is very very very r o o m y below the chest area. +the appliques/laces on the front are made of low quality materials.",1,0,2,General,Tops,Blouses +873,54,Comfy and pretty,"I love this top! it is modest enough for work, but fun enough for weekends. soft, comfortable, and lovely pink color. i want it in every color! (it seems to only come in two colors, though.) +soft flowy fabric, is lined with a soft inner fabric as well. super flattering for any body type!",5,1,0,General Petite,Tops,Knits +854,59,Beautiful,"This is a true tiny top........gorgeous and runs small. i usually wear a small or medium in retailer tops, but timy i always size up. i'm a 36c, and a large fits perfect. the front is a bit sheer, but not so much you need a cami.",5,1,1,General Petite,Tops,Knits +820,37,,Love this top! very feminine and looks cute with heels and jeans or can be worn more casually too!,5,1,1,General,Tops,Blouses +873,52,Super cute!,"Bought this in the silvery grey color in the store yesterday, and i have to say the photos don't do this top justice. it hangs beautifully, is nicely lined, and is well made. i will leave the ties hanging rather than tied. it isn't too long, but long enough and has a nice swing. i'm short waisted and large breasted and this top is super flattering on me!",5,1,24,General Petite,Tops,Knits +1055,24,Great jumper :),Love these! i call them my work overalls because thats pretty much what they are. the pictures of course don't show it but the sides are cut all the way to the waist band at the beginning of the pant. they were very flattering and quite comfy. these are just something easy to throw on and go to work in. i ordered these in a medium and they fit me perfectly. i do wish the top area was slightly wider to accommodate larger busts.,4,1,0,General Petite,Bottoms,Pants +873,47,Best for less chest,"I love this top so much i tried it on twice. because i forgot why it didn't work the first time: i have a chest. i'm just a c cup, but i looked lumpy and matronly in this top. if that's not an issue for you, i think you'll love it.",4,1,2,General Petite,Tops,Knits +1081,51,Cute but didn't work,"I love this dress. it's an unusual material and really adorable in person. the problem was that it runs so large that i couldn't make it work. i'm usually an xs regular. the xs swallowed me. so then i ordered it in a pxs and pxxs because i really wanted it to work. only the pxxs fit, but it was so short that there was no way i could make it work. and i'm only 5'1"". i am 51 years old so i am not comfortable wearing ultra short dresses. maybe a person who doesn't mind really short would be able to",4,0,0,General,Dresses,Dresses +854,47,Beautiful but too small for me!,"Usually can just buy tiny shirts knowing that they will fit me! and this one is beautiful but if you have any type of chest it will not work. i'm a 34d and it +was way too small in the chest area. it is a beautiful shirt though and i'm very sad that i have to return it. it will work better on someone else for sure. so i recommend this beautiful shirt for someone with a different body type from mine!",3,1,1,General Petite,Tops,Knits +314,36,,Material is gorgeous and soft but the fit is another story. i am a size 12/14 but very small busted. this suit is definitely meant for someone with a larger chest. the padding was so overwhelming. i also have a long torso so it just didn't really line up were the peplum should be. too bad. it's very pretty. but looked horrible.,3,0,0,Initmates,Intimate,Swim +873,54,Thoroughly femine,"Hi, i love this top. it not only is femine but it is wee bit sexy. it could be worn in the office then out for happy hour",5,1,2,General Petite,Tops,Knits +862,65,Perfect,"For me, this is the perfect tshirt. love the shape, size, material etc. just really like it. flattering and good quality.",5,1,1,General,Tops,Knits +314,58,Lovely but odd sizing,"I received this top and loved the pattern. however, i ordered both and s and m, and the bust sizing on this top is very odd. i am a 34c, and the bust area was way too big on both, but if i had sized down to the xs the rest of the suit would be too small. maybe it's just made for busty people? also the supportive material in the bust area goes straight across kind of like a bandeau, so that added to the odd look of the bust. it's still a beautiful pattern, so if you're going to give it a try orde",3,0,32,Initmates,Intimate,Swim +873,46,Love this adorable breezy look.,"This is one of my favorite tops! i have it in two colors. it's almost like a swing look, yet it still feels like it gives me a shape to my body. very easily paired with a skinny jean. i paid full price for th two, but now i'm sure i'll buy the third on sale!",5,1,7,General Petite,Tops,Knits +1081,26,Very pretty dress,"This dress is super super pretty. it is very dull light blue grey, very romantic with the black blow. very very pretty, i love it! my only complaint is that it ""balloons"" up a bit due to the fabric. it is very fitted for me, i think if it were a tad loose fitting it would not balloon up around the curves as much. it is short and comes a little above the knees. i love this dress for it's romantic look, it can be paired with leggings as well.can't wait to wear it.",4,1,1,General,Dresses,Dresses +1055,27,It's adorable,"Very cute. a size small worked perfectly for me, fits like a glove. it has open sides so i wear a tank top under it.",4,1,0,General Petite,Bottoms,Pants +854,55,Buy one size up!,"Love this shirt, bought this shirt, returning this shirt. believe this and the other reviewers who say it runs small, especially through the bust, and even if you're not busty. it's now sold out in my size, wish i'd gotten a bigger size that i could keep!",4,1,0,General Petite,Tops,Knits +854,55,Beauty and the beast,"I love the designs of tiny blouses. but i wish they could make them more durable. i have owned several blouses in the past where i have to use a little pin to secure the button line from pulling at the breast area, or that after a few delicate washings have come apart at a seam. and ironing or steaming them is a must. this blouse was no exception. it went back because of pulling at the bust. i'm willing to take some extra care of my clothing out of my busy schedule, but i shouldn't have to! 5'7""",3,0,2,General Petite,Tops,Knits +854,61,Gaps at the top button - but so pretty,"This blouse is very pretty, but it does gap at the top button. darn! such a hassle to have to return it, or exchange it. but i love it and otherwise it seems to fit.",3,0,1,General Petite,Tops,Knits +866,50,,The pullover is very light weight material so great for fall or spring. it hangs nicely in front and back and is slimming. i ordered a medium other than the sleeves are not as long on me as the model it fits perfectly.,5,1,0,General Petite,Tops,Knits +835,35,Lovely top,"Beautiful and comfortable, although it is a lot looser at the bottom than pictured, and the slit on the sides is quite high. not deal breakers though!",5,1,0,General,Tops,Blouses +1126,53,Much nicer in person,Such a pleasant surprise. i saw this in the store and had to try it on. it looks and feels like a lightweight real suede. the color is a wonderful neutral-much prettier than what i am seeing in the pic here. fits tts. although i will wear 0-2 petites in dresses and some pants i found the regular xs to be just right.,5,1,2,General,Jackets,Outerwear +936,26,So unique,"I was able to purchase this on sale and i'm so glad i did. i usually go between a size s and m (133 lbs., 5' 5"", 34 d) but the small fits perfectly. the color really isn't dark orange as stated......kind of a cross between rose/pale red/ salmon but i really love the color. it's not super heavy weight but not really thin either....actually perfect!",5,1,1,General,Tops,Sweaters +484,21,,These shorts were beautiful!! love the material and the way they fit. the drawstring makes them very adjustable.,5,1,0,Initmates,Intimate,Sleep +936,28,Favorite new sweater!,"I ordered a bunch of clothing from retailer last week, and this is by far my favorite purchase! the detail is gorgeous, it's very soft, and figure flattering.",5,1,5,General,Tops,Sweaters +1126,36,,,5,1,0,General,Jackets,Outerwear +949,22,,"Softest cardigan i've had in a long time! fits a little bit on the large side, especially in the sleeve length, but who doesn't love a big cozy sweater? this is a great way to add some color to any fall outfit. highly recommend this one. all i wish is that it came in more colors!!",5,1,0,General,Tops,Sweaters +909,32,Beautiful shirt,It turned out exactly as i'd hoped - very well made and very classy!,5,1,0,General Petite,Tops,Fine gauge +1126,26,Awesome jacket!,"This jacket is the best! definitely my staple jacket for the spring. it is so comfortable and soft. i usually wear a small in retailer clothing, but i opted for the medium in this so there's a little room for layering. even with the extra room, it is so flattering. i absolutely love this jacket!",5,1,3,General,Jackets,Outerwear +909,39,Cute,"I love this tank, it is casual and comfortable, but has the little scarf attached to it, so sweet and styling. i tried on the xs regular, and would need petite, it was a bit long on me, but some people may prefer that. i also wonder about getting xxs only because it is a looser-fit tank. both colors are nice and neutral, good piece to add to a transition wardrobe. (115 lbs, 30 dd, 26.5 in waist)",4,1,6,General Petite,Tops,Fine gauge +909,61,Order in multiples,"Trying the gray version on in the store, i found that the size of the armholes varied greatly within the same size. i am a 32c, 5'6"", 120 lbs. bought the size s. the top looks great with a faded denim skirt and is also appropriate for office environment. i also ordered the ivory in a s, but again, the armholes were so large that i had to return it. if you decide to try this top, order it in multiples of two sizes to find one that fits your arms.",4,1,0,General Petite,Tops,Fine gauge +1022,53,Just okay...long length for petites,"I have other pairs of stevie jeans and looked forward to receiving these.i would say that they run about a size large compared to my other pairs. i am 5'2"" and ordered a petite, but i found the length to be about 2-3 inches too long. as compared to how they look on the model. also, the rise is relatively low. otherwise, the quality is great, and the denim is very soft. i will probably return these given that i am not wowed.",3,1,0,General Petite,Bottoms,Jeans +835,46,Poor quality control,"I love the idea of this shirt, but the execution is absolutely horrible. i ordered online and what i received is just a mess. the stitching at the bottom has big globs of black thread. not just a few hanging off, but literally big clumps. a large portion of the stitching on the whole shirt looks like it should be on the underside of the shirt as the where the thread is tied off is on the outside!! the fit is just as big a mess. i always have to buy a large in fitted shirts because i have very br",1,0,3,General,Tops,Blouses +866,38,Lovely sweater,"Love the short in the front, long in the back look. it has an almost glittery look. really roomy, i would size down. really comfy and pretty!",5,1,2,General Petite,Tops,Knits +909,28,Super cute!,Fits nicely and made with high-quality material. it definitely makes you look very put together with some nice slacks for work. the scarf is a very nice detail and actually doesn't look like it is a part of the shirt. love!,5,1,0,General Petite,Tops,Fine gauge +949,58,Chauvet cardigan,"I bought this during the 20% off and i'm glad i did. the sweater does run large, so i would recommend sizing down. i'm 5'4, 135 lbs, with a larger bust (34d) and even the size small is large on me (not large enough to exchange, but i would probably do better with an xs; even with an xs i would still get that oversized look). the color is not exactly as pictured, it is a brighter yellow in person. i was expecting more of a muted, soft, baby yellow, and that's not exactly what this is. some pros a",4,1,6,General,Tops,Sweaters +1022,25,Nothing like other stevies,"I have other stevies, and these are nothing like them. the quality is very synthetic to a point that the material is shiny. the pants themselves run very small in the waist, approx. two sizes too small compared with other stevies. additionally, the cuff is sewn like that in place, and hits at an odd spot if you are taller or have strong calves. see how it gapes in the cuff on the model? like, a rounded bottom? that is way more emphasized in real life. buyer beware!",1,0,1,General Petite,Bottoms,Jeans +1126,42,Super cute jacket ! runs a bit small,"This jacket is as cute as it looks in the picture, color is very close too. i normally wear a 4-6 top (sometimes s sometimes m). the small looked great until i tried to raise my arms - the cut runs a bit small acrossed the back). i love this jacket though! the m fits nicely and i highly recommend it!",5,1,0,General,Jackets,Outerwear +1126,27,No shoulder mobility,"1st, this jacket fits true to size. 2nd, the shoulders are too tight (design--not sizing), as other reviewers have noted. it's such a beautiful design and material, so it's unfortunate that the shoulders are so tight the jacket is a little impractical. + +i purchased this jacket with 40% off sale price. i'm not sure it's worth it for such oversight on shoulder mobility.",4,0,0,General,Jackets,Outerwear +835,56,Better in real life,"Bought this in store at full price: it's that pretty. black & white, embroidery, pintucks! throw it on with capris and flats and you are polished and comfy. my only prob was i had to buy a little large - size 8- as size 6 was already sold out. +i am 5' 5"" , 130 lbs.",5,1,0,General,Tops,Blouses +1126,24,Love this jacket!,"Really love this jacket! i agree with the previous review that while the x small fits great when i am standing--it is a little hard to raise my arms in it. however- it is great to wear over a dress or with jeans at the office. great quality- lined with jersey. i've gotten many compliments! (5'8, 120 lbs, xsmall)",4,1,0,General,Jackets,Outerwear +1092,53,Le sac,"I have been struggling to find a nice flowy summer dress that isn't too short. i am petite but do not like to wear my dresses too far above the knee, so i ordered this in the 00 regular. this dress was not what i expected. it is not flowy, but rather a heavy and stiff fabric. it is also way too wide. it looks like it can't decide whether to be a box or a bag. it is also shorter than advertised. last thing to disappoint was the color - darker and more muted than the photo on the website. i can't",2,0,5,General,Dresses,Dresses +835,36,Love this shirt,"This is a gorgeous shirt. it actually looks more fitted on than in this picture, where it looks more shapeless. even though i love tunics, the online picture wasn't appealing to me -- but when i saw the shirt in store and tried it on i loved it. wore it to work today and loved it even more. it's great quality, gorgeous design, lovely tailoring and details throughout.",5,1,1,General,Tops,Blouses +1022,59,Best ag jeans yet,"I have many pairs of ag jeans -- mostly stevie's & harper's -- and while they're comfortable, i am always glad to take them off at the end of the day. these jeans are different. the fabric is very, very soft & feels like it's been washed & worn dozens of times. but the color & finish of the jean looks polished & spiffy enough to wear for evenings out or casual friday. and the fit is perfect, once i went up a size. slim and figure hugging but not at all constricting. my regular stevie's always fe",5,1,25,General Petite,Bottoms,Jeans +1022,42,Ag delivers as usual but run small,"I have several pairs of ag jeans and am always pleased with them. i had to get these when i saw them in the store. i'm a sucker for cuffed jeans in the spring. i also love the dark wash. i was surprised when i tried on my usual size 27 that they were too tight. i ended up going with a size 28. for reference i am 5'4, 122 lbs.",5,1,7,General Petite,Bottoms,Jeans +531,49,Perfect casual dress!,"This dress is perfect for weekend errands or i could see dressing it up as well. the material is a heavier weight, will not wrinkle and the pockets are an added bonus. i purchased the small in this dress and it is perfect. for reference: 32d, 27, 35",5,1,0,Initmates,Intimate,Lounge +1022,39,Love these jeans!,"These jeans are one of my all time favorite ag jeans. comfortable denim, dark rinse. wide cuffs are fashionable but still classy. wear them all the time!",5,1,0,General Petite,Bottoms,Jeans +1126,51,Love this jacket!,"I had been looking for a jacket like this for months, but haven't found the right style, until i saw this one! luckily it was on sale. i am 5'10, weigh ca. 143lb's and i usually wear a size small in all retailer tops. tried on medium, but it was too big in the bust area., then i tried on the small and it fits great! the sleeves are long enough too, but it is hard to move my arms up to reach something, so i just have to avoid that. :) i have gotten a lot of compliments for it.",5,1,0,General,Jackets,Outerwear +936,87,Beautiful sweater,"This sweater is more stunning in person then on the site. i saw it on the internet previous to seeing in the store. i purchased it right away, it was love at first sight!!. the detail on the collar is beautiful, and reminds me of the unique sweaters i have have in my closet from retailer from years ago that i still love. get it before it's gone!!!!",5,1,3,General,Tops,Sweaters +531,42,Casual and comfortable,"This dress fits well and the material allows for hiding lumps and bumps. material is heavy, yet soft. i could see wearing it with sneakers as the model is, or dressing it up with jewelry and heels. this will be a perfect dress to take on vacation, as it won't get wrinkled and it is so versatile. i'm normally a size 4-8 depending on clothing item, and i bought this in a size small. fits perfect. for reference, i am 38-26-38.",5,1,0,Initmates,Intimate,Lounge +835,53,So cute!,"I bought this in store yesterday in a 2 petite - it definitely looks best if you can get it in your usual size (4 petite just looked too big and changes the look). love the embroidery detail. it was on display with the sleeves rolled up to elbows, and it's really cute that way too.",5,1,6,General,Tops,Blouses +936,22,Beautiful but a lot of sweater,"I loved this when i saw it online. tried it on in the store, and though it is beautiful, it's a lot of sweater. its a a bit heavy in weight, the buttons on the collar give you the option to wear it up or open as shown in the picture. the problem was that when it was open the big button loop hung down right in front. that was probably the determining factor against purchasing it. if it goes on sale i may reconsider.",4,1,10,General,Tops,Sweaters +1126,42,Narrow shoulders,"I totally agree with the last reviewer. i'm 5'2"" 115 pounds with somewhat wide shoulders. the x-small fit my torso but was so tight in my shoulders i couldn't move my arms. the small was better but was too big in the torso. the material itself was really nice. too bad the fit was so awkward and unflattering.",2,0,0,General,Jackets,Outerwear +1015,40,,,5,1,0,General,Bottoms,Skirts +1022,33,New favorite jeans,"I love these jeans. they are very comfortable and do not stretch excessively after wear. i found the cut to be very flattering and the material to be heavy enough to hold its shape while still having enough give to move around and chase after little ones. they look great paired with a v-neck and flats or cute blouses and heels. a great buy! like another reviewer i, too, found these ran a little small and went up a size.",5,1,1,General Petite,Bottoms,Jeans +936,48,Gorgeous!!!!,"I love this sweater jacket! found it on the sale rack in a medium and fits like a medium would fit from my adored retailer! i am 5,4' inches and 34dd chest and curvy 145 lbs. the knitted detailed collar is a show stopper and what makes this item look like an an old school retailer item. the color is really not orange but more of a vintage rose with hints of rust and soft shades of pink. i love this color and i think it would look beautiful on many skin tones. i paired it with a pink blouse from anth",5,1,1,General,Tops,Sweaters +866,40,High low top,"I also sized down, and i'm glad that i did. i had been watching this top for awhile and was glad to get it on sale. it is not thick- more of a top than a sweater.",4,1,0,General Petite,Tops,Knits +866,42,Comfy and cute!,"This is way shinier in person than i expected, but i like it. there are gold threads throughout which stand out. i love shiny things so i was pleasantly surprised. i agree that you could size down if you wanted, but it looks cute roomy and loose i think. really soft. i will wear this to the park or dressed up for dinner. love the double duty aspect. i'm a little bummed about the fabric content, but that's it.",5,1,0,General Petite,Tops,Knits +936,39,Unique collar,"The knit collar and the color and the drape is what makes this lilitz cardigan so wonderful and an excellent addition to my signature retailer sweater collection. as previous reviewers stated, the color is not orange but more of a marled rose yarn. the body of the sweater is lightweight, draped, stretchy and warm and the knit collar is much heavier. because of my body type (36ddd, heavy upper back, rounded shoulders) this cardigan doesn't look great on me when left open as the collar doesn't fall",5,1,0,General,Tops,Sweaters +1022,40,Love it!,I finally found these jeans!! love them and have been wearing them almost everyday!,5,1,3,General Petite,Bottoms,Jeans +835,40,Versatile and unique,"I ordered this shirt with some trepidation after reading the one-star reviews. i was, however, pleasantly surprised when the shirt arrived and i put it on. i agree the sleeves are a bit on the slim side, noticeable mostly because the fabric doesn't have any give. the shirt fabric itself is both billowy and substantial and the embroidery work gives the shirt an expensive (because it is) and unique look. the shirt body is not as slim cut as it appears in the pictures; the darts open out to a much",5,1,0,General,Tops,Blouses +936,38,"Gorgeous, sleek and warm","Gorgeous, soft (yak hair, whaa?), versatile sweater. lean fit, not bulky. runs maybe a little large. i'm generally between a s/m in tops, so i ordered both. the s fit really well. the m did too, but a bit bulkier and wide in the hips. i'm 5'8"", 140 lbs, 34c. i'll wear this with everything, mostly with leggings or tight jeans with boots.",4,1,1,General,Tops,Sweaters +876,33,,,4,1,0,General Petite,Tops,Knits +903,55,Beautiful top!,"I bought this top for my 15 year old daughter, and she thinks it is beautiful. it's very comfortable, and good for days that are not too cold, but not too warm. lovely!",4,1,0,General,Tops,Fine gauge +886,66,Beautiful in neutral color,I really liked this cardigan. it is well made and very pretty. i will wear it when it gets a little cooler in early fall because i tried to wear it on one of these really hot days and it felt little too warm.,5,1,0,General Petite,Tops,Knits +868,43,Versatile piece,"I haven't worn this yet, but i can't wait too! i'm 5'3 145 pounds, ordered a size small. it's fits perfect! in fact, it's long enough that i may be able to pull it off as a mini dress on a hot day. that said, i will mostly layer this piece. the ruching on the side flatters the body. i would buy this in more colors if it was available! also, the material is a nice soft quality.",4,1,4,General,Tops,Knits +886,62,Lovely!,"This cardigan is a beautiful - not too thin, but soft and versatile. the cutouts add a nice unique detail. i was worried that the cuts might fray, but they actually have a very thin bit of glue to prevent fraying. really beautiful piece for those of us with cold summer offices :)",5,1,1,General Petite,Tops,Knits +1044,44,Love.,"Love the fit and feel of the fabric. says to dry but i found the leg seams did bunch up a bit so next time i won't dry them, i'll hang to dry. very cute style. super comfy.",5,1,1,General,Bottoms,Pants +1044,74,Great look,Love these pants. also ordered them in blue. great fit and style.,5,1,0,General,Bottoms,Pants +1193,41,Much better in person,"Just bought this dress in a 6. i'm 5'7"" 138 lbs (32b, 29 in jeans). this is *so* much better than pictured. it's an empire waist that really flatters my small bust and accentuates the thin part of the waist. i have an hourglass figure, but can see this working great for pear shapes. i wish the material felt softer, but the fit was so perfect, even for my broad shoulders. will transition nicely to warmer weather, but for now, i plan to wear it with leggings and a cardigan.",5,1,3,General,Dresses,Dresses +1193,47,Cute and comfortable dress!,"This is the perfect casual yet stylish dress. and, it's extremely comfortable!",5,1,0,General,Dresses,Dresses +1193,39,Beautiful in person,"The model pose does not do this dress justice. it is super flattering, and the fabric is a thick light fabric, can't explain it.. the pattern is simply adorable, i can't figure out why this one is on sale while other colors aren't as in my opinion, this is the nicest one. + +fits true to size as in my lower range. i tried on both pettie and regular and went with regular. petite was too short for me. i went with size 0 and am 5'1.5 and weight about 115.",5,1,8,General,Dresses,Dresses +1044,39,Like but not love,"I ordered these for store pick up and loved the color (red ones). the fit in petite ws nice and flattering, but iwould have to wear them with ehels still. th reason i didn't keep them is perhpas the pocket placement in front didn't flatter me as well? i think maybe i will order when on sale, or find a similar style with different frnt pockets.",4,1,1,General,Bottoms,Pants +1044,41,Cool fabric,"But i didn't like the fit. maybe because i ordered petite and the length threw me off, but they weren't flattering in any way. the color and material were unique and pleasing. had to send them back though.",3,0,0,General,Bottoms,Pants +903,46,"Love this artist's work, not the material for this","I have a collection of this artist's paintings throughout my home. she is a favorite. i was so excited to see the first clothing item offered at retailer. i ordered it at full-price. it looks the same in person as in the photos. the fit was true to size--it fits me as shown on the models. the knit was comfortable. the problem was the printed fabric. it was so flimsy and kept attracting static. no matter what i tried, i couldn't get the static problem solved. it was unwearable because of how messy",3,0,3,General,Tops,Fine gauge +825,28,Cute buttondown; runs large,Looks great with skinny jeans or even white pants. i have wider hips (usually an 8 or 10 on bottom) and narrower shoulders (small or medium on top). i bought the medium and probably should have sized down to the small as this was a little large on me but the top still looked good being oversized. i am a 34b and did not have any issues with button gap. my only negative is that the material wrinkles easily. the floral detail on both the pocket and the sleeves is a nice touch.,4,1,0,General Petite,Tops,Blouses +903,38,,"I love the colors in this top, but sadly i'm going to have to return it. the first thing my husband did when he saw this on me was just stare, and not in a good way. then he said it looked like a maternity top. i was so disappointed, and sadly will be returning this. for reference, i am 135 pounds. 5-ft. 4-in tall and do not want to look pregnant in a top. i normally wear size medium tops, but this one is huge. now i know why the model in the picture had her arms nestled in at her sides. this to",3,0,3,General,Tops,Fine gauge +886,69,Clever cutout design,"Just picked up this cardigan in the heather charcoal - so i can wear it in the fall and winter. the design on the border is well done and will show off whatever you wear under this cardi. sleeves are snug and long, but can easily be pushed up to 3/4 length.",5,1,0,General Petite,Tops,Knits +1193,43,Cutest dress!,"As another review said, the model's pose doesn't do this dress justice and i can't believe this is on sale. i picked this up this weekend at my local store. it fits wonderfully, very flattering. the fabric feels good and i'm fairly certain won't wrinkle too easily which is going to make this the perfect dress for packing for a trip. dress it up with boots for dinner, dress it down with sandals for day. this is a steal, get it! (i'm 5'8"", ~145, the size 8 fit perfect)",5,1,2,General,Dresses,Dresses +15,34,Incorrect sizing,Way too long...the sizing is incredibly off on this product. order a size or two down.,2,0,0,Initmates,Intimate,Layering +886,58,Love this cardigan!,"This cardigan is very similar to the c keer wrapped asters cardigan from a few years ago....i have this cardigan and have loved wearing it; i think it only came in cream color. unfortunately, i caught the cutouts a few times, and the cutouts are slightly ripped in 2 spots...not very noticeable, but i know they're there! so i was delighted to see that retailer brought back this cardigan, this time from meadow rue. i purchased both the cream and gray colors in a size small....i am usually a s",5,1,0,General Petite,Tops,Knits +1193,27,Polka dots,This dress is so much better in person. i would say it is tts but it was oddly baggy around the chest/armpit area which didn't deter me from keeping it. the biggest negative i have is that it is rayon but i don't think that'll change with retailers anytime soon.,5,1,0,General,Dresses,Dresses +876,53,,"Loved the styling, versatility, fit & quality of this top! length was good, not too fitted, perfect piece under cardigans & jackets. will look great with jeans, leggings or skirt. very happy with this purchase.",5,1,1,General Petite,Tops,Knits +15,45,,I bought an retailer cami 10 years ago and it is still in good shape so i looked on the website to see if they still carried them and they did! i bought 3 i was so excited!,5,1,0,Initmates,Intimate,Layering +886,39,Cute sweater,Great addition to wardrobe ...have already worn a lot. soft and lightweight.,5,1,3,General Petite,Tops,Knits +903,25,Work of art,The colors of this top are even better in person. the blue is easy to pair with denim and there is no need to accessorize -- the print does all the talking! it is a bit wide on the bottom and the print material is pretty thin. it definitely looks like something not everyone else has - worth the splurge.,5,1,15,General,Tops,Fine gauge +886,58,Beautifully different!,"This is a beautiful cardi. the cutouts and the full front panels all make it stand out. that said, there are 2 minor flows imo worthy of mentioning, none diminish my satisfaction toward it though. the sleeves are slim, meaning no long-sleeve shirts under it, for me at least. the fabric is a bit ""catchy"", meaning you'd better wear something silky or slippery under so the fabric doesn't crumple up behind your back. nevertheless, i will have so many uses for it + +last, but not the least, is my sa",5,1,18,General Petite,Tops,Knits +1044,47,Super comfy,"Love these pants- they are so soft and comfortable- do not fall down like low rise trousers. i like the length for wearing with flats - most wide bottom pants are too long, and these are very casual to be worn with flats.",5,1,0,General,Bottoms,Pants +903,57,Adorable top!,"I love this top! the colors are beautiful & look incredible with jeans as well as so many of the different color pilcro pants in my closet. it's the perfect between-season item. +since i don't like garments that have a ""boxy"" fit, i was concerned that this top wouldn't work for me after reading some of the other reviews. but it looks great & feels comfy.",5,1,0,General,Tops,Fine gauge +903,61,Springlike and pretty but runs large,"Looks nearly exactly like the picture. will be very comfortable to wear. i ordered a petite large and could really have worn a medium. it's big all over. i figure i'll do a little tailoring on this come spring and adjust the fit. on the whole, happy.",4,1,0,General,Tops,Fine gauge +886,28,"Very nice material, soft!",I got this in the brown and absolutely love it. this is perfect for cool weather. i'm super particular about fabric quality and this cardigan does not disappoint,5,1,1,General Petite,Tops,Knits +1044,38,Cute pants but they lose shape quickly,"Love the cut and the way they drape. size 26 and 5'6"" 135lbs fit great until you wear them for an hour. all of a sudden my 26s became 28s. they were practically falling off. i plan to wash them to see if they shrink. i wish they held their shape since they are so cute.",3,0,1,General,Bottoms,Pants +903,26,Disappointed,"The top looks better on the model than in-person. it fits loose and looks boxy and matronly. i don't like the sleeve length or the top style, it just didn't look flattering or good. i am sending it back. looks very boxy.",1,0,4,General,Tops,Fine gauge +876,63,Beautiful design,This is a beautiful top! extremely classy. looks great with dressy trousers or jeans. drapes very nicely. the petite medium fits me perfectly (5'1 126 lb). love it! the embroidery ads so much. so pleased with this purchase!,5,1,3,General Petite,Tops,Knits +931,27,Unique cardigan!,"I hesitantly ordered this cardigan after it spent weeks in my basket. i love it! i am usually ""large"" by retailer brand standards at 5'4"" 145 lbs, but the small fit quite big and i'm glad i didn't go for the larger one. it is super unique and cozy. i gave it a 3 on quality because the knit is a bit itchy and the fibers do come off on other layers. it also is longer than i expected, it hits about my mid thigh.",5,1,0,General,Tops,Sweaters +1092,34,Gorgeous dress but ill fitting,"I bought a size small in this dress even though i am usually a large at retailer. it just hung strangely and clung to the unflattering parts of my body but seemed very large. i loved the feel, color (grey) and style of the dress, but i ended up returning it because of the fit. it also requires something under it since it is fairly see-through.",2,0,0,General,Dresses,Dresses +239,40,Gorgeous swim suit,Love the design and print. absolutely beautiful bathing suit. would size up on the bottoms. top is true to size.,5,1,1,Initmates,Intimate,Swim +1092,33,Lovely sweater/tunic,"I tried this on in the store, and i found my regular medium to be a bit too boxy. i ended up going with the petite large because i found it just fit better. it wasn't too wide and fit just right. +it is very soft, not itchy at all. it says dry clean only but it did great on my hand wash setting with cold water. laid it out to dry. great purchase.",5,1,6,General,Dresses,Dresses +1092,35,This was used!!!,"Got this in the blue and was so excited. while it looks cute, someone had clearly bought this, worn it, and returned it. it had human and dog hair all over it. not to mention some kind of red strings. it was pilling all over. so much for quality control!!! i don't mind buying used things but at least clean it up and give me a discount!",1,0,0,General,Dresses,Dresses +1092,46,,"Lovely style. i got the navy color and it's beautiful. i'm glad i ordered a smaller size after reading other reviews. my usual size would have been too big and not as figure flattering. but but but the sweater came pilled all over. i don't know if it had been worn and returned or if it's just the quality of the material but seriously there was pilling on the entire sweater. because the style is so nice and it fits well, i'm going to keep it and de-pill it but was disappointed with retailer :(",3,1,0,General,Dresses,Dresses +1092,26,Underwhelmed,"I was really excited to receive this dress but was disappointed that it really wasn't that special. i'm 134 lbs, 5'5"" and i ordered a regular size s and it did fit. i prefer my dresses right above my knees but this was probably 2 inches above the knees. it just wasn't that flattering nor worth the price. i expected to be wowed but wasn't!",3,0,11,General,Dresses,Dresses +1095,55,Just not for me,"Colors washed me out, i need more vibrant colors. so cute on the model",3,0,0,General Petite,Dresses,Dresses +823,47,,"This top is beautiful, really special. i am a 32dd and this type of flowy top sometimes doesn't work for me but this one is fine. looks great with skinny jeans and boots or flats.",5,1,4,General Petite,Tops,Blouses +1007,56,,,5,1,0,General Petite,Bottoms,Skirts +836,33,"So cute, but size up!!","This top is so cute and of spectacular quality, but you have to size up! i'm a 10/m/34c all the time. i almost never have to size up or down. but this top was so tight around the bust that i couldn't possibly have closed the zipper in the back. i'm sending it back for a l in the hopes of a better fit. the coloring of the owls is out-of-this-world cute, so i'm keeping my fingers crossed that a larger size will be just right.",5,1,1,General,Tops,Blouses +823,47,,Really wanted to love...but...the way it fit..lower part a tad too flowy...almost maternity like to hide a belly and the top area feels like my chest is being smushed! despite my bra size being a modest 36b...the look it gave was square on top almost block like with bottom that had flare...such a pretty top unfortunately the overall design just didn't work me.,2,0,11,General Petite,Tops,Blouses +1092,29,Was very excited....but not for large busted,"This sweater is gorgeous...it is of great quality and very warm. i was very excited and wanted it to look great. however....i have a large bust and am full figured...so it was not appealing and just kind of ""hung there"". i feel that it would look great on thinner women...and it is a gorgeous sweater...just not for me!",5,1,0,General,Dresses,Dresses +823,44,,"Gorgeous blouse, but a touch too large. i may return and try a small.",5,1,18,General Petite,Tops,Blouses +1092,36,This sweater dress is a keeper,"Overall, i love this dress. it's warm with tights or leggings in cold temperatures. and it's super effortless. there are a few things you should know prior to purchasing online though. the dress runs large. i ordered a large and its big. i'm ok with it; a super tight sweater dress is not was i was hoping for, but i might have been able to order a medium (i still kept the large). the weave of the fabric does not seem as tight as pictured. i felt the need to wear a tank top beneath because you cou",4,1,5,General,Dresses,Dresses +823,36,Feminine and romantic,"This blouse is very flattering. it drapes well and i love the textures. only problem is the head hole is a little small so if you buy the white one, put your makeup on after you have it on and remove your makeup before sliding it off. i bought an extra small even though i'm usually a small. lovely top. a lot of people have commented on it.",5,1,1,General Petite,Tops,Blouses +823,34,Not worth full price!,"I loved this shirt online and ordered it in blue immediately even though i usually hesitate to spend over $100 on casual blouses. unfortunately, i was super disappointed when it arrived. the lace does not contrast as much as shown in these pictures and it just doesn't look all that special. having said that, it is super comfy and soft and the sizing is generous - it may run big on you if you have a small chest. all in all, i would buy it on sale but certainly not worth the price tag!",3,1,6,General Petite,Tops,Blouses +823,27,Love it so much that i bought both colors!,"I love this top! i ordered it in a medium, and it's perfect. i'm 47 years old, 5'2"", 125 lbs, for reference. the detail on this top is beautiful. can be paired with so many things. love it!!!",5,1,3,General Petite,Tops,Blouses +1095,25,Extremely flattering,This is so adorable and flattering. dress it up or down with a denim jacket weekday to weekend.w/flats or pumps. love this cute dress. not all wool so it's not itchy at all. the colors are vibrant and would compliment any complexion!,5,1,18,General Petite,Dresses,Dresses +1068,31,,I am so glad i ended up with these pants. wasn't ready to pay full price but ordered them immediately on sale & realized they were definitely worth every penny of full price. they are so soft & have so much detail. these pants are just gorgeous. i'm 32 and can't wait to wear these to cabo!! they may run a little large.,5,1,3,General,Bottoms,Pants +1092,33,Beautiful but growing dress!!,"Love this dress and its versatility! great design concept. fabric is pretty soft, cozy, and warm, as well. i found the dress to run large. i ordered a medium in the gray and small in the rose. i did like both colors irl, but the size small was the best fit. for reference, i'm 5'6"", 135 lbs, and wear a 6. the size small hit just above my knees and the sleeves reached down to my knuckles. i wore this around the house for awhile and realized that while the knit was nice and tight when i first put i",4,1,3,General,Dresses,Dresses +865,39,Soft lace,"This top is very pretty, i ordered both xs p and xxs p not knowing (someone wrote the word boxy in the review) - i tried on the xxs p first, and that was fine. did the trick to not look too boxy. teh fabric is stretchy, and soft/comfortable, not scratchy lace. the lining is soft as well. color is ivory and the embroidery is nice and fiery colors. the sleeves are fairly flattering, even on bigger arms. arm hole was just right too, never know with fluttery sleeves. +for reference i am 115 lbs, 30",5,1,0,General Petite,Tops,Knits +823,39,Lovely but color not true to pic,"I ordered this in a small and i am 32b and the fit is perfect. lovely details and very well made but the online pics make it look like a soft periwinkle blue, however when i pulled it out of the shipping bag, it was more gray-blue. dare i say...country blue. even the pictures i took in this top make the color look different than it really is. i almost sent it back and i love the color blue but it was soooo not what i was expecting. it grew on me so i'm keeping it in spite of it.",4,1,4,General Petite,Tops,Blouses +865,45,Stunning top!,"I read the other reviews and from the picture it looked as though it may be a little short, so i ordered up to a large. the medium would have fit, but since i'm in my mid-40's i felt more comfortable with large. but if you are trim and young or young at heart your usual medium will be fine. live the material and the navy makes it classy and rich looking. can be dressed up or down. have worn it to a cocktail party fundraiser with blue crop pants and received many compliments. i'm always challenge",5,1,1,General Petite,Tops,Knits +823,43,Delicate and elegant,"This blouse is stunning. it's ultra feminine but has a bit of bohemian feel to it. i am 5'3"" and 108 pounds. i ordered an xs at first in both colors but they were a little big in the bust area and under the arms. my bust size is 32c. i ordered the xxs in both sizes (not petite, as i have a longer torso) and they fit perfectly! they are not too snug anywhere and it makes the blouse look even better - obviously - because it fits better. the hem of the shirt in a size xxs hits right below the hip b",5,1,4,General Petite,Tops,Blouses +1095,42,Transitional sweater dress,"I saw this in the store and immediately had to try it on. it fits perfectly. i'm usually a size 4/6 with dresses and the small fit perfectly. it looks expensive and high quality and the print is unique. what i love most about it is that i can wear it in the winter time, layered over say.... a black turtle neck and black tights... but i think it can also be worn in the spring, especially with that flower print.",5,1,4,General Petite,Dresses,Dresses +1068,38,,"I love, love these wide leg pants! the embroidery detail give them a little something extra special. they are comfortable, and perfect. the length is great for wedges, and the fold over waist does not add bulk. the only downside, and this is probably due to my figure, but the pockets do need to be sewn shut so that they will lie flat.",4,1,0,General,Bottoms,Pants +1028,39,A bit disappointing,"I have been looking for a quality pair of black skinny jeans for a while. after reading the reviews, i had such high hopes for these jeans. i bought it in my usual size 28 and while the top part fit perfectly, i found that the bottom was too tapered in and ultra skinny making it not look right. sadly, i had to return.",3,0,0,General,Bottoms,Jeans +1095,26,,"I was on the fence about this dress - i wanted something nice but casual for a family graduation. i'm glad i took the chance once it went on sale! the fabric is not as thick as you'd expect for a ""sweater."" just thick enough to hide any imperfections, panty lines, etc. i plan to layer with long sleeved tees or a jean jacket. i think it will do great through fall with tights and a turtleneck. + +i'm 5'6', 135 lbs, 34b and the small fit perfectly. i am ""pear - shaped"" by conventional standards, bu",4,1,2,General Petite,Dresses,Dresses +823,31,The perfect white top,"Adorable peasant fitting top. not too voluminous, just right for over jeans, and really cute with shorts. the detail makes it wearable for dress up or down, and the cut is classic!",5,1,1,General Petite,Tops,Blouses +823,52,Feminine and pretty style,I love this blouse. i wasn't sure if i was going to like the high neck but it fits the style. the quality is excellent. i bought a size small and i wear a size 2-4 or xs-s in retailer most of the time. i could have worn the xs if i was a little smaller busted (34c). i'm 5'9 and i didn't like where the gathering hit with the xs. very flowy without looking like a maternity top. it's also lightly lined so i don't have to wear a cami. warning - this shirt is long. if you are on the short side you may,5,1,13,General Petite,Tops,Blouses +1092,31,Versatile,"I passed over this dress online thinking i'd never wear it. but, then i found myself inside an retailer store and decided to try it on. i am excited to say that i love this dress. it is soft and lovely. the cowl is large and the whole dress has a really great drape. my favorite thing is that the buttons along the back are functional. opening up the back turns this dress into a long cardigan that is to die for.",5,1,0,General,Dresses,Dresses +865,55,Pretty top,This top would have been better if it had a stretchy fabric. being large breasted makes this top a little tight. still so pretty so i'm keeping it. makes me look a little less chesty.,5,1,1,General Petite,Tops,Knits +815,25,Weird boxy fit,"The lace on this top is pretty, and i liked the way it was styled in the product photos, but did nothing for me on. between the loose sleeves and the boxy cut of the front, it just sort of hung shapelessly on me. i also found the back to be much shorter than 30.5""--it came to a few inches below my hips and was not tunic length like i expected. the shoulders fit me well, and because the top was boxy already, i didn't want to size up for length. for reference i tried on xs (i'm 5'4"", 120 lbs).",3,0,0,General Petite,Tops,Blouses +1092,31,Cute and comfy,"Very cute and comfy dress. i'm 5'6"" and 117 pounds and the xs worked great. it is meant to fit big and comfy so don't expect a tailored dress. looks great with tights and boots and i love that you can turn it around to make it a cardigan!",4,1,5,General,Dresses,Dresses +1068,37,,,4,1,0,General,Bottoms,Pants +823,28,Perfect for work,"I absolutely love this top. i managed to snag one that had been returned to a store, so i didn't have to order it. i love the cute and the overall boho feel to it. i feel like it's true to size, as i'm normally a medium in retailer.",5,1,1,General Petite,Tops,Blouses +802,26,"Interesting color, thin material","I am undecided if i will keep this dress or not. i am 5/4, 155 lbs and ordered both the small and medium. the medium was comically large on me, with broad shoulders and a sack-like appearance. but the small fit very well and felt very french girl chic. the brownish-greenish color is really stunning in person, like a greenish copper. and the gathered sleeves elevate this into a dressier look. but the material is sheer, so you would need to wear a slip, and the elastic waist still has somewhat of",3,1,2,Initmates,Intimate,Lounge +1022,57,,,5,1,0,General Petite,Bottoms,Jeans +865,34,Beautiful top,"I was in love with this top from the moment i put it on. it is of high quality, with layers to ensure the top isn't sheer. the embroidery is so pretty and the top looks way less grandma in person. i ordered the petite xxs and it fits perfectly. i really appreciate that the underarm holes are just the right size and don't show off any of my bra, which sometimes happens with sleeveless tops. i can wear it with jeans and boots or with a pencil skirt and heels and it looks great with both outfits. o",5,1,1,General Petite,Tops,Knits +1009,40,Darker colors then pictures,"The picture makes it looks like it has rich brown yellow and orange colors. when it came, it was more black with some orange that popped. much different then i expected. the material was nice and silky but i was not willing to keep something that was dry clean only. i sent it back.",3,1,0,General,Bottoms,Skirts +863,40,Great basic - bought all 3 colors,"Great top! i'm 5'7"", 135lbs and normally wear either an xs or s. i ordered the white to start with and decided to go back for the other 2 colors. it's a great basic to wear with pants/shorts/skirts, but the side slit and slant set it apart from a regular tank. i opted for the small in this top just because of where the side slit hit.",5,1,1,General,Tops,Knits +1095,48,Great dress.,This is an adorable dress. medium weight. i highly recommend.,5,1,3,General Petite,Dresses,Dresses +1092,38,Not for those who are even slightly pear-shaped,"There isn't much shape to this dress. it's fairly straight from top to bottom. i'm smaller on top with a small waist but slightly pear shaped. the top half was somewhat loose but the bottom half just clung too much. i'm 5'2"" and 107 lbs and bought a pxs for reference. also, i wore a tee shirt underneath and the dress shed all over it.",3,0,6,General,Dresses,Dresses +823,46,"Love, love, love!","Great arm coverage, soft material, flattering fit. wear with favorite worn-in jeans with holes in the knees and also with white jeans and long or short shorts. i really should purchase another color for summer work staple.",5,1,1,General Petite,Tops,Blouses +795,50,"Embroidery provides ""wow"" factor!","Such a lovely, well constructed top. looks great on petite frames. free flowing but not too ""peasant-like."" the embroidery is gorgeous. while it is pricey, it is something you will wear for years as it is a timeless piece.",5,1,0,Initmates,Intimate,Lounge +1095,54,Petal perfect!,Lovely statement shift. sweet and sophisticated at the same time. the lightweight knit drapes nicely over one's figure. my store showed it paired with a collared cream-white blouse for alternative styling. i know i'll be experimenting with solid tees.,5,1,4,General Petite,Dresses,Dresses +1095,46,Simply beautiful,"This is a pretty dress. like the positive reviews have noted. +very figure flattering",5,1,0,General Petite,Dresses,Dresses +865,26,,I haven't worn it yet. i tried it on when i got it and like it alot,5,1,0,General Petite,Tops,Knits +1092,53,Shorter than advertised,"I love sweater dresses and was excited to find a dress that would be long enough for me to feel comfortable in. i am petite, but at my age i am not comfortable in things that fall more than an inch or two above my knee. this dress is much shorter than stated, and much shorter than it looks on the model. i measured the petite xxs (my normal size) and it is 31"" from the shoulder seam to the hem, not 36"" as stated. five inches is a big discrepancy. the color and style were lovely, but i just can't",3,0,8,General,Dresses,Dresses +1092,27,,"I love this sweater dress! i was hesitant to order it after reading some of the reviews, but fear not, friends--this is a comfortable, flattering, warm dress with a unique twist. i love the cowl and the buttons down the back. the knit is fairly large so there's some give to it, which means pulling it on is a breeze, and the buttons don't slip out of their closures unexpectedly, which is an added bonus. i ordered both grey and navy. i stand at 5'6"" and would describe myself as pear-shaped, typica",5,1,0,General,Dresses,Dresses +1092,50,A big disappointment,This dress is super bulky and unflattering. the knit is loose and see-through. looks like it was knitted by a five-year old. if you need a dress that adds twenty pounds then this is for you. back to the store it goes,1,0,7,General,Dresses,Dresses +865,38,Beautiful but delicate,"This blouse runs large, billows out slightly, and hangs in a boxy straight way. i'm normally a medium but can probably wear a small in this blouse. the blouse is lined with a light-weight material but i can still see through it just a little bit. although very pretty, the blouse can snag easily so be careful when wearing. regardless, i plan to return for a small because this blouse is beautiful and unique. perfect for fall with its warm colors or summer because it's light weight.",3,1,2,General Petite,Tops,Knits +815,41,"Beautiful, but awkward fit and not worth the price","I love the lacey design of this top. however, it is very wide and doesn't fit well on someone with a small frame. i tried ordering a petit size. the width was better, but this size was too short. in addition, the lace didn't lay very flat, and there were lose threads all over. overall, not worth the price.",3,0,4,General Petite,Tops,Blouses +850,33,Love this top!,"I bought this in red in xs (5'5 115lbs). it's really cute and flirty, but not in a little girl way, which some ruffle tops can look. the material is nice. a little over priced, but isn't everything from retailer?! the red is a perfect red imo, it's got an orange-y undertone to it, looks so good with white jeans and black sandals. if you're inbetween sizes, i would size down but otherwise pretty true to size. i wear everything in xs from retailer and the xs fits perfect.",5,1,9,General Petite,Tops,Blouses +1028,36,"Found the ""one"", won't need to buy anything else",The rocket by citizens of humanity are my favorite jeans. perfect high rise and still makes the butt look good. they are incredibly comfortable. no more hiking up your jeans and bending over. love these so much. am very happy that j brand and citizens are making some good high rises now. won't buy anything else.,5,1,4,General,Bottoms,Jeans +1092,36,Cozy dress that's still chic,This dress is so cozy and soft. love it! the cowl is big in a flattering way. absolutely adore the buttons that run down the back of the dress. such an unexpected detail which makes retailer pieces so special. i would layer tights and tank underneath anyway so the see through aspect other reviewers mentioned wasn't apparent to me and also wasn't as big a deal.,5,1,33,General,Dresses,Dresses +1092,29,Better than expected!,"I was very impressed with the fit of this sweater dress. i am a 4p, 5'4"" and the length and general fit of this is perfect. the fabric is so soft. love it!!",5,1,1,General,Dresses,Dresses +823,43,Best top ever,"I own quite a few pieces from retailerplogie but this one is my favorite by far! the color is a crispy white. the length is just right and has a beautiful flow to it. it is more fitted on top but flares out for a feminine appeal. i am 5' 1"", 115 lbs. i bought the regular xs and it fit like a nice tunic top. perfect for a curvy figure- i wore it with my tight jeans and boots. got compliments from everyone!",5,1,8,General Petite,Tops,Blouses +802,66,Not sure,"I'm 5'3"", 155 lbs; ordered the blue in a large. beautiful color and fabric. it's big and a bit wide and long, hitting below my knee. i might reorder in a smaller size because it has great potential. cute casual or dressy. i agree that it needs a slip but not so obviously sheer in the blue color.",4,1,0,Initmates,Intimate,Lounge +815,66,Underwhelmed,"I stalked this blouse and when the price dropped, i pounced on the black. sadly, it did nothing for me. i'm a large, sometimes medium, but decided on the large. you'd think it came with its own cami at this price, but no. completely sheer. unwearable without one. the lace is nothing special. the collar is wider in the back, uncomfortable and pulls on the lace in the front. the high/low hem fit me oddly in the back. i'm returning this one.",3,1,2,General Petite,Tops,Blouses +1092,32,Cute dress online but not for me,I purchased this dress online and it just didn't fit my body very well. it also arrived with a pretty sizeable hole so i can't say that i'm impressed with the quality. there were other areas too where was a loose thread which i'm sure will develop into another hole eventually. returned.,3,0,0,General,Dresses,Dresses +1092,51,,"I love love love the soft fabric and the cozy cowl. however mine not only had a giant hole, it seemed like the yarn started pilling as soon as i touched it. love the idea, but not practical, even without a hole =)",3,0,0,General,Dresses,Dresses +1092,61,Love,This sweater dress is so soft and great quality...you can dress it up or down... i will get a lot of use out of it!,4,1,0,General,Dresses,Dresses +823,57,Instant love!,"Saw this online, but it said the store was out of stock. imagine my surprise when i went to my local store and found it in both a small and a medium in white.. i tried them both on, but not a lot of difference in the sizing. the small had a smaller head/neck opening causing it to be a bit tough to remove without getting makeup on it, which the small did. the medium fit very very close to the small, but a smidge bigger at the neck. the shoulders of both seemed to fit the same, with maybe a tad mo",5,1,5,General Petite,Tops,Blouses +850,34,Maeve...has failed on this,"Maeve is one of my favorite retailer designers. usually fall in love with a blouse, only to look at the tag and discover it's by maeve (go figure). +this top is just atrocious though. does nothing for girls with a larger chest. very boxy and unflattering. gorgeous colors though, and the sleeve concept is cute. however, where the sleeve meets the shirt looks cheap and thrown on. not impressed.",2,0,2,General Petite,Tops,Blouses +1092,32,For straight figures,"This sweater dress was incredibly soft, and i loved the button detail down the back. unfortunately, i'm an hourglass figure (32dd with 26'' waist). this sweater did nothing to flatter me. i tried it in 2 different sizes; the ps looked far too big on, but the pxs created an awkward baggy area in my midsection while fitting nicely elsewhere. the petite length was great - i am 5'1 and i would not have wanted it any shorter. wish this was a little more tapered in the waist, because the quality is lo",3,1,1,General,Dresses,Dresses +1028,31,Never turning back.,"Was in dire need of black high rise skinny jeans. bought these in a moment of ""treat yo' self"" mentality. absolutely do not regret it. at 5'7"", 27-28 waist, typically a 28 in denim - i got the 27s as i found that they not only fit in the waist, but were more slimming. black ""denim"" typically stretches out in jeans as they are not of the same fabric - these have a great weight, perfect ratio of thickness:stretch, look incredibly sleek paired with anything. high rise keeps my belly in check, and a",5,1,1,General,Bottoms,Jeans +823,44,"Pretty, stylish, romantic top","I bought the white version of this beautiful top in the store yesterday, this romantic top is beautifully detailed, very soft, comfortable and flattering. there is a thin cotton liner underneath too. fits true to size with enough room in the bust to not be too tight.",5,1,58,General Petite,Tops,Blouses +1009,61,Stunning,Colors are much more vibrant in person. love this skirt. true to size. makes a statement and is still classy.,5,1,0,General,Bottoms,Skirts +836,24,Too studious for words,"Love this blouse. the owl design is flawless front to back. the material has a silk like feeling. i would say the arms a slightly tighter than i would prefer. if you have larger arms or have any muscle the sleeves may be tight on you. also, i am a 38 c and the chest fit well (in size large), but would not offer much more room for a larger chest. if you want a looser and relaxed fit as the model shows, i would size up. i love the unique design!",5,1,10,General,Tops,Blouses +823,23,Beautiful yet simple,"Such a lovely shirt and even though it is white, flowing and delicate it is not see-through so you will not have to worry about wearing an undershirt in the summer sun. lovely top!",5,1,1,General Petite,Tops,Blouses +850,42,"Adorable, versatile top for summer","This is really one of those items that hits it out of the park. first, the fit is great. it's relaxed without being oversized or tapering way out or way in or something odd like that. it's nearly universally flattering to most body types and it's easy to wear with nearly anything. shorts, jeans, trousers, pencil skirts.....it looks great dressed up or down. + +i also like that the pleats that create the ruffle are sewn nicely (sometimes my recent purchases from retailer have not been the best qua",5,1,2,General Petite,Tops,Blouses +865,24,,"This top is everything it promises to be. i read other reviews and purchased a small (i'm typically between an x-small/small depending on the day of the week) and was glad i did. a medium would definitely have been too big but the small fit perfectly. i have a shorter torso (5'3""/117 pounds) so i didn't experience any apprehension about my stomach showing. i paired it with a pair of skinny black ankle pants and a pair of navy and grey d'orsay heels. it worked wonderful and i can't wait to pair i",5,1,1,General Petite,Tops,Knits +1022,46,Flattering and comfortable,"Love these sateen jeans. they are a bit more polished than regular, flat black jeans, but not too shiny. i am 5'9"" and always wear a 27 in ag jeans and these were consistent with my usual size and fit perfectly. the mid-rise is very comfortable and the length on me is about the same as on the model (hits above my ankles). they're easy to dress up or down, and i have a feeling i'll be getting a lot of use out of them.",5,1,2,General,Bottoms,Jeans +1095,29,Cutest dress,"If you are in between sizes order smaller size. adorable dress. boots or booties look adorable with it. denim jacket or dress it up. can go either way! colors are beautiful. i ordered the small and medium and kept the small. i did have it shortened. for reference, i am 5'4. 120 pounds.",5,1,5,General,Dresses,Dresses +239,33,Unique design but runs small,This bikini bottom is great design and quality but runs small. overall i would recommend.,4,1,0,Initmates,Intimate,Swim +836,59,Beautiful!,"I agree with other reviewers, this print is beautiful, i'd love to see the artists other work... +however, the price is steep for sure! +i was hoping to wear this with my skinny jeans but it is waaaay too short for that! i have an extra long torso so this is not an unusual problem for me, but this one is worse than usual almost like a crop top. unlike other reviewers tho, i would not want to size up. it fits snugly but not tight. the fabric doesn't give much tho, so if you're on the verge of siz",4,1,0,General,Tops,Blouses +1095,55,"Sadly, not for me","The colors look better in person and the sweater knit is thinner than i expected (which is actually a plus in my opinion) so i was very happy when i opened the package, unfortunately the fit was off for me. the lower part and the back are perfect, the dress hangs nicely, no puffing, no stiffness. however, the upper part at the front was tight and something about the armholes made my arms and upper body look beefy (i promise i usually don't have this problem). i am 32a and routinely order xs. the",3,1,12,General,Dresses,Dresses +865,32,,"I adored this when i saw it online, paired with the leather skirt. i waisted impatiently for it to show up and, when it did, was happy at the price point but unsure of how it would feel. for the cut, i would say it runs tts. i am sometimes an xxs but in this case that size was tight across the shoulders. i am worried that the xs will be too roomy in the waist but time will tell. as for quality, well, you can feel the polyester in it, for sure. it's nice to have the lining, but i would not say it",4,1,2,General Petite,Tops,Knits +1092,67,Lovely color but...,This sweater dress color is great and texture is nice however ran huge. read the other reviews before ordering and ordered down to a medium and was just to boxy and could not get it to hang well. unfortunately it went back.,3,0,0,General,Dresses,Dresses +815,64,Beautiful!,I just received this blouse and love it...more beautiful in person..i got the black one in a petite and it is perfect...if you want it longer in the front order a regular.,5,1,1,General Petite,Tops,Blouses +1009,59,"Gorgeous, flowy skirt!","I love, love, love this skirt. it's comfortable and attention getting. i receive compliments whenever i wear it -- and i feel great wearing it. colors are much more vivid than on the website -- that's a plus!",5,1,2,General,Bottoms,Skirts +1092,30,Love this sweater!,I absolutely love this sweater. it is a great quality sweater dress and a beautiful color. so comfy and warm too. i never want to take it off. definitely one of my favorite purchases from retailer.,5,1,0,General,Dresses,Dresses +1068,51,,"These pants are adorable as pajamas or maybe something very casual to wear to the beach, but they honestly do not seem like something that a grown woman would wear in public. they are good quality and fit nicely, but i feel like if you're over 20, they're not really flattering or especially appropriate.",3,1,2,General Petite,Bottoms,Pants +1126,62,Wonderful and unique!,"If you are like i am and love coats that stand out......this is for you. there are many +++++++++'s first being the quality, embellishment like this coat has can easily go crafty and this coat does not, also the bead work and trim is sewn beautifully with no loose threads visible to me. it is hard to see the bead work but it pops just right, colors are wonderful and fit is tts. it also,looks great belted and much nicer in person.....",5,1,0,General,Jackets,Outerwear +1095,77,So pretty,"This dress immediately caught my eye in the store. the colors are vibrant and the cut is flattering. i wear a smaill and it fit perfectly, the sweater material is not thick so it can be worn all year. it is very versatile.",5,1,3,General,Dresses,Dresses +1068,61,Nice medium weight fabric,"I decided to give these trousers a try, despite my reservations about the appropriateness of the flowered embroidery on the fabric, given my age. girls and younger women can wear these types of pattern in public, but not me. for me, it seems too much like pajama wear, so wearing them as house clothing also didn't appeal to me. i'll be returning them. + +the length is why i took off one star. how many petites have a 31"" inseam? i would need to have them hemmed. if you're looking for loose fitting,",4,1,13,General Petite,Bottoms,Pants +1075,59,Amazing but very large!,"I love this dress?sophisticated and amazing?fabulous fabric. however, if you are petite and take a 0, it will be enormous! i am trying to decide if i send it back or have it altered.",5,1,2,General Petite,Dresses,Dresses +850,45,Great top!,"Love this top! wore with jeans, comes to about mid hip so good coverage. fit was perfect for me!",5,1,1,General Petite,Tops,Blouses +1092,51,Wasn't a good fit,"I really thought from the picture that the dress would be more fit for a curvy figure. it is, unfortunately, more well suited to those women with straighter lines. the color was more flat than the picture as well, but i bet it is lovely in navy.",3,0,1,General,Dresses,Dresses +865,37,"Pretty, but very small.","This top is really pretty, however i found it to be super small. i know meadow rue tends to run small, but this small was like an extra small. i'm not large chested either . if you are super straight/thin with a long torso this is the top for you.",5,1,0,General Petite,Tops,Knits +815,47,Love!,"I got this in black and have no issue wearing a solid black bra under it. i felt it ran a little big. i'm a 34dd and usually have to wear a medium due to the ""girls"" but a small fit me and fit well. i didn't find it boxy and it fit me perfectly in the shoulders. i paid full price but i loved it so much i didn't mind. the sale price is amazing!",5,1,0,General Petite,Tops,Blouses +836,33,Beautiful and quirky!,"This may be one of my favorite purchases from retailer in a long time. i really appreciate the unique design, a quality that has drawn me to retailer for years. the cute little quirky owls are as rich in color as they are in personality. i'm don't typically favor cheaper polyester blends though the texture feels fine on my skin. this top definitely runs small and i had to size up to get the fit and length i desired. overall, i am very pleased and have received lots of compliments after wearin",4,1,1,General,Tops,Blouses +823,35,So pretty but be careful,"I am 5'6"" and 140b, i'm usually a s and that is the size i bought. i loved the fit of the top and wore it immediately. then i washed it just as the instructions said and the liner shrunk about 3"" (just as another reviewer stated) and the sleeves were much tighter and a little shorter. however, i loved the top so much that i took the top back to the store and exchanged. the store was super understanding about it and i was able to order the same size. it's back ordered, but once i get the new top",4,1,1,General Petite,Tops,Blouses +823,48,Beautiful top,"Loved the material and the feel. however, it does run a bit large on the shoulders so i had to return.",4,1,0,General Petite,Tops,Blouses +1092,32,,"Really cute dress for work. fits exactly as i expected. this dress is very comfortable and looks put together on days when you're being lazy and just want to ""throw something on"".",5,1,5,General,Dresses,Dresses +836,38,I recommend with caveats,"I splurged on this top and was sadly disappointed. i'm a 36d, and the l was so tight i couldn't get it over my chest. also the arms were super tight and the length is nearly cropped. and the fabric is shiny, the picture makes it look like it's matte. if it did fit like the model i would've loved it. the print is beautiful though. bummer",2,1,8,General,Tops,Blouses +1095,39,,"This is a beautiful dress, just not for me though. since i'm 5'10"" it hit me 2-3"" over my knees. the colors are vibrant- would look good on most!",4,1,0,General,Dresses,Dresses +850,42,Feminine flutter!,"My heart's a-flutter for this top. the fabric has an excellent weight and feel to it, and the little, fluttery cap sleeves are to die for. i've ordered this in almost every color because it is such a great staple. it is a gorgeous pairing with the marala knit skirt (especially in green,) and the double stripe jacquard skirt, but i'm certain it would be a perfect choice for any pencil skirt. it's so flattering and comfortable, with a neckline that is perfect for single strand pearls or similar le",5,1,8,General Petite,Tops,Blouses +1095,38,Flattering and work-appropriate spring dress,"Fits like a dream: not too tight, not too loose. arm holes aren't too big (a common problem for me in sleeveless retailer tops/dresses), the sweater material isn't itchy, and the pattern is unusual and eye-catching. i felt confident in this dress and received many compliments. great addition to the spring wardrobe.",5,1,0,General,Dresses,Dresses +884,29,Huge,"This is absolutely huge. it felt like it was at least 2 sizes too big - the empire waist wasn't even semi- fit. 36d chest and size small was like a tent. however, the embroidery was beautiful",3,1,0,General Petite,Tops,Knits +884,28,Adorable and comfortable,The top does run large around the upper waist area. arms fits perfectly for athletic shoulders and biceps! the sleeves come about 4 inches shy of the wrist. the embroidery is lovely and the material is very soft but is pretty thin. overall i am very happy that this tunic is actually a tunic! the length goes below the butt and is a very cute buy.,4,1,2,General Petite,Tops,Knits +1081,53,Great dress!,"In contrast to the other reviewer, i love this dress. worth the sale price at least.",5,1,4,General,Dresses,Dresses +1033,42,Cute ankle jean!,"These are great, but unfortunately ran small for me in comparison to my other pilcro jeans. i returned and the size i need is sold out now.",5,1,0,General Petite,Bottoms,Jeans +903,23,Nice cardigan,"This is a nice sweater. very soft and while cardigans are not normally flattering on me, i found this one to be slimming. for reference i am 170 lbs 5'8"" and a size medium or 10.",5,1,1,General,Tops,Fine gauge +1169,26,Cuter in the photos,"I really wanted to love this suit, but it honestly looked really matronly in person.",3,0,0,Initmates,Intimate,Swim +1081,57,This dress is awful!!!!!!!,An awful dress! retailer why didn't you post my last review. i would not even give it a quarter of a star.,1,0,12,General,Dresses,Dresses +1033,26,Great fit for size 12,I love pilco jeans - they fit in all the right ways for a size 12. this is a great pair of everyday casual jeans. a tiny bit oversized in the ankle (a bit of a flair) but overall i am very happy! very comfortable.,4,1,1,General Petite,Bottoms,Jeans +1028,31,"Love rockets, hated these","Recently started loving rockets. i own a pair in black and a pair that are distressed. i've found that the 27s fit me best. i am 5'7"", 34c, 28 waist. this particular pair seems to run true to size, meaning i could get the 28s on (which is typically what i wear in other brands), but the 27s were embarassingly too small. while the 28s fit, and are made of a great weighty denim, with very little stretch, the wash was really not appealing. due to the distressing of the wash, all the lines butterfly",3,0,2,General,Bottoms,Jeans +830,56,Adorable,Beautiful top but runs a whole size small. gave to my daughter who loved!,4,1,3,General,Tops,Blouses +830,43,Too big,I ordered a m as the previous review said it ran small. i found it to be very large. i have more curves than the model and also thought it made me look boxy.,3,1,0,General,Tops,Blouses +884,56,Top part is gorgeous; bottom part is not,"My favorite colors are purple and green, so when i was in the store and saw the beautiful purple flowers on the top of this blouse and all up and down the sleeves, i was was blown away. i was disappointed by the bottom of it, just huge, flowy, green fabric with no design on it whatsoever. i went with my first impression and bought it, but now that i'm trying it on in the house, i'm still bothered by the throw-away bottom of this blouse. i'm thinking this is just another retailer maternity t",2,0,4,General Petite,Tops,Knits +902,49,Compliment after compliment...,I can't tell you how many compliments i get on this gorgeous sweater/poncho! there are tiny glimmery threads woven into it that make it so fun for dressing up. i wore it to a fall holiday party and it was perfect! it's a little on the itchy side... but the shirt i wore underneath solved the problem. the colors are so gorgeous... deep and rich. love this piece!,5,1,1,General Petite,Tops,Fine gauge +884,45,Disappointed,"I was so smitten by this shirt when i saw it online. i love embroidery and purple is my favorite color. i am a size 10 and decided to order an l. the shoulders fit well, but the rest of it was huge...like another reviewer said...like a maternity top. i would also concur with the reviewer who said "" [what] takes away from the lovely purple flowers is the blotchy moss dye finish on the fabric."" this is so true. the embroidery does not stand out / is not highlighted like in the photograph; they hav",2,0,2,General Petite,Tops,Knits +610,26,Birds of paradise!,"I love this suit! the pattern is just lovely. unfortunately i have to return the suit because i can't wear it. there are no cups or pads or underwire for the chest. you have to look like the model wearing the suit to wear this. if you need any support than give up. who can wear an xl and not have some breasts at all? the neckline is also very low and ended up revealing the top half of my breasts. + +the birds of paradise are just lovely, not exactly the same on every suit, but still nice. i just",3,0,9,Initmates,Intimate,Swim +861,33,,"It's a lovely pattern on a soft tee. the fit is similar to how it looks on the model, not clingy at all. it should be noted that it's fairly see-through. if i wear a bra that's close to skin color it's not an issue, but it is obvious if you're wearing any kind of patterned or contrasting bra. i suppose you could wear a cami underneath, but it's too hot for that in florida and i think it defeats the purpose of a t-shirt. overall, i'm very happy with this, though i'm also very very happy i got thi",3,1,0,General,Tops,Knits +861,45,Very pretty and different,I loved this t-shirt. i got the grey one in small. i'm a size 2 and 5'3. it is a relaxed fit. i love it because it is a bit different and the flowers add a nice flair. i didn't want t plan t shirt but i also didn't want anything too crazy. fits well and is soft too.,5,1,0,General,Tops,Knits +999,43,,,4,1,0,General,Bottoms,Skirts +861,35,Nice t-shirt!!,"This is a very nice quality t-shirt. i loved the material & colors. i got it on sale and the only reason i had to return it because it was small on me. due to the nice sale, another size was not available.",5,1,0,General,Tops,Knits +861,32,Going to be a summer staple!,"When i saw this shirt, i knew i had to have it! i got the white with yellow flowers, and the pattern is perfectly charming. i'm 5'2"" and petite with a short torso. the petite xs fit me perfectly! the material is pretty thin, so i hope it stays in good shape. until then, i can't wait to dress this up for work and dress it down for casual summer days.",5,1,0,General,Tops,Knits +861,30,Love this tee,"I love flowers! i love flowers on my basic tees even better! simple,comfy,but different from your every day plain old tee!",5,1,0,General,Tops,Knits +895,25,A.d.o.r.a.b.l.e!!!,"Just got both today, skirt and top, and i love how soft the material is. and btw, i learned a valuable lesson from past moth sweater purchases, dry clean; even though the ""how to care for"" tag states hand-washing, d.r.y. clean. the last moth sweater i washed was not in the same shape it was when i first purchased, but i never made that mistake again ;) and it was one of my faves! + +i bought this particular top in the large as i wanted the ""boyfriend"" oversized look, and i love the way it drapes o",5,1,0,General Petite,Tops,Fine gauge +861,34,Love the color,Love the color and the design. it is slightly see-through which i don't like but it still works wotb a nude bra. very comfortable!,5,1,0,General,Tops,Knits +861,30,,,4,1,0,General,Tops,Knits +990,47,Great staple,"I didn't like the price tag, but got a good price with a sale, so i splurged! this skirt hugs curves in the nicest, most flattering way without feeling like you have to hold in your belly:) very cute ruched design and soft make it easily dressed up or down. i plan to wear with some bright flats for an upcoming trip, but have the perfect white tennies for casual everyday. love it!!",5,1,0,General Petite,Bottoms,Skirts +895,37,"Pretty colors, more cropped than anticipated","I am about 5'6"", 135 lbs and usually wear between a small or a medium. i ordered a small, as another reviewer did. right when i took it out of the packaging, i could see that it was going to be much shorter than you can tell from the online photo. i knew the sweater was going to be cropped, but it falls right at the top of my hip bones. when i raise my arms up, my whole midriff shows. did not flatter my athletic build at all. the fit around the shoulders and chest is fine, skimming but not tight",3,0,1,General Petite,Tops,Fine gauge +200,59,"Beautiful graphic design, very small!","Although $$$$$ i want to support usa products and am so glad retailer continues to add these options .i also decided to splurge with family coming home for the holidays, a way to stay in pajamas but still look dressed. i am only 5'2"" and these were just longer than capri length, more like the close-up view online. to get them ankle length you would have to push them way down on your hips, not sure how the tall model did that! i am 106 lbs and considered exchanging the xs for an s, these run",4,1,6,Initmates,Intimate,Sleep +861,34,,,5,1,0,General Petite,Tops,Knits +861,41,Adorable but see through,"The tee is adorable in the floral print. the fit is true to size, as it is a casual tee rather than overly fitted. the cuffed sleeves are a nice detail. i would have bought this at full price, but it is quite see through in the white/yellow floral. i could easily see my nude colored bra and even my belly button it was so sheer. having to wear a tank underneath this completely defeats the purpose of a cute, casual tee you can just throw on. i was so disappointed that it was so sheer. i think the",3,1,12,General Petite,Tops,Knits +861,44,Love this shirt in gray,I love the cut and fit of this t. it's soft and has just enough flow to be comfortable without being unflattering. the gray floral print is very pretty. it's perfect with jeans or shorts in the summer.,5,1,0,General Petite,Tops,Knits +861,53,Ego booster,"Cute shirt but it is very hard to wrap my head around being an xxs. sizing is ridiculous. and now that i have an xs that is too big, the xxs are sold out. typical.",3,1,8,General Petite,Tops,Knits +861,24,Comfortable t-shirt,"This is casual and comfortable. +along with soft touch of its textile, i also like the pastel color of flower prints. +especially, i love the purple flower print with grey background (which is sold out already). +it also fits well with my body and makes look cool. + +it is perfect for everyday use.",5,1,0,General Petite,Tops,Knits +861,56,Sunshine on a t-shirt!,"This color came out after i had purchased the same in the gray motif. when i saw this one, though, i simply had to have it! it is such a happy print and different color scheme from anything else in my closet. i had purchased the gray one in regular only because the petites were all sold out, but i was able to get this one in my usual small petite size. it is most definitely a better fit/length for me. i don't usually like to pay so much for a t-shirt, but i will splurge for something like this t",5,1,0,General Petite,Tops,Knits +861,52,,"I love this t-shirt, i wish it came in tons of other prints! very soft, almost feels lived in, and high quality all the same.",5,1,0,General Petite,Tops,Knits +576,73,,"These shorts just didn't work for me. i loved the embroidery and the color, but i just don't have the curves for them. try these if you have an hourglass or fuller figure.",2,1,1,General,Bottoms,Shorts +576,31,Shorts,Very nice fabric and quality but runs very large. i had to return my pair of a size 0. stinks to pay for shipping on a product that looks so different in the picture.,2,0,0,General,Bottoms,Shorts +1080,83,Stunning dress!,"I have a closet filled with black lace dresses but this one is my new favorite! +the style is classic with an unexpected yet still elegant twist. +i ordered my usual size and found it to run a little on the small side, especially in the waist. +this is one dress you need to have in your closet. +if you are in between sizes i would suggest going up one size.",5,1,0,General,Dresses,Dresses +861,39,Watercolor look,"Tshirt is beautiful. looks like watercolor. the fabric is a thin soft cotton that is really nice. i am 5'6"" and very thin. xs fit well and was not too short. s would have been fine too. i would choose a size by your shoulder width. i bought my mother the medium.",5,1,0,General Petite,Tops,Knits +576,28,Beautiful short!,"These shorts were just what i expected from retailer. they are more pretty in person, particularly for the color - like a rich clay color, not garish orange. very good quality fabric & the embroidery around the edges is unique. i'm usually a size small in bottoms from retailer & the s fits perfectly.",5,1,0,General,Bottoms,Shorts +861,34,Love this,Very soft! i sized up. was able to wear without a cami underneath,5,1,0,General Petite,Tops,Knits +861,49,A+ tee,I tried on about 25 items in the store today and didn't buy anything but if i had bought just one thing it would have been this great floral t-shirt (i may have to go back for it). the combination of the very soft material and faded look of the pattern gives it the look and feel of an old favorite tee shirt. the fit is exceptional as well- not too loose or too snug. i would definitely snap it up on sale and may even have to cave to the full price.,5,1,10,General Petite,Tops,Knits +861,31,Why is this cute but simple shirt so expensive,"It's a t-shirt. a very cute print, nice cut, very soft--but a t-shirt. therefore, why is it almost $50???? tried it on in the store and loved it, but i just can't justify $50 for a t-shirt. + +for those who will not be deterred by the price: i normally wear about an 8-10 dress size at retailer, and the medium fit well.",3,1,1,General Petite,Tops,Knits +861,31,Beautiful blouse,"Love this shirt! i love florals so the bright pretty yellow just had to be mine. it is true to size, perfect neckline- not too low or high and very flattering. see through enough to require a cami, but worth it. very soft fabric and really comfy.",5,1,0,General Petite,Tops,Knits +861,56,This tee makes me happy!,"I got the xs and it fits perfectly, almost an a line cute slightly fuller on the bottom, not too form fitting and not too loose. i am 5'1"" and the length is not short as it appears in the photo on the model. the yellow flower pattern is super cute. material is soft and comfy.",5,1,0,General Petite,Tops,Knits +861,49,,This tee is very pretty - i purchased it in the grey/purple combo. i usually wear a medium in this brand just because i don't like my tees to be fitted but i found this one to be a little too loose for me so i should have sized down to a small.,4,1,0,General Petite,Tops,Knits +861,29,Cute tee,"This tee is so soft and comfy. it looks nicer than a regular tee but still casual. fits true to size, and not too loose, but not too clingy. i know i'll wear this one a lot!",5,1,0,General Petite,Tops,Knits +861,24,Not as advertised!,"I like the look of this tee and the fit is fine but it's described as a ""cotton-rayon jersey"" and in fact it's 50% polyester. i would not have ordered if i had known and now have to take it back.",3,0,0,General Petite,Tops,Knits +861,52,Super soft t-shirt,"I loved this t-shirt in the gray motif so much, went back to get the yellow:-) both go great with pilcro hyphen chinos. while the fabric is a little thin, it's super soft and just the perfect length.",5,1,0,General Petite,Tops,Knits +861,49,Cute print,I ordered the yellow. i love this shirt it such a happy print. can match a lot of things.,5,1,0,General Petite,Tops,Knits +861,45,,,4,1,0,General Petite,Tops,Knits +576,36,So cute but not a great fit,"I wear an 8-10 and these are a little big on me, which is surprising. they also don't lay really flat in the back. the pockets are inside in the back, in side two layers, and don't lay very flat. the crotch is low and rides up when i walk. +i'll probably wear them again, but i'm not totally thrilled by them.",3,0,0,General,Bottoms,Shorts +861,67,Vintage beauty,"I don't know why i didn't pay much attention to this tee (the yellow), but i didn't. i saw it in the store, thought it was interesting and kept on going. then i really looked at it online and suddenly i had a bad case of the wants. so when i was in one of my local stores i asked about it, and no surprise, it was sold out. at the suggestion of my sales associate i tried on a solid one just for the size. although i'm small, i have several tla tees in medium, so i tried on a medium and a small. as",5,1,4,General Petite,Tops,Knits +576,51,Just what i expected!,I was looking for some comfortable but still stylish shorts for the weekend. these hit the mark!,4,1,0,General,Bottoms,Shorts +861,53,,,5,1,0,General Petite,Tops,Knits +861,42,,"This t- shirt is adorable. i saw this in the catalog and ordered it immediately- despite the $50 price tag. cute with jeans, khakis, shorts, under a denim jacket, the options are endless. print is very cute but the sizing and quality left something to be desired. the material is extremely thin- it will be a matter of time before holes develop... no matter how careful you are. i ordered a large to be roomy and it was way too big.",4,1,0,General Petite,Tops,Knits +999,29,Beautiful skirt,"I love everything about this skirt, except that it adds bulk to the waist and/or hip area because of lots of fabric and pleating. i still love it and when i place the waist band higher on my waist looks super cute with a dainty blouse tucked in. i'm 5'4 105 and have a tiny belly pooch that comes and goes through out the day so although this skirt is beautiful it tends to magnify the tiniest of belly pooches and hips. i think i love the skirt too much to retun.",4,1,2,General,Bottoms,Skirts +861,52,Love this t-shirt,Such a great purchase! it can be dressed up or down and seems to go with everything! great for summer!,5,1,0,General Petite,Tops,Knits +861,20,,"The shirt is darling, soft and relaxed fit. i usually wear an xs or small in most retailer tops. unfortunately, i ordered an xs and should have ordered the small. i found the length to be a little short in the xs so i'm sending it back to exchange for the small. i hope it's just a little bit longer.",4,1,1,General,Tops,Knits +200,36,Runs small but cute,"These pants are really cute but definitely run small - i ordered a large so they would be a little bigger for lounging and they are not very stretchy. the large fits more like a small in regular sweatpants. there is more blue visible in the top and bottom part of the pants as well, which i like.",4,1,5,Initmates,Intimate,Sleep +861,55,Fits nicely but fabric a bit thin,"I ordered this on-line. while it fits well before washing, the fabric is a bit thin. i'm afraid it might shrink in the wash, too. i haven't worn it yet because i'm trying to decide it i will keep it or return it. colors are a bit more muted than i would like also.",3,1,0,General,Tops,Knits +861,53,Pretty tee,Nice print and comfortable shirt.,5,1,1,General,Tops,Knits +1056,60,So cute!,"I just received this jumpsuit and was so excited. unfortunately it is too small and will have to go back. the top is so cute and the material is thick so no need for a bra which i really liked. it runs short in the stride and also in the top. i ordered a petite since i am only 5'0"" tall and was very surprised how short the stride was. the length was great and would love to have been able to kept it.",4,1,0,General,Bottoms,Pants +576,37,Very comfy- dress up or down,"Tried these on several times in store and never bought them, but was able to get them with a 20% email- seemed like a better price for the product. the color is rust and a little odd for my wardrobe - wish they also came in black. love the style and they are very comfortable, perfect for late summer- can wear on errands or dress them up a little with shoes/accessories for casual dinner out. happy i finally purchased them!",4,1,1,General,Bottoms,Shorts +861,46,Nice weight,"Seems like all i wear all summer are solid colored tees with shorts or skirts. decided this summer i would have patterns! and color! this is a great t-shirt. nice weight. pretty pattern. i found the length on the small to fit my frame perfectly. an xs probably would be good too, but i hate having my favorite t-shirts shrink to unwearable so i always start a little bigger.",5,1,0,General,Tops,Knits +861,36,"Cute, cute!!","Literally the only reason i am giving this 4 stars is because of my history with this brand (holes developing after minimal wear). i will do my usual wash but don't dry and hope it holds up! + +material: super soft and comfortable, almost slubby. i haven't seen the yellow in person, the purple/grey is lovely. + +fit: moderate scoop neck as pictured (almost oval) that's a nice touch as it's not too low or high at the neck. not overly fitted over the chest or stomach - without being oversized - j",4,1,69,General,Tops,Knits +861,37,Love it!,"I bought the grey version of this shirt in-store because of the cute pattern, soft material, and versatility of wear; you can dress it up for work or wear with jeans/shorts for a more casual look. the beautiful purples, greens, and blues of the roses look like a water color painting, and stand out against the grey background. i've already received multiple complements from co-workers and friends, and liked it so much myself i bought the other two colors! personally i think it runs a bit large, s",5,1,1,General,Tops,Knits +861,60,The perfect tee!,"Love the fit, feel and colors of this tee. looks great with white jeans, blue jeans and is so springy. longer in length than most tees which is a plus for me. may run a tad small since i am usually an xs in most tops but i bought a s and love the fit.",5,1,8,General,Tops,Knits +861,40,Cute pattern,"I love t-shirts by t la, but unfortunately this particular one was different. the sizing was off. it ran small, although i ordered my usual size medium for this brand. i think the shirt is cute though;)",4,1,0,General,Tops,Knits +815,68,"Very pretty, but . . .","This blouse is very pretty, but the overlap in the front is a little ""strange."" it seems to fall open and will require either a pretty pin to hold it closed or a cami underneath. despite that ""flaw"" i am glad that i purchased this blouse. the trim at the shoulders gives it a romantic and special appeal.",4,1,0,General,Tops,Blouses +895,60,Soft & beautiful!,"The sweater and skirt are so pretty! they're really soft and have such an easy, comfortable look together. really love this gorgeous outfit. + +i am borderline small/medium and kept the size small after trying both on.",5,1,5,General Petite,Tops,Fine gauge +367,46,Snow day loungers,"So soft and comfortable and flattering on! run small. i'm a 25/0 pant and a small in these is as small as i'd want to go! otherwise, excellent.",5,1,0,Initmates,Intimate,Lounge +861,62,,I really like this brand. i bought the t-shirt in the gray and the red color. the sizing is different for the colors. i kept the gray in a small and had to get a medium in the red color. they wash very nicely.,4,1,0,General,Tops,Knits +861,31,Cute shirt,7 months pregnant with twins and i prefer to buy regular clothes that can be worn post pregnancy as well as when pregnant. went to a dr. apt and the receptionist loved this shirt. i told her it was non-maternity and she can buy it at retailer... i think she stopped by on her way home from work.,5,1,0,General,Tops,Knits +861,28,Super soft,Great transition into fall. super soft and comfy. great yellow without being too yellow love it.,5,1,0,General,Tops,Knits +861,41,Beautiful top,"I bought yellow one, and i'm very happy with this purchase. the flower print is beautiful, and the material is light, but not too thin. i love wearing this top with a pair of blue denim or a pair of white bottom. +i'm pretty short in height and size 36c. i bought a m in regular size because i like my tops roomy, and it fits really nice, i just tie a small knot on the bottom of this top or tuck the shirt in a little bit, it works perfect.",5,1,1,General,Tops,Knits +861,20,So soft!,"This shirt is so comfortable and soft. it has a great fit. it is a little thin, but i can get away with wearing it by itself. i love it!",5,1,0,General,Tops,Knits +861,49,Nice summer weight t,"Pros: versatile summer weight t. perfect with jeans. flattering cut. nice color palette. made in the usa. reasons for not giving 5's for overall rating and quality... shirt is a bit short overall (i'm 5'4). fabric is thin and a mixed blend of poly, cotton, and rayon. will have to be careful with washing. better if you can purchase on sale. regular price was steep for a t-shirt.",4,1,0,General,Tops,Knits +861,39,Love!!!!,"I love this tee!!! i bought the red, and it is just so cute. the background is a light pink - and there are accents of deeper rose and mint green. i also bought the angel of the north cascade cardigan in rose, which looks great over this tee. buy it!",5,1,0,General,Tops,Knits +861,64,Spring time tee,"I purchased this towards the end of winter because it reminded me of spring time! it is such a lovely soft tee, with a delicate flower design. i wear it with jeans. it always makes me feel happy.",5,1,0,General,Tops,Knits +861,39,Great tee,"Great fabric, great fit, great shirt. just found my new favorite for this summer!!",5,1,0,General,Tops,Knits +861,46,Cute tee - don't love the material,"This is a cute tee but only if you get it on sale. i don't love the material. it seems flimsy and likely to get holes quickly. the pattern is pretty cute but nothing special. glad i got it on sale. as with all retailer tees, size down. xs works good for me.",3,1,0,General,Tops,Knits +861,64,Fabric is pretty thin,"I purchased this in the yellow for my daughter and she has not seen it yet. the style is very cute, but the fabric is quite thin. she will have to make that call, but if i had bought it for myself, it would be going back. i'm not willing to wear a camisole under a t-shirt. it also feels like the kind of knit fabric that shrinks and skews when it's washed, so that remains to be seen.",2,0,0,General,Tops,Knits +576,29,New favorite shorts,These shorts are wonderful! very stylish and easy to pair with my tops. they do run a bit large. i am normally a size 8 or 29. i ordered these in a medium and i definitely could have gone with small. they are machine washable though and i'm not sure if they will shrink at all so i'm keeping them. i would definitely recommend them.,5,1,0,General,Bottoms,Shorts +861,35,Theres just something about this shirt!,I debated forever about ordering this and so glad i did! the colors are so pretty. i got the yellow and it's slightly sheer but ok w/ a nude bra. regarding fit- completely tts imo. i'm a 8/10 and 38 c and the med is perfect. i am so happy i did not size up.,5,1,0,General,Tops,Knits +1093,56,Runs extremely small,"I ordered this dress when it was briefly on sale with an extra percent off. i was very excited to receive it in my usual size large, and wear with a jean jacket and cowboy boots. when i took it out of the package, i could tell it looked really small. i didn't even try it on. i had my daughter who wears a size small try it on, and she couldn't even get it over her hips. if you are tall and thin like the model, it will work for you. it is made of cupro, looks exactly like the photo, the color is g",3,1,0,General Petite,Dresses,Dresses +1060,65,Surprisingly cute!,"I got this piece because it was so unique.. that's one of the things i love so much about retailer: not afraid to go where no woman has gone before, so i ordered it in a 4p, my usual size, and a 4. i am petite, but the 4 worked perfectly, i think. i am pretty voluptuous below the waist and medium to small on the top and the 4p was too small all over - so i would agree that it runs small. + +the quality is excellent, the look is great. my husband liked it on me. it might work for the office with so",5,1,0,General,Bottoms,Pants +1060,23,So beautiful!,"I bought this at the store and when i picked it up i didn't think much of it until i tried it on! it is so adorable, i can't even tell you how much... i am 48 yo and normaly buy xs/s or 2/4 in retailer. mauve dresses are 2 most of the time. small chest, 5'5"" and about 130lbs and i got the size 4 and it is perfect! i hope it is age appropriate tho... ;) i have traveling plans this summer and i am thinking this could be an easy thing to take along with me, one piece clothing that will travel very we",5,1,2,General,Bottoms,Pants +855,41,Great sweater,I absolutely love this sweater. it is a beautiful deep blue color. i love the unique cuff on the sleeves.. i feel it does run a bit big but once you pull the strings it shortens up dramatically. looking forward to late summer and early fall so i can wear it!,5,1,1,General,Tops,Knits +855,57,Comfy go-to cardigan,"I bought this online days before my trip to seattle. i read the reviews so was aware it runs large...and it does. i practically lived in it the whole time i was there. it's very comfortable and once it cools down here in so cal i'll be back in it. some reviewers mentioned it bunched up when tied but didn't like the ties hanging loose. i just looped each one and it works great. +it really runs large. i bought their smallest size and had ample room.",5,1,0,General,Tops,Knits +1060,39,Super cute and fitted,"I tried this one without a bra, and t was fine... a little droopy but i could go without. +the things that bothered me: the pattern wasn't even on both sides, so where the seem is on the legs by the wait, didn't match... some people may not be annoyed by that, but hard for me not to look at. +also, the length on the model is just below the knee. i usually order petite, but tried on regular size in the store... i liked it like that, the hem went to below the big part of my calf, so it 3was flatte",5,1,2,General,Bottoms,Pants +854,49,,"I was immediately drawn to this tunic at the store. it has my favorite colors in it. blue and orange. as one reviewer said, the print is eye-catching. the feel of the material is soft. i am 5' tall so it fits on me like a dress, although if you are a taller person, the slits on the side may be higher on the frame. this is definitely one of my favorite tunics now.",5,1,0,General Petite,Tops,Knits +1060,47,,"I bought this awesome jumpsuit and i love it ! i really don't like wearing one piece clothing but this one its just so comfy and it looks great, i wear it with the straps or strapless and it looks different, as you can wear it classy or casual. and the best park, it has side pockets ! the color is as the description, navy blue and ivory/cream pattern. i wear a size 2. and that's what i got when i bought this, so pretty much to size for my liking.",5,1,6,General,Bottoms,Pants +830,40,So flattering,Make sure to get the whole outfit. the skirt sits high enough so that it avoids the muffin look.,5,1,2,General,Tops,Blouses +1093,34,Jeunet,"I found this dress to be beautiful. only down side? you'd need to size up two sizes if you have any breasts or butt. i'm usually size s/m in maeve. i bought this in l and looked like a stuffed sausage. i'm 5'1"", 140lbs, 36d, 39"" hips. i'd need an xl.",3,0,0,General Petite,Dresses,Dresses +855,44,Fun and adorable!,I love this sweater! i tried it on at the store and had to purchase! it's even cuter on! i am normally between a small and a medium but decided on the small as it has a loose look. perfect weight for summer!,5,1,2,General,Tops,Knits +1078,48,Too roomy in the bust for me,"I ordered this in my usual retailer size, xspetite and it was too baggy in the bust. granted, i'm only a 34aa, but i would still expect it to be a little smaller in the bust at that size. the elastic waist was a little loose too (i have a 26"" waist, 34"" hips) and the inner slip showed a tiny bit like another reviewer said but it's the same fabric as the dress. the slip is adjustable but it's attached to the dress at the waist. it wasn't flattering on me in the hips either. this was a miss for me b",4,1,6,General Petite,Dresses,Dresses +1022,31,,,5,1,0,General,Bottoms,Jeans +1060,46,Stylish and comfortable,The material is structured enough to flatter the body. only concern was over time the straps may wither as they are thin. very happy with the style and comfort of this jumpsuit. pockets on side are also useful yet discreet.,4,1,0,General,Bottoms,Pants +1078,29,Beautiful dress,"I absolutely love this dress. beautiful, flattering shape with flowing light weight fabric. i'm so in love with this color. a great dress for a special night.",5,1,0,General Petite,Dresses,Dresses +1078,46,Love this dress!,"The fit of the dress is fabulous! it is so flattering and true to size. my only complaint is that he lining can be seen at the neckline. it might just be that the one i received is slightly defective. even with this problem, it is a keeper.",4,1,2,General Petite,Dresses,Dresses +1060,39,Love,"I just received this. it is adorable! well made with attention to detail. the cotton is soft and it hugs the body well in the right places. the pattern is actually sewn into the cotton. very cool. it has a sophisticated, elegant and urban vibe to it. this one is a winner.",5,1,4,General,Bottoms,Pants +855,41,Supah cute!,"So glad i gave this a try. looks so much better on than seeing it online!!! i doubt i will ever wear it tied, but it's very cute and comfortable. it will probably be my go-to sweater to throw on over summer clothes when the ac is too cold. it would even be great to throw on over workout clothes! +fits tts.",5,1,1,General,Tops,Knits +1078,35,,"I love this soft, glistening, flowy beauty! it's my favorite color too! i'm 5'5"", 34d, size 6 and a small fit me with room to spare. don't wait!",5,1,0,General Petite,Dresses,Dresses +975,34,Finally the spring coat i've been looking for!,"Ahh it's delightful! it's a little short in the fit, but it's so cute. and didn't cost an absurd amount like some more heavy weight or full trench coats. love it.",5,1,2,General Petite,Jackets,Jackets +1022,42,,"Love ag jeans!! a little on the pricey side...but so worth it. the harper style is just enough higher wasted so i can actually bend over and not worry about anyone seeing anything other than my jeans :) but not too high waisted. these jeans keep their shape still with a little strestch to them. i am 5'5,, and 111 lbs and if not wearing under boots would have to a0 alter or b) wear as these are in the picture because they'd be too long for me. but i would purchase these all over again. love these",5,1,2,General,Bottoms,Jeans +855,43,Not for the petite,"I love the design and color of this cardigan, and the way it was styled in the store display made me snatch one up right away. but unfortunately, it's huge and shapeless (i tried size xs/s) and i'm a waif (5'2"", 105#) - i think it could drape nicely on a tall woman but if you are small to average in height it'll hang down somewhere mid-thigh or even lower. you can snug up the ties, as they are threaded through the cardigan like a drawstring, but that just made it look bunchy and even more shapel",3,1,6,General,Tops,Knits +1022,51,Love these jeans!,"They have some stretch, so if you are between sizes, order down. they are very long, which for me is a good thing!",5,1,1,General,Bottoms,Jeans +1022,48,Love ag jeans,Love love these jeans. they are just the right rise and the straight leg is perfect. the color of the demin is great to wear to work. the fit is great.,5,1,1,General,Bottoms,Jeans +1078,31,Beautiful color and fabric,"I really like the soft, flowy satin fabric and vibrant color of this dress! i am 5'5'' 125lbs, the s was too large, so i ordered the xs instead. things to note: pockets, elastic waistband with nice detailing on the sides, slip underneath, and large flutter sleeves. i think that women with smaller torsos should consider petite sizing.",4,1,5,General Petite,Dresses,Dresses +1022,44,Great pair of jeans!,I wear a 10/12. i bought a 30/31 and they fit perfect in every way! they were even almost too long so i can wear with heels if i want. i am so glad i bought these. don't let the folded cuff in the picture deceive you. a great pair of straight leg jeans!,5,1,2,General,Bottoms,Jeans +1060,41,Wow,"The model doesn't do this jumpsuit justice. absolutely gorgeous! beautifully constructed, cute details, flows well, easy to dress up or down... +5'5"" 135 34 c- the 6 was perfect.",5,1,7,General,Bottoms,Pants +1060,41,Unique and flattering,"The fabric and design of this piece are so unique. i am skeptical of wide leg designs in product photos because the fabric is often much more voluminous irl than it appears, which is the case for this jumpsuit. despite the extra volume, the fabric weight gives it a structured look which makes the wide legs look fantastic on. there is a silicon grip band around the top that allows you to wear it strapless, though it doesn't seem very functional to me without boning or more structure to the sid",5,1,0,General,Bottoms,Pants +1060,37,Lovely with one complaint,"This looks great on. i'm busty, so it's a little awkward to zip under the armhole, but not bad. a little bit tight in the bust, but the smocked back stretches to accommodate. +i just wish the description had mentioned that it has silicone gripper across the front neckline. i have a sensitivity to this type of coating/elastic and generally avoid it, since it causes my skin to turn red and break out in blisters. the jumpsuit looks so great on that i will keep it and either remove the gripper or s",4,1,3,General,Bottoms,Pants +1022,52,Just okay,"The fit on these is good for my hourglass shape, and the fabric quality and comfort is good too.i think the rinse is just not as nice in person- the orange stitching is pretty bright too. i bought. a pair from br a couple months ago that are almost identical in quality, fit and color that i got for less than half the price of these. i am going to return these and see if they have something better , but will only buy in store from now on.",3,0,1,General,Bottoms,Jeans +1022,45,Jeans are the best!!!,"Love these jeans! fit great and can be causal or dressy! what i appreciate is that you can wear them with flats, boots and heels so worth the cash!",5,1,0,General,Bottoms,Jeans +1060,59,Flattering!,The quality of the fabric and the design are perfect. i love the cut out and how flattering on my shorter figure. i am somewhere between a 6 and 8 and the 6 fit perfectly. it can also be strapless which is a sexier version.,5,1,0,General,Bottoms,Pants +975,36,The best spring purchase yet!,"This jacket is perfect and drapes very well. i had my eye on it online and the second i put it on, it was a ""yes"". if you are between sizes, as one reviewer mentioned, size down. it's tts but has a little extra room for me on the 2, so i sized down to 0. 5'4"" 115lbs.",5,1,1,General Petite,Jackets,Jackets +1060,44,Beautiful design but for those smaller in bust,"I wanted this jumpsuit to work so badly. my regular size 2 crushed my ""girls"" flattening them and pushing them up over the top of the jumpsuit. unfortunately i had to go up 2 dress sizes to get it to fit around my bust but was then so big that the material in the front was gapping and folding over. for reference i am not overly busty, a 34 c with petite but muscular build.",4,1,2,General,Bottoms,Pants +1022,41,Great jeans!,This is my first pair of ag and i love them so far. they are not cuffed as shown in the picture. they are long so i had to get them altered (i'm 5''5). the color is a rich blue and they have a nice stretch. i haven't worn them all day yet to see if they keep their shape. usually a 28 or 29 and went with the 28 on these. got them on 20 perc off sale so very happy!,5,1,0,General,Bottoms,Jeans +1022,30,Great fit!,I love these pants! so comfortable and can be dressed up and dressed down! love them!,5,1,1,General,Bottoms,Jeans +1060,27,"The ""gateway jumpsuit""","I'm calling this the ""gateway jumpsuit"" for all those ladies who are wondering about this whole jumpsuit trend and how they feel about it--you know who you are. this jumper is flattering, comfortable, elevated--and worth trying on! i'm petite but long-waisted with curves on the bottom, which can be a tough combo when trying to find a jumper. i actually ordered the petite 2 first, which was better fitting in the waist area but i ended up ultimately purchasing the regular 2 since i preferred where",5,1,4,General,Bottoms,Pants +1022,57,,"Love these jeans. comfortable fit, doesn't stretch out too much after wearing a few hours. goes with dress up, lazy day or casual tops. my go-to jeans. wish they came in different washes",5,1,0,General,Bottoms,Jeans +975,37,So close,"I really, really wanted to love this jacket. unfortunately, i have a long torso and it was a weird length on me. it hit touching my waist and i wanted something a little longer. i am 5'6"", but long waisted. this probably fits beautifully on someone more short-waisted or petite in stature. it was beautiful (although the buttons were cheap...)",3,0,1,General Petite,Jackets,Jackets +1060,52,Polished and comfort,I'm 5' 120 lbs. i'm posting a photo. one lady was concerned about it being ok for the over 40 crowd. i wore it was a cami under. see pic. it is comfy. it has pockets and fits beautifully. i ordered a 6petite. it's a little long on me. buy i still like it and am enjoying wearing it.,5,1,3,General,Bottoms,Pants +1081,72,Thin fabric for fall,"I like the color of this dress, but its a little thin for fall. on me, the neckline is more round and the sleeves a little cappier. i have dresses in this brand in both a size small and medium. i went with a small in this dress. returning it for a medium.",4,1,0,General,Dresses,Dresses +1094,59,,Beautiful detail. fits likes a glove. i have a short torso and design hits perfectly on my waist. may not be good for those with longer torsos. very flattering . arm holes well fitted. no open gaps. i plan to wear this to a november wedding.,5,1,0,General Petite,Dresses,Dresses +408,34,Perfect suit for mom on the go!,"After trying several one piece options i decided to buy this gorgeous tankini. i love the fit - bottoms stay put while running around the beach with my girls, but still stylish. the top is a perfect fit- little lining and halter adjustable tie is flattering on a smaller chest. the material is high quality and i will be living in this all summer long. there is about a two inch gap between the top and bottom.",5,1,1,Initmates,Intimate,Swim +1081,46,Pretty & comfy dress,"I just received this dress yesterday, so to be fair, i have not worn it out in public yet. i am deciding whether or not to keep it. i typically love west coast dolan dresses and this one is no different in looks. it's adorable and would be a great addition to your fall wardrobe. my only concern is the back. the back looks like a wrap dress that's backward - just the bottom half (that probably makes no sense). my worry is that the slightest bit of wind could catch it and the whole thing could ope",4,1,2,General,Dresses,Dresses +1094,29,Great little summer dress,"I've been looking for a black off-the-shoulder dress and found this baby in store today. for reference, i am 5'8"", 34b, 140-150 and took a small. this dress is a shift/swing style, so if you're looking for something fitted this isn't your dress. as another reviewer mentioned, ladies who are busty may not like this as the ruffle at the top could add unwanted volume. if you are extremely thin or petite, i might size down, but i like my clothing loose vs. fitted so i kept the small. the fabric is g",5,1,0,General Petite,Dresses,Dresses +529,22,Perfect summer comfy short!,"These shorts are super soft and comfortable. i am normally a size 27 or a 2 in shorts. i got a size 26 in these shorts and they are still large. i exchanged them for a 25 and they fit perfectly. so these run 1-2 sizes large. other than sizing, these shorts are perfectly comfortable and functional.",5,1,4,General,Bottoms,Shorts +529,36,I could live in these.,"The material is so soft, and lightweight without being sheer. i am 5'1 #145 and ordered a size 28 in blue. they have a relaxed fit, and a polished-casual look.",5,1,1,General,Bottoms,Shorts +665,43,So worth it!,"Got these on sale...absolutely love eberjey! fabric is super soft and easy to wash. more ""normal"" than other eberjey styles (not lingerie). i'm 5'6"", 125 lbs and small fit well. i am small busted and there is definitely extra room but doesn't make it fit weird at all. highly recommend!",5,1,0,,, +1094,66,Beautiful but doesn't work for large chest,"I really wanted to love this dress but unfortunately the length of the ruffle up top is not flattering on someone with a large chest. if you are d or smaller, it will probably be perfect. + +great material, color, and feel. so bummed i had to return it",4,1,4,General Petite,Dresses,Dresses +408,34,,"I bought the stained glass top/bottoms. the print is very pretty. however, the tankini top itself is not well-made. the front of it (chest area) turns out so that you can see part of the inside of the suit (which is white). it doesn't lay flat around the top, and so it shows more of your chest on one side. for the price, i don't think it is worth it. i don't like to wear it because it makes me feel uncomfortable.",3,0,0,Initmates,Intimate,Swim +1094,30,Looks better in person,Bought this dress for a wedding in petite. fits true to size. beading & embroidery is beautiful in person. only downside is that the beads & embroidery are very delicate and damage even when sitting on a chair.,4,1,0,General Petite,Dresses,Dresses +529,50,,"Super soft shorts. i ordered them in the orange and it's a lovely soft orange. they aren't too short, about mid thigh. i found the 27 to be a little loose on the waist but i was afraid to compromise the length for a size 26. i may order the navy in 26.",5,1,5,General,Bottoms,Shorts +895,39,,"Not sure why this is considered a top--it's an open front cardigan. also the the maker is monogram/hwr, not knitted & knotted. soft knit, inverted pleat at back yoke, slight flare after the armpits, slightly fitted at shoulders but not restrictive. pretty much looks like the picture! hand stitch elements seem to be the random embroidery sprinkled throughout the sweater. colors are dark blue-black, navy blue, gray, blush, ivory and turquoise. i am 5'3"" 135# 36d 38/28/35 and i purchased size mp.",5,1,6,General Petite,Tops,Fine gauge +408,46,Perfect tankini top,"This twist front top fits true to size, it is perfect! i really love the ruched sides, i like a longer tankini but most of them the stomach area is too wide and flowy. this one is perfect, it hugs your sides and looks great to wear with my kids but still flirty with my husband! i got the navy top and the side tie bottoms in navy/periwinkle and they are so cute together, can't wait to hit the beach!!",5,1,2,Initmates,Intimate,Swim +1094,28,Super cute but large,"As other reviewers have mentioned, this dress runs extremely large. i'm a solid medium in maeve dresses usually and got this dress in the store in a size x-small... and took it to my local seamstress to get it taken in! i get that this is supposed to be a ""swingy"" and ""airy"" dress but there was just too much space and material for me. i loved the top and the soft material so i am ok with spending money to get the waist taken in. i think this would be the perfect dress for someone with a slim fig",4,1,0,General Petite,Dresses,Dresses +1094,47,Pretty but not for me,"This is such a pretty dress but it didn't do much for my figure. i'm fairly long-waisted and the dress curved in around my lower rib-cage. also, the beads were falling off everywhere. i really wanted it to work but it is going back.",4,1,0,General Petite,Dresses,Dresses +408,47,Mosaic masterpiece,"I bought the mosaic pattern in a small. the pattern and colors look much better in person. the design and quality are solid. the top runs small. it is difficult to put on, but stays in place. i would recommend.",4,1,0,Initmates,Intimate,Swim +1051,53,At last a true red!,"Yes these are a true clear red. not neon red or orange red, but a classic shade of red. these pants are so comfortable with just the right amount of stretch. they are a nice weight for spring/summer without being too light or flimsy. they remind me of j crew martie but i like these better. i'd say they fit tts if not slightly on the large side. for reference my waist is 26 and hips are 35. the size 0 fits very well but the 2p were too big. ( i also take a 0 in the martie but those are slightly m",5,1,6,General,Bottoms,Pants +936,20,Lovely for a little while,"Bought this in the store and fell in love with it. very soft and flattering to wear. however, after wearing it one day it is already starting to pill. this truly is a beautiful sweater, but i fear it will not be beautiful for long. i am willing to take the chance as i got it on sale.",3,1,1,General Petite,Tops,Sweaters +936,39,,Sweater fits great and is nice and soft. i am 5'11 and got a m and the arms and length are perfect for me,5,1,1,General Petite,Tops,Sweaters +864,39,,Bought this is black and white... love them but washed the white by hand and it shrunk...,5,1,1,General,Tops,Knits +864,30,Beautiful top!,"I bought this online to wear in my engagement photos, and its absolutely perfect! i typically wear a size l or xl and could have easily worn the l in this top, runs a tad big. keep in mind it is on the shorter side. i will be purchasing a white tank to wear underneath it.",5,1,19,General,Tops,Knits +864,34,,,5,1,0,General,Tops,Knits +1077,31,Gorgeous dress,"This dress is lovely - the soft material is prettier in person and the fit is perfect for me. i found it tts, wearing my normal s. i'm 5'8.5"" and it hits me a little lower towards my ankles than pictured, but doesn't the floor. it will be perfect for an upcoming wedding rehearsal lunch and a go to summer dress after that!",5,1,0,General,Dresses,Dresses +864,67,Beautiful top,Love this top. i ordered the pink and it was more of a dusty rose. it also runs large - i normally wear a medium top. i am going to exchange it for white in small.,5,1,0,General,Tops,Knits +864,57,Casual and elegant,Fun top for day or evening.,5,1,0,General,Tops,Knits +864,34,Absolutely stunning,"Loved the one i had in white so much i ordered the green - such a beautiful piece! size seems true to size, and it elevates anything you wear it with; skirt, jeans, shorts....if you are on the fence, jump- you won't be disappointed.",5,1,1,General,Tops,Knits +864,39,Nice enough,"I tried the xs in store (white) though it is sold out online, guess i was lucky... the top is pretty sheer, i could wear it with nothing underneath, like on of the sales people did, however, you can see my innie... like a big shadow. i like the look, it is a little boxy, but feminine at the same time. mine fits wide, like the model, why i put as true to size... if there were still some xxs, i might have ordered it. it is a bit edgy, not romantic as some other pieces i have. overall, i like. the",4,1,2,General,Tops,Knits +864,56,Pretty lace top,"The material of the lace is nice and soft, it is not a stiff lace. i am 5'6"" 36dd 146lbs and ordered the small. it fits perfect not tight through bust or the arm holes. i wore today for the first time and everyone that sees the top loves it as much as i do. i ordered the white and in the pictures it looks like a bright white, it is not. it is more of an antique white and i am wearing a nude colored camisole and it works perfect. i think it will be really cute with a colored cami also. this will",5,1,0,General,Tops,Knits +1051,65,Fabulous fit!!,"If you've been searching for red crops, gotta give these a try!! i bought my normal size 6 and they fit perfectly! they're a little more snug on me in the butt and thigh than on the model, but they're super flattering and the color is wonderful!! fabric is a tad thin, really stretchy (in a good way), and the weight is great for summer. i haven't worn them yet, so i'm not sure if they'll keep they're shape. fingers crossed!",5,1,1,General,Bottoms,Pants +864,58,Pretty top with chokey neckline,"This top is very pretty and you can definitely wear it without a cami with a nude bra if you're an outgoing person, especially for a summer evening. my only confusion is the too high neckline. if it was just a little lower, it would look and feel less ""chokey."" i keep wanting to pull it down. i'm a size 0 and needed the xxs which fits like most people's xs's as sizing continues to get bigger. really lovely except for the neckline. looks great over white or colored shorts and is a nice mix of cas",4,1,1,General,Tops,Knits +1051,46,Runs huge!,"I am a true size 6 in virtually everything, pants or dress. i was swimming in these! i am reordering a size 2, they were so big.",5,1,1,General,Bottoms,Pants +936,33,Meant to be,I ordered this sweater online in a size xs and the order was cancelled because it was out of stock. i ended up finding a sm at my local retailer and was so happy! it worked just perfectly. i'm usually an xs but the sm worked great. it is a thick knit and may snag so i'm being careful with it. simply meant to be:),5,1,0,General,Tops,Sweaters +1077,39,,,5,1,0,General,Dresses,Dresses +864,35,Great top for the price!,I got the off-white lace top and love it! quality is great for the price. comfortable and the lace isn't super delicate so it seems like it should last.,5,1,0,General,Tops,Knits +864,29,Soft lace top,"What a cute top! it's a little on the short side for me (5'7"") but i'm keeping it because it is so pretty. the lace is lightweight and delicate but seems like it will hold up pretty well. trying to decide what to wear under it, but i think it could look cute with a cami for work, or even a cute bra that has some coverage for super casual days. the lace is completely sheer but doesn't feel as revealing as i would expect. would be super cute over a swim top with jean shorts and sandals...wish i li",5,1,7,General,Tops,Knits +864,37,,"This top is beautiful and i have received so many compliments on it. the fit is very complimenting, and i would continue to wear it often except that the fabric is unraveling. the bottom of the lace has raw edges so i would expect some fraying there but my top is shedding long streaks of material with each wear throughout the entire top, 1-5"" strands of the lace unraveling isn't exactly a great look.",4,0,13,General,Tops,Knits +1051,42,"True red, true beauty.","These pants are gorgeous--the fabric has a satiny stretch that simply feels decadent on. i tried on the size 0 and 2 and though they both fit, the size 2 was more flattering (i'm 5' 8"" 120lbs). compared to cartonnier's capris (which i love and wear a size 4 in), the fabric and construction on these is superior. and the color is knockout red.",5,1,0,General,Bottoms,Pants +1025,40,,Perfect high rise jeans - just a little bit of stretch for comfort. the high waist doesn't roll down and no knicker cleavage when bending over. perfect to go with crop tops,5,1,1,General,Bottoms,Jeans +864,63,Feminine beauty,"Love this top, the lace detailing on it is gorgeous and fits tts. however, the length does run a bit short, not crop top short, but it is shorter than i expected, and i'm s short person.the color is listed as white and as pictured, it also looks white, but it's not. it's definitely an ivory color. i bought a white camisole to wear under it and when the top arrived, the tank didn't match the top.",5,1,41,General,Tops,Knits +1083,38,Adorable dress,"The picture says it all. fits tts. love it, love it, love it!",5,1,5,General,Dresses,Dresses +1140,23,Deceptively true to size and flattering,"I got this dress for my younger sister who's in the process of losing weight. she's currently wearing a size 12 with comfort room but can occasionally squeeze into smaller sizes depending on the product. this dress is deceptively true to size. at first glance it looks like a roomy dress but the inner part of the dress zips up real tight. as a result, the boxy top part of the dress doesn't look too big and is in fact very flattering. the dress is very silky and looks as high quality as its price.",4,1,1,General,Trend,Trend +1051,46,Cute and flattering,Love these pants. the color is a true red and they are very flattering on. i ordered the 6 but they are a little big and i think the pant will give a little when wearing. just reordered the size 4.,5,1,3,General,Bottoms,Pants +864,44,Fabulous and delicate,The perfect summer top. paired with a small tank underneath and jeans and had many compliments!,5,1,0,General,Tops,Knits +864,67,Perfection,"I loved this top . it is exactly what i wanted,",5,1,2,General,Tops,Knits +864,30,Beautiful top!,"Love this top! the lace pattern is gorgeous, and the detail at the neck and sleeves make it a little more casual. it's completely sheer, so you do need a white tank or shell underneath. the top is on the shorter side, but definitely not a crop. i'm 34c and 140b and got a small. fits great and pairs well with black pants and heeled booties.",5,1,59,General,Tops,Knits +864,53,Casual and cute!,Fits perfect!! tank top or bath top. swings nicely and not too tight on top. i ordered large and am a 38 d. sits perfect not long not short!,5,1,11,General,Tops,Knits +1077,50,"Vivid print, easy fit",This will be a frequently worn item. print is beautiful and the fit is comfy and classy.,5,1,0,General,Dresses,Dresses +864,31,Okay,"This top is a little more casual than i anticipated especially for the price. it is completely sheer and you do need a tank under it. also, the arm and neck makes it look more like a ordinary teeshirt. still, the lace design is super cute and would work well with both skirts and jeans.",3,1,6,General,Tops,Knits +825,38,Lovely top; size down,"I'm an xl in retailer tops, and to be frank sometimes some of the xl are too fitted and i return them. i bought this blouse in size large and it fits loose everywhere. it drapes very nicely in the front and back, and the arms fit loose. i'm making a point to say this to let people know to size down. +- +i was concerned this blouse might be too short because it looks very short on the model, but for me it hits at a nice length; i have a short waist and am busty. the lace doesn't hit my neck",5,1,8,General,Tops,Blouses +1140,21,Royal albert style,This dress attracted my attention with its victorian inspired print. the details are to die for. the blue is not the same as the picture. slightly darker and more muted.,5,1,3,General,Trend,Trend +1083,50,,"I really love this dress but i am still struggling with keeping it or not. i have an hour glass figure with a somewhat fullish behind :). it is tight around that area which i think it is meant to be but i am not sure how comfortable i am with that. i wasn't sure about the belt but it really works. i am 5""3 and weigh 118. i did have to size up from 2p to 4 p for it not to feel too tight in all areas.",4,1,4,General,Dresses,Dresses +864,59,Love love love,"I tried this top on in the store and didn't buy it because i was in a hurry. obsessed about it and it was sold out when i went back. so happy i was able to get it online, it's beautiful. i got a medium and it fits perfectly, enough room that it hangs nicely but not baggy, i'm typically a medium in shirts at retailer. it looks beautiful with high waisted black pants. i wear a cami underneath. i own it in white and tried it on with a black bra only and it looked great, i just didn't feel comfortable",5,1,0,General,Tops,Knits +936,26,The best.,"I can't say enough good things about this sweater. i bought it when it was full-price and it was totally worth it. it is incredibly soft and looks very sophisticated. i wish i could live in this sweater--given the color and my propensity to make a mess, i want to buy two more just in case!",5,1,1,General Petite,Tops,Sweaters +864,52,Perfect for summer,It's a great addition for summer. defiantly need a tank on under it but very pretty.,4,1,1,General,Tops,Knits +936,50,Love love love how long this sweater is,"I was already purchasing another mock neck in a similar color when i came upon this sweater. it is everything a snuggly sweater should be. it is long in the torso with long sleeves that really do cover your hands, like in the picture online. if you like that sort of thing, this is a great sweater. the sweater even has pockets, which may be a little odd, but on this sweater it works. i bought this to wear with a pair of sanctuary flowered leggings. it is the perfect outfit!",5,1,12,General Petite,Tops,Sweaters +864,61,Beautiful!!,"Love this top and will be wearing it for our fall family pics this weekend! it is lovely, soft and flattering.",5,1,1,General,Tops,Knits +936,49,"Scrumptious, cozy, beautiful sweater","I purchased this on sale. it exceeded my expectations. it is extremely soft and had a very unique construction and details. i love it. it does shed a bit, but that does not bother me as the sweater is stunning! ordered my typical size small. no camisole is needed if worn with a nude bra.",5,1,0,General Petite,Tops,Sweaters +825,28,,I love the pattern of this shirt but there is definitely a design flaw in the arm/armpits.,3,0,0,General,Tops,Blouses +936,39,Soft and cozy,"Soft and cozy, not itchy at all, and it has pockets! i am 5'3, 120lbs, 34dd bra and take this in size small.",5,1,8,General Petite,Tops,Sweaters +936,39,Cute but pills,"Straight out of the mail, this cozy soft adorable charming sweater was *full* of little pills. i love the embroidery, the swingy slightly oversized fit that doesn't overwhelm and the high snuggle factor. wish this came in other colors and was knitted with a less fussy yarn.",4,1,2,General Petite,Tops,Sweaters +936,56,"Stylish, but sheds","This sweater is beautiful and stylish, but unfortunately it sheds a bit. considering the sale price, it's still worth it so i won't return it.",4,1,0,General Petite,Tops,Sweaters +1083,38,Beautiful!,"I love this dress.....but, and it saddened me that there was a but; the material would wrinkle near the sleeves (fit issue) and the high neckline was a little uncomfortable. i ended up returning it, because at this price point, i need perfection. i would definitely recommend this dress, it just wasn't for me.",5,1,1,General,Dresses,Dresses +864,65,Soft lace,"The lace on this looks like it would be stiff, but it isn't. it's soft and drapes nicely. i normally buy an xl (if it's not a knit) and so i did. the top will fit up to a size 18 in the xl because it is boxy and generous. it fit me perfectly and just tapered my body. it looks looser in the photo. + +it's as see through as the photo. and, i wouldn't wear a cami under it. that defeats the purpose for hot weather imho. i think a nude bra works just fine. you can see the model is wearing a white bra",5,1,6,General,Tops,Knits +936,48,"Soft, cozy and stylish!","Absolutely love this sweater because it is so pretty while being soft and comfortable. i am 5'4"" and purchased the small?it falls a little below my hips. while the color matches everything, the pockets and details add a nice touch and the longer sleeves are cozy. the only drawback is it pills and sheds.",5,1,0,General Petite,Tops,Sweaters +864,39,Great buy!,Really great tank. fit runs a little small if you are tall.,5,1,1,General,Tops,Knits +1083,41,,"I wore this dress for an after party the day of my wedding day in new orleans. going to a music lounge!! seriously, i kept getting compliments!!! it's fits beautiful and i just love the different type of patterns!",5,1,19,General,Dresses,Dresses +864,59,Do not wash!,"This simple lace top is beautiful and easy to wear, but do not wash it. the hem completely fell apart for me!",1,0,3,General,Tops,Knits +1077,32,Excellent dress,"I usually try to buy things on sale but after trying this dress on twice, i didn't want to run the risk of waiting and it selling out. it is extremely flattering and i think it will be very versatile - i'll definitely wear this dress to work, out with friends, and you could also wear it to bridal/baby shower events as well. i bought the dress in blue and it is extremely comfortable. i do think it runs large - i am 5'9, 145lbs with a very straight (no hips) / athletic build (have an athlete butt)",5,1,2,General,Dresses,Dresses +1109,52,Elegant,"This dress is absolutely stunning. i did agree with other reviewers that the skirt is very full. i had it taken in, and it fits exactly like the model.",5,1,0,General Petite,Dresses,Dresses +1086,43,Such a great dress!,"I love this dress - the fabric is super soft, and it falls beautifully! wish it was lined, but it's a keeper. it does run big - i'm always a solid medium, and i had to go down to a small for this one (but who's complaining!). the burgundy color is gorgeous! i'm 5'4 150 lbs, a size 8 (m) almost always.",5,1,4,General,Dresses,Dresses +1089,51,,Lovely dress. i did send it back only because the length was below my knee and i prefer slightly above the knee.,4,1,5,General Petite,Dresses,Dresses +1077,68,,This has quickly become my favorite dress. i bought the turquoise dress and the color is so lovely. the fit is perfect and the lines are flattering and classic. this is one of those dresses that will never go out of style.,5,1,1,General,Dresses,Dresses +1086,33,Not great for those with a little extra...,"I love everything by cloth & stone so was excited to see that they made a dress. hooray! i ordered it in the xl, which is my usual size in their shirts. when i tried it on i was so sad to see that it barely fit around my tummy and hips! i am a true size 12/14 and the xl just barely gave me enough room to move. my chest also caused the dreaded ""button gape."" it is clear that they cut the dress for people with a stick straight figure. so disappointing!!",2,0,8,General,Dresses,Dresses +1140,28,Decadent and delightful*,"Dress is beautiful in person, light material that is excellent for summer. + +this dress is not forgiving in the chest, so ladies if you bigger chested i suggest going up a size or two. i'm 5'4, 145 lbs and 34ddd, i usually wear 8 or 10, this dress in a 10 made my look like i was wearing an unflattering sports bra.",4,1,0,General,Trend,Trend +1089,44,,I love this dress! wasn't much on the hanger but fell in love as soon as i put it on. almost returned after reading the reviews about the fabric content and printed design instead of embroidered but tried it on one last time and decided to keep it. the silhouette is just stunning. absolutely stunning. this will be a classic piece in my wardrobe that i pass down to my children one day.,5,1,0,General Petite,Dresses,Dresses +1109,19,Beautiful details,I love everything about this dress. the sleeve and bodice detail make this dress exceptional. the fit is true to size. i ordered medium. the length is as it appears on the model- just below the knee. the material is of great quality and the slip lining is made of a nice stretchy knit.,5,1,0,General Petite,Dresses,Dresses +1077,57,,"I love this dress! very comfortable fit, and lots of compliments for the color (moss). took me from the classroom to a cocktail party. one of my best retailer purchases.",5,1,27,General,Dresses,Dresses +875,56,Beautiful beaded basic,"This is a beautiful, flattering top that looks great on its own or layered under kimonos or jackets. i bought it in wine and black.",5,1,0,General,Tops,Knits +1109,47,"Like it, don't love it","I love this dress in the photos, and like it enough to keep it--but i don't love it. it runs borderline true-to-size/slightly large. i'm 5'8"", 133 lbs, 34 b and usually wear a 6 in dresses. i ordered a sm and med. am keeping the sm. medium was way too big. my main issue is the amount of fabric in the skirt--it's a bit full. in the pics, this dress appears straight, but it's not. the higher waist and skirt's fullness gives it a more casual, youthful look, which is not what i want. but the quality",4,1,8,General Petite,Dresses,Dresses +1077,64,Its a keeper,"I am 5'2"", 120lbs. and bought the 4 petite, which is what i normally wear, and it fits perfectly. the quality of the fabric and stitching is good, not great, and more what i would expect to see in a less expensive garment, but for me, the style, the fit and the fact that it doesn't seem to show wrinkles, at least not before washing, turned it in to a keeper for me. the drawstring ties in the back and i find it a little weird when you wear a belt with it. i tried the ada belt with it, but found i",5,1,1,General,Dresses,Dresses +1077,39,Nice enough,"Too bad the blue one is sold out in my size (petite), i ordered the 00p, based on feedback at m store that it runs big, that was a good choice (i am 5'1.5"", 115 lbs#. + +the material teds to wrinkle though, so will have to think about keeping it. + +cut is flattering, i like it with the belt like the picture on the model, but was nice too with the drawstring and a nice chunky necklace #bought black dress, so gold necklace is nice). + +length was mid calf, but because it has a rounded hem, it wa",4,1,15,General,Dresses,Dresses +1109,39,Black vs ivory - help!,"I waited to review as i ordered both colors and multiple sizes for comparison. + +ivory is actually truly longer than the black, i wasn't sure from the photos on line, but having tried both on, ivory is longer (as shown online). + +true to size/bigger: i am never sure if i should write true to size or big, but went with the xs petite (used to do everything in xs)... at 115 lbs, 30 dd chest, 26.5 in waist,t ehre was room to move super comfortably. petite for sure for me for both length at the kne",5,1,2,General Petite,Dresses,Dresses +1086,30,Not worth the price,"This pajama-like dress is not worth $150 (full price plus tax in texas), so i can't really justify keeping it. i kept having to pull it over on one side so it would align correctly. it also runs big. i bought the m (which i am returning) and it bunches at the waist but the length was perfect. the s is too short on the bottom. i love the color, but it's going back. i'd buy it if it were on sale.",4,1,0,General,Dresses,Dresses +868,39,So adorable!,"This top is so unbelievably cute! the fit is perfect and it goes with just about anything on the bottom. i personally styled mine with high waisted distressed skinny jeans and it looks adorable. its a tiny bit see-thru, so you do need to wear a tank under it.",5,1,1,General,Tops,Knits +1086,39,Comfy work dress,Love the warm color and soft fabric - paired with chic tights and ankle boots and it fits right into a more casual workplace.,4,1,0,General,Dresses,Dresses +875,68,Love the beading details.,"This romantic top has lovely embroidery and beading details. i purchased this in purple, which is actually more of a cranberry color. i like that the detail work carries over to the back on the cap sleeves.",5,1,3,General,Tops,Knits +1109,40,Love this cozy dress!,"This dress not only makes a statement, it is very comfortable and versatile. casual or dressy options! price is reasonable and i am anxious to wear it for the first time. true to size and has some give. i ordered xs. love it!",5,1,1,General Petite,Dresses,Dresses +1077,47,Wonderful and easy dress,"I bought this dress in gray in a size 4. i am usually a size 6, even an 8 in maeve, so i said this dress runs a tad large. it is soft and easy to wear--throw it on and go. i think it looks best with a belt but that's my opinion. i am 5' 8.5"" tall, and this is a midi length on me. plenty long. not sure how it will wash. i think a fabric steamer will be needed. all in all, very pleased.",4,1,1,General,Dresses,Dresses +1086,42,Sloppy fit,"Tried this dress in a small. i am 5'6"", 135lbs, 34c. the small was huge - the sash helped some, but looked like a potato sack on me. also, i noticed the fabric was piling slighly in the store. i had high hopes for this dress but left this one in the store.",2,0,9,General,Dresses,Dresses +1077,44,,"Tried the blue motif, size 6, regular. +i'm 5'6"" and if i were shorter i'd go with petite sizing. +stats: 34a-28-36 with broad shoulders, sometimes i go up to a size 8 in blazers but this was a perfect fit. side pockets, dress is unlined and quite lightweight. the tie has to be tied in back and i liked the clean lines this gives in front. nice and simple for when it warms up!",4,1,12,General,Dresses,Dresses +1109,28,,Beautiful and versatile dress but shoddy quality. i hand washed (per the instructions) it after wearing it once and the sleeves are already falling apart.,3,1,0,General Petite,Dresses,Dresses +1077,60,Love everything about it!,"I bought this dress in the print and the moss color and may very well return for the dark gray. for reference, i am 5'2"", 140 lbs. i have been more recently wearing size 6, but a 4 was perfect, so i do think it runs a bit large. this dress has a drawstring that ties in the back and cinches the waist up nicely, and is very flattering. the waist actually hits at the natural waistline and not up on the ribs. the fabric is lightweight and washes well. i washed and immediately hung dry. it was slight",5,1,2,General,Dresses,Dresses +1077,38,Flattering basic,"I'm trying to buy more basic, versatile clothes and this dress in gray is great for that. definitely runs large-- i usually wear an 8 and it fits in a 6p. i'm, 5'5"" and the petite falls where it does on the model. the regular was unflatteringly long and sack-like. quality seems ok for the sale price.",5,1,0,General,Dresses,Dresses +1086,28,"So close, but the cut is not good!","I have these shirts in the blue and green and they were great. i'm 5'4"" c chest and athletic build - the small shirts fit pretty good and i love the fabric so i kept them. i really wanted these dresses to work but the cut was different even between the gray and burgundy. there was tons of room in the chest, but it was tight in the shoulders. i really wanted to love this, but there's just too many cut issues. it is a good length for work though.",2,0,0,General,Dresses,Dresses +1109,33,Perfect fit!,"This dress is super soft, beautiful on, perfect fit!",5,1,1,General Petite,Dresses,Dresses +868,53,Super long sleeves,"This is a cute top but the sleeves are super long. they swallowed up my entire hand when i put my arms down to the side. i also found it to run slightly large. i ordered my usual medium and i had too much room under the armpits. the sleeves weren't as fitted as the model shot either, which i would of preferred. i probably could of shortened the sleeves, but didn't think this style top fit me so i sent it back. this does not require a cami underneath.",4,1,0,General,Tops,Knits +1077,33,Drawstring midi dress,"I was in the store today and saw this dress in blue and had to try it on. i usually wear a size 10 in tops to accommodate my large chest, but the size 8 fit great with even a little room to spare. they didn't have the petite 8, so i ended up with the regular size, which falls an inch or so above my ankles. i am 5'2, so the petite may fit better as a midi dress, however, i really love the length. the fabric is soft and airy. can't wait to wear this once the weather is warmer.",4,1,3,General,Dresses,Dresses +868,42,Love it!,"This shirt is just as great in person as it is online. it's a substantial fabric which is not see-through which seems hard to find these days with whitish tops. the color is more off-white without looking yellow. i ordered a small and medium because i was concerned about the length and tightness in sleeves. they fit almost the same with the only difference being that the upper sleeves on the small were just a tad bit more fitted, but not in a bad way. i'm 5'5"" and found the length to be jus",5,1,3,General,Tops,Knits +863,50,,Great staple item. i have it in multiple colors and like them all. easy to add statement necklace to change up the look. wear it under cardi or jacket to make it not look 'tent' like.,5,1,0,General,Tops,Knits +1077,71,Just what i was looking for.,"I ordered both the petite and regular in the olive green motif. the regular fit more as i was hoping so i returned the petite. +i am only 5' 4"" but my legs are long for my height. i wasn't ready to have the side slits ""up to here"" and whereas they are not they are still quite high it is modest enough to be worn any place i might wear the dress. i think i will likely wear a belt with it as shown at least part of the time. i just bought some print fabric sling back shoes which go beautifully with",5,1,3,General,Dresses,Dresses +1089,26,Save your money,"This dress would have been gorgeous and consistent with retailer's aesthetic if the designs had been embroidered onto a thick silk/jacquard fabric to give it texture, which is how it looks from the photo. obviously it would have been more expensive, but in any case, this was just a really expensive polyester dress, which it says in the product description, but i gave retailer the benefit of the doubt, thinking if anyone can make even polyester look like a quality product, it'll be retailer. but now i",2,0,14,General Petite,Dresses,Dresses +1086,33,Too large,"I ordered this dress in small, my usual size (for reference: 5'7"", 125 lb). it is too wide. it looks more fitted in the pictures and hangs loose on me. the belt does not help much; it still looks like a sack and i feel like a girl wearing her mom's dress. + +also, i found that the material crumples easily.",3,0,0,General,Dresses,Dresses +1077,42,,"Love this dress! it fits perfectly, is flattering, and the fabric is high quality. i ordered the blue print, and it is a vibrant turquoise. i may order in the charcoal as well, as this is a comfortable, cute dress for everyday casual. i am 5'7, 135 lbs and the size 4 was perfect, even a tad bit loose, but i prefer a bit loose to tight, especially with the design with the buttons up the front.",5,1,8,General,Dresses,Dresses +1086,51,Simple classic,"I bought the burgundy color in this shirt dress. usually wear a size 4 and xs in most brands. purchased the xs in this dress. i'm 5'4, 118#, 34d. the fabric is rayon however it feels more like a light flannel or soft brushed cotton. like you've worn it forever. the length says 40"" long but i found when worn with the belt it rides up substantially. about 2-3 inches above the knee. felt like i was squirming to pull it down. i normally wouldn't be drawn to something so simple but when i walked out",4,1,10,General,Dresses,Dresses +1086,41,"Beautiful color, beautiful fabric","Bought this back during an retailer event, because i was in the market something long & oversized to wear over leggings. so when i saw this, i thought it could fit the bill. i read the reviews & knew it was more of a soft, t-shirt-like fabric and is short when belted, so, because i'm 5'10, i was sold! +i bought the xl, because i have wide shoulders & a dd chest size. + +when i got it home -- i was in love: rich garnet & so soft & comfy. then i tried buttoning it. it was just a bit too small & pul",5,1,0,General,Dresses,Dresses +1086,44,"Soft like pj's, professional enough for work!","I purchased the grey color, and i love love love everything about this dress. the fabric is so soft and feels like pj's. i'm just shy of 5'9"" and the length is perfect for work. i purchased the medium, the fit was perfect for me (size 8, 138 lb). + +highly recommended!!",5,1,8,General,Dresses,Dresses +1109,32,,This dress is very lovely - ivory fits as pictured (slightly below knee) in ivory not as the black is depicted (much shorter). fits a little larger than expected and material is very stretchy.,5,1,0,General Petite,Dresses,Dresses +875,48,Charming,"Lots of embellishment, striking magenta color, feels great on, with a flattering neckline that isn't too low. i recommend it!",5,1,0,General,Tops,Knits +1077,47,Beautiful shirt dress,"This dress is much better irl than pictured. when i saw it online i thought it looked very frumpy, but i tried it on in store and loved it. it's a perfectly draped shirt dress, and it ties to define the waist. a classic!",5,1,20,General,Dresses,Dresses +1109,72,Cute dress!,"This is a very cute dress! the sweater material is not itchy at all. i love the bell sleeve and how the seam at the top of the bell matches up to the waistline of the dress. good quality and well made. i am 5' 9"" tall and this dress falls just above my knees. so for me, it's the perfect length. i bought the black dress and i look forward to wearing it throughout the fall and winter.",5,1,0,General Petite,Dresses,Dresses +1077,34,,"I wasn't sure about this dress, and decided to give it a shot based on reviews, could not be happier. before trying it on i was worried about the length, and always worry about dreaded button gap at the chest, but none of that is an issue.",5,1,0,General,Dresses,Dresses +1077,33,Great pirchase,"I was nervous about this purchase, but it turned out to be a new favorite. the blue color is stunning on and i can easily see this taking me from work to dinner. i am normally a size 2 or 4 in dresses. after reading reviews about how this dress runs large, i ordered a 2 and hoped i didn't have to return it. the 2 is perfect and roomy. the drawstring can be let out or in for more figure definition. this really is a beautiful and modest dress.",5,1,0,General,Dresses,Dresses +1109,59,Elegant,"Material is nice, great for a party or date night. fits true to size, (l for me, i'm a 12). would recommend. the bell sleeve is right on trend and very tasteful.",4,1,1,General Petite,Dresses,Dresses +1077,66,"Wanted to like it,but it just didn't work.boring!","I ordered this on-line, in a size 8. the fit is ample and fine fine, and the fabric is acceptable, but as much as i wanted to like it, and keep it, i ultimately returned it. it is just too, too conservative for me. i loved the deep olive/khaki colour, and even experimented wearing it open as a duster over a top and slip pants, leggings, or skinny jeans, but the collar and the front pocket styling are just too man-tailored and cargo-like in their styling for me. i tried it with different belts, w",4,0,0,General,Dresses,Dresses +1109,32,Soft and easy,"Fits well, soft and comfortable",5,1,0,General Petite,Dresses,Dresses +1009,25,Not worth it.,"While i love the fabric and the pattern, this skirt leaves too much to be desired. the full price is absurd considering what you get. +there is no mention online that there is no built in slip, and as the material is extremely thin a slip is an absolute must. (see attached photo.) even in dim lighting you can see straight through. +also for this price point it is strange that the skirt is 'pull-on styling.' i would say that it is true to size, and i am usually a medium @ retailer, but i have a sm",1,0,5,General,Bottoms,Skirts +1109,37,Frumpy,"I was hoping to wear this dress on my wedding day before the ceremony. i'm 5'5"", 130 pounds, usually wear a 6. i ordered this dress in medium and it hangs off of me. it is not straight as it looks on the model, but bells out from the waist. the sleeves are so long that they covered my fingers.",3,0,1,General Petite,Dresses,Dresses +875,41,Cute top - metallic threads are itchy,"I ordered the purple and black first. loved both colors, but they ran large and after i tried on the purple i realized the metallic threads in the shoulder area were irritatingly itchy. for reference, i'm currently 165 and 5' 11"" with broader shoulders. returned the larges and just bought the medium purple on sale. waiting for its arrival to see if the threads will bother me after a bit. beautiful, saturated purple color, btw! very true to the image - not cranberry as one reviewer thought.",4,1,0,General,Tops,Knits +1086,34,,"I loved how soft this dress was, as well as versatile. however, i only got to wear it one time because after the first wash, a giant fabric tear happened on one of the seams. unfortunately, the fabric is so soft, but rather thin, and it didn't hold. the care instructions say machine washable but i wouldn't put it in the washing machine again. especially since i often have to wash clothes twice in the washer i use because it's so old and barely agitates. would love this if it was made a little be",1,0,1,General,Dresses,Dresses +868,42,Love!,"I love this top! looks great with just about any kind of jean (skinny, flare, especially high waisted). even looks good with vests and cardigans. a perfect versatile piece for the fall - you won't regret!",5,1,5,General Petite,Tops,Knits +875,35,Awesome purple color,This is a cute swing top. tts but generous. best thing about it- the color. i got purple and it is so pretty and saturated. i think it'll look great with big gold hoop earrings. alone or under a cardigan or denim jacket. i'd consider other colors at sale price.,5,1,0,General,Tops,Knits +1077,35,Classic!,"I was pleasantly surprised with this one. fits a bit large. i'm 8-10, the 8 fits just right. the moss is a great staple color.",5,1,0,General,Dresses,Dresses +1077,34,"Lovely style, fabric and drape",I loved the style when i saw it online and even more in person. the fabric is light but not too light. it has a nice drape i didn't expect. easy to wear and style. the draw string gives it a great shape but a belt is a great addition for more interest. the length is fantastic as well. wonderful midi length but with the side slits.,5,1,1,General,Dresses,Dresses +1008,53,Don't pass by,Comfortable. flattering. i agree with other reviewers that this is great piece. i purchased the red one and it is beautiful. fits tts.,4,1,3,General Petite,Bottoms,Skirts +1008,28,Great skirt with extra stretch!,"One of the reasons i avoid skirts at all costs is because i have a bigger tummy and don't like the extra tight feeling i have of a skirt around my waist. i like this skirt because of its stretchiness. even wore it to a bbq where i could eat my heart out and not feel constricted at all. + +received many compliments including: ""you look like you're vacating in the caribbean!""",5,1,0,General Petite,Bottoms,Skirts +1039,62,Great summer jeans!,"These jeans fit true to size, and they look amazing. i wear a 26 and have an athletic build, and they look great everywhere! i love how they look with sandals.",5,1,1,General,Bottoms,Jeans +1008,50,Loved it but the fabric didn't keep its shape,"Oh how i wanted this skirt to work.... the fabric - both pattern and color - is beautiful. the style is very nice. the knit is comfortable. but... the knit was so soft and pliable that it lost its shape right away. after wearing it for an hour, the front slit was curling in weird directions. the fabric around the hips got sort of crooked and hang-y. i would have loved the fabric to be one notch more substantial for a more defined waist and better integrity around the hips.",3,1,0,General Petite,Bottoms,Skirts +1059,39,Flared helps the crop,"I find that petite gals with short (,muscular) legs can have a hard time finding cropped pants that fit right. the flare on these makes the pants oh so flattering. the material is nice and thick and holds you in. the colors and patterns are beautiful fall colors, quite lovely and subtle, there is a nice stretch to the pant, the waist has nice closures, can't wait to weer these! i ordered the 0p and htey fit perfectly. (115 lbs, 26.5 in wiast)",5,1,6,General,Bottoms,Pants +1008,24,Fantastic maxi skirt!,"This is my first maxi skirt and i am pleasantly surprised! i might not have purchased this had i not tried it on in store, but did for the fun of it and loved the shape and swing of the skirt. the material is a comfortable and substantial stretchy jersey fabric with an inner lining that keeps it from being sheer. though it is kind of a dark navy, i would agree with one of the previous reviewers that it could pass for a black and white pattern. for my sister's graduation, i paired it with a white",5,1,1,General Petite,Bottoms,Skirts +844,23,Better on the hanger,"I wanted to love this product so badly. i ordered it in the mail, and it looked beautiful coming out of the box. i normally look really nice in grey, but this color really washed me out and was not nice on. the fabric is very sheer, so you would have to wear it over a camisole/tank top. this is one of those pieces that looks better on the hanger than in person. large in arms, small on body. odd fit.",1,0,7,General,Tops,Blouses +1008,39,Perfect fit!,"This skirt has a great pattern and the stretchy fabric allows it to shape my body perfectly. adorable with a white-t, or a black one...great for a night out on the town and some sexy, strappy sandals! love this skirt!",5,1,0,General Petite,Bottoms,Skirts +1008,46,"Great skirt, great fit!","I love this skirt. i normally wear a medium or large, depending on cut, and i bought this in a medium. very stretchy and forgiving! it's lined so it feels substantial but not too heavy. it's flattering!",5,1,3,General Petite,Bottoms,Skirts +1008,46,Cute and comfy,"I think i own nearly every maeve skirt retailer has sold over the last five years, and this might be my new favorite. one major improvement over years past is the fit...it really is true to size, rather than running large as has been the case in the past. the material is a substantial, stretchy jersey with a nice texture. the weight of the fabric combined with the jersey slip means it's not sheer at all, and it also a nice smooth fit, skimming over less-than-perfect areas. i also really appreciate",5,1,7,General Petite,Bottoms,Skirts +1110,33,Love!,"Love love love this dress! but, if you are not wearing a slip...you should be! please wear a slip, you can see right through this dress.",5,1,0,General,Dresses,Dresses +75,28,So fun!,"I tried on this romper when it was still full price and loved it, but wasn't sure i wanted to splurge at the time. at the new sale price this romper is definitely worth it for the quality and style. i am 5'2''/103lbs and the xs fits pretty well, but truthfully an xxs would have been better if it existed. the top part of the romper (above the waist) is a bit long--- the waistband hits maybe an inch or 2 below my natural waist, but perhaps this can be tailored. overall very happy with this purchas",5,1,1,General,Bottoms,Shorts +1008,33,"High quality skirt, great price!","I couldn't be happier with this skirt! i was expecting a jersey-type material, but was pleasantly surprised by the thicker, textured, higher quality material. the ruffle on the front is such a cute feature. this skirt moves and flows very nicely when walking. it is lined and has an elastic waistband, it's super comfortable. so far i've paired it with a bright red knotted tee and a sheer white sleeveless button-down. i receive compliments every time i wear it! i'm 5'2"", 110 lbs, i ordered an xs a",5,1,2,General Petite,Bottoms,Skirts +1008,48,Coolest skirt i've seen in a while,"I haven?t loved the look of something so much in a while as this skirt in the green motif, which i spotted in my durham store. so i ordered it in the xspetite; my usual retailer size (+/- 105 lbs., 34"" hips, 26"" waist, average torso length, short legs). if you have smaller than a 26-inch waist, the waist of the xsp will probably be too big. i?d say this skirt is exactly as pictured. the fabric is a thickish, textured knit on the outside, with a thin, green, very soft jersey lining. you have to be",5,1,18,General Petite,Bottoms,Skirts +1059,44,,"Me: 5'6"", 130, waist 28/29, hips 36. bought the size 4. i'm expecting a bit of stretch to allow a bit more room for the booty...3% spandex and they seem like standard cartonnier 'charlie' fit. +i love the kicky cropped flare. +they're described as grey motif but everyone in store (and i agree) called them green. the main diamonds are forest green with a grey/green inset and a blue/grey inset inside that. (whew!) +they come with an extra button, keep it as those tiny buttons are going to be first",5,1,10,General,Bottoms,Pants +1059,48,Great pants,"Love the color pattern, tiny gold buttons, flattering fit, quality of fabric and make. i got size 4 petite, which fits perfectly. my husband said they looked really good on me and were keepers! i'm 5'2"", 115#. highly recommend .",5,1,0,General,Bottoms,Pants +1008,30,Love this skirt,This skirt fits amazing. i run between a s and m in bottoms and went with the s. there is a little give in the fabric which is always a plus. this will surely become a staple in my wardrobe.,5,1,10,General Petite,Bottoms,Skirts +1008,25,,I am in love with this skirt! it is the most flattering thing i have purchased in a while. the fabric is a beautiful medium weight knit with a good amount of give. it hugs your curves but doesn't cut in anywhere! i was able to easily go down a size from my usual. i love it so much that i am going to order the other color as well!,5,1,0,General Petite,Bottoms,Skirts +1059,24,Wonderful pants,"I walked into a local retailer store and saw these pants. talk about love at first sight. they have an amazing look and fit! usually, i have to buy petite-sized pants, but the length fit at my ankle, and i like the look better than what is shown. since it is still summer, i paired the pants with a cute white tank and black flip flops, but can't wait to mix it up with a cute bootie and sweater.",5,1,1,General,Bottoms,Pants +1008,30,Beautiful skirt!,"I absolutely love the way this skirt looks and fits. i have a smaller waist and larger hips so it is hard to find a pencil skirt that fits, but this skirt fits great! the material has some stretch to it but is still thick and looks really nice. the colors are beautiful, i bought it in the ""red"" which is really just multi-colored. i want it in the green now, too!",5,1,0,General Petite,Bottoms,Skirts +844,33,This is a lovely top when sized correctly.,"I am a small, athletic build and typically wear an xsmall in tops. naturally, in something with a more straight fit and blousy shape, an xsmall would be appropriate. i ordered it and was super bummed. the lace detail made the collar lay funny and the shoulders were too tight. i liked the sheer fabric though and the lace details and decided to order a size up. i am so glad i did because everything laid like it was supposed to. this top is beautiful with a sexy, but refined look. i plan to dress i",4,1,3,General,Tops,Blouses +1008,41,Tons of compliments,I wore this skirt immediately when my delivery arrived. nothing but compliments. i went right back to order the green and it has sold out. bummer - i would buy every. single. color. this skirt is that great!,5,1,0,General Petite,Bottoms,Skirts +1008,38,,"This skirt fits like a glove. i'm 5'6, curvy and it is very flattering on my shape. its a good length and the material has some stretch in it so it's very comfortable.",5,1,2,General Petite,Bottoms,Skirts +1008,33,Love maeve skirts!,"Again, maeve knocks it out of the park with this skirt! great quality, style and comfort! i love that it's machine washable. so great and versatile for work or a night out! this is not a ""con"" but might be a bit long for short ladies. i'm 5'6"" and it's below the knee.",5,1,0,General Petite,Bottoms,Skirts +1059,67,Chameleon color,"Saying that these pants are comfortable would be redundant. they are over & above in comfort. i wear a size 8; and they are right on in sizing. i want to comment on the color/print. to see the green, i had to take the pants by a window with natural light and look closely. that being said, i think the pants take on the color of top one chooses. i walked through my closet with the pants in hand. they match with light grey, periwinkle blue, light sky blue, navy, white, your choice. i do prefer a so",5,0,0,General,Bottoms,Pants +1008,38,Love the design and fit,"My only problem with the skirt was the length - it appears shorter in the pictures, and i can't take it up since it would mess up the front slit. i would have returned for the petite, but it was not available in the green color which i loved. even though the length is longer than i usually wear, i get non-stop compliments on the skirt. and, it's very versatile.",5,1,0,General Petite,Bottoms,Skirts +1008,41,Va va voom!,"Great skirt! i bought the red and paired it with a casual white button down. i feel like the top definitely needs to be short or tucked in for the look to work. i am typically a 2 in bottoms, and went with the small in this. the xs probably fits more like it's intended to, but it is very curve-hugging, and i was more comfortable with the looser fit of the small (especially since i am tucking in a blouse). there is stretch in the skirt, and the fabric has a nice feel.",5,1,0,General Petite,Bottoms,Skirts +1059,43,Standout pants,"Amazing pants! i saw them at my local retailer and knew they would be great addition to my wardrobe (in-person is even better than photo!). they are flattering and i love that the pattern lends itself to many options...could be an ivory sweater or blouse or perhaps a mustard jacket...so much fun! i am 135 lbs, 5'7"" and went with the 6.",5,1,0,General,Bottoms,Pants +927,39,,Love this beautiful sweater! it's become one of my wardrobe staples. it's got a great cut and i love the design.,5,1,0,General,Tops,Sweaters +1008,35,Flattering,"I bought the skirt in the green color and it is beautiful. this skirt is curve hugging, but in a sexy way. very comfortable as well.",5,1,1,General Petite,Bottoms,Skirts +1008,53,,,3,1,0,General Petite,Bottoms,Skirts +1025,57,Amazing pair of jeans!!,"These are the softest jeans ever! i love the way that they hold their shape, and make my bum look amazing!! i am 5'3"" and they do come much longer than shown on the model...right below my ankle bone. i actually prefer this because they will be wearable right through fall if i pair them with booties! the fit is true to size...108 pounds and i got a 25. highly recommend!!",5,1,0,General,Bottoms,Jeans +1008,25,Love but runs big!,"I ordered this online in a m and l because i am usually one of those on the bottom - i will be returning both for a s. the fabric is great and a cool pattern, but it runs large by far. in addition to the large sizing the fabric has a decent stretch so that makes it even larger. i think the small will fit well and the cut is flattering - i am about 5'11'' and it hits below my knees, similar to the model in the picture, so i would definitely get this in petite if youre on the shorter side. it's al",5,1,0,General Petite,Bottoms,Skirts +1008,50,Lovely skirt!,Love this skirt! i have worn it to work with a simple black shirt for a great outfit! i have had many compliments on it. it is very flattering and comfortable!,5,1,0,General Petite,Bottoms,Skirts +1008,36,Figure flattering,"This skirt is figure flattering and stylish, while still being work appropriate. i like the length as well.",4,1,0,General Petite,Bottoms,Skirts +1008,43,Lovely,"Really beautiful skirt. unique print (red) and stylish. keep in mind this is knit, stretchy, form fitting. as mentioned the skirt is very comfortable and a heavier texture fabric. i purchased a large (i am 5'7 and 154lbs) and don't like skirts too tight so i sized up. the large is fine however, i noticed at the bottom of the skirt it doesn't quite fit as slim as i would like. i suspect the m would be better. if you have a stomach it will show! i also noticed that the skirt seemed much longer on",5,1,2,General Petite,Bottoms,Skirts +1008,42,Perfect pencil,"I ordered this skirt in both colors and they are just to die for. the fun fabrics make it a playful and trendy take on a timeless essential, and the fit is incredibly flattering. an added bonus: the fabric has give so it's also extremely comfortable. i hope they come out with more color options!",5,1,0,General Petite,Bottoms,Skirts +833,54,What went wrong?,"I am sorry to say this blouse is way below all retailer standards. this top should have been placed on sale a long time ago! poor quality in cut, fabric, design. this is a top one would grab at a local box store for 19.99. the colors are not as vibrant. the shoulders ill fitted. and the fabric and threads are very cheap. i was expecting so much more.sorry retailer.....my favorite store to shop!",1,0,1,General Petite,Tops,Blouses +190,28,So comfy! great for pajamas or super casual,"I love these! they are cute enough to wear out, and they are really comfortable. i ordered a small and at 5'3"" they are a little long but they shrunk in the wash and they're still totally wearable",4,1,0,General Petite,Intimate,Lounge +1033,60,,"I disagree with the most recent review! they are legging style fit but not leggings at all! they are a jean style with a patterning on them a texture. +great colors!",5,1,6,General Petite,Bottoms,Jeans +833,59,Flowy & feminine,Beautiful and flowy blouse . bottom is very full so i recommend sizing down - 1 size. very feminine and i really like the colors and pattern. i am a 36c on top and found top flattering with pilcro serif legging like jeans and booties.,5,1,3,General Petite,Tops,Blouses +872,19,Great shirt,"I saw this shirt online, loved it, but unfortunately it was sold out in the regular size small. however, retailer shirts tend to be long on me, so i ordered a petite small. it fits great! i am actually happy i got a petite because i feel a regular would have been too long. the shirt comes to my hips. for reference i'm 5'8"" 145 lbs. and my measurements are 34-27-38.",5,1,9,General,Tops,Knits +190,37,Love!!,"Comfy, cozy, and great bargain for the sale price.",5,1,0,General Petite,Intimate,Lounge +833,54,,"Beautiful top but disappointed that the top was so sheer. i'm 5""2, 120 and i ordered my usual xs. fit perfectly but may exchange for a s as i was hoping for it to be a little longer (hits right below my waist).",4,1,2,General Petite,Tops,Blouses +51,26,Love the cut and lace strip on the back.,"I purchased this shirt and was hoping to be able to wear it without a tank underneath (because of the lace detailing on the back). however, this shirt is a bit see-through, so i still had to wear a tank with it. it's very cute even with the tank though!",5,1,0,Initmates,Intimate,Layering +1033,29,Meh?,"I bought these a great alternative to black jeans but they are headed back. the texture is nice but let's call them what they are- thin, leggings. not worth the price in my opinion. honestly, i can't seem to find a pair of pilcros that i like so i'd spent the extra money on a better pair of black jeans.",2,0,0,General Petite,Bottoms,Jeans +872,41,Gorgeous detailed tee!,"I ordered the coral, size small, it's a beautiful peach color and the linen is very soft. it is longer, and roomier in the waist than i was expecting, however, with skinny jeans it looks great. the detail makes this top very eye-catching, i'm very happy with my purchase!",5,1,2,General,Tops,Knits +872,39,Love it,"This shirt is so flattering. i bought it in the recent ""it"" color but i wish it came in some additional brighter hues. this shirt is just so lovely. it's long in length too!",5,1,2,General,Tops,Knits +833,60,,"I am 5' 3 3/4"" tall, and usually wear medium in retailer tops. i love this top. purchased same style in sleeveless this past summer and was hoping the style would return, as i was complimented every single time i wore my summer version! i do wear a cami underneath. i agree that in the picture the yoke doesn't seem pink, however i like it even better with the more pink hue as it gives an even more eye catching piece the pizzaz i look forward to seeing in retailer offers! i love retailerpo",5,1,2,General Petite,Tops,Blouses +1052,39,Trendy piece,"I love the flowy-beachy look of this jumpsuit, it is very comfortable, and super cute, my only ""gripe"" is that the hip part is pretty wide, hands in the pockets, you can't tell, but if i were to get this, i would want a xxs. length was ok not petite since it is a flowy look. colors are very nice too, kind of ""70's"", but i love it. i think i will get this if it goes to sale, even if it is a little big on me... i am 115 lbs, 30d chest and tried on xs.",5,1,4,General,Bottoms,Pants +872,32,Beautiful top,I absolutely love this top! i own it in coral and white. it is simply beautiful and the linen fabric makes it comfortable and breathable. i am so happy i bought this top!,5,1,1,General,Tops,Knits +872,37,Lovely top,"This is a beautiful, light-weight summer top. i ordered the white - perfect for summer. very feminine. true to size. i am 117 5'3 34b and the x-small fit perfectly.",5,1,4,General,Tops,Knits +895,38,,,5,1,0,General Petite,Tops,Fine gauge +190,46,Comfy but see through,"I ordered these on sale despite a previous reviewer's comment that they were unflattering on the back side. they really do hug your bum, but that is not what bothers me. what bothers me is that the back side is totally see through, so unless you plan on wearing them with a long top, they are not wearable in public or around other people. i have gotten some of my favorite pieces from retailer, but also some of the most poorly designed. unfortunately, these fall in the latter category.",3,0,0,General Petite,Intimate,Lounge +833,34,Beautiful top!,"I have to disagree with earlier reviewers who suggested this top isn't flattering for larger-breasted women. i'm breastfeeding, so i currently have dds that are the bane of my existence, and i was very happy with the way this top fit across my chest. i didn't give it a full 5 stars for aesthetic/design only because i wish it were a bit longer. it hit me below my waist, but not below the crotch of my jeans where it hits the model (possibly because she is not burdened by swollen breasts). the shir",4,1,4,General Petite,Tops,Blouses +895,55,Great poncho!,This poncho is so comfortable. fabric soft and not too hot. this goes with so many things. my favorite purchase this fall!,5,1,1,General Petite,Tops,Fine gauge +895,30,I love this!,"This poncho is my new favorite thing. the material is soft and it is long enough in the back to cover your butt which i also love so that i can wear leggings underneath. i normally wear a size m top, but bought the xs/s poncho otherwise it was just too big. the only negative is that you have to hand wash :(",4,1,1,General Petite,Tops,Fine gauge +895,33,Perfect poncho,"I have been waiting for this poncho to hit my local retailer. it was as good as it looks online. the perfect piece to put on over a tank or t-shirt. you can dress it up or down and i love that it has pockets. i wear a 10 and i bought the m/l, this is meant to be oversized so buy appropriately.",5,1,6,General Petite,Tops,Fine gauge +1052,38,Unique,"Found this jumpsuit in standard size small/red motif (pictures don't do it justice) in-store and to my surprise, it actually fit! of course, it was billowy since i'm short/ 113lbs., and it came all the way down to the bottom of my ankles where they meet my feet, which i don't mind. i love that it almost looks like a maxi dress when on. the smocked bodice was snug for a size small so there is a little bit of skin bubbling out in the chest area/near my armpits..like normal women usually have. ladi",5,1,0,General,Bottoms,Pants +872,51,"Gorgeous colors, beautiful design","I loved the fit and design so much that i splurged and purchased all three! the lavender has a blue tinge to it that makes it really unique. the coral is a little on the neon side but i love that and it's a great color for summer. i'm waiting for the white to arrive and hope it's actually white and not ivory, as retailer colors are sometime a little off. i'm petite and order the xxsp which fits like a dream. not too tight or loose, super comfortable and flattering. easy to pair with white, khaki,",5,1,7,General,Tops,Knits +872,39,"Beautiful details, runs long",Feels a bit more tunic than blouse but it's a lovely piece all the same.,4,1,0,General,Tops,Knits +895,35,Love this sweater,"Short of calling it dark gray- which isn't dark, but that's fine because i saw the picture. it's everything i wanted it to be. i just wish it was chiller here in georgia so i can wear it more often",5,1,1,General Petite,Tops,Fine gauge +895,39,,,5,1,0,General Petite,Tops,Fine gauge +190,65,Perfect cotton jogger,Quality assembled;comfortable and stylish with 2-tone fabric; wash w/o shrinkage;pair with every rainbow color. nice alternative to jean days.,5,1,2,General Petite,Intimate,Lounge +895,36,Great transitional item,"I love this - great coverage, goes with everything, flattering pockets, soft and soothing taupey gray palette - a+. retailer does it again.",5,1,0,General Petite,Tops,Fine gauge +190,39,Super cute & comfy,My husband bought me these joggers for a retreat i went on. they are so comfortable and really cute. i am usually a size 4 and the size small fit great with some room.,5,1,3,General Petite,Intimate,Lounge +895,44,Fabulous!!!!!,"This could worn with anything. tank top, long sleeves, gloves, jeans and pants. very high quality material. will be a staple in my wardrobe this fall!!!",5,1,1,General Petite,Tops,Fine gauge +872,32,Great fit,"I have been searching around for new and unique clothes to wear to work. this top is cute, comfortable, and well made. these are all qualities that i look for when purchasing clothes. also the shirt is flattering for the stomach if you are like me and had a baby.",5,1,0,General,Tops,Knits +1033,33,Great dressy jean,"Super comfortable pant. they don't feel or look like jeans, but will hug your body like jeans. i bought the regular, size 26 - they waist is not tight and i needed to roll up the bottoms about 1.5 inches. i have not washed or dried these yet, but i imagine they will wash well.",4,1,0,General Petite,Bottoms,Jeans +833,37,Love!!!,"I'll admit, it's been a few months since i've shopped at retailer. i feel like i have to try on just about everything because there doesn't seem to be much consistency between the brands. i'm so glad i wandered in our local store this week! this top is so beautiful in person and well-made. the embroidery is lovely and it's lined, so not too sheer. i'm tall and it was a good length, hitting just above the hip. i think it runs tts or maybe just a tad big. the s fit perfectly across the chest,",5,1,11,General Petite,Tops,Blouses +833,81,Cute in pic but...,"Like other reviewers have said, this is very sheer, look at the sleeve in the picture and you'll get an idea of how sheer the body is as well. the material posed challenges for it's creater because one top i tried on in the store had a sleeve that was smaller than the other, tight enough that it would have ripped if i weren't careful. tried on another identical top and the sleeves were a normal somewhat loose fit. bodice portion is much more intense pink in real life. loose, billowy, and perhaps",2,0,2,General Petite,Tops,Blouses +995,33,Runs small,Beautiful skirt but does run small. i wear a small and am able to keep the skirt but have to be very careful about under garments since it is so tight. looks great though.,4,1,0,General,Bottoms,Skirts +1033,32,Great leggings not jeans!,"I'm giving these leggings 5 stars although i did return them. first off i do love pilcro jeans and leggings. beware these are not jeans at all. the tag says serif legging. these are excellent leggings if that's what you're looking for. i thought they were jeans and was willing to spend the money on them, but not for leggings. i'll consider buying if they go on sale.",5,1,6,General Petite,Bottoms,Jeans +872,69,,"I bought this in coral, it is soft and the fit is flattering. the perfect top for transitioning into fall here in the desert.",5,1,0,General,Tops,Knits +895,33,So very pretty,"This is such a classy, elegant and interest piece for your wardrobe. the fabric and cut is lovely and it drapes really nice. i love how it doesn't slide around on your frame when you move and the pockets are awesome - such a fun and practical extra. i thought the arms were a little tricky - but you would see the same issue with any cape style top. the gray is a nice color, but i wish it came in another option - a wine color would be amazing.",5,1,1,General Petite,Tops,Fine gauge +872,48,Pretty but not worth the price,"Pretty tee, but not worth the price. lace is beautiful, but fit is blah.",3,0,0,General,Tops,Knits +833,40,Dissapointed,"This is a beautiful top, however it looks better on the 80 pound model. the shirt sits awkward on your chest if you have any cleavage and there is way too much fabric around the body. if you are any size beyond a 2 then it just makes you look bigger than you are.",3,0,2,General Petite,Tops,Blouses +895,37,Dreamy poncho!,"As soon as i saw this online i knew i'd love it, and when it arrived in my store i scooped it up right away!!! the poncho is exactly as it appears online. the color is different variations of gray. the fabric is soft and not itchy at all. it's longer in back, has arm holes on either side and lays beautifully. it's long enough to wear with leggings, but looks clean enough to pair with jeans and a top. this is light enough for cool summer nights, but will be my fall go to once the cold weather com",5,1,3,General Petite,Tops,Fine gauge +1052,37,Yes yes yes!,"This is a gem. stretchy, graphic, easy to wear, lightweight and so fun! the best thing about this is it can be worn as a jumpsuit or as a higher waisted pant! i've seen it paired with a pilcro denim jacket and cute sandals, and then worn as pants with a black tank, jacket and silver belt. i love that this can be dressed up or down...you could even throw it on over your bathing suit as a coverup. i would go true to size on this one since there is some room and the top has great stretch.",5,1,1,General,Bottoms,Pants +872,32,Pretty and comfortable,This is a very pretty top with a nice flow. i love the delicate pattern. it fits perfectly and is great for work or the weekend.,5,1,0,General,Tops,Knits +833,56,Unexpectedly had to have it,"I love this top and despite the higher price point, it came home with me. normally i tend to go for very basic colors - white, black, gray. but i saw this and was intrigued by the high neck and subtle cut away sleeveless style. tried it on and it was love. the fit is great. it is flowey, but without the maternity look in front and all that extra fabric in the back. it's just right. i love the print and i am so not a print person. i tried it on with some taupe skinny jeans and a denim jacket. per",4,1,2,General Petite,Tops,Blouses +1033,45,Super comfortable and stylish,I love the navy blue color. they are a fun alternative to skinny jeans. the fit is great and they are super comfortable!,5,1,0,General Petite,Bottoms,Jeans +1033,48,In love with these,"So many compliments and so comfortable--all i want from a pair of pants. i am 5'8+ and around 135 and a little bit of a pear, and these fit perfectly in size 28l. they felt a little tight at first and then stretched to be ideal. i bought black and really love the softness, the rise, and the way they go with everything. thinking of going back for one in the dark red. this will be a winter staple to dress up or down. +i just hope they don't wear out too quickly!",5,1,2,General Petite,Bottoms,Jeans +872,37,Almost adorable...top button?,"This is as pretty in person as it is online, good quality (except one item i'll get to), and fits true to size. i'm 5'6"", normally a medium/8, and the medium fit great in this top. +i almost kept this shirt...so close, i had it on a hanger, but i kept trying it on. the shirt is well displayed in the pics online, but unless you get close it's hard to see that the top button is set a little wide. every time i put it on, my eyes went to the top button (i did get a second opinion and they agreed)...",3,0,1,General,Tops,Knits +190,79,Soooo comfy,"These are incredibly soft and comfortable. they are only for inside lounging, because they are a bit see through and have that long-johns type of material on it.",5,1,0,General Petite,Intimate,Lounge +872,48,So feminine,"This is so pretty! it was beautiful in white but i bought the blue because the fabric is a little bit see through. i'm 5' 4"" and weigh about 135 and this shirt fit just like on the model in the picture. it was a nice neat loose. not sloppy at all.",5,1,1,General,Tops,Knits +1052,73,,"I've never owned a romper before but after trying it on at the store, i fell in love! i'm pear-shaped 5""4 at 185#. i got a med and it fits beautifully with just enough room to not be baggy. i got the red mitif. super flattering.",5,1,2,General,Bottoms,Pants +1052,68,Love this gorgeous jumpsuit!,"I purchased the one marked with the red dot (the one with the larger pattern and orange in it). i spied it in the store as soon as it arrived. i fell absolutely in love with it immediately. i am normally xl but this piece runs large so i tried the l and it's perfect. very bohemian, which i adore. first time out i folded over the top and wore it as pants and it looked fabulous with a black top. it can also be worn the way it is shown. i have also belted it and worn it with a black jacket, as show",5,1,0,General,Bottoms,Pants +190,67,So comfy yet stylish,I bought the top that goes with the pants & live that it's comfortable to wear at home yet looks good enough to to go anywhere. easy to care for. very happy with this!!,5,1,0,General Petite,Intimate,Lounge +600,46,Boys and arrows high-neck top,"I love boys and arrows, but this top is really best suited to smaller size chests because there's no adjustable ties or straps or reinforcements for support. also, the fabric is super soft, which is great for feel but not so much for fit if you require a little boost! for my 32d's i chose a different design.",4,1,0,Initmates,Intimate,Swim +1052,45,Gorgeous,This jumpsuit is absolutely fabulous. i normally don't wear jumpsuit but i like this one very much. it can be dresse down or dressied up. i really recommend this to everyone any shape who have. very relaxing and beautiful.,5,1,0,General,Bottoms,Pants +1033,36,A little thinner than expected,"I love the pilcro line and these leggings (yes definitely more a legging than jean) did not disappoint. however, i did think the material would have a little more substance and weight. they are pricey, so i am hoping that the thinness of the material will not prevent them from holding up well.",5,1,0,General Petite,Bottoms,Jeans +190,27,Comfy yet unattractive,"I have a love hate relationship with this product. it is comfortable and cozy, yet unshapely. after the initial wear, the product begins to stretch out, and if you sit for a while your knees are demarcated in the fabric once you stand. the sherpa front is soft, but the waffle material in the back is in no way flattering. i purchased for sleeping so it does that job nicely, but i would never leave the house with this on. i am hoping that after the first wash it shrinks a bit too. i am typically a",3,0,0,General Petite,Intimate,Lounge +872,26,Nice top,"I bought this in white and coral. i usually wear xl, but both l and xl fit well. i bought coral in l and white in xl. it is a tad see-through but not a lot. the top is comfortable and looks very good on, coral is so dreamy and white perfect for a casual day out. i am not crazy about linen fabric though, it can be a bit scratchy, i would have preferred if the top were in a softer fabric. for now though i plan to keep both.",4,1,0,General,Tops,Knits +1076,35,Love it,This dress is exactly what i hoped it would be! super sexy and great material.,5,1,1,General Petite,Dresses,Dresses +863,74,,I really like the gentle flow of the fabric. this top can be worn casual or dressy by adding jewelry or or a scarf.,5,1,0,General Petite,Tops,Knits +863,29,Comfortable!,"This shirt is very comfortable. though it's casual, its uneven seams and asymmetry give it a little +more edge and character. fits true to size. i'm 5'5'', 125 lbs and was happy with the small.",4,1,0,General Petite,Tops,Knits +863,33,"Flattering, beautiful autumn top","I have this color also in the grey - flattering, interesting shirt. i have think hips but a fuller waist, the vertical lines of this shirt design suggest otherwise. great to pair with torn up skinny jeans! love the petite line now in portland.",5,1,0,General Petite,Tops,Knits +863,50,Good staple,"Cute shirt, nice for layering.",4,1,0,General Petite,Tops,Knits +1097,35,Cute dress,"This dress is really cute and is a lightweight knit that is great for warmer days. the color is a lovely dusty rose that looks just like the picture. since it is a knit material and does tend to stretch out, i did go down one size so that it would be more form fitting. the length on the petite size is perfect for me.",5,1,3,General,Dresses,Dresses +863,56,"Love, love, love it!","I saw this online and loved it. i wanted to wait for a sale and a promotion, but this tee-shirt sold out in the color holly. completely sold out but for petite. i bought a s and a m. the small works. it is comfortable. it can be dressy or very casual. i bought the white and the carbon. it is a different style on a tee. if you notice the front neck and the bottom of the back you will see what i mean. i recommend this highly. i can't imagine anyone not liking it.",5,1,0,General Petite,Tops,Knits +863,61,Comfy tee!!,Love the way this tee looks and feels. so comfortable and fun! good length. perfect jeans tee.,5,1,1,General Petite,Tops,Knits +863,38,,,5,1,0,General Petite,Tops,Knits +1110,33,Not the same fit as ribboned denim dress,"I am still in love with my ribboned denim dress from earlier this year. so, when i saw this dress i was super excited and ordered it right away in the same size. it just came and... i'm kinda disappointed. the fit is... shrunken?? kind of like i'm wearing a petite size. it's around 3 to 4 inches shorter, the tie at the waist hits instead right under my bust, and there's some weird bunching happening above my rear?? i kept wanting to pull the whole dress down more, but that's just the way it was",4,1,14,General Petite,Dresses,Dresses +863,31,Perfect fall casual top,I love this top. it's not just an average tee due to the asymmetry in the seams. it's super soft and comes in some great colors. i wish it was slightly longer on the sides but otherwise perfect tee!,5,1,0,General Petite,Tops,Knits +863,39,It's a t-shirt,"I ordered it with a particular outfit in mind as i liked the purple (burgundy) color. ordered xxsp, as with most t-shirts at retailer, they run a little big. xxs seems to be my new xs (which used to be s!). + +color was nice , fit was good too, i just felt not ""special"" enough... but if you are looking for a tshirt, then i say give it a try, as it was comfortable and the shape at least is unusual. + +for reference, 115 lbs, 30dd, 26.5 in waist",4,1,1,General Petite,Tops,Knits +863,55,,"I purchased in white. the material is a little thinner than i like, but the material is soft. runs tts over all. the arms are long-but i like this in a t-shirt. i will probably pick up another color in this shirt.",4,1,0,General Petite,Tops,Knits +863,31,Want to wear it everyday,"Purchased this t-shirt in white. it's lightweight and slightly sheer. perfect for layering. looks cute with a poncho, blazer or on it's own. really wish it was available in black.",5,1,0,General Petite,Tops,Knits +1110,47,Very flattering,This is my new favorite dress. it's a lovely fall mustard shade. the design really accentuates the waistline. i would buy the other colors in a heartbeat. on my petite frame the dress hits just above my knees.,5,1,0,General Petite,Dresses,Dresses +863,40,Not sure...,"I was expecting to love this based on the reviews and my prior experience with this brand, but i'm a little unsure. the front part hangs a bit too low on my 5'4"" frame, yet i think a petite would have the slits too high on the sides. i'm just not sure it hangs right on me. it's fitted through the arms and shoulders nicely, and looks great with the front loosely tucked. just not what i was expecting.",4,1,0,General Petite,Tops,Knits +863,41,Great option to the everyday t shirt,"I bought this top in white and my usual size large based on other reviews. the sleeves are wonderfully long enough for this tall girl, which means that they are likely very long on shorter gals. i love the style of this t. the white is slightly see through, but with a nude color bra works ok. i do wish that it didn't cut up so high on the sides. this probably isn't an issue with shorter people, but i need to wear something under it to avoid showing skin. i've tried a white camisole under an",4,1,1,General Petite,Tops,Knits +608,27,Great little slip or even summer dress,"Great quality, flattering cut- could even be used as a little day dress for warm weather! love the detail of the buttons on the back and the delicacy of the straps.",5,1,3,Initmates,Intimate,Layering +1126,30,So cute!,Absolutely love the jacket! wore it out in nyc at a rooftop bar and many people complimented on it. the faux fur is soft and pink color is beautiful. it is trendy but classy and can be worn dressy or dressed down with boyfriend jeans and booties. perfect transitional jacket from day to night =-),5,1,2,General,Jackets,Outerwear +863,48,,"I was on my way out the door when i noticed this adorable t-shirt and of course i grabbed one and went to try it on. i love it, it's a different take on a t-shirt. it's comfortable and stylish. i ended up buying the white one and gold colored one. i'm even thinking about grabbing a couple more colors.",5,1,12,General Petite,Tops,Knits +863,26,Solid long sleeve,"I was expecting this to be longer. nothing wrong with it, i will be returning it because it was a little short.",3,1,0,General Petite,Tops,Knits +1097,33,,Lovely color and really nice fabric. not much form to the dress but will be lovely with a belt or jacket.,4,1,0,General,Dresses,Dresses +863,38,Not flattering,"I didn't think top was very flattering and, while in the picture the mismatched hem lines in the collar looked cute in person it just looks odd. this is especially true of the back of the sort where the mismatched hem repeats at the bottom...just looks mis-sewn instead of purposeful. sadly this one is going back to the store.",2,0,1,General Petite,Tops,Knits +863,28,Great layering staple,"This will be my go-to shirt for fall! its a great layering piece with just enough detail to make it different than a plain crew neck long sleeve...the neckline is unique & the slit in the back of the shirt adds interest. fit is slim, nicely tailored which makes it perfect for layering. i will likely purchase more colors once on sale! i purchased the dark grey and color is just as expected. my only drawback is how thin the material is - i can see it getting snags or holes easily, but i will deal",5,1,1,General Petite,Tops,Knits +1033,56,Not for me,"These jeans didn't fit like i thought , based on the model. i usually wear 25 , but these were snug and i i have snug jeans , lots of them and i wanted looser , flared jeans ,kind of a 60's look. not these. a bigger size wouldn't have improved it . they are a perfectly good jean , love the color but not what i wanted .",4,1,0,General Petite,Bottoms,Jeans +863,38,Versatile shirt,"I was looking for a white shirt to layer with this winter. this shirt looks great on its own, but it has also done great as a long sleeved layer under vests, etc. it's a little thin so i only gave it 4 stars for quality, but it is holding up well so far.",5,1,0,General Petite,Tops,Knits +863,65,Typical left of center,"I have many left of center tees, and this one is a part of that same family. i got the deep purple (kind of an eggplant color), which is perfect for fall. the sleeves are long, the cotton is thick, and i love the small details at the neckline and bottom hem. it's not quite 5 stars for me, though, because it is very high on the sides--not too much that you can see skin while standing still but enough if you raise your arms. not a deal breaker for me, though.",4,1,0,General Petite,Tops,Knits +1110,38,Comfort and style,"I purchased this dress on super sale and i'm so happy i did. it looks better on me than on the model and that's never the case. the material is soft corduroy with comfortable give. it moves with me. true to size (i ordered a size 8 and for reference, i'm 5'2"", 140lbs, 36c). love this staple fall/winter piece. i wore it to a conference for work with footless tights and a black cardigan. i can't say enough how comfortable it is on! it has a structured give if that makes any sense. love it!",5,1,0,General Petite,Dresses,Dresses +1097,34,Not flattering,"I really wanted to love this dress, but it just wasn't flattering on me. i have curves and i was hoping this would hug them in a joan on mad men way (sometimes these dresses that just hang on super thin models can look beautiful in a different way on a more voluptuous woman) but it was pretty shapeless on me. it also dips so low in the back that i would have to get a special bra to wear it. might be right for a more slender shape or someone who can go braless, but it didn't work for this short,",3,0,16,General,Dresses,Dresses +863,55,So versatile,"This can be worn now on its own or as the weather gets colder it will make a great layering piece +i bought one and liked it so much i bought it in another color",5,1,0,General Petite,Tops,Knits +863,66,A dud for me,"Loved the colors (greenish, coal and white) and shirt texture but the fit was horrible. i sized up to an xl because you can never tell sizing with this line. that didn't help. it fit, although a bit long but the deal breaker was that i looked huge from the side view. since i carry my weight in my mid section, high/low cuts on the side are tricky on my frame. it fit well in the bust over my 34g's and looked nice from the front. i do recommend it. if you have my body issues you might pass.",4,1,0,General Petite,Tops,Knits +863,51,,,5,1,0,General Petite,Tops,Knits +863,54,,,5,1,0,General Petite,Tops,Knits +863,56,"Cute, but not long enough for long torsos","Received this and love the style, but it falls just a little below my waist and i like my tops to be longer. it'll definitely fit a shorter torso.",3,0,0,General Petite,Tops,Knits +539,45,Great fitted tee,Great fitted tee. nice styling. hard to find tees that are fitted-- they seem to make most of them these days like boxes i suppose because it's easier to make. this looks great and feels good. true to size. loving it!,5,1,5,General Petite,Intimate,Lounge +1110,27,Great fall dress,Nice dress fits true to size. beautiful mustard yellow and soft corduroy.,4,1,0,General Petite,Dresses,Dresses +863,45,A good staple in a wardrobe,This is a very comfortable shirt great basic to have in the wardrobe it runs a little high on the sides,3,1,0,General Petite,Tops,Knits +1110,46,Love it,"The dress is true to size, but has generous stretch to it. i absolutely love this dress, i compliments where needed and hides what needs to be hid, for me the tummy!",5,1,2,General Petite,Dresses,Dresses +863,34,Cut top,This top was really cute but the side slits were just a little to high for my taste. maybe a size up would have worked better.,4,1,2,General Petite,Tops,Knits +539,27,,Love this shirt and the details on the collar.,5,1,1,General Petite,Intimate,Lounge +863,36,Go go gadget arms!,"I loved this top when i saw it online, and i still love the idea of it. unfortunately, the execution of the design fell short. i'm 5'4 w/ a long lean torso. i ordered my usual small, and the arms on the shirt were so long! b/c of the way the sides of the top cut up and my 34 d chest, i don't think a petite would work for me. such a cute top, but it just won't work for me.",3,0,1,General Petite,Tops,Knits +993,34,,,4,1,0,General Petite,Bottoms,Skirts +863,53,New twist to simple tee,"Really cute tee... charcoal is deep and great all seasons. cut high on sides... may need to size up to accommodate - depends on body shape. tried the white, didn't buy--- too lightweight, but could work layered.",4,1,0,General Petite,Tops,Knits +863,65,Seamed scoop neck tee,Love it fits great very comfy goes with all,5,1,0,General Petite,Tops,Knits +863,44,Very soft and flattering,"I was please with how well this shirt fits, and how flattering it is, while adding a bit of visual interest with the unique neckline.",4,1,0,General Petite,Tops,Knits +863,54,Great relaxed t-shirt,"Soft comfortable material- love the carbon color. great everyday casual tee but with a nice bit of detail. +i liked it so much that i ordered a second one!",5,1,0,General Petite,Tops,Knits +863,44,Fabulous dressed up tee!,"I'm always searching for a ""dressed up tees"" and these were fabulous! true to size and great quality!",5,1,0,General Petite,Tops,Knits +539,35,,,5,1,0,General Petite,Intimate,Lounge +863,44,It's ok,The fabric is great quality but it stretches too much around the waist making it look a little awkward. other than that the quality is good.,3,0,0,General Petite,Tops,Knits +863,23,Love it,"This shirt was better than expected. the fit is fitted but still flows. it's comfortable and the material is great. it goes with anything, ive tucked it into pants and skirts but i've also just worn with leggings. looks great either way! im going to buy more of this shirt.",5,1,0,General Petite,Tops,Knits +863,28,,"This is a nice, easy, go to shirt that i will be grabbing for this fall. comfy, but still styled to add a little fun in the everyday white tee.",5,1,0,General Petite,Tops,Knits +1110,39,Yummy mustard,"Love the gorgeous mustard/goldenrod shade but it's unflattering to my skintone (makes my olive-tan look more sallow). all the versions of the tied dresses that holding horses has come out with are fantastic in fit and flattering to the tummy. if you are busty/broad back/wide rib cage--size up. if you have generous hip/bum curves, give both your regular",5,1,0,General Petite,Dresses,Dresses +863,42,"Like it, but not white.","This shirt is so cute. i ordered a white, but will have to return it for a different color. the white is very sheer/shee through!",3,1,1,General Petite,Tops,Knits +967,42,Glam up any outfit,I love this kimono! the material and construction are beautiful but the one size fits all may be too big for a petite frame. you can throw it over the simplest outfit and make an instant glamour statement!,5,1,4,General,Jackets,Jackets +863,65,Thin & soft,"The knit is thin. it's more for a chilly spring or warm fall day. but, it's not see-through, although a bit light weight. + +the style if figure-flattering and fits tts. i am short and i found the sleeves, length perfect. so if you are tall, you ""might"" find this shorter in the arms or body on you. + +i bought the purple and it's a great color. love it!",5,1,0,General Petite,Tops,Knits +863,42,Poor quality,Love the design of the t-shirt but the quality is poor in my opinion. i got the white t-shirt and the material is so fragile i can see it tearing or being prone to rips after only a few wears. for the price i thought the quality is not up to par. the white t-shirt is see through but with a nude camisole underneath it is fine.,3,0,0,General Petite,Tops,Knits +1024,34,Run small,"These are cool jeans to have in a mound of typical denim jeans i have in my closet and these are like a thorwback of the 60s/70s made with modern, high quality denim. this is my first pair of 7 for all mankind denim, so i can't reference how they fit to their other jeans. however, based on typical pants sizing with other brands at retailer, these pants do run smaller than other brands, especially in the waist area. i ended up buying my size but clearly a diet will be in my near future because they",4,1,0,General,Bottoms,Jeans +831,48,Super cute peasant top,"This is a super cute peasant top. super light weight and perfect for summer, looks good with jeans or shorts, perfect for summer, spring, or fall. colors are super pretty and bright.",5,1,2,General,Tops,Blouses +1121,29,A wrinkled mess,"I love anything orange- when i saw this coat online, i ordered it as i loved all the features. the features of the coat are fun- however the coat came all bunched up in the package. i let it hang for a couple of days but the wrinkles were awful and even steaming and an iron would not take the creases away. i tried the coat on - the buckles were poorly made. i ended up returning this jacket.",1,0,1,General,Jackets,Outerwear +831,46,,"I want to love this top - it is so pretty, but i find the fit very odd. i think it runs big, but the arm holes seem to be cut really low. i would love to size down, but then i think the sleeves would be off. unfortunately, i will have to return it.",4,0,2,General,Tops,Blouses +1121,37,Yuck,"There was nothing i liked about this coat. it was definitely not designed with a chest in mind. the pins on the straps were already coming off the first time i tried it on. i usually like oranges too, but even this color turned me off.",1,0,3,General,Jackets,Outerwear +1121,29,Classy stylish coat,"It was love at first sight for me! i am petite 5'2 about 115 lbs and the small worked well for me. i usually order xs in most items in retailer, but because they only had a small left in the store, i thought it would work as i do like my coats a little bigger. when i tried it on, it was the perfect size! like the other reviewer said, i could see why it may not work for those with a fuller chest area. i am on the smaller side in that area and the fact that i went up to a small instead of xs may hav",4,1,2,General,Jackets,Outerwear +942,37,Pretty but baggy,"As with most retailer tops, this sweater is boxy and baggy through the middle. i ordered an xs. it's a very nice, pretty sweater that i'm going to try in an xxs. the v-neck does go down rather low so it will need a tank underneath. the lace accents are very delicate and make the sweater look more upscale. the white is a soft winter white.",3,1,0,General,Tops,Sweaters +942,46,Sweater review,"I bought this sweater to wear with leggings for fall and winter. the quality is nice, but the color is a bit different than the pic. it has more brown than true berry in it. it is very soft and stretchy, but is a bit boxy on. i am debating whether to keep it or not. it was a little cheaper with my birthday discount applied, but not sure i'd keep it if it was full price.",4,1,2,General,Tops,Sweaters +942,45,Love the lace detail,"This is a really pretty sweater. it is also very soft (no wool or fur)! yay! it is covers my bum, which i love. the ivory is slightly sheer so you may want to wear a cami with it. i have it on my wish list.",4,1,0,General,Tops,Sweaters +1087,21,Super comfy dress,"I love this dress! it's super comfortable and can easily be dressed down with a jean jacket and some sandals, or dressed up with leather and a good pair of heels. the fit is spot on and very slimming, and i like that the length isn't too short as well.",5,1,0,General,Dresses,Dresses +831,27,,,3,1,0,General,Tops,Blouses +354,39,Stays put,Classic design with nice details. stays in place for those active bikini wearers.,4,1,0,Initmates,Intimate,Swim +1009,34,"Super cute, flattering to tummy","This super cute skirt has a beautiful drape and overall fit. i was afraid the tie at the front would emphasize my slight tummy, but to the contrary, the skirt is flattering and slimming. at 5'3"", the front of the skirt hits at my upper to mid knee. 118 lbs., 26"" waist, 36"" hips, size 2 regular is a perfect fit.",5,1,1,General,Bottoms,Skirts +1086,43,Hip and comfortable,"Dress is pretty and works are a tunic, too. i'm short 5'1.5"" but the fabric does not overwhelm me.",5,1,1,General,Dresses,Dresses +1086,42,Wanted to love but doesn't work,"Super soft, super cute but too short for a dress, too long and too overwhelming for a shirt, and didn't like the look with leggings at all so sadly i'm returning. love the colors, feel and style but no way will sizing up or down fit in a way that was functional...having said that..fits tts i guess.",3,0,0,General,Dresses,Dresses +1086,35,,,5,1,0,General,Dresses,Dresses +1086,41,Better than i expected,"I fell in love with this dress online and ordered it despite some of the reviews that claimed it cut too high in the leg and couldn't be worn as a dress. i thought it was lovely enough to wear as a long shirt even if that was the case. however, when it arrived the side hems were not cut too high for me and i have successfully worn it as a dress (receiving many compliments along the way). i'm 5'2 (and a quarter) inches, 117lbs. i ordered an extra small and it fits perfectly. the fabric is soft a",5,1,0,General,Dresses,Dresses +876,26,"Pretty top, nice detailing, a bit large.","This shirt is made of a thicker material, so you are able to wear it through multiple seasons. i also liked that it is a bit longer. however, it runs a little large, so i would order a size down if possible.",5,1,0,General Petite,Tops,Knits +867,23,Pretty but boxy,"This looked more fitted on the model. the xs was still boxy on me, but i loved the eyelet hem so much i kept it!",4,1,0,General Petite,Tops,Knits +1086,26,Great look for fall.,"I got this for my girlfriend and was happy they had additional sizes online as we were not able to find this in the store. we loved that this could be worn stand alone, with leggings, or as an over-shirt. it's very versatile and is perfect for your fall wardrobe.",5,1,0,General,Dresses,Dresses +1086,53,,,5,1,0,General,Dresses,Dresses +1086,36,"Super cute, poor quality","I wore this for the first time today, and after just about an hour, it gently nicked something and got a hole in the pack. its so disappointing as i love they style and its so comfortable. very poor quality for the price :(",2,0,0,General,Dresses,Dresses +867,51,So cute! but way too boxy,"I wish i had read the reviews before purchasing online. i love how this top looks online but when i tried on the small that i ordered, it was comical. so so boxy. literally, shaped like a square. it must be pinned back on this model. maybe if i ordered an xxxxs it would have worked...or perhaps for a larger person, it may look super cute! +just didn't work on my slim build. :(",2,0,0,General Petite,Tops,Knits +1086,32,Love this!,"I love this dress! i do agree with the other reviewers - it does come up higher on the sides. it has a hi-lo hem style on me, but i'm short (5'3"") and got the petite xxs and it's not too short to wear as a dress. it's super cute!! if you're short(er) and don't mind showing a little leg, i highly recommend it :)",5,1,8,General,Dresses,Dresses +931,58,Much longer than stated,"This is an absolutely gorgeous sweater. the colors are just as they appear online, but the length stated for the petite version is way off. i suspected as much from the picture, but decided to try it anyway. the petite small went down to my ankles! too bad. i would have loved this sweater if it were an above-the-knee or even at-knee length.",5,0,1,General,Tops,Sweaters +1086,63,,,5,1,0,General,Dresses,Dresses +1086,52,,,5,1,0,General,Dresses,Dresses +1086,21,Exquisite and timeless,"This dress is beautiful. i cannot begin to express how pleased i am with the design and timelessness of this dress. in my mind, it takes me back to the 20s and 30s more so than a flapper dress as it exudes the simplicity yet elegance of the early 20th century. the champagne color is light and airy and it is incredibly comfortable to wear. i am wearing this to a musical at the tuts theatre in two weeks with pearls.",5,1,2,General,Dresses,Dresses +931,36,Bulky,"This was a splurge piece for my fall wardrobe. however, i will be returning it. it's extremely heavy and bulky. the collar doesn't lay right--it's tall so it wants to flop over but it's too bulky to fold and stay down. i went a size down and the sleeves are huge--wide and too long. it's not flattering on my figure--i have a booty but the sweater doesn't show curves at all. i also thought the colors were dingy, not bright like the photo. i think it would look good on someone tall and slender (als",4,1,2,General,Tops,Sweaters +1087,40,Effortless elegance,Great dress with just the right amount of movement and flow everywhere. perfect to dress up for a night out or wear it casually during the day,5,1,1,General,Dresses,Dresses +1086,47,Wanted to love it!,"I loved everything about this dress except the length. that fabric is great, the width of the dress was great...not too slim but not too baggy. but the front & side length was the problem. it is longer in the back which was great. i could have even dealt with the front length, but for my age, the way the sides came up fairly high, just couldn't work for me. +i you are younger and okay with showing lots of leg, go for it! its really cute!",4,1,1,General,Dresses,Dresses +1048,27,Perfect,"I love this jumper! i'm 5'1"" and the 00p fit beautifully. i needed no alterations. i found it true to size. i can see that if my torso was any longer, it wouldn't fit though. i found the quality of the fabric was nice, it just gathers slightly, but you can see that on the model too in the photo. that doesn't bother me.",5,1,2,General Petite,Bottoms,Pants +867,39,Very cute,I really like how this fits. it is soft and the eyelet details are very cute.,4,1,0,General Petite,Tops,Knits +1087,56,Sooo sheer,"The dress ran big but is tight at the bust, material is sooo sheer and the shape of the dress is off. you can't see the ruffle/ flounce that runs the bottom of the dress.",1,0,3,General,Dresses,Dresses +867,61,Awesome look & feel,"I bought this originally for my daughter but fell in love with it when i tried it on and kept it for myself! it is a cotton/polyester blend so it is very comfortable to wear. the length fits nice as well. i have received so many compliments wearing it with dress pants and also with jeans! thank you for making an item that is both pretty, flexible, and meets the needs of young women (and their moms!)",5,1,0,General Petite,Tops,Knits +1009,49,Love this skirt!,"I bought this skirt yesterday and love, love, love it!! very flattering, will go with anything. i am 5'5, 127, and size 6 fit perfectly.",5,1,8,General,Bottoms,Skirts +1086,30,Great versatile dress,"This is a great dress for me to wear to work, lounging on a sunday and everywhere in-between. i'd even wear it over a bathing suite on a chilly beach. highly recommend it!",5,1,1,General,Dresses,Dresses +962,54,Cutest jacket ever,"I tried this on twice in nyc and loved this jacket. it is so much cuter in person. my only concern is whether the mesh fabric will hold up over time and at this price point it needs to last more than one season. it has adorable embroidery on it, the colors are vibrant. you need to see this in person.",5,1,4,General,Jackets,Jackets +1086,46,,"I love cloth and stone and the softness and prettiness of this fabric did not disappoint. this is not a dress, however. it is a long shirt. the sides were so short the you could see where my bum and hamstrings came together. leggings would ruin the look and as a shirt it would be totally impractical. for reference i am 5'8"" and 130 lbs. the small was the correct size, save for the length.",3,0,6,General,Dresses,Dresses +1086,36,Exactly what i wanted!,"I love this dress! i will be living in it this fall and winter! the color is perfect, the fabric is soft, seriously it is so conformable and cute! i will style it with booties, tall boots, with vests, wear it as a tunic! i love it as a dress, i didn't think it was too short at all! i'm 5'7"" so things tend to be short on my anyway but i thought this was perfect and hit in the right spots! love love love it!",5,1,1,General,Dresses,Dresses +1086,36,So perfect if only the sides did not cut up,"I tried this on in my usual xs (5'5"", 128lbs) and it fit like a dream. i was instantly in love. until i looked from the side and realized it was cut up way too short. i have a longer torso and shorter legs and this came up past my finger tips if i stood with my arms down. no way could i wear this as a dress. as a tunic definitely though, but i was really hoping to find a nice, versatile fall dress. it was a let down but i still may consider purchasing it because the material was so soft and it f",3,0,13,General,Dresses,Dresses +1086,35,So soft,I really liked this dress. i agree with the others that say the side seam comes up pretty high. i think i'd wear as a tunic or open like the model. i can't justify full price though. tts. my normal med fit.,5,1,3,General,Dresses,Dresses +1104,57,Go for the grey if you can still find it,"I bought this dress online in the cream/black combo for an incredible deal. i wasn't thrilled about it when it arrived, even for the ridiculously low price, because the contrast between the top and bottom was too big. the two materials are quite different: the top fabric being much more casual than the bottom fabric, and with the color contrast it just looked like a top and skirt that you wouldn't put together if they were separates. when i went to my local store to return, they had the grey com",4,1,0,General Petite,Dresses,Dresses +1080,45,Beautiful dress but runs small,"This is a very pretty dress with a unique bodice and neckline. however, it seems to run small on top. i can not zip up the top by myself (zipper is in the back) even though i usually wear a size 2 or xs in this brand (i'm a 32d so i'm narrow on top). i haven't decided yet if i'm keeping it because despite the sizing issue, the dress is lovely!",4,1,1,General,Dresses,Dresses +868,36,"Nicely draped, beyond basic tank w/ tricky sizing","This pink tank is a wonderful addition to my go-to basics. i love the color, which is a nice deep pink that is pretty spot on in terms of accuracy to the online photo. it is a wonderful comfy fabric and the side knot adds nice visual interest to make this top appealing and unique. i also appreciate the wide straps, which means i can wear a normal bra instead of a strapless one without worrying about straps playing peek-a-boo. the only drawback is size. i ordered my usual xs (i am 5'5"", 110 lbs,",5,1,1,General,Tops,Knits +996,34,Gorgeous,I absolutely love this skirt! i purchased both a medium and a large. i found that it ran big. i typically wear a size 10-12. i ended up keeping the medium and it was perfect!,5,1,16,General Petite,Bottoms,Skirts +923,45,Loving the lines...,"I read prior reviews and decided to go forward with my purchase. i am so pleased that i did. the m fit nicely. the fabric is not as soft as i had wished. however, i think with wear it will become broken in.",3,1,3,General,Tops,Sweaters +923,46,,"I love the cold shoulder trend! this sweater is not bulky, but the thick knit will keep you warm while looking stylish! it is not your typical sweater. if you want something unique, but still basic, this is your sweater. looks great with jeans and khakis.",4,1,1,General,Tops,Sweaters +825,34,Strange armhole construction,"This tunic could be great but there is some weird construction going on at the armhole. first of all, the armhole is way too low! second, there is a totally unnecessary side seam zipper under the arm. since this is a tunic it slips over the head no problem. no need for the side zipper, it adds bulk and distorts the way the fabric should hang at the side.",2,0,0,General Petite,Tops,Blouses +826,43,Quality is questionable,"Loved the design and print of this blouse. however, every time i put it on or took it off, i could hear the seams ripping. definitely wasn't because it was too small either.",3,0,2,General,Tops,Blouses +1104,28,Obsessed,"I don't know how this dress doesn't have more of a following! it's really perfect. i will say, i am tall (5'8"") and lanky. the dress is oversized, but not overly so, drapes beautifully, and will work for any season. fabric is divine. i plan to wear this to work, for travel, on weekends, etc. love the cream/deep charcoal color. at the sale price, this really is a great, versatile find.",5,1,5,General Petite,Dresses,Dresses +826,36,So lovely,"This blouse is so pretty! i love the design, the material, and the pattern is so unique. i love the sleeves and how they billow out just above the elbow and come in at the wrist. i think the amount of fabric is perfect and would not be nearly as nice with less. the cut around the top where it starts to gather and fall is so feminine and modern princess-feeling. i hope they make this same style in other colors and prints!!! i adore it and feel so good wearing it! if i could change anything, i'd m",5,1,0,General,Tops,Blouses +907,62,"Cute, but runs small",This top is super cute...unfortunately it seems to run small so i had to return.,4,1,0,General Petite,Tops,Fine gauge +868,42,Perfect warm weather tank with a twist,"This is a great light weight tank. true to size, but size up if you prefer a baggier fit, size down for a closer fit. your preference for fit should be your guide. (i prefer a closer fit, so i choose a xs, i am a 6-8 in tops) the arm holes are slim and high so you are completely covered in all sizes. excellent drape, the twist in the front is just perfect! looks great with jeans, print joggers, and even wide leg pants. i imagine it would be fantastic with a pencil skirt - denim perhaps. hope it",5,1,11,General,Tops,Knits +1122,61,Beautiful but short,"Liked everything about this coat but the length! it is beautiful and good quality. first, ordered a medium because the fit seemed slight (i'm a 4-6), returned it for a large. unfortunately, the large will also be returned -- the body length is very cropped, not at all as it appears in photo to meet the top of a waistband. i'll hope to find a similar coat with just a bit more length.",4,1,2,General Petite,Jackets,Outerwear +1104,37,Cute dress,Fits great & super comfortable. i love this dress!,5,1,2,General Petite,Dresses,Dresses +923,56,Great late summer/early fall top,The sweater has a substantial weight to it. i ordered xs which is my usual size and i didn't find it ran big at all. the sleeve length and hem length were perfect. very cute with jeans.,4,1,3,General,Tops,Sweaters +923,31,Great sweater!,I love wearing sweaters when it gets cooler out but hate the bulkiness that comes with them. this is a super cute sweater that isn't too bulky and gives you the sexiness you're looking for! great material.,5,1,0,General,Tops,Sweaters +923,39,"Size down, way down","I typically take a m or a l in retailer tops/sweaters, so i ordered one of each, as this has been on back-order for forever. the medium was swimming on me - and i have a very athletic frame, with huge traps and biceps. i could have easily taken this in a small and still had plenty of length in the sleeves - and i have very long arms. +--------- +this sweater is thick and heavy. there's no way here in atlanta it can be worn anytime other than spring and the occasional very, very cool summer night.",3,1,53,General,Tops,Sweaters +923,60,Navy cold shoulder sweater,I sized down to an xs based on reviews and the fit was perfect. i am 34 b and usually take a small. i like the classic lines with the sexy edge. this is a heavier sweater but perfect for our houston fall and winter. if you size down the sweater has a much nicer fit to it and is not at all loose fitting. it just skims your curves.,5,1,1,General,Tops,Sweaters +825,26,Beautiful tunic!,"I am absolutely addicted to tunics. so, when i saw this on sale, with an extra 30% off, i went for it. i'm glad i did! it's absolutely beautiful. i love the opposing stripe patterns, the hi-lo feature (very subtle), and the tie back. so cute! + +if you're petite like me, though, you may want to wear something underneath--it does cut a bit low in the chest area.",5,1,0,General Petite,Tops,Blouses +1104,32,,,5,1,0,General Petite,Dresses,Dresses +866,23,Perfect for business,This top is perfect under a blazer or sweater! the peplum is pretty and the scallops as texture to the tank. love!,4,1,2,General,Tops,Knits +923,56,Needs to be altered for better fit.,"Going to alter shoulders straps by shortening for a better fit. petite size would have fit better, but was sold out.",3,1,2,General,Tops,Sweaters +826,38,"Stunning blouse, but way too voluminous","I'm an xl in retailer tops, but large also fit well in this blouse so you might be able to size down. this blouse is so voluminous i am returning it. i'm full figured and have a short torso, so the large billowy swingy body of this blouse does nothing for my shape. i'm busty and the blouse cascades off of my bustline which makes me look either pregnant or much heavier than i actually am. if you're tall or slender, the extra volume might not be an issue. +. +i really wanted to keep this blouse beca",4,1,23,General,Tops,Blouses +1104,43,Not great,"If you're tall, this dress sits up too high-waisted and this makes your waist look big. it's also kind of thin material on top and stretchy, so even though i'm small chested it made my shoulders and chest look large, but not on a good way. in other words, this dress made me look fat. the length is not bad for taller gals. all in all, not worth it.",3,0,18,General Petite,Dresses,Dresses +866,34,Super soft!!,"Got this in white and love the scallop detail. the material is also super soft and stretchy. i would've absolutely loved this in black, but i feel like the white enhances my hips a bit too much. i think this would be super cute on a taller frame. got my usual xs and it was a perfect fit!",5,1,1,General,Tops,Knits +1104,51,Cute versatile dress,"I got this dress in the gray, size small and it fits me perfectly. it hides flaws in your figure and is nice enough that it can be worn to the office and then out later for a date or dinner. i did not try on the white/black combo because i thought the white top part might be too sheer. unlike other reviewers, i think the contrast of fabrics works. i'm not sure why there are negative reviews here, i must have the right body type for it because i love it!",5,1,0,General Petite,Dresses,Dresses +1122,68,Runs small,"This jacket is so well made and absolutely beautiful. i usually wear a size 4 or small in everything at retailer. sadly i ordered a small and will have to return it, too tight on chest and arms. i recommend going a size up. also this jacket is really cropped, probably needs a hifh waist pant to compliment it, otherwise might appear too short.",5,1,2,General Petite,Jackets,Outerwear +1104,29,Adorable dress,"Nothing wrong with the dress, sadly it's the body i'm putting it on that's less than perfect. fits fine and tts, but just doesn't do anything for my bit wide hips, other than adds to them. hangs nicely, but jersey top and nylon bottom add to the wide hip issue. that said, i think i may still keep it as its a great length (not too short) and a nice, simple dress. really versatile.",4,1,1,General Petite,Dresses,Dresses +1104,35,Simple & casual dress,I'm petite and pear shaped so i'm small on top and curvy around the hips and love the way this dress fits. it's a relaxed fit so it's not super fitted and it's loose around the waist which is great. it's a wonderful casual dress to wear with a pair of tall boots. i adore it!,4,1,7,General Petite,Dresses,Dresses +826,27,Adorable everyday look!,"This blouse is great to wear almost anytime! it can easily be dressed up or down depending on the occasion and the accessories. it has a bit more volume around the waist then the picture shows - but that could be because i'm bit more ""well endowed"" than the model. i'm 5'0 and size m/8. this shape looks great on my curves without making me look chunky or stout. the image makes the color look black, but in person the color can pass for a really dark blue in some light. the textile of the fabric is",4,1,0,General,Tops,Blouses +923,48,,Super cute. was really pleased with my purchase of this sweater. runs just a little big.,4,1,0,General,Tops,Sweaters +1080,39,Not too spicy,"I'm very happy with the interesting print and unusual bib design of this comfortable dress. the bib embroidery is off in some areas. i find that the swath of beige to be too much since it almost matches my skin tone. to break it up, i took the unnecessary waist tie and used it as a bodice trim, creatively knotting, tucking and securing with mini safety pins. i purchased the m petite and though it has a zipper back, i did not have to unzip to put this on or take it off. i have a heavily padded up",4,1,1,General,Dresses,Dresses +996,34,Want it in every color possible,This skirt is hot. i love it and would marry it if possible. super pretty. the jewel hem looks awesome. buy it! we can be twins.,5,1,0,General Petite,Bottoms,Skirts +868,65,So soft,"The fabric on this top is just so soft. it's a thin cotton knit, and drapes beautifully. + +the top runs tts, but.....it is tailored to the body. it's not loose and wide in the width. the length hits the top of the hips just as shown. + +this works for casual or dress. for dress, i just put a fancy rhinestone pin over where the knot is. btw, i bought this in black, which is why adding the pin glams it up. although i bought it in black, it's not sheer so a cami isn't needed.",5,1,1,General,Tops,Knits +907,44,,"Love this top! simple, yet so stylish.",5,1,0,General,Tops,Fine gauge +1104,39,Terrible,"I rarely write a really negative review and retailer is my favorite store ever. but this dress is awful. i ordered the black and white. the fabric is very poor quality. the colors are washed out. i almost didn't try it on, but i did and found that, for me, the fit was terrible (though some of the reviewer pictures are cute).",1,0,0,General Petite,Dresses,Dresses +1203,30,,,5,1,0,Initmates,Intimate,Layering +1203,43,,,5,1,0,Initmates,Intimate,Layering +886,28,"Love this! so soft, looks like the picture","I love this shirt so much i bought it in another color. it looks like it does in the picture, loose and flowy.",4,1,0,General Petite,Tops,Knits +973,35,Too bulky,"I ordered this to wear for a holiday party hoping to have something unique and dressy. it was too bulky at the shoulders and looked like something a football player would wear. the little ruffled flower pieces were random at the top and stuck out in all the wrong directions. it wasn't as elegant as the model pic (is it ever?) and for this price should fit like a glove. went back within seconds. also, it's pretty short, and bulky short isn't flattering on too many people.",1,0,13,General Petite,Jackets,Jackets +1052,25,"Yes to love, yes to life, yes to these pants","These are excellent. as previous reviewers noted, they are a thin material, and there isn't much stretch. that being said, they have a casual, work-appropriate men's wear vibe (the extra fabric in the crotch region contributing to this). if you really don't like the extra fabric, wearing them a little higher and closer to the natural waist should solve the problem. the navy is a little lighter in person than on the site, just fyi--it's less easy to mistake for black, which is alright in my book.",5,1,0,General,Bottoms,Pants +1022,55,"Not loving the extra stretchy fabric, part 2","Long-time ag jeans fan. lately though, i'm finding the material is much too stretchy. i wanted a good pair of jeans. if i wanted pajama jeans, i would've ordered them. i found the same thing with the prima jeans i ordered (same review there). +so back both pairs went. +it's a shame because the color was as pictured and just what i wanted. if only they had been made out of actual jeans material.",2,0,9,General,Bottoms,Jeans +1203,37,,,5,1,0,Initmates,Intimate,Layering +975,65,,I don't buy many jackets (retired) but i think they are still useful. i had my doubts about this jacket -- like could they really get the trim straight at this price? but they did. the jacket is casual but sophisticated. i got the grey and the color is just as pictured. i will probably wear with dark jeans and i see several creative mashups with things in my closet. i am pleased and i think you will be too!,5,1,7,General,Jackets,Jackets +1203,30,Perfect layering tank,This is a great layering tank that is super comfy! the sale price is a bargain!,5,1,0,Initmates,Intimate,Layering +829,62,You need this.,"Effortless and super cute! i'm currently wearing my blue tunic for the first time with black leggings and booties - i absolutely love the everyday comfort of this piece! a few have mentioned length as being an issue - i'm wearing a regular s (my normal size) at 5'7"" and find the length similar to the model's. the cut on this is perfect - i was worried that it would look like a plaid sack on, but it's a slim cut that looks polished without needing to be belted. this will surely be a go-to for me",5,1,1,General,Tops,Blouses +886,36,Slimmer than it looks,"I like this top a lot - it's cuter in person than it looks on the model -- it's a little heathered. it definitely fits slimmer one me than on the model, and i'm pretty small on top. + +overall, nice to see a reasonably priced basic t on the retailer site",5,1,0,General Petite,Tops,Knits +1022,37,,"Love, love these jeans. being short they come right to my ankle. super soft and don?t require any hemming. i ordered my typical jean size of 26 and they fit like a glove. would love to have these in black and grey.",5,1,0,General,Bottoms,Jeans +41,34,Everyday tights,These tights are perfect. they seem like they will last a couple seasons with minimal wear. just the slightest texture and not shiny. i got the beige/brown to layer with dresses/skirts and boots. love.,5,1,0,Initmates,Intimate,Legwear +969,41,Impulse buy,"I was walking by my local retailer and saw this in the window and loved the colors. it's a great combination and looks good with white jeans, and regular denim. i like the cuffs on the sleeves and the textured material. it is a kimono - so in essence it is not form fitting. it's meant to flow over whatever else you have on. i purchased the xs/s and i am a normal size 2 and it looks cute. i got lots of compliments when i wore it! there are slits on either side at the bottom hem as well which allow",4,1,4,General,Jackets,Jackets +829,54,Love retailer's tunics,"This shirts dresses up anything-tights, jeans or a skirt. love the color and the length",5,1,0,General,Tops,Blouses +1100,32,Could be more petite but very pretty!,I got size 2p. it comes down a little over my knee cap and i wish it was rather a little above it. i have a small chest about 32b and with a padded push up bra it was still bit loose on the top. i do have a shorter torso. i feel like i could've gone with the 0 petite. i'm a pear shape and more like a size 4 on the bottom and i weigh about 115lbs- there is tons of room to go smaller - it is not form fitting on the bottom at all. has that slight polyester feel but the fabric is beautiful and thick,4,1,0,General Petite,Dresses,Dresses +832,49,,"I was surprised how great this blouse looks on! the color and texture are awesome.... very well made, but runs a tad small. this will be my new go to when i open my closet!",5,1,9,General Petite,Tops,Blouses +829,41,Bought this in both colors!,"Love this top, super soft and drapes great, even after washing. it is pretty long and loose, but it is so comfy and cute to wear with jeans or even joggers!",5,1,0,General,Tops,Blouses +1203,47,Favorite tank ever,"Love these tanks so much i have them in every color. i wear them layered under blouses, thermals, henleys, blazers, etc. i'm typically and extra small but the small fits perfectly.",5,1,0,Initmates,Intimate,Layering +1022,47,I love these jeans!,These jeans are so comfortable. they are well-made. they are the perfect pair of jeans. the only thing i do not love is they stretch out a little bit after wearing. i am going to order these again in the next smaller size.,5,1,0,General,Bottoms,Jeans +829,49,Perfect fall shirt,Comfortable and soft are two of my favorite words when it comes to clothes. this shirt meets both requirement. it is a great length and can be casual and dressed up. must have for fall and winter.,5,1,1,General,Tops,Blouses +829,65,,"This shirt spoke to me, as soon as i entered the store! i love the colorful plaid, the flattering cut, and the light, airy material. at very least, i think this will be a three-season go to!",5,1,1,General,Tops,Blouses +886,31,Love this basic!,"This is the softest, most perfectly cut basic. love the black, wish the white was a true white or ivory instead of heathered. as usual with retailer basics, i prefer the regular length despite being petite with a short torso.",5,1,0,General Petite,Tops,Knits +886,28,Nice product for the price,"This product is just what i wanted. it was a great color and nice quality for the price. it is tighter than the model, but i am curvy and that's usually the case. looks cute with a patterned pant and jewelry!",5,1,0,General Petite,Tops,Knits +832,64,,"The shirt is amazing in the photo..but when it arrived in the package to my house, it is sooooo dark that you can't see the patchwork. not happy. going to return it. it was a holiday gift.",3,0,7,General Petite,Tops,Blouses +829,47,Easy,"Bought this shirt in red in my usual size small. it is so comfortable and easy to wear. i am 5' 8.5"" tall and it fall on me similar to the model in the picture. not sure if i can wear with leggings--may be too short in front. i'm looking forward to layering it under sweaters and sweater vests for a pop of color.",5,1,0,General,Tops,Blouses +886,31,,,5,1,0,General Petite,Tops,Knits +969,46,"Gorgeous, but.","I am giving it five stars because the colors and design are so beautiful. but i am a medium, size 6 around 5' 8, and i chose the m/l, which is just too big. i also found a run in the fabric, which is very loose and knit-like in places. but i don't care, i am exchanging for another one in small.",5,1,1,General,Jackets,Jackets +886,45,,,5,1,0,General Petite,Tops,Knits +1203,53,Should have looked more closely at description...,"This spandex top, in my opinion, is workout wear. it is not the tank i expected to receive, but my bad. it is super stretchy tank like most folks use with leggings or workout shorts. it does seem small but perhaps due to the kind of tank it is, it should fit like this. 5' 5"" 142 lbs medium is skin tight. color is nice but, as i wanted a tank to wear with skirts or jeans and this is not what i had envisioned-it has to go back to retailer. quality seems fair.",3,0,1,Initmates,Intimate,Layering +886,56,,"I purchased this top on 2 colors...a great go to....stylish, soft and very comfortable.",5,1,0,General Petite,Tops,Knits +829,54,Great tunic,"This tunic is a great way to wear the plaid trend right now without it being the traditional collared shirt. it's fun, comfortable and has great style. the first time i wore it i got tons of compliments! i'm 5'8"" and the back of the shirt goes to the back of my knees, i usually wear a size 12 and the large fit great!",5,1,1,General,Tops,Blouses +1080,51,Just not for me,"The fabric felt beautiful, and it felt great on, but once i looked in the mirror it just looked too housedress like. maybe because it runs large. the price seemed high as well. i wanted to love it but i had to return.",3,0,1,General,Dresses,Dresses +587,32,Interesting fit,"I really looked forward to receiving this piece, it was however extremely difficult to get on and off. you have to step into it and it is very narrow. it is difficult to get your arms in and i had to have my husband's help getting it off. i am 5'9"" 135 pounds. i have a fit figure. i ordered a medium, i wear a small or x-small for a top and an 8 in shorts or pants. once it was on i was not thrilled with the extra material around the hips and tummy area. it is not terribly becoming, it bunches up",4,1,0,General,Bottoms,Shorts +886,61,Great staple piece,I'm about 10-15 lbs overweight and the material clings a bit. this would be a wonderful top for someone who has a nice shape.,5,1,0,General Petite,Tops,Knits +1094,53,"Simple cotton, runs large","Simple cotton garment such that the price seems high. if it had fit perfectly there is a chance i would have kept the dress, but my normal size 6 was a bit large and even though it was size petite, also to long in the upper body. perhaps a 4 p would have fit, but it may have then been too small. puzzling for petite to be too long in upper body. love this shape dress and the color and pattern however.",3,1,3,General Petite,Dresses,Dresses +969,70,Kimono with kick,"When i saw this on a model at my retailer store, i fell for it. i love the colors and the weave of this kimono. it looks great over anything denim or chambray in particular. it will be useful for cooler days and nights or air-conditionied places. the knit cuffs hold it in place. i got many compliments on it the first time i wore it.",5,1,1,General,Jackets,Jackets +975,34,Comfortable,Comfortable jacket that your can cross your arms and your back is not stuck. it is stretchy.,4,1,2,General,Jackets,Jackets +969,32,Love love love,I really love this addition to my wardrobe. the colors are great and it is very comfortable. my only complaint is that it runs large. it would be nice if they had more than two sizes.,4,1,1,General,Jackets,Jackets +829,53,Love it,"Pretty blues! colors are exactly as pictured! fits perfectly; not boxy, not tight, just comfortable! i'm 5'9 and this is tunic length on me!",5,1,4,General,Tops,Blouses +1094,26,Love the stitching details,"The stitching is why i like this dress. even though the arms and waist were a little large on me, i decided to keep it because of the beautiful pattern. (i think going a size down from what i normally wear would be too tight across my back or too short.) i will wear it with a cardigan, tights, and boots as the weather gets cooler.",4,1,0,General Petite,Dresses,Dresses +829,57,Perfect fall tunic,"I love everything about this tunic : the color, fabric and design! i am very happy with this perches!",5,1,0,General,Tops,Blouses +886,36,Have to have!!!,"I absolutely love this top, especially for fl weather. +it's soft and falls just a tad longer in the back and is a little fitted in the bust area with a very feline look. +i had the tank as well and just love the satin trim! +i will say it runs a little smaller than the tank bc i have xs in the tank and needed a small in this! +love it!",5,1,0,General Petite,Tops,Knits +886,48,Clingy material,"The shirt looks a lot less fitted on the model in the picture than how it fit in ""real"" life. size was not wrong, the material was just very clingy. i was not impressed and subsequently returned it.",3,0,2,General Petite,Tops,Knits +1203,34,A must have for every closet!,"The title says it all... +perfect go-to tank for underneath tops. smooths out lines. purchased in a large, so if you're between sizes, may want to size up.",5,1,0,Initmates,Intimate,Layering +829,36,,"I was first attracted to this tunic by the beautiful, bright colors; tried it on, and it was becoming, comfortable, and perfect for my laid-back lifestyle. i just bought it a week ago, have worn it three times already. i bought the blue.",5,1,1,General,Tops,Blouses +886,26,"Yes, but","It actually is a pretty good t-shirt, but i wish that i had known that ""white"" actually means oatmeal with bits of grey and beige. i bought three and will now need to return them all. hopefully i can find it in other colors i like.",4,1,2,General Petite,Tops,Knits +1203,27,"Nice, but weird fabric","Nice practical tank, that i can wear with everything. but, the fabric is kind of weird - overly warm and pulls up around the bottom when i wear it sometimes. i would still recommend it, but just know it's not just a cotton tank.",4,1,0,Initmates,Intimate,Layering +832,21,Perfect top,"I was in love with this top as soon as i saw it. i love the patchwork and i think it is well put together. i've worn it once (the day i got it, i was so excited) and washed it and it is still in great shape. +i liked it with the sleeves rolled up and the bottom tucked in, as it was a little longer than i'm used to. but nothing too long. my torso is short. +the material is not thick or heavy. and the sleeves and some patches are kinda thin. nice material, but not something to wear if it's very ch",5,1,0,General Petite,Tops,Blouses +886,51,Nice shirt but beware washing,"I liked this shirt well enough to order in several colors, preferred it fitting loosely (5'1"" around 100-105 size small). i always look for marine was able and this fit the bill, or so i thought; was so so dismayed to see that after one wash the dye had settled strangely into folds making it look like the shirt had cracks all over it. worse looking on the moss green but still apparent in the black, both no longer wearable. + +i am forced to return the shirts but since i do like the shirts i am goi",3,1,2,General Petite,Tops,Knits +1203,54,Versatile,"I have these in many different colors, some with stripes. very versatile and i wear them all year around.holds well through the washing. love these tank top.",5,1,1,Initmates,Intimate,Layering +1028,33,Not impressed,"I've worn citizens for almost 12 years now, i keep going back because i have an athletic figure (my thighs and butt are bigger than my waist), and usually citizens fit and hug all the right places and are made with a certain quality expectation - these did not meet any of those standards, the ripped as soon as i put them on. the material seemed cheap.",1,0,5,General,Bottoms,Jeans +1203,29,"Love the look, but hem rolls up","Great material, and i like the idea of a scoop / v neck combination. but the hem rolls up, making it impossible to wear not tucked in to pants or a skirt (and even there it's a little bulky). it's possible that ordering a size up would fix the problem.",4,0,0,Initmates,Intimate,Layering +171,33,Lovely cami,"Love this top! i'm 5'7, 145 pounds, athletic build, and the medium falls slightly loosely and very nicely over my hips. it is quite low cut, so i wear a tank under it in a professional environment, but it's fine to wear sans tank top in a more casual setting. i really love the back, as the straps are sexy and show off my shoulders. the material seems to be good quality, and i would order this in more colors if it were available!",5,1,0,Initmates,Intimate,Layering +1080,53,Not for me...,"I saw this dress in the catalog and on-line and it looked so lovely on the models. i took a chance and ordered it in my normal size small. when it arrived i was a little disappointed with the weight of the fabric, it was a bit light in my opinion. it did have an interesting texture, (suede like) so i could overlook the weight of the fabric if the dress fit well. unfortunately it did not, it rather just hung there and was not flattering on me. it looked wonderful on the model but i keep forgettin",4,0,0,General,Dresses,Dresses +829,47,Super cute top!,"I had read all the reviews about the regular length being too long (they were out of stock on the petite when i ordered) but i took a chance and ordered the regular size. i love it! it is a little long in the back, but i think that makes it a little more fun than your standard plaid shirt. so cute with skinny jeans and leggings! it is one of my favorite fall tops! i got the blue but might go back and get the red since it would be so great for the holidays!",5,1,1,General,Tops,Blouses +829,42,Love,"It's perfect. perfect fit, long enough to wear leggings and cover my behind. it's perfect.",5,1,0,General,Tops,Blouses +915,48,I'll be wearing this one a lot,"Look carefully at the pics of the back. if this style and the color suit you, just go ahead and order this one. it looks just like the pics, and is light, comfortable and true to size. the kind of top you can throw on when you are in a hurry and look great. however, because the back is sheer from halfway down, maybe not for work if you work in an office. moth is one of my favorite brands at retailer and this one is easy-peasy. i am 5'3"", 34c/28/38 and ordered the regular s.",5,1,4,General,Tops,Fine gauge +915,59,Very pretty and figure flattering.,"I just received this top in the mail and i couldn't be happier with how it fits and feels on. might have to wear a camisole under with a bit see through in front. it is very true to size and drapes beautifully with the back being very feminine. i am 5'6"" and the length falls just about the same on myself as does the model. i will wear with skinny jeans with the nice length working well with them.",5,1,6,General,Tops,Fine gauge +829,39,Great top!,"I love this top. i am 5'8"", 135, 36d, ordered a small and it fit perfectly. length is long, but i liked it. i paired it with grey jeans and black wedge boots...love this top!",5,1,1,General,Tops,Blouses +1203,34,,,4,1,0,Initmates,Intimate,Layering +829,60,Love this!,"This shirt is comfortable, loose, but doesn't make you look like you're shapeless. it compliments.",5,1,0,General,Tops,Blouses +829,34,"Fun, colorful top","Top was featured in an email ad. i love the colors in both tops and bought both plaids. i'm 5'4"", about 130 lbs, and the medium fits well. it is long in the back, but i like that. if the front were a little longer, i'd prefer that, but the length is ok. the colors are definitely cheery and mood-enhancing, very appropriate for this holiday season.",4,1,1,General,Tops,Blouses +886,70,There's something wonderful about this tee,"There's something wonderful about this tee. it's the way it fits. it hangs so nicely and is a wonderful year round item. i bought it in black for myself and one for my daughter. she ordered another color and i did, too. when i bought it, one of the gals at the store said it had been such a popular tee this year and, once i put it on, i understood why. i give it a high rating!",5,1,0,General Petite,Tops,Knits +1100,34,Not just for petites :),"If you're not a petite and are reading this, read on :) i'm always on the lookout in the petite section because many times us fuller girls can fit into these. +________ +pros: +- tts for me. i'm normally a size 10/12 (m/l) in the regular sizes. i tried on the 12p and it fit everywhere perfectly, especially at the bust in which i'm a 36c. +- fabric is on the thicker side, but that's what gives it this adorable shape, besides already being fit-and-flare. +- pockets :) i always lean towards dresse",5,1,16,General Petite,Dresses,Dresses +1022,57,Perfect pair!!,"This pair of age stevie capris is everything that i could want in a pair of jeans!! soft, sexy (without being skintight) and the perfect color of blue!! i am 5'3""/108 lbs and the 25 was a perfect fit!! these hit about an inch above my ankle and looked amazing (think legs that look a mile long!!) with booties one night and nude heels the next!",5,1,0,General,Bottoms,Jeans +832,64,Just love...,"I usually wear a s. the reviews were helpful. looking at the pic this shirt does look a little on the fitted side. i ordered a size m & it fits perfectly! the sleeve length is fine too! the colors are dark, not as in the photo. i do like the frayed edge look too. i have some skinnys like that. i had been looking at this shirt for months but thought it was a bit pricey. at the sale price plus the promo discount it makes it very much worth it. no regrets. hope this isn't tmi.. of note: the dark bl",5,0,4,General Petite,Tops,Blouses +975,36,,"Wow.. love this blazer! it's not as structured as some blazers , but the woven fabric hugs in the right places. fantastic addition and great alternative to the good'ol black blazer.. great versatility work to play. nice weight for fall, but will also do well for my fl winter. it's longer than some of my other blazers, but i like it.. with the front pockets as they are, it makes for a unique design that gets noticed. i got the size 4 and i have broad shoulders for someone @ 135lbs.. makes for a n",5,1,1,General Petite,Jackets,Jackets +886,50,Terrific all-purpose shirt,"I love this shirt! great fabric, nice quality, flattering fit. i have gotten this shirt in 4 colors. my only complaint is that the color names do not match the actual color.. not sure who named these. the orange is a lovely burgundy, and the white is actually oatmeal.",5,1,0,General Petite,Tops,Knits +886,25,Great top!,"One of the best tops i have ever bought! i love he material and the style. the satin trim around the edges adds a classy touch. i wore this top with yoga pants and then with jeans and it was perfect for both outfits! the shirt is true to size. i wear a size small and it fit perfectly (5'7"", 145lbs, 34b).",5,1,0,General Petite,Tops,Knits +1080,44,Easy to wear,"The fabric of this dress feels like suede, i couldn't stop touching it. here comes the ""but"": the dress is cut straight down, no definition. the rosette lace is sewn on, like an afterthought just to make the dress not to look plain or cheap. i tried it on with a belt and by itself, and i still feel like it's just a plain dress that i can get at a discount store. i'm a big fan of tracey reese and own a lot of her dresses, and i feel that this is the most plain dress she ever designed. size s regu",3,1,3,General,Dresses,Dresses +1080,59,"Comfortable fabric, nice embroidary","This dress can be dressed up or down. it looks cute w/ a black open sweater and looks great alone. the fabric is very soft. although it isn't fitted, it doesn't have too much material either, so it is very flattering on. the back yoke also has the white embroidered flowers which finishes off a quality look. the pockets are nice and light inside. i usually wear a 10/12 and the large fit perfectly. i was also lucky to get it on sale ;)",5,1,4,General,Dresses,Dresses +829,67,,I am most pleased with this tunic. purchased it in red. nice quality and very comfortable casual top. it has a flattering cut that isn't boxy for a long tunic so it's flattering. the weight of the fabric is substantial but not heavy or stiff so it doesn't add any bulk which is a bit slimming. it would work well for a wide variety of body types. i may buy the blue as well.,5,1,0,General,Tops,Blouses +1022,57,So comfy!!,Love these jeans! flattering and comfortable!! great length for short girl!! worth the money!,5,1,0,General,Bottoms,Jeans +886,32,"Comfy tee, but beware of color names!","I received this tee in grey as gift and immediately went online to buy another! + +beware because the color names are confusing. i originally thought it was a mix up in the naming on the website so i ordered the ""red"", thinking i'd get the red colored tee. however, the ""red"" tee is actually a light orange color. the ""orange"" tee is actually a burgundy/red color. + +i ended up keeping the orange colored tee although i actually wanted the red color, because i really do love the quality of this shirt!",5,1,0,General Petite,Tops,Knits +1094,47,"Very pretty, but too pricey","This dress is pretty and is somewhat fitted in the bodice. it does have an a-line fit in the skirt. the stitching is beautiful. honestly the stitching was a little too bright for me. some may like that, but i was hoping for a little more toned down or muted. the colors are so vibrant in my opinion it almost cheapens the dress. the fabric is cotton and it is not lined. i am 5'9"" and it does hit right about where it does on the model. i am sending it back, because i didn't say ""wow, i love this"" w",3,1,4,General,Dresses,Dresses +1080,28,"So soft, great fit","As the previous reviewer mentioned, this dress is great for a dress that doesn't have a true waist. it really fits awesome. so incredibly soft, high quality material, and the mesh pockets are perfection (pockets that are so small/light that you can't tell the dress even had them when looking at it!). the color of the dress is what initially drew me to it (definitely a different color for a sun dress) and after trying it on in stores i would say 'beware.' though it truly is a rich and different c",4,1,7,General,Dresses,Dresses +832,24,,"Loved the look of this shirt on the hanger. however when on, i found that it puffed out in the back. it's fitted through the shoulders and mid-back but the bottom rounds out and creates a lower hump. maybe it wouldn't on someone taller? also, although this wasn't a con for me, the shirt is darker than appears online.",3,0,1,General Petite,Tops,Blouses +975,50,A no-brainer,I got this jacket in the gray. the fit is amazing and it is soooooo comfortable. i love that it is a bit less structured - but still looks polished.,5,1,4,General Petite,Jackets,Jackets +567,41,,"It is polyester but seems good quality. looks like a girls nightgown with the pattern combined with the baby doll dress silhouette and the overall width of the dress. i usually wear a small but, to look like it does on the model, 6-8 inches would have to go in the width.",3,0,0,General,Trend,Trend +1011,53,Flattering and comfortable,"Beautiful neutral color in a comfortable fabric. fits tts. i am 5 ft 2 in and went with the petite. it is a midi on me. i have other skirts from retailer from past years in similar fabric and will say that overtime the waist will stretch even if hand washed carefully. so that being said, buy your size in this skirt, don't go bigger to get a longer length. you can wear it lower on your hips if you like it longer which i think actually looks more flattering. in any case, it's a great piece that no o",5,1,2,General,Bottoms,Skirts +567,34,Lovely but the cut/sizing is not good,"This is a beautiful spring/summer dress, and the quality of the materials is great. i wanted to love it. but the sizing is ridiculous! i'm 5'3"" and 115 and i think you could fit three of me comfortably in the xs. while the pictures of the model in the dress don't suggest it has a shapeless cut, it definitely looked like a sack on me. a sack with a lovely print, but still an ill-fitting sack.",2,0,2,General,Trend,Trend +1078,43,,,5,1,0,General,Dresses,Dresses +1078,78,Like,I love the print and quality and safari look to me. it does run tight across the shoulders i would size up.,4,1,1,General,Dresses,Dresses +1011,56,,"It is delightful, dreamy and yes it is quite right. perfect fit, i wear a size 8 and it was right on!!!",5,1,1,General,Bottoms,Skirts +1011,23,Wrapped in cozy,"Great skirt, easy to wear. perfect weight for spring/fall. very comfortable while still looking stylish. the xs fit well.",5,1,1,General,Bottoms,Skirts +1074,42,Beautiful fabric,"I ordered this in a 4 (34b, 140lbs., 5'8"") because it looked like it would run big, and it definitely does! the 4 fit comfortably but the cut of this dress made me look about 10 lbs. heavier than i am. i am pear-shaped and this dress made me look very bottom heavy, so i returned it. that said, the material is gorgeous!, as it is the perfect weight and the colors are much more striking and complementary in person. if i had a straight(er) silhouette and a larger bust, this dress would have been a",2,1,2,General,Dresses,Dresses +1047,37,Cute and comfy,"These are very versatile pants. you can pair them with a tank top and flip flops and be ready for a casual summer day or pair them with a dressy top and heels and be ready for a formal function. i've only worn these once to a formal city function and felt put together and comfortable. with the pants i wore a black lace button up top, satin peep toe heels, black tuxedo jacket and a chunky necklace...very cute. my husband loved it. i'm 5'3"", 117 lbs and the xs fit perfectly. they only downside to",5,1,3,General,Bottoms,Pants +1078,60,I fell in love!,I am a horse lover so i had to have it as it is of good quality and unique. be mindful that it runs small and fits alittle snug across shoulder also excellent for layering.,4,1,0,General,Dresses,Dresses +1028,42,Cute,"Definitely cute and good fit but the distressing at knee is open and will probably get worse, worth it if price lower... maybe",4,0,0,General,Bottoms,Jeans +880,40,Stylish sweatshirt,"This general sweatshirt is cute, stylish and can be dressed up or down. a fresh alternative to the standard grey sweatshirt with leggings for casual mornings.",5,1,6,General Petite,Tops,Knits +880,36,Boxy but cute!,"I love the model's pairing of this sweatshirt and was struck by it when i walked in the store! like the other reviewer said, you could dress up or down (despite the ""sweatshirt"" name) and i'm planning to wear it with the galleria corduroy skirt and gray booties. love the stitched pockets on the side! (but i'm unlikely to put anything there since it would probably fall out!) + +sizing: definitely boxy as the first reviewer said. i'm solidly a small in most tops, and this one i have a bit of spare",4,1,0,General Petite,Tops,Knits +880,50,Comfortable as hoped,"I was looking for a top that would be comfortable as fall was approaching and this hit the mark! it isn't fitted but it doesn't look sloppy either. though it is comfy and is called a ""sweatshirt"" the fabric allowed me to pair it with a charcoal skirt. i am very pleased with this shirt and would highly recommend it as it can be worn casually with jeans or paired with a skirt.",5,1,0,General Petite,Tops,Knits +1011,47,Great texture,"I tried this skirt on in a size medium. i am usually a small (4-6, 39 inches around the hips and butt) but there were no size smalls. the medium looked good but the waistline may have been a tad loose. the texture of the skirt is wonderful and it is lined! overall, the quality seemed good and it had a nice heft to it. the only thing i might say is that is is quite long--closer to my ankles and i'm just shy of 5' 9"" and leggy to boot (i wear a 33"" inseam with flats). with tall boots on, you saw j",5,1,14,General,Bottoms,Skirts +1047,49,Spring staple!,"Saw these in store and had to have them. online pictures do not do them justice. great pattern, fabric and features. can be dressed up or down. sizing is accurate--i am 5' 4"" and 117 lbs and bought an xs. they fit perfectly. wish they had more colors/patterns to purchase.",5,1,4,General,Bottoms,Pants +1011,33,Sweater wrap midi skirt,"I'm so upset that this didn't work out. i'm petite at 5'2 and ordered this skirt in petite, however, i felt like it swallowed me up. the fabric is thick and warm so this is definitely only cold weather attire. i'm the picture it looks like there is a little leg showing, but on me, i feel like a schoolmarm. sadly, this is going back.",2,0,2,General,Bottoms,Skirts +1047,39,,"I received these pants today and they're perfect. as another reviewer stated, ""i would definitely not wear these for lounging"" you can dress them up or down. i feel like these will be my favorite go-to pants this spring. i highly recommend the design and pockets are perfect",5,1,0,General,Bottoms,Pants +828,39,Great everyday shirt with a twist,"This shirt has much less color variation in person (online it appears vaired, imo). in person it is a darker classic charcoal grey with little to no color variation. +---------- +this shirt is very soft, of medium weight, and fits tts. the buttons down the back of the shirt are functional, and the backside pleating ensures you don't show too much skin if you opt to leave one or two unbuttoned. +---------- +this is just a nice all-round staple shirt. there is no high-super low shirt tail hem; additio",4,1,45,General,Tops,Blouses +1011,69,Sweater midi skirt,"I hesitated to buy this skirt even though it was love at first sight. i was afraid it would be to heavy, and add weight. i'm so happy i ordered this one, it'll be a closet staple for me. i love skirts, and am blessed to live in a mild climate in california. i can wear it all year long. right now i can pair it with a slim turtleneck tucked in, with high heel boots, or heels, later can pair with crisp white button up tide at the waist, and strappy sandals, or a tank top, and sandals. it goes with",5,1,3,General,Bottoms,Skirts +880,33,Gross!,"Ugh! i am not sure how anyone is giving this good reviews. i tried small, medium and large on and huge huge huge, boxy, fabric bunched at the shoulders and did i mention it's way too boxy? the fabric and pattern are so pretty but the fit is just awful. i would try this one on before purchasing.",1,0,1,General Petite,Tops,Knits +828,38,,"I agree with the previous reviewer - the color variation is much more subtle than what is shown online. i would not have bought it had i not seen it ""in real life"". this is a super cute, soft and comfortable shirt. it fits tts and can be worn with jeans, leggings or a skirt. for reference i'm 5""7 and 122 lbs and i took a small but probably could have gone with xs as well but i like the extra room.",5,1,2,General,Tops,Blouses +880,40,Beautiful and soft!,Love this sweatshirt! will look great with gray pilcro jeans i bought recently. xs fits perfectly and i am usually a s or xs.,5,1,4,General Petite,Tops,Knits +880,45,,"Not your classic sweatshirt. can be worn with black, grey, mauve",5,1,3,General Petite,Tops,Knits +567,57,Frompy,"I so wanted to like this dress i ordered it for summer graduation and weddings. i usually wear a 4/s and even the xs is was too pig. it drapes like a smock. the material is heavy. the only thing pretty about this dress is the pattern and color. + +still looking for the perfect dress...",1,0,1,General,Trend,Trend +880,43,Chic comfort,"I am not generally a fan of sweatshirts but when i saw this on a recent retailer email, i new i had to check it out. the colors are more vibrant in person and not muted like the photo but this wasn't a deal breaker for me. because of the boxy shape, i went with a s. i love the cozy feel and that it is still stylish. i can see this piece getting a lot of use this fall/winter. in fact, i am wearing it right now!",5,1,0,General Petite,Tops,Knits +1047,66,Loungers,"I haven't worn these yet but i wouldn't wear them just to ""lounge"" in. i wear an xs & they fit good & tts. they have an elastic waist but it drapes nice & doesn't bunch like some do. the material is soft & hangs nice. & doesn't seems like it will wrinkle. love the pattern of the black print ones. it's black, tan & white & kind of a paisley print. i think it looks better on than in the picture.",5,1,0,General,Bottoms,Pants +1078,54,Great fall dress,I tried this on in the store and loved it. it is very comfortable. i sized up one or two sizes. i am very thin and somewhat petite but wanted a little more length. it will be a great dress for fall as the fabric is heavy enough to wear into fall. i think it looks better in person than online. would recommend it if you like this kind of dress. love that it has pockets too. great quality.,4,1,0,General,Dresses,Dresses +880,32,Cute for fall!,"I was debating getting the petite vs. regular sizing. i ended up going with the regular sizing for the addition couple of inches in length. it is very comfortable and not at all a sweatshirt but more of a heavyweight, wider long sleeve.",4,1,0,General Petite,Tops,Knits +1074,37,"Easy, comfortable dress","I was looking for a dress that had a lot of color. since i usually stick to neutrals, this was out of my comfort zone, but i found this one and loved it. it's comfortable, not clingy, and i can wear a regular bra (bonus!). i wish the waist wasn't dropped, but i think it worked well. i plan on wearing it more in the spring/summer, dressing it up or down will be easy. + +i'm usually a size 12 and this fit true to size.",4,1,0,General,Dresses,Dresses +1011,31,,,4,1,0,General,Bottoms,Skirts +860,37,"Cute, flattering, and goes with everything","I bought this top to add some more color and pattern to my summer wardrobe. it is really cute and a flattering cut. i just had a baby, so it's perfect for showing some curves without clinging. if anything, i'd say it maximizes my bustline more than i expected, but is still very flattering. i think i'm still getting used to my new bustline ;) soft, comfy fabric. not too hot. i get compliments when i wear it!",5,1,0,General,Tops,Knits +833,69,Nice!,"Very old color and item. a little full, but comfortable.",5,1,0,General,Tops,Blouses +1089,35,Great dress,"Wore this dress recently on a work trip. traveled very well, cut and fabric are super flattering",5,1,0,General,Dresses,Dresses +833,48,Took a chance,"Purchased this top because of the sale. i got it in the peach and the maize. i think it is big, boxy, and loose but at the sale price it is not a bad top to have. the colors are vibrant and striking. pretty with shorts and capris. i did size down from 2 to 0",3,1,0,General,Tops,Blouses +862,43,Great spring top,"I was hesitant about buying this at first because i'm busty (f-cup), but i love this top and have received a lot of compliments on it. and then i tried it on again at home with leggings and loved it. it's a great spring time top to wear with leggings and boots.",5,1,0,General,Tops,Knits +1084,60,Perfect dress,"This is the most perfect dress i've ever bought. i'm 5'8"" and the length was perfect. the cut is flattering and very slimming. the fabric is gorgeous and the pattern is stunning. please offer more dresses in this cut!!",5,1,0,General,Dresses,Dresses +862,54,So fun!,"Love this top. bought it in black and first day i wore it to a party and i think everyone gave me a compliment! it is very flattering to my shape. have a bit of a pooch, and can't even tell. looks great with skinny jeans. look forward to wearing many more times",5,1,0,General,Tops,Knits +860,34,Beautiful,Very happy with my purchase. fit very nice! already received compliments!,5,1,0,General,Tops,Knits +833,55,Too wide,I was so excited to receive this topped then i tried it on. i am a petite and i normally wear an xs so i ordered it in both a size 0 and a size 2. it was huge! it looked like i was wearing a potato sack!!! i really wanted it to work because the fabric is absolutely beautiful! i am so disappointed.,2,0,4,General,Tops,Blouses +1084,39,"Pretty, thinner fabric than expected","Also, a little on the bigger size, i ended up not keeping the xs petite, as i felt it was a little loose and long (would have been more flattering on me a tad narrower and a bit more above my knee. colors are really pretty and so is the pattern. very comfortable and light. + +xs petite bog on 115 lbs, 30 dd, 26.5 in wasit.",4,1,0,General,Dresses,Dresses +833,39,"Love the color, but not the fit","I wish this fit more to the body, it really does flare out a lot,a adding volume to the person wearing it. the mustard color is beautiful, so is the pink (i ordered both to compare). but the 00 was still big on me (and p). so i passed. +fabric is light for summer, so if you are thin, not muscular, perhaps that would look great?",3,1,1,General,Tops,Blouses +833,32,"Pretty, but unlined!","I really love the look and feel of this top, perhaps this was mentioned in previous reviews, but it is unlined, which i hadn't realized when i ordered it. so the eyelet details are will expose skin unless you wear a cami underneath.",4,1,0,General,Tops,Blouses +833,36,,This top is huge! i'm typically a size 2 or 4. i bought the 2 and its huge. it's wider than it is long. even if i sized down to a 0 it would still be too much fabric. i'm so disappointed! beautiful color and fabric but there's so much fabric. i love a flowy top but this one is way too much. :( i will be returning this top.,2,0,18,General,Tops,Blouses +864,52,Modern shape summer weight top,"I bought this because i thought it would flatter my boxy big busted shape and it does. however, while i liked the irregular hemline on the model, on my 5'5 frame it hits at a strange place and so i will hem it a little shorter. the fabric is extremely thin and not lined so this is definitely a light weight summer top even here in the south. i love the modern styling but the quality of the fabric is a concern, definitely no dryer on this one.",3,1,4,General Petite,Tops,Knits +833,35,"Fresh fit, great colors","I bought this top in the store and love it. i was surprised to see negative reviews online. i am small chested, curvier on the bottom. this top does have a wide and short fit but the cut is flattering. all three colors are beautiful. i wear it with high waist short jean shorts and it looks very fresh.",5,1,0,General,Tops,Blouses +860,46,Print version is beautiful in size xl,"I ordered the xl and it fits me the same as pictured on the model so it's true to size. the peplum is very comfortable. i love the mix of colors, especially for fall. i've always had great luck with the fit & wear of this brand. i'd love to see this same style done in lighter colors for summer.",5,1,1,General,Tops,Knits +860,42,Love it! want the blue color too.,"Fits well, comfortable and flattering. i wouldn't call this pattern fabric purple though. it is definitely multi colored and purple should not be called the dominate color.. the picture is an accurate representation of the color.",5,1,0,General,Tops,Knits +860,27,,Lovely top that will be a great year-round staple to my wardrobe. peplum and pleats are flattering and not bulky. good weight for spring and beautiful for fall with a cardigan. looking forward to wearing it with high -rise jeans and and pencil skirts.,5,1,14,General,Tops,Knits +862,55,Nice material but weird fit,"I ordered it in two colors because of excellent reviews. nice material, but fit is not for me. i will be returning them.",3,1,0,General,Tops,Knits +833,55,Beautiful!,"This top is so pretty. i purchased the peach color. it does run large so you will need to size down. you do not need to wear a cami which is nice in the summer. it will look great with jeans, white jeans, shorts, dress it up or down. its not suppose to fit tight... love it!",5,1,8,General,Tops,Blouses +1089,36,Not what i expexted,"While i had high hopes for this dress to be my ""go to"", unfortunately o couldn't get passed how cheap the material felt. the cut and pattern both worked on my petite frame, however, the cut out pieces in front are not lines and exposed the top portion of my bra.",3,0,0,General,Dresses,Dresses +1089,28,Beautiful pattern,"I lucked out and found one of these in my local retailer and i absolutely love it. fits well, although, i do think that the sleeves run a tad bit narrow when they are folded up, but i prefer the dress with the sleeves down anyway. fits very true to size. i can't wait to wear this with boots and leggings!",5,1,0,General,Dresses,Dresses +833,45,Pretty but,"Ok, received this in the mail yesterday and tried on this morning, i ordered the size 2 snd it is really big. i notice that the armhole sag and there is a lot of extra room everywhere. i am a 32d on the top so that is why i ordered the size 2, but i will return this and order the size 0 and i hope that will take care of the sagging arm area",4,1,15,General,Tops,Blouses +909,53,Never been more disappointed...,"Retailer consistently provides unique, sophisticated and quality made clothing. with the exception of an occasional purchase at their sister companies, i shop with them exclusively. i suppose that i can't expect 100% perfection from retailer-but 99% of the time-that's what i get. this is that 1%...this sweater is truly awful! i cannot (or find it very difficult at least) begin to describe what this sweater is like but it is so unlike retailer that, had it not been for the distinct pattern on the front",1,0,5,General Petite,Tops,Fine gauge +833,32,,"Like the other reviewers have said, this is a wider shirt, but the width done is in a stylish way. i did not think it looked frumpy or sack-like on. however, i found it to be rather short. i bought a 0 regular (not petite), and it fits shorter than many shirts i have from retailer, madewell, etc. which have the same looser fit. i am 5'2, 115 lbs., so it is odd that it fit somewhat short on me...if you are tall, it might bare your midriff some. i bought the peach, which was close to the color pictu",4,1,1,General,Tops,Blouses +860,40,Cute top,"I ordered this in a s (for reference, i am 5'7"", 128-130 lb, 32dd, with a 27"" waist), and it fits nicely. i have a fairly large chest, but i didn't find that the pleats laid awkwardly or over-accentuated my boobs, but i got the purple motif so the pattern (and the higher neckline) may have helped keep the top looking cute and stylish but still modest. on me the top drapes a little more than than it does on the model, but it's flattering and not at all sloppy thanks to the fabric, which has a jus",5,1,1,General,Tops,Knits +833,40,Can't believe this top hasn't sold out yet,"I bought this top in 2 colors. it was endlessly comfortable and easy to wear, so i bought it in the 3rd color. it's so versatile that i found myself trying to wear it in too many situations - travel, weekends, and work. the feel of the fabric is gorgeous, but it pills after wear. so when the top went on sale, i bought an extra set of all 3 colors. now i have a set for play and a set for work. i love this shirt.",4,1,0,General,Tops,Blouses +862,58,,"This top is absolute perfection. i don't think the photo does it justice as it looks so much better untucked. i don't even have great toned arms, but it's still so flattering. i got the gray one amd might get another color. great value, as well! i'm petite - 5'1"" and bought my usual size small.",5,1,1,General,Tops,Knits +833,33,Fits like a tent,So much extra fabric. not something i would recommend buying online.,2,0,0,General,Tops,Blouses +1077,29,Great dress,"I originally bought this from my local retailer in an xs petite. i think it was a return. i brought it home and decided it was just too big for my 5'4"" 116# frame. i ordered it in an xxs petite and am keeping it. the colters are just so pretty and it is machine washable which is an added bonus. it is still flowy but not objectionably so. it is meant to be unstructured and bohemain i think. looking forward to wearing this on my upcoming trip to italy.",4,1,0,General,Dresses,Dresses +833,36,,,3,0,0,General,Tops,Blouses +864,44,Beautiful,"I really am happy with this purchase! i am only 5'1 and this will be a perfect dress for me, the cuts hit at just the right spot!",5,1,2,General Petite,Tops,Knits +833,21,Love love love!,"I know a lot of folks thought this top was too big/boxy, but i'm pretty slim up top with a big booty (quintessential pear shape), and i think the shape is totally flattering. your mileage may vary, but with free returns i'd just try it on first. i sized down one size, which helped, and got the raspberry colored one. i adore the color -- it's impossibly vibrant, and beautiful for spring summer or fall. the eyelets don't have any cloth underneath, just bare skin, but they're so small that i don",5,1,0,General,Tops,Blouses +862,45,Better than pictured!,Lovely sweater that is good with jeans or a skirt. i ordered an xl and my only complaint is that i wish it were a bit longer in the front. i am heavy chested though so that's how most tops fit me. i ordered the gray/black and it's really nice. i receive lots of compliments.,4,1,0,General,Tops,Knits +833,58,"Great, feminine blouse",I absolutely love this blouse...i ordered it in peach..then waited for the raspberry to come back in my size...now i have 2 colors...it runs really large....but putting a tank or cami underneath is fun :-),5,1,0,General,Tops,Blouses +833,29,Too large and not flattering,The top ran too large and it made me look more bustier than i am and rounder in my midsection by how it fell on me. maybe would've been better for someone with a smaller bust. the quality of the fabric was just okay.,2,0,0,General,Tops,Blouses +860,34,A nice twist on the traditional peplum,"A fun top! +i tried on both the medium and large (i'm between sizes, 5'4"", 34g) and preferred the large. the medium waist rode up a bit on my torso, so the large stayed down a bit. also, the medium pleats did not fall as nicely on my chest.",4,1,0,General Petite,Tops,Knits +834,34,Beautiful and comfortable!,"I'm surprised there are no reviews on this blouse yet! i've had it for a couple of months and love it! it looks great in the spring with my flora retailer infinity scarf. the color is beautiful...i've gotten many compliments on this too. it fits well and has a small texture, which makes it more interesting.",5,1,3,General Petite,Tops,Blouses +1077,46,"Huge, even xxsp","What a beautiful, comfortable material and the colors are stunning. i'm so disappointed at the unflattering cut. it fits like a shapeless tent, even the arm holes have big gaps that aren't snug. i am 5'2, 105lbs, and ordered the xxs petite.",2,0,4,General,Dresses,Dresses +860,24,Unflattering for pear shapes,"I wanted to love this top so badly. between the beautiful photos and the good reviews, i didn't think i could go wrong with it. unfortunately, it just didn't look great on. the bust area sagged on my smaller chest, and then the top flared way out from the waist down. it doesn't lay even remotely flat like the photos would have you believe. maybe this would look better on hourglass or slim types. the quality does appear to be good -- the material is weighty and soft.",3,0,2,General Petite,Tops,Knits +833,45,Beautiful colors. comfy. swingy,Must wear tank under or i feel immodest due to eyelet holes. beautiful. i'm machine washing w delicates n hang dry. comes out great. easy breezy.,5,1,0,General,Tops,Blouses +833,57,,,4,1,0,General,Tops,Blouses +909,68,Said no to camo,"Great dramatic cardigan, wearable art, and not for the meek. i'll wear with a leather skirt and boots, jeans and boots, or a dress and boots. if the lack of closure at top bothers you, attach something --be creative. i like the movement that alternately hides and reveals the statement jewelry worn.",5,1,3,General Petite,Tops,Fine gauge +833,66,"Beautiful, but flawed","I bought 2 of these in peach and maize. the fabric is yummy and soft as silk, the eyelet detail gorgeous and the colors are great, however there is too much fabric! if only a bit less, the fabulous swing shape would work. that said, i'm keeping mine if just for the gorgeous fabric and colors. i would even consider buying the third color just to wear around the house, if sale was on sale again.",4,1,0,General,Tops,Blouses +1084,29,Beautiful easy to wear dress,"Weighs nothing. so comfortable. great length, not too short. fits a tad loose, but very pretty and easy to wear. fun print, flattering, casual style with a touch of class. 5'3 110lbs and the xs fits just as it shows on the model.",5,1,0,General,Dresses,Dresses +864,23,Drapey,"I am 5'6"" and wear between a 9-10 pant and m-l tops depending (i would consider myself a pear bodytype bc i have a thicker midsection and flat everywhere else). for this, i ordered a medium and it was slightly loose so if you are conscious about your midsection, ordering your normal size will probably be fine. the fabric is very lightweight like a normal drapey t-shirt would be made out of, just to keep in mind. the draping is really cool though. i would just probably hand-wash/ dry-clean, or if",4,1,10,General Petite,Tops,Knits +833,36,,"After reading the reviews i sized down to a 6. once i received it, i loved the fabric and color, however it was so ill-fitting. it's like the designer didn't even use female measurements and used a box to make this top--too wide. i liked it so much that i sized way down to a 0 and it still fit horribly. it is too wide and not long enough. both are going back!",1,0,1,General,Tops,Blouses +860,51,It's all good,I had this on my wish list as soon as it came in. i just bought it last week and i'm so glad i did. i bought the purple print and it is really pretty. here in northern cal i can wear this almost year round. i am often right between sizes when it comes to deletta tops. this one is a little bit big i'm hoping that the extra room will help keep it cool during our 100 degree days.,5,1,0,General,Tops,Knits +860,55,Versatile,"I bought the purple motif in size medium, my regular retailer size. the fit is true to size. the knit is soft and comfortable. this top can be dressed up or worn casually. it is a great all-around basic top for summer.",5,1,1,General,Tops,Knits +864,39,Just right,"This shirt dress has the right amount of body skimming drape and length to flatter my short potbellied square waisted self, i wish they made more versions more colors more sleeves!",5,1,0,General Petite,Tops,Knits +862,30,Love this tank!,I can wear this top with jeans or a business suit. the cowl neck is the best part. it gives this garment a little pop. yesterday i combined it with a black business suit and white pearls. i had so many compliments!,5,1,0,General,Tops,Knits +860,64,So adorable!,"I ordered my usual size s in the purple print. this peplum top style, colors/pattern will go easily with pretty much anything.. shorts, pants, jeans & skirts. wear for casual or dress it up. for me the fit is tts. armholes provide good coverage & length is fine. the top has a bit of stretch & doesn't feel restrictive. the waist is banded & a little loose which is fine. don't like tight fitting waists on tops. i like that the waist seems a little lower than other peplum tops at retailer. the skirt",5,1,12,General,Tops,Knits +1089,39,,"Beautiful fabric, but the fit was off. the picture makes the dress appear fitted than it actually is. the belt is definitely needed, but would leave a lot of fabric in the back of the dress giving it a less than tailored look. + +also, the arms and the top portion are a tad small, so if you have a larger bust/arms, this dress may be tricky. i am a 34b and the button in the xxsp was puckering a bit.i was really looking forward to this one for fall, but was no way for me to make it work.",3,0,2,General,Dresses,Dresses +860,38,"Super cute, comfy, flattering","Love this tank! the purple motif is gorgeous, and the carbon color is a rich dark gray with a slight blue tinge. at 5'4"" / 130# with a fairly proportionate torso to leg ratio, i sometimes need a petite in tops like this to avoid the armholes being too long. in this top i found the petite small too short, but the regular small was perfect. the waist hits right above my natural waist, the hem is just a skosh lower than the model photo, and the armholes are the right length. beautiful flattering cu",5,1,3,General,Tops,Knits +833,43,Size down!,"Whatever happened to sizing! pretty print and color but has enough fabric for 2 tops. it is also unlined which is not a huge issue. i wore it with a cami. the arms weren't too gaping for me, thankfully. i tried to make it work with a wide belt but i will have to get it tucked on the sides. i am 140 lbs and got the small. should have gone 1 or even 2 sizes smaller.",2,0,0,General,Tops,Blouses +833,34,Massive!,"I get that it's a swing tank, and it's supposed to be loose but i got a 00p and it's huge! too much material. with that being said, it's such a cute top that i decided to keep it. i got it taken in about 2 inches on each side and it now looks great.",4,1,1,General,Tops,Blouses +1077,53,,"This dress is absolutely lovely. i couldn't leave the store without it, even though it was full price and i have a million dresses. it's just that great. i am 5' 8"" 130 lbs and bought the small",5,0,8,General,Dresses,Dresses +862,74,Classy and funky!,This shirt has it all. great staple piece to add to your wardrobe. not only is it classy with a pair of black pants and booties but you can add a little spice to it by dressing it up with some funky earrings. found it to be a bit large in the armpit area so i sized down.,5,1,0,General,Tops,Knits +833,65,Fine workmanship and fresh swing shape,"I love this feminine blouse and the gorgeous colors on! it's a fresh shape that is truly flattering. i like that it comes in specific sizes so the proportions seem accurate. i bought the 8 in peach; all the colors are very pretty. i am a usual 8/medium and am 34f, so the regular bra-friendliness is essential. this is a new, fuller shape for me. i'm on a quest at this time of year for clothing that feels comfortable in the beginning heat of summer, and this is a lovely choice. you could pair it w",5,1,39,General,Tops,Blouses +833,41,Love this shirt!,This shirt is a steal at the sale price. i've received many compliments. it is a swing top- so not a lot of form. i wear a cami underneath & have found the style to be comfortable for work.,5,1,0,General,Tops,Blouses +1089,44,Beautiful little dress!,"Like the other reviewer said, the print is more beautiful in person. i am usually a small in meadow rue, and this fits well in a small. my only issue is that the lining hangs out from the bottom, and hangs out unevenly! hopefully i can exchange it or get it sewed up evenly.",5,1,2,General,Dresses,Dresses +833,55,Sweet top,This a beatifully made top - it does run large so i sized down. it has a very floaty quality but it truly lovely so i kept it and glad i did - i've had many compliments! have run a ribbon through the holes around the waist once to pull it in and it worked really well - it's convertible!,4,1,1,General,Tops,Blouses +860,40,Very flattering,This top is super flattering and comfortable. perfect summer wear!,5,1,0,General,Tops,Knits +1084,32,Looked like a sack,"Was very disappointed with this dress. it's very baggy, no shape. felt like an oversized sack. purchased in med. bust area was only semi good fit all else flopped :(",2,0,3,General,Dresses,Dresses +862,48,Versatile piece,"This cute top is made in the usa- yay! it is a flattering cut and looks great under jackets. i prefer the ivory color and feel of the fabric. the black and white was cute, but hung strangely and felt stiff. i am size sm/med, 34c and went with the small. cowl is cozy and can be styled to keep you warm.",5,1,0,General,Tops,Knits +850,51,Perfect summer blouse,"Perfect! very pretty and flattering without being too fussy. helps to hide my tummy and very well made. that said i have fairly wide shoulders and a larger ribcage so i had to size up considerably. usually a 4 or a 6 and i needed a 10 to be comfortable. the 8 went on but the fabric has no give so i sized up. i am never a 10 but that's what worked in this blouse. surprisingly it still looked nice and tailored. definately runs on the smaller side. + +lovely. worth the full price in my opinion.",5,1,1,General,Tops,Blouses +1020,50,Great design and fabric,"This skirt is so light and breezy perfect for hot or humid weather. the first time i wore it i got compliments all day long. the length is perfect for a more conservative look, i don't wear mini skirts and the slit on the side shows just the right amount of leg. it runs a bit large so i had to go down a size.",5,1,7,General Petite,Bottoms,Skirts +850,60,Beautiful and flattering,"I love this blouse. it's really pretty and very flattering. it makes your waist look small. i usually wear a size 6 or 8. after reading the reviews saying it ran small, i ordered an 8 and a 10. the 10 fit perfectly, so i didn't even try the 8 on. it is a little difficult to get on and off due to the zipper on the side. that is my only complaint.",5,1,0,General,Tops,Blouses +850,38,Gorgeous..runs small,Beautiful airy well made blouse. very flattering and feminine. i normally wear a size 8 and ordered a 10 per the other reviews and i am glad i did! the fit id perfect.,5,1,0,General,Tops,Blouses +850,59,,"Very flattering and love style, print and color. i sized up one size and perfect fit. great with page grey wash skinny mid rise jeans.",5,1,3,General,Tops,Blouses +1033,31,Surprisingly nice,"I'm not typically a fan of pilcro pants compared to paige or other brands like j brand, however, these simple black skinny jeans were just what i was looking for. they hit perfectly at the ankle and look great with a bootie. they are quite stretchy and i like my black jeans truly like a legging, so i sized down 1.5 sizes. i'm typically between a 30 and 31 and i purchased a 29 in these. initially they were snug around the waist but eased with wear. the material is flexible yet sturdy.",5,1,0,General Petite,Bottoms,Jeans +850,28,Beautiful,"This top is lovely; great colors for spring, light material, flow-y, and the cinching below the bust line creates a super flattering silhouette. i did have to size up to a 2 (i'm almost always a 0) to make some room for the girls (i'm a 32 c/d depending on the brand), so larger chested women may want to size up, but it's well worth it",5,1,0,General,Tops,Blouses +850,43,Beautiful,"This blouse is romantic and timeless. the tonal print is lovely, the peplum cut flattering. i followed the advice of other reviewers and ordered one size up, which fits perfectly. it has a hidden side zip to make for easier off and on. i love the mix of cotton and silk which makes it breathable and lightweight. thank you, retailer, for finally making a blouse with natural fabrics that do not need a cami underneath! perfect for warm climates.",5,1,2,General,Tops,Blouses +850,39,"Runs small only because of ""vanity"" saizing","I used to be a solid ""2"" then had to move down to 0 and 00... #i am 5'1.5"" and 115 lbs#, in this definitely a 2. the tighter part in the fitted waist is why i recommend peiople sizing ""up"" #if you are between sizes, choose bigger, teh cutis so flattering, it wont matter#. +the colros are really pretty, the flow of the shirt is romantic, sleeves are forgivin can't go wrong. hte back is a little longer, and covers the tushy. i can see this with flared bottoms, or pencil skirt or skiny jeans, even",5,1,3,General,Tops,Blouses +1033,27,"Great fit, color runs","I love the fit of these pants. 5 starts for that. i wish the pockets were a little closer together, but it's not the end of the world considering how well they fit. the real drawback is that the dye runs like no other pants i've had before. i had them on for a few hours and my fingernails had turned green and my skin was a greenish color. i am going to try to soak them in water a few times to see if that helps. i would still recommend these pants, but wash them a couple times before you wear the",4,1,0,General Petite,Bottoms,Jeans +850,53,Runs small,I love this blouse but my normal size didn't even come close to fitting me. i think i would have had to go 2 sizes up. too bad cause it is a beautiful top. not good for us busty girls though.,3,1,2,General,Tops,Blouses +850,38,,"This is a very feminine and pretty top, but it runs really small. after reading the reviews, i ordered a size larger; however, i think i should have ordered 2-3 sizes larger.",4,1,0,General,Tops,Blouses +850,29,Classic anrtho,"I love this top - it has the pattern and detailing that i feel like retailer used to do consistently, but often skimps on now. tit definitely runs small - i usually wear a 6 in retailer tops (sometimes a 4) and the 8 is quite fitted on me.",5,1,1,General,Tops,Blouses +861,61,Poor quality,"I bought this t-shirt in pink, blue, red, grey and black over the past year. every one of them except the grey, has gotten little pin holes in the front of the shirt below your waistline. i've returned them all. the fabric is thin and the quality of the t/shirt is terrible.",1,0,5,General,Tops,Knits +850,40,Beautiful but runs small,"This is a gorgeous blouse, but it runs small in my opinion. i consistently wear a size 2 in moulinette soeurs, and i'm trying to decide if a 4 will still be too small, and if i need to exchange for a 6. construction and materials are lovely, just consider sizing up if you purchase this blouse.",5,1,22,General,Tops,Blouses +1011,66,Pays to read reviews,"Based on the two reviews on this skirt and, for the sale price i purchased the small--i 'm usually a large/extra large. i carry my weight in the middle, and this skirt stills works. very sofisticated striping, slimming! i haven't experienced any slipping, but i haven't worn it for any great length of time yet. there are numerous ways to create chic looks.",5,1,1,General,Bottoms,Skirts +850,41,,"Beautiful top but runs very small. based on some of the reviews that i read i ordered two sizes up from my usual size and it is still a little tight in the chest and around the ribs. i would like to exchange for the next size up but it is sold out in that size. considering how small this blouse runs it would have been nice if retailer had ordered some extra tops in larger sizes as i am sure that many people will have to size up. regardless, i love the blouse and would definitely recommend it to an",5,1,0,General,Tops,Blouses +850,29,,This top is adorable! runs a bit small but so cute worth the price and tons of compliments!!!!,5,1,0,General,Tops,Blouses +850,21,,This blouse is very beautiful and flattering. it's just a little bit see through so i will wear a cami underneath. as with sizing i did size up as the other commenters recommended to do so.,5,1,0,General,Tops,Blouses +850,42,Perfect peplum,I purchased this blouse for an easter brunch and couldn't be happier! the feminine/romantic print is a gorgeous addition to my spring wardrobe. i've paired it with a pencil skirt and heels for a dressier look as well as my favorite ag cuffed denim and sandals for a more casual daytime look.,5,1,0,General,Tops,Blouses +850,60,Great little blouse,Light and airy. runs really small. had to go up 2 sizes. a little pricy but overall a cute blouse. not your typical blouse.,5,1,0,General,Tops,Blouses +850,49,Very pretty and flattering,"This top is very pretty and figure-flattering because of the way it nips in under the bust. the neckline and color are also flattering. however, it runs a bit small and you need to get the right fit for the bust, balancing the band under the bustline with the roominess of the chest area. there is a side zipper but it can still be a little tricky to get on and off. i wound up not buying it due to the price, but i'd probably snap it on sale.",5,1,38,General,Tops,Blouses +850,47,Beautiful top but very small,When i saw this top.... i had to have it.....runs very small... would size up especially if curvy on top.......sheer but not too sheer...... feels and looks delicate...... no problems so far,4,1,0,General,Tops,Blouses +850,46,Cute top. sizing not correct.,"I just purchased this cute top at my local retailer store and definetely the size is way off! in blouses i wear a size 6 (small or medium) with a 34b bust, tall and slender and i had to purchase a size 12 (what????). + +overall so cute and could not pass it up. good luck. try it on before purchasing.",4,1,2,General,Tops,Blouses +850,28,Gorgeous and so very feminine!,"Beautiful,delicate and unique cotton blouse that accentuates the waist and falls nicely down the belly. i love the floral print, very appropriate for spring/summer. i agree with the other reviewers who've mentioned that it runs small. i have a bust size of 34 dd and waist size 25 and i had to size up to 12. nevertheless, i am really looking forward to wearing this with a pair of skinny jeans and some nude pumps for a girls night out.",5,1,1,General,Tops,Blouses +1084,45,Yes!,"Oh my goodness, i paid full price for this dress because i loved it so much. i styled it with a cream lace poncho , also from retailer, and it is gorgeous. at the sale price, you can't lose.",5,1,0,General,Dresses,Dresses +984,37,Love it,This jacket is really cute. i tried in in a large in the store and was too big so i took a chance and ordered medium on line. i have broad shoulders so i was a bit worried. it's perfect. very fitted and cropped. but will look great to throw on over a dress. for reference i'm 5 foot 6 inches and a 34 c. 132lbs. slender but athletic. medium was perfect.,5,1,1,General,Jackets,Jackets +822,45,"Fantastic quality, shows bra straps in back","I have always love tracy reese products. this blouse is really fun, nice fabric and the proportions are perfect. but why does it have to show the wide band of my bra across my back? the cut out dips low so i can't imagine a bra that would work with it. it's a 70's hippy themed blouse- maybe the designer expects us to go braless? unfortunately i'm going to have to wear a cami underneath it. my girls need support!",4,1,1,General,Tops,Blouses +850,60,Spring is in the air,"What a beautiful harbinger of spring! this blouse is so lovely and uplifting. for me, tts. i bought the size 4 (34-b) and it fits perfectly. this is a fitted blouse especially in the waistline so, i understand why some say size up. the print is pretty with muted shades of pinks and burgundies. the detailing of beige lace and the tiny buttons on the waist adds a very feminine touch along with the added interest on the back of the blouse. the fabric is soft but not overly sheer.",5,1,2,General,Tops,Blouses +850,42,,"This is a beautiful blouse that runs one to two sizes too small. i usually wear an 8, maybe a 10 on a bad day. i couldn't get into the 8, the 10 was uncomfortably tight, and even the 12 was snug (i haven't worn a size 12 anything since i was pregnant years ago). i think this blouse would look best on a woman without any curves as it adds curves to any woman's body. since i already have curves, i felt like jessica rabbit in this blouse. it was too much for me. again, lovely blouse, but i would no",4,1,0,General,Tops,Blouses +850,36,Beautiful spring blouse,"I love this blouse! it's very flattering- gives the illusion of an hourglass shape. the fabric feels soft and flowy, and the pattern is pretty; it does need a camisole underneath because it's kinda sheer. it does run small! i usually wear a size 0 in retailer clothes, but i bought a size 2 in this shirt and the sleeves are still very snug around my forearms which is unusual for me.",5,1,1,General,Tops,Blouses +1081,21,My favorite dress,"This dress is probably the most comfortable dress i've ever had! the fabric is very comfortable and breathable, and it flatters my straight body type.",5,1,0,General,Dresses,Dresses +582,27,Classic,Great romper i personally would not wear it for ever day - i will be wearing it for a beach cover up while on vacation. for reference i ordered a m and am 130 34b.,4,1,0,General,Bottoms,Shorts +850,81,,"Very feminine and romantic blouse, i love it. it runs small as other reviewer said. i had to go 3 size up, as i want to wear a cami under it. the fabric is soft and sheer. the design emphasizes the nature curve of a woman's body, in a good way. back is longer than the front part. if you like romantic, floral prints and soft fabric, this one is a winner,",5,1,1,General,Tops,Blouses +850,56,"Beautiful spring blouse, but 16s sold out in feb.?","I saw this gorgeous blouse in a store over dark blue jeans on feb. 19. of course, the store stock only went up to a size 12. typical. with the way the 12 fit, i knew i had to size up from my usual size 14, and i did. i ordered it in a size 16, and it arrived on monday, feb. 22 -- with lightening-fast speed. it is breathtaking and fits wonderfully. i like the top button undone, the buttons are gorgeous, and the blouse is very retro, circa 1973, but you definitely have to go up one size. the only",4,1,25,General,Tops,Blouses +850,54,,Love this top! but unfortunately i returned it for exchange coz it was too small for me. hoping there's a sz sm in stock.,1,1,0,General,Tops,Blouses +582,43,Romper rules,Overall great romper! i have a long torso and thicker legs so i sized up to a small and i am very happy i did. the shorts are a bit on the shorter side and go upon the sides so another reason to consider sizing up. the quality is great and super soft chambray with a trendy tie up.,4,1,0,General,Bottoms,Shorts +850,57,Very pretty!,"This is a very pretty blouse. the fabric is lightweight and very soft. i read the other reviews and this does run very small, i ordered two sizes larger than i normally would and it fits very nicely.",5,1,0,General,Tops,Blouses +1084,34,"Beautiful, light and flowy","I was hesitent to order this, was worried it would be too shapeless. i'm glad i ordered it as it is light and flowy though not so much that it makes you look like a shapeless tent. the colors are vibrant and the smooth fabric feels good against your skin. it is lined. i had no issues with the bust (i'm 38c). i wish it were an inch longer (i'm 5'9).",5,1,0,General,Dresses,Dresses +850,26,I had such high hopes,"I had really high hopes for this shirt after reading the reviews. first off it runs really small. i usually wear a small or medium ( 4 or 6) i couldn't even get the 6 on. i probably could have even done a 10. the fabric was extremely flimsy. i was almost afraid i was going to rip it taking it off. other than the sizing and the fabric, it just wasn't flattering on me.",2,0,0,General,Tops,Blouses +984,26,,"I love this denim jacket! it's just a basic light denim jacket with a casual, pre-worn, soft feel. i like how it's slightly cropped. i think it runs fairly true-to-size, possibly a little on the small side. i am 5'6,"" 125 lbs., and 34c and i ordered a medium for a more relaxed fit. if i had wanted the fit shown on the model, i would have ordered a small ? but i prefer jackets to be a bit looser. i love it!",5,1,4,General,Jackets,Jackets +850,52,Beautiful fabric but poor design,"The fabric is beautiful, a bit sheer, but overall lovely. however, the sizing is really off. +fyi: 36c, broad shoulders/back - my usual size in a fitted top (this one is very fitted in the waist and bust) is a 12. i tried the 12 and 14, and the side zipper wouldn't come near closing. it is very, very nipped right under the bust. +so, if you have no bustline and a super small waist, this top is for you. if you are like me, high waist and straight up and down, this is a pass. in fact, it is really h",4,1,6,General,Tops,Blouses +850,58,,"I love it! the fit is very flattering. i read in another review that the top runs small, so i got a small instead of an extra small and it fits perfectly.",5,1,1,General,Tops,Blouses +850,40,"Lovely, but snug!","This is such a lovely top and i am so happy i was able to snag it on sale! trust the other reviewers that it does run small! i am normally a 0 or 2 on top, and i got the 4 - and it's a bit snug! it is very fitted below the bust, but that's what makes it look so nice on. i would definitely recommend, but know that sizing is off.",4,1,0,General,Tops,Blouses +1011,32,Looks good online,"Loved this online, but the xs was too big and the material was too bulky.",2,0,0,General,Bottoms,Skirts +169,30,,"I bought the black leggings and love how warm and comfy they are. i wore them with a tunic and boots to work, and people were surprised that they were leggings. the ribbing makes them nicer than plain black leggings. i want another pair, especially for the price!",5,1,0,Initmates,Intimate,Legwear +1093,35,,"This dress was gifted to me and is a perfect compliment to the holidays. i can't wait to wear it! the bottom portions shines (i am a devoted lover of all things sparkle and shine) but it really stands out with the darker background. the pleats hide imperfections in body shape and would make a flattering dress on most figures. i also like that the top layer extends below the bottom one, leaving little extra sheer to tastefully show more leg.",5,1,18,General Petite,Dresses,Dresses +1021,34,Gorgeous & well-made,"I love this skirt! as a fan of different textures and pretty things, this piece exceeded my expectations! i am always a size 0 or 2 in retailer dresses and the 2 fits like a glove. the length is perfect - just above the knee. ever since i wore a valentino dress with a similar thick, neoprene material, i've adored the feel of it! everything feels firm and put together. the colors in this skirt are beautiful and the pattern is feminine and romantic. it will pair well with lots of different tops too!",5,1,0,General,Bottoms,Skirts +169,38,,,5,1,0,Initmates,Intimate,Legwear +169,42,,,5,1,0,Initmates,Intimate,Legwear +1093,55,Beautiful!,"This dress is just so beautiful. i purchased the teal with beading at the hem. the beading is subtle and beautiful. i'm wearing this do a spring wedding, even though i believe it would be best in cooler months. i so wanted the plum option with the flower aplique at the hem - wouldn't that be perfect for the spring wedding - but all gone! +note - the teal with the beading - the beading weighs a bit, enhancing the lines of the dress - doesn't stick out, doesn't make you look like your wearing a dr",5,1,0,General Petite,Dresses,Dresses +169,41,Comfy,"36dd, 10/12 in tops, 12/14 in bottoms, bought size m/l +very cute pattern on the grey leggings, and the fleece lining is warm. they are thick too, so even stretched they are not see through. i would say 14 would be as large as these bottoms would fit as they are snug, but fine for wearing under skirts and dresses.",4,1,0,Initmates,Intimate,Legwear +169,67,Not as listed,Does not say ribbed. did not want ribbed. would not have bought ribbed,1,0,0,Initmates,Intimate,Legwear +1093,58,Beautiful dress,Beautiful dress. the dress appears more blue in the picture- it is actually green. made well- i love it!,5,1,0,General Petite,Dresses,Dresses +169,68,Perfect,"These leggings are so warm and comfortable. they're thick enough to wear as pants, and they don't stretch and slide during the day. i wish they came in more colors!",5,1,3,Initmates,Intimate,Legwear +816,29,Beautiful details!,"I'm a sucker for beaded detailing, so i couldn't resist this blouse. it's so beautiful and fun! i can't wait to wear it!",5,1,0,General Petite,Tops,Blouses +169,24,,,5,1,0,Initmates,Intimate,Legwear +830,33,,"Love this top..got it in both orange and white and always get compliments, especially on the orange color - beautiful and vibrant color! very comfy top and washes well with no problems. the style does swing but not too huge.",5,1,1,General,Tops,Blouses +169,39,Great fleece lined leggings....,"I'm about 130 lbs. and 6' tall and usually a small would be my size. these fit, but i would be more comfy in a m. they are stretchy, soft and opaque. perfect for under a couple sweater dresses i picked up by retailer!!! will be re-ordering.",5,1,0,Initmates,Intimate,Legwear +169,48,Great leggings!,"I really love these leggings. the different textures that all the colors have make them interesting. quality is great. i am 5 1"" and 125lbs. the s/m fit pretty well but i wish there was a xs option. but still would not hesitate to buy again!! i actually went to retailer tonight to purchase all the other colors,...that's how happy i am with this purchase!",5,1,3,Initmates,Intimate,Legwear +169,26,,"$20 for super comfy, warm leggings. bought two pairs for myself and another pair for my mother. let's be honest, i'll probably be buying another pair.",5,1,3,Initmates,Intimate,Legwear +169,66,,"Love these leggings!!! soft, cozy and yummy feeling! can't wait for the weather to get cooler! these fleece-lined leggings will be a new staple this winter!!!",5,1,3,Initmates,Intimate,Legwear +1035,34,Runs small,"I love these jeans, but they run small. i recommend ordering one size up.",3,1,1,General,Bottoms,Jeans +1074,69,Great garden party dress,I bought this to wear to and english garden themed party and i loved it for this event. it is very bright maybe even more than the pictures if that's possible and the skirt is was long on my 5'4 frame so i had to get it it hemmed several inches so that it didn't give the 50's housewife look. it was comfortable and i the skirt had just enough poof to make me feel great. i could wear a regular bra but not sure where else i'm going to wear this but i'm going to try to come find another event worthy,5,1,0,General,Dresses,Dresses +169,60,Awesome leggings,"These are the best leggings i have ever worn - and i wear a lot of leggings. i am 5' 8"" tall and 127lbs. i bought a s/m. they very soft and warm. they stay up perfectly, and do not pinch or make any lines. i am amazed that they are so inexpensive. i am buying 2 more after this review!",5,1,2,Initmates,Intimate,Legwear +1093,33,Perfect occasion dress,I purchased this dress for a black tie optional wedding in the mansions of rhode island. it was comfortable and appropriate. i received so many compliments from strangers. wonderfully twirling dress for dancing too!,5,1,2,General Petite,Dresses,Dresses +1093,41,Just beautiful...,I love this dress. even more beautiful in person ??,5,1,1,General Petite,Dresses,Dresses +169,39,Excellent product,These leggings are awesome quality especially for the price. they are warm and form fitting. they are thick and the design is nice. i plan on wearing them all winter!,5,1,3,Initmates,Intimate,Legwear +169,33,Amazing!,"These leggings are amazing. by far one of the most comfortable pairs that i own! i should have ordered more. i got a m/l and they fit perfect. the detailing is awesome, and they even stay opaque when you sit, so you don't have to worry about them being see-through. great buy!",5,1,0,Initmates,Intimate,Legwear +1035,46,Runs small!,I loved the look of these jeans-super cute-however they were way too tight! i ordered my usual size 31. they don't fit like a darker pair of serif jeans i own. back they go ! i'd be curious if anyone else found these to run smaller.,4,1,1,General,Bottoms,Jeans +992,42,Beautiful! fruns small for typical retailer sizing,"I love this skirt! i wasn't sure about the mix of the back pattern with the front but it works! it is great for work at a less conservative place and for dinners out too! the quality is great - the skirt is a fine silk, ant it is lined, so you don't need a slip. i think it fits perfectly for my body type, and while it runs big compared to typical retailer sizing, it is true to size compared to other stores in the petite sizes anyway. i am normally a 0 petite, 5'2"", 104, waist 24.5"", hips 34",5,1,5,General,Bottoms,Skirts +169,29,,"Great leggings for the price. they are ultra soft and stretchy. a great pair of leggings to relax in. they are very stretchy and only come in 2 sizes s/m, l/xl. i am 5' tall and they fit fine, because usually such generic sizing is too large for my small frame. they are a bit long for a petite person, but tucked into boots and nobody will know.",4,1,2,Initmates,Intimate,Legwear +169,61,,,5,1,0,Initmates,Intimate,Legwear +1021,36,Skip it,"This skirt looks and feels cheap, and the color is much more green than pictured. additionally, i comfortably wore a size 4 and then lost a few pounds, and this is still way too tight to be flattering.",1,0,1,General,Bottoms,Skirts +169,29,Super itchy!,Super itchy! had to return.,1,0,0,Initmates,Intimate,Legwear +1074,30,More like hot pink in color,And runs large. i'm always a size 8 in dresses and the 8 was too big. i would buy it in a 6 if the color was closer to what i'm seeing online.,4,1,0,General,Dresses,Dresses +169,27,Not as thick as you think,"I was expecting these to be the normal thickness of everyday leggings, plus fleece. instead, they're more like thicker-than-average tights. still warm, though there's a weird seam on the inside of the thighs that takes away from some of the comfort. not so bad that i want to return them, but not what i was hoping for, either.",4,1,2,Initmates,Intimate,Legwear +872,83,Soooooooooooooo pretty!,"I never buy prints.....but this was so understated and elegant i could not resist! +just received and it is lovely! +beautiful soft hues with the softest of pattern that will look fantastic with jeans. +the buttons are beautiful and a special touch! +will be wearing this top often........pretty, soft fabric, comfortable fit and a ""goes with everything and everywhere piece!"" +a must get! +i wear a medium and ordered my usual size and it fits beautifully. +love! +reminds me of a monet watercolor..",5,1,4,General,Tops,Knits +1074,53,Recommend-yes!!! husband loves it!!!,"My husband rarely seems this pleased and he always likes to see what i try on. oohs and aaaahs galore with this one! let's let him review this one....he says he loves the vibrant color, length, and the way the top is perfectly fitted. he was impressed with the lining and the ""mesh"" at the hem that keeps the 'flare' in the skirt (i had to explain that one)! he likes the way it looks with a sweater and without and said that i could use more than one of the many pairs of shoes with it that he sees",5,1,0,General,Dresses,Dresses +169,32,So comfortable!,These are the best leggings! they were so comfortable that i wore them all day and then to bed; i didn't want to take them off. i'm hoping to get a few more pairs.,5,1,1,Initmates,Intimate,Legwear +1093,38,Bulky and big,"The material, deep color and design are gorgeous. however, the dress is just too bulky for my 5'2"" and 110lb frame. i ordered a 0p, and it just wasn't flattering on me. it's somewhat tent-shaped so the fact that it's not at all fitted and has a thick lining made me look larger than i actually am. i'm so disappointed because the dress really is beautiful otherwise.",3,0,8,General Petite,Dresses,Dresses +169,87,,I have these in grey and i love them! they are so comfy. i got them in m/l even though i am a s/m because i like the loose fit. they are very soft.,5,1,1,Initmates,Intimate,Legwear +862,33,I wish!,"I really wanted to love this shirt. it looked so nice and cool for summer and i don't own anything purple. the color was really nice, very subtly feminine. i am a little too short for this style though. i am 5 ft. 1 inch, 105 lbs ordered an xxs and it was still too wide. the side slits came up a little too high for my liking, but i easily could've stitched those up a bit and they'd have been fine. i think this would look great on taller women, but on me it looked like a dumpy sack.",3,0,8,General,Tops,Knits +1074,54,Beautiful dress!,"So much to love about this dress! the color is exactly as pictured in the video, not photos. the fabric is substantial, beautiful colors. the dress is well constructed , back zipper and is easy to put on and take off. it is not only lined but has a crinoline built in to the liner! it's not super puffy, just enough to give it some flare. i am 36b, 5'8"", 155 lbs and bought a 10. it fits me perfectly! the shoulders are a smidge too big but not enough for me to have them taken up just yet. oh, and i",5,1,12,General,Dresses,Dresses +169,69,"New ""hot pants"" for winter leggings",I needed a legging to wear with boots. makes sense that if it is cold enough to wear boots in socal then it is too cold to wear thin leggings. try to find warm leggings....almost impossible until retailer put fleece lined leggings in their catalogue! the leggings have a vertical knitted stripe which elongates the leg and they are warm! perfection in garments is very rare but these leggings are hot.,5,1,0,Initmates,Intimate,Legwear +1035,43,Very comfortable denim,"These are great jeans and worth every penny. they hug every curve and have just enough give in the places that you need them. i find them to be very figure-flattering and dressed them up with high heeled boots and a nice blouse. even though i'm petite, i ordered a regular in my size (26) because i wanted the length of regular jeans as opposed to ankle length.",5,1,3,General,Bottoms,Jeans +992,39,Way too small,"This is a beautiful skirt, but runs very small. i usually wear a size 8 and could not get the side zipper closed....at all.",2,0,10,General,Bottoms,Skirts +992,73,Too small,I usually wear a 6 and ordered two other skirts at the same time. the other skirts fit perfectly and this one was more like a size 2. very disappointed for i really liked the idea of it.,2,0,7,General,Bottoms,Skirts +830,64,,,5,1,0,General,Tops,Blouses +832,55,,"Really comfortable, great for casual event or everyday wearing. best style with jeans.",5,1,3,General Petite,Tops,Blouses +169,20,Comfortable,Love the leggings. very soft and comfortable. i ordered two pair -one s/m and one m/l. the s/m fit better on me but both will work.,5,1,0,Initmates,Intimate,Legwear +169,35,Glorious,"These pants are so warm and cozy and comfortable. they are like cashmere for your legs...so amazingly soft!! and for that price, it's definitely worth getting all the colors!!",5,1,0,Initmates,Intimate,Legwear +830,34,Too ruffly,"I had high hopes for this top, as it looked great online. unfortunately it was much more ruffly in person and not my style at all. it was a lot of fabric and poofed out too much -- reminded me of a child's top. sad to return it!",3,0,3,General,Tops,Blouses +169,26,Too big,"I'm a size 28 jeans 5'9 with a bubble bottom. these were falling off of me around the hips. these are warm. i was expecting them to not be sheer since they are fleece lined but when i sat down i was shocked to notice it. it doesn't matter functionality wise because i never felt a ""draft."" they look good and are well made but i will be returning due to the lack of fit.",3,0,4,Initmates,Intimate,Legwear +169,38,"Affordable, soft, warm leggings","I wanted these leggings to wear under dresses during winter to keep my legs warm. they get the job done and for an incredible price. they are soft and lined with fleece on the inside. i'm not sure the ribbing on the black is necessary but it's subtle and i don't mind it. they are a tad long on my petite frame but since i intend to tuck them into boots, the length not a problem. my only quibble is that my first pair arrived with three snags on one leg. retailer kindly sent me a new pair for",5,1,2,Initmates,Intimate,Legwear +169,39,Great deal,Love how these fit! they are warm and such a good price! i got 3 pairs. i washed mine in a garment bag and it washed just fine. i hung them dry.,5,1,2,Initmates,Intimate,Legwear +1093,37,Dazzling!,"Truly the only word that comes to mind when i think of this dress is dazzling! the pictures online just barely do it justice...if you have an retailer nearby, check to see if its available in store and go check it out in person. it does not disappoint! every year around this time, our beloved retailer seems to come out with this style of dress. in the years past they have all been different and beautiful, but i think they have truly outdone themselves this year. this dress is a deep emerald green...",5,1,4,General Petite,Dresses,Dresses +169,39,Comfy and cute,Really comfortable leggings! not see through and at a great price!,5,1,1,Initmates,Intimate,Legwear +169,32,Perfect cold weather leggings!,"These are my new favorite leggings. they have everything i need - soft waist band that doesn't squeeze me at all, not overly long, subtle ribbed texture (black pair) that make them feel just a little nicer, and most importantly they are not see thru at all. so soft on the inside too. and this price is nuts too, i'm so happy with these!",5,1,1,Initmates,Intimate,Legwear +1093,37,,"I bought this in the green and i had to try a few to get one that sat well- in fact i tried on a size above my normal size and that particular dress was shorter and tighter than my normal size. when i reordered my normal size, it was a pretty good fit. i kept the dress but am still on the fence on whether or not i should actually keep it- it took so long to find one that fit well that it missed the holiday events where i'd hoped to wear it.",5,1,1,General Petite,Dresses,Dresses +169,42,Great leggings,"These leggings are a quality product at a great price! i ordered these for my daughter and she loves them. warm and comfy, she wears them all the time.",5,1,0,Initmates,Intimate,Legwear +530,35,Love these shorts!,These are super comfy and a great fitting everyday short. the embroidery gives them a nice touch. i am ordering another pair!,5,1,0,General,Bottoms,Shorts +1002,36,Almost good,"Maybe it's just me, but this skirt had a little more volume than i was expecting. i'm 5'7, around 125lbs and the small fit me well. i like that the waist is elastic in back providing some give, but allowing the front to look smooth. pockets are always great. i got a striped henley from retailer (which is awesome) to tuck into it & was excited for the 70s vibe. +the problem is that it fell an inch or two longer on me than the model, and i already worry about midi skirts appearing frumpy without the",3,0,12,General,Bottoms,Skirts +1074,28,I love this dress,"I've worn this dress to two summer weddings and i couldn't be happier with it. this dress is extremely flattering. i usually wear a size 12, but i returned the dress for a size 10 which fit perfectly. the exact same dress, but in a different color was being sold at another major store. the other color wasn't nearly as flattering (but still cute) and the price was comparable.",5,1,0,General Petite,Dresses,Dresses +1093,44,Love it!,I bought this dress in the store and realized that it was a little too long for my frame...i'm 5'1. i then found it online in the same size but in petite and it fits perfectly! i got a ton of compliments and i wore it to a holiday wedding and am planning on wearing it to several other occasions over the holidays. would def recommend this dress.,5,1,2,General Petite,Dresses,Dresses +1021,65,Foamy material,"I stumbled upon this item at my local retailer, and immediately had to true it on. the colors are so lovely in person. after trying it on, i was disappointed :( the material has a foamy/air feel to it, and the skirt seems to run small. needless to say, i didn't purchase this item.",3,0,3,General,Bottoms,Skirts +169,45,,Liked everything about these but they should say in the description that they're ribbed.,4,1,0,Initmates,Intimate,Legwear +169,66,Super purchase!,"I couldn't believe the bargain price of these leggings, so i took a chance and ordered all 3 colors. when they arrived, i was equally pleased to see how soft, cozy and warm they were and how nice they looked with all my oversized tops. also interesting is that the textures of all 3 are different. the black has a vertical lined texture, the lavender has a cable weave texture and the gray is untextured. wearing them is going to be a pleasure!",5,1,15,Initmates,Intimate,Legwear +1074,27,Flattering for a summer wedding,"Loved this dress. fit like a glove, so flattering, and perfect for a summer/fall wedding. material is substantial and dress is well made. i'm 5'4, large chest, and curvy, and a size 6 fit perfectly. longer than seen on the model for me, but i actually love it being tea-length. + +a strip of tulle attached to the lining underneath the skirt to help it ""poof."" i removed it, but looks good either way.",5,1,0,General Petite,Dresses,Dresses +862,25,Runs big,"I think the shirt is supposed to be a relaxed fit, but i could have definitely gone down a size",4,1,0,General,Tops,Knits +169,27,So amazing,"From quality, to design, and overall comfort...these leggings have it all. they are so so soft and feel and look amazing on. i bought the black and i love the ribbed detailing. it's just enough to add a little something. i ended up buying the other two colors and another pair of black! for the price it's more than worth it.",5,1,0,Initmates,Intimate,Legwear +830,53,Such a cute top!,"Just got this top in the mail today, and i love it. i bought the white in a small, and it fits as pictured on the model. the fabric says it's cotton, but it's a substantial fabric and feels as soft as silk. the bodice is lined, so no bra lines show through. the tiered part of the tank is not lined but is not really sheer or see-through. the arm holes are not too large, as sometimes happens on me when i wear sleeveless tops. i think i'll be wearing this one a lot this summer, and a lot of summers",5,1,0,General,Tops,Blouses +1093,34,Snag this if it pops up!,"I normally stay away from dresses like these because they have a tendency to make my tall, hourglass frame look like i had one too many burgers. however, i saw one left in the store and was drawn in by it's color and beautiful sequins. my thoughts below: + +________ +pros: +- exactly as pictured. i got the purple option, but i did see another lady grab the green. both are beautiful in different ways. +- like another mentioned, the sequins on the bottoms gives some weight to the dress, but in a g",5,1,1,General Petite,Dresses,Dresses +992,32,So happy i bought this skirt!,"I love this skirt. it does run a little small, i ordered an extra small and it is tight at the waist, but still works. i have received more compliments on this skirt than maybe anything i have owned. i've been stopped at the grocery store by people telling me how much they like it. i also work with kids, and they all love it as well.",5,1,0,General,Bottoms,Skirts +169,36,Maybe not for the tall,"I'm 5'9"" and these run true to size for the fit but having long legs by the end of the day they start to sag down in the crotch and hit me about mid calf straight out is the package. they wash up perfectly and are cozy. if you're of average height these will probably be your favorite.",3,1,0,Initmates,Intimate,Legwear +862,25,Poor quality,"This top is beautiful in design, but sadly, i will be returning. it is hand wash, and even after doing so, i had 2 unraveled threads resulting in large holes. unfortunate since it was so flattering before washing.",1,0,0,General,Tops,Knits +169,38,Comfy and warm,These are fabulous leggings for cold days. i am a teacher who has to do crossing guard duty in the mornings and finally i have something stylish that also keeps me warm! love them and i highly recommend. only con is that they are about 1/2 of an inch shorter than i would like.,5,1,0,Initmates,Intimate,Legwear +169,62,,"So soft, comfortable and warm! i ordered the black and think i'll buy the grey and lavender, as well. the material is a little synthetic/almost shiny looking, but definitely not a deal breaker. these are my new lounge pants. recommend!",5,1,1,Initmates,Intimate,Legwear +169,41,Smells awful,I bought the black and gray fleece lined leggings. i thought the price was great. too good to be true. you get what you pay for. once i opened the box they smelled awful. it was a chemical smell. i washed the black pair twice and it was a little better. i have washed the gray 5 times and it still smells.,1,0,10,Initmates,Intimate,Legwear +530,32,Not for my hips,"I'm 140 at 5' 8"". pear shape. the pockets really opened up when i put them on and didn't lay flat. loose on leg opening - which i liked. but the pockets sticking out around the hip area made my pear shape even wider. i got a medium",2,0,0,General,Bottoms,Shorts +854,38,,I get so many compliments when i wear this... colors are great and print is unique. perfect for fall.,5,1,0,General,Tops,Knits +1076,52,Very flattering,This dress fits to a t! true to size. very flattering. fabric is soft and comfortable.,5,1,2,General Petite,Dresses,Dresses +1088,35,Awesome dress,"This dress is absolutely gorgeous. every time i wear it, people just don't stop admiring it. great material and great fit.",5,1,0,General,Dresses,Dresses +830,36,Interesting,"Love the block appearance. looks exactly like on the model ! material again could have been better. dry clean only, so expensive wear. price per wear may be high due to that as each time you dry clean price actually goes up and use goes down.",4,1,1,General,Tops,Blouses +1123,35,Different but didn't work out,"This is a cute jacket, nice materials, comfortable, and feels very well made. i read some reviews about sizing and went with a small when i am usually an xs or s. the small was too big and boxy feeling, i think i would have liked it better if it felt like a more tailored fit. the design is definitely different and i played around with the collar drape thing but it felt a little awkward to me. overall, i think it's a cute jacket, but i sent it back, not for me.",4,1,0,General,Jackets,Outerwear +897,35,Odd fit,I couldn't even figure out how to wear this sweater the fit was so odd. the arms cut off short and the seams don't hit your shoulders where they should. all the extra fabric around the collar is just confusing and unflattering. moving around in it was not easy. i will return this one!,1,0,0,General,Tops,Fine gauge +830,47,,The top red is more like orange. was disappointed and returned it,2,1,8,General,Tops,Blouses +830,54,Beautiful,"I loved this top but it runs small so i had to send it back, unfortunately. +beautiful styling and color blocking. just wish there had been a larger size available to have been able to exchange for.",5,1,2,General,Tops,Blouses +897,42,Versitle sweater,"Light but cozy enveloping sweater. i've worn this with an evening outfit, as well as to a preschooler's birthday party. it is an odd cut, but now that i have figured it out it is an easy piece to throw on and look put together. tons of compliments every time i wear it. it is quite long (i'm 5'4""), so it would work for someone taller, too.",4,1,0,General,Tops,Fine gauge +1123,42,"Super soft, comfortable","I'm a 34c and 136 lbs. i bought this jacket in m and it fits perfect! the sleeves are just the right length, it fits through the chest and hips. the leather and other material is super soft! i love the dark brown color, it's just as pictured. like someone else said, you can tuck the hanging material inside the jacket for a sleeker look. this is my new favorite jacket!",5,1,1,General,Jackets,Outerwear +1088,33,In love with this dress,I am in love with this dress. ordered online in both my usual 4 and 6 (i go back and forth) and this time i kept the six. there is a little bit of stretch to the fabric but it has nice structure and the cap sleeves make it a welcome addition to my wardrobe. i plan on wearing this as a day-to-night dress since it's appropriate for work and for an evening out.,4,1,1,General,Dresses,Dresses +1123,41,Beautiful,"This jacket is stunning. the vegan leather has a slight shimmer. the waterfall fabric is nice and soft. it's really beautiful and unique. cropped jackets tend to shorten me, but the cascading waterfall fabric add a nice little bit of length that just balances the jacket nicely. the sleeves in the xxsp petite size that i tried on were tight. they were better in the xsp but i won't be wearing any thick sweaters underneath. it fit everywhere else. i'm usually an xxsp, and sized up for the arms. ove",5,1,2,General,Jackets,Outerwear +854,46,Very low cut...and a weird snap,"Love tiny. i am 5'7"", 125-128 lbs depending on the day, and a 34a. i also have a very long torso, and tiny shirts are one of the few brands that are usually long enough for me. this one, however, was a huge miss. i ordered online in my usual tiny xs. it was much too big around and felt shorter in the front than stated, so it looked boxy on me. however, the worst part was the placket. the description doesn't note that it's held together with a tiny snap. that snap takes nothing to undo, and then",2,0,1,General,Tops,Knits +854,32,Pretty but awkward,"I buy pretty much every tiny top retailer carries and so of course i grabbed this one online. i would say size wise it's consistent for tiny, which in my opinion is in the ""runs small"" category as i'm a large in basically every top ever except the tiiny brand where i always have to take an xl. anyway, the print is beautiful but the neckline is strange- there is a very flimsy button keeping it tacked shut at the very top, and if that snap pops open it's open all the way down to the waist area where",3,1,5,General,Tops,Knits +1123,24,Beautiful jacket,"This jacket is phenomenal. the color is gorgeous in person. the brown has a unique shimmer to it that just makes it feminine and special. it's also very warm and comfortable. like some other reviewers said, it looked great zipped as well as unzipped. this is a really special find and great addition! if you're considering this jacket i say go for it. for reference, i actually love the fit and thought it was tts, though i am a 32c and got this in a small so perhaps that's only the case for c cup a",5,1,0,General,Jackets,Outerwear +854,50,Hooray...it came in a petite!,Was so excited to see that this colorful top came in petite sizes! it fits perfectly and so happy that it doesn't fall too long. looks great with a longer cardigan sweater. very happy with this find .,5,1,0,General,Tops,Knits +920,53,,Loved the look of the sweater and the the fit was as shown. however this is a thin cashmere for the price. returned.,1,0,0,General,Tops,Fine gauge +1078,32,Great summer dress,"I love the colors and pattern on this dress, and it's nice that it has a lining so no slip needed. the cut works perfectly for my big booty figure however, i'm pretty small up top, and the neckline comes pretty low, so i either have to wear my craziest push-up bra, or get the top altered. i haven't decided what my plan is yet, but will keep the dress for sure.",5,1,9,General,Dresses,Dresses +1078,48,Cute summer dress,"I purchased this dress in the blue version. its a lovely dress that would be perfect for summer. the dress fit tts on me .. it is a little low in the neck area and it is a little uncomfortable in the torso area. i am on the fence about keeping it. the skirt is flouncy, cute and fun. i hope i can get it to work",4,1,0,General,Dresses,Dresses +1078,42,Color!,"Beautiful color; however, the fabric did not work for me. tight on top, large on bottom.",3,1,0,General,Dresses,Dresses +824,63,Beautiful,"Love, love this top. fabric is nice and soft, looks great with leggings. love the way it falls in the front an long enough in the back.",5,1,0,General,Tops,Blouses +1078,33,Dress is super flattering,"5'6 149lbs 34d normally size 6 + +i picked this up on a whim to try on and i am glad i did. it is very flattering on my curvy frame. it does run a big big so i sized down to a 4 instead of my normal size 6. the top is still a tad bit big as another commented- not enough that i would need to have it altered but enough that i probably wouldn't wear it to work without a cami under it. over all i love this dress. its very flattering and flirty and it makes me feel pretty! i bought the orange motif",5,1,3,General,Dresses,Dresses +1018,39,Lovely,"Love the skirt, colors are nice, fabric is thick enough to go to fall, but not too thick for summer (ti is short, so has room). the colors are somewhat ""brighter"" in person, but not summer bright, more fall bright, not sure htat makes sense). love the flower pattern, it is pretty but strong at the same time. + +now on to fit: the waist is the small part. my usual 0 was snug on the waist, but the skirt was perfect everywhere else. not sure about sizing up yet, as it may flare out too much, will g",5,1,5,General,Bottoms,Skirts +865,41,Love this!,"I love this tank. super soft and comfy. i wear with leggings, jeans, shorts- anything. longer in the back so will cover your butt- at least it covered mine. runs slightly oversized. love the asymmetry in the front- very flattering. very happy with it.",5,1,0,General,Tops,Knits +1078,39,Missed the mark for me,"Online this dress looks so perfect, but in person it's a bit dowdy and unflattering, at least on me. i'm a size 4 with curves, and i was hoping it would enhance my waist and flatter my figure. but, sadly, it was too large on the waist and too poofy in the skirt, so it just did nothing for me. i considered sizing down to a 2 so that the waist would fit, but the skirt still has too much fabric, making my hips look large. so much potential, but missed the mark for me.",3,1,16,General,Dresses,Dresses +1018,53,Slight oddity but otherwise quite pretty...,"I ordered a size 6 and an 8 based on the review that said that the piece ran small. i fit both skirts but chose the size 8 as it was a bit looser at the hip and the length was better. funny though-the pockets on both skirts were sewn at very uneven areas on both. neither skirt had usable pockets as they were sewn shut at half inch intervals on one skirt (6), and very uneven intervals on the other (8). i liked the idea of pockets which is one reason i ordered it-it is described as having side poc",4,1,2,General,Bottoms,Skirts +1078,29,Wish it was as pictured,"It looks adorable in the picture... but just not flattering in real life. too much fabric in the skirt that flares from the waist in a bunchy, unflattering way. makes a slender but curvy figure look boxy, rather than enhancing curves. it's a pass. love the blue print, though.",2,0,9,General,Dresses,Dresses +858,64,Comfy and not binding,"I am 5' 5"" 150 lb and i usually wear a 10 or 12 in tops because i don't like clothing too tight on top. i took a chance and got the xl because it was all that remained. now i wish i could be more! please bring this back retailer!",5,1,0,General Petite,Tops,Knits +858,31,Hole in it after a month,"I have had this shirt for a little over a month. i've wore it maybe 3-5 times and there is a small hole in the middle of the sleeve on my shoulder. it's not even on a seam, so i can't fix it. i expect much better quality from retailer. don't buy this. the quality is very disappointing. which is really unfortunate because this is a very nice fitting shirt and goes well with pencil skirts.",2,0,0,General Petite,Tops,Knits +1078,50,,I saw this dress in the store window and gave it a try. i found it to be super flattering and feminine. the bodice is form fitting and the skirt flares out to a full skirt. the colors are fun and vibrant. the neckline is a bit low for work but perfect for evening. it is true to size.,5,1,0,General,Dresses,Dresses +866,32,I really wanted to like this top,"Some quick notes- it is not sheer, like a previous poster was asking. there is a lining. the color is darker than it appears online, which was ok with me. i thought it still looked nice as a deeper gold. i was excited about this top, and thought it was the perfect thing for a casual/festive company holiday party. i ordered a m, and am usually between m and s in most retailer items. unfortunately it fit me rather boxy and short. i have a larger bust (30g) and it draped in a very unflattering way. m",4,1,2,General Petite,Tops,Knits +1078,50,Love this dress!,"I bought this dress in the orange and it is great for summer. even though i am normally a small/size 4 at 5'5"" & 118 lbs, i opted for the 6 because i am busty (34d). this was the right call. the dress is comfortable, flattering and i got lots of compliments. it's a keeper!",5,1,0,General,Dresses,Dresses +858,28,Thin layering turtleneck,"I ordered this turtleneck in white and was very surprised to find that the material is so thin and gauzy it's sheer. i will definitely have to wear a white camisole under this every time i wear it, even when using it as a layering piece. it seems to run true to size if not a little small. the neck is interesting because it is so light and floppy...you can adjust several ways. it doesn't hold form well, though. i will most likely keep it but will never wear it without something both under and ove",3,0,0,General Petite,Tops,Knits +1078,46,Missed the mark,"Oh boy...i didn't get this one, and it runs small. too bad.",2,0,0,General,Dresses,Dresses +1078,45,Awesome fit,The dress has an awesome fit and the perfect length. it's easy to make it more classy with a summer cardigan.,5,1,0,General,Dresses,Dresses +527,60,Pretty bathing suit,"Cute bright colored suit a little more orange than pink i prefer pink but the fit didn't quite work for me + + the bottoms were a little too big and the top although was fairly well proportioned just didn't look right altogether + + purchase the extra smalls in both and have since returned + + i do love the suits that retailer has been offering would just love to be able to try them on in the store + nice quality good colors",4,1,1,Initmates,Intimate,Swim +1078,35,Super comfortable and cute,"I didn't notice what some of the other reviews have said. i think it's very flattering, makes my waist look tiny and the flouncy skirt is a lot of fun. it is low cut in the bust, but not crazy. i'm a modest person and i'm comfortable with it. what i like best however it the cut of the top. it is wide enough at the arms to cover any armpit bulge! the fabric is very light and soft and the colors are vibrant and fun. it does run a tad large. i can go between a 2 and 4 in most retailer dresses and got",5,1,2,General,Dresses,Dresses +993,59,Butter soft and beautiful color!,As soon as i saw this skirt i was in love. i like the fit it is very comfortable. i love the detail in the crocheted part of the skirt. i can't wait to wear it and i recommend this item.,5,1,1,General Petite,Bottoms,Skirts +1072,53,Runs very large,"Love this dress! sadly, it ran so large that it was literally falling off of me. because i bought it on sale, the option wasn't there to buy a smaller one. the quality is excellent and it's perfect for a spring or summer day in miami:-) sorry to have had to return it due to the sizing issue.",4,1,0,General,Dresses,Dresses +824,43,,,4,1,0,General,Tops,Blouses +824,33,Cute top,Great top for everyday wear. runs a little large as i usually for size medium and i bought a small. a tiny bit see through but i think i can get away without wearing a tank underneath.,4,1,0,General,Tops,Blouses +1078,39,Against the majority,"Everyone else who reviewed felt the dress fit quite odd. i have an oddly shaped body, so this dress was perfect on me! the bigger bodice fit on my large broad rounded upper body, skimmed my true waist and flared out to complimentary skirt that wasn't too twee. the silhouette evens out my odd figure. the fabric is a gorgeous pink/orange/teal pattern on comfortable cotton. i do have to agree with the lowness of the neckline, it's a bit immodest. i wear my cropped denim jacket and a simple la",5,1,2,General,Dresses,Dresses +1078,44,Alterations needed,"I took a risk on this dress despite the multiple reviews about the pouffy skirt and revealing neckline, because i loved the look of the blue motif print. alas, the adorable print, the handy bra-strap holders, and super-soft fabric were the only things that worked for me. i'm 5'3"" and 120 lb, small up top, not especially curvy but not straight either, and i ordered my usual 2p. yup, the pleated skirt was much too full (i felt as though i was wearing a cheerleader's skirt) and the neckline was way",3,0,1,General,Dresses,Dresses +993,42,Amazing!,"This skirt is worth every penny! it appears slightly different than pictured in terms of color -- it is a cream/blue gray making it very versatile. the crochet work is beautiful and cream. it is not too bright to show every dirt mark; the cream coordinates perfectly with the leather color. it is a classic, elegant design and could be paired with a silk type or even a cashmere sweater in the cooler months to come. for me, it is tts mostly (i am usually a 4-6) and the six fits perfectly. it has an",5,1,2,General Petite,Bottoms,Skirts +784,33,Best tights!,These are the best tights! last year i bought these and they went back to regular waistband. this year the best waistband tights are best!,5,1,1,Initmates,Intimate,Legwear +717,25,Comfort and style,The color of these shorts is even more beautiful and vibrant in real life. the detail is wonderful and they are so comfortable!,5,1,0,General,Bottoms,Shorts +970,34,,"It is indeed cut to the shape of a trench. however, i think retailer should rename it as it's more like wearing a cardigan. it's soft and pretty which i like. however, i wasn't convinced to buy it since i have a gazillion long black cardigans already made out of the same jersey stretch material.",3,0,3,General Petite,Jackets,Jackets +1122,52,Cozy cape,I saw this initially in the store and thought it was nice but did not purchase because i thought the price was too high. i saw it again and it was on sale but the store had sold out of my size. i checked online and my size was available so i ordered. i was afraid this cape would be to long and make me look frumpy but it wasn't and i didn't. it looked great. i tie the belt a little higher than the model to make me look taller. i can't wait to wear it on cool fall days.,5,1,0,General,Jackets,Outerwear +918,40,"Very nice, just as pictured","This is a very lovely sweater dress, it looks just as pictured and true to size. i ordered mine online and was very happy with this purchase. the material of the top white portion is very soft and cozy and bottom peach chiffon material has sparkly stones. sweater dress is very pleasant on the skin and looks refreshing. recommend!",5,1,0,General Petite,Tops,Fine gauge +1122,47,Scratchy,"I love the colors and style of this poncho, however, the fabric is a total miss. it is so scratchy, i developed a serious rash within the first 1/2 hour of wering it. also, unfortunately, the fabric is not woven tightly, so the poncho does not keep you warm, the wind whips right through it. it is disappointing that while the styles of retailer have remained top, the quality of their clothing has steadly gone down the hill. i hope retailer will put more effort in bringing the quality back.",1,0,0,General,Jackets,Outerwear +819,49,,"This blouse is stunning on the website ;however, it is totally sheer which you cannot tell from the photo. i was very disappointed and will be returning.",1,0,2,General,Tops,Blouses +1086,39,"Love, but zipper broke 1st wear","Everything about this jumper is lovely- the color, the fit, the fabric. corduroy anything rules. but the first day i wore it the zipper was a problem. it was missing a tooth. my husband helped me work around that to zip it up for a sunday drive. i unzipped to nurse our baby and then we couldn't get it back up and it just separated leaving me half dressed in the restaurant. was going to have it repaired but will send back now that i see they have more. i don't know about y'all but i always feel a",4,1,3,General Petite,Dresses,Dresses +717,25,,Very comfortable and love the color. i'm a bit curvier on the bottom and the small still fit me fine.,5,1,0,General,Bottoms,Shorts +717,70,Comfortable,"This will be my third pair of hei hei shorts. i was very pleased with the previous two shorts, sand city short and dobby beach comber. all shorts have nice materials and not too tight, perfect for the summer. i typically wear s or m depending with the material and design. i bought size s and it fits nicely.",4,1,1,General,Bottoms,Shorts +1024,30,The perfect jeans!,The jeans are the perfect high-waisted jeans. they do not stretch out and fit perfectly. the perfect length for a heel. love them all year round.,5,1,0,General,Bottoms,Jeans +1086,29,Not for the busty,"This was very tight in the bust in my typical size. it fit more or less everywhere else, but the material has no give. so unless you are the precise measurements of the dress, this will be a hard dress to wear. +the color is really lovely though!",3,0,0,General Petite,Dresses,Dresses +918,83,"Beautiful, retailer at it's best!","When i saw this sweater online i ordered literally immediately as i was afraid that is would sell withing an hour! +i am shocked that it is not sold out! +when i received it in the mail it is even prettier in person. +the ""pink"" tulle peplum is actually more of a taupe giving the sweater a more sophisticated look. +the sweater is soft and cozy and the peplum is such a beautiful and elegant touch. +i wore with silver flats and jeans and wow, got so many compliments! +runs spot on true to size and is a",5,1,2,General Petite,Tops,Fine gauge +891,25,Perfect fall sweater,"I got this in the grey and wore it the day i opened the package. one side is see through, so i wore a camisole underneath. it's lightweight and not at all clingy. i normally like my shirts in medium and this was true to size for me. perfect sweater for a fall day in new england.",5,1,0,General,Tops,Fine gauge +717,47,,,2,0,0,General,Bottoms,Shorts +819,40,,,5,1,0,General,Tops,Blouses +1025,28,Love!,"I've been trying to find a pair of tasteful destroyed jeans for the summer. i'm also petite. i love paige jeans already, since the ankle length has worked very well on me. i saw these jeans in store, tried them on, and loved them. like other paige jeans they don't stretch out (especially if you size down - but even then, you don't get that ""sausage"" feeling of wearing pants that are too small - the material stretches in the waste).",5,1,1,General Petite,Bottoms,Jeans +717,61,Yes!,"Love these! i am a medium in shorts or 29-30, and the medium fit perfectly.. true to size, very soft, flattering cut and color. love the embroidery. great for travel, very light and can be jazzed up a little with nice sandals, almost like a flirty little short skirt. the fullness and non fitted look is great for a less than perfect tummy. +i am very happy with this purchase.",5,1,0,General,Bottoms,Shorts +717,26,Fun & easy shorts!,"Really cute and comfortable. i have worn these a couple of times and get several compliments! worth every penny, and now they are on sale!",5,1,0,General,Bottoms,Shorts +1086,34,"Great quality, unique piece","I am 5'3"", 130b, small waist, wide hips. dress fits perfectly, a little longer than i had expected (hits about mid-calf on me). great quality corduroy, nice medium green color. very unique, sort of vintage feel piece.",5,1,0,General Petite,Dresses,Dresses +1122,37,First fall favorite,This poncho is dreamy. the colors are divine and appear a little bolder in person. there is a gorgeous leather trim around the edges that elevates the look so much. the belt minimizes how big the poncho is and really makes it feminine. its everything you dream of when it comes to a third layer for fall. my only gripe is that the fabric is a little itchy. it being wool i can't say that i'm surprised and the truth is that its heavy enough that you would definitely be wearing long sleeves underneat,5,1,5,General,Jackets,Outerwear +1095,27,"Too much fabric, makes you look larger","I loved this dress when i saw it online, perfect for a summer wedding, but when i tried it on i was very disappointed. the fabric and styling are gorgeous and very high quality but the sheer amount of fabric on this dress is just not as pictured. there is layer after layer of silk and ruffle and while lovely, it made me look very large. i tried tying the belt many ways to no avail. sadly, it will have to go back. it may look good on a very thin frame but didn't complement my average one.",2,0,8,General Petite,Dresses,Dresses +819,31,Average overall,"First off, this shirt is a hd in paris brand, not floreat. i love floreat clothing so that is why i initially bought this blouse. i like the idea and the coloring of the shirt. the biggest drawback for me was that it is completely see through. i just bring myself to get a strapless cami just to wear this one top. please change brand name.",3,0,4,General,Tops,Blouses +918,34,An elegant sweater for all occasions,"Unlike one comment below a review on here who stated it felt childish, i didn't feel this way at all. i'm a sucker for anything white with tulle and soft colors and a bit of bling :) here's my thoughts: +------------------------- +pros: +- very soft with good amount of stretch. +- tulle bottom is exactly as pictured. i disagree with another reviewer who said the color was more of taupe; it is not. this is pink/nude shade all the way. +- runs tts. i'm a 36c, hourglass, 5'9"" and found the medium to be",5,1,2,General Petite,Tops,Fine gauge +819,36,Quality is just not there...,"I had such high hopes for this blouse, as it looks totally stunning online. however, it's not as pictured/described in that it is totally sheer and the brand is not floreat, but rather hd in paris. for the price, the quality is just not there...i've seen comparable shirts at other stores for much less. i returned it without a second thought.",2,0,2,General,Tops,Blouses +717,64,Adorable shorts,"These shorts are great for warm weather. they look great with a navy top. the pattern is very attractive. they are on the baggy side, but the style is very flattering.",5,1,2,General,Bottoms,Shorts +891,39,,"Love the interesting patterns and slightly oversized fit. perfect for a relaxed day with a cami, skinnies and sneakers. what i don't like is the materials used to make this sweater. i'm concerned laundering will shrink and i will lose the drape or it will be too short. the perforated part is truly see through, so yes wear an under or over layer.",4,1,1,General,Tops,Fine gauge +1086,39,Perfect winter dress,"I love the texture and sheen of corduroy combined with this beautiful evergreen color. i purchased size 10 and the somewhat stretchy fit accommodates my bust size (36dd) with a blouse or slim fitting sweater quite well. i think the skirt flares out too much and ends a little too low for my height, so i'm waiting for the petite to arrive to see if it's more flattering. i picked tts but may be a bit large for those who are less busty, so you may want to size down if you're slender or pear shaped.",5,1,4,General Petite,Dresses,Dresses +918,38,Unique sweater,I tried it in the store but was not the true size so i ordered online. i wore it only once so far and got lots of compliments. very unique design.,5,1,0,General Petite,Tops,Fine gauge +1122,64,Great poncho!,"Really unique & will easily go with many tops/bottoms. i agree with the other reviewers, it's itchy, but so super cute. the sale price is a good deal. i had already planned to wear with long sleeves so the itchy fabric should not be a problem. i got the xs/s, my usual size.",3,1,0,General,Jackets,Outerwear +895,36,,,5,1,0,General Petite,Tops,Fine gauge +957,48,Gorgeous and warm,"This is so much nicer in person! wore this out today...now that it isn't too too cold. fashionable and warm. love the clasp. quite genius! i am a 36c and while i'd normally take a small, got this in medium and it fits perfectly. i'd say this piece runs slightly small for retailer.",5,1,1,General Petite,Jackets,Jackets +1077,34,Beautiful,"I loved this dress. i'm 5'6"" and wore the small and even in heels it was a bit long. i have a larger chest (double d) and the chest was slightly snug but otherwise fit perfectly. i got compliments from everyone, gorgeous dress.",5,1,1,General,Dresses,Dresses +1046,50,Great pattern,Simple pull-on pant with a great design. they look flattering on and can easily be dressed up. i wear between a 4 and 6 and the small fit perfect. i have washed them and worn them several times and they still seem good as new. the wide elastic waistband ensures that they stay in place.,4,1,4,General,Bottoms,Pants +1077,28,Holy smokes!!,"This dress is incredible! let me say that when it first arrived, i was terrified that i looked like a got tangled in my grandma's curtain. the print was really overwhelming for my living room. however, i went with my gut and wore this dress for our engagement photos out in the woods. not only was in incredibly flattering, it photographed better than i could have imagined. wouldn't recommend wearing this grocery shopping but this is a perfect for a special occasion!",5,1,3,General,Dresses,Dresses +975,44,Couldn't resist,"I tried this on, left, went back, put it on hold, then finally took the plunge. i had a hard time justifying the price. not really a functional coat, too warm to be a shirt. but so unique, i had to have it!! i got the s/m. boxy, in a good way. got it yesterday with the antro members 20% off.",5,1,4,General Petite,Jackets,Jackets +296,35,Sparkles!,"I love this shimmer tank-in both colors! it is a very thin fabric-thinner than i would have expected, but i think this is okay since i would use it for layering and probably never wear it as a standalone tank. i think you can never go wrong with sparkles, especially in a layering tank-it dresses up or fancies up the outfit. the straps on this tank are not adjustable, and if you are large chested, i think a lot of cleavage would show in this tank. i would have preferred the sleeves are very sligh",5,1,4,Initmates,Intimate,Layering +357,52,Love this skort!,I was hesitant to buy this due to the price but so i glad i did when it came in the mail. great quality and surprisingly thick silky fabric. very comfortable and the shimmery thread detail is beautiful. could be very warm in the summer due to the thick tweed like fabric. fits and looks true to size just like it does on the model.,5,1,5,General,Bottoms,Shorts +862,44,Lovely top,"I adore this top. lovely color, fit is very flattering. can dress up for work with a skirt, or down with jeans.",5,1,0,General,Tops,Knits +862,48,Floral delight,I purchased this in both colors the neutral and grey. i love them both but the grey is by far my fave. this is a nice soft beautiful tee. the burst of flowers are just adorable. i found these ran tts on me. cute little top and such a good deal at sale price.,5,1,0,General,Tops,Knits +296,51,Great piece for petites,"Nice quality fabric that's soft to the touch, lightweight, and lays smoothly. runs small - great for those of us who are small on top! the s fits like xs. longer length but not tunic length. the navy can pass for dark silver-gray.",5,1,0,Initmates,Intimate,Layering +833,66,Pretty top,I like that the top is lightweight and very comfortable and is flattering. i can see wearing this over the holidays for entertaining. it looks festive and pretty - something easy to pop on and look pulled together in a flash.,4,1,0,General,Tops,Blouses +1077,32,"Tall bettys rejoice, this maxi is for you!","Vibrant, lovely and quite long! this maxi works for leggy bettys - i stand 5'11"" in my stocking feet, and the dress hem grazed the floor. not quite as voluminous as the photo suggests, but stunning nonetheless. runs a bit small. i normally wear xs to s, and i tried a xs in-store, but it fit just ever-so-slightly too snug. i didn't try a size s, but i suspect it may have fit ever-so-slightly too large.",5,1,0,General,Dresses,Dresses +357,55,A piece that stands out,"I like the idea of a skort, and how it is different than everything else out there. this skort is a bit dressy--perfect for a summer party or drinks on the patio at a city cafe. i love that it has pockets. the fabrics used in the patchwork are quality and the tailoring is nice. it fit me true to size. i can't wait for warmer weather to wear it!",4,1,3,General,Bottoms,Shorts +1104,56,,,5,1,0,General,Dresses,Dresses +1077,41,Stunning and sensational,"In love with this dress! so feminine and lovely. makes you feel beautiful. the fabric, flow, and construction of this dress is stunning and flattering. i am 5ft2in and 114 lbs...bought the xs and it fit perfectly in the waist but is a bit snug in my not so large bust area. however, the s was too large and did nothing to accentuate my waist and changed the whole look of the dress on me. cannot wait to wear this dress, but it is so long &needs to be altered. itll be worth it!",5,1,0,General,Dresses,Dresses +1104,35,,Cute summer/vacation dress. lightweight material but not flimsy. i'm normally a xs/s and i ordered the s petite which was right b/c i think the xs would have been too clingy looking. the regular length would also have been too long.,4,1,1,General,Dresses,Dresses +1185,39,Cute top; somewhat sheer,Cute top; somewhat sheer but color and fit are great. fits slim but true to size.,4,1,0,General,Tops,Knits +1065,47,"Great, versatile and comfy","These pants are wonderful. they are very flattering, the color is gorgeous, and they are incredibly comfortable. got tons of complements!",5,1,0,General,Bottoms,Pants +1077,40,This dress is all polyester! beware!,I got fooled by this dress's description. it's 100% polyester and not wool as it claims to be! looks cheap.returned it!,1,0,12,General Petite,Dresses,Dresses +862,62,Another perfect tee for atlanta's hot weather!,Gorgeous soft colors that can be worn with many things. lightweight fabric with beautiful detailed finish to the neckline. i purchased at my local retailer store along with the baroque tee (that i purchased in a smaller size because of the differences in the design of the two shirts). highly recommend both!,5,1,1,General,Tops,Knits +867,36,Lovely,This top is perfectly feminine. the fabric is light and the bow adds that perfect touch of distinction.,4,1,0,General Petite,Tops,Knits +867,39,Adorable,"This seems like a simple tank, but the shape of it is super flattering. it kind of soles in at the seam, and the shoulders are just adorable and sexy at the same time. i love the detail in the straps, coloring is neutral enough, adn the fabric is very soft... i am glad i finally tried it on, jsut didn't want t pay full price, but broke down as sizes are selling out (smaller sizes, i am usually xs petite and that is gone, so is xxs, so went with xs). i am 115 lbs and 30dd for reference...",5,1,2,General Petite,Tops,Knits +1104,39,Nice and comfortable,"Flattering cut, the tie neck is very nice, but definitely needed the petite for me, regualr size went too low. the striping is a nice flowey thin fabric in grey and navy, with a bit of texture in ti, not sure it is obvious from the picture. length in eptite went right below my knee, but in a goood spot. overall, loved it, but returned in hopes it hits sales one day (jsut spending too much latetly)...",5,1,7,General,Dresses,Dresses +1077,34,Stunning dress,"The dress is gorgeous, material is soft, great design! but runs at least one size small and very long. i'm 5'3 and even with 4 in heels it's way to long. alteration needed",4,1,0,General Petite,Dresses,Dresses +867,48,Just order it....,Far more attractive in person than online. earlier reviews are all accurate. very flattering and quality manufacturing. the scarf bow makes it so distinctive.,5,1,1,General Petite,Tops,Knits +862,36,"Appreciate the simple, high neck.","Beautiful tee and cut with a classic, simple silhouette. nice weight and true to size. i'm 5'7"", 132# and the small fits me like i like. not tight at all, with room to allow for shrinkage. i really appreciate the higher cut of the neck as most tees i have purchased last several years i love for the overall fit and material but am a little self-conscious in due to the low cut neck. maybe if i weren't as small chested this wouldn't be an issue for me. i definitely recommend this tee.",5,1,0,General,Tops,Knits +975,42,Cozy boho chic,"This is just a really fun jacket. agreed with the previous reviewer that it's not the most functional. but guess what -- this is super cozy (it's lined with the softest faux fur), it's quilted in an army green, and it has the best trim along the arm. they could've cut corners on the quality here, for instance, with the beading or the material on the trim. however, they didn't cut those corners. instead, the jacket feels incredibly well made and feels very expensive. can't wait till the weather g",5,1,5,General Petite,Jackets,Jackets +451,54,Constantly needs adjusting,"I wanted to love this dress, and i don't. it is soft, it is flattering on the model, and sits comfortably on the shoulders... until you move. the heaviness of the shoulders pulls the fabric back, causing the drape along the bottom to look odd, and unflattering. so sad- i wore it to lunch with my husband, but felt like i was constantly pulling the shoulders/sleeves back into place... i won't pull it from my closet to wear again, very often.",4,0,2,General Petite,Intimate,Lounge +975,27,Beautiful details,I wanted to love this but my hips interfered. it is a little on the short side also as one previous reviewer noted and is definitely made for a straight figure. beautiful details on the shoulder and could definitely see this as a staple in my closet if the fit was right. sadly it was returned!,5,1,0,General Petite,Jackets,Jackets +862,27,Great colors,"I cannot believe this t-shirt is on sale! the colors and the design are beautiful and soft. the shirt is an average t-shirt weight, and the fit is nice and loose on the body like it is on the models. i am 5'3"" with a petite/athletic build and the xs fits comfortably (with some room...washing may make it even more perfect). i cannot wait to wear this with jeans on the weekends or with a grey skirt to work.",4,1,0,General,Tops,Knits +451,48,Easy machine washable dress,"I really try to avoid hand washing so i immediately checked the label when i found this dress in-store. and despite the fact that retailer lists this as hand wash online, the label says machine wash. (it also says lay flat to dry.) so i was happy about that. i tried this in xs regular (first photo with camisole) which was too low-cut and then ordered the xspetite in the second photo (i'm a 34aa, ~105 lbs.) which was better; higher v-neck mainly and shorter length, although i could've gone with eit",5,1,22,General Petite,Intimate,Lounge +1077,36,Very slim,"The dress is beautiful! it is very long, romantic, and feminine. i am 5'10"" and it touches the ground. i tried on an xl, (normally i am a l and today i wore a size m retailer dress to work) and i could not even begin to zip the xl dress. the arms were fine. i think i would need 2-3 sizes higher. i am so sad because it is so beautiful.",4,1,1,General Petite,Dresses,Dresses +451,30,Just don't wash it,"I loved this dress...until i washed it. the label says machine wash cold and lay flat to dry...which i did (washed on delicate). now it's not the same dress. it's too short and not as soft and i feel so much differently about it. i wish the label would just instruct to dry clean, i would pay the extra expense to still have the dress i loved. just kind of annoyed. so it's an awesome dress, just be prepared to dry clean it or risk shrinkage if you wash it.",3,1,11,General Petite,Intimate,Lounge +1028,67,,These are so comfortable! i love how they fit snug but have tons of stretch..this is my second pair of fleetwood from coh. love this style,5,1,0,General Petite,Bottoms,Jeans +862,60,Great tee,"What a fabulous find! i purchased the grey and it looks great with different shades of blue jeans. i am 5'9"" 136lbs and wear a size 6..... 34 c and the medium fits wonderful. was worried it would run short, as i am long waisted, but fits just a bit shorted then pictured. i love tucking the front in and letting the back hang out.",5,1,2,General,Tops,Knits +862,49,Fun floral tee,"I tried the gray pattern on in the store and it is very soft and pretty. the fabric has a nice drape to it. however the length was too long on me, so i came online to find it in petite, but most of the petite sizes are sold out in the gray. i shop at retailer because i like it that so many of their styles are available in petite, however the petite length sizes seem to sell out much faster than the regular sizes. i hope retailer will give us short girls a break and order more petite length sizes so",4,1,17,General,Tops,Knits +357,53,,"Very cute skort that fits tts. great length for us middle aged women as well! love the hidden front pockets and the modern color block design. my only issue is the side zipper gets stuck right where the waistband starts. i'm assuming this is because of the thicker fabric around the waistband. i usually try to wait for the sale prices, but i think this skort will sell out well before then.",5,1,0,General,Bottoms,Shorts +1077,71,Petites beware,"I'm 5'2-5'3 which is supposed to be the max height for pieties in retailer (former employee) and while the bodice hit right, the skirt was insanely long. not even with heels is this gonna be right. and no discount towards hemming? i'll wait until this hits the sale rack, which it will because concensus is, it's way too long.",1,0,0,General Petite,Dresses,Dresses +1104,55,Summer's around the corner!,"Was actually looking for something completely different and then walked into this dress. i have already a few events lining up for the summer months, and i could see this working on those hot summer days. i'm short and curvy so i tried on the large in store (i'm busty) and ended up ordering the petite l online. the top part fits proportion wise better with petite while a l gives my larger bust size enough room. i love the 3/4 length, i feel a great length when you're only 5'1, will look great wi",5,1,5,General,Dresses,Dresses +975,43,,"Gorgeous, but the trim detail on both in-store coats was already trashed and falling apart. for $218 and it can't even make it out of the store intact? i love the look but didn't want it to fall apart. they should've done an extra reinforcing stitch on the trim. such a shame!!",3,0,0,General Petite,Jackets,Jackets +862,59,Beautiful tee,I love this tee so much i bought in every color available. i have received so many compliments on each one! so soft and comfortable and easy care.,5,1,0,General,Tops,Knits +357,39,Adorable and hard working piece!,"I love this piece and have bought it for three different clients as well as myself... it runs a size larger - i am usually a 4 and the 2 fits perfectly. the skort was one size off for my clients too. definitely a great choice for spring/summer, especially if you love to dress up but lead an active lifestyle!",5,1,2,General,Bottoms,Shorts +1185,40,Long in front {short in back},It's the inverted invert ... not so obvious at first but then it shrunk and was harder to ingnore.,1,0,1,General,Tops,Knits +1077,33,Just perfect,"Love the dress. it's beautiful and flowy and makes you feel like a princess when you wear it. also very versatile, as it can be worn in multiple seasons and dressed up or dressed down. love everything about the dress and know that it will become a staple in my closet. runs true to size- xs = 0/2 and s = 2/4. if you are short, be prepared to have the hem taken up. + +worth the buy!",5,1,0,General Petite,Dresses,Dresses +1077,21,Beautiful dress,"I ordered this dress for my engagement photos and i am so excited to wear it! it's a gorgeous dress, a bit fancy. it drapes so nicely on the body. as previous reviews have stated, it's a little snug in the chest and shoulders so you might want to size up. i typically wear a size 4 in dresses and fairly small chested, and i decided to stick with the small in this dress. i probably would have been a little more comfortable in a medium as it's a little tight in the shoulder area still. overall thou",4,1,0,General Petite,Dresses,Dresses +862,42,Excellent staple tee,"I love this top! i purchased the gray simply because i felt it would go with more. i can pair it with blue jeans, my pink pilcro chinos, and even my turquoise pilcro shorts. i love that this tee doesn't have the rolled sleeves, so it's a little more finished looking. i tried on both the small and medium and both fit, but i preferred the tapered fit of the small and ultimately went with that. for reference, i'm 5'8"", 140 lbs, 32d chest. i do think $58 is hefty for a t-shirt, so you could roll the",5,1,2,General,Tops,Knits +1077,22,"Perfect event dress, runs small !","Love this dress so so much! the wearability of it isn't much since it's such a ""wow!"" dress, but if you have a wedding that it would be fitting for, itso perfect. if it were a touch shorter i'd be happy wearing it to the park. i'd suggest hemming if you want to make it more casual buy why go there when it's so stunning long. the sales associates in store kept telling me i looked like a princess ( although that may have been my doing as i kept twirling for them saying "" look how cool this is!"") .",5,1,1,General Petite,Dresses,Dresses +1077,58,Love it!,I would absolutely recommend this dress if you have the right body type.,4,1,0,General Petite,Dresses,Dresses +451,59,Fun dress,I love this dress! it is so much fun to wear to the beach or out to lunch! the arm holes are a little large so i wear s tank underneath!,5,1,0,General Petite,Intimate,Lounge +862,60,Soft floral tee,"Super soft, cap sleeves, shirt tail hem and double stitched seams. mine is the grey/green motif and tts. i bought (s) 34-b and the fit was perfect. the tee can transition into fall as i feel it has a more fall appeal over summer because of the grey/green motif. the blue/pink motif feels more like summer.",5,1,2,General,Tops,Knits +862,50,Lovely t-shirt!,"This is a very lovely t-shirt, because of the color and design. it has a very nice shape as well as the sides are not just straight across. it's perfect for leaving it untucked. the petite fits really well, no too long or too short! my only complaint is the the material, while really soft is also quite thin so i'm not sure how durable it is.",4,1,17,General,Tops,Knits +867,50,Cute and flattering top!,"I liked the idea of the scarf tie, so i tried on this top in the store. it was so cute on, that i ignored that it was a bit overpriced for the quality. the material is more of a t-shirt with elastic at the bottom, so it poofs a bit rather than laying flat. i'm not sure how durable the fabric is. it's still really flattering and the scarf color adds a bit of a pop to the navy color. i think ti would look great with jeans but, with the right pants, i could dress it up a bit and wear it to work. it",4,1,1,General Petite,Tops,Knits +296,79,Sparkly!,"I was hesitant to purchase since this price is expensive for a tank, but the quality and true shimmery-ness are worth it. it fits very well and goes with many different sweaters. very happy with my purchase!",5,1,3,Initmates,Intimate,Layering +1077,59,Gorgeous,"I ordered two sizes up, after reading reviews and added a belt for waist definition. it is long...i am six feet tall and it is perfect for me. this is absolutely beautiful; my husband loves the floral print, and i received countless compliments after one wear. the light, flowing material swayed and billowed in the breeze of the outdoor wedding i attended. very feminine and enjoyable to wear. pricey, but i felt i could wear spring through autumn. love! <3",5,1,2,General Petite,Dresses,Dresses +357,25,So cute n comfy,Wore these to church and stayed cool without being scandy. i havent worn skorts since the 90s and this was such a nice return to that trend. :-),5,1,1,General,Bottoms,Shorts +975,37,The coolest jacket,"This is one of those pieces that are timeless, special and absolutely stunning. the body of the jacket is quilted, very boxy, and the embroidery and beading on the jacket is what makes it absolutely gorgeous. the inside of the jacket is this super soft incredible fleecy fur. it adds to the luxury of the jacket. in regard to fit, its very boxy. if you live near an retailer i would highly recommend popping in to try it on. i personally wish it was a smudge longer, but i think the detail and style of",5,1,3,General Petite,Jackets,Jackets +862,42,Flattering fit,"I have discovered that i'm really picky about t-shirts. it's hard to find a cute, flattering one that you can wear with whatever. this one is perfect. the neckline is different, the sleeves are short -- almost cap sleeves. it fits nicely everywhere. i am an 8/10 and the medium fit well. i love that it's a dark enough color and not sheer (why are so many of your clothes see through, retailer?!!!) , so i don't have to layer something under it just to wear it. it's thin enough that you can wear it in",5,1,19,General,Tops,Knits +1104,30,Great dress,"I love this dress. it is so flattering and comfortable! i am petite with curves, and feel so good when wearing this. i ordered a petite small. i will have to stop myself from wearing it every day this summer.",5,1,0,General,Dresses,Dresses +867,51,Better in person!,"Don't pass this one up ladies....the fabric is casual and relaxed, but the drawstring-like collar gives it class and flirt all at the same time. i paired it with a jersey mini skirt and the way the banding at the waist falls on this top made it look like one whole dress. i can wear this with cropped jeans, shorts, anything! truly a homerun. i'm 5'10"", 138lbs and small fit perfectly.",5,1,1,General Petite,Tops,Knits +1077,21,Vibrant colors,This dress makes me feel like the princess of fall. it is very slimming. the colors are much brighter in real life. they look pastel here but are more pronounced. love this dress!,5,1,0,General Petite,Dresses,Dresses +1104,37,I wanted it to work,"I ordered a medium and it fit perfectly. i am anywhere from a size 6-8. 5'9, 155lbs. +sadly, i am returning this dress because the horizontal stripes make my hips look huge.",3,1,0,General,Dresses,Dresses +1077,32,Beautiful dress!,"Love this dress! very flattering. material is thinner and more lightweight than i was imaging but it is great. it really does run small, like the other reviewers said -- glad i ordered one size up, fits perfectly!",5,1,0,General Petite,Dresses,Dresses +867,50,,,5,1,0,General Petite,Tops,Knits +862,50,Very feminine,"Nice t-shirt. the print is very nice and the fabric is soft and flowing. i love the baseball cut, it gives it a different look.",4,1,1,General Petite,Tops,Knits +867,37,"Cute, lightweight summer top","This is cuter in person than online. the scarf goes all the way around the neck and ties on the side as the halter. the whole top is soft like a t-shirt material. there is an elastic band at the bottom, but it's not too cinched so it won't cut into your waist- it just gives it a little bit of shape. it's a cute way to show off some shoulder this summer in a lightweight fabric. i'm looking forward to wearing it out at night with nice jeans or during the day outside. a good price for retailer",5,1,3,General Petite,Tops,Knits +1077,34,Too small,"Thought this would be great for a laid-back wedding in new mexico, but didn't fit. i am a 12-14 and the 14 barely fit my chest and arms. not flattering. material did not seem very breakthable. had to return. better luck next time.",1,0,0,General Petite,Dresses,Dresses +1077,39,"Amazing, but runs sooo small!!","I absolutely fell in love with the stress when i sought in the store. the fabric and drape of the fabric is amazing! however, it runs extremely small. i normally wear a medium and can sometimes even wear a small and dresses. i tried on the medium and the large and i could not even get them zipped all the way. i'm so disappointed, as this is a gorgeous dress. definitely size up at least one, maybe two sizes.",3,1,0,General Petite,Dresses,Dresses +862,32,Comfy and flattering,I love this shirt so much that i bought it in both colors. i purchased the xs regular which fit perfectly. the material is incredibly soft yet thick enough that i know it has some durability. the neckline is very flattering and comes up higher than most tees but not so high that it feels constricting. i also love that it is slightly tapered and comes in towards your waist at the sides and is slightly longer in the back. it's an absolute staple in my wardrobe now.,5,1,0,General Petite,Tops,Knits +1104,39,Made my stomach look fat,The skirt part of the dress falls straight and accentuated my stomach. you can't really tell from the pic. but if you have even the slightest bump of a stomach the dress might make it look worse instead of better because of the way that it is cut. i'm pretty slim - 5'5'' and 114 pounds and it wasn't doing me any favors! the top of the dress is beautiful! i will exchange it for something else. i ordered it online and couldn't try it on before purchasing it.,3,0,5,General,Dresses,Dresses +1104,37,"So, so cute!","This dress is adorable. it's very comfortable and so flattering. the only thing is i can't understand why it is priced so high. it's a great dress, but i'm just not convinced it's the worth the price tag. i'm going to watch for it to go on sale. fingers crossed!",4,1,0,General,Dresses,Dresses +862,37,Great everyday tee,"I love the fit of this tee for everyday wear. it's forgiving on my late 30s mom body and looks much more stylish than the average tee. my only complaint is that the fabric started pilling on the second wear. otherwise the fit, style, and fabric weight are great. it fits tts. i'm usually a size 4 and the small fits perfectly.",4,1,4,General Petite,Tops,Knits +833,61,,"Looks lovely in the picture but looks poorly made in person, runs very small. i returned it.",2,0,4,General,Tops,Blouses +32,22,,"I absolutely adore this set. it's beautifully constructed-- perfect for something special but comfortable enough for everyday wear. i normally wear a 32 c but got the 34 a/b and it fits perfectly. my only complaint is that the longline portion tends to ride up and rest just below the underwire, as there is no band holding the lace in place along the bottom. still, it is far and away my favourite bra and i highly recommend it.",4,1,0,Initmates,Intimate,Intimates +1077,40,Stunning!,"This dress is gorgeous. i bought it to wear to the ballet, and i know i will wear it to other formal events as well. it is really fancy---definitely wouldn't wear it to work! i had it hemmed as it was really long on me, and it is a bit tight in the shoulders. it has a beautiful shape and flows while you are walking---it felt pretty!",5,1,0,General Petite,Dresses,Dresses +1077,40,Stunning!,"A truly gorgeous dress. ran a little too small in the shoulders for me so i had to reorder the next size up. its is very long, but i won't hesitate to have it altered. it is stunning!",4,1,2,General Petite,Dresses,Dresses +357,64,"Really, really cute","I love skorts! so when i saw this online i ordered my usual size 6. arrived today & really cute. fit is good w/ some room to spare. almost too big but i'll stick w/ the 6. looks as in the pic except the lower front part & the back has a metallic sparkly fiber in the fabric. not shown in the pic though. it's understated but attractive. the fabric patches give this skort a special uniqueness. casual or a little dressy, just love... 5'3"", 117#.",5,1,7,General,Bottoms,Shorts +357,35,,,4,1,0,General,Bottoms,Shorts +1104,35,"I like this piece, but read on for a few notes","This wears nicely, and is true to photo. flattering in the waist, and on a petite, everything fell in the right places. i also like the lightweight creppy skirt fabric. just one design note - the tie is sort of strange. essentially, there's a long tube of fabric coming out of each side of the bust - and it looks very odd when the ties are undone.",3,1,2,General,Dresses,Dresses +1077,46,,"Love this dress, beautiful!",5,1,0,General Petite,Dresses,Dresses +316,30,"Fun, unique romper","I really love this piece. it's so different from anything else i own! the material has a lot of fine details to it that are hard to see in the photos. easy to dress up with a bit of jewelry and heels. the only downside is the upper body fit. i'm 5'6"" and 130 lbs with more of an hourglass shape. i did not fill out the top at all, although the shorts fit fine around my waist.",5,1,1,General,Bottoms,Shorts +878,67,Pleasantly surprised,"I read all the previous reviews and wasn't sure what to think. when i saw it on sale at my local retailer store, i decided that, despite the thin fabric, it was worth getting. i love the quote spoken by audrey hepburn in the movie ""sabrina"" and knew i just needed to add a cami underneath. i bought it two days ago and wore it yesterday with a short sleeved open sweater, so the quote showed. i got two compliments on it within a short time! for reference, i am 5'9"" and 150 lbs. i bought a large and i",4,1,6,General,Tops,Knits +1072,28,Perfect,"I love this dress, saw it online and went to try it on in the store the next day. this dress is perfect! the pattern stands out but isn't too overwhelming. i'm 5'4"" 120lbs and 32ddd i bought an xs and i love the fit. it's just the right amount of fabric to be flowy without being excessive. one thing i've found with flowy dresses is they make you look preggers if you have a large bust however this dress is nothing of the sort. seriously if you find your size in stock snatch it up!",5,1,0,General,Dresses,Dresses +988,32,"Gorgeous skirt, wow!!!!!","I'd been eyeing this skirt for quite some time so when it went in sale, i took the plunge! i hover between a size 12 and 14, though lately unfortunately it's usually a 14, haha! ;) the 14 fit true to size, perfect silhouette! i will say it was more of a midi length on me than as seen on the model and i'm a near 5' 9"" so for more petite girls the length might be tricky. for me, it was fine, i liked the slightly longer length, it made it even more elegant. the quality was superb, no missing thread",5,1,9,General,Bottoms,Skirts +449,41,Adorable shorts!,These shorts are so cute and comfortable! you can wear any color top and they are very flattering! they fit tts.,5,1,2,General,Bottoms,Shorts +1072,34,Beautiful fabrics,"I fell in love with this dress as soon as i saw it. it does fit more loosely than i typically prefer, but the colors and the patterns have such personality that it didn't matter. i wear mine both as a dress and with leggings for the windy days. this is one of my new favorites!",5,1,1,General,Dresses,Dresses +316,35,,Really cute romper that can be dressed up or down. super comfortable and flattering. i ordered the xs and it fit perfect.,5,1,1,General,Bottoms,Shorts +828,25,Perfect flowy go to top,"For reference i am 5'7"", 145lbs, 34b normally a size m/6. i got the med and it ftt size. i ordered this online and it came a bit wrinkled so i'm hoping once i iron it out it won't be a problem when i am wearing it. i was looking for a nice flowy tunic-like shirt that was flattering but nothing too constricting. this is the perfect length for me to wear with leggings which is what i was looking for. it is longer in the back (covers my bottom) which is what i wanted and shorter in the front...the",4,1,3,General,Tops,Blouses +1072,46,Beautiful pattern,"This dress is so pretty and the petite fits great in the arms and the length is good- just above the knees. the material is nice- not flimsy. i'm just not sure if it looks right on my petite, straight frame. the front is cute but the back is pretty baggy and shapeless. i've never worn a shirt dress so i'm not sure if this is how it's supposed to look? i tried it with a belt but it doesn't seem to work with this dress as there's a band of loose elastic. probably would look better on a curvier bod",4,1,0,General,Dresses,Dresses +316,28,Love it!,"This romper is one of my favorite purchases. the material is great, the fit is very forgiving, and it is very comfortable. it is easily dressed up or down. i purchased a size smaller than i usually wear and it fits well.",5,1,0,General,Bottoms,Shorts +1072,46,,,5,1,0,General,Dresses,Dresses +316,28,Didn't work for me,"I was excited to get this romper, but it just didn't work. i'm petite with a large bust and the blousy design of the top portion just hung like a bag on me. returned.",2,0,1,General,Bottoms,Shorts +895,44,Good for one use,"After washing this top pilled terribly. it is beautiful, but only for one use.",1,0,0,General,Tops,Fine gauge +828,28,"Soft, long shirt that will go great with leggings","I ordered the orange color online and was very happy with the product when it arrived. it's a soft orange color, perfect for fall. the shirt is thin and probably will need a cami underneath, but it's longer in the back than the front and will go great with leggings or skinny jeans.",5,1,0,General,Tops,Blouses +316,28,Unfortunate!!,I am so sad that this romper didn't work out. it's just way too billowy and huge. i am usually between a small and medium so i ordered this small. i'm petite and somewhat curvy and i was absolutely swimming in this romper! might look best on taller girls. i am 5 '2 and about 125-130 lbs and this was like wearing a tent. do not recommend. such a bummer because i was a believer after treading all of the great reviews!,3,0,1,General,Bottoms,Shorts +927,53,Adorable swing sweater,"The picture does not do this swing sweater any justice. first of all, the colors are much more vibrant in person than in the picture. the description says it is a ""yellow motif""; there is absolutely no yellow in it. a bit of khaki in two rows of plaid, but no yellow. the predominant colors are a rich maroon, which is so popular this season, some bright blue and salmon colors, which does not come out in the picture. rich and beautiful. + +secondly, the sweater is sassy on -- just plain fun. i am",4,1,8,General,Tops,Sweaters +1072,29,Wish this had worked out!,"I saw this online and loved it instantly. i happened to come by it in the store and tried it on. it was almost perfect. but sadly, being busty makes the dress hang not quite as well as it could. i think this might be a better dress for the less busty/less curvy. but it is super cute and fun!",4,1,0,General,Dresses,Dresses +316,50,Substantial material,"Very flattering on. i'm 5'4"" /145lbs and took a small. i love how substantial the fabric is and how slimming it looks on. the only weird thing for me is getting it on?you had to step thru the opening on top, there are no zippers, buttons and if you have larger hips or butt, it will be a challenge to get on. once on, it looks great and believe it or not, roomy.",5,1,2,General,Bottoms,Shorts +927,44,Favorite new fall item,"This sweater jacket is beautiful! i wasn't going to try it on because i am very sensitive to fabrics that are itchy, but i am so glad i did. it's super soft and looks great with jeans and a t-shirt. i have a petite frame, and it doesn't look boxy at all like some swing styles tend to do. totally recommend this one!",5,1,0,General,Tops,Sweaters +1072,55,Flattering and comfortable,"I was so skeptical about ordering this; it's really not my style. i'm more of a black halter dress kind of person. this is so cute, and flattering. it's well made, not flimsy, but is soft and pretty. i'm 5'6"" and weigh 130. i bought the small and it fits perfectly; the dress hits me right above the knee in front. i can see myself wearing this with cute sandals and a floppy hat at a beach bar, or wearing it wiht6 leggings ans shooties when it's cooler and dress it up with jewelry. side note; i'm",5,1,0,General,Dresses,Dresses +316,30,Bigger than my first apartment,"I followed the other reviews and sized down. normally, i'm a small/medium in retailer (5'8""/135 for clarification) and i expected the garment to be a bit roomy. i ordered the small and when it arrived i almost called the corporate office to ensure i didn't have to pay rent on the romper, given that you could comfortably fit a small family of five in it. oddly, the arm-holes were normal sized? i returned this mess.",1,0,1,General,Bottoms,Shorts +1072,20,Beautiful,"Absolutely love the design, fabric, and fit of this dress! a perfect dress for many occasions, one of the many reasons i love this company! excellent customer service, employees, and of course adorable clothing. 10/10 would recommend buying this dress! and to all the taller girls, i am 5'11"" and 170lbs and this dress is still a good length! no need to continuously pull down and worry about who might see your rear.",5,1,2,General,Dresses,Dresses +316,38,Perfect fit,I am not a one-piece body type. this is the best best best romper i have ever tried on!! i have a large bottom and this is so forgiving due to the 1)perfect length of shorts 2) drapey fabric (not clingy) 3) asymmetrical cut of the top. highly recommend!,5,1,1,General,Bottoms,Shorts +1072,47,Sadly not for me!,This is an adorable dress that just didn't work for me! so sad! i wanted to love it because the pattern is super cute. i gave it 4 stars because it is very pretty and i can see it working on others!,4,0,9,General,Dresses,Dresses +1072,44,My surprising find,"On shopping trips i try to try on at least one thing that i like but don't think will look that great on me. this dress was that item today. not only did i like it, but i liked the way it looked on me. i'm 5'3"", 140 pounds and purchased the medium. i loved it, the clerks loved it, and my very honest daughter also loved it. i will wear it as a dress and also as a tunic over skinny jeans.",5,1,29,General,Dresses,Dresses +843,32,Buy this if you want a crop top,"I absolutely loved the print on this shirt, and as soon as i saw in the catalog i knew i had to have it. the velvet is beautiful and the pattern is even more rich in person. unfortunately, the shirt is very thin ? much thinner than i'd expect with velvet ? and is so short that it is more like a crop top. even with the shoulders pulled down for the off the shoulder look, the front of the shirt hit me barely below my navel. for reference, i'm only 5'1. i would buy this over again if it were only l",4,1,0,General,Tops,Blouses +316,60,"Love, love, love","I am 5'9, very long waisted, generally a size 10-12 or med, but ordered the large to ensure it would not ride up. +(and this brand has run small in the past) +i am keeping the large but also ordering a med to compare as i have room to spare - length and width +either way, this is a keeper!! +it is adorable on, comfortable, my t-back bra works perfectly, very flattering, and way better than expected +the shorts length is a little longer than pictured, but there is an elastic waist with a cami under an",5,1,17,General,Bottoms,Shorts +828,54,Soft light fabric,"This is a great summer shirt that will also transition into the fall. it is 100% rayon, so flows beautifully and feels really soft and cool against your skin. it is also washable. i think it looks much better in person than online. +i opted to have a snap added just above the top button which makes the shirt stay more closed and even-looking, as it tended to gap slightly at the top.. +for reference, i am 5'5"", 125 lb., but have broad shoulders, making my usual best size a medium in most tops and",5,1,20,General,Tops,Blouses +927,22,Colors are beautiful,"Noticed this sweater as soon as i walked in the store. i am 5'5"" 135lbs, with an athletic build so teeter between a small and medium in tops. i spent a long time trying to decide if i preferred the small or medium fit. the sweater is a bit boxy so ended up sizing up, as the longer length seems to off set some of the boxiness. i am looking forward to wearing this with skinny jeans and boots. as another reviewer suggested, i think a denim shirt will look great underneath. rated a good in quality b",5,1,4,General,Tops,Sweaters +828,49,Much cuter in person,"I bought this in-store and it is much nicer than it appears in the photos online. the fabric is soft and drapey, making the top lightweight and flowy. this is not a fitted shirt, and i didn't feel it was overly large, so i think it runs true to size. i felt fine in an xs. t did feel the need to wear a camisole/ tank with it, but i tend towards the modest side. i bought it with the wide-legged linen pants and have worn it with wedge sandals with many compliments! i wish i'd noticed the navy blue",5,1,0,General,Tops,Blouses +316,36,Perfect!,"After having my third child, i was looking for clothes to hide my tummy. i've always loved the comfort of a romper, but the typical cinched waist was never flattering on me. this romper does not disappoint. it hides areas i want hidden, but does so with style. i get numerous compliments whenever i wear this. i cannot say enough wonderful things about this piece!",5,1,1,General,Bottoms,Shorts +988,22,Pretty skirt,This skirt is beautiful- very different. it wasn't all that flattering on me due to the side pockets and back pleats- but all in all is a great skirt! i love the design and the fabric.,4,1,0,General,Bottoms,Skirts +316,47,Recommend with reservations,"This jumpsuit is all the things other reviewers have stated: roomy, flattering, has give. however, note: the way in and out of this outfit is a single button with a loop at the top of the back. if you need to run to the restroom - plan. it can be an absolute pain to get out of this outfit to go to the restroom. let's not talk about the possibilities of the outfit dropping on a public restroom floor...yes, i went there... + +i would have preferred separates to a single piece. you could achieve th",4,1,4,General,Bottoms,Shorts +1072,39,Love this dress,Cute print got lots of compliments when i wore it. lightweight. looks great with boots,5,1,1,General,Dresses,Dresses +1072,62,Simply beautiful!,Fabulous dress for both quality and design. the embroidery is gorgeous and the long sleeves make it practical to begin wearing immediately. true to size and flattering. looks darling with booties.,5,1,12,General,Dresses,Dresses +316,41,,"Retailer rarely disappoints and this jumpsuit is a perfect example! i ordered a small based on reviews that it runs large and i do not like tight shorts and it was the right decision. the fabric, design and overall style make this piece easy to dress up or down. i cant wait to wear it. if you are on the fence order it now because this will not last long.",5,1,2,General,Bottoms,Shorts +316,41,Spectacular romper!,"Love this romper! it is beautifully made and classy. the fabric flows and the construction is soft and solid. i'm 5'5"" and 135 and the small is a little roomy but comfortably so. can't wait to where it.",5,1,2,General,Bottoms,Shorts +927,49,Ack. i want to love it...,"I love so much about it... it really is a gorgeous piece! i just cannot get over the shorter sleeve... there's something about it that makes me feel like it looks as though i bought it too small, or shrunk it in the dryer =0 i'm the only one commenting on that, so it must be me. lol. i think i'm going to begrudgingly return this one :(",3,1,0,General,Tops,Sweaters +1072,18,I get so many compliments,I found this dress on sale in store and i usually stay away from this style/cut because i have a curvier lower half but to my surprise the dress was still flowy and fit the top nicely. i'm usually a small in tops and a 30 on bottom but it worked for me and i get a compliment every time i wear it!,4,1,0,General,Dresses,Dresses +1072,38,,This dress was very boxy and unflattering. i really wanted to like it because the blue and white details were so pretty but it had to go back.,1,0,2,General,Dresses,Dresses +828,59,Appealing color,I've received so many complements on this top. it's so comfortable and every time i wear it someone compliments the color. i ordered it in each color!,5,1,0,General,Tops,Blouses +316,36,Adorable!,"Fell in love with this romper online, but since a few reviewers mentioned it ran large, i wanted to try it on in the store. this romper is even better in person! extremely flattering, delicate details and lined! it's adorable! i am glad i tried it on in the store. i am usually a size 6/medium, but the small worked better for me. i know this will be a staple of mine all spring and summer.",5,1,2,General,Bottoms,Shorts +1072,66,Navy print shirtdress,"I just got this today & love it. the embroidery on the front is gorgeous & rich looking. the material is soft & has a nice weight so that it drapes perfectly & is not at all see through. it will look great with sandals, flats or sandals with heels. i wear an xs & it fits tts. it falls just above the knee. i can see me wearing this a lot. i was worried about it looking too youthfull for my age, but it doesn't at all.",5,1,5,General,Dresses,Dresses +1072,36,,"I love this dress. the pattern is fun, the style is relaxed and breezy for spring/summer, and it is well-made. a steal at the sale price! also, it has pockets :) a huge plus for me. since it is a loose-fitting style, i would say it run just a tad big. i bought the s petite and i am 5'4"" 115lbs. i could've gone xs petite ...but the s fits well and looks great. the pattern is stunning. a great addition to my summer wardrobe. i thought about pairing it with a fitted white pant, but it hits me right",5,1,0,General,Dresses,Dresses +1072,32,Adorable,"Love this dress! perfect length and i love the construction and where the seams hit (not too long, not too short). i got so many compliments with this dress!",5,1,1,General,Dresses,Dresses +828,53,Loved this shirt - but only in navy,This shirt is very flattering and drapes beautifully. i am 5'7 175 and the medium fits perfectly. i bought in navy but am disappointed in the other options - i would have bought all of them had they been nice colors but the yellow and orange are really garish and unflattering on any skin tone and the white way too see-through which ruins the visual lines of the top. bummer! but i wear the navy every day so give that a thumbs-up.,5,1,17,General,Tops,Blouses +1072,42,,This dress did not work for me. it was shapeless and boxy. i tried to belt it but the white front looked odd. if you are tall and thin maybe but not for the short girls.,3,0,2,General,Dresses,Dresses +927,65,Super cute,"Sometimes ""swing"" styles don't work on me - i'm on the busty side so they often make me look like i'm wearing a tent from a side view. not so this sweater. it's more of an a-line shape than a ""swing"" style and is very flattering - i would think on all body types. i love that it zips up and has pockets. the plaid is really pretty and the overstitching detail and ribbbed bottom elevate the styling. super soft too - not an itch in sight!! +(don't know why they call this coloration ""yellow"". it's n",5,1,1,General,Tops,Sweaters +316,32,Nice!,"I threw this into my cart online on a whim, but i'm not disappointed! and i don't even wear rompers usually. for reference, i'm 5'2 and normally a size 2, and i bought this romper in a size xs petite. if you're on the shorter side, i definitely recommend buying it in the petite size, as i feel that this romper would run large in the regular sizes. the fabric of the top drapes nicely on me, and the shorts are about medium length. i like the neckline details. the armholes in the petite size aren't",4,1,7,General,Bottoms,Shorts +1072,53,Pretty tunic,This is a pretty tunic but it just didn't look right on me. the colors are nice and you can easily hide body flaws.,5,1,1,General,Dresses,Dresses +1072,51,Fun dress,"A fun dress to just throw on go, nice details in the bodice, mix of blues in the prints, little longer in back is nice detail for those of us who want a shorter dress but not the worry of flashing from behind",5,1,0,General,Dresses,Dresses +1072,62,Flattering and easy to wear,"Cute design, the fabric drapes well, conceals many possible figure flaws, and has an upbeat, easy vibe. i got a small and am 125 lbs and 5'4"". i also washed it on a short cycle on cold and put it in the dryer for 5 minutes, which worked out just fine. great dress!",5,1,18,General,Dresses,Dresses +1072,39,Wish i could love it,"The style and fit are excellent, doesn't make you look frumpy or larger. just can't get into the pattern combo--the white is too stark and i feel like it was slapped on my chest like a dickey. i have the paquerette and that's a mixed bag of patterns that works really well. i'm not sure if i am keeping. i may have to bleed it out to soften the white. purchased size medium for my 36dd chest and wide rib cage.",4,1,0,General,Dresses,Dresses +1072,36,Love!,"The print, length and cut are all flattering. i bought the other tiny dress that was similar and will buy every pattern they make.",5,1,18,General,Dresses,Dresses +927,52,Beautiful sweater jacket,"I was so pleased to see this in the store, and i am glad that i had a chance to feel the knit. the combination of wool, cotton, and nylon creates a really soft, luxurious feel to the sweater. i was shocked that it didn't have cashmere in the blend, it is that soft! but, it is equally substantial. this sweater can surely be worn as a piece of outerwear, and it can be used as a layering piece. i consider this one tts because i typically wear a m in a knit that isn't fitted. i disagree with an earl",5,1,2,General,Tops,Sweaters +828,41,,"This is a great, casual top that can work in all seasons. i love it with skinny pants/jeans.",4,1,0,General,Tops,Blouses +835,28,,"I agree with the other review. the fabric and pattern are adorable and well made. the fabric is not sheer at all and great quality;however, the shirt is very wide. i am a 34/26/36 and the small is way too big. the arm holes are perfect but the bottom is uncomfortably large and awkward in appearance.",2,0,11,General Petite,Tops,Blouses +1072,54,Love,"Love everything about this: the length, cut, look, etc. i wear medium/large... went with medium and it was perfect.",5,1,2,General,Dresses,Dresses +1072,39,,"Purchased this dress at the sale price, with an additional 20% off sale, not exactly sure what to expect-- the print is so different than my usual style preference. so glad i did! while the dress is way oversized (for reference, i'm 5'4, 132 lbs) ordered size sm but prob should have gone with xs) it's stylish, yet effortless. today is the first day of wear (at my office) and already received many complements.",4,1,1,General,Dresses,Dresses +1072,27,"Lovely, runs looser than expected","I definitely trend towards preferring my clothes looser as a style but the fit on this dress felt a bit too boxy, i typically run between and x-small and small, should have gone with the x-small. i loved the print and quality of the dress though and would recommend it!",4,1,1,General,Dresses,Dresses +843,52,Beautiful!!! runs small,"This top is gorgeous. i normally wear s to m depending on brand and style. ordered a s and it was so small i returned and have l on order. it is cropped. i am 5'3"" and it hit me as pictured on model. if you are tall or like longer tops this may not be for you",5,1,0,General,Tops,Blouses +1072,54,"Great dress, good quality","Love love this dress! i got the regular size, but the length is more on the petite side. it's shorter than what i'm comfortable with, so will probably return it.",4,1,8,General,Dresses,Dresses +1094,55,Pretty but big,"This dress is really pretty and fun. i can see where i can dress it up or tone it down. subtle pretty beading at the neck. just ran a bit big on me, i sent back for the next size down -can't wait to get it!",4,1,8,General,Dresses,Dresses +214,70,,Did not notice small hole and stain on the bottoms until i had the tags removed the return label shredded.,3,0,1,Initmates,Intimate,Sleep +868,18,"A little big, but so comfortable!","This shirt is incredibly comfortable. the material is so soft, and it fits so well. i am 5'6"" and 130 lbs with a 32b chest and i purchased a small - it is large on me, and i would have preferred an xs, but the small is just fine as well! it is a great shirt, especially for an oversized henley. 100% recommend. (one star off for the larger sizing.)",4,1,0,General,Tops,Knits +868,52,,,4,1,0,General,Tops,Knits +854,33,Ehhh...,"I liked the product shots of this cardigan, but when i opened it up out of the package i was kind of ...unimpressed... the green wasn't quite the color i was expecting, the fabric was rougher, the lace was scratchy, the fit was boxy, and the sleeves are very dolman... none of which translated through the pictures online... i still think it's cute, but it has a much more casual look to it than i was expecting. i might reconsider if it hits sale, but for now it goes back...",3,0,3,General,Tops,Knits +966,44,,Very cozy wrap! the material is so soft. find myself grabbing this anytime i am chilly day and night. i offen find my daughter wrapped up in it too! and with the arm holes it stays on. very pleased.,5,1,0,General,Jackets,Jackets +877,39,Awesome and flattering,"I almost walked past this until i saw it on the display mannequin. the shimmer is very subtle, but there, the picture here makes hte shirt look more like a grey shirt, but it is more ""sophisticated"" in person. very soft fabric, fitted on the ""wasit"", but romier on top, cowl is super flattering. usual sizze fit very nicely. highly recommend, i won't hev to tuck it in everytime i wear it :-# i think it can be dressed up #skirt# or down #jeans#, almost a basic t!",5,1,9,General Petite,Tops,Knits +1062,33,Nice trousers,"I fell in love with these trousers as soon as i saw them online. i am a big fan of essentiel antwerp, their designs are unique and bold. these trousers definitely fit their aesthetic. the print is darker compared to the picture, making the green more of a dark olive and the blue almost looks black. they have an elastic waist so that helps for some of us who have a wider bottom. they cinch back in once they are buttoned at the waist, so it doesn't make your hips look wide. the fabric is soft and",5,1,3,General,Bottoms,Pants +866,46,"Pretty top, scratchy material",I bought this in size xl and the overall fit matched the model's photos. the neckline was a bit higher than pictured. the material was pretty in person. the problem was the material's threads were too scratchy. i was uncomfortable with that scratchiness against my neck so i returned it. i did like the unique leaf pattern of the lace.,3,1,0,General Petite,Tops,Knits +854,53,Very large,Very pretty cardigan but it is huge! i ordered a large (normally xl or large) and it is so big! the shoulder seam comes to middle of my upper arm. i wanted to exchange it for a medium but they are out of stock. bummer.,4,1,6,General,Tops,Knits +1028,56,Disappointed,"I had high hopes for these as coh is my favorite brand of denim, and these crops were made specifically for petites. also, i was happy to see they were described as a straight jean, not a skinny. the fit and sizing seems to be a little off. i ordered my regular size in this brand, 27p, but they were too big. sized down to a 26p. they were still too large in the waist (seemed very stretchy) but fit well in the legs. i like the fact that these crops were made for petites so the length was perfect,",3,1,6,General,Bottoms,Jeans +868,37,Comfy boxy fit,Very much liked this shirt for super casual days. its got a very flowy and boxy fit to it with side slits. it runs a bit big compared to what it looks like on the model.,4,1,0,General,Tops,Knits +868,38,I returned this.,I agree that this shirt is boxy and has no shape; it doesn't look at all like it does on the model. i returned it.,2,0,1,General,Tops,Knits +1087,28,Runs small,"I'm 5'3 135lbs with hour-glassy figure and the medium was a too tight from the waste down (but perfect on the top - i'm a 36c). pretty dress overall and looks true to color in photo, but have to return.",4,1,2,General,Dresses,Dresses +1033,40,,"These jeans are very comfortable. the distress look is enough but not too much, so it is a nice change to the traditional jeans without looking too worn down.",4,1,0,General,Bottoms,Jeans +1188,63,Great tunic or dress,This is a great winter addition to any wardrobe. warm but not hot. looks great with tights as a dress or with leggings. so many compliments.,5,1,0,General Petite,Tops,Fine gauge +868,56,"Cute top, better for fall than summer","This top is sooo cute. it does not look like pajamas as one person said, it looks like a top. it's a bit on the boxy style, so anything you want to hide below is well covered. has a nice length to it. is not just for lounging. paired it with a black pencil skirt and it looked great. i ordered the xl (i am a 40d for reference) and it hung very nicely. its extremely soft and very comfy. i only wish they had more colors.",5,1,0,General,Tops,Knits +877,42,"Shimmers with gold, silver, and black tones","In accordance with other reviewers, the pictures don't do this gorgeous lightweight sweater justice; the fabric has threads of gold, silver, and black that together make for shimmery elegance--not at all the heather grey in the photo.. i'm 5' 8"" 120 34b and the xs (regular) fits perfect--and actually more slimming/fit than in the photo. sleeves are long--which i love. a keeper, especially on sale!",5,1,1,General Petite,Tops,Knits +877,31,Sparkly & gold tones,"I didn't think from the photo online that the sweater would be quite so sparkly & gold! it has gold weaved in - so if the sparkly isn't your thing, beware. the sweater fit well although i didn't feel the neckline was quite as clean as in the photo above. also, you'd have to be careful not to snag on jewelry. it's a thin sweater material that may require a camisole underneath depending on the weather.",4,1,9,General Petite,Tops,Knits +854,38,Dolman style sleeves & scratchy lace,"I tried this on in store yesterday and didn't buy it due to the dolman style sleeves and the scratchy lace. dolman sleeves look terrible on me, so this was a no go. beware the scratchy lace...i had this on for about 2 minutes and was itching. otherwise, this will wok for plenty of people - the color can be a nice neutral. it does run large - i usually wear a large and sized down to a medium. it didn't work for me, but i'm sure some will find it a nice part of their wardrobe.",4,0,0,General,Tops,Knits +877,59,Itchy gold metallic thread,I couldn't tell on line this top has gold metallic thread running throughout. i find metallic thread to be itchy. when i first put it on i thought it might be o.k. i can tolerate a fair amount of itch in fabric. after about 5 minutes i suddently couldn't wait to get it off. seemed like the longer it was next to my skin the more irritating it became. it is also a bit thinner fabric than i expected. i was hoping to use it as a layering piece. it would work well for layering if it was comfortable.,4,0,8,General Petite,Tops,Knits +868,51,I love this!,"I actually like my shirt more than the other reviewers it seems. i am little (5'1"" and 103) and i don't think it's too boxy at all. i like the way it hangs. and i'll say i like it much more in person than on the model. it's somehow cozier than it looks in the picture. it's a real boosh (that mean's comfy.) i wouldn't have picked it from the online pic, but in person, it really caught my eye.",5,1,9,General,Tops,Knits +868,62,,"I was excited to see this top on sale as i had been watching it for a few weeks. unfortunately, i was very disappointed when i received it. it is, as a previous person said, very much like a pajama top. it is very loose and boxy, and in my opinion, did not flatter my shape at all. sadly, i will be returning it. i would not recommend this top to a person who is athletic, or straight and slender, as you suggest.",3,0,3,General,Tops,Knits +877,47,Poor quality and unflattering,"This top is has an awkward neckline, doesn't lay like the photo (as mentioned by another reviewer.) see threw, and of poor quality. the fit is very baggy and unflattering. and material is very thin. it also runs very large!! the color is pretty, but that is it :(",2,0,2,General Petite,Tops,Knits +877,40,Winner!,"When i walked into my local retailer, two of the saleswomen were wearing this stunning top in totally different ways, and i knew it would be the perfect gift for my mom. unfortunately the small was sold out, but they were able to order it online and have it sent. gorgeous medium-to-lightweight fabric that looks great out or tucked in.",5,1,2,General Petite,Tops,Knits +868,33,"Cute, unique top","I purchased this in the store. i thought it was cute and unique. i like most things with a raw edge. i am 5'3"", 115 lbs and purchased an xs. i have worn it a couple of times and have received several compliments. my only complaint is that when i saw the pic online, i was annoyed. the top is much wider than the photo depicts. lying flat it measures 24"" side to side at the hem and 24-25"" from shoulder to hem. why take photos that misrepresent the item? there will only be more returns. so if you li",4,1,21,General,Tops,Knits +868,37,Big boxy fun!,"This top is super soft cotton, with raw edges on the sleeves and hem. i bought the green top, which is a medium, faded olive color. despite the picture, this top is shortish in the front and on the sides, which are slit. the top is also very, very boxy. it's wide across, and doesn't ""fit"" the body at all. the sleeves are a slimmer fit, which contrasts nicely with the wide body. the picture is very deceptive. that said, this top is perfect for early fall/ late summer. super comfy. floaty. i wear",5,1,0,General,Tops,Knits +1087,37,Heartbroken too small!,"I am normally a small or xs with retailer clothing. i saw the previous review that this dress runs small, but the medium was sold out. i am heartbroken i have to return and can't get my size since they are all gone! was aiming to wear this to a high school reunion.",4,1,1,General,Dresses,Dresses +1094,46,Gorgeous dress!,"I fell in love with this dress when i saw it online and got it as soon as it went on sale 25% off. the colors are vibrant and the fit is perfect whether you have areas that you want to hide or not. it is true to size and i can see how you would want to size it down since it's baby doll shape, but it didn't work for me around the arm holes (and mine are not that big). i am 5'3"" and 120 lb and size 2 worked perfect.",5,1,0,General Petite,Dresses,Dresses +868,54,Boxy,"Hi, when i received this top i tried it on, looked in the mirror and packed it up for a return. the quality is excellent but it just too boxy. fits nothing like it appears on the model.",2,0,0,General,Tops,Knits +854,48,Think i'll like it,"Pretty color. +love the lace. +my husband thought it looked a little ""old lady-ish"", but i think it depends on what you wear it with.... +it's been too hot here to wear yet. i believe it will look great with a cami and leggings!",4,1,1,General,Tops,Knits +868,46,Day off henley,"Cute stripes and soft, but very pajama top like in feel/look... like if you wear it out, people will assume you've got the matching bottoms stuck under your pillow at home.",3,1,4,General,Tops,Knits +868,61,Poor cut & quality,"I really wanted to love this but the cut was very wide, short, and crooked. after it was washed once, it was completely unwearable because it hung all wrong.",1,0,0,General,Tops,Knits +868,84,Wanted to love,"I wanted to love this shirt, but was very disappointed. i had read other reviews and still ordered, but wish i would have listened. the shirt looks nothing like photos online and is extremely boxy and unflattering. had to send it back.",2,0,0,General,Tops,Knits +6,39,,,5,1,0,General,Tops,Sweaters +854,65,Comfortable and versatile,"The color is perfect for fall. dressy enough for work, and looks great with a pair of jeans.",5,1,1,General,Tops,Knits +854,36,Terrible but had so much potential,"When i saw this online i immediately put it on my ""must buy"" list. i hate paying the exorbitant shipping fees retailer charges so i was waiting until i could get to my local store, in the meantime it looks like it has sold out online but i am sure it will be back in stock soon. luckily, my b&m store had it and i am so glad i didn't waste my money or time ordering it online. this could have been great but once again antho missed the mark. what the product shot online doesn't show is that it has dol",2,0,7,General,Tops,Knits +868,38,Cute top with some caveats,"I purchased the green online, in my usual medium. i do like it but i will be returning it for a few reasons. first, i couldn't justify the price as it's really not unique enough. it kind of reminds me of a pajama top. also, i thought it was 3/4 sleeve, which it is not, it's long sleeve. and lastly, it appears to be regular length on the model. i'm maybe 5'4 at best and it's shorter and boxy. i gave it 4 stars because i really like it for what it is, but just not what i expected. it is cute, spor",4,1,21,General,Tops,Knits +1083,34,First lars miss...,I love every other byron lars dress i've bought and this was a no brainer for me. when it arrived i was really disappointed. the fabric is very stretchy which makes it super forgiving and very thick. with all the buttons planted on this dress i was expecting it to open easily from the front as one of my other dresses by his does. nope. only the back buttons open. thick stretchy fabric and back buttons...not an easy thing to navigate. i was also very sad to see that the length was all wrong for m,4,0,3,General Petite,Dresses,Dresses +836,52,Requires layering and made for the long wasted,"This top is so cute but after i added my tank top under neath it made me look frumpy. however, if you pair it with the right tank and bottoms it could be very cute. i think my problem is that i am not long wasted enough. i wish that it had worked because it is so unique.",3,1,3,General,Tops,Blouses +828,40,,I always wear a small in retailer tops and this was very tight in the chest. had to return for a medium. cute top otherwise!,4,1,2,General,Tops,Blouses +872,31,Give it a try,"I'm between a s & m. on most swing tops usually s which i thought i'd be in this one but not the case. a m fit but i thought i could probably even wear a l which i never wear. but it is gorgeous. this is one of those shirts that keep me coming back to retailer. this is a perfect fall top! great tan color the beading is so so pretty and will really look great under sweaters. this top looked so great with my louis vuitton bag it was just too good to pass up so go to your local store, find th",4,1,1,General,Tops,Knits +868,44,Cute top but looks like a tent (i'm not kidding),"I love baseball style tees and when i saw the homebase tee (in two colors no less), i was very thrilled especially since it was during the 20% mother's day promotion on all items. based on the model's photos, the top looks flattering with a swing type style. i usually wear a medium and bought a small size in this top. when the package was delivered, i excitedly opened it and found two tees looking like maternity tops which would be lovely if i was pregnant. the tops are so wide not like the webs",1,0,21,General,Tops,Knits +291,36,Super cute and comfortable.,Great fitting and super cute!!!!! my husband said this is the cutest bathing suit i've owned!!! and i live in bathing suits!!!,5,1,0,Initmates,Intimate,Swim +1098,43,Disappointed,"I have never taken the time to write a review but i was so disappointed by this dress. the design is cute and i got the medium instead of a small (i'm normally a 4/6) and i wanted to make sure it was a bit looser and below the knee. that was a good call because the fit is comfy and cute belted. however, it is so very thin and see through. i was looking forward to a cool, cotton dress for summer but this will definitely require a full slip if i decide to keep it. it came with no slip at all so th",3,0,10,General,Dresses,Dresses +291,28,Beautiful print and well made,I love this design so much and it is very well made. i also like the adjustable shoulder straps and that the cups are not padded cups. i think that makes it look less like a bra and more like a bathing suit. only con is that it seems to run small.,5,1,1,Initmates,Intimate,Swim +872,20,Not my favorite purchase,"I love the design of this top, however, it's quality is lackluster. the shirt is pretty short and would be more flattering (at least on me) if it had a few more inches. also it's pretty sheer, so figuring out under garments is a dilemma. i will still wear it because i love it. looks great with a denim vest over it!",2,0,5,General Petite,Tops,Knits +828,83,Perfect denim top,"A beautiful classic! +love the denim fabric in such a pretty style. +this top has a more flattering fit than appears in the pics. +the fabric is soft and the fit very flattering. +ordered my usual size medium and fits perfectly........very true to size.",5,1,0,General,Tops,Blouses +872,83,Beautiful beautiful top!,"I ordered this online, with a little hesitation due to the negative reviews. +it arrived and it is beautiful! +the beading and subtle cut outs are gorgeous. +the colors of the beadwork in contrast to the nude tone of the fabric is stunning and elegant.! +the fit is very very flattering!!!!! +runs very true to size.",5,1,3,General Petite,Tops,Knits +868,37,"Thin, boxy","I bought this shirt after reading so many positive reviews. it looks much thinner and cheaper than the photo depicts. like many reviewers have said, it does hit just above midriff but the fringe covers your belly. it didn't hang right on me and i felt like i was wearing a rug.",2,0,0,General,Tops,Knits +868,53,This one's a keeper,"Really cute top(especially the back)! i've tried on several of these tops that overlap in the back and none of them lay as nice as this one. the soft cotton fabric really works well with this style. runs tts and i love that the arms are more fitted with some stretch to the fabric. regular length works fine on my petite frame as well. the color is a darker cream and almost has a slight nubby effect to it. first one i received had a snag/hole in the lower sleeve, so hopefully it holds up.",5,1,0,General,Tops,Knits +872,31,"Cute shirt, but not cute on my figure","I have more of an athletic figure, and the sleeves tend to come in closer to the body than pictured. i didn't like that cut on my arms/torso. the shirt is really cute, otherwise! i am usually a size 4/small and this was a little short and snug.",3,0,0,General Petite,Tops,Knits +872,60,Simple beauty,This is a tts basic tee with the added flare of the ruffled back peplum and the elegance of the beaded front neckline. the beading is lovely and mine was intact. i bought my normal small based on reviews and the fit was perfect. (34-b) the beige color is a classic neutral and can be worn year round by just adding a jacket or sweater. love it!,5,1,3,General Petite,Tops,Knits +868,44,Versatile top,"Bought in the store, will look great with black or dark blue jeans and a fun long necklace. does not fit like it looks on the model, it is more fitted. i plan on wearing a spaghetti strapped cami underneath because the back has a draping effect and is open. the front is on the shorter side but the bottom of the shirt (not including tassels) reaches the top of my jeans, and the tassels hang below. it is a very versatile top, one that can be dressed up or down. sleeves above wrist.",5,1,0,General,Tops,Knits +868,38,Huge,"I love baseball tees and this looked like a more refined version, but it was huge and shapeless. nice material and fabric but this one is going back.",2,0,0,General,Tops,Knits +828,29,,Very pretty top! the fabric is super soft. i ended up sizing up from my regular xs to a s because the chest area was just a bit snug.,5,1,2,General,Tops,Blouses +768,28,Love these pants!,Love these lightweight pants... they're beyond comfortable and the print is darling! hope this designer has additional pieces next season!,5,1,3,Initmates,Intimate,Lounge +836,45,,"I adore this shirt. like a previous reviewer, the shirt runs a little small in the bust. i got a 6 instead of my typical 4 and it looks great. the quality is great and the color is lovely. the feel of the fabric is nice substantial weight.",5,1,1,General,Tops,Blouses +768,41,,So thin and see thru it's not even wearable in public. extremely cheap and ill fitting for any price let alone this price. i feel like they will rip the moment i wear them out. going back.,1,0,4,Initmates,Intimate,Lounge +868,54,Huge!,"Hi, i would have to agree with all of the reviewers.i unfortunately had to find out for myself. mistake. it's huge. i love the quality and design but even if you sized down two sizes it wouldn't help.",2,0,3,General,Tops,Knits +872,38,Wanted to love but...,"I ordered this top online and was hoping to love it, however it didn't fit me properly...the arm holes were much too large (i'm typically an xs or small) i ordered the small and based on this fit i don't think the extra small would've fit either :( also i thought the material seemed very delicate and somewhat thin....and with 3 kids always hanging on me i don't think this top would last very long...",3,0,0,General Petite,Tops,Knits +868,67,Don't put it in the dryer,I loved this sweater when i bought it. wore it a couple times then washed it according to the tag. it shrunk at least two sizes! and the tassels got all tangled (which i guess i should have seen coming). pretty bummed about it because this sweater looked beautiful on.,3,1,0,General,Tops,Knits +868,52,Fragile fabric,"I love the look of this sweater, but just bought and put on at home and noticed 2 pea sized holes in fabric, near arm holes, but not on seams. not sure if i bought this way and did not notice or if fabric is just incredibly delicate. will try to repair but scated this will not hold up... look it over carefully before you buy, they kind of look like moth holes...",2,0,0,General,Tops,Knits +694,36,Very pretty,"The design is gorgeous and the fabric feels great. not a lot of functionality, then again i did buy the kimono to feel sexy and not to keep warm! i ordered the xsmall/small and feel i should have ordered the med/large. unless you're super tiny/fit, i'd recommend sizing up here. i bet it would still be super flattering a touch larger!",4,1,5,Initmates,Intimate,Intimates +291,35,,,4,1,0,Initmates,Intimate,Swim +868,47,Flipping cute!,"This is adorable! the sweater is light-weight and soft. please know that the sweater line falls right at my mid-riff, followed by the fringe, so for me, it's almost cropped. the fringe covers my mid-riff. the back is open and so this sweater will not be super warm in the winter, but it is stylish and cute. i love it! it's different and unique. i purchased xxs in petite. fits a little more cropped than the photo shows.",5,1,5,General,Tops,Knits +311,21,Like velvet!,"These leggings are so thick and soft! they feel like velvet on your skin. i am so, so happy with my purchase, and would recommend these to anyone who is looking for a unique, comfortable, and quality pair of leggings.",5,1,2,Initmates,Intimate,Lounge +828,57,,"This button down is to die for! the material is incredibly soft and comfy. it looks great with my retailer leggings, and is also a great look with my casual denim, paired with a cardi and flats or booties. i've worn it several times for different looks and always get compliments on it! definitely a head-turning piece.",5,1,0,General,Tops,Blouses +948,40,"Very nice, just as pictured","This sweater looks just as pictured on the model. its very warm though even with cropped sleeves. i ordered a large and it was true to size but roomy. i liked this top very much but is thicker than seems. outer grey material isn't very pleasant & itchy, however the bottom portion is an underneath gown and attached to sleeves inside so its very soft on touch.",5,1,0,General,Tops,Sweaters +862,59,Quality fabric and style,This has a very nice hang to it- combination of the cut and linen- like fabric. i liked it so much that i bought two different colors. so many tees are blousy and full now;i am short so they look like maternity tops. this one is much more flattering.,4,1,0,General Petite,Tops,Knits +862,57,,"Fantastic top! fits, flatters and falls beautifully! i loved the white so much i went back for the black! i wear with jeans, leggings and with pant suits. lovely with all!",5,1,5,General Petite,Tops,Knits +1131,41,,What a let down. this is not what i would call a coat but a sweater. it is unlined and very lightweight. the fit was cute and would have been so great if it was actually a coat.,3,0,1,General Petite,Jackets,Outerwear +1131,58,My daughter's first job in the city!,"This coat is so stylish and actually reminded my daughter of the ""madeline"" stories. she just got her first paid internship in the city, so i am buying this beautiful red coat for her to celebrate. after all, a girl has to make a good first impression...",5,1,0,General Petite,Jackets,Outerwear +1131,59,Beautiful!,"Ordered this coat in a small. it is meant to be a slouchy and the fit is perfect - i'm 5'5"" and weigh around 120. the sleeves are slightly longer than 3/4. the fabric is so soft, the coat is unlined and drapes beautifully. this coat reminds me of a coat my mother had when i was a child.... she referred to it as her 'car coat'... i believe that was a style then. worth the $.",5,1,1,General Petite,Jackets,Outerwear +862,46,Tent-like but soft & comfortable,"I bought this in size xl. it is so much bigger than i expected. there are panels of material. it really is huge. not flattering at all. still, i kept it. the material is so soft & flowy. i've gotten good use wearing it around the house, doing chores, resting, etc. i wouldn't wear it out doing errands. but, around home, it's perfect for feeling cozy. such a strange cut. i don't know who would look good in it since it can look sloppy. i think many would enjoy wearing it at home.",2,0,0,General Petite,Tops,Knits +1131,28,Too large and low quality,"I wanted to like this coat so bad! i loved the bright red color and design, but when i received it, it seemed very cheap and just too large. i returned it.",2,0,0,General Petite,Jackets,Outerwear +862,40,Great basic,"I bought the white and olive today. i usually get a size s, but opted for the xs for this shirt. i am longer torsoed than perhaps average, so it came to just below mid-butt, which i like. my shoulders are on the broader side and a bit muscular, but even still the xs was perfect and cute, rather than just comfy. def an undershirt is needed for these, but i run cold, so i nearly always have an undershirt. the fabric is just nice enough that i could wear the shirt with a fun, nice skirt with a high",5,1,2,General Petite,Tops,Knits +862,43,Favorite tee,Love this top. i have it in several colors and i'm waiting for the black to be restocked. it's somewhat sheer. perfect w my kimonos,5,1,1,General Petite,Tops,Knits +862,68,Great purchase,I bought this tee for a light summer top as i love linen. this top does not disappoint. i bought my usual size xs and the length is good-slightly longer in back. i purchased the black and the grey. the grey will be great with jeans in any color and the black i can wear either dressed up or down. the quality seems good. great purchase!,5,1,0,General Petite,Tops,Knits +1131,43,Unlined and unshapely,"I have been looking for a fall/spring coat to wear when the weather is between 30 and 55 degrees. this ""coat"" looks great in the pictures, but so disappointing in reality. the best thing i can say is that the fabric is soft. it is unlined, so i'm not sure why you'd even wear it -- if the weather's warm enough to wear a thin, unlined jacket, why not just wear a sweater? the weight is not what i would expect at this price point. even worse, the design is terrible; my husband (who has a great eye)",1,0,9,General Petite,Jackets,Outerwear +1131,53,Terrible,Visions of sartorial splendor danced in my head as i planned my instagram posts centered around this coat. and then it showed up on my door and my dreams were crushed. i'd already read the reviews and knew the coat was unlined and would be oversized. i did not expect it to be soooo sloppy. especially around the collar. there is nothing crisp about it. i've had boiled wool outer ware before that held its shape much better than this. if i wanted fleece i wouldn't have picked retailer as the s,1,0,0,General Petite,Jackets,Outerwear +862,26,,"I adore this top! i ordered in the white and wear it with everything! i am a 34c and size 6 and purchased the xs. it was slightly snug in the arms but it does stretch. i just bought the black as well, as it truly it a great staple piece. forewarning: do not dry this! my husband accidentally did and i was forced to buy another one, since it shrunk so much. the fabric is lightweight and great for summer, but keep in mind that it is thin and may require something underneath (tank top, etc.)",5,1,1,General Petite,Tops,Knits +658,51,Easy breezy,"This dress was so comfortable, i wore it all day - to church, out to brunch and actually slept in it. it would travel well, too.",5,1,0,Initmates,Intimate,Lounge +862,40,Big and boxy,I bought this t-shirt in three colors and i'm keeping them because they work for what i want (travel clothes) but the t-shirts run big and are too boxy. i think they look nice if you tuck them in.,5,1,5,General Petite,Tops,Knits +1131,49,Still deciding,"I have not a actually purchased this coat yet but was able to try it on at my local retailer. thought i'd pass along a couple of details the description is missing. the coat is not lined. i have regular length arms and the sleeves are a bit short, not quite 3/4 length but not long enough to keep my wrists warm. also, i was afraid the red would be more orange, it is a very pretty red. it also runs a little big. i am 5'4"" medium, athletic build and would probably consider a m but it seemed bi",4,1,47,General Petite,Jackets,Outerwear +862,52,Cute but...,I loved this shirt when i purchased it but it shrank badly and the front seam (on mine) was crooked. no longer have my receipt so not sure i can return it~ sigh. i do love the pilcro chinos i bought to go with it however!,2,0,6,General Petite,Tops,Knits +1131,64,I love this coat! fun outer layer!,I love this coat! it is exactly what i was looking for. it is unlined (with cute fabric edging on the seams) and a lightweight wool but it is roomy enough for layering and that is what i like about it. also like the length as it can conceal a long tunic sweater without it hanging out the bottom. it is very versatile in that it can be worn with something dressy or jeans and leggings. also like that i can add any fun scarf to dress it up or down. it's a great contemporary shape. i would say this c,4,1,10,General Petite,Jackets,Outerwear +862,29,,"I echo what the other reviews say - this is a tshirt but it's very flattering. i bought the black and dressed it with a bright turquoise necklace and received a ton of compliments. extremely comfortable. i've been just looking for this shirt when i get home from work or having to do errands because it is that comfortable. + +i'm buying more it's so comfortable and flattering.",5,1,1,General,Tops,Knits +1131,54,,"Love this cost! runs large. usually wear a medium or large, ordered a medium and had to exchange it for a small. fits perfect now. not very heavy so don't buy if you're looking for a warm coat.",5,1,4,General Petite,Jackets,Outerwear +1131,57,Good? maybe...,"I love the way this coat looks in the website. it turned out to be a little different than i thought it would be. can't decide if i will keep it. +the sleeves are bracelet length, i have long arms so slightly awkward for me. i ordered the small even though i wear a medium in everything else (5'8"", 135 #). so glad i did because it is biggish on me. +it is unlined but made of a lovely, soft wool. the edges are all finished with a bias edging which is unique and well done. it is boxy, very. +lovely wo",4,1,4,General Petite,Jackets,Outerwear +1003,38,Beautiful and very flattering,"I love everything about this skirt! the fabric is super comfy and it drapes wonderfully. fits great. a bit long for me as i'm 5'6 but totally worth it. i don't wear heels so i might need to alter the length, but i knew it would be long when i ordered it. i purchased the grey, but i might have to order the taupe as well!",5,1,3,General,Bottoms,Skirts +948,60,What a mess,"I had my eye on this one for awhile and decided to buy it when it popped back on my wishlist. i can see why someone returned it. the sweater top hits at the worst possible spot and made me look ridiculous, like a mushroom top. from the side i saw the potential, but not enough to save it. probably one of the worst things i have ever purchased from retailer.",2,0,0,General,Tops,Sweaters +1131,47,Red simplicity,"I bought an extra small and i love it (i'm a size 2-4). it's warm, it's comfortable, it fits with everything, can be dressed up or down, it's not lined but it is well finished and does not feels like a sweater coat...it feels like you have a new friend...",5,1,2,General Petite,Jackets,Outerwear +948,50,Truly unique sweater,Loved this sweater when i saw it online. when it arrived it had a very strong chemical smell to it and was very stiff textured. despite the dry clean only tag i decided to soak it overnight in woolite to soften it and get rid of the smell. the next day i rinsed it in cold water and block dried it outside. it still wreaked of chemicals and took three more subsequent washings to finally get rid of the smell. hand washing did not hurt it whatsoever fyi. it looks fab with jeans and is very comfy. i,5,1,0,General,Tops,Sweaters +1131,24,A coat with a great silhouette and personality,I love this coat. it was a great purchase and i would reccomend it to others. it looks great with layers and is comfortable for 30-50 degree temps. definitely size down when buying.,5,1,0,General Petite,Jackets,Outerwear +259,42,Too transparent,"I ordered these in m (5'8"" 140 lbs.) and they are tts: they fit well and are neither tight nor loose. the issue that i have with them (and the reason that i sent them back) is that the material, although comfortable, is completely transparent; if i were to try to run out to get the mail in these, the whole neighborhood would essentially see me bottomless! furthermore, these are not white but off-white (and quite a yellowy off-white, at that), so these loungers don't look as cute with the feature",2,0,1,Initmates,Intimate,Sleep +904,42,Pretty but size down!,"A few things: this runs very large. i'm usually a s/m (i'm a little busty so i sometimes size up!) and i'll definitely need an xs in this, i'm swimming in the small. the blue is definitely a steel blue/grey, not really navy. the material is very thin - i thought it would be a bit more substantial. it's very lightweight. that said, it's very pretty, i love the neckline which can be worn as a cowl neck or off the shoulder, and i'll give the xs a shot instead!",3,1,2,General Petite,Tops,Fine gauge +825,24,I don't want no scrubs...,Do not under estimate the boxy shape of this it looks kind of like a hospital scrub. i think with this top the styling is key. the sleeves are long and boxy and the neckline is somewhat of an oval so for me this wasn't a top i could just throw on without doing some outfit editing.i styled this with a dark high waisted skinny jean which i tucked the shirt into and some red heels and i was ready to go. anyways the material was great it was a silk type polyester that didn't seem to be static prone,3,1,1,General Petite,Tops,Blouses +1042,26,Pretty print,The jumpsuit is very pretty but it's definitely not meant for women who are on the curvier side or shorter. plus it sort of looks like pajamas on. i am 5'7 and i wanted to to look similar to the model in the picture but it comes down to my ankles so it would look best on taller/thin woman.,3,1,4,General Petite,Bottoms,Pants +826,77,Perfect hot summer day choice,"This top is light and swingy with a bold pattern that looks even better in person. the neckline is very high, which was a surprise for a summer tank, but it's cut well. nice surprise: on seem pockets! wore it today for the first time and received many comments. a keeper. fits true to size and perfect for my petite build up top.",5,1,1,General Petite,Tops,Blouses +826,66,Very cute,This is a great little top. colors are beautiful and more vibrant in real life. ordered size large and the fit is the same as the model. you could probably size down. armholes are a bit large but am picky about that area and i can work with it. the body flows but it's not huge and is slimming. the high neck and tie are darling. will be cute under a sweater or jacket as weather cools. good buy on sale.,4,1,0,General Petite,Tops,Blouses +1042,44,Short in the stride,"Super soft fabric, however very short in the stride. i ordered an xl, normally wear 12/14. i had to return it.",2,0,0,General Petite,Bottoms,Pants +1155,20,Swim,"Runs small in the chest, so don't order if you are large chested! over all, very cute.",4,1,0,Initmates,Intimate,Swim +1042,36,So much fun,"I love this jumpsuit. it's fun, flirty, and seems to put a smile on the faces of passersby. it works for multiple occasions/events, and is so comfortable. if daytime pajamas sounds good to you, this is your jumpsuit. dress it up with an up-do and dangly earrings, or down with slip-ons and a cardigan, i have found that i can't go wrong with it. fits me just perfectly, doesn't wrinkle too much during wear, and the adjustable shoulder ties are convenient.",5,1,1,General Petite,Bottoms,Pants +259,35,,,1,0,0,Initmates,Intimate,Sleep +904,47,Fits like a giant tent,"The photo misrepresents how large this sweater is. it is giant! petite ladies stay away from this sweater. i ordered an xs and usually can manage to fit in a regular xs, but this just floored me. the neckline wouldn't even stay up on my upper body, it was that loose. also the width of the sweater does not at all hug the body as shows on the model. it is like a tent. i'm so bummed. the color blue is nice and the sweater is really soft. it's too bad it doesn't fit smaller women.",1,0,4,General Petite,Tops,Fine gauge +1033,63,I think pilcro are my favorite jeans.,"I love the serif jeans and these stet mid-rise jeans fit perfectly, too! true to size and i really like the wash. i am 5'4"" and a size 2, and the 26 fits just right. because of my height they come closer to the ankle on me than what you see on the model. i have more of an athletic build, rather than curvy.",5,1,3,General,Bottoms,Jeans +1037,64,Perfect leggings,"Flattering fit, true to size, i ordered 31 which fit perfectly. i am 5'8"", 145 lbs. wish it came in off white,sand and black. great with boots, and more substantial than some leggings. also extremely comfy!!!",5,1,2,General,Bottoms,Jeans +1033,34,Look great on my wife,These look great on my wife. very versatile and go with like 80% of her wardrobe. she raves about them and they look great.,5,1,1,General,Bottoms,Jeans +895,33,Perfect for cooler weather!,"Love this shawl/wrap! was looking to purchase the white & warren cashmere poncho (but available online only), and then saw this in the store. tried it on and fell in love. love that it's 100% cashmere -- super soft and warm. would recommend!",5,1,2,General,Tops,Fine gauge +1033,59,,Very flattering ang comfy but they do run slightly big. i stayed with my true size because i am thicker in waist but if small waisted size down. fit ty's in legs and bottom. love color!,5,1,0,General,Bottoms,Jeans +1033,45,,Great fit and extremely comfortable.,5,1,1,General,Bottoms,Jeans +1098,57,Embroidered masterpiece,This dress is so beautifully embroidered with really cool mix of colors. it is pricey but i do think it will stand the test of time and become an retailer vintage piece. planning to wear it now with wedges and in the fall with booties and a light sweater.,5,1,1,General,Dresses,Dresses +1033,23,Love these jeans!,I love these jeans! i wear them all the time. i love the way they fit and the price is great. please make these exact pants in more colors!,5,1,0,General,Bottoms,Jeans +867,34,So cute! though inside not soft,"I got the cream color and absolutely love the style and color of this sweater. however, when i tried it on at the store, the one i tried on was super soft and comfy. i ended up finding this later on sale and ordered it online. when i got it, i don't know if it was once worn or washed by someone before, but the inside was not soft at all! i was so sad! anyone else have this experience? size is great. i ordered an xs.",4,1,0,General,Tops,Knits +1098,62,Gorgeous but overpriced,"I saw this in stores and ran right up to it because of the gorgeous embroidery work and vivid colors - unfortunately those bright colors are totally washed out in the online model pics...barely recognizable! the fabric itself is super soft and not at all stiff, plus it has pockets! i can see this looking great with leggings and boots, but the sleeves flared a little too much which i think would add bulk under a cardigan, so it might not carry as far into cooler months as i would like. my usual s",4,1,35,General,Dresses,Dresses +898,43,,I love the details that this cardigan has. try it!,5,1,1,General,Tops,Fine gauge +895,46,,,5,1,0,General,Tops,Fine gauge +850,39,Pretty and feminine,"I tried it one bcasue it is on sale and i love it...too bad i don't need yet anothr black top. fit is loose/flowy, but the ruffles add a littl cahrm to the shirt. tried on regualr xs, i could proably go to petites though, but thankfully there is a button at the neck",5,1,0,General,Tops,Blouses +903,41,Business in front; party in the back,"I tried this sweater on in-store in grey. from front it appears like a nice, normal sweater, even a little boring. but the side and back are *wow* really fun! the colors and swing of the back material look great, especially with jeans. the front is short, making you wonder if it's supposed to be a crop top. also, the style of the sweater lets isn't very warm because the back is so loose and flowy. i couldn't decide whether to buy it or not. maybe i will wait for a sale.",4,1,0,General,Tops,Fine gauge +1033,37,,"I have been searching for grey jeans and haven?t found anything that i truly love. i tried on both a 25p and 26p. the 25p was too tight and i don?t think they would have stretched out enough for me to be comfortable in. the 26p was close but i was afraid they would stretch out too much. they looked good from the front but did nothing for my cushion. the color, length and feel of the jeans was perfect. in the end they went back and the hunt continues for grey jeans. i would recommend trying these",3,1,0,General,Bottoms,Jeans +896,50,Great poncho!,"I ordered this for the colors, and modern geometric design. colors are as shown. a beautiful combination that works well with blue jeans, and my burgundy flats. it's casual and soft enough to wear all day. i wore it to the beach, then out to dinner the same evening! oh... i spilled red wine on it at the beach, and couldn't wash it until the next day. i used dawn dish detergent and hydrogen peroxide on the spots, then laundered in the washer on hot and they came out, completely. i air dried, and",5,1,2,General,Tops,Fine gauge +1098,49,This dress is huge,"I saw this dress online and loved the colors and whimsical embroidery . i thought it would be the perfect dress to wear on the weekend with cute sandals. i was excited when the dress arrived in the mail as the colors were vibrant and the material was soft and cozy. unfortunately this dress is huge. it is a rectangle with pockets. i bought the xxsp, my usual size and this dress was so big my sister was able to fit in it with me.this dress was beyond alterations. too bad it was a great idea but no",2,0,5,General,Dresses,Dresses +867,29,Weird fit,This top is a good concept but the structure of it is not for all body types. i am 5.6 and 135 and wear an xs to a s in retailer tops and i ordered this is a small and it was huge in the chest and tight at my hips...will be returning.,2,0,0,General,Tops,Knits +896,46,Love the print,Very cute print! love the mix of the colors on this sweater. looks great with jeans!! throw it on over a tshirt and you are set.,4,1,2,General,Tops,Fine gauge +1033,63,Love these jeans!,"I normally wear a size 27, but i have a pair of shorts by same designer bought several years ago in a size 26 and so i went with a size 26 for this purchase. they fit perfectly. i would have liked to order the petite, but it did not appear to be an option. the fabric is very soft and stretchy. they are little loose around the ankle, but i have very skinny calves and ankles, so that is not so surprising. the color is a perfect grey that will go with everything. i would buy these in other colors.",5,1,2,General,Bottoms,Jeans +1099,36,"Not silk, but a great dress","This dress is 100% rayon, not silk like the description says. that doesn't bother me that much because it's a really cute dress! it's also hand washable, which i like! i hate going to the dry cleaners! it fits true to size, and i know i will wear it for lots of occasions ? from casual to business. i almost always wear a small in retailer dresses and this one is the same. i'm 5'3"" and the length hits me at the knee, so it might be too short for taller girls. the only other thing that was unexpected",4,1,7,General Petite,Dresses,Dresses +1012,34,Adorable,"Pretty and with pockets! also, nice quality for the price. interesting texture.",5,1,2,General,Bottoms,Skirts +1037,31,Love love love!,I absolutely love these pants! they are my new favorite! thank you :),5,1,0,General,Bottoms,Jeans +895,46,,"I am very happy with this poncho/sweater. it is my first cashmere sweater and it feels so soft and luxurious! true, it does not have full length sleeves, but if you adjust the sweater so that it comes down lower on your shoulders, it will come well past your elbows, covering most of your arms. i feel very elegant wearing it. looks great with skinny pants or leggings and boots. would recommend,",5,1,3,General,Tops,Fine gauge +895,60,,Love this sweater so much i purchased the grey and the pink. so far no issues with the stitching.,5,1,4,General,Tops,Fine gauge +867,48,Cute sweatshirt,"I ordered the large, but it swallowed me. the store happened to have a medium, so i was able to make an exchange. the medium fit perfect. i'm delighted to include this in my wardrobe!",5,1,0,General,Tops,Knits +1033,37,Love! wish retailer had olive and black please!,I love these jeans! perfect amount of stretch without sag. great color. ordered my usual size 28. i wish they had these in olive and black!,5,1,0,General,Bottoms,Jeans +1033,56,Warm grey,These are a lovely neutral to slightly warm grey pair of jeans from a great line. i wore my usual size without issues.,4,1,0,General,Bottoms,Jeans +1037,38,"Stretches out, washes poorly. wish i could return.","So disappointed. bought these in a 29 and should've gone with a 28. they're super cute - i got the green. the fit is off. like the other reviews, they stretch out way too much. i would return these but have already washed them. they wash terribly, too. there are weird fading marks all over, even when washed in cold water like the tag states. so disappointed that i spent my gift card from christmas on these. i've been a loyal retailer customer for years and this is the first time i've been severely",1,0,1,General,Bottoms,Jeans +1037,38,"Cool design, extremely tight fit","The design of these ankles pants is very cool and the rise is perfect. however, the fabric, despite 2% spandex, has absolutely no give from the knee down. the extensive stitching probably contributes to the lack of stretch. while i was able to pull them on (size 27 for 110 lb/5.4'), i could not bend my legs at the knee comfortably. with longer wear, i think they would cut off the circulation. + +please post if these stretch for you enough with wear and become softer.",2,0,7,General,Bottoms,Jeans +996,27,Needs alterations,"Let me start by saying this skirt is beautiful quality. it is a stretchy material which makes it very comfy. i ordered a large because i am a size 8 (sometimes 10) in jeans. but - i get the waist taken in on almost every pair of jeans i have ever owned. my tailor calls me ""kim k"" lol. i was hoping i wouldn't have that same problem with this skirt but the waist is enormous (but fits my hips, thighs, and booty like a dream). i'm hoping a tailor can have the waist taken in. if i didn't have a small",4,1,1,General,Bottoms,Skirts +1033,65,A long time pilcro serif legging fan,"These are probably my 10th pair of pilcro legging jeans, and though i love the color, sort of a worn in, soft black/ dark gray, these particular pair fit a tiny bit more snug than any of my others. it could be the fact that these are ankle length vs most others are long with the cords being extra long and cozy. so i wonder if the fact that these are shorter they tend to sit on my legs a little differently. it may also be just this pair was cut a tiny bit smaller. i am toying with the idea of ask",4,1,0,General,Bottoms,Jeans +829,59,Cute style but too small for me,"Had to return for a larger size. like the design, though. quality wasn't as expected but since i purchased on sale, i decided not to return the top but exchange for a larger size which i hope is still available.",4,1,0,General,Tops,Blouses +895,46,So wanted to love this but...,"I was expecting elbow-to-full-length sleeves and like a previous review noted, they were short. very weird look for a wrap. returned.",2,0,2,General,Tops,Fine gauge +850,36,Great fit,"I got this shirt in an xxsp, and it has a great slim body. the front ruffle isn't overpowering, although i don't love the ruffles on the sleeves. i think it's just a little too much, but they aren't visible under a sweater or jacket. the length is just right, so the shirt can be tucked in or left untucked without looking long and messy. the silk is just a touch sheer but not too see-through. it's a good shirt.",5,1,5,General,Tops,Blouses +867,23,Neckline too strange,"Love the fabric and it seemed warmed. but as other reviewers mentioned, the neckline was awkward.",3,0,0,General Petite,Tops,Knits +1037,32,Stretched out quickly,I on the other hand wore these once and boy did they stretch during the day! i really hope they shrink back up...,4,0,0,General,Bottoms,Jeans +1037,52,Love these pants!,"I bought the green pair in store and loved their fit. i ended up buying the rust color online too! i'm 5'3"" 125 and i went down a size to a 26. cause they will stretch a little. perfect length for my height too great with wedges or boots.",5,1,0,General,Bottoms,Jeans +1098,44,Great dress,"I bought this dress after i had overnighted a different one and it wasn't going to be delivered on time. i'm so happy that i bought this dress. its so comfortable and easy to wear. i got lots of compliments on it. +it runs very large though. i ended up with a size 6. i initially tried on the 10, as i have a larger chest. the 6 still had plenty of room.",5,1,7,General,Dresses,Dresses +1037,24,Nice but get loose real quick,These are really nice pants - color and style are perfect but when i first put them on they seemed like they fit perfectly on me then within 30 minutes they looked 2 sizes too big - they got loose due to the material not being firm or thick enough. i would go down a size for sure. the cons aren't unsolvable so try them out!,3,1,0,General,Bottoms,Jeans +850,41,Wearing this blouse right now,It feels weightless and is so feminine. great for layering or on its own. so happy i purchased it - know i will get tons of use out of it.,5,1,0,General,Tops,Blouses +1033,41,Great fit,These jeans are great. the rise is perfect.,4,1,1,General,Bottoms,Jeans +867,60,Lovely staple piece,"This sweatshirt is a very nice staple piece! i think it can be easily dressed up and down. the quality is quite nice and should hold up over time. + +the sizing of this really depends on the desired fit. i elected to go with a size small because i felt that it fit a little bit closer to my figure and the length seemed to go better with skirts. but honestly, i tried the medium as well, and it was much different... just a bit more slouchy and looser in the arms if layering is desired. for reference,",5,1,4,General Petite,Tops,Knits +1037,34,Love these pants!,Everything that pilcro makes for pants fit me great! i am not skinny but these pants fit me in a way that you can't see my belly. i love when pilcro goes on sale because they are a great quality and getting their stuff on sale is a bonus.,5,1,0,General,Bottoms,Jeans +895,48,Where are the sleeves?,"I was very disappointed when it arrived and had elbow length sleeves. from the photo, it looked like full length sleeves. it went back.",2,0,2,General,Tops,Fine gauge +1033,27,New favorite jeans!,"I bought these about a month ago and i love them! great fit, not too tight for legging jeans, which means i can dress up with a tunic and boots for work. so stretchy and comfortable, but still made out of a jean-type material. love the color - it's a bit of a gray black, so looks great with everything!",5,1,0,General,Bottoms,Jeans +1033,51,Nice fit for jeans,"I'm 5'4 and 125 and the 28 fit comfortably. i initially bought the 27 but felt it was snug in the seat so switched out for the 28, i'm 52 so didn't want the painted on look. they will need to be washed more frequently since they do stretch out as they are worn. love the gray color and goes with so many fall colors.",5,1,1,General,Bottoms,Jeans +895,40,Nice staple piece,"I love almost everything about this. first, you know, it's cashmere -- soft soft soft without being heavy. i'm a little afraid to wear it it's so nice. i got the gray, which is a beautiful, light, casual shade of gray that looks great with everything. the pockets are fantastic if a bit useless (they hang lower than i can reach with my hands). + +the construction is a bit odd at first. it took me some brow-furrowing to figure out how to put it on, and i don't love the way the two front panels hang",4,1,0,General,Tops,Fine gauge +1037,26,,Obsessed with these pants. i have them in the green color and was looking for them to go on sale ! great fit very comfortable,5,1,0,General,Bottoms,Jeans +1033,28,Fits amazing...formed holes after 1 month,"Really disappointing quality. these jeans are of a very poor quality material and developed holes in the inseams after only a month! i love pilcros, and am totally shocked at the poor quality...retailer, i hope this is just a fluke. not worth the money!",1,0,4,General,Bottoms,Jeans +896,37,Better than i expected!!,"These are colors i normally never wear...baby pink, lavender, light blue...but what drew me to this was the wine color mixed in. it's my favorite. i also adore a good poncho. this poncho is so rich and so heavenly. super soft, very oversized, incredibly nice fabric...its like a light weight sweater. lots of movement and such a statement piece, it will look great over a white tank top, or an all black ensemble with great boots. this only comes in two sizes but runs large. i'm 5'8 and curvy...and",5,1,4,General,Tops,Fine gauge +1037,51,Excellent quality,"Bought the green in the store. wore them every week for 3 weeks so i bought the bronze color too. i usually wear a 26 in pilcro because they do give a little during the day. i had to go up to the 27 because the thighs were a little too snug for me. there's a zipper at the ankle so getting you foot through isn't a problem. the fabric is sturdy. it almost feels like a brushed cotton (soft to the touch). they zip up the side so are very slimming. i'm 5'4"" 120# for reference.",5,1,2,General,Bottoms,Jeans +1098,40,,"I am curvy/petite. this fits great, is true to size, is super comfortable and lined with cotton. very pretty and well made.",5,1,0,General,Dresses,Dresses +1098,48,Beautiful but runs very large,"This dress is beautiful, i usually wear a 6 or 8 and i ordered a 4, it is huge, i will be returning.",4,0,1,General,Dresses,Dresses +1098,42,Size down!,"This has a heftier fabric than seems to be in the picture online. i wish it were the same fabric as the fringed chambray dress. that, coupled with it being cut very generously, and the hip placement of the bulky pocket fabric, causes it to look quite thick and dumpy unless you pin your elbows in to show where your waist is. i usually wear a 4-6, and bought the 2. i'm returning it for a 0 petite and see how that goes. i love it, so i'm hoping that causes the fit to appear more as it does on the",4,1,0,General,Dresses,Dresses +850,52,Sweet top,Lightweight silk with sweet details (ruffles) fits comfortably and nice for workplace with suit or more casual.,4,1,0,General,Tops,Blouses +1098,66,"Quality look, sizing off.","This dress either runs large or just has too much fabric. ordered my usual size, but it is too long and too baggy to do a thing for me. embroidery pretty, but background is more of a muddy gray, then denim as shown. if the smaller size in petite was available, i'd have exchanged it, but it is going back.",2,0,1,General,Dresses,Dresses +867,31,,"If you like looking like a giant square and hide things this is the way to go. for me, it completely irradiates my shape, including my neck. this will be returned.",3,0,0,General Petite,Tops,Knits +861,84,Awesome!,"I saw this t on sale and ordered it. i had second thoughts, thinking it would be just like a lot of ts i already have. well, i got it today and am thrilled. the fabric is so soft, a sumptuous softness that makes me feel good. the fit is the fit we all want in a great t, nice fit, not too baggy, not too tight, and it is so flattering. it doesn't show off my tummy as so many other ts do. i can wear this with jeans or a skirt. so glad i got it!",5,1,0,General,Tops,Knits +1098,51,Shapeless tent,I tried this on in the store and it was huge. i couldn't try on a smaller size because they only had a 2 and 4. i tried on my usual size 12. i don't think the embroidery is as pretty in person either. definitely not worth the price.,1,0,2,General,Dresses,Dresses +1098,54,Love it!,"This dress is gorgeous in person, soft and wonderfully comfortable with two large pockets. it also comes with a cotton knit slip for added swing. i bought at size 6 which was two sizes smaller than my normal size 10 in retailer dresses. i have worn twice and each time 2 random strangers have complimented it. it dry cleaned beautifully and it is really fun to wear. the model is shows the neck wide open but it is very cute tied in a little bow. expensive maybe, but well worth it.",5,1,3,General,Dresses,Dresses +1098,48,"Unique style, with comfy fit","This dress definitely runs large, so i ordered it through my local store, in order to get a size that would fit. i ordered one size down, but could have gone down 2. i love the embroidered design. i just wore the dress to a slovak festival, yesterday, and it fit right in :-) very comfortable, and fun to wear.",5,1,0,General,Dresses,Dresses +829,33,Flutter poplin top,"This is a great feminine top i just wish it were a little bit longer for my taste, it hit about two inches below my belly button. it was a little snug around the belly area so that's why i feel it runs small for the brand, usually the brand runs true to size but not for this top",3,1,0,General,Tops,Blouses +1033,48,Fantastic!,"Best ""jeggings"" ever! they look and fit like skinny jeans but feel like leggings. soft but substantial fabric, nice dark gray, worn in color.",5,1,0,General,Bottoms,Jeans +895,31,Cozy / sleek but poor construction,"First of all i love cashmere so by default i love this sweater shawl. the photos are a bit odd because you can wear it two different ways. if you wear it so it's long in front then the back comes up a bit higher and vice versa. my only big complaint is that i've worn it twice and there's already a large hole in the arm seam. poor construction which is disappointing. hopefully mine was a one-off. +i'd recommend it but definitely wait for a sale.",3,1,15,General,Tops,Fine gauge +867,68,,This is the oddest fitting pullover. there is too much fabric around the chest. it is fitted everywhere else but then balloons out in the front. i liked it at first but really started to dislike all the bunchiness (is that a word?). i gave it away..,1,0,0,General Petite,Tops,Knits +867,34,A classic,"Lets discuss the neckline: it's fabulous! +furthermore, this sweater can go anywhere, +it's dress up, dress down. + +feeling low? this girl will lift you up and take you to town.",5,1,1,General Petite,Tops,Knits +1033,36,New favorite jeans,"Love the length, color, and rise. new favorite jeans! they're a little loose around the ankle and the way they hang is the only thing i don't like.",5,1,0,General,Bottoms,Jeans +1037,37,,Great leggings! they're well made and comfortable to wear. my only complaint is that they seem to be stretching just a little and don't fit perfectly.,4,1,0,General Petite,Bottoms,Jeans +1033,42,The smell!,"I absolutely love the fit and look of these jeans. i am 5'4"" and they fit perfectly. but oh my....the smell! it's like burnt chemicals. i don't know if it's just this pair, or a problem with this dye in general. any one find any solution to this? doesnt seem to go away with washing. may have to return these jeans if i can't get rid of the smell. :(",4,1,0,General,Bottoms,Jeans +829,58,Statement blouse,"I love this summery blouse. it sits at high hip, so no tucking in! the sleeves are fluttery and flattering to the arm. i own this same pattern in a knit, and like it so much i got the woven when i saw it. the only downsides are that it has to be ironed and it the sleeves are too big to layer under a sweater.",5,1,0,General Petite,Tops,Blouses +1098,41,Way too tight in the arms. don't size down!,"I just got this tunic last night and was excited to try it on. i could barely get it over my shoulders and once i did, it was immediately apparent that it was very tight under the arms and in the shoulders. i usually wear a 12 but listened to all the other reviewers and sized down to a 10. the 10 shoulder seams were significantly narrower than i would have expected. i don't think even a 12 would have been large enough in the shoulders. + +very bummed, but yet i wasn't drawn to the colors in pers",3,1,0,General,Dresses,Dresses +867,34,The cream is not dotted,"I bought the cream version online, as the blue was sold out. i was rather disappointed to see that the cream is just a glorified sweatshirt. there are no dots, it it just the heathered cream of any normal sweatshirt. i do, however, like the design and the fit of the sweatshirt. i am sad that is was not clear (in the photos or in the name) that the cream version was not dotted. i am still deciding if i will keep the shirt. i love the design and fit, but the plain boring sweatshirt was not what i",3,1,1,General Petite,Tops,Knits +1028,36,Great fitting jeans,"I ordered these jeans to wear to work since they are very dark and tailored. my usual size 26 fit perfectly, but they did have to go to the tailors since they were incredibly long, which is nice for those of you that need more length.given that i usually am in skinnies, i like how they fit singly on the hips and slightly flare out towards the bottom, but not too much. these will work well with a variety of looks, making the price tag well worth it.",5,1,6,General,Bottoms,Jeans +867,50,Love,"Just love this sweater, have it in both colors. can be dressed up or more casual!",5,1,0,General Petite,Tops,Knits +1098,66,"So pretty and unique, but runs very large",This dress is really beautiful in person. it comes with a spaghetti strap clingy cotton slip underneath. it runs at least 2 sizes large. i tried my usual size 6 and needed to go down to a zero.,5,1,1,General,Dresses,Dresses +896,20,Fall wardrobe staple,"I just got this in and i love it! it's happy, super soft, and will be perfect for the fall season in new orleans, since it's not too light but also not heavy. i see myself wearing this often!",5,1,2,General,Tops,Fine gauge +867,38,Love!,Just like in picture! super cute and comfortable sweater!,5,1,0,General Petite,Tops,Knits +224,35,Flowing beach dress,"I am all about beach cover ups. i already have the leblon one from this season (which i loooooove) but i love this one too-and it is in my go-to color which is fantastic! i love beach cover ups, i always imagine the sounds of the birds, waves rolling in, and a nice breeze allowing it to flow as i walk along side the beach. my reality, of course, is chasing after screaming kids and walking along a mn pond (not rolling waves) but this dress would at least make me feel like i am in my own little wo",5,1,3,Initmates,Intimate,Swim +1088,30,Bizarre seams at waist,"I liked the colors of this dress and the material was fine, but i could not tell from the pictures that the seams at the waist are atypical and frankly unflattering. they are scalloped at the hips, so it looks horrible if you have any hips at all.",2,0,2,General,Dresses,Dresses +1085,53,Great features,"Love the pockets and back of dress. the buttons on the the straps allow for them to be adjusted. that's a plus. i'm 5'3"" with an athletic build at 34d. the medium fits perfect",5,1,7,General Petite,Dresses,Dresses +862,47,,This is a beautiful casual top...it is a loose fit that is generously sized so instead of my usual large i purchased the medium for a better fit...the length is perfect not too long or short! the colors coordinate great with denim!,5,1,5,General,Tops,Knits +1070,29,Size up,I bought an xl and they looked like they would have been a small. can't review anything else because i couldn't even get them on.... ridiculous,1,0,0,General,Bottoms,Pants +921,52,Huge,"I am 5'4"" 120lbs, got xs. it was huge on me. had to return it. very trendy, great quality, unfortunate design. not worth the money.",2,0,9,General,Tops,Sweaters +1070,58,Perfect!,"When i saw these in the store i liked how they were different from usual leggings and, the nice fabric weight. i especially liked how they were not tight at the ankle and fit similar to a pair of ankle pants. since i wanted a slightly looser fit, i usually wear a 2/4 i went w a medium. can't wait for the weather to get colder so i can wear them with a sweater and ankle boots.",5,1,0,General,Bottoms,Pants +1070,62,Ripped as i put them on,"These are very flattering thick leggings that would keep you warm in the fall and winter, but when i pulled them up i got a big hole in the seam at the waistband at my first trip to the bathroom! obviously you might expect a rip if they were too tight, but these fit perfectly (even on the looser side) and ripped effortlessly. pretty embarrassing given the price! bringing these back! + +for reference ( if you decide to try your luck), i am 5'7"", 128# and my normal size s was perfect.",2,0,1,General,Bottoms,Pants +862,36,Super soft and comfy!,"I look at the top quite a few times before i bought it. i absolutely love it ! it's a super soft thick cotton material, it drapes perfectly and wears well.",5,1,0,General,Tops,Knits +862,36,,"Stunning! bought it today and i love it! it runs big. i'm usually a xs/s and went with the xs and it's perfect. flowy and comfy. i'm 5'4"" 132lbs. great for summer and i think will transition great into fall with a cardigan.",4,1,5,General,Tops,Knits +1036,39,Love it!,"Really like the quality, color, and overall design of these jeans. they ran a little long on me, but i just cut off an inch from the bottom and they fit perfectly with some tall booties. i didn't need to get them altered because the design of them is that they are cut at the bottom and are a little frayed. so, glad that was the case given the price tag on them. i am 5'7"", 128 lbs and wear a size 28 which fit perfectly except for the length which was easily fixed. definitely recommend these jeans",5,1,3,General Petite,Bottoms,Jeans +862,62,,,5,1,0,General,Tops,Knits +1085,50,Curious juxtaposition,"I loved the concept of the dress and that is why i chose to keep it in spite of the negatives. the grey color is drab, yet leaves room for creativity. it's stylish yet wrinkles horribly. i am 5' 2"" so it hangs too low in the front and armpits. another reviewer mentioned the buttons, yet there should be one more to bring it up in the chest. the pockets are a great space for hands, yet fabric is too thin and they are side slits, so will not hold much. i typically wear a 4 petite and the small fits",3,1,5,General Petite,Dresses,Dresses +835,41,Beautiful tiered tank with embroidery for summer,"I bought this tank to go with the navy wide legs pants shown in the picture. i bought this top in a 12 and could have gone a size down. i'm very small chested. i think that for someone with a larger chest it is probably more true to size. i wanted the extra length, so i'm keeping the 12. i'm 6 ft, 175 lbs and usually wear a medium or large (10/12) in retailer tops. the layering of the top is very pretty, as is the embroidery.",4,1,4,General,Tops,Blouses +921,51,So much potential...,This coat is beautiful in color and design. we could have been great friends but it was waaay too big so i had to return it. i bought the smallest size possible yet i could have been 9 months pregnant and still would have had room to spare. i also was disappointed that the sleeves were not lined like other coats in this price range.,2,0,2,General,Tops,Sweaters +884,43,Disappointed,"I ordered this in both an extra small and a small... i found that there was a very big difference in the two sizes- the extra small was true to size and had a great width, but was shorter in length than i would've liked (if it shrunk at all, it would've been unwearable). the small was quite a jump in size and was a little wider than i liked, but i decided to keep that one. + +the top was very cute and comfortable when i wore it, however i just washed it once on delicate in cold water and when i",1,0,15,General Petite,Tops,Knits +862,23,Way too much fabric,"This tank seemed like it should have been a maternity top. way too much fabric, not flattering for those of us with a larger bust. i am wearing a medium in the photos and for reference my measurements are 38-30-40.",3,0,5,General,Tops,Knits +862,64,So cute,"This top is adorable. normally wear small or xs but got xxs based on reviews, and glad i did. still really loose but so cute. would have preferred petite but sold out.",5,1,0,General,Tops,Knits +862,37,Fun and unique,"I knew i had to have this as soon as i saw it pop up in the tops section. it's effortless. love the quirky design and the overall fit. it's a tad on the large side, but i'm all about the flow these days. oh, and the poms at the bottom about sent me over the edge. fantastic piece.",5,1,1,General,Tops,Knits +862,51,,Very comfortable great quality with beautiful crocheted front top and lovely blend of colors,5,1,1,General,Tops,Knits +862,52,Great design but too long,Ordered med petite. love the print & design but it runs really big more like a large and length of top is not flattering . returning,3,0,4,General Petite,Tops,Knits +884,53,Beautiful details!!,Great top!! can be dressed up or down. the lace is great quality and i love the border detailing. i found this shirt to run pretty true to size.,5,1,2,General Petite,Tops,Knits +884,53,Lots of very nice details,"This henley has a lot of very nice details (lace, embroidery). the material is soft and a little bit sheer (more so in the lacey sections). it is made in india and the style strikes me as a bit indian looking. the only thing i do not like is that there are two buttons along the v shape decolltage..but there are no button holes on the other side so they are purely for decoration (you can see those buttons in the enlarged detail view only). this irks me a bit, because i would like to button the sh",4,1,14,General Petite,Tops,Knits +544,39,,,4,1,0,Initmates,Intimate,Swim +870,54,Love this,I love the unique design! the details are wonderful. it runs a bit large but it works. a great piece.,5,1,0,General Petite,Tops,Knits +1070,30,Good buy,These pants are amazing. material on the thicker/heavier side. the pants are very comfortable and very cute for the fall. fits perfect,5,1,0,General,Bottoms,Pants +870,44,Unique details,"Love the unique stitching on the shirt and the dye job. i think it does run a little big. the arm holes are quite deep even in a medium, but the fabric is thin so a tank underneath would probably work out well.",4,1,0,General Petite,Tops,Knits +870,26,Nice casual top,"I like this top. it is a nice casual top. i think it looks better on the model because it looks a bit dressy. when i tried it on, it looked good but not as dressy. the embroidery on the side gives the top a nice look. i also like the tie-dye look. the price is high, i got it on sale price. the fabric is a simple t-shirt, the embroidery makes it stand out. i am keeping it.",4,1,2,General Petite,Tops,Knits +1025,22,,"Love! i always used to wear skinny jeans until i discovered these!!! highly recommend. they elongate your legs and curve in just the right places. super flattering! plus, they are extremely comfortable. however, i'm 5 ft 2 inches and i have to wear a good 2 inch heel with them!",5,1,5,General,Bottoms,Jeans +862,30,Flattering fit,"I ordered this shirt in the grey/blue color choice; the creamy grey is perfectly heathered and the blue silk-like bottom is a classy touch. the fit of this shirt in the arms, torso, and back was flattering with a little room to drape. love it!",5,1,0,General Petite,Tops,Knits +455,43,Zip hoodie not a pullover,"This hoodie is really cute-i got the polka dot color and it is very soft and roomy. i am normally a small but got the medium and it fits exactly how i wanted. however-it is not a pullover and instead zips up. so odd that the pic of the hoodie is a pullover. debated returning because i wanted a pullover, but have decided to keep it because of how soft it is.",4,1,3,Initmates,Intimate,Lounge +1081,44,,I couldn't get this to work for me. tried a variety of sizes and just couldn't get it to flow right. didn't purchase.,3,0,1,General,Dresses,Dresses +1081,56,Gorgeous peasant dress,"I love this peasant dress! i have worn it twice already with black lizard cowboy boots/frye jane boots, black tights and silver sparkly earrings -no need for a necklace because of the beautiful beading at the yoke. +the fabric is 100% rayon and has a beautiful drape, so it doesn't poof out like a maternity dress. it is lined, has 3/4 sleeves with an elasticized cuff, and hits around my knee. this dress could have definitely supported pockets in the side seams or patch pockets on the front. i have",5,1,6,General,Dresses,Dresses +886,56,Beautiful draped top,"I bought this today in black. it fits true to size and is very flattering. i love the draping, the weight of the fabric, and the length . i would buy it in another color i like it so much. i will probably wear this with jeans and boots with a sweater over it. i wasn't sure i was going to like the little connector piece across the front neckline, but it works. if it wasn't there the top would probably gape open.",5,1,6,General Petite,Tops,Knits +1082,57,Another winner from isabella sinclair,"I saw this dress online this morning, went into a store this afternoon and walked out with it! i love this brand because the designs are modest, but feminine and practical. this dress is made of a thicker study cotton with beautiful all over embroidery. the fit is tts, and you can adjust the waist to fit loose or a bit more snug. the length is just above my knee at 5'3. i plan to wear this now with black boots and a furry vest, and later by itself with sandals and big sunnies!",5,1,10,General,Dresses,Dresses +455,47,"Gorgeous, soft hoodie","I bought this in the neutral motif, and it's exactly as it appears online except a bit more vivid in real life. the colors are ivory with dusty pink and blue/gray puffs of color. the fabric is incredibly soft. i usually wear a small in tops but went up to a medium and i'm glad i did. if you like things really fitted, i guess you could order your normal size, but since i wanted this to have some room for long sleeves underneath, i went with the medium. this zip-hoodie is great quality and it look",5,1,0,Initmates,Intimate,Lounge +895,41,Beautiful but not practical,"A beautiful shawl but not practical. i was impressed with how elegant/romantic it first felt/looked. however, after 5 minutes of wear, it would not stay on my shoulders. the design is very awkward and despite several attempts with different tops/tanks underneath, i kept running into the same problem. lovely for the first 5 minutes of wear and then awkwardly/annoyingly wouldn't stay on my shoulders. the neckline is undefined and it just fell off. not a great design. disappointedly returned it.",2,0,0,General,Tops,Fine gauge +1081,45,Pretty patchwork!,"I tried this dress at the store today and couldn't leave without it. also tried the pacquerette shirtdress which has a similar boho/peasant vibe and overall preferred the fit and look of this one. plus, its lined, which the paquerette shirtdress is not for the same price. fit was very similar to the anwen peasant dress, which i also have, and the regular size xs fit me much the same as in that dress. it is maybe 1 inch longer though, but still that makes it a couple of inches above the knee for",5,1,8,General,Dresses,Dresses +1082,44,Love this dress!,"I love this dress. i typically do not like or wear dresses often, and definitely not this style. i'm glad i tried something different. i received numerous compliments on how flattering and attractive it is. yes the belt is only in the front, but i cinched it very tight and it pulled the back in. i bought size s. it was very form fitting in the top and waist, and not too big through the hips. i have a 38"" bust and i can button all the top without pulling. i wore it with black tights and high brow",5,1,2,General,Dresses,Dresses +1081,42,Artsy,"I saw this in the store and it caught my eye right away due to its bold color and pattern. i tried on an extra small and it was large, especially in the sleeves. i ordered an extra small in petite and it fits perfectly. i love the velvet and jeweled detail along with the cris cross tie. i wore it to work today and received so many compliments. one lady said how artsy i looked. i paired it with burgundy velvet tie up boots to complete the look. totally worth the money ladies!!",5,1,1,General,Dresses,Dresses +1082,64,"Beautiful, forgiving dress","I wore this dress on thanksgiving with black tights and black flats and it looked great. the dress is forgiving if you're trying to hide a chunky waistline because the belt doesn't go all the way around. it's just in the front so it gives the illusion of a waistline and doesn't look like just a sack. if you have a great waistline, you may not like this! i wish it were a bit longer but with black tights, it looked fine. (i'm 5' 5"", no where near as tall as the model, and it was about 2"" above my",5,1,3,General,Dresses,Dresses +886,39,"Beautiful, but big","I tried this on (xs) and thought it would be great, butit was simply bog on me and boxy. unfortunately, they are out of petite in the grey color (my favorite of the 3). this top is soft and feminine if it fits properly, but too big was a little too boxy.",5,1,1,General Petite,Tops,Knits +1082,39,One flaw,"The dress is nice, love the embroidery, love the front cinch but why not all the way around? the back is fast flat so cinching makes the sides stick out..got petite and the sizing was nice. i just didn't love the overall look on my body type.",4,1,0,General,Dresses,Dresses +886,30,Great top,"This is a lovely top! sooo soft, very flattering draping if you have a bit of a tummy. i wasn't sure about it on the hanger but was pleasantly surprised when i tried it on- very glad i have it a chance!",5,1,1,General Petite,Tops,Knits +1082,29,Favorite dress,"This dress is a marvel. it's flattering and cute. it is great for work, a date or just a casual day. and machine washable! best thing i've ever purchased from retailer.",5,1,0,General,Dresses,Dresses +1082,50,,"I love this dress. i would have never picked it off the hanger in the store, in fact i went right past it. however, when i was in the dressing room trying something else on i saw two girls wearing it and it was adorable. i immediately tried it on and loved it. i think it runs really big. i am normally a size 8/athletic build and i bought the x-small. i small also fit but was a bit too baggy. most tops/dresses at retailer also run big so it makes sense this does too but there is no way i am a true",5,1,3,General,Dresses,Dresses +1081,25,Unqiue dress!,"Cute and different dress, cute with boots.very comfortable, runs large, could size down",5,1,0,General,Dresses,Dresses +886,47,,,5,1,0,General Petite,Tops,Knits +1082,29,Ripped before i could even wear it,"In a sea of dresses, this is the one that caught my eye in the whole store. i am a pear shape, and ended up trying both the medium and the large, taking the medium home. it was super flattering on, and was an appropriate length to pair with tights. + +here's where the problem happened. i wanted to wear this dress for thanksgiving, i put it on, and as i tightened the drawstring to cinch in the waist - riiiiiiiiiip! the drawstring ripped through the fabric at the waistband. so disappointed.",1,0,3,General,Dresses,Dresses +1082,24,Cute but not really a winter dress,Surprised that this is a fall/winter dress. the embroidery is beautiful but the material isn't that thick and the tie at the waist is unusual. would have been better if rather than having the tie built into the dress it was separate.,4,1,1,General,Dresses,Dresses +455,26,Zipper?,Like the other reviewers i was disappointed to receive the gray dotted sweatshirt with a zipper down the center when it was not in the model picture. looks like this item has since been removed from this listing...would have been nice to have the correct item pictured in the first place.,3,0,3,Initmates,Intimate,Lounge +862,41,Better than your average t-shirt,It's exactly how it appears in the pictures-awesome shirt,5,1,0,General Petite,Tops,Knits +862,26,Love it!,I bought this shirt in the turquoise color with the navy trim and love it! color is as pictured. shirt is very soft and flowy. the length was a little shorter than expected (the slits on the side almost reach the top of my jeans) so i'm glad i got the regular xs and not the petite. this shirt is unique without getting too crazy!,5,1,0,General Petite,Tops,Knits +886,44,,"Lovely! at 5'6"", 34a-28/29-36, the size small was a great fit. moss color is really quite grey. drapes beautifully and is an easy wear.",5,1,8,General Petite,Tops,Knits +895,38,Very thin material,"I was so excited to try this on in the store, because i've had my eye on it online. unfortunately, it is not like the picture. the material is very thin, almost translucent. i also could not figure out how it get it on! the cape has short sleeves, not long, as it appears in the picture, and the folds of fabric would not drape quite right in the front. love the look of black design on white. hopefully retailer can redo this in a thicker cape for the fall, but for now, i'll skip this one.",2,0,17,General,Tops,Fine gauge +886,43,Perfection,"This top is soft, flattering, modest enough to wear to work, but subtly sexy (and i'm amply endowed at 36d). i just wish i'd gotten one in every color.",5,1,0,General Petite,Tops,Knits +895,27,,Very pretty and has potential. only down side - i thought it was more like a cardigan with sleeves but it's really more of a shawl and the photos and descriptions are misleading,3,1,1,General,Tops,Fine gauge +1081,49,Cute and colorful,"I tried this on at the store and am coming online to order it in petite. i'm 5'1"" and the length hit me just below the knee in the regular length so i'm hoping it will hit just above the knee in petite. it was very cute, might run a bit large but basically true to size. size down if between sizes. it has a little bit of sparkle beading around the neck which is nice.",5,1,11,General,Dresses,Dresses +1082,49,Lovely black and white embroidered dress,"This black dress with raised white embroidery is lovely and flattering. the fabric has a nice texture and is medium-weight cotton, and machine washable. the dress is unlined. it's a bit hard to get on and take off even though the buttons can be undone, which helps. there is a tie at the waist, drawstring-style. i only wish my store had the petite size, as i am wondering whether the xs that fit me in the store will still fit as an xs p.",5,1,1,General,Dresses,Dresses +455,33,Fleeced tula hoodie,"I'm upset. i ordered the grey sweatshirt and while the description says the sweatshirt has a zipper, the picture of the grey does not have a zipper. i prefer no zipper, so when it arrived in the mail with a zipper, i was disappointed. it's going back. why have a model where an item that you're not offering???",2,0,3,Initmates,Intimate,Lounge +455,34,This is a zippered hoodie,Just wanted to review so people know this hoodie has a zipper. it's very soft and comfy but i was looking for a pullover hoodie and am disappointed that once again retailer's picture doesn't match the actual product. it does fit true to size however.,1,1,7,Initmates,Intimate,Lounge +886,47,Cute!,Got this today and highly recommend it! it fits perfectly and is very flattering! i can see wearing this all wear round! perfect date shirt!,5,1,0,General Petite,Tops,Knits +1081,40,So fun!,"I saw this dress online and b-lined it to the store to try on. it is a beautifully made dress. lots of great detail with stitching and beading on the front placket. feels very boho and chic. i have received lots of compliments while wearing this dress. i was almost turned off by the price, but decided to see it in person. worth every penny. wear it with sandals or tall boots, could have worn a medium, but a little tight for 38c on top.",5,1,3,General,Dresses,Dresses +886,57,"Cute, but not black","So this shirt is very cute, i like the drape (if you can get it arranged properly), but it is not black, more of a charcoal bordering on heathered navy. i wear all black so it quite obviously stands out as a different color in my closet. i am keeping it, thinking i will wear it with leather, since it is flattering and the keyhole is something different. i am a true medium and bought the medium and it fits fine. a little shorter in the back but not a deal breaker.",4,1,0,General Petite,Tops,Knits +1081,40,,,5,1,0,General,Dresses,Dresses +886,42,Buy this top!!,"I love everything about this top. first, it's super flattering, especially if you have a tummy. i am small chested, and it makes me look a little chestier than i am. i tried on both the xs and s in the black (it's really a charcoal gray) but preferred the fit of the xs. note: i'm 5'8"" / 136 lbs and typically wear an xs or s in most retailer tops. the small seemed too drapey and the armholes were a tad big. my store didn't have the wine color or i would have purchased it too.",5,1,1,General Petite,Tops,Knits +895,40,Picture doesn't do it justice,"I think this shawl is much more stunning on than on the hanger. i think it will be a great piece to transition into fall, wearing it over a black or white tee. it can be dressed up or down. especially for the sale price, a great piece!",4,1,5,General,Tops,Fine gauge +862,35,,,5,1,0,General Petite,Tops,Knits +1094,80,Fantastic product,"This arrived today and i am thrilled with it. the material is soft but not at all clingy. it drapes perfectly, falling just above the knee. there is a matching slip that is as nicely made as the dress itself. what a find!",5,1,8,General Petite,Dresses,Dresses +895,49,,I loved the style so i ordered on line. it runs small and the arm inserts are so low its awkward to wear. i wish the cut was better cause i love the look but not the fit. i am returning this item..,2,0,0,General,Tops,Fine gauge +1081,39,Boho chic,Love this dress! the neckline is gorgeous,5,1,0,General,Dresses,Dresses +1082,37,Cuter online,"I wanted to love this dress - and did from the picture online. when it arrived, the black already looked faded and old. also, the embroidery looks like a grandma, but not in a cute vintage way. the fabric is stiff, which causes a boxy, unflattering look. had to return it.",2,0,0,General,Dresses,Dresses +886,46,Modern with retro flair,"Very cool top! i purchased this in the black, which is more of a very dark gray (imagine sanded silk). it's very figure flattering and accentuates curves. it also disguises any minor tummy issues. not to clingy, but follows your form. the fabric is well made with a perfect drape to match the style. definitely a winner!",5,1,1,General Petite,Tops,Knits +862,35,Nice quality,Colors are vibrant (i ordered the blue color combo) material is light and feels great against your skin.,4,1,0,General Petite,Tops,Knits +862,61,,,4,1,0,General Petite,Tops,Knits +1081,45,More beautiful than it looks!,"This dress is absolutely gorgeous! the colors are actually very bright. it has a little embroidery and beading in the chest area. the fabric is actually very soft and it comes with built in slip. i found that it runs true to size. i got a medium, as i wanted it to be more roomy. i'm planning to wear it with booties, long boots, or sandals in the spring. i think it will make a great teacher dress.",5,1,4,General,Dresses,Dresses +886,43,,"Very figure flattering!! i am 5'6"" 128 lbs 32b chest and size xs is perfect",5,1,3,General Petite,Tops,Knits +657,53,"Nice, but not quite as pictured","These are nice, flattering bra with light to medium suport. however the colors and patters are not quite as pictured. i almost suspect they are slightly different on each bra. exmaple: on the picture online the left side seems to be a light blue and the right one orange. on the bra i received the left side is a darker, bluishgreen color. the right side is orange and light purple. i would hae prefered the colors on the photo but it is not a big deal i guess. i ordered the color block shorts as we",4,1,1,Initmates,Intimate,Lounge +895,42,Disappointed,"I also expected this sweater to have more bulk to it per the images. it is very thin as others have said. the design is awkward with the sleeve placement and that makes it more flowy vs. structured. it is more similar to a cape or shawl design. if you;'re looking for a warm cozy blanket sweater design, this is not it. i will keep it though as a layering piece and because of the sale price and classic color design.",2,0,1,General,Tops,Fine gauge +895,34,Uniquely designed shawl,"I purchased this online because i just loved the gorgeous designs and embroidery. it has a unique cut to it as it has wrist holes but is otherwise open. i have a difficult time keeping it from falling off of my shoulders when i wear it over bear skin. i hope it will stay in place when i wear it over long sleeves or a sweater. overall i am happy with it, but i think it may run small as it hits the model at her wrists but hits me above my elbow. i am not very tall or long-limned so it seems strang",4,1,1,General,Tops,Fine gauge +886,34,,I cannot believe how different this top looks in person. i purchased this in the store and fell in love with it immediately. viewing the pictures on here does not do the top justice. it is very form fitting and compliments large busted women. the cut is not too low and lays beautifully.,5,1,1,General Petite,Tops,Knits +862,49,Love this tee!,"I had my eye on this tee for awhile, and finally ordered the turquoise/navy in the small. as soon as i received it, i ordered it in the taupe/peach and am contemplating one more! i plan to layer it now and can't wait to wear it solo next spring and summer. the colors are gorgeous (although the taupe is more dark gray which i love), the material is very soft, stretchy and comfortable, but it's the very flattering cut that sold me. it hangs beautifully and doesn't cling to my middle but skims it p",5,1,0,General Petite,Tops,Knits +1081,33,Great quality,"I am generally a size l, and after reading reviews, sized down. the inner layer was a little snug, but this was not an issue because of the outer layer. great dress!",4,1,0,General,Dresses,Dresses +1094,39,Why no reviews?,"This dress is a winner, i'm baffled that there is only one review? i thought this was a dolan dress. the material is soft and substantial. the cut and style hides figure flaws without adding bulk. this versatile dress is perfect for all seasons and all social situations. i'm 5'3"" 135# 38/28/35 and purchased size m.",5,1,0,General,Dresses,Dresses +1081,39,Trying to like it,"This is a busy dress that makes me think ""boho-glam holly hobby"". i bought my usual size and it looks like nightmare of a nightgown on me. i'm going to try a size smaller in the hopes i will love it more. i'm recommending this dress for those that like the quirky whimsical hippie eclectic crafty style.",3,1,1,General,Dresses,Dresses +895,33,Strange fit,"The pattern and fabric are lovely, but the sleeves are short (unlike the photo) so it drapes very strangely. i personally could not figure out how to wear it so that it looked anything remotely like the photo. had to return this one.",2,0,1,General,Tops,Fine gauge +1082,52,Elegant and chic,"I just bought this and really think it is a great dress! it is conservative, and i will be able to wear it to teach or play the organ at my church. i am a church organist and college professor and need conservative clothes, yet i do not like to look ""frumpy."" this is cute and chic, yet conservative. also j got 25% because it is black friday. thank you retailer!!!",5,1,2,General,Dresses,Dresses +1081,52,Pretty boho three season dress,Great dress - fits tts (i am a 6p and purchased a sp). looks good with boots or ballet flats.,4,1,0,General,Dresses,Dresses +1081,39,Not what i expected,"I found this dress to run very large. the fabric was substantial but rather coarse. also, the lighter color in the pattern is lavender and not white or cream.",3,0,13,General,Dresses,Dresses +1022,53,Crazy comfortable,Perfection. soft. lived in feel and look without holes or rips. and for someone who is 5 ft 2 in. they are just the right length if i don't feel like cuffing the bottom. fit tts.,5,1,1,General,Bottoms,Jeans +862,30,,,5,1,0,General Petite,Tops,Knits +862,32,"Want to love it, poor quality","I love this shirt, in fact, i love all bordeaux tops from retailer. i followed the instructions to hand wash only and after it was wet and then lay flat to dry, it may fit a child. it is a belly top. i want to love this, but it shrunk so bad even with the hand wash only instructions.",3,0,14,General Petite,Tops,Knits +1110,68,,"As other reviews noted, this runs large--huge is more like it. it's great quality, but i'm wondering now if the s/m would take me through the third trimester of pregnancy (which is why i ordered a m/l). i'm 5'7"", and if i were any less, i don't think this would work for me at all.",4,1,1,General Petite,Dresses,Dresses +862,43,Nah,"I always have to try on tops of retailer. i know this, and yet i ordered a top through the website anyway. i don't think i'll do it again. the drape of the top seen in the pictures did not translate in real life because the top scratched up pretty quickly. ironically, when i washed it (according to directions) it also shrunk quite a bit.",3,0,1,General Petite,Tops,Knits +862,38,,Nice basic shirt to wear with jeans. it is super soft and hangs nicely. runs true to size.,4,1,0,General Petite,Tops,Knits +1110,55,This is a tent!,"I am a 10/12 and ordered the m/l. it's very large! i normally take a large in retailer, but i can't figure out my size in this. it's very wide. i love the denim patchwork detail so i will order the s/m and see how it is.",3,1,19,General Petite,Dresses,Dresses +881,51,,I ordered this in a small and it fit perfectly. i love the longer length so that it can be worn with leggings. the detail is so pretty especially the colorful side panels.,5,1,0,General,Tops,Knits +881,46,Not what i hoped it to be!,"This top is very strange. i agree with the other reviewer in that i think it's not cotton. it clung and got bunched up around my chest. like in a static cling way. there's just something about the way it hangs that is not flattering. too bad as i was really looking forward to wearing this but alas, it's going back.",3,0,2,General,Tops,Knits +881,60,,,5,1,0,General,Tops,Knits +1110,39,Sack-ish,"I wanted to love this so much! i am 5'8 and normally do a size large in retailer, but based on the previous review i sized down. the top fit fine, but the bottom just sort of poofed out. not flattering. it does have pockets which are amazing, but overall, just wasn't a good fit. the top is t-shirt material, not denim.",3,0,7,General Petite,Dresses,Dresses +310,32,Great!,"I bought these leggings for yoga. i love them. the material is so soft and also seems sweat wicking which is a plus. the back detail on the calf is a nice touch of flair compared to basic leggings. the waistband is wide and did not fold over during practice! for reference, i am 5'4, 130 lbs and i purchased a m. fit was great. i normally wear size 27-28 in pants. would recommend.",5,1,0,Initmates,Intimate,Lounge +862,41,"Vibrant, super soft top","This seems like a great top! i have only worn it once, but it is super soft and comfy, yet stylish. sleeves are fun. color is vibrant as shown.",5,1,0,General Petite,Tops,Knits +862,33,Cute and comfy,I purchased this shirt to wear postpartum so i could easily be comfortable but still cute. it will work well for the fall with some cute jeans and booties. i cannot wait to wear it....any day now! great choice.,5,1,0,General Petite,Tops,Knits +881,56,Fabric might not be cotton! stretched out!,"I ordered this top because 1. the online product page states the fabric is cotton. 2. i liked the style with the scarf insets. 3. the colorful embroiderey would be a welcome companion for my many pairs of pilcro chinos. + +when i opened the package several tiny round beads rolled out. after examining the detailing, i found where the beads were missing. + +size: i normally wear a small for most retailer brands, but i know nothing about slone rouge. i went with a small since it appears oversized on",3,0,22,General,Tops,Knits +1110,65,It's very cute,"I love the color blocking but dress hangs a little strange on me. love the pockets, thought about sending it back and decided it is very comfortable, i will wear it but not quite what i was hoping for.",3,0,1,General Petite,Dresses,Dresses +862,35,Beautiful,"It is a beautiful shirt and fits perfectly. i purchased it in ivory and although not a true ivory, it has some pinkish tones to it, it is absolutely beautiful. looks perfect with a long necklace and jeans.",5,1,0,General Petite,Tops,Knits +881,35,Cute tunic,This top runs large for sure and reminds me more of a tunic due to the length. nice detailing around neck and sleeves and the paisley print on the side hems is super cute. size down!,4,1,9,General,Tops,Knits +862,40,Nice top,"Soft material, lays nicely. got an xs but usually wear a smaill. got it in the mail and it is wrinkly so will need to steam it.",4,1,0,General Petite,Tops,Knits +862,32,New favorite shirt,"Regarding the product, high quality materials and overall make. extremely comfortable and flattering cut. i'd love this in all the colors of the rainbow.",5,1,0,General Petite,Tops,Knits +862,41,Love it.,"This is a beautiful top, the fit is very flattering. i'm tall with broad shoulders and the sleeves hit just above my elbow. i wear it on the weekends and to work...very versatile. i washed it in the washing machine and hung to dry, it's the same size and no fading..not sure about the others below with shrinkage issues. highly recommend it!",5,1,0,General Petite,Tops,Knits +862,62,Gorgeously draped top,This top is extremely well made. the fabric is so soft. the style is very stylish. it is very figure flattering and chic. a keeper! i'm petite and the style is not overwhelming.,5,1,4,General Petite,Tops,Knits +862,55,So simple,This top flows so nice. i get so many compliments when i wear it. plus the color is an interesting blue,5,1,0,General Petite,Tops,Knits +1087,44,,So glad i finally bought this! love it!!! and have received many compliments. wore it with brown over the knee boots. one of my fave all time outfits right now.,5,1,0,General Petite,Dresses,Dresses +1087,46,I wish it looked like it did on the model,To be clear i am not built like your models but the biggest problem was the way in which it tented out from the bustline down,2,0,0,General Petite,Dresses,Dresses +1087,53,Complete color shocker!,"I ordered the blue version of this dress thinking the accent stripes were black. they were not ! they were wine colored. i liked the color, but not in combination with the other colors in the dress. black would have been a better look. i had to take it back. sad...",2,0,0,General Petite,Dresses,Dresses +1087,41,Best on a slender body type,"Tried this on in the store - i love the colors but the cut was just not flattering. the liner was fine, but the dress flared out excessively and looked like a tent. tried it with a belt for some definition but the fabric was too thick.",3,0,1,General Petite,Dresses,Dresses +843,33,"Small in bust, tts in torso","This top is a tough one. i ordered my usual medium. i'm 5'7"", 165 lbs, 34c, and wear a 10/m pretty much all the time (tops and bottoms). let's begin: + +the bad: +when i tried it on, i found the bust to be too small, and the darting on the sides puckered in a very non-flattering way. the ruffle at the neck stood up more like a mock turtleneck (which is not my scene). also, the fabric seemed a little thin for chambray. + +the good: +the pattern is adorable. the sleeveless design would be great under bl",3,1,23,General,Tops,Blouses +1087,36,Pretty,"Very good quality. love the length of it. i wore it with a belt, since on me without it looked a bit too big. i bought the blue one.",4,1,0,General Petite,Dresses,Dresses +1087,55,More wrong than right...,"I ordered this after reading through the reviews. i realize the reviews were mixed, but thought i'd take a chance. unfortunately there were more things wrong than right with this dress. right: i loved the various colors (yes, it shows black but is actually brown). i also loved that it was lined and the lining was semi-attached to the dress, with the same hi-to-low hemline. wrong: as said by others, the sleeves were very tight! the dress is roomy and does swing but unlike the model, it isn't real",2,0,1,General Petite,Dresses,Dresses +1087,67,Overpriced potato sack,"After readying the reviews of this dress, i thought for sure i was purchasing a winner. boy, was i wrong! first, this dress feels like a potato sack and looked like one on. i felt that it was very boxy and more of a o' one size fits all' sizing. it did not embrace my curves at all. the material was not as chic as i would have thought. overall, the entire dress was not flattering. honestly, i do not understand what the rave reviews were talking about it.",1,0,0,General Petite,Dresses,Dresses +1087,52,Ugly!,"Too much material everywhere. i am 122lbs 5'4"" and i ordered an xs as usual. i was overwhelmed in a blanket of knitted material of muted colors. nice green slip, though. i will return it asap. this is super-ugly.",1,0,0,General Petite,Dresses,Dresses +1087,48,Huge like a circus tent,"Okay i'm short, so this tent dress is seriously huge on me and not flattering. the fabric is so pretty, but this dress must be for a tall girl. no shape at all!",3,0,1,General Petite,Dresses,Dresses +1087,45,"Unless you are twiggy, this is shape less","This dress hangs horribly. unlike the photo, the waist does not cinch. too bad. the colors are great and the quality of the material is nice. because i bought it on sale, i may try to tailor it to work, but unless you are willing to do that, its a no go. :-(",1,0,0,General Petite,Dresses,Dresses +1087,23,Beautiful and comfortable,"I was on the fence about this dress but so glad i did, thanks to the reviews i sized down from my normal medium to a small and this dress is definitely one of my favs!!!! it is a quality comfortable material that does stretch and allows you movement with ease. the illusion slims me in the middle where i need it most. i adore this dress.",5,1,0,General Petite,Dresses,Dresses +854,23,Beautiful,"I almost missed this, i snagged it during the black friday sale online. i got an extra small and it fits great-not too fitted. the back is a cotton material with some stretch to it. the embroidery is beautiful.",5,1,1,General,Tops,Knits +1087,45,Not for broad shoulders,"This was pretty to look at: nice weight, lining, colors. i tried it on and whoa. ridiculously bad. i have broad shoulders and a small waist and this accentuated the broadness of my shoulders and eliminated any hint of shape below that. the model photo looks great, so i imagine this will look great on anyone with slim shoulders and narrow hips. definitely not for me, though...",3,0,0,General Petite,Dresses,Dresses +1087,48,,I am returning the dress. it has too much volume and is not flattering at all,1,0,0,General Petite,Dresses,Dresses +1087,46,,,5,1,0,General Petite,Dresses,Dresses +1087,42,Interesting and different,"I ordered this dress in both colors. i'm very fair and blonde and the darker dress just swallowed me up - looked really messy on me. the lighter one.....love it. it's very flowy and not form fitting, of course, but something about the lighter color just seems less overwhelming.",4,1,0,General Petite,Dresses,Dresses +1087,47,Nice style!!,I like this dress a lot. it does not have much form but with a belt looks great!,5,1,0,General Petite,Dresses,Dresses +1087,28,Great color options but totally frumpy,"I bought both color options in this dress and they are both gorgeous but i think this dress must only look good on the model and her body types because i put it on and cringed. i'm 5'7"" and slim. it was matronly. i also ordered my usual size small and felt like the medium might have been better? the picture of blue colored dress looks more fitted around the waist and these dresses and very loose. the only way it would be flattering is if you added a belt. keep that in mind if you do buy. pretty",4,1,0,General Petite,Dresses,Dresses +1087,56,Swing dress,"Love this dress! the stripes are flattering, the material is interesting and it swings! it's feminine and fun!",5,1,0,General Petite,Dresses,Dresses +1087,37,Huge,"This is a beautiful looking dress, but definitely runs wide and long. i'm 5'4, 112llbs and my normal xs swallowed me up. if it had been available in xs petite then that probably would have worked, even though i normally never go with petites. it is a gorgeous dress, and would probably work on those ladies who are taller.",3,0,0,General Petite,Dresses,Dresses +1087,46,"Gorgeous, flattering, perfect for xl","I ordered the peach/ivory/tan version in size xl and i love everything about this dress. i'm size xl and a pear-shape so dresses can be hit or miss. this one is a favorite. it's so soft. the mix of colors and the sizing of the stripes/pleats is flattering. it's nice being more fitted on top & flowy through the bottom. i love this dress so much! i'm having fun pairing different combos of necklaces, vests, pins, belts & boots with it. i'll get good use out of this through spring. comfortable, pret",5,1,0,General Petite,Dresses,Dresses +1087,52,Very figure flattering,"I have been self conscious about a recent weight gain going from a size 6 to a size 10-12, but this dress makes me look & feel skinny again. i know people have suggested that vertical stripes help if you want to elongate your figure. it is true. thanks to this dress i look like my old self, and i am super comfortable wearing this all the time. you can wear this dress from day to night, you can dress this up or down. it looks great with a jean jacket and high-tops, or high-heeled booties with a n",5,1,0,General Petite,Dresses,Dresses +1087,36,"Creativity required don't pass, especially for $50","By itself, this dress is a disaster. it's semi-maternity and offers no shape at all. however, with a belt, it really becomes the sweetest sweater dress. i can't believe how flattering the dress becomes with a belt, the skirt falls perfectly , it's perfect, especially with it's rich colors. + +for $50, you can't go wrong and i'm positive you need this dress. boots, heels, jacket, whatever, it goes up and down, it's perfect!",5,1,1,General Petite,Dresses,Dresses +937,37,Unique piece,"I have worn this beautiful sweater with all kinds of outfits! i love to dress it down with ripped skinnies, booties, & some long layered necklaces. i did not have as big an aversion to the itch factor as the other reviewer, but it is definitely not super soft or anything. it fit a little larger than true to size in my opinion. i should've ordered a small. i think it's a very unique winter staple that matches almost every single thing in my wardrobe. it's versatile, snuggly, & warm i'd recommend",4,1,2,General,Tops,Sweaters +1087,28,Not good for sensitive skin,"I saw online, great quality sweater dress- reviews about seemingly extra fabric- easy fix with a seamstress. i have very sensitive skin and wear long sleeves under sweaters. wool, angora, mohair! 5'1, xsp, tts (length/arms) but lots of extra fabric for width. just trying it on was too itchy for me.",2,0,0,General Petite,Dresses,Dresses +1087,41,Sent it back,This runs super big and it just wasn't flattering--way too much fabric. i wanted to love this dress.,2,0,0,General Petite,Dresses,Dresses +1087,30,,It's a perfect maternity dress but i love that i will still be able to wear it with a belt once the baby comes.,5,1,0,General Petite,Dresses,Dresses +1087,73,Great dress,"I walked into a hair salon wearing this dress, and everyone who walked by complimented me. to me, that's a definite winner! i got the blue color, and the various colors in it are vibrant and lively. the underdress is like a full slip and an added bonus. this probably also makes the dress hang the way it should. there's no static or clinging where there shouldn't be. i was afraid i might be too short to pull this off, but i absolutely love it.",5,1,0,General Petite,Dresses,Dresses +1087,55,No-brainer,"I saw this dress online first and suspected i would like it, but the price scared me away. then, while visiting in portland, i saw it on sale at an retailer store. when i came out of the dressing room to look in a bigger mirror the store clerk said, ""well that's a no-brainer!"" i thought the same thing. i love this dress so much i actually would have paid full price for it. it's super fun and easy to wear; i paired it with navy blute tights and suede ankle booties. i'm 5'6, 138 lbs and the m",5,1,3,General Petite,Dresses,Dresses +1087,42,Large and wide,This colors and fabric of this dress are beautiful and i really wanted to love it but from the chest to the hips there is too much fabric and it give you no shape at all. it had to go back.,2,0,0,General Petite,Dresses,Dresses +854,68,Vintage luxury,I just got this at the black friday sale..... i may have passed it by had i not been in an adventurous mood ( i usually wear brighter colors). it feels wonderful....cozy and silky like expensive pjs!! looks very glamorous yet laid back... i feel like i am in a 40's romantic film.. i got a ps and it fits flowy. it was the only one so i was not able to try the xs. love it! it was cold today so i wore a cami under it with lace peeking thru the low neckline .,5,1,0,General,Tops,Knits +1087,87,,This dress fits great and is very warm for the winter months.,4,1,0,General Petite,Dresses,Dresses +1087,45,I love this dress,"I just ordered this dress in blue on sale and it was such a bargain for the quality and look. it's a very comfortable dress that swings and flatters my body type, which is tall and thin. i think this dress would not work on a more busty woman's frame, but it definitely works for me. i'm 5'9 and 135 pounds and a small is plenty big (i often take a medium). i definitely recommend this dress.",5,1,1,General Petite,Dresses,Dresses +854,42,I love tiny!,I own many tiny tops and like other reviews have stated this is a favorite. the ombre design makes it stand out. the embroidery is beautiful. these are usually tops i throw on during my time off/weekends and i have received many compliments on this one. tiny usually runs small but this is true to size or even a size smaller.,5,1,1,General,Tops,Knits +1087,45,So unflattering,"I bought this dress online and was hoping it would be a great comfortable staple.. it may be the most unflattering piece of clothing i have ever tried on ever! i let my sisters try it on too, to see if they wanted it or liked it better, but it was awful on them as well. i ordered the xs in blue. it was beyond enormous and was just plain and unflattering. i am 5'7' and 115. i love swing dresses,i just don't think is cut well.",2,0,0,General Petite,Dresses,Dresses +1087,58,Beautiful dress! beautiful style!,"I wasn't sure how clingy this dress might be or how it would look on my ""curvy"" body. it's actually really lovely. it runs large but not overwhelming. nice length; above the knee in the front, slightly longer in the back. the colors are really beautiful (i got the darker color). will definitely wear this with a belt, otherwise i think (as other reviewers said) it will be too maternity-looking. i got this at a great sale price!",5,1,0,General Petite,Dresses,Dresses +1087,47,Received lots of compliments on this dress!,"I saw this online when it was full price and was tempted to buy it because i liked it, but did not. when i saw it on sale, definitely wanted to try it! i bought a large and it was too big in the torso area, so i returned and got a medium and it fit better and flattered my figure better. i so rarely wear a medium in anything retailer, so i would say this runs large. + +i have received 6 compliments on this dress the first day i wore it! it is comfortable, love the colors and design, it is fun. very g",4,1,0,General Petite,Dresses,Dresses +1087,51,Luv it,Ilove this dress even though it does run big i put a belt with it and it looks stunning.,4,1,0,General Petite,Dresses,Dresses +975,59,Fabulous!!,Saw this in the store and loved it! the photos on line do not do this justice. material is soft and substantial. if you love the look of raw edge you'll love this piece. as usual i wish it were a bit shorter even in petites as i am only 5' but kept it and love it.,5,1,3,General,Jackets,Jackets +1087,52,Swimming in fabric,"This looked fabulous on the model, of course, and i love sweater dresses. but even in an xs, i was drowning in fabric and looked ludicrous. concept is good but execution went terribly wrong somewhere. a definite return.",1,0,0,General Petite,Dresses,Dresses +854,43,Winner,"There's not much to add to what reviewers have said. beautiful, flowing, light-weight fabric. flattering cut. gorgeous ombre tone with feminine embroidery. a great shirt for hanging out of dressing up. this is one of those shirts you expect from retailer. you wouldn't find it anywhere else. + +i've had this shirt a couple of months now and have to note that even with careful treatment, some of the embroidery is coming loose. it's gotten to the point that i want save it for special occasions rather t",4,1,1,General,Tops,Knits +1087,54,Well fitted dress,I was pleasantly surprised how this dress fit me. very comfortable and flattering on me. love the look. need to watch not to wear anything scratchy as it may pull the fabric,5,1,0,General Petite,Dresses,Dresses +1087,36,Nora swing dress,"This dress is really beautiful. the material is soft and sways, but it is sweater-like, not flimsy. it does seem to run maybe a little large throughout, but i liked that look. not form-fitting, has more of a drape.",5,1,0,General Petite,Dresses,Dresses +1087,23,Unique sweater/swing dress,"I love this dress. based on reviews, i ordered the small, and the only problem i had was that, while the dress is quite large, the detachable slip lining was quite tight and fitted, which i didn't find comfortable. so i replaced it with a flowy silk slip of my own, and the results are great. the fiber content contains a bit of wool, but i do not find it scratchy to my skin. and i am lovin' the hi-lo aspects of the hem. fun dress for winter!",5,1,0,General Petite,Dresses,Dresses +1087,51,"Cute, cute!","Love this dress! so cute and comfortable! good for all seasons, has a very nice under slip. only issue is that it will snag very easily. great color and i get lots of compliments!",4,1,0,General Petite,Dresses,Dresses +843,26,Adorable print,"I knew i needed to have this shirt as soon as i saw it and luckily for me, it was already on sale. i read the other reviews and ordered a s (usually order xs or s, but went with s for this one because i was worried about the fit of the bust). overall the shirt is huge on me. i considered returning for an xs but suspect that would also be too big and maybe too short. i decided i could get it tailored instead for the cost of exchange shipping. so i will be doing that. otherwise i love everything a",4,1,1,General,Tops,Blouses +1087,35,Comfortable easy dress,"I needed to write a review only because i feel like the dress is getting a bad rap by other reviewers. it is a loose, flowy, swing dress. i typically wear structured fit and flare dresses, but i do love a feminine, loose, casual dress from time to time too. this totally fit the bill. it is true to size, fitted on the arms, loose and swingy everywhere else. i got the peach color and love it. the cotton slip underneath is very comfortable too. i ordered the sp and it hits just above my knees in th",4,1,1,General Petite,Dresses,Dresses +1087,72,How many stylists did it take...,"... for the model to look like this? +pros: nice quality. the colors of the blue version, at least, are rich and beautiful. note that the dark color pictured is really brown, not black. the colors are also much brighter than they appear in the picture. it is a medium to heavy weight sweater knit which is well suited for fall-winter. it is layered over a bright navy poly slip. +cons: i am 5'8 135# . i looked like i was wearing a circus tent in med. the sleeves were more dolman than fitted. i imagin",2,0,2,General Petite,Dresses,Dresses +1087,20,"Great style, loose fit","I wore this dress for the first time the other day and it fit larger than i expected. it is definitely not form- fitting, however, i still love it. just note the previous description if that is the sort of fit you were looking for. as far as the length goes, i am 5'3"" and the dress covers my knees.",4,1,0,General Petite,Dresses,Dresses +1087,35,Very comfy dress,The quality and material of this dress is very nice! it's true to size and very pretty.,4,1,0,General Petite,Dresses,Dresses +1087,32,Too much material,"I wish this dress was more fitted.. the dress looks more fitted and more vibrant in the picture. i bought this dress in an xs, but i am not sure that going smaller would take care of the amount of material in this dress. it was shapeless and did not fall as nicely as it appears. i think someone with a fuller figure would look very nice in this dress. sad to say that it is going back.",2,0,0,General Petite,Dresses,Dresses +1087,63,I love this dress,"This is a great addition! it's comfortable, pretty, and can be dressed up and down. most importantly it's slenderizing and a great length for me! i bought it in my regular size, but bought the petite size, noting the model is 5'10"" and where the dress stopped on her. i'm 5'6"". the dress fits perfectly and is a great length for me! it also comes with a lovely, blue slip! such great quality for the price!",5,1,2,General Petite,Dresses,Dresses +1087,60,Unique - size down,"Love this dress, i've already worn it many times. i started off with a small but had to go to xs which is smaller than my normal size in order to get the fit as pictured. the length is great and works with tights or boots. + +great unique dress!",5,1,0,General Petite,Dresses,Dresses +1087,40,Wanted to love...,"Really wanted to love, the top was very flattering and loved the material: very swingy and forgiving. but way to much material, i was drowning in it. sized down to x small but no go.",2,0,1,General Petite,Dresses,Dresses +1087,24,Great maternity dress,"Another reviewer mentioned this was maternity-ish. i am currently almost 5 months pregnant, and i have to say: this is a wonderful maternity dress, even if that's not what it was made for. when not pregnant, i think this might have been a little overwhelming (and i guess we'll see next year if that's the case for me) -- there is a lot of fabric here. i am usually a small or medium in antrho dresses, and i am wearing a small in this now with room to grow as my stomach grows. the colors on the blu",5,1,0,General Petite,Dresses,Dresses +1087,35,Beautifully colored potato sack,"I'm 5'4, 115 and the xs swallowed me like a snuggie. i suppose the tons of fabric might drape nicely if you're 5'8 and above? it drooped and hung comically large from every angle under arm, body and skirt. a belt was no match for that much fabric. the colors are gorgeous and it appeared well made, but the design was awful.",2,0,0,General Petite,Dresses,Dresses +1068,51,Great style,"I love the style of this jumpsuit. it is so much more interesting than a long dress. i am 5' 7"" and need a few inches hemmed which will cut off some of the pretty embroidery at the bottom. my biggest regret with this is that it is not made from better fabric. it is a little stiff and scratchy. if it were more silky it would be a dream. but i am happy to have this in my closet. i purchased this in the berry red.",4,1,0,General Petite,Bottoms,Pants +1,50,Love this under-all cami tank ?,"Originally i bought this in black and white. recently purchased several more in different colorways . why? it's just perfect to wear as an under tank/cami. i'm a busty gal and sometimes cami straps can be too thin and dig into my shoulders. this is soft, smooth and provides just enough coverage. very flattering fit on its own as well. great under loose knit or low cut sweaters. love!",5,1,0,Initmates,Intimate,Layering +1,36,Staple tank!,Love this tank. material and fit are great. love that it's reversible. highly recommend!,5,1,0,Initmates,Intimate,Layering +1068,39,Love me some raspberries,"I had my eye on this piece since it came out, but thought it was a little pricier than i like spending... but it finally went on sale. alas, all the petite sizes are gone, but i decided to order the regular xs anyway. (the length quote is long, but i figured maybe with heels?). then the xxs became available and i snatched that too...so glad. the xxs fits better and isn't as long (i have to wear heels, don't get me wrong, but the xs was still long with heels). it is soft and lovely, the xxs linin",5,1,0,General Petite,Bottoms,Pants +895,39,Buttons -buttons so cute!,"I hardly believe i have not reviewed htis yet... so i tried it on in the sotre and was not convinced, my usual xs looked huge and hte ""hip"" part flared out in a funny way. i did, however decide to order it online in petties, to see( i really do love the design in the front, and the hemline is fun and unusual). they didn't have my usual xs so odrdered xxs, just to see... what a great choice, it fits like a glove now and the swaeter is jsut so beautiful... jsut wish it wasn't so pricey, but wil ke",5,1,0,General,Tops,Fine gauge +1068,55,Raspberry jumpsuit,"I am an retailer employee, i love this romper and suggested it to several of my regular ladies the day it arrived in our store. they both loved the piece before they tried it on...the jumpsuit is so cute and has the special flair of a piece you would expect to find at retailer. the piece is lined which is an added bonus but there is where the issue with the jumpsuit arrives. the lining is to short makes it feel awkward. i ordered the xxs petite, and it fits perfect, except the inside l",5,1,12,General Petite,Bottoms,Pants +1088,46,,I disagree with other reviewers on this. it looks a lot better in picture on the model. i found it to run large and not fit in the most flattering way. fabric feels great. i want to love it but it is going back.,2,0,0,General,Dresses,Dresses +1068,47,Regular woman can look like a model in this one,"I have the raspberry jumper and i feel like royalty in it. the silk is luxurious and looks expensive. when i walk if feels like it is fluttering around me like butterflies around sleeping beauty. typically i am quite disappointed when trying a jumper and find that what looked amazing on the model simply makes me look goofy. but this one is the exception. i think the super long length (although problematic) as well as the soft elegant drape of he fabric, as well as the angled cut at the bodice ar",5,1,3,General Petite,Bottoms,Pants +1,24,Love but also very annoying,"I love this tank, it is so comfortable but it does have its flaws. it rolls up every time i walk or do anything, it becomes very bothersome.",2,0,1,Initmates,Intimate,Layering +1068,58,Re: love this jumpsuit!,"Purchased it in raspberry. first time it came in the mail, it was stained and the hem looked like it had been dragged through the mud! come on customer service, you need to be more diligent about checking out items before you ship them! i ordered it again, and this time it was a new jumpsuit in plastic, so pristine. +i am a size 8-10, and the small fit me fine. the lining is a little tight in the crotch area, but i can put up with it for the style of this jumpsuit!!",4,1,0,General Petite,Bottoms,Pants +1088,60,"Soft, but faded","Yummy, soft material, but very faded looking. so much so that i am sending it back. if a faded look is something you like, then this is for you.",3,0,4,General,Dresses,Dresses +1068,48,Wanted to love this,"Terrible fit for a longer torso. runs small in hip and lining, huge in the waist. not good for an hourglass figure!",1,0,0,General Petite,Bottoms,Pants +1068,44,Gorgeous!!!,"The reason i gave this an overall rating of 4 stars is because of the sizing. the jumpsuit runs big and the black does not have a petite option; otherwise, i would give this 5 stars. this jumpsuit is so gorgeous that i had to buy both colors. i bought the black in medium and it looks absolutely beautiful on but i will have to take it to get it altered; it is way too big on me. i really need a petite in this but i still bought the black and am getting it altered. + +i loved this jumpsuit so much",4,1,2,General Petite,Bottoms,Pants +1030,30,,"Just purchased these online and couldn't wait to try them on! they are soft, comfortable and my new favorite pair of jeans! i love them! i am 5'8 and sz. 29...the color and quality are above my expectations :)",5,1,0,General,Bottoms,Jeans +1088,58,,Beautiful dusty rose color! the fit is fabulous! love the sleeve and hem length! very flattering and does not cling.,5,1,6,General,Dresses,Dresses +1068,45,Wow,"Love love this! i was hesitant to buy this at first - the reviews made it seem so big and i wasn't sure if it was my kind of outfit. but i wanted to try a jumpsuit and this was the perfect find! the xs was a typical retailer size for me, so the size was good in this, too. the color is fabulous and the fit is great. the rise is slightly short, but not a problem. i can't wait to where it for my next great event. i wish i could buy it in the black, too.",5,1,0,General Petite,Bottoms,Pants +895,53,Wished it fit,"I really liked the fabric and the design of this sweater, but the sleeves hung at an odd length (no way to push them up like on the model) and the sweater was large on me. i have broad shoulders but am otherwise petite. unfortunately i had to return this. glad others are having better luck.",3,1,1,General,Tops,Fine gauge +1159,35,Great tank,This tank is soft and flexible. great fit with wonderful material. very pleased.,4,1,0,Initmates,Intimate,Layering +1068,62,In love!,"I am in love with this piece! i am long waisted and large busted so finding a jumpsuit to fit me can be challenging, having said that i sized up when ordering this, wrong ladies....no need....i had to reorder my normal size and even that was roomy, but in a good way as i prefer belting it with my huge concho belts. i purchased it in the rasberry and i am still scratching my head as to why the black sold first, the red is stunning and i find it more versatile going from casual to dressy. and this",5,1,4,General Petite,Bottoms,Pants +1088,56,,I just bought this dress and love the fit. i'm pear shaped and it's very flattering! it's not clingy because it is lined and it has great drape. it's also seasonless. it will look great with boots and a sweater or kimono.,5,1,1,General,Dresses,Dresses +1159,25,Super soft,I ordered this top because it was on a crazy sale and i'm really glad i did. it's super soft and comfortable but still very cute so its versatile. you can wear it down or dress it up with a great skirt or jacket.,5,1,0,Initmates,Intimate,Layering +1088,26,,"My new favorite dress. very flattering beautiful color, and great length. fabric feels very good as well. i'm usually s/m, purchased the medium and it fits perfectly",5,1,3,General,Dresses,Dresses +1068,22,Gorgeous gorgeous gorgeous,"This jumper is gorgeous! i usually don't instantly spend almost $300 on one piece without contemplating, but as soon as i tried this on, i fell in love. i had to order it online because i needed the xsp as the xs in store was way too big. please be warned that this runs large and definitely buy the petite if you are petite or a little taller... i am 5'3"" for reference and even at 5'3"" it's barely short enough to not be too long on me. so if you are an inch or two taller, i would recommend the pe",5,1,14,General Petite,Bottoms,Pants +1068,37,,"This is an awesome piece and i got many complements while wearing it! it is that rare combo of super comfortable yet amazing look all in one. it does run a bit big, especially on top but the stride is short so i had to keep my regular size or i would have had a wedgie all night.",4,1,0,General Petite,Bottoms,Pants +895,28,Amazing!,"Such a gorgeous weight, cut and style! the button detail is adorable and the fit of the sweater is fantastic. the hem style, (not sure what you would call it), is incredibly flattering for an hourglass figure. i am 5'4, 133 and 34dd. fit is tts, maybe a bit large but nothing crazy. love",5,1,0,General,Tops,Fine gauge +1110,27,"Pretty color, but wrinkles a lot","I recently wore this to a beach wedding, and it worked out great with a cute denim jacket. the orange color is pretty and vibrant, and it is comfortable to wear. i like the length of it, and it flows really well as you walk. the cons are that it wrinkles really easily; i used a steamer extensively when it arrived to steam out the wrinkles, but it still had a wrinkled look to it because i think of how the seams are. as i got back up from sitting down for 10-15 minutes, the front and back were alr",4,1,0,General,Dresses,Dresses +908,55,,This tunic is a nice basic to have. it is like a light sweater knit. the arm holes are a little large and hang low but can easily be remedied by wearing a camisole underneath. nice with leggings or skinny jeans.,4,1,1,General,Tops,Fine gauge +1110,67,"Lovely, but. . .","I really couldn't tell if i like the dress or not - it was swimming on me and i always wear a size small. design is great with cross straps in the back, thin, silky fabric. i would call the color more of a bright coral/orange - not a bright red.i'll get back if i decide to try ordering the xs. . .",3,1,5,General,Dresses,Dresses +854,35,Pretty but too unstructured,The colors are beautiful on this shirt and it is true to size. it is very comfortable but i wish the flowing part on top was pinned under arms or something. it is attached at the top of the tank top but nowhere else so it just kind of lays over the tank with a poncho look.i also think the top layer would look better if it was longer- it hits at my natural waist and i'm petite. i still plan on keeping it and think it will be cute enough with jeans. just really wanted to love it!,4,1,0,General,Tops,Knits +335,34,Amazing pair of leggings!,The fabric is super soft and the quality is just exceptional. the pattern/coloring is even more beautiful in person. overall an excellent pair of leggings to work out in or run errands in.,5,1,1,General Petite,Intimate,Lounge +335,35,,"I just got these leggings yesterday and honestly they're amazing. they look just like the picture, feel great on, don't slip in the waist. zero negatives. i can't wait to wear these bad boys out.",5,1,3,General Petite,Intimate,Lounge +1086,41,,A little long but very comfortable. i've worn it to work and to a bridal shower so very versatile.,5,1,0,General Petite,Dresses,Dresses +949,83,Scottish classic,"Received this jacket yesterday...and it is lovely. +very well made with a relaxed yet feminine fit. +the cobalt blue accents are not as vivid as they appear online, was slightly disappointed with that, but being more subtle will make it more wearable...so no ""oh she is wearing that jacket again"".... +the forest green is rich and elegant. +the fit is true to size, but this is not a fitted jacket, it falls more straight, but the peplum is a gorgeous accent. +a classic with impeccable quality!",5,1,0,General,Tops,Sweaters +908,51,,"This sweater is very long, could be worn as a dress at 5'3 !",2,1,2,General,Tops,Fine gauge +1086,54,Ginerva maxi,"I purchased a large and it fit perfect. i'm a size 12- 36dd. the material is very forgiving and flows over my curves. thick enough that it doesn't need a slip and will stretch to fit size 14 ladies, maybe size 16 too. i'm 5'7"" and the length is great on me with flat sandals. doesn't show my bra either.",5,1,2,General Petite,Dresses,Dresses +1110,69,,"Color not as vibrant as in the picture. skirt is darted, which is not clearly seen in the picture. (assumed would be cut on the bias, which i'm more familiar with in slip dresses.) i didn't fill in the bust and the style is such that it isn't possible to compensate with helpful undergarments. while not for me, i'm still recommending it because it may fit others better. reviewers are instructed to avoid writing about customer service, but i feel compelled to note that the customer service i have",3,1,0,General,Dresses,Dresses +836,49,"Unique and comfortable top, easy to wear.","I love the beading at the neck of this top and also the half-length banded sleeves. it is a dressy top that is nevertheless very comfortable to wear. it looks like silk although it is synthetic. i do wish it came in a petite length because it is a bit long for me, but it is one of those pieces you can just put on over a variety of pants or skirts and you're done and ready for work or going out to an event. it requires little in the way of accessories because the beading at the neck acts as built",5,1,1,General,Tops,Blouses +1025,28,Get compliments all the time,"Love this fun print. one of the most complimented items in my closet! i ordered petite after trying on the regular - regular was a bit too long for the look in the models photo. i am 5'5, size 0/2 usually. the blue has faded a little bit the pants have maintained their fun and funky vibe.",5,1,0,General,Bottoms,Jeans +862,41,Jury is still out,Perhaps i purchased the wrong size. i will return to a store and try on the small. the medium just looks a little sloppy on me. i absolutely love the length and the color. will likely exchange for a smaller size and wear it all spring and summer.,4,1,3,General,Tops,Knits +1110,49,Nice dress,"I love this dress, the only issue is i ordered on-line and it came from a store location not the warehouse so it came dirty on the bottom and wrinkled! +once i washed it (yes its washable) it looked fantastic!!!",3,1,0,General,Dresses,Dresses +1110,30,Proportions are off,"I really liked the color and style of this dress, but the proportions were off. the top was too small and the waist was too large. if you are more uniform in size/shape and less of an hourglass this dress may be perfect for you!",3,0,1,General,Dresses,Dresses +1038,42,Floral fun!,"I absolutely love these jeans! the rise is mid so it is perfect, not too low and not too high. the embroidered flowers are gorgeous and so unique. these pants scream retailerpolgie to me. i had to buy them as soon as i saw them because i know they will go fast. pilcro denim fits great! i ordered these online as my store didn't have them. i ordered my normal size 26 (2) and they fit great. i have an athletic build and they fit me like a glove with comfy room. i can't wait till the temperature gets",5,1,0,General,Bottoms,Jeans +836,37,Beautifully unique top,"I was looking for a top to wear out that was chic but not too dressy. this top fit the bill. the sleeves and the embellishments give it a very feminine touch. i paired it with skinny black ankle pants and black heels and received lots of compliments. it is comfortable and easy to wear for a long night out. it does run big so i recommend sizing down. also, the sides are slightly sheer but i wore a black tank underneath without a problem. great top!",5,1,12,General,Tops,Blouses +497,25,Comfortable but not for extreme yogis,This bra is incredibly comfortable but not meant for practices that involve a lot of movement (i.e.: vinyasa) but is perfect for lounging and personal practice. the orange is a beautiful color,4,1,2,Initmates,Intimate,Lounge +836,53,Print looks odd,This is a well made blouse with a pretty neckline. the print with the sleeves makes me look really wide. it's an odd look.,3,0,1,General,Tops,Blouses +335,37,Wearable art,"Love, love, love these leggings! a soft, colorful, comfortable way to show your artistic flare.",5,1,5,General Petite,Intimate,Lounge +854,34,,,5,1,0,General,Tops,Knits +1038,36,Floral fall jean,"Pilcro denim with embellishment like this always wins me over. these pair of jeans fit well, the detail is so pretty for fall. cant wait until it cools off to wear these. the price point is a little high considering the silly shipping costs too. love the jeans though.",5,1,1,General,Bottoms,Jeans +1086,47,Elegant!,"I know the photos for this dress show it as a very ""casual"" dress, but i find it very elegant.i really love this dress. it is very simple, but that is what makes it stunning. . the fabric is heavy enough to drape perfectly. it fits really nice on top - my bra fits just fine underneath and doesn't show. i'm a short gal and i will have to wear a small heel even though i purchased an xxs petite. i'm fine with that. nice quality, fits well - done deal for me!",5,1,1,General Petite,Dresses,Dresses +335,34,Amazing fabric,I'm in love with these leggings. they are super soft and comfortable. they look cute on and are great for working out or even running errands. very stylish too!,5,1,2,General Petite,Intimate,Lounge +1078,54,Love !!,Love this dress - haven't worn it yet but wow the design / artwork of the fabric is beautiful !! waiting for weather to cool off a bit so can wear with my off white suede gogo boots ....,4,1,0,General Petite,Dresses,Dresses +829,20,Bee-utiful,Love this top! i typically wear a 4-6 and went with the 6 on this one. the length was better and the the buttons were perfectly closed. i am a 34d. this top looks great with everything.,5,1,6,General,Tops,Blouses +862,44,,I found this tee to run true to size with a comfortable relaxed fit. the neckline and elegant button gives this tee enough detail to dress it up if you wanted to take it in that direction.,5,1,1,General,Tops,Knits +1078,49,Fun for fall,"I love this dress. i ordered the small, i am 5'2"" and 116ibs. the dress fell right at my knee cap. i had it altered in length 2"" and now it looks great. i was a little concerned about having to cut off some of the print design elements, but it didn't effect the look .",4,1,0,General Petite,Dresses,Dresses +861,49,Love it buy it!,Im size 16 top and the xl is a little big but it is a longer tshirt whihc i love thank you sooo much please return the size large back...,5,1,1,General,Tops,Knits +1076,46,Didn't fit right,"It is a beautiful dress,but didn't fit me.this is better for someone tall and thin.",4,1,2,General Petite,Dresses,Dresses +862,39,Adorable,"Now, i ordered both striped versions and i don't know which to keep... the material is a nice soft knit. the neck line is almost boat-neck, with little buttons, so cute. colors are really nice too. i tried it on with skinnies and trousers,a nd ti looked great with both. i went with the petite version, for those shorter gals out there... xxs petite fit me, i havne't tried o the xs petite yet. (5'1.5"" and 115 lbs). i think it would loke nice with a pencil skirt too, if i only had one that went wit",5,1,0,General,Tops,Knits +829,39,Cute and nice cut,"This is a nice sleeveless button down, the bee design is really fun, but the colors make this more stylish than i would have thought. i tried it on with a pair of white shorts, with a half tuck, and it looked great. i can also see it paired with trousers or flared jeans. nice addition. i purchased the 0 (or xs?) my usual size, in regular length, and it was fine. the stylist also showed me how to tied it in the front to wear with high waisted pants. i am 115 lbs for reference and 30 dd.",5,1,8,General,Tops,Blouses +942,41,The perfect fall sweater,"Nice quality, can work as a jacket or sweater. i've worn with and without the tie. i didn't realize from the pictures but the sleeves bell out giving it an extra touch.",4,1,1,General,Tops,Sweaters +862,34,Elegant and comfortable,"I purchased the navy breton stripe version of this shirt. it's chic, versatile, and soft, a great rendition of a wardrobe classic.",5,1,0,General,Tops,Knits +1078,25,Loved the fabric,"Loved the fabric of this dress, and the slip that comes with it. i wish the waist line fit a little better though. i am 5'4"" with an athletic build and it looked really boxy on me. i was so disappointed. thought i could synch it in to make it work, but think this is a return.",4,1,1,General Petite,Dresses,Dresses +1078,33,Nice but wrong fit,The material is awesome and it's a super pretty dress it just didn't work on my body.,3,0,0,General Petite,Dresses,Dresses +1078,28,"Drab color, weird fit","Couldn't make it work, even belted. ivory color is darker irl--dingy light tan, like dirty vintage. ""drop"" waist is not dropped at all, just a maternity-ish cut that starts boxy-loose high up (below bust), then abruptly flares out at bellybutton level (not low hip) into the skirt. i usually find a-line cuts good at giving illusion of a willowy, curvy waist, but this does not--adds ten pounds. poly fabric heavy/hot; rayon lining awkward and doesn't flow/drape. (5'3'' 127lb 34a, tried xs)",2,0,0,General Petite,Dresses,Dresses +829,35,,"Love! i wish this came in additional motifs! hits at hip, i have a long torso, perfect for high rise skinny jeans and sandals.",5,1,0,General,Tops,Blouses +1081,28,Beautifully made,"I bought this mainly because i have a similar one in the mustard colorway and i love how this flows. the color is definitely one you don't see a lot of, which is what makes it special. i could see it running a tad large, but i think it's pretty true to size. now i'm debating about buying it in blush!",5,1,2,General,Dresses,Dresses +829,54,Fun and unique,"I am 5' 4"" and 128 lbs and could have worn the 4 or 6 but took the 6. it does run short and the length in the 6 was better than the 4 with arm hole size being the same. the bees are embroidered making the fabric high quality and normally i would run from a print like this but not this one. it has great style!",5,1,4,General,Tops,Blouses +1081,24,Love this dress!,I really love this dress. i cannot believe how many people have complimented me on this dress and ask where i bought it. the color is so soft and pretty. the dress is comfortable as well. it looks great with a light pair of wedges.,5,1,0,General,Dresses,Dresses +862,28,So soft,"I bought this shirt in the teal/navy and loved it so much that i went back and bought the white/navy too. it is so soft! the shirt runs a little tight but is stretchy and not uncomfortable. the sleeve length and neckline dress up this shirt a little bit from being a standard t shirt, yet it is just as comfortable. overall very cute and flattering.",5,1,1,General,Tops,Knits +942,57,"Unique,colorful but has some flaws","Love the colors in this autumn designed sweater that i just received but it has to be returned. i disagree with one of the reviews that it is not as pictured as far as the green being ""off."" i think it is just as pictured. i love the texture of the large pockets and belt with the suede feel. i love the flap on the back. what i don't like is how large it is. i have never worn an xs from retailer and i should have listened to the advice from the previous reviews but i didn't. +i could send it back",4,1,1,General,Tops,Sweaters +1078,35,"Awkward shape, cute fabric","I'm 5'3"" about 130lbs and ordered a size 6. the print on the fabric is as expected but the shape of the dress and fit were not good at all. i probably would wear a 4 instead of the 6, but could tell that even if i had the 4, the cut of it still wouldn't be flattering on me at all. it was baggy in odd places and had no shape. the outer fabric is very sheer and see through and the lining is nice, with a fitted slip design.",2,0,3,General Petite,Dresses,Dresses +917,32,Too shimmery!,"I saw that there was metallic detail when i ordered it, but i wasn't prepared for the entire thing to be metallic. it fit tts, but wasn't what i was looking for.",3,0,2,General,Tops,Fine gauge +271,70,Lingerie?,"Fabulous fabric, adorable details. fitting is very, very odd. it's non-adjustable in any way. the fabric has no stretch at all around the middle and the underwire of the bra is very stiff which i found painful. the straps were kind of loose, but there is no way to tighten them because of the frills. when i bent over, the shorts exposed the bottom of my butt. i'd get a larger size, but then i can't adjust the straps and they would definitely be too long and leave my breasts very exposed. overall,",3,1,13,General,Bottoms,Shorts +861,49,Yummy t,I love the raw edges on this t-shirt and the marled pink is a pretty color. the fit is not as oversized as you might expect from the photos. order your usual size. it's very soft and lightweight.,5,1,0,General,Tops,Knits +862,49,Versatile boatneck top,"I tried the red/salmon color on at the store. it's a very bright color, but a nice one. the top is form-fitting, with soft stretchy material. there are two small buttons at each shoulder. the sleeves are a good length. the boatneck shows a little bit of bra strap, but not too noticeable. the only thing i didn't care for was the somewhat synthetic look of the material. if you're between sizes, size up as it's a snug fit.",5,1,2,General,Tops,Knits +862,42,Versatile top but size up!,"Fun versatile top for casual wear with capris, denim, or shorts/skirts. purchased both striped versions. love ballet necklines. the 3/4 length sleeve is wonderful for spring, summer, fall in california. the top is fitted yet it runs small. be sure to sized up. i normally wear xs, however this was way too tight. so i've ordered a small in both. hoping it works perfectly.",4,1,6,General,Tops,Knits +862,53,Sizing up wasn't necessary for me...,"I ordered a size up after reading the reviews, but i wouldn't of had to. it's not a snug fit at all. although, i am fairly small busted. soft fabric with a little stretch that will be great for lounging around the house or running errands.",4,1,0,General,Tops,Knits +829,51,All the buzz,This is so awesome. i love how it fits. it's great quality. it's flattering. it's casual but put together. love. fits true to size. i bought it in white as well.,5,1,0,General,Tops,Blouses +1078,33,"Beautiful, unique dress",I bought this dress on super sale online after seeing it in the store. the pattern is just so beautiful and unique! i think it looks much pretty in person than online. there isn't a lot of shape to the dress but i like the loose style and can see this being worn with boots/booties. it also looks nice with a belt! my only complaint is i had to size down to a 6 (usually an 8-10 in dresses) and the liner slip was a little tight. also would have loved to try this in petite. the regular falls to just,4,1,1,General Petite,Dresses,Dresses +829,60,"Cute, printed blouse!","This blouse is very cute and will be great for summer casual wear! so cute in this print - it looks great with colored crop pants! + +it is a bit tough to get the right fit in this top, depending on your preference. i usually wear a size 2-4 in tops (26"" waist, 34b/c), but went with a 0 in this because it just felt wide otherwise. also, i am fine with it, but this blouse seems to be somewhat short in the torso. if you are particular, possibly buy in store because the pattern of bees varies quite",4,1,14,General,Tops,Blouses +942,37,Great casual cardigan,"Beautiful cardigan, but it does run large. i'm about 5'9"", 160 lbs, normally a large in tops, and the medium fits great. it's still a bit roomy, but i think this cardigan is meant to be a tad roomy. i agree with another reviewer that it's a bit itchy on bare skin, but it's wool, so that's a given. overall, a great cardigan for fall!",5,1,0,General,Tops,Sweaters +829,62,Best if tied at waist,"Love the fabric of this button-down. runs really large, however. am usually a small or xs - so bought a 4. it's ok, but is incredibly boxy and stands away from the body -- & not in a good way. i think it probably works well tied at the waist, but, alas -- i am too old to be showing off that part of my anatomy. returned reluctantly! hope others will enjoy!",4,1,0,General,Tops,Blouses +861,70,Perfect oversize t,"It's the perfect long, loose t-shirt. flattering without being fitted. love it!",5,1,2,General,Tops,Knits +829,33,Bumble bees,"This is such a cute top. i bought it when it was a new arrival and couldn't be more thrilled. it washes well in the the washing machine. the only flaw is that it runs on the short side. otherwise, i'm thrilled.",5,1,0,General,Tops,Blouses +1020,57,Looooong.,"1. i'm 5'6"" tall with a short waist and long legs, and this skirt came all the way down to my ankles. i would have kept it if it had stopped mid-calf like in the photo. + +2. i'm 38-32-40 and the size 12 fit me perfectly in the waist hip area, so i would say it runs true to size. + +3. the buttons lay nice and flat over the tummy, so that's a plus. at least you don't have to undo them to go to the bathroom.",2,1,8,General Petite,Bottoms,Skirts +942,51,Nice sweater,"I purchased the cedar one. not sure where they got color name from since i don't see any cedar in it. the picture of the model is accurate in coloring and fit. tts, the sleeves are a little wider and longer at bottom but in a good way (to me). the pockets and belt are a suede-like material which makes for a lovely detail. it's not a slender-izing piece but not a frumpy fit imo at all. soft material and nicely made, but for that price i would hope so.",4,1,0,General,Tops,Sweaters +1078,43,Not great,"This has a cute aesthetic on the hanger but not so great on- at least for my body type. i am 5'10"" with broad shoulders and slim, and both the arms and dress length were too short. in addition, the size 8 was boxy and unflattering. sizing down to a 6 would have exacerbated the length issues.",3,0,6,General Petite,Dresses,Dresses +917,43,Slenderizing sweater,I'm 5'1 and a tad busty and this sweater i found to be most flattering. i saw it i. the store on was drawn to it. i love the shimmer but perhaps that's because the holiday feel is already in the air in nyc. the m fit great in both length pans width. it looked great with my straight black jeans and boots. i felt it made me look thin. thankful i bought it on a discount day! it's a fabulous sweater.,5,1,0,General,Tops,Fine gauge +862,34,,Beautiful shirt for a great price. i love a good striped shirt and i got it on sale!,5,1,0,General,Tops,Knits +829,36,,So cute! a definite add for this summer. sizing and pattern are both on-point. would be cute with so many bottoms,5,1,1,General,Tops,Blouses +1078,34,,The sleeves are a bit too voluminous and the solid color collar stands out a bit too much. but it's a cute pattern and style. very comfortable.,3,1,0,General Petite,Dresses,Dresses +839,39,Nice white tunic,This is a nice tunic but i wish it was a bit more structured. the band in the back helps hold it together so it doesn't balloon out but a few more pin tucks would have been nice. i do like the length and style as a alternate to a white button down shirt and it looks super cute with skinny crop pants.,3,1,0,General,Tops,Blouses +942,66,Pretty but runs large,"This sweater was in-store in a more neutral color palette and was so pretty. when i tried it on i noticed a few things: the versatility and quality are definitely there - this is a nice piece even at full-price. the downside is that it runs very large. i'm typically a 14/16 and a size xl in most retailer items, and even the large was a bit roomy. the other thing was that the sleeves of this sweater are pretty long (and i have long arms). due to the bell cut of the sleeve you couldn't even really c",4,1,5,General,Tops,Sweaters +942,39,Oversized,"Beautiful 100% lambswool sweater with all these gorgeous fall colors arranged into an eye catching design. i agree with reviewer numero uno, she is correct on all counts: pretty colors, quality construction, ultra long bell sleeves (look at model wearing cedar/neutral colorway), oversized fit. sizing down will still have those ridiculously long sleeves but i'm fine with that. i ordered size m and will exchange for a s as the cardigan is too large overall. wool is soft and just a bit itchy which",5,1,4,General,Tops,Sweaters +1078,39,Jungle boogie,"This dress brought out my tamed inner kitty--there's a collar so of course it's tamed! i'm in love with this unique print that roars retailer to all who admire. this is not a hot weather dress because of long sleeves and fabric. dropped stars cuz it's yucky poly/rayon and you need to size down or you'll be drowning in fabric (this cat doesn't swim!) looks great belted or underneath my black wool sweater. i'm 5'3"" 135# 36c and i purchased size 8.",4,1,0,General Petite,Dresses,Dresses +7,39,Four winters in... a winner!,"I love this coat. i bought it in 2012, and it still looks great in 2015. i only wear it a few times each season, but it makes me smile. it's tailored, feminine, and a bit flashy. it's fairly warm, too.",5,1,0,General,Jackets,Outerwear +829,52,A special piece,"Upon entering a local retailer store, i saw this top almost instantly and decided to try it on. +fyi: 36c, broad shoulders/back, high waist, 5'3"" (almost), and i normally wear a 12 in a fitted, button-up shirt. i can go down to a 10 in a loose-fit one, but with the buttons i wouldn't expect this to be ""loose-fitting"". i wear a m or l in a knit top. i tried this on in 12, but it was too big in the armholes and chest, causing the top to stand out too much from my body. when i tried on the 10, these",5,1,16,General,Tops,Blouses +1078,48,So ready for fall!,"I received this dress today and can not be happier. i'm 5'6"", 120 lbs, 34c, and the 2 fits perfectly, hitting about 1.5"" above my knees. the print is so pretty and elegant. the colors aren't too vibrant, aren't too muted. the collar and french cuffs give the dress an extra flair. it comes with a little slip because the dress is sheer. i just tried it on with suede booties and it looks adorable! i'm ready for cooler temps to arrive so i can wear it!",5,1,6,General Petite,Dresses,Dresses +862,37,For work or play,Got the blue & white striped in xs. fits perfectly. the arms are a little snug but it stretched to a comfortable fit. it's very comfy and good quality fabric.,5,1,0,General,Tops,Knits +1078,38,Effortlessly pretty,"So much prettier in person than online. the animal print isn't in your face, but subtle enough for almost any occasion. the button-up collar and slightly past knee length make it work for a casual work environment. the pleats and airiness of the dress remind me of kate middleton in anita dongre. + +fit: 5'4"", 140 pounds - i bought a six, but the four would probably work as well. because of the lightness of the fabric, the extra fabric doesn't overwhelm my small frame. goes slightly past my knee",4,1,3,General Petite,Dresses,Dresses +1078,34,Even better than expected!,"This dress is so much prettier in person! it will be great both for work and play, can't wait to pair with booties into fall.",5,1,0,General Petite,Dresses,Dresses +1078,67,Prettier in person,"I got this dress in the mail today, and it's one of the best dresses i've ever gotten at retailer.. the material is of high quality and feels silky against the skin. the fit is true to size for maeve, and is so flattering. for reference, i'm thin (116 lbs), but curvy and usually order a regular xs. in maeve, i'm usually an xsp, and the xsp fit perfectly. it looks good with a wide cream colored crocheted belt (also from retailer), or on its own.",5,1,9,General Petite,Dresses,Dresses +1078,24,Absolutely elegant.,"This dress is beautiful and very flattering! i bought the 8 and am 5'3"" and 138lbs. it fits right at the knee and is flowy, but still gives some shape without looking baggy. i love it!",5,1,1,General Petite,Dresses,Dresses +862,52,Busty gals rejoice! stripes!,"I am busty and have a difficult time wearing stripes because they are not that flattering. the stripes on this top are narrow, and the material is thin which makes this great to wear under a jacket if you want to dress it up. i am 5 feet tall and ordered both the regular small and the ps because i wasn't sure which sleeves would be best on me (as far as the length goes.) if you want the sleeves to look like they do on the model order the petite if that's what you usually order. you can also get",5,1,0,General,Tops,Knits +945,55,Sweater is huge!!,Had to return. ordered an xs which usually fits perfect. 34b chest and it was falling off. shoulders and chest!! it was like a sleeping bag. huge fan of retailer but there is a design flaw in this sweater.,2,0,1,General,Tops,Sweaters +945,62,Cute & cozy,"What a great sweater! the pale pink is sweet but the grey was more my style. i'm 5'5"" 120 (34c) and the xs is perfect. i know everyone is saying this sweater runs large but i believe this style is meant to be a bit oversized, so i would call it true to size with that in mind. the arms are long, the shape is boxy (but not short) and i love the way it hangs on my thin frame. it's super soft & cozy; will easily be a go-to sweater this fall.",4,1,0,General,Tops,Sweaters +945,42,Makes me feel young,"I love this sweater. it is so soft and the pink is such a sweet shade. it is large and falls of the shoulder, but that's how it is designed to fit. it is my new favorite sweater!",5,1,2,General,Tops,Sweaters +895,56,,,5,1,0,General Petite,Tops,Fine gauge +1095,57,Beautiful and perfect,"I am so happy with this dress. i bought my usual size 2, and it was a perfect fit. this dress is gorgeous. it has some stretch, which is a plus. i am 5'5 "", and it was not too long on me at all. i am so thrilled with my purchase.",5,1,1,General Petite,Dresses,Dresses +895,42,Cute but bad shape,"I bought this sweater online as soon as i saw it. but like the other reviewers i agree it is shapeless and sticks out too much at and below the waist. if it were a softer fabric maybe the flair would work but not for this one. i am 5' 2"", 115lbs, 32d and got the xs. maybe if you aren't chesty it won't flare out as much. sadly i had to return it. i was so excited for it, o well.",3,0,1,General Petite,Tops,Fine gauge +1107,21,Lovely transitional dress,I a looking forward to wearing this dress with a jean or leather jacket. the dress is well made and the fringe adds a nice detail to the otherwise basic design. be sure to order a couple of sizes smaller than your regular size because the dress is huge. i ordered the dress in both colors and am keeping the blue.,4,1,0,General Petite,Dresses,Dresses +1107,42,Big and boxy,"As previously mentioned, this dress runs very large. i ordered accordingly, and the small was the right size for my frame, but it was just not flattering. i'm pear shaped, and i found the shoulders to be large, the neck a bit too high, and the overall cut to hug my figure in a very unflattering way. i'm 5'4"", 140-ish, and maybe if i were a few pounds lighter and a few inches taller, it could've worked. i so wanted to love this, because it's soft and comfortable and cute, but back it goes.",3,0,2,General Petite,Dresses,Dresses +905,56,Mustard color,"I wanted the blight yellow as photo with navy flower motifs. however it was much more darker as on the tag, mustard. if you like its color you will like it.",4,1,11,General,Tops,Fine gauge +945,42,Super comfy,Love this sweater. super comfy. can wear with everything.,4,1,0,General,Tops,Sweaters +1080,50,,This dress is more beautiful in person. loved it . fits true to size . i had to return it because it was to long for what i needed.,5,1,10,General Petite,Dresses,Dresses +1066,71,Must have for summer,Chic and comfortable even in 90 degree heat. so easy to wear.,5,1,1,General Petite,Bottoms,Pants +905,58,Cute but too short,The model looks like she's 14 years old - this sweater of course would fit a younger teen. it definitely won't work for a grown woman. please make some longer sweaters.,2,0,0,General,Tops,Fine gauge +909,40,"Very nice, just as pictured","Very nice sweater, surprisingly just as pictured color-wise, i ordered a large and it felt true to size in the shoulders, but this sweater flair out to the bottom, you can kind of see it in the photo, the length is good as well for a regular fit. it's very unique combination of fabric acrylic/wool knit, the texture is really nice and soft and looks very good on. also it's thick and warm. i wore the top to work today on 34 degree weather and received many compliments. sweater looks simple but the",5,1,5,General,Tops,Fine gauge +903,56,Flattering and lightweight duster,"I bought this lightweight duster in the cream color. it runs a little large through the shoulders so i sized down from my usual l to a size m. its very flattering on, and made with natural fibers such as cotton and linen. i wear this unbuttoned with a tank top, cropped jeans, and sandals.",5,1,21,General Petite,Tops,Fine gauge +1091,34,Lovely!,"I'm 5.5"", 128 lbs, 34b cup, slender throughout, size 2 fit perfectly. lightweight, flattering dress. bought on sale to wear next year to baby/bridal shower type event.",5,1,0,General Petite,Dresses,Dresses +1091,55,Perfect spring goddess dress,"I just received this dress and i feel like a goddess in it! it is perfect for graduations, weddings, romantic dinners, tropical va cations....heck, i'll wear it to the grocery store! i love it that much! + +i am 5'7"" with a 34c bust.....i have this dress in a size 4 and it fits very well. this dress is slim cut from the shoulder down to the waist. the dress length hits me at the lower calf, just like the model online. i think the armholes are cut a little high...this being said; this dress would",5,1,19,General Petite,Dresses,Dresses +905,56,Great sweater,"This sweater works on many levels for petite frames. the length is just right, hitting at the lower waist. the design is very pretty, feminine and with flair.",5,1,0,General,Tops,Fine gauge +945,44,Boxy,"This sweater was unflattering me, very boxy and did not fall on me like the model. soft fabric and looks nice off, however this one went back.",3,0,0,General,Tops,Sweaters +1091,34,Sizing and fit are off,"Absolutely love the print and quality is great too! unfortunately, for a well endowed woman like myself, it runs terribly small in the bust and hip region. it absolutely does not look as flowy on an hourglass body type. too bad because it's beautiful! might try sizing up but doubt it will work :(",3,1,28,General Petite,Dresses,Dresses +895,61,Classy!,"I wanted this top since the first time i saw it. it fits perfectly in a small, as i usually wear a small or medium. it would probably fit better if you are smaller on top -i am a 36a- as it is not generously sized. it flares at the bottom, which looks quite flattering. the lace on the sleeves really adds a lot of style. i will wash it carefully, as i am not sure how well the lace will hold up with washing. this is a beautiful top, and i am considering buying another in a different color. i think",5,1,0,General Petite,Tops,Fine gauge +1107,35,,"This dress was so cute and comfortable! i said it runs big, but i think that may also simply be the style of it. i paired it with some cute boots and received many compliments! love it!!",5,1,0,General Petite,Dresses,Dresses +895,41,Made me look larger than i am,This sweater did not flatter a sz 12 with 36d chest. it's very well made but not for the curvy girl. this is my very first review and felt compelled to share my thoughts since i heavily rely on others' reviews before i purchase.,1,0,10,General Petite,Tops,Fine gauge +1066,33,In love with these pants!,"I've been searching high and low for a pair of flattering and comfortable linen pants. i'm very particular and have turned down every pair until these. these are perfect! they fit true to size. they are a relaxed, but not baggy cut. (i hate saggy butt pants!) the legs are slightly tapered so they don't widen my frame. they look great rolled up or left down. the linen is soft, not scratchy. the elastic band sits comfortably on my waist. they are also not see through! (a must for me!) i ordered th",5,1,1,General Petite,Bottoms,Pants +1066,33,A great anti-jean for hot summer weather!,"Yay hei hei! love these pants. thanks to the roll-up, they show a nice bit of ankle. lightweight but sturdy?i've been reaching for them when it just seems too hot for jeans. they're a little poufy toward the top (below the waist), but the tie waist makes them sufficiently cinchable. i expect to get a lot of wear out of these this summer. i did experience some stretching/sagging after a full day of walking, moving, and sitting, so i bought my second pair in m instead of l. (got navy and went back",5,1,1,General Petite,Bottoms,Pants +1107,39,Runs very big,"I ordered the red in xs petite, xxs and xxs petite (in case petite was too short). so far, the xs petite and xxs petite were shipped to me, however, thought the bag said petite, the actual dresses inside were regular sizes, and they were huge, even the xxs (i put it on on top of another knit dress and it was big0. so i reordered, this time only the xxs petite (though i am technically waiting for the xxs regular)... perhaps all the bags have been switched... we shall see, but perhaps this isn't t",4,1,2,General Petite,Dresses,Dresses +1091,39,Just ok for mw,"I love the pattern, but the color was not great on my skin tone. i tried on the regular size and it wasn't great. teh cut could work, but overall, i didn't feel like it was enough for me to order the petite to see, and i sometimes do. in a tall darker toned person, this would be gorgeous. what i like the most is the color pattern in the print, and shimmer.",4,1,0,General Petite,Dresses,Dresses +1091,46,"Fun, elegant, stops others","Recently wore this lovely dress during business trip - was stopped four times while walking thru orlando airport. the design is extremely comfortable, the print will make you and others smile. so elegant and fun. the beading on the flowers is elegant. such a unique piece",5,1,1,General Petite,Dresses,Dresses +1066,54,Great pant for the price,"Buy these, they are a keeper. sturdy fabric, not too thin and they do not sag or stretch after wearing (i tested them before taking the tag off by sitting in them on my couch for several hours). comfy, soft fabric. i will be ordering other colors, hoping that black will be available.",5,1,26,General Petite,Bottoms,Pants +1066,37,Another example of retailer quality going downhill..,These pants look nice and are comfortable but the quality of the fabric is terrible! i should not be surprised because i bought another pair of pants by this same label at antro earlier this year and they did not hold up at all either. but i thought i'd give it another shot. never again! i'm on my 5th wear and the crotch and inner thighs have worn away completely...i mean huge holes in the fabric where it's just disintegrated. even at extra % off the sale price it's not worth it. the full price,1,0,0,General Petite,Bottoms,Pants +1107,56,"Soft, stylish sweater dress! love it!","This is simply a fabulous dress. i think the issue with the other reviewers is that they are too small (though there is nothing wrong with that). i am not. i am older and heavier, and the dress fits very well. i'm also rounder on the bottom so it is not baggy or tent-like. the material and texture of the yarn is soft and comfortable. you can wear it all day at the office and into the evening. it looks great with a jean jacket, for example, and booties. and it also looks terrific with flats. it d",5,1,3,General Petite,Dresses,Dresses +1091,49,Dreamy dress!,"This dress is a lovely creation! however, i had to buy it three times before finding the proper fit. it runs extremely large!! i am 5'4"", weighing around 128. i ordered a 4 petite the first time because others stated this dress ran small. ha! it was a sack!!! the 2 petite was little better. the 0 petite was perfect! but i have never worn a 0 petite in my entire life! + +otherwise, this dress is an original that i will enjoy for many years to come! if only it had been made of silk, it would be un",5,1,4,General Petite,Dresses,Dresses +1076,44,Flattering and darling,"I ordered this dress in navy for fall, and it is now easily the most darling and figure flattering dress in my wardrobe. i am 125 lbs and size 27 in jeans. i usually wear a size small but ordered a medium based on reviews that said this dress runs small, and i like that the medium is a little longer and slightly blousy, making it more modest, but the small would have worked just fine for a slightly more figure-accentuating look. the fabric hangs beautifully and has a silky feel. the navy flower",5,1,2,General Petite,Dresses,Dresses +895,44,Beautiful sweater,"I bought this sweater in the black. it is so flattering and feels great on. the sleeves are a bit long, but they are supposed to be. the material is not overly thick, yet it feels soft and well made. while the lace sleeves are the star of this show, the back is so flattering! it has a perfect cut that i don't think comes through in the picture. it fits true to size. love this one!!!!",5,1,27,General Petite,Tops,Fine gauge +895,46,Didn't work for me but a beautiful sweater,"I ordered the ivory in size xl. it fit a little on the small side. the knit was good quality as was the lace. unfortunately, the mock neck was stiff and uncomfortable. the sleeves were a little too long for me as well so i returned it. but, it's such a unique style and good quality.",4,1,0,General Petite,Tops,Fine gauge +1066,43,The perfect summer pant,"It is rare that i find a pair of pants that works for me at retailer. as a woman with curves i have found that most of retailer's pants are cut for slim figured women, this rare pair of pants crosses the divide, flattering both shapes. i usually have to look for xls. here, i found that i had too much room and sized down to a l. these pants are great. they are lightweight without being so gauzy that they highlight imperfections. they will be my go to summer pant. i love them.",5,1,4,General Petite,Bottoms,Pants +1091,56,Gorgeous!,"It's stunning in person. delicate beading detail on bodice isn't visible in the photo but really dresses it up. fits lovely but runs small. i am usually a 6 or 8, ordered the 8 and it just fits. fully lined. bought it to attend a wedding and i'm very pleased with it.",5,1,7,General Petite,Dresses,Dresses +945,38,Perfect fall sweater!,"I love drop shoulder sweaters and find them to be very flattering so i took a chance on this one despite the reviews stating it runs very large. i was attracted to the style as well as the natural cotton fiber, which i find holds up best over time. i am 34b and usually wear xs or small and in this i ordered the xs. it fits perfectly! i layered this soft pink sweater over a rounded hem tee with a black and white pattern; so cute! it is slightly short on my 5'8"" frame so the shirt tail hems peeked",5,1,1,General,Tops,Sweaters +1066,70,Great pants for the summer,"I've been looking for comfortable pants for the summer. this pants is the answer. it's comfortable, thin, and yet not to sheer. this pants a bit loose, i could fit in s. i usually buy size 8 or 10 for shorts from retailer, so i'll say this pants run big. the con with this pants is the stitching around the back pockets is not very sturdy. i found tiny holes on 2 other pairs before i bought mine.",5,1,1,General Petite,Bottoms,Pants +945,32,Love!,"I bought this is in the gray color, although imo it has more of a greenish hue. i love it. it's a wide boxy fit like others have said, and tends to fall off the shoulder. i purchased it in the small (my typical size) and it definitely seems to run large (it relaxes too as i wear it, giving it an even roomier feel). that said it's very cozy & comfortable. i wear a tank underneath. works well for 50's and 60's weather.",5,1,1,General,Tops,Sweaters +895,35,Fabulous fabulous fabulous,"This is a perfect sweater. it's comfortable, practical and lends an elegant hand to a pair of jeans. it also hides your bits and stays flattering. i have worn it a lot because it makes life so easy and i have not had any issues yet with lace tearing. + +tts. 5'7"" 127 lbs 34b wearing this in size small",5,1,0,General Petite,Tops,Fine gauge +895,33,No,"Bummer, i loved the lacy bell arms and everything about the look of this sweater but it is huge in the abdomen. seriously looks maternity to me. the neck is also too wide. the quality of the material is very nice and the weight is nice and heavy but the cut just didn't work on me. i returned this one.",1,0,2,General Petite,Tops,Fine gauge +1066,26,So comfy,"These pants are so great, light, comfortable and reasonably priced. they are very well made, and the soft fabric is perfect for summer traveling and hiking. there's a bit of elastic in the waist which i like since pants usually gap at the waist on me. they're like classier lounge pants.",5,1,15,General Petite,Bottoms,Pants +1091,55,"Beautiful, romantic dress","Don't wait. get this dress now before it disappears. it is gorgeous, it is well made. it is like butter. the fit is perfect and the workmanship is stunning. everything about this screams, ""lets go party!."" oh yeah... and the skirt part kind of swishes around as you dance. you cannot get more charming than this.",5,1,9,General Petite,Dresses,Dresses +1107,46,Large and boxy,Good reason to read reviews. i concur with others in that it fins large and looks boxy. heavy fabric makes matters worse.,2,0,0,General Petite,Dresses,Dresses +1095,62,Great dress,"I ordered the small and it fits ok,i probably could have went with an xs but i am keeping the dress.it is a very beautiful dress.this dress can be worn for casual or dressed up for evening.very versatile dress and well made.i did get it on sale which made it very affordable. i am only 5'3"" and the length in the regular s is fine for me.",4,1,0,General Petite,Dresses,Dresses +1107,20,Amazing quality,"I am 5'8 and 220lbs (extremely muscular) i ordered a size large and it hangs very nicely over my curves, the neckline looks pretty good with my broad shoulder, and the dress comes about 4 inches above my knee. i think people with curves would really like this dress but it does lack shape so beware if you're looking for something with some structure. the blue is gorgeous and the fringe details are very cute. this dress does seem to run a bit big.",4,1,0,General Petite,Dresses,Dresses +895,45,Love the lace,This is a gorgeous sweater! i purchased it in black and purple.,5,1,0,General Petite,Tops,Fine gauge +1107,22,Love it!,"I was looking for something business casual when i ran into this dress in store. i was able to wear a petite small, but am normally a 4-6 in dresses. it does run large! its perfect with heels for work or dressed down with boots in the fall. it is very comfortable and still looks like you're trying.",4,1,3,General Petite,Dresses,Dresses +1091,34,Beautiful!,"I bought this dress to wear to my graduation where i was receiving a degree in horticulture. i also just had a child a few weeks prior and was worried about sizing. the high waist worked well for the post pregnancy belly. i am 5'3"" and was typically around 130 lbs pre-pregnancy which was typically a 4 in dresses. i ordered a 6 petite in this dress and it was perfect! the only area that was sort of tight was the bosom but i am nursing so i expected as much. the petite length was perfect for my he",5,1,1,General Petite,Dresses,Dresses +895,47,Over too bit,"While i loved the sleeves on this sweater (the lace detailing was beautiful) the core area was really big. i agree with another reviewer who said it looked like a maternity top. i was hopeful but i sent it back. i am 5'7"", 128lb and ordered the small.",3,0,0,General Petite,Tops,Fine gauge +895,41,,"Absolutely beautiful, i am extremely happy with this purchase. i bought this top a couple of months ago and have worn it many times. initially, i was a little apprehensive to order due to some of the other reviews but i found that this top is very figure flattering. it is very soft and warm and i am positive it will be in my wardrobe for quite a few years to come. i am almost sad that i will have to put it away for the season soon.",5,1,0,General Petite,Tops,Fine gauge +1076,24,Glad i went for it!!,"I loved the look and style of the dress but was unsure how it would work with my body. i'm curvy but slim and usually a size 6 or 8 in retailer. i went with the m in the navy color, and i'm happy i did! +the floral pattern is vibrant and the ruffled skirt is flirty and fun. as far as fit goes, i'd say this runs mostly true to size but is rather short in length. i have a large chest so the top part looked more baggy than blousy, and the skirt portion was just comfortably fitted. however, the cuten",5,1,1,General Petite,Dresses,Dresses +1107,38,"Too large, no shape","While i loved the material, color and concept of the dress, it was much too large and sack-like. i'm 5'2"" and 108 lbs, pear-shaped. i purchased the regular xs given stated length in the description. while the length was just right, it was just much too large throughout. i'm not sure that even an xxs will help so sadly, this will be going back.",3,0,18,General Petite,Dresses,Dresses +895,56,Fabulous!,This sweater is even better looking in person. the body of the sweater is substantial - a nice weight. the lace is gorgeous. i usually wear a size large but found the sleeves really long. i purchased a medium and it fits better - sleeves are perfect.,5,1,3,General Petite,Tops,Fine gauge +1107,47,Runs way too large - so bummed to return!,"This is a great dress - nice soft fabric and the red is a nice, vibrant tomato red color. i ordered a small - i am 5'4"" and usually wear a 4 in dressed. this dress was so huge - it might be mismarked but labeled a small. i will have to return it - not even my seamstress can make it fit!",3,1,0,General Petite,Dresses,Dresses +895,48,Beautiful unusual sweater,"Love the lace cut out detail on the sleeves which is initially what attracted me to this sweater. just be careful with the threads. the sleeves are long but are supposed to be, as in the photo. comfortable material with nice weave, flattering cut. i bought the ivory color in xs for my 5'2"" 115 # straight frame. not too long",5,1,8,General Petite,Tops,Fine gauge +895,32,Awesome sweater,"Love, love, love this sweater. it is so comfy and well made. this is a piece i will have for a very long time. the beautiful lace detail are the sleeves are to die for. picture doesn't do this sweater justice.",5,1,0,General Petite,Tops,Fine gauge +895,36,"Good fabric quality, poorly shaped","I agree with the other reviewers; this sweater was strangly shaped in the waist, in an unflattering way. the rest of it was beautiful though. looks too much like maternity, even in a petite xs, so it's going back.",3,0,1,General Petite,Tops,Fine gauge +895,40,Beautiful and unique but the fit is not the best,"I love this sweater and the sleeves are amazing. i also love the purple color, which is more of a deep maroon. the material seems to be of good quality. what i don't love about this sweater is the shape. it is very swingy, which is somewhat flattering because it isn't too clingy, but it poofs out a bit too much on the sides, becoming unflattering from certain angles.",4,1,0,General Petite,Tops,Fine gauge +1020,39,"Lovely summer print, runs small","This is a beautiful skirt; the colors are fresh and summery, yet subtle, and it's a nice sturdy cotton, not flimsy and cheap looking. however, i agree with the reviewer who said that this runs small. i take a 4 in most skirts, but i had to try on a 6 and still felt that it didn't fit quite right. if you're extremely thin, this might be great for you.",3,0,0,General Petite,Bottoms,Skirts +945,46,,Love love love!!! it is a little boxy but it is soo soft and comfortable!! it does run at least a size or 2 big!! i picked it up in the pink color yesterday at me local retailer store. was not sure about it when i first saw it online but fell in love with it quickly when i tried it on!! great sweater for fall/winter,5,1,3,General,Tops,Sweaters +895,35,"Nice shirt, wrong body type","This shirt is beautiful, however i thought that it was made of a softer, lighter material. it is, instead, made of a thick, heavy material that was unflattering for my shape. ( short torso ann's large bust) it made me look boxy and chunky in the middle. sadly, i'll be returning",3,1,0,General Petite,Tops,Fine gauge +895,56,,I purchased the pale green in this sweater first. loved it so much i purchased in another color.,5,1,0,General Petite,Tops,Fine gauge +909,71,Comfortable-soft-lovely pattern,Stunning sweater for cooler weather. i think it runs a little small so returned first one and ordered one size up which fits perfect.,5,1,2,General,Tops,Fine gauge +1076,35,Love the style,"I ordered this online and i love the style, but didn't like the print as much as i thought i would.",3,1,0,General Petite,Dresses,Dresses +895,40,Lovely sweater,"This is a lovely sweater--unique, nicely made, though i found that it ran large for me. i was between a size xs and small, and neither one seemed just right so i ended up returning it. the small had the right length in the arms and torso, but was too wide in the torso and shoulders, and the xs was too short. bummer! also found that every single ivory one had stains or spots on them in my local store, not sure why. if i had been able to settle on the right size i probably would've kept it!",4,1,1,General Petite,Tops,Fine gauge +1076,66,Everything,I ordered the navy in an xl although am generally a medium or large in tops. i sized up because it looked fitted and i think it was a good choice for me. it fits just like the model but the back droops a bit and the neck is wider. my bra is still covered in the back. it fits perfectly in the waist and the elastic allows for some adjustment in placement. there's 2 layers of ruffles in the skirt portion. i'm 66 and was concerned it would be too young looking but i love the look. it hits about an,5,1,2,General Petite,Dresses,Dresses +637,32,Cute socks,Fun socks you will want to show off. design is printed on a relatively thin (trouser sock).,4,1,0,Initmates,Intimate,Legwear +1107,58,Great dress!,I wanted to love this dress but sadly returned it. i think it would be more appropriate for someone younger. it runs very large but its not clingy so forgiving of anyone with chunkiness (such as myself). i guess i just thought the blue was a little too unexciting (for me).,5,1,0,General Petite,Dresses,Dresses +895,66,Beautiful design,"Wore this & got many compliments. true to size, elegant.",5,1,0,General Petite,Tops,Fine gauge +1066,54,Perfect!,"These pants are really great! the fabric is soft, but substantial, and the fit is so comfortable. i bought the ""grey"" color - it's a very light grey, almost a stone color. it's a perfect neutral to wear with just about any top you may have. i love the deep front pockets and the elastic waist is an added bonus. i'm 5'5"", 124 lb. and purchased the small.",5,1,1,General Petite,Bottoms,Pants +1091,48,Gorgeous print,"I already have some dresses similar to this, but i couldn't help getting this one, too. i love the flowers, bees, and ladybugs on the print! there is some shimmery beading on the neck and a few spots. i think i can wear this at work with the right cardigan/jacket, so i'll get more use out of it. it's a lovely light, floaty fabric that's nice for warmer weather.",5,1,1,General Petite,Dresses,Dresses +1076,59,Darling; runs small,"I felt a review would be helpful for anyone between sizes. i am long, lean, and broad shouldered. i normally wear a m, but ordered a l. it still fits snug, so i've exchanged for an xl in order to get the drape, as pictured on the model. material and color of the red motif is darling; light as a feather & will take me spring through summer.",5,1,1,General Petite,Dresses,Dresses +945,71,So cute and comfy!!,"Slouchy, longer in the sleeves, a little cropped, great neckline, stylish.....these are just some of the reasons i absolutely love this sweater! i've been looking for a style like this for a long time. i went down a size because of the wide neckline and the fact that it is a bit oversized. i'm petite, 119 lbs., with a 32f bust size. i went with the grey, but i'm loving it so much i might pick one up in the pink. so comfy and cozy and chic!!",5,1,0,General,Tops,Sweaters +895,54,Cute cute,Beautiful sweater. i first bought it in black and loved it so much i bought it in burgundy. the burgundy one is longer and slightly bigger than the black one and they are both smalls. nice thing is i can wear the burgundy one with leggings. love the lace on the sleeves and the sweater is a nice weight.,5,1,0,General Petite,Tops,Fine gauge +1107,66,Cute and comfy,This dress runs very large. i am usually wear an xs but i had to get xxsp-runs large through the mid section and arm holes. very comfortable and super cute on.,4,1,0,General Petite,Dresses,Dresses +1020,31,,"Very high quality fabric and the fit is excellent. the skirt is stylish yet simple and very easy to wear as i feel i would have no trouble paring it with several different tops. it can easily be dressed up or down and is excellent for work. i got this on sale and am so glad, still, it is one of the few items actually worth the initial high price tag. great quality!",5,1,1,General,Bottoms,Skirts +1066,32,Love these!,"These pants are so comfy i'm getting a second pair. i ordered the olive color in a small/reg, im thinking of ordering the xs next time since they do stretch out a great deal as the day goes on. would definitely recommend these for sure. hope this review is helpful as i struggled with ordering petite or not. glad i didn't!",5,1,1,General Petite,Bottoms,Pants +905,36,Cute but short length,"Loved everything about this sweater but the short length. didn't notice in the pictures but the last one of the back of the model shows the length. it barely reached the very top of my jeans so would have to wear something under or i'd be flashing my stomach all the time. worked a bit better with skirts, but still too cropped for my frame. wish it was 1-2"" longer in length and would have been a new fall favorite. really great color and design besides that. just make sure you are wanting the sh",4,1,6,General,Tops,Fine gauge +1020,25,Pretty skirt,"The skirt really is beautiful - the blue and coral are brighter in person than in the picture above. it's a nice lightweight material that feels quality, but has too much stretchy spandex in it for my tastes. i had the same problem as others - the skirt runs very small. i am usually a size 6, and while i could zip the 6 up, the skirt had those puckers that come from being a size too small.",4,1,3,General,Bottoms,Skirts +1066,55,Great summer pants,"These are nice, comfortable summer pants that travel well. the material has a nice feel to it,lightweight, but not too thin. they are easy to wear with any summer top, and look just dressy enough. i like the elastic waist, but the pants will stretch out a bit, and run a little large.",5,1,3,General Petite,Bottoms,Pants +1091,47,Stunning!!,"This dress is absolutely stunning!!! i'm 5 feet & curvy. it's flowy, lightweight & has some sparkle mixed in with the gorgeous print. it fit everywhere except when i got the zipper up to my chest. i'm a 36dd & it wasn't going to finish zipping. i was very sad! i even tried the biggest size they had - a 12 & it didn't work. if that zipper had been able to go all the way up & would own this dress.",4,1,12,General Petite,Dresses,Dresses +1107,58,Perfect summer to fall,I bought this dress in burnt orange for my 19 year-old collage daughter. she loved it and has found many opportunities to wear it on campus. she said it is so comfortable and perfect with a sweater for cool fall mornings and sleeveless as the day warms up.,5,1,0,General Petite,Dresses,Dresses +1091,48,,Love this romantic girlie girl dress. so pretty.,5,1,0,General Petite,Dresses,Dresses +903,56,Love this lightweight cardigan!,"I bought this duster in the blue color and really like it. i am 5'11"" so love the longer length. the large was too wide so got the medium. the sleeves were a little snug on my upper arms but after wearing it for awhile they loosened up. i think i will get the white too!",5,1,7,General,Tops,Fine gauge +895,38,Stunninng,"Gorgeous sweater - such a simple design, but really stunning on. seems to be true to size. definitely a nice winter piece that's got a hint of ""dressy"" to it - maybe for date night. my only wish is that it didn't flair so much at the bottom (wish it was a bit more straight) - but other than that, i love it. +i'm approx 5' 5"" and about 125 lbs. i purchased the ""small"".",4,1,6,General Petite,Tops,Fine gauge +895,24,Love this!,"I love this turtleneck! it's soft (cashmere blend), is sexy with the lace design and loose but form fitting style, and the 70s inspired sleeves are really flirty. i purchased it in two colors because i got so many compliments the first time around!",5,1,0,General Petite,Tops,Fine gauge +895,53,,,5,1,0,General Petite,Tops,Fine gauge +1020,27,,"I also agree that this piece ran very small. my normal size did not zip up. i sized up a size, and it pulled across my thighs. i sized up two sizes, and it fit as i had hoped it would. if you get the right size, it is beautiful on. the colors are so fun, and i love the side slit. i bought it to wear to work with a blouse or blazer, and it is definitely a statement piece.",4,1,6,General,Bottoms,Skirts +1107,46,Love it!,"I bought this dress at my local retailer store on friday and love it! the dress is well made, with some heft to the yarn. the colors of the yarn, blue, white and grey, seem to shimmer a bit due to their weave, but there is no metallic thread in the dress that i can tell. i know some have written that the dress is a sack, but not on me. i toyed with buying this online and then didn't due to the negative comments about the dress; i bought an extra small and it fits well (i usually where an x small,",5,1,5,General Petite,Dresses,Dresses +1091,47,Lovely print and fabric design,"This dress was stunning on the hanger -- on me not so much. i am 5' 1.5"" and typically a sz 2. the smallest size at the store was a 4. i felt it was baggy about the waist and the length would have been better in petite sizing. the print is gorgeous with beading accenting different flowers. there is a tinge of green-yellow to the background fabric and the color did not look good on me. i hope to try this in a 4p.",3,1,30,General,Dresses,Dresses +1107,48,Love it!,"I love this cotton weave shift dress. it is supposed to be loose and not tight. i purchased a medium and fits the way i see it should fit. ref: 34dd, 148 lb; 5'4 height. hits above the knee but office appropriate as not too short. i paired it with a few seasons ago, the navy blue suede fringe jacket by retailer elevenses; new necklace in the blue motif from retailer ( it has a hanging druzy pendant) navy hose and navy crew neck long sleeve top. great outfit for work and an after work party at retailer",5,1,1,General Petite,Dresses,Dresses +1091,33,Poor quality,This is another item i've been stalking that i thought miraculously made it to sale with my size still available. i ordered online but when it arrived i have to be honest i didn't even try it on because i knew it would be going back. the beautiful print online looks really cheap irl on the flimsy fabric. the beaded detail on neck is basically a low grade sequin trim. so much potential just executed poorly.,2,0,1,General,Dresses,Dresses +895,58,,"Very comfortable and attractive pullover. not too long or bulky, although i find myself rolling the sleeves up to keep them out of the way! + +but it's a keeper",4,1,0,General Petite,Tops,Fine gauge +895,56,Only the sleeves are pretty; the rest is terrible,"The sleeves on this top always caught my eye every single time i was in a store. they never had my size to try on, so when a free shipping offer came up, i ordered the ivory top in a size large. well, the sleeves are indeed stunning, but that is all that is attractive about this top! the rest was a plain, blank, white canvas. in fact, that's what it felt like to wear it -- like i was wearing a tent or an artist's canvas on my chest. yuck! how can this designer put so much thought and care into t",1,0,0,General Petite,Tops,Fine gauge +1091,56,Tight and cheap looking,"I went with my usual size, but it is too tight, it fits, but i would feel uncomfortable in it. i ordered the pink one, which looks nice in the picture, but in person, it looks cheap. the beading at the neckline immediately looked to me like cocktail dresses my grandma used to wear in the 1970s. that beaded neckline added to the cheap look. this one is not for me.",1,0,0,General,Dresses,Dresses +1091,45,Beautiful romantic dress,I love the look on this dress - feels great for a romantic night out or for a party.,5,1,1,General,Dresses,Dresses +1020,51,"Pretty, but going back","I just bought this and i really disagree with previous review that it runs big - i wear an 8 in skirts and bought another retailer skirt last week that fits just fine - this one does not even zip up. i might exchange for bigger size, as label is just a number to me and sizes are really inconsistent - or it may just go back.",2,0,9,General,Bottoms,Skirts +945,31,,,4,1,0,General,Tops,Sweaters +1107,33,Great purchase. size down.,"Purchased this in-store today. i'm normally a small, but tried on x-small before trying on my regular size. the x-small fit perfectly. i'm 5""5, 135 lbs, with wide hips and petite derriã¨re. the dress fit well, slightly hugging my bottom. while i don't like things that draw attention to my bottom, with an outward tug or two of the stretchy material of the dress, it fit perfectly. sweater dresses tend to be bulky, so it makes sense to down size. definitely a nice addition to my closet.",4,1,2,General Petite,Dresses,Dresses +1091,34,Absolutely beautiful,"I almost never buy anything full price here and usually wait patiently for a sale + promotion :) however, this really struck me and i decided to buy it, telling myself it's an investment piece for years to come. it's just so unique and beautiful -- the things that makes retailer unique that aren't as common anymore. + +____________ +pros: +- very comfortable. i was skeptical because it's all polyester, but it's light and thin and breathable. it feels wonderful on the skin. the lining inside is ver",5,1,81,General,Dresses,Dresses +895,54,A great top with nice detail!,"The lace inlet sleeves on this comfy top add unexpected detail that dresses it up. you can wear this with jeans or skinny cords, as well as a fitted skirt. the material is comfy and the neck is not too tight, nor too loose. +i usually wear a small and the small fit the best. i tried the xs and medium and although they both fit, the xs seemed a bit too short and the medium was too long in the arms.",4,1,0,General Petite,Tops,Fine gauge +830,29,Wide and muted color,This looked really pretty but i think i am just too short for it. a little on the wider side. would look good on someone taller,4,1,7,General,Tops,Blouses +945,26,,,5,1,0,General,Tops,Sweaters +1091,62,Great for athletic bodies,"I have an athletic body 5'6"". i have no curves and this dress made me look so feminine and long and lean. on top of it being beautiful , the dress has a very comfortable ""jersey knit type"" lining. so easy to wear and incredibly comfortable sitting and /or dancing.",5,1,0,General,Dresses,Dresses +905,67,More cropped than shown,"This sweater is much more cropped than shown. the sweater i received was only 24 inches long. the color of the trim is black, not the navy or plum that i expected. quality does seem good.",3,0,7,General,Tops,Fine gauge +1020,30,Blue and white for the win!,"For the last two years, i have only purchased clothing for myself if it is secondhand, but then i saw this skirt and succumbed to temptation. first of all, the print is gorgeous! i'm a sucker for blue and white anything so it wasn't that hard of a sell. as other reviewers have mentioned, the seams line up! this kind of quality is so hard to find in clothing items anymore and really makes the skirt seem much more pricey than it really is (if you're buying it on sale like i did). i'm 5'3"" and will",5,1,3,General,Bottoms,Skirts +830,28,,I can not imagine the cut in the waist being flattering on anyone. i ordered an xs and an xxs still would have flared too much in the waste. i ignored the previous review and that was a huge mistake!,2,0,4,General,Tops,Blouses +1107,39,,"Per reviews and from looking at retailer employee pics on instagram, i sized down to a small, cinched with a wide leather belt, topped with a cropped jacket, added some shooties and a necklace. when winter comes, this will go with my knee high suede boots, long wool coat and chunky scarf. this does not look like a table runner on me like the model shot and previous reviews imply. now i am tempted to buy the other color. i'm 5'3"" 135# 36d 38/28/35 and purchased red melange in size s.",5,1,3,General Petite,Dresses,Dresses +1091,27,Great purchase,"I went back and forth on whether to purchase this dress, and i'm so glad i did. the fit was perfect. i'm always a little hesitant about long dresses since i'm 5'2"", but the petite length was perfect. the quality is great and the dress is so comfortable, but i feel elegant in it. i wore it for rehearsal dinner at my wedding and plan on wearing it again for a wedding next month.",5,1,0,General,Dresses,Dresses +895,43,Delicate lace beautiful design,"This is a beautifully made sweater. i bought this sweater in ivory yesterday; i wore it today and received many compliments. i think the sweater is adorable. it?s soft and warm; the neck is perfect, i like that it?s not as restrictive as a turtleneck. the long sleeves add character and help to make it interesting. i highly recommend it?i?m looking for a black one,",5,1,0,General Petite,Tops,Fine gauge +1020,56,Exquisite skirt - yet runs 2 sizes small,This skirt is of the highest quality. the fabric and cut is that of a much higher priced item. the fabric at the seams matches!!! no one mentions any longer when fabric seams are mismatched as if that is nonconsequential. to me it means the difference between good and great. this skirt is great except for the sizing. as other reviewers have mentioned....it runs so small. i wear a size 6 skirt. could not zip the 6. ordered the 8 - it zips yet puckers and while it could work - i'd be exhausted fro,4,1,5,General,Bottoms,Skirts +1095,53,Gingham garden dress renamed and new color,"I purchased this dress for the second time: it is the gingham garden dress from 2015 that was blue and white. same dress, new name and color. generally, this dress is large overall and long. i wish i could have purchased the petite size. i liked it enough to have it in black and white. this time around i ordered one size down and fit is much better. +recommendation: order 1 size down from your normal sizing as dress runs large. +the quality of the knit material is soft and flowing.",3,1,6,General,Dresses,Dresses +1107,33,,"I bought the red motiff in my usual size of xxs petite and it was huge. at first i thought they had mistakenly sent the wrong size but this was sadly not the case. the fit is definitely ""sack-like"" as other reviewers mentioned. i had to return.",2,0,5,General Petite,Dresses,Dresses +1107,32,,,5,1,0,General Petite,Dresses,Dresses +1091,44,Gorgeous,"This is a dress for a princess. i admire this dress so much, online and in person. i tried on this dress a few times every time i visited the store. the beads throughout the dress provide a low-key surprise sparkle, especially in the sun. the colors are much more vibrant in person, which is breathtaking against the light cream background. the fabric is soft and flowy. unfortunately for me, it doesn't fit right. size 6 fits well but the arm holes are too big and the midi part makes me look frumpy",5,1,2,General,Dresses,Dresses +1107,58,Comfortable knit dress,"I'm a 12/14 and i got a large and the dress fits nicely through the hips/seat. i'm kind of pear shaped so it's a bit large through the top, but i intend to layer another knit top under it so that's ok. + i didn't want the knit dress to be too tight or else it would stretch out after sitting. i like the colors and the fabric. the weave is loose and after snagging it on my glasses taking it off i'm careful with it. it will be nice into fall with a sweater.",5,1,2,General Petite,Dresses,Dresses +1091,49,Lovely with details,"My daughter got this dress in the 10 and i got it in the 6 - we are both tall. also, she's a redhead and got the butterfly version and i'm blonde and got the pink. also, both of us are small-chested - and since there is no give in the fabric, i don't know where one would fit boobs if you have them. one thing i noted (and i am not happy about) is that the back is puckered up along the zipper. this has to be on purpose, and i don't really understand that detail, as it doesn't flatter me and it loo",5,1,0,General,Dresses,Dresses +1091,64,Just gorgeous,"I am a fan of these designers and their gorgeous fabrics - most of which are heavy brocades. this is so pretty and fun. the print is playful, and colors are gorgeous, and the fit is floaty but not too full or too tight. i love the bit of beading, and that i can dress it up or down. + +i am petite and not usually a bigger print or long dress fan, but i know that i will wear this one for years. + +i did get a 00 petite as i know that only this small size fits me at retailer - 0's swallow me. this i",5,1,11,General,Dresses,Dresses +1107,70,Misrepresented in picture,"Dress appears to be slim fit, but that's far from the case. usually wear an xs regular because i have a long torso for my 5'3"", but it just hung on me like a heavy sack. i have a hard time finding dresses now that i'm not working and like to have a couple on hand for all purpose occasions--weddings, memorials, special occasions. i hoped this one would meet my needs. disappointed.",2,0,4,General Petite,Dresses,Dresses +1091,56,Beautiful dress,"I ordered this in a 2, but returned for a 4 because the arm holes were a little tight. other than that, this is a absolutely flattering dress. u will be wearing it for an outdoor garden wedding shower. the beading around the flowers makes such a different accent. just be careful zipping it up. love it!",5,1,2,General,Dresses,Dresses +1091,72,The very good and the very bad,"First of all, the fabric's summery pattern of blossoms, honeybees and butterflies is beautiful and absolutely unique. i love it so much i wish i could afford to keep the dress as an art object. also, with one important exception, the dress is well made. the underslip is the right length and opacity. the dress is not transparent, +which is a big plus. there is a slight greenish cast to the background instead of the pure ivory shown +in the pictures. this makes the color a bit harder to wear. and",3,1,3,General,Dresses,Dresses +895,54,Very classy and subtly chic,"This a a great sweater! it is classic, but has the fun surprise element of the lace bell sleeves. loved it so much i got the black and the sea mist. looks great with jeans or leggings! the only negative is you can call it that is that the sleeves are a tad long for me. compliments everytime i wear!",5,1,1,General,Tops,Fine gauge +895,42,Very pretty,Very pretty sweater! i love the bell sleeves with the design on the sides. the sweater runs a bit short though and wish it hung a little longer. looks great with flare jeans and boots!,4,1,1,General,Tops,Fine gauge +1107,26,,"This is a beautiful knit dress, however it runs large, so be wary. for reference i am a 34d, 28 inch waist, and 41 inch hips. i ordered a medium because dresses usually run tight around my bum, and it was very, very big. i'm hoping the small is much more flattering because the quality of the knit is very nice.",4,1,1,General Petite,Dresses,Dresses +1091,39,Simply elegant!,"I love the way this dress fits and flows! it does run big. i normally wear size 6 in retailer dresses. had to downsize to 6p. for reference, i'm 5'10"" and 34c. the pink color is 1 shade darker than shown in the pictures.there was a tear in fabric along the zipper. called for replacing the dress. the sales rep was very pleasant & agreed to send another one!",5,1,0,General,Dresses,Dresses +945,47,"Big, boxy sweater","I ordered this sweater in xxsp and the sweater is still very large on me. it is definitely a sweater that is supposed to hang off of your shoulders, however, i'm finding that it wants to fall all the way off of me. the quality is nice. it is medium in weight. it has a cottony feeling, but it not super soft. it looks way better on the model shown than in person to me. i wanted to love it, but i only just like it. i think others will like this if you are looking for a fun, loose look in a sweater.",3,0,5,General,Tops,Sweaters +1107,47,Beautiful knit dress - runs way large!,"I ordered an xxs petite and this hangs like a bag on me. i'm usually fine with the petite sizing, but this didn't work and i'm so bummed. the dress is soft, the blue color is gorgeous, but it fits like a bag. i wanted to love this, but sadly will have to return. i think someone with curves will love this dress. it is really beautiful quality, just does not fit a petite frame.",2,0,27,General Petite,Dresses,Dresses +1091,32,Stunning dress,"I debated buying this, so glad i did. tts. i'm 5'5"" 115 and 32c. i got size 2, and it worked but i could have done a 0 (which is my usual size). i was afraid to order it too small because i needed it right away! this dress is gorgeous! i got the pink color way and it is more vibrant in person. the beading is beautiful, it's incredibly soft and flowy! this dress is probably my favorite dress ever! if you're on the fence, order it!",5,1,4,General,Dresses,Dresses +1107,40,Love this dress!,"I got this in blue and i love it! it skims your curves without being clingy, and it is very comfortable. i was hesitant to buy this, but it's surprisingly flattering! it will be perfect with heels for early fall, then worn with a long sleeve shirt and boots when the temperatures dip. my only caution is that it is shorter than it appears in this photo. it falls well above my knees, and i am shorter than the model. regardless, i am thrilled with my purchase!",5,1,9,General Petite,Dresses,Dresses +1066,44,Very disappointed,"I loved these pants and purchased them in three colors. like another reviewer, within a few weeks, having worn them no more than a couple of times, the fabric in the crotch area started to wear thin and two pairs developed holes. i was not hard on the pants - just wore them to the office - and line dried them. so disappointing, as i really did love the pants. total waste of money.",1,0,1,General Petite,Bottoms,Pants +895,29,Beautiful and unique sweater,"I had purchased the black color of this sweater at full price and loved it so much that when i saw the burgundy color go on sale i knew i had to have it! this sweater is very comfortable and elevates any look with its lace down the sleeve, mock neck collar, and slightly flared silhouette. it's so fun to find different shirts to wear underneath to get a whole new look. highly recommend, would have gotten all colors!",5,1,0,General,Tops,Fine gauge +931,44,Love it,Love this sweater. it fits true to size. fun and different. purchased 30% off but i don't think the price it terrible depending on your clothing budget.,5,1,0,General,Tops,Sweaters +866,47,Disappointed,"I had high hopes ordering this top...unfortunately the top has a metallic fiber to the material and that detail was not noted in the product description! it also felt rather cheap & scratchy, poor quality for the price.",1,0,6,General,Tops,Knits +1068,53,Buttons at top break too easily,"Let me start off by saying that i really, really wanted this jumpsuit to work as it looked good on me and was tts (got a 6p). unfortunately, it didn't work out due to the two buttons at the top which break way too easily. i had to return it and exchange for another jumpsuit but it did me no good as the second one did the very same thing so i didn't even bother trying it on. the buttons broke through before i even got the chance as the material is far too thin and the back of the buttons just pop",2,0,13,General Petite,Bottoms,Pants +217,39,"Decent hold, cute","I love the 2 straps details, funny thing though is thsi bra is giving me rounder boobs... a little cleavage, nto waht i am sued to with a sports bra. lvoe the color (ordered the purple).",4,1,0,Initmates,Intimate,Lounge +999,41,Sian mini skirt,"So there weren't any product reviews to go by when i ordered the last small. i had no way of knowing if it ran big, small, or tts. i'm usually a med, but to my surprise the small worked due to the fluid pleating. it sits right on my natural waistline similar to the model and not too short in length (i'm 5'8""). i also like the med weight of the fabric it moves freely when you walk, but not too light. it is similar to a double weight georgette or crepe.",5,1,0,General,Bottoms,Skirts +1089,36,Not the same dress,"After reading the other reviews i still took a chance on ordering this dress becasue it looks so cute on the model. the dress they sent me is not this dress. it is the same material although the one i received had only one stripe down the canter, like a cross. there was no v back as stated by the other reviewer. it was scoop and if you pulled it down, the neck went up. the dress i received is branded as holding horses while the brand listed on here, is rava. the length measured at 39"" not the st",1,0,10,General,Dresses,Dresses +1008,38,Great basic skirt,"Great basic skirt to have. it flows beautifully and the print is a classic with a twist. it can be dressed up or down, with heels or flats. a great addition to my wardrobe!",5,1,0,General Petite,Bottoms,Skirts +1068,44,Fun and a little bit sexy,"I love this piece! like another reviewer i did notice a broken button right out of the package but it was so great in every other way that i'm going to keep it and have that mended and the buttons reinforced. + +i'm 5' 7, 140, generally a size 8/medium, small frame on top but baby growing hips ;) -- i found it tts",5,1,4,General Petite,Bottoms,Pants +1089,25,,"When i saw this dress in the store in a size small (i usually wear a large), i thought, ""how cute!"" so i tried it on. it fit very well...all but in the armhole. so i decided to order a medium. i received the medium and it fits exactly like the small, armhole and all. in addition, i agree with other reviews that this dress' description ""above the knee"" does not accurately describe length unless you're somewhat tall. i found this dress hit me just where i'd like it to...right above the knee. not a",3,1,3,General,Dresses,Dresses +1068,64,Failure,"I really wanted to like this jump suit. i rarely have problem with retailer clothing. i'm 5.6, hourglass shape, usually wear size 2. this jumpsuit runs small, but that's not the only problem. top part (shirt piece of the jumpsuit) is too short, so it's digging into my lady part. the color does not look anything like the picture, so overall this piece is failure. i hope that i find something similar but fits better.",2,0,1,General Petite,Bottoms,Pants +835,37,,,5,1,0,General Petite,Tops,Blouses +866,37,Love this top,"I love the lace on this top, it's perfect. it's great for my shape, i'm +so happy with this purchase.",5,1,2,General,Tops,Knits +1008,34,"Everyday skirt, but just okay","The reason for the title above is this skirt doesn't wow me. i felt like i could find this anywhere, and i don't go to retailer for such things. they have definitely mainstreamed more and more over the years.... +__________ +pros: +- tts. i tried on a large (and i'm normally either a 10 or 12) and it fit well and hung well on my hourglass and wider hips without billowing out. +- flows nicely! it does have a great movement to it. +- a good everyday skirt. +- not sheer at all. it is lined. +- when y",2,1,13,General Petite,Bottoms,Skirts +1089,33,,"I've been buying from retailer for the last 15 years and this is the first time i've ever posted a bad review. first of all the fabric is scratchy, thin, and looks very cheap. second of all there is no v back, it's more of a slight scoop. and lastly i'm 5'3"" so i ordered the petite small and it's still comes 4 inches below my knee. i am very disappointed in the quality and am definitely sending back. the only thing i think this could possible good for is a swim coverup.",1,0,9,General,Dresses,Dresses +866,26,Quality and style strange,"I liked this top, i really did. i also liked the subtle shimmer. the fabric didn't seem as soft, but i could not get over the big difference in length between the front and the back. you can see it on the model here, but when i tried it on it was even more obvious and just didn't look right. asymmetrical tops look better when the length difference is not so large, but here it is. the print at the top also made my shoulders look a little broader. i am sending it back.",3,0,2,General,Tops,Knits +1078,35,"Take car with it, but it's gorgeous","I love this dress. i agree with the other reviewers that the rhinestone linkages do very easily get caught on the lace part of the dress and i could see it snagging very quickly. that said, i am going to keep it and hope for the best because it is absolutely gorgeous. it is not actually a true white as it looks pictured. instead we, it is more of a nude color, but it adds to the flattering nature of the dress and makes it look sheer. the embroidery is beautiful. my only complaint is that it will",4,1,8,General Petite,Dresses,Dresses +298,35,Surprise!,"I love clothing that has little surprises, and i love the detailing at the arms with the lace-like openings which is not very characteristic (and actually quite fancy) for a typical henley. i found the fabric to be medium weight-and thought the quality was fine. i like all of the colors this comes in-each would fit into my wardrobe nicely. i have gotten into comfortable clothing (that is still flattering and functional) lately and am on a huge kick of gravitating toward it. this top certainly is",5,1,3,General Petite,Intimate,Lounge +1078,51,,This is a beautiful dress and fits well. the embroidery is delicate and can snag easily.,5,1,1,General Petite,Dresses,Dresses +298,29,Flimsy,"Oh what a disappointment! i was looking forward to wearing this as a layering piece with the shawl cardigan. the material lacks serious quality and it was ripped on the seam. so, back it goes. and, i am flabbergasted at the price retailer is charging almost $60 for this top!",2,0,14,General Petite,Intimate,Lounge +298,28,Great lightweight henley,"Got this in the petite xs in mint; the color is gorgeous, it's a really bright mint that complements my super fair skin really well (though it would work for pretty much any skin tone). it's still a good length in the petite for the type of shirt it is (5'1 and hits right around my lower hips). it is a thinner fabric, but that's what i was expecting, and the lace detailing at the bottom of the sleeves is a nice touch and makes it more than just a plain henley.",5,1,1,General Petite,Intimate,Lounge +136,47,"Charcoal, pale gray, a bit of silver!","These socks are soft and comfortable, and they are very short so they'll be good with booties. i couldn't tell from the pictures but the pale gray dots are surrounded by a border of subtle silver thread. they're adorable!",5,1,1,,, +1078,36,Flattering and unique,"Beautiful, unique design. it's very flattering the way the fabric hangs. + +i usually wear a 10, but because the lining is much smaller than the dress (which many linings are... it's a pet peeve of mine), i sized up to a 12 and took in the shoulders a couple inches so the bodice area would sit correctly on my bust. otherwise in the 10 my stomach would feel squeezed even if it looked like it fit perfectly. that said, i'm very sensitive to that kind of thing. + +other reviewers have noted that the emb",4,1,2,General Petite,Dresses,Dresses +298,23,,"I had my eye on this for a while and finally picked it up on sale. i got the darker blue in xs. great piece, fits well. very cozy but the cuffs add such cute detail.",5,1,1,General Petite,Intimate,Lounge +1046,47,Cute jumpsuit,"I love a jumpsuit for its ease of dressing. this is the 3rd i've purchased from retailer. +material is thin and gauzy as described. with a sweater or jacket it will be plenty warm for so cal winters and great the rest of the year. +if you are all tall, the waist might fall a bit short. i am 5'6"" and the waist just barely hits my waistline. +doubt i would have purchased this item full price, but on sale it's a great deal.",4,1,1,General,Bottoms,Pants +298,83,Beautiful twist on a classic,"I found this top to be very beautiful and well made. +the fabric is on the lighter side, however for me that is a double plus. +it is great for layering with a cami underneath and/or a heavier sweater on top. +and going towards spring it extends wearing time. +the lace on the sleeves is beautiful and a pretty peek a boo effect if layered under another sweater. +it 's a subtle sexy top with endless possibilities. +i found it runs very true to size. +i purchased the aqua and after receiving it i rushed t",5,1,3,General Petite,Intimate,Lounge +1024,38,New favorite jeans,These are nice jeans for the price. they are tight at first but do stretch out so i am glad i went with my normal denim size and didn't size up. i wish they didn't have a button fly but it didn't bother me enough to return them.,5,1,1,General,Bottoms,Jeans +1024,58,Great jeans,"I love these jeans but be advised that they run a little small in the waist. they work for me but i think they'd work best on those with an hourglass shape. i'm 5'7"" and about 112 lbs with a small waist and i wear a 28 in these. but i have hips - the 28 fits perfectly since it has a small waist but accommodates my hips. i love these jeans. great fit, good fabric, great price!",5,1,2,General,Bottoms,Jeans +1078,54,Breathtaking!,"This is the most beautiful dress i've ever owned. the detail is exquisite. i never write reviews and felt i had to for this dress. i love it! + +the embroidery does catch on the beading so you have to handle it carefully. it's worth the special treatment, though!",5,1,0,General,Dresses,Dresses +830,58,So much cuter than picture!!,"I was checking out at my local retailer when one of the salespeople held up this top and said someone had just returned it. they were talking about how cute it was (they didn't have it in the store). i asked what size it was and it was a medium, so i said i want to try it on. after trying it on, i fell in love, it is so cute, the cut fit great. it is a little big but the small might have been too snug in the bust. if you are in between sizes, you can probably size down. i wore it yest",5,1,1,General,Tops,Blouses +136,33,Cute itsy socks,"Love polkadots, love sparkle. these little socks are perfect for booties.",5,1,0,,, +298,39,Sweet top,I love this top. i had no issues with fabric. it is soft and light. the wrist details are very pretty. i love the buttons. it fits true to size and it is a good layering top. i got the red which is true to the picture. not looking red but a bright coral color.,5,1,2,General Petite,Intimate,Lounge +1046,47,,"Ok because i'm petite i thought there's no way this was going to work, but it does! a little sheer would probably wear with a boyfriend cardi to work, dark undergarments a must. but flattering and comfortable.",4,1,1,General,Bottoms,Pants +681,53,"Nice, but colors not quite as pictured","These are nice, flattering short. however the colors and patters are not quite as pictured. i almost suspect they are slightly different on each short. exmaple: on the picture online the left leg seems to be mint green and the right one blue. the ones i received the left leg is a darker, bluishgreen color. the right leg is orange. i would hae prefered the colors on the photo but it is not a big deal i guess. i ordered the color block bra as well and it has the same issue: colors and patterns are",4,1,1,Initmates,Intimate,Lounge +1125,51,Gorgeous coat,"This coat is simply beautiful. i love the slits on the sides, it makes it unique and sexy. i would suggest that you go up a size so the silhouette is not disturbed by any pulling or tugging. i'm so happy with my purchase!",5,1,0,General Petite,Jackets,Outerwear +136,36,Super socks,I love these little socks ? and the dots sparkle. i wear them with my heels and leggings or jump suit pants when i don't want a higher sock or knee-high stockings.,5,1,0,,, +1024,48,Versatile go-to jeans,"I liked the simple styling of these jeans when i saw them in the store. the price is right considering what some jeans cost today. unfortunately, these are made in china. that bummed me out. they run a tad bit small but in the end i think they are more true to size because they give especially in the waist. the higher waist is a nice change. it's nice to be able to skip a belt. the denim is a bit rough after air drying so i hope it softens up.",4,1,0,General,Bottoms,Jeans +1024,37,Levis wedgie,"Love these jeans! so comfortable and the high waist is great for my long torso. these are real denim, not the thin stretchy legging type jeans. they fit true to size on me- i am 5'4"" 120 pounds and i wear a 26. they were a little long so i chopped them off to hit just above the ankle",4,1,0,General,Bottoms,Jeans +1125,32,,"I agree with the other reviews that the side slits are not at all represented in the images. thankfully there was an instagram photo of the coat posted by the time i ordered it that showed the side panels very clearly, so i was not caught off guard. i like that the panels allow for ease of movement, but when there's a cold wind it would be nice if they were not there. this coat is a great statement piece for a night out, just not as much for day to day wear if you're looking for something warm a",4,1,0,General Petite,Jackets,Outerwear +1084,50,Pretty but not for me :(,"I ordered this dress in pm and it was very tight in the top. also, the dress is lovely but the undertones are very gray colored and did not go well with my skin/coloring. it had to go back but others may love it (i have dark hair/olive skin). it also ran a small on top (i'm 38 d). there should be a pm available soon lol",3,1,2,General,Dresses,Dresses +1089,51,Large fit,I was really excited to get this dress and to my dismay when i pulled it out of the package i could tell i would be disappointed. i tried it on and i was correct....it looked like i was wearing a huge tent. i returned it.,2,0,0,General,Dresses,Dresses +867,32,,"I've been looking for a light colored flowy cardigan for awhile and finally found this one is perfect. the materials is soft and has just the right about of details for me with the gently ruffled edges, tie front an some bunching around the sleeves. color is between ivory and tan. i am petite height and medium framed with broad shoulders and since they didn't have petite in stock, i bought regular s. it fits well enough, though i probably could have bought an xs. my new favorite card!",5,1,2,General,Tops,Knits +836,45,Better in person,"I think it's prettier in person. the color is a little brighter in reality, and the beading on the lower half is in 2 colors (green and gray), which isn't apparent in the photo. although i would consider it true to size, it's a full looking top. i'm 5'8', and both the sleeves and the length are not as long on me as they are on the model. it's a bit sheer, but i personally found it to be fine with a nude bra. cute vintage look.",4,1,0,General,Tops,Blouses +1009,30,Disappointing,"This skirt is definitely not what i was expecting. the material is stiff and rough. the skirt is also loud. you can hear it swishing when you move, and not in a classy way. it feels like you're wearing a very long tutu. also, the pattern isn't quite as pretty in person. they must have used magic in order to make this skirt look flowy in the photos - it does not flow.",1,0,18,General,Bottoms,Skirts +643,46,Way too much fabric,"I wanted to love this jumpsuit. it looks adorable in the product photo. i am 5'5"" about 120lbs and thus was overwhelming on me. i tried everything--- pulling up the tie at the waist to create a higher line, wearing a variety of heel heights----i couldn't seem to make it work. there was just so much fabric on me! it felt like i was wearing pajamas (and not in a cute 'wear your pajamas out' way). i love the idea and the photo appears to have an adorable line and cut. on me, this jumpsuit was just",2,0,0,General,Trend,Trend +867,34,,,5,1,0,General,Tops,Knits +836,42,Even nicer in person,"Had a feeling when i saw this that it would be a great top. love the way the elasticized neck hugs tightly and has two little back buttons. the beading is elegant and subtle. the body flows nicely, not overly billowy. definitely true to size. interesting ocher color; a yellowy-green. this is one to own.",5,1,0,General,Tops,Blouses +868,33,Love the olive color,It's a soft comfy fabric... cute ruffle... may be a little on the bigger side but still super cute! very form fitting but still fits true to size imo the olive color is even more beautiful in person!,5,1,0,General,Tops,Knits +1035,56,Easy basic,"I love pilcro legging jeans (and cords!) and this pair was no exception. i didn't see much difference in the fit, and i bought my usual 27. the stretch definitely creates a lot of give, but i don't mind. i'd be hesitant to size down in the waistband, but if you usually have room and prefer a more snug fit then go ahead. washed well the first time.",4,1,0,General,Bottoms,Jeans +1080,32,"Love this color and style, just not for me!","This dress is beautiful, it just swallowed my small frame whole! the colors and design are gorgeous, just not a good fit for me, even at a 0p.",3,1,12,General Petite,Dresses,Dresses +868,53,Might want to size down,"I just got this in the mail today. it's really cute when i put it on, but it's definitely meant to be worn slightly off the shoulders like the model is showing. i was hoping i could wear it both ways, but then the v-neck becomes way too low. i would recommend sizing down unless you're bigger busted. however, the torso is cut very true to size which might make it hard for some to size down without it becoming too small. a larger bust might help to keep this from falling off the shoulders. i'm not",4,1,33,General,Tops,Knits +1084,38,,"Adorable dress, amazing fit!",5,1,0,General,Dresses,Dresses +940,31,,I was expecting a nice golden yellow color but what i received was very dull in color with greenish undertones. very disappointed. will be returning.,2,0,2,General,Tops,Sweaters +990,30,Tie waist deal breaker,"Love the print, length, and cut. but the tie waist hangs in a weird way and seemed like it would stretch out and sag after a while. sad to return it.",3,0,0,General,Bottoms,Skirts +867,36,So versatile!,"I absolutely love this cardigan! it is so soft and goes with anything. it can be dressed up or down. it is definitely my new ""go to"" for airplane travels. highly recommend!!",5,1,1,General,Tops,Knits +1080,36,"Nice fabric, poor design","This dress has a beautiful fabric, i really hated to send it back. it was just so unflattering, absolutely no shape to it. i bought a 0p, i'm 5'5"" and 117lbs and it looked like a maternity dress on me.",2,0,0,General Petite,Dresses,Dresses +868,30,If curvy...stay away!,"I had such high hopes for this shirt! i got it in both the black and moss (which is a beautiful color). however, the ruffle was just too big. i put it on and immediately felt like a circus clown. it would probably be beautiful on a woman with a more straight figure with fewer curves, but on me, it was not flattering at all.",2,0,4,General,Tops,Knits +868,86,Loved these!,"I saw online and bought in white and moss! moss is darker in person. i am 106, 5'1 but a 30f and the top fits very well. it actually minimized my chest which i love! not sure how well this would fit on small-chested ladies. not super clingy in the midsection but will look nice with pants or skirts. super happy!",5,1,8,General,Tops,Knits +940,45,3 season perfect!,"What a great purchase! love this vest. i live in pa and i see myself wearing this sweater for 3 seasons, which i love. great details, length, and knit. true to size",5,1,0,General,Tops,Sweaters +1080,34,Beautiful but too bulky in the middle,This is a beautiful dress. i ordered a size 10 to accommodate my bust (36d) which it did but the rest of the dress was too big. it was bulky in the middle area and did nothing for my shape. this would likely work best for smaller ladies.,4,1,10,General Petite,Dresses,Dresses +1008,31,"The perfect skirt for all year, every year.","To start: i'm 135 lbs, 5'7"", 34c, 28 jeans, size 4 dress -- amazing skirt for an outstanding price! incredibly lightweight; has a stretchy-jersey lining. to fit high-waisted like the model, go down 1-2 sizes. in work slacks, i wear a size 6 or 8. however, my natural waist is small. i tried on the size 2 and the size 4. i purchased the size 2, although i still wish there was a size 0 to try on. a larger size will fit lower at the waist and will bring the midi length to ankle length.",5,1,0,General Petite,Bottoms,Skirts +1035,37,Fits differently than other washes,"This wash fits differently than other pilcro jean leggings. the rise is higher and the fit is larger/bulkier through the waist and hips. i love pilcro legging jeans, so the fit difference is kind of disappointing. i recommend trying this wash on first to see if you need a smaller size. i got the same size i always get in this style and this wash is definitely not as flattering as other pairs i own.",4,1,2,General,Bottoms,Jeans +1080,42,"Beautiful fabric, runs big","Bought this dress on sale - i haven't decided if i'm going to keep it yet or not, because i'm not sure if it's flattering to my bubble butt. i normally wear a 6-8 in retailer (5'6"" 135 lbs thin limbs 38-26-38). i ordered this dress in a size 4 regular and i find the length perfect with flats or with heels. i also find the bust area, waist and hips accommodating without being tight, which usually never happens. for this current sale price, this is a gorgeous dress made with beautiful material.",4,1,0,General Petite,Dresses,Dresses +940,40,Beautiful color,I tried this on when i saw it hanging in the dressing room. i was pleasantly surprised by this piece. the color is beautiful - not too yellow - not too brown. i have not worn it yet so i'm assuming it will hold up pretty well considering my other pieces from this designer are still looking good with several wears. i bought this in a small size so it does not hang down like it does on the model. perhaps that's why i don't need a cami underneath.,4,1,0,General,Tops,Sweaters +940,51,Unique,"I'm always looking for something that is unique and can be layered. this looks just like it does on the model. you'll need a cami underneath as it is not lined. a little shorter in front than in the back but drapes nicely. styled it with black denim ankle jeans, black loafers (or boots), and a blue denim jacket. i'm 118#, 34d, 5'4"" and the s fit well.",5,1,3,General,Tops,Sweaters +687,30,A little short,Overall very pretty.,5,1,1,Initmates,Intimate,Intimates +687,25,Great item for a future bride,"I love this robe and can't wait to wear it while i'm getting ready for my upcoming wedding. the only con that i can see is that the sleeves are a bit baggy, but other than that it's perfect!",4,1,0,Initmates,Intimate,Intimates +60,25,Love the pattern,I bought this as a present and am very happy with it! the pattern is fun and i like the slouchy fit.,4,1,0,Initmates,Intimate,Lounge +1084,38,Pass if you're busty,"The print and style we're great! unfortunately, my bust unbuttons the top. there's no way i can wear this, even if i sized up.",3,0,3,General,Dresses,Dresses +940,57,Cute!,Love this sweater. i wore it to work with leggings and a long sleeved shirt underneath. it lays nicely.,5,1,1,General,Tops,Sweaters +1051,67,Perfect dressy jogger!,"These joggers are so comfortable. nice and lightweight and fabric is very soft and a bit stretchy, so they move with you. beautiful dark navy/indigo print, very subtle and blends well with many tops. perfect length (i am 5'3"", 116 lb. and purchased xs). love them!",5,1,0,General,Bottoms,Pants +1009,42,Love it,This skirt is a perfect statement piece that will work fancy cocktails and social events. it is a full skirt but not too overwhelming. perfect with a slim fitting black bodysuit. i sized up a bit and ordered an 8. waist fits well and length works with slight heel. quality is great. design is beautiful without being too much.,4,1,0,General,Bottoms,Skirts +1080,34,Goddess dress,"This dress is so beautiful it makes me feel like a goddess, lol. i'm normally a 10/12 or m/l and took a 12. i think the 10 would have worked too. everything from the colors, fit and flow of the dress is wonderful. i didn't have any problem with there being too much fabric as some of the reviews mentioned.",5,1,0,General Petite,Dresses,Dresses +1008,49,This skirt is amazing,"Love, love, love this skirt. perfect for the holidays but it can also be dressed down. pair it with gold, burgundy, black or a more casual chambray jean shirt. a great price point and i was able to grab it when it was 20% off.",5,1,0,General Petite,Bottoms,Skirts +1008,46,Eclat midi skirt,"If you can get over the fact that this skirt feels (and looks awfully similar to) the exact same fabric your drugstore halloween costumes had when you were a little kid... then, it's surprisingly fun to wear.",3,1,0,General Petite,Bottoms,Skirts +643,44,Amazing!,I can't say enough about this jumpsuit. within 1 hour of wearing this shopping i had 4 compliments from strangers. it is flattering. pretty. soft. comfortable. love love love,5,1,1,General,Trend,Trend +829,43,Cute and professional look,Purchased this top in navy blue. it is versatile. appropriate for the office and to go out. i specifically like the look with white jeans. it looks put together. the quality is good and there are several nice detsils in the design. highly recomnend it.,5,1,0,General Petite,Tops,Blouses +1008,44,Flirty and dazzling happy,"This skirt is unique yet versatile and gorgeous. everything about this skirt works: dazzle balanced out with softness and midi length. the twirly width shows off the skirt in a subtle way, and super comfortable. no petite 2 left so i purchased a regular 2 and it fits perfectly (i am 5ft2in, 26 waist, 36 hips), the hem falls about 2in. longer than shown on the model. this skirt is sold out fast, no surprise. it flatters all body types at all ages. get ready for lots of compliments!",5,1,0,General Petite,Bottoms,Skirts +868,50,Flattering and comfy!,This top is my favorite of the season! planning to order in black too.,5,1,1,General,Tops,Knits +867,52,Favorite sweater ever,"This sweater is the bomb. it's soft, flattering, and looks good with everything. i ordered a second one to have when this one gets worn out!",5,1,0,General,Tops,Knits +867,34,,"Tried on & bought in-store. so cute & flattering; the picture doesn't do it justice. great neutral piece (more beige than ivory in person). looks cute tied or untied. i'm 5'3"" and 120 lbs and the regular size s fit perfectly (not too snug, not too loose, and just long enough to cover my bum.)",4,1,5,General,Tops,Knits +1035,32,Rip favorite pair,"Lots of pairs of the pilcro serif-- and for some reason, after 5mo or less of normal wear, these have bit the dust. +i don't dry my denim and do wash on gentle cycles... this pair just doesn't seem to be too happy. began pilling after two washes, just seems to be a different blend of fabric than the others? + +super bummed and now there's no way to replace it. wamp wamp.",3,1,0,General,Bottoms,Jeans +940,44,Great for layering,"I love this sweater. it's sort of like a tunic and sort of like a vest. i am pairing it with leggings and a white long sleeve tee underneath. i'm 5'3"" 109 lbs and the xs fit very well. i love the versatility and design of this.",5,1,2,General,Tops,Sweaters +866,21,,,4,1,0,General,Tops,Knits +709,44,Excellent fit and style,These leggings run true to size. the strappy detail at the ankle is a nice touch. i especially like the quality of the material used as they are not see-through like some leggings tend to be.,5,1,0,Initmates,Intimate,Lounge +866,59,,Very cute top but it is wide and runs large. it is very flattering with skinny jeans and the color is a beautiful navy almost a hint of purple. i would consider a size down. may run on the short side for those with longer torsos.,5,1,9,General,Tops,Knits +1167,40,Great quality - runs narrow,"I love this top! it's well-made (important if you're in chlorine or salt water) and has vibrant colors. the back strap has two clasp options, so not much room for adjustment but i like this fastening method because you don't have a big bow to lay on when laying out.",5,1,0,Initmates,Intimate,Swim +942,44,Great topper piece,This sweater/jacket is great over any blouses. love the color. it looks more slightly peachy cream color that i love! goes with everything. warm. i thought it ran true to size. i ordered a small and love the way it fits. if you are looking for more of an oversized piece then you would need to size up.,5,1,0,General,Tops,Sweaters +866,39,Cute!,"I don't normally like ""lace-up"" details, but for some reason, i don't mind it on this top. it's a bit shorter than it looks on the model (and i'm not especially tall). the fabric is nice - not too heavy, not too lightweight. great for fall.",4,1,0,General,Tops,Knits +866,49,The product looks great on,Love this top. fits me perfect. i am bigger on top and received many compliments in this shirt.,5,1,0,General,Tops,Knits +1047,57,,"I went to the store to try on a jumpsuit and ended up with these instead. while the jumpsuit was really cute, i thought these would be more versatile. as far as i can tell they are the same style as the pradollano tapered loungers by hei hei. these were so cute and comfy i bought both. they can easily be dressed up with a jacket and heels or worn casually with a tee and sandals. i think these are much cuter in person than online. there is a little red design in the pants which is hard to see in",5,1,10,General Petite,Bottoms,Pants +655,32,"Cute, poorly made","Love the fit of this top, love the design. it does fit a bit small which was a pleasant surprise considering the sizes don't go as small as i usually have to. i got the smallest size and its pretty tight. its a revealing/low cut top, which is great for minimal tan lines. negative- threads are coming out all over after one wear. but i love it so much i will probably order again once it falls apart.. not so great considering the price though.",4,1,0,Initmates,Intimate,Swim +942,39,Beautiful sweater,"My new favorite. i purchased the ivory in a medium, and the lilac in a large when it went on sale (medium was already sold out). i'm 5'7"" and about 125 pounds, 34c give or take. the medium fits great, and i found the large only slightly bigger, but it does not look too big. i usually wear a small or medium in most retailer sweaters. +as was previously noted, the back is cut higher than pictured. i actually like this, as it gives the sweater a unique look. i tend to layer with a button down for the",5,1,0,General,Tops,Sweaters +1068,39,Love!,"So comfortable, fit just right, flattering, beautiful neutral color, but different, love the embroidery, nothing bad about it. that being said, i haven't worn them the whole day, i suspect they will stretch a bit. also have not washed them, so i hope the color stays the nice rich dark gray turquoise, the length is perfect too, i ordered the petite and they fit as on the model (for a change, i have pretty short legs). (115 lbs, 26.5 in waist, muscular legs)",5,1,4,General Petite,Bottoms,Pants +1068,53,Love love love,"Super cute, well made, great embroidery. waist runs big.",5,1,1,General Petite,Bottoms,Pants +866,37,Pretty top,"This top runs large. i am usually a medium in retailer but when i read the first review, i ordered a small, and it was the right decision. i also agree that this top might be short for someone with long torso. love the back detail and the print and color is really nice!",5,1,8,General,Tops,Knits +861,41,Overpriced and see-through,"This style is right up my alley and i was excited to receive it. however, it is seriously overpriced. i ordered the white and the material is thin and see-through. the small was even a bit roomy (5'7"", 140lbs, 32dd). going back unfortunately.",2,0,5,General Petite,Tops,Knits +866,36,Not what i expected,"This top looked so cute in the picture, but unfortunately doesn't live up to it! the one i received, actually has the print shown in the photo on the inside of the shirt. it makes it much darker, and boring. the shirt itself is on the short side, and would've looked better if it hit lower on the hips, there's just too much fabric for it to land higher than that.",2,0,1,General,Tops,Knits +1081,55,Grecian style,"Love this dress! the light fabric quality, color, and design all added to the grecian goddess feeling! my usual 0 fit perfectly, giving me a great shape and the length is great!",5,1,0,General Petite,Dresses,Dresses +1080,48,,"This dress has rich color, excellent quality fabric and wonderful style. you can wear it now for fall with boots and jean jacket or in the summer for a great sun dress.",5,1,0,General Petite,Dresses,Dresses +866,56,Nice and flowy,"Definitely order down a size. i am almost always an xl (big chest, broad shoulders) but the l in this fits me perfectly. well worth the sale price, a fun boho transition piece! +it is a ""reverse print"" so the inside is brighter than the outside, but i like the blurred paisley print--it's subtle. + +the back detail is great and very flattering. + +it is quite full and flowy, but in a flattering way, i think. just restrained enough.",4,1,1,General,Tops,Knits +866,53,Great features on this boho too,"Love the muted pattern in the blue and spots of gray, front and back. i wore this with my gray legging/pants. the pleats allow for a relaxed fit; very comfortable over all.",5,1,1,General,Tops,Knits +1167,44,Only good for small busted ladies,Cup size is really small for a medium. no way to adjust the back strap. ended up giving it to my daughter. cute but so poorly executed.,2,0,2,Initmates,Intimate,Swim +1051,48,"Stylish, but run a little large","I'd say these are exactly as-pictured and i'm happy with them. they run a little big in the waist; i most often wear xspetite in retailer sizes, and can often wear xs regular but these are a bit loose (i have a 26"" waist, 34"" hips). the drawstring tie solves that of course but it's only in the front, it doesn't go all the way around the waist, the rest is elastic. i'd also say these are high-rise, or long in the crotch (but i'm only 5'3"" so they're probably mid-rise on tall people). i have them hi",4,1,7,General,Bottoms,Pants +866,40,,,5,1,0,General,Tops,Knits +866,28,Perfect fit,Love this top!! fits perfectly & it's lovely,5,1,0,General,Tops,Knits +866,52,Flowy and comfy,"This top is very flattering on my torso (my ""problem area""). the sleeves are adorable and i love the navy with purple tints and the touches of gray. i would say this product could work on most body types. it's very comfortable and i could wear it for a long time. i would suggest considering a smaller size than one's normal size, but i would look into both sizes and see which one you prefer. i ended up getting my regular size because i just liked the way it looked better.",4,1,3,General,Tops,Knits +942,33,"Pretty, ordered in wrong size","I ordered this online in the cream color and because some of the reviews mentioned the shorter back, i went with a medium, but that ended up running too big. i typically wear between a 4 and a 6 / small and medium so i'm always on the fence about which size to get. i often order both online and return the one that doesn't fit as well, so i wish i had this time too! the detail on the front is super cute and i didn't even mind the plainer back, but the sleeves went well past my wrist and i felt li",3,1,1,General,Tops,Sweaters +866,38,"Very pretty, didn't like the pattern","I wanted to like this top so badly because it has so many interesting pieces to the blouse. ultimately i didn't keep this because of the bell sleeves, and the pattern going across the body just wasn't flattering on my full figure. i went down a size to help reduce the amount of fabric draping in the back, but it didn't make up for the pattern that i just didn't like. if you are interested in this blouse, i recommend it because it might work out for someone with a different figure than mine",4,1,2,General,Tops,Knits +1047,41,Beautiful joggers,"These joggers are super cute and comfortable in addition to being stylish. they have beautiful colors and design. if these were presented in other colors, i would buy those as well. 5,5 135. small fit perfectly.",5,1,4,General Petite,Bottoms,Pants +1047,39,Perfect summer pants,"Recently bought these on sale, though they were still a bit in the expensive side. i'm 5'2"" and typically a size 4, the xs fits perfectly. the pants fall to my ankle and are not cropped as they are on the model, but i'm fine with that. the piping on the seams helps them not seem too much like pajamas, and i was particularly pleased that the crotch was not too baggy, as sometimes happens with this style.",5,1,1,General Petite,Bottoms,Pants +942,49,"Great sweater, not crazy about the collar","I didn't really notice the collar when i ordered it on line and i'm not really liking it. it's the rough, unstitched thing they like to do sometimes and it just makes it look slightly more casual and well, rough around the edges. it's a nicely cut, great fitting sweater though so i'll be looking for some scarves!",3,0,0,General,Tops,Sweaters +1167,45,A lil skimpy,"I love the design of this and the pattern! it's comfy but a bit too much side boob for actually swimming. i like a bit more coverage, the front has great coverage but on the side... whoa!!!",3,1,0,Initmates,Intimate,Swim +1167,39,Small cup sizes for frame,The top of this suit was not proportioned well. i am normally a 34c so with swimsuits i vary between a small or a medium. the cup size on this was very small for a medium. the band to hook in the back was almost too big. there was no way to adjust the band in the back and the cups were clearly too small for a c cup. the print was darling but unfortunately this will have to go back.,2,0,4,Initmates,Intimate,Swim +709,61,"Great leggings, but may not be for petites.","I purchased these leggings to match the top pictured with the outfit. i love the top, and i wanted to love the leggings since the combination of the top with the leggings has fantastic style. alas, the straps around the ankle got bunched because my legs are just not long enough. even though these are very comfortable leggings, i will be returning the leggings due to the length issue.",5,1,0,Initmates,Intimate,Lounge +866,55,Not boring,A little treat for me. i work from home and am sick of all my boring tops. this is a comfy little updo number.,4,1,1,General,Tops,Knits +1068,52,Love the embroidery!,"These wanderer pants are my go to. i love the patch pocket styling. they are true to size, but seem to stretch, so buy a size down. trust me, it will work.",5,1,0,General Petite,Bottoms,Pants +866,46,This was quite short,"As much as i loved the fabric and lace on this top, the cut of this blouse was not flattering for my body shape. also i thought it was shorter than it looked online. i had to return this piece.",3,0,0,General,Tops,Knits +942,53,Long sleeves,"I ordered this sweater in green in petite large. the color and knit is beautiful and the shoulders and body fit comfortably; however, the sleeves were very long for a petite. i roll them, and it looks okay but would have rather had a normal petite length sleeve.",3,1,0,General,Tops,Sweaters +1051,57,Versitile!,"I was not sure if they would be flattering with the waistband, but i love them. they feel wonderful, yet they are so light. perfect for warm weather. the print takes them from day to night.",5,1,1,General,Bottoms,Pants +942,34,Not ivory,This sweater i bought to go with a navy dress. it is not ivory. it is sortof a blush color???? not at all what i had in mind. the sweater itself is pretty. the back is shorter as someone else described which looks slightly awkward when wearing it. definite return. :(,2,0,1,General,Tops,Sweaters +861,37,Large loose thin flutter tee,"This tee is cute and unusual and i am sure i will wear it pretty often. i do wish i had ordered a size smaller than my normal large, but i am waiting for it to shrink in the wash a bit. the material is thin and it certainly doesn't feel like it is worth the price tag. i got it on sale and still think it is only worth about 20$.",4,1,1,General Petite,Tops,Knits +942,48,Made me look top heavy,"This didn't work for me. it looks better unzipped. the piece made me look extremely top heavy, and i am by no means overweight, but i do have a larger chest on a small frame (36c, 5 feet, 115). honestly, it just made me look fat. the design is cute, but this is going back..",2,0,1,General,Tops,Sweaters +1047,53,"Different, cute","I'm 5'8, 130 and a small fits nice. these are different with the silky fabric, pattern and piping - busy but still classy. it is hard to match with a shirt as you need a shorter top so you don't lose too much of the pant's unique design.",4,1,9,General Petite,Bottoms,Pants +1075,48,So sad,"I love the colors. however, $200 is a lot to pay for a small piece of fabric , no lining what so ever. the fabric is very thin. you will need a slip. looks just like a cover-up. going back.",1,0,7,General,Dresses,Dresses +1083,32,Beautiful detail,"I was a bit nervous ordering this dress because it had so much going on, but i have to say, it's beautiful on! it's stretchy and super comfortable as well. i usually struggle with tight pencil like dresses, but this is stretchy and super comfy! no riding up on me! i cannot say enough good things about this dress, it's just so flattering and i get so many compliments when i wear it.",5,1,0,General,Dresses,Dresses +1015,24,Meh,"Skirt was too big in the wiast and too much fabric. was not flattering, and generally not cute enough to warrent spending 50$ to get it tailored. usual size, oop felt atleast 2 sizes too large. the pattern on the skirt, and the nuetral color is very nice. if you can find one that fits, would be a nice 3 season skirt!",3,0,5,General Petite,Bottoms,Skirts +1083,72,Stretch in all the right places,"This dress is more beautiful in person. +this dress fits well on top for my broad shoulders, chest(40c)and through my straight hips. note. the side bottom panels are very stretchy. i will have it tailored slimmer. so if you are bottom curvy, this dress is awesome!",5,1,2,General,Dresses,Dresses +1086,33,Runs small!!,"I was in trouble when i saw this dress in the new arrivals section this month! it's one of those dresses i had to have for the holidays. i didn't want to risk it not fitting so i ordered my usual size 6 and also a size up, 8. (5'6"", 135lbs, size 6) well the 6 was entirely to tight, i couldn't even zip past my rib cage. the 8 went on, but it was very body con looking! hugged every curve! this might be the look some might be going for, but not me!! i'm so disappointed that i can't have the dress f",5,1,10,General,Dresses,Dresses +860,31,Happened to like,"I happened to really like this top. it does show some back, but looked cute with high waisted jeans. i happened to like the raw hemline and found it quite comfortable and cute. i am 5'5"", 135lbs, 34c, and the size small fit well, though i could have gone with a medium for a much looser look.",4,1,2,General Petite,Tops,Knits +1083,26,,"I really wanted to like this since i've purchased previous byron lars dresses and have never not been complimented on them. however, the picture on this one is misleading. the colors are extremely bright, which on my pale skin makes me look washed out. for example, the border on the collar is actually more hot pink where in the picture here it appears almost white. the brightness and business just didn't work on me. that being said it still fit like a glove. 5'11 and 145 pounds and the size 4 wa",4,1,4,General,Dresses,Dresses +1015,39,"Ok, but not awesome","There comes a point where i have to draw the line with things i purchase... i ordered this as i didn't have a black skirt, but thought ti wasn't special enough, don't get me wrong, it fits nicely, and is comfortable, but i was wowed. 0p or xs p fir perfectly, 26.5 in waist and 115 lbs. if you want ta nice casual skirt, the sale price is a good fir for the skirt, just wasn't enough for me :-)",3,1,0,General Petite,Bottoms,Skirts +1081,40,So pretty but fit is off,"This dress is everything i hoped it would be--bright, colorful, quality jacquard, classic silhouette. unfortunately it runs small up top on the bust and i couldn't even zip it up all the way. returning :(",3,0,4,General Petite,Dresses,Dresses +1083,52,Modern vintage,"Every byron lars dress that i have is definitely beyond ordinary and this one is no exception. i love the petals that adorn the front. my dress was back ordered for a couple of months but it was well worth the wait. i wore it recently and received compliments galore. if you're undecided about this one, go for it!!! it's a winner.",5,1,2,General,Dresses,Dresses +1083,29,A showstopper!,"I bought this dress on a whim one day, even though i wasn't sure where i would wear it, but i just had to have it. this dress fits beautifully, and is very flattering. i am 5'9 and typically a size 14 with large hips, behind, and a smaller waist. the 12 fit me very well--snugged in all the right places and just right everywhere else. i ended up wearing this to a benefit and i received many compliments. go for it!",5,1,0,General,Dresses,Dresses +1083,43,Love love love!,"I have the ""charisma sheath"" by the same designer and love it so much i thought i'd try this one. looks so much better in person than in the picture. it's extremely flattering on my curve less frame. whenever i wear it to work, i get stopped and asked where i got it. great dress, you'll love it more in real life!",5,1,0,General,Dresses,Dresses +1083,41,Weird bulge in the back zipper?,"I just scoured the other reviews to see if anyone mentioned this, so maybe i got a defected item, but on my size 6 dress (eagerly awaited), there is a big bulge on the upper back. my husband suggested it was designed for a hunchback - that's really the only explanation. the back seems tall in general, like 2-3 inches above a normal neckline. i tried pulling it down a bit, spreading my shoulders out, folding the top over - all with minimal results. i have a size 4 coming too (20% off discount arr",4,1,1,General,Dresses,Dresses +1083,38,Too loose on top,"I was planning to order it online but someone returned it to my local store and i tried it on.............. my regular size is 6. i have another byron lars dress size 6 that fits me like a glove. this dress fits beautifully from the waist down. the top part is very loose and at least a size too big. very disappointing. i am not sure if it is just me or this particular dress, but it was not flattering. :(",4,0,1,General,Dresses,Dresses +1015,34,Charming and basic,"I got the tan one. my friend got the same skirt. she's tiny, i'm not (i have hips). we both got a size 6, and it fit us both. it just sits higher on my waist than it does on hers (above my navel - not above hers). i do have a small waist. the skirt has a lot of movement, but isn't poofy. it is not see-through. it has that retailer charm, where it looks pretty basic but is really flattering and charming. a new wardrobe staple. can dress it up or down. only problem is the zipper in the back -",4,1,0,General Petite,Bottoms,Skirts +1083,36,Beautiful unique dress,"I love this dress. the pattern/print is very different than most of the dresses i own. i'm 5'1"" 106lbs and the 0p fit perfectly. it's a delicate dress. its very fitted in the skirt portion. the top is more of a knit fabric that has some give to it.",5,1,5,General,Dresses,Dresses +1083,63,Amazing style,"I wore this to my retirement party; i wanted something special for a once in a lifetime event. i wanted something that was dressy, while also being unique so i wouldn't look like everyone else. almost without exception, from my boyfriend to everyone i talked with, mentioned my dress. the design is so unique, making me feel even more special on my special day. it's beautiful, yet comfortable. the stretchy sides made it feel snug without pinching or discomfort. really a fun dress to wear. i'm sure",5,1,0,General,Dresses,Dresses +1086,48,So disappointed.,"I was very shocked to receive this dress with a rusty zipper, looks like crusty white rust . see attached pictures. the dress fabric is very nice and i did try it on and it is a very nice fit, lined with a little stretch but my gosh what a cheap poor quality zipper that looks like it was old and exposed to moisture because the metal parts have a white crusty substance! retailer you really need to check your merchandise before sending to your loyal customers. lately the quality has been declining a",1,0,3,General,Dresses,Dresses +1083,61,"After a tailor fixes the back, it'll be great","I have no need for this dress but had to have it. i read the reviews and when there was a sale weekend, pulled the trigger on it. just as reviewers noted, it's very flattering. from the front. and, just as another reviewer noted, the back torso is widely misshapen, creating a hunchback look. but i figured a good tailor could make it right. it's going to cost just under 2 jacksons to do it. which is about how much the discount was for the sale. but i expect to have this dress for years and can't",4,1,1,General,Dresses,Dresses +1086,39,Pretty plaid,"I'm so glad i saw this pretty dress on sale as my eye overlooked when it was introduced. i have to agree with the previous reviewer that the zipper on this adorable dress is yucky to grab and zip. i also wish there were pockets but it's not a deal breaker. perfect dress for autumn/winter especially with a thin layer to wear underneath as the armholes are cut a bit large, showing my side boob and bra. i had to go two sizes up because 10p was sold out. skirt profile looks a little too wide, so i'l",4,1,1,General,Dresses,Dresses +1083,40,,,4,1,0,General,Dresses,Dresses +868,54,Cute,Cute design for a casual top. however it was a little snug on the bust for a medium. i returned it,3,1,0,General Petite,Tops,Knits +1015,44,Nice basic skirt,"It's a pretty, low-key, no fuss skirt. i prefer the ivory color because the details are more visible (there are different designs in the same hue). the zipper is very thick and sturdy, a bonus. size 2 regular fit me well, the hem falls right above my knees (i'm 5'2"", 26 waist, 36 hips), perfect for work and play. a touch of linen keeps the fabric cool for summer, but it doesn't wrinkle. for the price and the name like ""thera,"" i expect more flair to match its mediterranean name. for those who do",4,1,9,General Petite,Bottoms,Skirts +1015,63,Nice summer skirt,"I usually wear an 8, which wasn't available, and sized up to the 10 which fit just fine as there is no stretch and it's a set-in waist band. the fabric is pretty, the skirt is fully lined, the length is not too short, and the only thing i don't like is the big bronzey toothed zipper - it looks ok on the beige version, but on the black it stands out. + +it's perfect for summer but i could also see wearing the black version during holidays.",3,1,0,General Petite,Bottoms,Skirts +1079,42,Pretty dress,I got the white with black print and it is nice material and a pretty dress. i just would have preferred a better cut but overall pretty work dress .,4,1,0,General Petite,Dresses,Dresses +1079,72,Almost great dress,"I really like this dress. buying it during retailer weekend helps me to like it more. the fabric is lovely. i like the popover styling. its slightly boxy, but not oversized. the sleeves do puff a little bit and i wish they didn't, but that's not a deal breaker. the shoulders are cut a little small, so it can be a challenge to take off. i usually wear a medium or an 8 in most retailer brands. i ordered this in a medium and it fit true to size.",4,1,3,General Petite,Dresses,Dresses +1062,42,Perfect summer staple,"This is my first romper and i am in love. so comfortable and easily dressed up or down. i am usually an xs, small, or petite small in retailer brands. the xs worked best for me. the petite small was too big. i am 5'2"" and the length of the xs is perfect ankle length. i was nervous to put it in the washer on delicate cycle but it came out perfectly.",5,1,3,General,Bottoms,Pants +1079,49,,,3,0,0,General Petite,Dresses,Dresses +1062,41,Unexpected surprise,"I'm a big fan of the ""idea of"" jumpsuits and rompers, but so often they go wrong. this one was an unexpected surprise. i'm 5'10"", size 8-10/medium, and the medium fit well and was actually super flattering. the waist is cinched just so that it's very slimming. the roll tab cuff is a cute touch and is probably 2"" higher on me than the model, but adorable none the less. great quality too. love!",5,1,0,General,Bottoms,Pants +1079,41,Delicate fabric and easy design,"The cotton silk blend fabric is beautiful and breathes well. i wouldn't have given this dress a thought based on the online pics, but in person i found it femine, pretty and comfortable for an outdoor garden party i'm attending. it isn't too short when i sit or bend over and with some funky, colorful jewelry i really liked it. i enjoy the slightly puffy, gathered shoulder. i did size down so the dress wouldn't be too blowzy but mostly b/c i wanted a tighter fit and it still hides my belly.",4,1,3,General Petite,Dresses,Dresses +1079,23,,"There isn't a whole lot that i did like about this dress. the shoulders have large poufs, the fabric isn't very soft, and it's not flattering. maybe with a belt i could be tempted, but i wasn't too fond of the dress.",2,0,13,General Petite,Dresses,Dresses +1062,19,Perfect jumpsuit!,"I have been looking for the perfect jumpsuit and this is it! i am 5'7.5"" and 122 lbs and the small is a perfect fit! the fabric is super comfy, you can wear a regular bra (yay!) and it can be dressed up or down! i am looking forward to taking this on my european vacation in august! the blue is a very pretty blue but i opted for the black!",5,1,3,General,Bottoms,Pants +1079,40,Love this beautiful dress!,I almost always return dresses after trying them at home but not this one! i love it and can't wait to get it back from the dry cleaner. the shoulders are really stylish and the dress is super comfortable. it has pockets which is also a bonus. i told my husband that i want to bring it to a seamstress and have it duplicated in another fabric because i love it so much.,5,1,1,General Petite,Dresses,Dresses +1079,58,Love this dress,I was returning an in line order from same designer and saw this dress. i love it. much prettier in person. this will get well worn by me!,5,1,5,General Petite,Dresses,Dresses +1062,47,Fabulous easy jumpsuit,"This is the third jumpsuit i've ordered and written a review for this season. this jumpsuit is the best by far. i bought it in my usual size small (32d--31-38) and it fit me, even though i'm tall (5' 8.5""). i would say it looks much the same as it does on the model, maybe an inch shorter in the legs on me. love that the legs are rolled up by a tab and a snap--no uncomfortable elasticized legs. i am more legs than long torso (i usually wear a 33"" inseam with flats). the jumpsuit is very easy to g",5,1,14,General,Bottoms,Pants +1079,39,Disappointing,"This is such beautiful material, but the sleeves at the shoulders are terrible -- the gathered material makes it look like i'm wearing shoulder pads. that structured element compared to the rest of the dress (relatively unstructured) just looks ridiculous. i was so looking forward to this dress, and now it's going back.",3,0,22,General Petite,Dresses,Dresses +1062,41,,"This runs tts - maybe a little on the large side. i typically wear between a small and a medium (or 6 and 8), and the small was a perfect fit. this is my second jumpsuit and i always worry about how easy they are to pull down for restroom breaks. (i drink a ton of water) this one is relatively easy - it has a button at the back neck that you have to unfasten and it's super easy and not awkward at all. i love how you can dress this up with heels for a night out or pair with sandals for a more cau",5,1,11,General,Bottoms,Pants +1079,32,Oversized pillowcase,"I'm so disappointed this dress didn't work out! i ordered the size medium, post baby i'm a solid dress size 6 or 8 depending on the designer. +the cashier was laughing with me how ridiculously huge this garment was when i held it up. + +also the length was super long, description says 35"" which would be mid thigh for me, but this thing hit me mid knee. also, like the previous review the shoulders are tented and poofy. so bizarre and the cut reminds me of a maternity dress, but the shoulders def",1,0,6,General Petite,Dresses,Dresses +1079,43,Beautiful spring dress,"Cute spring dress. fit can be a little challenging if you have a full bust. however, print is so beautiful. the material is soft. i liked the puff in the sleeve. it made the look more unique.",4,1,3,General Petite,Dresses,Dresses +1087,55,So beautiful but impossible,"Gorgeous dress, but so low in front and in back...i couldn't figure out how to pull it off without a cardigan/sweater. beautiful fabric and color.",3,0,0,General Petite,Dresses,Dresses +1062,25,,I love this jumpsuit! it runs a little large but still works for me. it makes it super comfy and a great piece for every day!,4,1,0,General,Bottoms,Pants +1027,44,Fun pants,These are such fun pants. it's a heavier denim without being so stiff. they run tts. i got my usual size 26 & they fit comfortably. i haven't washed them yet but once i do i typically wash in cold gentle cycle & hang dry.,5,1,0,General,Bottoms,Jeans +749,34,Beautiful,"I've never worn a romper before but decided to give this one a try because i'm loving the colors/pattern. i'm so glad i did! it's even cuter on and very flattering! my only complaint is the buttons. i wish it was easier to remove and put on especially since this is a romper afterall. still, this is a beautiful piece!",5,1,0,General,Bottoms,Shorts +1079,38,Strange fit...,"Strange fit if you have a short torso. i ordered a medium petite and the drop waist looked strange, so i tried using a belt and it bunched up. returned the dress. why should a nice simple dress like this create such hard work?!",3,1,0,General Petite,Dresses,Dresses +749,42,Fabric great - difficult to put on,"I know rompers typically aren&#39;t the easiest and while i loved this fabric this was a pain to put on no zipper, etc. and the buttons are tiny and since the fabric doesnt stretch it is difficult to even try on. the length of the shorts was great and the fit was just ok all in all i don&#39;t think it is worth the price.",3,0,0,General,Bottoms,Shorts +1079,55,So close to the perfect spring dress!,"This was exactly what i was looking for: a spring dress i could wear while it was still cool out. loved the colors, pattern, and the fact that it could hide a belly bulge. but i got it in a petite small, and i was swimming in it. i got it in an xs, and the body of it was just right, but the bust was so tight i nearly ripped it trying to climb out (and i'm a barely an a cup). i don't normally have this problem with dresses, but in this case the top and bottom half of the dress felt like they were",3,0,0,General Petite,Dresses,Dresses +1079,37,"Cute, feminine dress","I really like this dress. it is cute, but not too frilly. i purchased in the store and they only had a petite (i am 5'6"", so not a petite), but it fit - a little short but not too crazy. can be dressed up or down. the material and the print are really lovely.",4,1,0,General Petite,Dresses,Dresses +749,38,Perfect for a socal thanksgiving,Like the other reviewer said it's hard to get on and i had to size down like i often do at retailer. but it's so pretty and it's not too short like most rompers. we host thanksgiving every year and i'm so excited to find an alternative to a dress/pants so i can work & cook in style.,5,1,0,General,Bottoms,Shorts +1094,57,Great dress,"The fabric is a nice weight jersey. i prefer to wear the dress backwards as the back of the dress has a moderate v and the round neck (which is actually the front of the dress) makes for a very flattering back. the skirt part of the dress is full but the jersey fabric falls in such a way that does not cause the silhouette to look ""hippy"". this is not a dress that fits close to the body through the torso, so if you're looking for that you might consider going down a size.",4,1,32,General,Dresses,Dresses +1094,44,,The fabric making this dress is great quality- heavyweight and so soft against the skin. the design is near perfect with an extraordinarily flattering silhouette that hangs just right from the hips with poof or flare. the fateful flaw is in the neckline; a broad boat shape that looks awkward couples with a corset-like torso that acts as a push up bra. not for larger busted woman (34d here) and certainly not suitable for work.,4,1,1,General,Dresses,Dresses +1094,27,Compliments all day long,"Absolutely love this dress! i ended up wearing it backwards to work for a more modest neckline, but flipped it around for an evening night out. can't recommend it enough - two of my colleagues ordered it that day.",5,1,0,General,Dresses,Dresses +1094,34,"Runs small in waist, sleeves and big in shoulders","This dress felt small in torso and waist and suffocating in sleeves ( i do have average athletic arms). but the shoulders were cut so wide that one side was falling off, as i fix, one shoulder, another will slide down. +the material is nice but since it is not lined, it feels inexpensive, disposable.",3,0,5,General,Dresses,Dresses +1094,25,Buy this dress!,"I thought this dress looked cute online and was excited to try it on at my local retailer. it fits so well and is very flattering! i really like the material. + +the only thing for me is that i have long arms so the sleeves have to get pushed up, but it looks like that's how it's supposed to be.",5,1,0,General,Dresses,Dresses +1094,29,Gorgeous dress!,"I love the look of this dress when it's on. the only issue i have with it is that the inside of the dress is white, which shows through on the chest slightly, but it's such a pretty dress and such an overall great fit, that i'm keeping it anyway!",5,1,0,General,Dresses,Dresses +1028,42,Odd back pockets,"I have several pairs of coh and love them all. when i saw these go on sale in my size i quickly purchased them. however, when i tried them on at home and looked in the mirror, i was pretty shocked that the back pockets were extremely long. meaning, they go well below your butt cheeks (like 3""# which means they look like they are sitting too low on your body-and they aren't they are actually i little higher waisted than most coh! + +i thought perhaps it was my perception that day, so i waited an",3,0,0,General,Bottoms,Jeans +1094,28,I got lost in this dress,"I was very excited when this dress arrived in the mail. the fabric is so comfortable, but the print was overwhelming. it is also very tight on the top and i got lost in the fabric at the bottom. i had to return it.",3,0,0,General,Dresses,Dresses +1094,56,Unexpected surprise!,"I did not intend on buying this dress, as i had taken two others that i had seen on-line into the dressing room. i actually saw the black version of this dress first, and was a bit disappointed that it wasn't available in my size. so, i thought i would try this on just for size. i was totally shocked as to how cute it looked on! i had taken both the xs and the s into the dressing room. the xs was very tight fitting in the arms and chest. i am very small busted, and normally wear a xs in tops and",5,1,16,General,Dresses,Dresses +1094,35,Runs a little big for hd,"Agree with other reviewers : this dress is surprisingly nice weight/quality fabric. it's also very swingy. i find i am usually a size 10 in hd in paris items (m in deletta and s/m in meadow rue, for comparison) since i'm a 34d i find hd in paris items to leave too little room for larger busts so i size up. in this dress i'm going to try for the m, since the l i ordered was too big, the swingyness leaves lots of room if you are an hourglass shape and the sleeves were roomy without being too big.",4,1,0,General,Dresses,Dresses +936,58,Adorable! but sheds like crazy,"I was so so excited to get this sweater in the mail. unfortunately, the sweater is lined with the same material (very soft and warm btw) as the polka dots, which sheds like crazy. i wore a white tshirt under this for the first time, and my shirt was covered in black fuzz by the end of the day. so much so that i was gathering balls of it to be thrown away. very disappointed. a lint roller can't even clean up the tshirt. + +in terms of sizing, this fits tts, i normally wear a l or xl, got this in an",2,0,6,General,Tops,Sweaters +1094,56,"Nicely made, colorful","Well made dress, but too much fabric for my taste. it lays a little heavy on the body & does not give a slimming affect. the colors are vibrant & pretty, but the dress is too long, as well. as other reviewers have said, the front is too low cut, but turn it around and it looks & feels better. didn't work for me, sadly, i'll be returning it.",2,0,0,General,Dresses,Dresses +400,34,Not for long torsos,"I adored this suit - the style, the colors, the thick quality of the fabric...but unfortunately the bottom seams cut into my groin and backside so much, it was practically painful! i'm 5'7', 128 lbs, and usually wear a size small, but was advised to size up. even with the medium i tried on, everything fit well but the length, though i've never thought i had a long torso. sizing up to a large would make the bust way to large for my small b chest. was so sad to return this suit!",3,0,1,Initmates,Intimate,Swim +1094,32,,Very comfy! can wear the dress both ways! the front is a deep swoop neck cut. the back is a v-neck cut. i flipped the dress around to the v-neck was more flattering on me due to having a smaller chest. got an size 4.,5,1,0,General,Dresses,Dresses +1094,29,"Not for me, but nice in general","The material of this dress is really thick and substantial. very soft and it has good movement. the cut was not quire right for my body, unfortunately. but on the right person, this would be very nice. i think a lot of different body types would look great in this dress, depending on where the waist hits etc.",4,1,0,General,Dresses,Dresses +1094,48,Get this dress before it's gone!,"The material is a medium weight jersey knit that is slightly thicker so it provides enough coverage and support to be flattering without being bulky. i think this dress is true-to-size, or maybe runs a little bit big, but only by a little bit. i bought a medium and am a size 8 in tops and 10 in pants. the dress hugs nicely on the upper body (arms, chest, ribs) and flares just a little bit on the hips/tummy/butt area. it is forgiving of little bumps or lumps. the scoop neckline is a bit lower tha",5,1,0,General,Dresses,Dresses +1094,57,Great style and colors,I am five four and one hundred and twenty pounds and the small fits me perfectly with enough room in the arms and chest. i am a 34c. the red is gorgeous and sweet. got it on line sale and worth it,5,1,0,General,Dresses,Dresses +1094,30,Beautiful colors,"I love the overall look and feel of the dress. my only complaint is that it was shorter and lower cut in person than it looked on the model and i'm not tall. i ordered a small and i'm 5""4 130 lbs bottom heavy. the skirt is perfectly flowy and hides my problem areas really well; however, i will need to wear a camisole with it to hide cleavage that will show otherwise.",4,1,0,General,Dresses,Dresses +1094,62,,,4,1,0,General,Dresses,Dresses +1094,27,Fun work/weekend dress,"I bought this dress in both the red and black motifs and love them both. i'm 5'7"" and usually a medium, but i found the medium to run a little larger than expected. it's fine if you want the dress to hang looser on your body, otherwise, consider trying it a size down.",5,1,1,General,Dresses,Dresses +1094,31,,"Nice, easy to wear dress!",4,1,0,General,Dresses,Dresses +1094,41,Broad shouldered,"I love simple pull-on jersey dresses and so i had to try this one. unfortunately, it did not work out. fit is tts, i liked the fabric which is soft, silky yet with some weight to it, and i appreciated the thoughtful construction with multiple well placed darts in the chest. the skirt is lovely, swingy but not too full, hangs well. what stopped me from purchasing it is the fit in the shoulders, it was too broad for me and gave the dress an overall awkward shape. the neckline was also a little too",4,0,15,General,Dresses,Dresses +1094,42,Flattering and fun,The dress is very comfortable and the fit is very flattering. i really like the colors and the design. the only con is that it isn't lined.,4,1,1,General,Dresses,Dresses +906,37,,"Rarely do i find tops that fit similar to the model in the picture. my body type is no comparison. i am 5'5"" and about 170# with 30"" waist. this sweater in a large fit perfectly where the back lining and ruffle fell right at the top of my bottom which was very flattering. not to short and not long over bottom. just right. bought in cream and wish i would have bought in both colors...........",5,1,0,General Petite,Tops,Fine gauge +1094,30,Great!!!!,"I purchased this dress in the raspberry for my best friend's bridal shower and it was such a hit! i got it for the $60 sale price with the additional 40% off sale items that retailer loves so much- it came to $41! i paired it with a chunky gold necklace and it was adorable! so many compliments! i'm typically a medium through and through and this fit me true to size as well. 5'6"", between 135-140lbs. the cut of the dress fit me perfectly and the material is amazing. i'd definitely purchase this!",5,1,0,General,Dresses,Dresses +1094,27,"Cute, easy dress","Cute, easy to wear dress. personally i think it looks better with a belt, or something to accentuate the waist. otherwise it's a lot of fabric in the middle. i didn't think the top was too low as others have mentioned. though, it is possible to wear backwards (with a v neck front) if that bothered you. nice length, long enough for work.",4,1,0,General,Dresses,Dresses +400,31,Seea and be seen!,"I discovered seea bathing suits last year and fell in love. i currently own two - the hermosa surf suit and the . seea zuma. for reference: i am 5'7"", 135 pounds, 34c, 28 waist. dress size 4-6. pants 6-8. jeans 28. if you have questions about sizing, there is a great reference on seea's website on how to size. if you are taller than the reference sizing they provide, but still the same measurements as another size mentioned, they suggest sizing up as the suits are typically made for surfing/padd",5,1,12,Initmates,Intimate,Swim +1094,33,Too large,"The dress is too big. i got size 4, after checking the measurements chart (for reference: 5'7"", 125 lb). it is too wide, not as fitted as in the picture. the cut is too deep (might work better for a bustier lady, but looks pathetic on me). + +the pattern is too bright, much brighter that in the picture (i got red pattern). it's not that the photos represent the colors inaccurately, it's just... the colors are much more vibrant in real life. + +the material is heavier than i expected.",3,0,0,General,Dresses,Dresses +1094,60,Love this dress!,"This is such a cute dress! the skirt is very full but does not add visual weight to those of us who already have enough actual weight. i ordered the black/beige print and the fabric is beautiful. it really drapes and hangs nicely. because there is so much fabric, i don't think this dress needs a lining. it seems to wash and hang dry well. i'm 5'4"", about 160 lbs. i like the way the medium fit. the length was slightly above the knee, which was ok with me (i'm nearly 60.) all in all, i can see mys",5,1,0,General,Dresses,Dresses +1094,29,Pretty,"The fabric is great and the cut is flattering. i have dds, so it pulls a little in the middle. you can just cut from the inside to release the pulling thread.",4,1,1,General,Dresses,Dresses +1094,41,Flattering!,"I agree with the other reviews - it's a little small in the arms, low cut in the chest, but really broad in the shoulders. i bought the xsp, which is a size up from my normal xxsp. they didn't have xxsp to compare. and i am a small person with big athletic shoulders, and my usual problem is with things being tight in the shoulders and fit everywhere else. overall, an excellent buy at the sale price. size up for more room in the chest and arms.",5,1,0,General,Dresses,Dresses +1094,45,,"Great dress. the seaming helps add shape to the dress. it is flattering and super comfortable. this dress is so easy to wear, i'm sure i will reach for it again and again.",5,1,1,General,Dresses,Dresses +860,43,Super soft and sweet,"I loved the details on the top of the shirt but was especially excited by the length of the top - it comes just over the hips and gives a flattering fit, as well as the sweet little micro sleeves. the color is kind of worn looking but it is so soft. i will definitely wear this a lot. + +i bought a medium but probably could've gotten away with a small.",5,1,2,General Petite,Tops,Knits +1052,40,A bit if a challange,"I am going to keep it. i think it will be a great ""throw on and go"" piece you can wear with many different types of shoe/sandal. the detail on top is excellent and it is a flattering cut. two complaints: runs a little big on bottom, a little ""genie"" looking...like there is too much fabric above the elastic around your upper ankles. but the bigger issue is that there is no zipper or elastic on top so slipping the top over your shoulders is super tight, to the point i thought i was going to rip it",4,1,12,General,Bottoms,Pants +1094,56,Feminine but bad pattern and colors,"I was attracted to the feminine design of the dress, the silhouette, the flouncy skirt; however, i ordered the red motif pattern and hated the splotchy, dark colors.",2,0,1,General,Dresses,Dresses +1094,70,,"Love it! as a previous reviewer stated, you can actually wear it reversible. +so happy i purchased it!",5,1,0,General,Dresses,Dresses +1094,66,Super flattering,"I find it very hard to find a dress. never like the way they look on me..this one???? fits like a glove, flatters my silhouette (which is difficult because even though i am at a good weight my waist is never small). looks like million bucks on me....i love it!!!",5,1,0,General,Dresses,Dresses +1094,41,Super comfortable dress with flattering colors,"I bought this dress online and have to say the material is really soft, has a great weight to it, and i bought it in the red motif. i just wore it to work this past week and received a ton of compliments on it. i wore it with black nylons black heels, and a cropped leather jacket. it is so figure flattering and so comfortable to wear. i typically range in size from an xs to a s, and the s fit me the best. i'm 5'9"" and 130 lb. it is truly a lovely dress!",5,1,2,General,Dresses,Dresses +1094,29,Versatile!,"I was pleasantly surprised by this dress. it goes perfectly from work to drinks and i receive tons of compliments on it. i pair it with a thin belt and heels or booties depending on the occasion. i ordered a small, it is a little big, but the fabric is stretchy (i am 5'4"" 125lbs). this dress accentuates my upper half, while disguising my lower half--thanks, dress!",4,1,0,General,Dresses,Dresses +507,39,Mighty little midi,"This very lightweight and semi-sheer dress fits like a midi dress on my height. the back hem ends low calf and the front hem is below knee. straps are adjustable and bodice edge is elasticized. the print is pretty and can pair with any sweater or jacket or jewelry or shoes that hits your fancy. my concern is regarding the 100% rayon fabric and how it will hold up after cleaning as all of my 100% rayon clothing from *random fast fashion retailer* does not last long. i'm 5'3"" 140# 39-28-35 and hap",5,1,3,Initmates,Intimate,Sleep +55,41,Beatiful and great quality for the price,"I have been looking for lace shorts for years. yes, years! finally found these shorts that are perfect. the lace is sturdy, not flimsy, so they are not see-through. i purchased both the cream and the blue when they went on sale. my skin is a bit tan, so lighter-colored clothing can be see-through for me. both colors are fantastic and i get compliments on them all the time, especially the blue shorts. plus, they complement either a t-shirt or a blouse. i love the eyelash fringe at the hem - such",5,1,0,General,Bottoms,Shorts +1094,52,Too low cut for petites,"I tried this in my normal sp. i found it to run a little snug, but the neckline was way too low for every-day wear.",3,0,1,General,Dresses,Dresses +1094,27,Cute go to dress,Super easy date or work dress. it's a little small in the bust so i had to size up but otherwise a great fit.,5,1,1,General,Dresses,Dresses +860,26,Very nice casual top,"I love love this top. it is a very pretty casual top. it looks very nice on and is more like a tunic. perfect with jeans, very casual but the embroidery, ruffle sleeves, and buttons at the top add a nice touch. i have the red, i am considering buying this in blue as well, i have so many newly purchased blue tops!",4,1,5,General,Tops,Knits +986,43,Love!!!,I love this kimono. it fits great. and is gorgeous!!,5,1,1,General,Jackets,Jackets +1087,49,Love love love this,"I love this sweater dress. i got the ivory color in a size small. i'm a size 6 & 5'5"". i feel in love with it while shopping with a friend, who kind of rolled her eyes at it. i went back later because i knew i loved it. since the ones on the sale rack were covered with dust and dirt at the hem. i ordered it on line in m & small and the small fit better. it is so soft, and the color is great.",5,1,0,General Petite,Dresses,Dresses +1122,40,Very pretty coat but runs extremely huge,"I thought this coat was absolutely unique when i first laid my eyes on it, i saw it on a co-worker on thanksgiving 2015, her coat was in navy blue pattern, mine was grey, but looked very good on and let me say the way she wore the coat, it looked oversize on her. my co worker is a very skinny size xs-s woman with very slim slender curve-less figure unlike mine. we are about the same height but i'm a bit taller with curves (6ft, 160lb). i normally wear size l 10. i like my outfits lose, but after",4,1,1,General,Jackets,Outerwear +986,65,Beautiful wardrobe addition,"Even at 5'1"" this kimono works for me. because it's so light in weight the length and amount of fabric are not at all overwhelming. it can be dressy or casual, as others have noted.",5,1,3,General,Jackets,Jackets +1122,28,,"I loved how this looked on the model, however, once i tried on in store, i was greatly disappointed. i usually wear a meduim and the small and extra-small were huge on me. there was so much extra material that i was swimming in this. i had such high hopes for this. there were no petite sizes to try on in the store but i am not sure it would have helped.",2,0,3,General,Jackets,Outerwear +940,44,Nice but not in love,A good sweater but something about it was just not right for me. just didn't feel like i would wear it.,4,1,1,General,Tops,Sweaters +1087,36,Thinking of returning,"This dress has been one that i just adored online and in the store so i was happy when i bought it on sale. i have worn this dress one time, thinking that i would love it. the problem is that as i wore it, the dress continued to stretch out of shape and just did nothing for my curvy bottom half. the dress just looked pulled and stretched out of shape. i would say that it may be the yarn and that it has too much give or at least more give than i want.",3,0,1,General Petite,Dresses,Dresses +986,20,Gorgeous colors,"The colors and design are stunning in person. it is one-size and as most kimonos go it is billowy and flowing, and not fitted. i plan to wear it with a pair of black shorts and also with black leggings. i love the idea of layering this over shorts. i have a similar kimono and wear it as a bating suit cover-up. the long kimono over short looks fresh and modern and gives you the option to have some coverage when you want it. also, really pops over simple black leggings and black top. it's light an",5,1,5,General,Jackets,Jackets +1033,23,My new favorite!,"Let me start off my saying that i hate pants. i will wear dresses and skirts whenever possible to avoid them. however, i found these at my local retailer and just had to try them on because the pattern was so adorable. i have another pair of pilcro shorts that i love because they are so comfortable and have so much stretch to them that they don't make me crazy like other pants do. these were no exception! i love everything about them and am going to have a hard time not wanting to wear them every",5,1,0,General,Bottoms,Jeans +834,54,So chic!,"This is a wow! so chic...reminds of something i would have bought in paris. worth every penny. even my husband loves it on me...his words were ""it's a standout"". i work in the design industry so i am always looking for something that represents what i do...nailed it!",5,1,2,General Petite,Tops,Blouses +1087,33,Inconsistant fit!,"I was so excited to try this dress, but after ready the reviews,i though they were all over the place! i descided to order my typical retailer size small. i'm 5'6"" , 134 lbs, and wear a size 6. well, it was a snug fit! i have a slim build and this was just to snug for my taste. i imagine a medium would have been better. however, i was very surprised by the length and slit... the dress hit at my knee cap with the slit going all the way up to mid thigh... .!?? i've seen pics of this dress on instagr",3,1,1,General Petite,Dresses,Dresses +631,27,Beautiful chemise,"This is a very soft and feminine chemise. it is a little more see thru than i had anticipated, but i still love it!",4,1,0,General Petite,Intimate,Lounge +1087,34,Sultry meets sophisticated,"Beautiful material- and washable!! i'm vertically challenged and the slits are a tad bit high, even for me- but still tasteful. i would suggest sizing down as i'm normally a medium in retailer but due to the nature of the material i opted to size down and i'm so glad i did!! no arm hole struggles with my particular dress either. overall just a really cute, versatile, cozy and functional option that will certainly get plenty of exposure for many winters to come.",5,1,0,General Petite,Dresses,Dresses +986,43,Unimpressed,"I was so excited for this kimono. i thought the colors would be lovely. i was looking for a unique wrap/vest/kimono. i ordered this online expecting to be dazzled. sadly, i was not. this arrived and fell short on all measures. the colors were flat, the fabric felt cheap and the construction did not scream $108. it felt like something i would find in a college import/head shop. back it went. i ended up buying the silves wrap, which i love.",2,0,1,General,Jackets,Jackets +1122,34,Giant!,"Im normally a medium across the board for outerwear. (5'8"" and 135 lbs) this jacket looked giant from the photos so i bought a small. when i first tried it on i thought no way, it's gotta go back. it was enormous and the fit was rather awkward. i looked like the size of a house from all angles. ha! i was still in love with the color and print. as i wore it around the house it began to loose it's rigidity and form against my body in places. it is definitely a jacket you got to play around with. d",4,1,1,General,Jackets,Outerwear +986,53,Beautiful kimono,Love this kimono! it is so versatile. it is a one size only so it might be .a bit volumnous for some people.,4,1,3,General,Jackets,Jackets +1033,52,Super cute!,"First off, let me say that i am 52 and don't often go for print jeans these days:) however, these are just so stinking fun and flattering that i couldn't say no. these look great cuffed for warmer temps, and rolled to full length will be fun to wear with fall sweaters. if you are looking for something fun and flattering, these are the ticket! i bought the grey version and feel that they will work with many pieces that i already have.",5,1,2,General,Bottoms,Jeans +1161,54,Super sexy perfect fit!,"I didn't have high hopes for these, because things seem to 'ride' on me- but these stay put! and i love the adjustable sides... these are a pretty color, i ordered the raspberry and the silver grey and love both! i normally would not pay a ton for undies, but these are worth every dollar! i have a larger bottom, so purchased the large, but sometimes i can wear medium, so this is great, being adjustable.",5,1,0,Initmates,Intimate,Intimates +1087,74,"Love this dress, but had to return","I am 5""7"" and weigh 123 lbs. i tried on both these dresses in medium, and they both fit. they are not too thin, not too high slit, not scratchy. the problem is i am middle aged with a thick waist. the waist looked lumpy with the close fit knit. if you are younger, slim and tall, you will love it. i sent it back with regrets. hope this helps.",4,1,0,General Petite,Dresses,Dresses +631,58,,This is a lovely little nightie. i am a size 8 and i bought the medium and it fits perfect. it's soft and lightweight and not as see thru as i thought it would be. very light and airy and the sale price was great!!!,5,1,0,General Petite,Intimate,Lounge +1087,45,,"I tried this on in the store. all of the dresses in the store were misshapen and pulled long in the armholes (and i love all of my local retailer stores!) i don't think these should be hung on a hanger. the knit is too heavy for hanging. the hem on the dress i tried in the store was dirty from dragging on the floor. i went home and ordered it online with the 20% dress discount and free shipping. the dress i received was clean, unstretched in the armholes and not oddly short like some review",5,1,2,General Petite,Dresses,Dresses +1087,50,Beautiful and soft,"Based on the mixed reviews about fit, i waited to purchase until i could try it on in the store and was not disappointed. i'm wondering if there are different batches of this dress? i'm 5'7 and the dress fit as in the photo. the side slits come above my knees but not too high. arm holes are a bit large so if you want more coverage this may not be for you. the material is cozy and soft. the cream color is gorgeous. size wise, it definitely looks boxy and marshmallow-like if too loose. i am usuall",5,1,1,General Petite,Dresses,Dresses +834,69,Definitely not my best look,"I bought this online in my usual size (petite xxs) for in-store pickup. when i tried it on, the kindest word to describe it would be ""voluminous""--it was at least 2 sizes too big on me. i looked like i had taken grandma's tablecloth and constructed a homemade blouse. the blouse comes with an attached cami, which was also way too big for me. the color is not white (as described), but rather an ivory/cream color--definitely not the best shade for my light olive skin. i do think that it looks lovel",3,0,0,General Petite,Tops,Blouses +1122,56,,I ordered the chelan wrap coat in the beautiful red color. it's artsy and will be fun to wear with jeans and other casual clothing. it's super comfy and fits true to size.,5,1,0,General,Jackets,Outerwear +1087,38,No shape,"I wanted to love this dress, however it has no shape to it. it is also somewhat see through, so something needs to be worn under it. i feel like i received a dress that has been stretched out and returned. i'm extremely disappointed. i do not recommend.",2,0,1,General Petite,Dresses,Dresses +1087,43,,"I'm usually wary of light colored knits because they can often be thin and see through, but this one had nothing for me to worry about. this had an adequate thickness which does not leave me freezing and i did not consider it sheer. i find that the sleeveless turtleneck design can be versatile for the seasons. i plan to wear it with a cropped denim jacket and boots for colder days and sandals on warmer days. the material is very soft. the cut is true to size to large. i went true to size because",4,1,0,General Petite,Dresses,Dresses +1087,36,The only fall dress you need,"The cream color in this dress is divine. such a stunning dress that can be worn with a vest, jacket or alone. it looks very luxe and expensive in the cream color. because it's a knit, can go smaller in size. i tried on both the x-small and small. opted to go with the x-small. found it fit better.",5,1,0,General Petite,Dresses,Dresses +1089,29,Stunning,"I did not notice this dress on the website. it was not until i saw it in store (was an online purchase & returned) - i was immediately in love. i love the color, texture and rosettes. i feel like a million bucks wearing it and have received so many compliments on it. before buying it, i actually ran home to gather a previous purchase and return it so i could buy this dress and not feel guilty! i am usually a 2 or 4 and the 6 fits perfect through and through. so happy with this lovely dress!",5,1,5,General Petite,Dresses,Dresses +1122,38,So cozy,"Tried on my normal size in the store and i was swimming in it. the sales associate suggested i order the petite in store. perfect! i just wish there were more opportunities to try on petite sizes in store. +this coat is soft and roomy. when it's buttoned up it has a great shape too.",5,1,1,General,Jackets,Outerwear +1087,44,"Almost, but not quite","This dress had so much potential but the horizontal knit ruined it. i tried on size xxs in grey since my usual petite xxs size was not available. the fabric was a good weight and dress was well constructed. however, the wide horizontal knit made the dress bulge out at places especially in the lower body thus made me look wide and bulky. i wish they had used a cable knit pattern which will make the dress drape much more nicely and more flattering.",2,0,0,General Petite,Dresses,Dresses +1121,25,The best,This trench coat is the best fit and feel-true to size and cozy! excellent material!,5,1,0,General,Jackets,Outerwear +986,37,This one is on repeat!,"I bought this kimono only a couple weeks ago...and i think i've worn it six times already! this kimono is stunning. light, airy and the colors are absolutely gorgeous. the print is unique and bold. i've worn this over a black dress...with leggings and a white tank...with denim and every color top. the options are endless with this beauty! the only downside is the kimono is so airy and oversized that the armholes easily get hooked on things. i ripped it once but thankfully it was right down the s",5,1,3,General,Jackets,Jackets +1087,42,,,3,1,0,General Petite,Dresses,Dresses +1082,37,,"I thought this dress looked gorgeous on the model. so floaty and light. when it came, i found it to be the exact opposite. the hem is so heavy and laid on me like a potato sack. it had way too much material at the bottom and weighed me down unfortunately.",2,0,0,General,Dresses,Dresses +1121,35,Perfect for fall,"I got this coat because i needed something black and thought the plaid was black. it's not -- but that's my fault and i love it anyway! it's perfect for our temperate seattle fall and winter -- not too light, not too heavy. i get a ton of compliments! i'm 5'9"" and about 145, and a medium fits perfectly.",5,1,0,General,Jackets,Outerwear +940,43,Wanted to love...,I really wanted to love this sweater. the quality is good and it looks beautiful - until you need to lift your arms. i did end up keeping it but it is limited to when and where i can wear it due to the arm restrictions. i can see it in the picture but didn't notice until purchasing - the arm holes and right next to the bottom of the sweater. slight design flaw.,3,0,0,General,Tops,Sweaters +986,56,Beautiful colors,"I own several of retailer's kimonos, & this has to be the prettiest. the colors are rich & more beautiful in person. i can't wait to pair this with jeans & shorts this summer!",5,1,3,General,Jackets,Jackets +1122,56,Beautiful coat,I love this coat. i would definitely recommend it. i normally wear a size 6 or a medium. i bought my normal size and had to return it for a small. customer service was great and made for an easy online exchange.,5,1,0,General,Jackets,Outerwear +1035,48,"Great fit, nice summer color in the lighter denim","The lighter tinted denim is a faded blue-grey that will go perfectly with most of my wardrobe, and is more summery than the usual dark denim i wear. these feel like stretchy jeans to me, not leggings. i wear size 28 in most jeans and these fit tts. really nice.",5,1,3,General,Bottoms,Jeans +1122,36,Great but huge!,This coat is very nice. it's soft and the colors are great. the only reason i gave it a 4 stars and not 5 is that it runs huge! i normally wear a size small to medium in tops and i like a bit of moving room in my coats so i ordered a medium. when i put it on i just started laughing. it was so huge. i wanted to exchange it for an xs to see if that would have been small enough but it has already sold out in that size. i think this could be a big win for larger sizes but unfortunately for me it did,4,1,0,General,Jackets,Outerwear +940,68,,"I love this sweater. i bought it in navy at this sale price and now plan on ordering it in the cream color. it runs a tad large and it might even stretch just a teensy bit (but not a lot), however i adore sweaters to be a little too big so this is perfect for me. whenever i wear this sweater i get huge compliments, to the end that the friends wants to go online and order it for herself. tkhe only problem with the sweater is that i love it so much, i want to wear it every single day (which is why",5,1,0,General,Tops,Sweaters +1087,48,"Beautiful, if a bit bulky","It is gorgeous, and yes, the side slits are very high, but i am still keeping and rocking it. i am a size 10-12 and got the large, probably could have got the medium, but after a few washings, i think the larger size will be ok. side slits high, but if the weather is good, and you have self tanner on legs, it looks great with shortie boots. i have gotten many cmpliments on it, just hope it still keeps its shape after a long day of wear. very pretty in cream, though, i do recommend it. i am 5'8,",4,1,0,General Petite,Dresses,Dresses +227,33,"Flattering style, too small","I love the way the mock neck style looks, but the shirt is cut very small. i realize it's supposed to stretch, but it's still very, very tight on, particularly in the shoulder area. if you like the style, i'd recommend sizing up.",3,1,3,Initmates,Intimate,Layering +227,62,,I love this top. i'm wearing it today. i bought it to wear under blazers and it works perfectly. i knew it would be slim fitting and while i normally buy med or sometimes small i bought the large and i'm glad i did. it's still form fitting without strangling me the color is very nice as well. nice fabric and well made. a great layering basic.,5,1,0,Initmates,Intimate,Layering +862,41,Pretty but too tight,"This top was so beautiful, exactly like the image shows but the waist was so tight. it was uncomfortable enough that i am going to return it. sad because the top and arms fit great. i am an hourglass so my waist is very small compared to my top and bottom. oh well, next time!!",3,1,1,General,Tops,Knits +862,44,Sexy,"I can't get enough off-the-shoulder tops. so even though this is out of season, i went for it...in both colors! my only con is the fabric has a slight sheen which cheapens the look a tad. like i'd read in other reviews, it does run a bit small for this cut top - i just wanted a bit more volume in the neck hole and in the waist since i won't be tucking in. if you want it more fitted and ruched around the waist, go for your normal size. i'll be ordering a small in both colors because i know i won'",5,1,0,General,Tops,Knits +823,54,,"I am on the fence with this one.......the black lace on the bottom is beautiful and pairs so well with my black velvet gladiator sandals..... but it came very wrinkled, and the fabric almost feels more like a cheap cotton. i am always in between a sm and med, so tried the small. the shoulders do want to slide up a bit. arms need to be down. +it is very voluminous......and falls below my bottom. would make a pretty maternity top!! the idea of it overall is pretty, but not sure i want all the volu",4,1,8,General,Tops,Blouses +487,35,Coincidence,"I just go these socks in one of my beauty boxes!!! there is nothing like a new pair of socks. they feel amazing no matter what you do. these are ultra soft and in-line with other slipper socks i have tried with the grippies on the bottom. i like the color black style (actually, i like all the new styles at retailer right now), and i didn't think i would like the higher tabs in the back but it turns out i love them to make sure the sock is covering my whole ankle when i put my shoes on. the",5,1,2,Initmates,Intimate,Legwear +859,53,Super cute top,"Very comfortable, flattering, washes nicely- love it!",4,1,1,General,Tops,Knits +862,53,Stylish and comfortable,"I love this top. very comfortable fabric and it can be worn in multiple ways. it is tight on the bottom. i usually wear an xs (5'4"" and 120 lbs). had to exchange for a small. very flattering. liked it so much i ordered it in both colors.",5,1,1,General,Tops,Knits +1036,36,Best jeans ever!,I just bought these jeans and i absolutely love them. they are my new favorites. i like them so much i am buying another pair. i am short but always wear heels and these are perfect in every way. slimming as well.,5,1,1,General Petite,Bottoms,Jeans +1035,45,,"Love these pants! super comfy and casual. i found they run true to size and are just lose enough to feel casual, not sloppy. my only complaint, the cuffs of the jeans were thoroughly covered in some kind of animal hair! very disgusting. but love the jeans.",5,1,1,General,Bottoms,Jeans +823,59,,Beautiful beautiful beautiful! goes great with pilcro stet big rise grey jeans and deep green hei jeans. i wear this on shoulders vs off. so lovely . beautiful rich earth tone colors and live the lace bottom. can dress up with black skirt or black skinnies and heels. highly recommend.,5,1,2,General,Tops,Blouses +1059,33,,"This is my favorite pair so far from cartonnier. the side zip dresses up the pants which is something i was looking for and i just love the print. so happy with the quality, i ordered a second pair. fit true to size for me. i plan to wear them with knee high boots as it gets colder.",5,1,0,General,Bottoms,Pants +862,45,Goofy neck,The quality and color is great on this top. the neckline just seemed a be pulled a little too tight on the one side of my neck to be a true off-the -shoulder look. and to wear it as a cowl neck (or actually looks like a boat neck) just makes it too ordinary- since i love the off the shoulder look. it fit me everywhere else and the slim waistline of this top is super flattering- so i think my size was right. the cut of the neckline just needed to be more more definitive one way or the other.,3,0,0,General,Tops,Knits +862,29,Feminine and flirty,Beautiful top! you can wear it as a wide boat neck or as its pictured off the shoulder. the bottom is tight with ruching which makes it very flattering. i found the fit true to size. love the neutral light brown color. will look nice with white denim for the summer. excited to dress this unique top up or down.,5,1,1,General,Tops,Knits +996,74,,"I wanted to love this skirt it was good quality, but the front is a loose flap that is exposing so i had to return it",3,0,1,General,Bottoms,Skirts +387,34,Don't even know they are there!,"I bought these to have a pair between standard fair and sexy, but these are so comfortable and gorgeous i would wear them everyday! it doesn't even feel like i am wearing anything. love these!",5,1,0,Initmates,Intimate,Intimates +1081,53,Nice fitting dress,"I just bought this nice dress on sale as i love the dolan brand and purchased my regular size small (34/27/35) and it fits me perfect so i'd say it runs tts. the material is nice and soft, not see through at all and a good length (i'm 5'4""). i bought the regular and didn't seem to need a petite. it's a slimming dress that's not overly tight too. i also really like the mock neck and don't find it constricting at all as the material has a bit of stretch. the short sleeves will be nice when it's sp",5,1,10,General Petite,Dresses,Dresses +823,31,Wanted to love,"This was my favorite item in the august catalog & i knew i had to have it. my store had not received it yet so i ordered online. after reading the other reviews, i sized down and the fit is still much too large as this top has way too much material. this is coming from someone who loves swing tees and can appreciate a loose fit. however, this top hangs like a tent. also, the elastic around the bottom of the sleeves is quite uncomfortable. i do think the top is pretty and recommend only if you ar",3,1,4,General,Tops,Blouses +909,60,,"I love the design of this sweater...shorter length, with shorter sleeves. +goes great with jeans and has a very different look!",5,1,1,General Petite,Tops,Fine gauge +1081,32,A casual workhorse,"I've worn this dress to work with a black corset belt and to disneyland as is. it's made of a medium weight knit that doesn't cling. the cut is flattering. i wish they had an option with no slits. though this alternate cut would be significantly less comfortable, it would create a sexier silhouette. i purchased this item on sale. + +i'm a little worried that it'll shrink in the wash. i've had varied luck with fabric containing modal.",4,1,1,General Petite,Dresses,Dresses +1035,25,The most perfect straight leg jean ever!,"I am so amazed that i finally found the perfect, straight legged denim! not too skinny nor too tight b/c i have athletic calves. i have been waiting a long time! for reference i took a size 26 and usually wear a 2. it is great and comfortable for someone my age! i love these and they are the best investment.",5,1,17,General,Bottoms,Jeans +1059,46,"Looks great, poor quality","Pants are overpriced and very uncomfortable. to my utter dismay i wore them during a business trip for the first time and ended up with bruises caused by the side zipper. i have been a long time retailer shopper and usually my go to store, however,ending up with a pair of pants that caused me pain was a very big disappointment,",1,0,1,General,Bottoms,Pants +1056,58,Wish'd i'd known they came in tall,"So, i bought these pants in mid-september while at a local retailer store - i thought they were a bit short but the salesgirl assured me they were fine. wore them soon after and then discovered they came in tall sizes as well. anyway, one they came on sale i rebought them nabbing the last tall in my size. while that is a testament for how much i love them - the fit is true to size other than the length issue. i am 5'10"" with long legs - the 28t fit me perfectly. of course they cost me more than th",5,1,0,General Petite,Bottoms,Pants +909,39,Comfy and flattering,"I love this sweater, it is well-made, the colors are great, adn the feel is very soft. i just love troubadour, never knew of it before this season,but already own a few pirces. +i tried on the blue version, fits true to size, i don't hink i need the petite. the nexl ;ine was more falttering than the pcture shows. i love hte sleeves too. i think overall the shirt is a bit of flared out style, which i love.",5,1,1,General Petite,Tops,Fine gauge +862,35,,,4,1,0,General,Tops,Knits +1020,54,,So small! i was a solid size 12 in skirts but recently lost some weight. i was still nervous to buy a size 10 so i bought the 12 thinking i can always take it in if i have to. the 12 - which should have been big on me was tiny. this skirt is built for someone with non-existent hips. returning.,3,0,5,General,Bottoms,Skirts +823,62,Cute top but very oversized,Ordered my usual medium. it swallowed me. have returned to store and they ordered me a small to try. very cute comfortable top,4,1,2,General,Tops,Blouses +1056,54,Pilcro fan here,This is my second pair of pilcro chinos. their pants and shorts are so soft--even those who love to run around pantless might relent. this brand tends to run a bit large so if you like your pants form fitting you may want to size down.,5,1,0,General Petite,Bottoms,Pants +823,41,Great fall find!,"Beautifully detailed top that pairs well with dark denim. top is a bit wide, but i think that is the style. a unique and different piece to add to your wardrobe!",4,1,0,General,Tops,Blouses +1056,42,,"These are great-looking chinos and very comfortable. i'm 5'11"" and--unrolled--they are long enough for me.",5,1,0,General Petite,Bottoms,Pants +862,38,In love with this top!,"This top is amazing! i originally ordered it in small, which fit, but opted for a large for the option of wearing it more off or the shoulder. the large fit perfect! great length for leggings and can wear both off the shoulder or just one... can't wait for fall! for reference, i'm 135 lbs, 34b.",5,1,0,General,Tops,Knits +1056,61,Love these pants!!,"I rarely order pants on line...as the size often varies so much. took a chance on these as they were on sale and they are just stink'n adorable! i am so glad i did, i love them. i ordered both colors, haven't got the neutral pair yet but the green plaid fits me like they were made for me!! for reference i am about 5""3' tall, my weight is around 137.5 ish. i ordered the 28 regular, and they fit perfectly. i hope they don't stretch to much when i wear them. if so i will update my review. +i just lo",5,1,1,General Petite,Bottoms,Pants +862,34,Great piece!,"I discovered this top folded on a shelf and loved the material and this brand so i decided to try it on... even though it's super hot right now in ar. i'm so glad i did and ended up finding the other color and buying both. i am 5'9"", 127#, 34b and long waisted. it is difficult to tell in the pictures how this top fits around the waist... it is snug fitting but the material is thicker so i feel like it's very flattering. i tried it on as a boat neck look, then saw online it was off the shoulder a",5,1,0,General,Tops,Knits +823,22,Best birthday shirt ever!,"Bought this for my daughter in college for her birthday. i heard shouts of this being her new go-to top. +her roomies have already tried to borrow it. super comfy with a beautiful off-the-shoulder style. +no one can go wrong with this!",5,1,0,General,Tops,Blouses +823,55,Fun top for fall!,This is a great top going into the fall season. it runs a little large. i went down one size and it fits perfect!,5,1,0,General,Tops,Blouses +859,60,,"I like this blouse very much but my work is extremely conservative so i chose to return it. it really pops, even though it is just black and white. it has some sparkles in it.",4,1,0,General,Tops,Knits +1035,54,Pilcro perfect,"Well, another major score with pilcro! +these pants, in general, are my go-to pants--so i had high expectations when i bought them. +(i have about every color in the hyphen cut--and always hope they make more pairs) +and, what do you know, they've met--even exceeded these expectations! + +love the fit--true to size--even though i will order another smaller size when i get smaller! these are good enough to have that ""big pair"" and that ""oh, i feel svelte pair!"" the denim has just enough stretch a",5,1,2,General,Bottoms,Jeans +1094,25,Beautiful!,"What a perfect dress! it was perfect for a black tie optional wedding. i didn't want another ""black dress"" but when i saw this i knew it was something special! i am 5'5 130lbs and 34dd- the size 8 fit my top better but the size 6 length was better but i decided to stay with the size 8",5,1,0,General,Dresses,Dresses +862,45,Interesting and unique,"I love the way this top fits! i am busty on top and smaller on bottom, and it really flatters. it's funny to see it called ""off the shoulder"" b/c so far i have worn it on the shoulders. when worn on the shoulders, the neck is very flattering, kind of like a cowl neck. i probably would not wear it off the shoulder b/c of the whole bra strap challenge. i got the charcoal color which looks great with jeans or black leggings.",5,1,6,General,Tops,Knits +823,41,Long enough for tall women,"Being six feet tall, i'm always combing reviews for the opinions of other tall women, and i'm glad i did on this one! with the off the shoulder look, you can sometimes gain extra length, and it's true in this case. i stayed tts because of length issues, and while it is billowy, it's not horribly so. i would think, however, if you're between sizes, or not worried about height, i'd go with the smaller option. adorable, comfy, casual while being dressy enough for a night out!",4,1,0,General,Tops,Blouses +862,29,Cute but poor quality,"I'm 5'7"" 155lbs and ordered a large. it fit, but the arms were awkwardly short. the finish details on the end of each sleeve almost would have to be pushed back to the elbow for it to look right, which would be okay. however, the interior seam of the neckline is cut jaggedly and isn't even finished with any stitching. it's just tucked haphazardly inside the neckline and isn't sewn--it would unravel with washing. + +it's soft and snuggly and cute if you get it on super-sale and don't mind it com",1,0,0,General,Tops,Knits +823,33,Darling top,Love this top! off the shoulder fits great! little extra room around the torso than i'd love... but still absolutely in love with this top! the black lace detail on the bottom is amazing! love the colors for fall! ordered a small and i'm 5'9 138lbs and i ordered a small,5,1,0,General,Tops,Blouses +1020,55,Love this skirt,"I read all the reviews and they were very helpful the waist does run small so i sized up which was perfect. i love how this skirt is lightweight and swingy. i cant get enough comfortable denim skirts. so size up and you will love this, i am a slightly hippy girl and the skirt did not make me look big at all.",5,1,1,General,Bottoms,Skirts +862,56,A lot to work with,"Other reviewers have pointed out that these tops (i have both colors now, spoilers!) run long- and i am happy to agree. basically, there's a lot to work with here. i'm always looking for longer tops to traverse a larger bust, and this is a great hip-hitting length for me. plus, the neckline can be style multiple ways. all in all, a flattering better-than-basic sweater.",4,1,8,General,Tops,Knits +1020,40,,"This skirt is the perfect flirty denim piece for the summer. it's light weight but good quality. the only draw back is the waist is quite fitted when zipped. had to size up. it's like a pencil skirt on top, which does make it tough to tuck anything in unless it's very thin. overall, charming skirt. do love.",4,1,3,General,Bottoms,Skirts +1056,28,Flexible for your needs,"I bought this in the green plaid for travel since i don't wear long pants of this fabric weight here in honolulu. it is styled so that you can roll the bottoms up for a more casual look, showing some ankle and wearing dress flats . would be a perfect casual work look with a navy tee. since i'm only 5'3"" and this is travel-wear, i got it in a regular rather than petite because i wanted to keep the cuffed-look but cover my ankles. i tend toward adventure travel and these held up well on a recent t",5,1,0,General Petite,Bottoms,Pants +1035,46,Love!,These jeans are excellent! i've been looking for a boyfriend jean that has plenty of room without just looking too big and these are it. there's lots of give in the material but they still conform to your shape. i highly recommend!,5,1,2,General,Bottoms,Jeans +823,46,Such a fun top!,"Love this top. pretty colors and don't forget to notice the black lace at the bottom. can easily be dressed up or down with jeans or cigarette black pants and heels. everyone looks good with bare shoulders, so this is a definite for my fall / winter season.",5,1,0,General,Tops,Blouses +1028,59,Sizing off,"So after reading the 2 reviews, decided to just order my usual size (26), thinking they might be a tad snug. wrong! they were huge! i looked at the size to see if they sent me a size 30 by mistake! unfortunately small sizes sold out. quality is excellent as well as style, so bummed!",2,1,0,General Petite,Bottoms,Jeans +996,34,Vibrant colors,This skirt is adorable and has a beautiful pattern! it's also extremely comfortable. a total steal at the sale price!,5,1,0,General,Bottoms,Skirts +1059,42,Fun multi season pant,"Purchased the navy/green and the red/brown. ultimately exchanged the red for the black/gold. the charlies tend to run small, so size up one. i normally wear a 26/2, but needed a 4 in these. the side zip makes for a slimming fit. i'm 5'3 and it is an ankle fit. i've paired a sleeveless silk navy blouse with the blue pant when the weather was warm and now i pair with a white oxford and navy cable knit sweater. i see many more possibilities for both pairs. fun print and fabric that can work through",4,1,0,General,Bottoms,Pants +862,28,Very chic,"This top is very gorgeous and chic. it is very tight at the bottom, but i feel like it will stretch a little over time, it is also very long which i love, because it can be rouched up to a great length if you are curvy. both colors are great, i bought both and love both. the sizing was correct, if you want it to fit like it does on the model shot. if you want it a little more fitted, size down, but it may be very tight on the bottom. all in all i love them and they are definitely a great find fo",5,1,0,General,Tops,Knits +1056,34,"Love, love, love","As soon as my eyes touched these pants i knew my body had to. not only doo they look great, they feel great. the material is very soft with just enough stretch. they've quickly become my favorites. i loved the first pair so much i immediately bought the other color.",5,1,0,General Petite,Bottoms,Pants +823,45,"Too much fabric, shoulders won't stay down","This is a gorgeous print, but i found it too fussy for my taste. it is quite shapeless so i tried doing a half tuck. it looked cute for about 2 seconds, but then i had to worry about keeping the shoulders down.",2,0,0,General,Tops,Blouses +1081,37,Perfect,"What a great fit! it is casual, but can be dressed up. i could have done the extra small, but the small isn't too big and is still flattering.",5,1,1,General,Dresses,Dresses +909,42,,"The sweater is prettier in person than online. great quality, tight knit, overall good purchase. however, it does run small. i would absolutely size up. i am a size 4 with a 34 c chest and i ordered a m and i would have been happy with a roomier l. i was going to return to my local store but they were sold out in the larger sizes. +i will keep it because it's gorgeous and i'll make do with the less relaxed fit, but it doesn't look on me like it does on the model.",4,1,5,General Petite,Tops,Fine gauge +909,46,Shapely sweater,"This is a lovely sweater that doesn't look much on me the way it does on the model in the picture. i actually like it better on me! it's got a good scoop neck and it gives me a shape. i tried it on in a small and i'm on the fence about whether to buy it or not. i don't really need it, but with the discount codes retailer is offering these days i feel like i should buy it anyway...",5,1,1,General Petite,Tops,Fine gauge +1028,39,Wow...can't figure out who these are cut for?,"I am so bummed. these jeans are the perfect weight, totally distressed (and torn) in a way that looks like you've owned them for years, they flare out at the bottom of the legs just the right amount...but there is one huge - or i should write small - problem: your thighs have to be incredibly small to get these pulled all the way on. +---------- +i am a 27 in level 99 and ag brand jeans, and a 28 in my other pairs of coh jeans and in mih jeans as well. i do not have an hourglass figure (my shou",3,0,26,General Petite,Bottoms,Jeans +862,49,Just ok,I wanted to love this sweater but the fit is off slightly. i ordered my regular size xs and the chest/shoulder area fits nice but the waist comes very tight and not flattering to wear unless style similar to the model with a tucked in look. nice color and decent quality fabric but not my favorite fit. going back to the store.,3,0,13,General,Tops,Knits +909,47,,"This sweater looks way better in person than in this picture. the secret: try the petite size. loses a star for not having seamed edges , so it might fray or unravel easily-- but of course that clean unseamed cut looks super cute, especially around the neck. also a bit spendy. but let me say again: super cute on.",4,1,5,General Petite,Tops,Fine gauge +909,68,,"I purchased this sweater since the design immediately caught my eye. i love it. i am 5-03 fit and trim, but chose a large/regular to accommodate my shoulders and chest. the fit is close but i do not look ""poured"" into it. i do have a long back-waist length--not a true petite. the wool is soft, substantial; but not bulky. sleeve length is flattering. i plan to wear this sweater to the office on casual fridays with well-fitted dark-wash jeans--an appropriate look for anyone, not withstanding an ad",5,1,1,General Petite,Tops,Fine gauge +823,44,Didn't look great on me...,"It does run large as most reviewers noted. i opted for the pxs and it was still very large and the way that the elastic at the top hit me it bunched funny and made my chest look huge and i'm only a b cup. it added a good two cup sizes to my chest and it just looked odd. the length of the petite was good for me at only 5'4"" so the length did not overwhelm but the width was still really too wide. love the fabric and the lace at the hemline. it just wasn't for me but for those it works for it is be",3,1,0,General,Tops,Blouses +823,39,Unique,"I am usually between a s/m. bought it in the small and glad i did. the blouse is billowy. had some trouble at first getting the top to stay ""off the shoulder"" because it raises up when you raise your arms (obviously). stretched out just enough and is now comfortable. the black lace design at the bottom is different and pretty.",4,1,0,General,Tops,Blouses +1028,59,Unique and good quality,"Love the way these pants fit. love the length. love the cut! just the right amount of flare... normally i am a 28 or 29 in citizens jeans. i considered the 27 in them, but the legs were a bit tight. 28 was just about perfect. and the best part....they are finally on sale. i look forward to wearing them with flats or heels and a simple white shirt!",5,1,1,General Petite,Bottoms,Jeans +909,51,Heavy look lightweight feel,"This sweater looks heavy online bit is a very thin sweater. it runs tts however if you like the short length then i'd size down. i'm 5'4, 120# 34d and the xs was perfect. the sweater didn't feel too scratchy but it's not a soft sweater. very feminine.",5,1,18,General Petite,Tops,Fine gauge +909,39,,"This sweater fits differently than it looks on the model in the photo. it is more fitted, less bell sleeve. and the neck is less boat-neck on me. i am often between sizes at retailer, but in this one i got the larger size and it fits well. i love this sweater. i just wanted to mention that i think it fits differently than what it looks like in the pic.",5,1,6,General Petite,Tops,Fine gauge +1094,22,,"This dress! the picture doesn't do the dress justice. its so beautiful, well made, and unique. lots of beading and detailing for the price. i'm super happy with my purchase !",5,1,1,General,Dresses,Dresses +862,52,,,5,1,0,General,Tops,Knits +1035,41,Best jeans ever,The jeans are soft and comfortable. they are the perfect staple in my closet. more colors please!,5,1,1,General,Bottoms,Jeans +823,46,,,5,1,0,General,Tops,Blouses +996,48,Very strange design,"I found this skirt on the sale rack and apparently miss marked and i did not try it on. when i got home i tried it on to find it has this open flap in the front with a very short slip. the color is a dark navy. i love the brand because they claim on the label to be made in the usa, which is something i prefer. i am still on the fence about this skirt thinking maybe i would bring it to the tailor to see if the panel can be stitched to the faux leather material half way down to eliminate this full",3,0,3,General,Bottoms,Skirts +640,55,Pricey,"This dress is only suitable for a beach cover-up: it is completely sheer. expensive, even on sale, for something with such a limited wearability. i returned it.",3,0,13,General Petite,Intimate,Lounge +823,30,Great transitional top,This is a perfect late summer into fall top! you can easily pair with shorts and sandals then transition to jeans/booties for the fall. it's slightly on the roomy side (i am usually a medium and i had room) but i think that's just the structure of the shirt. off the shoulder style stays perfectly in place!,5,1,8,General,Tops,Blouses +1020,60,Cute tensile style jean skirt,"Adorable skirt but fit is definitely too tight like the other reviews before me + i am super petite 4 11 105 pounds the double zero and zero were just a little tight for me and a little too long ( both could fit around my waist which is a 24 but high waisted and tight not a fit around the hips) + if the length had been above the knee i might have kept the zero but they were both returned + great skirt in the theory with the wrong waste fit and length",4,1,5,General,Bottoms,Skirts +1081,41,Cute for a straight figure,This looks great on the model and is probably beat suited for someone that is tall and thin with small hips.,3,0,0,General Petite,Dresses,Dresses +1020,31,Size up!,"I'm curvy on the bottom, and i think this is quite flattering for curves. i'd definitely advise sizing up on this one. because it's flared, i can wear it higher up on my waist. but that's not ideal, and i think a bigger size will fit better. it's a very lightweight fabric and does wrinkle easily. the color i got was a faded denim blue. this is a lot lighter than what i'd call ""dark denim"".",4,1,0,General,Bottoms,Skirts +1035,51,Can yank them down!,"Love the style, fabric and fit generally, but even ordering down a size, i could yank them right down. trying going down one more size, but not sure it will work as much as i want it to.",3,1,1,General Petite,Bottoms,Jeans +823,45,Love it!!,"I wasn't sure how this top would look on me but i just love it! i am 5'3"", 115 lbs and i ordered the petite small. i may even been able to get away with petite xs. i did not find this top too full, long or tentlike at all. i have a bust as well and it looks very flattering on me. i wore it with denim shorts and it will look great with skinny jeans. i would also wear it on the beach as a cover up. very versatile. i love the color and pattern on the top and really love the black lace on the bottom",5,1,1,General,Tops,Blouses +859,58,Better in the photo,"I was excited to receive this top because i love the design, but was very disappointed when it arrived. i thought the embroidery would be striking but it's not. the material is a t-shirt knit which also added to the disappointment. it was not flattering at all.",3,0,8,General,Tops,Knits +859,58,Very cute,"I love this style. reminds me of what we used to wear back in the 70's. it's very cute, flattering, and material is a high quality. will look good with skinny or boot cut jeans. if you like this ""baby doll"" style, you'll love this.",5,1,1,General,Tops,Knits +1059,34,Fancy pants,The material is great!! got them in both colors and went with a tall size for one. everyone compliments them!,5,1,0,General,Bottoms,Pants +1035,48,Perfect!,"Order yourself a pair today! my new favorite jean, especially for spring/summer. good color and very comfortable.",5,1,0,General Petite,Bottoms,Jeans +862,44,Chic and flattering,"For the last few seasons,bordeaux releases this top in different materials and a slight variation, but same off-the-shoulder theme (the winter merino wool version was always sold out as soon as it hit the store). this is my third top in this version. it is very flattering but it must be styled right, which an retailer stylist taught me. it must be turned to the side a bit in order to fit correctly (but not necessarily have to be pulled off-the-shoulder). the bottom hem has to be placed at the uppe",5,1,13,General Petite,Tops,Knits +823,65,Best top ever!,"This may be the most beautiful top i've ever purchased from retailer! gorgeous, classy, comfortable and one-of-a-kind! i wish there were another pattern available so i could buy it. runs large; buy a smaller size than you usually wear. you will feel chic and confident in this flattering top. i wear it on the shoulders; a perfect ""10""!",5,1,3,General,Tops,Blouses +345,39,Adjustable and stylish,The adjustable tie is really nice and adds a nice style twist to a black suit.,4,1,0,Initmates,Intimate,Swim +823,47,Gorgeous top! love that it comes in petite,"I saw this on a girl at the winery where i work and i thought to myself - i have to have that top! it is perfect for the fall season. the pattern/print is very intricate and lovely. i think it fits true to size - the petite xxs is just right. the sleeves do not come to the wrist, but the photo here depicts that already. the elastic in the arms feel a little tight, but that would be my own negative comment. the fabric is beautiful and flows just right - it does not feel to big to me at all. i'm s",5,1,1,General,Tops,Blouses +640,40,Beautiful dress but it runs very large,"I love the look of this dress but it runs very large. i am 5'2 110lbs. i ordered the extra small on sale & got a killer deal on it. i intended to use it as a beach cover up since it's sheer, but when i tried it on i felt like i was wearing a mumu. even for the price & for the beach i am going to return it. i'm sad because it is a beautiful cover-up and for what it is i think the quality is good.",2,1,0,General Petite,Intimate,Lounge +909,35,Classy,I got this in the blue and love it. tts and the shape is very unique and classy- better than shown on the model. it can be worn alone or with a long sleeve underneath as a layer. considering the neutral as well.,5,1,0,General Petite,Tops,Fine gauge +936,51,Great sweater - incomplete description,Lovely sweater which fits true to size. i wish i would have known it was 3/4 sleeve....,4,1,0,General,Tops,Sweaters +834,45,Cute country tunic,"I just got this shirt the other day at the store. +to my surprise i needed a size zero. i usually wear a size 4 or small never that small. +i am 5'4 and a 34dd and it was still a little loose!! i bought the blue and brown color combination. +it looked really cute on with a pair of white jeans for summer.",4,1,24,General,Tops,Blouses +884,56,Very boxy,"It was hard for me to rate how this was sized-it is tight through the bust, very baggy and boxy through the body, and short. looked gorgeous on the hanger though!",4,1,2,General Petite,Tops,Knits +1082,41,Lovely white dress for summertime,"Fell in love with the dress at the first sign. yes, have to confess that i always love white dresses- but this dress is not only beautiful on the picture, but also very pretty to put on. material is natural, gentle on my skin; style is simple, romantic, and it goes well with almost everything to dress up or dress down... very comfortable to wear, good for a long moon-light beach walk. +size runs large, have to get petite xxs, and it fits perfectly (normally i go with petite 2 for a fitted dress)",5,1,1,General,Dresses,Dresses +1135,35,Beautiful cross between mensware and women's,"I love this top, it is a cool style mix between mensware and women's. the collar is gorgeous, making it feminine and beautiful. i normally wear a size large in retailer, i would size down. returning my large for a medium. a beautiful shirt for many occasions.",5,1,9,General,Trend,Trend +1110,37,Flowy and romantic,This dress is lovely and has a comfy fit. the green color is gorgeous. i felt the sizing was large and sent it back.,4,1,1,General Petite,Dresses,Dresses +1110,62,Odd...,"So much odd stuff going on here with the cut/fit. the top is sort of tight in the bust, even with a small chest. the sleeves are dolman-style and are billowy at the top, but then tight on even my skinny arms. the slip plus the dress itself took me a good 5 minutes to figure out how to put on...just too much effort. it is otherwise a beautiful pattern, color, and length. just a miss for me personally in the fit department. bummer!",3,0,1,General Petite,Dresses,Dresses +1082,62,The white dress for me,"With all the white dresses to choose from this year, this was the one i settled on. it is comfortable, the quality is good, especially in the edge detail, it's machine washable (which is a must for me and white), and it is easy to dress up or down. i am 5'7"", 125lbs and found my usual size small to fit tts - it is loose fit like the model shot. easy throw on and go dress with cute details to boot :)",5,1,1,General,Dresses,Dresses +1082,62,,"I i hesitate to say that i don't recommend this dress,it really is so pretty,but a different fabric might have worked better. more importantly,the cut is not right,for me anyway. the neckline is a little high and the dress starts to flare out from the lower end of your boobs and continues all the way down giving a very wide lower half,way too much fabric at the bottom....looks like a triangle . if they' done a scoop neck and a shift style it would have been perfection",3,0,0,General,Dresses,Dresses +1110,30,Love this dress!,"I bought this dress to use for maternity photos and it is perfect! i love the flow of the skirt and the elastic waistband worked perfect. i was able to fit in a size 2 (normally a size 0) so i hope to be able to wear it after pregnancy as well. i was worried about the bust area being too small, and while it's a tight fit for me currently it still worked.",5,1,0,General Petite,Dresses,Dresses +1053,48,,"So i typically avoid jumpsuits, rompers, etc. but there is always something that still makes me try them! and every time i'm disappointed. inevitably. which is such a bummer! so i knew this time wouldn't be any different, plus there was only an extra small available to try. which i'm definitely not an extra small, usually a medium maayyyyybe a small. but i kid you not, it fit perfectly!! it was super flattering in every way!! the material is so soft, and light weight, but still thick enough. i a",5,1,2,General,Bottoms,Pants +1110,41,,I'm not sure i understand the negative reviews either. the fit for me was perfect and i saw another lady try it on with a very different body type from mine and it looked great on her. the colors are gorgeous and i am in love with the fact that it has sleeves. maybe i am of an age where i don't always want my arms showing but it is so refreshing to have some choices in retailer of dresses with sleeves. i also appreciate that the slip underneath is a great stretchy material and not the stiff polyes,5,1,4,General Petite,Dresses,Dresses +1086,20,Not as pictured,"I ordered the dress online and found it to be not as pictured. the length hit several inches above the knee. the sleeves are also 3/4 length rather than full length as pictured. i found the cut to be much less fitted through the torso as well. i tried both the small and xsmall, which are my usual sizes. the small was very loose through the torso, the xsmall was better, but looked overall too short, as if it were a petite cut. i am 5'9"", however the model is supposed to be 5'10"".",3,1,0,General,Dresses,Dresses +834,54,Weekend cuteness!,"I bought this top in the caramel brown and white. i'm blonde so the color combo is super cute. matched with a lower rise faded, worn jeans rolled and caramel leather slip on gym shoes and it makes such a cute weekend outfit. the top is very light and sheer so a camp underneath. it's a loose fit but not too much. do a little quarter tuck in the front and roll the sleeves and voila! super cuteness! +the fit was great for me as a slender but athletic build, small bust. true to size.",5,1,5,General,Tops,Blouses +1110,34,Belle of the ball,"Gorgeous blush color, soft flowing material made for a perfect outdoor summer wedding guest dress. the elastic around the waist could have been slightly tighter as the dress is a bit weighted but not loose enough to deter my purchase. i'm curvy and this dress was very flattering. i'm on the shorter side and didn't buy the petite (it wasn't available in store and i bought this the day before the wedding); i had to pick up the dress to walk up steps but was fine otherwise in 2 inch heels. i receiv",5,1,7,General Petite,Dresses,Dresses +834,39,"So cute, honey is surprisingly classy","I so wanted this top in red, and tried on the 0, but it was a little big/long on my 5'1.5"" frame #115 lbs, 30dd#, i tried ordering 0petite, but it was sold out. te only one available was the honey color, so i decided to try it, even though i am very pale... well, i actually do like it. it isn't as popping as the red, but it is super flattering, and the color is actually classy,... so i feel like i could wear this with a dressier outfit, not just casual. i love the feel, the fabric is airy, great",5,1,3,General,Tops,Blouses +1086,39,Love fall dresses!,"I ordered this dress on a whim because i love the classic look, it has long sleeves, and the color is beautiful. i can't tell if there is sparkle in person, it looks like it on pictures, or holes... but regardless, love it. i tried on both xxs p and xs p and found the xs p was more comfortable for me, for those who find clothing at retailer is being made bigger, this is more a ""classic"" size, as in what i would have ordered in the past (this summer, i had to go down in size a lot). the fabric is c",5,1,7,General,Dresses,Dresses +1110,39,Romantic,"Soft and feminine, pretty pastel colors, very romantic. the fit is flattering and feminine, the fabric is light, the lining is soft. color is pale and i may need a little brighter colors, but i might let that pass... i am on the fence only based on color, otherwise, gorgeous dress. the 0 fit me well, but the back touched the ground, so i would probably order petite (front is higher, so no issue there). + +30 dd, 26.5 in waist, 115 lbs for reference with 0",5,1,15,General Petite,Dresses,Dresses +1082,37,Love,"Nice light weight fabric, drapes well. awesome detailing. have worn twice already with lots of compliments.",5,1,0,General,Dresses,Dresses +884,45,Love the color!,"I ordered this top in small petite but wished i had exchanged it for an xsp because it's wide in the arm holes. but i love it nonetheless and wear it with a cami underneath. i love that while it's sleeveless, the straps are wide. this type of wide top is not for well endowed women up top. i don't have that problem so it looks really cute. i also love the length. a lot of tops tend to be really long and for a petite person, shorter tops look best.",4,1,0,General Petite,Tops,Knits +834,49,Great top,"This is a great casual top. it is true to size and a light weight cotton blend. i am an xxsp which fits me perfectly and the tan and white looks crisp and clean. i keep finding myself choosing this top to wear with jeans, cut offs and white shorts. i am frequently chilly, even in the summer and like the long sleeve which i can roll up or keep down. i wish i bought the other two colors before they sold out in my size.",5,1,0,General,Tops,Blouses +1110,56,Gorgeous dress!,"I don't understand the negative reviews on this dress. i absolutely love the fit, may be the prior reviewer was trying a size on that was too large? yes, the fabric and the snaps are very delicate so you have to be careful putting it on and off, but the fit is very flattering on most people. i saw three different people trying it on in the fitting room today so i decided to try it on myself and had to have it! the colors are beautiful and the uneven hem makes it more fun and young. i will wear i",5,1,11,General Petite,Dresses,Dresses +1110,25,Beautiful dress,This dress is great! it's easy to dress up or down and is comfy!,5,1,0,General Petite,Dresses,Dresses +1110,73,Beautiful and artistic,"Loved this dress. it does run a little long even with 3"" high heels. i am5 '3"", and probably would have been +better with a petite size. often i do not like the proportions with petite so i ordered the regular size. i feel very feminine in this dress and love the opening at the side. i can walk in it if i hold the skirt up in front a tiny bit. not sure if i will hem it. the print is pretty; however, busy. i will keep this dress as it does make one look slim and romantic. i added an black belt, w",5,1,1,General Petite,Dresses,Dresses +834,42,Love at first sight!,This top is so good i bought every. single. color. i sized up for more flow but it does run true to size. this is that sweet little summer top that we all long for!,5,1,4,General,Tops,Blouses +1082,41,"Beautiful, versatile little white dress!","This dress is beautiful on! it is flowy and loose but is cut well so it avoids looking like a tent. white dresses with lace can run the risk of being a bit fussy-- the lace at the bottom is a beautiful detail without being too precious and the handkerchief bottom keeps it interesting. can be styled so many ways-- looks great with a cropped denim jacket, belted, or loose with a long necklace. also tried with a sleeveless long sweater vest and it was adorable. the dress is fully lined and feels su",5,1,17,General,Dresses,Dresses +1110,27,Sleeve,"I've been looking for a nice summer maxi dress and after reading some positive reviews, i decided to get the dress. the fabric is soft and has a nice flow to it. however, i had to return the dress because the cuff of the sleeve was too tight on my forearm, which make it impossible for me to raise my arms. + +i ordered size petite xxs",2,0,2,General Petite,Dresses,Dresses +834,53,"Cute top, flatters large bust","I was a little wary of this top but decided to try anyway. so glad i did. the style is great and the fabric is lightweight and comfy. i debated between the blue and the honey and ended up with the honey. it is just so different yet such a nice neutral. i am normally a size 10 (or maybe a large 8) in tops and purchased this in size 6. it definitely runs large. for reference i am 5'6"", 145 lbs, 34dd. not sure why another reviewer said this top isn't for large busts. it was very flattering on me an",5,1,0,General,Tops,Blouses +834,62,Great shirt,"This shirt is a great deal on sale,i would not pay full price.i got it in the honey color and it is really cute. this shirt does run very large. i normally wear a small or size 4 to 6 and i was lost in a size 6. i went with a size 2 and it was perfect for sizing purposes i am a 34c and 5'3"" 112lbs..shirt is a bit lightweight so it is nice for summer or year round.",4,1,0,General,Tops,Blouses +1110,25,Flattering and feminine,"Love everything about this dress except for the elastic waistband. it's a dressier style, and the elastic cheapens the look--definitely needs a ribbon or belt to cover. otherwise the cut and fit is very flattering, the fabric is nice, and the floral pattern is lovely. i found the dress tts (size 4r and i'm 5'4"", 120 lbs).",4,1,0,General Petite,Dresses,Dresses +1110,57,Big disappointment!,"I loved the print and fabric of this dress when i first saw it, but trying it on was a very different story! the photo seems to show a wider, more well-defined waist, with just a small amount of ""blousing"" on top, but this was not the case. yes, the waist fit, but it is a narrow band that was covered completely by the hanging over of the ill-fitting top, turning the entire look into a shapeless and very unattractive fit. sadly, this is going right back!",1,0,31,General Petite,Dresses,Dresses +1053,36,"Liked it, but impractical","Nice fabric and construction. the small fit me, a usual size 6. only problem: there is no way to easily use the bathroom in this thing! seriously. that's why i'm returning it.",4,1,0,General,Bottoms,Pants +834,45,,"The fabric has a smooth feel, and the shape is perfect over skinny jeans. i like the yoked v neckline, a different take on the usual buttons of a popover. i wear a white cami under it from retailer to bring up the depth just a little. great with blue jeans, white jeans, and shorts. i bought this shirt in red, size 2. i'm 5'6"", 125 lbs.",5,1,1,General,Tops,Blouses +834,41,,"Super cute, great for a casual summer day. fabric is nice and light and honey color goes well with denim, kaki or olive green. runs a little large but still looks good especially with fitted jeans or capri pants.",5,1,0,General,Tops,Blouses +1110,41,Beautiful!,"I bought this dress last week for a wedding next summer. it did not appeal to me on the hanger, but once i tried it on, i was so impressed. the green color is lovely and it is lightweight and airy, and it does have a lining which is a plus. i love the little ruffle sleeves and the tie in the back is perfect. there have been comments about the hemline being awkward but the length on me was perfect and has just the right amount of flounce to be feminine. i can't wait to wear this dress! (i am 5'6""",5,1,1,General Petite,Dresses,Dresses +834,33,"Comfy, but not flattering to larger busts","I really liked this top-- the red gingham is adorable, and it looked great tucked into the pencil skirt i was also trying on. sadly, it had two things going against it: +- when i didn't tuck it in, it looked like i was hiding an early pregnancy (it just hangs from the chest, and my bust is relatively large-- 34dd) +- the material is awfully thin, and i don't know how it would hold up (that's a concern when you're spending $90 on a ""casual"" top) +i would certainly consider purchasing this on sale",4,1,30,General,Tops,Blouses +834,43,Love this casual top,"This is the perfect summer top! lightweight and breezy. looks great either tucked in to jeans or shorts or worn loose. loved the blue one, so i came back to get the red one. (i would recommend buying one size smaller than usual.)",5,1,8,General,Tops,Blouses +1110,63,Perfectly elegant,"I saw this dress but was hesitant to purchase it online because of the reviews. i went to the absolutely fabulous new walnut creek store and though it wasn't on the floor they found one in my size in the storeroom. +i tried it on and was immediately enthralled. i am 5'10 and the dress flowed like a dream. i will be wearing it for my anniversary celebration with pearls and victorian earrings. i can't wait. it is lovely. you may need to be a little taller than average to wear this but it is wonder",5,1,0,General Petite,Dresses,Dresses +834,49,,"I originally bought the tan at the store. i loved it so much and ordered the red, but went down a size as it does run big. perfect for the summer.",5,1,0,General,Tops,Blouses +834,46,Cute,I saw this top in store and immediately picked up the red one. i am usually a 6 in tops sometimes an 8 but ended up with a 4. feels a little snug in the armpit area but doesn't look it. i ended up getting the honey color one which looks great with white and army green pants. i loved the red one but felt like i was wearing a picnic blanket. it is a little flimsy and probably won't last that long so if you want to wait for it to go on sale and hope they have your size i would do that.,4,1,5,General,Tops,Blouses +834,45,Super cute & comfy top!,"When i saw this top online i loved it, and in person i love it even more! so perfect for spring/summer and i can see it even transitioning into fall. the sizing is perfect - i am a size 12/l in tops, and the size 12 i ordered is just right. it's loose but not too loose or frumpy looking. the fabric is slightly thin but that's perfect for the summer, but it would be cute layered with a cami or a cardigan when it's cooler. the only thing is, if you a little busty, the neckline might dip a tiny bit",5,1,6,General,Tops,Blouses +1110,27,Beautiful statement dress,"I must disagree with some of the other reviews! when i first saw this dress online, i loved it and couldn't wait to try it on. i didn't order it online because i read some of the other reviews and so i wanted to try it on in the store before i bought it because i was nervous the fit wasn't going to be good. they were so wrong! maybe it just takes a certain body type. i have an hourglass figure, and i'm 5'8"" tall, i tried on a size 10, and it fit beautifully! the waist is very form fitting, and t",5,1,1,General Petite,Dresses,Dresses +1110,26,Not for me,"I love the pattern and style of the dress, but unfortunately, it's doesn't fit quite right. the top is too loose (the clip doesn't work well) and the waist line of the dress sit above the waist. and the sleeves are tight (which is shocking to me because i have skinny arms).",3,1,0,General Petite,Dresses,Dresses +1110,42,Gorgeous dress,"The dress is absolutely beautiful. the fabric is light, the pattern is not overwhelming and has a zipper on the side to make it more fitted in the waist. the top is blousy, but i am only a c cup and it still was perfect. the bottom has an uneven cut that makes the dress very interesting. i love it. i am usually a size 2 or 4 and the size 4 was perfect.",5,1,2,General Petite,Dresses,Dresses +834,56,Cute top,"I bought this top in the brown /white combo although i really wanted the red /white but haven't had any luck finding it. i am never sure of my size in retailer but run anywhere from small to large depending on brands. i'm 5'4"", 140, 34 ddd. i wish other reviewers would state their sizes to help others purchase.. i got this shirt in size 8 which usually never happens to me. i wear a white tank or cream cami underneath since it is very sheer and dips low at the cleavage area. it is still flowy but n",5,1,1,General Petite,Tops,Blouses +1086,22,,"Once i tried this dress on i understood why the pricepoint was so high! it's very thick ( but not uncomfortable) and very well made. love the color and style of this dress, but as others have said, the model picture is deceiving. try it on in store to see if you like it for yourself! i'm curvy on top and bottom with broad shoulders and personally it was a no for me, i found other dresses that i loved more, this one was pretty but wasn't a hit for me.",5,1,0,General,Dresses,Dresses +630,34,Perfection,"The fabric and color is stunning. very well made. i'm 5'8"" and this romper works fine. it is long enough in the body. true to size. love it!",5,1,1,General,Bottoms,Shorts +1080,62,Too much fabric,Love the colors and top part but it runs extremely large and there is way too much fabric it is almost like a moo moo. had to return,5,1,1,General,Dresses,Dresses +1086,34,Too short,"The dress is not like pictured. it is above the knee and sleeves are neither 3/4 nor full length-somewhere in between. i am 5'4, 112 lbs, bought xs regular. had higher expectations for the price. going back to the store.",3,0,2,General,Dresses,Dresses +1110,23,Beautiful!,This dress is amazing! i have to say when i picked it up to try it on i thought it would just be an ok dress but i thought might as well try it on. to my surprise it was more than perfect! the waste cinches in when it is zip it up and the blousing in the chest fits lovely.,5,1,0,General Petite,Dresses,Dresses +1110,26,Simply beautiful,"I had been eying this dress online for a while and when it finally came into stores i was so excited! this dress is so gorgeous and very flattering on my body. i love the bottom of it, it is more of a u cut in the front and square in the back. add an ada wrap belt and perfection!",5,1,1,General Petite,Dresses,Dresses +1110,47,I like this dress!,"I bought the xs and the fit was good. i'll probably add a snap at the bust area because the slip underneath does show like a camisole, which is fine, but i prefer it closed. also i'll add a belt to cinch my waist, booties and maybe a hat.",4,1,4,General Petite,Dresses,Dresses +1110,66,Wonky fitted top,"I love the material & flow of the bottom half of this dress, it fits like a charm. for reference i am a 34-29-38/39, the size 6 was spot on. that being said, i was a little disappointed by the top portion of the dress; the dolman sleeve seems odd & the faux wrap is gaping & doesn't seem to clip in the right spot, sloppy, not like on the model. the dress would be perfect as a full sleeve & a little snugger of a wrap. i could alter the top, but the material just wouldn't lay right to the waist.",4,1,0,General Petite,Dresses,Dresses +1110,37,Love it but have to return,"I love this dress but i will return it because the sleeves are too tight. i have never had this problem before. i ordered a petite 0 and petite 2. for reference i am 5' 4"" tall and 117 lbs. the length is perfect and i really like the style. if the sleeves had not been so tight i would have kept the petite 0. the petite 2 sleeves were no looser. sorry that this did not work for me.",2,1,5,General Petite,Dresses,Dresses +1080,44,Love this dress!,I love this dress! it is so comfortable. the material feels nice and the print is beautiful. the only reason i didn't give this a 5 overall rating is because this fits a little big. i bought a petite medium and the elastic around the top is not as tight as i'd like. it still fits and stays on but it would feel a little better if it was a little more snug at the top. i love this dress because it is casual enough to walk around in but still feels somewhat dressy. i will probably take this dress wi,4,1,0,General,Dresses,Dresses +630,27,New summer staple,"This is so pretty for summer. it is very lightweight and flattering on. the color was a little brighter than i expected, but it is still beautiful!",5,1,0,General,Bottoms,Shorts +1110,32,Perfect,"Being 5 ft, long/maxi dresses are usually not what i buy, but i tried this dress on and it was the perfect length for me. i wear size 2 or 4 and i tried on both sizes in store. the 4 i tried on had a shorter length for some reason than the 2 (maybe it was a petite and was mislabeled?). i ended up getting the 4 and i love the dress!",5,1,1,General Petite,Dresses,Dresses +1110,34,Love!!!,"Gorgeous dress! love that it's flowy, soft, and fits very well. it does run a size smaller. i usually wear a 4 and went with a 2p one this one. the sleeves are a bit tighter on the petite than the regular in the same size.",5,1,2,General Petite,Dresses,Dresses +1082,39,Versatile & beautiful,"Living in a warm climate, i'm always on the hunt for great spring/summer dresses that can be worn to work, dinner, or just general out and about. +this dress is a great length with the varied hemline that gives you enough length for work or dinner. it's also great for a summer cocktail party or afternoon out shopping. i'm a traditional hourglass figure, larger on top and bottom with a small waist, dress size 6 or 8 depending on the top. i roared this in a medium and it's perfectly comfy and hang",5,1,2,General,Dresses,Dresses +1110,35,"Sweet, pretty and romantic",I tried this dress on on a whim and will definitely be getting it! the fit was perfect as it is not to structured so its really a more relaxed piece even though it doesnt look it... but the way you feel when you wear it is just magical!! i love this dress!!!,5,1,0,General Petite,Dresses,Dresses +1110,56,"Gorgeous, but...","Everything about this dress is beautiful except for the hemline. the color is beautiful; the old-fashioned, wispy femininity is beautiful. the dress probably could use something better at the waistline besides elastic, maybe ribbons to tie, but the hemline is what kills it. it is half a normal-length dress (in the front) and half maxi dress (in the back). the designer should have chosen one or the other, not both, and it would have been much better. for the category of aesthetic/design, i would",4,0,17,General Petite,Dresses,Dresses +884,44,,I like this top very much. i love the color and the embroidery makes it very dressy. it fits right for me however the picture doesn't show it well but there's a bit too much fabric on the sides.,4,1,2,General Petite,Tops,Knits +834,49,Super cute but runs very large,"I absolutely loved this once i got it out of the package. it's a very vibrant print in the red print, almost a picnic vibe, and the material feels soft and high quality. it runs very large though, i usually take an 8 or maybe a 6, and am busty, and in this i am pretty sure i will need the 4. i almost convinced myself i had lost weight when i tried it on! but i will return the 8 and get the 4 in the red, as well as probably at least one of the other colors as i like it so much.",5,1,2,General Petite,Tops,Blouses +1110,39,Romantic,"Soft florals on light as air chiffon layers--what's not to like on this romantic dress? i appreciate the elastic waist and the tie at the back of the neck, as it gives me flexibility during my weight fluctuations. my only regret is that i'm too darn short for regular length and will have to wear platforms since the back of the hem drags on my 5'3"" self. purchased the size 8 and i am 140# 36dd.",5,1,2,General Petite,Dresses,Dresses +1110,61,,Charming dress! fit perfectly with great movement through back and chest area. flattering length(s) with just the right amount of fabric. inside dress sheath or slip dress. zips to waist for fit. i am smitten with the dress - just love it!,5,1,9,General Petite,Dresses,Dresses +834,41,Recommend on sale,This top is cute. i purchased a 2 instead of my usual size 4 and it fits well. i only recommend buying this top on sale. it is not good quality! there are loose threads hanging out of the seams all over the place and it is see through. it is totally nuts that it costs $88.,3,1,4,General Petite,Tops,Blouses +1110,35,Floral & fab!,"This is the perfect dress! for it being a long maxi, it's surprisingly lightweight. the built in slip it covers everywhere you need it to without detracting from the overall look of the dress. i absolutely love it and wish it came in other colors/patterns.",5,1,1,General Petite,Dresses,Dresses +834,47,"Color is off, middle too wide.","I so wanted to love this top. i ordered the ""blue"", which is blue and orange. i thought the orange would be brighter, it is not. it is a dull color. also, i'm usually a medium, this top fits fine on my shoulders/bust 34c, but it was huge around the waist, making me look a lot larger. if this top were a bit smaller around the waist, i would keep it, but it is going back.",2,0,5,General Petite,Tops,Blouses +1082,38,Too much material at the bottom,"Unfortunately, this dress did not work for me like the other reviews. i am 5'8, 130lbs, and the dress looked like a tent on me (size s). there was just way too much material at the bottom. also, while the dress is lined, both layers are quite thin- not see through, but i would not call them substantial either. for the cost of the dress and the material, it wasn't worth paying more to have it tailored to fit better.",2,0,6,General,Dresses,Dresses +884,45,Tight in all the wrong places...,"The model looks awesome in this cute top, but on me it looked boxy but was too tight around the chest and was too short (for reference, i'm 5'7,"" 140 lbs., and 34c). the front is non-stretchy eyelet lace cotton fabric, yet the back is stretchy. in theory, it's pretty, but in reality it doesn't work - at least for me. i think it might work for someone petite with a smaller chest.",2,0,3,General Petite,Tops,Knits +834,51,Better in person....,"I would never have bought this top from the online photo but happily came across in in my local store. i bought it in the hot pink gingham check and it is so cute and fresh. will work well for hot summer days when i may want to wear rolled up sleeves as it is very lightweight and gauzy. i bought my usual xs/0, (5'7"", 32b, 115lbs), and whilst it is looser on me than the model, i would still say that it is tts - maybe a little fuller in the back than i would like, but i will wear mine partially tu",5,1,6,General Petite,Tops,Blouses +1110,45,Beautiful,I love this dress so much. absolutely beautiful true to the size. since i start wearing it i got so many good compliment. the flowers is very spring and summary. very sexy to the bottom....,5,1,1,General Petite,Dresses,Dresses +834,44,Proper plaid,"This top is girl-next-door sweet. i'm mad about plaid so it was love at first sight for me! i love a blouse with a touch of spandex because i like the fitted look but not tight or loose, and spandex gives a bit of a yield. size 4 regular fits me well (i'm 5'2"", 34b, 26 waist, 36 hips), the hem falls at mid hip and the sleeves fall about 1/4"" pass my wrist (i plan to wear this top tucked in and the sleeves rolled up since the weather is warmer now). the color honey is versatile, blue motif has a",5,1,17,General Petite,Tops,Blouses +630,38,,"This is the best little romper i have ever tried on. i don't typically love myself in shorts but these are so flowing and the pattern is so pretty i couldn't resist. the material is nice and the length is great. i'm 5'6"" and 135lbs and the small fit great.",5,1,1,General,Bottoms,Shorts +1053,38,Not for this jumpsuit girl,I typically do well with jumpsuits but this one did not work. i am smaller on top than the bottom but not by much. i got the xs and it was tight in the calves and short in the waist but the top fit perfectly. maybe a s would have fit better but i got it on sale and s was out of stock. it defiantly did not look like it does on the model. :) i am typically a size 2. the material is really nice. i was hoping for a jumpsuit that could be casual an covered since most jumpsuits tend to show more skin,4,1,0,General,Bottoms,Pants +1086,70,"Please, post accurate measurements","I'm 5'4'', between sizes 12 and 14. i ordered a size petite large, and it's a bit loose, which is acceptable, but i'd like to try a regular size medium to see if it'd be more fitted like i see in the model. +my problem is with the length. i read the description and it says petite = 40.5'' of length. the large petite i ordered is above my knees, this is not 40'' of length by any means, it's 36.5''. +i'd really appreciate if the size info was correctly available.",4,1,3,General,Dresses,Dresses +834,46,"Easy, springy blouse","This is a great long sleeve, casual shirt for spring - soft and airy. pairs well with jeans. i found that it fit me just right. i'm not very tall, but my shoulders are a little broad for my height, which typically puts me in the ""small/medium"" range, so i got size 6 regular. this hits just below the hip and the shoulders are spot on. very flattering yolk that gives a little contour to the bust. gauzy fabric has wrinkled texture which gives it a casual look and feel. my only problem is there aren",5,1,8,General Petite,Tops,Blouses +1110,38,My new go-to spring dress,"I... love... this dress. the fit is incredibly flattering (and i'm currently carrying more weight than my normal size). i selected a 6, which is about a size larger than normal, and it was a perfect fit. i tried on a larger size for measure, and the 6 provided a (perfect) fit and flare. i've worn the dress on three occasions, already, and each time friends remarked on their admiration for the dress, itself and flattering style for me, i have no issues, at all, with the cut, and to me, the bias a",5,1,3,General Petite,Dresses,Dresses +834,60,Light weight and comfortable,This top is very light weight and comfortable. i am normally a 8/10 in tops due to my bust size but ordered a 6 based on other reviews. it fits great. i really like the fit and the pattern. it has been a great summer shirt and i can see myself grabbing for it in the fall paired with skinny jeans and a cute bootie.,4,1,0,General Petite,Tops,Blouses +834,46,Love it!,"This is a precious! it's a little thin, as i prefer a thicker fabric. however, wearing a tank top under it works perfectly. i have it now in both colors! great price on sale!",5,1,0,General Petite,Tops,Blouses +834,43,Fab shirt,I got this shirt in red plaid and love it. super cute without being too trendy. i wore it with shorts and got lots of compliments.,5,1,0,General Petite,Tops,Blouses +1110,55,Flowing and flattering,"I originally purchased this dress in a petite 6. i am 5'3"", 125lbs with a 36"" bust. the petite 6 was a bit too tight so i returned it and went up to a size 8. so happy i did! this dress drapes and flows beautifully and i find it immensely flattering to my hourglass figure. i also adore the floral print! one reviewer objected to the way the bodice drapes and the very small hook closure which seemed insufficient. i did not object to this characteristic. it fit me beautifully throughout the bodice/",4,1,4,General Petite,Dresses,Dresses +834,37,Super cute summer top,"This is not usually a top that i am attracted to, but it is so cute paired with jeans and sandals. nice, light-weight top for summer.",4,1,1,General Petite,Tops,Blouses +931,47,"Very big, scratchy","I'm petite, and i knew buying this that it would be a big sweater - that is the look that is portrayed on the model. the sweater is scratchy, the neck was so big and bulky i had trouble making it lay right. it looks great on the model here, but not on me. going back. so bummed. the color gray is true to what is shown and it has little ""holes"" or openings across the shoulders. so there is a tiny bit of detail. overall, not a great sweater.",2,0,0,General,Tops,Sweaters +1082,68,Disappointed,"I was very excited to find a fun and lightweight white dress for spring/summer. for the past two years i have found two of my favorite white dresses. the material that this dress is made out of did not look high quality at all. the fit looked more like that of an old nightgown. this dress has no shape to it, although probably comfortable, not flattering. i had high hopes for this dress and wish that it looked like it does in the picture, in person.",1,0,0,General,Dresses,Dresses +1110,47,Pretty,"This dress is very flattering, comfortable and made me feel pretty!",5,1,0,General Petite,Dresses,Dresses +1080,50,,I love this dress but it definitely runs big. i bought a size small and i'm between a 4 and a 6 and will have to return for an xs. the top feels like it will fall down and i'm a size 34c,5,1,7,General,Dresses,Dresses +850,35,Perfection,So soft!! such beautiful fabric!! it flows so gracefully and looks lovely with black leggings as pictured. one of my favorite retailer purchases to date...,5,1,0,General,Tops,Blouses +1020,33,,"This skirt runs small because of the stitching around the hips. the waist fit fine but the hips were very snug, and i'm relatively slim in the hips.",4,0,1,General Petite,Bottoms,Skirts +926,46,Cozy sweater but runs large,"I bought this sweater because i love twinkle's knitting patterns and yarns. this sweater doesn't disappoint. i love all of the great details like the detachable collar, the double buttons along the front and the back panel is in a seed stitch (which differs from the front and sleeve stitch). it's super warm and cozy but it's also very heavy. depending on the temp outside, i can wear this as a coat. but i think the sweater will stretch over time because it's so heavy.",4,1,5,General,Tops,Sweaters +854,32,,Love the look! it's a little tight but i still like it.,5,1,0,General Petite,Tops,Knits +854,39,,"I love the detail on this shirt! it is sheer, but looks great with a cami. great unique piece .",4,1,1,General Petite,Tops,Knits +854,35,Pricey for what it is,The front and back materials differ. the back of the shirt is soft and thin. the front embroidery is stiff but i imagine it will soften after a wash. pretty shirt though.,4,1,1,General Petite,Tops,Knits +1020,39,"Beautiful, unique piece","Love it! i am 125# and usually a size 2-4 or 26-27 in bottoms. typically size up for holding horses. based on other reviews, i ordered this in a 2. it stretched just a bit after wearing all day, so i'm glad i didn't get my normal 4. the fit is great, quality is great. it dresses up for a casual office day, wearing well with boots and tights, and i imagine pairing with tshirt and flip flops over the summer. i unique piece that quickly became a favorite.",5,1,0,General Petite,Bottoms,Skirts +1110,40,Great swing dress ... but not for me,"On the hanger, this looks like a great dress .. especially to wear to a hawaii wedding. on me, not quite. + +the bell shape of this dress made it appear that i was carrying extra weight in the middle ... and the shorter length accentuated my big calves. + +for reference, i tried a 00p and i'm 5'1"", 102#, and 34a.",4,1,0,General Petite,Dresses,Dresses +850,39,Get it quick!,Can i tell you this top is amazing?! get it quick before it sells out!!,5,1,0,General,Tops,Blouses +854,31,Very pretty but sheer,"I wanted to love this top but found it to run small and was too sheer for my taste. it is a beautiful top though, but you will need a cami with it.",4,1,5,General Petite,Tops,Knits +1020,42,So cute!,This skirt is so cute. this is a staple to have in your wardrobe. i wear it with boots and boot socks. but tights for cold winter days as well as flip flops in the summer. i got my true size of 4. its fits perfectly. i love the length with a peek of leg when you walk!,5,1,4,General Petite,Bottoms,Skirts +854,46,Pretty top,"The only reason i gave this top a 4 star, is that it didn't have enough room around the bust area. i'm a d cup, and the front didn't button properly. but for the price i paid (40% off sale price), i have no coplaints. +i would recommend.",4,1,0,General Petite,Tops,Knits +850,39,Perfect tunic!!,"Love, love this tunic. my size 4 fits perfectly with a little room, material is very soft and very comfortable. could be worn with leggings or with a belt as a dress...so many options. so worth it!!!",5,1,3,General Petite,Tops,Blouses +854,40,Beautiful sheer top with weird hem,"I'm undecided about this shirt. this design is absolutely beautiful. but the shirt is very very sheer and the front comes down so low in a curved hem line. so, when you wear the necessary base layer, the shirt extends several inches beyond that and it looks kind of odd. i really wish tiny would make some beautiful shirts like this that aren't sheer and have a shorter front. i purchased my regular size and it fits a little smaller than other tiny shirts i have purchased. since the shirt is so bea",3,1,11,General Petite,Tops,Knits +854,41,Another great tiny top.,"This top is similar to other tiny tops that i have ordered in the past...beautiful embroidery, great neutral and metallic color pallet that goes with everything, and light weight. the top does run small, so i needed the large size to accommodate my 38in bust plus a thin cami (shirt is see through). the large fit similarly to the fit on the model.",5,1,0,General Petite,Tops,Knits +854,58,Extremely sheer!,Before i ordered this i noted the other reviews that said it was sheer but thought i would just wear a layer underneath. unfortunately it was one of the sheerest fabrics i've ever seen. would love it if it could have been a more substantial fabric. to me it wasn't worth the money even on sale.,2,0,0,General Petite,Tops,Knits +430,23,,A great long line bra! beautiful and well made however it's tough to get the fit perfectly right. i usually wear a 32 b or 34 a and am 115lbs. the small was the best fit as the 32 (xs) was a very small 32. i could almost say it more of a 30 if that's even a size. it also rubs my skin few places so definitely not meant to be worn for more than a few hours. otherwise i recommend it!,4,1,1,Initmates,Intimate,Intimates +854,27,Love love love...just really sheer,Absolutely love this shirt - the embroidery on the front is beautiful. gold and silver metallic thread with good quality. very slim fit through the torso with loose sleeves. the only downside is the cream material is very sheer - definitely have to wear a tank underneath.,4,1,0,General Petite,Tops,Knits +854,42,Sheer shirt,"What drew me to this shirt was the beautiful silver and gold embroidery on the front. the shirt was folded at the store, which makes sense because if it were hung it up, fewer people would try it on. this shirt is sheer from the front and more sheer in the back. this is what bugs me about so many ""clothes"" that are made these days: they are so cheaply made, so thin with cloth, that you are forced to layer with a camisole or something else in order to wear it in public. i can't wear sheer clothes",2,0,65,General Petite,Tops,Knits +926,67,Beautiful !!!,"I must say that at first i had mixed feelings about this sweater. i was actually going to return it because i was unsure about the style and color. the color is to me like a lavender mauv-ish color but the description is actually ""natural"" . i must admit that in some light it looks more brown then lavender . regardless i think that in itself tells you that this sweater is not like any other. i actually wear it as a coat and its become an essential part of my wardrobe. i found the size to be true",5,1,0,General,Tops,Sweaters +854,32,"Beautiful, slim fit top","This shirt is stunning- definitely a shirt for special occasions. it's more than i would normally pay for a top, but it is a really special piece of clothing. the fit is slim- i'm 5'6"" and 118 pounds. i typically wear an xxs or xs in retailer clothes. the xxs is just right. it is quite sheer, so i imagine i will wear a nude tank top underneath.",5,1,6,General Petite,Tops,Knits +854,35,Lovely top,This top looks fantastic on. definitly great when you want to look a little more dressed up! the fabric is a bit sheer so i will wear a nude camisole underneath. the design has the perfect amount of shimmer to make it dressy. it is so silky and feels great on! the neckline has the perfect plunge too.,5,1,0,General Petite,Tops,Knits +854,37,Gorgeous,"After reading the other reviews, i felt compelled to write one for this top. it is not often that i get to shop at an retailer store, but a few weeks ago, i had the pleasure. i saw this top, and while it was not on sale, i had to have it. yes, it is sheer and so you do need a camisole under it. the gold and silver embroidery is gorgeous. to be honest, this is my favorite top in my closet right now. i can dress it up or make it more casual. and, now that it's on sale, don't hesitate in this purchas",5,1,2,General Petite,Tops,Knits +1104,53,Okay,"Overall, i was pleased with this dress. i didn't love how the front wrap transitioned to the back. it is comfortable and versatile... it can be dressed up or down.",4,1,0,General Petite,Dresses,Dresses +1104,35,Surprisingly awesome,"The online pictures do not do this dress justice. the materials between the top and skirt are different with the black part being a soft, sweater feel and the bottom part being an appropriately thick knit feel. the contract is stunning and is largely washed out in the online pictures. this is not the kind of dress you see on a rack and think ""oh my gosh, that's the one!"" but if you try it on, you will have this moment. it is comfortable, flattering, and slimming-a prefect everyday dress.",5,1,9,General Petite,Dresses,Dresses +862,58,Even cuter than picture shows,Lots of seam and stitching details make this even cuter than the picture's initial impression. fabric drapes nicely. the sleeves are a little tight if wearing something long-sleeved underneath. overall very unique!,4,1,0,General Petite,Tops,Knits +262,26,,Love the pattern. the pants are really cute! perfect for pajamas or casual outfit to go to a fiends house in. they do have a funny seam above the knee but i still find them comfortable,4,1,0,General Petite,Intimate,Lounge +1104,53,Short; more of an empire waist than photo shows,"I'm 5'6"" and it hits me at mid-thigh. the top (black/camel version) is sheer enough to need a cami. the waist is quite high. not flattering for me--the empire waist makes me look a bit pregnant--plus i don't want to deal with having to wear a cami.",3,0,5,General Petite,Dresses,Dresses +1104,59,Not typical of retailer quality,"This dress is so cute in the photo and fit true to size, but the material is slinky and felt cheap. the stitching was also poor quality. i am so thankful that retailer will let us order a batch, try on and return in store...this went back.",2,0,2,General Petite,Dresses,Dresses +181,68,Just right,"I feel like snagging a pair of these was the equivalent to standing in line for black friday, as they always seem to be out of stock. now i know why. these are soft, comfortable, and slimming. they're somewhere between the hold of control top pantyhose and spans--they don't fall and sag throughout the day and are nicely slimming without being pain-inducing.",5,1,0,Initmates,Intimate,Legwear +721,33,Lovely chemise fabric!,Love this print and fabric! its soft and comfy with adjustable straps. so pretty and feminine!,5,1,3,General Petite,Intimate,Lounge +1104,29,Better in person,"I tried on this dress in the store and was pleasantly surprised with the fit and the look. it looks way better in person than in the pictures. the picture really doesn't do it justice. i consider myself a ""slight"" hour glass figured girl and this dress at the top hit me just right so that the crosswrap looks like it was made for my body and the peephole/keyhole in the front (you can hardly see on the model photo) is visible. i'm so happy with this dress!!! i feel like i could wear it at work/chu",5,1,0,General Petite,Dresses,Dresses +1104,63,Sweet surprise,"Don't know why but i didn't have high expectations for this dress. turns out it's uber flattering! makes my waist look tiny, accentuated bust. perfect for those of us with straight figures looking for a little more curves. bottom half of dress has heavy silky linking. top half unlined and a bit thin. color is almost pearl -- very very light gray. i'm between xs/s (33b-26-36, 5'8"" 120lb) and went with a small. hits an inch above knees. sleeves slightly loose through upper arm which is always bett",5,1,25,General Petite,Dresses,Dresses +1104,39,Flattering dress,"Love this dress, very flattering fit and the fabric does not feel heavy but is sturdy - i wore it for first dinner out with my husband after losing most of my baby weight and felt great and confident in it.",5,1,0,General Petite,Dresses,Dresses +862,62,Practical and pretty,"Love this cardigan as a wardrobe staple to quickly throw on, especially over dresses (but also anything). it drapes beautifully, and i love the button closure detail. it is definitely a thin, soft, light-weight knit, but i think that makes it practical for year-round use, much like other items by bordeaux.",5,1,0,General Petite,Tops,Knits +862,65,Bordeaux for the win,"As per usual bordeaux is perfect with this cardigan. very soft, washes well. love it.",5,1,0,General Petite,Tops,Knits +862,53,Great lightweight jacket,"I love this jacket so much, i bought two. it goes with almost everything and is a nice weight for almost any weather. i recommend you grab it while it's on sale.",4,1,0,General Petite,Tops,Knits +855,36,Perfect summer tee,This tee is amazing. it's light weight and perfect for the summer heat. the detail of the cross and tie back is perfect to elevate the style. this is going to be a solid staple in my tee collection. i wish it came in other colors because i would buy them all.,5,1,3,General,Tops,Knits +1104,28,Fit weird,I really wanted to like this dress and was encouraged by the positive reviews. the dress itself was very comfortable but was very unflattering. the top fabric hit my ribs funny and made me look really wide.,3,0,1,General Petite,Dresses,Dresses +1104,39,Soft and warm,"I like the contrast of the skirt with the bodice, the length of the sleeves, adn the subtle cut out at the neck. the cut is very flattering, adn i am glad the daker color is at the top, hte bottome color would wash me out. i tried on the regular size nad i would not get a peitte in this as the size was the perfect length for me. petite would be too short for my liking. (regular hit just above the knee)",5,1,7,General Petite,Dresses,Dresses +262,39,Not for me,"I tried these on because the color is really pretty and fun, and who donse't want a pair of comfy/cute pants... but they looked awful on my muscular thighs... i don't think the cut will be falttering on 99% of the population. also, not as comfortable as they looked, the crotch seemed a little ""low"" on me, though the pants were in the correct size.",3,0,7,General Petite,Intimate,Lounge +964,40,,I wanted to love this jacket. so soft and great color. unfortunately it is just too light weight. it is almost like shirt fabric. nice heft to the fabric though. nice length - accept the sleeves were short on me. i am 5'10 and 135lbs. the small was the right size. i was looking for something slightly warmer to layer.,3,0,4,General,Jackets,Jackets +1104,26,Classic and sophisticated,"I recently purchased this dress at my local retailer when it was 40 percent on sale. i was overwhelmed with how much i liked it. it's comfortable, elegant and very chic. + +i will make this my go-to dress from now on.",5,1,1,General Petite,Dresses,Dresses +999,38,Full skirt,"I ordered this skirt hoping i could wear it to work as it looked tailored on the model. this skirt is made from a heavy material but flares out. it is a whole lot of skirt! i'm 5'2"" and short waisted it looked like i was getting swallowed up. i love the colors and design but it just overwhelmed me. it would work on someone taller.",3,1,1,General,Bottoms,Skirts +1104,39,,"I am 5' 2"" about 118 lbs. thought this fit really well. very comfortable material. i wish the skirt was a different color-feels a little bland.",4,1,0,General Petite,Dresses,Dresses +999,39,Not exactly what i expected,The fabric is very thick and textured almost like upholstery and has no give to it. the zipper is a little tricky to get all the way up because of the fabric thickness. i looks cute and holds its shape. it may run a touch small because of the fabric. the colors are great though and i really like it.,4,1,1,General,Bottoms,Skirts +1104,35,Cute dress,"This is a very cute dress that i did not keep. mainly because i did not like the neckline on me. if it had been different i probably would have kept it. i liked the fabric, the top is a little thin, but i did not think it was sheer. the bottom part is sheer, but there is a lining. it drapes beautifully. it is a little like a maternity dress, but not enough to dissuade me.",4,1,1,General Petite,Dresses,Dresses +1104,35,Flattering and lovely sweater dress,"I have been on a search for a dress with sleeves that cute enough for date night. as a bigger girl than most retailer reviewers, i was happy to find this covered my ample chest and between the crosswrap and a little flare in the skirt it camoflauges my belly. it is a sweater dress, which is not easily noticable in the web photos, and can certainly be dressed up for a dinner or for the office.",5,1,3,General Petite,Dresses,Dresses +262,49,Adorable,"These pants are soft, fun print and comfy. they are a drop crotch, but the cut is flattering without bunching up between legs. they are perfect for pjs all day type day!",5,1,3,General Petite,Intimate,Lounge +862,63,,This is my new favorite sweater. it is lightweight and drapey. very flattering. can be dressy or casual.,5,1,0,General Petite,Tops,Knits +1094,57,Perfect except slip,This is my new favorite dress! my only complaint is the slip is too small and the dress cannot be worn without it. i can't order a size up as the dress would then be huge. not sure what the solution is but the dress itself is stunning.,4,1,3,General Petite,Dresses,Dresses +1078,34,Such high hopes!,"I purchased this for a very good price and i typically love maeve... should have been a win-win. the fabric is thin and slinky in the most unfortunate way. it made finding appropriate undergarments very difficult. i had to add a slip (that helped) and figured that since i'm losing weight, it would look better when i'm down a few more pounds. that being said, i didn't find it to be figure flattering. i have a tummy and there was at least one photo from the bridal shower i wore this to, where i lo",3,0,0,General,Dresses,Dresses +262,49,Comfortable but not super-flattering on me,"I tried these on at the store and the fit was good, the length was even ok for me as a petite person. the fabric was substantial and mostly cotton, which i like. but i felt like the floral pattern drew too much attention to my thighs, so it wasn't ultimately something i felt i would wear. still a nice comfort piece if you are ok with a floral pattern on your lower half.",4,1,1,General Petite,Intimate,Lounge +999,24,Its okay,The pattern of this skirt is adorable and looks better in person but the fabric isnt the best. it feels like an elastic fabric and is way to volumous. overall not my favorite.,3,1,0,General,Bottoms,Skirts +262,65,Comfy pants,"These pants overall are very comfortable, but have an unusual fit. they tend to run a bit short, and i always have to get pants hemmed shorter, so if you have long legs or like more draping, you probably won't like these. they also ran a bit large in the waist and thigh, a bit puffy, i had to size down in order to get a good fit. very good quality, and cute design.",4,1,1,General Petite,Intimate,Lounge +1104,42,Compliments,I wore this dress to work the other day and got so many compliments on the fit and the design - the wrap on the top. i got it in grey and it's a beautiful color for winter. the dress is very comfortable to wear.,5,1,3,General Petite,Dresses,Dresses +1078,41,Falls nicely,I bought this dress for work and post work happy hours. love it! it's material is high quality and is flattering since it falls nicely on my postpartum figure. it's a little shorter than i thought but still appropriate for work.,5,1,0,General,Dresses,Dresses +1104,34,Cute and comfy,"This dress has a great design and fits very well and looks great. although the material is not cheap it is very warm and doesn't breath very well which is good in the winter. the only complaint i have is there was a small snag in it, but i was able to fix it my self.",4,1,0,General Petite,Dresses,Dresses +1104,60,Super flattering!,"I worry when i have an elastic waist, or something that resembles this, but the dress hangs like a dream. +no puffing out, no gathers that you can see. +it is not sheath, but not a line either, kind of in between, hits several inches above my knees, but perfect with some black tights for winter. i saw the note about grey, have to try it on agin in daylight, but i would say think black on the top, light camel color on the bottom +i am 5'8, typically wear a size 12, and it was true to size for me +the",5,1,23,General Petite,Dresses,Dresses +721,35,Sweet stripes,"I love this little chemise! the adjustable straps sold me because i'm petite. i generally wear a small/27p. i'm about 5'1"", 124 lbs. i purchased a small and it fit perfect! the fabric is nice, not too thin or too thick. i would totally wear it just as easily as a nightgown or beach coverup. i've never been able to wear scrappy dresses, but it could probably pass for one of those too. it's flattering and pretty without being too ""pretty"", if you get my meaning.",5,1,3,General Petite,Intimate,Lounge +262,50,Comfy and cute,"My size was not available so based on reviews stating the bagginess of a certain area, i sized down and glad i did. i never size down because i do not like tight clothing, especially casual wear. nice muted print and good quality terry material. recommend, but size down if you want a more fitted feel.",4,1,0,General Petite,Intimate,Lounge +1104,39,,,5,1,0,General Petite,Dresses,Dresses +262,31,Awkward fit for me,"Love the way these pants look in the pictures, great quality, but the style isn't really me. i gave it a try, so that's what counts!",4,1,0,General Petite,Intimate,Lounge +855,32,Perfectly drapey,"I saw the shirt on the retailer website and new i had to have it. when it arrived, it was perfectly draped, light and airy, and incredibly soft and comfortable. it's perfect to throw on with yoga pants for errands or dress up a bit a casual night out with friends. would buy this again in several different colors if they were offered. 9/10.",5,1,0,General,Tops,Knits +1104,29,Perfect dress,"Great quality and extremely flattering. bonus that it is on sale. i felt like this dress was a godsend. i am five months pregnant and needed a dress that made me feel comfortable but not frumpy. i think i'll get a lot of mileage out of it, as there's enough stretch to get me through the next few months and then (hopefully!) i can wear it after too. also can be dressed up or down, so appropriate for many occasions. i believe it runs true to size (i sized up, from xs to s, for obvious reasons, but",5,1,1,General Petite,Dresses,Dresses +1104,32,Much better in person!,"Yes, this is a great dress! i wasn't sure about it online because of the color combination. i think i would have preferred the gray color but it was sold out. it received very good reviews online so i thought it was worth the risk at the sale price. i am always on the hunt for great dresses at great prices (who isn't?!). once i received it and tried it on, oh wow! i love it. it is so flattering. it is a very pretty dress. i think i will wear this all the time. i am actually thinking of all the d",5,1,0,General Petite,Dresses,Dresses +1104,41,Cute dress,Cute dress but not for me. the waist is too high and the sleeves are tight. maybe on a different body type this dress would be perfect. i returned it.,3,1,0,General Petite,Dresses,Dresses +522,27,Cheeky!,These bottoms are very cute but defiantly cheeky! i would recommend sizing up if you want to have more coverage.,4,1,0,Initmates,Intimate,Swim +1094,39,Entrancing,"I'm so impressed with the beautiful color combinations and embroidery but disappointed in the rayon fabric used, especially at this price point. the sleeveless sheer blue outer dress is a flowy swing silhouette that retains many wrinkles. i have thick shoulders and upper arms, so the armholes cut into my armpits. the silky rayon liner is a blush rose color with adjustable spaghetti straps. the slip has no stretch and feels a bit tight on my chest. i ordered size medium petite and my stats a",4,1,5,General Petite,Dresses,Dresses +1104,32,Unflattering,I was surprised at the positive reviews for this product. its terrible! it cuts you in a weird place to make you look wide. the skirt is also not like the picture. its darker and heavier. the material isnt great. i had to return.,1,0,0,General Petite,Dresses,Dresses +1005,42,What a fun piece!,"So i wasn't sure about ordering this skirt because i couldn't see it in person first but i'm so glad i did. the skirt and design is well made and doesn't look or feel cheap. the color isn't blaring, offensive red so it worked with my pale skin better than i anticipated. i wore it to my daughter's dance production with tall boots and a sweater and i got numerous compliments. fit is true, i am 5'2"" and i picked the petite length. the skirt has a slight a-line rather than a tight pencil fit but the",5,1,0,General Petite,Bottoms,Skirts +862,35,,,5,1,0,General Petite,Tops,Knits +1104,34,Great dress for many occasions,I was very happy to snag this dress at such a great price! it's very easy to slip on and has a very flattering cut and color combo.,5,1,0,General Petite,Dresses,Dresses +862,48,Wish it was made of cotton,"It reminds me of maternity clothes. soft, stretchy, shiny material. cut is flattering and drapes nicely. i only found one button to close front... looked awkward. nice long sleeves. +not for me but maybe for others. just ok.",3,1,0,General Petite,Tops,Knits +1104,31,"Cute, but see through","This fit well, but the top was very see through. this never would have worked for me. i'm glad i was able to try it on in the store and didn't order it online. with different fabric, it would have been great.",3,0,1,General Petite,Dresses,Dresses +1084,28,"Very cute dress, perfect for summer parties and we","I bought this dress for a wedding i have this summer, and it's so cute. unfortunately the fit isn't perfect. the medium fits my waist perfectly, but was way too long and too big in the bust and shoulders. if i wanted to spend the money, i could get it tailored, but i just felt like it might not be worth it. side note - this dress was delivered to me with a nordstrom tag on it and i found it much cheaper there after looking!",3,1,2,General,Dresses,Dresses +1104,52,Please make more like this one!,"This dress in a lovely platinum is feminine and fits perfectly, easy to wear and comfy, too! highly recommend!",5,1,22,General Petite,Dresses,Dresses

      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]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

    ) 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%0AN2X#UN=e7MazHxl$tfj#6; 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 #W{ZJrZJ_9v_CbV|~ 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

  2. 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≷O)@9+Q4SS<(kWA~=MLn{m&aAa+;Q?t5_4N|NC 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

    vt?d<#IqbGNv_ zayiUg7WyX5JNkzrY}4vd;$)A`O3%((nQ(}x<%DaQ!bc~vvx^SqbuAcS+OuoB4@=Ho zfciN_gw(5GZ24*qBpF|MpS5Ux|tbl^kPNwFKa>cC@ zEjL&86oZ`N-I#L7QVB#}WmG4y$OKb_)9K-Np)b%h04^7R38unB6|zNAgj)Grl{+;F zT!7FDX7#imPAAbM^kn`XK59WjPn|S8r^aH5|MQh7Vlarji((eqwMs&dBX^n5R9~iQ z^Sh0QUepnFwq>$C+@CP=(OYk@@=T>wBd9s^5d^=>6KHbam@5x2^uc&~w5s)~qNQL_ zq6HvCO5v%*2iOK*rsY*abCQo)Vi8MDX1cS+gBKL$ zAfU?ZY^sm6$*8+3tjLwrgDW2WhFrAi+Way%pGBUfVGpKY90C+xR^?i*CI>K-`EUfE zTFQNKm3(g7Oc3buww{Z}k1pI+XVpuX_J#y>OIe4^TDuT+@~Ys^xoe?<5zO6YHA6UQ z5ft2G<$TGxR~N#j^JGrz6>nk>8EH*`eg9?u!>(aRljfXia(V@kYAcA@x2(}?&H^F0qiwky+!uX;QDjtZ4rpTv&`(oQ^_lo#1q(_I^!nI1Ber z3M($h^_{A;%38d#XGvZtHl|F(3loWe%|_|X^J^tYLB^i<5>AD3pAuYeF84O#NQt`2 zC|b;Ar?q_&o(Egy#D2u(Tx+mx{R3~r|K&kvx?JYU-USLMSgFX$D6)Xfbelp$C0|H$ zB^wzd2NNE^>;{K0yVKA^%v`(#kh0_f>$CU;LF7SO#qRIC+U*arRqj8oQVN#Fjl$u; zv(53g#OXHSz0u%UltHn+sd^+@{Q{rc#6DYkFOO0DVQLa{WP4pSWw!gFg)Cbu7(*3Ve9Hk zSpjX})r5~DmuM~il9nEy(s<;z0-+15tG6D9+8}auCgy&XIayk~5m4XN&lk8rOxWaj z{T4Vc=nTeVx2y$eCoJ1CjqT14<8|GaOpcs0XvAND1ZwWV8O387;e8c4GwKi=glA?D zj5A}tV78~*oiSm3o_oGsVhAjt>I1*ox_5c0PM8P> zrq>!16g4kq1ro6{_r#$%f66}40)~l+is;5fI`cr9)!JiNglX1%`ot zxb*-6v2iEvw5J_A_%c126=KH{!3OaHuwla+z?&ek;4L`kt1s1Yl{1h@U?k{&I$e&- z<+^;A^PThE(Tn4_l{lPx?VpL@L|SxDI55?$V{NCvlV&4so(4<%!W0~`SSR0UMp_}%RYCb6k!jcfR zhyZ2MA$_n;k5s3+{~kq=*ZygmyPMs9uYc+`f1PB= z#2;(_?eDtnzfHQ4@8ZXy1j#}I<40M(-`~04@{1PcQ2L7&2>|e$#5XI2#C>$&0sjKt zMdE+^nJ+Yq(Fv@n=bPtVfC5V^Z^4XP!g90qaZGu^813*RfxNqqhQTl3ArFxoYp5JM zKXj7;RhbB_%l6!&Xrx{u45xg-yIpLFa#@LCh~9Cnd}y7GjuPjxe*v&r8PQ-CMAOp5`4$Y zU{1nh$2DiS5o38bz~fW;NR){Wh+GDC6p;h3O5HerJi3-7-yE9KL2yaDNz8Q>%w%1i zmvM4m3L|q-bSlBXhb6FZzONI!AKC)*X!;SP*&f#Yru7(w-P$!PJ?%7vYPYA_%k->^ zPIK{IRwufr-Vgh5AEwx8%Kf;3O+0V6ol_@x zlBn=2ec_s?x5+XcX|6pom=P}`5FZUwT5wvsRoBog-i;9DTQrO@o7CpQr-q@n5=dOu zD4I@zB&NDh$Oh<0sAC6%Oj09arNqDr2Gh$ZiHY#i;72Vip`+G~IBn-acVA>eAkz=T zom`UgM1XBrS<~5c5do8V9%#i*3}G#gXP-kl`=k^2I097@Ya#eeKaT7uh(eF?bW3ag z{!BeRmTbcO%WF~6qs;jME@uIk9kBnDEZknDLr*U-TP1AV&Ju>WlB)a}=v9M2+fugVa-H6&(EW8k)2h6FjI{cf{u=yD`bfxMQA z0flyYif5tQ7eHTfS#k}Px!khka2g&PdDAZ`mDIOjIo-_5R)zKNw0R~lK8g?QmZ@3~ zj75~#9)#c4p!)8q8ZQY^sd18LMxN8S2y|{t&F?z}N&rD?HaWYY=?&!Dla2XSiSHyr zJR~%Vv|p~2z))PAL^1$+Wnt`{kaZZ@~#IMJ_JS^abnE&hUSl`dxht8>_nJ8aQ<00$)e{Vy zE~@N9pUip?#8dZqs#=B=!Ah5&kuTP>!98_^aojc;QirwM)q4~Uwd%$!$nuI76@%KU6 zuu}JZJObJWG%)O%CQy9*%FrP{^FUv&W98rIMOjkybcv{H+HH)omrrRPMiO=nu#W>~ z7J|o~q><+VlQExVej3hG-n5WW8uiWX`G~$^JU&DH^?WGu!b(yc5Xq5v3k@VzO}Qt#u)~4FUV{ zGGrVw2W3X+cHX8eBto*x_{&3)WL9XF3b-HCDL=b2xB<<~lN+4ej$|w0`OkWvEC`z`3VU@x75`@zv*Mc{n{!|Fhg0&*skEW@_`Wbb&DRa zER_7}N~M}G!Uq7`$qbd^$a=>oGWcG&>S=y8SOnr9ODdCb`8Ja=g{oUbV{$i>3Z6s|jP4$=%-pJotCGK|#U?XYCZ!Pp zlOhhpaG6@SI3X+n+Sf|=KnVFF4&vAo&U%LTkDVuPQFn2Fv?y>soh~lPe-vo0Ggyp+ zIR#11r)K%G(YLpH3wL5)Kjye3e=u_20_QGyHc#h@4-h*EW2Y{`nZ~9=RpP}&7PFZf zL1jcTcjs;#dQ*$$<;|I4R>+h9U4CN}detZ!1R5attZav>M^x)p%>h(T#{%0F=Fh~% z7ZiKe@X(N4A43O)fG09T4Dy|1S>DLRCCNEYCVKwzJu*le?L@MsanE;%K{KHOkUQy;1A{8%QbxIoI>ExoBgosG2fR#2OOzCKH zZmFE)Et3bi*EJ=~_$K7-i=Xl2fQRlUS(zuSBR)1ss2mqY(^EEk-NYeG+pWfPonzGR z<*kz{r%q)bE&0GHqd$?ydWtt^hr5_Xk-|O5pT(d`+(I2)n)|k92eOW8H@UkGlVF}8&yO$SjR&TmTB>A7Z!KxJ zNi9@j`!aNYD-pR;l;s|GLNm+^#3^e4FM+A7?rzqQMa6wH713aq0}sCAW`Kponrw2Z!##nFQ|T7=3x zcnS#gQ_=-lio?l-%-#^b;>xG|__=#nWwxsV8x`Ul1UJ^ms0cN^e6mVYe6nAXGZrHT zh?7Pi=U2yLrwvP&{L(4%tUOZxn)C|NwQ<)r2wbESz=QCmyr7;-V3sdSfC!ydu829- zpwso(^`Bt~qy=>=d{Ii*_HIe}D`ul>Ww;=UK4j^_wOF8fT)=7bHrCj~Zb(klv6DRY zPdCh}EcVgVec;47NLY2~6L$|1Bhuz>`V$vxvqrUM+uQw$#Gjl#%qKv_{Ah2ag%Y`_6w##5`;b3u_^^C@4yZ%4y07=@@w zi9BzGehSaG{;fag*~gzfz3xH50t)Ij)be0yd{DIUm8VYm>O6>DvW5OS-1DnSjh8e> zaDZAaj7&~0!xQ^9^Wdx5FWO0ZbBhV_6Zz+I-uN3Z#00@T!^qBkiV3hgcxC=9BWx5g z&DrNZ4dZkW1qzrsJ)}oF=ouUk{1Nl>Cy2Pw*G^SCm(I=>zh2=pSwo6RsRcv9@K<3t zn6*Pg2(rW219;;J((tRl|N3u#xhj}{N@)dd$k6!Nh#t~?O|7>d7dMD}-BbByNG^n1 zxKBT5^X*<+SrIF&85f1)JilVSY18CF;EbS_#!d!b`GEvPzRK_*A}Vd(*2tEuZd8~% zVSG$hZQamnvHJDOY>Pq3SryT7rOAAtb(_FHsO?Hx_Mep%=qg!!x=ffSHsL5_b8dzsZXcdZ;3H0P6AlY1sAx~=%`a3yOnSjMXbtGM&? z1OOroG4ixUmB4rU3Xr%PBuNnHgkIlM6P8q=ZWRb-N?Ze%!W_jIFmcYfKdaN^@5JvU zMfwdw@a6&7_4?~}F(~~6P2>kWGk^0PMw+?c@hDx>dAgWiST%5B!k|bEonAXFZZNnz3liHKs6)@i^=1j|DD)+zpxkT-gX$VZvx@ zyCF?iKMZpvX-eNDbhcK(*tuC@4&87ldBw zJ4GNobDKqB#j7oV6d8;J6F~Obx=>K*4xdgg(ZIYGMsutJl_fMyqc6He34B+^=KUWDJq_d~f_8dfgaI z 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౥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 zʗ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∾RAm0!EE>sOitj6us{&YnIyKkRf!J20LdXP|J8Q=FR)NOmR$==GtA`PulO4$X$c&TX51$RV#*K?7T+);4lO7>(jqL$LF-=>85e6% zuce)U0Un%^fTaUt1M9oU)aAF&InOom{Lou86V#JAI`4KH>yUS*YHRv7hyE|5YAv^^n9lf?%L|txGSCb49>5ZUc^LnIi2$_@a5Vq6+)e>>Hv2up`-qO~N-1=9YTOcqCY^1fcT^ zN~mLypxJ55`9-~Yq@HrosA07N_r7oLD5L7qBD0CRCTIS&7>wkLF|>2pK&ma2EoTIU zSdY%{bZJ`ni*`xb3W%?Fa8AmG$+7rLLouE2ly1){hwWjaaXjWBMf`Wz_Hm6$VQ~v#P64s-1c`X%(Zj$#y+{GI0}J?gpwNojkCPS=WzmG zJcxtK$U^by@lm;rfr`HF3qKl}6tjgKaJMSdHP)3)|W91@*cS9#|mO;qf~!X3*7 zZt68e4pBPr(VuN+)>yFCABjA)|4!jyGwhjy)oN)*j>y!`3Cyx1uoQZFv2h2HJka*p zj*Q5L$o4F(*5RL|v?!^wpv;MBKk0)5`HFl5 zpiWGXLia|VA)Cvoz^jMEH0K`b^(}@mGpT7F$?OiVjbQP=G;nWiYlYB|pcO4*2v!&m zk@t$}jXcisCV)s-PnOXk&An)DAQ**)B|Ki9N zN4j6<-GXw*L?nFV@8@~`JORhc4K~j3oULNuGYA4gd=OU%ynRv?yAFTRS4O9k)5IqD zGYgSa&P`#xEkdYmu|S4-_}yV8GqNKs;{Oo}1jzPgdUB*eWe4UkafH}n$O*wG`oYkaxwgUq%&!wi00OqeAq>RE zuV#W^AUgBUxs@KV?4E*CFawvX-oI=4f0JOm~&#ZWcK;e=KM+(E1csD{h_tXaWJl)D&lZRcQ8)pWFP8=9XA0)NW~*++W2P+svgGEgMtDUpb?T{; zx#DZJ_vD1(8>=^z7bnL~>}sXZ-u}DCjILX=Q^5Ej(CtKR$6A5hJl!fJeUap+Z-vNJ zM)FTtp2o@Pqs)o4RZg$d|1xX!5P3A<1NGTCvThH%(rbAU;PjX{DMu`^{_RX)*su)9 zALI+Q%yHeat!|b(7*uB!IZuzRjBEoomV?X@=7YsGJBu7Nb?Wro)$P-QCGSep5VXuN z2St2=!k<3i=kE3EUOuTI2H7M;kur6siObn=F?D6b9C%>Ce}r1#k|uIOu?;9qw9!>aue( zo*O$5CJ;I5EGe=qiLTtZdw#Mm4DhbD?YGE;0VttKZ8@%%OGy0(FZ%75pZ)OY*m<1g zDr|lC`L|pRsgvkaXa0n&KfFOdP81g~U?HglT~_^}DCg(gM?>p?XUsd9F_@?O*+(xA zmKVwsDf>LrvC@Ixl_iKSF{N>QaL?`3%6Hyo&ZC9=td>d{j)KK|`*6!cl~cA9;y0Tqd&O)W<|wEQ+Scs|eC zZsH*H&P0;a#8R{5?g(#=C?~qLjZ#PoV&5U}Tf3Y*=NWL5%jpcmKyzS`Q%563zGT?` z-pZ5)OMDNFU=BwaH|hVqXHjR6u8~M~W8tWlt!p+pP(R|Bj{Y(YozT*xF^IBbFrGj-)0iBxiDoe3p?;Pxy&tQ|8js5rsjHYAn`Zkz7XS z$MpR4%1gQ+n^xNF0q7b&5*636u5yBFe$wK)7{z;XXtrDxnxWjX;f#W`VhsO;Z;OZF z5oZD?2kIMRZPegXr*VY#1yD7ur@7H^2pl%HwyQW zzbUzgL@@9lt?3 zBjUx;NJ_$0sI4qrzpr$l8diaD;93Ki6Q2-x`pV)o-2BY{H01Q0L8><{*%=VlzC>E6 zPtjEta~Ma`;bx$&cy!WlH#br@5>}xn0&WCk6DMgXy1zRhC;r$YC)^$WkUPOiCbDph@HFKD0i7Z}J8(M#hMLJ92e zyZT&S#sfx6}Ov1x1UltIs5npltD!cIfj%x@^k3huJ4bJ({gAD&vLsI@y;R% z5jkt8hNE%`FNuP3~cQ2vQp6vCo}Kbqd8B z6coki(=09B=CLy7?2Fl#v)5q#rTT{DI(N&<7L)>gLJ(CD!x$ZRTN62*G)enQ5a${OpFAbyU4MlaUnh%lzE}a(2?|#GrzM{O^aRr#!b8JOWNWMAMuhHc023* z#J`ZE$UiwhF+2ha6@lWhB~}dh(NuC&4G#GT2$2(mYGmP^*6@lTcyQMkuDC5+j){*v z%UA_*qBUTe(yT1QP3l&~jCnfuV_Pl65rsZ%=PQHPwlKb~htf0w+S+2-up@P=m%=G@n>bG6Y$7f3uKmvOEv% zA5Cr6?eTSxZZzBg(Y5T~9^hLI(RKF+-`Wj(_FM8;Ny}~UUsskzUGP`{%kE7jcn11+ znWyA6$<*fJu{7z!#P$z>eHUz;yy>w6?v5@S_}-i~650ye90+epDhHW6!{P^mUBtP` z$0tv{EeRY)SgkCW0s5Hd#l?lSk71>W=2z#W0V84xf0tOz35ptBLvlrs6}JeZH$o^Q zoYjIk@I8(jK=h*qCu(qmy;k139__z?63l-*s^C6%Zuxh=k6 z4{U;SIBbHQumQHfjmRjKlu`+0{T5A&evUQ z7d5LvG1h67Eu?Ra-;aA_ixF>-#ROjF7xul#HzTjl+S^PJWXN@Xu-6Q8wsTuhM2`J; zztVosHvDs2t#EOmZ{%4;ubJZdGwE<%E-ApUAHj>vRBOWhmNa0F@!DiztPXk63Cue( zMZ^N;U^~q7P+{XP*rf34t$zl&h2i1PUk@oF&+XYg5D7!}(s7D7JDgJ51O161;A2KPflk(a-FIExSrjQL~Psr3^*akkSgD`yERh3q>!T zePPigw!$%$kn>U(|6&(3KjCNKA|x)fm(ypX$^}v8S3_KVf7Mo3^#6Sol4~G08wQTq za_j&c%m~co07RM$#cx>WcEMSEN85?L;YWKd5?96Q3OuB)9fF#i6uuZYXGbugLn@8A zCUY1@D;@zD2WgaFoTLbeW4Pi$M&(gbSiOj~TDOW%jPrCGHdv6oWAWORXIb+(eqlAEs4kE1G zm3vX6h87Kb8>Q2PAUVFCcEX5&^XK9Iu90v4SAg}D$3IB&blVZH+3U|rXt{op8rP3x4I_`V&t z?<7k}9OLWJ8>&d05D*E$6CWZP0@aLV7Vvvp0bgi$ucMM-0J2u1Rjh4&k9(}H^_y4W zu`8rG1O(Lh=OMB$E3+^kJ1o6$emJ^wCh!yr^bNm?305u3Ie{fE(J7hZ#`0on zC(85U)(lr)wY0_W3xeMmB!q8JbiHD3q40;}7~XYyU|EAiaU7UG>O4%~XL7F#KW&`l zI@pJ+@0(K}O1s}nJA{A+3@K9eH`jEk^h|tjm6fCYQK6sT7ST7%bdsGohu}EQBb6Dk z%Bfc1YSDAk+;-6*(UGOiz`;=|?Nbo&UKeQi6jspVdOLQ>Qwr#5ps8X#_ zDB+$s*(d3j>Tv>Qq1Zal$R{m&7>1e z&pB)m_))(Pty6T2Ka8$fgrj5HBi=a96np;txEGQYUGx>*G4I9K2jmvFX16!X@*{$s zNf=Yn`x}JcaDV-4cqK=ve#0=nC<#CBMAI?K-N7tPkncn(^czsmc%(aj?k@I1u!GNw z8_e|=MDw(_NYY8bJ=ki8y13UryhWW}d}!dvmMDK9?+RZs^w8!9)rKri55a?q^Jho? zh^4_ylvS;E3MKqbp7t7ijasScm^4wZa?w+&%VPj|R&q(_3DtJk$h^5T3jpJZkk4|` zRU}LYPDfDV($sL2zt;x{uV6O_@cw<*Dpm(p7f=50T)z8_UVTDS}wloxFuujKP1VIQ4h8x;ZnfDBv#84SbqC8JRRq6Xu z@ENZwv!D*-VG810rBe$EKL!UQ>{bce&x_SCfC5>lb0Ep@3aTm`vtS{_Jj2VHF!IsD zF`!IIKx@l4jMK4OqxDnv&&m2kFdppWIPDTjMxc$WJf)gSGq@hwm0=Qxpe-89A< zMyQ41d!!@)|5}m1|CHw3xKE+dN#%;YoE;@!+PfX+Oj~i+Tz?@FcZV$(_pu~Qx9NFwc8IgK zl9oMp)jh>1mXovyYg~tkyS3lp)Y3*nHsTHg*_|9&$IJ5*Vl%`2P^zZlc0f!ZKB7YwP1!uFQA)eVgtQ$+d zH6D;av6M_sCrOq>x=)Zy-tWu`5V@g@PNrDUdNQV=9VAy92rj_ikhip9zc~)GQ+A!R z`rI!pmVx|sK%%f|FeCQ;V0s>ao!6Jl2R7o9!S%6JnrWGv0iP`p< z0^jle1dmB)8hoKGLrDybRseUb>4Eonq}e?RvwR4ABl=gTqaUSt+lQiT0cscu4N}Ip z=(}CQXx3Xj+OL2TM3|Y!iw@=c$EeI=3$L9AIucFrXVBv-VK{%aF~wp} zS<}d=MswnvFSrv@`i@~PBzi7^+IUpWY8_& za9dHlFvl6VU$Wwi2y3~wWJ{5E5Y06wP(G%nOX+*2*6}^c{A%L}K4A_D-b?sz@?ywJ z@S~8)pG^Y7JZbupx`0s|4j1BB1s4DlSLh5-!)1wtvttLmq})9}6%%SqzMLFxEm3m0 z7IeTrV2%?u#|eyanj^RZZ0=kxc)KNTztZ_E+;h%!eT=*&s>7n?loVd~{v70l0vtg! z7$u*u!H9a}Pwybl6O}$znO235GqnL;$WPlV1BwhQar2>OXS|_V9{G;z?ZPb7sMyzy zBLt{7D))DRqBegx8MGZBnu#>!vM*c`%;1&2bFLf-mW-Y}8|4Ire1ca(a&L88*cyMm zTfzZ)dA%Av2Wrbu;?uQDu|@_bV;K+dB|lNKryq>}7IS1jYo{oOqpnShL!7#vGd(*Y z@}@h101OR>XWj{XB#Dke197Hadlvdy zOQl&4oEEY0RPk>!T$~mKH5}*zX1;TBPoC7kKm}p05VbZHkqO)*nl$>5nfKAwfG;e~ z93@)LPn70*;Fwr95efow80{;ErTV=~1x$_g$wG**w}df5|9nBBthO0ACi43-$nzK& zH|XoFF;|J(M~{!E3e8J!($Snt^aJAqUrP&b)2<99M;uS^ft~&dFRjt%ytc-yM*|hl zUg#1Q+SG6upK>{>XCHS|J6BbG#iS6UhDGhf;ls}89K9B$9%LFAD&qLhYs|8W{0x#dP+hV$tJNvJG1x6Jg6I4d>>VR96QXUI>UFCc`b7F-K<|D%+3!9@k}LfTEH zqz9jnVVh-02Y*uSN}XIL{(jRin7bbRjH;6;`wh&_glKs&!Bs~2yh77yBJKo7Jw0m1 z$lMz_cfc<{4v$qq+mt$Rm9YagCEKaE`(tCD&}}Xu2=mnVVta{F(8SVSj;QYQNCX_Z zGyHsjE7OyroFc$LAI{Keh2~~w!jNcO8c4EH%K$0kJt;w8<|_C6GOqY#(Do)}eK&B& zlUXCu-{2N-9%|DakK}~cl)#kcHTnXKr!^d&-oO&JTQa7kS@Vh{(rat~Xk7x6K54Nq zC4Q>0iET>eC`DEVoyAx`Bz3p#j^Oar>3<@6ec|5lQ!+&uhrM_#+?_aNhr1Q=2s1(l z#VuLcmI$QWeQs9X~C71j+*_Lv!Q38Oz)=gV+J4Y zBc1!6Ny`1=n8U%ZI(dVhXRLbQrSpQ{4#8GSq{_ReqPUg8J!aG(y>U~L=W9RUADfOW zSKL%54-4UBx*t11j%W9mF*B0!c>JniaT-$+@}04%48g5x*S)jBO~4nwVoK<>t=4p| zCuO-inqJ@j4YJ%83(>;M795g9wbz!$E_V09x6$l9EmQ|~KMRh)z_9JO&c&DGmDXR8 z-Xdq}*ch=SCuMuggORFL|DX>rhDZrH_yFawuVE7bSo*DP>5VSQdtzq0F^t}7v86^b zI&{3xqR`gVNz6KJ9Q^e6?>e<2BxVwZB%R)Sb&`8|)Ve+U%r_)2fWPSYUM|H*9t4ij zH-=S-rX)Zfokt{TY15H;Y@N0di>gol)1pYow9UA#|HK5w)r3iY0{#FR9WhX&9R~VpzS`X}uje0h+gBk`T(! z-$hdjTLNrxO{Tl)+N#wWACD;WQq4yMqQF=nf>|ekHeX+Ylk5&ADs@rMN4w>UOs)7`!MchJk|*B;Uvzo%;0@r@M#Ci;C-`AvTF( z+@*r>Mt^}YS6Cd~~ z`s6;U96)7#SquN;j!I>;wd})xUh#(m+1<3NDP5Umogp`jE-kMb2}=M z3wMJ=iQZ7lus}&iBonzViAk&BhJ|7!SOempbn?{{CLf@8=F}?98yuOW;)d4%au3-4 z(5FRN*l3c^0zmOq7SH{O0gzgAsZ~gis5Vy4YOuhoRy`Z4IK9qMR_9 zLVnA@^Vy7IGiYTVR05nfxq?0p{0t@sf9s8MeC6vC3qdpmgov^p9s<6N* z4(T<)=o4Y1<}RN3VHGK`w?_FKX{_+h-2O#-6v4zw#nu2I>oGo~Q6qKsbG7ZnDhK|o zD!^U=e~unS^=D!!`)l5{4%5=t<&H4-PtL9zn$C3EJykgeTk^ZdZRoK|=I|P|;cGl0 z<6e3qi|9w7cIe5=rP28f-!0?wN6&ZP_<2PF&=%HuCFp6+dm{P3GQ`qA?mU6A?DecH zl7L&my;zZ*71@2>Qmmz|q$KSq3gp&?X5e=ZZsoh&G|s0bsj7-vGz>*reDp4xTw8Vv zNVq|8IehV=!xNILKtUkiNiDY|%KGHRuP}Ai#UYgyccpM%Ho zjE@e=#2NK{d|H*;XPb`|vLhYzaib48bt`!=a$W9~(qS6M%3nfg3qTM;MqX4$ot`No zu}3gdoe@ZWI>9bR6ro&-sen$&6kA#zeu6~x*PU|yoE6aZ}?ybjZ6ygtME9E!ppMHE0mPj#~{xK1a4sWb}@ z2(J`zC!%sKZ0_StNsHwHj@7--aGm>wab(pt-k@xnd#+!hc0OW!@HcxcS`_BKyYWZ( zPS(PF>OKTjj<+jA$iqriM>CM#s~qNS#R@bE-#PUiUV7^kKkAV|iJ#BRbClgD6;+$95co6>F18=OQwIjV*5^-tHuvT($FV zi&ron{n1|6_`j+~{h1nD$C4<8Wcw|0gZy=*Flk1+FF$I8{d9?V7b(MCNdJYIQ;d#; z0wxlr4pEN`vmlDk+PCyk8s`r7`Lj12+5~Cw4pXxPngJ0m$Q$Q^9N%T~nUZ%jMMDUf zA;}snkgt*H`t3Xa3~x<=ZpU+}t4XRoV9Kc}ENw#l#Q~d|N89M}=u@#?-xUM<650;= z&l~!a_o6&n@XrbVJiYw>*qVX+xHb|0Y3a}F8~&4jGxs;PpV+cMF9N%{zg}JQ-^jb& zw=gNCOVT_QM%>c{HI8pbr>9i>!1bpU*GG@bavbtIvb1DfAUFC$f=hdNK7XTIT7X7i zTYW%K7Wqkp5d{ml3_N*6tN3ZGKBbzJ?d7uc3wJgO?9_gZArrFkK~Az zWg}pjP04-o^1;@3gpzWfgA@`NwB7Wm-8JUL)g6WKc0n2pAIxe+p4xKFup10<@Z;*H zms$sy*VOo#0<-Q$@GXc9!et|D<4P+o(<>+CZgFO7xw^GZGrNmOVd9U;sBtd`z&bb=V2!NDOVqwuB^w&7 zKfz|=YT9;juaVEP(sfhsf*X_?NEG=o&D2q>1P=frR9q+so+52H zp_FOny(Qf50v*2BoQW2!`w+^tGxvNpX0;9Viu!A{qlegj;Nlgwxiq|Ff-_t?95?$F?aY0EHy5OCrXR`MlPSEM?YM_zMRd+wo_trf1`>)i^k|D>7E(sdGWQhgoyftfmha6~=@;S% znFXh(akt#fgrhdrJ-ZV)r?yj)CdG0BF3DjVzXMLrNkSxt@p;lx?<#@>mJFt1$u0Wn z%cAi;lBr(%ZwON3%a-+TG;`-jd&7R)ZJ2awRh4dWbDrZme= zr;s}<&3Qg3mvLv!W=UICdpO0J80kMP40Z}&u~a$!@)ESC%R54;?JF!7{NK{z;Wk2} znojfVP=i+KApw+96^qAFs^xjCgzfOus*;-d+Ln{_>QrTa903bb@k1? z)4_b-Ge6wQ6)(rkfhvuBOZ=KtwRrd5^3fu#YMWMQ^qZb@l^aAYmp^N}Po{sv*52%a zK!re{i{$wPA{Q*DG-p>3VNPI#n55u1Rw~lf!y4;*iz#ya zs636*PvS^wQk3`#D>MR*J4Jorc>Bri!aq6R#(8k8H;mb4lC58EfMwe?Q$1yT^5@nt zIuQSc&$gKCEdv(ff*k0ST+EY*1y0`)jw=P8;EV>-JWme1VAX85)O=Q9GSft;bGh(I zVt~n1O+ zjfb;LJ3up4Ai-wjUalk412QtqqVqi6H`S`oO%2;H0W(~*JuRfjF#zT}f!C2_a6Z%Q ztibU}H)~!HI0b(rnwocJtL7Ay!ok#uvO;{i-*<9(VYq015*9PbQZ}8Z`Ew$yJj;hD zeH-mIuunxS{aP&FA+C!(?c&eSP+x2ap3Q5BduU;IVqC0!s78Dge|N{RA)FpR62Z!v zq=QWfI%A6Dc=0+nVa=N1D@#7b)zV-|?%i(Rd(vHf2Yn{Q<@oSiD{fC+S5VrvySlY3CQ6OE$gD9TMdSRdxdHbtD^H^#2z2aQ z7{L!{T!9%xiz8U&zmM$Sp#Bj{lNx}=gh<5P%XeIu&59iGp8Os+J*KKbvq39R)7)(2 z1@`(VQjT%2!J*pbyjNc{uAC`OinenhVSkxk0Pjb-@f&jT(h1>#(=&;Oxsot?O)e*P z0kbYzQyyj&XTb?(bo9M9Uwn2D&Zm(+!LL4hc1T=&SdW;7>NcO0Aaf)q)gBB5Et4Ah z!mesNkn4oG%e1BozBze>*NDK5`I$5LK^G;_n=y%AIws+XXbQq^@@vj4575+h^J>!& zL~_#EE#_98fhiCA&8IM|oK8_6rdfW_oa7&-g!E3Z?{VNK{oy=f26aK6s_>o)+7?EU zI2u4s1At?Ql>s&eZ}^b%5>z%7+Tu$7)Kr66pyyHXE#R8<#(CvbG{9(>8EV+u!fB#Q zz(@0>@w#)tj!?Cs+2aEd>5S@w=NSN@^>TP?!GQJeZw?>76|$dBujKgT<){#MrlP{jSqv@JUR_t{ zpWzB3==8&bD<)~K#1E?4PaP>rbvNA~XKrAa^8uAhjm}Uol_flb$2Wq9fl`e_j=fyPtcnv}mZxo;h7~kVO`KYjK5XQ(+oX3GtW9RYCb48gE*!E1A9oerM-* zD<&zLj7GoYS!8ytcneG#+w2kZZknDJrEBlN8W#J<4o*Ls{^1%k&HY54V&_J(15vEH z<$^22F757C!~oh#yd=ICda$-;nF%3Nfb)NIRuv5^EF-->gtu*+8P1Fi&qCuZWaZ{OWIGL_%_@LVqY)=NfJqvfefQC zLFzY&PiOh}d0;H5$AYJ~_Z&nhOqN_Z*%>1=*HWSS49LmROyil`O0%|hK`suWM8T+d zBA(+kit|IFzNr>=#wk>NYo@5f_|r)C%g633vSPS#C!`E7(8QKPGujs`p!K#WYE~od z6O;7P*l_}iu>T8hFKok%i@lBD2hEBD*RrJ6W|3BQ#KN@;wmln1=a5mDY^ZcM7|@9N zn!LWf=oq89EW-7g&AKnki#6-K$0gMlIlCaY`q%so?2P#njlicri;sM&2c%<{pH5cUGTtNazZTM60UD&KM!8p*mcj& zr4VbO`9fZwumW*)9WO(K*Aha}06#A$O(+pQmz$F~` zLukUc+ZxAc!oI&!avWwOd(H-3QTvU2)io;2#B`X(Ne~|RfAn`< zYM<9|#2yL9%(9^~`Vx7$@A+{mQXv6mKJpPJLE#dUDEC_HxHaY` z(3>raL74fC12ORIb3r-Rn&!1|XfEi~4;0$pS%K>`2c({OZfa!j6y6OVftS$F6S@vF zxYca8Mca)%;5)+@Ti#V#0p?3ti>hDrivEBL;&n-e((OrimY-R02O>woy6rgGuJqLD z4XED4g`!*NJvNoeG2~ zs4)!>Vd3D14dR_B|qhU51K zm0F$pUUsLksKt1bP!*~Mn8<=iF<);=#w}~mXPiY!k=?ZLTNSZb7Af0KF*vil;rpoZ zd6XzW-n!EBQm0^X1SzcQJw|M=!t;kdQK_r3lmi1(e;}fW>jD#0kM%dE4p~5^d=D9F zYLdo98^>pEQjD<3Q7C`S)1s%np=t3Q*E8Kq79jK1Q|COTsyv^|l?hka)Y0G!Q!{e@ zOT!5Ey`5;zN0@rK?Ep}8j~}*I55+>9XyLbQT6Y)N>uB#n23OL(^jkm?Sloqg62AR= zTa>g-k;DWn?-f-Bud0&OpB(6OQ*zNqF2}cv2VQTmtmoKykg$+`bGM}wxOMDC_!Yan zJe+#>M=!cp`q`2)xD$R_heklo6!3lOP<}Awz1zeai+rWzc?GUN>b0*3C0BE0O}fAN zcQ`Xn2bvehb+!h`jaW}zEcA?x)t5vL%iw-@eN$W7xj8mjaH{8**TvO41N4!_M=AKh zc;qXV^+3vDVdyB{_ymn6t*CrjMw0btiT=&eLGq-eZvVjTDh)H1^8IlNAGms_mQ`Eg zv8g#R&w=%vfQka#xCPHYrQG|ccYJ6rVhXTiLxn%1R`Z5z+rb`lN%TaFv@GR+vbb}! zgXjXJrkK;154|6B(lTT*dK3YZGf1b-juOt=bgr>Y-6M%-2;T$;$`;eTW}#GAx442VNPQXnjl^4)o$l)m4r4`9v-4 z%BMYg*uQt{mybVf=ZTlUcpQzt72X|$q$RJEr^dVMY=Vgk0`YHtcMW-WjmJrZvS&8KmW1NKdDukv#osX9#V@LsD=FNl zTodxN9{rR90{8Rhcu|wnRwVksyWJx5FE4by!xoUl<%$_V@e zpLOypSiHs`H}ki90?A3Mm%sBOao|&4Q&6Zm)_u-#!cg07#lp3%5;~glaQ&JFUqBef zScpSif4fZtX&Lv0$FNUxtY2gbsfh9hP55|O4rcPIxTp2~M`Wn(o$Zh>-BmfPNZ1ur zG-i|`0O9Pmi>J=#p(DkDG&{D(>rGP-_rzo}>1r{QvE%c8m#>6B%uQ{Ig)E-_oE`Hq z2M+SD%Wg+-!${PIi919xhi+Q#lp)~b5kGJLm~I~N z5jarlr{kqTrr+9dC;cPzr6G4e_yU*_AZm`|DAtk>B{orBox?m;x?J)B)@WxphH_{Z z<*NvY!VyK*I0>^Lp@pBHiRI(`Z*9>UJU7(NiC;X$-zR$Frjr=D4SDj(s~C^dCC3bS zs0id#>{C*uNst~s$4sf)VBITbe!n7NmK#i1-%a;@SMU@l!yLxG3Yo}M5@`DrO@wby z?O=-6c8p*DyaF}H+wbH%fwiamk&^W;$KUMgxFdW>OZXRQ6M@ldI=2s~?1udQ@dzK= z0o~b8BXdWUlM=YT7DsX~3!sX z4}n6pA|{CM4pDzavtv}~$IA-wRFfx|1$kBYUtJ%?G+t zh8Z(>&6vR}nv%Fw5GLnXR!m)21N&~{2vDlJ(<)c^bm4C+%p~pLLc2iQ{4T&@3 zF9Mj6q&AwAd(IoT8N4+BIa9|4&TLk!(KYTf>y+r^J{}POp+q*_K-;(DP&S`qZK+`O zl>$kGI~79!-NPjQhJ)K6&vOoLb2wBmv}qh?fb^ba0R$@o1Ws4Kzhe|{ghQmy^ZuJFJ2R!4K5b3HiGMTj?5 z30}dyFz~yLtTldgj29LN&^999cgWUN-H3|_w-bkVWlX#bIXf@U5_!~y0F1T-LnKGa zoK}@Bo(-xcW4on%)?4lt$0JIBO2Q3XqMmOkT}zCM)bcGRRvxw|AzSsW*eo#b9*Q*; zg`IM*D;ooi1B6^%^@KarcV5D^$Bjw*?}8;8aejinpoW*tW}(V5KBFWH_+0NB7xpT( zpD?&EU}Of(0!obqX_jLh=jZX`yt0;e9QXOf!O+9|nwEy@kzViql8qO2`_+|I0 zVIaGImCD3F{#xQ^_Rd-=-?ROa1LmU_oS!T9BmuyHzjj7Ka<6E1Ha8WWWGPW2%n$KY zyu=S?^gTqkgvxeM2~Gvjx+;Nmpv0hNz%d)j$3YwbKfy@QSYd zeQFhNq^-Dx5xC!FFv&`_m3sgw%eW>Sc@&;19Nsg(PtA!#9x1!x&o*VTAr2ec7_{i( zX}F)dBvKza1tJf6q6t}@$qXJ-;zjsM?(85oPgU6aJm68yQRq6x>Wvr%XB*Es=4D|Tq8iV+Y>U}kO{l!afoVs7? zaxQ;xuy4#_m2uekuQ^N7Bc~emm~C^A$UrZJdRZ31%m);mY{{V64Y<-av<_Vv?z#H} z3-^CD(VS9xw7jLob;w4Phk-shXpcmJ8OsLUnk{`ycQQ|mV0v8f{3oi1k?&x0H0SaB z^^lIv++M6n^5t9qfS0W)j}HG#?e(n2zu!O^klI}U;F}$* zA7~oSEg*wx*A2G2B5shIQR;Cx*hPg;jPTI~n;Ipud|CsvI9tJ8DYd7KUQf)1<$1O4`S9j39;pZ9zCm8k!vt{*iPO5Aw#7m8{u~^{GR7dtCTS1_xkm666_Lx#k4l@PEES$XlW|e3 zLUIK+Jxx(6ql6M<+dj3L=IXtFsOmOdRg~9hMsN8uKE-#L9L&EMQ3>ll1g8@Dz;-w&e(UdA>mCuycGQcH{HrMZ44HWXA zd#-~7#82gyKN{hiv@GU`Fc(t;Ve}5h)%^2M zfBB437wz5^9E~SR;55nUw%;+^F9DeBjdd;LuMIxk%HWqggddEYVDCiu4g119w^B(_ z2MBgeZE)?LU3bT#xpZpAQIh7_In6Ix1ZLRnoX%zg4ddtAek}$w4binkxsQB|a}x`>J_)%^Ub;}1#0pk>W!5`b!jrb*`hb>f?IyY({l6+df?GpH!*p^GI`C)+C|g#I8YqQreYMv%kQb_$|GOr#Om9&;d(=)vY@_>~@Lgcrt(#&5E-coY1ZDVQy=H zd=FX|1)AG)8nxB#Z%FQvzldyd&%;$Tbdu$Wn1@T){7sD?O8~FREm?U~(b|qk$+gGy z7vRsrNUc88%)!J0S2Q6 zhLd4!h6o9%=k`m=&px-S2V{hLl?(YS!VbX6ba~TkP!|R8#U%s3*Lca3aRAsX3ShHT zF@b(za2-NV56k4M3L40sm?99%Bk^om=-P~eg1>`B2qa+HT%JkI0>f%^l+!PybB7=XGP*-zS$_F8N``4 zw5hCq!>-)r`m+?Lk$3|m4>Sz-s}&+dvUScn@~#NG1? z8^?Q#sf5$*ZgRxj>OZf5OK9#LpHa2MlJBy&(m7u;mxB0GwQUOuevwJuv|OfR`VjmE z_6?I0D^1w)3GFZ@L*{zs8m4y?6D2ozP?KZ59){NP^Ri`;d+R&ksZvPD@~hU81$EK6 z5T7uwr8SUSsdl`d3{&MYA8xI01-LHFoc9krsk>WuUkht)EF=G$qU2eQOO_(y&h<&& zEihqPrmx4D$tDWbJub+<6~<4zFX_K0jXAczBZ6i$oSUGwn6YHrZ#SiDErF@GrfpnL zh-n>1OIbK_ln>im%d7yUy=mS1Z@XSYjCXXZOG9oiGwoN{l4^PrhtJ-#5zvN>?aTHr zfq1E=6I8bordxS5<=jv0mN0vo+j*9#u}B=#v}`LLUVU{i9##4O5p-HkGIePH8y=>J zf%Eh1`m>5ypFg)PQs283pOWHF8dGv1xo~pfB%zNyIfQRuGxObbZ0(S=QFc92uJMuy z+jQr99;mQltICL>-`r>4qdq@Ge3c}sQv)m456WWIwD;cl)K5|BMFCX_if*NWt^`WV zb>W95iRK}tz}@>6Q@>Cv;^{ln>2F`Y`%NUmSeY7Vf_WMYJ`6~hbx<}{dh2Yw^rklr z1~|H!0X_RPnGOUBt-f@eg{cZrie^ayoon5xkKU)D$3jG9g*((gBuZlMkQ&-XmGN(c z^#20?!xD;vV37*$n5o#)pcO-LZWzPJ;apnWN4RKjBNewnxC5nJ=77f1( zYQW$56mT6|g1ka<82Sfa?#}|jAwM%^>jG2TbRkYtTD#uz>LsJNe-awf_YGT7znN3{ zj@bZUfp>Cx3n#5QlF27cG0^l7WnG57U_WyXMhP&aQ>=QZ7$4+XI@$FwCF`s(0;p$2 z=sr3QY8#hsE0*LSG1b_ZA5b_8*vND#I)1Q5^lG>nre{ezpfBkgf2fa!XwuB6pB8x4 z%+`Rs2ydXt1ny~ce%4M3A@3~NfYl*kYc{q~+bf<^KN5zSwsI`oKPLt-lBv!oSvpJe;D0PDJQ4 z?Y#EG*QRJJQ;PyQYavZ_@;c@85g7Ns1||G6+hleCTuQ?3*=D@-D2xtmbEvp9O3IQB zRvc!jw@)zqVy8auyZ2e5PmL6-RdUa1?vsD;9hCp0J%}-~xzi(OXLO)q1q=L(^bl$K zL^@}dL_Q1eg3=td2Aodg)JL-yESthYt<`=V`T6dm&#Mh;$MmN(ICjWSgiwTp-hA%D&%v*Yn6^8=Tm?t2moZ=^4&^^=@QQ1L<8MYDDq|Z*7G-Gh2Ip zb1rpXa??5EE^AB|xk@i;$oy8<1(hMBznhc&ZFS4Ju`XA?ufu4B2c(0Qx=x{y1@dl7 zyFoSy!en|eacbQxsZ&DnERD`?tJL7ogA^5r$TM{fCl(~TTi5RiT+A0wzwf~W)9mz~ z%2SjNFIj^4H+xsJa_20b$Cm~X-8lyIZSlI2=Ce_pBJ!=McsxS@}vWX3Kb@K;1_n&!y1}(*E z55!+fiF#8n&XxR;lK3o3{SC`-LywhdbsroIIdwnv6{4T;auJ~HHLt`m+*4CgZ5Qar zopPM_szz?ry8MY-bB_i%Fbam=c3B|1J!BNY^y`L*1~I7Xh?{SC3q+OTfvY9N{eyr* za8C?*V%R7Q6p`3dCZ-}D3pkQn_)6~WZfLgLAtCh|`|-ZG!2_GfWKb|-vU{!%aOnpR z;=x)*NXfk%%3g_@oqg8lZ>V#OwKs(xQ|j_RLqNm#haUN#Cq>U`X2(GKC~i!QgX54g7)XgZB;NPpf$^yebrzfbw++1}4{{)zFq zURb6LX7hr=uh)yDeY5PjFI0|xeqcz>IHsA&vv(SiPuGHbB2 z1-#BxVf@`Z^a}~(s6t=+!Jd(pCsxeB8@ww*a|8Ro#wMv8{w&M=Knf;K9>>7oD^#0j4LQ@976{!WZs@o%TJm9#RN;f5=|nKU9iHUhb|=)|k&v#4FXBX!BVH z1_z={e-QLYAMQStQ$rvALC>1Zl>t^lFu&M!Lo?~qbb_@q(AEXSmXq;#Nz6b8-9wCJ zKTpB!^y2jo%I#|92L=bWIGSdkM^X}JI8~ypj|*a|U{jlWJ_UE+xiDMgXXTx{bt5t_ zmLL#&i%tZnshs0FwXxDxl;Ql?ery0auNE(un zP~JTXKfIQu+MhhBMMBD5g_yoCPpkk0ch)LV8q)Pa$#Tg^e^2B|kJ|0L8W@|Yz9|*F zBJHi<4yb!<=l(N<#f^p~y5#m%rCjNLK?|O%wRh5<*zG~xXE5T=U__q*=tLJ*OuxIu zWd&@LQxO&gdvZWK>1+JUMH&tgRkR2E5S&e9(ey^BYWCq>6BeMJPE%1Jm0C)>L-;yQ zp=H7HejJfdgh*g8rW&g;Nr?$q*M&3qp3qt1_%`oodYf4U#& z080}4yG=d~3_8GW7KvX>tW@v6gToO21e@bpY%)?l1hsXW;i?y@<`}!&HEDkFvahRwc z0>1>UO>DKHFPgOKeX0LE9aeH~#BM&NO(lr@P7g;BRVt)YJbdvXww^H0d{IR+06v~U z@zvi@;W!O!r?~peC$^>X^iv6w@^Ijx)2>#P%1KC6F$Kuu7N4(=I7q`I3Awh0UpTnn z!rXuORc-x2vt-CYs1BO}!PbCccH033*0sq07gQ&wuS;lVY{`ITvGwv1{(v7QnRn^> zt&w=dj_>hFYb zB^#FBA%M2+0LXlGbOiGR_nW0Z?GnW}1h?Qnrm6U_Oyhnkh;SEp2-&*%d{a zX%pQwrj!(!4$0CaR23KAtq&)-zax)cFK>Q0`i7j%X?$7m$G<+P9EFK+M0_TlYnEw* z2@a9PMxr@F+?Jdtbp0NACt0)%tJ88_lY`F-JWM1FnX8@XgoY14q5hKE#0~w*E|y@7E9 z(A|MiiEklGILX6v&Qqo6v8Rqm4;7v?(#-%4jmfFPLg$~t6rh&fYgUUjxGixewu+Me zZg)Bkwx*6+=?=mAv0TQ+L!o57bXYJ4xP_kI9saPLHG`(P9aCz&;4(GVxO1MCqE{0@I?Ly?Y zz0s+EOTd^b{<&!C=U5i7|9)jWo8|)-CZjd43k3#Crn78#xVN)L{H>$HE36#+9 zE#w>|3!~30Y9MK#o+kSVDo{#&^wvA_N#yy#e7$O)PiFO5GT@hyAF!UpbXNv$F2&?AtW$ z#?jarwiPtnTy9n0VOkA)wR^IQ+rFt=q(Am9{ftxMm=EQp+OceV?t>7-*c_9=m*noI0XG%^ z$c1q0T(VBI&s<%!; zFafkS4pkSRwF};5k5ry#YKz@0@j5=Cnw|&etERtNBYn)!W4f(jj*}pz3#rPJTx|Fl z$fQRXmPbrngLoEF>V@{)lhIk{i>SY+)`mC~Y}J&e6J_8>cws#sMYRHxw7?|3AzX1SqRpQNFFYS@w>jg$?Z zZ!Y{2{zP$vcYuSkng#aAreC^FZo_62M@n-j+zp#d=LM<_pR<%pTBlH2-bj6}@ zuvX;xa=x6MfBG%q{w@EOcavTI!i+fEPa5Th``qVNV78sKkOSseQ}fYHg#|?%6ck2H z5Two~DM*vqzd6?iT~m^u+D;T`lap9ss*M&=!QEA#5E&05(D7*-RK2sdJZyl#o4PP4 zbasUg02MW~4d4fq=szoo@KY++-&geJUm8%kx+Z?&qS#v;$s`=(a=Gef{#PUrfR!Yv zN2Hket-Fiu!$78Crq~_0I;~KUv1bhm*K6tvtW9&J4MauAKWVD@Ao1=8J>6yikwfwd z-URO6$S@_ zZx6g0oxy|>2tT)NvhHBz*U%IDTyQx&dEr;fq5xZCiQh)!Lj`2n^&(7;PNT@ z9MuV~e=vHpU-z|=Y$fz2Ke0X+I~mO;?miy)KD>Nvki(W}e#`P%Lwry4HV05d@MABZ zIw6&7Yy_Rkb$TAip5C=Z2}r@jehSeT)jgGD)E+{5_i}qgps~gDh0`gykUzWdsVud10z1%De z2@|oNVd|KF8R!o5&BF`CvGwVMi za)yq}PdGzSqz*72j+S~vh5KJ$!%t`?P`9|GlQX4{GK^8Sf(;5&)TOiY3nfAtH>L}oC*Amc*%cOPcc!=o2A*_RNE(aWcrOXqT1z)}}Psj5QJ5F-C_dxeH>6l=s5?zL+!iPPgN38Y6yjLwXjAf-dRqVrgv)7slXh-~5r;QpmLVmLRXOYt1eB zv~wvyTL1>Ct;IFoG1G~2vQ66)kGTd>Q;Jym?kpS@lm9(xb~dZJ?P*K;3E?Q74wEHx zTnUDfi%69&DRW3R=ZfQU>`+dnzO#Be)<+Rfyz0VrKB^#zPu$^Vv8ry#dHLo`q;M#C zaX%tm-#>keI!uE}3UtR*`OiPCi#s}lQude)q!g=FpRYT2so1pM))o#-zzp2Sod44z)t z8itvvT??9OnA2W&36Nr0c$hOtgJX~*j^B$p=ks)4O?Z{Gx|@h6U7)8Ab5(_q#u@=0 zsg@Qc?nbykM&`IQ8HCUjjpQ^}iuA>b!X$qnu*sp8Unogd0Y=WA}mx%R5H*WjTnkGvJSS zG@|k5eg~`Fbhk+FWP*Dee$2SrH5QyVl^*cb_4yDRm%BLV-kZYgjC;wVP$Ij0zu_y+h-3k{~}R;N}j=%csdqOCkaN$i&L1HEwuK zYbMMr$>Ixh56`Iae+GJz43(yUvJ>aUKNjIAF=Nz(e6P1(J!T1#NkDpbsoEe;&@MgN zxPNI)ztbg78%WFFO5>6c5C?HEJIJIcl^wvaPLS6)i=9j5#?7%OoJ9(Ii!bg2H%ur5 z-P8y7@^jFmX5NI$jn#t`Ng*uGM?EZ7s9&@&*@25DsvA_qi1!-H zk6=is$wJkncgGgJkzIxpICSfBD1qU67yN@mrwP8GC4xjp`!2s1Isy?9#f><&UVM2h z8A_hInInJHEDhic3v<(LpG#!b++N9;TvHOt?qLGGy{5zBVclZO;3_|zSs)Q|JW0yG zzyO|_%w34%nRLuBv2a_ltly1c0{Fvw5?<*3p|mxI31cz^4dnDE01`)`SfitOV6V#m zNw0rc`!oz=mFfPmB_r?c4MPaxSrA;<=ZBzuK8_O*+~l)xM)k?F>@mNc(GSHC?XOez z(6P`jZGg4JsU(snD2bpWn5`kvPQ#62xq0sW8UwR+I0L$WAB-6Y={9pd~eJGoF`kBB+DlWu&t>^1Q~$wzEA66*xS2s<%Rwm(zlco?@cgfL5a_T4E=)4 zqygrr((8_iO@XBNj{;~;fW}}gphRRkXiW5fXw2bY^3IMug}tNriS*{?g*;V-gQ3so zORDN4J!ObjS>ErCgzeeV3j15VsNOB=gV8#YNch8W#{#E5j^VdWvTw4O+4e>@I5 zIm0y^`67x&DkK8G)$o%k7mqeJ8TkKjLf5L6^*qB|$o=VNt+BPnAU)q*%SNlY~6kYA=pW`lr zBbUJ#+Hm)Kz3s01L#{xwOj>2qE#Da^*mwJ?0Py@P%TF4O{f6LmIC7;S2ZV^PX z_t)@=DADiT7<-ca^_p@2^d5@E3g)vv6JL-kzs*Rvgt>pS$1v?`=c7jlJ#$ZGArK_@ z{5kZc0(0;4{{3%_FxEG?35s@WYy+q~KI2`5FSIt;`H&lGwwPm0_IB$Y!7r%ahZ0iK z$xeUkov5y-)oo1@@NQ7S5W3^W^)$~P_*_t3np={9ZOZDAPru_Zv-MZ0qF?sUW4wb4 zn3Bkx;i{J{Ug_;EroU=;yRJ}K$^(`pnk!XRtCe({()7G{^9%H0@DzTC>=~A8RlAkf zXXWSw;5V4_^!UBY9RgCvT4N4wPjI9SJb$DjzlXgwoJ7Fwh1vgn>P;(%Eek2@Tr-mp z5UxdQ%EPTT$v+32enzQ15c7iKAcDqqO8xQYLCs!U-b@y|Tl)S6S78*$@ z$W8^zf|D%B+a0-w(#r%23zaAym7A5JD873rRH!asExt*{%0f!R+*bBmq=(yx)!~`5 zd2m9DuBbX8ZV&9xS^A%0dWZEP!4sffRVBCQS(`=|)-VEf?2Kf@V}KfyM56ZdAvSB( z$Nn>dncZ!;0p2u<77;J5&(z+r>u^Wir4p4bEd8)?+AX)HVS3D?Ybru*HJWi#`DYa+ zR~dog_Nt+!va*s7KvbPRJ+C+efLAdMR45mNA7F$%wvMIsIp7@bm~F0S=a?X?A#^8}N|S4F#_As)bizYWQ#aM+@VE zDEV`ORHQ5feF$Iq7B*qW{XXg-zKS%7$|oezWZSOpN$-n+H;tTGQpm2uCkMbaxB!+GQDDKFc8hyW7 z;u`y-333;!oCnrN^GG3L?T<|^>RB=S_l)3%G1v$4;B1!KFNJ+}RZ*>mqMga%BISsE zHl3Z4Z#~UhiqqiWlsgrKB8}@`aVnFR6LAGpDFo%%PA4PYQ6ouTUB%b;H2sXs}RFQ27;Q$R!67`3G!PwEYXp>I(|I$5Ok^wxkN z_CYt4fLPz-fj_lDU^dguuq3HxHQO#m`rjD|j2G~g>HiduZ48p`BfA&1tIXAYN6S9+ zX1xVtn7H7&7X|TxAFK%0RCjZPNJsh&x|}>>>A=3{_HFTjsR@xsU>Z=;E`>|U^d{Hy zml*5hG>wE8sLwAr8{o76YffW0G=Ox`K09P6p+a>@W8RCT$pr8Q&Vx0wPYW?H+vi=R z;yzm1J@4uA1>=+*kqFlrFjhJ|ZM%D5Z6gANbY_A0icrU%?SIzv;Y$^EGW%2v%08$lT(a4#6@08p? z1&9YdEtCvG-_KzoQ-aKUj~P^g{$^iWGM9}Xocc%-qRKDrleFWbI7>BCFs|zJ{pYb_ z73Z^P*M80Wk6RP?A|WLP9p5{&icwMI)@>T}0kjx>2#Dc* ziSzOf95*is?^@nePGqW(to|)FM`5n74*0td6W8M?7Jis@SHf^dBheVk&grKtk;;i^B`w7M3}+4`qT zxNu6_00a3O0}J`5p^5-#YK~{@fASj|>R}=MY zS~3*%rnC+vjrH|}F9UB4Gn>YrOLb9#+i7?RCd{X*Ra&SGpQeoxM&4k`YHwkpy-E7H zyFY9Q^$wR<G;1ffL>-*lMy22YD-lG>ZK4Ma>svO zV>CPH#$ED}^3$eU34Q-Dn~r%=&)uqJEetEufaZaaRwNKdP8E=caVccCAqCJ73G;!U zocDqH%!)jwAXAl(AXu<{Ma!FIs@IU z4CD5&+RioRk;iNKsiOT8)qYW?`qXuj%h8g*Q3t%Ktum&cC%lNbu9J*`5=^OQmK@yA zAW`yE66E`0Ktm8Z-~8t-{TXKTXSCqIC;a#6k(0G*3STn8yjC0Ou}+Zyv(p#phude^6F{W`w25vICbgRf?j1zB`Eh&$O-_M!TSR@DuQJ zLb3a1ptjhTzoA&G3SU`_tEo9BQ;D)Nws5Ay|0b?y5F;0v-nP?wl1tS zaIOykachgX7K;RsJH~lS(X?wtkqoj67<=U#7QF#=Hj5|giHs;0zf-PZ_E(IrYR)br zaCU@^(iJK#qzAi*yR4z9)eX)JG$7jmu$0qp_XtkP9bx1A^u%8 z-u+MdROKNULhUuXwpM2c0AUM4t?*2<{8Y}D*$keHT!%d%P^c*fp?DYNp&=63;0nb> zM2_cC1AM<)J;O7GjqSmVFzJ(_H5yGwV99dgDdeo?J}+MplZ`mhs< zh;A{^l>2g#>ZnjDQ&J!O(%|D&5of4O2VTlubxw*i^{vN1%?WOX!n5e;KJ_!i=#PC` zBVPgt%TO`T2hW6w?yC@z2l#-pB93uSMbhm zAotxeDGJ)1IkV=h7V2S4|AG}SeZhE!`~mV|#he?1iDG|MT`}A5oXQOxqhkj~=bUg$ zuAN;P$w~zqJJo^b?T!h|xHDp%p#hNfdDhs}3Z@gNTwf0-iO1|Db?0Xb%j7h~1HcBD z{jd)b-{WyGu3Aou<3#)!W-$jGCV(^WpJAeWYc@51%GaPRI2P?jL3{y1%AbBi>x!UR(E`!;+aGf=E&kK;1AWj9 zZP1ti&LMJJ2)~2iJb*KJ#@yF~fXKQ9i1>$Mk;&d?$DZdb%>l-loveC!e%|w90-CB) z_u%p()$KiV2`oM=MBEIC_rvWl$rMVuG5)5N98p)>gB#inD5YtLWJIu8|B`7$X(6T4_AihGEobo75RqFT0{*X*v^`}4d$K<+;vRDyfv_$pFmX$YtfX;ly zJ^NqQgux+BuG^ktN($dZ+u1n zok30wD`^(Q84Tqx4Aj&E`PC#$>CY&_pBT%32K@7ke{T5iIZyaAz*I^lcKz1C#q;|J zzHnhXMYy-t)Dlv0B5Ow;U{P%?EXnqmTYI;GEfbd9l1QJVZxAJOtnbIV0yuNP#3d8n z-c#(kvs1}~{;Qp>k{t>d4%Uy(ro*Wp{(qJGIW^=uAqy1-ez(B@9T|A?ykNvEsHM>dTjw4AU00!?CtB00zRamwwSv`Y;TawEovrIdZYvS;mYoNa4!CAr1A5Q z8$%nfZMcDxKc0q3l7&wXO@{qNJJ}Fx>iNAOCVA^GE6Pn5^+IqrJR{_lF-FLf+~wpc zO22DSyHp-=984z>9K}36C&@f4a6GJA9OFO!c&2Ful;!y^P5a5xXPnJu!RJ#w4)Qz~ zfejd>0I))c0cGd50oZPJIFsWj@?KXhao{1;^_F8i$q@SHx{Y7#n4jr@#4R-{onr4! z=Vw#8_17CT)EopG!pnA7QG6l)>VyEEcfuN2y;z>e(%wBMdzxoY@7hB8+=skXNc?&U zuxTFnW~XURl>s@OSs+G>ly9^Duu+Xv0N{oi28a@gCXx(}T&iS>sEvzxTWMY?RCmA>M$c#5~HnPq#P0JoLv!SpJW~hj)EB=*~sigyn z+7ihTcRjlkwk8hFytIga=;py$%uYQDf(j-*gYjDF6{+I0a2|F$%^{#<9y!gQvN zI1uBbMApJ5 z_{;lYvE*L6gU>RZ5RNg)Pzp~j+iHBmW_JeV1HMfsYIk)g(*i!2gDQrKQ|6^=5>2CE z2&hM^*yuTiN)4Y`kFXYS;%82p>4`<_sb5ODW2#i$+mz+LlWjFlD3~f13ERxgTFG`H z7pb3--s=eRs&&OsJ~*)ZZ}_c9(K^6*^kRU$2A*i~@#@taiH|~jal+=cF1gZJyTk>{ zEq!AAWbn|*wdN*G!=%=5tBaDmMBg$-tSqJ4LtQthdlM(5P$G?F=<9`F3PQlel;y%Ks-fE-;iYh+YYZ8 z**|38;Js*f#Re#RpMuSj_v-LX2F$FjW3&8-&4IrberDKa97kmWBG8j4D$h|HAr^o5 zo7ZOkeKOID<6WTB?9u}DDRpxa-7*z^BlHI)XJuZ{z*RGpQ&ezZ6eT2(x6ESmL7Gm# zk~^b#I_&UxK1QHH2;66f*dQN2!zn*%$?`ip;#7CN4|vUf6Pz&4DFLS}P}vIsfbI9m zAyj5;0q|}>`ZD2=ttrG>ERf?D8dyx^%F#Vj|I@E2E4#Z3&URuLV@Bp!a!p;C1qEYF z4E1r-2(YDn#LY-hMx;{=6Ja^IZCx1l94VhHNmD`oN-^{mo`fAc$~ysqQU4pi?2d8o z8ta$Ojxh-0n;S>HSKPw&LbsX)&ZSp=UKF)Z-MpA=mMj##g_Im39?~qcR_fY~d6EK;RF=D)dW3 zcO*(L@{Lbs4GDrM8v^hNb;o~!Vr1$~lzH^lVC;MS{(GT>wm84K1K+k-Lfb_UlGc!hI-QEQ4iVCKC zK7pMg#+KkuRLkXm?O0G`EmC@Iz5y-uhJd9T24I3OfyYu9C^D6zy~Ax=6H=)tmK$aU z^`Tr-N6+Z{yYg^drxGv7`-wFW*+Igd$x> zylIf0+h&OXvlnQ?D8tIOT?N9E(Oq%O%pxh~(YTt1%kfFc!xRhBUg3H-{Z`OE{o|6R zie5s1`e*S(y1~4R+^zFeh1sQ_8UKjpPIuj3p?hOXD@v@qurRiNXSg;OUfl{WOS#X6 zX-3BVf?H6)ZF$^U5?+Whce*rqoc+soEwa3#0HYF`w_ASq{R+kBGPFWm=Ln*xP>BOy zv^(yc3d-p+Q@Zj}YQg#tSsvZ;fk6JPKWd<@klbKQU<2?TQbHs? zuO;LK>{wl~&H`%+PxdT-ik?C2w}ih6|92`SdE&>%*GxCH!=`43s+Wq?6h`MtfHL$o zt!vtX=i77GU&AEyU9=Cb0sl$efT5pAy{FcFxWXq?S59vB3#U{S^MR(-6frLu=6{+q9hEOfjaBMhhs@~6Amvd?M8jQEkq)m{7Jr`Vu=&vn%8()abYP}V9|CQTM`=&kGR7pd= zbzOTnJ7(>kpQy_dmWk=AQ6xIY$~w;Z=P-frY>u|!Y3X(77#E+gnK2c(KZm+Nnk34^ zyE@8yq@c0IJ%4R*?biq{y^a)oPDy->ESqJ#u=O_89A-*OUuBmJsKbs|GtLlF=V5~Q zHoizvyZPXcZ{U424`u)}+mL}g6dVgx#a(eDE`DCAq4abQnoKp8^r0xlhn_4>f%RcsROFuesuWoF(yeNVq_EdC#&m zRGI2(sRns-?1YzyW?>COM%WSSAC!5|UYJs`Sot~3YrK5_82{0-sO6|xsjPSu#^FHb z(kW?a0G0pzc-tg+lC5;7 z!AKEfK^p1~od-N@zjqsD>c5N-9JuHUhQ2ziPrachRin><{(n9Pl{j-q049U+$I8t@6wA(&ZQZ?Y zp#>)QKvcpf|MnV7!5NHK+xhx)ROYYRg3{g3(MkIptWmJw zSMR82)n0uQ&oueg7?vnb52ozr`mi;s4lchs1J)@;t(B>o9bMk@AANUp$1U!+j0Jw} z481N|H7d@P0?Nv&%_Nx)Kz$HNuQWi1`qX{Kv8o=}#$ue*pQ2DTilCqHuKTVrA;;C6 zQ53g#b+xm2?$wR>)uET_EiJ|37SrZlWquT+ec@@C{hp z5xy&dh@ug{OCsdq-(Bw}(@O(7+IOkgOZr1Z0{LeaXS$&e4!?0kwkzgaxvPt{V0ilJ zjfh%-&^*_phEMth68>yd1?;&r6z_BpS64`%PDd|D1f9pV6&YG9#P~dOVF|MzXiWdK zT%Ad#D!5bWr)1`_UvS66=UDqYL}1@1}RlmWZuFV`p6*94Cf==pIaK((L1BlLIHVyT9nlU~VD^{~tC?Yt%Qb{fw{Dl?z@_aYV>F%!o;p%zRT)v7cBs zuP~T#XO-xZQ$7V|MCLjcZq8l12yA>cBGRD+$~RsgLtB$B)`B-mfSX?nSpnS85y6iM0=$0+rGPJr zat#>e8pF8_L!f>lSn41@7v=h_EU8S_R0s@MGaP6T%NS$OIMyqE+k?wACIW^qnvuEv ztjTTx%N}O20s2#_NL8)e;3QEHv-ZyKwT+@!0nD2A%B-t7e1$c9&L^6lAPSQKX+snw z(KbtsK>qm5hxJnKlG%A0L`0kR3=~_G`$|uu_h?Gu_)%ql1XOD3YfAX5kux6|hOdV3 zTUcp^c;FQ7ES`n_TQO@Av4?V^?ox{*C0J>2j|1bw+mNnmU9=B zP$yAzwq9VX}@7Ihg?g^}F+c3TV+>V8qST4$!WIbKD`3&pg z?znO*^KjZ9KgEHrq&)Uc$NtumxjUS27E?%w1_+LI*#!wxmg^ozM-$%hC<}~)9}H!T zrokkQf>=ceZ>g5+I`xic=F@?egLy%cc)zris5-Fo0ZhUGhn*?EeMm|lXL?i(37l#$ ze-#k9oZ3IaWBWz|;8K2c6ZpZqArEoI;bDR)^IN0f ziYuZ&l@Y$@P6G1av|zAbi4~q!wLu{R8z~kFa`~8BNsUd1I=!3`;^QjG}9H0T0$W0<1{wgx7)6VU`jmBmS8XWz#wC=VUFcAEPvGWH$|pTNTK&0%y#sX4P{zkbcKVpq2}F& zN3$&99rv4E+Y(+fj;w*t8jDG99%%YEl=#Pg`N?1m_d8eh4vssUO_DrFa*E*3f~34y zQ)?aYCELT=XsGyksv7cQCo(TU74Qcv-jTsX~N(It*Bb>e}CMaHj5&7 z=Oag6fpz&3_HM07*2f<@)|igB6_mDbj_S}WaCMcPc=4kHoB zRct@Oz}RNFxw}(hcq(q7s=00boJBhG3@*9s19WJ)ZU!<^os>isfVCD86%wN*`978y^ zx>ZkoUlRopZnVWLIpV)It9vT>t{B3*sF;e5;+LBZ;Sb~l(gj&=`)H;?rEc!J9;yv) z>6K|(;82RLvr@1an{~%Vw^%*Of`iQ*qr)y_(^H;RRM{r;1bKwd0qQ(`_v1|0yTZfuWYcW+zag_5AOHygs7WG#LuQ1(OwaE_9U1NcuGp*F z;n2G;%Q1QB4~?tZC}@WeAB_JaqWQBVkK;oy<^F4?b zo-BhO`dAux)Q#o1zvj3_>D&*_k-H5VKf3V|ky21*A6T_5Dm99}(h38q#;1|5!$9t} zyMi7Y`_NTxs9>W6s5()w4IC5uaa`M(u@-BU1?KfpiJ}i7!`Rq*vm6+#K&TBmEvOH$ zgn-q+_|%hU#Csw!F9lph?$}4`Qai{aHjh3JMrQOahjI=y@+Be=TRRZy{;S%xQ5+hB z*Ay19RYmh6MsUV#+_h>x*tLW4|Dn1O*)VC(-}Q#{y&hEXHYJZ>A`sX{>1^5V1l=X4 zxQ7p5d@8QTL*?wwaL97!iUVu=P~4PFU|o@KxL|$Z^yC&>?91eRoESm`4v;L%h)F`& zg+7y{;N>Z=k83BYmdszuN@%DT<_%mJUWY3#a`4X{rSoM`P_Jgc^pi=3Oiz%UQBuBK ztOZ|BNKqBNUu&pVSKY2{i4Q&qXGl;1Om>KXQc{0JScXqnx%NT$3HD@_8v;?+@NlYk z!j)4B-H|fptir5dm$O5lXqvNTnO0=*eTNnpdLLE3F9G(quQ?@({(aBKc zFZtEb7y2`PIip|{j%FzG)=TLFyD!L4k4(>p@{%mv{!_tv1?bzk!cuXd3pFEoh4707 z@hM4vVx@wj_KqNhE4eHcj*z4#><;w`l4d*~0C#^)#SmMQ5*q~uK$;_15E@hFDZT2t zsHE|%aaDwc@ageSIS3@Tdpe2pG>el@5JzhlTKTrGTxRkGtNnUe`0z9N+t(Ip$1B3% zKWu}9R(N8A~8&doL8JEAXNSIJbt4$)C=;gWhuF0CrG#4!U~!N zME0I7QJ-I}43-9^K(SsXpIXkzBt+*NWt%QdhNSJ_KdHNtCdZi~dgoUd4lEIFW64_K zK+MLl4SdY7FNbQox?8kt8Off;oZv)o;J}dxh~Pv7cZlE&|Ac@8|ALoUDa)#q2i!Ic zz{fCOcS$NOm6glO_sW91uVDpjE!p^44y)DkyTi<{Il^&0l^P#pA<`T)k zRu*Q#GsRlzO7 zUH}*VFzf8_T-!!mT!VS(x_0hn-}EcRU+8Q!WN-TXCQftIhGuY&KN&xZvObU@Nl1;eg&(8`f zl48Dw>i9K%>7V(Czl39?HV6X#cr?zim41w)iVu^E{1;8iuEh1HGf?4 z(VuW8a`Hu_i}9^GwXu(rU30&bI_kAS?N<1Vmn>9bi5zvo3`TejeQ$U|;5xXiRqL~0 zHG=b?8FzFJhd&ncxWr)(6&YukkA1ZltBI}p7}>+k;Y~d$OS1B2Nw)UmpS5*u%hKJ> z*O<)cb5*hV@#y2u07nJXZ&wtB&O3W#NFN-H7&x%gjJ)Cjt zeZi#>nh3kIja%^x+=8^`0zDzMgmK%hi`R(1$uq!mqoyeC+hwyskCOLw=1ZuZ$bk_F z?W$^TmHu6Bt=VkpC+zn3`KVSaOwM8b8=8t-vweD$v|nvpCKe1%LP9;qB69JEJL8wX z{fyM1Nx7uiNU$(sWC-8In)3ZylJu1KSJW(nE_@*i-YXl+H_F&6K8y__&HUyDW-*K= zGdNjMcwXeejka$L0JiqWM>~swz`X1}GR@%Uj{~p+K}Unh8_&y?lh-1xnrqgv#B*$R z#HRU`ZOzo=Olga38-C`mdFG~?WeVSUNp7m++ysy85(5%p#e%6WLt<+~n`Ry+kI-0F znE|Ypt)D?i^Hl934+Ku(VW%cv!l{p|r|@6#YK6cu>YPiP8}-Jf(@bTmmqu;=S)h7` zS4zevLMS>otVIRt3V7fLJb?N%T(H)(ls?QBv@e#+)Q{(!oT}%ErJ+v0sQc>w{JnSSxB{{nes82M`f!O=ikFivJZnqV&Z zZ#&4}nI@V4@aqZ`;DZI895`X$sc9PgBXHRkW2)*?iT^f!bX8-E18xdO>Cygc#zQV| zw_Q8N3pN-anVh^q>z;e3r30*evECA}i%p8#uw=oxu4sX&ASx6Faq$GcDGTI-{Q|*X znVZBhOU<`6^|1>SjM0w_29p&NIl)vjZg+cQ zXr~h?A&#M(G@K#U4@+IaWhq2XT{VromUSZ$uiUdoK)w+wU?V^hDFktFFL%9mx7aCN zFcPsPZsJaLk*(X*1S06)Fit+y6p1nAFW{=+PaW9!g9o@K0)M+#dJU(czmjPj4brBA9`RIybs6S+ zLA7OOHAPD_^M;X@PQBCHqvCgN=G#XTEQcxyiG8tXmi`W*G$~w%u#d)51dwb-n~iQ9 z2_tXd4{*Xtfx&_>_d{DGuwaJmB|_&+Yy4FUPJ6D^1+pwn2kAk$^HFtMDn4=U&(PR1 zED=SS*;o!0xeu>V9f-N_p9lHouA{e<-R?O*&(YUqRU-4GddJPk^$U-Bix7n+M=~g^ zjg2KejV;?4_pNmmcOgN(2GW6KKZ~ZJe}Fa_b<2=81=m0xPJq?|g897g?Q690TI!0z zA8mtPzeayiDW8y2fHB}^$SPr#qH3JP@1fX!a%KEWjJPNZq%#Cm!MpdiMnuFp2{uEB zgOOy`pG!*RafAfgZCBBG};B?Yj^J=|69Q^y)OH|NMG`@ZiFwhQed`{ud27UC8E zrWGLB3}{~Zna1Wp5iXI_;MKc1AG}lXqBs35zBwJ}REv)xia9e(wA&9j-=M2v0$j4%YUUh>$Ld3hH=Qv70 zFkju8ra<(4Q%DSh2%<#IoB+tY{DqvLwdPLpQf`*c_*uNbW-P`2tu65<@*SfeSX(=t z($QGk+r*X!HyGtlzx= zvAsPg@kKMZLrv3?rjhsL%Mv?p&rG~<)BRY(b(WVkb+MuFxc%{5RM(jGm7bbQG`Qi+ zH4UN7C8Ze9dV6PD_YP(R0&lW1D}un5w34NiT@X^K)zZ4A76+oJ*jXOCB*i35z;T80 z6fiAhH2F%l=0hj@UkGXWc=YWbFAXeFT?jFB#VwCKjHdx<4bIRo{(#x=ct%p&;77t4 zmHt4k;&0a&=57#IlzW@V9Rml&sgTM!$@0w5Na30zs6r+8CpV4~{a8LcF5ECFwj=N; zp-)#jbO0P+3Lu5+B0%Oay`<1Hthk{AI>F~&Q5;)bdQo8wR(j6i2Sax>r2r;9uPBZ( z5m)F&PYAm)q5r&k@!{j&atcIJ5aqfcem-;0BWe?P?IZ!VS`dz-35n{^Wj|6%kbCk} zeu!Gs6e%h6l5gUqzXu;Kv*YSNiuQXs*2NHI| zI!bm5+HMdP&O@b9w-wT1)nA*3@emum1)wA!VyL}jkig;|7lXFZ%p?;lgfK{d;D(5YWqaKIp6wdczxCMlSe zX7mNiu7&_caM2%-c&zL9Bnoo};c*%;EmIrAyYVeDZp2OKW1^bLs7KfeT(&G2GcJ8R z^Ky&H!Wvs(au%H)NyjSGMqDI)SsDk?qWkH^yp*5Es(H}YwIQI{%WqQ-nY zi>PBQ%Sq(+vT^0*d0*Hd-qL=-STC_|{OWn5K^~j2O48#+Lk=T1|}NDzFA)Ij8qA2=7Upi+%p`M zBg?WN^|1=p5=+zo&wEHb^T%#-N1hfwify@(8}7>RG*4F2YGX&DKIBz_P|R5PUR;A9 z-k56&v83mT}KOy zhg-5r>78wnYAY)oMjStK%dx$I8QjnI&~@Sz8%6Yl)1FSU1dk+A{pfJaR?M@`t%V;* zK-e>KS^ggprg*-6S08+&1vFlnA5rzrJT`whW!@( zb5sCe9+GCf7pa$}BdX`92LnQY(kQiibAe7)W;Dr3SXo)*i{JuVVVQ5@9ry=WMMsrhmg*o?pKhSrevJd2@|xzo z&C_GgobBaWkk)%U|4n+m0+T9%vgS8DdcqF5`O&CwBppplV$Uvf*Dk&kiMz%WQYdg+ z0(UCXejzrz1RY{WXnSq(nK!g6e7?pe!d!pj(enx=F(V7%Dd1LPVx!~dzJggP?T-v` z7U3|ic&vEuFpb36bmB49vv=h3ueXd?E=p#76q)*V0}`Jb$1g11PD8swFhQ&{z*6!J z$*R7t%z}WW!`3rb?dHsvZR%lXIoGX|A7JLBx!W`1L8`3s!CN|pijJ{Ooq@eNvrUqk zags4vr3_deitdApsNRcuuPM0*wrwWIK3#EF<1|#Z@p$RvOkec;>PZ^(`*Pr?4myM? ztB33N2O>T#*cX*jUFXuF_YUHD;wsi{vCq~m8}+K8^qVMNy37zKi2?`C8 zU!ojNxwgZyWKla$8P4G$7u$PC3uMu?p?*Bb6Z#a)1q)~p! zgxQP)6k(WvppU{NnNgQnc-E47-Woz95AE9SAVI;HM6vjETk^$l><38DDH1nzPlSu8_jXi?&kCHeVpxKj$twGnhQf{v0j(hwC z?snlcwscDJ0EBjo+rCyiB!<@OPaqu)B-o*9)KgK5d2o`(WmBNF>Is6K60aG+>awt( zkfgPvI-qs+4TM6pJmn2=9}*Yb&_d@D;Q~PxvHFVa2y52!1O(Zzqcd2lE=szb0+1Nf zwkVCW+7#Pgu!Lgz-zgkV4l05*=^t{&OE}G32Jj1i`F;JDKP-vkxh$FFAehjSNVD^> zYH!v%@;u%Z?8KScur2(dW?LE^=p>nnjGUce?&IFbJW?a8Rp&H}+?s{G>_?E1ZkPI^ zo(C!e!MjiYOnV6zpU7PLllTVr5qEGjh>LlMYIG?m8MsHq!$sepvF5i`&PJ6`cy@#LY6Hp)5 z%jtTdslE~dUq!gP zvtdn-J$=>E;^%BX`vy6gOsTq_pS&}km^n?o^h8zH)d@u6VJdct- zX4K~uH3Su~Z?ytK?(f=-ZoN|lu@!}hD&6e!{w?jA zbKc$tKlSnGD+;WarnYKe;^UG~VDuSCeB4iCK-;NmWeK4AzFPsW*MrAGINa|wyHbR- zS>o5}DgAckUYZ)}^VyLfMulH*VCv^U2!yK6m*;-R2@!k{sz9|v zNha`wUcHlPv`+8rOB0_Zn9&7~*ZuH6`vqbpl?wukAi#nxmCFo?WyN=dnTkpA7mMw6BI{B&xDr315Kj&Z*&8tFA>Hs!E-9va zlvRsk9phQvnd^eDYEY$hnaahE>#9;`7K$5Af6eiIS~O-*Y8GSQ-CmJxyF!Ik+--VF z3*l;jE5molbzzCTILQl>Jl+S)T~Bz4CDL~E;Z(8&QS0F5M$}geTz>?g(oSgSpCAQ` z?iv;9S~IV>17o?xn>Q+5ln41Gp|?5JNJAvcgCNiHDJB$zr)Pl9_au%NVZBWsO78e3 zZ2N)H+nDq|;TS~jQ5K%iVR3T!d)!@+1ktQ7L>-5T55~XtL)X;buehvcN^Qo2^vJ-a zvXR4(Fk#MmocP>SZ`3tVuSN}2%5#gtEGr@}QRFXiLe5*p#SS z+S(r(`nxuZ7+|5Rfxct3wyac&CFr{Xp}$KxT6|6IJ5%^UWE3ixI7dGC01IMNmxW@< zt=6In(qZPFmXxu3?w;lt0r?1y#{Mm^#kGr;t-l5>7>J`*xa$7y@uOwo%$IDMZ^@#* zEm*jUd0!;!M+Rc_#=VO#(YqK6qsY=?8v}{CTZWD@M&v(4ptboFb^=bNIP+W^N^urQ zfXH{?7|U@YoDRJbTZTfrW;ns<$c&v~r`j=b49p=O3zO#bU!7Wd0|SmZc3kJuI>)Q5 zO=;q=wVO%vAawDf;LF#&riY5F2|ZiAdnlZYUN}jCq!`Fa+6B%GZCKd%qq+TAl&Mk! zo?^L^qIGxF=;iYIbEA*K@B_I0vX}IaH16gb1!iu_p?qi*8Kk7E5RSl&JZgSS;RHoiDwf?*fk6@l>}w+RngRD zRPU{BsEiAYzqK1FL8CC-k7U&*(5Y^m8pq-bQzNimR2Y$`k(LwpJ5u~6#Q}J9tON|N z3*vKF-}xbU;&1cxTt@D}ctbOvItEd04Khn+4{3_#4CR!7Xrl*Mf`JgwYU&ZP6??85M1@%6-ON#3%zv=c22$!tX<s*Ra8L=sH(9du)KurWhWEvj*I!2E^Me;(evXc&C$GQu z?a9&4I0einiPJNxZ-dtPlhLv|rs|E4eR>WyHVFT%N}vQ`;x{BVXfP36`=d#u zgceMTANfH<>|52n&=3(f67Euk9pOOMkO0C(ZI#Yf7Q6%G)NF8!{{=*WYDp+8HNPnO zt03?PR!cO^XnB=5g`rT5nn))ZH89S6Hs}@h3S3{4u%PrF4}CW1dxXAgqcOeNOg(9! zwzl=4KGqcJn<1v_kvpUd)(mmSk)Q{syO?O>xxps)MNV9k{dmdCgA-{K;Q*~g#E=Gv zL#k|${On>|eTs-VuRd$$T`%`*UdT18g}`)T-1GL^cp~2hsZ+hR_ywsXc4t6XR9GVL zl-bSA7KToU525PKy`^oFC(%x!Oa}t-4P&_4$ASZRQ*}y_h$%6x7YkN4{PGSN#xe6r zZxIh%5mI+6q}@E%R;7yz%?IBnHy~Kr@+j0S+NOHSE%NM85+JxLL|xXn)lX9p_%;0` zU}Q&~(^O9kI6Fg^cImNDLHN$orpV}+-{*>2auYq;yL&7Ru#PEX< zR+Fd-)ob7z|7J}Keo55qnmW@n{>YyY!QHLiu)=&g^|_ht3JkrpXd5*)9GHWE&>koJ zo=o#lvyXTWA1OoBDX-R)@V;jjm#nKw=mpwl&X#S_;Tbi;~>cp=gxB6F3BhCq&97xSuBcXFve zLaNI-U%`}>77c0yU4#}OkA}Hxr-ogkwzhUmg_bnF9I&{y;58}OOs}9_4C^TwK-wTk zTvS-3Mc4r2x*to=M@s;`s4K^z#q`IxY5E>bO*VKBUR-jl#wMA@5zO#zg@rKUoGm7G zzhZ!PgQx1C$+!4GU9VgUrYY{$^y%;EX%B;sV%|$yr;f#$cWuU|MG5oQAPOa>`8zI+Q48-`e(+ z2R7R@&V8=7jI?ghlV=yg55vA`rzb_Rt~?lm7nXd7bTecN@t9qGqqNTHZ5nx)!t_!w zHM6BE%)aYc%zpcv_czidy7)P=`}o3PQ?obC(i-AHGX4Cn}5`hJ4)6~-McrbMx-8hq=DU1ch5kVpzFa#fZ6L{=KA zyc#Lb&<1rxASKMz5wD*kghCKfv1{HZT*xDpDLeQykEZ3wg;$73x`pT11l3S=6RZWp z+Q6>L;vX;@)P-@93h=MHo9{m@ls7L|X!+b1RjXcwujq^TMnk^jPs>VTk z*Y+A0AK`SAAm~ezR&wZ@4Gi+_ZGrfGJi`7#%l*0}qdao#h6pgn(j9|i>_)U62$lB0 zToY_}T`r*Lyy=Doy~Tm%JbMbzIuDs_&IoaRjHk>Mb@0|6UoX8Fb`grT| z6V*WcWZMwco%n4R(n z@$p7}6}lk{bfg3m&UF1}PW%x7g?15xT#V?H(Z{l20|#PpQBLSULtTlslNT9NMq+V= z!&gk;#dTN21%^dWL9eiJf#L_$prnWj&jmKimLS#7rcNCt9Q@dKu zEKfgs@--qsc0`7sfA!>B-SUbinA|k`PcS+P&=rP_oA6J^hXR-28^xgvagdM*jo&dr zxgb(rv372?`oMs~#T@=p<74B)+;4YzAcT#|fFQ)n{2d5uszYRcPA)J8Ys&d?b@r*2tJ4l znGih1*;oJ$X*b|2Sv3pUytch#tu+(^!hS|Y8?!}p}WYg6F0e_2vmUlbW>l%DWZM5d6r@^~(?%p~O_t-*MdJjphe!F+o3 zV)c?A5&>8?qAiHMh5z1tI@iREO~XorQtlxh3KidVJ^if0SfQneUj^UQjo~*X!w6nr z`O&QSrz~|Ob2TeBpKh+WL#qFgRC0&W#c>qN>^d%y+OD^vih+kB2UDUc0XbfX;>;O1 ztdj)H70Sviiuo`~H=qtcwKbNz)jlsXD8dmeyt9}jq7)<<3I)-BnqK|Q-|GcC-wnfR1`AY&|9+X6+wvrh+&4oFBD6_j~?KRGzWTkhVBYBeqZCofmE!S z^Ji9VT!6J94tSV+=Rhf6C)D zBOSf`JSn};7D7zp2!q-ztI9v)4g}fTIteO+sxHoFL;B zf!Q=`eB#3h0hBS@TFKccMT~V#@7$iLME)hyW&FNW5fP1~4oi0Ws8)*OT($Cf%`lJq zPPr4~nk}c8rSiy2=88SSw?sGfBY2A_;1K4I&stj{bT&=nN{LdZ#Ow%9i__I_NeldJwZo1iHN7xQeU+(ldur{)5kuFa*|?Ze`s;w9jp?x5cA zFxUJyD7}7^-WU$}Vht?Kupb+cM(kzD;?M_$vQC2ZdIlKP*~C__IUo{dv2WIuAOj}) z6OPf)G($gA{y(QoG3%5m0?csQL-xf=RHrbHS9?zUp^R!!%3ttuhqNr)zRZ(I98OQy z#Ay^pejl-g^cx_~OAT7d^2i&_2n8&-qY@D_1Q~|F&0}fQUz#o-Q45_s+Y$>XtpoGk zunnuO=>OTGP>HrS^tHn!qxPSMm2J9o&1jC%h!Kh2-Jb!Uz|CROoq-JJwF8=L${mHF zhGN(*gylE8!BqtrL8)CFOV^dNQHaF-svJKv1mv$j`5om78e;5Xw+KsSqNZ)jEhg%c z6R?MKD~$1Dg3+?vh3n@noV1X93Um#-()V|D#i=2g6Jlzyo8)UY6Zv^d*C2vLmdABj zj#9#Peps9i=YJi$K%TZQA-tzw*_uRxdUN2Hw`3lQX53;7aa4!ik)o+_d34$Wk?w+7 zcTZP{&g}f|3Z#Q?cdj-nTcF&(qzbr^nD{d=2mT9$`RE3&8lv;1=DZy|N!kOpa4&It zS9Dt5N2%l>PEPL;{`Dun!UUR)kY1az^+$J>bU>0|G7aIRQ>?8?oUb%9SVTVK;}t`` zMCcRJ8R%^-aT=T~Euvb_el$DU50=fcNF!X<@E|^ir|XfVMZma-rra52n-OD2;L z1H8w5P{AvFT3d7fipU(tVVq7qA-Oooj&UlU$G#YZC|mlJKZuoKWSI!H@%I+h<#lsi z=o52(KlO7yv&DY@;d>tOO#|L27?gvle)j3--C4VaQ8Fo<+;CeF_u81rS63s0U{GMt9|czSeWzGHc< z^>`DFLh$?L^Vn~`B&VlqspzU?uW&Sa@sRX+LcqN-7as^;z=$hERu#i6#-74z(Mn$w zIb> zlaxH~GH6}FsH`ZRC>$uYDH=CRg%&ueVwtBM9FsIY)d&d8}-V;>B6(4h-e2qX|p=8TGNuCJC&p%2U02H$8z={o#%UV&{15-U&^<>S;7`y80aSDAV~dhlada33 zQ_6kn4c++=#=gHpttbz*>g5JPBi93crzA~$T$(AZABm^oaDj#z76sk!mnswj42}Xt zm#VzrL)j#MraHrcQ`a-qG*r>lFFA3P=u5}V@&V>gi)DgIs)S_hCsVmHjD2e06#~5X z&WB~`3vV=tBgh8tZlvBBMxz9l_)iy&&jUr75KqHjJ%`OF{^)EPDS>yyN7n;%YhjS5 zS?nh>0IskrmUJUd5k$?%wkpM^FbMR`!UrfyJyeloV(XxU?PkBvagG&&*0iQu8}`N; z7KdU8F}t1gn*cqNoJHlBxGGUYBDh-6i96U&@+IHj@t zQzOG?aqZm(zAm0{gW8HiOTadc_x*b%$I0N-Asifl+I$SlZX&>=ew43?qSO^q?yjtf zBq48zF4%wID@%(Dfn?}RuK-#h6O2H-q0Yt~H-S(7{97veIG<{RAXMlZO?lI`<U$p|V00qI6CsX)}e8 zZZ2&rT4c(Sv;7@*g=fQ(68M38t2fPie8d(gYCf zP$`Hxv7F<fX%fqveM^7f7pSMR>Veqb)8-^_pon*ZslUnBJ}`V1 z4KQ~@N%i_M&9_My`cM{gQy3r*nnq#ReS}Jh_gn*2-PfURoo)WuP@mqyvV0k7VFZc- zHH66~pCEMxR8)5GL$Q0v=N%lzgIvD&h9$HP!o%jN@d zsNgwT()&Z6Gz=-(VDhQ(gK`U8Am^ia!+cfYuUt2fSW=`Q8FX>(DL7JoBovB<6Yw{{$Xp1V{tOc+>8SbrapRq*DrNq`H;xYv z(t#Gs@?#Cr@>me?sA!q>MW^BWZ8Ms(Ja>TX4+00kq0WVGIQxUU<|XH9Is}P+YpKKN z-K!)b;h`uzu5bv))!P&=FFAWY&9e%S31zj?vdAZzfkI?QZk=cD!|8ZTEowD}l=|<@gEZzw(e9NYn9a7vX%szJFt4&R&Ow`P3 z287jQyc(<`aZfqD(>cJM7&+5fAQ-?gOGfQ-PQT$wsATq-(FLPKG#5F0py8!GiA>+s zcFq2Q2>y#rEmruI&3`&b6W;-I=5jAZi+MDC#OmmJ*WHI_69|9crH2x8bw@c z{#pSWJyb;ulH=+97s>*@S+`0N|0gm)UH|6{?kQp0vJfx__+IfvX!VWax`Y8p!j%4u zBK(Q5{Aa*F&-mwt|DJo+{$H+jPHeBNkPG3NIwilRGcr!RF%8lW<@pIs?aIim5$!{2 zzh`38Jnd`LB3%&=r;=Q=C(-EYC&+Gia-T8bMPG*~ekt49Nt`~>SyoQZ=CinA{?gu|cfZXs1`d15mL6;-o<{j4UCesy7W=NFf z|Hrb85=$Z)3Zn#(N`S_&EIYG^Cn2K{T5-h~WgJ7|vDm z-kQUvvcelf!U8WBf!O%Ts>eua4qK;N1ZugR*Gw`ag2dDkOyL~Ie>i&6`Y-T8;1O*I zU#@i*3(h{S*iV4sDFP$7#;QZ<3l>A5u)M@Pb*cQYH*%`>{|9R~oX6FQ?m-$Py2JK% zRh7k%E@B+(oYNOfL;4+uQv#@WKJgEXFH31g;M0r{mLSB10$9N6q33Yve~g26f_afS zn|FLjjCC3QN>U(m(%Fad?7~!&Cut9-vtIQaPuedmRhnNHFw5ZWAUk4`2vgR_>+&J6{gl;FBS8D!884_+yG1Z}ZBCX0o35Qc%d(W18EVt$m@J+|or0xM@4rV5@SF}2D zOZK2^&eYb>egH&pGM#E>u2%&u`yUM$_si=uJt;|_slp*d)wL*&RzGJK>QFyjPFWfn z@elS9Xq^JZJ;mRW^ddXTtx-reV~g_Eo~ULxJo?9XdcR7N#C~s!4sz^E+4W-K?Mwe^ z&FLk}4s3vc<3o9L@jc~Vruwxo)J@4s45STJA7p+|t&jVda)^if&{Kg&AO>p)SFhb@ zKFBkCEmU$Xd)$xj#{c-)FaPnYKmPp}KmFUEe*TZ2{gDvf-z3&rF4%L`jZ15{whaSs zdClOdK2%sk4if4FWk(B_ZvTQ=lTH9%habPF3t=dImJ`@HhH5e$f>YLIh^N_b7|Avf z@0c5!IEZW-SX1sxo5iG`y4AfL&%gK;&2Jip z8qdI2I8IX$<#7uMJqb^JI*F(xZvtBN+`K%4Upu2Z6eU|9xy*)F=nu@mp|OqeXBy6N zsLAb_Oit_ue%37tCoELEC7XdWG(I7{dO>ivTDOSTc54Ygc)d~J7XtC}FNo8PC#e z@Gj8&xYn8yi6810i%PX~W>X*M0C!{yqtKTNz|>)KzP=^_jm6G!7tsBXL0H4{fTpIa zmc6;7AaY$*C3{4RJuPt8B6wZEIPHm%%HrN7iD`E5t3WL^8A(eyOV8R}AE3_pXj9si z(5kK~*6F7~j9}x;3q`wRMith9GkKoF)+$#vo z{KVcu%fiee-?$UMihU?1Jof>L!VuklrkaW;ZArX zpPgOEdMMuV)w=h=bZ$mUA(Nr+Ax2>sn7D^FA%s&? z?JJ9;tjnZLqvu#OLhwY;q0wsulU7(%82Lhwn&*7g&*G}Wwjd!4mYih8Ir+(@&$5tc z6sCZm&`6#@OXG5I@jIM;UadELLFVYKU|DEJEz!e%Pj7_5633Xgq)|ka;3Nk-CejBN zb`cWCc9f1Sirpz26=qLD*;@VxP_{V6GSp?cy56xy-94s^84RRev{?7+PIF^OuRGU5 zt8>C?f3~*vc;zpO->?3gB=A|HmE{w#GbM3=?K`?ix}~Z7@$RefjMJA`TII{t=oL%y z-W7O(>N8GBB@Wf;4~Y%>*8NcB7hzXZ}LvK1{7? z&ZBcwc!w{bUpQpl62G!e%v}v}%CGvQZZJ1D*dJe%tgp@K8pJ9or3T1u$or%;-gf2a zS9#|o8A|-Z?V1}Q*l1k$t0+WaK+V}rZm~UR$h)`Fz{h>Bhzhojp?%L$$yD}?x^tzL zX+DWVYGFSwo%YgfmzCF^^a!r24hwF-EP_t;ss*=tkuBO2Z5KeO7V@R3rF^e_&<+$g5I@!iF^|=;aJHx(aijK)E!5=G`L8GrZtoPxJMYNJ!9|oWDW^@5874Cs(WwG>iD=xE1mM1Y&wN`0HksS>s#)L zWhy3urQOZk;xIIHi=(!%#3xIC?;voFW7-j@QmozYxnA-uFvM@n6Q|X*#FBSQ&A1Zg z6?fX#7R71iGa`aS8Z8Mxnhhk|dA5}1whw!9e-L7kd>hB=wh^?1V+N!~?+sJ&aupnv z3L!q^Qwv2Q!*aP~3j^8CY_hbwsl5L;1;i@b96lIwp$0 zpf^PjeE8m#?}CNON4%@*#&;6a(9cW4n_F-etPkVG*UKy9MTu-lZ595{KXu2rZ8#=TEv0LnUD4@sbvI<0(*2%GO^=;#t3-7>IPn6XS zmHm*oEO)Nwh2#8+HLb3Ta%o!y?dP+%ik87l=<;8JBnTGe`ng2J~{HqTC``4u6~ixn;b`kX}#7mHFA-rd2}2R^fNxuxe?ac#S* zd^SElB=UnxBwtzRd(IJXGjNC>E!mRu@tCY0tR+wu2$l4>Fi<&E5_n}Qs!|VE(u!qe zj!(ijp{0-)V=CTYV0HbVO-GEmmhS*+6$!?2=yZu+;i0T#NAfhckbMQy(zEUrkDl`@ zMoZ6X1&jB*u(y?SI6)aNErqV5P-M=#bs@Zj!q3y5lGOmn^W$#^ofJ*WSU9(EzXZZY zcFuWz9Vrq${*GOr=O7Ho>p}=p1qLG0?ZO1j83$rWjwc*>{$KYLhA737JC&tC+eK*> zp4n6QpL??(dDr)ppnL+KBUHxmok7$IInEO)Mu%g&o@o?=xL{2cwu>kQ67m}k`xqIo zM0TGpqt-uTH(KR4yj4ydQgd%3n5Kcsyy@n~aH{%}3nCa&)*uS}68C+-kS8~xl1z2A zGo?y$&8GglU`=e*GzMwMA(lT9B2`FRqK?q|vkd?NME$1ic9KO(q+o-`eMr~(Z2u0V z4vq7)nEmYvW`kR|;E1hFL(Dgn)E!F#=mm}v^e%=oXAXnOoJ=0MqI@=_rtIM~1&;T(|z|;b7Q8{#t%QksaouV-P>`f zgw0fC#IH>Ankf}9EkRq!uqIu*RMk%6KUz|{HzkW|sL?akNJX8djaAiz)US=(MFsWg zQaO*xcO>04N*3vQPLRUY@uU8_u$0nPr_Hl$pr_%EN-#)Lk{rId-ue>{Y2P}cDJT}x zEdEK|wJkZ06w!CS!axKIf!k}zy7EHIWp`$l8Q9nvmVn@;Y*%+{Tegg3Pp{{Rf8dFK z;f+7xOE{U8vRak$fX9Z0josO4cUdY)rL4T1JO|vKPG7K>9e7Qj0P{l2N)iKt3!X#R zgwyeDQ`HzZ=!&|jt`Labj|@#@@L4GOp5swcKrJklhK84nIm7P-O*}UxIU)3YQ4Hl^u(mk0G;`4JxZAhp zAd-KSlW!}UWl4Zqpa$bKn5D`j;~xBax78+7>42UTmjBA`iC)sB40=Pc$@+uo+)>{H zj+C_~;Zk_w%`ufI?DIqY9e=Qf!=2ZrzM)<<#5`LxU^DScXYbJu28-o2j6~VRjsCCy z(0xzM@q&P+oB>VAIEV3yW90Us?{`5O5YAOQfq8;!FyffgvTEYPx4R5W zM!L4O6;jXmlOx+h01G6PY*B|9j^TCnLI6&?N`DK%!C&wbeJW4%8$40wDuP)jFPstr z4fQTpuKr^Fv@>B|VFYl+5gqPNZ}FutvI+Jt7}-a` za%qpgUa}|y%cV_7E)}!up;A@c4e30ENKO23UxQY2-@GkR@VRpQ7C!}3`W@E#&(2V( z2Em7FwrkKvsI%z#Y^u0tXs=W=4iui=*L>E>hHJIQ1jt?}rR1_yJCQG{=)7MIA&Rmf z_f=@BQbkA1-4ywR3%5wHsN70AJp$0G3jlT$j~%|?T{ai0R30k~W&`y>5hkn`xZ_?N zP#<7n-_UaW1y#a?u0(#pP8@=S+T3tIdLxAS7KfEqE8ErQS`^V89nI0%jYltVeq!U7 zs;&qRiVmQhhRF8V+*@KL}p49OV@>z&Knp7=Dr&P zWM3^Smq<0M2R!n1;WnJc9_D-7QhUFl*HTFImy~#=_Y{XGk%ARBXhSS!1~V6)7Bidx zL}0`Gh;H(XHLpnND#-9pp5~NhIonaT`vXG7;;Q$q@sr}<$%%_FL)&x)2*D51{D0Jx zLoYTA{#R^y5~%*bIV#a-82ljd!N^?bX$qD7P&nR&@yA4=?@m(A^;5WT06N!>{E&3N z!aQ!#&7flmKO2KS>!npn-?_iy?u!qmUMjUC1=*$5@*lF?)aUSys0NVM>03cl6YkmG z-LWyO#NOd=j!I15+Pgr}0iAtq7M z^T_21*duG@RfEOTD8qhyjb;F7q*0cl2zhaXuF;l{hOCDeQN2;F58YSWxk*>)Pj!`Hs5F$DJnWMq!(9l3$>~ z1R@O_a1_tPD$Vd(xI2f-mU%eS=8d5#X0O#R{5{4d3r^z4ZmZq{ab z0ojo=c=$zRn>Uq^6mkO~=L0Ilo+a5N&;T-&NRtz%ALqk(;Z~w=Mu1TP$;;<5tc&38 zTrsyB{-d6Cih+R1!h%>2Zy_6?Z16k$xr!Lko)LOLOO!k@Gki zz8So4D%?$$=sqbUjZ$iK5*w%%d2g5MgOO!=DBfw9kQcwtSA)dg4Yv(w{V^} z)uI3mo!fdEC`VC=s&`jd^r>VDOa~9#(p+nvtLv3^B+pJV6no#Fc3oq~%36GlQ$AEN zmT7UL89R<;>G)ro(Lp|tC);uJ)eW77v_Su+4H|xHN>5c8v8uefqS&l_3|Uw?V{E zbGt73aGzM6?F;aJf#aRLO2Y-5-Ugc^R=zMLbV9l*VH%}Kp+(cP>jY07H|Dkiu_Itq zw-cg0tyUdB^A||tk~2mAk6^~1@tZL@`p(6K=?QWrc6G@%>nMi#ZT;shXhA@Ohf+xDETp#eecA0V$5n>C}T20Np zL~dh4fJVRKP3)>$)W~b0rLy?IrdY_JS%{}*kCOX|I1FWcyg)-4_bxq3?KB$}^WV1D z13xw~OU@o+xnBn-?ED zZkXljz_=v3E1=dJ;!i?>_>4&Cu^^@qNf`uG)kftf4@rzR$j^&xes3LTIsyJ`iP@it z=Cx@=x|$w85JNxm);&=c0#yjS(CmbW<&hajW_=lfJP3RP$3Tdp84{)UH%PFLsUbe` zkSQ$;w%&>`);EFMJ?`(iYEVnuQK|2H{|mkXJ(6Sam22d;E1iw=jr^u)53OiP{2jWe zIn+9ZgN0Q|9*$i564^(^TOT1EPvI0`ZdMduU@@k!iTlBocFy( z(x(xCrgQ7vntxInffx!aEZN3uq$m4jN=h8O8UIL@sttd3k6RvPPRrhs@(** z=sd~d98dSCX3P-6C(x2H(77x=vQfmzg`NGBY7Dak7J?+?P;IzKySZ)D_-11$puP^O zQUi&KhMN`vEZcs@30w#2CvyGrPNGm=&p-T;Udb*R0OJ&l?I#8U+SZ;B0-RuIRjC63 zd_(yX_@Zr{17)6`84jnu6MsB32m>E{@}a7Hic1Bx2Q1zj6DNKp1d&X&DU5HY02k8j z@_31Eu;hk2H6w)-)ol=Q5P4%L1!niEMQR$Vo>uk=4`xh#BbX}grVnsCUABH%;9E^c zOotNL0TA&uC)nDbp5VDbEVA`uopbO_wS>iE)lTaax*zE88gQu#(EZ8bl#&CL^HK$O zam$5@2DQ|Zb9u0{J-rlhM6RtZ;h;Jz0jr3!I=l?qVrL;CgIl3F!&yk%h$c$ubSxW- z5-wY1x)gfn3a0B^(yGSaS%05qMY*0{G|IYZD)VF6<2Fx~~l8z05;hr{~1z3((S&*3XV6l=oo4YrHMs4a%R)x@+& z(GRB?f?)y;%8QKmbD5&L^urUmsxkoe*=*xPlnC~0f>Et==FIZ z&M40SI|DJD%0g(MY6F;#w4AS8WfG3%l9eU@BQ_Yg+O zsZ?QM&+;TmQC&P2JXzF^Gl!rx&m3^|9jZJKe%j$LklmPkWVs~ZTZ_|BakZbD22lRy zvaq*EwLQSqL@Dytz4OIB`UHu0zvdVC{rbjtL}xzf`3_FIVt`8&2Xg~Rn$;%3$0#Cz zBm%oe4NW4|+D;nCdRVON69iQ55AXJq(FzY(8;FDF0lBzz7F*m+k zt*fh!$sRd7heUa^ct%^$xb1^4R@?_K=sSE`3t1^SVHDpIHF8rGrE5bI>eChj$dhw@ zk>#el@v9D|R9_>Dhf3^==9hD936{nb|LEYDs&5ej-jpoo4ZdHEQ+ z-eFl9b%&FJGv20t~%@w+dZ5C6C598IprQT zo%U>}I)lk=oKV-w;!!Ufj=b5F;k-1_jhUC+VOrV7ah5~~2>4b0zjFlN6v&s5ZZx^x znl}KIqfhkb)a8-THWoAN!$8A{zW zU>6ry!Pqk1QUHN|!L?}{X#`&_(}Vq`F&MF}VC%+wen)CDNfKIe$|{oo`!Opu01m9c z28b1LM13cRmwjO=orsBck+#VRW&|35|9*NB4x9s~tqEl+ou&`gMLfv}#(t{rc0%BJ z`6hGMT`qdk@)Lukn$KHlHX*WGbN@5;+2->V)i`grs}h!Sn)F#Sr{0AMT&dt@Urm7& z4h>hWcYdmlc6z@q9eHDhic`@{H7nLu0k4U0bpX(?rl7}^4&l_OwjIxjbPiL06bz!` zvAZWn$!81=;(_zaMR(TdRrg3>ld3tT!)i(z3NQE0xrc`@k5IvMnx++nqR!fWBDM+AX@7}c3`E1wWDAIgm<;vv-4FfSW^r~qrBg)o)>09;>x3Y z#~MYDGs_H|;3;K94Eth~#J^#qBWZt3%#l2i*fX407o#q!2Dk*u52ooP3(`0Z&R}PH zoaXE3ic(?m82e2Wh0~k>xWfVGbv;BrPL|20cq-=!oT9rQcXx;Ty~h7b+St{KO2OY7 z2Qfm??9%2;90XvkPpmSZj-}0Yu4i+)u6!J&3Jqk+jeot0639_3c0_8sEoI`(mMffV zq7lR%LVGpz*qZ~(4u1FEjybzu7}5zfAR{+5hlj?o-FEm*jv?jsL`Xu9LBze}jxam# z1hO`c9S!p-_hSh>*KE#eATtcR=F^G81!^Xw%Bgb&rH$uyBef6CCE)v~;_K*n$y3_RF95VxnxOA*4G8 zAw}-$?r1AQ5UXI%0;P6E#6b7^^%Z1pY>oDZ7jJ&n2cGIqHx@HmRKrX{Q5w!pRy8;V z!Fm3Ll3TYmb)TH541Xbr55wx28z>||Dv67Srz3n$l#164($6ZSI4Im|P=6rOf4gNU zc5Nx`2kZK7S91@~Q|w<8tO$#uwWS;&vV$&{G66H!3JF~PkPnFR>x8zi?!9hprXayz zV|S&^@rT-!p!7`?Ntf@+JCR6z76OyqKY6Z8xXl2taF!@GAbZE;;fxDX5Zl~O_WRCW zq-0@`MzRG#yd9$7^Wm~g@oW-egdgL)Dz_J*a{HQSFF7UGVBAk!Uu?ODDz#Zlv*qjd ztYrJ_^%%SBg8gSyRVm^U0y|{S_+Xvjvs2PFun3aqTLOg&>$2?naHvOEZUV=bQZOd? zk6k)H?GJX>d^YMXoh<#9m@_7FKDOj5hkt`{X57p*DK@(P1}+mtaEVs?H8kFtam0uHNCXj}dk zNz8j}r5^$N0OEd5!T9`K;j=GC-x}hS#yUIp%`j6sawj&!ov)g~WEf!x>yU<|Ko^|H z^UQ^uhBU=Xyn&zc@+OlhPYtE!3%k*mm$ugZ*H9nd$Rg$h0dZ$>df@Yw#YN6Z-xEls zX?j)?AXAJ)YeXeXCaen3*#Hk6te+-i3kUVXRt8KC8Y?wZEpGOPS}#_s;%2CSE{yy~ zx3uI)4-G}|poPzdZv~ozd`dh{oG*|ctSg9ks^JR31!(MAjhgvf`>e_hFr!MWMrwB_ z0f*6sKup_DQNK&0Jn&%&Znfe5-q3?{w#yKrsB1}oV<{=&q=*qFJ@^S*4f9Lz%g0nE z1-t!x1pMt+X7BQ-1lR8Pin#x6b0sUW*BM}OiF11S9Y||c!Om1J0V3LWd|@5Nsg2nBU9I^`2!XYT?Z5vZ4c~Wsw$JC_5wmh7j@m)=Wf2kSM z&BLtb^buG>9K~x_I->)Bk9Z7-TD?2FZC1XrU}IN^h!iBUp1K`>ThqmH^$wqR6LdGK z>#1<$ByNAe)w;<#NO!=E!7r7dpDAE))DRdG3$q)hL2VIxKfHcR>g}V zwM7%c)HXkVV;0Y8;Vws%GlxEo{w{iUE|&ThjXC@a#%%1$`7}l`Jp z_>p$<-N3i6+I78iFlRgIzrqRHAaGwpwGIAvb)IBz+g5unXFViW#b;Oi;Z-wLqyV z%h__xfez1dmMQ-68r~B1Y|6@2Ur2rIwiH-Kl|W>1M$E50WtZy5WZp7yaX7}Sv84Q* zSu$xV#=?l*&oP2zkg2N3`kNe<(IW2zyI{5{!YY_|@13Jk!LzyEa&ny^A;`Cz+Qooo z&E(!q!<-~I{9$zniOG`^kd5ErTQ`^?4(>Qw@G*=$CQOvCYY+;e_h$pD6BMb@sZMkM zOyYRi?AANE#{6Z4!V zs#*F{lowGnjk3OFpD87Sn!!nXrn%|L>%Z-QJXqzU-k`DTy(9-4i$z=~d|070j+&HR zksHwv88MSbGgituD*O-)Rl+G*vR*g)@;zQV!?_RFxVOFMiafV?GU%y5i@5{LsvEqh)U%@e*9Wr8>@Ghu1EB+sIR9H+~pn%*v;p$g7U zYmcT8fUDCi`Sog`(KMTBav$uR#3{|KJ-xv>03sSPRhILb*pa?8^-9mE`)Ybokxnk= z5qK0mQ;ajo&s3EP#`I27>gXLOhy(fQHP)5;5$^bUwdvDOrZo(+5*; zOpR3ZN%kQQQdy5D@7U6ZvqMeiCFRRuC^@1Ky6 z^-ID`|H=WUn_FR|<_Z(Z;NtniG7#L62^HnQ_hv19G^j!SK}EfSLie+#<99EQ4RcHV9uO;r(upz|QsmKq%k=Jl3lO0HS5w{k@lNSt)d z2CCTZ9H<|gJ`0MvGQNP{e>-_Q;Y)^pOvxl6A#U!ODss*@jc2l&w^67!UpC*umA2z{ zP)muD1xMFVUxB}ZK(kskoD`rMiJ6lG5ZOhbbg1hgK1p!+qP>>V3xoa>l0HUkmk;x* zEY@18H@4|D{zMnVA9vY&xg32yq7Uut@S#Zqekae55I@}N^CwAylYqm}xbu4!?1kMD z%y`KGy(25C@TBOq{bBFrO(w9LFq%DA^^{Hqe5BVOU2^E>Ft zi#WLuyO0zgg!xM#sFYnoLV(SfElgG6?yDX%0N_j2tZZkp`N^pef zJda-LC2P<3r0m-jK(9wh0iih74RvcsBH6lJEz5#T^eSi9D#|h#sz=XUNmT~jy}RX} zAb6+<(5_cquQ1g)Q7O7so-l-C)x&%zd8F`(0}X!D#7Bo;Bh1!Cm|%z;Y4HH*#8Yf3 z>z?r}nX$i}Cy`E2=z?A1OT2@)=O}TI{G#hFa}YsXUa^)Y7PNfeL%#H8#4X1(voYc` zIKYyZWEbm-i1o;afcsW_upB#K2KJtUw0lF3oLjN2eVC;0aEhXr&X$4CL1u$B({2n^ z4dB|W$#ZGJR%5vU&XG5Z+OV62Gmu!uwhPJNJ_-hs&`m8tm84DEYjsf_86BtVE*{f8 zbxO(;djOasx+Df}2_3jyf&n&y%wZM;sv}S5zkBI&72%=u*N!|QOdf{uMU~0(EBqS( z^wF}_Cm<9fb~P>n)r;K+7im50tv*D`QgXc4I3re*aKyhE{hTw4!%wyH9*{vMm>uX zWxmQF9$sno{$Z7R_2w399tez$a#bQFehbIdd{E$yIE@lz%oLy;!_wTR{NFFh`PKrp z(Xl!De$q7eEE?;}`F9(LNgp2p+tXE7zpLhcXgTw3YIBDbJQOS<#o#y8@l_4rWdgq< zNbJFD;^iKQEi-J;!SD^k;65(`N5^b`Xi=j_gJ}thEeIT+P}&aWt$lVQzM1%u0gjX# zlbkxsb)tIZ)JI^0T1uPttc{58H;j_!ywDYWsng$=$`-8Gjq7y2ALb(bODj;{CW;&@Io-aZ|ss2IQk?6&dkp56MkOZADz(*?NiA`8-GPu z1&cYD%^Z$AIxm6$mI_GEl#V}cP8 z!pu=6miBuj(J*^v#AQcKW+eRZlm<5oA&PlgHKlbd@O$~%by;jAWq*syA9GccY7o>h zb6}Cj?A!tGz(7LEsgnPv#v04LEPNe;=|MZ+wq%amR&Vd&)9VyVBrVTy0%qbJZI}re zPR)VauTueqt(V)#N1$L>pys0nOy9&{K?L&CNjOFJ>7;n}!nvv-APg2@#mHI5QG6*3 z*3$appWEHGSsWXGUHIdh9Y7;TMt^4p^7pZg@n;$?s8o>4yK%wNgRTd>rC`FDEB$Uk z6_;ch6)xWq2r2aS!(@GUnnd|$I z%T}Y~Z0PnJtj@p}e99rx8>s4@Tl!ocH{$WiS#(FpRqdQv-Lg{YtD3q9-_RX&c2CaT zShmG5U%ZcZ7^`iCkCAo3xN#1C#&HJimlP(E@Ig7Y%2r^?x#maKKW^F~|G=EAdj?nUeKo1pO2%M8U6It7cY8kmnoo93YStEAX-1t4TLx{JG%9} z{FQH25BP%%>IEi*Duas?BKLw4a~z?@a-t&ae|T4TU2wwP;vLzW5`B;cYm``CSi+4o z)0k(2z*g?fEVjSwzq2X9iGiX$H9>p%!F#T3bgbCd7g# z*x?Sr)n=8VYL7+8RcbOoH#;_5FhCB()2ZuGtyS8~7e*u=I&=7HwQ(flBu!u&I3e}w z&|EHz>d@!+=?KMT^OhydPpj!ZLYN^75U5G!g+vT~K_H#3;i6nejdf0A(Ycvv z6!o}tvP|U#%N5l@)vKR{O4Hv^_w1)tSduXG$+ftk#Ly0ZEQ(~lE64Q-(-3f?FazVg zIg|{b!wag1W{FClF78U(=#f5?IrSRT?UK87kv4%S^EVc5e?%;<2xFtnzblTpkXp!k z=}}$b?fSu;FiUD^cyQV!Zi#!Z4P9#E?t<>V~gpR@C6g(GaeL^5eo%Zfd??1()!As zfPqvP1P7PW)B$W$l%0bVqElnBH^Y>S0oMAtsb5y9TN~HsY57ZhEqBsbK@aq5Y0Im( zJ8UM566_yymP#S-adc8oCqwBNh4F7rN#$uuedt7l_(=O7`^;p!g%U98L}Oc3J1IVL_mDErJ?x8b`fJ`>am2VjNC= zR+8`V4q!skk%v-qW&L-Myzzq$Q(UQsRR5o{($RzsFDL4={l4 zl6VVA0Tp&(U0fDTN7NNa;Qk631E;rMEIS?1O<`-yW;}9lKmCo?`pA1`(#rU{Xy%sm zr46~Fj3wrI?ORF08_T#m*~EKq#JIaWb_m*Iz;EER88Juzf@pE-y54R0?#}HVyB(QX zRSbReHw(1OQZvKQGv}lBa&Bq#5ntigzwvj?Usv_LIZ8+NR_*Zg8VIe$rNmGI z799wI`~YAHu;(Do&J;r_sIq8EdFd_vJZE|g++wVye`yrb3Cdf@NU6>JQexv z5Jf)4BM24n^uikCv7h4}85@rAK&6I@i@k*Ft7tpcS#y z#-gNi=d?IaXQ+&Qy)Ww0;)K{I6`PV|=5M-x+9@|CjTH+Hv;l`wt)QjzF9GmGqzV+T zXAo+(oIM%hg~p6ViJ$mjLYPKRAj9EmAFpgi;x2^?Q2Ihc~Y$pFz7k z-Gl>Z!KDqBS2w#o;}>LurYNVTkh|H!9&&-F#cjCjxZ2R}zZ9^>*lDeGjiSs#QM6Jz zivp&!Fpd?EIzX{Sdm6$dpwD)`SVIqlJ}h0ku1p+bDoVst+YgJ*YBZL<6f+{s z*sgK@h^YGDzEERSCmte9d-TFG#~sX#9`aP46y;2Ej4^NZi^4xP5 z4ePs@y@81-k;}UR=GW(ZOKECK!TFg1-}uVg?hT7n#$RsT$lW?`xMIU|^v()?tvXxD80tJhfX&aR zR>i_Fhyqut4b~6e7v-)CR^PVMeo4~?*6xc1o1|jlBri*0{E+849(iAI4GG84kNJ+V~io<1mfsAB|R?R5QG}rCnQcEUon1~Go3Va*TM)dK$7NXY!4@q_M(Yz$5L^Qc=Be|XG+VS9%)VAQW+QSm|R(zgjE0|zz6>u}OOLynOe3DGzBA+2m zcwTzrEhdX%8!}f~%23`hmF8g1E2`qydZ>k9hSJX^A@B)RE4Zs^3YbX{VCA2ufA}Sd z*@@IKeha6?xSy9;YlmeJqo+CvgC7Lp)lf5M6f3ViC0RD2;0@F}W9w@WybgUNhlC)9PW}vd$Obk$%{pRotM2wb-dfDr%3S^j^D zzY%(wguv=SmVhoa#rvGc|DDb3e45dArHxqCve>%%*ppFEh1YRtdN)^#2WfoKMwm;>dWK=#=SKGHAt~`j#w6-LPJ^%wyAPZ8l6Y`*sD%9sb(wluDRyrvP@6J#Cii%lQ+;%4t@p!MG+Cm+m z9|}?#nGn_34y=}rxORtL%r#ypB1ndzUN?u0$91qv4uy@&ci5vEr^$U-=QwT0u}o_S z-xq?Vk)eVy(qcUkhV`;1De#1s=u2LrlM&OsaoK}J;Q;?2$#J()5?!NpjM--7Y6>Mz zNU`!*({OH0g8~c}SX{$VX&nq-m>xGgkro?N?iuRS{{G9q|LwMR6t~#~;e8f~y;es5 zNxh|5qn9O9yUmluEiUva@k2Irr#Va3`wCJa7fT5|H9%3CE&jvqaBNr1gCsj6k#>Fv zk#RySroSRSrM(F6<$ttZ;%}mFXjM1no{I)z(QeBWhGObR~rv<|7bHY02?dV7FP|D{68Z4Ux_I zq$qJdO^@9nhPI?>Iz7ho?(a$Jd>#W1`hFuhwC^>)^< zb`y8H&zKVqI~)Q#K9!oj}){!#oKG^t4DJKw*D|8R&d)&Qw=v z`La4OO8#;DZ98v=7_7IB`lE&&f;f4Ht37z{+e&&Z1BgR6SGG2z?%D|~1vD_sTSHZu z&)!?P1iL(>M<%5HJjtRw%H#i%3Ak+10OYknLWs!(bTWB>6?|UZ>^cQQURi>PjA`F@;eIyXOEqpreC|ASa9c*`7 z1v~L0>NOg!3hy<@m6IcIEh1OcgdP4d?f1;&z)%ftJ0Mn@b*D&sDr+W6csdU-5R9Xm z?xPD$L9d=Et;Yum`_j? zj9}ILMtAle_o@dYoho_6%}^O2$Z|g?O?`Xijp^s2C$G>O(5>`W-AZ?wHPxI2>*rM~ zu+GKMP0hDt<$@QW^jJ(C_LBP+a3+yzFj!jTs=^+)p2=r>1f&Qw*TsU^?T`xD+fLeu za#R!-1wi0U2XBCKl%nI z6S&xU8lBPKc!U@Ag7w6cP?cjkOw!MVgoDbw8`Cs;t5VW?1F*(0_ni^TWKIl(KT8uM zN<%-x&9~qn`SWipSe#zA>{CU(lvyI;W_h|Fkxekz>tO7^Ldot6QcLI==FjIl#FG^5 z2z(PYM^hWB^D!|~Su%6fnw@BFYFoKuBj)DOUo7tl>hOZv>h_)FP=n>lC*d1L-S7(z zwPXtJ28mLv$ORpaYzQTfCCgx{h6|F;0IwaFpqy+X|CeD*NX5Y8Enk8lDqJryG7GF_ z!8-$j-ZD-yvQVGaM;$~n)%e^PMZ=uwH0;VkJFvQ(^Pg$gx*!g9M6xQG8U>+Z zztdy<;-w+}jC(wIH8NE-$Q5jp9+&&pl&VMzwed{7Gdt-WxR$#A3c;yTa>aH!gh@+= z6hpR!GS9IJQW^sXPHj#|isia_do`l_q@QaX#6zhSS%dy?_&Yva-V#+mk#mV4Bs-+~ zdwwCgno|>$(KYrkOcdDOw$OJn*=jgT!|N3R2gbsK-aOD=kr(Sn@)r&>Mvc70BEIf; zPjF{jtr1B|yPbgVPA`&&FD36G*`ux{934?5_Jte6pSz>da;`D&cI-UY`xQFW4jSyh zrQj#(Mq4#ZI7zF(++XiX5>eVZA-#=ZW-M7p+#?*!h#M*mF-b-Au(rM; zoD_}y?17(F;gHqkJqvogW_ynLNyMuq}k(wRO~W=f_dXE=Z>gB&I*J|5OeQ*r5x z)ydr_96LM0BZGa9YIGrWk}k1X*LL zL)aSBlY7yihP`PBYL`u@0F(af>Xd4K>~KoTku9saq8@$VsE%H&<}U#p6YIhSCK$VZ z-T`5F{;1G^DbpK8Fj2rQLjefBZ*U%7juqGLso9EM+hx@{xp%HyzH^;eR6d$pZlC?- zgBO7l*z3`$V6lb%ePHqrscN9nHJvBOJClV}*6K~;%N(xU#9tzwu$cE=xGytih41*~L zqxPBNgmKzVki0Wx&&SFmE#6&YPRG#8`AoM~$fov=U}-uvKpoyQeG=-A9T*(MS)c}2 z{N~7oj=uWMyC=?2-|52Q^kXU4FTc?p6W!bL|J5WJ!|GoV2q6jcD9XbbHAy~VU&&_c zf9q=qGVX46{6*8KK6(igfZ4Z8$_L{|ygx!KsovEDzAl>WPSe^tJ%@WdXRHwkNKx*; zLm3@)Zfr)~4zz1N|M3q$za?XmA_p4x^SwTvw!(c>lw$q{f_FvrkOxR9rT)PhTP&5g zOk(&7alAtPaH$5WCi@#lig{gHyRdq=Qb{iNXislG1soA%ej@%3rM9Y3)3dRl;Tzv}IF5S4n| z?v@$5>nWU6(qbfg6im;o;Qfy4wD0)OCpFR7E}L=pbGu>@NByfM9Zzy>Cy~l0T$G;V zxP?89zbwz`zMaNA7DRD0&`&Wi!8jS{J17UBZa(nl&aQnFMI88<5CcsqrX>`TV!Z0! zR}}PYgYk%KKcnjT_iC`u=pp?2141*2w8-dN0IY!WuaQ9YcOnwVxT{neCy4zPlwO0e zKRSuxBL=y{ttq~5#JBnse1<(a8D@I0-Jrw-Tm!%YsDPnoY4nZ3QETq-!pBBPpCS4N zoXCT*yjsQP!j5)r+M_MOJ-B_t<#+J)gF)s?T#zSzct%fQ@R+WeE13i!c1?YP7MAQuj1qkSq+N0*qr(M(VH3;1u1^L!04?076N!SoWC=8MHUUw!R= z;VXluaz=P0bzI7}hu9qBgt848VXYsHw7cEKC}q(Z3sx)TL~iE*vgSx@7PLt?#Vj!j zI|?!cJdde8c|M)k>DfK7`@<`zN{F3sR5d0{%d{_v?q6OB3SY<4Hz4ejW_o`#pM!7ffer%rNK0wEa7iVqr17}F*aJUofpxGGR>Cg-jH)7mV#d8)-E3e54=^16O^e(CL(*YTdj)sgh0uBY<4^DYd0>U4$ExN^NSz; z5~c|mjCMn8qRyGjY|)?o!er|(5b5eC_oI(q#HN<%$7MTX?D)^kcuuenpKBXuO5rk{ zCUeAaQ*xZJ$nebVg*SGZV*MxBXi$LR3PNVNZ5#Wo-`cgsR?I2<_-|yhBTfhCalknX}}jn4~V zVZ{J-0ytC1gt2Hm&d%ag*E^H@M?jt=Q~7h;{W*2==S=>b$8?J#w?L=Hl>u_e^9={# z=cHSZp9<-;{*)wzwP%vytDwK}v6^(lAbA!&A>YL$SSmwN?q1hER6BX(f;$`1Rbi&nEcZ-UV%cn13 ziv$P8qy<Q<{x?~t3xJbb^?2kei4(@`sy3pT=0pZ}EAbNx zkT^#z)lu#fOXV))N`C2!KQgTi7O6n#t=?8gyb@XxxJj;Dt=eZ-4*vmyda3v{o|$X! zB0RE#<&zB1fvSAuz=6rC(PBQIQiXl>e2bme#|bP^)M!fc(+apsaUn0p1^hMeNGPx! zW=yi@W>%;s_SW4zogv9*HbdeaQbtU~tagNA_V8xRjpOM`R7Lt>HbY=*BE4Ttc6``M z>zJVO@eJWOY$npDWZ$6OJf|Kn@AkjXe(vg?#&h8I_-DcfbBvWg$MW-;{M^ak=VxKq z{gn7eYH;6H0xc4XnvfJ1)6d`Ycl#g7fQCbdo%v#;P?{U<;UgN&$;zG|95yu(Z*62Q z4Q!nF%th_4<2D<%o7<6tt#Dl*-*QQ2z!-d7iu|`#`%6GlKEY` zodJdCsPY+Euazgbp0@Nfy!YG|6Y#23xG~&$CsVAJ820)#J`u}d-FXMv2Gda-DEn#G z4JtD;7sQ9a@&y};{Ic7`rQh)#4>gSf1WY5WZ6 z#K$5tSz^@j>gUO$qp)rCde+WR8d8ZfZYx1YavU>{v$Tg~xjb1wSW}e-JctI4anGR$LYCpP0Zrerugq-d68 zCJG&u*W|h)bcM@H^lm3(qqJ~t)*(`=isI4{ye7wxZ(!q##_5!di$b#)1iiy_D!AYc zS|zs3Lc7q3JroOxo`Fm$L$k^k#e!l*+#O*Wv8EnqS8j^y?S+;$K7aKE!k#1$I7nNF zifhxUQe*W3uK`09x*$k8zyFZh`wahG2rrPO8REvGTfrM|WlNPi;#$#c#Y(2QUW0cf zcY?wSVI_?+bcD9+TP8MO6U&16=7`?|rhq9)7#dzvs4g2Sit3rW7MRfBqrE<>N<5*E ztf+lp_f%UcH6(p?`jldb_MV}V<98ET(z5lk;6A8t6zeq^&VgvPd`q9X9We`Xi6>bo zk}Dhcf`e1D|%#F^Kb$UL{gJpsE#z|f&E1LY$3}7dt zAduV9tSD>X;l#ir4eeT`W*F$^o)z34RmM4;*jh_6Q%QCmsi}z~b7U1EHsfNtiX@K; z>Q#wdrHbqB>9}v0LeY#PnwwCX>;8s)yd8mXIKu_Pg8_5Qw}0A6Yb*&Lx!~z?AS`9O z=4Tac3lFCRN6m`0n2`#KTpS1;P{QpZ0Sr0m#QQB9qVeQw0?Ty!hkd}j59G&sT`mEZaSqA#^`RuQ z9Ms16P>)~ekc)K)066j*XVFAFcYTHA6C{SLrb~*fQ0*0I z)KzX@5nYKT^~?M9h2%Z&3J<~1pY14(!dghX^gjLK1%`>lT|t+rZ5P7|TGsBqdE79j zE=Ff67B#BBNM6a=_N29eTuEciuAfW}k-97XPDf9now!nagUVjh5`cHU8_&<$%rC$9 znqu&9!a6w(FdRq$`fg3%Z5@=-l)pevj3=yF%9Cbgyjt-h3#r+$ti$nLrAF8Scr_e# zgH{gw76Y3NkVCv#S~wD->8YjS4Z-53V;WO+4kYdPUV=F$@0k;)68GBapmG zM^HCDj_vZy_F@XRgUp*Vq=b^3^iZeu0+5$m0(7yVLfYVK&I93TYm~VAx@{Ei2FS+a zF#z}x>=yS7%(Z3@=Dn)HqYRp2+37Qt?w*{a`o*`EhV%ChFW0OER$+midp37wze>h& z4Fj_*JM6@YGyHq4s@PVH$ z0o*N^Au?jsBddVH|-02 z+^}xV`Q$rZ40_In$ZBwl(E;V+P;WwO6}PP0j#+XSu%%eFUM_)L9$0YZYk? zSv1Fd70t~G#c8DfI7>GnD=O5Um$)xvetxuo~FJqR!h<@X0069`^Xn}r8RBl!`K-iTvhV;A5?F@- z7kslLRaqf^58XCW#+=SAwiYUm-^)(Nr ztq{Q?mYGlplalFf@lL2RAsIc-r$+N}IXrq}l9DJHU z#N;=mVp{5|iv@Ax&f0xqf9ddF39sTq=Fz3lkZ3g3l38vBiLGI6H1@0GHe0S@R`krc zsd>c(GjL{{Ay{x?0H6nzoDpExvzWZ zW32Db?xXk76-;PjPqE32M(&W$e(b;h;E;9T_!7!_rEAhwf*7WII-irqFiB1>Z>&Vt zNGMsghM}p2gHTUD^{p2;|8f{l$ehySW0Pw<)hm83zKB6^Ve{LO1ytAs0*mfvu{FH4PMW03eZkkSQl>8g`OSc|*bhMfxYjzmB zj>cvlcaH^7SSbR%@iB=}d->?2pu9Br8NI7`ye$N38_O4&iqej4JqEbU1|SuG(t1D9#fI znfIyDEuIW%>Dxjw2Lf1fC51V8DjihR%9cmrrQvLnV6vVN8=QtT{RK=Eurfa+R`M3x za9>C<>!=E>8i%<-?IN9i*nLlF1ejr;O#$Oeq^17ExP`2zn{YX&-*ABRn-5d~0>f@@ z0q}S{_1J?s;T|_Rb1(nDUs20s37;;pJTWO7EDYogD>E#KhTX&D7z}0-i!W7or2}=E zsr(zgOLi<-b{QQ!GmO7}-6N`$#aCaH!r2wW_j8-jin)wj(E`I71Pbz3o4b*G`7V|psx$R@b8n3)BA*Ok%+WPG7Z`=1P*{aEK zlmio$9=ju*qQP`L7yL)$D{`z|KH0ngvvF1ycnW~Bc_Entp+IQ_YJi@+p}ax>DV+AW zq)x(NSSVUt03Vx)kIu9&%pd{u_>>3^W62HCP%9e4tAfj0WLL4^bLfOMd5_fKvLLtx z7H-=Fm7De^Uy6WFd<(|@xuWKhWBt)Jx2BSsCnl-F73G)xkC^6Zta`*gO!htWACQlx zFn#m01IHDqOSXZ%Bm$r{!_pF_-lbmz-dFigh%}9 zcK8ZS^+2afI>yyrd*_ulzLj#XC}7lxH7syK$%(HAa$&@&^2$QP3_I)!2Yb2|c`rva z*j^^z1%~#kQf(lGzi{|gY2){m3%N<{dbpK@dvK7b3m9IU!c7!9B5rac$c3`nHf|L( z^gaLDwHo8wN`Ds#osJzdc_6$vy0(Wf-F)1alJc(wC>&LJ z&+Gk;L^U4LLlfXf1@bgb_?FJrzkgcHi|Sn{P5GsCmUjxp7qVF^SXLp9_|n~S$-{KO*`6su4}#&G8;5iXcp7&9Aq@>HIJl|%X|c1NbqOX z@ohhLknj;Ri>r7z$=`&N2lbeIGMyPGPqP7o*MgpU(zQyb#)@hO*Jq@|Jjfl4W>2>{ zy)db{7k~`GM=d%_mN7YpWj&oGh+@z{!%X&RA{Q^d`25q)fA%A6chpQGSozD!Uw(;i z$G7|k-B}_f7QKRN)x48{jxzHH;Lrj>#%RO%lfR6Uv; z&5D%ICVk2iI_$Z6aPgD5)!G}XCFG^%vB@YlCRs3vbNFTPJSM$)oJ}ColyTiNN%A;! zp2qeGc#UmkTIa`x#TGCK%o!`Fmds*DGQ?`OZ-1V}n+h%+BJ}u08=hqNQFf$Q$M~e^ zk18wrlD+DnvoxM$%E@xGd$2>zYgN%8(Hx7FqY=gBF=3Y@%at=~;mO!A-7~n_z;!Tm zTuJ=JR>BMwk3%&eR;W_mEBWt&)s;g6ua~kO2XET-sJKc;rX03`1aFdO&~COCuLR?~ z+%tWl4!dK(+=#6&DXS|g)HOqiAR8hZM`*XeY`YgPTay<}>HX$`o;zW?!YhnJRMc5- z(5Q3c-Q4*m9~f^w6D2dV6`Go+I3W;;xsh3)67(@pwnn5W?52)`~~I zEkdh`ueH-p^BS%6$t)ap}8h>~O2Gb#l-lpRd zvKXhP$Uk}5tQkH>v^L4VP&oPWlaCK2PHsFY($FY^*e8k^lFYC`?v{YCM_HHXp!|c1 zRwa^`pF-DbhCLPjF8A{f$wYQ0KApm}Nq;KqVO`m*&x0fLnA z{!D#oyOYji7JC)v*sY>lgthNI-z5x?i8W>>9CC%EX$13Ve2GcybU055Tirn7(TPPo ztyyQpJTM7*Qw`m%1&0y8EZca_QJSLm@n_X`cEfe7t${{~3(8AR)OuN3l_sF)Y^~8j z)B&{m!8g@5>^kw_d>&ITS#CL_?20$lpHjpMrQpwgvwu+_B`4n-c$kYlxMAOQ)(rHk zF|(!zALOz2=+*8W8H^OR{R){o*^>E6R-zoieSSd@rNoU*3*5y~jO|6lY=yoZLDxPO zVEmC_OL(+KrrpiTl?g7U8oz&Z4;SpC!jQYr&?$i=4@WFgm2$Iumq;pX*zO zNvtu80>Rw|KuRCirn7j5p^*6o{{QaEYys)iYyrgY_mR2B*KZri28$k%@M*kjE^wzz zwK@^JHX*!ekarErieN)F3g8Csvw-DdpDRC^9X#s^FdIe~fs12n4l#FrRnnx=-~=b3 z!2|f7!wj2W*)z&8vpTRNm+nqm)^}TXyEpy6TzG*$ek`*FDl+VS5aQHHLRY2M?g%lC zuC73g#4wwkx{lvvE4CZZF_c5(T*8b~*4`~i5h9%s#K+1B)+pD?CjBEeL~t3c3lfop z<8c?X30d7CeXl{T|K1i*8%$Iav&nIT==fC>Rdm^RWM07v*1QWca_H6BTS5K!$ z=O@*+-~J|mn+JyiX2i>AD)nsKrW5LsAs3R5bIbzeggz#=Ik61%qLx0XfEVYK|4F>K z827*qPnm%|z6O4Jcw}}GSsdtWg?abBZZ02TCDV!aly|ZnF;(*#E>3XZwp2{Dg^t)K z7ObYYtk=CH`AHi0fb8$h`opol@HoecT!gCUzbV_;WxDW&s57vC6N-=9Ub5=!m)igK z>U%G0L{ZWpS5|5T)WWpsAU4e|iDY3Nc#Wlw?n;`vHt&Qg^`q;AwqlVT7ULfpBL)sR zEC);sXjpLkE=ZB@eQIAnme(TLeD&aKF?Yg^zn2>!`;y#WrAac@T*_CovwV@U~b$TjL#Bdw5lCa?R2)u1+th2>QWL) zsMYxX=O6#{pa&sOr+vN3pZOaEl!ugd^QUk&Mc|#*yj1Lw11Ry~q^XY3`aM;fYCNWd zBeII)DR|-%Q0);aeo`^&V@6fF1hk!I-7=G{nT_pVYgAgFPZIdeXRd+&M`d$C;<#Wn zvVxiL<(5_xGP$5GJ3yGn_kT|?%JUSP3~A|V71tNWamMK@w_?;D`|k0uCDJjw(!~<- zv6G4~R{E{kZD#Stz_zK4;QwQ`h-qBkAq|SBY-eGpp{?9{RbFGI*tAg|qYMywdqdqk zo{kKfwg`Czp7nGlRvtBraic-d5gz9?%OyL*3p>h8T!#5X#XJc}Z!O#F*hu_eJ6Lpn z>aKRrIT<>lA4=%26z+oMT7G1ybZGS^u&~0ry!3(czak_P$dnGLB%G@XXQ5P_h66wm{^9wD#P8Cc98#PP$Mie^>+wb5_*LwYq7pIf4%C!I{6Axj=(Ls44y@s2VX z8Bk48KS<--^Z2BvF$`XEjRpyt!*hwBp~h9?_h{hk&Tfqg+os9vW|z_RI_NU z_Uv3^#=7wfCqTQqmDV7A+&ss4I!N1Do^`R+5aVYGVa2iZ`Qd*UUYuJ|IYA0Xiv~i^mVo zn87WPyO!=t#{>i`ui;x!^hGGtaAhwzEL{w|ddHmBp06W?6~lX|MJ1;ewu}-s1Uy)N zx$ix|zaBb92C+a`d4LnzT8{{#TRq{EE0Ogr&wR;K z@Iu18Rjox!^dm-Dq0jBAs_qc-gmh3H%tc!u*AFXSG`ypqzy{AzG6%{p-Z|bf5%x-~ zN$=)ivm{mHH@8g{VgIAtdSU@&OIPB{x+isdA;4*J_|kIx5eW?6bJ$t4COPqF+^CWf zSPaO`1^av|A4U_t^`lSS2=qf4)|4vUg)jE2Fc&`3nb_G0l4P*Edw%vJv2B&E5FfLN z=Gu!FpU&r!JAbc8)iW_p?2nA@9oOwI3g_7@7G4D-^iFdDcCgXOavM*${F*pSF8FKt z`1ZKD;nP@nVJ}z~yH(eM%KQ9;_X)&vry(U^pxUE$>6X6JAZ=L|9D?};f72n(hGYy1 z|Jpx0{tP^etO|6-ABv9ebSZR}z z&&SP5`qQJ%RJyx{=KrQ<_pBwAK%_J~v!6>>7k>pKP)3IdLEBl1dhXhQX)$^49NgMx zQOw2)eFSB3(~=4JcxI!Xi-bs$p5IyC(@Mis9IF6*WEF23^P4HNR&byC4oQw;j;E36JQg00#wR;>dg3QR6C?CsoVkx_#2VF@yx)kk z#+YTNC0t*7YDR(N_SfyS_$17#xBP@JfV^9?AAqmpZWzz$6b+fk7#`OSaC`tkK)%1< z(Uv;BA`~96iluV}OLk7wcorud9~$6`41zu}UFWR+-ZeJ@`Zdj+Nlefc3dHbIy`hlI zQxng+We-L?P7YiZeQp_o^l99UuyMgK7zkh%YvD07$5OO67A%jET|u)*Z@~Zp;=2WD z;JacVE6m%`ah{aL_6P2iePgHA=L8O4r-B)sME6lTDGc69P@}-t9StRzOeJ7eH~K9%nm3ZRK=VEpRjCduDu}g13vJN-ABrUi9j!|WPVTTN zmvV+ji-4)bMskTAj!)xu(aQFb8{Hx^95XJvde2ztF`xvx0=he=_|HzS+0*ZnX&J=e4M2<8iMPmm{Lw&P|E3L+CN8xXHFws+Fond&6 z@uQDV6f4(LwcaO(qn0w@It$GEAL4BsdfhR_p$?RLc%ExMi$T=F=)3B{TO+Fx=M$6( zO(0eV=av~T8p|g2LtoM$oux)Xt6JfMF|88g$uqnZ)8SwH==uPD%;Qt81eB+C{um*e zXe`>@V{XV5G3}dDDXxSo;Yf0L3l^D<^Cw>T0Se?3P6DzR(4~?9D2QEr|05iT6fe9> z_wENFiqd7rOmi6X3%4bi_PRldRL8um3oiK!SZKGAR3}p!9q%3E22GQQn0M{n-EN~P z48e=An5Nni!@jYF=aHgVeu>M=p zV#9+qLF%tD3Z;g><-e!MHP0oZe|*P|DN>Qk1JAjo*4=P1j0$j**bVn(0ht&>MU}^C z1k_j>UkdyfhS`wJ%p%LIdNRh`8;j__mi7~ZmzLG_wJE}7Jy_zEGxE7cPKqnHYM^}u4h@mi*FYHa1M3-|o4sL?!5&xhKa?N2w97RAcMtw~&^ zAYnExYQ{}QmiotIF>=4LJ?~S~O3%JDk&Jr$QB%dWiXX0}MtG04&qSnc=H>twg^gMa+_ zFA4yqQvHKG0QcJQ5bjHwiQTjC?Uy9dgP(w{r7zt-GFX@eGJeE``X`fKs6m`TCld+w zH#q32tAJPijD<{AdbN-_L1Hi=pAAusr*EcYBVht)UBRm~*T_w9&w7bEiT0ET z)vIqH^tQXgQD0($-yyu{#Cu)fTU8jw#X*)+K$oe`FFX{Y(z2`TZZ#mbT_G(tkC7+Om3vtY8BYpypH_+|) zpwl9(z^ zagSos4M!wFG|CWN0Z04pT}e_)R~z7T91ZT)h6yW=+1GohyV5*QVmdIki*TDIl2uaQCqqf0495qWdbVy~rGN9kMX zNjw0JbTY*>*@A-u00ZCv{H|t5qg3DFJ-1+;Hu4FpuRSdexWUD5@YB^pOL``k4imDW z@KH8|4HI|u1NUT%GU>^f!v^G26b*sw6JhMyaDs=dWKfWMF0@u)+_;_WbbM`yZob2EU$n{5;OY#OR1EA1IM; zv9rcpJ`k@O+g|vbv)=P92G_ejvhWd_@r+waZUtuURz@9p8nX)R-$XQ&4SP?$2hF4} zQN+@B(pryKdNyHG9XQ4F;~GUU2ZGU8E#mfcdlyggR1X_MU%#x$9Y?g4`d5GUk53zQ#WpLVqv5;1fV z<=*qIR-$X!ouLB^w`Q)8&abK(ltCqJHX34$Csrlx%?=f+_mt3qMznF|64}9<_u}@G zBpIEv@ScbadO|X|JfZdya!~UV+rHWt$$8a@oOeI#-sqiE>8aJoN-^%VO+)+g|Y&~i`|k?ELZG4(Pz8rDqjM44eNV*ZR@#r`NX z9>_IVjt>FD&*2(gqAm*PAvd43+o|L%c_g$h$`{N~YvGkJK44}L2?gD=H{pIBmQ=>DVwZ z25q;OMZJuO7j1Ir7ePSHN4xlV)|2$vc>0(J0~1s~O%CaoZ{jhzd8A*3X8zX#q~aov z4|y8${^`et3Z(X3wc-P|{~zDZKN^eqL91yt&offEkA*Sx1Tx4EO33wwD1_HoMlXct zwO$j)`qC@Fb=bH1Nw0E3gm)V5_1O$89vv}EjD*A*!m)IIbhrmIA4||;)I&UI+&5^@ z8$af8$-IY%F`dUjm0P)Yrdhz){cSBGKOs;sp>tfK_~Q<<%^%=&z6ftj>4?$nj6Qyq zxJ52B{qKT;-bkADX(umB%_ZKx{df>~YMMxDd}{Yg zSh?QPDqJ2bhw^&*^o=0mOy=j61Y|s$!E2t6$vW~R%5$?d<{0Iu-OWxCZLT?y^=csn zZ58*&PYxDnMy=0ra)L!ZSvvQu&0F(SQp?9tx6Jdn1wbNg7?EDsIq*DVqk~<=pr6!8 zR%u84pt|}a?2Q>dOAMjmmP&357mY$xQX1bdrdFt=@{hSP zd;;l&cMIuP4ac)PD_|$zFg(@D3XW`Fb9g6%z4U#swYaTt7;cisF^SgBYptI|3BjVv z1qi3T-jG~Iq6VcZV2PXXd8sak*m<|%%9E2GC{?q<9I!5pJO@w1nzg3?R2VNwPzOCH zZ|yJL-BU%6G{powC*EVqN(Pcq2ndiCN)Uen?Q(kKdO_X>btIUGXAO&`wxOL{Ozh=j z;@i)tV|+#oJW;#?SNh?~uc`uRq-(@Scy6aHShw3%iC3w+Mkh2Fd0%ehOs}Y2#0`*C zyR9*0vFFzm;&AAH-Xqp&&|z0KGt=b>DTQgA$_Q^`Z#`biYf?SjpULmgtvf&ut(C8ExqLQE;wTX6pwqBVFj$W}0rXt*R zfc^(WNIFlEa5`Q!?s&oFQ%!|U&pincn~l!tETw|A&hWM-6ROBjLGC<_>VL#VV#2R1 z^(p?$CyU?jW^V3dxwzL#ydyrmkYQbgJ}1}Eb7!zo!~B>2$Ff~j;?Or5FOdF#qf{%a zlL_gYzd5?u!Rql`3XOgo$r)kYHWt zj%}Tsr&D|7RfXO_k-^7l4+8I>;_GNC6aNSw2onF*-2?m(-iOpS5Q&DU(tTCIY`MW7 zT|t~TjEgj^zws1Gu3%ZqQe-`80rf2Si%@dhw*fG0VX*~>SOf6kK#C_&5xT4cs8*(} zA}@vC8W*^QBy?zMTnL|B&=cyk@^9)2|Lw%=F|wbwZA*iFzo7mznPLNk3qJ3bUWgBZfG|c472LDYfj*={1125y^uH1H6~qr zi;ZmEzp-BV7<&-eSDXO?Dp0(B`LI{W@+JF>H{vvSD1cn6+Q+gW;0~!TAGms4Sm2#v zW$}n^9#X&6JppIT-+B23FO`kDR%CI_U|Up6|ym>js_czI9=j?tXpvjEIGV z$CokKa0WQ}i9LWXP(S1Jl9gzoa`XJdlXpTgQXGL#H?|xBD6WYa@4R$tvodIL9F|8HR*o@OW3)~Z!>3f- zv`q$(D;1UVU2RD^4QD>FhyM5d`nBj<)+3=3Uj_>M#^rVe>JvtvM z9~y+Uo}x6FD;T~#nFl?z&}6X?OCrj?LYL`pP^|{5JSQ_8BjVX9qk$p(E3CDq+-S7h z62^~UfE$sCQ#K_MRWEcU4{*LvZdVOQ@!UwlqJvrOSOxp^AS)K_k&U>P!}j`sqt%{) zk~D!dZTWuF_}vl~WTnp>K+T+cEm3BWN0TmmURF={J)&0_lRF{z?}&^K2{k2eMAT`= zVm$b**B%eK8h)iayCfxL3u=VvuDcQzg%VthGDJNmw|acUcw?P&Eivoz*ezQWUJbHd)F!2yw};!0%3$?d{^8{Y~9{tU5c zg~bRvPvsIqd{ACi{GBXdX{GaDbB%Z4sxDF#_|v|3x&1gRt&HM$+`H6Wag6S6;!JAx zj(1E06TEQ2_0rQ5)r{{k{CNwG`|m+ey@sz|3_%q(1SmPTTnn#Ir3K~(X7p)kbI2)M zZMkv)(Xyu#efey5irmj92%%{rpS&dizt72bL;gw0?4k5Ln}87LcmdYa`6LyncTW}6 z0LrTfndaY0?sHvl%TIcyXF5#Lw~`+p&BBOGBF~Im*e%awHcMxR8MEBzdPAFoyQ6QK zXL8vvtsc1}tyn*Xo>T`-$FY=x_Ql195Cx#<4!#lI9qK3= zX13A9x|VK<*vX7cW1o_ND@!}8cxaAdvgxtEv5W%QXqLn;qGq3!D8k!z{4AZuuCrfS zGBge}6R7d4V!#yORZ#(Jxw&Pj(;jA?QSidm%8nezj|ju(*R+7W;|=WqG%arZ){&s5 zXYkZC?BV={5P%@1w*w9v)4TI_iP8V^*0I<3-8*)0T+x6wL{IaAh`+#gxK71bQkbeu!&5HNA_P*rSq}y48 zENU4F%Wgv_Su+82%r7r*+p;+yBsjQ?je@REDYvCKaj(*;id7d6R$Oo4os-{PRRofX z1>Y2OobSBf@H&B(hH4+faSEr=z+u0K_GdFMPAF#gl!i-UQOKQ)*RbbcplN zay+8w+hm&M8T#!`YdYZ+CO}y}#cOd=&SssTieaHx=t1&sGtcq`i`$ zJ%A$Yqp8(B#f}uWCj$%{*;Cbx!=g612U8v=v+-ArsBaiF(Wo~|OfQ>-O1pzjCq{dz z<^73XLpG1U$f}@|9h?6iicl(N+$k#Bj84XObkJHgV-2XQ6Cg2T4fUt$anyXpc5oK= zT9&S7)GT(s*7T=D>AOM#**u+UvJGo!?q_$;I$(YGe4UhZ?<}J#7Vzlg%YYg zAfMTHCyhnVE>LKyN@l?z{0G1ciMJYNqWG-bl7vz_+}6cjHs;ai2wzZHZ<){%_Js!_ z{lOV3(wyFVR{}t+x)s98P}4sUt`3~J{Q`qaX;Y5`RjjNHiyNG1Z#mJF803%G@q(m5 zBPuGjhgxDOIAFMxpjkRNh-}$-21)Y==td@mXP!HyazP zYI{K3n!)D^d#@cE_w9rGq*v=Oj=N}HpRmM%JLp&86Vvb~$_;vMaxxY8-T=0#J5f^#8(e6g zg~f6tfq|=qgh3$NwnYGpZH>gbE#*DP%mX(aD;sX`8#MJJ@}lx-*M+abzp%NwE9lPY zzovau0vcA2r9T%llS5f1K!R|V0tk6(nE;I`i@~o->@80-mrU~ipfK)7FXA)Ecj#;_ zwG%GUx1Z!$mZT|D{ijj9{YAK(J6@1gJ&>Nlp#VC{*5MU#2iLj`B_06h2YcD;I{Vd8`42JFjT zE!uWX-*o^qhV7nWEY;@r0eKEC@mDpIEU5YY!aw-tKzY<{12*Cg`zfLmCJ%$0og+PK zcSqvLt)!WsKaWuJ?JfZi8uVDb=R4m!1<)x#mmg6o4Y>jtYq)Ik2 zaY&0AST<-twpvpq1#}Qi)XJ)ND=nI$B&a+wHngB9=@314HtEbEBO(h7WQoGMdJ$; zn_g2Bn5L{9QyJC;Ku$Pbb@?F3k)F`>d_wi(6Qs@jhNjoLhSUqR?ayENU-6S4mPpW< zViQdD)0CQMg0|*%w+5S->X73luQ_9>WZq`EzAI#JZVf`**FXK$4+j703dsjB&Br%6 zcin6FAFN=WfGr4w@h5X%f6R%hn&T8|W1Hi!Ga0EgqJf4bIUXrN!63Zb40-7&fq ze7=LI2v@^39OQ~E7C##BTmJ%S-c1uEW>Iu?%r7alBcL!g?IFMj%aja<^zrFmBPd50 z_UiK&OffM1f;UIF2pmgxoEK{am>f{3fap$yxwgWRv@2b(iM8kN8N%J*@k3Hx?*P`7 zwZV`tzgkycOD16dWiK$6C56v$g$tD`80BQzHBFA&RL}tFJ|+6g>3Pk@#eKY&-8cE5Yg>GQ~a}VHT!m z2*q_qb!?2^{8v*i5lG&|7@GG&>CPUHqg`T}ABNiT@K(EL=~ctsXb8rUBa%&3WdUwe zvuvx{GA50(+|rX1MphEy^*FYyt{yI5RaIET`ho!ZUkuSZL3T)XIihpOxBS0;<5-;| zl2vMAGD7H()UT38{QD}jXI*p(NYt)d+;;F@_HiLW=C%r&eX{|M7ME_w2*TXmc0flG zx7%rF2whqeF6qjq;&t^rm_TxsP&M3b4on5F<`DP^ERk@tJ2|J41qii|(2WBxSB1JB z<4BdA4$sQqZ#+zA_)wp62a)aQnt9F|MmnWHhD9%cvJA_p! zm*V;e#i-fIQJ(|oX6GNzHaZBi$>Xjz_!FzxI9dbC1}Jv;QcUEgu6!lt)t~H zNa|$Qo@9(n0u2#hOuwy8pPv)*<$&ICo?)eJAf+0e!r=bQ37KAZi8!+!-GX&G3BxS3M zE~!M7)cy2U`~xc@;OF=f&bfI@)yiA#KrJy4VC?R!IrHWn&OIlZS%ry(3$f5)PZf#h z2+p%T|D&{f5|8m0;No313`WMnFTurVE} z)yS~NQwGdoCRwR#<@F2CysZxl#Ii5c&K_ZL1_K*@mvA8Jnc+0%N3s-wAxc_cBSl%+ z)W&Gs{XtJtlNXW}@_=whU1mgG>;ZZ17#kU=CFL)u)mqzn9<;&2S2AEei(ASE$JZ-V^bivLVeZpsi{2FO0~sJLbG~NgMF?^Pf_-cpl*@X|3T#lF&)Iq? zT}Zq`X#(fzb6<+X@8F1Vr{suzHOCLV(daR&?Vuh&(^-3xpoIWGohRbi?=-6|#uXJo z2K>A?HBrPo^Adyr-V`NdX->VGNop^#@pZ$KR8kV#qU0Ci zJ^qq?2I1J})8xN1nUs$r&Ht*E=Kmk5l69Zq-Omj}9vJaY>Yp<*ibvR(Qkwf&e35g; z`RaY*oJmLOKdTJ^lQ0lfR8twpXQ-*11u*K)1f5CB(I+zHRE%L9hDfW*8RE0hT_M6N zyQ4t~y{{0Q`;??VFwv$MdQ>S19kodsZc}*o&oyU7lh8Y*l%ZyiL+3NZ3RUoXcaHgN zIE{tLT!kKE(~22#i%i13r^sQoB|B=y8m6K<n_$B^4mfmzkd+0T3C5 zt5PtVT_Rcudd@qNdy-#Q3LvxnkBtho^vK_prLAxqeXw%wYS*?+6ge7bUiI2p*9zKb zb}Z}dkLeu$4K-$Ep3Ku9?Mlx{j*y#mT;(sKJTZUO^4BshuYG&3HaxY`CQNSQ+Dx)N zYCD=3b+p&@kzfZmoelUyBk;B)(&p@f!1Mcwc4&-G zHHrBt!UlIXVE9bUM{W1EXw4*@&#G3tR@Ot2% zt^u-;$!ds50flXbI)35+2kGmnj?OJUj6jHayf&dVB#gepf_ePOAi=&j zr7!a0ey-zFc>i4Tu%{&Iqtup7Gnmcd)Isk$@`@Z!Bk0v>^C=cJ$Xi6+Yj_o-mhX%Y zyvrDflpXZ~sKFs^uw>WGer9M$K&KI zp}_M6XRx={m{9OkYDqjAQLo7?5k|n1X7iA{m-f7JFGP@CUMYlbWEz^)$&*!wXGH1z zhj>QtEBMOH2j8ZOIfFIC;?0|^U`^Nu`(73qui}KaeF0;k+Jm=_wPard^nCJLVeMci z_wwkX90==Gj7ja+BF?!xih|zA)Y+|ia8Alv!d>(vXE>p<>-R`LaSq;vbQjs*E&;A3=G8f9d+?HQrjSu$spZy7C zN>|})L?;EpG;|fRWr_V|VfM-MG+;(i*wupEk<2j(>&_q@KTA1kVv_$me00*ZcJMt# zM#uXpqeoBhLUqWI8}_qcN_mPgLy#BE!gyWO>caX%C{(zX(qeHS@~{ole&WBL0-!!1 z>}iR>nPy~xQmD1&Y~;&?EfBxf!|>B;({fb+Xe`{ZnI<}Ewe&UNQP>r`BlVIf`3dxq zA6bAl%7%L)AETvESx-uC+wb}N%$abkxY`ITJ4wxo<~(2tD2I{P1qM=}wRxe^^uiJE zU8k(Impn?ac5Aj$v{~4%9M<8k=Bw~E+4_-B+)COoSk<>tOFM?%qVOxRoRJ~*k4RB4 zySGfF6F;+J+3&P7OTk=PUuJ9iy4NeoS*j}jrcbtTIt?Bu~4VncJ)9|LV{};>4 zZ7-gjHVzub$gWgXYS?`?WyOUBP(dI~qI4lci@(TMo}j`+T5*S&BSCZ+I*r16ZCaEz zFRk27&Ewb9VhBf>D(qq}RB#5HGMR*Dg9X#rCydwPq57uw!37&@;=44IGr}G8j=kO? z6MF)*QPgq%p7vS>!;vJnpKMKFYRABtW<_4sUa zIAZrwUSq?f&lE0pjc3jxXrraHz(_HDeHN+YyyzjpzhwhaH9~)YRQBG|ZissKQ(nBv z8yE9P4T$v6ZY|=9NZ%up9mM`=BXzcE_7<&xaVxGek#DYhd~e5HlXpzzfA=8{ZelTm-H^ad&<${3!WvV z#G2sjBwsQOQBfHR4CJk}03k!B3UW^xo_Y~-IfohHd)$I43#DO+MR=wKHyk{9_;vtL z0J+e%Ls-wqi_~>D(ZDDSw3t)aJVQ$mjY94ex1QtFVKcsAl6jz)vkn8C@MLiI#b}kC zwZmC7?m8(ZX7{}!H5%remoI~FO${fay&jWkBU8Am*nNNB*?%>%2v|l?PZ}nFSHfs5 zJfL+~AsHl654s@|EJ^|4RRg5(JYfD9WEXhJZ}odvvnO}K5Jxh~)WQglj7t-Z*RSXLsL!tF$}mxe&_aVl%Y-?lU`68hYV;-}EnD+ZT^ z0^OFe1-nY|()+ydRL;6Vwi$4=;8F@fXnn;ZEsDK|h>Qla6!N?mGzguY5LyUIvGMnM=WtAMOF#rb^Z)= zR+8QY_cfjXSJ4{!GozhpbjoIJc%>HTM+-ernEwte<;#{VOKJ9swr-ETbr#}LYs?cs zBQI7PPKTimdA_C%7HSx`w&E_t=!ZekBEPxKdpq6YPFf$6-5qijhyIU`kkdx1D4Ww+ zY?DB1VO=LLxbjG8I>xir?oi#v;?qY$i_6ioL#AMtlJ>DRm%TE6KHcUf5UH1K0=I&O*{iD(pk*Q=d&pQ z_qT9h+hXu>&??O+UfNnahPK?xzN~ByKONyG({K;4p+#U+?Rou6>j!k z6ac*(#(Nsamhibosos(x%tq-mj@H`rti{IDVn)^Y5Ao2@H0|!ppfn_$%MPwGUhOO_ zPA@~F7FjViQgU%Z>WcpXKYZ_%|MG~j<=;qH78wKAyr6Q75GPB(>1jzF{Y**WKIF1n zH=c;-Rqk)WR)Bc>=Y!v}(Vh4wNo)$me$Tfow>rgqM-4!yWwmJ;G*GLqGKzWd#sr|l zh#M(o47;WAS`HB9HJg3geoXFep+DXnu|J+H8rsfeSg!JAzSz?~y(yQFv(y`EUq#Q) z$YtHQ867IXxb7SVK=p{jvWC@oH0sbeCn;G{c z-{IpGg$c3SIeukb$@m6#G@8N|j49}egz`mJ_1&iVK;r(^yKr(-C2|5Rsj;Tlra`cs zJhocqz7*~(Zjk|fO&X`ulSnhHUgMqa!VbAK4Iw?q1ksHrlIf>R^WR^>VT4?G` zJ;|Xm&B8`7(Dd{IVq!afhC@q%UoZA%m}!u~sBCK+Ly{0iBpNBvI@$fLvV0Ga}yCvH$UY+B_9obKsF>iND8TGH&{Ko&D@+9!R>%)1u3DsB3{ z<;?d3--wjhrsrqdpr;}L+T5T(Y)zWBA>0%7;`cb{wR}K{FzPzP*iA$Iu!Kov_qI@s%()<2XvYaVnhnI1NuF_7-jtSYm>MnDlNWd<0BCiQ%X9G(Nw=k zH}C~G9ik~>jV?Y@Sd|KMnV}rWLbHF@bOAffz%d(y0Y4@eGmC=qt zFJzeWTs?&0LI|m$w7}lH9IWbao6~1C(tp$EkT<&r?XohJ+_2w|et$^?8pDbnMoRvv zTl!5U{dsp>Qz{qpBS|{FMQTp^-DSITRU^Mo3fto~rQFICMeWEIofq6afT-};da}3p z&VJOE6e+i%%oVdJGQxDQVHYe5CkMhBxgAcV$7EEkDjXS7Aw*BtUYKsZP28tJdFT2_@*weUosg6-Qod=zBT%ft=DEV4y>R{)QOo1#rbZ>^x5H<4xN;mA!3dL~$-?p_H56joIoF}i03{#8+l_vwF6PdeL20iF zuJp9`w=XgPG8MWloG>Ev!$z}5>P@P+*%_>nf5k|R32uOoWY0F^kGe63D@qrwfp zY-%r_U2)C|A0EIAu19WSF@FYc?no2Y#@V>diTY8Th-hPPt;o zri&(up+j}rMH8CS8vQ{`Ae(AQl8%f{!VVWI3k%VlJr~cx25rOPQOMZSJi`?dUvKqP zV%-2HBG94zsYkT6D&Kcm&d8Z7l0CBU!L`MD&=XF7Sujcft5L)pCfRX<@`X$3;AdFu zzjiD9Szw%O0DYd#E4pRUx=uW3c6+4eUkjZdtpxKgrupM9R;3fWq7WKc zls~}p+?V$r%P!#ynYswo<13NJQS;ei9$TnAoR+162|acX;$6sZng#1bV6y5)b^~YA z!BC2;cadkLso~uxI2PY!XNOOK^!gtWe2qpDOvHVp&#)%hEHN7X-?a)g(tKOSv+rPP z@c-SDKLPJE*c5<7e<73Dr<;b6D>y?p{9K~25Rj)~EjOfaOCY+d}EVkpdWPA+*-@wyWx!^d?$J3wBZ#C}XezK>Gqvu_8KGS6w^#oO+ zu4gm7P)aR1O~O6HiNm$*7?}iae_jzawsIXqQ==rqhpQHQlcbH3D0*%-=#pqF>)DPK z^AFP+0|9Yxd|TqlEsEXV@_)ga0rnu2rinG*>i(dQOr1{_o|pTq z5Fa=fqzygsa-%IxUJAYu9ev|xVqGG4K&1L>QgXTFQD=^K@IL#J!f};b-1~YAwt79D zpk7Z+m9G`Ehv5fbZ_#sW4IQma_;*hgt9m=ht(CRY=kyAtElEe=weml*|26CV^nh## zZv;EG&x>N4>T7Ekn^~!g|5VK`69C{+S!85j1@ykWCB1dDR#G_1zst6uq#X+yLe#C& zL!&T9N12QnM1o()hJGhY-Wxob-^H|M z3V?|fnVVd){vEZ=QFe!5GUg!dP4k^UqFnY-(poq%B}*RfJic*OTj6SYWk~!%3;!Yvjlq|fvS4D3QF}-_mgqjh526OaBBd#++{to zkK=*9{lyR8edi=cF&>(hCd%VNg$12t?E*hJWOQXZrHIv#NrcA4lzsKn$z_mk0o@AU zxPA@n#Pd>ky~t1SITLdm{+1;$*~SLp)WItyt5al5ouJ0PdH^}b5vOV(Gf zON^!?$dkz{{z}uD!f;v=x+Hvb_|@wY)Te+!&WSfsh>~1izM`m%?LlR513;5>V}XosGBE^k=oaJL(a3AMj&u(yc{P@X@tp^+^#oLVgw-G5Y}f)60lG z-@0!#gr0QCnVzNi>6eE=Fz3?2s83Gn>ysg!lV-u^O9H9F;G8BXXXjxY*0ib+uwuwS zfQ{&Ac?*-UrtTLfVY0-nf+4`Z2hZrIwY9#<*a*S1&p13EqHLp7SlFz{r1PR@0ZPxO zI|rsT4bixTm;#zjI~)bx&=p2L{zbw#Fw|p{|ETZnpy0)@Vzwx=(48LQyN$aa1+$=K zx|@5P969Bo(4ZahLxLl}OIHAyth+))XQwoi#;#K&U_LH19#(M|@yk=m1BJKw4BHa1!`wcVQ;=vS&fGJ=xFUoRv_lKWJ zv^-5>Z=_qY0VA2gf=?}&$k6;xfdX*rrj|dma&$rsz6D&H2K|YgVK;6uGH?kl zy5Nkl;Y?9Vs$+R9OmatILqfgBKXS`79Xz^-4AKv^k`LpgYbg4GZ2M!}sR_T#D@-th zMnTFXO`cJG6ev?GA>iB=(I1IGBp@cN;RaS1bv%66o`1_#=`*8u4FA24K>}jWyTPoI zIBuK9`Zo*3IprPqTjeilr%z)$PuD8}Ap|+Jy^%D9*_QIZbW1T{zq-50 z>YGi*rmY7~AiS01YgAC;lAH`Y<_LS^jl5`N#P<{R*lb zryW)_H>2db2>o;M_mJugGkLNO4Xt4uhj_QdruS+|45~9gj@!6w!0OfRa}< zQms)0foyM#sj`z3z8<_Ayc#I_n1I=P^3Xc64edE^83D65liYm8p%H{t2@}O%KRAJ0 zF(E2K89kvP6*EW>x2S|Dd6MUnsKhmZY@n1^Q~?$o?9qUUu!-Trdrj{uU!0nS@yr;8 zy!QiGMvtJ#x{ZmY2>Q5R1JU&fzP;JVTh(e{5i8=3rWMM>tB%$S7$t1MUjq3$X0Ph6%Y;j z$EWnilMqQk5n+ctp2^ngA94c$ zPLLT1MsgXSfVqAKMr6MF-)0pe1?-zW?dZ9g6Y>I>%f3K~+C2(6vf?UbGjgnu7g&? zNxKzspXdtLn{yksJxc9Z>K{C?xd|RAHz&VsPp9xuL6~L7&(~Y==Du~Cf9aOr;wZs{ zau-ICZ`XomLAgSOYxKgw?oTctu(?=;;{7jwZ6RK1l)PAc!rUBQO9lj?T!k6hlOvGI zPp_(15!1CA&ERDXC*vVI*-(AIEChacOPo1?Crkmad^b;D{^A~(X0U64xGqrkn1J^( zEr=K9E{BF;=RMFOi+{7&ZQCVL&?HL`>v7%{i(@q8pK8~JW=m8Q3frTW82O$p&mRoL z$T%1%eM~)@on*5>cyWd)^D?Vi=J!_=l0C9TywyX3;om6@Wk>j(qz>{@JLW7i2GI9JKm0r(?r=C7h%V=HzyRx#H21*`rwN5pzgy- zt8y+S2pSkzInp>&iH*^otFS_zsY%vy>j=)XkwW=}Uvirl}-}}~7bd9E_0D2Dl4$R_Vt1nU3g#;`0 zXDddc`)xfYrwF&--~W+Q@QnnhzuJN)-a}h3J#Ok9xn1P^!ZhG+58E~ zqkQ=v&!Of2S{_~J`F*}rI#zsW&h)a;A-~-Vh0C#T6Q31_2+*5j09?#gD!d$PHd~?M;+5bR3};6phmY^`6+C^~QLpwug}P`uq#0J8;JLVT8AmxOl~TK%~zLsp=~}pmwLrmaI*0f})bN z>T8|yf=XyZlUD7erD>+1i^zk#`uwBEzwSux3=G7f&A5Eu@8UC7YF{ez((nDZmEU0} zS=ifXuUIQFcvcIE8T;!-V(Ql+AN1JVfh*t`yk_*Z+~fZ@_)e#NYw>V=LC|t>%IAYo z$dPRRbyXG=jXNRfQWQ@v@4>%3iDMb4edA135V-b=ygsG;_}%X7t+f#T7$8_jCmY2X zmBQ|Q;>>Dd0=B8sh{qCQC_3J@Zj23Ds{q@ZCVJ1Vl&LvA)@d=>f#ly|dBSM0W1*@J z^zta@qH@&Pid0ez0@;8-Ii`cCNsIB5Y=-YirxWR0teLVP^h^|6U_Sx)=+o&_-E9e2 z?hY;GpQv(^Baps$>lI{=_b`1bgyrw7-t#4~`t?+qwx=}q(oI|5`YYneywFX*_ajbk zI?#M{^I4#( z)Q>)M@t;Q!_&nLX4f^i(q{8-`WQ~J38PhhLp@DTaW8Zijwv(ZjEs11PTnm8)Ck)~S zKs652&Gi8}nT(z6y=P>QQMpV5B*mZ}FriW3bqx+)MoT8lRcwflF+LduZ$$JjTf^r+ zLGPWsCpeSR`Hppj21|s<1yG|^BmDoX!AI1){hjrGiO${w@Zy`?74;KlbyqiS#e@-M zQhxD0N?W`%x6!CPJHC*Htf0q!#oRM1z!SvB=!^3yLio2Bw5vnMRUoj^?ZoCuZg#@P zs=6gvQI{BT((j}e4Yq0u`twnQo#?{s@vH3?MiFo91j+=B>9e`dO~lI*VxB!4Bx9jW zuFQfrW@T%PHVmvIBn{Czbrm;<9Fc)>ar<4pFy;(ai;ZA;-4s6u;RH<)=q8hi<-fb! zIr;aiSE594c5m=34T%IWjlDL@qVq=a5e!2Ru-8rVX%|2e)&w)DyFasC^gl)dx@EW& z63r@;getiQz~HOVb8{sfbO{E?PEN7fbpp1E~u!~iR;q{J)^?B|qSOd}ysB@zXl2WaQWl+F7vujII zpm?4D>8ezt!4F(Cq3!~aS0U4k>~t02sLEMZJE!*rD1y_TP5!1u9f?KRNE%us@b+~V z4YVShPG2i;q;R*&0<(n+N|U7Cof4UNZ9h>LkQ;gwz3B$ZUm?Wj`PA=|yOQLfkS@;# zF@hDDnMTI$XXFU7;oE3@6~g6T9=3?`t&4_;$&CGcx049iZBB#Fnf2y!Zbhy>TH@YE ziO#J()H5X4^zo*oydSd*a+1Q}%u;CUT~-NuD_LRhg5wW$$0ZWbzw_JjS29c|bnay) zmaKW&l^esOnT9h9Ydo0HL11<70FHfmcCew+r z50A`DI>OXFys^j1S$BWU2>bJuOWG6B$V`UhrU1F`Z1mq1EB~!8ee(!~qr|iULU&Q#*A7$Is6Y~a z8WLL&CeDhl(s75m{P0%DFySc@L^USt8wwT3z;mm0I?OS{jS`YG!ZdeKA!70c1Fo1ruYes6i$ek#2day%uoQ}2rsA>cu<)k;9cHlH!5K3OK!%ODJGMn5sG*_6 zj5i|E9Gavgtdbdrmtw9*12>^W2gW%k)mCNf)@R z*Ga>l4h?v=33shN3lo<{x8$~fW(kYQ;n1le9$tBIL94Vhqad86+O*U(nmb5`VeSP5 zW8sqK|Fz)+meXgS-`@7&Ve}Z#G_|+2e|4VZt8F}0deIWt4&b`9jLp<2cXFRAI9BgG z{Bw`5OI#L+9i-mUu}w- zJ=SUhTX3~>Mv;Z%e?~F}1AN=`gf>SokaXr)A(c6(tT&AM`7=zQ;}S}c-=G%d1#(vx zxbtTga!4Pi1ahtAGTo++c#}>#lD$BLv2})tQPyp?G$UtGcsoi>WQg_0hBO(j=1SD& zO%LdF80y9_p}J>i?}=UQ5qiV+edB~Vu~JV% z`L^6r07D-M@j-C-@!q+e)I-Qp?6WI!m78*NgNWd!U_NEFmr^|JSylj9EBTBr$dIP-dMiMKUPAd1} z7V)E#s~I4KMz0fMCnB`1s45?>qw=R|G8D4z8kVhWfuV&~VtBBhK=t6Oza;~SK4;O|V+D2m32_Ag4C{Dxk)qBajcz9sx=FyOQi&azTT ze%-*VfSCNV!_ftDR~HB{(?Uk*mJbZ1E@)fOT7mQl{Lx*7Ee6G*U1fEb;EIlsv2ohI4_x%8Wnl^!}iF~EMtY&JCBxp%qe=;aYzWe&i1S>eTApzQB22n9F&IU zf9}Yzi&EMxEF}Ez>PfaKlbkcWK@UjnLk{U4lN#PP_!u^ViBeUZ1T^*^tE3T(=Z~Z4(4;RXrx5-Tq8zo08k1f-|;K3=Alhv-fb)o zaGI!O$BZA11dC(f5RiE`cWNQZjsDYpdGjb@rgr2 zJO(ZDZ_Zsi359(R?J(!kqg=%e)F?O|zMz?P7-r(uC}!P-Le0aF3JZY{XxPl{h2gFi z#>0eYcs}y_*M@ZOKbpS>JD`z4CB)B2#6^Zl^iSD>&cGQ;sAuN4&xd41u}NHK@&zQ_TU;Cu5g@hi3^((qG>SS08H&9Pfw<%yy~*fjQT7d z&x~j~!nnm@Q8-^TXc@U+@?Pat+xzfT&1VZ}k*}QN|0@zHZI0M71~avm)CnFTtk+Q+ z@!su}kS41ehf{H74has=`EqCqd61=-PPqYz0s^*tb-5hP$8Nfymb58dVHBLN}F~QRF~isksl7 zt}n@)Wv}wCz4B6cd)fA-`Hn6a&SYXz53*J zkI_JicXowT^4lDRa|)~HD{1{`MM_Ta!PCjaBtbsxH;-AHX+b4@5gs$UdKMZBe>{c? z3B|bBrgdT4X2SzaTG8TgY|0lP(D#T3kW`7Jr)1--kLx8F!~n0Q1_1nN-0u1N<)`Jp z`S>yq3GgA7q~; z{!{@nWXjM~t`rrEj693}Rkd$PgNFuUh>IPh=>mrOk)kHJ@BJ#@HBWKWg%h>xy(%K) zwGuFDGL3iTD~!`AwErfTBsPBf+2>#t*|wFwQ+qj{B_?N#Qu0EG&bwjD(`aHY^8O2- z`*_UMa`-xWsm9Np)f%0#NoVjz zF`9nYx1>sv^Pfsw zfQGYN`?Jz0?^mnBm+J1}V(Pg#LOW}{AK0cov^@h;cYf#xtrAr(Y2cbpwQ3vC#}^~c zLMNS%hA^LK!DtYpNRiI0mOtnAmmOXt0T5>BN>Kugngd_3Lr#%AmW4Msl2^>LQ$IB| zjw(6NaKO?%n>9g9XRkw$_Tlv8L)5>oZq6eU#)`CP@~EZsCHDB!%13~BG(jugmJ?t zM$fpYs>q}i3mn8n&EWk zBexLE0(u^<5}LtVQUqZR-?5ClWsee}ODuIzHi)~uz*{JR-VE;hl5?9xYKt|$ac*8B z5~~j0@loLpF4+BC{R=KvX4bse5zM>yIot+FObMXcvWb+3*&lS9y8=F%vK^8xN$WtU zx$Jzi`^T(;v8YeUqm>}vcMvKSlfDhgfiIktbTnz=3*8%(mb4H}*RxtS2lRXG>uO$; zJ|FUE`byQhNuL%L^88Ou<;!n12HvmK;mYYHjYb0iMQ6#yIG{JYkKX6mefDy0_w7=N2x#t!&eaFIC-&5&;}9-lk;M&1n=)__rlNzi02^&x0z@>S^y2 z6hD1=+j<&Xh(2~OV}ycplH{y#;m#c!jVAa+TnTXMgTWChLZSUb@)@pTFb-aQ=&#sj z`82ZrimMDQbm-M!-m+iQh?^ME62?H5U_Y`?%hTDnV%lQaURY!ZUX0@FEG*SzXmesr zw}4|}D^PK4;GOKs7lb2L{lfM;#3YEdnybMmYLuJ6-_qBDlPts}5kO98zZsiCQgYP& z$rl|%&9_3jdFn$3aHar|aCN9?Dm- zp9f;@>;>L(xII11fJD42)ct{E4267L$rG$e<7Q6PCs3Yt8Xzz z>KUQIvsuW~jH0Q&AVGces@lMFx50P2G_JX2&4`T}Ptf!S2YoiA7d^S$i>58re77(I z&9mj;bW+6>Cr@SFHrq|vjd6#lyKfK<6w>;cMCZ4abf@9lpz_|NbA}8BY--yP`PqMY-oHM3+g)PuMMXNpv zqwtd}iW01tP9mP0WGy~35^}yE^)rvJ{pB8rSz6V5_5MW@tWq6`_KZg+_kIJm1bVkZ z-O0H=c9m0JTuY5&&!HwdrCVp74!VTQ|!1V8Olj2y&WGBgVfKN z@;HW?;Wce}!tetxV;m2?Cc&kY3~!vMQZA)DNR!o03aynxck6#7?ecugai(e!-##fUI_897@;ZP-OvZ+t#HR z4~N!qy%*2xZofH|XZV6=`NE&21sbWEffks&x(EeS7p{_RgzlI;ktd2lQdATtP_%*# zIyz-Lz&7_RHb0dM%w${XAIbNq7YCnBi(Yqo_{1dDX)8Ej5nY38@Z?Tg;;mW{uIsr+ zG%LaDyXM36;IkcW_sr#Z9E~zl)RdksNJWz$hyH|}x@7IsZ_qfrjBHr>i3gwo#f-TO z()x}zXpxnoW#=PR`)ttAJTS&CGk z3T{{_e>`k%-e(7Vg>S!q^Zta9dK!(ct%N-i8JbHoFz8UGh7-AIeoVH_yMdkkF*3e! z{1V#0>+?(?9i8@l*y?GVDffV8(k@x+@yJMSZNj2X zG7MP;TA<_k2@{T*gs|S*GVBM4M^-=Euu7OJlDA?lzfE|+G$eyq<;)*< zT9}-a>R2Nx;p;K2zBnL`!wl6U*>Cn;xUO+(@+876u$#XVr_;lLager`T`@&q#kpzuH-Fui`SHMo^VMX4E-&4=y5nh!yQ$!`#1Y-Fm5_dx?RS?d4wJUjJdmR`A$W_rVh z(@BE$K&uQS;>E-wiaV$TrQcJd1Y#Q|MbYplIyg(|wQBi`zHjG}Bnu+&(idbMWusmmn&%`o3jJT@#{7kQ8ct=T29wC1sJBuSelQrJ zya|B6a@D^Z3@Wl|&!vn8upPc3(iJj!PFU=7^geB|sf$e^q}pS{3uy;uh}j72ohHV_ph+d@exXo4X7vn0Y-R#eY?;50r6QVem1_H{LAyi;`~r4|64m zR)9H<&d8t7ST$q5DMQPRyrmwW&UdpcnabUByE@7m-D3N_S*ujN(3EHw7~xKG0R@xe z-f&BRY?31O^ZjmvJRHf9cqUpEkfGr2`|X`HSx3s02tOvbBJ93}Cxu-uYkjWVH+tp^ zEt4qja#xWIMEN@epT!UHbAEnp!eIS)0!CT*eA5e?-+uvx;*)IQX;;e7Ch1-ivfqI~ zPbQWE`)9C16=D$Ov}{Mii<#KKV-KB68c>FawHJ3fO&Ow`X)fWU(Q}?Z%ej}15^Y4h z02zLLO#17en}`SVtwpUyh*hLSgK|4Is9|!sna(P03nO_km4Mw2{i}ZAr%;}R;!N_j zbojzRVjPTFdO39WpO8I5r~0XhCdAmPt%6P7Ow0RPtp6i z)b_M^@r!-F+0cTqQFH;hp=}P{Og7auwA3pEXv*QXX`5P*1zxZh6NeJd%GK_x0QJfn+O z2!wK*=gJVOAsY9_0%o3be>xZ^=%KduEQ7(xHr;+$8r$l_O8C92%^bkL=ZwNE8C_P# zJ-_w(nl7BzQA6aPM7mgK|7m@Z?(w^hOv%uVhx~IgmcP&1zef@O9HsK}ame!dN@rj zxaZjZy_{2of^VSr8Ag;){k3HeQ!=WtA|DY4nON4eskqEEBih=?#7aU9!|<6;a$ zylUn8($>t14d*MLl0Rj?2mj|UHs{$HBCG04tK!MdtD`cl?9uldJPIKxw6;yV03}>R z-hIIwHLD9USg*%6Xto+WXg;5;an8#?ksL$RWIg6lG5a`_`E~!Lk)y{ECpY~ktTk`& zwPQh3?gbf35y<1TAH43t$MwI6yS6R2kt+H=Utw4*8WwKjizHj{z)CuqBtXxEB;4Ua zwyWKmmaRsz({cWQzu=Yc;K$he)RARX$qjBBvKC}IozlJP)Vb`lxBPQ%`^geEBkh86 z_cO~bG1G61v*QUA&yVznrz1rZB%&+rV15Ksk456`(g?$`AHTmx`}+fU-yhK-Md`-d zZf>{h+oim;*Bj$7dw^8Nrx*FI`vnxjnJa zM+pNETNf{I7NG4x0kcllz?K1y)oWR5nFqp%oa)1& zuEr2!y#jzt#2FzC{%ALpE-Acu>yL|Fma)~H*?PmmzOQ|Og|qMn4m`9mlX96U5EFao zwe} zH9dDMU+s~LiA|ut*n~<1-u2-0-5C-#A4V_GE<71|=pLxE>JiD02oaI@Rt!MqXpA-P z$l;keMoF61Wm_9SSORz$o|Zv0nJwPrc6M$s%JizGrH!UwO?PbX5nkB2d)gsT+%U4i z$i=#mGgY^CufiX=Epk}kEeN-0;vpyJY(^^u0x#s0#hxYlbzVwoLlE*^f^8YJmG`@5 zwi%s@)dtgDsl8W<{LpNosD6S9V=(`Z| zrk`25xxd9iCStx@$D(2>aL8=}z_WzJ3VPDZFAy_)+ET1Stw%!3^N=v+(>J8r#ac?~ zI=5DFj<8nyQJ`1Fnmp(`>>2MmVJg$!GlN4|qY%vs!AX*wZ;A)juoyWX?3xR35ie>h zOtzVu_8cT#XwP~j8M{*+K|}Q+({tvOU;uqSR&{~o4~G1yf11kX3kmH}*<$LV`g-5{ zzB7MA=<5Np`9+n`yMqAMvymN(T^I$xkBQSo!C`K_cCpEB{P@EslEo&TyDET@Yq;(< zpt4>ciyAqe9hL(}KGQA@$pX{0bRH&(!_bx8!4h}cHm(z_LU>eU{Yns*%`x?~0wOL5 zE44!8^?<~YL$_F4?j-K)4Z^B2sdR8zTz6${o-^lYn@U3+&%_9)4r)!>znxc=piCxb}o6%{{?5ekdU*c)NetzrzAZfpHg;b2l~ zLL)U2TpzD@by5A6zr!Q_N@fr1?0Uie`O-6Pkz1PZiBC>N-0dQGV|IEMH@ugX`e1)9Y)& zU11X>ZPQDbHcZC6xtWcFb4Kd{okQ#psD$;yIAYiypU9@0QVEdQVaZ8rNR(E3g$ms3 z9kwkI8@=O^vJOxUbXzAkIwHl0PFOg^-%gCPvZkq-q^7dS%~_H7;U~cBt0}{t$eQ{gsl{i zYqilOBVLIv?eJ7pJ9JsgX;YdM`Sq4dxGK)rbJV09xD3}VzL$0wxgysTS$?Q|Fp&Y7hOg-CkP4aOq?&|~1RC&xJ= z{|9W!2gN>d*$E|al9q-voGBr!s*~J4wMd_eMEUqQtNlcg*}yI4U1O7;HR=&kfhc=( z;m4Cogvxj(mqXqi6$~fMl8I|7a?)YZdGSTS2C-L~wECoG!Ckwo!Nz*g&QM;-^UR1F zF3j{;HgcSX6eL$<)M)FCnog445dlnA#WvXM7XmxJs7`&+VcT-fiF`qy^F474g()sd zpqTFqMlv&VVa4(Y$}Jh|Sz<*L3)ccl0}(Tt#e(BG2G2{p#G?GT8$(B2RC30rQ3g9N ze+;K$7&q`yM`T%#uCqUmzt>sHq^zn1?P-*n0PN>&VuJa;Y`KuqE}Y zmuaLvKJXu|?LTzEhrAio7wa5E}72gC)fQ>KO=~)q=c2e%DNlkV>!8^u# zmNYJ{zs_KL&)qscXK1?LmpV^Dtft9aN=Go7W;R1QcuUJ35d+y0hR0NmkLhDMbGdi~ z$GJh!xm{F_MulQ`UTqHHLtI|6rrSkc(pb&ag+VDpHW#E3q=~FVG|{lGgPAPlUZnubo1tJr zHW%)~!A^hG;$Lni#39?4BOaD1^9DFwxykdS$va1k7KOUkq7LNxbqh@>aAH zj;>)Z3gDSfPUgvd_p5K)vtKAVoHw2(Nq#8tbo)+MKDa0SRa!nIm}=>XecA7&ryp*F z6xqde<3p}{{<@$bHkj?cLQVB(t8tjP>Zq3Lc-(jPL1+Ap!Hficbu;()MOheiB5^;S zWZ$aGnPHt>&~Q9iK@T|qPrvVS=HtlFq#wA6fWr8r;@Hzu=`gWI`Hr-~grr)Iogblq z`D5=yfy?KL^5q;?)NkjZPn_>3T^0wxC+`6Zp5I`)b=jb>F;+FI^D2RROHE+5d2!0k zjb)sW{5gY1)yQA3OD^*t!~m99)Kj^(X?9`NQ~j+M5G_HPOaQxdw;^S+6xPxz8$P2i zr6lzU{THR4QsgdSFT2lc(}C3F)nSNhH=<%f%U;4!hJ7m&i#*}n5x>Nh5L_mp>?rV# zdNzN@WxvV{7t*w(D-TXe?8p^%XdBDwH-?y# zpKSaccY%cw97qW*?pC`sj=dg`x4(Nt#b8W}`2T7V{v{@?0JVRGc#=JC`R2Zf774<` zinPyu>zcb~8%~2PJtw2aKqUDX-;Vnelr_N(%h3JUwvrPNf;qP673MRi-y8h!Du?s1 z6%QJJF#vP#DiOWCMF=v;E+lY{Ce1j$i34+dd#}?&f)@h)>Bi?j#Y!O~KZRXClNR`= zlnVGnuGb6|i!f>g;T{#y&I$2q5iSpxD+e1pMpc#TOQ8_W#8UWhJ5tj5(zLm266-ZdDw_TP>zQZq22c7d!QQV~Y zM}3zq!>UzkqnSpx$In#eTdw{WjpRjXARRZbw)!ik^ul&7EJq|ZVH=919z8+f` zqLvqp{7qidD<*}lSYL75U<)=z(qzxAJf!m6VHoz996g2DTIjph&!<2`HUQdkU|C}) zf2Jp_C~yql{4y!+4mhv+uan)DwB8kp=S)B4mJ_F8rEvXc(s0>oI{6s;WE@a=TtjscDl{&S$_TOt=_H_9tF{H4`P+Dq@*r-JDsLen1QIrKEq#JL@M#hiK&%BGg;VB@30wSazf)xhJcH|+ zm(nx9m_@C+r7V%OSjm<`7Nn8syFz?Lt%5Y;ZU_`oxoc_Dc-s2g_F=7306z0)S~hXk ztaZsSJkdTri~BL0MS=jA%C0cph(Q#HB>pRgT`W5AK725qiZ{^R{X-X~ZIzlTv4T^{ z4N0eWEi8!qg*?SRoE(3>>oBqq%Dr?&Di%$i2yAGnNDbc1A91Zm6U~@Ep>wUz1-7-KquM?>BP1!q@fgPEh_;rqTc0?R&wQdc=~tAgxGcws z#>OLuf|RrGdZPEY^glew7hpF1#*=xzSky>tTfakB;@!4xKxao*A!dJ$c2#0rYLZA( zbq&KQGjl7XrH+>kO?jC9(ipx5#pc0-P--N_u&IN#RPKZwTV_M~>&~)}$WpBV)0{wQ zsk+P3NvkPHCO49d9^TsG9AR2`DVln*1g~KrtSg#`?8f^9;kaezm)B1WH`4>QmAEuY zWg|EK04h!91PJTPiP@C+z3~bg523oPJYK)2!0<7$s@P{=8=A?KiRsJ!e<_2mLs`PW>+okbx1) z*!cV{|1Mz5Z)GyP*vvUjP?){uT4CpIFaqd%azvlU5%%bGk$|HTsX-77o8fl9-8{*E zAGc2fS2H6^u^6T8>XaO!3We%IBInT(avNXg*&Ulp1Ue!N^QB$h%=Q&*1uRi7L2Sd{ z3Xorq)MBKqXnfRc**f3-c#qYqCHXxO%Qfs=d4p@(;~4yj96Jq`JfVufn*s()=&sBs zM3`{AN=&-^fiuo>c}RN-@`+VJL&99?Cb9o)RuZKNF%Hhnz;I#V*&Db$>V+w|8rR~{ zG-1uL(qvtB@k=z+i9K8xw$;?ixahR)_XZ=(;@G3^B@Ef5f{1D*&L6cjtpPNat{*`v z#sklSt&uu7d_)U5|8-s_>CDn&`FX){F!Aw|{2ECcXP3{X^#Vl*(YNx4kAr@Aw#K=4 zHLo<77hpuG3)j3{1Sjk;VX)^FUVR1v5S@be8wA|56QrQe7a#X0qVd=daVC&?Q+M|N zu@4+c?sI$;?rb#BvK5wWuCSNP;=E_^Q|N4aZDxy%JQJ$<_s{Ce9^W8XqoRWedmm3B zghKVEMZ`}sCoxc=9g|&VP%HYLv?vV28-iEqOy9$Ou;??J7^b^jS|Z%dG6(8GynLo6 zt(qaBKh!Bznx71T;YUv83KU@J{6Uh%#HNr;hzyRhO{S$by_0H4H~Ugo#Eo4Mj2o6a zOw&c!x3_l@^-FG)L9Y+hKcAotP#PqCi}hi@dIB8pnboU?LVpH$@ECuL@l*5#9BlZ) zrq&)X7leAy*GkvlbEX&zPT)a^rMKm1U8=*W#m7Z_)w>1XJ!0WT)b9G#t4-nM3qy|u zJ@Ht#J;pE>rymYoNa{5Aa}F*Z07hy7O$<-XWati@W?)+MD75=NVJ|yjY%RZfEjLB? zUw^NBkS+o>mTrjqW{8u+stFdgR_az^iUQjH_VzChnqY8P{ z^qTt<#PSRZdDtvo=L9SchVF6E!FdJfpcPqj4>?TR{`{r8&&a&k91K6ce%H1!&CH?k zFTGv$J!>z`u8To{)RgqPp1KouU+yev)C6!njN|up4Qum-B@Zp(s5uyG#Y*U;t9RMFj+O zAhi0|*dli9#g^62E*Ixp=u{K`WJzTT!N^f$Xs5%$&L;JI$qw? zwI0E^C^Fz?cQ-NzT0wNH<&L%Xc5f5<1>GQvBuPJu9j%jJ4H8d4;22~XWt?KbG1WHv zOtui*TQ1$y_8EVb&r{~$4I={O2D6vEyc7y2g%|5Hbcvl??ryoOt92+HYomaA>&JrQ&M#7_=^1uDmWJ{o<;DsJ zDv2Jxy#t2m4?VG4-`GZ>+YCWch%~A3y47XC`TpKAA0-wpl!_>xDuB>ew+%WrTHrX$ z1zQ{7Dzf&~z2`?dZ|xrP^^jkIu! z@}d%SV5i4P_5Ba&;-G-^C_Hnme#k{W3h?d6K?GFek!maFbq0K95TqAXzNO+-!lx7T z2lxKY4Ci-dWyDoJ;ZA;LnER2&U^r}IhJwHsM08Q&ke7d7om|J?-P;D8t>!kD#JeT&?; zBovn{8lR*SjT)(Qw;o6Eq(5|Dej)T@?l&5FoHRFWsp8mEPFqvXD|2-(#^7ppMKb9M z07IQcf!*$q`n@L z;B1<(g*#ZC9?JL#K8ZzPLq+WsNxYsGpEyF=4J1Nhbx7##;!!kvhQqD-<@*LpPa02v9k)W@K+{o&bbYa|U0k&^}i zF8##QWXHbA*>}mHRH2UiQH)=&p3!W7X^wU&@Xu-^>_;?{o0_&ubPrLDGemCfu?%0Z)ap`Iv8^5yYlgAq+Lf^(ReFo;6@G#Q`FnDVOXG2Gcf*aR-#YhAp5fs7%{P6b3^7shPE;jM#-{ghP9>4SsEZ3q-c%`KnU?%mP5~d4{)CX!+>mei*Sl?`Zr1o%AvCl$tYUb(sDUiD4!0qaTdS^^Cn-f)=qprWL9v%yN||lT?+^<3@@sjWl{# zX>Bs&+*BT@9mj_fjdOwtK{-_sLy=H{uk5}6CR3hXpefo_W_LZMi-85O+m^Pxe%NMv zQtHY&g&k|m_O3uojaPt%3vd810fpa__zyn3ZABnQJ{-DOkVY6E{_bERxj!6ud)D5Z zJ9r%2v@>^vNY^Y{=B&Z|e<6Zh!%vjjbN2Cl;Ec9dMSl&B$P5>TUz~8ZKb8>W2$BQr zNwH&}5!1S0(Z0JwAhdJY5=Nd@dtrPw+9(>ii3#iFuIBVNwx0Vxbn{kHK1yc0!cncR zR?CLuD;u|)@@Mk(gosNH0fXXZQFfm50hF@&=4RV@frqA@(gm*S>}E3;uNWypn~Q>5 zo)*%g%2J{Q%$iv)DrNJz?f>NYyL#H&L_6a4s#QF>`pvYeB7w|CBMD77k|uTE09;s@ zD=AYGx%%&rt*A52mUdt%#{5@_C4W;uxC8SZ0} zMk6oX{cC)*Y%8X0-^z4eEvK(LKg1&H+B!#ygtL5GS{_l=Do+)JliOS@%Z=}-s5z!$8`j2z64IK*;lt4^p%UaK97e( zS{h6rPenN#yL$!=0&_7~mN%wlxSM0oVGZs~%ZUSLBy;wXdL-beW%$JHOGrxU6t&!g zmyln>roq7aBg3JGsxH)*Wj6tC$3MocT#)$|)~#ir+nj>a@d0aqQ_C@Kc#x&s9#l!0 zS!C04kk_&SYq&J@Mbib=^b@uE{3yeDTM$R+*CfK<2tDgFscN$}Nj`*2(ytosCo&s% zpl|5Vq^O=>iL_R#+^S0IAQ{}n!b(sn--CV(WR^AsVnNf@R*iB7k6!`@OT}Y@XW8uO zgeOQB_asWTdFMp5%&q&bDdQ4g7Cx^EwU98f7AV0Xc1Bd>mJ}t{rp{DUg2Xn;mRB=F zC`(+qX4{PZZKL;W|5l-V;@&76!As7VMlk;;X9=4xW*bxw$$Q~9{cB}qvOAC=X}U^k|;cXVfRTIdvVy* z-WqtzmXS4PrnY`PMT~Fa^>qAgli-$@Sg1s|r8Bqr%`fF{NGm(H+2{*j<16luhHhDt z!o~jUi$iy0mY@WOl!A|xb?*9Z)k0i0i9P94_HP)%^!P?=Os68TE-&uqK>o&#(T?EL82+gCq!4j=Z_IG)cpWuq~u`{5|FWcMZ7;V?@W8!{%; zHLUeyop!s_Qq6W=Pw220fJ5yF8Ns8fdfgZicT=(^_5f)fbU*M@!fx6)8u(*8VUnot z8bpfcdFm;yQK_=eWs{u#t-S;@q*7C|3s_6xomVxP?1NFL)V9@ad&i!5)H&_62Yxm6HK9~I5YoQovXz|sh>o6)V)y= zhX{t4;m8r-vM<7mPb|B#Uk_lGsHBe{#$RMHYwkTQZRHX~t5&|6p_uF^nhD{HMyrhG zt@zRfi&nK1EPIVv%TCx~9Dfxbr4W34PO;r&oS%+A2pVB7@_Lag1-Dpi2`RaAd05@n zAj*yq7bT!h#{KRAqk(s7Z-|R}f~9dismahgO{R6Gr;5>Y_@sR}L0rcJy~1(q0=Q6X z;MV=w7&lIY;M}nN;(SAOjcICr2LEDFxk6Xz8mwRZbrvnig zmeVyC4=qEhr9^6QQx>C+H#bGhZ(fDaa^qM?xK&utS1MK1v z7_WvWt4XT7580_QcE~?nM{d@kL8cS;d->Pb@~_gPq-tae0=msJ zBvzPwRaW}aE`#ZoQ8K)-|E$>Q-3u)s7&!5LH~V z7N>UW-hWZ0rTm<-h$b*a5k9SM)Bx(f4Nt+o%w zv)IA6S%aup8{R4s5;t^N)u{E${AOeDxmcfJ5?M(*6_d%^tm42TM@3p(H~lEmaHu#? zO;zzok%y7ew>`CG;F?$WtlTEcrBDxY0rD}G^MFjWyoF|!M)?ElR>OI+5x4_8Hj($} z?#_+D6}h%*&*=XZ*qfxWDxzO*_}u4U-)EO;&Wl-f>p?mGMD%hMLYdCVyv4 z*0_xTSVivjSBr~);q^qOU7uYgi22SHhRNTjOY*65t+R!2)Kt?0#<8vL?> zTU{z?sKQyq^D?l)Q|9p>3fck0L45}w1_AkG;+d}o%E9s%uzp<&f zw?8A9z8XfT#YX>ILe$f-@R|-&|GXw-p1AB6*qN2gS$_5zosY-KL?{)wy)k(Iconj* zyU!2@1HXMq6#d)u-}`P}!0z5&hu0|bVq|&I;uY2)eB^VXP)}kUA)ZL_qH}h7>hA?{ zZ+YeEiQ9*=M5Udx*JvBuP>YVzDn*F8Pk zuKQJ^1P;41HVEF})s>7BB?6F#$NefIa$RSiwdIvR*I#lkdRXNcQlJ8DS^N{69IsFL zGjP`CmoXXZDTTo+fPJcgRSO`CK!`6C%A^L6@I@IqgmeR7DkC-ZG?OF`Wc?Wk@M=Ap z>gtK7@~;e#NX4Hh8%Y)N^PBymqaX}cdG5I5VY*O2OUu-jC5$@%o8nHSLB~D#aq)<& z-skCp727y~$-tL}zJUeqyxd?{P5_8%R74QS`qbP>Mu4a}oO2j@4z4}>m2>uJ602bU zQOroXS6H^d5n+Tec%A_liBHqdRr_t%b!r>j$W6hyC+Y}WOoW~qkX>Kfn@YHxeYt(; zjk;ujv6Hc^dtr{U?V5W)bO-FfWo8IXu$UY;!%eSn=;A2lpkrwO2P0QWkQ!Sq531V< zi;_ZSo(dCD6a6i3mnL}yBf2Yq&Y9}{Y28Z1h}7y&CB8t5E%J&&h@P&4f6w`AP(cF zvFLqx`<}j1A>-=r=7o2BQlwGf3TkQ7=@s&pqZV{O*jvu*e{54$6P6tY2M!(XGuAmI z{o}!bgGO!K01@hO|8tJKE7&Ll0^@h~1PeXwhN7?FcFi4h_|QMY-jQ(A4f6Rb(?l}D zWqq8QkJo#l?;4v793D<&fO!jMiEFC9Yg05s?qS&XVD#6oFF(A0=Z^E<{Oi{wRY~t| z6KFzYSU|`&q0JjW}SseU?QrkU3ru(V* zsn}!SK{nQlq8{&H)?HV_WPb1ud@z;)L^3<6lCvev6&<0rUSR|t2Is~_dXDn65?vbP7vEN$z;mwujj&Nk` zJ%5fMsX1ukZ8^VrgF=Cn0y=LR>dS0-(1r)+96k|mx{%U||DyGXp`Vgwg~I~2UJwbJ zP9+!U_z+>=-(Y5Wlbdi7c)L2^4mp6`ffH}PWuEFb-;a5`1R4*FJs05XuRA|-7uJuR z!~DCyPVl6k zjdC#h-@=03hKtu?f&W`2xg+>|$7CmLq$x+P+}t8du;SMavX}!y7jcJ4?^Y;=;{#{& z^@aHcT|!&*=(?amCL#T8)_s3&uJnd}tR#n68EuY+YJl^;tDezPoa4lc*xa{FV8n=Hm+~34 z50j=x5wN_q$LzR2$1&K)U-Y`2x8GjBefj1M$w@L>o94?EpO#5XqHJ z%{s5VSuyJiD=HM%Yf%43Mc^k`ij?`4*5P3ox4_f!fymyyJxEe2p|0;_ zi0gu@G%Ms$YgkNX>eMo>G(D|moqrHLvX4LGSU2M|SF83#IxPpmW#7`A48{|jYBWHc zbTR|ggBJ7lSg5L1Zb?j}cz3iM)#Eie-NuH1Aq0%N|2y+jb~%4uVa@%l^O6vHBA+zn z19LiOX1_}o+^b|Q%b7@_kFs`!-Dz2^FsXk?X4+N}%I^uqktQ(79%*4p}pL`GR2BlC8CVx zYo>}sLUJcm7d3Yr2C)#c%e0p{S>Hb^3sWi&uFWMSteO6(#F+E%b&-H2qm&edy>HWb zS^9Ew7##XycqLNLX3fIPp_R;}waV0;$|iJJwY>>$89`E%9K?VA>z)Eb^9x~8kGkLlynK>aPW3{5fX^V(>KODF>%{@P*(1JS_PM>=#SQpae04Sd~IPj1- zcbH-1TgaDNZ?t27?67pkm6sR(a91L&pc3Djut-Zgn6CX}V#mGAv5d$c^Vxk+bh{jS z&?K{WWR~7BL+6-Y+FSSB2AO_*=**=vbm)P{O}3GWM4g~|Ud>5Xd*>(+arIVj;5)7Rihi=^9+h$+h6T z3hoZeTzi7#2ck?@c}f`l8kK^i=F67%s4szcXfU9tzR>2L!~(Tqf^s1d4kk~bPkx~f zc1Re%Fmf$9Ki`M6V8UW8a0Ve)HT357l_GL0)s-bx70%eO6>!;Q)8w0xVT8l>=*PxA zxTVPV`hIKzbN^VH&~qI{SRO=!_-gN+OdRuGN0F7Dvx{*cb^1Yfgo1K_d?@_B(P@6) z8}MpazepVe`w{C#GV=+!at0kKmmt4B@h^Cqr0l!o((6vbNwYI)5RBYSu#^v>NF`Ue&#Ty{6qm^pH{alC zoNiV#ue1+U?8xnQN??E7VS&fyVdiGp7V3kLz_~6T+asWkT=65H>SHo+FM7L0JnD@K z-EH2O;x1V?TO@F!lAG*4qYErFtT{3B(+&>g{7;ut@{O!6i1AO?>bdgXdmve|p0~U~ zI=mlM*ngd_Gphrl*#eptYl=ua*h!>va;pRu3qu#V2a1|r5RNAk*9#_*Eb7TJbJ{~- zJo%vme4-wgX>EMYc1T2n(dBT|#bXSE0SVP7@kvJE*Kqa(p{Bf-b&Qdgl9AEqrLY=~ zb#GBIv#2eepyzz-2@pMKp^Cm5$4B8m&kz6h+mDu_Daz&!=DM8!F7GhZ{(Jl>m$-( zHJ3XQ7!ZoJ4gJsMMM*Kv8&iLi$>h_$qHDh?mT|VxP!Z3=l!Sqjs;yu@WT>y5= z-R9kSp&pKMdAO7<+AQ3s1LjSArrA!*os)X24NcXY3*GdB6P53rbd;4*s5Y6=!3& z^L2)3ddE#c3I$b+VJL^L1e2&tP8gxY z3rkItR}8Biq9^nL9k8?59f{nGwngTaC(1&n5i02QNchBju)KLz1V}|9&Q0 z)l~#q7bVsl$`Xw6V+?k`VN8De6Pt%>mZfpx=@mcel>p%U*I^ z`#+v#*jz(y=zS|XwngIQlB03kNXKvR77kCO19joN27z3*$g2uAImY^3DZc0=t!vh> z#4xgiX_7sV%|boZwW%FrxpKEtUD9Uq=9HnQFCb58yXQO1 z(Q_MC3JsfN<^hdjk7jAO%_u-HEwrq=x5f07br(7{VM|v_X}0|OSTKhXPE2>5s(blj zvuabkjDzu+!r=Bg(K8=fjE4TYP}E1r9Hr|y1V z{`x*a0Rd}VOnTK)#*`oDBRSn{q7eMiYvsKAb&gIqoHwhQ?vfgUQIi_nrSq~Yv|DrT zO2%gLMRQmB_k^?xo++Hba$$Wmc2>|cv{(29n(p7!vFgi--bO{I2T1@(Y7{(ZBC-`Hhu?ILG6MxkTOcfT~TE5Q` zHm!sItDI1hGDirbyhazcGj#*7Xhr?tt8sKJ((iOvQsq{(kD!Ktxd|Rbyv{}4LNHRX zEqh?>cEYIw6-Iktb+>^{bUEzOboR{AWD5_+D znon|uxk>PO30#uk*%UaEDQRt%+ibO$d8Xw^Y{Rv>mLO0ia10DzeEne&+#~qQH4CZSZ*z`A*zn`79OK_sxwdM2qp53W!#$_|yu9A@`x)a+TD) zEDiT~x$n+}cf^GS9LwSn473+Y?!8tCW%{3lVa zsq-oG9K^8z(!8uOhEo3|w0U7FDLS$7G;8PhbP?QN{ys%A z#A~lU8-Uqi=+lZF-ps;y?9(*-38H5+n0){FqCOhWpUTxhcw>LeWKcW~$Ae*bGL7V` zofU)IO?O(U@8Fs(;c3$^A|Iz^A?&p*kufw@#$kii>xg3P5&m?5FTQ_re<>FRz%kEP z4hJo2fL=k!^?fY_`b23#e4qB=H>Rz*2n2fWzFKC+P(9BZIf>n{o^9~iLXt}EXxxX- zn@Nl^-CBR}z&Z8Wd?Mik(4*8!X&LXLQd1b;mSLVG3hdA_wf3%Igx~1{?uv%!QinUFa$b|{s%QS=LB2KDq+ zQNtJsMQiMtX%I5f24m0~^GK;daf3Ku#|w0y;iW3m_^r*&mV0IWrE+4*UGX1s(SBhJ z6ZViOfDJwqC*1Ftbz0!3M_d zaGzr1p6e~bmLM3(pM(0(Q6hg%xd5rtkDctMmFXa=PrF4|K%ygkdZxobxwpei5C<@p!;M{`i0fV#XscIkV1vTm>>d&bYSw97L|`Tmh0T z6d~V;F-$Vo^+#~sPI|thp2j~EiTj4fm|1SuXQBdB&RFCW-SBCK$u*@mp`1N$Y!%f< zmE{FP0&Xd!K%Q^13~tR`1{Yp_CswQetx^#iv(oB+&97!##3eaw1U4bRE{rlVC=rLg zeVNkOWAY-EWHX6&VA~Tx(BhvMXwksYa5K-vZ9z=7wZv<=FG*=t87+bbi_Da)m?rF5 zmK_LWWjH~~%`&T+CYRF5zXWk_CP&IO?NEl!%#lfYj7#ey7GdjqAV@)MKA(#lnlbv2 zYR+{RdEoTmTgzuK=#w5834-DH)cWfcTrBJWhkNrvpS1H=R|3N_K%%{B4vkux5`pDU z4k|992l~racKb|QA?G{7>JBEuK3HkbYs!7b_!4x?oP%rDNpg+na9ZJIoMK}1{<~#0 z>ctRO|7skb9Rt>ynX*jjtiR+psI8Wom_iz{X;6oudrpi#Ue%U#pI%C8MSt&}k}&sp zlglS)HcSR?TFRA*(3Gm1|40b7q?dzFgw%=Wg<~7>oN)7Cy!8EK=w`8`pTv(CCL>o0 z5>p=z>NGgzr15awA$eD3)JK18dfs9m;g~=M`{k?p5B8tT>y~U@ul=`U0 zk$6;ppLFy&6hnTUe6p(DBKs|=59Pj;5`wfBrHBhQcOt1n7i%kAmi9>7Ih=_rpQRYg zG{&HZB{~@oPc?d9Z@x>RmYx|)6W2j|$@SY@;F7BPk2+ z$LFjFMzmvt2@FCQhbUt4r&Gl(R(Crv#)Gn&GQ~w|dg1pxI6XpGCd}R;5Mt-ow>USi zmXeW2@uW#c?yTj6K1vPkaO}lkvp(hOWO%cUR5_XmEzsxo)B zB$gqJ?C&V;RZL#ChT$c;W~6FusJfc5hjBw>;pnAyiRNImt}x z-o1NY)?O%DB`2TLVFBFeX{yxiy57d-gMtD^)Bi5E2=_;KxV z9=*DT625AJ0B?P)5O!>DtYGo$HCy$V-vMk`4%{z-zAyl-pd%T0-rA{%j?(e}8F>>* zq=}$5k~D}T?9&&cZ<-r-{429rqZ)Ot*6YVcvrfpKx!zQ=lVz0MDrJV@-(0wn02`yo zO(~q82Y9M$OIc%lC1%^T*qQ>079ZpYf{6?Fu)AKi@Z73o?AdtuI$r4vUGN^mdr?S^ zzl&gL6rrcn9e=z~d5K;nFw!LME+`EWxa8VP84Nu{416Hm&1vPoSG#Y42(uTUG_s-h zQQ>WG@^uT7eh#a8^&4w{n@P7W1;Q*4kp}YC$PUq8wyI3K7=A#k;b1bMBX)*A`4wG0 zL0ll1NKwO%M}!Wglk+gigl`2swq1K)B0=*YWGpn?{OWSf@h~_v9Pa5Qu|Gp=nO|IS z=_kleSg!qW(t{g_L;*lSUbA7Ec;q35agWc#5eDw_br-JuW<*~KI&onIo14-b;w(yO zCTE~#Na2)u1gzsx$7`fTc}hty^dRNpOSJ&->-IgNQUp;gR(XH2LDUy8CR~Wfn4DR~ z;dv)LW2MYUN4HkUwJjYf1?{SUa>7oAVqSj1;UI?vknIY2LCPXLoAdF@t*M^%+KD3N zA4avaJKRCRa5Sq$J3--ch_!Q5@1eYvNO;g|ZhLI82M0@+^&&c9wUCzCEs?+FY!b(F z&1EOozRB{UZqF9-CGZlofpZ3{w)0E48ZyBEYtC1s=VOJso3IHkV#C_Jx^N+umD zj+TgJ!KOCqr$DX_wOW;^lP+x$ha33QJ!W|&h|$M6{vYVbhEUO=*u!Y#8V{JsS$F$% z;*vqkmzg&tbuDjUP)lVg*;Bv?9B*g6MOoI8Ja6a_e0C3TMeNB+Kg%n`xn<>zow&h0 zd6~_kJb`HX@Qjn8D%3N*CfRssTR~C|ODplzST9%Y?V}$zym<2uQdz_Tr zW}8Yi7e&GK@b@GTKp5Vz=S(T&+T1@oUY3-8x$9Ha8YGTzrWiBkm9d0FZ!<*ZQfEfy zS;FVCw)9CX`(I~NCM!_UN4ULJsx^AAV#oB@wrdsFHcXic7mjp(T1!gXqpmcCYHU?f z&)b)D;ocnKbqm0Q=^d+r4Cy{30ST%uV`UUfW!q_SgTM^qstp@bBer41c3{9nhVcvV z0MO`f=t`#s1s2-Te5q35vOum@u+dhWqv?PP20(O#ld}sj&+ie=K89_IFDu+VjL1~M z`kf(#T8Q6RGaLs_c8b=|h0 z6QOd$9t7>$zLM(cZ8l~9x$W*&``z}i=_I!&0C&?S*U*rLFq3WxVk(D_h-^X=0MQw+<)^^2Z!F6jQW%^PaAm@q7RAD{u zy$)PKx1=7v)TYR6oTyZcGs#Oqh)lcm3hfHV@vF7;-fu9iVGy(>N^gMiVpR%NYb{o$ zdEw0VO$Nx@qyoo&GHKQOY({oixB=^|M}jO|>bvh>T_5zlB1d$b7^|DxCb}RQhVqTm zX^O^hm;gK&AyNKc5&G{wYPI&Nu$c0j#YPUy>Zf%ObRV?tphO>gAN-hERI53nsEiuQ>@Kke_h9e7~UX5?Dzyi%&$>1@p5RJX46y7QnSCCNm8xB zn_rbTSNI{4Y;k%>!0A4r_8^gu&TB20_(nQ6E;pD*(ls@O+sW)+^qypXg*icW_T+|# zFm`J<;#)a`QjZ(n2YyC=yBOaxp)2gKbOqTXFM*i*>dG=-D^+t%F}*9 zxjXI9ifPGPbXEw%1pbZk1@`G6(f(|{n4M%9f23q6R6ehTv|!1F#M~tT)0Sm~TaUJ} z(RoAE%sg#nOx>gi4?5E1i*E{)h>9&sN{gkikh6!)5{)A`fFH*!wlsWaeQgH7AGV7E z%UYftyYAMWf5%c&x11w(%1GnvMoCo~WImcG&Q3voSXZc$KazZm{DxPgPrd^Mhvji} zP8cYY$=5BM#6rIS;t{Nhl)fRh-!qHb%?FWgNbz5H7+c2b-pov>oeQ+5I;>wkRFC5* zIouyy%!lRLan26-gvacQNLiYFXKwP)MT<)Uojlmyz~oq$5l`FIV8o1d*U7mwcGlr{ zSA6rxIF(8qRQG{{QUEmK3c`u=rRfVe+b-5s1zWXd184@oxb&2&N5=)HVz%t@5!%?@ z0}1}mx`_6o)=2~o8{-w)Vgq0FV!#vpB7T=*{un!Fm8~_1e>jL^^afl!ai*;OBz$|; zRnA3?$5(cm_ufiCUR6hF{!?I$ywa{r3u{hRcyQw|M?@WpJu6m}9*_k)+B}bq)I){8 zu_=oBk%N-qC0*K~RACVUr_}DCyb9Wl&dUQf6v@hKt`j!~OB-tgj>)*Nv)0`v?|Ens z6zZDqb(Buh!+z3a61bB2H3N2!^EC;&8Cq>U()FB%lg`2^+XRh^Tm$WR)Jg6rA?=1q zYuECG&glgbvS=#|zm>=CW8IKR0?7zd7Y6m{e9G1fpU8}*Mnl}0UJo-#>#YCy%U@|e znlmg#>*$VgB7ZYA;)bX;i9RHvd`q(3yvkaGYAK$}X|HAlmT1lHcGOi_g{buktuVB{ zD`7ahmEIBoWi44ofLXIu?w5}<;8wu`aaE~trc+{u8u=UbpJ z#Mw2=+oxh3dx!iK1sIWactn&r?l4$0>fEm%JF0_AhfI49j~wFN9aeotuX4ThxhRt$ zjlA(Jt&4B=hX<1@L}tb7-MKF#fI0GyH#_U{VYBS&tW08Lw!SKedLrOM&|?AJnhf!8 z0$a{8sc^p#9&7PrZir9V4s zcQ5PlAzPasHOWauV`H7h7*U^tb5-EiCRw!97=8rx~{pf<5iqo>qaucCO~sL%iqbZ z*JAbOxn=*C?ShVBEoQ&0c5M4awt?&>Okl6Va~aD8Q*EUq5VwOJHMYWmT;UzIV z_ECPwRZlKna~&eBMM{tW)Rkuwd^HmRn!UeJ2191MrT8FQvL*c@^bi^S}#{yIFn|DN6Qy*(t(upX3spYGlbKlS(X89BJf zm}-!OD+J4eGRdI<9VTvw$ZDRG+Tk!aQB?SY0=MLgJD~Y+hXo!^#I_P(xHmNP&&X$S zvttxs^@mPPwQyg&yJg%UHOpedQ;AP}8V~U?olyYl`w}q=5B7(`a^h|)c!;ZYsakmX zK6l*p%#e3fd873U!~11z8zOh8piBE1Y{Fc5ad$PK+WdKAiUv<|o3D3OA*IsLbHm1R zIA#A73DZ}FZL`95XUrENspliZz$#9L6HiPh&SnIv(@1w|-y*-DavfW9st6r9n)s|| zEJ4G#NY^&fk%h6n-sFceQX5igXPXMVR|4jHtA4Vfp|YGE)ThDWa$uEA?t z0^@dHWXD}JU`tZu(agOlHZbOQ+b-V>)GwYN-JJ;NRw@`J7v&PBH6FA68v|e#Vxxqdd4D_To{mDk2uImZr5(3}rzwB+;pv12u9>?c=jKmY@6*O7)p1t% zJ@)_HYo(3d@&lgM6Ym_mv_^z3ba4!)iHn?7(W6FsZnwIlA-3#_+*bU&{cpWBOA&+- zl$bE**2*R%yOtyWh@yQFasXTa1JqwrKDpm%6Q!%F7 zR`#lXfElYflI_Uy-y0(wIx(EGaS~19f5|fGrSsYyLgix%rShxm@Rt>tndkIeCAs(eub|GGAoS(h~$7G!*non7g`;-lyCeF?jZNg!95bX0B2l~L|qhcME!YV6IZ4hUIr_b{+k5Q zV(d#h0^inAF!J0@E{X@Th-n$q4I)ynP7TM;^E+Ydjudrl%0OP4R~E*5b5T*B%@U-9 z<<#Ftqw&$g5#tp%;FzSTvw&b-hILCPt_uP%^7phFwtsj9>x_!8F<^n9OZrjN`aZ(- zoig>Rj735$r+6kPXd61p@2NX2YK$5Dx^{d>!%Fyeg z|5OXJi!&Ib-E(HB5c}Okq1PZc=jnXFjPt}9b@7ejpMAEvc;ue+o}|Wfz4euP$E2>i zQklZ@Ly|P|XpAcCz-|3?EUt)*VhnhvNgJ&0aqhZ7&I>UwPuis;h9dY0&ojseR;dV{n40e zgHF%6U-NmEeUcrQNn4U&ud$r3vN<~&c@@LHqk6pqu5fwxN0D%Lr1gOZC;JgwdlBPsl*FqRlE>v1M&I5y??;ne|+FKl^qR$!cjiE<8o zIn1->YhtCaag{69J1w={C#9LIGBEjBR*%M`QCdCiFwh)LUtgvKZ=z~*g?OyJp4?ok zjU^v?sgqtS#zMw4E$6(~vbO!9`Mu@B1NsDns2-oUfIE6GD`W1CVxoo!7W_0jr^NBy zY)qbz3x`*eE40W6zXnYPpjzi~kd_S`yHya=W)yz?Y&kf(WJ7jzPsW$8#$BHLZ9I0m zMkij0Z4T~-z5YZb0!b6mdn3Pq8b^6cOThIfd6y|d|3Z|s=;aw`f#eLw`IKf(9Kc3M z(-s@jPO8k}RH{Mw5*qn7_REdP&ibf1am-%iCril`>Hg^MBQ@9NvVLPc>89w zE{6c8rq(sS0A8B&mhk$THf<5>Q2}!z|A~=kMFW<(nHhDq`;8B5X$yr(xsNBwayfES z>#YKBp+GC#MN9Lk!dh(K$*uit-zZmnGKgY=md@6g1&1g0gk?90W#ZT0@|TY|$HOqW zXoq7;Ulpzu?ZQPs`peQC|MRk{@6LeqpULhI%hQVD3UJRz77=FueoECJf60b}F`^^~ zEO04+6=|0bsUkd9{tRA|hgx!@-evnvAN8Y8MiF4rd&ER&_j7aAp)-idwwW_1blX9> z7R!n%l(ic*gg!eF>+Flp`l!c3hVr!Ul!tC!q1E1Zhen?EFZD&9$T#g#D?8L{&S+2U zC1bK3b$@qc>{9bL2CK!tvU*Joiw}m?lm7E1bp=(rM6%>dOWU|ASua}~qTP*Z_hkZU zrIo;p-te>pONgOFk5nPqZO*$MU-r(OR;+BBmr}9K%D^Yn-YCh282+kt$K(YM`U$cT zK^Xfv@(-Xq%-6?FVVI6Q6xjEFfkecrl}4)_q*d(U(|&RNyXQYoUiW_a>+7FKuMhJO zLE>FOUMrgvH*iKl66zihT#jYQ-l#WKkj1=&vtQL(DHa*8-7FlqvpRu&j@Su089rHyZ9#_&qG0<% zY$&|O(IK!Q4v!^Do$PBGIV0-_4-dd5El-_bq-jg%VskM&)S(DCFiUU)om4JR~xUDh@6_tvIom6JhD$Z&QuWiGDE%uLKvl9p9*T#3lYYE>G2B>E*XyWcom(X#?Y-33GN!( zomX)fx*9mL4|=_I!N?T?q8quOTt4=_&azG5Wy^{TZQ*=E1wXl^Ft;M~r<=Q8e!%vp zuhKivF=l)Bgy`|X8}1@Lvsx9qiIvPYc(48?oHyD8zRE@J4Nsg$$-aDHrbqS{Z?H$! z@tO4``ZM0p)ECARQV4gTI|*qgyI!4}r#2FaBP`!w78!}a% zg*!wl2&6wTtjcXl0rOBCE25Dy%Mw&=f5_<9(hV{Ez7zlLPtwR<+fm30J~OafHt?NG zW z%TxZOWyzcyF(Kt*Nhk;#`}4w(KD4qq(0L<9FKaX>_s0gNPSF_nXh=L+s-;=RQs6=w zCz)Wu1(cOjvj}L~(wA7nB`LPp-)OpbobpfpEYxLxy0r7#64e}WtY4LjnlOcIrYYcF zd+(}4G%t;)fn`zvUKw`3g65laPghh5cn;L-E^E4_1r_wWc#3_&`5P;yEOjU{8%s|5 zmiJ&QE}2}d?U7~Dbxy+pA8|GfD zJ>1q-rE_Fq0s4QxZ(9|G%?m^;_K3w%oU#8VR8EV<_!DYbe$xY00l&I$kMu0#~JvlqY7 z*8wCCUkB7wvK9F&SzxxUp^{hQO#5lD2OXgsXIRy~Vs?PJ^5$OpFdL}5AUR%9vm5nT zBGv`hl+_{~wBnQz8VjsfYfVt15z|DXIeYxGTE*y;h)whFwWb|;J|Vu~!D^zkH*8#_?^nk8=;F{Tl^GEk6xIxoV8Os%V&%;Fm;xF6$+|n8$`=eHg0%8 ztvbccwnY$#m8D|{TMDOd?@)0A(Lun2nf7wqZr zdEOFp1Ygqlti~=l=>~04)--u4#lD>7qUy-b41Hj*piG|HvJoV%`m*i$)Fx1G_{3#F zsDS(QQXOIBI+ORv#QHmN0{_(Gh8A0Rvw+{#vCk!u%TR4o^eqpQojaWBbxBQVh%buB z56kg;YQrDRXISFqH8WG;9jP6%bIS)R$f@V;eQ63o5)F6rNbeMrbkoM*(1hL*z7QN&rnX}=b8NdWQEGh zhT7*_`|cCmnvN4hCg7jbkbllc^7o=b((D4hYez z+LkDySwHGtl7#(^$CEQO-;VkEmlxU`Mp1N#4UQ65O``Ttq;6H5AdfRyV#3r-<5FZ% zGl?d1k*r{2>lFLwQso$WTSj)I3q0~f0&0BVJC9sv=tdfriEf@(M76XQ`vZ>#^>|@G znos&jn>?=XIf?jUmFsGnBSlM`gxnNO1~QzC7MVO%E&@2_aNdbu&6Xlt-0%I2pe#A1 z#oOR)tO?3JH`&vABh*l|w)%!N0gQiAVcA$sr3abdiw!o6AN1Z@!nIEZcOcD&O8ZLs zSflL?@;I8IAPkn>hayD5xj<8I@2*WiNVh+w-o^iCPrp<(@e2Z4^E)DF+g!ZWYZ@YT z6aPOjxQ4==2Z75t36h8gM0^Duyy~q@kZk3Qa-;rf z0r-uIn!8@IYb)lP!tc3=$1eB)3&_b^jGc>$tn(C);`4rvCPTORx!S-c%;$NR@v;e1izm={)} zqn7lmcYucuV|LOVq(=TCnFuC{xDN{-F)fL zABO*Xvmo$30}OxemOLSS)gAHWGiPK76WSpzL&6_6g@f)J^=PlXB^`CGKW3*}5vbil zW(ZOlp@C`|*`=cQirsvG6)#!6e0_66H;IPDZVo`L!{&g&1&O@6v`5S zaABaRn-q`aP@BL*Hc;gw-#%jt1$Wb?0gzK{v(o7$-0CVSuweBNmhmSUH>PJFZ!rrY zGDCTqV#`=093X``7QtLMxX2_&*BOjZf%(b%)Xz||CtQzwMt)mE`(-XlGr=e%h+xvg zbew=W99gsT8WetkZAG41(lHD>SuuXidV{dHwzEcCx+mc`qVZFbGLHj(Loi<+oG%`B z^vM!}Md3(y`nyZ|AxA6Exh61z_R6s%EFZV~cwy9;jzAQ0lV={9HtE_jkL@wIU2~yPSYB(*W`hBm^5E$l99&Hd+Xz zjm>>BOzyZHCWIGwJ6!n+39v{8`5Z#nsE3%(X2$r9Ct*=VvI+4h^d*R2i4RTbc&=Wb zS}X9$xj@KOn{C(7*soH--hBY@Whuj90PB2l$P@!Qb&nH~7XIoDl3fqm<<&c32>I^2 zH}4KSRFpa|tr!68Y6x1X0L_UbwkDm?jBs%UcCi@rQS(~Fn)u-x`@O^lCIJ)nlHJUU z$TpY;a7-^v%KvzV_rz9Qw1S@4hJd%#P59aozDDjX=5>`BS3S-}RoOamRhIXz)8f9B z5jcK*T8f~Ptk5l_MI)anp#Yo*=E586qVvmQd%wauUvR&61_P7gXJcm`l*}7d;x*2_ zQIoFsmwUr}g)AYz?1062(t7Y)HfwK`8*=0Y&`xyE>IeTWLsuHH@N+M&aDRyc9$PVx z;9`Qp8=tznBdHm|K9?_V%Ntu1bdQOGuCJ6Wn=aB*Nr2zUhr=GS+4a0)!Uerw=+}RP zBPHvs16h0|qT$+pq#ja4g<0EPT5Y}4xyT(vb57c_*L&Z7vX(Yni=TH(1RAVmzK|gC zgF*d+To42FaUcez1TPn#)-jvQFPKrc6+sn3#htWNo9|@8Nn3~{)3pJFJ;J;_*~2!J zF>JWc$*(EMeYJZ^DoRbObTAylZU<-NMJ_LZNo&?_c3kn;PiELdE ze^|4KDr-6O+~CR3yFJA~0+0tGMY?rbg6*>n_5f_&LG|`Rc-P-i^RGAx{Yg2UG!gw0VpVPfR6Zvy4f2Q(h z#y_*!R|O-UUy?Xk0sKGeetm4&O)}yf*S1=hFRew!&qgEP?moc0wq`byC|!+pW5oBm zjn+pJlx8j--az*QVRwzw7@plph^Q01KZZl@W`;7(PM*qfM!T~GGh#b!I!B3H>hXK)a ziIi^(sR#hpJ+Ex>1-ppFMz94p&k9S=T**cwj$$_dz)|8+ZJeJ^>K0% z-s>Lt0c&hL4k%bQ3eF>1eQRhk>D;k{ zqMf|DB*+XQM46=Jl}Z^W(%cB*P1eD{U+iSkj}iyHbkRET@woL#yoVNyQzOz@Xb-`)RsMctKQ!Y%s^THvC6SC!pe}@V zXJe7ei;Z={Yr~3IZN2iA0mGnbQ^6uzs#C1heoIM8LGER(7R?F>3f+&&;?~^O@E6-9 zq=`Z4k|~!QB8rw=s^h^BVc^i~&-`hI4IiXmz7ste`AK9hm<1;LVa{pnd)wmsFUtkuHJ zFg%#|p}W`DtL-T;xYNnh(3O6Kypdd?2=@Z0RWNWFulz|$!h zj=!K{_RH(%N(=FGT(L0RPjM}d1Vs3S{_YwC$64>EARMREf#aBo9ielm&JYtEbUkvt zAe?rxLoEye;XHuSmK-Y-Mf1{BEpE?dAgme(oI7&2m(*$?9Z}<;&$A8QwW&1Qp4WmS zvC=fHej?$5mH=HqqQBrwX`JcD!5UhpWhIFo@z5-MdIpn5%1o$$Tb*9idV>y~UbI0z zreZW6dS(stU}-7>;_JbIQA4wwH9@#`Z2k0%K{?Q$iPZh}&)>ZLuT8?gl7q5?GPsOd-sqdw{! z(aG!;P%s)F_S(7q-5bQLmGJD8;)KG8YvUd%C~2 z$KE|*?0&zEwMVtsqd#s)a&vD!qYI$>bw;tPJ+(if8cl-QZNiV!j%W5ryOZt@E4hK% zJPoju43n;P*=}`@EQnC~D|`>eE1Hiy`f~HRV<5=J-PDs+GSr6p7D>9wtZD9}U@T{9 z){fFlspZh8fsR0hnga|(DZ4S50O0hnSJSFZGyu_8hQx%oJcVTde2Fh{N2Wg^N+h4B z@D>zC#tUq7)~fERD^WfuMATlG%EHmw6q41j^r!0BEo(v6R-2_I5hSNyg; zgD@*>77J0s5Fo9AbDEKiKK{$g#YVzhSkstS?L#*w25}xg0+n%Ue+%J`GYh$6t#8Hr)71|FX(>21Z~cJ1Qj0y(dhBRj$bc{ynsva`tO);cSu#n>4kxiq+}hzI1fiO z8u2Ccw%#_g#*&3S|Jn6#UVqb>qxh74G%25&+C3j9d7@MoBtQ;;OGxN?6#cMYEg&#k zl3AlqQF!66gc~@;S3J;{Qinoyfh>milh95qrGb9X4?qhWjmOd&cW#B@^{UPbp^xBe z^w)@z`+0||+-Si2Six-zvNR3tn`1-Xkw- zT&_2Dx6ugF@RGR<(rU1eydNjtIP&LskgW41G z=0t8|*&0t}{pCxR_Eot61C4Yr3PGhmx+DR{{?|ILy)cR{Do-3;iM|hP1=w6kMW$^E z|8caBzp3X{OKd*PSS-}W$*F!*Q`z@_IIqb+F&;Tmn&)y$oGiB)9;Pxq*05QQ8i8MF z3e&JNL4p1Lv0Mr4yU)rK9RYv_Ko$YUPX42N6DO9N+ICF|YiOCP%2sU{+MhaPiEJqVoBvNOW`R-m**M?xe(Yz{QeS31d}VL)0;{jY2kSHd)E@Z zBV$%0YkMi>2_|sj{t&j{GTk2Q+YaEP35NW09LV3(_U{5FHKRm+9yr$3pJ@Vo!9?}U z=JBk`2}S(V+Ln=PE#Z{!cP-Z|W)}%=Nu$YOLCK{xD;XSl(v{Bg^AUuT)D=JYVm7`+ zL7cdkt4%)lpL3YTF8IJ?d#dEkBZ?bV<4VeOD?jDB(Dq8Mh(GYx>r#rvwn8p0fhIZl zlNKB&w&3knT(D(d^>q~E2D%^t=)>c}$TyWSGs(P`Qz3QAv^p<~Q)Os5LEKCx!*4`^w_1-28J-+Goi7Fxs2bu)`YdDTgqo!AI=Dkm zcAPS}M2v`5y>ETO)J>;KCJ<6AS>0i)z<$-)ZlxOd{t*#?Lc{JumS%xmNVd;c^49*U zLEYI_Q>;#6U?ob*Yp1nFVQiv`i39X$Q8mJUDrxF|Ak4(>qYG;1Np+q>s~jFPD?Lh& z-QEw6lQ?MiGoyHM><>71U&sM@6tB%#P3r+9(l!MtO;@6_qFerbIkgx&FxNq|*He_s zInO?K)Lz01KwE#GRk`g4eM5xuLAn&Q3tqZ(jd`LPuZYYB4x4n4cn55kb9TuXRSm!1 zXPZCNWk^Hs=+_{0UAOsJr7XMwE9D-W;Q;ug-u1O}GXLIn`pALq;NzT!uU@+bNB~9} z7hJO6H3cLP8Lfmp?=lU}Ekk_}{?6V@E|0odJ(6mIAklxC|7qeTVLu2ip7X#TeY{$A z8m2LU!0r?3PhsGqR~GPZKW{zEjEkMv62a!e8`6oJ!IB!S8(6u|n-zFJPvnMryiBFY zMf3oGN6&&4l@0^*SZYFAJd!Gt5nBG*k}Ml0c0{zHDFm%-AqYW_4SDdNPs|fFoq*Q& z=}~08uVrccQyxxwIxHoBQHYSJ@G(GQP4Z(?X?7rZn(WOapcQw@Iyy>x0o0b4GWz(y zN|-@({Zb|a+TlxUE|2Ao#zSVRJv<+^pDV<9MCl!8%#S=9%FF3W@wyQ7sNk{;eF9q^ z#Ux~kLX!QYmq|H&>4=!(I5vOWq{9&$waIio@6@7x&HOC3oq63C#AdTFRpb+u!TtFc zi=N)sk^4MVoqC)ckUvda3O2x&EYX7t0)%H}0n^-3$Q-a|vxOZ*=S4+aPPq(qwHt^8`e{$8JJs+DxB6$K)` z5OdHU@l{M=In{q|awg3%#Aw>&9&0|s4I<&D9l=v0Jp!x#?hfxuAaW&zE*_E`(K7OC%CeiD%_#~t4VP$pLzD0U!OZYh)#LQ`h|KaAO3%3i!^dcfkhQ*N} zanJH1y5?v^0f{(%^3v_@W<1Sx@bVuI)2o_NGN!T}J!zzG8652K8=@WC`Z99;f zHbdK!U%}p4d_MD$(s493xDI=|U`@+?Gby+^l(BQe%qVu)yuD(iGOciazc&Mb0WDtJIY!D?(f}d1D2PRt8^-JygIJ z)@x1$=?jpb^KPuUp>a_TmWSQ__L$XG+o!ikJ75ZSU})sVw#pLqS=9nReCISOd|y_n zZZsN9(4;SVtqvGug(vG401hWUZ4Z0;e~WKHS^DWwoPU(YXLJ#qAVz+{g4l#r^Z>?~p3Y{C%Y5zT#ToXY!1L1m&Je2rt_66l+FUg#^_nFt6JnlHJu~US?-LE%EU99$} z9OL|9?p0S5J;OfPQlis^lRi;OVD2O{Zwf;zOk18)R-!phtfcg8DmIVaj-Y4eWU7O) ztgVtG)f?oV2G3xN&TO&MeAy2Gh(Z<`3_^Dwqgm>SJMt#tBmup z;3}>uM)JL6GaF3R{GGIdiN((=K{DpG_M0mOGx3MThJte&?$kKH%w}yS12Uqx;dup` zUMhXOykTX|*8Ro$yZKs!VbgvXz7mO3Orj~#Nm;{L63P47=^l1)R(2AAIpBe4Q5 zWdylUr?~SwZRIVk0txIFw`6%?!YXNfVw5$qoM83?$q|wJ#B~c>-oSwzArGw%d?RcE zx{9(QsKrJQ_1OLLH@98WwPnB`#pz}oI1_01&mkeQ&LfGX-yqRP-` z_z~id>zak&N3bK11;4PAQ_Ak+2+XP>00WcoOt_g8whCpL5;a33RPlDcDV4<*|DFqb z^0!(GMO1n)ak7G^gxil7J^zag^Sa@UV`Y|TS!v_QYf+?O%|$kD3ai{`H)mo=)OD7Pr7~n^!BpUH)}`p1 zGVtuZ%L^F0@BSELP4zwHMJK=|qd%{8Z6Wi3^JG48RqtKTN`NBfm+oaOLOvLFClXIz znFTE>%^h5MTNIUw%9X_68Db}STjHb@CGLk*)Jl4?cM-9ewXm1)j*K+c z&Nsi+pA3LXRI2xjXC6^x3%VJ5#~kZiFjuxC0iSD9;jqLL2k~V=vBQAwd=x@%3>Dz? zOi1kYP49Z$`#l-m`#t-Q4}>1_Uu%5!Hzflvqz(5b2R^~xbPSO_OeWt5zXDYD#N6Q| zKB(o!F3q^box5d*V4S$pJbuN(BTuz{NTkC)iUamoii55*|DU+zkm8zp@;n)ayBTzgXF# zaCc@k1h)1+(JmOksY@{_&n>w^L1nX>v{);q?n|-Edg`pi;|q09ZBf-soRsQClK}rV zrmUYPA?s^r!fQh$qkNF;l28qyj&lL4ZYdOw3E9EDet!7L$0Yq{RFSD&Nnw|E9Ke-L zu{4N>a&GY+X-(v2Ca~6h^`I1d^zOi#t$D`F`i4>0DJ?xqy)${gUW$LtD6J2VxF^Kx z>;YsYmApApIuU7v=2r|mMJ8>l{eZp0S1dy9#zIhTjFtbT#3p@84cS!JT>PR9XzTc8 z=Qgp55EeIR1N6LB>Y656F7g)Nzt3v(y2$^O-6D9(QTkP^DigW&hJD7hB5O2WR)ONm zu=~;8CO3B}B`Kc`|GHr3J$YCHFi^#*Z`&xL$d&#YCNw{Q#t~~W8yr}**k@P$SZ-#w zHO19B?M^yMBd@8cutb2k=HgiI6~d1*d0a21i#Z}aO8^BGLdiy`Y@JsW`e4PS@%$2H z+H?RN<*d+pg3iFf!L%k(CNk8pa$#%bPD6im$Bq}S4tupFlnHQ!eLbK6bv38qFmyvd zD@K?-Ip{lGBHXv~si&G_*g|nHt{)z2?(t=%E?Pz(-fe;K>Al8#ea>l@1PE@~_ zHo_3h4VR$atw?Lu!HeBokiE@@xGygXLoc-SIxt}mQn#>C7QV&-H;RetIKk3-!{Wr# zc~W$zr*fDKJ*h7k?}e@y-*ma{Nd=#$yx+DZa{0`?_x#Q+piO$U^I8BTz#Q9%BL5;5 z#wv+ZbLJDlx@Kj4*+K7DwvfOr-RcGIJ;p8@l+_mh!cjF*ux7FC3yF+DpN^$($t3%) zWn?=3qJhrqY7$F)AhAHS34bJdV4`sMr+W<^czAQaO>eR>lTaIn1-{tka za|B+oE70-TROc$F!bkGXniGS{z50m(Ry1@eVGbew?(mTtjvlz;PpH!_Go+M&?li114w21#mi-xXKqlNxPE1}xo1@m zQkv5m3*pOC`VdBe*Em*hXSaN)+y&5Z2aLL29B?mXS#=EdL`BW2Hd$+lAK-1*?6f_)UAT{A^2 z|Ls$ZyHZePx!|VV-&Jc@N-mD?kV{{xLWcw~luZ@HviF8mdN4{SUK&jtn4>U6NN}Fx zW40_n-MmKO&=+aIEl5k>>^KMVIJq!xaTo}b@pwcdb++6ngAz{3n&0cjm^B+*Os08L zOmM5vC0fs>rW>Kaji#o>6b(Tdx&XwChO85eFP=g3%`57e8gH9T#i5v%wHoi`E_p9LSF0<3F@OT_C`dZIlcYrz@p;O_@0ZLwXuBt zkH7p)U0xnvn^tFEmH6qEE77brbg1#hNo1keqgfq52`vE1?A&e*e3$Z(66XX3{KxqN z1(m@L6v+60cz^vpr>2?)-IshI2@JBxw`^_nn+&K7V_QkfZF0A^K7G8nO}hFz}RBALkr8wN32tn!@A$=}lP{ z_0mIp)OU;V; z?UfES@gTX8krpX~P*7x_;}Q3?LYHxkGo7 zx^(VL2m-*uZdQ-!eiAsFgYcwP9h6AUxO%pkvi?bEtj9;?KJ)?;pT^V2usaVf{IUNe z@7l85R;uVfqcD#}VBt2ltcL|3tj-OPzzu|(K!C-MY*%;dwk#RRPGi0p1Owm`#=%S& z345P9vg|5#gJW|qELadaozlDN)OqZ)Hz7iPwj*{qp4eUEPJd*--BS{W;>&W!Xod9H z_O9B(3w|VX|5Kz}X^29WdnKmnP1&J;uwDcORuIp6_!a1Fn$p@Xj34m-4BnCjy>H8V zDIzN%K-}SXrs<^S1jCMfwUYKn{)#;#rjcy$@3-{86gKGS@c&|KOo>~1Q9aZ<#Vuk0 zM>YcChyOuoa;<2uvK{|T`lpaA2D?sacdd3x;Zy=Z7Z2U`Q!P>OZVqnO)KXv>V)rfz zrm*ojL<6osqP8?UXt8dz5~iplc|)=z%X{HATvoiU7HDylZND-C&sGnUX6gGDA^=bl z9ULj9T`_|L1gAj?WCu&jV0@z)Z40H$Haz{EX3Pb*e`gtnb3r0aMhSq3lgLv|F;E12 zBqtMqbm)XAtykxp&;v-sgmj@=wA8D?H@IfvfWTRb_r72jDj$KVB~-RNkx zM=YU*;YpfMr&C4UAVs*d4I6vE9&cb4q)tIQ@*p{kjlFIjSOsSwH&`E8=xILJy<71# zaU%fPmagFG=^Y%Hifu{X%eHti+^M#zGh`5O!h4Ws#Z@2)RMkYwk|(QV*M(`AsJ!LU zUm;O=m^!!vQbt$nrqR|G6;#V`q;xFLWa(1Cfxkze6U7vLK`~r%4RcAJtiYR3qB_}()XBD|$A|io7V1&`n zLZ$22_grODfT_gM{D?=jq9FC@ztO04nh!Yv!g73OG+n(K^I zwdg)OFH7J|P6{-(I@~s+ z^JTR>(H_4S(D7VlXAszG9d&DslaAn$<hFD-29a~Ge0(>n5__%cqqO02W zd9z1!cdt?tuQ<07gJxyds@Rt3Tc_!DzNA{r53>dkw;&$DV@S@&4}s)^M9CmoZ<=Go zP;{;_Wp!S3_m2jmMDLl<7ten*`0azqm96X6G;Gtr9KP8&@WwFyQVFvXmcrOD7sn`q zN3#|VaC!CkGsJeWfh{YR#MEal2jWmG#Uve&3`p0!wemkWn#l1e8b+kZ38E7;;hvUk zVUbLdp5H~tQe;a;Pr}~<#*E}RryHeiDxs{%@B@rqRlqE}mM2PF#RZBBxPi0l1S&5c zz_h;EK?cmFzFJ~MZA9Vd^hj5|%fOettGp|xskQ)7r`v!Z=`t?AzQGci#SvPBZFyXK^8-Ygm9Fp|a^q>0Fw1xoe^fj1Ui$_cZf1& z*c?B670Hr)sy-vDKOtN8qb>0_L)m)Cw^u4yX2n;n*1qs&+!}q58n;!G3v>oA5%67`rVwclHgbR!CFi8*+-<8HO4{%AdwuTM^z-(+|U(~0B$UsO8m>HPW$5@QsO9Uqqy6Zam4@rYe7Uj89U zTwj{t<)%k^WahD*)Si3q_J{Ws6oUz>IFr6{tg8X)al}vmq8=e{sKGrFO8mR%80s(E ziofM@*X%;x2y=!;eUiJ(DZga}N~BSl)wsoWZGDG1R!t$MAg>olf$-TNBEn8?A)#f) zv8jM0z!fb&HkKH6u^Slq_saDk$J_w%M7Esk4^SaFx^u}O0!Da zwLG)XS1J2=SrP1qw`~iV2#V!Z=&2BN*2V%T6?OkXEV#X3RTAh|8+pm}Ds$Z>y4THz zqII2)B5b$O^gq%B3W`Cqz8k#8E0XQ^$$rquN3@V$xN|*bkU&=SaY*?2EIHd^cWX2+ zEus9#UF9K)lHml|m(yAyF0Z-LPqn9J_gJWL>ZKW2rdn=Y^EY(``+@rvjF3(5vPfFpJt75eiK8S&fKv}lNEl}0#Tn^ORP!Txbd43Tso}HuBKbp z3Cq=3kHR52#1ukN$Ls-TO>rPr|9XoAN-4Y=O1_sbWwl$45D1Md<#hp$i`Pr}5enZ3 zBl&x{hsE&)k^cr1}m+Z*+=KS zkj9*r0vEEdH-(#6x1`?5=)5t9@{xK$lF-l?#lZXq0p763mbY-br22`$m5?#?*?J5l zsh04{Rio!HvysMr%jW3ih=noPB0d@Y%Hb`CjNgSNp&~Xb1e4YQgTMHNNJ8}=Rb=i_ zpR(KKk=3rUvY>*z`>MJMP9JQ~m+}bhscA=A=Pq?U=iE%27O{&jOk&UTWxJVTUSEWAKEaIHAXu{T`k9@E^!b)mPTW~4ab zz47@;R^v^hpkRMcw$K}H@Y&otBENh)c+Gr0$LMO4ZA4MX$4}sDZLt4{_2=PP%uvsM>x+rXlnPutad^?KL_|HjZOh zP4A*5WrT|>$6MNrr3KPvJ8_e{ma5DWg(E4Nl|nqee>!U7iluGT`IJ5}?W@QeSY2)Z z61|8Oc5~%9G$cDR9SQQiRKVeBRi)VLuF}8V@VqvYqh;}}a6U|fQ4qiiPS4E{|IA=0 z^cReIoS-ZUe1w@<;tRsBeZuhyu@>Cpj+97|m%M)S=GtEOUatFSav04!;g_tYFqtq^ zPh)U2QZj84MCV)I)0M-|&p@AM&t3eSDOfUZmmAw+M|&d?kK$nxM_-l*xu2{iSzUA7 zXFrY3XCfg@r{h;5Bj$$mGZ%9pVzoCp!ar}Qa~JYz_1>MakP37Ym^Xy=d#!ZI*i)aV z=kUi)21myT{JaWavF#}p&Zf>@$|lyj64P*$%8nXV>O{Ok(&}N4DN-jbUkp^CA6}*PPqa9UM-`a`YA=YoKI5-UMp5{Zg zKReA-=MZUG;^hRANCt;B26Q8_;x}B0BFV`=Rd)TURtWH(&AA z5IA4!e1{Kb8&RZ}72ihPLiX%6Bma9_&XxestrJ}K6GdN<{Ed&&5N^y)F=u#irR!uT zaq8{{1^f|VpMl@y3a18c?+FYXDl9#gF&VqS1WwH>Y)GqZ=_e0@sViG}*J>tsFbX&K z^HAsb3P%g>b@n+S2@4Yc3ruw)?RlB)5-KdWZl}s%&mi9Ip3^hymgbOzo5}&TGAksA zw6w%Tm68w30&G@T#j9HS2i|L7}ectW1imTbZ#IWE~a zJJ6$L=OlGgZ5BZ3rZ=ORSNQh)rYLs9VpeWlkI2QR+WI}$Nmr#|5wrx{JS$9TDY&cq z+!C5!VPIP&{Rtp?sIe703pw8i7bDjgPRK>3Z(i!IqIx8OYLTxsoaPDnM@c|jqfP&1 z1vVl=_=jDU1lJ+i0das0A>*prfwhDJuvu!DDm`Mk<;=gjbSuMs9soi{=;8j&TDx1|tUM(gOQ)f?QKP33PX4IYSD&PqB9WSNb~1&m^1 zq}$fvQe8KBfrmPdn_YcYU$ef(hrsDg{}JKXXRKpwp08GXlcx&c$z>@Hu7By8r|T`5 za0=a=zj#&zt@4CdK>~i_Bn%b^wbd7)c)*B34m~UHHV`)Kpn1jX6AvxAmu2k{mGm9~u%@Dr&bOgxlNL3?6A9ML= ztHCVx8Pb0=vB91m4yx(NDNYVqwWBxZ8#sQpSG$+E1OTUbw)aAwb<*nx>>GxyG9m*}tu;2MrSQZVv6^&v#V*y{p&L)tQcg(R(K#Ge^;b=CvELm6dS_6`? zVoj|hA2K9F@P<}}*$9e2YhN6^5rVQ#Hi(b{ zyVK;jv85v+gxyMM!ZgFt>0YqSEE$CR4h;vnkhTiH|! zUh|~UlCj%Q|4>=HKy3)0>iidrrc&?}Gt8`0Enrl*KGt`;2F!YyB@JEznIg7a9*WCm z=wKK8l4P|C=xihxAZSZCr}8_c z03|}l;$f6Uo|n+o12DD*)%s?n-)OsB8q1QMQ78w1aUH|uerve9e-$W-2Srh|fJzyJ z1=gUr^3W3RZ7^C3(%QmZwZKt?cJRLPh2c|i>IuF)BV`K%U21jpi-~bgN|sPx&~{CR z7s(HPRhqd&)FP+R|2d+N6j6#O4AL-!bwIIg7M*1oUYdO~^5=qa&5C`-Lub%ey+y)C z@p$F{Y0g%yIZ=J`H0IJEPL2^ezSP2QHP@=(>0&tPG;pf{^~!5e8oOh#ygo{lKXA>l znxw;sw>it*3cv+ft3+3@< zc&(d|${dP&i|j{O~WVnE&yH)n|4}gB(kJ#*gBj3Z+d2d^xyzs4Z4ajNhhR2y-coe zy>Z9CLHFGDb}LbA);MPSm5`Sa?Jpfy$_be-OZ*y+HAxuJ>cq*S)cEWv{0c14soIL? zVsb9;C;GshyV~3b7O^uMAG3(Kd&s&bMT5s|I(1=~w_d~*PF;9-KJOJG#!lnLg=EZG zRo<%#T@#_1fvdc{DzXPRBj;KOB{lGdIgiXPJG?o1Cf-oT#6#rQ7D^Vz6Q!Rfeg?5@ zSOw@M0+=PcppdV#52C%tE70%cg zV~>FExzbt_4pm}(Y5gf%bg)Vc3#;L1V6UqH56M+o?xh?)w^oHv*0vl+!*-mIC&40e z3shs;;&N0GULF)q@lx-mql%@ct5;?9P7X6meO`jsjcugkQE!FaBp0wa?q|H zsEH-neJg6TsY!3|gJ6_oG!4+!Hu30>;Mv<&{K4Cw{`e?b_G&e4ht`X1lUZKD2D#Q3 z$DD$QPI+AaH9V$3J!Ep(XqkA+bcihiqP-vpJ69m`=X~qiwTL3iH?*be(P%$aW9p@) zC|pm1&Y)gcBlNGX8h*6;_2fx6RX{P7o|!z5QkP<>@Wyk*x(G`O|x`OQ3 zHunP?;F@hgxa3VoYTZuhVasx-4fPmFz2b*Mjy^&q8dKaLDZ&Pa1r{1PC(H(?=&10T z!WeK{eWvqO7J&3sXJiDgY6UO?wejA@%4HTRI!TH``q z?~^^K4F@PigW2~`ZBU1xLSDr@5pin6_9bFR)HZ~&dN_bua(^ZVAG15u$gBN0e`ic0wttkIPR(HFJstzAxrY_uT&vtu&I=QKk)o3!gO#f8w`T4Il z#4nW9BL{q*`BkboG7+Djos~4y| zQxqdvQG(UN_L`i~(|;ls6P5AUQN?mj+o1#t<+TJu~H(ZXV2X*^^j_+(5#CDOfA^*|yB+<349&CN!(>DTqdb+2P=4_&&dZdo@^) zu7V2dL&0Gx&T<3!2j$CdTR)48&zA#TEl#TT^V1?Ofqr8(9^awmB)!R?zRuI3LQvyu z6eq{!)%3m2NS{rp)mp?Zc#?-osUzCU-oTWp+9utnTiDx`<{tEBn9|PYY^<-iNsf4h zAx|OMNZM59%n#)V)}r%f??QP3xFzjyL4ADwm4?Waq)yYfvu}cji6KmY$qnsBnSX8; zqS;WBda>A9R>Od;>(QAKF`trS6DKxLWQK$I0yz-rS;Z`0!UcMFAjD$YB0bAT6X<(i9es+s#Ajb!yo?e-65b- zM>58EX+4fwL-)hew2NGof=ZP)$Sb<`@(mNW4vm?=^t(8bymXz^Ef!(sC2*!=k4fux z>$-B-)x%!(Eq7e#7UB?@qiF1PKqVgkblGHm)O`W$_c(HixoSh1y%K&I3|ek_4srRl z<+HLxcYokK{^8dUdjB=z55h?qisTA$77|pZ1>8$%wXLjRlrl*^NG)&M?3k#|;iwp; zY=+fg|Lc$UjDWZc)gQ%jZRv||E1S&K*EuA6iWo$)BQ6MPvUg6QWRNbj~e z+^1#aT$FPr(b^y7R~<>TYdS|R z_8(Mly}UGz2*auTIqCkKX7cAu{!Cp*lTHiFxWOy_`OV<1fQAOwT-+nBIZ>8@0SEyx z{a;C_=q3Prd~4>_{7{}bAd}OnI$mDK0sIx$adjV&i1yRVm2?PVx6P^VEkNzuO*-4> zb+J%k5P0MCy|_cuz=f=`|4`vW)_k^~_qY>KPDtHmX$||H{$lX+t!P!f=TkyEcq?uD z&tZy{eqfywfJfI-DRZnF$YV5WXOWPmUP;horxodcwUnxUzZ+1zn#Pimy}Fz{VJ;+x zMp&SRwxXuI$c+M8CBa;0B=Q4>6L<}anv?bf$nNO=a7b{HZ-kWXd5$E1K6q}m!t#b) z{=DQ;)PRQFOBwRSbxzK%*Y!v)*5IFizs;8Mz&ep*14(Q&C7#6Xe<>aVJ{Z`Pw+FP<#|6Z=s%qv`Szk;bwM-ylFXTUr^w$ znK1dF{X|xT8#`Miot9HTBclL%aA!K{Kf~)XMTG=tY3G!q?iJ3SIO6GK1jy@C9_;Nf z-P`ZI$5|Tq2$Q^l$fvLB?RfYR!-@Xa(VvD7!ZeC5D+SI?G8#^ia7@uQ5}ccee@V}$ zFw&*mfrC^-boB3A1#T|MB>l?lguvkhknA){qhp<2w=aPo!7FY?K|ek~;9bt($Zh)H z8Hxki_NPdWch;W8Ug548d0~D}-4t#=i!K4m(?K1XdxH>$ zqJj>NrjVccY}5idB$>eWDXi#(xy`e?LAADeTPap# zo$W^Y1+6rH0y?^rq3q``(SOb0`0W;Kl5SovaN0EVUXt@eq!qC zU_DSk)Ng`U36Izt?hbLkWtsiaeeYA8$i;Rv)xxiNg`p>fn=QRjQJA>z9nRv~b>v;a zGN`!HNWipjYXQT%q#|yxabHTksgxcBPw*xTeSQGAl=z^2DQ_I4f!j&uL3@A=j9iH| zO#IyAH9^Rmx;+?#|IU$kaOW{Jv7HMG&k~eq!5f>k`GuRhkFIy-9t+vQ!uSJY^l8WL zx+(`cy4y-#bt`)CT$ePG>gC{Pm@-##M*_u=n`sr&-^*l%ff&4cH9Vx9{fT*i5xi>k z8TPD(QWe8i)hIupUI|lDy5Y!dZc57qd&3|@8s6}Cwqe@r(dJHa(OP3?4b?`a8(RXXdP@crEe_!Zr7@3N7Y&|9J}fSfJ8jcti}d|)CrwDb9YL7uTrRR} zJS5)2_1ckQkJ3J-#`lIR5P$U1HBNoCpx>Iia>MsHH$?-O*X`kWY?&Tb=2v+mFrLq} zT_VUvFoWn;+cFkO%i&4gzRPz&SK}9eGiMhKkx`C zN#^LWsmJc!EtRzPWPG9Te|cqBs9|`cuIG?H1r&ny?2((W&+ zMwAR~yqn)hK82BvsvTzxUDj6joh4xrb$AbOkf;NFTER^#haH)v?eAeL(@TZ>{Qhbn;SMO6c7UBCLy41#40JE5tWGaTX*qb*B zQ@^U}+!CAU{E*`Cz8edsi`_s7-g8sX+%n5E1$bl@jy*-?YjVv$kqe3Zx@w)nHrD+G zh$y{ea7Csa(ICcri$dzO!dp92ggD!Re<>N*$q;`9qICn z-A0Age5>~UbYbDdWuO&URaST+Y1l#^5m7HmN#hI-+nYxJB{_xcBL4l`Sfle8THamIm9xGyZAl41;^=4)Th+OR+dsYIQFtqtEXioJO7? za#aD9<^c%3?}=D2Ux@RE5*(Eyn{GdDWsOnLR5qUUwC~#F{Z^kkq&esf!TlUa5r%@96q*p5j z>Oyzy7G9DhnfUX`YD#tOuy~r6C>RirFRiVw7oQZF@y;36k$@4!N zDa?Fc)&0{N=|4soQox2chc_U$nfvMzWo}D#!uSk(E~X7SXao_4B9!5S*apJbRaB<>Q)%;Wmgkd00V6;t2UjMW~bi4FPfLaYl^b| z!mKxBOZ%R_ZIMe^A+SN#X^R&mddyY6U;q^*qZl$~$$z93_Q!aJ%8QZI8hIhu+Z-$3 z-&K|LHoD}tIws%<8&3f56#)zk<0LqFTRopMsa+kWK3FKqVwc7juP?YeixV-_2yjl3 z+@tj&tY0;IPi}0QLe{0H1&Aw<-^{jFVVSupGru%!&{ALY7^!$NaUN0uPp84twXbOO zesn#0HyVEJCB0&Pt=beU9kieu(&;ImIoI>&RW4u|1CwCn?%E>pr#SsJPfzFAmK0ua zO-oZ1DdTPpfj1nx6GRak-lc_-te1G34IN@Av|A&^6c0{tkD_pd^83 z%^DtS%QVKj`J*t?hodnnxtfbO9R<{nFY*jtC-LhYi=SZ4ALGgkyu^_GI-eTzDCx*} z?BC)ma1%FP0oOh3qI&XEfh!3YU5xNMj9KOR0xago<$WAG`1!HA zZae}acB<}>E(Er)Qy2PGRczeGa3iAaLu-S@jf$wO!U{o9PZE0@I2|+Kur$YEc zOA=BbUbTq^)F6ZngwSzu5S0RSB}oqPpsa9QOJjPINs@bSK^`!csxGn!s+&9`3tWk{ zyf(a#KYn|tSoVc&`K(ZDn~TtEgP={@ZXB{=8rzJW5Sq);iTJrfm*%QKlgoe(~az$A^2*)P2$!VUQXN_q?a9ZX|C`&s0-I#-$El&H$5 z>h`AV{^>&gv{(}^2+m-!z) zwii)NAGE&q`s<1{yjBm8u##NjPx~Snqn1MB`$=ICdGZavG-j;?MUjGc#_dmR@GDEgww0n_)^_4`RKs(#WJyF7Ulk9DmO%w< z5axK$*w}F&-x(|I2#abH)=fv+j0aU=qE@h@Rg_a5&F)#+Z*Ol{brd#+t?f3qe$Q8A z;p@~4uwXCk$zd_V1K)fq`g{o9`>{73%OwpD(Bv2X7m$m@qP{R0B47d_ zAWkVxa31ShzLHs?4Cf3=lt^DF5C%q`aMUxmqtO%`C+SI5u(RBt{xI2#ZnF>TLnO}B z0p3mf^i8@J1~-gMJ;`{p%zQO=k3^)v+eL)Ib?!Cqcqo!JTo4sXa}#*3JGtIrhsl?2 zi?=tdhR19^f;TD%C>wn|><^~2UEq65cm1n3-y2*D`_Km%oHzPX6o=RFD{h#X+nb<{ zHK?6L*EQjEy3mm$%xXnK(+r{HN*Jtt)?phnGgr3n(UXXm(-lWC#Z0w;+lOY=Evbb-EN*5pZa~0LMSNA^*v9M!WZ>JePQFNj*yv{fGe7D_vq-U z-lT0WMm)g)OhB{0%2r_K1$gT}`K>qpj|MC0GqXm-qHIQ|!%t3Ud%hrSB^1~S<&!59 zbX>(Krb>Kta##I1)z`|<#1X;APWksn6m1?gk`V(6^uZyZxG;z632a=aMIP+YbZfe= z5yvjP-FJn4M@CY_nrf%h6jC)u&cQf!5g`CPu6d+aeDsu-ZgYRkV^!bH2W%Pyaesjn zBOgsNdtJa0*;7q@qA#TR9<#e_(m^Vf1>hk#-`3m8n^ zS9PH_4Hpn>JkDoGqa!?3+&6Yt-S%99=+rzQUp)u^l|o$_+mf>;wnS{?ir?NwGNPD* zHGPZ)0U8W($#7ra!i>6a%YdEBrNf>zdcrk|Xmv)(7>w-NO}~Mj0W1@n61F*+dB#0n zbMN?Dso0m}mv>C2B0OM9gT*ce`(|omB(=_qwbSqbrTI?JXEroIS8OxiY=p4zhlPRd zu-&{r!H*m<+JpP}Yx`8B&qNe>Z@q~8RxFyN)18~;5#6O4iWN#hk?~DB3K2{A64jp> zDG=H{n+bdex#GhX=@yWYs@D;L5%o6g>~@(o89NdlS8+j7>XK1Ts#;WNAte@#47Rf` zLdtad97sux{_UkK6uEJXec*(e;AQpop(A&6S+5X> zIBJ8x4L&dq_XzHzXcpJ|NU=&r8D5Y@*x~zz^&>QcZz)3 z=7Mf2VmwhZ7@^)VO2#wD)LmGwpTVmshz>DNAP1)~M^CFzcV-ejT&wxZ!8Z|tjRrr& z3qm#b$L`tUFBSG3T(Jzu{;n{Nk>w7NZNH4I{gAuk-{rsCPR#rUJMFLJ$3?Qah@lR# zo&9q3b|6A3we9WzjEPacSIs!)_NjR+KA%`vCt_d0e=s`EbPbOZIn-YZx4Q6 z>{jb-1H427s#V-@DXAY#56T_Aly&qirEz#`FNuY)G(59C0lwq62f1LnxNsCx)m;@B zFq{3gBK?|fX`~Y8GsvVVFZ! zl|c+;bG`dEhtf0eyaw^G5q|O~(Mururwar+18S_`st1|@U0wY zCT@MZ@`tmzJiKJ1_>^{uswT1Yt%vw27+=IL-B&*K$});Tlb0>y|NG*6dfFX%U=l`RGvsg#}@{#7T5m93#WKI&O3R8b)}tYbDVnH0Y~snsxW30Gj8 zdK1~wV(q#af!DJt1P^mbfBA#cpy$ks8ew`1vFte}?eVjuK6AvHCounaAnE-cyn}|d zb-pq+U|d9&RiDO0X`(f)r?!E|le|uhB6}IQYGt`fqB|4z52G9zaC!KsjM4-zM`3it zv3y0y))Mly(aFP(Bx%6Na`7axx-)tUqWRTv>LNW}cWG{n9i*3qRau*AU6?~TRsOSJ zN?|fGy_UA(@t=NVmI~&>?T9&iz(F@mgA;ck4%Y-&;!|-47Zo*8RKR4?0(d|#cCOx$ z?(4MC;yb`(8h$c@I=1EL(Ww%n^fgUS-t|vd;!al0-e-|9qlTy$si-q*T8SHw5IO92 zI=jujwmKy}N{ur%o{l|5%c}WU_TvauTo+9M-{FHB;6>rsjXe>fx})MWp7mG~N226J zWfhQ)_Qh!;m*I{DjHd5tJlT_;o;y=hb!l@Vu=VtaauPw{&h4n{&1EJo^wu18m9$wG3 z1)8SgKowF2u}>?}lU^RBKg&u4)Y}}VYISedw(0J*yltKW!U*kbk|$UE1-A?cN0+jZ z)Y$`$Ay{osHjSaWd+cTM-SpR_Pd`d?2I)mvjV2OA&+ub_C_0Jav$;-HbX{ax^s}~xW7IoSrKkkb!T)qq zazEltUBqa1+%}LpcCuGR*zI7mvK-{^c|x2yc8gnZ&K5qsMB?@1xnsgK^2Yf5M!+J@ zT%-Fza#SBYL6whtKmPZ%#N18P zYv5in!<74cBA!?(LCy6^yw&btuZX#0CzID9H}S|xsM}1&2~5wxFi>Ccotk*wE>v?Mh8lh&Tg+@2>c@~=c%VT$8RRtl7xEuy_P${3QNL9G`$jKbhVP<`Vr7 zjX3~P64VwPZST=Ie3aVD<>7KSFFCs#15NuBGJ7^x5Yz--vZt3L4A}yAq^5eks#=t| zq2Hond+@^Bk-Uo8B7Om0@a|(B3$efNtDR2ZC$KSC~(o(wWqp7f1xoLmD z5f&)B2s#q1pO0YKaa7|NI6ZyU4C4kflQ-+ zwGjvqH~6sfiy!U9r$z@eHG!>4Q-^lsX+!j{V~rCq5GNwXfuP#*BRBX%X&j>MgKLqfSgHV>G(ro8(WIfa&c6cOl=E6msR-bbJ_-3CDK8J+E4QrPCWY0Nkyw)_ za%V%DW2H*M;Kra#xuelun**7#AHX-CjsSNE;uHOvQz7N&BE{aWu$4$5x*y~o#HpXr z!M)^-kL&K-(PaE(;v*&@z!6sgwQ<9A2INh|3IuNFi<4$JUuEHZfW<2&qMBnPA#>a0 z&5?odjgF``M8Wio#MGHciqk7E!vHzF%WE?PiHk{FT4nBLo4e>OP;U4{eH@x?y}ZkG z>b^$=;03utd*OKDtY0&oe)iQ(Z0t$|O`($I90@NE>7i@-VOEMzx5c2)d1P(G)pO6hlcPw**@1h(W*+9Q8 z<;k=x*Gah-JEEEIMFG>ZR(D)J^bYG#P?n?iA+s(;K$o)v}COWwDLp*Gs(IZZ{? z{o^HJ-{T5O^aGA9Uc?ew4&L%IT*tcq71bO$8H1T$!IRryyg*hJG*)Br@uRlrtKmLM zKezzlW>iOEb2wc_ftGj>wxc6Da?m=xZwzV$fA@iB1*VW;GeL{m~LtXaHd!R3DB_9c+!OxuT~d z<^%sT3;M;jd?H8>!|-1p0P^lvN6p?yM7c+43E{JmVDB2ZnO+q#4lgT~GKLi(qZ#@r zlMsn4GGUyDdC^Hz%EZ3K=D=$4=wHr#`fy>|@4~r?rY|d^H&6E8`c1{@^~tCE9l{h) zhog48$<*bwp$f962Nt`-mbGl0CuGJ?17!qgFmO*ciLg=@cBQzZ!_dWMh#nNn^*zrM z1inhahaz*Co7sKiaVTSj^BuWE{az6CR-2|{jkGUp@JrZ)0(;W0aJj)d4v`dsA|r_W z==jFyVbIelt?7M>ibckZgVH4`*^i=QTLRNyVI_OI%v~D3b z!s0;ORtXw{PK8?{A*DlCw`qZ>E7Qvm7{@*Z62Ff~W;33F=WF_(iGOxj#)F^Fo5#r! zrb(Q7ZJ=fe1Gf|ed*fF%I>6oZ!mwY0s{~IKC#b#$imW<=a`2p-T~_zVw#GriKf@4z zVyyf*k>Ahc_nG{hdNLHietZz-&q2Jov%LfqKeZx`no#RzsT6*vQE+*H*Qp$ar|X}x zLmUm{`(iTGPZQq%32?3x+1)3xi~A(r5uh#Cu^YRD*MQc0j|%6;y|&3fas3g}s}t8b zy;n*MM-0Qw6fyvIq0OmtQ!N3af7vv3^H%UevcgZ{jl-Fnm8;F~B}e7IJyOfNg4{yl z_@NOUR1bIVv5Vi-qDYE>wrkJO$s*EA*+9Ug^-lVvHcV5@#kanQs`P5knBD@QhEyZRX-Pm;HXuIe(|_kw#%h2wC5=X-4O?s?J^f+Hg*f=Thd8;!`ym@EFD5LJ(Y*F_x3gn z!|p#`*l^-?p|nKkoIpMcLg4kl;QGwsyQIACwzSE?BVe#hHKrqzDMa&U0{A?PvllKQTeq`hvf zZqvHdFLjRCY-+VV4A^aBZN`o|>6TdLw%e_gb`s!NG~sZh=V$rL1$#HtYCiaB;4U&;2MMv_&KoX_%>qF9Nd<5)x0(6U8W4_6kR9Wyx&iY6V+#E*en6i!`(o1;6W0zaF zTP!YVu#0%r3XU_(L%aH}bDB)1y%+U(*Ie_hFWtq?My^oRg4&zvC->gw#BZ~n;~lA~ zILec}u-6=thw&EHV{cEucU6`a9ZKPQG9GkQEi09QK&iS~8mdu{C1ypZMY$2~q{&(E zYcx7yEe%no@|Bc_R(xf8@t>OoR|m%nW~w$qV_algAW;>IwXlf^xkjlshoaS{k=uKw za(S?GYJ1BH$4PUYl)bd|jaOS3E4AKDoVKSHkULug%Wl|FGd#*tXB)YaCh~5~gJzc6 z?hAs%T1JWEr!8&&h`!LR2EAh8T3C6By1QvHe49I_nZoU; zB1{)Jpw9EuQG-2LL=78!q~N}nZd@5<`?oMcQi)Zy{%gMZ!O?PyMgdd;9S{EU#1H*@ z!b#*1Q`qH`6#yf@KQME%!tQCBhRs-RpRWfHD!Eut<(az!-TcNKd`+JUKXs|I6vVl} zFKX9q_Q;o!+^t-7(>Mxy;7-Dgta)iC)1A1Qcn>)hb;Mq|TS+wYZosU2rUL~hU4su7 z5Sbu%ATnMau^ZDH+>_gk@DprVMh*P0o-#Ydcx_@Txf3K`9*R~YCWIh(i@ zO#YRfVVTD~LylyNZg88c@hf{7B+%O#Bq9O;8b_vJo;ucRl8Xg**wzA~`7FqRnb>YDRXd6u};m#yY`R$7V| zE8@E8iYJ-nqEu9y4Ji(%t=*r-fFGt_o8eDPU8Ap{M&}?la;!4XeP=xB^#WGg#T{ky zO@CPuLHdb=)fbgA3D^yW`4&fM!k%*$FV5axUgwR_mzrgp$WyT2Ytt|x{>$~?6Ab?9 z(RU`*BqRgA68~pGxcy*|R*HHy36DY%Pl9!W=Onp$&uR!K#1Hl7|3$iPaEpKNAfchV zfv_Ke2q`#QJ%imiU@IQUL+{wctypjsWOV(utE%UK^f4h$1#5Lk34pK&8zs9KXVsxR zK*vlg3-2?CVFHt6aao`)M;iu{(i|zKh$=0w}>nm$xg@ji#fm~7zZ<9BePAcvp2o?z9jDJTIDl|gxgkdt0_XAQ)YsLl#Na4m_GaQ)4nvT zG4#+JiNwHSoUojgeq#Xe!vLDs5Ps>afQiruD9D!2RQ2}o*ix7=!a*bhBJLO!soL9E z+@W?*@>x*N4zuM-=le|yMmH@y1I)lzoRU=T;CjeS+~6jdboV`MQ4H(CWa#-hcCWhn z&LR8sXbpEdGN1{6zvhUR%QZQd+`nxtG1#~fddm&igJ1gN6#YpQnFHvBu<9XPSH}+3 z=DPnA7W^r3Deza2dV>!@py05(`}p^%Envq}H^slR2o!kpG;wFr;s01jY4$-W*Y5{6 z@K$Zg%+xUX9|&mR{v7}X;WwJn0CTt-!%h^8Q;teYDKaz3m-3^@vqvE;rggO}aaJ5X zCerGqj%%w|Ju?*<9d@-zx$r-k&i*xo`qjPk*gdJ}UjsJhywA8|<0AVer1_5aS%7xs zX18WrqG$s8Mt@haVM0di+{W)?Kts7!1dHUagWfHJDakqXcQf9(%XuWp}JOH-vUhYg5z&CbS@`{UAaTd(QG zkFlN2V#C0ElFsTy9c|h_Ob7DoF?Oa|Ke>#K>7D7hdz0So((1A;dZq?|_Qu@RAwxNHXRCw}4}bT$H18q&Y5c zJAdJ@eKJ7@cV6K6kF0>0;20#LpuKUy8tFf$nREi&(vb2Lu0jy(o8Bt;8dumCYP8=? zz4T=pGfo0iqEa*gq%sMuEzfCEp|IV-Fs|;@GK9v{QFubZ<0*8|jE(HYX?ph7>kIyZ zAK|T&M%sFX1?*vf6so4JpxKh7M5zKlrTUxOq9*S=)#aH8$a2RdL%r21UPg`*_+R(H zD=Hk%H>yoXAjLCrI+5HzV*Ttn{#m7m7Qv7j+}zY_rb>@h+h$fbzU1r0l#d#q`Fu9A z@CpphY@tr)hyKwEn}C=_vuQHH62cECBwxe?Z04 zD64Kyq?0K1%Hk|rAAV7SsGd(xXr?$#S?91KHVa$BawH2iYxVDgmQASoZkc(l%1%5C z6P7j&I*eg#bdeD>1Tfa&3)b3PqV zl$B4;_^GV(wzFUU$oV=14-XpG`jQ_NXJ01PMyqb8K_ok}ZZ`Mn4Jqe|FWWy1$|ymP zrLJ9tvUt;i%4u!aJg}wpW6ekv{QC!wPil3We8p5)uxSJ z-?2#I;;}Hl{ovk85I*n`^L6ors>WR7w=2#cmPv*DjE6tkj zba-7zPHfcGU*jz)Nd89~q!IAd>{$Kd&q^xVN_XQ)KA7XSmbqa>`9zw*%lw1PZIQBe zr-;iYMbUqVGi*gr?j2sT7bHmYEx(zTr8T`JCRg5+H`)3}?E&!R!w48NVc;>!wLttK zZSi=98}($X-|BW`Y%}_Kt%GFtT8D>!^%556epg(*Nq4y5H{ZN`^R0v9CQ6TFrU)Hv zi%gXM-PvUmBFu?Q`{M|q1w3a%M|o-1BEvcH%y&IJ$I?hyebWE`sw_we@X&}(2MIVo zMuySy-z#r2Nzh<_-~rfpT-aFJLi!KocnCq_WwhjKG_rT)LM(O5vDWWB9Nk;9K2E}h z@+P1olhm8zAg!{~EdA||fBp;x4`&eo^A%eXVQMg<)+&9zbwLtR|T~Dw?hK;Tyna zax&8k$orp0)dmRCPJOMe6U7gv<_iBm0zGqfum6_Wb=XcMW&s zXfjVsqHp>EKTKsTpg9DmqD8jgplTD zUTc9mrpqo_rjCnziD&#F-PCYHI_r9IV##mv5?er<)&1t{*WU_`vQY`n&HbKbfy3v; zt`uWe!9l@vF;h8oNnZc7_X2)KaM+Qo@zbA&hH3wOUXTuMM8r439eDFp!#JPl9~%fi zSPvSc4=B~LL({@!1-SFRc3GX7)3xZP<3md6X_#Y3yOIJXS4zor+jApvkFcMVdG80kZ&Exz&)gF|dHpRKcnpUbU!)XL&VFB9;X11l2IrSo zZyb+r?;S28=0n8D74D}b1&H@t-A81EL|Mr1Q`~BWrU)qXo1GxyVKF7{C=h1J-&K?K zgS1|J9Zbjt#xr(7vJF?4+k;f03IV!%u2#jlX%L|s_s31;R{FyDDmYQ>!x~s=OOiB{ zHJqaF{i|T(O)YId5`##bAz%le)n-Sk^eO3-=rHS*{R#6_GWdxrsO8uXheb#C3P!{D<9~ji-n*-r3`vq^1l7hTJ#KbhKxn(y*Ans z*Wg9N{*8VzKn5V18hV7M8j5n^Aq1L-MJ>H}X* z{e77gn(@&*j5q>v2Y|@%P(3@dVCC%=?I{g5T#h5ka>dhSwNH&z8_zHZTCRRehoxeb zbTA}WSr$z;?k%SyKTG|1iHqeW*;rFa*)A%!k9omjKXp17*G^%gP3(vP*k=#;w;mRL zIaewE&Ie(`Rd|SZv3}&- zqu9;iu%jJ|Zo?aQd#HRCPZC=`di6rp$)7ILCEtUDZmo8?zwUdvE)>ke6Gs1O1@na1 zN1{F_cnlKX|yV--HM za7<)06u~ss1-ze!7e%e8B!qsEhMZtg2uN8}@M=wwWnwXhbUG!WMonCUEr@@iZ<7`Sn%=udM+ojDusK=IN)Z_?*C22 z%D*YATbj+vIee$z(#kO~Eu?6JoBM$Uch2G=GtHp4pE0Z;ACWM<^fl0uI>qA7|J2OB z64IOA4Sw4o-51zooWKxayV2C@EkrLDsve~ZB#l9}xngiE6&){?DWJUJ0N_&)t(-v? zbCOex&{U-ut#lU+LuArOWxjifxyUhYc?4vG){qWfne8>gwu8CHQ`-{ca^xLlnJ%bM zgLml=^|-r-Mhx$e==sGR1*O0F_RY%!uX%>*yn)!feBS%%tHTn0Vp(FJp+f>D1&vI| z$1PG{glRF52$7#Xd;YD47cm4y&PSF6fr0id(O6!-Az)enG3?{U_lMS3E>@tbe9ZX1 z_@c{MUbx4`|JWeu36uD>OaJpkJW3u%tP;i31h-67=y^QauZt#G568)Kh;x1VBIe4$ z5bZpiRtPA(cx%0H_q~B}!l))Y4hzF%doH>u@Q71FYg^Oj6+LGO5K5m;-xCMJs3&%U zhWrVT`qLQU${N{{to}WoRjo=p=#M$v8}Zh{hN%z(33z8nD3)&x-R>-O&HzJ1i^-dW*5k(SKHMQvpcdf zSnmXLMtcT_ru}{nJl6U2*ii@D2-<)yS>_xG)z*wuTS=UtcR!h4fR6RqPd@vVXA;(O zckrU6U>O<4`{PUQ6l~z>3u;-i#dcTTlwWP`4pjS+1Z(6szvJiXIeg_o{^YCg_CE8+ zJgGfa63&+Xrbn1$tqvCjrmkS>iWIGiKSW9|m6id|sdVl5q1V*JCd>lA!kPIm9HUmv zjTOdxsgwvx<-AClKBf4nKt}eh#BVe9A$lA6G6(!O^(!D{T*x$}2v>h#8+N9L{6Hib z2*#*gr8!2dD3xHt|K>Tb^BjOMG6j>~vG%^y+wHAiP@C=Tb(v}~+&qP{kg4Zh?nZh4 zTCzVcGpnv(URF0-&q63b4gZW)bBcgI4NAp>lXf7?fq(v-gaT|4@r-}*AfDs9j*Sn8 z)t$EM&pHF*_S;TDPa227_!ve0d@>t7&b0Sq!?af{FIrO@E1nQw!Z;#j*nEE0B5u?! zU@_6qCt32J{2DwP|M2_gx}F%8`y+J6ry_!rIHaF=Bbq68J?9PGwya_V39Ii2UJ&Vz z?}#*jJfrr+A%u8OM{J}f<8a{Ot{{QyfWWjhp0#2N+zan2x`OD%>tnujh6nR>RE zX4gJEjzf2&sfo8;$VxWwO&Fwa1rh5kyh*BRwCE!9=3-dm?#Tt?=9A!7g>kM9tCZ}( z?9^jYB6vY*g#@kR;MC-uCRXp0DLl|2V?CL5hG$`go5IdP1yNU9vu&YaFsxACW~|tM zA|D8O-$wTPvBlBxa5U}y##iAtJ`CUg0eHkxg`1miKNjYy!qf9Vk9^Da(-+dC(J1^L z%6$z|B$?j?=yr!>t&8w*!DKQJ?V0;sSJCwWfm*%s}V56itvxP9JoR^Zu(>s$3^W+QAeDTV!m~sCh z{uxk*9We;#pU)L+cu`h>&ypjgJ{XB`=u~Zoiwf0Fm2!(hwGhx9!gs$+_dvEWj>?AU zpQ3!^fUi2*4dOU2I@JI${ey zsan-0TBQlb5xiD=PP{CEZnM5eYxjZ4#5AisD7%%@r)6SCfpD4=WXcvRAG7t928P&b zWU62%T!k%~3brZpTduG)i8zE(MTEPPvM`lQBF^vm*bDwiIA|!o%UX$-+3-yYIYrc( zv{@^<=I>c=St2+AoAVe!s)x@}=1QpzPaf}SCO3+5R~kylYFYx}tk7PujpB138vD<9 zXt{C4`*M9F5vVE$Z;%ibTjN z;vc5oA4R1gpVkH9Ot)2eFtOQmY!crD^S{XH-#&W!A=*XFajX#KJ4K>`bvZmji;MqR zewB$3{muaUOs4ZViIHXNP9-aq?u3vqXJpgvpFzl}jR*gV20vC`9G2E!|0%@~gHVFz}xjYw`UZG(v z&2N+LX!Fbv6Owj%p*YF;!>{NN!Wx$u!F%g^2e&-k(7hI`)~IT|%u}D7a_rIJcA@r? z39o)n7y>?X$Q&^4^K`ew)2D^v_lVQ$>sdtTY(wMk>#I6_nODB8TI7H2#AbZ($Ujdq z0#?WIoD0o@O?n1qhda|T{v@^9@i`n;91&G<5$lv}-eTHSyJ zxGUS0g&i6B#^Kkd#@wClMzBtHN^V)L;njqkWX5h)xXt;IcQck|tbL=G9+6gpmR4U@*cK@@ z!P}w5T`Ifz0;vc#m1+O6daim#TvM;-mW@(4PvUD~K^N*xPowki-(devV4WX7imF+bT~xJEevl zT1JehQfyFClz?<{M9rapai{6O58b>ya!NhTjhtrQ&4Jho$VhvQ8ywi6 z7%n$xQ2rHch>9Pa6Ongt)?rv!Y4l@vAu~*9%)fF5ErEv^=I*I4&gDow+l5KBLukV= zm9H}R$_BugguP`Xc@fY=bz9aQ!ylt7U$fgxc@JAX3!m}i`ChpS0;{eTaL-en{Y#lW z^`(ZrXM^VhLZAPzb*>OjJTTntMThcjEjfZ;Nt`4+_t?&;DBC*+u0oD5~=c4RZuTxHa6(E3zJ^@_uEC zeZ=JObx7IK1mg56klXYM`Yp1DWx8y`%n=AvBlPeZxcVDz5cr0+tFEmK>fV=CJ!Z-t z%&nscQqthONs{wXHiGhaC46z8`4{!r%7pvSpN_|0i{~dGs4t^GZxYz+CSxbgytwuC zck1oxDn%ROjd0{m;(Zu&T;<~Q>is+{fu4$-KA>nh%Aea zp4PF+W4!NGyRIuRN)h;8d z4k>SOatRk8?id5N1r43I$#hWZdir(jOP*YtdT5#})d3p~;ncxuG9g{!x_F%rDRroO zAhbGJN)&co@;7aB?K2ve=P44qt;~Unj`}d5_S7@m^;$TKbW$C=OlBd1p&gk zNJ2Uqj1w4%b9F`EaDV!-+oES^`M6|HY@y>Xe%gDpEs$cF8Pz1l@kYviw=f2;38nTPN3LG*WMvsS-~V zR~+Z?4RxTkWq&zA&^Xrocps)j1T`47@XdF=xX z-hwugR;;o5gvVW~%62S}Hf(6wEe)b?-4Ygwn$G~(+q|8H-lkl+d5_Ak#tXC`mEYR( z9qSlX2_X{cuJW%)xWWpcYl=oaq-AEvR-!CZY}(0|H$3-V>U0R*%s83Fm&jASN#WyS zp4K}Di-;{JkQMM48_^ViCkyQ@*cf;GsKmBMt=2hf-FbeDoIua`D}j@UsTT7W8y5??=EB!epP6csX7WJ&{ajJUcYEMdzXj90IV{}d$-2xHUlk86ajZhL0|z(+Tr7l%QNZi7_Zpjp`tc$ z0`jrjp^?@4+ahz_D$dy>f^bOa5>xp5c4+w2KJY7%yiCW~@#Dg8jRc@QXkt;Mc`6O| z*N1V@qO4s1X#rd4ZD{7m#<}+WsYs_ZW-!kr>Ee?Vxct>ENNya0BGJYWR+oM30hJM& zz7I^yNFe0Ps>_m>Xr|)d(SYthgScpXw)?ND&fO}|#wbEVpeDb%0~f^Zaq*t%^gr8B zK0-$k5sKvZO6K#)$+qf~$w+J)gCYkHGuUGjAx;6BYI^Ky<4H0afr*{w*92`+}&YPBg{}#EUwuK zXB4KdMR&$x&xh0S>5#m{87O-kn>mUHNF<$wvroEiJTxrhkaNsG#a29l;%2glY^8S^ zC*f`e%YI!NONyu=tS(EomU--B7XV>r=+m0`i3VmP`gTe(0z0Wl~DR(|0p$I#(rwdE!vt$dn`Cy;Zig42?FZ7<))&qyv+ z{F(cYP{O;4LGODn7^wZxeofSE`9oxyDsk6=51LQs(QJG!QvP+GZwcJr9Ie>KpwYdsOFSdh z)pRlj3L53Mb9+~X@8vpO4tny_5-nYP#RaDRE;3qg=Ii#Xv}GR)+!Lf7*SKJ zdM`hJ+xyAS-}c_V`n>n<>90T?_~0$5ByMDaz@r~Jzv5^F0Caq)c5aAyumXXDK})_- zqzZ!zD7M-74c9PogI0oOI15GzKVxU$HXp@CY!_#gg0oQ^AI^D}u@lB0F)>ddeiLGU~_Iv`?vWU)>n^SA+015)@OY1XD;StU!SFf?csY|$^>Cfyg?9{$4Im02 zFHFFW3?ew#J7QPG`?G`RMq;)~E04^AnktNPWoI*u!a$}i%Wn&!oy-n24rj&mJ>njC zvRzLm0q6DXZJ^)7=BT9RI$vT!DWy*PIZ? zQvn{m3@oRSv1Q+JnAP$ld}o2CwboFyW9EZ7{$sgSUQvxxdUwajkRP_X0ju9dFt|62_)tBu3IoC?woaGyl`;rY|22fKfg*t>qIV$6c^AqUSU z4JFzi7rgo0I1FE|@%r}}+JyKCM3UnKEEiMkMWg6UX1Dfx?)yc6uAOAmdph{cBZ^eV zS#U+v8DiBHGB&!d;z5GBO#fvNfb(PYliRx)=pc_eImqosVYFV}cVtTqn@Fef_}EY^ z*RVCk$6zO=zMu`S%|$0k$T)$rAQ|!T3=zv3zLzj&FU!0RGt=V`G(d(mhvnn4upS7{ zEX>s5>g9(J=tmQ8^N9qbnt>r!qEQ!GDB{oXst(ao5IzEA^jsl8J5mVQ^mjhG@Cv0JbPV}jEAN=k)dYh z-HMe-zR%|KklSdxbj6)3ug5w> zFq$;g=7r_X6&>TEj!gTl1FX2-dk)&ii~M1s2u^J#M$DE<)6+N6T1X{2N=L8|SrEG@ zSeNIz3VJUdEFI`fZ0oykk%O0=E!-aVZ_U+09F8q%-=~isRQ_KR%?`vwh!oi5>&!)30lZ0~ zP$GYjcK0vvuAq7HRf=unTOO#smR1j+0~eRFZf`{S@O+b)2iUuvU}<<-af0ZkM1y29 z2gL8(oWf`PRHfv41R*kw?8cp^)uZr9aK&9R{g()TW89AbyP>)g?tXOMM*hw{k&5Yt zg>i85un9R^=-Y+|%0J87kwhu$834o{eB|tekEX+~jpNhuf*QWx;q|X^QGwQllFfax zX&=V$hCb~+yI~(deJ!59&40IgvPo#0b{)mgn3}3K$%g$n92c4*^|FJV$wW4a5qm)1 zo#(f zSdVnWWh>{AWFvY%xv5qVwj6Ef+FfOIP7BMe4$9aacF~vj9ObZg^`wlO?j~xRT`5b1o{e-1RfV9Wgl7Chr z`Xm$>&U#=BkYoxs?l5IFnw!KMVn6JAVWKg%+LgjX7I31bvwVLQZWO~K{%Hr`#w0zwcWt%?SQ1b zCD|4d&I15Y;y5vY*!Av~8|#sEKb@aJNcTf%I)C+eB?RZTNVMWRUtmi=a*&0>mhc1d z$P3radj}-iWqlpg{1L&&!)Tr)aJ{kf|HpeiE-!#}V-My0Mq%glc+7tnixBm8Uy{tr zOL>TUKs-^iL^gLo`X21Y*#7`&JXlpT2(Ca%;cN2~Q4Z(VaZcq3skPj5lP(-1dhro) zQ#YiYWF5EiZe$-QFytc+J<*8?-eIV`@<3P(nMK{ngx2a9Xxun#BvFbABiRq=V3$a; z%7B{^!aNSM6kbOmr4N;w0=LQ3)S1`7w+=COlsF80v4n^9KZ(<7&GQR+{JmFv{_>0G z@@QZ3(TYN&0H;#v;?TPVFblwXx?A2P^JVb=F<9pDONBMD=$wg0XPM!vW>j4HzDA|^ z$9wS*HhQ@5Wf5Eo@(Fhm0l7OLL?FyHhz+Xeg2O3;*W8W9jSNHoT}D5;IuaYQ+GI-3 zuDY!WLRPl=cKB=th^FD4a}aw@@83UumDwC6-b;FjF`AX>Ax`n4f%F@amFPSVaU3Z> zONq|`wU}}xwF(64->{!c4C8}x_34}r=R1{Q6}di)J_pD$zeyAldsfRZ ziI)HY79vEi(<~SSMyAJLtP7`9}vV zlq$bJu{jqTVYE{vJQ`(3ZdjAxLXN0P*p8Og%85n-{%`8Ow1lf`oqk9Qk&;4A*k$}4Bk&iT^aoL=yV zR(TxFhs4c|1l00hrB?b@K7v9>d2oKe8Rbbz%LtGYLoH{`6<$m^t4yIbC83l zgZLHiE)PqV-Iw~fK<6f<|2CMVPI>QLddrcd{jE7(l7@Bd$!f}4s2f(e<2z>L{8=+m zZd%-FmXP~8M_+S3-fCQDx3@l{d2>UM`>o@71eFeJDQegQUS0LCWvdhG4RhCOj??5j z9{CJ8%H0FH3!FF0VZ-psxbp+LFE>_ia5)F>lf8}ppeHpPM7AAsZjxfWrPvgAuEHk~ zYh033d7^UR%Ct#bzeM7aZ^@ZlmHG;+sxlGmqc~qpw?>rHJzJ;ZZ+5*Jk60x4_1u6m zr?*~jU7HMUGQw3nN`Ekf!6etE2Gz!YY9>+j)!p`i2`sY92KQ_BtKmv1@10-eXOEGTWB?Ha$8ScnG05=`-cWl z&qozAZRI)-Dy+lUM8oM<%+1!if`cQNMKN}UJHxYWb%arJ9uH0DtUmL{4jISTca5q? zx$rGbFAXR&bdxAwxB`P}#rr&42$Neubi* z8O6!hVpGOF!jtl^l=QkOKT0xBoV!7~{f_WrueoCYn>d+#vJM6zQnqCYVGj3ZV{azm zO(B9~5Qqg6jvR*=q-}-En_-62F{>qtGO(~|;KCG1S*2MXdb(jQv5Oi$ znT6YewA>q3`i7DCu|~Q$F?<%cX`Y6}owG>@+kU^rupa7f zYoIq8d9{|pxm_}_;H9c}E3z1W`rrgR4!8C|MA%r3c0lGEi<5Zrs;o z2K#;()%Tg2V9)GL>Lt4sj_(N>5tPjmlYo7Jw@(L933x5-%V=UfNXgoG=aCG|0XBFz z|4&O_C`4yMmUoz>3CXr%+W2$z8GC$<@CJxJA3S`k@nFaTnX%f(Oznx_){`pq0abex zHmg|X#aRfFy<-zkX}MRJ00~KdXJ2((01vqP z0(ly|v`G~D10Sz$m_jrdsnDqHVeSVNq+ikiFzx$h%l$!BIDm&msLwD-xQX}0q8HCz zKdJQ?_P68xsvtCp#v~iOJJ4xD^(#dbzoVh!wfA_Tb~+r-qiOTn>S-^%7BcGI0oo!3 zv8|kXE!Xs{PU+A z8TLpl)6440$5+US5$&7I5gMKiTYRy9voE%cfet<*Xab|2jjsLK$)WS*NeG9tucAoCIBGoPH_l2@0Mwq8^}$RS+^(+q#=S4eKW_6a`)_Vx4DbWF zujM##xoA~z=(X_KmW6Ls&T=6QEO+UxlzE<28Ql`E$qg@>**^}=WgZH?_Bg8AqmQF` z1Q5Fw-61X<=RRO;JBpP-4MbC z!S&EY*S~gXXstThp<_VpFYZmfe%qxu`6w0Di!Zw9pBC=1@o$at_FFu}I%}D#X7J5u zh$7Gg;lFdBA=hxRH8%1_sVP*=%o|yhtccjR%p81oau&uo4LjfXAN%%JZiN!QiP^~j zX?nz6MZ2?sjW${v>{G+Kl^ab34)9Zz0{vo_%6{b8#Qkd$Oqg&t z`A6*ipdafu;VVY2VVhxf$+1pEV23|Oh;MH)moNK*JSQKGP?JdDw|0A-Ob3+tj%jE| zWP_*9U1)#N56ZiuCqf6>H_d84!GXj}30G7@^18-p80+x1JRjiI9j-0tiH!Dx$NM54 zhsYGm9a{?+)6WoeA}bcp{*5)Nr-HdS0=|k3#C1#Bd-bO6c8LC&PW7Ufz{DI=FM^oR zB|)xpmYAXm@s}vCBoqdUyTu|Fbw_!BG(`U8y>v1!&yWTBw~{m}(vdP^zKlEQTwycx z2*Z1Y8y{bqboPQB3HTmn$?P!e5=QgXEOBtSQ)4aRoOki%u{a)Xw&>fKcMYxAE(DQ5 z12U|T;e^2kLF~*UP_qvxMwOx}`Dw_5ld5As#`JyVlQ$x`FX_EycTy>BJE@?u=t7lb zVen7$ichm*8ndPPRKr=Z7?$z~6f>FDY-{sr%~T0KvA(GGXw1LYZfm69u6Ld|uf&T^ z0cucdDoFyBeru%c?wkiSlv@Et3B3ZYv!^M$+LTv6DiM+tLgXzU0nWmMS|)P#XWpx- z1%;&bj#{xF`Gb)4I$niclYZ^gHL)Alw7EOoOym+QWe}Ct7aDU<10lUx)mCVkDqs_? z7Cfxl;Z5UzbLUCWbEblGe-f{nk>^~boKMqvy0{|}YzglTg~!}64w_B|^U*~5qfWH( z79ns1{2C<|VT+fOF>uq(RmQg!>+$Jb3|0v*cMI(E2*^nAa9ByiJrB)|@YCH&76_!{ z-P9Dr$>Z_WPhS}Yi97f%>vdMB6aF8;q@5n8wR%Wn5Cr2#1Q%rGfY}_Lm;WL6Nm-Qa zL@qrYzyAq_2vL{_#e}9M9-v(oC})IPCjie*P>bk;mGS^EF%5xb_c&`|5-7nSwlA%L z-VH+ugCu^42GHhdQ;(WW4ZAR<)dKXF<)$+c7;m(Z^=Z>I@0bgH$GZY}j76rW_VkV9 zG2E+~?W3~q)4DDIh4u0W!h5HEpKMlXN4AJcffuL>USZpq_D?~5hS}x_-C^QY3Gt8 z`r7nldh=7QVK)W(KbcH7c#muWXUnyakMGb8tiOX_U*Y$Ch!-5n?F1M1N`U*FH^em9 zG>p`N$f$h;dyphyiVGd-6~-G(M+hNaSRH2rQSpk96t7*HoP^;ZSP>FthJ{-~jzMR2 ziA*M@$|}ARUV$Nb9~#AJ*U+UII@MuF&{L=2`-OXq2{VI}-F7HT7@5)qa&dMGjbmT} zADzk`C}-GeGz98CDt(N!atvs~=?$+zH z+P9-c*=*?xrx^n)`P_I;ExZ;=KrT9;HyFWVl$}|{I<^(;mu!d#7*)Pg7b9Y-ywr3P zD!4*o;i=T6Un*xCmI{+LLQCAR`{EBsW()(g??)LhRQHMHW8XdmYg?4pk|E1h3|x|A z08VOPp8hp}N7CMW`F__G10-Y19@~AWBYnX_-9!7e*k~3+^*trA(Rv^1 zc#A$;R_M|k^nNAnUU^DPs1!-1`%bdJRkm(`UvF@fn2%-Mm-9TSyf}~mH9T1Pg9@@W zUAd}$mR8qgRg0}yiR^+v$oUQiqZUUxgOizI#{B6oj`VcQB1